From 577fe843f9b30b2d8e30e7da7680b683904b578c Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Sun, 5 Oct 2025 09:18:54 +0200 Subject: [PATCH] Implementar sistema de empaquetado de recursos y releases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sistema completo de packaging para distribuir ViBe3 Physics: **Core - ResourcePack:** - source/resource_pack.{h,cpp}: Clase para empaquetar/desempaquetar recursos - Header binario "VBE3" con índice de archivos - Encriptación XOR simple para ofuscar contenido - Checksums para verificar integridad **Integración en Texture:** - source/external/texture.cpp: Carga desde pack con fallback a disco - Método estático Texture::initResourceSystem() - 1. Intenta cargar desde resources.pack - 2. Si falla, carga desde carpeta data/ (modo desarrollo) **Herramienta de empaquetado:** - tools/pack_resources.cpp: Herramienta CLI para generar .pack - tools/README.md: Documentación actualizada para ViBe3 - make pack_tool: Compila herramienta - make resources.pack: Genera pack desde data/ **Sistema de releases (Makefile):** - Makefile: Adaptado de Coffee Crisis a ViBe3 Physics - Targets: windows_release, macos_release, linux_release - APP_SOURCES actualizado con archivos de ViBe3 - Variables: TARGET_NAME=vibe3_physics, APP_NAME="ViBe3 Physics" - Elimina carpeta config (no usada en ViBe3) **Recursos de release:** - release/vibe3.rc: Resource file para Windows (icono) - release/Info.plist: Bundle info para macOS (.app) - release/icon.{ico,icns,png}: Iconos multiplataforma - release/frameworks/SDL3.xcframework: Framework macOS - release/SDL3.dll: DLL Windows - release/create_icons.py: Script generador de iconos **Resultado:** - resources.pack generado (5 recursos, ~1.3KB) - Compila correctamente con CMake - Listo para make windows_release / macos_release 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- release/Info.plist | 42 + release/coffee.res | Bin 0 -> 131472 bytes release/create_icons.py | 150 + .../frameworks/SDL3.xcframework/Info.plist | 90 + .../ios-arm64/SDL3.framework/Headers/SDL.h | 90 + .../SDL3.framework/Headers/SDL_assert.h | 662 + .../SDL3.framework/Headers/SDL_asyncio.h | 546 + .../SDL3.framework/Headers/SDL_atomic.h | 664 + .../SDL3.framework/Headers/SDL_audio.h | 2203 +++ .../SDL3.framework/Headers/SDL_begin_code.h | 486 + .../SDL3.framework/Headers/SDL_bits.h | 147 + .../SDL3.framework/Headers/SDL_blendmode.h | 202 + .../SDL3.framework/Headers/SDL_camera.h | 519 + .../SDL3.framework/Headers/SDL_clipboard.h | 331 + .../SDL3.framework/Headers/SDL_close_code.h | 41 + .../SDL3.framework/Headers/SDL_copying.h | 22 + .../SDL3.framework/Headers/SDL_cpuinfo.h | 353 + .../SDL3.framework/Headers/SDL_dialog.h | 341 + .../SDL3.framework/Headers/SDL_egl.h | 2355 +++ .../SDL3.framework/Headers/SDL_endian.h | 645 + .../SDL3.framework/Headers/SDL_error.h | 226 + .../SDL3.framework/Headers/SDL_events.h | 1576 ++ .../SDL3.framework/Headers/SDL_filesystem.h | 503 + .../SDL3.framework/Headers/SDL_gamepad.h | 1509 ++ .../SDL3.framework/Headers/SDL_gpu.h | 4213 +++++ .../SDL3.framework/Headers/SDL_guid.h | 106 + .../SDL3.framework/Headers/SDL_haptic.h | 1441 ++ .../SDL3.framework/Headers/SDL_hidapi.h | 552 + .../SDL3.framework/Headers/SDL_hints.h | 4486 ++++++ .../SDL3.framework/Headers/SDL_init.h | 497 + .../SDL3.framework/Headers/SDL_intrin.h | 407 + .../SDL3.framework/Headers/SDL_iostream.h | 1354 ++ .../SDL3.framework/Headers/SDL_joystick.h | 1202 ++ .../SDL3.framework/Headers/SDL_keyboard.h | 609 + .../SDL3.framework/Headers/SDL_keycode.h | 343 + .../SDL3.framework/Headers/SDL_loadso.h | 145 + .../SDL3.framework/Headers/SDL_locale.h | 117 + .../SDL3.framework/Headers/SDL_log.h | 538 + .../SDL3.framework/Headers/SDL_main.h | 675 + .../SDL3.framework/Headers/SDL_main_impl.h | 151 + .../SDL3.framework/Headers/SDL_messagebox.h | 226 + .../SDL3.framework/Headers/SDL_metal.h | 107 + .../SDL3.framework/Headers/SDL_misc.h | 78 + .../SDL3.framework/Headers/SDL_mouse.h | 689 + .../SDL3.framework/Headers/SDL_mutex.h | 1073 ++ .../SDL3.framework/Headers/SDL_oldnames.h | 1327 ++ .../SDL3.framework/Headers/SDL_opengl.h | 3101 ++++ .../SDL3.framework/Headers/SDL_opengl_glext.h | 13213 ++++++++++++++++ .../SDL3.framework/Headers/SDL_opengles.h | 38 + .../SDL3.framework/Headers/SDL_opengles2.h | 51 + .../Headers/SDL_opengles2_gl2.h | 656 + .../Headers/SDL_opengles2_gl2ext.h | 4033 +++++ .../Headers/SDL_opengles2_gl2platform.h | 27 + .../Headers/SDL_opengles2_khrplatform.h | 311 + .../SDL3.framework/Headers/SDL_pen.h | 127 + .../SDL3.framework/Headers/SDL_pixels.h | 1441 ++ .../SDL3.framework/Headers/SDL_platform.h | 64 + .../Headers/SDL_platform_defines.h | 476 + .../SDL3.framework/Headers/SDL_power.h | 106 + .../SDL3.framework/Headers/SDL_process.h | 430 + .../SDL3.framework/Headers/SDL_properties.h | 543 + .../SDL3.framework/Headers/SDL_rect.h | 507 + .../SDL3.framework/Headers/SDL_render.h | 2645 ++++ .../SDL3.framework/Headers/SDL_revision.h | 56 + .../SDL3.framework/Headers/SDL_scancode.h | 429 + .../SDL3.framework/Headers/SDL_sensor.h | 320 + .../SDL3.framework/Headers/SDL_stdinc.h | 6137 +++++++ .../SDL3.framework/Headers/SDL_storage.h | 682 + .../SDL3.framework/Headers/SDL_surface.h | 1563 ++ .../SDL3.framework/Headers/SDL_system.h | 818 + .../SDL3.framework/Headers/SDL_thread.h | 578 + .../SDL3.framework/Headers/SDL_time.h | 231 + .../SDL3.framework/Headers/SDL_timer.h | 450 + .../SDL3.framework/Headers/SDL_touch.h | 184 + .../SDL3.framework/Headers/SDL_tray.h | 544 + .../SDL3.framework/Headers/SDL_version.h | 183 + .../SDL3.framework/Headers/SDL_video.h | 3311 ++++ .../SDL3.framework/Headers/SDL_vulkan.h | 287 + .../ios-arm64/SDL3.framework/INSTALL.md | 41 + .../ios-arm64/SDL3.framework/Info.plist | Bin 0 -> 855 bytes .../ios-arm64/SDL3.framework/LICENSE.txt | 18 + .../ios-arm64/SDL3.framework/README.md | 17 + .../ios-arm64/SDL3.framework/SDL3 | Bin 0 -> 1651920 bytes .../ios-arm64/SDL3.framework/default.metallib | Bin 0 -> 34505 bytes .../SDL3.framework/Headers/SDL.h | 90 + .../SDL3.framework/Headers/SDL_assert.h | 662 + .../SDL3.framework/Headers/SDL_asyncio.h | 546 + .../SDL3.framework/Headers/SDL_atomic.h | 664 + .../SDL3.framework/Headers/SDL_audio.h | 2203 +++ .../SDL3.framework/Headers/SDL_begin_code.h | 486 + .../SDL3.framework/Headers/SDL_bits.h | 147 + .../SDL3.framework/Headers/SDL_blendmode.h | 202 + .../SDL3.framework/Headers/SDL_camera.h | 519 + .../SDL3.framework/Headers/SDL_clipboard.h | 331 + .../SDL3.framework/Headers/SDL_close_code.h | 41 + .../SDL3.framework/Headers/SDL_copying.h | 22 + .../SDL3.framework/Headers/SDL_cpuinfo.h | 353 + .../SDL3.framework/Headers/SDL_dialog.h | 341 + .../SDL3.framework/Headers/SDL_egl.h | 2355 +++ .../SDL3.framework/Headers/SDL_endian.h | 645 + .../SDL3.framework/Headers/SDL_error.h | 226 + .../SDL3.framework/Headers/SDL_events.h | 1576 ++ .../SDL3.framework/Headers/SDL_filesystem.h | 503 + .../SDL3.framework/Headers/SDL_gamepad.h | 1509 ++ .../SDL3.framework/Headers/SDL_gpu.h | 4213 +++++ .../SDL3.framework/Headers/SDL_guid.h | 106 + .../SDL3.framework/Headers/SDL_haptic.h | 1441 ++ .../SDL3.framework/Headers/SDL_hidapi.h | 552 + .../SDL3.framework/Headers/SDL_hints.h | 4486 ++++++ .../SDL3.framework/Headers/SDL_init.h | 497 + .../SDL3.framework/Headers/SDL_intrin.h | 407 + .../SDL3.framework/Headers/SDL_iostream.h | 1354 ++ .../SDL3.framework/Headers/SDL_joystick.h | 1202 ++ .../SDL3.framework/Headers/SDL_keyboard.h | 609 + .../SDL3.framework/Headers/SDL_keycode.h | 343 + .../SDL3.framework/Headers/SDL_loadso.h | 145 + .../SDL3.framework/Headers/SDL_locale.h | 117 + .../SDL3.framework/Headers/SDL_log.h | 538 + .../SDL3.framework/Headers/SDL_main.h | 675 + .../SDL3.framework/Headers/SDL_main_impl.h | 151 + .../SDL3.framework/Headers/SDL_messagebox.h | 226 + .../SDL3.framework/Headers/SDL_metal.h | 107 + .../SDL3.framework/Headers/SDL_misc.h | 78 + .../SDL3.framework/Headers/SDL_mouse.h | 689 + .../SDL3.framework/Headers/SDL_mutex.h | 1073 ++ .../SDL3.framework/Headers/SDL_oldnames.h | 1327 ++ .../SDL3.framework/Headers/SDL_opengl.h | 3101 ++++ .../SDL3.framework/Headers/SDL_opengl_glext.h | 13213 ++++++++++++++++ .../SDL3.framework/Headers/SDL_opengles.h | 38 + .../SDL3.framework/Headers/SDL_opengles2.h | 51 + .../Headers/SDL_opengles2_gl2.h | 656 + .../Headers/SDL_opengles2_gl2ext.h | 4033 +++++ .../Headers/SDL_opengles2_gl2platform.h | 27 + .../Headers/SDL_opengles2_khrplatform.h | 311 + .../SDL3.framework/Headers/SDL_pen.h | 127 + .../SDL3.framework/Headers/SDL_pixels.h | 1441 ++ .../SDL3.framework/Headers/SDL_platform.h | 64 + .../Headers/SDL_platform_defines.h | 476 + .../SDL3.framework/Headers/SDL_power.h | 106 + .../SDL3.framework/Headers/SDL_process.h | 430 + .../SDL3.framework/Headers/SDL_properties.h | 543 + .../SDL3.framework/Headers/SDL_rect.h | 507 + .../SDL3.framework/Headers/SDL_render.h | 2645 ++++ .../SDL3.framework/Headers/SDL_revision.h | 56 + .../SDL3.framework/Headers/SDL_scancode.h | 429 + .../SDL3.framework/Headers/SDL_sensor.h | 320 + .../SDL3.framework/Headers/SDL_stdinc.h | 6137 +++++++ .../SDL3.framework/Headers/SDL_storage.h | 682 + .../SDL3.framework/Headers/SDL_surface.h | 1563 ++ .../SDL3.framework/Headers/SDL_system.h | 818 + .../SDL3.framework/Headers/SDL_thread.h | 578 + .../SDL3.framework/Headers/SDL_time.h | 231 + .../SDL3.framework/Headers/SDL_timer.h | 450 + .../SDL3.framework/Headers/SDL_touch.h | 184 + .../SDL3.framework/Headers/SDL_tray.h | 544 + .../SDL3.framework/Headers/SDL_version.h | 183 + .../SDL3.framework/Headers/SDL_video.h | 3311 ++++ .../SDL3.framework/Headers/SDL_vulkan.h | 287 + .../SDL3.framework/INSTALL.md | 41 + .../SDL3.framework/Info.plist | Bin 0 -> 835 bytes .../SDL3.framework/LICENSE.txt | 18 + .../SDL3.framework/README.md | 17 + .../SDL3.framework/SDL3 | Bin 0 -> 3665536 bytes .../_CodeSignature/CodeResources | 982 ++ .../SDL3.framework/default.metallib | Bin 0 -> 37843 bytes .../macos-arm64_x86_64/SDL3.framework/Headers | 1 + .../SDL3.framework/Resources | 1 + .../macos-arm64_x86_64/SDL3.framework/SDL3 | 1 + .../SDL3.framework/Versions/A/Headers/SDL.h | 90 + .../Versions/A/Headers/SDL_assert.h | 662 + .../Versions/A/Headers/SDL_asyncio.h | 546 + .../Versions/A/Headers/SDL_atomic.h | 664 + .../Versions/A/Headers/SDL_audio.h | 2203 +++ .../Versions/A/Headers/SDL_begin_code.h | 486 + .../Versions/A/Headers/SDL_bits.h | 147 + .../Versions/A/Headers/SDL_blendmode.h | 202 + .../Versions/A/Headers/SDL_camera.h | 519 + .../Versions/A/Headers/SDL_clipboard.h | 331 + .../Versions/A/Headers/SDL_close_code.h | 41 + .../Versions/A/Headers/SDL_copying.h | 22 + .../Versions/A/Headers/SDL_cpuinfo.h | 353 + .../Versions/A/Headers/SDL_dialog.h | 341 + .../Versions/A/Headers/SDL_egl.h | 2355 +++ .../Versions/A/Headers/SDL_endian.h | 645 + .../Versions/A/Headers/SDL_error.h | 226 + .../Versions/A/Headers/SDL_events.h | 1576 ++ .../Versions/A/Headers/SDL_filesystem.h | 503 + .../Versions/A/Headers/SDL_gamepad.h | 1509 ++ .../Versions/A/Headers/SDL_gpu.h | 4213 +++++ .../Versions/A/Headers/SDL_guid.h | 106 + .../Versions/A/Headers/SDL_haptic.h | 1441 ++ .../Versions/A/Headers/SDL_hidapi.h | 552 + .../Versions/A/Headers/SDL_hints.h | 4486 ++++++ .../Versions/A/Headers/SDL_init.h | 497 + .../Versions/A/Headers/SDL_intrin.h | 407 + .../Versions/A/Headers/SDL_iostream.h | 1354 ++ .../Versions/A/Headers/SDL_joystick.h | 1202 ++ .../Versions/A/Headers/SDL_keyboard.h | 609 + .../Versions/A/Headers/SDL_keycode.h | 343 + .../Versions/A/Headers/SDL_loadso.h | 145 + .../Versions/A/Headers/SDL_locale.h | 117 + .../Versions/A/Headers/SDL_log.h | 538 + .../Versions/A/Headers/SDL_main.h | 675 + .../Versions/A/Headers/SDL_main_impl.h | 151 + .../Versions/A/Headers/SDL_messagebox.h | 226 + .../Versions/A/Headers/SDL_metal.h | 107 + .../Versions/A/Headers/SDL_misc.h | 78 + .../Versions/A/Headers/SDL_mouse.h | 689 + .../Versions/A/Headers/SDL_mutex.h | 1073 ++ .../Versions/A/Headers/SDL_oldnames.h | 1327 ++ .../Versions/A/Headers/SDL_opengl.h | 3101 ++++ .../Versions/A/Headers/SDL_opengl_glext.h | 13213 ++++++++++++++++ .../Versions/A/Headers/SDL_opengles.h | 38 + .../Versions/A/Headers/SDL_opengles2.h | 51 + .../Versions/A/Headers/SDL_opengles2_gl2.h | 656 + .../Versions/A/Headers/SDL_opengles2_gl2ext.h | 4033 +++++ .../A/Headers/SDL_opengles2_gl2platform.h | 27 + .../A/Headers/SDL_opengles2_khrplatform.h | 311 + .../Versions/A/Headers/SDL_pen.h | 127 + .../Versions/A/Headers/SDL_pixels.h | 1441 ++ .../Versions/A/Headers/SDL_platform.h | 64 + .../Versions/A/Headers/SDL_platform_defines.h | 476 + .../Versions/A/Headers/SDL_power.h | 106 + .../Versions/A/Headers/SDL_process.h | 430 + .../Versions/A/Headers/SDL_properties.h | 543 + .../Versions/A/Headers/SDL_rect.h | 507 + .../Versions/A/Headers/SDL_render.h | 2645 ++++ .../Versions/A/Headers/SDL_revision.h | 56 + .../Versions/A/Headers/SDL_scancode.h | 429 + .../Versions/A/Headers/SDL_sensor.h | 320 + .../Versions/A/Headers/SDL_stdinc.h | 6137 +++++++ .../Versions/A/Headers/SDL_storage.h | 682 + .../Versions/A/Headers/SDL_surface.h | 1563 ++ .../Versions/A/Headers/SDL_system.h | 818 + .../Versions/A/Headers/SDL_thread.h | 578 + .../Versions/A/Headers/SDL_time.h | 231 + .../Versions/A/Headers/SDL_timer.h | 450 + .../Versions/A/Headers/SDL_touch.h | 184 + .../Versions/A/Headers/SDL_tray.h | 544 + .../Versions/A/Headers/SDL_version.h | 183 + .../Versions/A/Headers/SDL_video.h | 3311 ++++ .../Versions/A/Headers/SDL_vulkan.h | 287 + .../Versions/A/Resources/INSTALL.md | 41 + .../Versions/A/Resources/Info.plist | 50 + .../Versions/A/Resources/LICENSE.txt | 18 + .../Versions/A/Resources/README.md | 17 + .../Versions/A/Resources/default.metallib | Bin 0 -> 33609 bytes .../SDL3.framework/Versions/A/SDL3 | Bin 0 -> 4516064 bytes .../Versions/A/_CodeSignature/CodeResources | 712 + .../SDL3.framework/Versions/Current | 1 + .../tvos-arm64/SDL3.framework/Headers/SDL.h | 90 + .../SDL3.framework/Headers/SDL_assert.h | 662 + .../SDL3.framework/Headers/SDL_asyncio.h | 546 + .../SDL3.framework/Headers/SDL_atomic.h | 664 + .../SDL3.framework/Headers/SDL_audio.h | 2203 +++ .../SDL3.framework/Headers/SDL_begin_code.h | 486 + .../SDL3.framework/Headers/SDL_bits.h | 147 + .../SDL3.framework/Headers/SDL_blendmode.h | 202 + .../SDL3.framework/Headers/SDL_camera.h | 519 + .../SDL3.framework/Headers/SDL_clipboard.h | 331 + .../SDL3.framework/Headers/SDL_close_code.h | 41 + .../SDL3.framework/Headers/SDL_copying.h | 22 + .../SDL3.framework/Headers/SDL_cpuinfo.h | 353 + .../SDL3.framework/Headers/SDL_dialog.h | 341 + .../SDL3.framework/Headers/SDL_egl.h | 2355 +++ .../SDL3.framework/Headers/SDL_endian.h | 645 + .../SDL3.framework/Headers/SDL_error.h | 226 + .../SDL3.framework/Headers/SDL_events.h | 1576 ++ .../SDL3.framework/Headers/SDL_filesystem.h | 503 + .../SDL3.framework/Headers/SDL_gamepad.h | 1509 ++ .../SDL3.framework/Headers/SDL_gpu.h | 4213 +++++ .../SDL3.framework/Headers/SDL_guid.h | 106 + .../SDL3.framework/Headers/SDL_haptic.h | 1441 ++ .../SDL3.framework/Headers/SDL_hidapi.h | 552 + .../SDL3.framework/Headers/SDL_hints.h | 4486 ++++++ .../SDL3.framework/Headers/SDL_init.h | 497 + .../SDL3.framework/Headers/SDL_intrin.h | 407 + .../SDL3.framework/Headers/SDL_iostream.h | 1354 ++ .../SDL3.framework/Headers/SDL_joystick.h | 1202 ++ .../SDL3.framework/Headers/SDL_keyboard.h | 609 + .../SDL3.framework/Headers/SDL_keycode.h | 343 + .../SDL3.framework/Headers/SDL_loadso.h | 145 + .../SDL3.framework/Headers/SDL_locale.h | 117 + .../SDL3.framework/Headers/SDL_log.h | 538 + .../SDL3.framework/Headers/SDL_main.h | 675 + .../SDL3.framework/Headers/SDL_main_impl.h | 151 + .../SDL3.framework/Headers/SDL_messagebox.h | 226 + .../SDL3.framework/Headers/SDL_metal.h | 107 + .../SDL3.framework/Headers/SDL_misc.h | 78 + .../SDL3.framework/Headers/SDL_mouse.h | 689 + .../SDL3.framework/Headers/SDL_mutex.h | 1073 ++ .../SDL3.framework/Headers/SDL_oldnames.h | 1327 ++ .../SDL3.framework/Headers/SDL_opengl.h | 3101 ++++ .../SDL3.framework/Headers/SDL_opengl_glext.h | 13213 ++++++++++++++++ .../SDL3.framework/Headers/SDL_opengles.h | 38 + .../SDL3.framework/Headers/SDL_opengles2.h | 51 + .../Headers/SDL_opengles2_gl2.h | 656 + .../Headers/SDL_opengles2_gl2ext.h | 4033 +++++ .../Headers/SDL_opengles2_gl2platform.h | 27 + .../Headers/SDL_opengles2_khrplatform.h | 311 + .../SDL3.framework/Headers/SDL_pen.h | 127 + .../SDL3.framework/Headers/SDL_pixels.h | 1441 ++ .../SDL3.framework/Headers/SDL_platform.h | 64 + .../Headers/SDL_platform_defines.h | 476 + .../SDL3.framework/Headers/SDL_power.h | 106 + .../SDL3.framework/Headers/SDL_process.h | 430 + .../SDL3.framework/Headers/SDL_properties.h | 543 + .../SDL3.framework/Headers/SDL_rect.h | 507 + .../SDL3.framework/Headers/SDL_render.h | 2645 ++++ .../SDL3.framework/Headers/SDL_revision.h | 56 + .../SDL3.framework/Headers/SDL_scancode.h | 429 + .../SDL3.framework/Headers/SDL_sensor.h | 320 + .../SDL3.framework/Headers/SDL_stdinc.h | 6137 +++++++ .../SDL3.framework/Headers/SDL_storage.h | 682 + .../SDL3.framework/Headers/SDL_surface.h | 1563 ++ .../SDL3.framework/Headers/SDL_system.h | 818 + .../SDL3.framework/Headers/SDL_thread.h | 578 + .../SDL3.framework/Headers/SDL_time.h | 231 + .../SDL3.framework/Headers/SDL_timer.h | 450 + .../SDL3.framework/Headers/SDL_touch.h | 184 + .../SDL3.framework/Headers/SDL_tray.h | 544 + .../SDL3.framework/Headers/SDL_version.h | 183 + .../SDL3.framework/Headers/SDL_video.h | 3311 ++++ .../SDL3.framework/Headers/SDL_vulkan.h | 287 + .../tvos-arm64/SDL3.framework/INSTALL.md | 41 + .../tvos-arm64/SDL3.framework/Info.plist | Bin 0 -> 812 bytes .../tvos-arm64/SDL3.framework/LICENSE.txt | 18 + .../tvos-arm64/SDL3.framework/README.md | 17 + .../tvos-arm64/SDL3.framework/SDL3 | Bin 0 -> 1631208 bytes .../SDL3.framework/default.metallib | Bin 0 -> 34521 bytes .../SDL3.framework/Headers/SDL.h | 90 + .../SDL3.framework/Headers/SDL_assert.h | 662 + .../SDL3.framework/Headers/SDL_asyncio.h | 546 + .../SDL3.framework/Headers/SDL_atomic.h | 664 + .../SDL3.framework/Headers/SDL_audio.h | 2203 +++ .../SDL3.framework/Headers/SDL_begin_code.h | 486 + .../SDL3.framework/Headers/SDL_bits.h | 147 + .../SDL3.framework/Headers/SDL_blendmode.h | 202 + .../SDL3.framework/Headers/SDL_camera.h | 519 + .../SDL3.framework/Headers/SDL_clipboard.h | 331 + .../SDL3.framework/Headers/SDL_close_code.h | 41 + .../SDL3.framework/Headers/SDL_copying.h | 22 + .../SDL3.framework/Headers/SDL_cpuinfo.h | 353 + .../SDL3.framework/Headers/SDL_dialog.h | 341 + .../SDL3.framework/Headers/SDL_egl.h | 2355 +++ .../SDL3.framework/Headers/SDL_endian.h | 645 + .../SDL3.framework/Headers/SDL_error.h | 226 + .../SDL3.framework/Headers/SDL_events.h | 1576 ++ .../SDL3.framework/Headers/SDL_filesystem.h | 503 + .../SDL3.framework/Headers/SDL_gamepad.h | 1509 ++ .../SDL3.framework/Headers/SDL_gpu.h | 4213 +++++ .../SDL3.framework/Headers/SDL_guid.h | 106 + .../SDL3.framework/Headers/SDL_haptic.h | 1441 ++ .../SDL3.framework/Headers/SDL_hidapi.h | 552 + .../SDL3.framework/Headers/SDL_hints.h | 4486 ++++++ .../SDL3.framework/Headers/SDL_init.h | 497 + .../SDL3.framework/Headers/SDL_intrin.h | 407 + .../SDL3.framework/Headers/SDL_iostream.h | 1354 ++ .../SDL3.framework/Headers/SDL_joystick.h | 1202 ++ .../SDL3.framework/Headers/SDL_keyboard.h | 609 + .../SDL3.framework/Headers/SDL_keycode.h | 343 + .../SDL3.framework/Headers/SDL_loadso.h | 145 + .../SDL3.framework/Headers/SDL_locale.h | 117 + .../SDL3.framework/Headers/SDL_log.h | 538 + .../SDL3.framework/Headers/SDL_main.h | 675 + .../SDL3.framework/Headers/SDL_main_impl.h | 151 + .../SDL3.framework/Headers/SDL_messagebox.h | 226 + .../SDL3.framework/Headers/SDL_metal.h | 107 + .../SDL3.framework/Headers/SDL_misc.h | 78 + .../SDL3.framework/Headers/SDL_mouse.h | 689 + .../SDL3.framework/Headers/SDL_mutex.h | 1073 ++ .../SDL3.framework/Headers/SDL_oldnames.h | 1327 ++ .../SDL3.framework/Headers/SDL_opengl.h | 3101 ++++ .../SDL3.framework/Headers/SDL_opengl_glext.h | 13213 ++++++++++++++++ .../SDL3.framework/Headers/SDL_opengles.h | 38 + .../SDL3.framework/Headers/SDL_opengles2.h | 51 + .../Headers/SDL_opengles2_gl2.h | 656 + .../Headers/SDL_opengles2_gl2ext.h | 4033 +++++ .../Headers/SDL_opengles2_gl2platform.h | 27 + .../Headers/SDL_opengles2_khrplatform.h | 311 + .../SDL3.framework/Headers/SDL_pen.h | 127 + .../SDL3.framework/Headers/SDL_pixels.h | 1441 ++ .../SDL3.framework/Headers/SDL_platform.h | 64 + .../Headers/SDL_platform_defines.h | 476 + .../SDL3.framework/Headers/SDL_power.h | 106 + .../SDL3.framework/Headers/SDL_process.h | 430 + .../SDL3.framework/Headers/SDL_properties.h | 543 + .../SDL3.framework/Headers/SDL_rect.h | 507 + .../SDL3.framework/Headers/SDL_render.h | 2645 ++++ .../SDL3.framework/Headers/SDL_revision.h | 56 + .../SDL3.framework/Headers/SDL_scancode.h | 429 + .../SDL3.framework/Headers/SDL_sensor.h | 320 + .../SDL3.framework/Headers/SDL_stdinc.h | 6137 +++++++ .../SDL3.framework/Headers/SDL_storage.h | 682 + .../SDL3.framework/Headers/SDL_surface.h | 1563 ++ .../SDL3.framework/Headers/SDL_system.h | 818 + .../SDL3.framework/Headers/SDL_thread.h | 578 + .../SDL3.framework/Headers/SDL_time.h | 231 + .../SDL3.framework/Headers/SDL_timer.h | 450 + .../SDL3.framework/Headers/SDL_touch.h | 184 + .../SDL3.framework/Headers/SDL_tray.h | 544 + .../SDL3.framework/Headers/SDL_version.h | 183 + .../SDL3.framework/Headers/SDL_video.h | 3311 ++++ .../SDL3.framework/Headers/SDL_vulkan.h | 287 + .../SDL3.framework/INSTALL.md | 41 + .../SDL3.framework/Info.plist | Bin 0 -> 839 bytes .../SDL3.framework/LICENSE.txt | 18 + .../SDL3.framework/README.md | 17 + .../SDL3.framework/SDL3 | Bin 0 -> 3595392 bytes .../_CodeSignature/CodeResources | 982 ++ .../SDL3.framework/default.metallib | Bin 0 -> 37843 bytes release/icon.icns | Bin 0 -> 376935 bytes release/icon.ico | Bin 0 -> 130897 bytes release/icon.png | Bin 0 -> 448813 bytes release/vibe3.rc | 2 + resources.pack | Bin 0 -> 1355 bytes source/external/texture.cpp | 49 +- source/external/texture.h | 3 + source/resource_pack.cpp | 271 + source/resource_pack.h | 68 + tools/README.md | 143 + tools/pack_resources | Bin 0 -> 69616 bytes tools/pack_resources.cpp | 110 + 423 files changed, 390528 insertions(+), 5 deletions(-) create mode 100644 release/Info.plist create mode 100644 release/coffee.res create mode 100644 release/create_icons.py create mode 100644 release/frameworks/SDL3.xcframework/Info.plist create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_assert.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_asyncio.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_atomic.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_audio.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_begin_code.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_bits.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_blendmode.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_camera.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_clipboard.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_close_code.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_copying.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_cpuinfo.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_dialog.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_egl.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_endian.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_error.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_events.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_filesystem.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_gamepad.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_gpu.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_guid.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_haptic.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_hidapi.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_hints.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_init.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_intrin.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_iostream.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_joystick.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_keyboard.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_keycode.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_loadso.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_locale.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_log.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_main.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_main_impl.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_messagebox.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_metal.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_misc.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_mouse.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_mutex.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_oldnames.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengl.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengl_glext.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_gl2.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_gl2ext.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_gl2platform.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_khrplatform.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_pen.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_pixels.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_platform.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_platform_defines.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_power.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_process.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_properties.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_rect.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_render.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_revision.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_scancode.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_sensor.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_stdinc.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_storage.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_surface.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_system.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_thread.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_time.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_timer.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_touch.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_tray.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_version.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_video.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_vulkan.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/INSTALL.md create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Info.plist create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/LICENSE.txt create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/README.md create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/SDL3 create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/default.metallib create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_assert.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_asyncio.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_atomic.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_audio.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_begin_code.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_bits.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_blendmode.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_camera.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_clipboard.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_close_code.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_copying.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_cpuinfo.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_dialog.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_egl.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_endian.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_error.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_events.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_filesystem.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_gamepad.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_gpu.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_guid.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_haptic.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_hidapi.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_hints.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_init.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_intrin.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_iostream.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_joystick.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_keyboard.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_keycode.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_loadso.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_locale.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_log.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_main.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_main_impl.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_messagebox.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_metal.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_misc.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_mouse.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_mutex.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_oldnames.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengl.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengl_glext.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2ext.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2platform.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_khrplatform.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_pen.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_pixels.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_platform.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_platform_defines.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_power.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_process.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_properties.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_rect.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_render.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_revision.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_scancode.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_sensor.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_stdinc.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_storage.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_surface.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_system.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_thread.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_time.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_timer.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_touch.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_tray.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_version.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_video.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_vulkan.h create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/INSTALL.md create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Info.plist create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/LICENSE.txt create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/README.md create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/SDL3 create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/_CodeSignature/CodeResources create mode 100644 release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/default.metallib create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Headers create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Resources create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/SDL3 create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_assert.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_asyncio.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_atomic.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_audio.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_begin_code.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_bits.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_blendmode.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_camera.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_clipboard.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_close_code.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_copying.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_cpuinfo.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_dialog.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_egl.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_endian.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_error.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_events.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_filesystem.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_gamepad.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_gpu.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_guid.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_haptic.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_hidapi.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_hints.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_init.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_intrin.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_iostream.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_joystick.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_keyboard.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_keycode.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_loadso.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_locale.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_log.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_main.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_main_impl.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_messagebox.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_metal.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_misc.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_mouse.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_mutex.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_oldnames.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengl.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengl_glext.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_pen.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_pixels.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_platform.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_platform_defines.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_power.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_process.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_properties.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_rect.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_render.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_revision.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_scancode.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_sensor.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_stdinc.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_storage.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_surface.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_system.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_thread.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_time.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_timer.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_touch.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_tray.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_version.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_video.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_vulkan.h create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/INSTALL.md create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/Info.plist create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/LICENSE.txt create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/README.md create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/default.metallib create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/SDL3 create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/_CodeSignature/CodeResources create mode 100644 release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/Current create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_assert.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_asyncio.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_atomic.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_audio.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_begin_code.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_bits.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_blendmode.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_camera.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_clipboard.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_close_code.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_copying.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_cpuinfo.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_dialog.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_egl.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_endian.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_error.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_events.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_filesystem.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_gamepad.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_gpu.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_guid.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_haptic.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_hidapi.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_hints.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_init.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_intrin.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_iostream.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_joystick.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_keyboard.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_keycode.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_loadso.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_locale.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_log.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_main.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_main_impl.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_messagebox.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_metal.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_misc.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_mouse.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_mutex.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_oldnames.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengl.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengl_glext.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_gl2.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_gl2ext.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_gl2platform.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_khrplatform.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_pen.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_pixels.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_platform.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_platform_defines.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_power.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_process.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_properties.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_rect.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_render.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_revision.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_scancode.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_sensor.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_stdinc.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_storage.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_surface.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_system.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_thread.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_time.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_timer.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_touch.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_tray.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_version.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_video.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_vulkan.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/INSTALL.md create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Info.plist create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/LICENSE.txt create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/README.md create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/SDL3 create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/default.metallib create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_assert.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_asyncio.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_atomic.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_audio.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_begin_code.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_bits.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_blendmode.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_camera.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_clipboard.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_close_code.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_copying.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_cpuinfo.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_dialog.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_egl.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_endian.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_error.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_events.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_filesystem.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_gamepad.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_gpu.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_guid.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_haptic.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_hidapi.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_hints.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_init.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_intrin.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_iostream.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_joystick.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_keyboard.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_keycode.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_loadso.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_locale.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_log.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_main.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_main_impl.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_messagebox.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_metal.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_misc.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_mouse.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_mutex.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_oldnames.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengl.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengl_glext.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2ext.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2platform.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_khrplatform.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_pen.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_pixels.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_platform.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_platform_defines.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_power.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_process.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_properties.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_rect.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_render.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_revision.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_scancode.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_sensor.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_stdinc.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_storage.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_surface.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_system.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_thread.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_time.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_timer.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_touch.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_tray.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_version.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_video.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_vulkan.h create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/INSTALL.md create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/Info.plist create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/LICENSE.txt create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/README.md create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/SDL3 create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/_CodeSignature/CodeResources create mode 100644 release/frameworks/SDL3.xcframework/tvos-arm64_x86_64-simulator/SDL3.framework/default.metallib create mode 100644 release/icon.icns create mode 100644 release/icon.ico create mode 100644 release/icon.png create mode 100644 release/vibe3.rc create mode 100644 resources.pack create mode 100644 source/resource_pack.cpp create mode 100644 source/resource_pack.h create mode 100644 tools/README.md create mode 100644 tools/pack_resources create mode 100644 tools/pack_resources.cpp diff --git a/release/Info.plist b/release/Info.plist new file mode 100644 index 0000000..4aa1210 --- /dev/null +++ b/release/Info.plist @@ -0,0 +1,42 @@ + + + + + CFBundleDevelopmentRegion + es + CFBundleDisplayName + ViBe3 Physics + CFBundleExecutable + vibe3_physics + CFBundleIconFile + icon + CFBundleIconName + icon + CFBundleIdentifier + net.jailgames.vibe3_physics + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + vibe3_physics + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + CSResourcesFileMapped + + LSMinimumSystemVersion + 10.15 + NSHighResolutionCapable + + NSHumanReadableCopyright + Copyright 2025 JailDesigner + NSPrincipalClass + NSApplication + SUPublicDSAKeyFile + dsa_pub.pem + + diff --git a/release/coffee.res b/release/coffee.res new file mode 100644 index 0000000000000000000000000000000000000000..931cc1ada1009e1b3c12204f42fa0d29da949454 GIT binary patch literal 131472 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 literal 0 HcmV?d00001 diff --git a/release/create_icons.py b/release/create_icons.py new file mode 100644 index 0000000..84c07d3 --- /dev/null +++ b/release/create_icons.py @@ -0,0 +1,150 @@ +#!/usr/bin/env python3 + +import os +import sys +import shutil +import subprocess +from pathlib import Path + + +def check_dependencies(): + """Verifica que ImageMagick esté instalado""" + try: + subprocess.run(['magick', '--version'], capture_output=True, check=True) + except (subprocess.CalledProcessError, FileNotFoundError): + print("Error: ImageMagick no está instalado o no se encuentra en el PATH") + print("Instala ImageMagick desde: https://imagemagick.org/script/download.php") + sys.exit(1) + + # Verificar iconutil solo en macOS + if sys.platform == 'darwin': + try: + # iconutil no tiene --version, mejor usar which o probar con -h + result = subprocess.run(['which', 'iconutil'], capture_output=True, check=True) + if result.returncode == 0: + print("✓ iconutil disponible - se crearán archivos .ico e .icns") + except (subprocess.CalledProcessError, FileNotFoundError): + print("Error: iconutil no está disponible (solo funciona en macOS)") + print("Solo se creará el archivo .ico") + else: + print("ℹ️ Sistema no-macOS detectado - solo se creará archivo .ico") + + +def create_icons(input_file): + """Crea archivos .icns e .ico a partir de un PNG""" + + # Verificar que el archivo existe + if not os.path.isfile(input_file): + print(f"Error: El archivo {input_file} no existe.") + return False + + # Obtener información del archivo + file_path = Path(input_file) + file_dir = file_path.parent + file_name = file_path.stem # Nombre sin extensión + file_extension = file_path.suffix + + if file_extension.lower() not in ['.png', '.jpg', '.jpeg', '.bmp', '.tiff']: + print(f"Advertencia: {file_extension} puede no ser compatible. Se recomienda usar PNG.") + + # Crear archivo .ico usando el método simplificado + ico_output = file_dir / f"{file_name}.ico" + try: + print(f"Creando {ico_output}...") + subprocess.run([ + 'magick', str(input_file), + '-define', 'icon:auto-resize=256,128,64,48,32,16', + str(ico_output) + ], check=True) + print(f"✓ Archivo .ico creado: {ico_output}") + except subprocess.CalledProcessError as e: + print(f"Error creando archivo .ico: {e}") + return False + + # Crear archivo .icns (solo en macOS) + if sys.platform == 'darwin': + try: + # Crear carpeta temporal para iconset + temp_folder = file_dir / "icon.iconset" + + # Eliminar carpeta temporal si existe + if temp_folder.exists(): + shutil.rmtree(temp_folder) + + # Crear carpeta temporal + temp_folder.mkdir(parents=True) + + # Definir los tamaños y nombres de archivo para .icns + icon_sizes = [ + (16, "icon_16x16.png"), + (32, "icon_16x16@2x.png"), + (32, "icon_32x32.png"), + (64, "icon_32x32@2x.png"), + (128, "icon_128x128.png"), + (256, "icon_128x128@2x.png"), + (256, "icon_256x256.png"), + (512, "icon_256x256@2x.png"), + (512, "icon_512x512.png"), + (1024, "icon_512x512@2x.png") + ] + + print("Generando imágenes para .icns...") + # Crear cada tamaño de imagen + for size, output_name in icon_sizes: + output_path = temp_folder / output_name + subprocess.run([ + 'magick', str(input_file), + '-resize', f'{size}x{size}', + str(output_path) + ], check=True) + + # Crear archivo .icns usando iconutil + icns_output = file_dir / f"{file_name}.icns" + print(f"Creando {icns_output}...") + subprocess.run([ + 'iconutil', '-c', 'icns', + str(temp_folder), + '-o', str(icns_output) + ], check=True) + + # Limpiar carpeta temporal + if temp_folder.exists(): + shutil.rmtree(temp_folder) + + print(f"✓ Archivo .icns creado: {icns_output}") + + except subprocess.CalledProcessError as e: + print(f"Error creando archivo .icns: {e}") + # Limpiar carpeta temporal en caso de error + if temp_folder.exists(): + shutil.rmtree(temp_folder) + return False + else: + print("ℹ️ Archivo .icns no creado (solo disponible en macOS)") + + return True + + +def main(): + """Función principal""" + # Verificar argumentos + if len(sys.argv) != 2: + print(f"Uso: {sys.argv[0]} ARCHIVO") + print("Ejemplo: python3 create_icons.py imagen.png") + sys.exit(0) + + input_file = sys.argv[1] + + # Verificar dependencias + check_dependencies() + + # Crear iconos + if create_icons(input_file): + print("\n✅ Proceso completado exitosamente") + else: + print("\n❌ El proceso falló") + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/release/frameworks/SDL3.xcframework/Info.plist b/release/frameworks/SDL3.xcframework/Info.plist new file mode 100644 index 0000000..fb3936c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/Info.plist @@ -0,0 +1,90 @@ + + + + + AvailableLibraries + + + BinaryPath + SDL3.framework/Versions/A/SDL3 + LibraryIdentifier + macos-arm64_x86_64 + LibraryPath + SDL3.framework + SupportedArchitectures + + arm64 + x86_64 + + SupportedPlatform + macos + + + BinaryPath + SDL3.framework/SDL3 + LibraryIdentifier + tvos-arm64 + LibraryPath + SDL3.framework + SupportedArchitectures + + arm64 + + SupportedPlatform + tvos + + + BinaryPath + SDL3.framework/SDL3 + LibraryIdentifier + ios-arm64 + LibraryPath + SDL3.framework + SupportedArchitectures + + arm64 + + SupportedPlatform + ios + + + BinaryPath + SDL3.framework/SDL3 + LibraryIdentifier + ios-arm64_x86_64-simulator + LibraryPath + SDL3.framework + SupportedArchitectures + + arm64 + x86_64 + + SupportedPlatform + ios + SupportedPlatformVariant + simulator + + + BinaryPath + SDL3.framework/SDL3 + LibraryIdentifier + tvos-arm64_x86_64-simulator + LibraryPath + SDL3.framework + SupportedArchitectures + + arm64 + x86_64 + + SupportedPlatform + tvos + SupportedPlatformVariant + simulator + + + CFBundlePackageType + XFWK + XCFrameworkFormatVersion + 1.0 + + diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL.h new file mode 100644 index 0000000..587b541 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL.h @@ -0,0 +1,90 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * Main include header for the SDL library, version 3.2.20 + * + * It is almost always best to include just this one header instead of + * picking out individual headers included here. There are exceptions to + * this rule--SDL_main.h is special and not included here--but usually + * letting SDL.h include the kitchen sink for you is the correct approach. + */ + +#ifndef SDL_h_ +#define SDL_h_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#endif /* SDL_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_assert.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_assert.h new file mode 100644 index 0000000..053af13 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_assert.h @@ -0,0 +1,662 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryAssert + * + * A helpful assertion macro! + * + * SDL assertions operate like your usual `assert` macro, but with some added + * features: + * + * - It uses a trick with the `sizeof` operator, so disabled assertions + * vaporize out of the compiled code, but variables only referenced in the + * assertion won't trigger compiler warnings about being unused. + * - It is safe to use with a dangling-else: `if (x) SDL_assert(y); else + * do_something();` + * - It works the same everywhere, instead of counting on various platforms' + * compiler and C runtime to behave. + * - It provides multiple levels of assertion (SDL_assert, SDL_assert_release, + * SDL_assert_paranoid) instead of a single all-or-nothing option. + * - It offers a variety of responses when an assertion fails (retry, trigger + * the debugger, abort the program, ignore the failure once, ignore it for + * the rest of the program's run). + * - It tries to show the user a dialog by default, if possible, but the app + * can provide a callback to handle assertion failures however they like. + * - It lets failed assertions be retried. Perhaps you had a network failure + * and just want to retry the test after plugging your network cable back + * in? You can. + * - It lets the user ignore an assertion failure, if there's a harmless + * problem that one can continue past. + * - It lets the user mark an assertion as ignored for the rest of the + * program's run; if there's a harmless problem that keeps popping up. + * - It provides statistics and data on all failed assertions to the app. + * - It allows the default assertion handler to be controlled with environment + * variables, in case an automated script needs to control it. + * - It can be used as an aid to Clang's static analysis; it will treat SDL + * assertions as universally true (under the assumption that you are serious + * about the asserted claims and that your debug builds will detect when + * these claims were wrong). This can help the analyzer avoid false + * positives. + * + * To use it: compile a debug build and just sprinkle around tests to check + * your code! + */ + +#ifndef SDL_assert_h_ +#define SDL_assert_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * The level of assertion aggressiveness. + * + * This value changes depending on compiler options and other preprocessor + * defines. + * + * It is currently one of the following values, but future SDL releases might + * add more: + * + * - 0: All SDL assertion macros are disabled. + * - 1: Release settings: SDL_assert disabled, SDL_assert_release enabled. + * - 2: Debug settings: SDL_assert and SDL_assert_release enabled. + * - 3: Paranoid settings: All SDL assertion macros enabled, including + * SDL_assert_paranoid. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ASSERT_LEVEL SomeNumberBasedOnVariousFactors + +#elif !defined(SDL_ASSERT_LEVEL) +#ifdef SDL_DEFAULT_ASSERT_LEVEL +#define SDL_ASSERT_LEVEL SDL_DEFAULT_ASSERT_LEVEL +#elif defined(_DEBUG) || defined(DEBUG) || \ + (defined(__GNUC__) && !defined(__OPTIMIZE__)) +#define SDL_ASSERT_LEVEL 2 +#else +#define SDL_ASSERT_LEVEL 1 +#endif +#endif + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Attempt to tell an attached debugger to pause. + * + * This allows an app to programmatically halt ("break") the debugger as if it + * had hit a breakpoint, allowing the developer to examine program state, etc. + * + * This is a macro--not a function--so that the debugger breaks on the source + * code line that used SDL_TriggerBreakpoint and not in some random guts of + * SDL. SDL_assert uses this macro for the same reason. + * + * If the program is not running under a debugger, SDL_TriggerBreakpoint will + * likely terminate the app, possibly without warning. If the current platform + * isn't supported, this macro is left undefined. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TriggerBreakpoint() TriggerABreakpointInAPlatformSpecificManner + +#elif defined(_MSC_VER) && _MSC_VER >= 1310 + /* Don't include intrin.h here because it contains C++ code */ + extern void __cdecl __debugbreak(void); + #define SDL_TriggerBreakpoint() __debugbreak() +#elif defined(_MSC_VER) && defined(_M_IX86) + #define SDL_TriggerBreakpoint() { _asm { int 0x03 } } +#elif defined(ANDROID) + #include + #define SDL_TriggerBreakpoint() assert(0) +#elif SDL_HAS_BUILTIN(__builtin_debugtrap) + #define SDL_TriggerBreakpoint() __builtin_debugtrap() +#elif SDL_HAS_BUILTIN(__builtin_trap) + #define SDL_TriggerBreakpoint() __builtin_trap() +#elif (defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__)) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "int $3\n\t" ) +#elif (defined(__GNUC__) || defined(__clang__)) && defined(__riscv) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "ebreak\n\t" ) +#elif ( defined(SDL_PLATFORM_APPLE) && (defined(__arm64__) || defined(__aarch64__)) ) /* this might work on other ARM targets, but this is a known quantity... */ + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "brk #22\n\t" ) +#elif defined(SDL_PLATFORM_APPLE) && defined(__arm__) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "bkpt #22\n\t" ) +#elif defined(_WIN32) && ((defined(__GNUC__) || defined(__clang__)) && (defined(__arm64__) || defined(__aarch64__)) ) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "brk #0xF000\n\t" ) +#elif defined(__GNUC__) || defined(__clang__) + #define SDL_TriggerBreakpoint() __builtin_trap() /* older gcc may not support SDL_HAS_BUILTIN(__builtin_trap) above */ +#elif defined(__386__) && defined(__WATCOMC__) + #define SDL_TriggerBreakpoint() { _asm { int 0x03 } } +#elif defined(HAVE_SIGNAL_H) && !defined(__WATCOMC__) + #include + #define SDL_TriggerBreakpoint() raise(SIGTRAP) +#else + /* SDL_TriggerBreakpoint is intentionally left undefined on unknown platforms. */ +#endif + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro that reports the current function being compiled. + * + * If SDL can't figure how the compiler reports this, it will use "???". + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FUNCTION __FUNCTION__ + +#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 supports __func__ as a standard. */ +# define SDL_FUNCTION __func__ +#elif ((defined(__GNUC__) && (__GNUC__ >= 2)) || defined(_MSC_VER) || defined (__WATCOMC__)) +# define SDL_FUNCTION __FUNCTION__ +#else +# define SDL_FUNCTION "???" +#endif + +/** + * A macro that reports the current file being compiled. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FILE __FILE__ + +/** + * A macro that reports the current line number of the file being compiled. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_LINE __LINE__ + +/* +sizeof (x) makes the compiler still parse the expression even without +assertions enabled, so the code is always checked at compile time, but +doesn't actually generate code for it, so there are no side effects or +expensive checks at run time, just the constant size of what x WOULD be, +which presumably gets optimized out as unused. +This also solves the problem of... + + int somevalue = blah(); + SDL_assert(somevalue == 1); + +...which would cause compiles to complain that somevalue is unused if we +disable assertions. +*/ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro for wrapping code in `do {} while (0);` without compiler warnings. + * + * Visual Studio with really aggressive warnings enabled needs this to avoid + * compiler complaints. + * + * the `do {} while (0);` trick is useful for wrapping code in a macro that + * may or may not be a single statement, to avoid various C language + * accidents. + * + * To use: + * + * ```c + * do { SomethingOnce(); } while (SDL_NULL_WHILE_LOOP_CONDITION (0)); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NULL_WHILE_LOOP_CONDITION (0) + +#elif defined(_MSC_VER) /* Avoid /W4 warnings. */ +/* "while (0,0)" fools Microsoft's compiler's /W4 warning level into thinking + this condition isn't constant. And looks like an owl's face! */ +#define SDL_NULL_WHILE_LOOP_CONDITION (0,0) +#else +#define SDL_NULL_WHILE_LOOP_CONDITION (0) +#endif + +/** + * The macro used when an assertion is disabled. + * + * This isn't for direct use by apps, but this is the code that is inserted + * when an SDL_assert is disabled (perhaps in a release build). + * + * The code does nothing, but wraps `condition` in a sizeof operator, which + * generates no code and has no side effects, but avoid compiler warnings + * about unused variables. + * + * \param condition the condition to assert (but not actually run here). + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_disabled_assert(condition) \ + do { (void) sizeof ((condition)); } while (SDL_NULL_WHILE_LOOP_CONDITION) + +/** + * Possible outcomes from a triggered assertion. + * + * When an enabled assertion triggers, it may call the assertion handler + * (possibly one provided by the app via SDL_SetAssertionHandler), which will + * return one of these values, possibly after asking the user. + * + * Then SDL will respond based on this outcome (loop around to retry the + * condition, try to break in a debugger, kill the program, or ignore the + * problem). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AssertState +{ + SDL_ASSERTION_RETRY, /**< Retry the assert immediately. */ + SDL_ASSERTION_BREAK, /**< Make the debugger trigger a breakpoint. */ + SDL_ASSERTION_ABORT, /**< Terminate the program. */ + SDL_ASSERTION_IGNORE, /**< Ignore the assert. */ + SDL_ASSERTION_ALWAYS_IGNORE /**< Ignore the assert from now on. */ +} SDL_AssertState; + +/** + * Information about an assertion failure. + * + * This structure is filled in with information about a triggered assertion, + * used by the assertion handler, then added to the assertion report. This is + * returned as a linked list from SDL_GetAssertionReport(). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_AssertData +{ + bool always_ignore; /**< true if app should always continue when assertion is triggered. */ + unsigned int trigger_count; /**< Number of times this assertion has been triggered. */ + const char *condition; /**< A string of this assert's test code. */ + const char *filename; /**< The source file where this assert lives. */ + int linenum; /**< The line in `filename` where this assert lives. */ + const char *function; /**< The name of the function where this assert lives. */ + const struct SDL_AssertData *next; /**< next item in the linked list. */ +} SDL_AssertData; + +/** + * Never call this directly. + * + * Use the SDL_assert macros instead. + * + * \param data assert data structure. + * \param func function name. + * \param file file name. + * \param line line number. + * \returns assert state. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_AssertState SDLCALL SDL_ReportAssertion(SDL_AssertData *data, + const char *func, + const char *file, int line) SDL_ANALYZER_NORETURN; + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * The macro used when an assertion triggers a breakpoint. + * + * This isn't for direct use by apps; use SDL_assert or SDL_TriggerBreakpoint + * instead. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AssertBreakpoint() SDL_TriggerBreakpoint() + +#elif !defined(SDL_AssertBreakpoint) +# if defined(ANDROID) && defined(assert) + /* Define this as empty in case assert() is defined as SDL_assert */ +# define SDL_AssertBreakpoint() +# else +# define SDL_AssertBreakpoint() SDL_TriggerBreakpoint() +# endif +#endif /* !SDL_AssertBreakpoint */ + +/** + * The macro used when an assertion is enabled. + * + * This isn't for direct use by apps, but this is the code that is inserted + * when an SDL_assert is enabled. + * + * The `do {} while(0)` avoids dangling else problems: + * + * ```c + * if (x) SDL_assert(y); else blah(); + * ``` + * + * ... without the do/while, the "else" could attach to this macro's "if". We + * try to handle just the minimum we need here in a macro...the loop, the + * static vars, and break points. The heavy lifting is handled in + * SDL_ReportAssertion(). + * + * \param condition the condition to assert. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_enabled_assert(condition) \ + do { \ + while ( !(condition) ) { \ + static struct SDL_AssertData sdl_assert_data = { false, 0, #condition, NULL, 0, NULL, NULL }; \ + const SDL_AssertState sdl_assert_state = SDL_ReportAssertion(&sdl_assert_data, SDL_FUNCTION, SDL_FILE, SDL_LINE); \ + if (sdl_assert_state == SDL_ASSERTION_RETRY) { \ + continue; /* go again. */ \ + } else if (sdl_assert_state == SDL_ASSERTION_BREAK) { \ + SDL_AssertBreakpoint(); \ + } \ + break; /* not retrying. */ \ + } \ + } while (SDL_NULL_WHILE_LOOP_CONDITION) + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * An assertion test that is normally performed only in debug builds. + * + * This macro is enabled when the SDL_ASSERT_LEVEL is >= 2, otherwise it is + * disabled. This is meant to only do these tests in debug builds, so they can + * tend to be more expensive, and they are meant to bring everything to a halt + * when they fail, with the programmer there to assess the problem. + * + * In short: you can sprinkle these around liberally and assume they will + * evaporate out of the build when building for end-users. + * + * When assertions are disabled, this wraps `condition` in a `sizeof` + * operator, which means any function calls and side effects will not run, but + * the compiler will not complain about any otherwise-unused variables that + * are only referenced in the assertion. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert(condition) if (assertion_enabled && (condition)) { trigger_assertion; } + +/** + * An assertion test that is performed even in release builds. + * + * This macro is enabled when the SDL_ASSERT_LEVEL is >= 1, otherwise it is + * disabled. This is meant to be for tests that are cheap to make and + * extremely unlikely to fail; generally it is frowned upon to have an + * assertion failure in a release build, so these assertions generally need to + * be of more than life-and-death importance if there's a chance they might + * trigger. You should almost always consider handling these cases more + * gracefully than an assert allows. + * + * When assertions are disabled, this wraps `condition` in a `sizeof` + * operator, which means any function calls and side effects will not run, but + * the compiler will not complain about any otherwise-unused variables that + * are only referenced in the assertion. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * * + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert_release(condition) SDL_disabled_assert(condition) + +/** + * An assertion test that is performed only when built with paranoid settings. + * + * This macro is enabled when the SDL_ASSERT_LEVEL is >= 3, otherwise it is + * disabled. This is a higher level than both release and debug, so these + * tests are meant to be expensive and only run when specifically looking for + * extremely unexpected failure cases in a special build. + * + * When assertions are disabled, this wraps `condition` in a `sizeof` + * operator, which means any function calls and side effects will not run, but + * the compiler will not complain about any otherwise-unused variables that + * are only referenced in the assertion. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) + +/* Enable various levels of assertions. */ +#elif SDL_ASSERT_LEVEL == 0 /* assertions disabled */ +# define SDL_assert(condition) SDL_disabled_assert(condition) +# define SDL_assert_release(condition) SDL_disabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 1 /* release settings. */ +# define SDL_assert(condition) SDL_disabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 2 /* debug settings. */ +# define SDL_assert(condition) SDL_enabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 3 /* paranoid settings. */ +# define SDL_assert(condition) SDL_enabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_enabled_assert(condition) +#else +# error Unknown assertion level. +#endif + +/** + * An assertion test that is always performed. + * + * This macro is always enabled no matter what SDL_ASSERT_LEVEL is set to. You + * almost never want to use this, as it could trigger on an end-user's system, + * crashing your program. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert_always(condition) SDL_enabled_assert(condition) + + +/** + * A callback that fires when an SDL assertion fails. + * + * \param data a pointer to the SDL_AssertData structure corresponding to the + * current assertion. + * \param userdata what was passed as `userdata` to SDL_SetAssertionHandler(). + * \returns an SDL_AssertState value indicating how to handle the failure. + * + * \threadsafety This callback may be called from any thread that triggers an + * assert at any time. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AssertState (SDLCALL *SDL_AssertionHandler)( + const SDL_AssertData *data, void *userdata); + +/** + * Set an application-defined assertion handler. + * + * This function allows an application to show its own assertion UI and/or + * force the response to an assertion failure. If the application doesn't + * provide this, SDL will try to do the right thing, popping up a + * system-specific GUI dialog, and probably minimizing any fullscreen windows. + * + * This callback may fire from any thread, but it runs wrapped in a mutex, so + * it will only fire from one thread at a time. + * + * This callback is NOT reset to SDL's internal handler upon SDL_Quit()! + * + * \param handler the SDL_AssertionHandler function to call when an assertion + * fails or NULL for the default handler. + * \param userdata a pointer that is passed to `handler`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAssertionHandler + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetAssertionHandler( + SDL_AssertionHandler handler, + void *userdata); + +/** + * Get the default assertion handler. + * + * This returns the function pointer that is called by default when an + * assertion is triggered. This is an internal function provided by SDL, that + * is used for assertions when SDL_SetAssertionHandler() hasn't been used to + * provide a different function. + * + * \returns the default SDL_AssertionHandler that is called when an assert + * triggers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAssertionHandler + */ +extern SDL_DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetDefaultAssertionHandler(void); + +/** + * Get the current assertion handler. + * + * This returns the function pointer that is called when an assertion is + * triggered. This is either the value last passed to + * SDL_SetAssertionHandler(), or if no application-specified function is set, + * is equivalent to calling SDL_GetDefaultAssertionHandler(). + * + * The parameter `puserdata` is a pointer to a void*, which will store the + * "userdata" pointer that was passed to SDL_SetAssertionHandler(). This value + * will always be NULL for the default handler. If you don't care about this + * data, it is safe to pass a NULL pointer to this function to ignore it. + * + * \param puserdata pointer which is filled with the "userdata" pointer that + * was passed to SDL_SetAssertionHandler(). + * \returns the SDL_AssertionHandler that is called when an assert triggers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAssertionHandler + */ +extern SDL_DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetAssertionHandler(void **puserdata); + +/** + * Get a list of all assertion failures. + * + * This function gets all assertions triggered since the last call to + * SDL_ResetAssertionReport(), or the start of the program. + * + * The proper way to examine this data looks something like this: + * + * ```c + * const SDL_AssertData *item = SDL_GetAssertionReport(); + * while (item) { + * printf("'%s', %s (%s:%d), triggered %u times, always ignore: %s.\\n", + * item->condition, item->function, item->filename, + * item->linenum, item->trigger_count, + * item->always_ignore ? "yes" : "no"); + * item = item->next; + * } + * ``` + * + * \returns a list of all failed assertions or NULL if the list is empty. This + * memory should not be modified or freed by the application. This + * pointer remains valid until the next call to SDL_Quit() or + * SDL_ResetAssertionReport(). + * + * \threadsafety This function is not thread safe. Other threads calling + * SDL_ResetAssertionReport() simultaneously, may render the + * returned pointer invalid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResetAssertionReport + */ +extern SDL_DECLSPEC const SDL_AssertData * SDLCALL SDL_GetAssertionReport(void); + +/** + * Clear the list of all assertion failures. + * + * This function will clear the list of all assertions triggered up to that + * point. Immediately following this call, SDL_GetAssertionReport will return + * no items. In addition, any previously-triggered assertions will be reset to + * a trigger_count of zero, and their always_ignore state will be false. + * + * \threadsafety This function is not thread safe. Other threads triggering an + * assertion, or simultaneously calling this function may cause + * memory leaks or crashes. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAssertionReport + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetAssertionReport(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_assert_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_asyncio.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_asyncio.h new file mode 100644 index 0000000..b36cb07 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_asyncio.h @@ -0,0 +1,546 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: AsyncIO */ + +/** + * # CategoryAsyncIO + * + * SDL offers a way to perform I/O asynchronously. This allows an app to read + * or write files without waiting for data to actually transfer; the functions + * that request I/O never block while the request is fulfilled. + * + * Instead, the data moves in the background and the app can check for results + * at their leisure. + * + * This is more complicated than just reading and writing files in a + * synchronous way, but it can allow for more efficiency, and never having + * framerate drops as the hard drive catches up, etc. + * + * The general usage pattern for async I/O is: + * + * - Create one or more SDL_AsyncIOQueue objects. + * - Open files with SDL_AsyncIOFromFile. + * - Start I/O tasks to the files with SDL_ReadAsyncIO or SDL_WriteAsyncIO, + * putting those tasks into one of the queues. + * - Later on, use SDL_GetAsyncIOResult on a queue to see if any task is + * finished without blocking. Tasks might finish in any order with success + * or failure. + * - When all your tasks are done, close the file with SDL_CloseAsyncIO. This + * also generates a task, since it might flush data to disk! + * + * This all works, without blocking, in a single thread, but one can also wait + * on a queue in a background thread, sleeping until new results have arrived: + * + * - Call SDL_WaitAsyncIOResult from one or more threads to efficiently block + * until new tasks complete. + * - When shutting down, call SDL_SignalAsyncIOQueue to unblock any sleeping + * threads despite there being no new tasks completed. + * + * And, of course, to match the synchronous SDL_LoadFile, we offer + * SDL_LoadFileAsync as a convenience function. This will handle allocating a + * buffer, slurping in the file data, and null-terminating it; you still check + * for results later. + * + * Behind the scenes, SDL will use newer, efficient APIs on platforms that + * support them: Linux's io_uring and Windows 11's IoRing, for example. If + * those technologies aren't available, SDL will offload the work to a thread + * pool that will manage otherwise-synchronous loads without blocking the app. + * + * ## Best Practices + * + * Simple non-blocking I/O--for an app that just wants to pick up data + * whenever it's ready without losing framerate waiting on disks to spin--can + * use whatever pattern works well for the program. In this case, simply call + * SDL_ReadAsyncIO, or maybe SDL_LoadFileAsync, as needed. Once a frame, call + * SDL_GetAsyncIOResult to check for any completed tasks and deal with the + * data as it arrives. + * + * If two separate pieces of the same program need their own I/O, it is legal + * for each to create their own queue. This will prevent either piece from + * accidentally consuming the other's completed tasks. Each queue does require + * some amount of resources, but it is not an overwhelming cost. Do not make a + * queue for each task, however. It is better to put many tasks into a single + * queue. They will be reported in order of completion, not in the order they + * were submitted, so it doesn't generally matter what order tasks are + * started. + * + * One async I/O queue can be shared by multiple threads, or one thread can + * have more than one queue, but the most efficient way--if ruthless + * efficiency is the goal--is to have one queue per thread, with multiple + * threads working in parallel, and attempt to keep each queue loaded with + * tasks that are both started by and consumed by the same thread. On modern + * platforms that can use newer interfaces, this can keep data flowing as + * efficiently as possible all the way from storage hardware to the app, with + * no contention between threads for access to the same queue. + * + * Written data is not guaranteed to make it to physical media by the time a + * closing task is completed, unless SDL_CloseAsyncIO is called with its + * `flush` parameter set to true, which is to say that a successful result + * here can still result in lost data during an unfortunately-timed power + * outage if not flushed. However, flushing will take longer and may be + * unnecessary, depending on the app's needs. + */ + +#ifndef SDL_asyncio_h_ +#define SDL_asyncio_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The asynchronous I/O operation structure. + * + * This operates as an opaque handle. One can then request read or write + * operations on it. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AsyncIOFromFile + */ +typedef struct SDL_AsyncIO SDL_AsyncIO; + +/** + * Types of asynchronous I/O tasks. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AsyncIOTaskType +{ + SDL_ASYNCIO_TASK_READ, /**< A read operation. */ + SDL_ASYNCIO_TASK_WRITE, /**< A write operation. */ + SDL_ASYNCIO_TASK_CLOSE /**< A close operation. */ +} SDL_AsyncIOTaskType; + +/** + * Possible outcomes of an asynchronous I/O task. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AsyncIOResult +{ + SDL_ASYNCIO_COMPLETE, /**< request was completed without error */ + SDL_ASYNCIO_FAILURE, /**< request failed for some reason; check SDL_GetError()! */ + SDL_ASYNCIO_CANCELED /**< request was canceled before completing. */ +} SDL_AsyncIOResult; + +/** + * Information about a completed asynchronous I/O request. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_AsyncIOOutcome +{ + SDL_AsyncIO *asyncio; /**< what generated this task. This pointer will be invalid if it was closed! */ + SDL_AsyncIOTaskType type; /**< What sort of task was this? Read, write, etc? */ + SDL_AsyncIOResult result; /**< the result of the work (success, failure, cancellation). */ + void *buffer; /**< buffer where data was read/written. */ + Uint64 offset; /**< offset in the SDL_AsyncIO where data was read/written. */ + Uint64 bytes_requested; /**< number of bytes the task was to read/write. */ + Uint64 bytes_transferred; /**< actual number of bytes that were read/written. */ + void *userdata; /**< pointer provided by the app when starting the task */ +} SDL_AsyncIOOutcome; + +/** + * A queue of completed asynchronous I/O tasks. + * + * When starting an asynchronous operation, you specify a queue for the new + * task. A queue can be asked later if any tasks in it have completed, + * allowing an app to manage multiple pending tasks in one place, in whatever + * order they complete. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateAsyncIOQueue + * \sa SDL_ReadAsyncIO + * \sa SDL_WriteAsyncIO + * \sa SDL_GetAsyncIOResult + * \sa SDL_WaitAsyncIOResult + */ +typedef struct SDL_AsyncIOQueue SDL_AsyncIOQueue; + +/** + * Use this function to create a new SDL_AsyncIO object for reading from + * and/or writing to a named file. + * + * The `mode` string understands the following values: + * + * - "r": Open a file for reading only. It must exist. + * - "w": Open a file for writing only. It will create missing files or + * truncate existing ones. + * - "r+": Open a file for update both reading and writing. The file must + * exist. + * - "w+": Create an empty file for both reading and writing. If a file with + * the same name already exists its content is erased and the file is + * treated as a new empty file. + * + * There is no "b" mode, as there is only "binary" style I/O, and no "a" mode + * for appending, since you specify the position when starting a task. + * + * This function supports Unicode filenames, but they must be encoded in UTF-8 + * format, regardless of the underlying operating system. + * + * This call is _not_ asynchronous; it will open the file before returning, + * under the assumption that doing so is generally a fast operation. Future + * reads and writes to the opened file will be async, however. + * + * \param file a UTF-8 string representing the filename to open. + * \param mode an ASCII string representing the mode to be used for opening + * the file. + * \returns a pointer to the SDL_AsyncIO structure that is created or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseAsyncIO + * \sa SDL_ReadAsyncIO + * \sa SDL_WriteAsyncIO + */ +extern SDL_DECLSPEC SDL_AsyncIO * SDLCALL SDL_AsyncIOFromFile(const char *file, const char *mode); + +/** + * Use this function to get the size of the data stream in an SDL_AsyncIO. + * + * This call is _not_ asynchronous; it assumes that obtaining this info is a + * non-blocking operation in most reasonable cases. + * + * \param asyncio the SDL_AsyncIO to get the size of the data stream from. + * \returns the size of the data stream in the SDL_IOStream on success or a + * negative error code on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_GetAsyncIOSize(SDL_AsyncIO *asyncio); + +/** + * Start an async read. + * + * This function reads up to `size` bytes from `offset` position in the data + * source to the area pointed at by `ptr`. This function may read less bytes + * than requested. + * + * This function returns as quickly as possible; it does not wait for the read + * to complete. On a successful return, this work will continue in the + * background. If the work begins, even failure is asynchronous: a failing + * return value from this function only means the work couldn't start at all. + * + * `ptr` must remain available until the work is done, and may be accessed by + * the system at any time until then. Do not allocate it on the stack, as this + * might take longer than the life of the calling function to complete! + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param asyncio a pointer to an SDL_AsyncIO structure. + * \param ptr a pointer to a buffer to read data into. + * \param offset the position to start reading in the data source. + * \param size the number of bytes to read from the data source. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WriteAsyncIO + * \sa SDL_CreateAsyncIOQueue + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadAsyncIO(SDL_AsyncIO *asyncio, void *ptr, Uint64 offset, Uint64 size, SDL_AsyncIOQueue *queue, void *userdata); + +/** + * Start an async write. + * + * This function writes `size` bytes from `offset` position in the data source + * to the area pointed at by `ptr`. + * + * This function returns as quickly as possible; it does not wait for the + * write to complete. On a successful return, this work will continue in the + * background. If the work begins, even failure is asynchronous: a failing + * return value from this function only means the work couldn't start at all. + * + * `ptr` must remain available until the work is done, and may be accessed by + * the system at any time until then. Do not allocate it on the stack, as this + * might take longer than the life of the calling function to complete! + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param asyncio a pointer to an SDL_AsyncIO structure. + * \param ptr a pointer to a buffer to write data from. + * \param offset the position to start writing to the data source. + * \param size the number of bytes to write to the data source. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ReadAsyncIO + * \sa SDL_CreateAsyncIOQueue + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteAsyncIO(SDL_AsyncIO *asyncio, void *ptr, Uint64 offset, Uint64 size, SDL_AsyncIOQueue *queue, void *userdata); + +/** + * Close and free any allocated resources for an async I/O object. + * + * Closing a file is _also_ an asynchronous task! If a write failure were to + * happen during the closing process, for example, the task results will + * report it as usual. + * + * Closing a file that has been written to does not guarantee the data has + * made it to physical media; it may remain in the operating system's file + * cache, for later writing to disk. This means that a successfully-closed + * file can be lost if the system crashes or loses power in this small window. + * To prevent this, call this function with the `flush` parameter set to true. + * This will make the operation take longer, and perhaps increase system load + * in general, but a successful result guarantees that the data has made it to + * physical storage. Don't use this for temporary files, caches, and + * unimportant data, and definitely use it for crucial irreplaceable files, + * like game saves. + * + * This function guarantees that the close will happen after any other pending + * tasks to `asyncio`, so it's safe to open a file, start several operations, + * close the file immediately, then check for all results later. This function + * will not block until the tasks have completed. + * + * Once this function returns true, `asyncio` is no longer valid, regardless + * of any future outcomes. Any completed tasks might still contain this + * pointer in their SDL_AsyncIOOutcome data, in case the app was using this + * value to track information, but it should not be used again. + * + * If this function returns false, the close wasn't started at all, and it's + * safe to attempt to close again later. + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param asyncio a pointer to an SDL_AsyncIO structure to close. + * \param flush true if data should sync to disk before the task completes. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, but two + * threads should not attempt to close the same object. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CloseAsyncIO(SDL_AsyncIO *asyncio, bool flush, SDL_AsyncIOQueue *queue, void *userdata); + +/** + * Create a task queue for tracking multiple I/O operations. + * + * Async I/O operations are assigned to a queue when started. The queue can be + * checked for completed tasks thereafter. + * + * \returns a new task queue object or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyAsyncIOQueue + * \sa SDL_GetAsyncIOResult + * \sa SDL_WaitAsyncIOResult + */ +extern SDL_DECLSPEC SDL_AsyncIOQueue * SDLCALL SDL_CreateAsyncIOQueue(void); + +/** + * Destroy a previously-created async I/O task queue. + * + * If there are still tasks pending for this queue, this call will block until + * those tasks are finished. All those tasks will be deallocated. Their + * results will be lost to the app. + * + * Any pending reads from SDL_LoadFileAsync() that are still in this queue + * will have their buffers deallocated by this function, to prevent a memory + * leak. + * + * Once this function is called, the queue is no longer valid and should not + * be used, including by other threads that might access it while destruction + * is blocking on pending tasks. + * + * Do not destroy a queue that still has threads waiting on it through + * SDL_WaitAsyncIOResult(). You can call SDL_SignalAsyncIOQueue() first to + * unblock those threads, and take measures (such as SDL_WaitThread()) to make + * sure they have finished their wait and won't wait on the queue again. + * + * \param queue the task queue to destroy. + * + * \threadsafety It is safe to call this function from any thread, so long as + * no other thread is waiting on the queue with + * SDL_WaitAsyncIOResult. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyAsyncIOQueue(SDL_AsyncIOQueue *queue); + +/** + * Query an async I/O task queue for completed tasks. + * + * If a task assigned to this queue has finished, this will return true and + * fill in `outcome` with the details of the task. If no task in the queue has + * finished, this function will return false. This function does not block. + * + * If a task has completed, this function will free its resources and the task + * pointer will no longer be valid. The task will be removed from the queue. + * + * It is safe for multiple threads to call this function on the same queue at + * once; a completed task will only go to one of the threads. + * + * \param queue the async I/O task queue to query. + * \param outcome details of a finished task will be written here. May not be + * NULL. + * \returns true if a task has completed, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAsyncIOResult + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetAsyncIOResult(SDL_AsyncIOQueue *queue, SDL_AsyncIOOutcome *outcome); + +/** + * Block until an async I/O task queue has a completed task. + * + * This function puts the calling thread to sleep until there a task assigned + * to the queue that has finished. + * + * If a task assigned to the queue has finished, this will return true and + * fill in `outcome` with the details of the task. If no task in the queue has + * finished, this function will return false. + * + * If a task has completed, this function will free its resources and the task + * pointer will no longer be valid. The task will be removed from the queue. + * + * It is safe for multiple threads to call this function on the same queue at + * once; a completed task will only go to one of the threads. + * + * Note that by the nature of various platforms, more than one waiting thread + * may wake to handle a single task, but only one will obtain it, so + * `timeoutMS` is a _maximum_ wait time, and this function may return false + * sooner. + * + * This function may return false if there was a system error, the OS + * inadvertently awoke multiple threads, or if SDL_SignalAsyncIOQueue() was + * called to wake up all waiting threads without a finished task. + * + * A timeout can be used to specify a maximum wait time, but rather than + * polling, it is possible to have a timeout of -1 to wait forever, and use + * SDL_SignalAsyncIOQueue() to wake up the waiting threads later. + * + * \param queue the async I/O task queue to wait on. + * \param outcome details of a finished task will be written here. May not be + * NULL. + * \param timeoutMS the maximum time to wait, in milliseconds, or -1 to wait + * indefinitely. + * \returns true if task has completed, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalAsyncIOQueue + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitAsyncIOResult(SDL_AsyncIOQueue *queue, SDL_AsyncIOOutcome *outcome, Sint32 timeoutMS); + +/** + * Wake up any threads that are blocking in SDL_WaitAsyncIOResult(). + * + * This will unblock any threads that are sleeping in a call to + * SDL_WaitAsyncIOResult for the specified queue, and cause them to return + * from that function. + * + * This can be useful when destroying a queue to make sure nothing is touching + * it indefinitely. In this case, once this call completes, the caller should + * take measures to make sure any previously-blocked threads have returned + * from their wait and will not touch the queue again (perhaps by setting a + * flag to tell the threads to terminate and then using SDL_WaitThread() to + * make sure they've done so). + * + * \param queue the async I/O task queue to signal. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAsyncIOResult + */ +extern SDL_DECLSPEC void SDLCALL SDL_SignalAsyncIOQueue(SDL_AsyncIOQueue *queue); + +/** + * Load all the data from a file path, asynchronously. + * + * This function returns as quickly as possible; it does not wait for the read + * to complete. On a successful return, this work will continue in the + * background. If the work begins, even failure is asynchronous: a failing + * return value from this function only means the work couldn't start at all. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in SDL_AsyncIOOutcome's + * bytes_transferred value. + * + * This function will allocate the buffer to contain the file. It must be + * deallocated by calling SDL_free() on SDL_AsyncIOOutcome's buffer field + * after completion. + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param file the path to read all available data from. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFile_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LoadFileAsync(const char *file, SDL_AsyncIOQueue *queue, void *userdata); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_asyncio_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_atomic.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_atomic.h new file mode 100644 index 0000000..78b5e0f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_atomic.h @@ -0,0 +1,664 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryAtomic + * + * Atomic operations. + * + * IMPORTANT: If you are not an expert in concurrent lockless programming, you + * should not be using any functions in this file. You should be protecting + * your data structures with full mutexes instead. + * + * ***Seriously, here be dragons!*** + * + * You can find out a little more about lockless programming and the subtle + * issues that can arise here: + * https://learn.microsoft.com/en-us/windows/win32/dxtecharts/lockless-programming + * + * There's also lots of good information here: + * + * - https://www.1024cores.net/home/lock-free-algorithms + * - https://preshing.com/ + * + * These operations may or may not actually be implemented using processor + * specific atomic operations. When possible they are implemented as true + * processor specific atomic operations. When that is not possible the are + * implemented using locks that *do* use the available atomic operations. + * + * All of the atomic operations that modify memory are full memory barriers. + */ + +#ifndef SDL_atomic_h_ +#define SDL_atomic_h_ + +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An atomic spinlock. + * + * The atomic locks are efficient spinlocks using CPU instructions, but are + * vulnerable to starvation and can spin forever if a thread holding a lock + * has been terminated. For this reason you should minimize the code executed + * inside an atomic lock and never do expensive things like API or system + * calls while holding them. + * + * They are also vulnerable to starvation if the thread holding the lock is + * lower priority than other threads and doesn't get scheduled. In general you + * should use mutexes instead, since they have better performance and + * contention behavior. + * + * The atomic locks are not safe to lock recursively. + * + * Porting Note: The spin lock functions and type are required and can not be + * emulated because they are used in the atomic emulation code. + */ +typedef int SDL_SpinLock; + +/** + * Try to lock a spin lock by setting it to a non-zero value. + * + * ***Please note that spinlocks are dangerous if you don't know what you're + * doing. Please be careful using any sort of spinlock!*** + * + * \param lock a pointer to a lock variable. + * \returns true if the lock succeeded, false if the lock is already held. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockSpinlock + * \sa SDL_UnlockSpinlock + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockSpinlock(SDL_SpinLock *lock); + +/** + * Lock a spin lock by setting it to a non-zero value. + * + * ***Please note that spinlocks are dangerous if you don't know what you're + * doing. Please be careful using any sort of spinlock!*** + * + * \param lock a pointer to a lock variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TryLockSpinlock + * \sa SDL_UnlockSpinlock + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockSpinlock(SDL_SpinLock *lock); + +/** + * Unlock a spin lock by setting it to 0. + * + * Always returns immediately. + * + * ***Please note that spinlocks are dangerous if you don't know what you're + * doing. Please be careful using any sort of spinlock!*** + * + * \param lock a pointer to a lock variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockSpinlock + * \sa SDL_TryLockSpinlock + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockSpinlock(SDL_SpinLock *lock); + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Mark a compiler barrier. + * + * A compiler barrier prevents the compiler from reordering reads and writes + * to globally visible variables across the call. + * + * This macro only prevents the compiler from reordering reads and writes, it + * does not prevent the CPU from reordering reads and writes. However, all of + * the atomic operations that modify memory are full memory barriers. + * + * \threadsafety Obviously this macro is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CompilerBarrier() DoCompilerSpecificReadWriteBarrier() + +#elif defined(_MSC_VER) && (_MSC_VER > 1200) && !defined(__clang__) +void _ReadWriteBarrier(void); +#pragma intrinsic(_ReadWriteBarrier) +#define SDL_CompilerBarrier() _ReadWriteBarrier() +#elif (defined(__GNUC__) && !defined(SDL_PLATFORM_EMSCRIPTEN)) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x5120)) +/* This is correct for all CPUs when using GCC or Solaris Studio 12.1+. */ +#define SDL_CompilerBarrier() __asm__ __volatile__ ("" : : : "memory") +#elif defined(__WATCOMC__) +extern __inline void SDL_CompilerBarrier(void); +#pragma aux SDL_CompilerBarrier = "" parm [] modify exact []; +#else +#define SDL_CompilerBarrier() \ +{ SDL_SpinLock _tmp = 0; SDL_LockSpinlock(&_tmp); SDL_UnlockSpinlock(&_tmp); } +#endif + +/** + * Insert a memory release barrier (function version). + * + * Please refer to SDL_MemoryBarrierRelease for details. This is a function + * version, which might be useful if you need to use this functionality from a + * scripting language, etc. Also, some of the macro versions call this + * function behind the scenes, where more heavy lifting can happen inside of + * SDL. Generally, though, an app written in C/C++/etc should use the macro + * version, as it will be more efficient. + * + * \threadsafety Obviously this function is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierRelease + */ +extern SDL_DECLSPEC void SDLCALL SDL_MemoryBarrierReleaseFunction(void); + +/** + * Insert a memory acquire barrier (function version). + * + * Please refer to SDL_MemoryBarrierRelease for details. This is a function + * version, which might be useful if you need to use this functionality from a + * scripting language, etc. Also, some of the macro versions call this + * function behind the scenes, where more heavy lifting can happen inside of + * SDL. Generally, though, an app written in C/C++/etc should use the macro + * version, as it will be more efficient. + * + * \threadsafety Obviously this function is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierAcquire + */ +extern SDL_DECLSPEC void SDLCALL SDL_MemoryBarrierAcquireFunction(void); + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Insert a memory release barrier (macro version). + * + * Memory barriers are designed to prevent reads and writes from being + * reordered by the compiler and being seen out of order on multi-core CPUs. + * + * A typical pattern would be for thread A to write some data and a flag, and + * for thread B to read the flag and get the data. In this case you would + * insert a release barrier between writing the data and the flag, + * guaranteeing that the data write completes no later than the flag is + * written, and you would insert an acquire barrier between reading the flag + * and reading the data, to ensure that all the reads associated with the flag + * have completed. + * + * In this pattern you should always see a release barrier paired with an + * acquire barrier and you should gate the data reads/writes with a single + * flag variable. + * + * For more information on these semantics, take a look at the blog post: + * http://preshing.com/20120913/acquire-and-release-semantics + * + * This is the macro version of this functionality; if possible, SDL will use + * compiler intrinsics or inline assembly, but some platforms might need to + * call the function version of this, SDL_MemoryBarrierReleaseFunction to do + * the heavy lifting. Apps that can use the macro should favor it over the + * function. + * + * \threadsafety Obviously this macro is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierAcquire + * \sa SDL_MemoryBarrierReleaseFunction + */ +#define SDL_MemoryBarrierRelease() SDL_MemoryBarrierReleaseFunction() + +/** + * Insert a memory acquire barrier (macro version). + * + * Please see SDL_MemoryBarrierRelease for the details on what memory barriers + * are and when to use them. + * + * This is the macro version of this functionality; if possible, SDL will use + * compiler intrinsics or inline assembly, but some platforms might need to + * call the function version of this, SDL_MemoryBarrierAcquireFunction, to do + * the heavy lifting. Apps that can use the macro should favor it over the + * function. + * + * \threadsafety Obviously this macro is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierRelease + * \sa SDL_MemoryBarrierAcquireFunction + */ +#define SDL_MemoryBarrierAcquire() SDL_MemoryBarrierAcquireFunction() + +#elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__)) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("lwsync" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("lwsync" : : : "memory") +#elif defined(__GNUC__) && defined(__aarch64__) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory") +#elif defined(__GNUC__) && defined(__arm__) +#if 0 /* defined(SDL_PLATFORM_LINUX) || defined(SDL_PLATFORM_ANDROID) */ +/* Information from: + https://chromium.googlesource.com/chromium/chromium/+/trunk/base/atomicops_internals_arm_gcc.h#19 + + The Linux kernel provides a helper function which provides the right code for a memory barrier, + hard-coded at address 0xffff0fa0 +*/ +typedef void (*SDL_KernelMemoryBarrierFunc)(); +#define SDL_MemoryBarrierRelease() ((SDL_KernelMemoryBarrierFunc)0xffff0fa0)() +#define SDL_MemoryBarrierAcquire() ((SDL_KernelMemoryBarrierFunc)0xffff0fa0)() +#else +#if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7EM__) || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7S__) || defined(__ARM_ARCH_8A__) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory") +#elif defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6T2__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) +#ifdef __thumb__ +/* The mcr instruction isn't available in thumb mode, use real functions */ +#define SDL_MEMORY_BARRIER_USES_FUNCTION +#define SDL_MemoryBarrierRelease() SDL_MemoryBarrierReleaseFunction() +#define SDL_MemoryBarrierAcquire() SDL_MemoryBarrierAcquireFunction() +#else +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory") +#endif /* __thumb__ */ +#else +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("" : : : "memory") +#endif /* SDL_PLATFORM_LINUX || SDL_PLATFORM_ANDROID */ +#endif /* __GNUC__ && __arm__ */ +#else +#if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x5120)) +/* This is correct for all CPUs on Solaris when using Solaris Studio 12.1+. */ +#include +#define SDL_MemoryBarrierRelease() __machine_rel_barrier() +#define SDL_MemoryBarrierAcquire() __machine_acq_barrier() +#else +/* This is correct for the x86 and x64 CPUs, and we'll expand this over time. */ +#define SDL_MemoryBarrierRelease() SDL_CompilerBarrier() +#define SDL_MemoryBarrierAcquire() SDL_CompilerBarrier() +#endif +#endif + +/* "REP NOP" is PAUSE, coded for tools that don't know it by that name. */ +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to insert a CPU-specific "pause" instruction into the program. + * + * This can be useful in busy-wait loops, as it serves as a hint to the CPU as + * to the program's intent; some CPUs can use this to do more efficient + * processing. On some platforms, this doesn't do anything, so using this + * macro might just be a harmless no-op. + * + * Note that if you are busy-waiting, there are often more-efficient + * approaches with other synchronization primitives: mutexes, semaphores, + * condition variables, etc. + * + * \threadsafety This macro is safe to use from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CPUPauseInstruction() DoACPUPauseInACompilerAndArchitectureSpecificWay + +#elif (defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__)) + #define SDL_CPUPauseInstruction() __asm__ __volatile__("pause\n") /* Some assemblers can't do REP NOP, so go with PAUSE. */ +#elif (defined(__arm__) && defined(__ARM_ARCH) && __ARM_ARCH >= 7) || defined(__aarch64__) + #define SDL_CPUPauseInstruction() __asm__ __volatile__("yield" ::: "memory") +#elif (defined(__powerpc__) || defined(__powerpc64__)) + #define SDL_CPUPauseInstruction() __asm__ __volatile__("or 27,27,27"); +#elif (defined(__riscv) && __riscv_xlen == 64) + #define SDL_CPUPauseInstruction() __asm__ __volatile__(".insn i 0x0F, 0, x0, x0, 0x010"); +#elif defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64)) + #define SDL_CPUPauseInstruction() _mm_pause() /* this is actually "rep nop" and not a SIMD instruction. No inline asm in MSVC x86-64! */ +#elif defined(_MSC_VER) && (defined(_M_ARM) || defined(_M_ARM64)) + #define SDL_CPUPauseInstruction() __yield() +#elif defined(__WATCOMC__) && defined(__386__) + extern __inline void SDL_CPUPauseInstruction(void); + #pragma aux SDL_CPUPauseInstruction = ".686p" ".xmm2" "pause" +#else + #define SDL_CPUPauseInstruction() +#endif + + +/** + * A type representing an atomic integer value. + * + * This can be used to manage a value that is synchronized across multiple + * CPUs without a race condition; when an app sets a value with + * SDL_SetAtomicInt all other threads, regardless of the CPU it is running on, + * will see that value when retrieved with SDL_GetAtomicInt, regardless of CPU + * caches, etc. + * + * This is also useful for atomic compare-and-swap operations: a thread can + * change the value as long as its current value matches expectations. When + * done in a loop, one can guarantee data consistency across threads without a + * lock (but the usual warnings apply: if you don't know what you're doing, or + * you don't do it carefully, you can confidently cause any number of + * disasters with this, so in most cases, you _should_ use a mutex instead of + * this!). + * + * This is a struct so people don't accidentally use numeric operations on it + * directly. You have to use SDL atomic functions. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicInt + * \sa SDL_GetAtomicInt + * \sa SDL_SetAtomicInt + * \sa SDL_AddAtomicInt + */ +typedef struct SDL_AtomicInt { int value; } SDL_AtomicInt; + +/** + * Set an atomic variable to a new value if it is currently an old value. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable to be modified. + * \param oldval the old value. + * \param newval the new value. + * \returns true if the atomic variable was set, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicInt + * \sa SDL_SetAtomicInt + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CompareAndSwapAtomicInt(SDL_AtomicInt *a, int oldval, int newval); + +/** + * Set an atomic variable to a value. + * + * This function also acts as a full memory barrier. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable to be modified. + * \param v the desired value. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicInt + */ +extern SDL_DECLSPEC int SDLCALL SDL_SetAtomicInt(SDL_AtomicInt *a, int v); + +/** + * Get the value of an atomic variable. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable. + * \returns the current value of an atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAtomicInt + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAtomicInt(SDL_AtomicInt *a); + +/** + * Add to an atomic variable. + * + * This function also acts as a full memory barrier. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable to be modified. + * \param v the desired value to add. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AtomicDecRef + * \sa SDL_AtomicIncRef + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddAtomicInt(SDL_AtomicInt *a, int v); + +#ifndef SDL_AtomicIncRef + +/** + * Increment an atomic variable used as a reference count. + * + * ***Note: If you don't know what this macro is for, you shouldn't use it!*** + * + * \param a a pointer to an SDL_AtomicInt to increment. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AtomicDecRef + */ +#define SDL_AtomicIncRef(a) SDL_AddAtomicInt(a, 1) +#endif + +#ifndef SDL_AtomicDecRef + +/** + * Decrement an atomic variable used as a reference count. + * + * ***Note: If you don't know what this macro is for, you shouldn't use it!*** + * + * \param a a pointer to an SDL_AtomicInt to decrement. + * \returns true if the variable reached zero after decrementing, false + * otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AtomicIncRef + */ +#define SDL_AtomicDecRef(a) (SDL_AddAtomicInt(a, -1) == 1) +#endif + +/** + * A type representing an atomic unsigned 32-bit value. + * + * This can be used to manage a value that is synchronized across multiple + * CPUs without a race condition; when an app sets a value with + * SDL_SetAtomicU32 all other threads, regardless of the CPU it is running on, + * will see that value when retrieved with SDL_GetAtomicU32, regardless of CPU + * caches, etc. + * + * This is also useful for atomic compare-and-swap operations: a thread can + * change the value as long as its current value matches expectations. When + * done in a loop, one can guarantee data consistency across threads without a + * lock (but the usual warnings apply: if you don't know what you're doing, or + * you don't do it carefully, you can confidently cause any number of + * disasters with this, so in most cases, you _should_ use a mutex instead of + * this!). + * + * This is a struct so people don't accidentally use numeric operations on it + * directly. You have to use SDL atomic functions. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicU32 + * \sa SDL_GetAtomicU32 + * \sa SDL_SetAtomicU32 + */ +typedef struct SDL_AtomicU32 { Uint32 value; } SDL_AtomicU32; + +/** + * Set an atomic variable to a new value if it is currently an old value. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicU32 variable to be modified. + * \param oldval the old value. + * \param newval the new value. + * \returns true if the atomic variable was set, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicU32 + * \sa SDL_SetAtomicU32 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CompareAndSwapAtomicU32(SDL_AtomicU32 *a, Uint32 oldval, Uint32 newval); + +/** + * Set an atomic variable to a value. + * + * This function also acts as a full memory barrier. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicU32 variable to be modified. + * \param v the desired value. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicU32 + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_SetAtomicU32(SDL_AtomicU32 *a, Uint32 v); + +/** + * Get the value of an atomic variable. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicU32 variable. + * \returns the current value of an atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAtomicU32 + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetAtomicU32(SDL_AtomicU32 *a); + +/** + * Set a pointer to a new value if it is currently an old value. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to a pointer. + * \param oldval the old pointer value. + * \param newval the new pointer value. + * \returns true if the pointer was set, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicInt + * \sa SDL_GetAtomicPointer + * \sa SDL_SetAtomicPointer + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CompareAndSwapAtomicPointer(void **a, void *oldval, void *newval); + +/** + * Set a pointer to a value atomically. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to a pointer. + * \param v the desired pointer value. + * \returns the previous value of the pointer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicPointer + * \sa SDL_GetAtomicPointer + */ +extern SDL_DECLSPEC void * SDLCALL SDL_SetAtomicPointer(void **a, void *v); + +/** + * Get the value of a pointer atomically. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to a pointer. + * \returns the current value of a pointer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicPointer + * \sa SDL_SetAtomicPointer + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetAtomicPointer(void **a); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif + +#include + +#endif /* SDL_atomic_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_audio.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_audio.h new file mode 100644 index 0000000..51af40e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_audio.h @@ -0,0 +1,2203 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryAudio + * + * Audio functionality for the SDL library. + * + * All audio in SDL3 revolves around SDL_AudioStream. Whether you want to play + * or record audio, convert it, stream it, buffer it, or mix it, you're going + * to be passing it through an audio stream. + * + * Audio streams are quite flexible; they can accept any amount of data at a + * time, in any supported format, and output it as needed in any other format, + * even if the data format changes on either side halfway through. + * + * An app opens an audio device and binds any number of audio streams to it, + * feeding more data to the streams as available. When the device needs more + * data, it will pull it from all bound streams and mix them together for + * playback. + * + * Audio streams can also use an app-provided callback to supply data + * on-demand, which maps pretty closely to the SDL2 audio model. + * + * SDL also provides a simple .WAV loader in SDL_LoadWAV (and SDL_LoadWAV_IO + * if you aren't reading from a file) as a basic means to load sound data into + * your program. + * + * ## Logical audio devices + * + * In SDL3, opening a physical device (like a SoundBlaster 16 Pro) gives you a + * logical device ID that you can bind audio streams to. In almost all cases, + * logical devices can be used anywhere in the API that a physical device is + * normally used. However, since each device opening generates a new logical + * device, different parts of the program (say, a VoIP library, or + * text-to-speech framework, or maybe some other sort of mixer on top of SDL) + * can have their own device opens that do not interfere with each other; each + * logical device will mix its separate audio down to a single buffer, fed to + * the physical device, behind the scenes. As many logical devices as you like + * can come and go; SDL will only have to open the physical device at the OS + * level once, and will manage all the logical devices on top of it + * internally. + * + * One other benefit of logical devices: if you don't open a specific physical + * device, instead opting for the default, SDL can automatically migrate those + * logical devices to different hardware as circumstances change: a user + * plugged in headphones? The system default changed? SDL can transparently + * migrate the logical devices to the correct physical device seamlessly and + * keep playing; the app doesn't even have to know it happened if it doesn't + * want to. + * + * ## Simplified audio + * + * As a simplified model for when a single source of audio is all that's + * needed, an app can use SDL_OpenAudioDeviceStream, which is a single + * function to open an audio device, create an audio stream, bind that stream + * to the newly-opened device, and (optionally) provide a callback for + * obtaining audio data. When using this function, the primary interface is + * the SDL_AudioStream and the device handle is mostly hidden away; destroying + * a stream created through this function will also close the device, stream + * bindings cannot be changed, etc. One other quirk of this is that the device + * is started in a _paused_ state and must be explicitly resumed; this is + * partially to offer a clean migration for SDL2 apps and partially because + * the app might have to do more setup before playback begins; in the + * non-simplified form, nothing will play until a stream is bound to a device, + * so they start _unpaused_. + * + * ## Channel layouts + * + * Audio data passing through SDL is uncompressed PCM data, interleaved. One + * can provide their own decompression through an MP3, etc, decoder, but SDL + * does not provide this directly. Each interleaved channel of data is meant + * to be in a specific order. + * + * Abbreviations: + * + * - FRONT = single mono speaker + * - FL = front left speaker + * - FR = front right speaker + * - FC = front center speaker + * - BL = back left speaker + * - BR = back right speaker + * - SR = surround right speaker + * - SL = surround left speaker + * - BC = back center speaker + * - LFE = low-frequency speaker + * + * These are listed in the order they are laid out in memory, so "FL, FR" + * means "the front left speaker is laid out in memory first, then the front + * right, then it repeats for the next audio frame". + * + * - 1 channel (mono) layout: FRONT + * - 2 channels (stereo) layout: FL, FR + * - 3 channels (2.1) layout: FL, FR, LFE + * - 4 channels (quad) layout: FL, FR, BL, BR + * - 5 channels (4.1) layout: FL, FR, LFE, BL, BR + * - 6 channels (5.1) layout: FL, FR, FC, LFE, BL, BR (last two can also be + * SL, SR) + * - 7 channels (6.1) layout: FL, FR, FC, LFE, BC, SL, SR + * - 8 channels (7.1) layout: FL, FR, FC, LFE, BL, BR, SL, SR + * + * This is the same order as DirectSound expects, but applied to all + * platforms; SDL will swizzle the channels as necessary if a platform expects + * something different. + * + * SDL_AudioStream can also be provided channel maps to change this ordering + * to whatever is necessary, in other audio processing scenarios. + */ + +#ifndef SDL_audio_h_ +#define SDL_audio_h_ + +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Mask of bits in an SDL_AudioFormat that contains the format bit size. + * + * Generally one should use SDL_AUDIO_BITSIZE instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_BITSIZE (0xFFu) + +/** + * Mask of bits in an SDL_AudioFormat that contain the floating point flag. + * + * Generally one should use SDL_AUDIO_ISFLOAT instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_FLOAT (1u<<8) + +/** + * Mask of bits in an SDL_AudioFormat that contain the bigendian flag. + * + * Generally one should use SDL_AUDIO_ISBIGENDIAN or SDL_AUDIO_ISLITTLEENDIAN + * instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_BIG_ENDIAN (1u<<12) + +/** + * Mask of bits in an SDL_AudioFormat that contain the signed data flag. + * + * Generally one should use SDL_AUDIO_ISSIGNED instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_SIGNED (1u<<15) + +/** + * Define an SDL_AudioFormat value. + * + * SDL does not support custom audio formats, so this macro is not of much use + * externally, but it can be illustrative as to what the various bits of an + * SDL_AudioFormat mean. + * + * For example, SDL_AUDIO_S32LE looks like this: + * + * ```c + * SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 32) + * ``` + * + * \param signed 1 for signed data, 0 for unsigned data. + * \param bigendian 1 for bigendian data, 0 for littleendian data. + * \param flt 1 for floating point data, 0 for integer data. + * \param size number of bits per sample. + * \returns a format value in the style of SDL_AudioFormat. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_AUDIO_FORMAT(signed, bigendian, flt, size) \ + (((Uint16)(signed) << 15) | ((Uint16)(bigendian) << 12) | ((Uint16)(flt) << 8) | ((size) & SDL_AUDIO_MASK_BITSIZE)) + +/** + * Audio format. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_AUDIO_BITSIZE + * \sa SDL_AUDIO_BYTESIZE + * \sa SDL_AUDIO_ISINT + * \sa SDL_AUDIO_ISFLOAT + * \sa SDL_AUDIO_ISBIGENDIAN + * \sa SDL_AUDIO_ISLITTLEENDIAN + * \sa SDL_AUDIO_ISSIGNED + * \sa SDL_AUDIO_ISUNSIGNED + */ +typedef enum SDL_AudioFormat +{ + SDL_AUDIO_UNKNOWN = 0x0000u, /**< Unspecified audio format */ + SDL_AUDIO_U8 = 0x0008u, /**< Unsigned 8-bit samples */ + /* SDL_DEFINE_AUDIO_FORMAT(0, 0, 0, 8), */ + SDL_AUDIO_S8 = 0x8008u, /**< Signed 8-bit samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 8), */ + SDL_AUDIO_S16LE = 0x8010u, /**< Signed 16-bit samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 16), */ + SDL_AUDIO_S16BE = 0x9010u, /**< As above, but big-endian byte order */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 0, 16), */ + SDL_AUDIO_S32LE = 0x8020u, /**< 32-bit integer samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 32), */ + SDL_AUDIO_S32BE = 0x9020u, /**< As above, but big-endian byte order */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 0, 32), */ + SDL_AUDIO_F32LE = 0x8120u, /**< 32-bit floating point samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 1, 32), */ + SDL_AUDIO_F32BE = 0x9120u, /**< As above, but big-endian byte order */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 1, 32), */ + + /* These represent the current system's byteorder. */ + #if SDL_BYTEORDER == SDL_LIL_ENDIAN + SDL_AUDIO_S16 = SDL_AUDIO_S16LE, + SDL_AUDIO_S32 = SDL_AUDIO_S32LE, + SDL_AUDIO_F32 = SDL_AUDIO_F32LE + #else + SDL_AUDIO_S16 = SDL_AUDIO_S16BE, + SDL_AUDIO_S32 = SDL_AUDIO_S32BE, + SDL_AUDIO_F32 = SDL_AUDIO_F32BE + #endif +} SDL_AudioFormat; + + +/** + * Retrieve the size, in bits, from an SDL_AudioFormat. + * + * For example, `SDL_AUDIO_BITSIZE(SDL_AUDIO_S16)` returns 16. + * + * \param x an SDL_AudioFormat value. + * \returns data size in bits. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_BITSIZE(x) ((x) & SDL_AUDIO_MASK_BITSIZE) + +/** + * Retrieve the size, in bytes, from an SDL_AudioFormat. + * + * For example, `SDL_AUDIO_BYTESIZE(SDL_AUDIO_S16)` returns 2. + * + * \param x an SDL_AudioFormat value. + * \returns data size in bytes. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_BYTESIZE(x) (SDL_AUDIO_BITSIZE(x) / 8) + +/** + * Determine if an SDL_AudioFormat represents floating point data. + * + * For example, `SDL_AUDIO_ISFLOAT(SDL_AUDIO_S16)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is floating point, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISFLOAT(x) ((x) & SDL_AUDIO_MASK_FLOAT) + +/** + * Determine if an SDL_AudioFormat represents bigendian data. + * + * For example, `SDL_AUDIO_ISBIGENDIAN(SDL_AUDIO_S16LE)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is bigendian, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISBIGENDIAN(x) ((x) & SDL_AUDIO_MASK_BIG_ENDIAN) + +/** + * Determine if an SDL_AudioFormat represents littleendian data. + * + * For example, `SDL_AUDIO_ISLITTLEENDIAN(SDL_AUDIO_S16BE)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is littleendian, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISLITTLEENDIAN(x) (!SDL_AUDIO_ISBIGENDIAN(x)) + +/** + * Determine if an SDL_AudioFormat represents signed data. + * + * For example, `SDL_AUDIO_ISSIGNED(SDL_AUDIO_U8)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is signed, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISSIGNED(x) ((x) & SDL_AUDIO_MASK_SIGNED) + +/** + * Determine if an SDL_AudioFormat represents integer data. + * + * For example, `SDL_AUDIO_ISINT(SDL_AUDIO_F32)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is integer, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISINT(x) (!SDL_AUDIO_ISFLOAT(x)) + +/** + * Determine if an SDL_AudioFormat represents unsigned data. + * + * For example, `SDL_AUDIO_ISUNSIGNED(SDL_AUDIO_S16)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is unsigned, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISUNSIGNED(x) (!SDL_AUDIO_ISSIGNED(x)) + + +/** + * SDL Audio Device instance IDs. + * + * Zero is used to signify an invalid/null device. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_AudioDeviceID; + +/** + * A value used to request a default playback audio device. + * + * Several functions that require an SDL_AudioDeviceID will accept this value + * to signify the app just wants the system to choose a default device instead + * of the app providing a specific one. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK ((SDL_AudioDeviceID) 0xFFFFFFFFu) + +/** + * A value used to request a default recording audio device. + * + * Several functions that require an SDL_AudioDeviceID will accept this value + * to signify the app just wants the system to choose a default device instead + * of the app providing a specific one. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_DEVICE_DEFAULT_RECORDING ((SDL_AudioDeviceID) 0xFFFFFFFEu) + +/** + * Format specifier for audio data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AudioFormat + */ +typedef struct SDL_AudioSpec +{ + SDL_AudioFormat format; /**< Audio data format */ + int channels; /**< Number of channels: 1 mono, 2 stereo, etc */ + int freq; /**< sample rate: sample frames per second */ +} SDL_AudioSpec; + +/** + * Calculate the size of each audio frame (in bytes) from an SDL_AudioSpec. + * + * This reports on the size of an audio sample frame: stereo Sint16 data (2 + * channels of 2 bytes each) would be 4 bytes per frame, for example. + * + * \param x an SDL_AudioSpec to query. + * \returns the number of bytes used per sample frame. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_FRAMESIZE(x) (SDL_AUDIO_BYTESIZE((x).format) * (x).channels) + +/** + * The opaque handle that represents an audio stream. + * + * SDL_AudioStream is an audio conversion interface. + * + * - It can handle resampling data in chunks without generating artifacts, + * when it doesn't have the complete buffer available. + * - It can handle incoming data in any variable size. + * - It can handle input/output format changes on the fly. + * - It can remap audio channels between inputs and outputs. + * - You push data as you have it, and pull it when you need it + * - It can also function as a basic audio data queue even if you just have + * sound that needs to pass from one place to another. + * - You can hook callbacks up to them when more data is added or requested, + * to manage data on-the-fly. + * + * Audio streams are the core of the SDL3 audio interface. You create one or + * more of them, bind them to an opened audio device, and feed data to them + * (or for recording, consume data from them). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateAudioStream + */ +typedef struct SDL_AudioStream SDL_AudioStream; + + +/* Function prototypes */ + +/** + * Use this function to get the number of built-in audio drivers. + * + * This function returns a hardcoded number. This never returns a negative + * value; if there are no drivers compiled into this build of SDL, this + * function returns zero. The presence of a driver in this list does not mean + * it will function, it just means SDL is capable of interacting with that + * interface. For example, a build of SDL might have esound support, but if + * there's no esound server available, SDL's esound driver would fail if used. + * + * By default, SDL tries all drivers, in its preferred order, until one is + * found to be usable. + * + * \returns the number of built-in audio drivers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumAudioDrivers(void); + +/** + * Use this function to get the name of a built in audio driver. + * + * The list of audio drivers is given in the order that they are normally + * initialized by default; the drivers that seem more reasonable to choose + * first (as far as the SDL developers believe) are earlier in the list. + * + * The names of drivers are all simple, low-ASCII identifiers, like "alsa", + * "coreaudio" or "wasapi". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of the audio driver; the value ranges from 0 to + * SDL_GetNumAudioDrivers() - 1. + * \returns the name of the audio driver at the requested index, or NULL if an + * invalid index was specified. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumAudioDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioDriver(int index); + +/** + * Get the name of the current audio driver. + * + * The names of drivers are all simple, low-ASCII identifiers, like "alsa", + * "coreaudio" or "wasapi". These never have Unicode characters, and are not + * meant to be proper names. + * + * \returns the name of the current audio driver or NULL if no driver has been + * initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCurrentAudioDriver(void); + +/** + * Get a list of currently-connected audio playback devices. + * + * This returns of list of available devices that play sound, perhaps to + * speakers or headphones ("playback" devices). If you want devices that + * record audio, like a microphone ("recording" devices), use + * SDL_GetAudioRecordingDevices() instead. + * + * This only returns a list of physical devices; it will not have any device + * IDs returned by SDL_OpenAudioDevice(). + * + * If this function returns NULL, to signify an error, `*count` will be set to + * zero. + * + * \param count a pointer filled in with the number of devices returned, may + * be NULL. + * \returns a 0 terminated array of device instance IDs or NULL on error; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenAudioDevice + * \sa SDL_GetAudioRecordingDevices + */ +extern SDL_DECLSPEC SDL_AudioDeviceID * SDLCALL SDL_GetAudioPlaybackDevices(int *count); + +/** + * Get a list of currently-connected audio recording devices. + * + * This returns of list of available devices that record audio, like a + * microphone ("recording" devices). If you want devices that play sound, + * perhaps to speakers or headphones ("playback" devices), use + * SDL_GetAudioPlaybackDevices() instead. + * + * This only returns a list of physical devices; it will not have any device + * IDs returned by SDL_OpenAudioDevice(). + * + * If this function returns NULL, to signify an error, `*count` will be set to + * zero. + * + * \param count a pointer filled in with the number of devices returned, may + * be NULL. + * \returns a 0 terminated array of device instance IDs, or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenAudioDevice + * \sa SDL_GetAudioPlaybackDevices + */ +extern SDL_DECLSPEC SDL_AudioDeviceID * SDLCALL SDL_GetAudioRecordingDevices(int *count); + +/** + * Get the human-readable name of a specific audio device. + * + * \param devid the instance ID of the device to query. + * \returns the name of the audio device, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioPlaybackDevices + * \sa SDL_GetAudioRecordingDevices + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioDeviceName(SDL_AudioDeviceID devid); + +/** + * Get the current audio format of a specific audio device. + * + * For an opened device, this will report the format the device is currently + * using. If the device isn't yet opened, this will report the device's + * preferred format (or a reasonable default if this can't be determined). + * + * You may also specify SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK or + * SDL_AUDIO_DEVICE_DEFAULT_RECORDING here, which is useful for getting a + * reasonable recommendation before opening the system-recommended default + * device. + * + * You can also use this to request the current device buffer size. This is + * specified in sample frames and represents the amount of data SDL will feed + * to the physical hardware in each chunk. This can be converted to + * milliseconds of audio with the following equation: + * + * `ms = (int) ((((Sint64) frames) * 1000) / spec.freq);` + * + * Buffer size is only important if you need low-level control over the audio + * playback timing. Most apps do not need this. + * + * \param devid the instance ID of the device to query. + * \param spec on return, will be filled with device details. + * \param sample_frames pointer to store device buffer size, in sample frames. + * Can be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetAudioDeviceFormat(SDL_AudioDeviceID devid, SDL_AudioSpec *spec, int *sample_frames); + +/** + * Get the current channel map of an audio device. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * Audio devices usually have no remapping applied. This is represented by + * returning NULL, and does not signify an error. + * + * \param devid the instance ID of the device to query. + * \param count On output, set to number of channels in the map. Can be NULL. + * \returns an array of the current channel mapping, with as many elements as + * the current output spec's channels, or NULL if default. This + * should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioDeviceChannelMap(SDL_AudioDeviceID devid, int *count); + +/** + * Open a specific audio device. + * + * You can open both playback and recording devices through this function. + * Playback devices will take data from bound audio streams, mix it, and send + * it to the hardware. Recording devices will feed any bound audio streams + * with a copy of any incoming data. + * + * An opened audio device starts out with no audio streams bound. To start + * audio playing, bind a stream and supply audio data to it. Unlike SDL2, + * there is no audio callback; you only bind audio streams and make sure they + * have data flowing into them (however, you can simulate SDL2's semantics + * fairly closely by using SDL_OpenAudioDeviceStream instead of this + * function). + * + * If you don't care about opening a specific device, pass a `devid` of either + * `SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK` or + * `SDL_AUDIO_DEVICE_DEFAULT_RECORDING`. In this case, SDL will try to pick + * the most reasonable default, and may also switch between physical devices + * seamlessly later, if the most reasonable default changes during the + * lifetime of this opened device (user changed the default in the OS's system + * preferences, the default got unplugged so the system jumped to a new + * default, the user plugged in headphones on a mobile device, etc). Unless + * you have a good reason to choose a specific device, this is probably what + * you want. + * + * You may request a specific format for the audio device, but there is no + * promise the device will honor that request for several reasons. As such, + * it's only meant to be a hint as to what data your app will provide. Audio + * streams will accept data in whatever format you specify and manage + * conversion for you as appropriate. SDL_GetAudioDeviceFormat can tell you + * the preferred format for the device before opening and the actual format + * the device is using after opening. + * + * It's legal to open the same device ID more than once; each successful open + * will generate a new logical SDL_AudioDeviceID that is managed separately + * from others on the same physical device. This allows libraries to open a + * device separately from the main app and bind its own streams without + * conflicting. + * + * It is also legal to open a device ID returned by a previous call to this + * function; doing so just creates another logical device on the same physical + * device. This may be useful for making logical groupings of audio streams. + * + * This function returns the opened device ID on success. This is a new, + * unique SDL_AudioDeviceID that represents a logical device. + * + * Some backends might offer arbitrary devices (for example, a networked audio + * protocol that can connect to an arbitrary server). For these, as a change + * from SDL2, you should open a default device ID and use an SDL hint to + * specify the target if you care, or otherwise let the backend figure out a + * reasonable default. Most backends don't offer anything like this, and often + * this would be an end user setting an environment variable for their custom + * need, and not something an application should specifically manage. + * + * When done with an audio device, possibly at the end of the app's life, one + * should call SDL_CloseAudioDevice() on the returned device id. + * + * \param devid the device instance id to open, or + * SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK or + * SDL_AUDIO_DEVICE_DEFAULT_RECORDING for the most reasonable + * default device. + * \param spec the requested device configuration. Can be NULL to use + * reasonable defaults. + * \returns the device ID on success or 0 on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseAudioDevice + * \sa SDL_GetAudioDeviceFormat + */ +extern SDL_DECLSPEC SDL_AudioDeviceID SDLCALL SDL_OpenAudioDevice(SDL_AudioDeviceID devid, const SDL_AudioSpec *spec); + +/** + * Determine if an audio device is physical (instead of logical). + * + * An SDL_AudioDeviceID that represents physical hardware is a physical + * device; there is one for each piece of hardware that SDL can see. Logical + * devices are created by calling SDL_OpenAudioDevice or + * SDL_OpenAudioDeviceStream, and while each is associated with a physical + * device, there can be any number of logical devices on one physical device. + * + * For the most part, logical and physical IDs are interchangeable--if you try + * to open a logical device, SDL understands to assign that effort to the + * underlying physical device, etc. However, it might be useful to know if an + * arbitrary device ID is physical or logical. This function reports which. + * + * This function may return either true or false for invalid device IDs. + * + * \param devid the device ID to query. + * \returns true if devid is a physical device, false if it is logical. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsAudioDevicePhysical(SDL_AudioDeviceID devid); + +/** + * Determine if an audio device is a playback device (instead of recording). + * + * This function may return either true or false for invalid device IDs. + * + * \param devid the device ID to query. + * \returns true if devid is a playback device, false if it is recording. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsAudioDevicePlayback(SDL_AudioDeviceID devid); + +/** + * Use this function to pause audio playback on a specified device. + * + * This function pauses audio processing for a given device. Any bound audio + * streams will not progress, and no audio will be generated. Pausing one + * device does not prevent other unpaused devices from running. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. Pausing a paused device is + * a legal no-op. + * + * Pausing a device can be useful to halt all audio without unbinding all the + * audio streams. This might be useful while a game is paused, or a level is + * loading, etc. + * + * Physical devices can not be paused or unpaused, only logical devices + * created through SDL_OpenAudioDevice() can be. + * + * \param devid a device opened by SDL_OpenAudioDevice(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResumeAudioDevice + * \sa SDL_AudioDevicePaused + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PauseAudioDevice(SDL_AudioDeviceID devid); + +/** + * Use this function to unpause audio playback on a specified device. + * + * This function unpauses audio processing for a given device that has + * previously been paused with SDL_PauseAudioDevice(). Once unpaused, any + * bound audio streams will begin to progress again, and audio can be + * generated. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. Unpausing an unpaused + * device is a legal no-op. + * + * Physical devices can not be paused or unpaused, only logical devices + * created through SDL_OpenAudioDevice() can be. + * + * \param devid a device opened by SDL_OpenAudioDevice(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AudioDevicePaused + * \sa SDL_PauseAudioDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResumeAudioDevice(SDL_AudioDeviceID devid); + +/** + * Use this function to query if an audio device is paused. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. + * + * Physical devices can not be paused or unpaused, only logical devices + * created through SDL_OpenAudioDevice() can be. Physical and invalid device + * IDs will report themselves as unpaused here. + * + * \param devid a device opened by SDL_OpenAudioDevice(). + * \returns true if device is valid and paused, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseAudioDevice + * \sa SDL_ResumeAudioDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AudioDevicePaused(SDL_AudioDeviceID devid); + +/** + * Get the gain of an audio device. + * + * The gain of a device is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio devices default to a gain of 1.0f (no change in output). + * + * Physical devices may not have their gain changed, only logical devices, and + * this function will always return -1.0f when used on physical devices. + * + * \param devid the audio device to query. + * \returns the gain of the device or -1.0f on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioDeviceGain + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetAudioDeviceGain(SDL_AudioDeviceID devid); + +/** + * Change the gain of an audio device. + * + * The gain of a device is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio devices default to a gain of 1.0f (no change in output). + * + * Physical devices may not have their gain changed, only logical devices, and + * this function will always return false when used on physical devices. While + * it might seem attractive to adjust several logical devices at once in this + * way, it would allow an app or library to interfere with another portion of + * the program's otherwise-isolated devices. + * + * This is applied, along with any per-audiostream gain, during playback to + * the hardware, and can be continuously changed to create various effects. On + * recording devices, this will adjust the gain before passing the data into + * an audiostream; that recording audiostream can then adjust its gain further + * when outputting the data elsewhere, if it likes, but that second gain is + * not applied until the data leaves the audiostream again. + * + * \param devid the audio device on which to change gain. + * \param gain the gain. 1.0f is no change, 0.0f is silence. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioDeviceGain + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioDeviceGain(SDL_AudioDeviceID devid, float gain); + +/** + * Close a previously-opened audio device. + * + * The application should close open audio devices once they are no longer + * needed. + * + * This function may block briefly while pending audio data is played by the + * hardware, so that applications don't drop the last buffer of data they + * supplied if terminating immediately afterwards. + * + * \param devid an audio device id previously returned by + * SDL_OpenAudioDevice(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenAudioDevice + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseAudioDevice(SDL_AudioDeviceID devid); + +/** + * Bind a list of audio streams to an audio device. + * + * Audio data will flow through any bound streams. For a playback device, data + * for all bound streams will be mixed together and fed to the device. For a + * recording device, a copy of recorded data will be provided to each bound + * stream. + * + * Audio streams can only be bound to an open device. This operation is + * atomic--all streams bound in the same call will start processing at the + * same time, so they can stay in sync. Also: either all streams will be bound + * or none of them will be. + * + * It is an error to bind an already-bound stream; it must be explicitly + * unbound first. + * + * Binding a stream to a device will set its output format for playback + * devices, and its input format for recording devices, so they match the + * device's settings. The caller is welcome to change the other end of the + * stream's format at any time with SDL_SetAudioStreamFormat(). If the other + * end of the stream's format has never been set (the audio stream was created + * with a NULL audio spec), this function will set it to match the device + * end's format. + * + * \param devid an audio device to bind a stream to. + * \param streams an array of audio streams to bind. + * \param num_streams number streams listed in the `streams` array. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStreams + * \sa SDL_UnbindAudioStream + * \sa SDL_GetAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BindAudioStreams(SDL_AudioDeviceID devid, SDL_AudioStream * const *streams, int num_streams); + +/** + * Bind a single audio stream to an audio device. + * + * This is a convenience function, equivalent to calling + * `SDL_BindAudioStreams(devid, &stream, 1)`. + * + * \param devid an audio device to bind a stream to. + * \param stream an audio stream to bind to a device. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStreams + * \sa SDL_UnbindAudioStream + * \sa SDL_GetAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BindAudioStream(SDL_AudioDeviceID devid, SDL_AudioStream *stream); + +/** + * Unbind a list of audio streams from their audio devices. + * + * The streams being unbound do not all have to be on the same device. All + * streams on the same device will be unbound atomically (data will stop + * flowing through all unbound streams on the same device at the same time). + * + * Unbinding a stream that isn't bound to a device is a legal no-op. + * + * \param streams an array of audio streams to unbind. Can be NULL or contain + * NULL. + * \param num_streams number streams listed in the `streams` array. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStreams + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnbindAudioStreams(SDL_AudioStream * const *streams, int num_streams); + +/** + * Unbind a single audio stream from its audio device. + * + * This is a convenience function, equivalent to calling + * `SDL_UnbindAudioStreams(&stream, 1)`. + * + * \param stream an audio stream to unbind from a device. Can be NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStream + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnbindAudioStream(SDL_AudioStream *stream); + +/** + * Query an audio stream for its currently-bound device. + * + * This reports the logical audio device that an audio stream is currently bound to. + * + * If not bound, or invalid, this returns zero, which is not a valid device + * ID. + * + * \param stream the audio stream to query. + * \returns the bound audio device, or 0 if not bound or invalid. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStream + * \sa SDL_BindAudioStreams + */ +extern SDL_DECLSPEC SDL_AudioDeviceID SDLCALL SDL_GetAudioStreamDevice(SDL_AudioStream *stream); + +/** + * Create a new audio stream. + * + * \param src_spec the format details of the input audio. + * \param dst_spec the format details of the output audio. + * \returns a new audio stream on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PutAudioStreamData + * \sa SDL_GetAudioStreamData + * \sa SDL_GetAudioStreamAvailable + * \sa SDL_FlushAudioStream + * \sa SDL_ClearAudioStream + * \sa SDL_SetAudioStreamFormat + * \sa SDL_DestroyAudioStream + */ +extern SDL_DECLSPEC SDL_AudioStream * SDLCALL SDL_CreateAudioStream(const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec); + +/** + * Get the properties associated with an audio stream. + * + * \param stream the SDL_AudioStream to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetAudioStreamProperties(SDL_AudioStream *stream); + +/** + * Query the current format of an audio stream. + * + * \param stream the SDL_AudioStream to query. + * \param src_spec where to store the input audio format; ignored if NULL. + * \param dst_spec where to store the output audio format; ignored if NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamFormat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetAudioStreamFormat(SDL_AudioStream *stream, SDL_AudioSpec *src_spec, SDL_AudioSpec *dst_spec); + +/** + * Change the input and output formats of an audio stream. + * + * Future calls to and SDL_GetAudioStreamAvailable and SDL_GetAudioStreamData + * will reflect the new format, and future calls to SDL_PutAudioStreamData + * must provide data in the new input formats. + * + * Data that was previously queued in the stream will still be operated on in + * the format that was current when it was added, which is to say you can put + * the end of a sound file in one format to a stream, change formats for the + * next sound file, and start putting that new data while the previous sound + * file is still queued, and everything will still play back correctly. + * + * If a stream is bound to a device, then the format of the side of the stream + * bound to a device cannot be changed (src_spec for recording devices, + * dst_spec for playback devices). Attempts to make a change to this side will + * be ignored, but this will not report an error. The other side's format can + * be changed. + * + * \param stream the stream the format is being changed. + * \param src_spec the new format of the audio input; if NULL, it is not + * changed. + * \param dst_spec the new format of the audio output; if NULL, it is not + * changed. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamFormat + * \sa SDL_SetAudioStreamFrequencyRatio + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamFormat(SDL_AudioStream *stream, const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec); + +/** + * Get the frequency ratio of an audio stream. + * + * \param stream the SDL_AudioStream to query. + * \returns the frequency ratio of the stream or 0.0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamFrequencyRatio + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetAudioStreamFrequencyRatio(SDL_AudioStream *stream); + +/** + * Change the frequency ratio of an audio stream. + * + * The frequency ratio is used to adjust the rate at which input data is + * consumed. Changing this effectively modifies the speed and pitch of the + * audio. A value greater than 1.0 will play the audio faster, and at a higher + * pitch. A value less than 1.0 will play the audio slower, and at a lower + * pitch. + * + * This is applied during SDL_GetAudioStreamData, and can be continuously + * changed to create various effects. + * + * \param stream the stream the frequency ratio is being changed. + * \param ratio the frequency ratio. 1.0 is normal speed. Must be between 0.01 + * and 100. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamFrequencyRatio + * \sa SDL_SetAudioStreamFormat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamFrequencyRatio(SDL_AudioStream *stream, float ratio); + +/** + * Get the gain of an audio stream. + * + * The gain of a stream is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio streams default to a gain of 1.0f (no change in output). + * + * \param stream the SDL_AudioStream to query. + * \returns the gain of the stream or -1.0f on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamGain + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetAudioStreamGain(SDL_AudioStream *stream); + +/** + * Change the gain of an audio stream. + * + * The gain of a stream is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio streams default to a gain of 1.0f (no change in output). + * + * This is applied during SDL_GetAudioStreamData, and can be continuously + * changed to create various effects. + * + * \param stream the stream on which the gain is being changed. + * \param gain the gain. 1.0f is no change, 0.0f is silence. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamGain + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamGain(SDL_AudioStream *stream, float gain); + +/** + * Get the current input channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * Audio streams default to no remapping applied. This is represented by + * returning NULL, and does not signify an error. + * + * \param stream the SDL_AudioStream to query. + * \param count On output, set to number of channels in the map. Can be NULL. + * \returns an array of the current channel mapping, with as many elements as + * the current output spec's channels, or NULL if default. This + * should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioStreamInputChannelMap(SDL_AudioStream *stream, int *count); + +/** + * Get the current output channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * Audio streams default to no remapping applied. This is represented by + * returning NULL, and does not signify an error. + * + * \param stream the SDL_AudioStream to query. + * \param count On output, set to number of channels in the map. Can be NULL. + * \returns an array of the current channel mapping, with as many elements as + * the current output spec's channels, or NULL if default. This + * should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioStreamOutputChannelMap(SDL_AudioStream *stream, int *count); + +/** + * Set the current input channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * The input channel map reorders data that is added to a stream via + * SDL_PutAudioStreamData. Future calls to SDL_PutAudioStreamData must provide + * data in the new channel order. + * + * Each item in the array represents an input channel, and its value is the + * channel that it should be remapped to. To reverse a stereo signal's left + * and right values, you'd have an array of `{ 1, 0 }`. It is legal to remap + * multiple channels to the same thing, so `{ 1, 1 }` would duplicate the + * right channel to both channels of a stereo signal. An element in the + * channel map set to -1 instead of a valid channel will mute that channel, + * setting it to a silence value. + * + * You cannot change the number of channels through a channel map, just + * reorder/mute them. + * + * Data that was previously queued in the stream will still be operated on in + * the order that was current when it was added, which is to say you can put + * the end of a sound file in one order to a stream, change orders for the + * next sound file, and start putting that new data while the previous sound + * file is still queued, and everything will still play back correctly. + * + * Audio streams default to no remapping applied. Passing a NULL channel map + * is legal, and turns off remapping. + * + * SDL will copy the channel map; the caller does not have to save this array + * after this call. + * + * If `count` is not equal to the current number of channels in the audio + * stream's format, this will fail. This is a safety measure to make sure a + * race condition hasn't changed the format while this call is setting the + * channel map. + * + * Unlike attempting to change the stream's format, the input channel map on a + * stream bound to a recording device is permitted to change at any time; any + * data added to the stream from the device after this call will have the new + * mapping, but previously-added data will still have the prior mapping. + * + * \param stream the SDL_AudioStream to change. + * \param chmap the new channel map, NULL to reset to default. + * \param count The number of channels in the map. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. Don't change the + * stream's format to have a different number of channels from a + * a different thread at the same time, though! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamInputChannelMap(SDL_AudioStream *stream, const int *chmap, int count); + +/** + * Set the current output channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * The output channel map reorders data that leaving a stream via + * SDL_GetAudioStreamData. + * + * Each item in the array represents an input channel, and its value is the + * channel that it should be remapped to. To reverse a stereo signal's left + * and right values, you'd have an array of `{ 1, 0 }`. It is legal to remap + * multiple channels to the same thing, so `{ 1, 1 }` would duplicate the + * right channel to both channels of a stereo signal. An element in the + * channel map set to -1 instead of a valid channel will mute that channel, + * setting it to a silence value. + * + * You cannot change the number of channels through a channel map, just + * reorder/mute them. + * + * The output channel map can be changed at any time, as output remapping is + * applied during SDL_GetAudioStreamData. + * + * Audio streams default to no remapping applied. Passing a NULL channel map + * is legal, and turns off remapping. + * + * SDL will copy the channel map; the caller does not have to save this array + * after this call. + * + * If `count` is not equal to the current number of channels in the audio + * stream's format, this will fail. This is a safety measure to make sure a + * race condition hasn't changed the format while this call is setting the + * channel map. + * + * Unlike attempting to change the stream's format, the output channel map on + * a stream bound to a recording device is permitted to change at any time; + * any data added to the stream after this call will have the new mapping, but + * previously-added data will still have the prior mapping. When the channel + * map doesn't match the hardware's channel layout, SDL will convert the data + * before feeding it to the device for playback. + * + * \param stream the SDL_AudioStream to change. + * \param chmap the new channel map, NULL to reset to default. + * \param count The number of channels in the map. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. Don't change the + * stream's format to have a different number of channels from a + * a different thread at the same time, though! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamOutputChannelMap(SDL_AudioStream *stream, const int *chmap, int count); + +/** + * Add data to the stream. + * + * This data must match the format/channels/samplerate specified in the latest + * call to SDL_SetAudioStreamFormat, or the format specified when creating the + * stream if it hasn't been changed. + * + * Note that this call simply copies the unconverted data for later. This is + * different than SDL2, where data was converted during the Put call and the + * Get call would just dequeue the previously-converted data. + * + * \param stream the stream the audio data is being added to. + * \param buf a pointer to the audio data to add. + * \param len the number of bytes to write to the stream. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, but if the + * stream has a callback set, the caller might need to manage + * extra locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearAudioStream + * \sa SDL_FlushAudioStream + * \sa SDL_GetAudioStreamData + * \sa SDL_GetAudioStreamQueued + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PutAudioStreamData(SDL_AudioStream *stream, const void *buf, int len); + +/** + * Get converted/resampled data from the stream. + * + * The input/output data format/channels/samplerate is specified when creating + * the stream, and can be changed after creation by calling + * SDL_SetAudioStreamFormat. + * + * Note that any conversion and resampling necessary is done during this call, + * and SDL_PutAudioStreamData simply queues unconverted data for later. This + * is different than SDL2, where that work was done while inputting new data + * to the stream and requesting the output just copied the converted data. + * + * \param stream the stream the audio is being requested from. + * \param buf a buffer to fill with audio data. + * \param len the maximum number of bytes to fill. + * \returns the number of bytes read from the stream or -1 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread, but if the + * stream has a callback set, the caller might need to manage + * extra locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearAudioStream + * \sa SDL_GetAudioStreamAvailable + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamData(SDL_AudioStream *stream, void *buf, int len); + +/** + * Get the number of converted/resampled bytes available. + * + * The stream may be buffering data behind the scenes until it has enough to + * resample correctly, so this number might be lower than what you expect, or + * even be zero. Add more data or flush the stream if you need the data now. + * + * If the stream has so much data that it would overflow an int, the return + * value is clamped to a maximum value, but no queued data is lost; if there + * are gigabytes of data queued, the app might need to read some of it with + * SDL_GetAudioStreamData before this function's return value is no longer + * clamped. + * + * \param stream the audio stream to query. + * \returns the number of converted/resampled bytes available or -1 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamData + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamAvailable(SDL_AudioStream *stream); + + +/** + * Get the number of bytes currently queued. + * + * This is the number of bytes put into a stream as input, not the number that + * can be retrieved as output. Because of several details, it's not possible + * to calculate one number directly from the other. If you need to know how + * much usable data can be retrieved right now, you should use + * SDL_GetAudioStreamAvailable() and not this function. + * + * Note that audio streams can change their input format at any time, even if + * there is still data queued in a different format, so the returned byte + * count will not necessarily match the number of _sample frames_ available. + * Users of this API should be aware of format changes they make when feeding + * a stream and plan accordingly. + * + * Queued data is not converted until it is consumed by + * SDL_GetAudioStreamData, so this value should be representative of the exact + * data that was put into the stream. + * + * If the stream has so much data that it would overflow an int, the return + * value is clamped to a maximum value, but no queued data is lost; if there + * are gigabytes of data queued, the app might need to read some of it with + * SDL_GetAudioStreamData before this function's return value is no longer + * clamped. + * + * \param stream the audio stream to query. + * \returns the number of bytes queued or -1 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PutAudioStreamData + * \sa SDL_ClearAudioStream + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamQueued(SDL_AudioStream *stream); + + +/** + * Tell the stream that you're done sending data, and anything being buffered + * should be converted/resampled and made available immediately. + * + * It is legal to add more data to a stream after flushing, but there may be + * audio gaps in the output. Generally this is intended to signal the end of + * input, so the complete output becomes available. + * + * \param stream the audio stream to flush. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlushAudioStream(SDL_AudioStream *stream); + +/** + * Clear any pending data in the stream. + * + * This drops any queued data, so there will be nothing to read from the + * stream until more is added. + * + * \param stream the audio stream to clear. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamAvailable + * \sa SDL_GetAudioStreamData + * \sa SDL_GetAudioStreamQueued + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearAudioStream(SDL_AudioStream *stream); + +/** + * Use this function to pause audio playback on the audio device associated + * with an audio stream. + * + * This function pauses audio processing for a given device. Any bound audio + * streams will not progress, and no audio will be generated. Pausing one + * device does not prevent other unpaused devices from running. + * + * Pausing a device can be useful to halt all audio without unbinding all the + * audio streams. This might be useful while a game is paused, or a level is + * loading, etc. + * + * \param stream the audio stream associated with the audio device to pause. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResumeAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PauseAudioStreamDevice(SDL_AudioStream *stream); + +/** + * Use this function to unpause audio playback on the audio device associated + * with an audio stream. + * + * This function unpauses audio processing for a given device that has + * previously been paused. Once unpaused, any bound audio streams will begin + * to progress again, and audio can be generated. + * + * Remember, SDL_OpenAudioDeviceStream opens device in a paused state, so this + * function call is required for audio playback to begin on such device. + * + * \param stream the audio stream associated with the audio device to resume. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResumeAudioStreamDevice(SDL_AudioStream *stream); + +/** + * Use this function to query if an audio device associated with a stream is + * paused. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. + * + * \param stream the audio stream associated with the audio device to query. + * \returns true if device is valid and paused, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseAudioStreamDevice + * \sa SDL_ResumeAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AudioStreamDevicePaused(SDL_AudioStream *stream); + + +/** + * Lock an audio stream for serialized access. + * + * Each SDL_AudioStream has an internal mutex it uses to protect its data + * structures from threading conflicts. This function allows an app to lock + * that mutex, which could be useful if registering callbacks on this stream. + * + * One does not need to lock a stream to use in it most cases, as the stream + * manages this lock internally. However, this lock is held during callbacks, + * which may run from arbitrary threads at any time, so if an app needs to + * protect shared data during those callbacks, locking the stream guarantees + * that the callback is not running while the lock is held. + * + * As this is just a wrapper over SDL_LockMutex for an internal lock; it has + * all the same attributes (recursive locks are allowed, etc). + * + * \param stream the audio stream to lock. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UnlockAudioStream + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockAudioStream(SDL_AudioStream *stream); + + +/** + * Unlock an audio stream for serialized access. + * + * This unlocks an audio stream after a call to SDL_LockAudioStream. + * + * \param stream the audio stream to unlock. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety You should only call this from the same thread that + * previously called SDL_LockAudioStream. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockAudioStream + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UnlockAudioStream(SDL_AudioStream *stream); + +/** + * A callback that fires when data passes through an SDL_AudioStream. + * + * Apps can (optionally) register a callback with an audio stream that is + * called when data is added with SDL_PutAudioStreamData, or requested with + * SDL_GetAudioStreamData. + * + * Two values are offered here: one is the amount of additional data needed to + * satisfy the immediate request (which might be zero if the stream already + * has enough data queued) and the other is the total amount being requested. + * In a Get call triggering a Put callback, these values can be different. In + * a Put call triggering a Get callback, these values are always the same. + * + * Byte counts might be slightly overestimated due to buffering or resampling, + * and may change from call to call. + * + * This callback is not required to do anything. Generally this is useful for + * adding/reading data on demand, and the app will often put/get data as + * appropriate, but the system goes on with the data currently available to it + * if this callback does nothing. + * + * \param stream the SDL audio stream associated with this callback. + * \param additional_amount the amount of data, in bytes, that is needed right + * now. + * \param total_amount the total amount of data requested, in bytes, that is + * requested or available. + * \param userdata an opaque pointer provided by the app for their personal + * use. + * + * \threadsafety This callbacks may run from any thread, so if you need to + * protect shared data, you should use SDL_LockAudioStream to + * serialize access; this lock will be held before your callback + * is called, so your callback does not need to manage the lock + * explicitly. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamGetCallback + * \sa SDL_SetAudioStreamPutCallback + */ +typedef void (SDLCALL *SDL_AudioStreamCallback)(void *userdata, SDL_AudioStream *stream, int additional_amount, int total_amount); + +/** + * Set a callback that runs when data is requested from an audio stream. + * + * This callback is called _before_ data is obtained from the stream, giving + * the callback the chance to add more on-demand. + * + * The callback can (optionally) call SDL_PutAudioStreamData() to add more + * audio to the stream during this call; if needed, the request that triggered + * this callback will obtain the new data immediately. + * + * The callback's `additional_amount` argument is roughly how many bytes of + * _unconverted_ data (in the stream's input format) is needed by the caller, + * although this may overestimate a little for safety. This takes into account + * how much is already in the stream and only asks for any extra necessary to + * resolve the request, which means the callback may be asked for zero bytes, + * and a different amount on each call. + * + * The callback is not required to supply exact amounts; it is allowed to + * supply too much or too little or none at all. The caller will get what's + * available, up to the amount they requested, regardless of this callback's + * outcome. + * + * Clearing or flushing an audio stream does not call this callback. + * + * This function obtains the stream's lock, which means any existing callback + * (get or put) in progress will finish running before setting the new + * callback. + * + * Setting a NULL function turns off the callback. + * + * \param stream the audio stream to set the new callback on. + * \param callback the new callback function to call when data is requested + * from the stream. + * \param userdata an opaque pointer provided to the callback for its own + * personal use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. This only fails if `stream` is NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamPutCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamGetCallback(SDL_AudioStream *stream, SDL_AudioStreamCallback callback, void *userdata); + +/** + * Set a callback that runs when data is added to an audio stream. + * + * This callback is called _after_ the data is added to the stream, giving the + * callback the chance to obtain it immediately. + * + * The callback can (optionally) call SDL_GetAudioStreamData() to obtain audio + * from the stream during this call. + * + * The callback's `additional_amount` argument is how many bytes of + * _converted_ data (in the stream's output format) was provided by the + * caller, although this may underestimate a little for safety. This value + * might be less than what is currently available in the stream, if data was + * already there, and might be less than the caller provided if the stream + * needs to keep a buffer to aid in resampling. Which means the callback may + * be provided with zero bytes, and a different amount on each call. + * + * The callback may call SDL_GetAudioStreamAvailable to see the total amount + * currently available to read from the stream, instead of the total provided + * by the current call. + * + * The callback is not required to obtain all data. It is allowed to read less + * or none at all. Anything not read now simply remains in the stream for + * later access. + * + * Clearing or flushing an audio stream does not call this callback. + * + * This function obtains the stream's lock, which means any existing callback + * (get or put) in progress will finish running before setting the new + * callback. + * + * Setting a NULL function turns off the callback. + * + * \param stream the audio stream to set the new callback on. + * \param callback the new callback function to call when data is added to the + * stream. + * \param userdata an opaque pointer provided to the callback for its own + * personal use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. This only fails if `stream` is NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamGetCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamPutCallback(SDL_AudioStream *stream, SDL_AudioStreamCallback callback, void *userdata); + + +/** + * Free an audio stream. + * + * This will release all allocated data, including any audio that is still + * queued. You do not need to manually clear the stream first. + * + * If this stream was bound to an audio device, it is unbound during this + * call. If this stream was created with SDL_OpenAudioDeviceStream, the audio + * device that was opened alongside this stream's creation will be closed, + * too. + * + * \param stream the audio stream to destroy. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateAudioStream + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyAudioStream(SDL_AudioStream *stream); + + +/** + * Convenience function for straightforward audio init for the common case. + * + * If all your app intends to do is provide a single source of PCM audio, this + * function allows you to do all your audio setup in a single call. + * + * This is also intended to be a clean means to migrate apps from SDL2. + * + * This function will open an audio device, create a stream and bind it. + * Unlike other methods of setup, the audio device will be closed when this + * stream is destroyed, so the app can treat the returned SDL_AudioStream as + * the only object needed to manage audio playback. + * + * Also unlike other functions, the audio device begins paused. This is to map + * more closely to SDL2-style behavior, since there is no extra step here to + * bind a stream to begin audio flowing. The audio device should be resumed + * with `SDL_ResumeAudioStreamDevice(stream);` + * + * This function works with both playback and recording devices. + * + * The `spec` parameter represents the app's side of the audio stream. That + * is, for recording audio, this will be the output format, and for playing + * audio, this will be the input format. If spec is NULL, the system will + * choose the format, and the app can use SDL_GetAudioStreamFormat() to obtain + * this information later. + * + * If you don't care about opening a specific audio device, you can (and + * probably _should_), use SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK for playback and + * SDL_AUDIO_DEVICE_DEFAULT_RECORDING for recording. + * + * One can optionally provide a callback function; if NULL, the app is + * expected to queue audio data for playback (or unqueue audio data if + * capturing). Otherwise, the callback will begin to fire once the device is + * unpaused. + * + * Destroying the returned stream with SDL_DestroyAudioStream will also close + * the audio device associated with this stream. + * + * \param devid an audio device to open, or SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK + * or SDL_AUDIO_DEVICE_DEFAULT_RECORDING. + * \param spec the audio stream's data format. Can be NULL. + * \param callback a callback where the app will provide new data for + * playback, or receive new data for recording. Can be NULL, + * in which case the app will need to call + * SDL_PutAudioStreamData or SDL_GetAudioStreamData as + * necessary. + * \param userdata app-controlled pointer passed to callback. Can be NULL. + * Ignored if callback is NULL. + * \returns an audio stream on success, ready to use, or NULL on failure; call + * SDL_GetError() for more information. When done with this stream, + * call SDL_DestroyAudioStream to free resources and close the + * device. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamDevice + * \sa SDL_ResumeAudioStreamDevice + */ +extern SDL_DECLSPEC SDL_AudioStream * SDLCALL SDL_OpenAudioDeviceStream(SDL_AudioDeviceID devid, const SDL_AudioSpec *spec, SDL_AudioStreamCallback callback, void *userdata); + +/** + * A callback that fires when data is about to be fed to an audio device. + * + * This is useful for accessing the final mix, perhaps for writing a + * visualizer or applying a final effect to the audio data before playback. + * + * This callback should run as quickly as possible and not block for any + * significant time, as this callback delays submission of data to the audio + * device, which can cause audio playback problems. + * + * The postmix callback _must_ be able to handle any audio data format + * specified in `spec`, which can change between callbacks if the audio device + * changed. However, this only covers frequency and channel count; data is + * always provided here in SDL_AUDIO_F32 format. + * + * The postmix callback runs _after_ logical device gain and audiostream gain + * have been applied, which is to say you can make the output data louder at + * this point than the gain settings would suggest. + * + * \param userdata a pointer provided by the app through + * SDL_SetAudioPostmixCallback, for its own use. + * \param spec the current format of audio that is to be submitted to the + * audio device. + * \param buffer the buffer of audio samples to be submitted. The callback can + * inspect and/or modify this data. + * \param buflen the size of `buffer` in bytes. + * + * \threadsafety This will run from a background thread owned by SDL. The + * application is responsible for locking resources the callback + * touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetAudioPostmixCallback + */ +typedef void (SDLCALL *SDL_AudioPostmixCallback)(void *userdata, const SDL_AudioSpec *spec, float *buffer, int buflen); + +/** + * Set a callback that fires when data is about to be fed to an audio device. + * + * This is useful for accessing the final mix, perhaps for writing a + * visualizer or applying a final effect to the audio data before playback. + * + * The buffer is the final mix of all bound audio streams on an opened device; + * this callback will fire regularly for any device that is both opened and + * unpaused. If there is no new data to mix, either because no streams are + * bound to the device or all the streams are empty, this callback will still + * fire with the entire buffer set to silence. + * + * This callback is allowed to make changes to the data; the contents of the + * buffer after this call is what is ultimately passed along to the hardware. + * + * The callback is always provided the data in float format (values from -1.0f + * to 1.0f), but the number of channels or sample rate may be different than + * the format the app requested when opening the device; SDL might have had to + * manage a conversion behind the scenes, or the playback might have jumped to + * new physical hardware when a system default changed, etc. These details may + * change between calls. Accordingly, the size of the buffer might change + * between calls as well. + * + * This callback can run at any time, and from any thread; if you need to + * serialize access to your app's data, you should provide and use a mutex or + * other synchronization device. + * + * All of this to say: there are specific needs this callback can fulfill, but + * it is not the simplest interface. Apps should generally provide audio in + * their preferred format through an SDL_AudioStream and let SDL handle the + * difference. + * + * This function is extremely time-sensitive; the callback should do the least + * amount of work possible and return as quickly as it can. The longer the + * callback runs, the higher the risk of audio dropouts or other problems. + * + * This function will block until the audio device is in between iterations, + * so any existing callback that might be running will finish before this + * function sets the new callback and returns. + * + * Setting a NULL callback function disables any previously-set callback. + * + * \param devid the ID of an opened audio device. + * \param callback a callback function to be called. Can be NULL. + * \param userdata app-controlled pointer passed to callback. Can be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioPostmixCallback(SDL_AudioDeviceID devid, SDL_AudioPostmixCallback callback, void *userdata); + + +/** + * Load the audio data of a WAVE file into memory. + * + * Loading a WAVE file requires `src`, `spec`, `audio_buf` and `audio_len` to + * be valid pointers. The entire data portion of the file is then loaded into + * memory and decoded if necessary. + * + * Supported formats are RIFF WAVE files with the formats PCM (8, 16, 24, and + * 32 bits), IEEE Float (32 bits), Microsoft ADPCM and IMA ADPCM (4 bits), and + * A-law and mu-law (8 bits). Other formats are currently unsupported and + * cause an error. + * + * If this function succeeds, the return value is zero and the pointer to the + * audio data allocated by the function is written to `audio_buf` and its + * length in bytes to `audio_len`. The SDL_AudioSpec members `freq`, + * `channels`, and `format` are set to the values of the audio data in the + * buffer. + * + * It's necessary to use SDL_free() to free the audio data returned in + * `audio_buf` when it is no longer used. + * + * Because of the underspecification of the .WAV format, there are many + * problematic files in the wild that cause issues with strict decoders. To + * provide compatibility with these files, this decoder is lenient in regards + * to the truncation of the file, the fact chunk, and the size of the RIFF + * chunk. The hints `SDL_HINT_WAVE_RIFF_CHUNK_SIZE`, + * `SDL_HINT_WAVE_TRUNCATION`, and `SDL_HINT_WAVE_FACT_CHUNK` can be used to + * tune the behavior of the loading process. + * + * Any file that is invalid (due to truncation, corruption, or wrong values in + * the headers), too big, or unsupported causes an error. Additionally, any + * critical I/O error from the data source will terminate the loading process + * with an error. The function returns NULL on error and in all cases (with + * the exception of `src` being NULL), an appropriate error message will be + * set. + * + * It is required that the data source supports seeking. + * + * Example: + * + * ```c + * SDL_LoadWAV_IO(SDL_IOFromFile("sample.wav", "rb"), true, &spec, &buf, &len); + * ``` + * + * Note that the SDL_LoadWAV function does this same thing for you, but in a + * less messy way: + * + * ```c + * SDL_LoadWAV("sample.wav", &spec, &buf, &len); + * ``` + * + * \param src the data source for the WAVE data. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \param spec a pointer to an SDL_AudioSpec that will be set to the WAVE + * data's format details on successful return. + * \param audio_buf a pointer filled with the audio data, allocated by the + * function. + * \param audio_len a pointer filled with the length of the audio data buffer + * in bytes. + * \returns true on success. `audio_buf` will be filled with a pointer to an + * allocated buffer containing the audio data, and `audio_len` is + * filled with the length of that audio buffer in bytes. + * + * This function returns false if the .WAV file cannot be opened, + * uses an unknown data format, or is corrupt; call SDL_GetError() + * for more information. + * + * When the application is done with the data returned in + * `audio_buf`, it should call SDL_free() to dispose of it. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_LoadWAV + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LoadWAV_IO(SDL_IOStream *src, bool closeio, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); + +/** + * Loads a WAV from a file path. + * + * This is a convenience function that is effectively the same as: + * + * ```c + * SDL_LoadWAV_IO(SDL_IOFromFile(path, "rb"), true, spec, audio_buf, audio_len); + * ``` + * + * \param path the file path of the WAV file to open. + * \param spec a pointer to an SDL_AudioSpec that will be set to the WAVE + * data's format details on successful return. + * \param audio_buf a pointer filled with the audio data, allocated by the + * function. + * \param audio_len a pointer filled with the length of the audio data buffer + * in bytes. + * \returns true on success. `audio_buf` will be filled with a pointer to an + * allocated buffer containing the audio data, and `audio_len` is + * filled with the length of that audio buffer in bytes. + * + * This function returns false if the .WAV file cannot be opened, + * uses an unknown data format, or is corrupt; call SDL_GetError() + * for more information. + * + * When the application is done with the data returned in + * `audio_buf`, it should call SDL_free() to dispose of it. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_LoadWAV_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LoadWAV(const char *path, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); + +/** + * Mix audio data in a specified format. + * + * This takes an audio buffer `src` of `len` bytes of `format` data and mixes + * it into `dst`, performing addition, volume adjustment, and overflow + * clipping. The buffer pointed to by `dst` must also be `len` bytes of + * `format` data. + * + * This is provided for convenience -- you can mix your own audio data. + * + * Do not use this function for mixing together more than two streams of + * sample data. The output from repeated application of this function may be + * distorted by clipping, because there is no accumulator with greater range + * than the input (not to mention this being an inefficient way of doing it). + * + * It is a common misconception that this function is required to write audio + * data to an output stream in an audio callback. While you can do that, + * SDL_MixAudio() is really only needed when you're mixing a single audio + * stream with a volume adjustment. + * + * \param dst the destination for the mixed audio. + * \param src the source audio buffer to be mixed. + * \param format the SDL_AudioFormat structure representing the desired audio + * format. + * \param len the length of the audio buffer in bytes. + * \param volume ranges from 0.0 - 1.0, and should be set to 1.0 for full + * audio volume. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_MixAudio(Uint8 *dst, const Uint8 *src, SDL_AudioFormat format, Uint32 len, float volume); + +/** + * Convert some audio data of one format to another format. + * + * Please note that this function is for convenience, but should not be used + * to resample audio in blocks, as it will introduce audio artifacts on the + * boundaries. You should only use this function if you are converting audio + * data in its entirety in one call. If you want to convert audio in smaller + * chunks, use an SDL_AudioStream, which is designed for this situation. + * + * Internally, this function creates and destroys an SDL_AudioStream on each + * use, so it's also less efficient than using one directly, if you need to + * convert multiple times. + * + * \param src_spec the format details of the input audio. + * \param src_data the audio data to be converted. + * \param src_len the len of src_data. + * \param dst_spec the format details of the output audio. + * \param dst_data will be filled with a pointer to converted audio data, + * which should be freed with SDL_free(). On error, it will be + * NULL. + * \param dst_len will be filled with the len of dst_data. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertAudioSamples(const SDL_AudioSpec *src_spec, const Uint8 *src_data, int src_len, const SDL_AudioSpec *dst_spec, Uint8 **dst_data, int *dst_len); + +/** + * Get the human readable name of an audio format. + * + * \param format the audio format to query. + * \returns the human readable name of the specified audio format or + * "SDL_AUDIO_UNKNOWN" if the format isn't recognized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioFormatName(SDL_AudioFormat format); + +/** + * Get the appropriate memset value for silencing an audio format. + * + * The value returned by this function can be used as the second argument to + * memset (or SDL_memset) to set an audio buffer in a specific format to + * silence. + * + * \param format the audio data format to query. + * \returns a byte value that can be passed to memset. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSilenceValueForFormat(SDL_AudioFormat format); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_audio_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_begin_code.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_begin_code.h new file mode 100644 index 0000000..a6b47cf --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_begin_code.h @@ -0,0 +1,486 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: BeginCode */ + +/** + * # CategoryBeginCode + * + * `SDL_begin_code.h` sets things up for C dynamic library function + * definitions, static inlined functions, and structures aligned at 4-byte + * alignment. If you don't like ugly C preprocessor code, don't look at this + * file. :) + * + * SDL's headers use this; applications generally should not include this + * header directly. + */ + +/* This shouldn't be nested -- included it around code only. */ +#ifdef SDL_begin_code_h +#error Nested inclusion of SDL_begin_code.h +#endif +#define SDL_begin_code_h + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to tag a symbol as deprecated. + * + * A function is marked deprecated by adding this macro to its declaration: + * + * ```c + * extern SDL_DEPRECATED int ThisFunctionWasABadIdea(void); + * ``` + * + * Compilers with deprecation support can give a warning when a deprecated + * function is used. This symbol may be used in SDL's headers, but apps are + * welcome to use it for their own interfaces as well. + * + * SDL, on occasion, might deprecate a function for various reasons. However, + * SDL never removes symbols before major versions, so deprecated interfaces + * in SDL3 will remain available until SDL4, where it would be expected an app + * would have to take steps to migrate anyhow. + * + * On compilers without a deprecation mechanism, this is defined to nothing, + * and using a deprecated function will not generate a warning. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEPRECATED __attribute__((deprecated)) + +/** + * A macro to tag a symbol as a public API. + * + * SDL uses this macro for all its public functions. On some targets, it is + * used to signal to the compiler that this function needs to be exported from + * a shared library, but it might have other side effects. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DECLSPEC __attribute__ ((visibility("default"))) + +/** + * A macro to set a function's calling conventions. + * + * SDL uses this macro for all its public functions, and any callbacks it + * defines. This macro guarantees that calling conventions match between SDL + * and the app, even if the two were built with different compilers or + * optimization settings. + * + * When writing a callback function, it is very important for it to be + * correctly tagged with SDLCALL, as mismatched calling conventions can cause + * strange behaviors and can be difficult to diagnose. Plus, on many + * platforms, SDLCALL is defined to nothing, so compilers won't be able to + * warn that the tag is missing. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDLCALL __cdecl + +/** + * A macro to request a function be inlined. + * + * This is a hint to the compiler to inline a function. The compiler is free + * to ignore this request. On compilers without inline support, this is + * defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_INLINE __inline + +/** + * A macro to demand a function be inlined. + * + * This is a command to the compiler to inline a function. SDL uses this macro + * in its public headers for a handful of simple functions. On compilers + * without forceinline support, this is defined to `static SDL_INLINE`, which + * is often good enough. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FORCE_INLINE __forceinline + +/** + * A macro to tag a function as never-returning. + * + * This is a hint to the compiler that a function does not return. An example + * of a function like this is the C runtime's exit() function. + * + * This hint can lead to code optimizations, and help analyzers understand + * code flow better. On compilers without noreturn support, this is defined to + * nothing. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NORETURN __attribute__((noreturn)) + +/** + * A macro to tag a function as never-returning (for analysis purposes). + * + * This is almost identical to SDL_NORETURN, except functions marked with this + * _can_ actually return. The difference is that this isn't used for code + * generation, but rather static analyzers use this information to assume + * truths about program state and available code paths. Specifically, this tag + * is useful for writing an assertion mechanism. Indeed, SDL_assert uses this + * tag behind the scenes. Generally, apps that don't understand the specific + * use-case for this tag should avoid using it directly. + * + * On compilers without analyzer_noreturn support, this is defined to nothing. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ANALYZER_NORETURN __attribute__((analyzer_noreturn)) + + +/** + * A macro to signal that a case statement without a `break` is intentional. + * + * C compilers have gotten more aggressive about warning when a switch's + * `case` block does not end with a `break` or other flow control statement, + * flowing into the next case's code, as this is a common accident that leads + * to strange bugs. But sometimes falling through to the next case is the + * correct and desired behavior. This symbol lets an app communicate this + * intention to the compiler, so it doesn't generate a warning. + * + * It is used like this: + * + * ```c + * switch (x) { + * case 1: + * DoSomethingOnlyForOne(); + * SDL_FALLTHROUGH; // tell the compiler this was intentional. + * case 2: + * DoSomethingForOneAndTwo(); + * break; + * } + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FALLTHROUGH [[fallthrough]] + +/** + * A macro to tag a function's return value as critical. + * + * This is a hint to the compiler that a function's return value should not be + * ignored. + * + * If an NODISCARD function's return value is thrown away (the function is + * called as if it returns `void`), the compiler will issue a warning. + * + * While it's generally good practice to check return values for errors, often + * times legitimate programs do not for good reasons. Be careful about what + * functions are tagged as NODISCARD. It operates best when used on a function + * that's failure is surprising and catastrophic; a good example would be a + * program that checks the return values of all its file write function calls + * but not the call to close the file, which it assumes incorrectly never + * fails. + * + * Function callers that want to throw away a NODISCARD return value can call + * the function with a `(void)` cast, which informs the compiler the act is + * intentional. + * + * On compilers without nodiscard support, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NODISCARD [[nodiscard]] + +/** + * A macro to tag a function as an allocator. + * + * This is a hint to the compiler that a function is an allocator, like + * malloc(), with certain rules. A description of how GCC treats this hint is + * here: + * + * https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-malloc-function-attribute + * + * On compilers without allocator tag support, this is defined to nothing. + * + * Most apps don't need to, and should not, use this directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MALLOC __declspec(allocator) __desclspec(restrict) + +/** + * A macro to tag a function as returning a certain allocation. + * + * This is a hint to the compiler that a function allocates and returns a + * specific amount of memory based on one of its arguments. For example, the C + * runtime's malloc() function could use this macro with an argument of 1 + * (first argument to malloc is the size of the allocation). + * + * On compilers without alloc_size support, this is defined to nothing. + * + * Most apps don't need to, and should not, use this directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ALLOC_SIZE(p) __attribute__((alloc_size(p))) + +/** + * A macro to tag a pointer variable, to help with pointer aliasing. + * + * A good explanation of the restrict keyword is here: + * + * https://en.wikipedia.org/wiki/Restrict + * + * On compilers without restrict support, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RESTRICT __restrict__ + +/** + * Check if the compiler supports a given builtin functionality. + * + * This allows preprocessor checks for things that otherwise might fail to + * compile. + * + * Supported by virtually all clang versions and more-recent GCCs. Use this + * instead of checking the clang version if possible. + * + * On compilers without has_builtin support, this is defined to 0 (always + * false). + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAS_BUILTIN(x) __has_builtin(x) + +/* end of wiki documentation section. */ +#endif + +#ifndef SDL_HAS_BUILTIN +#ifdef __has_builtin +#define SDL_HAS_BUILTIN(x) __has_builtin(x) +#else +#define SDL_HAS_BUILTIN(x) 0 +#endif +#endif + +#ifndef SDL_DEPRECATED +# if defined(__GNUC__) && (__GNUC__ >= 4) /* technically, this arrived in gcc 3.1, but oh well. */ +# define SDL_DEPRECATED __attribute__((deprecated)) +# elif defined(_MSC_VER) +# define SDL_DEPRECATED __declspec(deprecated) +# else +# define SDL_DEPRECATED +# endif +#endif + +#ifndef SDL_UNUSED +# ifdef __GNUC__ +# define SDL_UNUSED __attribute__((unused)) +# else +# define SDL_UNUSED +# endif +#endif + +/* Some compilers use a special export keyword */ +#ifndef SDL_DECLSPEC +# if defined(SDL_PLATFORM_WINDOWS) +# ifdef DLL_EXPORT +# define SDL_DECLSPEC __declspec(dllexport) +# else +# define SDL_DECLSPEC +# endif +# else +# if defined(__GNUC__) && __GNUC__ >= 4 +# define SDL_DECLSPEC __attribute__ ((visibility("default"))) +# else +# define SDL_DECLSPEC +# endif +# endif +#endif + +/* By default SDL uses the C calling convention */ +#ifndef SDLCALL +#if defined(SDL_PLATFORM_WINDOWS) && !defined(__GNUC__) +#define SDLCALL __cdecl +#else +#define SDLCALL +#endif +#endif /* SDLCALL */ + +/* Force structure packing at 4 byte alignment. + This is necessary if the header is included in code which has structure + packing set to an alternate value, say for loading structures from disk. + The packing is reset to the previous value in SDL_close_code.h + */ +#if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__) +#ifdef _MSC_VER +#pragma warning(disable: 4103) +#endif +#ifdef __clang__ +#pragma clang diagnostic ignored "-Wpragma-pack" +#endif +#ifdef __BORLANDC__ +#pragma nopackwarning +#endif +#ifdef _WIN64 +/* Use 8-byte alignment on 64-bit architectures, so pointers are aligned */ +#pragma pack(push,8) +#else +#pragma pack(push,4) +#endif +#endif /* Compiler needs structure packing set */ + +#ifndef SDL_INLINE +#ifdef __GNUC__ +#define SDL_INLINE __inline__ +#elif defined(_MSC_VER) || defined(__BORLANDC__) || \ + defined(__DMC__) || defined(__SC__) || \ + defined(__WATCOMC__) || defined(__LCC__) || \ + defined(__DECC) || defined(__CC_ARM) +#define SDL_INLINE __inline +#ifndef __inline__ +#define __inline__ __inline +#endif +#else +#define SDL_INLINE inline +#ifndef __inline__ +#define __inline__ inline +#endif +#endif +#endif /* SDL_INLINE not defined */ + +#ifndef SDL_FORCE_INLINE +#ifdef _MSC_VER +#define SDL_FORCE_INLINE __forceinline +#elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) ) +#define SDL_FORCE_INLINE __attribute__((always_inline)) static __inline__ +#else +#define SDL_FORCE_INLINE static SDL_INLINE +#endif +#endif /* SDL_FORCE_INLINE not defined */ + +#ifndef SDL_NORETURN +#ifdef __GNUC__ +#define SDL_NORETURN __attribute__((noreturn)) +#elif defined(_MSC_VER) +#define SDL_NORETURN __declspec(noreturn) +#else +#define SDL_NORETURN +#endif +#endif /* SDL_NORETURN not defined */ + +#ifdef __clang__ +#if __has_feature(attribute_analyzer_noreturn) +#define SDL_ANALYZER_NORETURN __attribute__((analyzer_noreturn)) +#endif +#endif + +#ifndef SDL_ANALYZER_NORETURN +#define SDL_ANALYZER_NORETURN +#endif + +/* Apparently this is needed by several Windows compilers */ +#ifndef __MACH__ +#ifndef NULL +#ifdef __cplusplus +#define NULL 0 +#else +#define NULL ((void *)0) +#endif +#endif /* NULL */ +#endif /* ! macOS - breaks precompiled headers */ + +#ifndef SDL_FALLTHROUGH +#if (defined(__cplusplus) && __cplusplus >= 201703L) || \ + (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202000L) +#define SDL_FALLTHROUGH [[fallthrough]] +#else +#if defined(__has_attribute) && !defined(__SUNPRO_C) && !defined(__SUNPRO_CC) +#define SDL_HAS_FALLTHROUGH __has_attribute(__fallthrough__) +#else +#define SDL_HAS_FALLTHROUGH 0 +#endif /* __has_attribute */ +#if SDL_HAS_FALLTHROUGH && \ + ((defined(__GNUC__) && __GNUC__ >= 7) || \ + (defined(__clang_major__) && __clang_major__ >= 10)) +#define SDL_FALLTHROUGH __attribute__((__fallthrough__)) +#else +#define SDL_FALLTHROUGH do {} while (0) /* fallthrough */ +#endif /* SDL_HAS_FALLTHROUGH */ +#undef SDL_HAS_FALLTHROUGH +#endif /* C++17 or C2x */ +#endif /* SDL_FALLTHROUGH not defined */ + +#ifndef SDL_NODISCARD +#if (defined(__cplusplus) && __cplusplus >= 201703L) || \ + (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) +#define SDL_NODISCARD [[nodiscard]] +#elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) ) +#define SDL_NODISCARD __attribute__((warn_unused_result)) +#elif defined(_MSC_VER) && (_MSC_VER >= 1700) +#define SDL_NODISCARD _Check_return_ +#else +#define SDL_NODISCARD +#endif /* C++17 or C23 */ +#endif /* SDL_NODISCARD not defined */ + +#ifndef SDL_MALLOC +#if defined(__GNUC__) && (__GNUC__ >= 3) +#define SDL_MALLOC __attribute__((malloc)) +/** FIXME +#elif defined(_MSC_VER) +#define SDL_MALLOC __declspec(allocator) __desclspec(restrict) +**/ +#else +#define SDL_MALLOC +#endif +#endif /* SDL_MALLOC not defined */ + +#ifndef SDL_ALLOC_SIZE +#if (defined(__clang__) && __clang_major__ >= 4) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) +#define SDL_ALLOC_SIZE(p) __attribute__((alloc_size(p))) +#elif defined(_MSC_VER) +#define SDL_ALLOC_SIZE(p) +#else +#define SDL_ALLOC_SIZE(p) +#endif +#endif /* SDL_ALLOC_SIZE not defined */ + +#ifndef SDL_ALLOC_SIZE2 +#if (defined(__clang__) && __clang_major__ >= 4) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) +#define SDL_ALLOC_SIZE2(p1, p2) __attribute__((alloc_size(p1, p2))) +#elif defined(_MSC_VER) +#define SDL_ALLOC_SIZE2(p1, p2) +#else +#define SDL_ALLOC_SIZE2(p1, p2) +#endif +#endif /* SDL_ALLOC_SIZE2 not defined */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_bits.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_bits.h new file mode 100644 index 0000000..7435ce6 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_bits.h @@ -0,0 +1,147 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryBits + * + * Functions for fiddling with bits and bitmasks. + */ + +#ifndef SDL_bits_h_ +#define SDL_bits_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#if defined(__WATCOMC__) && defined(__386__) +extern __inline int _SDL_bsr_watcom(Uint32); +#pragma aux _SDL_bsr_watcom = \ + "bsr eax, eax" \ + parm [eax] nomemory \ + value [eax] \ + modify exact [eax] nomemory; +#endif + +/** + * Get the index of the most significant (set) bit in a 32-bit number. + * + * Result is undefined when called with 0. This operation can also be stated + * as "count leading zeroes" and "log base 2". + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the 32-bit value to examine. + * \returns the index of the most significant bit, or -1 if the value is 0. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE int SDL_MostSignificantBitIndex32(Uint32 x) +{ +#if defined(__GNUC__) && (__GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) + /* Count Leading Zeroes builtin in GCC. + * http://gcc.gnu.org/onlinedocs/gcc-4.3.4/gcc/Other-Builtins.html + */ + if (x == 0) { + return -1; + } + return 31 - __builtin_clz(x); +#elif defined(__WATCOMC__) && defined(__386__) + if (x == 0) { + return -1; + } + return _SDL_bsr_watcom(x); +#elif defined(_MSC_VER) && _MSC_VER >= 1400 + unsigned long index; + if (_BitScanReverse(&index, x)) { + return (int)index; + } + return -1; +#else + /* Based off of Bit Twiddling Hacks by Sean Eron Anderson + * , released in the public domain. + * http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog + */ + const Uint32 b[] = {0x2, 0xC, 0xF0, 0xFF00, 0xFFFF0000}; + const int S[] = {1, 2, 4, 8, 16}; + + int msbIndex = 0; + int i; + + if (x == 0) { + return -1; + } + + for (i = 4; i >= 0; i--) + { + if (x & b[i]) + { + x >>= S[i]; + msbIndex |= S[i]; + } + } + + return msbIndex; +#endif +} + +/** + * Determine if a unsigned 32-bit value has exactly one bit set. + * + * If there are no bits set (`x` is zero), or more than one bit set, this + * returns false. If any one bit is exclusively set, this returns true. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the 32-bit value to examine. + * \returns true if exactly one bit is set in `x`, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_HasExactlyOneBitSet32(Uint32 x) +{ + if (x && !(x & (x - 1))) { + return true; + } + return false; +} + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_bits_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_blendmode.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_blendmode.h new file mode 100644 index 0000000..8f00cbc --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_blendmode.h @@ -0,0 +1,202 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryBlendmode + * + * Blend modes decide how two colors will mix together. There are both + * standard modes for basic needs and a means to create custom modes, + * dictating what sort of math to do on what color components. + */ + +#ifndef SDL_blendmode_h_ +#define SDL_blendmode_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A set of blend modes used in drawing operations. + * + * These predefined blend modes are supported everywhere. + * + * Additional values may be obtained from SDL_ComposeCustomBlendMode. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_ComposeCustomBlendMode + */ +typedef Uint32 SDL_BlendMode; + +#define SDL_BLENDMODE_NONE 0x00000000u /**< no blending: dstRGBA = srcRGBA */ +#define SDL_BLENDMODE_BLEND 0x00000001u /**< alpha blending: dstRGB = (srcRGB * srcA) + (dstRGB * (1-srcA)), dstA = srcA + (dstA * (1-srcA)) */ +#define SDL_BLENDMODE_BLEND_PREMULTIPLIED 0x00000010u /**< pre-multiplied alpha blending: dstRGBA = srcRGBA + (dstRGBA * (1-srcA)) */ +#define SDL_BLENDMODE_ADD 0x00000002u /**< additive blending: dstRGB = (srcRGB * srcA) + dstRGB, dstA = dstA */ +#define SDL_BLENDMODE_ADD_PREMULTIPLIED 0x00000020u /**< pre-multiplied additive blending: dstRGB = srcRGB + dstRGB, dstA = dstA */ +#define SDL_BLENDMODE_MOD 0x00000004u /**< color modulate: dstRGB = srcRGB * dstRGB, dstA = dstA */ +#define SDL_BLENDMODE_MUL 0x00000008u /**< color multiply: dstRGB = (srcRGB * dstRGB) + (dstRGB * (1-srcA)), dstA = dstA */ +#define SDL_BLENDMODE_INVALID 0x7FFFFFFFu + +/** + * The blend operation used when combining source and destination pixel + * components. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_BlendOperation +{ + SDL_BLENDOPERATION_ADD = 0x1, /**< dst + src: supported by all renderers */ + SDL_BLENDOPERATION_SUBTRACT = 0x2, /**< src - dst : supported by D3D, OpenGL, OpenGLES, and Vulkan */ + SDL_BLENDOPERATION_REV_SUBTRACT = 0x3, /**< dst - src : supported by D3D, OpenGL, OpenGLES, and Vulkan */ + SDL_BLENDOPERATION_MINIMUM = 0x4, /**< min(dst, src) : supported by D3D, OpenGL, OpenGLES, and Vulkan */ + SDL_BLENDOPERATION_MAXIMUM = 0x5 /**< max(dst, src) : supported by D3D, OpenGL, OpenGLES, and Vulkan */ +} SDL_BlendOperation; + +/** + * The normalized factor used to multiply pixel components. + * + * The blend factors are multiplied with the pixels from a drawing operation + * (src) and the pixels from the render target (dst) before the blend + * operation. The comma-separated factors listed above are always applied in + * the component order red, green, blue, and alpha. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_BlendFactor +{ + SDL_BLENDFACTOR_ZERO = 0x1, /**< 0, 0, 0, 0 */ + SDL_BLENDFACTOR_ONE = 0x2, /**< 1, 1, 1, 1 */ + SDL_BLENDFACTOR_SRC_COLOR = 0x3, /**< srcR, srcG, srcB, srcA */ + SDL_BLENDFACTOR_ONE_MINUS_SRC_COLOR = 0x4, /**< 1-srcR, 1-srcG, 1-srcB, 1-srcA */ + SDL_BLENDFACTOR_SRC_ALPHA = 0x5, /**< srcA, srcA, srcA, srcA */ + SDL_BLENDFACTOR_ONE_MINUS_SRC_ALPHA = 0x6, /**< 1-srcA, 1-srcA, 1-srcA, 1-srcA */ + SDL_BLENDFACTOR_DST_COLOR = 0x7, /**< dstR, dstG, dstB, dstA */ + SDL_BLENDFACTOR_ONE_MINUS_DST_COLOR = 0x8, /**< 1-dstR, 1-dstG, 1-dstB, 1-dstA */ + SDL_BLENDFACTOR_DST_ALPHA = 0x9, /**< dstA, dstA, dstA, dstA */ + SDL_BLENDFACTOR_ONE_MINUS_DST_ALPHA = 0xA /**< 1-dstA, 1-dstA, 1-dstA, 1-dstA */ +} SDL_BlendFactor; + +/** + * Compose a custom blend mode for renderers. + * + * The functions SDL_SetRenderDrawBlendMode and SDL_SetTextureBlendMode accept + * the SDL_BlendMode returned by this function if the renderer supports it. + * + * A blend mode controls how the pixels from a drawing operation (source) get + * combined with the pixels from the render target (destination). First, the + * components of the source and destination pixels get multiplied with their + * blend factors. Then, the blend operation takes the two products and + * calculates the result that will get stored in the render target. + * + * Expressed in pseudocode, it would look like this: + * + * ```c + * dstRGB = colorOperation(srcRGB * srcColorFactor, dstRGB * dstColorFactor); + * dstA = alphaOperation(srcA * srcAlphaFactor, dstA * dstAlphaFactor); + * ``` + * + * Where the functions `colorOperation(src, dst)` and `alphaOperation(src, + * dst)` can return one of the following: + * + * - `src + dst` + * - `src - dst` + * - `dst - src` + * - `min(src, dst)` + * - `max(src, dst)` + * + * The red, green, and blue components are always multiplied with the first, + * second, and third components of the SDL_BlendFactor, respectively. The + * fourth component is not used. + * + * The alpha component is always multiplied with the fourth component of the + * SDL_BlendFactor. The other components are not used in the alpha + * calculation. + * + * Support for these blend modes varies for each renderer. To check if a + * specific SDL_BlendMode is supported, create a renderer and pass it to + * either SDL_SetRenderDrawBlendMode or SDL_SetTextureBlendMode. They will + * return with an error if the blend mode is not supported. + * + * This list describes the support of custom blend modes for each renderer. + * All renderers support the four blend modes listed in the SDL_BlendMode + * enumeration. + * + * - **direct3d**: Supports all operations with all factors. However, some + * factors produce unexpected results with `SDL_BLENDOPERATION_MINIMUM` and + * `SDL_BLENDOPERATION_MAXIMUM`. + * - **direct3d11**: Same as Direct3D 9. + * - **opengl**: Supports the `SDL_BLENDOPERATION_ADD` operation with all + * factors. OpenGL versions 1.1, 1.2, and 1.3 do not work correctly here. + * - **opengles2**: Supports the `SDL_BLENDOPERATION_ADD`, + * `SDL_BLENDOPERATION_SUBTRACT`, `SDL_BLENDOPERATION_REV_SUBTRACT` + * operations with all factors. + * - **psp**: No custom blend mode support. + * - **software**: No custom blend mode support. + * + * Some renderers do not provide an alpha component for the default render + * target. The `SDL_BLENDFACTOR_DST_ALPHA` and + * `SDL_BLENDFACTOR_ONE_MINUS_DST_ALPHA` factors do not have an effect in this + * case. + * + * \param srcColorFactor the SDL_BlendFactor applied to the red, green, and + * blue components of the source pixels. + * \param dstColorFactor the SDL_BlendFactor applied to the red, green, and + * blue components of the destination pixels. + * \param colorOperation the SDL_BlendOperation used to combine the red, + * green, and blue components of the source and + * destination pixels. + * \param srcAlphaFactor the SDL_BlendFactor applied to the alpha component of + * the source pixels. + * \param dstAlphaFactor the SDL_BlendFactor applied to the alpha component of + * the destination pixels. + * \param alphaOperation the SDL_BlendOperation used to combine the alpha + * component of the source and destination pixels. + * \returns an SDL_BlendMode that represents the chosen factors and + * operations. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawBlendMode + * \sa SDL_GetRenderDrawBlendMode + * \sa SDL_SetTextureBlendMode + * \sa SDL_GetTextureBlendMode + */ +extern SDL_DECLSPEC SDL_BlendMode SDLCALL SDL_ComposeCustomBlendMode(SDL_BlendFactor srcColorFactor, + SDL_BlendFactor dstColorFactor, + SDL_BlendOperation colorOperation, + SDL_BlendFactor srcAlphaFactor, + SDL_BlendFactor dstAlphaFactor, + SDL_BlendOperation alphaOperation); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_blendmode_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_camera.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_camera.h new file mode 100644 index 0000000..5f3911f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_camera.h @@ -0,0 +1,519 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryCamera + * + * Video capture for the SDL library. + * + * This API lets apps read input from video sources, like webcams. Camera + * devices can be enumerated, queried, and opened. Once opened, it will + * provide SDL_Surface objects as new frames of video come in. These surfaces + * can be uploaded to an SDL_Texture or processed as pixels in memory. + * + * Several platforms will alert the user if an app tries to access a camera, + * and some will present a UI asking the user if your application should be + * allowed to obtain images at all, which they can deny. A successfully opened + * camera will not provide images until permission is granted. Applications, + * after opening a camera device, can see if they were granted access by + * either polling with the SDL_GetCameraPermissionState() function, or waiting + * for an SDL_EVENT_CAMERA_DEVICE_APPROVED or SDL_EVENT_CAMERA_DEVICE_DENIED + * event. Platforms that don't have any user approval process will report + * approval immediately. + * + * Note that SDL cameras only provide video as individual frames; they will + * not provide full-motion video encoded in a movie file format, although an + * app is free to encode the acquired frames into any format it likes. It also + * does not provide audio from the camera hardware through this API; not only + * do many webcams not have microphones at all, many people--from streamers to + * people on Zoom calls--will want to use a separate microphone regardless of + * the camera. In any case, recorded audio will be available through SDL's + * audio API no matter what hardware provides the microphone. + * + * ## Camera gotchas + * + * Consumer-level camera hardware tends to take a little while to warm up, + * once the device has been opened. Generally most camera apps have some sort + * of UI to take a picture (a button to snap a pic while a preview is showing, + * some sort of multi-second countdown for the user to pose, like a photo + * booth), which puts control in the users' hands, or they are intended to + * stay on for long times (Pokemon Go, etc). + * + * It's not uncommon that a newly-opened camera will provide a couple of + * completely black frames, maybe followed by some under-exposed images. If + * taking a single frame automatically, or recording video from a camera's + * input without the user initiating it from a preview, it could be wise to + * drop the first several frames (if not the first several _seconds_ worth of + * frames!) before using images from a camera. + */ + +#ifndef SDL_camera_h_ +#define SDL_camera_h_ + +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a camera device for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the device is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + */ +typedef Uint32 SDL_CameraID; + +/** + * The opaque structure used to identify an opened SDL camera. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Camera SDL_Camera; + +/** + * The details of an output format for a camera device. + * + * Cameras often support multiple formats; each one will be encapsulated in + * this struct. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetCameraSupportedFormats + * \sa SDL_GetCameraFormat + */ +typedef struct SDL_CameraSpec +{ + SDL_PixelFormat format; /**< Frame format */ + SDL_Colorspace colorspace; /**< Frame colorspace */ + int width; /**< Frame width */ + int height; /**< Frame height */ + int framerate_numerator; /**< Frame rate numerator ((num / denom) == FPS, (denom / num) == duration in seconds) */ + int framerate_denominator; /**< Frame rate demoninator ((num / denom) == FPS, (denom / num) == duration in seconds) */ +} SDL_CameraSpec; + +/** + * The position of camera in relation to system device. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetCameraPosition + */ +typedef enum SDL_CameraPosition +{ + SDL_CAMERA_POSITION_UNKNOWN, + SDL_CAMERA_POSITION_FRONT_FACING, + SDL_CAMERA_POSITION_BACK_FACING +} SDL_CameraPosition; + + +/** + * Use this function to get the number of built-in camera drivers. + * + * This function returns a hardcoded number. This never returns a negative + * value; if there are no drivers compiled into this build of SDL, this + * function returns zero. The presence of a driver in this list does not mean + * it will function, it just means SDL is capable of interacting with that + * interface. For example, a build of SDL might have v4l2 support, but if + * there's no kernel support available, SDL's v4l2 driver would fail if used. + * + * By default, SDL tries all drivers, in its preferred order, until one is + * found to be usable. + * + * \returns the number of built-in camera drivers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameraDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumCameraDrivers(void); + +/** + * Use this function to get the name of a built in camera driver. + * + * The list of camera drivers is given in the order that they are normally + * initialized by default; the drivers that seem more reasonable to choose + * first (as far as the SDL developers believe) are earlier in the list. + * + * The names of drivers are all simple, low-ASCII identifiers, like "v4l2", + * "coremedia" or "android". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of the camera driver; the value ranges from 0 to + * SDL_GetNumCameraDrivers() - 1. + * \returns the name of the camera driver at the requested index, or NULL if + * an invalid index was specified. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumCameraDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCameraDriver(int index); + +/** + * Get the name of the current camera driver. + * + * The names of drivers are all simple, low-ASCII identifiers, like "v4l2", + * "coremedia" or "android". These never have Unicode characters, and are not + * meant to be proper names. + * + * \returns the name of the current camera driver or NULL if no driver has + * been initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCurrentCameraDriver(void); + +/** + * Get a list of currently connected camera devices. + * + * \param count a pointer filled in with the number of cameras returned, may + * be NULL. + * \returns a 0 terminated array of camera instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC SDL_CameraID * SDLCALL SDL_GetCameras(int *count); + +/** + * Get the list of native formats/sizes a camera supports. + * + * This returns a list of all formats and frame sizes that a specific camera + * can offer. This is useful if your app can accept a variety of image formats + * and sizes and so want to find the optimal spec that doesn't require + * conversion. + * + * This function isn't strictly required; if you call SDL_OpenCamera with a + * NULL spec, SDL will choose a native format for you, and if you instead + * specify a desired format, it will transparently convert to the requested + * format on your behalf. + * + * If `count` is not NULL, it will be filled with the number of elements in + * the returned array. + * + * Note that it's legal for a camera to supply an empty list. This is what + * will happen on Emscripten builds, since that platform won't tell _anything_ + * about available cameras until you've opened one, and won't even tell if + * there _is_ a camera until the user has given you permission to check + * through a scary warning popup. + * + * \param instance_id the camera device instance ID. + * \param count a pointer filled in with the number of elements in the list, + * may be NULL. + * \returns a NULL terminated array of pointers to SDL_CameraSpec or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC SDL_CameraSpec ** SDLCALL SDL_GetCameraSupportedFormats(SDL_CameraID instance_id, int *count); + +/** + * Get the human-readable device name for a camera. + * + * \param instance_id the camera device instance ID. + * \returns a human-readable device name or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCameraName(SDL_CameraID instance_id); + +/** + * Get the position of the camera in relation to the system. + * + * Most platforms will report UNKNOWN, but mobile devices, like phones, can + * often make a distinction between cameras on the front of the device (that + * points towards the user, for taking "selfies") and cameras on the back (for + * filming in the direction the user is facing). + * + * \param instance_id the camera device instance ID. + * \returns the position of the camera on the system hardware. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + */ +extern SDL_DECLSPEC SDL_CameraPosition SDLCALL SDL_GetCameraPosition(SDL_CameraID instance_id); + +/** + * Open a video recording device (a "camera"). + * + * You can open the device with any reasonable spec, and if the hardware can't + * directly support it, it will convert data seamlessly to the requested + * format. This might incur overhead, including scaling of image data. + * + * If you would rather accept whatever format the device offers, you can pass + * a NULL spec here and it will choose one for you (and you can use + * SDL_Surface's conversion/scaling functions directly if necessary). + * + * You can call SDL_GetCameraFormat() to get the actual data format if passing + * a NULL spec here. You can see the exact specs a device can support without + * conversion with SDL_GetCameraSupportedFormats(). + * + * SDL will not attempt to emulate framerate; it will try to set the hardware + * to the rate closest to the requested speed, but it won't attempt to limit + * or duplicate frames artificially; call SDL_GetCameraFormat() to see the + * actual framerate of the opened the device, and check your timestamps if + * this is crucial to your app! + * + * Note that the camera is not usable until the user approves its use! On some + * platforms, the operating system will prompt the user to permit access to + * the camera, and they can choose Yes or No at that point. Until they do, the + * camera will not be usable. The app should either wait for an + * SDL_EVENT_CAMERA_DEVICE_APPROVED (or SDL_EVENT_CAMERA_DEVICE_DENIED) event, + * or poll SDL_GetCameraPermissionState() occasionally until it returns + * non-zero. On platforms that don't require explicit user approval (and + * perhaps in places where the user previously permitted access), the approval + * event might come immediately, but it might come seconds, minutes, or hours + * later! + * + * \param instance_id the camera device instance ID. + * \param spec the desired format for data the device will provide. Can be + * NULL. + * \returns an SDL_Camera object or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + * \sa SDL_GetCameraFormat + */ +extern SDL_DECLSPEC SDL_Camera * SDLCALL SDL_OpenCamera(SDL_CameraID instance_id, const SDL_CameraSpec *spec); + +/** + * Query if camera access has been approved by the user. + * + * Cameras will not function between when the device is opened by the app and + * when the user permits access to the hardware. On some platforms, this + * presents as a popup dialog where the user has to explicitly approve access; + * on others the approval might be implicit and not alert the user at all. + * + * This function can be used to check the status of that approval. It will + * return 0 if still waiting for user response, 1 if the camera is approved + * for use, and -1 if the user denied access. + * + * Instead of polling with this function, you can wait for a + * SDL_EVENT_CAMERA_DEVICE_APPROVED (or SDL_EVENT_CAMERA_DEVICE_DENIED) event + * in the standard SDL event loop, which is guaranteed to be sent once when + * permission to use the camera is decided. + * + * If a camera is declined, there's nothing to be done but call + * SDL_CloseCamera() to dispose of it. + * + * \param camera the opened camera device to query. + * \returns -1 if user denied access to the camera, 1 if user approved access, + * 0 if no decision has been made yet. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + * \sa SDL_CloseCamera + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetCameraPermissionState(SDL_Camera *camera); + +/** + * Get the instance ID of an opened camera. + * + * \param camera an SDL_Camera to query. + * \returns the instance ID of the specified camera on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC SDL_CameraID SDLCALL SDL_GetCameraID(SDL_Camera *camera); + +/** + * Get the properties associated with an opened camera. + * + * \param camera the SDL_Camera obtained from SDL_OpenCamera(). + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetCameraProperties(SDL_Camera *camera); + +/** + * Get the spec that a camera is using when generating images. + * + * Note that this might not be the native format of the hardware, as SDL might + * be converting to this format behind the scenes. + * + * If the system is waiting for the user to approve access to the camera, as + * some platforms require, this will return false, but this isn't necessarily + * a fatal error; you should either wait for an + * SDL_EVENT_CAMERA_DEVICE_APPROVED (or SDL_EVENT_CAMERA_DEVICE_DENIED) event, + * or poll SDL_GetCameraPermissionState() occasionally until it returns + * non-zero. + * + * \param camera opened camera device. + * \param spec the SDL_CameraSpec to be initialized by this function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetCameraFormat(SDL_Camera *camera, SDL_CameraSpec *spec); + +/** + * Acquire a frame. + * + * The frame is a memory pointer to the image data, whose size and format are + * given by the spec requested when opening the device. + * + * This is a non blocking API. If there is a frame available, a non-NULL + * surface is returned, and timestampNS will be filled with a non-zero value. + * + * Note that an error case can also return NULL, but a NULL by itself is + * normal and just signifies that a new frame is not yet available. Note that + * even if a camera device fails outright (a USB camera is unplugged while in + * use, etc), SDL will send an event separately to notify the app, but + * continue to provide blank frames at ongoing intervals until + * SDL_CloseCamera() is called, so real failure here is almost always an out + * of memory condition. + * + * After use, the frame should be released with SDL_ReleaseCameraFrame(). If + * you don't do this, the system may stop providing more video! + * + * Do not call SDL_DestroySurface() on the returned surface! It must be given + * back to the camera subsystem with SDL_ReleaseCameraFrame! + * + * If the system is waiting for the user to approve access to the camera, as + * some platforms require, this will return NULL (no frames available); you + * should either wait for an SDL_EVENT_CAMERA_DEVICE_APPROVED (or + * SDL_EVENT_CAMERA_DEVICE_DENIED) event, or poll + * SDL_GetCameraPermissionState() occasionally until it returns non-zero. + * + * \param camera opened camera device. + * \param timestampNS a pointer filled in with the frame's timestamp, or 0 on + * error. Can be NULL. + * \returns a new frame of video on success, NULL if none is currently + * available. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ReleaseCameraFrame + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_AcquireCameraFrame(SDL_Camera *camera, Uint64 *timestampNS); + +/** + * Release a frame of video acquired from a camera. + * + * Let the back-end re-use the internal buffer for camera. + * + * This function _must_ be called only on surface objects returned by + * SDL_AcquireCameraFrame(). This function should be called as quickly as + * possible after acquisition, as SDL keeps a small FIFO queue of surfaces for + * video frames; if surfaces aren't released in a timely manner, SDL may drop + * upcoming video frames from the camera. + * + * If the app needs to keep the surface for a significant time, they should + * make a copy of it and release the original. + * + * The app should not use the surface again after calling this function; + * assume the surface is freed and the pointer is invalid. + * + * \param camera opened camera device. + * \param frame the video frame surface to release. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireCameraFrame + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseCameraFrame(SDL_Camera *camera, SDL_Surface *frame); + +/** + * Use this function to shut down camera processing and close the camera + * device. + * + * \param camera opened camera device. + * + * \threadsafety It is safe to call this function from any thread, but no + * thread may reference `device` once this function is called. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseCamera(SDL_Camera *camera); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_camera_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_clipboard.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_clipboard.h new file mode 100644 index 0000000..3ca56a4 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_clipboard.h @@ -0,0 +1,331 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryClipboard + * + * SDL provides access to the system clipboard, both for reading information + * from other processes and publishing information of its own. + * + * This is not just text! SDL apps can access and publish data by mimetype. + * + * ## Basic use (text) + * + * Obtaining and publishing simple text to the system clipboard is as easy as + * calling SDL_GetClipboardText() and SDL_SetClipboardText(), respectively. + * These deal with C strings in UTF-8 encoding. Data transmission and encoding + * conversion is completely managed by SDL. + * + * ## Clipboard callbacks (data other than text) + * + * Things get more complicated when the clipboard contains something other + * than text. Not only can the system clipboard contain data of any type, in + * some cases it can contain the same data in different formats! For example, + * an image painting app might let the user copy a graphic to the clipboard, + * and offers it in .BMP, .JPG, or .PNG format for other apps to consume. + * + * Obtaining clipboard data ("pasting") like this is a matter of calling + * SDL_GetClipboardData() and telling it the mimetype of the data you want. + * But how does one know if that format is available? SDL_HasClipboardData() + * can report if a specific mimetype is offered, and + * SDL_GetClipboardMimeTypes() can provide the entire list of mimetypes + * available, so the app can decide what to do with the data and what formats + * it can support. + * + * Setting the clipboard ("copying") to arbitrary data is done with + * SDL_SetClipboardData. The app does not provide the data in this call, but + * rather the mimetypes it is willing to provide and a callback function. + * During the callback, the app will generate the data. This allows massive + * data sets to be provided to the clipboard, without any data being copied + * before it is explicitly requested. More specifically, it allows an app to + * offer data in multiple formats without providing a copy of all of them + * upfront. If the app has an image that it could provide in PNG or JPG + * format, it doesn't have to encode it to either of those unless and until + * something tries to paste it. + * + * ## Primary Selection + * + * The X11 and Wayland video targets have a concept of the "primary selection" + * in addition to the usual clipboard. This is generally highlighted (but not + * explicitly copied) text from various apps. SDL offers APIs for this through + * SDL_GetPrimarySelectionText() and SDL_SetPrimarySelectionText(). SDL offers + * these APIs on platforms without this concept, too, but only so far that it + * will keep a copy of a string that the app sets for later retrieval; the + * operating system will not ever attempt to change the string externally if + * it doesn't support a primary selection. + */ + +#ifndef SDL_clipboard_h_ +#define SDL_clipboard_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Function prototypes */ + +/** + * Put UTF-8 text into the clipboard. + * + * \param text the text to store in the clipboard. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetClipboardText + * \sa SDL_HasClipboardText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetClipboardText(const char *text); + +/** + * Get UTF-8 text from the clipboard. + * + * This function returns an empty string if there is not enough memory left + * for a copy of the clipboard's content. + * + * \returns the clipboard text on success or an empty string on failure; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasClipboardText + * \sa SDL_SetClipboardText + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetClipboardText(void); + +/** + * Query whether the clipboard exists and contains a non-empty text string. + * + * \returns true if the clipboard has text, or false if it does not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetClipboardText + * \sa SDL_SetClipboardText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasClipboardText(void); + +/** + * Put UTF-8 text into the primary selection. + * + * \param text the text to store in the primary selection. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPrimarySelectionText + * \sa SDL_HasPrimarySelectionText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPrimarySelectionText(const char *text); + +/** + * Get UTF-8 text from the primary selection. + * + * This function returns an empty string if there is not enough memory left + * for a copy of the primary selection's content. + * + * \returns the primary selection text on success or an empty string on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasPrimarySelectionText + * \sa SDL_SetPrimarySelectionText + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetPrimarySelectionText(void); + +/** + * Query whether the primary selection exists and contains a non-empty text + * string. + * + * \returns true if the primary selection has text, or false if it does not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPrimarySelectionText + * \sa SDL_SetPrimarySelectionText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasPrimarySelectionText(void); + +/** + * Callback function that will be called when data for the specified mime-type + * is requested by the OS. + * + * The callback function is called with NULL as the mime_type when the + * clipboard is cleared or new data is set. The clipboard is automatically + * cleared in SDL_Quit(). + * + * \param userdata a pointer to the provided user data. + * \param mime_type the requested mime-type. + * \param size a pointer filled in with the length of the returned data. + * \returns a pointer to the data for the provided mime-type. Returning NULL + * or setting the length to 0 will cause no data to be sent to the + * "receiver". It is up to the receiver to handle this. Essentially + * returning no data is more or less undefined behavior and may cause + * breakage in receiving applications. The returned data will not be + * freed, so it needs to be retained and dealt with internally. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +typedef const void *(SDLCALL *SDL_ClipboardDataCallback)(void *userdata, const char *mime_type, size_t *size); + +/** + * Callback function that will be called when the clipboard is cleared, or when new + * data is set. + * + * \param userdata a pointer to the provided user data. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +typedef void (SDLCALL *SDL_ClipboardCleanupCallback)(void *userdata); + +/** + * Offer clipboard data to the OS. + * + * Tell the operating system that the application is offering clipboard data + * for each of the provided mime-types. Once another application requests the + * data the callback function will be called, allowing it to generate and + * respond with the data for the requested mime-type. + * + * The size of text data does not include any terminator, and the text does + * not need to be null-terminated (e.g., you can directly copy a portion of a + * document). + * + * \param callback a function pointer to the function that provides the + * clipboard data. + * \param cleanup a function pointer to the function that cleans up the + * clipboard data. + * \param userdata an opaque pointer that will be forwarded to the callbacks. + * \param mime_types a list of mime-types that are being offered. SDL copies the given list. + * \param num_mime_types the number of mime-types in the mime_types list. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearClipboardData + * \sa SDL_GetClipboardData + * \sa SDL_HasClipboardData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetClipboardData(SDL_ClipboardDataCallback callback, SDL_ClipboardCleanupCallback cleanup, void *userdata, const char **mime_types, size_t num_mime_types); + +/** + * Clear the clipboard data. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearClipboardData(void); + +/** + * Get the data from the clipboard for a given mime type. + * + * The size of text data does not include the terminator, but the text is + * guaranteed to be null-terminated. + * + * \param mime_type the mime type to read from the clipboard. + * \param size a pointer filled in with the length of the returned data. + * \returns the retrieved data buffer or NULL on failure; call SDL_GetError() + * for more information. This should be freed with SDL_free() when it + * is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasClipboardData + * \sa SDL_SetClipboardData + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetClipboardData(const char *mime_type, size_t *size); + +/** + * Query whether there is data in the clipboard for the provided mime type. + * + * \param mime_type the mime type to check for data. + * \returns true if data exists in the clipboard for the provided mime type, + * false if it does not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + * \sa SDL_GetClipboardData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasClipboardData(const char *mime_type); + +/** + * Retrieve the list of mime types available in the clipboard. + * + * \param num_mime_types a pointer filled with the number of mime types, may + * be NULL. + * \returns a null-terminated array of strings with mime types, or NULL on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GetClipboardMimeTypes(size_t *num_mime_types); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_clipboard_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_close_code.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_close_code.h new file mode 100644 index 0000000..da1dea7 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_close_code.h @@ -0,0 +1,41 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This file reverses the effects of SDL_begin_code.h and should be included + * after you finish any function and structure declarations in your headers. + * + * SDL's headers use this; applications generally should not include this + * header directly. + */ + +#ifndef SDL_begin_code_h +#error SDL_close_code.h included without matching SDL_begin_code.h +#endif +#undef SDL_begin_code_h + +/* Reset structure packing at previous byte alignment */ +#if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__) +#ifdef __BORLANDC__ +#pragma nopackwarning +#endif +#pragma pack(pop) +#endif /* Compiler needs structure packing set */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_copying.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_copying.h new file mode 100644 index 0000000..747bd35 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_copying.h @@ -0,0 +1,22 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* Header file containing SDL's license. */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_cpuinfo.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_cpuinfo.h new file mode 100644 index 0000000..1745bd9 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_cpuinfo.h @@ -0,0 +1,353 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: CPUInfo */ + +/** + * # CategoryCPUInfo + * + * CPU feature detection for SDL. + * + * These functions are largely concerned with reporting if the system has + * access to various SIMD instruction sets, but also has other important info + * to share, such as system RAM size and number of logical CPU cores. + * + * CPU instruction set checks, like SDL_HasSSE() and SDL_HasNEON(), are + * available on all platforms, even if they don't make sense (an ARM processor + * will never have SSE and an x86 processor will never have NEON, for example, + * but these functions still exist and will simply return false in these + * cases). + */ + +#ifndef SDL_cpuinfo_h_ +#define SDL_cpuinfo_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A guess for the cacheline size used for padding. + * + * Most x86 processors have a 64 byte cache line. The 64-bit PowerPC + * processors have a 128 byte cache line. We use the larger value to be + * generally safe. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CACHELINE_SIZE 128 + +/** + * Get the number of logical CPU cores available. + * + * \returns the total number of logical CPU cores. On CPUs that include + * technologies such as hyperthreading, the number of logical cores + * may be more than the number of physical cores. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumLogicalCPUCores(void); + +/** + * Determine the L1 cache line size of the CPU. + * + * This is useful for determining multi-threaded structure padding or SIMD + * prefetch sizes. + * + * \returns the L1 cache line size of the CPU, in bytes. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetCPUCacheLineSize(void); + +/** + * Determine whether the CPU has AltiVec features. + * + * This always returns false on CPUs that aren't using PowerPC instruction + * sets. + * + * \returns true if the CPU has AltiVec features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAltiVec(void); + +/** + * Determine whether the CPU has MMX features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has MMX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasMMX(void); + +/** + * Determine whether the CPU has SSE features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE41 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE(void); + +/** + * Determine whether the CPU has SSE2 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE2 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE41 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE2(void); + +/** + * Determine whether the CPU has SSE3 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE3 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE41 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE3(void); + +/** + * Determine whether the CPU has SSE4.1 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE4.1 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE41(void); + +/** + * Determine whether the CPU has SSE4.2 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE4.2 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE41 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE42(void); + +/** + * Determine whether the CPU has AVX features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has AVX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasAVX2 + * \sa SDL_HasAVX512F + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAVX(void); + +/** + * Determine whether the CPU has AVX2 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has AVX2 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasAVX + * \sa SDL_HasAVX512F + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAVX2(void); + +/** + * Determine whether the CPU has AVX-512F (foundation) features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has AVX-512F features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasAVX + * \sa SDL_HasAVX2 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAVX512F(void); + +/** + * Determine whether the CPU has ARM SIMD (ARMv6) features. + * + * This is different from ARM NEON, which is a different instruction set. + * + * This always returns false on CPUs that aren't using ARM instruction sets. + * + * \returns true if the CPU has ARM SIMD features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasNEON + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasARMSIMD(void); + +/** + * Determine whether the CPU has NEON (ARM SIMD) features. + * + * This always returns false on CPUs that aren't using ARM instruction sets. + * + * \returns true if the CPU has ARM NEON features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasNEON(void); + +/** + * Determine whether the CPU has LSX (LOONGARCH SIMD) features. + * + * This always returns false on CPUs that aren't using LOONGARCH instruction + * sets. + * + * \returns true if the CPU has LOONGARCH LSX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasLSX(void); + +/** + * Determine whether the CPU has LASX (LOONGARCH SIMD) features. + * + * This always returns false on CPUs that aren't using LOONGARCH instruction + * sets. + * + * \returns true if the CPU has LOONGARCH LASX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasLASX(void); + +/** + * Get the amount of RAM configured in the system. + * + * \returns the amount of RAM configured in the system in MiB. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSystemRAM(void); + +/** + * Report the alignment this system needs for SIMD allocations. + * + * This will return the minimum number of bytes to which a pointer must be + * aligned to be compatible with SIMD instructions on the current machine. For + * example, if the machine supports SSE only, it will return 16, but if it + * supports AVX-512F, it'll return 64 (etc). This only reports values for + * instruction sets SDL knows about, so if your SDL build doesn't have + * SDL_HasAVX512F(), then it might return 16 for the SSE support it sees and + * not 64 for the AVX-512 instructions that exist but SDL doesn't know about. + * Plan accordingly. + * + * \returns the alignment in bytes needed for available, known SIMD + * instructions. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_aligned_alloc + * \sa SDL_aligned_free + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_GetSIMDAlignment(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_cpuinfo_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_dialog.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_dialog.h new file mode 100644 index 0000000..ddb9e24 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_dialog.h @@ -0,0 +1,341 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryDialog + * + * File dialog support. + * + * SDL offers file dialogs, to let users select files with native GUI + * interfaces. There are "open" dialogs, "save" dialogs, and folder selection + * dialogs. The app can control some details, such as filtering to specific + * files, or whether multiple files can be selected by the user. + * + * Note that launching a file dialog is a non-blocking operation; control + * returns to the app immediately, and a callback is called later (possibly in + * another thread) when the user makes a choice. + */ + +#ifndef SDL_dialog_h_ +#define SDL_dialog_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An entry for filters for file dialogs. + * + * `name` is a user-readable label for the filter (for example, "Office + * document"). + * + * `pattern` is a semicolon-separated list of file extensions (for example, + * "doc;docx"). File extensions may only contain alphanumeric characters, + * hyphens, underscores and periods. Alternatively, the whole string can be a + * single asterisk ("*"), which serves as an "All files" filter. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +typedef struct SDL_DialogFileFilter +{ + const char *name; + const char *pattern; +} SDL_DialogFileFilter; + +/** + * Callback used by file dialog functions. + * + * The specific usage is described in each function. + * + * If `filelist` is: + * + * - NULL, an error occurred. Details can be obtained with SDL_GetError(). + * - A pointer to NULL, the user either didn't choose any file or canceled the + * dialog. + * - A pointer to non-`NULL`, the user chose one or more files. The argument + * is a null-terminated array of pointers to UTF-8 encoded strings, each + * containing a path. + * + * The filelist argument should not be freed; it will automatically be freed + * when the callback returns. + * + * The filter argument is the index of the filter that was selected, or -1 if + * no filter was selected or if the platform or method doesn't support + * fetching the selected filter. + * + * In Android, the `filelist` are `content://` URIs. They should be opened + * using SDL_IOFromFile() with appropriate modes. This applies both to open + * and save file dialog. + * + * \param userdata an app-provided pointer, for the callback's use. + * \param filelist the file(s) chosen by the user. + * \param filter index of the selected filter. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_DialogFileFilter + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +typedef void (SDLCALL *SDL_DialogFileCallback)(void *userdata, const char * const *filelist, int filter); + +/** + * Displays a dialog that lets the user select a file on their filesystem. + * + * This is an asynchronous function; it will return immediately, and the + * result will be passed to the callback. + * + * The callback will be invoked with a null-terminated list of files the user + * chose. The list will be empty if the user canceled the dialog, and it will + * be NULL if an error occurred. + * + * Note that the callback may be called from a different thread than the one + * the function was invoked on. + * + * Depending on the platform, the user may be allowed to input paths that + * don't yet exist. + * + * On Linux, dialogs may require XDG Portals, which requires DBus, which + * requires an event-handling loop. Apps that do not use SDL to handle events + * should add a call to SDL_PumpEvents in their main loop. + * + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param window the window that the dialog should be modal for, may be NULL. + * Not all platforms support this option. + * \param filters a list of filters, may be NULL. Not all platforms support + * this option, and platforms that do support it may allow the + * user to ignore the filters. If non-NULL, it must remain + * valid at least until the callback is invoked. + * \param nfilters the number of filters. Ignored if filters is NULL. + * \param default_location the default folder or file to start the dialog at, + * may be NULL. Not all platforms support this option. + * \param allow_many if non-zero, the user will be allowed to select multiple + * entries. Not all platforms support this option. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_DialogFileFilter + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowOpenFileDialog(SDL_DialogFileCallback callback, void *userdata, SDL_Window *window, const SDL_DialogFileFilter *filters, int nfilters, const char *default_location, bool allow_many); + +/** + * Displays a dialog that lets the user choose a new or existing file on their + * filesystem. + * + * This is an asynchronous function; it will return immediately, and the + * result will be passed to the callback. + * + * The callback will be invoked with a null-terminated list of files the user + * chose. The list will be empty if the user canceled the dialog, and it will + * be NULL if an error occurred. + * + * Note that the callback may be called from a different thread than the one + * the function was invoked on. + * + * The chosen file may or may not already exist. + * + * On Linux, dialogs may require XDG Portals, which requires DBus, which + * requires an event-handling loop. Apps that do not use SDL to handle events + * should add a call to SDL_PumpEvents in their main loop. + * + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param window the window that the dialog should be modal for, may be NULL. + * Not all platforms support this option. + * \param filters a list of filters, may be NULL. Not all platforms support + * this option, and platforms that do support it may allow the + * user to ignore the filters. If non-NULL, it must remain + * valid at least until the callback is invoked. + * \param nfilters the number of filters. Ignored if filters is NULL. + * \param default_location the default folder or file to start the dialog at, + * may be NULL. Not all platforms support this option. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_DialogFileFilter + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowSaveFileDialog(SDL_DialogFileCallback callback, void *userdata, SDL_Window *window, const SDL_DialogFileFilter *filters, int nfilters, const char *default_location); + +/** + * Displays a dialog that lets the user select a folder on their filesystem. + * + * This is an asynchronous function; it will return immediately, and the + * result will be passed to the callback. + * + * The callback will be invoked with a null-terminated list of files the user + * chose. The list will be empty if the user canceled the dialog, and it will + * be NULL if an error occurred. + * + * Note that the callback may be called from a different thread than the one + * the function was invoked on. + * + * Depending on the platform, the user may be allowed to input paths that + * don't yet exist. + * + * On Linux, dialogs may require XDG Portals, which requires DBus, which + * requires an event-handling loop. Apps that do not use SDL to handle events + * should add a call to SDL_PumpEvents in their main loop. + * + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param window the window that the dialog should be modal for, may be NULL. + * Not all platforms support this option. + * \param default_location the default folder or file to start the dialog at, + * may be NULL. Not all platforms support this option. + * \param allow_many if non-zero, the user will be allowed to select multiple + * entries. Not all platforms support this option. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowFileDialogWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowOpenFolderDialog(SDL_DialogFileCallback callback, void *userdata, SDL_Window *window, const char *default_location, bool allow_many); + +/** + * Various types of file dialogs. + * + * This is used by SDL_ShowFileDialogWithProperties() to decide what kind of + * dialog to present to the user. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_ShowFileDialogWithProperties + */ +typedef enum SDL_FileDialogType +{ + SDL_FILEDIALOG_OPENFILE, + SDL_FILEDIALOG_SAVEFILE, + SDL_FILEDIALOG_OPENFOLDER +} SDL_FileDialogType; + +/** + * Create and launch a file dialog with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_FILE_DIALOG_FILTERS_POINTER`: a pointer to a list of + * SDL_DialogFileFilter structs, which will be used as filters for + * file-based selections. Ignored if the dialog is an "Open Folder" dialog. + * If non-NULL, the array of filters must remain valid at least until the + * callback is invoked. + * - `SDL_PROP_FILE_DIALOG_NFILTERS_NUMBER`: the number of filters in the + * array of filters, if it exists. + * - `SDL_PROP_FILE_DIALOG_WINDOW_POINTER`: the window that the dialog should + * be modal for. + * - `SDL_PROP_FILE_DIALOG_LOCATION_STRING`: the default folder or file to + * start the dialog at. + * - `SDL_PROP_FILE_DIALOG_MANY_BOOLEAN`: true to allow the user to select + * more than one entry. + * - `SDL_PROP_FILE_DIALOG_TITLE_STRING`: the title for the dialog. + * - `SDL_PROP_FILE_DIALOG_ACCEPT_STRING`: the label that the accept button + * should have. + * - `SDL_PROP_FILE_DIALOG_CANCEL_STRING`: the label that the cancel button + * should have. + * + * Note that each platform may or may not support any of the properties. + * + * \param type the type of file dialog. + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param props the properties to use. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FileDialogType + * \sa SDL_DialogFileCallback + * \sa SDL_DialogFileFilter + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowFileDialogWithProperties(SDL_FileDialogType type, SDL_DialogFileCallback callback, void *userdata, SDL_PropertiesID props); + +#define SDL_PROP_FILE_DIALOG_FILTERS_POINTER "SDL.filedialog.filters" +#define SDL_PROP_FILE_DIALOG_NFILTERS_NUMBER "SDL.filedialog.nfilters" +#define SDL_PROP_FILE_DIALOG_WINDOW_POINTER "SDL.filedialog.window" +#define SDL_PROP_FILE_DIALOG_LOCATION_STRING "SDL.filedialog.location" +#define SDL_PROP_FILE_DIALOG_MANY_BOOLEAN "SDL.filedialog.many" +#define SDL_PROP_FILE_DIALOG_TITLE_STRING "SDL.filedialog.title" +#define SDL_PROP_FILE_DIALOG_ACCEPT_STRING "SDL.filedialog.accept" +#define SDL_PROP_FILE_DIALOG_CANCEL_STRING "SDL.filedialog.cancel" + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_dialog_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_egl.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_egl.h new file mode 100644 index 0000000..65d4e96 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_egl.h @@ -0,0 +1,2355 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the EGL API headers. + */ + +#include + +#if !defined(_MSC_VER) && !defined(SDL_PLATFORM_ANDROID) && !defined(SDL_USE_BUILTIN_OPENGL_DEFINITIONS) + +#if defined(SDL_PLATFORM_VITA) +#include +#include +#include +#endif + +#include +#include + +#else /* _MSC_VER */ + +/* EGL headers for Visual Studio */ + +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ + + +#ifndef __eglplatform_h_ +#define __eglplatform_h_ + +/* +** Copyright 2007-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +*/ + +/* Platform-specific types and definitions for egl.h + * + * Adopters may modify khrplatform.h and this file to suit their platform. + * You are encouraged to submit all modifications to the Khronos group so that + * they can be included in future versions of this file. Please submit changes + * by filing an issue or pull request on the public Khronos EGL Registry, at + * https://www.github.com/KhronosGroup/EGL-Registry/ + */ + +/*#include */ + +/* Macros used in EGL function prototype declarations. + * + * EGL functions should be prototyped as: + * + * EGLAPI return-type EGLAPIENTRY eglFunction(arguments); + * typedef return-type (EXPAPIENTRYP PFNEGLFUNCTIONPROC) (arguments); + * + * KHRONOS_APICALL and KHRONOS_APIENTRY are defined in KHR/khrplatform.h + */ + +#ifndef EGLAPI +#define EGLAPI KHRONOS_APICALL +#endif + +#ifndef EGLAPIENTRY +#define EGLAPIENTRY KHRONOS_APIENTRY +#endif +#define EGLAPIENTRYP EGLAPIENTRY* + +/* The types NativeDisplayType, NativeWindowType, and NativePixmapType + * are aliases of window-system-dependent types, such as X Display * or + * Windows Device Context. They must be defined in platform-specific + * code below. The EGL-prefixed versions of Native*Type are the same + * types, renamed in EGL 1.3 so all types in the API start with "EGL". + * + * Khronos STRONGLY RECOMMENDS that you use the default definitions + * provided below, since these changes affect both binary and source + * portability of applications using EGL running on different EGL + * implementations. + */ + +#if defined(EGL_NO_PLATFORM_SPECIFIC_TYPES) + +typedef void *EGLNativeDisplayType; +typedef void *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(_WIN32) || defined(__VC32__) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) /* Win32 and WinCE */ +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN 1 +#endif +#include + +typedef HDC EGLNativeDisplayType; +typedef HBITMAP EGLNativePixmapType; +typedef HWND EGLNativeWindowType; + +#elif defined(SDL_PLATFORM_EMSCRIPTEN) + +typedef int EGLNativeDisplayType; +typedef int EGLNativePixmapType; +typedef int EGLNativeWindowType; + +#elif defined(__WINSCW__) || defined(__SYMBIAN32__) /* Symbian */ + +typedef int EGLNativeDisplayType; +typedef void *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(WL_EGL_PLATFORM) + +typedef struct wl_display *EGLNativeDisplayType; +typedef struct wl_egl_pixmap *EGLNativePixmapType; +typedef struct wl_egl_window *EGLNativeWindowType; + +#elif defined(__GBM__) + +typedef struct gbm_device *EGLNativeDisplayType; +typedef struct gbm_bo *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(__ANDROID__) || defined(ANDROID) + +struct ANativeWindow; +struct egl_native_pixmap_t; + +typedef void* EGLNativeDisplayType; +typedef struct egl_native_pixmap_t* EGLNativePixmapType; +typedef struct ANativeWindow* EGLNativeWindowType; + +#elif defined(USE_OZONE) + +typedef intptr_t EGLNativeDisplayType; +typedef intptr_t EGLNativePixmapType; +typedef intptr_t EGLNativeWindowType; + +#elif defined(USE_X11) + +/* X11 (tentative) */ +#include +#include + +typedef Display *EGLNativeDisplayType; +typedef Pixmap EGLNativePixmapType; +typedef Window EGLNativeWindowType; + +#elif defined(__unix__) + +typedef void *EGLNativeDisplayType; +typedef khronos_uintptr_t EGLNativePixmapType; +typedef khronos_uintptr_t EGLNativeWindowType; + +#elif defined(__APPLE__) + +typedef int EGLNativeDisplayType; +typedef void *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(__HAIKU__) + +#include + +typedef void *EGLNativeDisplayType; +typedef khronos_uintptr_t EGLNativePixmapType; +typedef khronos_uintptr_t EGLNativeWindowType; + +#elif defined(__Fuchsia__) + +typedef void *EGLNativeDisplayType; +typedef khronos_uintptr_t EGLNativePixmapType; +typedef khronos_uintptr_t EGLNativeWindowType; + +#else +#error "Platform not recognized" +#endif + +/* EGL 1.2 types, renamed for consistency in EGL 1.3 */ +typedef EGLNativeDisplayType NativeDisplayType; +typedef EGLNativePixmapType NativePixmapType; +typedef EGLNativeWindowType NativeWindowType; + + +/* Define EGLint. This must be a signed integral type large enough to contain + * all legal attribute names and values passed into and out of EGL, whether + * their type is boolean, bitmask, enumerant (symbolic constant), integer, + * handle, or other. While in general a 32-bit integer will suffice, if + * handles are 64 bit types, then EGLint should be defined as a signed 64-bit + * integer type. + */ +typedef khronos_int32_t EGLint; + + +/* C++ / C typecast macros for special EGL handle values */ +#if defined(__cplusplus) +#define EGL_CAST(type, value) (static_cast(value)) +#else +#define EGL_CAST(type, value) ((type) (value)) +#endif + +#endif /* __eglplatform_h */ + + +#ifndef __egl_h_ +#define __egl_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +** +** This header is generated from the Khronos EGL XML API Registry. +** The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** http://www.khronos.org/registry/egl +** +** Khronos $Git commit SHA1: 6fb1daea15 $ on $Git commit date: 2022-05-25 09:41:13 -0600 $ +*/ + +/*#include */ + +#ifndef EGL_EGL_PROTOTYPES +#define EGL_EGL_PROTOTYPES 1 +#endif + +/* Generated on date 20220525 */ + +/* Generated C header for: + * API: egl + * Versions considered: .* + * Versions emitted: .* + * Default extensions included: None + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef EGL_VERSION_1_0 +#define EGL_VERSION_1_0 1 +typedef unsigned int EGLBoolean; +typedef void *EGLDisplay; +/*#include */ +/*#include */ +typedef void *EGLConfig; +typedef void *EGLSurface; +typedef void *EGLContext; +typedef void (*__eglMustCastToProperFunctionPointerType)(void); +#define EGL_ALPHA_SIZE 0x3021 +#define EGL_BAD_ACCESS 0x3002 +#define EGL_BAD_ALLOC 0x3003 +#define EGL_BAD_ATTRIBUTE 0x3004 +#define EGL_BAD_CONFIG 0x3005 +#define EGL_BAD_CONTEXT 0x3006 +#define EGL_BAD_CURRENT_SURFACE 0x3007 +#define EGL_BAD_DISPLAY 0x3008 +#define EGL_BAD_MATCH 0x3009 +#define EGL_BAD_NATIVE_PIXMAP 0x300A +#define EGL_BAD_NATIVE_WINDOW 0x300B +#define EGL_BAD_PARAMETER 0x300C +#define EGL_BAD_SURFACE 0x300D +#define EGL_BLUE_SIZE 0x3022 +#define EGL_BUFFER_SIZE 0x3020 +#define EGL_CONFIG_CAVEAT 0x3027 +#define EGL_CONFIG_ID 0x3028 +#define EGL_CORE_NATIVE_ENGINE 0x305B +#define EGL_DEPTH_SIZE 0x3025 +#define EGL_DONT_CARE EGL_CAST(EGLint,-1) +#define EGL_DRAW 0x3059 +#define EGL_EXTENSIONS 0x3055 +#define EGL_FALSE 0 +#define EGL_GREEN_SIZE 0x3023 +#define EGL_HEIGHT 0x3056 +#define EGL_LARGEST_PBUFFER 0x3058 +#define EGL_LEVEL 0x3029 +#define EGL_MAX_PBUFFER_HEIGHT 0x302A +#define EGL_MAX_PBUFFER_PIXELS 0x302B +#define EGL_MAX_PBUFFER_WIDTH 0x302C +#define EGL_NATIVE_RENDERABLE 0x302D +#define EGL_NATIVE_VISUAL_ID 0x302E +#define EGL_NATIVE_VISUAL_TYPE 0x302F +#define EGL_NONE 0x3038 +#define EGL_NON_CONFORMANT_CONFIG 0x3051 +#define EGL_NOT_INITIALIZED 0x3001 +#define EGL_NO_CONTEXT EGL_CAST(EGLContext,0) +#define EGL_NO_DISPLAY EGL_CAST(EGLDisplay,0) +#define EGL_NO_SURFACE EGL_CAST(EGLSurface,0) +#define EGL_PBUFFER_BIT 0x0001 +#define EGL_PIXMAP_BIT 0x0002 +#define EGL_READ 0x305A +#define EGL_RED_SIZE 0x3024 +#define EGL_SAMPLES 0x3031 +#define EGL_SAMPLE_BUFFERS 0x3032 +#define EGL_SLOW_CONFIG 0x3050 +#define EGL_STENCIL_SIZE 0x3026 +#define EGL_SUCCESS 0x3000 +#define EGL_SURFACE_TYPE 0x3033 +#define EGL_TRANSPARENT_BLUE_VALUE 0x3035 +#define EGL_TRANSPARENT_GREEN_VALUE 0x3036 +#define EGL_TRANSPARENT_RED_VALUE 0x3037 +#define EGL_TRANSPARENT_RGB 0x3052 +#define EGL_TRANSPARENT_TYPE 0x3034 +#define EGL_TRUE 1 +#define EGL_VENDOR 0x3053 +#define EGL_VERSION 0x3054 +#define EGL_WIDTH 0x3057 +#define EGL_WINDOW_BIT 0x0004 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCHOOSECONFIGPROC) (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOPYBUFFERSPROC) (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target); +typedef EGLContext (EGLAPIENTRYP PFNEGLCREATECONTEXTPROC) (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPBUFFERSURFACEPROC) (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPIXMAPSURFACEPROC) (EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEWINDOWSURFACEPROC) (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSURFACEPROC) (EGLDisplay dpy, EGLSurface surface); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCONFIGATTRIBPROC) (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCONFIGSPROC) (EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config); +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETCURRENTDISPLAYPROC) (void); +typedef EGLSurface (EGLAPIENTRYP PFNEGLGETCURRENTSURFACEPROC) (EGLint readdraw); +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETDISPLAYPROC) (EGLNativeDisplayType display_id); +typedef EGLint (EGLAPIENTRYP PFNEGLGETERRORPROC) (void); +typedef __eglMustCastToProperFunctionPointerType (EGLAPIENTRYP PFNEGLGETPROCADDRESSPROC) (const char *procname); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLINITIALIZEPROC) (EGLDisplay dpy, EGLint *major, EGLint *minor); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLMAKECURRENTPROC) (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYSTRINGPROC) (EGLDisplay dpy, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSPROC) (EGLDisplay dpy, EGLSurface surface); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLTERMINATEPROC) (EGLDisplay dpy); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITGLPROC) (void); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITNATIVEPROC) (EGLint engine); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config); +EGLAPI EGLBoolean EGLAPIENTRY eglCopyBuffers (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target); +EGLAPI EGLContext EGLAPIENTRY eglCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurface (EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface (EGLDisplay dpy, EGLSurface surface); +EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigAttrib (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value); +EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigs (EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config); +EGLAPI EGLDisplay EGLAPIENTRY eglGetCurrentDisplay (void); +EGLAPI EGLSurface EGLAPIENTRY eglGetCurrentSurface (EGLint readdraw); +EGLAPI EGLDisplay EGLAPIENTRY eglGetDisplay (EGLNativeDisplayType display_id); +EGLAPI EGLint EGLAPIENTRY eglGetError (void); +EGLAPI __eglMustCastToProperFunctionPointerType EGLAPIENTRY eglGetProcAddress (const char *procname); +EGLAPI EGLBoolean EGLAPIENTRY eglInitialize (EGLDisplay dpy, EGLint *major, EGLint *minor); +EGLAPI EGLBoolean EGLAPIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value); +EGLAPI const char *EGLAPIENTRY eglQueryString (EGLDisplay dpy, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value); +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffers (EGLDisplay dpy, EGLSurface surface); +EGLAPI EGLBoolean EGLAPIENTRY eglTerminate (EGLDisplay dpy); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitGL (void); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitNative (EGLint engine); +#endif +#endif /* EGL_VERSION_1_0 */ + +#ifndef EGL_VERSION_1_1 +#define EGL_VERSION_1_1 1 +#define EGL_BACK_BUFFER 0x3084 +#define EGL_BIND_TO_TEXTURE_RGB 0x3039 +#define EGL_BIND_TO_TEXTURE_RGBA 0x303A +#define EGL_CONTEXT_LOST 0x300E +#define EGL_MIN_SWAP_INTERVAL 0x303B +#define EGL_MAX_SWAP_INTERVAL 0x303C +#define EGL_MIPMAP_TEXTURE 0x3082 +#define EGL_MIPMAP_LEVEL 0x3083 +#define EGL_NO_TEXTURE 0x305C +#define EGL_TEXTURE_2D 0x305F +#define EGL_TEXTURE_FORMAT 0x3080 +#define EGL_TEXTURE_RGB 0x305D +#define EGL_TEXTURE_RGBA 0x305E +#define EGL_TEXTURE_TARGET 0x3081 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDTEXIMAGEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLRELEASETEXIMAGEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSURFACEATTRIBPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPINTERVALPROC) (EGLDisplay dpy, EGLint interval); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +EGLAPI EGLBoolean EGLAPIENTRY eglReleaseTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +EGLAPI EGLBoolean EGLAPIENTRY eglSurfaceAttrib (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value); +EGLAPI EGLBoolean EGLAPIENTRY eglSwapInterval (EGLDisplay dpy, EGLint interval); +#endif +#endif /* EGL_VERSION_1_1 */ + +#ifndef EGL_VERSION_1_2 +#define EGL_VERSION_1_2 1 +typedef unsigned int EGLenum; +typedef void *EGLClientBuffer; +#define EGL_ALPHA_FORMAT 0x3088 +#define EGL_ALPHA_FORMAT_NONPRE 0x308B +#define EGL_ALPHA_FORMAT_PRE 0x308C +#define EGL_ALPHA_MASK_SIZE 0x303E +#define EGL_BUFFER_PRESERVED 0x3094 +#define EGL_BUFFER_DESTROYED 0x3095 +#define EGL_CLIENT_APIS 0x308D +#define EGL_COLORSPACE 0x3087 +#define EGL_COLORSPACE_sRGB 0x3089 +#define EGL_COLORSPACE_LINEAR 0x308A +#define EGL_COLOR_BUFFER_TYPE 0x303F +#define EGL_CONTEXT_CLIENT_TYPE 0x3097 +#define EGL_DISPLAY_SCALING 10000 +#define EGL_HORIZONTAL_RESOLUTION 0x3090 +#define EGL_LUMINANCE_BUFFER 0x308F +#define EGL_LUMINANCE_SIZE 0x303D +#define EGL_OPENGL_ES_BIT 0x0001 +#define EGL_OPENVG_BIT 0x0002 +#define EGL_OPENGL_ES_API 0x30A0 +#define EGL_OPENVG_API 0x30A1 +#define EGL_OPENVG_IMAGE 0x3096 +#define EGL_PIXEL_ASPECT_RATIO 0x3092 +#define EGL_RENDERABLE_TYPE 0x3040 +#define EGL_RENDER_BUFFER 0x3086 +#define EGL_RGB_BUFFER 0x308E +#define EGL_SINGLE_BUFFER 0x3085 +#define EGL_SWAP_BEHAVIOR 0x3093 +#define EGL_UNKNOWN EGL_CAST(EGLint,-1) +#define EGL_VERTICAL_RESOLUTION 0x3091 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDAPIPROC) (EGLenum api); +typedef EGLenum (EGLAPIENTRYP PFNEGLQUERYAPIPROC) (void); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPBUFFERFROMCLIENTBUFFERPROC) (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLRELEASETHREADPROC) (void); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITCLIENTPROC) (void); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglBindAPI (EGLenum api); +EGLAPI EGLenum EGLAPIENTRY eglQueryAPI (void); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferFromClientBuffer (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglReleaseThread (void); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitClient (void); +#endif +#endif /* EGL_VERSION_1_2 */ + +#ifndef EGL_VERSION_1_3 +#define EGL_VERSION_1_3 1 +#define EGL_CONFORMANT 0x3042 +#define EGL_CONTEXT_CLIENT_VERSION 0x3098 +#define EGL_MATCH_NATIVE_PIXMAP 0x3041 +#define EGL_OPENGL_ES2_BIT 0x0004 +#define EGL_VG_ALPHA_FORMAT 0x3088 +#define EGL_VG_ALPHA_FORMAT_NONPRE 0x308B +#define EGL_VG_ALPHA_FORMAT_PRE 0x308C +#define EGL_VG_ALPHA_FORMAT_PRE_BIT 0x0040 +#define EGL_VG_COLORSPACE 0x3087 +#define EGL_VG_COLORSPACE_sRGB 0x3089 +#define EGL_VG_COLORSPACE_LINEAR 0x308A +#define EGL_VG_COLORSPACE_LINEAR_BIT 0x0020 +#endif /* EGL_VERSION_1_3 */ + +#ifndef EGL_VERSION_1_4 +#define EGL_VERSION_1_4 1 +#define EGL_DEFAULT_DISPLAY EGL_CAST(EGLNativeDisplayType,0) +#define EGL_MULTISAMPLE_RESOLVE_BOX_BIT 0x0200 +#define EGL_MULTISAMPLE_RESOLVE 0x3099 +#define EGL_MULTISAMPLE_RESOLVE_DEFAULT 0x309A +#define EGL_MULTISAMPLE_RESOLVE_BOX 0x309B +#define EGL_OPENGL_API 0x30A2 +#define EGL_OPENGL_BIT 0x0008 +#define EGL_SWAP_BEHAVIOR_PRESERVED_BIT 0x0400 +typedef EGLContext (EGLAPIENTRYP PFNEGLGETCURRENTCONTEXTPROC) (void); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLContext EGLAPIENTRY eglGetCurrentContext (void); +#endif +#endif /* EGL_VERSION_1_4 */ + +#ifndef EGL_VERSION_1_5 +#define EGL_VERSION_1_5 1 +typedef void *EGLSync; +typedef intptr_t EGLAttrib; +typedef khronos_utime_nanoseconds_t EGLTime; +typedef void *EGLImage; +#define EGL_CONTEXT_MAJOR_VERSION 0x3098 +#define EGL_CONTEXT_MINOR_VERSION 0x30FB +#define EGL_CONTEXT_OPENGL_PROFILE_MASK 0x30FD +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY 0x31BD +#define EGL_NO_RESET_NOTIFICATION 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET 0x31BF +#define EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT 0x00000001 +#define EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT 0x00000002 +#define EGL_CONTEXT_OPENGL_DEBUG 0x31B0 +#define EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE 0x31B1 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS 0x31B2 +#define EGL_OPENGL_ES3_BIT 0x00000040 +#define EGL_CL_EVENT_HANDLE 0x309C +#define EGL_SYNC_CL_EVENT 0x30FE +#define EGL_SYNC_CL_EVENT_COMPLETE 0x30FF +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE 0x30F0 +#define EGL_SYNC_TYPE 0x30F7 +#define EGL_SYNC_STATUS 0x30F1 +#define EGL_SYNC_CONDITION 0x30F8 +#define EGL_SIGNALED 0x30F2 +#define EGL_UNSIGNALED 0x30F3 +#define EGL_SYNC_FLUSH_COMMANDS_BIT 0x0001 +#define EGL_FOREVER 0xFFFFFFFFFFFFFFFFull +#define EGL_TIMEOUT_EXPIRED 0x30F5 +#define EGL_CONDITION_SATISFIED 0x30F6 +#define EGL_NO_SYNC EGL_CAST(EGLSync,0) +#define EGL_SYNC_FENCE 0x30F9 +#define EGL_GL_COLORSPACE 0x309D +#define EGL_GL_COLORSPACE_SRGB 0x3089 +#define EGL_GL_COLORSPACE_LINEAR 0x308A +#define EGL_GL_RENDERBUFFER 0x30B9 +#define EGL_GL_TEXTURE_2D 0x30B1 +#define EGL_GL_TEXTURE_LEVEL 0x30BC +#define EGL_GL_TEXTURE_3D 0x30B2 +#define EGL_GL_TEXTURE_ZOFFSET 0x30BD +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x30B3 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x30B4 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x30B5 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x30B6 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x30B7 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x30B8 +#define EGL_IMAGE_PRESERVED 0x30D2 +#define EGL_NO_IMAGE EGL_CAST(EGLImage,0) +typedef EGLSync (EGLAPIENTRYP PFNEGLCREATESYNCPROC) (EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCPROC) (EGLDisplay dpy, EGLSync sync); +typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCPROC) (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBPROC) (EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value); +typedef EGLImage (EGLAPIENTRYP PFNEGLCREATEIMAGEPROC) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYIMAGEPROC) (EGLDisplay dpy, EGLImage image); +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETPLATFORMDISPLAYPROC) (EGLenum platform, void *native_display, const EGLAttrib *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMWINDOWSURFACEPROC) (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLAttrib *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMPIXMAPSURFACEPROC) (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITSYNCPROC) (EGLDisplay dpy, EGLSync sync, EGLint flags); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLSync EGLAPIENTRY eglCreateSync (EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySync (EGLDisplay dpy, EGLSync sync); +EGLAPI EGLint EGLAPIENTRY eglClientWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout); +EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttrib (EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value); +EGLAPI EGLImage EGLAPIENTRY eglCreateImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImage (EGLDisplay dpy, EGLImage image); +EGLAPI EGLDisplay EGLAPIENTRY eglGetPlatformDisplay (EGLenum platform, void *native_display, const EGLAttrib *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformWindowSurface (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLAttrib *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformPixmapSurface (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags); +#endif +#endif /* EGL_VERSION_1_5 */ + +#ifdef __cplusplus +} +#endif + +#endif /* __egl_h_ */ + + +#ifndef __eglext_h_ +#define __eglext_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +** +** This header is generated from the Khronos EGL XML API Registry. +** The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** http://www.khronos.org/registry/egl +** +** Khronos $Git commit SHA1: 6fb1daea15 $ on $Git commit date: 2022-05-25 09:41:13 -0600 $ +*/ + +/*#include */ + +#define EGL_EGLEXT_VERSION 20220525 + +/* Generated C header for: + * API: egl + * Versions considered: .* + * Versions emitted: _nomatch_^ + * Default extensions included: egl + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef EGL_KHR_cl_event +#define EGL_KHR_cl_event 1 +#define EGL_CL_EVENT_HANDLE_KHR 0x309C +#define EGL_SYNC_CL_EVENT_KHR 0x30FE +#define EGL_SYNC_CL_EVENT_COMPLETE_KHR 0x30FF +#endif /* EGL_KHR_cl_event */ + +#ifndef EGL_KHR_cl_event2 +#define EGL_KHR_cl_event2 1 +typedef void *EGLSyncKHR; +typedef intptr_t EGLAttribKHR; +typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNC64KHRPROC) (EGLDisplay dpy, EGLenum type, const EGLAttribKHR *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSync64KHR (EGLDisplay dpy, EGLenum type, const EGLAttribKHR *attrib_list); +#endif +#endif /* EGL_KHR_cl_event2 */ + +#ifndef EGL_KHR_client_get_all_proc_addresses +#define EGL_KHR_client_get_all_proc_addresses 1 +#endif /* EGL_KHR_client_get_all_proc_addresses */ + +#ifndef EGL_KHR_config_attribs +#define EGL_KHR_config_attribs 1 +#define EGL_CONFORMANT_KHR 0x3042 +#define EGL_VG_COLORSPACE_LINEAR_BIT_KHR 0x0020 +#define EGL_VG_ALPHA_FORMAT_PRE_BIT_KHR 0x0040 +#endif /* EGL_KHR_config_attribs */ + +#ifndef EGL_KHR_context_flush_control +#define EGL_KHR_context_flush_control 1 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_NONE_KHR 0 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_KHR 0x2097 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_KHR 0x2098 +#endif /* EGL_KHR_context_flush_control */ + +#ifndef EGL_KHR_create_context +#define EGL_KHR_create_context 1 +#define EGL_CONTEXT_MAJOR_VERSION_KHR 0x3098 +#define EGL_CONTEXT_MINOR_VERSION_KHR 0x30FB +#define EGL_CONTEXT_FLAGS_KHR 0x30FC +#define EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR 0x30FD +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_KHR 0x31BD +#define EGL_NO_RESET_NOTIFICATION_KHR 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET_KHR 0x31BF +#define EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR 0x00000001 +#define EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR 0x00000002 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR 0x00000004 +#define EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR 0x00000001 +#define EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT_KHR 0x00000002 +#define EGL_OPENGL_ES3_BIT_KHR 0x00000040 +#endif /* EGL_KHR_create_context */ + +#ifndef EGL_KHR_create_context_no_error +#define EGL_KHR_create_context_no_error 1 +#define EGL_CONTEXT_OPENGL_NO_ERROR_KHR 0x31B3 +#endif /* EGL_KHR_create_context_no_error */ + +#ifndef EGL_KHR_debug +#define EGL_KHR_debug 1 +typedef void *EGLLabelKHR; +typedef void *EGLObjectKHR; +typedef void (EGLAPIENTRY *EGLDEBUGPROCKHR)(EGLenum error,const char *command,EGLint messageType,EGLLabelKHR threadLabel,EGLLabelKHR objectLabel,const char* message); +#define EGL_OBJECT_THREAD_KHR 0x33B0 +#define EGL_OBJECT_DISPLAY_KHR 0x33B1 +#define EGL_OBJECT_CONTEXT_KHR 0x33B2 +#define EGL_OBJECT_SURFACE_KHR 0x33B3 +#define EGL_OBJECT_IMAGE_KHR 0x33B4 +#define EGL_OBJECT_SYNC_KHR 0x33B5 +#define EGL_OBJECT_STREAM_KHR 0x33B6 +#define EGL_DEBUG_MSG_CRITICAL_KHR 0x33B9 +#define EGL_DEBUG_MSG_ERROR_KHR 0x33BA +#define EGL_DEBUG_MSG_WARN_KHR 0x33BB +#define EGL_DEBUG_MSG_INFO_KHR 0x33BC +#define EGL_DEBUG_CALLBACK_KHR 0x33B8 +typedef EGLint (EGLAPIENTRYP PFNEGLDEBUGMESSAGECONTROLKHRPROC) (EGLDEBUGPROCKHR callback, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEBUGKHRPROC) (EGLint attribute, EGLAttrib *value); +typedef EGLint (EGLAPIENTRYP PFNEGLLABELOBJECTKHRPROC) (EGLDisplay display, EGLenum objectType, EGLObjectKHR object, EGLLabelKHR label); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLint EGLAPIENTRY eglDebugMessageControlKHR (EGLDEBUGPROCKHR callback, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDebugKHR (EGLint attribute, EGLAttrib *value); +EGLAPI EGLint EGLAPIENTRY eglLabelObjectKHR (EGLDisplay display, EGLenum objectType, EGLObjectKHR object, EGLLabelKHR label); +#endif +#endif /* EGL_KHR_debug */ + +#ifndef EGL_KHR_display_reference +#define EGL_KHR_display_reference 1 +#define EGL_TRACK_REFERENCES_KHR 0x3352 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBKHRPROC) (EGLDisplay dpy, EGLint name, EGLAttrib *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribKHR (EGLDisplay dpy, EGLint name, EGLAttrib *value); +#endif +#endif /* EGL_KHR_display_reference */ + +#ifndef EGL_KHR_fence_sync +#define EGL_KHR_fence_sync 1 +typedef khronos_utime_nanoseconds_t EGLTimeKHR; +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE_KHR 0x30F0 +#define EGL_SYNC_CONDITION_KHR 0x30F8 +#define EGL_SYNC_FENCE_KHR 0x30F9 +typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNCKHRPROC) (EGLDisplay dpy, EGLenum type, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync); +typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSyncKHR (EGLDisplay dpy, EGLenum type, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR (EGLDisplay dpy, EGLSyncKHR sync); +EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout); +EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_fence_sync */ + +#ifndef EGL_KHR_get_all_proc_addresses +#define EGL_KHR_get_all_proc_addresses 1 +#endif /* EGL_KHR_get_all_proc_addresses */ + +#ifndef EGL_KHR_gl_colorspace +#define EGL_KHR_gl_colorspace 1 +#define EGL_GL_COLORSPACE_KHR 0x309D +#define EGL_GL_COLORSPACE_SRGB_KHR 0x3089 +#define EGL_GL_COLORSPACE_LINEAR_KHR 0x308A +#endif /* EGL_KHR_gl_colorspace */ + +#ifndef EGL_KHR_gl_renderbuffer_image +#define EGL_KHR_gl_renderbuffer_image 1 +#define EGL_GL_RENDERBUFFER_KHR 0x30B9 +#endif /* EGL_KHR_gl_renderbuffer_image */ + +#ifndef EGL_KHR_gl_texture_2D_image +#define EGL_KHR_gl_texture_2D_image 1 +#define EGL_GL_TEXTURE_2D_KHR 0x30B1 +#define EGL_GL_TEXTURE_LEVEL_KHR 0x30BC +#endif /* EGL_KHR_gl_texture_2D_image */ + +#ifndef EGL_KHR_gl_texture_3D_image +#define EGL_KHR_gl_texture_3D_image 1 +#define EGL_GL_TEXTURE_3D_KHR 0x30B2 +#define EGL_GL_TEXTURE_ZOFFSET_KHR 0x30BD +#endif /* EGL_KHR_gl_texture_3D_image */ + +#ifndef EGL_KHR_gl_texture_cubemap_image +#define EGL_KHR_gl_texture_cubemap_image 1 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR 0x30B3 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X_KHR 0x30B4 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y_KHR 0x30B5 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_KHR 0x30B6 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z_KHR 0x30B7 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_KHR 0x30B8 +#endif /* EGL_KHR_gl_texture_cubemap_image */ + +#ifndef EGL_KHR_image +#define EGL_KHR_image 1 +typedef void *EGLImageKHR; +#define EGL_NATIVE_PIXMAP_KHR 0x30B0 +#define EGL_NO_IMAGE_KHR EGL_CAST(EGLImageKHR,0) +typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEIMAGEKHRPROC) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYIMAGEKHRPROC) (EGLDisplay dpy, EGLImageKHR image); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImageKHR (EGLDisplay dpy, EGLImageKHR image); +#endif +#endif /* EGL_KHR_image */ + +#ifndef EGL_KHR_image_base +#define EGL_KHR_image_base 1 +#define EGL_IMAGE_PRESERVED_KHR 0x30D2 +#endif /* EGL_KHR_image_base */ + +#ifndef EGL_KHR_image_pixmap +#define EGL_KHR_image_pixmap 1 +#endif /* EGL_KHR_image_pixmap */ + +#ifndef EGL_KHR_lock_surface +#define EGL_KHR_lock_surface 1 +#define EGL_READ_SURFACE_BIT_KHR 0x0001 +#define EGL_WRITE_SURFACE_BIT_KHR 0x0002 +#define EGL_LOCK_SURFACE_BIT_KHR 0x0080 +#define EGL_OPTIMAL_FORMAT_BIT_KHR 0x0100 +#define EGL_MATCH_FORMAT_KHR 0x3043 +#define EGL_FORMAT_RGB_565_EXACT_KHR 0x30C0 +#define EGL_FORMAT_RGB_565_KHR 0x30C1 +#define EGL_FORMAT_RGBA_8888_EXACT_KHR 0x30C2 +#define EGL_FORMAT_RGBA_8888_KHR 0x30C3 +#define EGL_MAP_PRESERVE_PIXELS_KHR 0x30C4 +#define EGL_LOCK_USAGE_HINT_KHR 0x30C5 +#define EGL_BITMAP_POINTER_KHR 0x30C6 +#define EGL_BITMAP_PITCH_KHR 0x30C7 +#define EGL_BITMAP_ORIGIN_KHR 0x30C8 +#define EGL_BITMAP_PIXEL_RED_OFFSET_KHR 0x30C9 +#define EGL_BITMAP_PIXEL_GREEN_OFFSET_KHR 0x30CA +#define EGL_BITMAP_PIXEL_BLUE_OFFSET_KHR 0x30CB +#define EGL_BITMAP_PIXEL_ALPHA_OFFSET_KHR 0x30CC +#define EGL_BITMAP_PIXEL_LUMINANCE_OFFSET_KHR 0x30CD +#define EGL_LOWER_LEFT_KHR 0x30CE +#define EGL_UPPER_LEFT_KHR 0x30CF +typedef EGLBoolean (EGLAPIENTRYP PFNEGLLOCKSURFACEKHRPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNLOCKSURFACEKHRPROC) (EGLDisplay dpy, EGLSurface surface); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglLockSurfaceKHR (EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglUnlockSurfaceKHR (EGLDisplay dpy, EGLSurface surface); +#endif +#endif /* EGL_KHR_lock_surface */ + +#ifndef EGL_KHR_lock_surface2 +#define EGL_KHR_lock_surface2 1 +#define EGL_BITMAP_PIXEL_SIZE_KHR 0x3110 +#endif /* EGL_KHR_lock_surface2 */ + +#ifndef EGL_KHR_lock_surface3 +#define EGL_KHR_lock_surface3 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACE64KHRPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLAttribKHR *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface64KHR (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLAttribKHR *value); +#endif +#endif /* EGL_KHR_lock_surface3 */ + +#ifndef EGL_KHR_mutable_render_buffer +#define EGL_KHR_mutable_render_buffer 1 +#define EGL_MUTABLE_RENDER_BUFFER_BIT_KHR 0x1000 +#endif /* EGL_KHR_mutable_render_buffer */ + +#ifndef EGL_KHR_no_config_context +#define EGL_KHR_no_config_context 1 +#define EGL_NO_CONFIG_KHR EGL_CAST(EGLConfig,0) +#endif /* EGL_KHR_no_config_context */ + +#ifndef EGL_KHR_partial_update +#define EGL_KHR_partial_update 1 +#define EGL_BUFFER_AGE_KHR 0x313D +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETDAMAGEREGIONKHRPROC) (EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSetDamageRegionKHR (EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects); +#endif +#endif /* EGL_KHR_partial_update */ + +#ifndef EGL_KHR_platform_android +#define EGL_KHR_platform_android 1 +#define EGL_PLATFORM_ANDROID_KHR 0x3141 +#endif /* EGL_KHR_platform_android */ + +#ifndef EGL_KHR_platform_gbm +#define EGL_KHR_platform_gbm 1 +#define EGL_PLATFORM_GBM_KHR 0x31D7 +#endif /* EGL_KHR_platform_gbm */ + +#ifndef EGL_KHR_platform_wayland +#define EGL_KHR_platform_wayland 1 +#define EGL_PLATFORM_WAYLAND_KHR 0x31D8 +#endif /* EGL_KHR_platform_wayland */ + +#ifndef EGL_KHR_platform_x11 +#define EGL_KHR_platform_x11 1 +#define EGL_PLATFORM_X11_KHR 0x31D5 +#define EGL_PLATFORM_X11_SCREEN_KHR 0x31D6 +#endif /* EGL_KHR_platform_x11 */ + +#ifndef EGL_KHR_reusable_sync +#define EGL_KHR_reusable_sync 1 +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_SYNC_STATUS_KHR 0x30F1 +#define EGL_SIGNALED_KHR 0x30F2 +#define EGL_UNSIGNALED_KHR 0x30F3 +#define EGL_TIMEOUT_EXPIRED_KHR 0x30F5 +#define EGL_CONDITION_SATISFIED_KHR 0x30F6 +#define EGL_SYNC_TYPE_KHR 0x30F7 +#define EGL_SYNC_REUSABLE_KHR 0x30FA +#define EGL_SYNC_FLUSH_COMMANDS_BIT_KHR 0x0001 +#define EGL_FOREVER_KHR 0xFFFFFFFFFFFFFFFFull +#define EGL_NO_SYNC_KHR EGL_CAST(EGLSyncKHR,0) +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSIGNALSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_reusable_sync */ + +#ifndef EGL_KHR_stream +#define EGL_KHR_stream 1 +typedef void *EGLStreamKHR; +typedef khronos_uint64_t EGLuint64KHR; +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_NO_STREAM_KHR EGL_CAST(EGLStreamKHR,0) +#define EGL_CONSUMER_LATENCY_USEC_KHR 0x3210 +#define EGL_PRODUCER_FRAME_KHR 0x3212 +#define EGL_CONSUMER_FRAME_KHR 0x3213 +#define EGL_STREAM_STATE_KHR 0x3214 +#define EGL_STREAM_STATE_CREATED_KHR 0x3215 +#define EGL_STREAM_STATE_CONNECTING_KHR 0x3216 +#define EGL_STREAM_STATE_EMPTY_KHR 0x3217 +#define EGL_STREAM_STATE_NEW_FRAME_AVAILABLE_KHR 0x3218 +#define EGL_STREAM_STATE_OLD_FRAME_AVAILABLE_KHR 0x3219 +#define EGL_STREAM_STATE_DISCONNECTED_KHR 0x321A +#define EGL_BAD_STREAM_KHR 0x321B +#define EGL_BAD_STATE_KHR 0x321C +typedef EGLStreamKHR (EGLAPIENTRYP PFNEGLCREATESTREAMKHRPROC) (EGLDisplay dpy, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSTREAMKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMU64KHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLuint64KHR *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLStreamKHR EGLAPIENTRY eglCreateStreamKHR (EGLDisplay dpy, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyStreamKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint *value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamu64KHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLuint64KHR *value); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_stream */ + +#ifndef EGL_KHR_stream_attrib +#define EGL_KHR_stream_attrib 1 +#ifdef KHRONOS_SUPPORT_INT64 +typedef EGLStreamKHR (EGLAPIENTRYP PFNEGLCREATESTREAMATTRIBKHRPROC) (EGLDisplay dpy, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERACQUIREATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERRELEASEATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLStreamKHR EGLAPIENTRY eglCreateStreamAttribKHR (EGLDisplay dpy, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglSetStreamAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib *value); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerAcquireAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerReleaseAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_stream_attrib */ + +#ifndef EGL_KHR_stream_consumer_gltexture +#define EGL_KHR_stream_consumer_gltexture 1 +#ifdef EGL_KHR_stream +#define EGL_CONSUMER_ACQUIRE_TIMEOUT_USEC_KHR 0x321E +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERGLTEXTUREEXTERNALKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERACQUIREKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERRELEASEKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerGLTextureExternalKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerAcquireKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerReleaseKHR (EGLDisplay dpy, EGLStreamKHR stream); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_consumer_gltexture */ + +#ifndef EGL_KHR_stream_cross_process_fd +#define EGL_KHR_stream_cross_process_fd 1 +typedef int EGLNativeFileDescriptorKHR; +#ifdef EGL_KHR_stream +#define EGL_NO_FILE_DESCRIPTOR_KHR EGL_CAST(EGLNativeFileDescriptorKHR,-1) +typedef EGLNativeFileDescriptorKHR (EGLAPIENTRYP PFNEGLGETSTREAMFILEDESCRIPTORKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLStreamKHR (EGLAPIENTRYP PFNEGLCREATESTREAMFROMFILEDESCRIPTORKHRPROC) (EGLDisplay dpy, EGLNativeFileDescriptorKHR file_descriptor); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLNativeFileDescriptorKHR EGLAPIENTRY eglGetStreamFileDescriptorKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLStreamKHR EGLAPIENTRY eglCreateStreamFromFileDescriptorKHR (EGLDisplay dpy, EGLNativeFileDescriptorKHR file_descriptor); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_cross_process_fd */ + +#ifndef EGL_KHR_stream_fifo +#define EGL_KHR_stream_fifo 1 +#ifdef EGL_KHR_stream +#define EGL_STREAM_FIFO_LENGTH_KHR 0x31FC +#define EGL_STREAM_TIME_NOW_KHR 0x31FD +#define EGL_STREAM_TIME_CONSUMER_KHR 0x31FE +#define EGL_STREAM_TIME_PRODUCER_KHR 0x31FF +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMTIMEKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLTimeKHR *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamTimeKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLTimeKHR *value); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_fifo */ + +#ifndef EGL_KHR_stream_producer_aldatalocator +#define EGL_KHR_stream_producer_aldatalocator 1 +#ifdef EGL_KHR_stream +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_producer_aldatalocator */ + +#ifndef EGL_KHR_stream_producer_eglsurface +#define EGL_KHR_stream_producer_eglsurface 1 +#ifdef EGL_KHR_stream +#define EGL_STREAM_BIT_KHR 0x0800 +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATESTREAMPRODUCERSURFACEKHRPROC) (EGLDisplay dpy, EGLConfig config, EGLStreamKHR stream, const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSurface EGLAPIENTRY eglCreateStreamProducerSurfaceKHR (EGLDisplay dpy, EGLConfig config, EGLStreamKHR stream, const EGLint *attrib_list); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_producer_eglsurface */ + +#ifndef EGL_KHR_surfaceless_context +#define EGL_KHR_surfaceless_context 1 +#endif /* EGL_KHR_surfaceless_context */ + +#ifndef EGL_KHR_swap_buffers_with_damage +#define EGL_KHR_swap_buffers_with_damage 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSWITHDAMAGEKHRPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersWithDamageKHR (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#endif +#endif /* EGL_KHR_swap_buffers_with_damage */ + +#ifndef EGL_KHR_vg_parent_image +#define EGL_KHR_vg_parent_image 1 +#define EGL_VG_PARENT_IMAGE_KHR 0x30BA +#endif /* EGL_KHR_vg_parent_image */ + +#ifndef EGL_KHR_wait_sync +#define EGL_KHR_wait_sync 1 +typedef EGLint (EGLAPIENTRYP PFNEGLWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLint EGLAPIENTRY eglWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags); +#endif +#endif /* EGL_KHR_wait_sync */ + +#ifndef EGL_ANDROID_GLES_layers +#define EGL_ANDROID_GLES_layers 1 +#endif /* EGL_ANDROID_GLES_layers */ + +#ifndef EGL_ANDROID_blob_cache +#define EGL_ANDROID_blob_cache 1 +typedef khronos_ssize_t EGLsizeiANDROID; +typedef void (*EGLSetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, const void *value, EGLsizeiANDROID valueSize); +typedef EGLsizeiANDROID (*EGLGetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, void *value, EGLsizeiANDROID valueSize); +typedef void (EGLAPIENTRYP PFNEGLSETBLOBCACHEFUNCSANDROIDPROC) (EGLDisplay dpy, EGLSetBlobFuncANDROID set, EGLGetBlobFuncANDROID get); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI void EGLAPIENTRY eglSetBlobCacheFuncsANDROID (EGLDisplay dpy, EGLSetBlobFuncANDROID set, EGLGetBlobFuncANDROID get); +#endif +#endif /* EGL_ANDROID_blob_cache */ + +#ifndef EGL_ANDROID_create_native_client_buffer +#define EGL_ANDROID_create_native_client_buffer 1 +#define EGL_NATIVE_BUFFER_USAGE_ANDROID 0x3143 +#define EGL_NATIVE_BUFFER_USAGE_PROTECTED_BIT_ANDROID 0x00000001 +#define EGL_NATIVE_BUFFER_USAGE_RENDERBUFFER_BIT_ANDROID 0x00000002 +#define EGL_NATIVE_BUFFER_USAGE_TEXTURE_BIT_ANDROID 0x00000004 +typedef EGLClientBuffer (EGLAPIENTRYP PFNEGLCREATENATIVECLIENTBUFFERANDROIDPROC) (const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLClientBuffer EGLAPIENTRY eglCreateNativeClientBufferANDROID (const EGLint *attrib_list); +#endif +#endif /* EGL_ANDROID_create_native_client_buffer */ + +#ifndef EGL_ANDROID_framebuffer_target +#define EGL_ANDROID_framebuffer_target 1 +#define EGL_FRAMEBUFFER_TARGET_ANDROID 0x3147 +#endif /* EGL_ANDROID_framebuffer_target */ + +#ifndef EGL_ANDROID_front_buffer_auto_refresh +#define EGL_ANDROID_front_buffer_auto_refresh 1 +#define EGL_FRONT_BUFFER_AUTO_REFRESH_ANDROID 0x314C +#endif /* EGL_ANDROID_front_buffer_auto_refresh */ + +#ifndef EGL_ANDROID_get_frame_timestamps +#define EGL_ANDROID_get_frame_timestamps 1 +typedef khronos_stime_nanoseconds_t EGLnsecsANDROID; +#define EGL_TIMESTAMP_PENDING_ANDROID EGL_CAST(EGLnsecsANDROID,-2) +#define EGL_TIMESTAMP_INVALID_ANDROID EGL_CAST(EGLnsecsANDROID,-1) +#define EGL_TIMESTAMPS_ANDROID 0x3430 +#define EGL_COMPOSITE_DEADLINE_ANDROID 0x3431 +#define EGL_COMPOSITE_INTERVAL_ANDROID 0x3432 +#define EGL_COMPOSITE_TO_PRESENT_LATENCY_ANDROID 0x3433 +#define EGL_REQUESTED_PRESENT_TIME_ANDROID 0x3434 +#define EGL_RENDERING_COMPLETE_TIME_ANDROID 0x3435 +#define EGL_COMPOSITION_LATCH_TIME_ANDROID 0x3436 +#define EGL_FIRST_COMPOSITION_START_TIME_ANDROID 0x3437 +#define EGL_LAST_COMPOSITION_START_TIME_ANDROID 0x3438 +#define EGL_FIRST_COMPOSITION_GPU_FINISHED_TIME_ANDROID 0x3439 +#define EGL_DISPLAY_PRESENT_TIME_ANDROID 0x343A +#define EGL_DEQUEUE_READY_TIME_ANDROID 0x343B +#define EGL_READS_DONE_TIME_ANDROID 0x343C +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCOMPOSITORTIMINGSUPPORTEDANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCOMPOSITORTIMINGANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETNEXTFRAMEIDANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR *frameId); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETFRAMETIMESTAMPSUPPORTEDANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint timestamp); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETFRAMETIMESTAMPSANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglGetCompositorTimingSupportedANDROID (EGLDisplay dpy, EGLSurface surface, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglGetCompositorTimingANDROID (EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values); +EGLAPI EGLBoolean EGLAPIENTRY eglGetNextFrameIdANDROID (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR *frameId); +EGLAPI EGLBoolean EGLAPIENTRY eglGetFrameTimestampSupportedANDROID (EGLDisplay dpy, EGLSurface surface, EGLint timestamp); +EGLAPI EGLBoolean EGLAPIENTRY eglGetFrameTimestampsANDROID (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values); +#endif +#endif /* EGL_ANDROID_get_frame_timestamps */ + +#ifndef EGL_ANDROID_get_native_client_buffer +#define EGL_ANDROID_get_native_client_buffer 1 +struct AHardwareBuffer; +typedef EGLClientBuffer (EGLAPIENTRYP PFNEGLGETNATIVECLIENTBUFFERANDROIDPROC) (const struct AHardwareBuffer *buffer); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLClientBuffer EGLAPIENTRY eglGetNativeClientBufferANDROID (const struct AHardwareBuffer *buffer); +#endif +#endif /* EGL_ANDROID_get_native_client_buffer */ + +#ifndef EGL_ANDROID_image_native_buffer +#define EGL_ANDROID_image_native_buffer 1 +#define EGL_NATIVE_BUFFER_ANDROID 0x3140 +#endif /* EGL_ANDROID_image_native_buffer */ + +#ifndef EGL_ANDROID_native_fence_sync +#define EGL_ANDROID_native_fence_sync 1 +#define EGL_SYNC_NATIVE_FENCE_ANDROID 0x3144 +#define EGL_SYNC_NATIVE_FENCE_FD_ANDROID 0x3145 +#define EGL_SYNC_NATIVE_FENCE_SIGNALED_ANDROID 0x3146 +#define EGL_NO_NATIVE_FENCE_FD_ANDROID -1 +typedef EGLint (EGLAPIENTRYP PFNEGLDUPNATIVEFENCEFDANDROIDPROC) (EGLDisplay dpy, EGLSyncKHR sync); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLint EGLAPIENTRY eglDupNativeFenceFDANDROID (EGLDisplay dpy, EGLSyncKHR sync); +#endif +#endif /* EGL_ANDROID_native_fence_sync */ + +#ifndef EGL_ANDROID_presentation_time +#define EGL_ANDROID_presentation_time 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLPRESENTATIONTIMEANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLnsecsANDROID time); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglPresentationTimeANDROID (EGLDisplay dpy, EGLSurface surface, EGLnsecsANDROID time); +#endif +#endif /* EGL_ANDROID_presentation_time */ + +#ifndef EGL_ANDROID_recordable +#define EGL_ANDROID_recordable 1 +#define EGL_RECORDABLE_ANDROID 0x3142 +#endif /* EGL_ANDROID_recordable */ + +#ifndef EGL_ANGLE_d3d_share_handle_client_buffer +#define EGL_ANGLE_d3d_share_handle_client_buffer 1 +#define EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE 0x3200 +#endif /* EGL_ANGLE_d3d_share_handle_client_buffer */ + +#ifndef EGL_ANGLE_device_d3d +#define EGL_ANGLE_device_d3d 1 +#define EGL_D3D9_DEVICE_ANGLE 0x33A0 +#define EGL_D3D11_DEVICE_ANGLE 0x33A1 +#endif /* EGL_ANGLE_device_d3d */ + +#ifndef EGL_ANGLE_query_surface_pointer +#define EGL_ANGLE_query_surface_pointer 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACEPOINTERANGLEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, void **value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurfacePointerANGLE (EGLDisplay dpy, EGLSurface surface, EGLint attribute, void **value); +#endif +#endif /* EGL_ANGLE_query_surface_pointer */ + +#ifndef EGL_ANGLE_surface_d3d_texture_2d_share_handle +#define EGL_ANGLE_surface_d3d_texture_2d_share_handle 1 +#endif /* EGL_ANGLE_surface_d3d_texture_2d_share_handle */ + +#ifndef EGL_ANGLE_sync_control_rate +#define EGL_ANGLE_sync_control_rate 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETMSCRATEANGLEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint *numerator, EGLint *denominator); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglGetMscRateANGLE (EGLDisplay dpy, EGLSurface surface, EGLint *numerator, EGLint *denominator); +#endif +#endif /* EGL_ANGLE_sync_control_rate */ + +#ifndef EGL_ANGLE_window_fixed_size +#define EGL_ANGLE_window_fixed_size 1 +#define EGL_FIXED_SIZE_ANGLE 0x3201 +#endif /* EGL_ANGLE_window_fixed_size */ + +#ifndef EGL_ARM_image_format +#define EGL_ARM_image_format 1 +#define EGL_COLOR_COMPONENT_TYPE_UNSIGNED_INTEGER_ARM 0x3287 +#define EGL_COLOR_COMPONENT_TYPE_INTEGER_ARM 0x3288 +#endif /* EGL_ARM_image_format */ + +#ifndef EGL_ARM_implicit_external_sync +#define EGL_ARM_implicit_external_sync 1 +#define EGL_SYNC_PRIOR_COMMANDS_IMPLICIT_EXTERNAL_ARM 0x328A +#endif /* EGL_ARM_implicit_external_sync */ + +#ifndef EGL_ARM_pixmap_multisample_discard +#define EGL_ARM_pixmap_multisample_discard 1 +#define EGL_DISCARD_SAMPLES_ARM 0x3286 +#endif /* EGL_ARM_pixmap_multisample_discard */ + +#ifndef EGL_EXT_bind_to_front +#define EGL_EXT_bind_to_front 1 +#define EGL_FRONT_BUFFER_EXT 0x3464 +#endif /* EGL_EXT_bind_to_front */ + +#ifndef EGL_EXT_buffer_age +#define EGL_EXT_buffer_age 1 +#define EGL_BUFFER_AGE_EXT 0x313D +#endif /* EGL_EXT_buffer_age */ + +#ifndef EGL_EXT_client_extensions +#define EGL_EXT_client_extensions 1 +#endif /* EGL_EXT_client_extensions */ + +#ifndef EGL_EXT_client_sync +#define EGL_EXT_client_sync 1 +#define EGL_SYNC_CLIENT_EXT 0x3364 +#define EGL_SYNC_CLIENT_SIGNAL_EXT 0x3365 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCLIENTSIGNALSYNCEXTPROC) (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglClientSignalSyncEXT (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#endif +#endif /* EGL_EXT_client_sync */ + +#ifndef EGL_EXT_compositor +#define EGL_EXT_compositor 1 +#define EGL_PRIMARY_COMPOSITOR_CONTEXT_EXT 0x3460 +#define EGL_EXTERNAL_REF_ID_EXT 0x3461 +#define EGL_COMPOSITOR_DROP_NEWEST_FRAME_EXT 0x3462 +#define EGL_COMPOSITOR_KEEP_NEWEST_FRAME_EXT 0x3463 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETCONTEXTLISTEXTPROC) (const EGLint *external_ref_ids, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETCONTEXTATTRIBUTESEXTPROC) (EGLint external_ref_id, const EGLint *context_attributes, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETWINDOWLISTEXTPROC) (EGLint external_ref_id, const EGLint *external_win_ids, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETWINDOWATTRIBUTESEXTPROC) (EGLint external_win_id, const EGLint *window_attributes, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORBINDTEXWINDOWEXTPROC) (EGLint external_win_id); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETSIZEEXTPROC) (EGLint external_win_id, EGLint width, EGLint height); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSWAPPOLICYEXTPROC) (EGLint external_win_id, EGLint policy); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetContextListEXT (const EGLint *external_ref_ids, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetContextAttributesEXT (EGLint external_ref_id, const EGLint *context_attributes, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetWindowListEXT (EGLint external_ref_id, const EGLint *external_win_ids, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetWindowAttributesEXT (EGLint external_win_id, const EGLint *window_attributes, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorBindTexWindowEXT (EGLint external_win_id); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetSizeEXT (EGLint external_win_id, EGLint width, EGLint height); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSwapPolicyEXT (EGLint external_win_id, EGLint policy); +#endif +#endif /* EGL_EXT_compositor */ + +#ifndef EGL_EXT_config_select_group +#define EGL_EXT_config_select_group 1 +#define EGL_CONFIG_SELECT_GROUP_EXT 0x34C0 +#endif /* EGL_EXT_config_select_group */ + +#ifndef EGL_EXT_create_context_robustness +#define EGL_EXT_create_context_robustness 1 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS_EXT 0x30BF +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_EXT 0x3138 +#define EGL_NO_RESET_NOTIFICATION_EXT 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET_EXT 0x31BF +#endif /* EGL_EXT_create_context_robustness */ + +#ifndef EGL_EXT_device_base +#define EGL_EXT_device_base 1 +typedef void *EGLDeviceEXT; +#define EGL_NO_DEVICE_EXT EGL_CAST(EGLDeviceEXT,0) +#define EGL_BAD_DEVICE_EXT 0x322B +#define EGL_DEVICE_EXT 0x322C +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEVICEATTRIBEXTPROC) (EGLDeviceEXT device, EGLint attribute, EGLAttrib *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYDEVICESTRINGEXTPROC) (EGLDeviceEXT device, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEVICESEXTPROC) (EGLint max_devices, EGLDeviceEXT *devices, EGLint *num_devices); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBEXTPROC) (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDeviceAttribEXT (EGLDeviceEXT device, EGLint attribute, EGLAttrib *value); +EGLAPI const char *EGLAPIENTRY eglQueryDeviceStringEXT (EGLDeviceEXT device, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDevicesEXT (EGLint max_devices, EGLDeviceEXT *devices, EGLint *num_devices); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribEXT (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +#endif +#endif /* EGL_EXT_device_base */ + +#ifndef EGL_EXT_device_drm +#define EGL_EXT_device_drm 1 +#define EGL_DRM_DEVICE_FILE_EXT 0x3233 +#define EGL_DRM_MASTER_FD_EXT 0x333C +#endif /* EGL_EXT_device_drm */ + +#ifndef EGL_EXT_device_drm_render_node +#define EGL_EXT_device_drm_render_node 1 +#define EGL_DRM_RENDER_NODE_FILE_EXT 0x3377 +#endif /* EGL_EXT_device_drm_render_node */ + +#ifndef EGL_EXT_device_enumeration +#define EGL_EXT_device_enumeration 1 +#endif /* EGL_EXT_device_enumeration */ + +#ifndef EGL_EXT_device_openwf +#define EGL_EXT_device_openwf 1 +#define EGL_OPENWF_DEVICE_ID_EXT 0x3237 +#define EGL_OPENWF_DEVICE_EXT 0x333D +#endif /* EGL_EXT_device_openwf */ + +#ifndef EGL_EXT_device_persistent_id +#define EGL_EXT_device_persistent_id 1 +#define EGL_DEVICE_UUID_EXT 0x335C +#define EGL_DRIVER_UUID_EXT 0x335D +#define EGL_DRIVER_NAME_EXT 0x335E +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEVICEBINARYEXTPROC) (EGLDeviceEXT device, EGLint name, EGLint max_size, void *value, EGLint *size); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDeviceBinaryEXT (EGLDeviceEXT device, EGLint name, EGLint max_size, void *value, EGLint *size); +#endif +#endif /* EGL_EXT_device_persistent_id */ + +#ifndef EGL_EXT_device_query +#define EGL_EXT_device_query 1 +#endif /* EGL_EXT_device_query */ + +#ifndef EGL_EXT_device_query_name +#define EGL_EXT_device_query_name 1 +#define EGL_RENDERER_EXT 0x335F +#endif /* EGL_EXT_device_query_name */ + +#ifndef EGL_EXT_explicit_device +#define EGL_EXT_explicit_device 1 +#endif /* EGL_EXT_explicit_device */ + +#ifndef EGL_EXT_gl_colorspace_bt2020_linear +#define EGL_EXT_gl_colorspace_bt2020_linear 1 +#define EGL_GL_COLORSPACE_BT2020_LINEAR_EXT 0x333F +#endif /* EGL_EXT_gl_colorspace_bt2020_linear */ + +#ifndef EGL_EXT_gl_colorspace_bt2020_pq +#define EGL_EXT_gl_colorspace_bt2020_pq 1 +#define EGL_GL_COLORSPACE_BT2020_PQ_EXT 0x3340 +#endif /* EGL_EXT_gl_colorspace_bt2020_pq */ + +#ifndef EGL_EXT_gl_colorspace_display_p3 +#define EGL_EXT_gl_colorspace_display_p3 1 +#define EGL_GL_COLORSPACE_DISPLAY_P3_EXT 0x3363 +#endif /* EGL_EXT_gl_colorspace_display_p3 */ + +#ifndef EGL_EXT_gl_colorspace_display_p3_linear +#define EGL_EXT_gl_colorspace_display_p3_linear 1 +#define EGL_GL_COLORSPACE_DISPLAY_P3_LINEAR_EXT 0x3362 +#endif /* EGL_EXT_gl_colorspace_display_p3_linear */ + +#ifndef EGL_EXT_gl_colorspace_display_p3_passthrough +#define EGL_EXT_gl_colorspace_display_p3_passthrough 1 +#define EGL_GL_COLORSPACE_DISPLAY_P3_PASSTHROUGH_EXT 0x3490 +#endif /* EGL_EXT_gl_colorspace_display_p3_passthrough */ + +#ifndef EGL_EXT_gl_colorspace_scrgb +#define EGL_EXT_gl_colorspace_scrgb 1 +#define EGL_GL_COLORSPACE_SCRGB_EXT 0x3351 +#endif /* EGL_EXT_gl_colorspace_scrgb */ + +#ifndef EGL_EXT_gl_colorspace_scrgb_linear +#define EGL_EXT_gl_colorspace_scrgb_linear 1 +#define EGL_GL_COLORSPACE_SCRGB_LINEAR_EXT 0x3350 +#endif /* EGL_EXT_gl_colorspace_scrgb_linear */ + +#ifndef EGL_EXT_image_dma_buf_import +#define EGL_EXT_image_dma_buf_import 1 +#define EGL_LINUX_DMA_BUF_EXT 0x3270 +#define EGL_LINUX_DRM_FOURCC_EXT 0x3271 +#define EGL_DMA_BUF_PLANE0_FD_EXT 0x3272 +#define EGL_DMA_BUF_PLANE0_OFFSET_EXT 0x3273 +#define EGL_DMA_BUF_PLANE0_PITCH_EXT 0x3274 +#define EGL_DMA_BUF_PLANE1_FD_EXT 0x3275 +#define EGL_DMA_BUF_PLANE1_OFFSET_EXT 0x3276 +#define EGL_DMA_BUF_PLANE1_PITCH_EXT 0x3277 +#define EGL_DMA_BUF_PLANE2_FD_EXT 0x3278 +#define EGL_DMA_BUF_PLANE2_OFFSET_EXT 0x3279 +#define EGL_DMA_BUF_PLANE2_PITCH_EXT 0x327A +#define EGL_YUV_COLOR_SPACE_HINT_EXT 0x327B +#define EGL_SAMPLE_RANGE_HINT_EXT 0x327C +#define EGL_YUV_CHROMA_HORIZONTAL_SITING_HINT_EXT 0x327D +#define EGL_YUV_CHROMA_VERTICAL_SITING_HINT_EXT 0x327E +#define EGL_ITU_REC601_EXT 0x327F +#define EGL_ITU_REC709_EXT 0x3280 +#define EGL_ITU_REC2020_EXT 0x3281 +#define EGL_YUV_FULL_RANGE_EXT 0x3282 +#define EGL_YUV_NARROW_RANGE_EXT 0x3283 +#define EGL_YUV_CHROMA_SITING_0_EXT 0x3284 +#define EGL_YUV_CHROMA_SITING_0_5_EXT 0x3285 +#endif /* EGL_EXT_image_dma_buf_import */ + +#ifndef EGL_EXT_image_dma_buf_import_modifiers +#define EGL_EXT_image_dma_buf_import_modifiers 1 +#define EGL_DMA_BUF_PLANE3_FD_EXT 0x3440 +#define EGL_DMA_BUF_PLANE3_OFFSET_EXT 0x3441 +#define EGL_DMA_BUF_PLANE3_PITCH_EXT 0x3442 +#define EGL_DMA_BUF_PLANE0_MODIFIER_LO_EXT 0x3443 +#define EGL_DMA_BUF_PLANE0_MODIFIER_HI_EXT 0x3444 +#define EGL_DMA_BUF_PLANE1_MODIFIER_LO_EXT 0x3445 +#define EGL_DMA_BUF_PLANE1_MODIFIER_HI_EXT 0x3446 +#define EGL_DMA_BUF_PLANE2_MODIFIER_LO_EXT 0x3447 +#define EGL_DMA_BUF_PLANE2_MODIFIER_HI_EXT 0x3448 +#define EGL_DMA_BUF_PLANE3_MODIFIER_LO_EXT 0x3449 +#define EGL_DMA_BUF_PLANE3_MODIFIER_HI_EXT 0x344A +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDMABUFFORMATSEXTPROC) (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDMABUFMODIFIERSEXTPROC) (EGLDisplay dpy, EGLint format, EGLint max_modifiers, EGLuint64KHR *modifiers, EGLBoolean *external_only, EGLint *num_modifiers); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDmaBufFormatsEXT (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDmaBufModifiersEXT (EGLDisplay dpy, EGLint format, EGLint max_modifiers, EGLuint64KHR *modifiers, EGLBoolean *external_only, EGLint *num_modifiers); +#endif +#endif /* EGL_EXT_image_dma_buf_import_modifiers */ + +#ifndef EGL_EXT_image_gl_colorspace +#define EGL_EXT_image_gl_colorspace 1 +#define EGL_GL_COLORSPACE_DEFAULT_EXT 0x314D +#endif /* EGL_EXT_image_gl_colorspace */ + +#ifndef EGL_EXT_image_implicit_sync_control +#define EGL_EXT_image_implicit_sync_control 1 +#define EGL_IMPORT_SYNC_TYPE_EXT 0x3470 +#define EGL_IMPORT_IMPLICIT_SYNC_EXT 0x3471 +#define EGL_IMPORT_EXPLICIT_SYNC_EXT 0x3472 +#endif /* EGL_EXT_image_implicit_sync_control */ + +#ifndef EGL_EXT_multiview_window +#define EGL_EXT_multiview_window 1 +#define EGL_MULTIVIEW_VIEW_COUNT_EXT 0x3134 +#endif /* EGL_EXT_multiview_window */ + +#ifndef EGL_EXT_output_base +#define EGL_EXT_output_base 1 +typedef void *EGLOutputLayerEXT; +typedef void *EGLOutputPortEXT; +#define EGL_NO_OUTPUT_LAYER_EXT EGL_CAST(EGLOutputLayerEXT,0) +#define EGL_NO_OUTPUT_PORT_EXT EGL_CAST(EGLOutputPortEXT,0) +#define EGL_BAD_OUTPUT_LAYER_EXT 0x322D +#define EGL_BAD_OUTPUT_PORT_EXT 0x322E +#define EGL_SWAP_INTERVAL_EXT 0x322F +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETOUTPUTLAYERSEXTPROC) (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputLayerEXT *layers, EGLint max_layers, EGLint *num_layers); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETOUTPUTPORTSEXTPROC) (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputPortEXT *ports, EGLint max_ports, EGLint *num_ports); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLOUTPUTLAYERATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYOUTPUTLAYERATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYOUTPUTLAYERSTRINGEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLOUTPUTPORTATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYOUTPUTPORTATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYOUTPUTPORTSTRINGEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint name); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglGetOutputLayersEXT (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputLayerEXT *layers, EGLint max_layers, EGLint *num_layers); +EGLAPI EGLBoolean EGLAPIENTRY eglGetOutputPortsEXT (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputPortEXT *ports, EGLint max_ports, EGLint *num_ports); +EGLAPI EGLBoolean EGLAPIENTRY eglOutputLayerAttribEXT (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryOutputLayerAttribEXT (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib *value); +EGLAPI const char *EGLAPIENTRY eglQueryOutputLayerStringEXT (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglOutputPortAttribEXT (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryOutputPortAttribEXT (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib *value); +EGLAPI const char *EGLAPIENTRY eglQueryOutputPortStringEXT (EGLDisplay dpy, EGLOutputPortEXT port, EGLint name); +#endif +#endif /* EGL_EXT_output_base */ + +#ifndef EGL_EXT_output_drm +#define EGL_EXT_output_drm 1 +#define EGL_DRM_CRTC_EXT 0x3234 +#define EGL_DRM_PLANE_EXT 0x3235 +#define EGL_DRM_CONNECTOR_EXT 0x3236 +#endif /* EGL_EXT_output_drm */ + +#ifndef EGL_EXT_output_openwf +#define EGL_EXT_output_openwf 1 +#define EGL_OPENWF_PIPELINE_ID_EXT 0x3238 +#define EGL_OPENWF_PORT_ID_EXT 0x3239 +#endif /* EGL_EXT_output_openwf */ + +#ifndef EGL_EXT_pixel_format_float +#define EGL_EXT_pixel_format_float 1 +#define EGL_COLOR_COMPONENT_TYPE_EXT 0x3339 +#define EGL_COLOR_COMPONENT_TYPE_FIXED_EXT 0x333A +#define EGL_COLOR_COMPONENT_TYPE_FLOAT_EXT 0x333B +#endif /* EGL_EXT_pixel_format_float */ + +#ifndef EGL_EXT_platform_base +#define EGL_EXT_platform_base 1 +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETPLATFORMDISPLAYEXTPROC) (EGLenum platform, void *native_display, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMWINDOWSURFACEEXTPROC) (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMPIXMAPSURFACEEXTPROC) (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLDisplay EGLAPIENTRY eglGetPlatformDisplayEXT (EGLenum platform, void *native_display, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformWindowSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformPixmapSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint *attrib_list); +#endif +#endif /* EGL_EXT_platform_base */ + +#ifndef EGL_EXT_platform_device +#define EGL_EXT_platform_device 1 +#define EGL_PLATFORM_DEVICE_EXT 0x313F +#endif /* EGL_EXT_platform_device */ + +#ifndef EGL_EXT_platform_wayland +#define EGL_EXT_platform_wayland 1 +#define EGL_PLATFORM_WAYLAND_EXT 0x31D8 +#endif /* EGL_EXT_platform_wayland */ + +#ifndef EGL_EXT_platform_x11 +#define EGL_EXT_platform_x11 1 +#define EGL_PLATFORM_X11_EXT 0x31D5 +#define EGL_PLATFORM_X11_SCREEN_EXT 0x31D6 +#endif /* EGL_EXT_platform_x11 */ + +#ifndef EGL_EXT_platform_xcb +#define EGL_EXT_platform_xcb 1 +#define EGL_PLATFORM_XCB_EXT 0x31DC +#define EGL_PLATFORM_XCB_SCREEN_EXT 0x31DE +#endif /* EGL_EXT_platform_xcb */ + +#ifndef EGL_EXT_present_opaque +#define EGL_EXT_present_opaque 1 +#define EGL_PRESENT_OPAQUE_EXT 0x31DF +#endif /* EGL_EXT_present_opaque */ + +#ifndef EGL_EXT_protected_content +#define EGL_EXT_protected_content 1 +#define EGL_PROTECTED_CONTENT_EXT 0x32C0 +#endif /* EGL_EXT_protected_content */ + +#ifndef EGL_EXT_protected_surface +#define EGL_EXT_protected_surface 1 +#endif /* EGL_EXT_protected_surface */ + +#ifndef EGL_EXT_stream_consumer_egloutput +#define EGL_EXT_stream_consumer_egloutput 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMEROUTPUTEXTPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLOutputLayerEXT layer); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerOutputEXT (EGLDisplay dpy, EGLStreamKHR stream, EGLOutputLayerEXT layer); +#endif +#endif /* EGL_EXT_stream_consumer_egloutput */ + +#ifndef EGL_EXT_surface_CTA861_3_metadata +#define EGL_EXT_surface_CTA861_3_metadata 1 +#define EGL_CTA861_3_MAX_CONTENT_LIGHT_LEVEL_EXT 0x3360 +#define EGL_CTA861_3_MAX_FRAME_AVERAGE_LEVEL_EXT 0x3361 +#endif /* EGL_EXT_surface_CTA861_3_metadata */ + +#ifndef EGL_EXT_surface_SMPTE2086_metadata +#define EGL_EXT_surface_SMPTE2086_metadata 1 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_RX_EXT 0x3341 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_RY_EXT 0x3342 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_GX_EXT 0x3343 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_GY_EXT 0x3344 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_BX_EXT 0x3345 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_BY_EXT 0x3346 +#define EGL_SMPTE2086_WHITE_POINT_X_EXT 0x3347 +#define EGL_SMPTE2086_WHITE_POINT_Y_EXT 0x3348 +#define EGL_SMPTE2086_MAX_LUMINANCE_EXT 0x3349 +#define EGL_SMPTE2086_MIN_LUMINANCE_EXT 0x334A +#define EGL_METADATA_SCALING_EXT 50000 +#endif /* EGL_EXT_surface_SMPTE2086_metadata */ + +#ifndef EGL_EXT_surface_compression +#define EGL_EXT_surface_compression 1 +#define EGL_SURFACE_COMPRESSION_EXT 0x34B0 +#define EGL_SURFACE_COMPRESSION_PLANE1_EXT 0x328E +#define EGL_SURFACE_COMPRESSION_PLANE2_EXT 0x328F +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_NONE_EXT 0x34B1 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_DEFAULT_EXT 0x34B2 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_1BPC_EXT 0x34B4 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_2BPC_EXT 0x34B5 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_3BPC_EXT 0x34B6 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_4BPC_EXT 0x34B7 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_5BPC_EXT 0x34B8 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_6BPC_EXT 0x34B9 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_7BPC_EXT 0x34BA +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_8BPC_EXT 0x34BB +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_9BPC_EXT 0x34BC +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_10BPC_EXT 0x34BD +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_11BPC_EXT 0x34BE +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_12BPC_EXT 0x34BF +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSUPPORTEDCOMPRESSIONRATESEXTPROC) (EGLDisplay dpy, EGLConfig config, const EGLAttrib *attrib_list, EGLint *rates, EGLint rate_size, EGLint *num_rates); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySupportedCompressionRatesEXT (EGLDisplay dpy, EGLConfig config, const EGLAttrib *attrib_list, EGLint *rates, EGLint rate_size, EGLint *num_rates); +#endif +#endif /* EGL_EXT_surface_compression */ + +#ifndef EGL_EXT_swap_buffers_with_damage +#define EGL_EXT_swap_buffers_with_damage 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSWITHDAMAGEEXTPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersWithDamageEXT (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#endif +#endif /* EGL_EXT_swap_buffers_with_damage */ + +#ifndef EGL_EXT_sync_reuse +#define EGL_EXT_sync_reuse 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNSIGNALSYNCEXTPROC) (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglUnsignalSyncEXT (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#endif +#endif /* EGL_EXT_sync_reuse */ + +#ifndef EGL_EXT_yuv_surface +#define EGL_EXT_yuv_surface 1 +#define EGL_YUV_ORDER_EXT 0x3301 +#define EGL_YUV_NUMBER_OF_PLANES_EXT 0x3311 +#define EGL_YUV_SUBSAMPLE_EXT 0x3312 +#define EGL_YUV_DEPTH_RANGE_EXT 0x3317 +#define EGL_YUV_CSC_STANDARD_EXT 0x330A +#define EGL_YUV_PLANE_BPP_EXT 0x331A +#define EGL_YUV_BUFFER_EXT 0x3300 +#define EGL_YUV_ORDER_YUV_EXT 0x3302 +#define EGL_YUV_ORDER_YVU_EXT 0x3303 +#define EGL_YUV_ORDER_YUYV_EXT 0x3304 +#define EGL_YUV_ORDER_UYVY_EXT 0x3305 +#define EGL_YUV_ORDER_YVYU_EXT 0x3306 +#define EGL_YUV_ORDER_VYUY_EXT 0x3307 +#define EGL_YUV_ORDER_AYUV_EXT 0x3308 +#define EGL_YUV_SUBSAMPLE_4_2_0_EXT 0x3313 +#define EGL_YUV_SUBSAMPLE_4_2_2_EXT 0x3314 +#define EGL_YUV_SUBSAMPLE_4_4_4_EXT 0x3315 +#define EGL_YUV_DEPTH_RANGE_LIMITED_EXT 0x3318 +#define EGL_YUV_DEPTH_RANGE_FULL_EXT 0x3319 +#define EGL_YUV_CSC_STANDARD_601_EXT 0x330B +#define EGL_YUV_CSC_STANDARD_709_EXT 0x330C +#define EGL_YUV_CSC_STANDARD_2020_EXT 0x330D +#define EGL_YUV_PLANE_BPP_0_EXT 0x331B +#define EGL_YUV_PLANE_BPP_8_EXT 0x331C +#define EGL_YUV_PLANE_BPP_10_EXT 0x331D +#endif /* EGL_EXT_yuv_surface */ + +#ifndef EGL_HI_clientpixmap +#define EGL_HI_clientpixmap 1 +struct EGLClientPixmapHI { + void *pData; + EGLint iWidth; + EGLint iHeight; + EGLint iStride; +}; +#define EGL_CLIENT_PIXMAP_POINTER_HI 0x8F74 +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPIXMAPSURFACEHIPROC) (EGLDisplay dpy, EGLConfig config, struct EGLClientPixmapHI *pixmap); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurfaceHI (EGLDisplay dpy, EGLConfig config, struct EGLClientPixmapHI *pixmap); +#endif +#endif /* EGL_HI_clientpixmap */ + +#ifndef EGL_HI_colorformats +#define EGL_HI_colorformats 1 +#define EGL_COLOR_FORMAT_HI 0x8F70 +#define EGL_COLOR_RGB_HI 0x8F71 +#define EGL_COLOR_RGBA_HI 0x8F72 +#define EGL_COLOR_ARGB_HI 0x8F73 +#endif /* EGL_HI_colorformats */ + +#ifndef EGL_IMG_context_priority +#define EGL_IMG_context_priority 1 +#define EGL_CONTEXT_PRIORITY_LEVEL_IMG 0x3100 +#define EGL_CONTEXT_PRIORITY_HIGH_IMG 0x3101 +#define EGL_CONTEXT_PRIORITY_MEDIUM_IMG 0x3102 +#define EGL_CONTEXT_PRIORITY_LOW_IMG 0x3103 +#endif /* EGL_IMG_context_priority */ + +#ifndef EGL_IMG_image_plane_attribs +#define EGL_IMG_image_plane_attribs 1 +#define EGL_NATIVE_BUFFER_MULTIPLANE_SEPARATE_IMG 0x3105 +#define EGL_NATIVE_BUFFER_PLANE_OFFSET_IMG 0x3106 +#endif /* EGL_IMG_image_plane_attribs */ + +#ifndef EGL_MESA_drm_image +#define EGL_MESA_drm_image 1 +#define EGL_DRM_BUFFER_FORMAT_MESA 0x31D0 +#define EGL_DRM_BUFFER_USE_MESA 0x31D1 +#define EGL_DRM_BUFFER_FORMAT_ARGB32_MESA 0x31D2 +#define EGL_DRM_BUFFER_MESA 0x31D3 +#define EGL_DRM_BUFFER_STRIDE_MESA 0x31D4 +#define EGL_DRM_BUFFER_USE_SCANOUT_MESA 0x00000001 +#define EGL_DRM_BUFFER_USE_SHARE_MESA 0x00000002 +#define EGL_DRM_BUFFER_USE_CURSOR_MESA 0x00000004 +typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEDRMIMAGEMESAPROC) (EGLDisplay dpy, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDRMIMAGEMESAPROC) (EGLDisplay dpy, EGLImageKHR image, EGLint *name, EGLint *handle, EGLint *stride); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLImageKHR EGLAPIENTRY eglCreateDRMImageMESA (EGLDisplay dpy, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglExportDRMImageMESA (EGLDisplay dpy, EGLImageKHR image, EGLint *name, EGLint *handle, EGLint *stride); +#endif +#endif /* EGL_MESA_drm_image */ + +#ifndef EGL_MESA_image_dma_buf_export +#define EGL_MESA_image_dma_buf_export 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDMABUFIMAGEQUERYMESAPROC) (EGLDisplay dpy, EGLImageKHR image, int *fourcc, int *num_planes, EGLuint64KHR *modifiers); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDMABUFIMAGEMESAPROC) (EGLDisplay dpy, EGLImageKHR image, int *fds, EGLint *strides, EGLint *offsets); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglExportDMABUFImageQueryMESA (EGLDisplay dpy, EGLImageKHR image, int *fourcc, int *num_planes, EGLuint64KHR *modifiers); +EGLAPI EGLBoolean EGLAPIENTRY eglExportDMABUFImageMESA (EGLDisplay dpy, EGLImageKHR image, int *fds, EGLint *strides, EGLint *offsets); +#endif +#endif /* EGL_MESA_image_dma_buf_export */ + +#ifndef EGL_MESA_platform_gbm +#define EGL_MESA_platform_gbm 1 +#define EGL_PLATFORM_GBM_MESA 0x31D7 +#endif /* EGL_MESA_platform_gbm */ + +#ifndef EGL_MESA_platform_surfaceless +#define EGL_MESA_platform_surfaceless 1 +#define EGL_PLATFORM_SURFACELESS_MESA 0x31DD +#endif /* EGL_MESA_platform_surfaceless */ + +#ifndef EGL_MESA_query_driver +#define EGL_MESA_query_driver 1 +typedef char *(EGLAPIENTRYP PFNEGLGETDISPLAYDRIVERCONFIGPROC) (EGLDisplay dpy); +typedef const char *(EGLAPIENTRYP PFNEGLGETDISPLAYDRIVERNAMEPROC) (EGLDisplay dpy); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI char *EGLAPIENTRY eglGetDisplayDriverConfig (EGLDisplay dpy); +EGLAPI const char *EGLAPIENTRY eglGetDisplayDriverName (EGLDisplay dpy); +#endif +#endif /* EGL_MESA_query_driver */ + +#ifndef EGL_NOK_swap_region +#define EGL_NOK_swap_region 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSREGIONNOKPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersRegionNOK (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#endif +#endif /* EGL_NOK_swap_region */ + +#ifndef EGL_NOK_swap_region2 +#define EGL_NOK_swap_region2 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSREGION2NOKPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersRegion2NOK (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#endif +#endif /* EGL_NOK_swap_region2 */ + +#ifndef EGL_NOK_texture_from_pixmap +#define EGL_NOK_texture_from_pixmap 1 +#define EGL_Y_INVERTED_NOK 0x307F +#endif /* EGL_NOK_texture_from_pixmap */ + +#ifndef EGL_NV_3dvision_surface +#define EGL_NV_3dvision_surface 1 +#define EGL_AUTO_STEREO_NV 0x3136 +#endif /* EGL_NV_3dvision_surface */ + +#ifndef EGL_NV_context_priority_realtime +#define EGL_NV_context_priority_realtime 1 +#define EGL_CONTEXT_PRIORITY_REALTIME_NV 0x3357 +#endif /* EGL_NV_context_priority_realtime */ + +#ifndef EGL_NV_coverage_sample +#define EGL_NV_coverage_sample 1 +#define EGL_COVERAGE_BUFFERS_NV 0x30E0 +#define EGL_COVERAGE_SAMPLES_NV 0x30E1 +#endif /* EGL_NV_coverage_sample */ + +#ifndef EGL_NV_coverage_sample_resolve +#define EGL_NV_coverage_sample_resolve 1 +#define EGL_COVERAGE_SAMPLE_RESOLVE_NV 0x3131 +#define EGL_COVERAGE_SAMPLE_RESOLVE_DEFAULT_NV 0x3132 +#define EGL_COVERAGE_SAMPLE_RESOLVE_NONE_NV 0x3133 +#endif /* EGL_NV_coverage_sample_resolve */ + +#ifndef EGL_NV_cuda_event +#define EGL_NV_cuda_event 1 +#define EGL_CUDA_EVENT_HANDLE_NV 0x323B +#define EGL_SYNC_CUDA_EVENT_NV 0x323C +#define EGL_SYNC_CUDA_EVENT_COMPLETE_NV 0x323D +#endif /* EGL_NV_cuda_event */ + +#ifndef EGL_NV_depth_nonlinear +#define EGL_NV_depth_nonlinear 1 +#define EGL_DEPTH_ENCODING_NV 0x30E2 +#define EGL_DEPTH_ENCODING_NONE_NV 0 +#define EGL_DEPTH_ENCODING_NONLINEAR_NV 0x30E3 +#endif /* EGL_NV_depth_nonlinear */ + +#ifndef EGL_NV_device_cuda +#define EGL_NV_device_cuda 1 +#define EGL_CUDA_DEVICE_NV 0x323A +#endif /* EGL_NV_device_cuda */ + +#ifndef EGL_NV_native_query +#define EGL_NV_native_query 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEDISPLAYNVPROC) (EGLDisplay dpy, EGLNativeDisplayType *display_id); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEWINDOWNVPROC) (EGLDisplay dpy, EGLSurface surf, EGLNativeWindowType *window); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEPIXMAPNVPROC) (EGLDisplay dpy, EGLSurface surf, EGLNativePixmapType *pixmap); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativeDisplayNV (EGLDisplay dpy, EGLNativeDisplayType *display_id); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativeWindowNV (EGLDisplay dpy, EGLSurface surf, EGLNativeWindowType *window); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativePixmapNV (EGLDisplay dpy, EGLSurface surf, EGLNativePixmapType *pixmap); +#endif +#endif /* EGL_NV_native_query */ + +#ifndef EGL_NV_post_convert_rounding +#define EGL_NV_post_convert_rounding 1 +#endif /* EGL_NV_post_convert_rounding */ + +#ifndef EGL_NV_post_sub_buffer +#define EGL_NV_post_sub_buffer 1 +#define EGL_POST_SUB_BUFFER_SUPPORTED_NV 0x30BE +typedef EGLBoolean (EGLAPIENTRYP PFNEGLPOSTSUBBUFFERNVPROC) (EGLDisplay dpy, EGLSurface surface, EGLint x, EGLint y, EGLint width, EGLint height); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglPostSubBufferNV (EGLDisplay dpy, EGLSurface surface, EGLint x, EGLint y, EGLint width, EGLint height); +#endif +#endif /* EGL_NV_post_sub_buffer */ + +#ifndef EGL_NV_quadruple_buffer +#define EGL_NV_quadruple_buffer 1 +#define EGL_QUADRUPLE_BUFFER_NV 0x3231 +#endif /* EGL_NV_quadruple_buffer */ + +#ifndef EGL_NV_robustness_video_memory_purge +#define EGL_NV_robustness_video_memory_purge 1 +#define EGL_GENERATE_RESET_ON_VIDEO_MEMORY_PURGE_NV 0x334C +#endif /* EGL_NV_robustness_video_memory_purge */ + +#ifndef EGL_NV_stream_consumer_eglimage +#define EGL_NV_stream_consumer_eglimage 1 +#define EGL_STREAM_CONSUMER_IMAGE_NV 0x3373 +#define EGL_STREAM_IMAGE_ADD_NV 0x3374 +#define EGL_STREAM_IMAGE_REMOVE_NV 0x3375 +#define EGL_STREAM_IMAGE_AVAILABLE_NV 0x3376 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMIMAGECONSUMERCONNECTNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLint num_modifiers, const EGLuint64KHR *modifiers, const EGLAttrib *attrib_list); +typedef EGLint (EGLAPIENTRYP PFNEGLQUERYSTREAMCONSUMEREVENTNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLTime timeout, EGLenum *event, EGLAttrib *aux); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMACQUIREIMAGENVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLImage *pImage, EGLSync sync); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMRELEASEIMAGENVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLImage image, EGLSync sync); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamImageConsumerConnectNV (EGLDisplay dpy, EGLStreamKHR stream, EGLint num_modifiers, const EGLuint64KHR *modifiers, const EGLAttrib *attrib_list); +EGLAPI EGLint EGLAPIENTRY eglQueryStreamConsumerEventNV (EGLDisplay dpy, EGLStreamKHR stream, EGLTime timeout, EGLenum *event, EGLAttrib *aux); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamAcquireImageNV (EGLDisplay dpy, EGLStreamKHR stream, EGLImage *pImage, EGLSync sync); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamReleaseImageNV (EGLDisplay dpy, EGLStreamKHR stream, EGLImage image, EGLSync sync); +#endif +#endif /* EGL_NV_stream_consumer_eglimage */ + +#ifndef EGL_NV_stream_consumer_gltexture_yuv +#define EGL_NV_stream_consumer_gltexture_yuv 1 +#define EGL_YUV_PLANE0_TEXTURE_UNIT_NV 0x332C +#define EGL_YUV_PLANE1_TEXTURE_UNIT_NV 0x332D +#define EGL_YUV_PLANE2_TEXTURE_UNIT_NV 0x332E +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERGLTEXTUREEXTERNALATTRIBSNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerGLTextureExternalAttribsNV (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#endif +#endif /* EGL_NV_stream_consumer_gltexture_yuv */ + +#ifndef EGL_NV_stream_cross_display +#define EGL_NV_stream_cross_display 1 +#define EGL_STREAM_CROSS_DISPLAY_NV 0x334E +#endif /* EGL_NV_stream_cross_display */ + +#ifndef EGL_NV_stream_cross_object +#define EGL_NV_stream_cross_object 1 +#define EGL_STREAM_CROSS_OBJECT_NV 0x334D +#endif /* EGL_NV_stream_cross_object */ + +#ifndef EGL_NV_stream_cross_partition +#define EGL_NV_stream_cross_partition 1 +#define EGL_STREAM_CROSS_PARTITION_NV 0x323F +#endif /* EGL_NV_stream_cross_partition */ + +#ifndef EGL_NV_stream_cross_process +#define EGL_NV_stream_cross_process 1 +#define EGL_STREAM_CROSS_PROCESS_NV 0x3245 +#endif /* EGL_NV_stream_cross_process */ + +#ifndef EGL_NV_stream_cross_system +#define EGL_NV_stream_cross_system 1 +#define EGL_STREAM_CROSS_SYSTEM_NV 0x334F +#endif /* EGL_NV_stream_cross_system */ + +#ifndef EGL_NV_stream_dma +#define EGL_NV_stream_dma 1 +#define EGL_STREAM_DMA_NV 0x3371 +#define EGL_STREAM_DMA_SERVER_NV 0x3372 +#endif /* EGL_NV_stream_dma */ + +#ifndef EGL_NV_stream_fifo_next +#define EGL_NV_stream_fifo_next 1 +#define EGL_PENDING_FRAME_NV 0x3329 +#define EGL_STREAM_TIME_PENDING_NV 0x332A +#endif /* EGL_NV_stream_fifo_next */ + +#ifndef EGL_NV_stream_fifo_synchronous +#define EGL_NV_stream_fifo_synchronous 1 +#define EGL_STREAM_FIFO_SYNCHRONOUS_NV 0x3336 +#endif /* EGL_NV_stream_fifo_synchronous */ + +#ifndef EGL_NV_stream_flush +#define EGL_NV_stream_flush 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMFLUSHNVPROC) (EGLDisplay dpy, EGLStreamKHR stream); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamFlushNV (EGLDisplay dpy, EGLStreamKHR stream); +#endif +#endif /* EGL_NV_stream_flush */ + +#ifndef EGL_NV_stream_frame_limits +#define EGL_NV_stream_frame_limits 1 +#define EGL_PRODUCER_MAX_FRAME_HINT_NV 0x3337 +#define EGL_CONSUMER_MAX_FRAME_HINT_NV 0x3338 +#endif /* EGL_NV_stream_frame_limits */ + +#ifndef EGL_NV_stream_metadata +#define EGL_NV_stream_metadata 1 +#define EGL_MAX_STREAM_METADATA_BLOCKS_NV 0x3250 +#define EGL_MAX_STREAM_METADATA_BLOCK_SIZE_NV 0x3251 +#define EGL_MAX_STREAM_METADATA_TOTAL_SIZE_NV 0x3252 +#define EGL_PRODUCER_METADATA_NV 0x3253 +#define EGL_CONSUMER_METADATA_NV 0x3254 +#define EGL_PENDING_METADATA_NV 0x3328 +#define EGL_METADATA0_SIZE_NV 0x3255 +#define EGL_METADATA1_SIZE_NV 0x3256 +#define EGL_METADATA2_SIZE_NV 0x3257 +#define EGL_METADATA3_SIZE_NV 0x3258 +#define EGL_METADATA0_TYPE_NV 0x3259 +#define EGL_METADATA1_TYPE_NV 0x325A +#define EGL_METADATA2_TYPE_NV 0x325B +#define EGL_METADATA3_TYPE_NV 0x325C +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBNVPROC) (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETSTREAMMETADATANVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLint n, EGLint offset, EGLint size, const void *data); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMMETADATANVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum name, EGLint n, EGLint offset, EGLint size, void *data); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribNV (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +EGLAPI EGLBoolean EGLAPIENTRY eglSetStreamMetadataNV (EGLDisplay dpy, EGLStreamKHR stream, EGLint n, EGLint offset, EGLint size, const void *data); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamMetadataNV (EGLDisplay dpy, EGLStreamKHR stream, EGLenum name, EGLint n, EGLint offset, EGLint size, void *data); +#endif +#endif /* EGL_NV_stream_metadata */ + +#ifndef EGL_NV_stream_origin +#define EGL_NV_stream_origin 1 +#define EGL_STREAM_FRAME_ORIGIN_X_NV 0x3366 +#define EGL_STREAM_FRAME_ORIGIN_Y_NV 0x3367 +#define EGL_STREAM_FRAME_MAJOR_AXIS_NV 0x3368 +#define EGL_CONSUMER_AUTO_ORIENTATION_NV 0x3369 +#define EGL_PRODUCER_AUTO_ORIENTATION_NV 0x336A +#define EGL_LEFT_NV 0x336B +#define EGL_RIGHT_NV 0x336C +#define EGL_TOP_NV 0x336D +#define EGL_BOTTOM_NV 0x336E +#define EGL_X_AXIS_NV 0x336F +#define EGL_Y_AXIS_NV 0x3370 +#endif /* EGL_NV_stream_origin */ + +#ifndef EGL_NV_stream_remote +#define EGL_NV_stream_remote 1 +#define EGL_STREAM_STATE_INITIALIZING_NV 0x3240 +#define EGL_STREAM_TYPE_NV 0x3241 +#define EGL_STREAM_PROTOCOL_NV 0x3242 +#define EGL_STREAM_ENDPOINT_NV 0x3243 +#define EGL_STREAM_LOCAL_NV 0x3244 +#define EGL_STREAM_PRODUCER_NV 0x3247 +#define EGL_STREAM_CONSUMER_NV 0x3248 +#define EGL_STREAM_PROTOCOL_FD_NV 0x3246 +#endif /* EGL_NV_stream_remote */ + +#ifndef EGL_NV_stream_reset +#define EGL_NV_stream_reset 1 +#define EGL_SUPPORT_RESET_NV 0x3334 +#define EGL_SUPPORT_REUSE_NV 0x3335 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLRESETSTREAMNVPROC) (EGLDisplay dpy, EGLStreamKHR stream); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglResetStreamNV (EGLDisplay dpy, EGLStreamKHR stream); +#endif +#endif /* EGL_NV_stream_reset */ + +#ifndef EGL_NV_stream_socket +#define EGL_NV_stream_socket 1 +#define EGL_STREAM_PROTOCOL_SOCKET_NV 0x324B +#define EGL_SOCKET_HANDLE_NV 0x324C +#define EGL_SOCKET_TYPE_NV 0x324D +#endif /* EGL_NV_stream_socket */ + +#ifndef EGL_NV_stream_socket_inet +#define EGL_NV_stream_socket_inet 1 +#define EGL_SOCKET_TYPE_INET_NV 0x324F +#endif /* EGL_NV_stream_socket_inet */ + +#ifndef EGL_NV_stream_socket_unix +#define EGL_NV_stream_socket_unix 1 +#define EGL_SOCKET_TYPE_UNIX_NV 0x324E +#endif /* EGL_NV_stream_socket_unix */ + +#ifndef EGL_NV_stream_sync +#define EGL_NV_stream_sync 1 +#define EGL_SYNC_NEW_FRAME_NV 0x321F +typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESTREAMSYNCNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum type, const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateStreamSyncNV (EGLDisplay dpy, EGLStreamKHR stream, EGLenum type, const EGLint *attrib_list); +#endif +#endif /* EGL_NV_stream_sync */ + +#ifndef EGL_NV_sync +#define EGL_NV_sync 1 +typedef void *EGLSyncNV; +typedef khronos_utime_nanoseconds_t EGLTimeNV; +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE_NV 0x30E6 +#define EGL_SYNC_STATUS_NV 0x30E7 +#define EGL_SIGNALED_NV 0x30E8 +#define EGL_UNSIGNALED_NV 0x30E9 +#define EGL_SYNC_FLUSH_COMMANDS_BIT_NV 0x0001 +#define EGL_FOREVER_NV 0xFFFFFFFFFFFFFFFFull +#define EGL_ALREADY_SIGNALED_NV 0x30EA +#define EGL_TIMEOUT_EXPIRED_NV 0x30EB +#define EGL_CONDITION_SATISFIED_NV 0x30EC +#define EGL_SYNC_TYPE_NV 0x30ED +#define EGL_SYNC_CONDITION_NV 0x30EE +#define EGL_SYNC_FENCE_NV 0x30EF +#define EGL_NO_SYNC_NV EGL_CAST(EGLSyncNV,0) +typedef EGLSyncNV (EGLAPIENTRYP PFNEGLCREATEFENCESYNCNVPROC) (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCNVPROC) (EGLSyncNV sync); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLFENCENVPROC) (EGLSyncNV sync); +typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCNVPROC) (EGLSyncNV sync, EGLint flags, EGLTimeNV timeout); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSIGNALSYNCNVPROC) (EGLSyncNV sync, EGLenum mode); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBNVPROC) (EGLSyncNV sync, EGLint attribute, EGLint *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncNV EGLAPIENTRY eglCreateFenceSyncNV (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncNV (EGLSyncNV sync); +EGLAPI EGLBoolean EGLAPIENTRY eglFenceNV (EGLSyncNV sync); +EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncNV (EGLSyncNV sync, EGLint flags, EGLTimeNV timeout); +EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncNV (EGLSyncNV sync, EGLenum mode); +EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribNV (EGLSyncNV sync, EGLint attribute, EGLint *value); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_NV_sync */ + +#ifndef EGL_NV_system_time +#define EGL_NV_system_time 1 +typedef khronos_utime_nanoseconds_t EGLuint64NV; +#ifdef KHRONOS_SUPPORT_INT64 +typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMEFREQUENCYNVPROC) (void); +typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMENVPROC) (void); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeFrequencyNV (void); +EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeNV (void); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_NV_system_time */ + +#ifndef EGL_NV_triple_buffer +#define EGL_NV_triple_buffer 1 +#define EGL_TRIPLE_BUFFER_NV 0x3230 +#endif /* EGL_NV_triple_buffer */ + +#ifndef EGL_TIZEN_image_native_buffer +#define EGL_TIZEN_image_native_buffer 1 +#define EGL_NATIVE_BUFFER_TIZEN 0x32A0 +#endif /* EGL_TIZEN_image_native_buffer */ + +#ifndef EGL_TIZEN_image_native_surface +#define EGL_TIZEN_image_native_surface 1 +#define EGL_NATIVE_SURFACE_TIZEN 0x32A1 +#endif /* EGL_TIZEN_image_native_surface */ + +#ifndef EGL_WL_bind_wayland_display +#define EGL_WL_bind_wayland_display 1 +#define PFNEGLBINDWAYLANDDISPLAYWL PFNEGLBINDWAYLANDDISPLAYWLPROC +#define PFNEGLUNBINDWAYLANDDISPLAYWL PFNEGLUNBINDWAYLANDDISPLAYWLPROC +#define PFNEGLQUERYWAYLANDBUFFERWL PFNEGLQUERYWAYLANDBUFFERWLPROC +struct wl_display; +struct wl_resource; +#define EGL_WAYLAND_BUFFER_WL 0x31D5 +#define EGL_WAYLAND_PLANE_WL 0x31D6 +#define EGL_TEXTURE_Y_U_V_WL 0x31D7 +#define EGL_TEXTURE_Y_UV_WL 0x31D8 +#define EGL_TEXTURE_Y_XUXV_WL 0x31D9 +#define EGL_TEXTURE_EXTERNAL_WL 0x31DA +#define EGL_WAYLAND_Y_INVERTED_WL 0x31DB +typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDWAYLANDDISPLAYWLPROC) (EGLDisplay dpy, struct wl_display *display); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNBINDWAYLANDDISPLAYWLPROC) (EGLDisplay dpy, struct wl_display *display); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYWAYLANDBUFFERWLPROC) (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglBindWaylandDisplayWL (EGLDisplay dpy, struct wl_display *display); +EGLAPI EGLBoolean EGLAPIENTRY eglUnbindWaylandDisplayWL (EGLDisplay dpy, struct wl_display *display); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryWaylandBufferWL (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value); +#endif +#endif /* EGL_WL_bind_wayland_display */ + +#ifndef EGL_WL_create_wayland_buffer_from_image +#define EGL_WL_create_wayland_buffer_from_image 1 +#define PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWL PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWLPROC +struct wl_buffer; +typedef struct wl_buffer *(EGLAPIENTRYP PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWLPROC) (EGLDisplay dpy, EGLImageKHR image); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI struct wl_buffer *EGLAPIENTRY eglCreateWaylandBufferFromImageWL (EGLDisplay dpy, EGLImageKHR image); +#endif +#endif /* EGL_WL_create_wayland_buffer_from_image */ + +#ifdef __cplusplus +} +#endif + +#endif /* __eglext_h_ */ + +#endif /* _MSC_VER */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_endian.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_endian.h new file mode 100644 index 0000000..2a9b8a3 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_endian.h @@ -0,0 +1,645 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryEndian + * + * Functions converting endian-specific values to different byte orders. + * + * These functions either unconditionally swap byte order (SDL_Swap16, + * SDL_Swap32, SDL_Swap64, SDL_SwapFloat), or they swap to/from the system's + * native byte order (SDL_Swap16LE, SDL_Swap16BE, SDL_Swap32LE, SDL_Swap32BE, + * SDL_Swap32LE, SDL_Swap32BE, SDL_SwapFloatLE, SDL_SwapFloatBE). In the + * latter case, the functionality is provided by macros that become no-ops if + * a swap isn't necessary: on an x86 (littleendian) processor, SDL_Swap32LE + * does nothing, but SDL_Swap32BE reverses the bytes of the data. On a PowerPC + * processor (bigendian), the macros behavior is reversed. + * + * The swap routines are inline functions, and attempt to use compiler + * intrinsics, inline assembly, and other magic to make byteswapping + * efficient. + */ + +#ifndef SDL_endian_h_ +#define SDL_endian_h_ + +#include + +#if defined(_MSC_VER) && (_MSC_VER >= 1400) +/* As of Clang 11, '_m_prefetchw' is conflicting with the winnt.h's version, + so we define the needed '_m_prefetch' here as a pseudo-header, until the issue is fixed. */ +#ifdef __clang__ +#ifndef __PRFCHWINTRIN_H +#define __PRFCHWINTRIN_H +static __inline__ void __attribute__((__always_inline__, __nodebug__)) +_m_prefetch(void *__P) +{ + __builtin_prefetch(__P, 0, 3 /* _MM_HINT_T0 */); +} +#endif /* __PRFCHWINTRIN_H */ +#endif /* __clang__ */ + +#include +#endif + +/** + * \name The two types of endianness + */ +/* @{ */ + + +/** + * A value to represent littleendian byteorder. + * + * This is used with the preprocessor macro SDL_BYTEORDER, to determine a + * platform's byte ordering: + * + * ```c + * #if SDL_BYTEORDER == SDL_LIL_ENDIAN + * SDL_Log("This system is littleendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BYTEORDER + * \sa SDL_BIG_ENDIAN + */ +#define SDL_LIL_ENDIAN 1234 + +/** + * A value to represent bigendian byteorder. + * + * This is used with the preprocessor macro SDL_BYTEORDER, to determine a + * platform's byte ordering: + * + * ```c + * #if SDL_BYTEORDER == SDL_BIG_ENDIAN + * SDL_Log("This system is bigendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BYTEORDER + * \sa SDL_LIL_ENDIAN + */ +#define SDL_BIG_ENDIAN 4321 + +/* @} */ + +#ifndef SDL_BYTEORDER +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro that reports the target system's byte order. + * + * This is set to either SDL_LIL_ENDIAN or SDL_BIG_ENDIAN (and maybe other + * values in the future, if something else becomes popular). This can be + * tested with the preprocessor, so decisions can be made at compile time. + * + * ```c + * #if SDL_BYTEORDER == SDL_BIG_ENDIAN + * SDL_Log("This system is bigendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LIL_ENDIAN + * \sa SDL_BIG_ENDIAN + */ +#define SDL_BYTEORDER SDL_LIL_ENDIAN___or_maybe___SDL_BIG_ENDIAN +#elif defined(SDL_PLATFORM_LINUX) +#include +#define SDL_BYTEORDER __BYTE_ORDER +#elif defined(SDL_PLATFORM_SOLARIS) +#include +#if defined(_LITTLE_ENDIAN) +#define SDL_BYTEORDER SDL_LIL_ENDIAN +#elif defined(_BIG_ENDIAN) +#define SDL_BYTEORDER SDL_BIG_ENDIAN +#else +#error Unsupported endianness +#endif +#elif defined(SDL_PLATFORM_OPENBSD) || defined(__DragonFly__) +#include +#define SDL_BYTEORDER BYTE_ORDER +#elif defined(SDL_PLATFORM_FREEBSD) || defined(SDL_PLATFORM_NETBSD) +#include +#define SDL_BYTEORDER BYTE_ORDER +/* predefs from newer gcc and clang versions: */ +#elif defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__) && defined(__BYTE_ORDER__) +#if (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) +#define SDL_BYTEORDER SDL_LIL_ENDIAN +#elif (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__) +#define SDL_BYTEORDER SDL_BIG_ENDIAN +#else +#error Unsupported endianness +#endif /**/ +#else +#if defined(__hppa__) || \ + defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \ + (defined(__MIPS__) && defined(__MIPSEB__)) || \ + defined(__ppc__) || defined(__POWERPC__) || defined(__powerpc__) || defined(__PPC__) || \ + defined(__sparc__) || defined(__sparc) +#define SDL_BYTEORDER SDL_BIG_ENDIAN +#else +#define SDL_BYTEORDER SDL_LIL_ENDIAN +#endif +#endif /* SDL_PLATFORM_LINUX */ +#endif /* !SDL_BYTEORDER */ + +#ifndef SDL_FLOATWORDORDER +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro that reports the target system's floating point word order. + * + * This is set to either SDL_LIL_ENDIAN or SDL_BIG_ENDIAN (and maybe other + * values in the future, if something else becomes popular). This can be + * tested with the preprocessor, so decisions can be made at compile time. + * + * ```c + * #if SDL_FLOATWORDORDER == SDL_BIG_ENDIAN + * SDL_Log("This system's floats are bigendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LIL_ENDIAN + * \sa SDL_BIG_ENDIAN + */ +#define SDL_FLOATWORDORDER SDL_LIL_ENDIAN___or_maybe___SDL_BIG_ENDIAN +/* predefs from newer gcc versions: */ +#elif defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__) && defined(__FLOAT_WORD_ORDER__) +#if (__FLOAT_WORD_ORDER__ == __ORDER_LITTLE_ENDIAN__) +#define SDL_FLOATWORDORDER SDL_LIL_ENDIAN +#elif (__FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__) +#define SDL_FLOATWORDORDER SDL_BIG_ENDIAN +#else +#error Unsupported endianness +#endif /**/ +#elif defined(__MAVERICK__) +/* For Maverick, float words are always little-endian. */ +#define SDL_FLOATWORDORDER SDL_LIL_ENDIAN +#elif (defined(__arm__) || defined(__thumb__)) && !defined(__VFP_FP__) && !defined(__ARM_EABI__) +/* For FPA, float words are always big-endian. */ +#define SDL_FLOATWORDORDER SDL_BIG_ENDIAN +#else +/* By default, assume that floats words follow the memory system mode. */ +#define SDL_FLOATWORDORDER SDL_BYTEORDER +#endif /* __FLOAT_WORD_ORDER__ */ +#endif /* !SDL_FLOATWORDORDER */ + + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* various modern compilers may have builtin swap */ +#if defined(__GNUC__) || defined(__clang__) +# define HAS_BUILTIN_BSWAP16 (SDL_HAS_BUILTIN(__builtin_bswap16)) || \ + (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)) +# define HAS_BUILTIN_BSWAP32 (SDL_HAS_BUILTIN(__builtin_bswap32)) || \ + (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) +# define HAS_BUILTIN_BSWAP64 (SDL_HAS_BUILTIN(__builtin_bswap64)) || \ + (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) + + /* this one is broken */ +# define HAS_BROKEN_BSWAP (__GNUC__ == 2 && __GNUC_MINOR__ <= 95) +#else +# define HAS_BUILTIN_BSWAP16 0 +# define HAS_BUILTIN_BSWAP32 0 +# define HAS_BUILTIN_BSWAP64 0 +# define HAS_BROKEN_BSWAP 0 +#endif + +/* Byte swap 16-bit integer. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if HAS_BUILTIN_BSWAP16 +#define SDL_Swap16(x) __builtin_bswap16(x) +#elif (defined(_MSC_VER) && (_MSC_VER >= 1400)) && !defined(__ICL) +#pragma intrinsic(_byteswap_ushort) +#define SDL_Swap16(x) _byteswap_ushort(x) +#elif defined(__i386__) && !HAS_BROKEN_BSWAP +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + __asm__("xchgb %b0,%h0": "=q"(x):"0"(x)); + return x; +} +#elif defined(__x86_64__) +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + __asm__("xchgb %b0,%h0": "=Q"(x):"0"(x)); + return x; +} +#elif (defined(__powerpc__) || defined(__ppc__)) +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + int result; + + __asm__("rlwimi %0,%2,8,16,23": "=&r"(result):"0"(x >> 8), "r"(x)); + return (Uint16)result; +} +#elif (defined(__m68k__) && !defined(__mcoldfire__)) +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + __asm__("rorw #8,%0": "=d"(x): "0"(x):"cc"); + return x; +} +#elif defined(__WATCOMC__) && defined(__386__) +extern __inline Uint16 SDL_Swap16(Uint16); +#pragma aux SDL_Swap16 = \ + "xchg al, ah" \ + parm [ax] \ + modify [ax]; +#else +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + return SDL_static_cast(Uint16, ((x << 8) | (x >> 8))); +} +#endif +#endif + +/* Byte swap 32-bit integer. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if HAS_BUILTIN_BSWAP32 +#define SDL_Swap32(x) __builtin_bswap32(x) +#elif (defined(_MSC_VER) && (_MSC_VER >= 1400)) && !defined(__ICL) +#pragma intrinsic(_byteswap_ulong) +#define SDL_Swap32(x) _byteswap_ulong(x) +#elif defined(__i386__) && !HAS_BROKEN_BSWAP +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + __asm__("bswap %0": "=r"(x):"0"(x)); + return x; +} +#elif defined(__x86_64__) +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + __asm__("bswapl %0": "=r"(x):"0"(x)); + return x; +} +#elif (defined(__powerpc__) || defined(__ppc__)) +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + Uint32 result; + + __asm__("rlwimi %0,%2,24,16,23": "=&r"(result): "0" (x>>24), "r"(x)); + __asm__("rlwimi %0,%2,8,8,15" : "=&r"(result): "0" (result), "r"(x)); + __asm__("rlwimi %0,%2,24,0,7" : "=&r"(result): "0" (result), "r"(x)); + return result; +} +#elif (defined(__m68k__) && !defined(__mcoldfire__)) +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + __asm__("rorw #8,%0\n\tswap %0\n\trorw #8,%0": "=d"(x): "0"(x):"cc"); + return x; +} +#elif defined(__WATCOMC__) && defined(__386__) +extern __inline Uint32 SDL_Swap32(Uint32); +#pragma aux SDL_Swap32 = \ + "bswap eax" \ + parm [eax] \ + modify [eax]; +#else +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + return SDL_static_cast(Uint32, ((x << 24) | ((x << 8) & 0x00FF0000) | + ((x >> 8) & 0x0000FF00) | (x >> 24))); +} +#endif +#endif + +/* Byte swap 64-bit integer. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if HAS_BUILTIN_BSWAP64 +#define SDL_Swap64(x) __builtin_bswap64(x) +#elif (defined(_MSC_VER) && (_MSC_VER >= 1400)) && !defined(__ICL) +#pragma intrinsic(_byteswap_uint64) +#define SDL_Swap64(x) _byteswap_uint64(x) +#elif defined(__i386__) && !HAS_BROKEN_BSWAP +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) +{ + union { + struct { + Uint32 a, b; + } s; + Uint64 u; + } v; + v.u = x; + __asm__("bswapl %0 ; bswapl %1 ; xchgl %0,%1" + : "=r"(v.s.a), "=r"(v.s.b) + : "0" (v.s.a), "1"(v.s.b)); + return v.u; +} +#elif defined(__x86_64__) +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) +{ + __asm__("bswapq %0": "=r"(x):"0"(x)); + return x; +} +#elif defined(__WATCOMC__) && defined(__386__) +extern __inline Uint64 SDL_Swap64(Uint64); +#pragma aux SDL_Swap64 = \ + "bswap eax" \ + "bswap edx" \ + "xchg eax,edx" \ + parm [eax edx] \ + modify [eax edx]; +#else +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) +{ + Uint32 hi, lo; + + /* Separate into high and low 32-bit values and swap them */ + lo = SDL_static_cast(Uint32, x & 0xFFFFFFFF); + x >>= 32; + hi = SDL_static_cast(Uint32, x & 0xFFFFFFFF); + x = SDL_Swap32(lo); + x <<= 32; + x |= SDL_Swap32(hi); + return (x); +} +#endif +#endif + +/** + * Byte-swap a floating point number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_SwapFloatLE or + * SDL_SwapFloatBE instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns x, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE float SDL_SwapFloat(float x) +{ + union { + float f; + Uint32 ui32; + } swapper; + swapper.f = x; + swapper.ui32 = SDL_Swap32(swapper.ui32); + return swapper.f; +} + +/* remove extra macros */ +#undef HAS_BROKEN_BSWAP +#undef HAS_BUILTIN_BSWAP16 +#undef HAS_BUILTIN_BSWAP32 +#undef HAS_BUILTIN_BSWAP64 + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Byte-swap an unsigned 16-bit number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_Swap16LE or SDL_Swap16BE + * instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns `x`, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) { return x_but_byteswapped; } + +/** + * Byte-swap an unsigned 32-bit number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_Swap32LE or SDL_Swap32BE + * instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns `x`, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) { return x_but_byteswapped; } + +/** + * Byte-swap an unsigned 64-bit number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_Swap64LE or SDL_Swap64BE + * instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns `x`, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) { return x_but_byteswapped; } + +/** + * Swap a 16-bit value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap16LE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 32-bit value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap32LE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 64-bit value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap64LE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a floating point value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SwapFloatLE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 16-bit value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap16BE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 32-bit value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap32BE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 64-bit value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap64BE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a floating point value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SwapFloatBE(x) SwapOnlyIfNecessary(x) + +#elif SDL_BYTEORDER == SDL_LIL_ENDIAN +#define SDL_Swap16LE(x) (x) +#define SDL_Swap32LE(x) (x) +#define SDL_Swap64LE(x) (x) +#define SDL_SwapFloatLE(x) (x) +#define SDL_Swap16BE(x) SDL_Swap16(x) +#define SDL_Swap32BE(x) SDL_Swap32(x) +#define SDL_Swap64BE(x) SDL_Swap64(x) +#define SDL_SwapFloatBE(x) SDL_SwapFloat(x) +#else +#define SDL_Swap16LE(x) SDL_Swap16(x) +#define SDL_Swap32LE(x) SDL_Swap32(x) +#define SDL_Swap64LE(x) SDL_Swap64(x) +#define SDL_SwapFloatLE(x) SDL_SwapFloat(x) +#define SDL_Swap16BE(x) (x) +#define SDL_Swap32BE(x) (x) +#define SDL_Swap64BE(x) (x) +#define SDL_SwapFloatBE(x) (x) +#endif + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_endian_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_error.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_error.h new file mode 100644 index 0000000..934967c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_error.h @@ -0,0 +1,226 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryError + * + * Simple error message routines for SDL. + * + * Most apps will interface with these APIs in exactly one function: when + * almost any SDL function call reports failure, you can get a human-readable + * string of the problem from SDL_GetError(). + * + * These strings are maintained per-thread, and apps are welcome to set their + * own errors, which is popular when building libraries on top of SDL for + * other apps to consume. These strings are set by calling SDL_SetError(). + * + * A common usage pattern is to have a function that returns true for success + * and false for failure, and do this when something fails: + * + * ```c + * if (something_went_wrong) { + * return SDL_SetError("The thing broke in this specific way: %d", errcode); + * } + * ``` + * + * It's also common to just return `false` in this case if the failing thing + * is known to call SDL_SetError(), so errors simply propagate through. + */ + +#ifndef SDL_error_h_ +#define SDL_error_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Public functions */ + + +/** + * Set the SDL error message for the current thread. + * + * Calling this function will replace any previous error message that was set. + * + * This function always returns false, since SDL frequently uses false to + * signify a failing result, leading to this idiom: + * + * ```c + * if (error_code) { + * return SDL_SetError("This operation has failed: %d", error_code); + * } + * ``` + * + * \param fmt a printf()-style message format string. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * \returns false. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearError + * \sa SDL_GetError + * \sa SDL_SetErrorV + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetError(SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(1); + +/** + * Set the SDL error message for the current thread. + * + * Calling this function will replace any previous error message that was set. + * + * \param fmt a printf()-style message format string. + * \param ap a variable argument list. + * \returns false. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearError + * \sa SDL_GetError + * \sa SDL_SetError + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetErrorV(SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(1); + +/** + * Set an error indicating that memory allocation failed. + * + * This function does not do any memory allocation. + * + * \returns false. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_OutOfMemory(void); + +/** + * Retrieve a message about the last error that occurred on the current + * thread. + * + * It is possible for multiple errors to occur before calling SDL_GetError(). + * Only the last error is returned. + * + * The message is only applicable when an SDL function has signaled an error. + * You must check the return values of SDL function calls to determine when to + * appropriately call SDL_GetError(). You should *not* use the results of + * SDL_GetError() to decide if an error has occurred! Sometimes SDL will set + * an error string even when reporting success. + * + * SDL will *not* clear the error string for successful API calls. You *must* + * check return values for failure cases before you can assume the error + * string applies. + * + * Error strings are set per-thread, so an error set in a different thread + * will not interfere with the current thread's operation. + * + * The returned value is a thread-local string which will remain valid until + * the current thread's error string is changed. The caller should make a copy + * if the value is needed after the next SDL API call. + * + * \returns a message with information about the specific error that occurred, + * or an empty string if there hasn't been an error message set since + * the last call to SDL_ClearError(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearError + * \sa SDL_SetError + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetError(void); + +/** + * Clear any previous error message for this thread. + * + * \returns true. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetError + * \sa SDL_SetError + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearError(void); + +/** + * \name Internal error functions + * + * \internal + * Private error reporting function - used internally. + */ +/* @{ */ + +/** + * A macro to standardize error reporting on unsupported operations. + * + * This simply calls SDL_SetError() with a standardized error string, for + * convenience, consistency, and clarity. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Unsupported() SDL_SetError("That operation is not supported") + +/** + * A macro to standardize error reporting on unsupported operations. + * + * This simply calls SDL_SetError() with a standardized error string, for + * convenience, consistency, and clarity. + * + * A common usage pattern inside SDL is this: + * + * ```c + * bool MyFunction(const char *str) { + * if (!str) { + * return SDL_InvalidParamError("str"); // returns false. + * } + * DoSomething(str); + * return true; + * } + * ``` + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_InvalidParamError(param) SDL_SetError("Parameter '%s' is invalid", (param)) + +/* @} *//* Internal error functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_error_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_events.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_events.h new file mode 100644 index 0000000..d267f05 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_events.h @@ -0,0 +1,1576 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryEvents + * + * Event queue management. + * + * It's extremely common--often required--that an app deal with SDL's event + * queue. Almost all useful information about interactions with the real world + * flow through here: the user interacting with the computer and app, hardware + * coming and going, the system changing in some way, etc. + * + * An app generally takes a moment, perhaps at the start of a new frame, to + * examine any events that have occured since the last time and process or + * ignore them. This is generally done by calling SDL_PollEvent() in a loop + * until it returns false (or, if using the main callbacks, events are + * provided one at a time in calls to SDL_AppEvent() before the next call to + * SDL_AppIterate(); in this scenario, the app does not call SDL_PollEvent() + * at all). + * + * There is other forms of control, too: SDL_PeepEvents() has more + * functionality at the cost of more complexity, and SDL_WaitEvent() can block + * the process until something interesting happens, which might be beneficial + * for certain types of programs on low-power hardware. One may also call + * SDL_AddEventWatch() to set a callback when new events arrive. + * + * The app is free to generate their own events, too: SDL_PushEvent allows the + * app to put events onto the queue for later retrieval; SDL_RegisterEvents + * can guarantee that these events have a type that isn't in use by other + * parts of the system. + */ + +#ifndef SDL_events_h_ +#define SDL_events_h_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* General keyboard/mouse/pen state definitions */ + +/** + * The types of events that can be delivered. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_EventType +{ + SDL_EVENT_FIRST = 0, /**< Unused (do not remove) */ + + /* Application events */ + SDL_EVENT_QUIT = 0x100, /**< User-requested quit */ + + /* These application events have special meaning on iOS and Android, see README-ios.md and README-android.md for details */ + SDL_EVENT_TERMINATING, /**< The application is being terminated by the OS. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationWillTerminate() + Called on Android in onDestroy() + */ + SDL_EVENT_LOW_MEMORY, /**< The application is low on memory, free memory if possible. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationDidReceiveMemoryWarning() + Called on Android in onTrimMemory() + */ + SDL_EVENT_WILL_ENTER_BACKGROUND, /**< The application is about to enter the background. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationWillResignActive() + Called on Android in onPause() + */ + SDL_EVENT_DID_ENTER_BACKGROUND, /**< The application did enter the background and may not get CPU for some time. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationDidEnterBackground() + Called on Android in onPause() + */ + SDL_EVENT_WILL_ENTER_FOREGROUND, /**< The application is about to enter the foreground. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationWillEnterForeground() + Called on Android in onResume() + */ + SDL_EVENT_DID_ENTER_FOREGROUND, /**< The application is now interactive. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationDidBecomeActive() + Called on Android in onResume() + */ + + SDL_EVENT_LOCALE_CHANGED, /**< The user's locale preferences have changed. */ + + SDL_EVENT_SYSTEM_THEME_CHANGED, /**< The system theme changed */ + + /* Display events */ + /* 0x150 was SDL_DISPLAYEVENT, reserve the number for sdl2-compat */ + SDL_EVENT_DISPLAY_ORIENTATION = 0x151, /**< Display orientation has changed to data1 */ + SDL_EVENT_DISPLAY_ADDED, /**< Display has been added to the system */ + SDL_EVENT_DISPLAY_REMOVED, /**< Display has been removed from the system */ + SDL_EVENT_DISPLAY_MOVED, /**< Display has changed position */ + SDL_EVENT_DISPLAY_DESKTOP_MODE_CHANGED, /**< Display has changed desktop mode */ + SDL_EVENT_DISPLAY_CURRENT_MODE_CHANGED, /**< Display has changed current mode */ + SDL_EVENT_DISPLAY_CONTENT_SCALE_CHANGED, /**< Display has changed content scale */ + SDL_EVENT_DISPLAY_FIRST = SDL_EVENT_DISPLAY_ORIENTATION, + SDL_EVENT_DISPLAY_LAST = SDL_EVENT_DISPLAY_CONTENT_SCALE_CHANGED, + + /* Window events */ + /* 0x200 was SDL_WINDOWEVENT, reserve the number for sdl2-compat */ + /* 0x201 was SDL_SYSWMEVENT, reserve the number for sdl2-compat */ + SDL_EVENT_WINDOW_SHOWN = 0x202, /**< Window has been shown */ + SDL_EVENT_WINDOW_HIDDEN, /**< Window has been hidden */ + SDL_EVENT_WINDOW_EXPOSED, /**< Window has been exposed and should be redrawn, and can be redrawn directly from event watchers for this event */ + SDL_EVENT_WINDOW_MOVED, /**< Window has been moved to data1, data2 */ + SDL_EVENT_WINDOW_RESIZED, /**< Window has been resized to data1xdata2 */ + SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED,/**< The pixel size of the window has changed to data1xdata2 */ + SDL_EVENT_WINDOW_METAL_VIEW_RESIZED,/**< The pixel size of a Metal view associated with the window has changed */ + SDL_EVENT_WINDOW_MINIMIZED, /**< Window has been minimized */ + SDL_EVENT_WINDOW_MAXIMIZED, /**< Window has been maximized */ + SDL_EVENT_WINDOW_RESTORED, /**< Window has been restored to normal size and position */ + SDL_EVENT_WINDOW_MOUSE_ENTER, /**< Window has gained mouse focus */ + SDL_EVENT_WINDOW_MOUSE_LEAVE, /**< Window has lost mouse focus */ + SDL_EVENT_WINDOW_FOCUS_GAINED, /**< Window has gained keyboard focus */ + SDL_EVENT_WINDOW_FOCUS_LOST, /**< Window has lost keyboard focus */ + SDL_EVENT_WINDOW_CLOSE_REQUESTED, /**< The window manager requests that the window be closed */ + SDL_EVENT_WINDOW_HIT_TEST, /**< Window had a hit test that wasn't SDL_HITTEST_NORMAL */ + SDL_EVENT_WINDOW_ICCPROF_CHANGED, /**< The ICC profile of the window's display has changed */ + SDL_EVENT_WINDOW_DISPLAY_CHANGED, /**< Window has been moved to display data1 */ + SDL_EVENT_WINDOW_DISPLAY_SCALE_CHANGED, /**< Window display scale has been changed */ + SDL_EVENT_WINDOW_SAFE_AREA_CHANGED, /**< The window safe area has been changed */ + SDL_EVENT_WINDOW_OCCLUDED, /**< The window has been occluded */ + SDL_EVENT_WINDOW_ENTER_FULLSCREEN, /**< The window has entered fullscreen mode */ + SDL_EVENT_WINDOW_LEAVE_FULLSCREEN, /**< The window has left fullscreen mode */ + SDL_EVENT_WINDOW_DESTROYED, /**< The window with the associated ID is being or has been destroyed. If this message is being handled + in an event watcher, the window handle is still valid and can still be used to retrieve any properties + associated with the window. Otherwise, the handle has already been destroyed and all resources + associated with it are invalid */ + SDL_EVENT_WINDOW_HDR_STATE_CHANGED, /**< Window HDR properties have changed */ + SDL_EVENT_WINDOW_FIRST = SDL_EVENT_WINDOW_SHOWN, + SDL_EVENT_WINDOW_LAST = SDL_EVENT_WINDOW_HDR_STATE_CHANGED, + + /* Keyboard events */ + SDL_EVENT_KEY_DOWN = 0x300, /**< Key pressed */ + SDL_EVENT_KEY_UP, /**< Key released */ + SDL_EVENT_TEXT_EDITING, /**< Keyboard text editing (composition) */ + SDL_EVENT_TEXT_INPUT, /**< Keyboard text input */ + SDL_EVENT_KEYMAP_CHANGED, /**< Keymap changed due to a system event such as an + input language or keyboard layout change. */ + SDL_EVENT_KEYBOARD_ADDED, /**< A new keyboard has been inserted into the system */ + SDL_EVENT_KEYBOARD_REMOVED, /**< A keyboard has been removed */ + SDL_EVENT_TEXT_EDITING_CANDIDATES, /**< Keyboard text editing candidates */ + + /* Mouse events */ + SDL_EVENT_MOUSE_MOTION = 0x400, /**< Mouse moved */ + SDL_EVENT_MOUSE_BUTTON_DOWN, /**< Mouse button pressed */ + SDL_EVENT_MOUSE_BUTTON_UP, /**< Mouse button released */ + SDL_EVENT_MOUSE_WHEEL, /**< Mouse wheel motion */ + SDL_EVENT_MOUSE_ADDED, /**< A new mouse has been inserted into the system */ + SDL_EVENT_MOUSE_REMOVED, /**< A mouse has been removed */ + + /* Joystick events */ + SDL_EVENT_JOYSTICK_AXIS_MOTION = 0x600, /**< Joystick axis motion */ + SDL_EVENT_JOYSTICK_BALL_MOTION, /**< Joystick trackball motion */ + SDL_EVENT_JOYSTICK_HAT_MOTION, /**< Joystick hat position change */ + SDL_EVENT_JOYSTICK_BUTTON_DOWN, /**< Joystick button pressed */ + SDL_EVENT_JOYSTICK_BUTTON_UP, /**< Joystick button released */ + SDL_EVENT_JOYSTICK_ADDED, /**< A new joystick has been inserted into the system */ + SDL_EVENT_JOYSTICK_REMOVED, /**< An opened joystick has been removed */ + SDL_EVENT_JOYSTICK_BATTERY_UPDATED, /**< Joystick battery level change */ + SDL_EVENT_JOYSTICK_UPDATE_COMPLETE, /**< Joystick update is complete */ + + /* Gamepad events */ + SDL_EVENT_GAMEPAD_AXIS_MOTION = 0x650, /**< Gamepad axis motion */ + SDL_EVENT_GAMEPAD_BUTTON_DOWN, /**< Gamepad button pressed */ + SDL_EVENT_GAMEPAD_BUTTON_UP, /**< Gamepad button released */ + SDL_EVENT_GAMEPAD_ADDED, /**< A new gamepad has been inserted into the system */ + SDL_EVENT_GAMEPAD_REMOVED, /**< A gamepad has been removed */ + SDL_EVENT_GAMEPAD_REMAPPED, /**< The gamepad mapping was updated */ + SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN, /**< Gamepad touchpad was touched */ + SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION, /**< Gamepad touchpad finger was moved */ + SDL_EVENT_GAMEPAD_TOUCHPAD_UP, /**< Gamepad touchpad finger was lifted */ + SDL_EVENT_GAMEPAD_SENSOR_UPDATE, /**< Gamepad sensor was updated */ + SDL_EVENT_GAMEPAD_UPDATE_COMPLETE, /**< Gamepad update is complete */ + SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED, /**< Gamepad Steam handle has changed */ + + /* Touch events */ + SDL_EVENT_FINGER_DOWN = 0x700, + SDL_EVENT_FINGER_UP, + SDL_EVENT_FINGER_MOTION, + SDL_EVENT_FINGER_CANCELED, + + /* 0x800, 0x801, and 0x802 were the Gesture events from SDL2. Do not reuse these values! sdl2-compat needs them! */ + + /* Clipboard events */ + SDL_EVENT_CLIPBOARD_UPDATE = 0x900, /**< The clipboard or primary selection changed */ + + /* Drag and drop events */ + SDL_EVENT_DROP_FILE = 0x1000, /**< The system requests a file open */ + SDL_EVENT_DROP_TEXT, /**< text/plain drag-and-drop event */ + SDL_EVENT_DROP_BEGIN, /**< A new set of drops is beginning (NULL filename) */ + SDL_EVENT_DROP_COMPLETE, /**< Current set of drops is now complete (NULL filename) */ + SDL_EVENT_DROP_POSITION, /**< Position while moving over the window */ + + /* Audio hotplug events */ + SDL_EVENT_AUDIO_DEVICE_ADDED = 0x1100, /**< A new audio device is available */ + SDL_EVENT_AUDIO_DEVICE_REMOVED, /**< An audio device has been removed. */ + SDL_EVENT_AUDIO_DEVICE_FORMAT_CHANGED, /**< An audio device's format has been changed by the system. */ + + /* Sensor events */ + SDL_EVENT_SENSOR_UPDATE = 0x1200, /**< A sensor was updated */ + + /* Pressure-sensitive pen events */ + SDL_EVENT_PEN_PROXIMITY_IN = 0x1300, /**< Pressure-sensitive pen has become available */ + SDL_EVENT_PEN_PROXIMITY_OUT, /**< Pressure-sensitive pen has become unavailable */ + SDL_EVENT_PEN_DOWN, /**< Pressure-sensitive pen touched drawing surface */ + SDL_EVENT_PEN_UP, /**< Pressure-sensitive pen stopped touching drawing surface */ + SDL_EVENT_PEN_BUTTON_DOWN, /**< Pressure-sensitive pen button pressed */ + SDL_EVENT_PEN_BUTTON_UP, /**< Pressure-sensitive pen button released */ + SDL_EVENT_PEN_MOTION, /**< Pressure-sensitive pen is moving on the tablet */ + SDL_EVENT_PEN_AXIS, /**< Pressure-sensitive pen angle/pressure/etc changed */ + + /* Camera hotplug events */ + SDL_EVENT_CAMERA_DEVICE_ADDED = 0x1400, /**< A new camera device is available */ + SDL_EVENT_CAMERA_DEVICE_REMOVED, /**< A camera device has been removed. */ + SDL_EVENT_CAMERA_DEVICE_APPROVED, /**< A camera device has been approved for use by the user. */ + SDL_EVENT_CAMERA_DEVICE_DENIED, /**< A camera device has been denied for use by the user. */ + + /* Render events */ + SDL_EVENT_RENDER_TARGETS_RESET = 0x2000, /**< The render targets have been reset and their contents need to be updated */ + SDL_EVENT_RENDER_DEVICE_RESET, /**< The device has been reset and all textures need to be recreated */ + SDL_EVENT_RENDER_DEVICE_LOST, /**< The device has been lost and can't be recovered. */ + + /* Reserved events for private platforms */ + SDL_EVENT_PRIVATE0 = 0x4000, + SDL_EVENT_PRIVATE1, + SDL_EVENT_PRIVATE2, + SDL_EVENT_PRIVATE3, + + /* Internal events */ + SDL_EVENT_POLL_SENTINEL = 0x7F00, /**< Signals the end of an event poll cycle */ + + /** Events SDL_EVENT_USER through SDL_EVENT_LAST are for your use, + * and should be allocated with SDL_RegisterEvents() + */ + SDL_EVENT_USER = 0x8000, + + /** + * This last event is only for bounding internal arrays + */ + SDL_EVENT_LAST = 0xFFFF, + + /* This just makes sure the enum is the size of Uint32 */ + SDL_EVENT_ENUM_PADDING = 0x7FFFFFFF + +} SDL_EventType; + +/** + * Fields shared by every event + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_CommonEvent +{ + Uint32 type; /**< Event type, shared with all events, Uint32 to cover user events which are not in the SDL_EventType enumeration */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ +} SDL_CommonEvent; + +/** + * Display state change event data (event.display.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_DisplayEvent +{ + SDL_EventType type; /**< SDL_DISPLAYEVENT_* */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_DisplayID displayID;/**< The associated display */ + Sint32 data1; /**< event dependent data */ + Sint32 data2; /**< event dependent data */ +} SDL_DisplayEvent; + +/** + * Window state change event data (event.window.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_WindowEvent +{ + SDL_EventType type; /**< SDL_EVENT_WINDOW_* */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The associated window */ + Sint32 data1; /**< event dependent data */ + Sint32 data2; /**< event dependent data */ +} SDL_WindowEvent; + +/** + * Keyboard device event structure (event.kdevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_KeyboardDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_KEYBOARD_ADDED or SDL_EVENT_KEYBOARD_REMOVED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_KeyboardID which; /**< The keyboard instance id */ +} SDL_KeyboardDeviceEvent; + +/** + * Keyboard button event structure (event.key.*) + * + * The `key` is the base SDL_Keycode generated by pressing the `scancode` + * using the current keyboard layout, applying any options specified in + * SDL_HINT_KEYCODE_OPTIONS. You can get the SDL_Keycode corresponding to the + * event scancode and modifiers directly from the keyboard layout, bypassing + * SDL_HINT_KEYCODE_OPTIONS, by calling SDL_GetKeyFromScancode(). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromScancode + * \sa SDL_HINT_KEYCODE_OPTIONS + */ +typedef struct SDL_KeyboardEvent +{ + SDL_EventType type; /**< SDL_EVENT_KEY_DOWN or SDL_EVENT_KEY_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + SDL_KeyboardID which; /**< The keyboard instance id, or 0 if unknown or virtual */ + SDL_Scancode scancode; /**< SDL physical key code */ + SDL_Keycode key; /**< SDL virtual key code */ + SDL_Keymod mod; /**< current key modifiers */ + Uint16 raw; /**< The platform dependent scancode for this event */ + bool down; /**< true if the key is pressed */ + bool repeat; /**< true if this is a key repeat */ +} SDL_KeyboardEvent; + +/** + * Keyboard text editing event structure (event.edit.*) + * + * The start cursor is the position, in UTF-8 characters, where new typing + * will be inserted into the editing text. The length is the number of UTF-8 + * characters that will be replaced by new typing. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TextEditingEvent +{ + SDL_EventType type; /**< SDL_EVENT_TEXT_EDITING */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + const char *text; /**< The editing text */ + Sint32 start; /**< The start cursor of selected editing text, or -1 if not set */ + Sint32 length; /**< The length of selected editing text, or -1 if not set */ +} SDL_TextEditingEvent; + +/** + * Keyboard IME candidates event structure (event.edit_candidates.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TextEditingCandidatesEvent +{ + SDL_EventType type; /**< SDL_EVENT_TEXT_EDITING_CANDIDATES */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + const char * const *candidates; /**< The list of candidates, or NULL if there are no candidates available */ + Sint32 num_candidates; /**< The number of strings in `candidates` */ + Sint32 selected_candidate; /**< The index of the selected candidate, or -1 if no candidate is selected */ + bool horizontal; /**< true if the list is horizontal, false if it's vertical */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_TextEditingCandidatesEvent; + +/** + * Keyboard text input event structure (event.text.*) + * + * This event will never be delivered unless text input is enabled by calling + * SDL_StartTextInput(). Text input is disabled by default! + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + * \sa SDL_StopTextInput + */ +typedef struct SDL_TextInputEvent +{ + SDL_EventType type; /**< SDL_EVENT_TEXT_INPUT */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + const char *text; /**< The input text, UTF-8 encoded */ +} SDL_TextInputEvent; + +/** + * Mouse device event structure (event.mdevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_ADDED or SDL_EVENT_MOUSE_REMOVED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_MouseID which; /**< The mouse instance id */ +} SDL_MouseDeviceEvent; + +/** + * Mouse motion event structure (event.motion.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseMotionEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_MouseID which; /**< The mouse instance id in relative mode, SDL_TOUCH_MOUSEID for touch events, or 0 */ + SDL_MouseButtonFlags state; /**< The current button state */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + float xrel; /**< The relative motion in the X direction */ + float yrel; /**< The relative motion in the Y direction */ +} SDL_MouseMotionEvent; + +/** + * Mouse button event structure (event.button.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_BUTTON_DOWN or SDL_EVENT_MOUSE_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_MouseID which; /**< The mouse instance id in relative mode, SDL_TOUCH_MOUSEID for touch events, or 0 */ + Uint8 button; /**< The mouse button index */ + bool down; /**< true if the button is pressed */ + Uint8 clicks; /**< 1 for single-click, 2 for double-click, etc. */ + Uint8 padding; + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ +} SDL_MouseButtonEvent; + +/** + * Mouse wheel event structure (event.wheel.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseWheelEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_WHEEL */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_MouseID which; /**< The mouse instance id in relative mode or 0 */ + float x; /**< The amount scrolled horizontally, positive to the right and negative to the left */ + float y; /**< The amount scrolled vertically, positive away from the user and negative toward the user */ + SDL_MouseWheelDirection direction; /**< Set to one of the SDL_MOUSEWHEEL_* defines. When FLIPPED the values in X and Y will be opposite. Multiply by -1 to change them back */ + float mouse_x; /**< X coordinate, relative to window */ + float mouse_y; /**< Y coordinate, relative to window */ + Sint32 integer_x; /**< The amount scrolled horizontally, accumulated to whole scroll "ticks" (added in 3.2.12) */ + Sint32 integer_y; /**< The amount scrolled vertically, accumulated to whole scroll "ticks" (added in 3.2.12) */ +} SDL_MouseWheelEvent; + +/** + * Joystick axis motion event structure (event.jaxis.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyAxisEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_AXIS_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 axis; /**< The joystick axis index */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 value; /**< The axis value (range: -32768 to 32767) */ + Uint16 padding4; +} SDL_JoyAxisEvent; + +/** + * Joystick trackball motion event structure (event.jball.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyBallEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_BALL_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 ball; /**< The joystick trackball index */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 xrel; /**< The relative motion in the X direction */ + Sint16 yrel; /**< The relative motion in the Y direction */ +} SDL_JoyBallEvent; + +/** + * Joystick hat position change event structure (event.jhat.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyHatEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_HAT_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 hat; /**< The joystick hat index */ + Uint8 value; /**< The hat position value. + * \sa SDL_HAT_LEFTUP SDL_HAT_UP SDL_HAT_RIGHTUP + * \sa SDL_HAT_LEFT SDL_HAT_CENTERED SDL_HAT_RIGHT + * \sa SDL_HAT_LEFTDOWN SDL_HAT_DOWN SDL_HAT_RIGHTDOWN + * + * Note that zero means the POV is centered. + */ + Uint8 padding1; + Uint8 padding2; +} SDL_JoyHatEvent; + +/** + * Joystick button event structure (event.jbutton.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_BUTTON_DOWN or SDL_EVENT_JOYSTICK_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 button; /**< The joystick button index */ + bool down; /**< true if the button is pressed */ + Uint8 padding1; + Uint8 padding2; +} SDL_JoyButtonEvent; + +/** + * Joystick device event structure (event.jdevice.*) + * + * SDL will send JOYSTICK_ADDED events for devices that are already plugged in + * during SDL_Init. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GamepadDeviceEvent + */ +typedef struct SDL_JoyDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_ADDED or SDL_EVENT_JOYSTICK_REMOVED or SDL_EVENT_JOYSTICK_UPDATE_COMPLETE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ +} SDL_JoyDeviceEvent; + +/** + * Joystick battery level change event structure (event.jbattery.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyBatteryEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_BATTERY_UPDATED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + SDL_PowerState state; /**< The joystick battery state */ + int percent; /**< The joystick battery percent charge remaining */ +} SDL_JoyBatteryEvent; + +/** + * Gamepad axis motion event structure (event.gaxis.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadAxisEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_AXIS_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 axis; /**< The gamepad axis (SDL_GamepadAxis) */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 value; /**< The axis value (range: -32768 to 32767) */ + Uint16 padding4; +} SDL_GamepadAxisEvent; + + +/** + * Gamepad button event structure (event.gbutton.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_BUTTON_DOWN or SDL_EVENT_GAMEPAD_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 button; /**< The gamepad button (SDL_GamepadButton) */ + bool down; /**< true if the button is pressed */ + Uint8 padding1; + Uint8 padding2; +} SDL_GamepadButtonEvent; + + +/** + * Gamepad device event structure (event.gdevice.*) + * + * Joysticks that are supported gamepads receive both an SDL_JoyDeviceEvent + * and an SDL_GamepadDeviceEvent. + * + * SDL will send GAMEPAD_ADDED events for joysticks that are already plugged + * in during SDL_Init() and are recognized as gamepads. It will also send + * events for joysticks that get gamepad mappings at runtime. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_JoyDeviceEvent + */ +typedef struct SDL_GamepadDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_ADDED, SDL_EVENT_GAMEPAD_REMOVED, or SDL_EVENT_GAMEPAD_REMAPPED, SDL_EVENT_GAMEPAD_UPDATE_COMPLETE or SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ +} SDL_GamepadDeviceEvent; + +/** + * Gamepad touchpad event structure (event.gtouchpad.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadTouchpadEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN or SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION or SDL_EVENT_GAMEPAD_TOUCHPAD_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Sint32 touchpad; /**< The index of the touchpad */ + Sint32 finger; /**< The index of the finger on the touchpad */ + float x; /**< Normalized in the range 0...1 with 0 being on the left */ + float y; /**< Normalized in the range 0...1 with 0 being at the top */ + float pressure; /**< Normalized in the range 0...1 */ +} SDL_GamepadTouchpadEvent; + +/** + * Gamepad sensor event structure (event.gsensor.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadSensorEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_SENSOR_UPDATE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Sint32 sensor; /**< The type of the sensor, one of the values of SDL_SensorType */ + float data[3]; /**< Up to 3 values from the sensor, as defined in SDL_sensor.h */ + Uint64 sensor_timestamp; /**< The timestamp of the sensor reading in nanoseconds, not necessarily synchronized with the system clock */ +} SDL_GamepadSensorEvent; + +/** + * Audio device event structure (event.adevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_AudioDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_AUDIO_DEVICE_ADDED, or SDL_EVENT_AUDIO_DEVICE_REMOVED, or SDL_EVENT_AUDIO_DEVICE_FORMAT_CHANGED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_AudioDeviceID which; /**< SDL_AudioDeviceID for the device being added or removed or changing */ + bool recording; /**< false if a playback device, true if a recording device. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_AudioDeviceEvent; + +/** + * Camera device event structure (event.cdevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_CameraDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_CAMERA_DEVICE_ADDED, SDL_EVENT_CAMERA_DEVICE_REMOVED, SDL_EVENT_CAMERA_DEVICE_APPROVED, SDL_EVENT_CAMERA_DEVICE_DENIED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_CameraID which; /**< SDL_CameraID for the device being added or removed or changing */ +} SDL_CameraDeviceEvent; + + +/** + * Renderer event structure (event.render.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_RenderEvent +{ + SDL_EventType type; /**< SDL_EVENT_RENDER_TARGETS_RESET, SDL_EVENT_RENDER_DEVICE_RESET, SDL_EVENT_RENDER_DEVICE_LOST */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window containing the renderer in question. */ +} SDL_RenderEvent; + + +/** + * Touch finger event structure (event.tfinger.*) + * + * Coordinates in this event are normalized. `x` and `y` are normalized to a + * range between 0.0f and 1.0f, relative to the window, so (0,0) is the top + * left and (1,1) is the bottom right. Delta coordinates `dx` and `dy` are + * normalized in the ranges of -1.0f (traversed all the way from the bottom or + * right to all the way up or left) to 1.0f (traversed all the way from the + * top or left to all the way down or right). + * + * Note that while the coordinates are _normalized_, they are not _clamped_, + * which means in some circumstances you can get a value outside of this + * range. For example, a renderer using logical presentation might give a + * negative value when the touch is in the letterboxing. Some platforms might + * report a touch outside of the window, which will also be outside of the + * range. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TouchFingerEvent +{ + SDL_EventType type; /**< SDL_EVENT_FINGER_DOWN, SDL_EVENT_FINGER_UP, SDL_EVENT_FINGER_MOTION, or SDL_EVENT_FINGER_CANCELED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_TouchID touchID; /**< The touch device id */ + SDL_FingerID fingerID; + float x; /**< Normalized in the range 0...1 */ + float y; /**< Normalized in the range 0...1 */ + float dx; /**< Normalized in the range -1...1 */ + float dy; /**< Normalized in the range -1...1 */ + float pressure; /**< Normalized in the range 0...1 */ + SDL_WindowID windowID; /**< The window underneath the finger, if any */ +} SDL_TouchFingerEvent; + +/** + * Pressure-sensitive pen proximity event structure (event.pmotion.*) + * + * When a pen becomes visible to the system (it is close enough to a tablet, + * etc), SDL will send an SDL_EVENT_PEN_PROXIMITY_IN event with the new pen's + * ID. This ID is valid until the pen leaves proximity again (has been removed + * from the tablet's area, the tablet has been unplugged, etc). If the same + * pen reenters proximity again, it will be given a new ID. + * + * Note that "proximity" means "close enough for the tablet to know the tool + * is there." The pen touching and lifting off from the tablet while not + * leaving the area are handled by SDL_EVENT_PEN_DOWN and SDL_EVENT_PEN_UP. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenProximityEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_PROXIMITY_IN or SDL_EVENT_PEN_PROXIMITY_OUT */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ +} SDL_PenProximityEvent; + +/** + * Pressure-sensitive pen motion event structure (event.pmotion.*) + * + * Depending on the hardware, you may get motion events when the pen is not + * touching a tablet, for tracking a pen even when it isn't drawing. You + * should listen for SDL_EVENT_PEN_DOWN and SDL_EVENT_PEN_UP events, or check + * `pen_state & SDL_PEN_INPUT_DOWN` to decide if a pen is "drawing" when + * dealing with pen motion. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenMotionEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ +} SDL_PenMotionEvent; + +/** + * Pressure-sensitive pen touched event structure (event.ptouch.*) + * + * These events come when a pen touches a surface (a tablet, etc), or lifts + * off from one. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenTouchEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_DOWN or SDL_EVENT_PEN_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + bool eraser; /**< true if eraser end is used (not all pens support this). */ + bool down; /**< true if the pen is touching or false if the pen is lifted off */ +} SDL_PenTouchEvent; + +/** + * Pressure-sensitive pen button event structure (event.pbutton.*) + * + * This is for buttons on the pen itself that the user might click. The pen + * itself pressing down to draw triggers a SDL_EVENT_PEN_DOWN event instead. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_BUTTON_DOWN or SDL_EVENT_PEN_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + Uint8 button; /**< The pen button index (first button is 1). */ + bool down; /**< true if the button is pressed */ +} SDL_PenButtonEvent; + +/** + * Pressure-sensitive pen pressure / angle event structure (event.paxis.*) + * + * You might get some of these events even if the pen isn't touching the + * tablet. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenAxisEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_AXIS */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + SDL_PenAxis axis; /**< Axis that has changed */ + float value; /**< New value of axis */ +} SDL_PenAxisEvent; + +/** + * An event used to drop text or request a file open by the system + * (event.drop.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_DropEvent +{ + SDL_EventType type; /**< SDL_EVENT_DROP_BEGIN or SDL_EVENT_DROP_FILE or SDL_EVENT_DROP_TEXT or SDL_EVENT_DROP_COMPLETE or SDL_EVENT_DROP_POSITION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window that was dropped on, if any */ + float x; /**< X coordinate, relative to window (not on begin) */ + float y; /**< Y coordinate, relative to window (not on begin) */ + const char *source; /**< The source app that sent this drop event, or NULL if that isn't available */ + const char *data; /**< The text for SDL_EVENT_DROP_TEXT and the file name for SDL_EVENT_DROP_FILE, NULL for other events */ +} SDL_DropEvent; + +/** + * An event triggered when the clipboard contents have changed + * (event.clipboard.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_ClipboardEvent +{ + SDL_EventType type; /**< SDL_EVENT_CLIPBOARD_UPDATE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + bool owner; /**< are we owning the clipboard (internal update) */ + Sint32 num_mime_types; /**< number of mime types */ + const char **mime_types; /**< current mime types */ +} SDL_ClipboardEvent; + +/** + * Sensor event structure (event.sensor.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_SensorEvent +{ + SDL_EventType type; /**< SDL_EVENT_SENSOR_UPDATE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_SensorID which; /**< The instance ID of the sensor */ + float data[6]; /**< Up to 6 values from the sensor - additional values can be queried using SDL_GetSensorData() */ + Uint64 sensor_timestamp; /**< The timestamp of the sensor reading in nanoseconds, not necessarily synchronized with the system clock */ +} SDL_SensorEvent; + +/** + * The "quit requested" event + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_QuitEvent +{ + SDL_EventType type; /**< SDL_EVENT_QUIT */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ +} SDL_QuitEvent; + +/** + * A user-defined event type (event.user.*) + * + * This event is unique; it is never created by SDL, but only by the + * application. The event can be pushed onto the event queue using + * SDL_PushEvent(). The contents of the structure members are completely up to + * the programmer; the only requirement is that '''type''' is a value obtained + * from SDL_RegisterEvents(). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_UserEvent +{ + Uint32 type; /**< SDL_EVENT_USER through SDL_EVENT_LAST-1, Uint32 because these are not in the SDL_EventType enumeration */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The associated window if any */ + Sint32 code; /**< User defined event code */ + void *data1; /**< User defined data pointer */ + void *data2; /**< User defined data pointer */ +} SDL_UserEvent; + + +/** + * The structure for all events in SDL. + * + * The SDL_Event structure is the core of all event handling in SDL. SDL_Event + * is a union of all event structures used in SDL. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef union SDL_Event +{ + Uint32 type; /**< Event type, shared with all events, Uint32 to cover user events which are not in the SDL_EventType enumeration */ + SDL_CommonEvent common; /**< Common event data */ + SDL_DisplayEvent display; /**< Display event data */ + SDL_WindowEvent window; /**< Window event data */ + SDL_KeyboardDeviceEvent kdevice; /**< Keyboard device change event data */ + SDL_KeyboardEvent key; /**< Keyboard event data */ + SDL_TextEditingEvent edit; /**< Text editing event data */ + SDL_TextEditingCandidatesEvent edit_candidates; /**< Text editing candidates event data */ + SDL_TextInputEvent text; /**< Text input event data */ + SDL_MouseDeviceEvent mdevice; /**< Mouse device change event data */ + SDL_MouseMotionEvent motion; /**< Mouse motion event data */ + SDL_MouseButtonEvent button; /**< Mouse button event data */ + SDL_MouseWheelEvent wheel; /**< Mouse wheel event data */ + SDL_JoyDeviceEvent jdevice; /**< Joystick device change event data */ + SDL_JoyAxisEvent jaxis; /**< Joystick axis event data */ + SDL_JoyBallEvent jball; /**< Joystick ball event data */ + SDL_JoyHatEvent jhat; /**< Joystick hat event data */ + SDL_JoyButtonEvent jbutton; /**< Joystick button event data */ + SDL_JoyBatteryEvent jbattery; /**< Joystick battery event data */ + SDL_GamepadDeviceEvent gdevice; /**< Gamepad device event data */ + SDL_GamepadAxisEvent gaxis; /**< Gamepad axis event data */ + SDL_GamepadButtonEvent gbutton; /**< Gamepad button event data */ + SDL_GamepadTouchpadEvent gtouchpad; /**< Gamepad touchpad event data */ + SDL_GamepadSensorEvent gsensor; /**< Gamepad sensor event data */ + SDL_AudioDeviceEvent adevice; /**< Audio device event data */ + SDL_CameraDeviceEvent cdevice; /**< Camera device event data */ + SDL_SensorEvent sensor; /**< Sensor event data */ + SDL_QuitEvent quit; /**< Quit request event data */ + SDL_UserEvent user; /**< Custom event data */ + SDL_TouchFingerEvent tfinger; /**< Touch finger event data */ + SDL_PenProximityEvent pproximity; /**< Pen proximity event data */ + SDL_PenTouchEvent ptouch; /**< Pen tip touching event data */ + SDL_PenMotionEvent pmotion; /**< Pen motion event data */ + SDL_PenButtonEvent pbutton; /**< Pen button event data */ + SDL_PenAxisEvent paxis; /**< Pen axis event data */ + SDL_RenderEvent render; /**< Render event data */ + SDL_DropEvent drop; /**< Drag and drop event data */ + SDL_ClipboardEvent clipboard; /**< Clipboard event data */ + + /* This is necessary for ABI compatibility between Visual C++ and GCC. + Visual C++ will respect the push pack pragma and use 52 bytes (size of + SDL_TextEditingEvent, the largest structure for 32-bit and 64-bit + architectures) for this union, and GCC will use the alignment of the + largest datatype within the union, which is 8 bytes on 64-bit + architectures. + + So... we'll add padding to force the size to be the same for both. + + On architectures where pointers are 16 bytes, this needs rounding up to + the next multiple of 16, 64, and on architectures where pointers are + even larger the size of SDL_UserEvent will dominate as being 3 pointers. + */ + Uint8 padding[128]; +} SDL_Event; + +/* Make sure we haven't broken binary compatibility */ +SDL_COMPILE_TIME_ASSERT(SDL_Event, sizeof(SDL_Event) == sizeof(((SDL_Event *)NULL)->padding)); + + +/* Function prototypes */ + +/** + * Pump the event loop, gathering events from the input devices. + * + * This function updates the event queue and internal input device state. + * + * SDL_PumpEvents() gathers all the pending input information from devices and + * places it in the event queue. Without calls to SDL_PumpEvents() no events + * would ever be placed on the queue. Often the need for calls to + * SDL_PumpEvents() is hidden from the user since SDL_PollEvent() and + * SDL_WaitEvent() implicitly call SDL_PumpEvents(). However, if you are not + * polling or waiting for events (e.g. you are filtering them), then you must + * call SDL_PumpEvents() to force an event queue update. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_WaitEvent + */ +extern SDL_DECLSPEC void SDLCALL SDL_PumpEvents(void); + +/* @{ */ + +/** + * The type of action to request from SDL_PeepEvents(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_EventAction +{ + SDL_ADDEVENT, /**< Add events to the back of the queue. */ + SDL_PEEKEVENT, /**< Check but don't remove events from the queue front. */ + SDL_GETEVENT /**< Retrieve/remove events from the front of the queue. */ +} SDL_EventAction; + +/** + * Check the event queue for messages and optionally return them. + * + * `action` may be any of the following: + * + * - `SDL_ADDEVENT`: up to `numevents` events will be added to the back of the + * event queue. + * - `SDL_PEEKEVENT`: `numevents` events at the front of the event queue, + * within the specified minimum and maximum type, will be returned to the + * caller and will _not_ be removed from the queue. If you pass NULL for + * `events`, then `numevents` is ignored and the total number of matching + * events will be returned. + * - `SDL_GETEVENT`: up to `numevents` events at the front of the event queue, + * within the specified minimum and maximum type, will be returned to the + * caller and will be removed from the queue. + * + * You may have to call SDL_PumpEvents() before calling this function. + * Otherwise, the events may not be ready to be filtered when you call + * SDL_PeepEvents(). + * + * \param events destination buffer for the retrieved events, may be NULL to + * leave the events in the queue and return the number of events + * that would have been stored. + * \param numevents if action is SDL_ADDEVENT, the number of events to add + * back to the event queue; if action is SDL_PEEKEVENT or + * SDL_GETEVENT, the maximum number of events to retrieve. + * \param action action to take; see [Remarks](#remarks) for details. + * \param minType minimum value of the event type to be considered; + * SDL_EVENT_FIRST is a safe choice. + * \param maxType maximum value of the event type to be considered; + * SDL_EVENT_LAST is a safe choice. + * \returns the number of events actually stored or -1 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_PumpEvents + * \sa SDL_PushEvent + */ +extern SDL_DECLSPEC int SDLCALL SDL_PeepEvents(SDL_Event *events, int numevents, SDL_EventAction action, Uint32 minType, Uint32 maxType); +/* @} */ + +/** + * Check for the existence of a certain event type in the event queue. + * + * If you need to check for a range of event types, use SDL_HasEvents() + * instead. + * + * \param type the type of event to be queried; see SDL_EventType for details. + * \returns true if events matching `type` are present, or false if events + * matching `type` are not present. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasEvents + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasEvent(Uint32 type); + + +/** + * Check for the existence of certain event types in the event queue. + * + * If you need to check for a single event type, use SDL_HasEvent() instead. + * + * \param minType the low end of event type to be queried, inclusive; see + * SDL_EventType for details. + * \param maxType the high end of event type to be queried, inclusive; see + * SDL_EventType for details. + * \returns true if events with type >= `minType` and <= `maxType` are + * present, or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasEvents + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasEvents(Uint32 minType, Uint32 maxType); + +/** + * Clear events of a specific type from the event queue. + * + * This will unconditionally remove any events from the queue that match + * `type`. If you need to remove a range of event types, use SDL_FlushEvents() + * instead. + * + * It's also normal to just ignore events you don't care about in your event + * loop without calling this function. + * + * This function only affects currently queued events. If you want to make + * sure that all pending OS events are flushed, you can call SDL_PumpEvents() + * on the main thread immediately before the flush call. + * + * If you have user events with custom data that needs to be freed, you should + * use SDL_PeepEvents() to remove and clean up those events before calling + * this function. + * + * \param type the type of event to be cleared; see SDL_EventType for details. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FlushEvents + */ +extern SDL_DECLSPEC void SDLCALL SDL_FlushEvent(Uint32 type); + +/** + * Clear events of a range of types from the event queue. + * + * This will unconditionally remove any events from the queue that are in the + * range of `minType` to `maxType`, inclusive. If you need to remove a single + * event type, use SDL_FlushEvent() instead. + * + * It's also normal to just ignore events you don't care about in your event + * loop without calling this function. + * + * This function only affects currently queued events. If you want to make + * sure that all pending OS events are flushed, you can call SDL_PumpEvents() + * on the main thread immediately before the flush call. + * + * \param minType the low end of event type to be cleared, inclusive; see + * SDL_EventType for details. + * \param maxType the high end of event type to be cleared, inclusive; see + * SDL_EventType for details. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FlushEvent + */ +extern SDL_DECLSPEC void SDLCALL SDL_FlushEvents(Uint32 minType, Uint32 maxType); + +/** + * Poll for currently pending events. + * + * If `event` is not NULL, the next event is removed from the queue and stored + * in the SDL_Event structure pointed to by `event`. The 1 returned refers to + * this event, immediately stored in the SDL Event structure -- not an event + * to follow. + * + * If `event` is NULL, it simply returns 1 if there is an event in the queue, + * but will not remove it from the queue. + * + * As this function may implicitly call SDL_PumpEvents(), you can only call + * this function in the thread that set the video mode. + * + * SDL_PollEvent() is the favored way of receiving system events since it can + * be done from the main loop and does not suspend the main loop while waiting + * on an event to be posted. + * + * The common practice is to fully process the event queue once every frame, + * usually as a first step before updating the game's state: + * + * ```c + * while (game_is_still_running) { + * SDL_Event event; + * while (SDL_PollEvent(&event)) { // poll until all events are handled! + * // decide what to do with this event. + * } + * + * // update game state, draw the current frame + * } + * ``` + * + * \param event the SDL_Event structure to be filled with the next event from + * the queue, or NULL. + * \returns true if this got an event or false if there are none available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PushEvent + * \sa SDL_WaitEvent + * \sa SDL_WaitEventTimeout + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PollEvent(SDL_Event *event); + +/** + * Wait indefinitely for the next available event. + * + * If `event` is not NULL, the next event is removed from the queue and stored + * in the SDL_Event structure pointed to by `event`. + * + * As this function may implicitly call SDL_PumpEvents(), you can only call + * this function in the thread that initialized the video subsystem. + * + * \param event the SDL_Event structure to be filled in with the next event + * from the queue, or NULL. + * \returns true on success or false if there was an error while waiting for + * events; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_PushEvent + * \sa SDL_WaitEventTimeout + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitEvent(SDL_Event *event); + +/** + * Wait until the specified timeout (in milliseconds) for the next available + * event. + * + * If `event` is not NULL, the next event is removed from the queue and stored + * in the SDL_Event structure pointed to by `event`. + * + * As this function may implicitly call SDL_PumpEvents(), you can only call + * this function in the thread that initialized the video subsystem. + * + * The timeout is not guaranteed, the actual wait time could be longer due to + * system scheduling. + * + * \param event the SDL_Event structure to be filled in with the next event + * from the queue, or NULL. + * \param timeoutMS the maximum number of milliseconds to wait for the next + * available event. + * \returns true if this got an event or false if the timeout elapsed without + * any events available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_PushEvent + * \sa SDL_WaitEvent + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitEventTimeout(SDL_Event *event, Sint32 timeoutMS); + +/** + * Add an event to the event queue. + * + * The event queue can actually be used as a two way communication channel. + * Not only can events be read from the queue, but the user can also push + * their own events onto it. `event` is a pointer to the event structure you + * wish to push onto the queue. The event is copied into the queue, and the + * caller may dispose of the memory pointed to after SDL_PushEvent() returns. + * + * Note: Pushing device input events onto the queue doesn't modify the state + * of the device within SDL. + * + * Note: Events pushed onto the queue with SDL_PushEvent() get passed through + * the event filter but events added with SDL_PeepEvents() do not. + * + * For pushing application-specific events, please use SDL_RegisterEvents() to + * get an event type that does not conflict with other code that also wants + * its own custom event types. + * + * \param event the SDL_Event to be added to the queue. + * \returns true on success, false if the event was filtered or on failure; + * call SDL_GetError() for more information. A common reason for + * error is the event queue being full. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PeepEvents + * \sa SDL_PollEvent + * \sa SDL_RegisterEvents + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PushEvent(SDL_Event *event); + +/** + * A function pointer used for callbacks that watch the event queue. + * + * \param userdata what was passed as `userdata` to SDL_SetEventFilter() or + * SDL_AddEventWatch, etc. + * \param event the event that triggered the callback. + * \returns true to permit event to be added to the queue, and false to + * disallow it. When used with SDL_AddEventWatch, the return value is + * ignored. + * + * \threadsafety SDL may call this callback at any time from any thread; the + * application is responsible for locking resources the callback + * touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetEventFilter + * \sa SDL_AddEventWatch + */ +typedef bool (SDLCALL *SDL_EventFilter)(void *userdata, SDL_Event *event); + +/** + * Set up a filter to process all events before they are added to the internal + * event queue. + * + * If you just want to see events without modifying them or preventing them + * from being queued, you should use SDL_AddEventWatch() instead. + * + * If the filter function returns true when called, then the event will be + * added to the internal queue. If it returns false, then the event will be + * dropped from the queue, but the internal state will still be updated. This + * allows selective filtering of dynamically arriving events. + * + * **WARNING**: Be very careful of what you do in the event filter function, + * as it may run in a different thread! + * + * On platforms that support it, if the quit event is generated by an + * interrupt signal (e.g. pressing Ctrl-C), it will be delivered to the + * application at the next event poll. + * + * Note: Disabled events never make it to the event filter function; see + * SDL_SetEventEnabled(). + * + * Note: Events pushed onto the queue with SDL_PushEvent() get passed through + * the event filter, but events pushed onto the queue with SDL_PeepEvents() do + * not. + * + * \param filter an SDL_EventFilter function to call when an event happens. + * \param userdata a pointer that is passed to `filter`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + * \sa SDL_SetEventEnabled + * \sa SDL_GetEventFilter + * \sa SDL_PeepEvents + * \sa SDL_PushEvent + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetEventFilter(SDL_EventFilter filter, void *userdata); + +/** + * Query the current event filter. + * + * This function can be used to "chain" filters, by saving the existing filter + * before replacing it with a function that will call that saved filter. + * + * \param filter the current callback function will be stored here. + * \param userdata the pointer that is passed to the current event filter will + * be stored here. + * \returns true on success or false if there is no event filter set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetEventFilter + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetEventFilter(SDL_EventFilter *filter, void **userdata); + +/** + * Add a callback to be triggered when an event is added to the event queue. + * + * `filter` will be called when an event happens, and its return value is + * ignored. + * + * **WARNING**: Be very careful of what you do in the event filter function, + * as it may run in a different thread! + * + * If the quit event is generated by a signal (e.g. SIGINT), it will bypass + * the internal queue and be delivered to the watch callback immediately, and + * arrive at the next event poll. + * + * Note: the callback is called for events posted by the user through + * SDL_PushEvent(), but not for disabled events, nor for events by a filter + * callback set with SDL_SetEventFilter(), nor for events posted by the user + * through SDL_PeepEvents(). + * + * \param filter an SDL_EventFilter function to call when an event happens. + * \param userdata a pointer that is passed to `filter`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveEventWatch + * \sa SDL_SetEventFilter + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddEventWatch(SDL_EventFilter filter, void *userdata); + +/** + * Remove an event watch callback added with SDL_AddEventWatch(). + * + * This function takes the same input as SDL_AddEventWatch() to identify and + * delete the corresponding callback. + * + * \param filter the function originally passed to SDL_AddEventWatch(). + * \param userdata the pointer originally passed to SDL_AddEventWatch(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveEventWatch(SDL_EventFilter filter, void *userdata); + +/** + * Run a specific filter function on the current event queue, removing any + * events for which the filter returns false. + * + * See SDL_SetEventFilter() for more information. Unlike SDL_SetEventFilter(), + * this function does not change the filter permanently, it only uses the + * supplied filter until this function returns. + * + * \param filter the SDL_EventFilter function to call when an event happens. + * \param userdata a pointer that is passed to `filter`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEventFilter + * \sa SDL_SetEventFilter + */ +extern SDL_DECLSPEC void SDLCALL SDL_FilterEvents(SDL_EventFilter filter, void *userdata); + +/** + * Set the state of processing events by type. + * + * \param type the type of event; see SDL_EventType for details. + * \param enabled whether to process the event or not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EventEnabled + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetEventEnabled(Uint32 type, bool enabled); + +/** + * Query the state of processing events by type. + * + * \param type the type of event; see SDL_EventType for details. + * \returns true if the event is being processed, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetEventEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EventEnabled(Uint32 type); + +/** + * Allocate a set of user-defined events, and return the beginning event + * number for that set of events. + * + * \param numevents the number of events to be allocated. + * \returns the beginning event number, or 0 if numevents is invalid or if + * there are not enough user-defined events left. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PushEvent + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_RegisterEvents(int numevents); + +/** + * Get window associated with an event. + * + * \param event an event containing a `windowID`. + * \returns the associated window on success or NULL if there is none. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_WaitEvent + * \sa SDL_WaitEventTimeout + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetWindowFromEvent(const SDL_Event *event); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_events_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_filesystem.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_filesystem.h new file mode 100644 index 0000000..af3ca27 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_filesystem.h @@ -0,0 +1,503 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryFilesystem + * + * SDL offers an API for examining and manipulating the system's filesystem. + * This covers most things one would need to do with directories, except for + * actual file I/O (which is covered by [CategoryIOStream](CategoryIOStream) + * and [CategoryAsyncIO](CategoryAsyncIO) instead). + * + * There are functions to answer necessary path questions: + * + * - Where is my app's data? SDL_GetBasePath(). + * - Where can I safely write files? SDL_GetPrefPath(). + * - Where are paths like Downloads, Desktop, Music? SDL_GetUserFolder(). + * - What is this thing at this location? SDL_GetPathInfo(). + * - What items live in this folder? SDL_EnumerateDirectory(). + * - What items live in this folder by wildcard? SDL_GlobDirectory(). + * - What is my current working directory? SDL_GetCurrentDirectory(). + * + * SDL also offers functions to manipulate the directory tree: renaming, + * removing, copying files. + */ + +#ifndef SDL_filesystem_h_ +#define SDL_filesystem_h_ + +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Get the directory where the application was run from. + * + * SDL caches the result of this call internally, but the first call to this + * function is not necessarily fast, so plan accordingly. + * + * **macOS and iOS Specific Functionality**: If the application is in a ".app" + * bundle, this function returns the Resource directory (e.g. + * MyApp.app/Contents/Resources/). This behaviour can be overridden by adding + * a property to the Info.plist file. Adding a string key with the name + * SDL_FILESYSTEM_BASE_DIR_TYPE with a supported value will change the + * behaviour. + * + * Supported values for the SDL_FILESYSTEM_BASE_DIR_TYPE property (Given an + * application in /Applications/SDLApp/MyApp.app): + * + * - `resource`: bundle resource directory (the default). For example: + * `/Applications/SDLApp/MyApp.app/Contents/Resources` + * - `bundle`: the Bundle directory. For example: + * `/Applications/SDLApp/MyApp.app/` + * - `parent`: the containing directory of the bundle. For example: + * `/Applications/SDLApp/` + * + * **Nintendo 3DS Specific Functionality**: This function returns "romfs" + * directory of the application as it is uncommon to store resources outside + * the executable. As such it is not a writable directory. + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * \returns an absolute path in UTF-8 encoding to the application data + * directory. NULL will be returned on error or when the platform + * doesn't implement this functionality, call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPrefPath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetBasePath(void); + +/** + * Get the user-and-app-specific path where files can be written. + * + * Get the "pref dir". This is meant to be where users can write personal + * files (preferences and save games, etc) that are specific to your + * application. This directory is unique per user, per application. + * + * This function will decide the appropriate location in the native + * filesystem, create the directory if necessary, and return a string of the + * absolute path to the directory in UTF-8 encoding. + * + * On Windows, the string might look like: + * + * `C:\\Users\\bob\\AppData\\Roaming\\My Company\\My Program Name\\` + * + * On Linux, the string might look like: + * + * `/home/bob/.local/share/My Program Name/` + * + * On macOS, the string might look like: + * + * `/Users/bob/Library/Application Support/My Program Name/` + * + * You should assume the path returned by this function is the only safe place + * to write files (and that SDL_GetBasePath(), while it might be writable, or + * even the parent of the returned path, isn't where you should be writing + * things). + * + * Both the org and app strings may become part of a directory name, so please + * follow these rules: + * + * - Try to use the same org string (_including case-sensitivity_) for all + * your applications that use this function. + * - Always use a unique app string for each one, and make sure it never + * changes for an app once you've decided on it. + * - Unicode characters are legal, as long as they are UTF-8 encoded, but... + * - ...only use letters, numbers, and spaces. Avoid punctuation like "Game + * Name 2: Bad Guy's Revenge!" ... "Game Name 2" is sufficient. + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * \param org the name of your organization. + * \param app the name of your application. + * \returns a UTF-8 string of the user directory in platform-dependent + * notation. NULL if there's a problem (creating directory failed, + * etc.). This should be freed with SDL_free() when it is no longer + * needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetBasePath + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetPrefPath(const char *org, const char *app); + +/** + * The type of the OS-provided default folder for a specific purpose. + * + * Note that the Trash folder isn't included here, because trashing files + * usually involves extra OS-specific functionality to remember the file's + * original location. + * + * The folders supported per platform are: + * + * | | Windows | macOS/iOS | tvOS | Unix (XDG) | Haiku | Emscripten | + * | ----------- | ------- | --------- | ---- | ---------- | ----- | ---------- | + * | HOME | X | X | | X | X | X | + * | DESKTOP | X | X | | X | X | | + * | DOCUMENTS | X | X | | X | | | + * | DOWNLOADS | Vista+ | X | | X | | | + * | MUSIC | X | X | | X | | | + * | PICTURES | X | X | | X | | | + * | PUBLICSHARE | | X | | X | | | + * | SAVEDGAMES | Vista+ | | | | | | + * | SCREENSHOTS | Vista+ | | | | | | + * | TEMPLATES | X | X | | X | | | + * | VIDEOS | X | X* | | X | | | + * + * Note that on macOS/iOS, the Videos folder is called "Movies". + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetUserFolder + */ +typedef enum SDL_Folder +{ + SDL_FOLDER_HOME, /**< The folder which contains all of the current user's data, preferences, and documents. It usually contains most of the other folders. If a requested folder does not exist, the home folder can be considered a safe fallback to store a user's documents. */ + SDL_FOLDER_DESKTOP, /**< The folder of files that are displayed on the desktop. Note that the existence of a desktop folder does not guarantee that the system does show icons on its desktop; certain GNU/Linux distros with a graphical environment may not have desktop icons. */ + SDL_FOLDER_DOCUMENTS, /**< User document files, possibly application-specific. This is a good place to save a user's projects. */ + SDL_FOLDER_DOWNLOADS, /**< Standard folder for user files downloaded from the internet. */ + SDL_FOLDER_MUSIC, /**< Music files that can be played using a standard music player (mp3, ogg...). */ + SDL_FOLDER_PICTURES, /**< Image files that can be displayed using a standard viewer (png, jpg...). */ + SDL_FOLDER_PUBLICSHARE, /**< Files that are meant to be shared with other users on the same computer. */ + SDL_FOLDER_SAVEDGAMES, /**< Save files for games. */ + SDL_FOLDER_SCREENSHOTS, /**< Application screenshots. */ + SDL_FOLDER_TEMPLATES, /**< Template files to be used when the user requests the desktop environment to create a new file in a certain folder, such as "New Text File.txt". Any file in the Templates folder can be used as a starting point for a new file. */ + SDL_FOLDER_VIDEOS, /**< Video files that can be played using a standard video player (mp4, webm...). */ + SDL_FOLDER_COUNT /**< Total number of types in this enum, not a folder type by itself. */ +} SDL_Folder; + +/** + * Finds the most suitable user folder for a specific purpose. + * + * Many OSes provide certain standard folders for certain purposes, such as + * storing pictures, music or videos for a certain user. This function gives + * the path for many of those special locations. + * + * This function is specifically for _user_ folders, which are meant for the + * user to access and manage. For application-specific folders, meant to hold + * data for the application to manage, see SDL_GetBasePath() and + * SDL_GetPrefPath(). + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * If NULL is returned, the error may be obtained with SDL_GetError(). + * + * \param folder the type of folder to find. + * \returns either a null-terminated C string containing the full path to the + * folder, or NULL if an error happened. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetUserFolder(SDL_Folder folder); + + +/* Abstract filesystem interface */ + +/** + * Types of filesystem entries. + * + * Note that there may be other sorts of items on a filesystem: devices, + * symlinks, named pipes, etc. They are currently reported as + * SDL_PATHTYPE_OTHER. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_PathInfo + */ +typedef enum SDL_PathType +{ + SDL_PATHTYPE_NONE, /**< path does not exist */ + SDL_PATHTYPE_FILE, /**< a normal file */ + SDL_PATHTYPE_DIRECTORY, /**< a directory */ + SDL_PATHTYPE_OTHER /**< something completely different like a device node (not a symlink, those are always followed) */ +} SDL_PathType; + +/** + * Information about a path on the filesystem. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetPathInfo + * \sa SDL_GetStoragePathInfo + */ +typedef struct SDL_PathInfo +{ + SDL_PathType type; /**< the path type */ + Uint64 size; /**< the file size in bytes */ + SDL_Time create_time; /**< the time when the path was created */ + SDL_Time modify_time; /**< the last time the path was modified */ + SDL_Time access_time; /**< the last time the path was read */ +} SDL_PathInfo; + +/** + * Flags for path matching. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GlobDirectory + * \sa SDL_GlobStorageDirectory + */ +typedef Uint32 SDL_GlobFlags; + +#define SDL_GLOB_CASEINSENSITIVE (1u << 0) + +/** + * Create a directory, and any missing parent directories. + * + * This reports success if `path` already exists as a directory. + * + * If parent directories are missing, it will also create them. Note that if + * this fails, it will not remove any parent directories it already made. + * + * \param path the path of the directory to create. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CreateDirectory(const char *path); + +/** + * Possible results from an enumeration callback. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_EnumerateDirectoryCallback + */ +typedef enum SDL_EnumerationResult +{ + SDL_ENUM_CONTINUE, /**< Value that requests that enumeration continue. */ + SDL_ENUM_SUCCESS, /**< Value that requests that enumeration stop, successfully. */ + SDL_ENUM_FAILURE /**< Value that requests that enumeration stop, as a failure. */ +} SDL_EnumerationResult; + +/** + * Callback for directory enumeration. + * + * Enumeration of directory entries will continue until either all entries + * have been provided to the callback, or the callback has requested a stop + * through its return value. + * + * Returning SDL_ENUM_CONTINUE will let enumeration proceed, calling the + * callback with further entries. SDL_ENUM_SUCCESS and SDL_ENUM_FAILURE will + * terminate the enumeration early, and dictate the return value of the + * enumeration function itself. + * + * `dirname` is guaranteed to end with a path separator ('\\' on Windows, '/' + * on most other platforms). + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \param dirname the directory that is being enumerated. + * \param fname the next entry in the enumeration. + * \returns how the enumeration should proceed. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EnumerateDirectory + */ +typedef SDL_EnumerationResult (SDLCALL *SDL_EnumerateDirectoryCallback)(void *userdata, const char *dirname, const char *fname); + +/** + * Enumerate a directory through a callback function. + * + * This function provides every directory entry through an app-provided + * callback, called once for each directory entry, until all results have been + * provided or the callback returns either SDL_ENUM_SUCCESS or + * SDL_ENUM_FAILURE. + * + * This will return false if there was a system problem in general, or if a + * callback returns SDL_ENUM_FAILURE. A successful return means a callback + * returned SDL_ENUM_SUCCESS to halt enumeration, or all directory entries + * were enumerated. + * + * \param path the path of the directory to enumerate. + * \param callback a function that is called for each entry in the directory. + * \param userdata a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnumerateDirectory(const char *path, SDL_EnumerateDirectoryCallback callback, void *userdata); + +/** + * Remove a file or an empty directory. + * + * Directories that are not empty will fail; this function will not recursely + * delete directory trees. + * + * \param path the path to remove from the filesystem. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RemovePath(const char *path); + +/** + * Rename a file or directory. + * + * If the file at `newpath` already exists, it will replaced. + * + * Note that this will not copy files across filesystems/drives/volumes, as + * that is a much more complicated (and possibly time-consuming) operation. + * + * Which is to say, if this function fails, SDL_CopyFile() to a temporary file + * in the same directory as `newpath`, then SDL_RenamePath() from the + * temporary file to `newpath` and SDL_RemovePath() on `oldpath` might work + * for files. Renaming a non-empty directory across filesystems is + * dramatically more complex, however. + * + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenamePath(const char *oldpath, const char *newpath); + +/** + * Copy a file. + * + * If the file at `newpath` already exists, it will be overwritten with the + * contents of the file at `oldpath`. + * + * This function will block until the copy is complete, which might be a + * significant time for large files on slow disks. On some platforms, the copy + * can be handed off to the OS itself, but on others SDL might just open both + * paths, and read from one and write to the other. + * + * Note that this is not an atomic operation! If something tries to read from + * `newpath` while the copy is in progress, it will see an incomplete copy of + * the data, and if the calling thread terminates (or the power goes out) + * during the copy, `newpath`'s previous contents will be gone, replaced with + * an incomplete copy of the data. To avoid this risk, it is recommended that + * the app copy to a temporary file in the same directory as `newpath`, and if + * the copy is successful, use SDL_RenamePath() to replace `newpath` with the + * temporary file. This will ensure that reads of `newpath` will either see a + * complete copy of the data, or it will see the pre-copy state of `newpath`. + * + * This function attempts to synchronize the newly-copied data to disk before + * returning, if the platform allows it, so that the renaming trick will not + * have a problem in a system crash or power failure, where the file could be + * renamed but the contents never made it from the system file cache to the + * physical disk. + * + * If the copy fails for any reason, the state of `newpath` is undefined. It + * might be half a copy, it might be the untouched data of what was already + * there, or it might be a zero-byte file, etc. + * + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CopyFile(const char *oldpath, const char *newpath); + +/** + * Get information about a filesystem path. + * + * \param path the path to query. + * \param info a pointer filled in with information about the path, or NULL to + * check for the existence of a file. + * \returns true on success or false if the file doesn't exist, or another + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetPathInfo(const char *path, SDL_PathInfo *info); + +/** + * Enumerate a directory tree, filtered by pattern, and return a list. + * + * Files are filtered out if they don't match the string in `pattern`, which + * may contain wildcard characters '\*' (match everything) and '?' (match one + * character). If pattern is NULL, no filtering is done and all results are + * returned. Subdirectories are permitted, and are specified with a path + * separator of '/'. Wildcard characters '\*' and '?' never match a path + * separator. + * + * `flags` may be set to SDL_GLOB_CASEINSENSITIVE to make the pattern matching + * case-insensitive. + * + * The returned array is always NULL-terminated, for your iterating + * convenience, but if `count` is non-NULL, on return it will contain the + * number of items in the array, not counting the NULL terminator. + * + * \param path the path of the directory to enumerate. + * \param pattern the pattern that files in the directory must match. Can be + * NULL. + * \param flags `SDL_GLOB_*` bitflags that affect this search. + * \param count on return, will be set to the number of items in the returned + * array. Can be NULL. + * \returns an array of strings on success or NULL on failure; call + * SDL_GetError() for more information. This is a single allocation + * that should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GlobDirectory(const char *path, const char *pattern, SDL_GlobFlags flags, int *count); + +/** + * Get what the system believes is the "current working directory." + * + * For systems without a concept of a current working directory, this will + * still attempt to provide something reasonable. + * + * SDL does not provide a means to _change_ the current working directory; for + * platforms without this concept, this would cause surprises with file access + * outside of SDL. + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * \returns a UTF-8 string of the current working directory in + * platform-dependent notation. NULL if there's a problem. This + * should be freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetCurrentDirectory(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_filesystem_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_gamepad.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_gamepad.h new file mode 100644 index 0000000..99f8b65 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_gamepad.h @@ -0,0 +1,1509 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryGamepad + * + * SDL provides a low-level joystick API, which just treats joysticks as an + * arbitrary pile of buttons, axes, and hat switches. If you're planning to + * write your own control configuration screen, this can give you a lot of + * flexibility, but that's a lot of work, and most things that we consider + * "joysticks" now are actually console-style gamepads. So SDL provides the + * gamepad API on top of the lower-level joystick functionality. + * + * The difference between a joystick and a gamepad is that a gamepad tells you + * _where_ a button or axis is on the device. You don't speak to gamepads in + * terms of arbitrary numbers like "button 3" or "axis 2" but in standard + * locations: the d-pad, the shoulder buttons, triggers, A/B/X/Y (or + * X/O/Square/Triangle, if you will). + * + * One turns a joystick into a gamepad by providing a magic configuration + * string, which tells SDL the details of a specific device: when you see this + * specific hardware, if button 2 gets pressed, this is actually D-Pad Up, + * etc. + * + * SDL has many popular controllers configured out of the box, and users can + * add their own controller details through an environment variable if it's + * otherwise unknown to SDL. + * + * In order to use these functions, SDL_Init() must have been called with the + * SDL_INIT_GAMEPAD flag. This causes SDL to scan the system for gamepads, and + * load appropriate drivers. + * + * If you would like to receive gamepad updates while the application is in + * the background, you should set the following hint before calling + * SDL_Init(): SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS + * + * Gamepads support various optional features such as rumble, color LEDs, + * touchpad, gyro, etc. The support for these features varies depending on the + * controller and OS support available. You can check for LED and rumble + * capabilities at runtime by calling SDL_GetGamepadProperties() and checking + * the various capability properties. You can check for touchpad by calling + * SDL_GetNumGamepadTouchpads() and check for gyro and accelerometer by + * calling SDL_GamepadHasSensor(). + * + * By default SDL will try to use the most capable driver available, but you + * can tune which OS drivers to use with the various joystick hints in + * SDL_hints.h. + * + * Your application should always support gamepad hotplugging. On some + * platforms like Xbox, Steam Deck, etc., this is a requirement for + * certification. On other platforms, like macOS and Windows when using + * Windows.Gaming.Input, controllers may not be available at startup and will + * come in at some point after you've started processing events. + */ + +#ifndef SDL_gamepad_h_ +#define SDL_gamepad_h_ + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The structure used to identify an SDL gamepad + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Gamepad SDL_Gamepad; + +/** + * Standard gamepad types. + * + * This type does not necessarily map to first-party controllers from + * Microsoft/Sony/Nintendo; in many cases, third-party controllers can report + * as these, either because they were designed for a specific console, or they + * simply most closely match that console's controllers (does it have A/B/X/Y + * buttons or X/O/Square/Triangle? Does it have a touchpad? etc). + */ +typedef enum SDL_GamepadType +{ + SDL_GAMEPAD_TYPE_UNKNOWN = 0, + SDL_GAMEPAD_TYPE_STANDARD, + SDL_GAMEPAD_TYPE_XBOX360, + SDL_GAMEPAD_TYPE_XBOXONE, + SDL_GAMEPAD_TYPE_PS3, + SDL_GAMEPAD_TYPE_PS4, + SDL_GAMEPAD_TYPE_PS5, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_PRO, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_LEFT, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_PAIR, + SDL_GAMEPAD_TYPE_COUNT +} SDL_GamepadType; + +/** + * The list of buttons available on a gamepad + * + * For controllers that use a diamond pattern for the face buttons, the + * south/east/west/north buttons below correspond to the locations in the + * diamond pattern. For Xbox controllers, this would be A/B/X/Y, for Nintendo + * Switch controllers, this would be B/A/Y/X, for PlayStation controllers this + * would be Cross/Circle/Square/Triangle. + * + * For controllers that don't use a diamond pattern for the face buttons, the + * south/east/west/north buttons indicate the buttons labeled A, B, C, D, or + * 1, 2, 3, 4, or for controllers that aren't labeled, they are the primary, + * secondary, etc. buttons. + * + * The activate action is often the south button and the cancel action is + * often the east button, but in some regions this is reversed, so your game + * should allow remapping actions based on user preferences. + * + * You can query the labels for the face buttons using + * SDL_GetGamepadButtonLabel() + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadButton +{ + SDL_GAMEPAD_BUTTON_INVALID = -1, + SDL_GAMEPAD_BUTTON_SOUTH, /**< Bottom face button (e.g. Xbox A button) */ + SDL_GAMEPAD_BUTTON_EAST, /**< Right face button (e.g. Xbox B button) */ + SDL_GAMEPAD_BUTTON_WEST, /**< Left face button (e.g. Xbox X button) */ + SDL_GAMEPAD_BUTTON_NORTH, /**< Top face button (e.g. Xbox Y button) */ + SDL_GAMEPAD_BUTTON_BACK, + SDL_GAMEPAD_BUTTON_GUIDE, + SDL_GAMEPAD_BUTTON_START, + SDL_GAMEPAD_BUTTON_LEFT_STICK, + SDL_GAMEPAD_BUTTON_RIGHT_STICK, + SDL_GAMEPAD_BUTTON_LEFT_SHOULDER, + SDL_GAMEPAD_BUTTON_RIGHT_SHOULDER, + SDL_GAMEPAD_BUTTON_DPAD_UP, + SDL_GAMEPAD_BUTTON_DPAD_DOWN, + SDL_GAMEPAD_BUTTON_DPAD_LEFT, + SDL_GAMEPAD_BUTTON_DPAD_RIGHT, + SDL_GAMEPAD_BUTTON_MISC1, /**< Additional button (e.g. Xbox Series X share button, PS5 microphone button, Nintendo Switch Pro capture button, Amazon Luna microphone button, Google Stadia capture button) */ + SDL_GAMEPAD_BUTTON_RIGHT_PADDLE1, /**< Upper or primary paddle, under your right hand (e.g. Xbox Elite paddle P1) */ + SDL_GAMEPAD_BUTTON_LEFT_PADDLE1, /**< Upper or primary paddle, under your left hand (e.g. Xbox Elite paddle P3) */ + SDL_GAMEPAD_BUTTON_RIGHT_PADDLE2, /**< Lower or secondary paddle, under your right hand (e.g. Xbox Elite paddle P2) */ + SDL_GAMEPAD_BUTTON_LEFT_PADDLE2, /**< Lower or secondary paddle, under your left hand (e.g. Xbox Elite paddle P4) */ + SDL_GAMEPAD_BUTTON_TOUCHPAD, /**< PS4/PS5 touchpad button */ + SDL_GAMEPAD_BUTTON_MISC2, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC3, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC4, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC5, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC6, /**< Additional button */ + SDL_GAMEPAD_BUTTON_COUNT +} SDL_GamepadButton; + +/** + * The set of gamepad button labels + * + * This isn't a complete set, just the face buttons to make it easy to show + * button prompts. + * + * For a complete set, you should look at the button and gamepad type and have + * a set of symbols that work well with your art style. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadButtonLabel +{ + SDL_GAMEPAD_BUTTON_LABEL_UNKNOWN, + SDL_GAMEPAD_BUTTON_LABEL_A, + SDL_GAMEPAD_BUTTON_LABEL_B, + SDL_GAMEPAD_BUTTON_LABEL_X, + SDL_GAMEPAD_BUTTON_LABEL_Y, + SDL_GAMEPAD_BUTTON_LABEL_CROSS, + SDL_GAMEPAD_BUTTON_LABEL_CIRCLE, + SDL_GAMEPAD_BUTTON_LABEL_SQUARE, + SDL_GAMEPAD_BUTTON_LABEL_TRIANGLE +} SDL_GamepadButtonLabel; + +/** + * The list of axes available on a gamepad + * + * Thumbstick axis values range from SDL_JOYSTICK_AXIS_MIN to + * SDL_JOYSTICK_AXIS_MAX, and are centered within ~8000 of zero, though + * advanced UI will allow users to set or autodetect the dead zone, which + * varies between gamepads. + * + * Trigger axis values range from 0 (released) to SDL_JOYSTICK_AXIS_MAX (fully + * pressed) when reported by SDL_GetGamepadAxis(). Note that this is not the + * same range that will be reported by the lower-level SDL_GetJoystickAxis(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadAxis +{ + SDL_GAMEPAD_AXIS_INVALID = -1, + SDL_GAMEPAD_AXIS_LEFTX, + SDL_GAMEPAD_AXIS_LEFTY, + SDL_GAMEPAD_AXIS_RIGHTX, + SDL_GAMEPAD_AXIS_RIGHTY, + SDL_GAMEPAD_AXIS_LEFT_TRIGGER, + SDL_GAMEPAD_AXIS_RIGHT_TRIGGER, + SDL_GAMEPAD_AXIS_COUNT +} SDL_GamepadAxis; + +/** + * Types of gamepad control bindings. + * + * A gamepad is a collection of bindings that map arbitrary joystick buttons, + * axes and hat switches to specific positions on a generic console-style + * gamepad. This enum is used as part of SDL_GamepadBinding to specify those + * mappings. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadBindingType +{ + SDL_GAMEPAD_BINDTYPE_NONE = 0, + SDL_GAMEPAD_BINDTYPE_BUTTON, + SDL_GAMEPAD_BINDTYPE_AXIS, + SDL_GAMEPAD_BINDTYPE_HAT +} SDL_GamepadBindingType; + +/** + * A mapping between one joystick input to a gamepad control. + * + * A gamepad has a collection of several bindings, to say, for example, when + * joystick button number 5 is pressed, that should be treated like the + * gamepad's "start" button. + * + * SDL has these bindings built-in for many popular controllers, and can add + * more with a simple text string. Those strings are parsed into a collection + * of these structs to make it easier to operate on the data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadBindings + */ +typedef struct SDL_GamepadBinding +{ + SDL_GamepadBindingType input_type; + union + { + int button; + + struct + { + int axis; + int axis_min; + int axis_max; + } axis; + + struct + { + int hat; + int hat_mask; + } hat; + + } input; + + SDL_GamepadBindingType output_type; + union + { + SDL_GamepadButton button; + + struct + { + SDL_GamepadAxis axis; + int axis_min; + int axis_max; + } axis; + + } output; +} SDL_GamepadBinding; + + +/** + * Add support for gamepads that SDL is unaware of or change the binding of an + * existing gamepad. + * + * The mapping string has the format "GUID,name,mapping", where GUID is the + * string value from SDL_GUIDToString(), name is the human readable string for + * the device and mappings are gamepad mappings to joystick ones. Under + * Windows there is a reserved GUID of "xinput" that covers all XInput + * devices. The mapping format for joystick is: + * + * - `bX`: a joystick button, index X + * - `hX.Y`: hat X with value Y + * - `aX`: axis X of the joystick + * + * Buttons can be used as a gamepad axes and vice versa. + * + * If a device with this GUID is already plugged in, SDL will generate an + * SDL_EVENT_GAMEPAD_ADDED event. + * + * This string shows an example of a valid mapping for a gamepad: + * + * ```c + * "341a3608000000000000504944564944,Afterglow PS3 Controller,a:b1,b:b2,y:b3,x:b0,start:b9,guide:b12,back:b8,dpup:h0.1,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,leftshoulder:b4,rightshoulder:b5,leftstick:b10,rightstick:b11,leftx:a0,lefty:a1,rightx:a2,righty:a3,lefttrigger:b6,righttrigger:b7" + * ``` + * + * \param mapping the mapping string. + * \returns 1 if a new mapping is added, 0 if an existing mapping is updated, + * -1 on failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMappingsFromFile + * \sa SDL_AddGamepadMappingsFromIO + * \sa SDL_GetGamepadMapping + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_HINT_GAMECONTROLLERCONFIG + * \sa SDL_HINT_GAMECONTROLLERCONFIG_FILE + * \sa SDL_EVENT_GAMEPAD_ADDED + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddGamepadMapping(const char *mapping); + +/** + * Load a set of gamepad mappings from an SDL_IOStream. + * + * You can call this function several times, if needed, to load different + * database files. + * + * If a new mapping is loaded for an already known gamepad GUID, the later + * version will overwrite the one currently loaded. + * + * Any new mappings for already plugged in controllers will generate + * SDL_EVENT_GAMEPAD_ADDED events. + * + * Mappings not belonging to the current platform or with no platform field + * specified will be ignored (i.e. mappings for Linux will be ignored in + * Windows, etc). + * + * This function will load the text database entirely in memory before + * processing it, so take this into consideration if you are in a memory + * constrained environment. + * + * \param src the data stream for the mappings to be added. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns the number of mappings added or -1 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_AddGamepadMappingsFromFile + * \sa SDL_GetGamepadMapping + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_HINT_GAMECONTROLLERCONFIG + * \sa SDL_HINT_GAMECONTROLLERCONFIG_FILE + * \sa SDL_EVENT_GAMEPAD_ADDED + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddGamepadMappingsFromIO(SDL_IOStream *src, bool closeio); + +/** + * Load a set of gamepad mappings from a file. + * + * You can call this function several times, if needed, to load different + * database files. + * + * If a new mapping is loaded for an already known gamepad GUID, the later + * version will overwrite the one currently loaded. + * + * Any new mappings for already plugged in controllers will generate + * SDL_EVENT_GAMEPAD_ADDED events. + * + * Mappings not belonging to the current platform or with no platform field + * specified will be ignored (i.e. mappings for Linux will be ignored in + * Windows, etc). + * + * \param file the mappings file to load. + * \returns the number of mappings added or -1 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_AddGamepadMappingsFromIO + * \sa SDL_GetGamepadMapping + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_HINT_GAMECONTROLLERCONFIG + * \sa SDL_HINT_GAMECONTROLLERCONFIG_FILE + * \sa SDL_EVENT_GAMEPAD_ADDED + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddGamepadMappingsFromFile(const char *file); + +/** + * Reinitialize the SDL mapping database to its initial state. + * + * This will generate gamepad events as needed if device mappings change. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReloadGamepadMappings(void); + +/** + * Get the current gamepad mappings. + * + * \param count a pointer filled in with the number of mappings returned, can + * be NULL. + * \returns an array of the mapping strings, NULL-terminated, or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GetGamepadMappings(int *count); + +/** + * Get the gamepad mapping string for a given GUID. + * + * \param guid a structure containing the GUID for which a mapping is desired. + * \returns a mapping string or NULL on failure; call SDL_GetError() for more + * information. This should be freed with SDL_free() when it is no + * longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUIDForID + * \sa SDL_GetJoystickGUID + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetGamepadMappingForGUID(SDL_GUID guid); + +/** + * Get the current mapping of a gamepad. + * + * Details about mappings are discussed with SDL_AddGamepadMapping(). + * + * \param gamepad the gamepad you want to get the current mapping for. + * \returns a string that has the gamepad's mapping or NULL if no mapping is + * available; call SDL_GetError() for more information. This should + * be freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_GetGamepadMappingForID + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_SetGamepadMapping + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetGamepadMapping(SDL_Gamepad *gamepad); + +/** + * Set the current mapping of a joystick or gamepad. + * + * Details about mappings are discussed with SDL_AddGamepadMapping(). + * + * \param instance_id the joystick instance ID. + * \param mapping the mapping to use for this device, or NULL to clear the + * mapping. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_GetGamepadMapping + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadMapping(SDL_JoystickID instance_id, const char *mapping); + +/** + * Return whether a gamepad is currently connected. + * + * \returns true if a gamepad is connected, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasGamepad(void); + +/** + * Get a list of currently connected gamepads. + * + * \param count a pointer filled in with the number of gamepads returned, may + * be NULL. + * \returns a 0 terminated array of joystick instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasGamepad + * \sa SDL_OpenGamepad + */ +extern SDL_DECLSPEC SDL_JoystickID * SDLCALL SDL_GetGamepads(int *count); + +/** + * Check if the given joystick is supported by the gamepad interface. + * + * \param instance_id the joystick instance ID. + * \returns true if the given joystick is supported by the gamepad interface, + * false if it isn't or it's an invalid index. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoysticks + * \sa SDL_OpenGamepad + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsGamepad(SDL_JoystickID instance_id); + +/** + * Get the implementation dependent name of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the name of the selected gamepad. If no name can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadName + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadNameForID(SDL_JoystickID instance_id); + +/** + * Get the implementation dependent path of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the path of the selected gamepad. If no path can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPath + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadPathForID(SDL_JoystickID instance_id); + +/** + * Get the player index of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the player index of a gamepad, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPlayerIndex + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetGamepadPlayerIndexForID(SDL_JoystickID instance_id); + +/** + * Get the implementation-dependent GUID of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the GUID of the selected gamepad. If called on an invalid index, + * this function returns a zero GUID. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GUIDToString + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_GetGamepadGUIDForID(SDL_JoystickID instance_id); + +/** + * Get the USB vendor ID of a gamepad, if available. + * + * This can be called before any gamepads are opened. If the vendor ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB vendor ID of the selected gamepad. If called on an invalid + * index, this function returns zero. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadVendor + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadVendorForID(SDL_JoystickID instance_id); + +/** + * Get the USB product ID of a gamepad, if available. + * + * This can be called before any gamepads are opened. If the product ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB product ID of the selected gamepad. If called on an + * invalid index, this function returns zero. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProduct + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProductForID(SDL_JoystickID instance_id); + +/** + * Get the product version of a gamepad, if available. + * + * This can be called before any gamepads are opened. If the product version + * isn't available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the product version of the selected gamepad. If called on an + * invalid index, this function returns zero. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProductVersion + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProductVersionForID(SDL_JoystickID instance_id); + +/** + * Get the type of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the gamepad type. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadType + * \sa SDL_GetGamepads + * \sa SDL_GetRealGamepadTypeForID + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadTypeForID(SDL_JoystickID instance_id); + +/** + * Get the type of a gamepad, ignoring any mapping override. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the gamepad type. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTypeForID + * \sa SDL_GetGamepads + * \sa SDL_GetRealGamepadType + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetRealGamepadTypeForID(SDL_JoystickID instance_id); + +/** + * Get the mapping of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the mapping string. Returns NULL if no mapping is available. This + * should be freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepads + * \sa SDL_GetGamepadMapping + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetGamepadMappingForID(SDL_JoystickID instance_id); + +/** + * Open a gamepad for use. + * + * \param instance_id the joystick instance ID. + * \returns a gamepad identifier or NULL if an error occurred; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseGamepad + * \sa SDL_IsGamepad + */ +extern SDL_DECLSPEC SDL_Gamepad * SDLCALL SDL_OpenGamepad(SDL_JoystickID instance_id); + +/** + * Get the SDL_Gamepad associated with a joystick instance ID, if it has been + * opened. + * + * \param instance_id the joystick instance ID of the gamepad. + * \returns an SDL_Gamepad on success or NULL on failure or if it hasn't been + * opened yet; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Gamepad * SDLCALL SDL_GetGamepadFromID(SDL_JoystickID instance_id); + +/** + * Get the SDL_Gamepad associated with a player index. + * + * \param player_index the player index, which different from the instance ID. + * \returns the SDL_Gamepad associated with a player index. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPlayerIndex + * \sa SDL_SetGamepadPlayerIndex + */ +extern SDL_DECLSPEC SDL_Gamepad * SDLCALL SDL_GetGamepadFromPlayerIndex(int player_index); + +/** + * Get the properties associated with an opened gamepad. + * + * These properties are shared with the underlying joystick object. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_GAMEPAD_CAP_MONO_LED_BOOLEAN`: true if this gamepad has an LED + * that has adjustable brightness + * - `SDL_PROP_GAMEPAD_CAP_RGB_LED_BOOLEAN`: true if this gamepad has an LED + * that has adjustable color + * - `SDL_PROP_GAMEPAD_CAP_PLAYER_LED_BOOLEAN`: true if this gamepad has a + * player LED + * - `SDL_PROP_GAMEPAD_CAP_RUMBLE_BOOLEAN`: true if this gamepad has + * left/right rumble + * - `SDL_PROP_GAMEPAD_CAP_TRIGGER_RUMBLE_BOOLEAN`: true if this gamepad has + * simple trigger rumble + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetGamepadProperties(SDL_Gamepad *gamepad); + +#define SDL_PROP_GAMEPAD_CAP_MONO_LED_BOOLEAN SDL_PROP_JOYSTICK_CAP_MONO_LED_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_RGB_LED_BOOLEAN SDL_PROP_JOYSTICK_CAP_RGB_LED_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_PLAYER_LED_BOOLEAN SDL_PROP_JOYSTICK_CAP_PLAYER_LED_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_RUMBLE_BOOLEAN SDL_PROP_JOYSTICK_CAP_RUMBLE_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_TRIGGER_RUMBLE_BOOLEAN SDL_PROP_JOYSTICK_CAP_TRIGGER_RUMBLE_BOOLEAN + +/** + * Get the instance ID of an opened gamepad. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns the instance ID of the specified gamepad on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickID SDLCALL SDL_GetGamepadID(SDL_Gamepad *gamepad); + +/** + * Get the implementation-dependent name for an opened gamepad. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns the implementation dependent name for the gamepad, or NULL if + * there is no name or the identifier passed is invalid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadNameForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadName(SDL_Gamepad *gamepad); + +/** + * Get the implementation-dependent path for an opened gamepad. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns the implementation dependent path for the gamepad, or NULL if + * there is no path or the identifier passed is invalid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPathForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadPath(SDL_Gamepad *gamepad); + +/** + * Get the type of an opened gamepad. + * + * \param gamepad the gamepad object to query. + * \returns the gamepad type, or SDL_GAMEPAD_TYPE_UNKNOWN if it's not + * available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTypeForID + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadType(SDL_Gamepad *gamepad); + +/** + * Get the type of an opened gamepad, ignoring any mapping override. + * + * \param gamepad the gamepad object to query. + * \returns the gamepad type, or SDL_GAMEPAD_TYPE_UNKNOWN if it's not + * available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRealGamepadTypeForID + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetRealGamepadType(SDL_Gamepad *gamepad); + +/** + * Get the player index of an opened gamepad. + * + * For XInput gamepads this returns the XInput user index. + * + * \param gamepad the gamepad object to query. + * \returns the player index for gamepad, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetGamepadPlayerIndex + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetGamepadPlayerIndex(SDL_Gamepad *gamepad); + +/** + * Set the player index of an opened gamepad. + * + * \param gamepad the gamepad object to adjust. + * \param player_index player index to assign to this gamepad, or -1 to clear + * the player index and turn off player LEDs. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPlayerIndex + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadPlayerIndex(SDL_Gamepad *gamepad, int player_index); + +/** + * Get the USB vendor ID of an opened gamepad, if available. + * + * If the vendor ID isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the USB vendor ID, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadVendorForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadVendor(SDL_Gamepad *gamepad); + +/** + * Get the USB product ID of an opened gamepad, if available. + * + * If the product ID isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the USB product ID, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProductForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProduct(SDL_Gamepad *gamepad); + +/** + * Get the product version of an opened gamepad, if available. + * + * If the product version isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the USB product version, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProductVersionForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProductVersion(SDL_Gamepad *gamepad); + +/** + * Get the firmware version of an opened gamepad, if available. + * + * If the firmware version isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the gamepad firmware version, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadFirmwareVersion(SDL_Gamepad *gamepad); + +/** + * Get the serial number of an opened gamepad, if available. + * + * Returns the serial number of the gamepad, or NULL if it is not available. + * + * \param gamepad the gamepad object to query. + * \returns the serial number, or NULL if unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadSerial(SDL_Gamepad *gamepad); + +/** + * Get the Steam Input handle of an opened gamepad, if available. + * + * Returns an InputHandle_t for the gamepad that can be used with Steam Input + * API: https://partner.steamgames.com/doc/api/ISteamInput + * + * \param gamepad the gamepad object to query. + * \returns the gamepad handle, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetGamepadSteamHandle(SDL_Gamepad *gamepad); + +/** + * Get the connection state of a gamepad. + * + * \param gamepad the gamepad object to query. + * \returns the connection state on success or + * `SDL_JOYSTICK_CONNECTION_INVALID` on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickConnectionState SDLCALL SDL_GetGamepadConnectionState(SDL_Gamepad *gamepad); + +/** + * Get the battery state of a gamepad. + * + * You should never take a battery status as absolute truth. Batteries + * (especially failing batteries) are delicate hardware, and the values + * reported here are best estimates based on what that hardware reports. It's + * not uncommon for older batteries to lose stored power much faster than it + * reports, or completely drain when reporting it has 20 percent left, etc. + * + * \param gamepad the gamepad object to query. + * \param percent a pointer filled in with the percentage of battery life + * left, between 0 and 100, or NULL to ignore. This will be + * filled in with -1 we can't determine a value or there is no + * battery. + * \returns the current battery state. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PowerState SDLCALL SDL_GetGamepadPowerInfo(SDL_Gamepad *gamepad, int *percent); + +/** + * Check if a gamepad has been opened and is currently connected. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns true if the gamepad has been opened and is currently connected, or + * false if not. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadConnected(SDL_Gamepad *gamepad); + +/** + * Get the underlying joystick from a gamepad. + * + * This function will give you a SDL_Joystick object, which allows you to use + * the SDL_Joystick functions with a SDL_Gamepad object. This would be useful + * for getting a joystick's position at any given time, even if it hasn't + * moved (moving it would produce an event, which would have the axis' value). + * + * The pointer returned is owned by the SDL_Gamepad. You should not call + * SDL_CloseJoystick() on it, for example, since doing so will likely cause + * SDL to crash. + * + * \param gamepad the gamepad object that you want to get a joystick from. + * \returns an SDL_Joystick object, or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_GetGamepadJoystick(SDL_Gamepad *gamepad); + +/** + * Set the state of gamepad event processing. + * + * If gamepad events are disabled, you must call SDL_UpdateGamepads() yourself + * and check the state of the gamepad when you want gamepad information. + * + * \param enabled whether to process gamepad events or not. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadEventsEnabled + * \sa SDL_UpdateGamepads + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGamepadEventsEnabled(bool enabled); + +/** + * Query the state of gamepad event processing. + * + * If gamepad events are disabled, you must call SDL_UpdateGamepads() yourself + * and check the state of the gamepad when you want gamepad information. + * + * \returns true if gamepad events are being processed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetGamepadEventsEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadEventsEnabled(void); + +/** + * Get the SDL joystick layer bindings for a gamepad. + * + * \param gamepad a gamepad. + * \param count a pointer filled in with the number of bindings returned. + * \returns a NULL terminated array of pointers to bindings or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GamepadBinding ** SDLCALL SDL_GetGamepadBindings(SDL_Gamepad *gamepad, int *count); + +/** + * Manually pump gamepad updates if not using the loop. + * + * This function is called automatically by the event loop if events are + * enabled. Under such circumstances, it will not be necessary to call this + * function. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateGamepads(void); + +/** + * Convert a string into SDL_GamepadType enum. + * + * This function is called internally to translate SDL_Gamepad mapping strings + * for the underlying joystick device into the consistent SDL_Gamepad mapping. + * You do not normally need to call this function unless you are parsing + * SDL_Gamepad mappings in your own code. + * + * \param str string representing a SDL_GamepadType type. + * \returns the SDL_GamepadType enum corresponding to the input string, or + * `SDL_GAMEPAD_TYPE_UNKNOWN` if no match was found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadStringForType + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadTypeFromString(const char *str); + +/** + * Convert from an SDL_GamepadType enum to a string. + * + * \param type an enum value for a given SDL_GamepadType. + * \returns a string for the given type, or NULL if an invalid type is + * specified. The string returned is of the format used by + * SDL_Gamepad mapping strings. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTypeFromString + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadStringForType(SDL_GamepadType type); + +/** + * Convert a string into SDL_GamepadAxis enum. + * + * This function is called internally to translate SDL_Gamepad mapping strings + * for the underlying joystick device into the consistent SDL_Gamepad mapping. + * You do not normally need to call this function unless you are parsing + * SDL_Gamepad mappings in your own code. + * + * Note specially that "righttrigger" and "lefttrigger" map to + * `SDL_GAMEPAD_AXIS_RIGHT_TRIGGER` and `SDL_GAMEPAD_AXIS_LEFT_TRIGGER`, + * respectively. + * + * \param str string representing a SDL_Gamepad axis. + * \returns the SDL_GamepadAxis enum corresponding to the input string, or + * `SDL_GAMEPAD_AXIS_INVALID` if no match was found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadStringForAxis + */ +extern SDL_DECLSPEC SDL_GamepadAxis SDLCALL SDL_GetGamepadAxisFromString(const char *str); + +/** + * Convert from an SDL_GamepadAxis enum to a string. + * + * \param axis an enum value for a given SDL_GamepadAxis. + * \returns a string for the given axis, or NULL if an invalid axis is + * specified. The string returned is of the format used by + * SDL_Gamepad mapping strings. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadAxisFromString + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadStringForAxis(SDL_GamepadAxis axis); + +/** + * Query whether a gamepad has a given axis. + * + * This merely reports whether the gamepad's mapping defined this axis, as + * that is all the information SDL has about the physical device. + * + * \param gamepad a gamepad. + * \param axis an axis enum value (an SDL_GamepadAxis value). + * \returns true if the gamepad has this axis, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasButton + * \sa SDL_GetGamepadAxis + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadHasAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis); + +/** + * Get the current state of an axis control on a gamepad. + * + * The axis indices start at index 0. + * + * For thumbsticks, the state is a value ranging from -32768 (up/left) to + * 32767 (down/right). + * + * Triggers range from 0 when released to 32767 when fully pressed, and never + * return a negative value. Note that this differs from the value reported by + * the lower-level SDL_GetJoystickAxis(), which normally uses the full range. + * + * \param gamepad a gamepad. + * \param axis an axis index (one of the SDL_GamepadAxis values). + * \returns axis state (including 0) on success or 0 (also) on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasAxis + * \sa SDL_GetGamepadButton + */ +extern SDL_DECLSPEC Sint16 SDLCALL SDL_GetGamepadAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis); + +/** + * Convert a string into an SDL_GamepadButton enum. + * + * This function is called internally to translate SDL_Gamepad mapping strings + * for the underlying joystick device into the consistent SDL_Gamepad mapping. + * You do not normally need to call this function unless you are parsing + * SDL_Gamepad mappings in your own code. + * + * \param str string representing a SDL_Gamepad axis. + * \returns the SDL_GamepadButton enum corresponding to the input string, or + * `SDL_GAMEPAD_BUTTON_INVALID` if no match was found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadStringForButton + */ +extern SDL_DECLSPEC SDL_GamepadButton SDLCALL SDL_GetGamepadButtonFromString(const char *str); + +/** + * Convert from an SDL_GamepadButton enum to a string. + * + * \param button an enum value for a given SDL_GamepadButton. + * \returns a string for the given button, or NULL if an invalid button is + * specified. The string returned is of the format used by + * SDL_Gamepad mapping strings. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadButtonFromString + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadStringForButton(SDL_GamepadButton button); + +/** + * Query whether a gamepad has a given button. + * + * This merely reports whether the gamepad's mapping defined this button, as + * that is all the information SDL has about the physical device. + * + * \param gamepad a gamepad. + * \param button a button enum value (an SDL_GamepadButton value). + * \returns true if the gamepad has this button, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasAxis + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadHasButton(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Get the current state of a button on a gamepad. + * + * \param gamepad a gamepad. + * \param button a button index (one of the SDL_GamepadButton values). + * \returns true if the button is pressed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasButton + * \sa SDL_GetGamepadAxis + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGamepadButton(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Get the label of a button on a gamepad. + * + * \param type the type of gamepad to check. + * \param button a button index (one of the SDL_GamepadButton values). + * \returns the SDL_GamepadButtonLabel enum corresponding to the button label. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadButtonLabel + */ +extern SDL_DECLSPEC SDL_GamepadButtonLabel SDLCALL SDL_GetGamepadButtonLabelForType(SDL_GamepadType type, SDL_GamepadButton button); + +/** + * Get the label of a button on a gamepad. + * + * \param gamepad a gamepad. + * \param button a button index (one of the SDL_GamepadButton values). + * \returns the SDL_GamepadButtonLabel enum corresponding to the button label. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadButtonLabelForType + */ +extern SDL_DECLSPEC SDL_GamepadButtonLabel SDLCALL SDL_GetGamepadButtonLabel(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Get the number of touchpads on a gamepad. + * + * \param gamepad a gamepad. + * \returns number of touchpads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumGamepadTouchpadFingers + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumGamepadTouchpads(SDL_Gamepad *gamepad); + +/** + * Get the number of supported simultaneous fingers on a touchpad on a game + * gamepad. + * + * \param gamepad a gamepad. + * \param touchpad a touchpad. + * \returns number of supported simultaneous fingers. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTouchpadFinger + * \sa SDL_GetNumGamepadTouchpads + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumGamepadTouchpadFingers(SDL_Gamepad *gamepad, int touchpad); + +/** + * Get the current state of a finger on a touchpad on a gamepad. + * + * \param gamepad a gamepad. + * \param touchpad a touchpad. + * \param finger a finger. + * \param down a pointer filled with true if the finger is down, false + * otherwise, may be NULL. + * \param x a pointer filled with the x position, normalized 0 to 1, with the + * origin in the upper left, may be NULL. + * \param y a pointer filled with the y position, normalized 0 to 1, with the + * origin in the upper left, may be NULL. + * \param pressure a pointer filled with pressure value, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumGamepadTouchpadFingers + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGamepadTouchpadFinger(SDL_Gamepad *gamepad, int touchpad, int finger, bool *down, float *x, float *y, float *pressure); + +/** + * Return whether a gamepad has a particular sensor. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \returns true if the sensor exists, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadSensorData + * \sa SDL_GetGamepadSensorDataRate + * \sa SDL_SetGamepadSensorEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadHasSensor(SDL_Gamepad *gamepad, SDL_SensorType type); + +/** + * Set whether data reporting for a gamepad sensor is enabled. + * + * \param gamepad the gamepad to update. + * \param type the type of sensor to enable/disable. + * \param enabled whether data reporting should be enabled. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasSensor + * \sa SDL_GamepadSensorEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadSensorEnabled(SDL_Gamepad *gamepad, SDL_SensorType type, bool enabled); + +/** + * Query whether sensor data reporting is enabled for a gamepad. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \returns true if the sensor is enabled, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetGamepadSensorEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadSensorEnabled(SDL_Gamepad *gamepad, SDL_SensorType type); + +/** + * Get the data rate (number of events per second) of a gamepad sensor. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \returns the data rate, or 0.0f if the data rate is not available. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetGamepadSensorDataRate(SDL_Gamepad *gamepad, SDL_SensorType type); + +/** + * Get the current state of a gamepad sensor. + * + * The number of values and interpretation of the data is sensor dependent. + * See SDL_sensor.h for the details for each type of sensor. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \param data a pointer filled with the current sensor state. + * \param num_values the number of values to write to data. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGamepadSensorData(SDL_Gamepad *gamepad, SDL_SensorType type, float *data, int num_values); + +/** + * Start a rumble effect on a gamepad. + * + * Each call to this function cancels any previous rumble effect, and calling + * it with 0 intensity stops any rumbling. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param gamepad the gamepad to vibrate. + * \param low_frequency_rumble the intensity of the low frequency (left) + * rumble motor, from 0 to 0xFFFF. + * \param high_frequency_rumble the intensity of the high frequency (right) + * rumble motor, from 0 to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleGamepad(SDL_Gamepad *gamepad, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble, Uint32 duration_ms); + +/** + * Start a rumble effect in the gamepad's triggers. + * + * Each call to this function cancels any previous trigger rumble effect, and + * calling it with 0 intensity stops any rumbling. + * + * Note that this is rumbling of the _triggers_ and not the gamepad as a + * whole. This is currently only supported on Xbox One gamepads. If you want + * the (more common) whole-gamepad rumble, use SDL_RumbleGamepad() instead. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param gamepad the gamepad to vibrate. + * \param left_rumble the intensity of the left trigger rumble motor, from 0 + * to 0xFFFF. + * \param right_rumble the intensity of the right trigger rumble motor, from 0 + * to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RumbleGamepad + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleGamepadTriggers(SDL_Gamepad *gamepad, Uint16 left_rumble, Uint16 right_rumble, Uint32 duration_ms); + +/** + * Update a gamepad's LED color. + * + * An example of a joystick LED is the light on the back of a PlayStation 4's + * DualShock 4 controller. + * + * For gamepads with a single color LED, the maximum of the RGB values will be + * used as the LED brightness. + * + * \param gamepad the gamepad to update. + * \param red the intensity of the red LED. + * \param green the intensity of the green LED. + * \param blue the intensity of the blue LED. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadLED(SDL_Gamepad *gamepad, Uint8 red, Uint8 green, Uint8 blue); + +/** + * Send a gamepad specific effect packet. + * + * \param gamepad the gamepad to affect. + * \param data the data to send to the gamepad. + * \param size the size of the data to send to the gamepad. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendGamepadEffect(SDL_Gamepad *gamepad, const void *data, int size); + +/** + * Close a gamepad previously opened with SDL_OpenGamepad(). + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenGamepad + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseGamepad(SDL_Gamepad *gamepad); + +/** + * Return the sfSymbolsName for a given button on a gamepad on Apple + * platforms. + * + * \param gamepad the gamepad to query. + * \param button a button on the gamepad. + * \returns the sfSymbolsName or NULL if the name can't be found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadAppleSFSymbolsNameForAxis + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadAppleSFSymbolsNameForButton(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Return the sfSymbolsName for a given axis on a gamepad on Apple platforms. + * + * \param gamepad the gamepad to query. + * \param axis an axis on the gamepad. + * \returns the sfSymbolsName or NULL if the name can't be found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadAppleSFSymbolsNameForButton + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadAppleSFSymbolsNameForAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_gamepad_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_gpu.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_gpu.h new file mode 100644 index 0000000..4a5e32f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_gpu.h @@ -0,0 +1,4213 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: GPU */ + +/** + * # CategoryGPU + * + * The GPU API offers a cross-platform way for apps to talk to modern graphics + * hardware. It offers both 3D graphics and compute support, in the style of + * Metal, Vulkan, and Direct3D 12. + * + * A basic workflow might be something like this: + * + * The app creates a GPU device with SDL_CreateGPUDevice(), and assigns it to + * a window with SDL_ClaimWindowForGPUDevice()--although strictly speaking you + * can render offscreen entirely, perhaps for image processing, and not use a + * window at all. + * + * Next, the app prepares static data (things that are created once and used + * over and over). For example: + * + * - Shaders (programs that run on the GPU): use SDL_CreateGPUShader(). + * - Vertex buffers (arrays of geometry data) and other rendering data: use + * SDL_CreateGPUBuffer() and SDL_UploadToGPUBuffer(). + * - Textures (images): use SDL_CreateGPUTexture() and + * SDL_UploadToGPUTexture(). + * - Samplers (how textures should be read from): use SDL_CreateGPUSampler(). + * - Render pipelines (precalculated rendering state): use + * SDL_CreateGPUGraphicsPipeline() + * + * To render, the app creates one or more command buffers, with + * SDL_AcquireGPUCommandBuffer(). Command buffers collect rendering + * instructions that will be submitted to the GPU in batch. Complex scenes can + * use multiple command buffers, maybe configured across multiple threads in + * parallel, as long as they are submitted in the correct order, but many apps + * will just need one command buffer per frame. + * + * Rendering can happen to a texture (what other APIs call a "render target") + * or it can happen to the swapchain texture (which is just a special texture + * that represents a window's contents). The app can use + * SDL_WaitAndAcquireGPUSwapchainTexture() to render to the window. + * + * Rendering actually happens in a Render Pass, which is encoded into a + * command buffer. One can encode multiple render passes (or alternate between + * render and compute passes) in a single command buffer, but many apps might + * simply need a single render pass in a single command buffer. Render Passes + * can render to up to four color textures and one depth texture + * simultaneously. If the set of textures being rendered to needs to change, + * the Render Pass must be ended and a new one must be begun. + * + * The app calls SDL_BeginGPURenderPass(). Then it sets states it needs for + * each draw: + * + * - SDL_BindGPUGraphicsPipeline() + * - SDL_SetGPUViewport() + * - SDL_BindGPUVertexBuffers() + * - SDL_BindGPUVertexSamplers() + * - etc + * + * Then, make the actual draw commands with these states: + * + * - SDL_DrawGPUPrimitives() + * - SDL_DrawGPUPrimitivesIndirect() + * - SDL_DrawGPUIndexedPrimitivesIndirect() + * - etc + * + * After all the drawing commands for a pass are complete, the app should call + * SDL_EndGPURenderPass(). Once a render pass ends all render-related state is + * reset. + * + * The app can begin new Render Passes and make new draws in the same command + * buffer until the entire scene is rendered. + * + * Once all of the render commands for the scene are complete, the app calls + * SDL_SubmitGPUCommandBuffer() to send it to the GPU for processing. + * + * If the app needs to read back data from texture or buffers, the API has an + * efficient way of doing this, provided that the app is willing to tolerate + * some latency. When the app uses SDL_DownloadFromGPUTexture() or + * SDL_DownloadFromGPUBuffer(), submitting the command buffer with + * SDL_SubmitGPUCommandBufferAndAcquireFence() will return a fence handle that + * the app can poll or wait on in a thread. Once the fence indicates that the + * command buffer is done processing, it is safe to read the downloaded data. + * Make sure to call SDL_ReleaseGPUFence() when done with the fence. + * + * The API also has "compute" support. The app calls SDL_BeginGPUComputePass() + * with compute-writeable textures and/or buffers, which can be written to in + * a compute shader. Then it sets states it needs for the compute dispatches: + * + * - SDL_BindGPUComputePipeline() + * - SDL_BindGPUComputeStorageBuffers() + * - SDL_BindGPUComputeStorageTextures() + * + * Then, dispatch compute work: + * + * - SDL_DispatchGPUCompute() + * + * For advanced users, this opens up powerful GPU-driven workflows. + * + * Graphics and compute pipelines require the use of shaders, which as + * mentioned above are small programs executed on the GPU. Each backend + * (Vulkan, Metal, D3D12) requires a different shader format. When the app + * creates the GPU device, the app lets the device know which shader formats + * the app can provide. It will then select the appropriate backend depending + * on the available shader formats and the backends available on the platform. + * When creating shaders, the app must provide the correct shader format for + * the selected backend. If you would like to learn more about why the API + * works this way, there is a detailed + * [blog post](https://moonside.games/posts/layers-all-the-way-down/) + * explaining this situation. + * + * It is optimal for apps to pre-compile the shader formats they might use, + * but for ease of use SDL provides a separate project, + * [SDL_shadercross](https://github.com/libsdl-org/SDL_shadercross) + * , for performing runtime shader cross-compilation. It also has a CLI + * interface for offline precompilation as well. + * + * This is an extremely quick overview that leaves out several important + * details. Already, though, one can see that GPU programming can be quite + * complex! If you just need simple 2D graphics, the + * [Render API](https://wiki.libsdl.org/SDL3/CategoryRender) + * is much easier to use but still hardware-accelerated. That said, even for + * 2D applications the performance benefits and expressiveness of the GPU API + * are significant. + * + * The GPU API targets a feature set with a wide range of hardware support and + * ease of portability. It is designed so that the app won't have to branch + * itself by querying feature support. If you need cutting-edge features with + * limited hardware support, this API is probably not for you. + * + * Examples demonstrating proper usage of this API can be found + * [here](https://github.com/TheSpydog/SDL_gpu_examples) + * . + * + * ## Performance considerations + * + * Here are some basic tips for maximizing your rendering performance. + * + * - Beginning a new render pass is relatively expensive. Use as few render + * passes as you can. + * - Minimize the amount of state changes. For example, binding a pipeline is + * relatively cheap, but doing it hundreds of times when you don't need to + * will slow the performance significantly. + * - Perform your data uploads as early as possible in the frame. + * - Don't churn resources. Creating and releasing resources is expensive. + * It's better to create what you need up front and cache it. + * - Don't use uniform buffers for large amounts of data (more than a matrix + * or so). Use a storage buffer instead. + * - Use cycling correctly. There is a detailed explanation of cycling further + * below. + * - Use culling techniques to minimize pixel writes. The less writing the GPU + * has to do the better. Culling can be a very advanced topic but even + * simple culling techniques can boost performance significantly. + * + * In general try to remember the golden rule of performance: doing things is + * more expensive than not doing things. Don't Touch The Driver! + * + * ## FAQ + * + * **Question: When are you adding more advanced features, like ray tracing or + * mesh shaders?** + * + * Answer: We don't have immediate plans to add more bleeding-edge features, + * but we certainly might in the future, when these features prove worthwhile, + * and reasonable to implement across several platforms and underlying APIs. + * So while these things are not in the "never" category, they are definitely + * not "near future" items either. + * + * **Question: Why is my shader not working?** + * + * Answer: A common oversight when using shaders is not properly laying out + * the shader resources/registers correctly. The GPU API is very strict with + * how it wants resources to be laid out and it's difficult for the API to + * automatically validate shaders to see if they have a compatible layout. See + * the documentation for SDL_CreateGPUShader() and + * SDL_CreateGPUComputePipeline() for information on the expected layout. + * + * Another common issue is not setting the correct number of samplers, + * textures, and buffers in SDL_GPUShaderCreateInfo. If possible use shader + * reflection to extract the required information from the shader + * automatically instead of manually filling in the struct's values. + * + * **Question: My application isn't performing very well. Is this the GPU + * API's fault?** + * + * Answer: No. Long answer: The GPU API is a relatively thin layer over the + * underlying graphics API. While it's possible that we have done something + * inefficiently, it's very unlikely especially if you are relatively + * inexperienced with GPU rendering. Please see the performance tips above and + * make sure you are following them. Additionally, tools like RenderDoc can be + * very helpful for diagnosing incorrect behavior and performance issues. + * + * ## System Requirements + * + * **Vulkan:** Supported on Windows, Linux, Nintendo Switch, and certain + * Android devices. Requires Vulkan 1.0 with the following extensions and + * device features: + * + * - `VK_KHR_swapchain` + * - `VK_KHR_maintenance1` + * - `independentBlend` + * - `imageCubeArray` + * - `depthClamp` + * - `shaderClipDistance` + * - `drawIndirectFirstInstance` + * + * **D3D12:** Supported on Windows 10 or newer, Xbox One (GDK), and Xbox + * Series X|S (GDK). Requires a GPU that supports DirectX 12 Feature Level + * 11_1. + * + * **Metal:** Supported on macOS 10.14+ and iOS/tvOS 13.0+. Hardware + * requirements vary by operating system: + * + * - macOS requires an Apple Silicon or + * [Intel Mac2 family](https://developer.apple.com/documentation/metal/mtlfeatureset/mtlfeatureset_macos_gpufamily2_v1?language=objc) + * GPU + * - iOS/tvOS requires an A9 GPU or newer + * - iOS Simulator and tvOS Simulator are unsupported + * + * ## Uniform Data + * + * Uniforms are for passing data to shaders. The uniform data will be constant + * across all executions of the shader. + * + * There are 4 available uniform slots per shader stage (where the stages are + * vertex, fragment, and compute). Uniform data pushed to a slot on a stage + * keeps its value throughout the command buffer until you call the relevant + * Push function on that slot again. + * + * For example, you could write your vertex shaders to read a camera matrix + * from uniform binding slot 0, push the camera matrix at the start of the + * command buffer, and that data will be used for every subsequent draw call. + * + * It is valid to push uniform data during a render or compute pass. + * + * Uniforms are best for pushing small amounts of data. If you are pushing + * more than a matrix or two per call you should consider using a storage + * buffer instead. + * + * ## A Note On Cycling + * + * When using a command buffer, operations do not occur immediately - they + * occur some time after the command buffer is submitted. + * + * When a resource is used in a pending or active command buffer, it is + * considered to be "bound". When a resource is no longer used in any pending + * or active command buffers, it is considered to be "unbound". + * + * If data resources are bound, it is unspecified when that data will be + * unbound unless you acquire a fence when submitting the command buffer and + * wait on it. However, this doesn't mean you need to track resource usage + * manually. + * + * All of the functions and structs that involve writing to a resource have a + * "cycle" bool. SDL_GPUTransferBuffer, SDL_GPUBuffer, and SDL_GPUTexture all + * effectively function as ring buffers on internal resources. When cycle is + * true, if the resource is bound, the cycle rotates to the next unbound + * internal resource, or if none are available, a new one is created. This + * means you don't have to worry about complex state tracking and + * synchronization as long as cycling is correctly employed. + * + * For example: you can call SDL_MapGPUTransferBuffer(), write texture data, + * SDL_UnmapGPUTransferBuffer(), and then SDL_UploadToGPUTexture(). The next + * time you write texture data to the transfer buffer, if you set the cycle + * param to true, you don't have to worry about overwriting any data that is + * not yet uploaded. + * + * Another example: If you are using a texture in a render pass every frame, + * this can cause a data dependency between frames. If you set cycle to true + * in the SDL_GPUColorTargetInfo struct, you can prevent this data dependency. + * + * Cycling will never undefine already bound data. When cycling, all data in + * the resource is considered to be undefined for subsequent commands until + * that data is written again. You must take care not to read undefined data. + * + * Note that when cycling a texture, the entire texture will be cycled, even + * if only part of the texture is used in the call, so you must consider the + * entire texture to contain undefined data after cycling. + * + * You must also take care not to overwrite a section of data that has been + * referenced in a command without cycling first. It is OK to overwrite + * unreferenced data in a bound resource without cycling, but overwriting a + * section of data that has already been referenced will produce unexpected + * results. + */ + +#ifndef SDL_gpu_h_ +#define SDL_gpu_h_ + +#include +#include +#include +#include +#include +#include + +#include +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/* Type Declarations */ + +/** + * An opaque handle representing the SDL_GPU context. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GPUDevice SDL_GPUDevice; + +/** + * An opaque handle representing a buffer. + * + * Used for vertices, indices, indirect draw commands, and general compute + * data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_CopyGPUBufferToBuffer + * \sa SDL_BindGPUVertexBuffers + * \sa SDL_BindGPUIndexBuffer + * \sa SDL_BindGPUVertexStorageBuffers + * \sa SDL_BindGPUFragmentStorageBuffers + * \sa SDL_DrawGPUPrimitivesIndirect + * \sa SDL_DrawGPUIndexedPrimitivesIndirect + * \sa SDL_BindGPUComputeStorageBuffers + * \sa SDL_DispatchGPUComputeIndirect + * \sa SDL_ReleaseGPUBuffer + */ +typedef struct SDL_GPUBuffer SDL_GPUBuffer; + +/** + * An opaque handle representing a transfer buffer. + * + * Used for transferring data to and from the device. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTransferBuffer + * \sa SDL_MapGPUTransferBuffer + * \sa SDL_UnmapGPUTransferBuffer + * \sa SDL_UploadToGPUBuffer + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_ReleaseGPUTransferBuffer + */ +typedef struct SDL_GPUTransferBuffer SDL_GPUTransferBuffer; + +/** + * An opaque handle representing a texture. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_CopyGPUTextureToTexture + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUVertexStorageTextures + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_BindGPUFragmentStorageTextures + * \sa SDL_BindGPUComputeStorageTextures + * \sa SDL_GenerateMipmapsForGPUTexture + * \sa SDL_BlitGPUTexture + * \sa SDL_ReleaseGPUTexture + */ +typedef struct SDL_GPUTexture SDL_GPUTexture; + +/** + * An opaque handle representing a sampler. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_ReleaseGPUSampler + */ +typedef struct SDL_GPUSampler SDL_GPUSampler; + +/** + * An opaque handle representing a compiled shader object. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_ReleaseGPUShader + */ +typedef struct SDL_GPUShader SDL_GPUShader; + +/** + * An opaque handle representing a compute pipeline. + * + * Used during compute passes. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUComputePipeline + * \sa SDL_BindGPUComputePipeline + * \sa SDL_ReleaseGPUComputePipeline + */ +typedef struct SDL_GPUComputePipeline SDL_GPUComputePipeline; + +/** + * An opaque handle representing a graphics pipeline. + * + * Used during render passes. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_BindGPUGraphicsPipeline + * \sa SDL_ReleaseGPUGraphicsPipeline + */ +typedef struct SDL_GPUGraphicsPipeline SDL_GPUGraphicsPipeline; + +/** + * An opaque handle representing a command buffer. + * + * Most state is managed via command buffers. When setting state using a + * command buffer, that state is local to the command buffer. + * + * Commands only begin execution on the GPU once SDL_SubmitGPUCommandBuffer is + * called. Once the command buffer is submitted, it is no longer valid to use + * it. + * + * Command buffers are executed in submission order. If you submit command + * buffer A and then command buffer B all commands in A will begin executing + * before any command in B begins executing. + * + * In multi-threading scenarios, you should only access a command buffer on + * the thread you acquired it from. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +typedef struct SDL_GPUCommandBuffer SDL_GPUCommandBuffer; + +/** + * An opaque handle representing a render pass. + * + * This handle is transient and should not be held or referenced after + * SDL_EndGPURenderPass is called. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + * \sa SDL_EndGPURenderPass + */ +typedef struct SDL_GPURenderPass SDL_GPURenderPass; + +/** + * An opaque handle representing a compute pass. + * + * This handle is transient and should not be held or referenced after + * SDL_EndGPUComputePass is called. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUComputePass + * \sa SDL_EndGPUComputePass + */ +typedef struct SDL_GPUComputePass SDL_GPUComputePass; + +/** + * An opaque handle representing a copy pass. + * + * This handle is transient and should not be held or referenced after + * SDL_EndGPUCopyPass is called. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUCopyPass + * \sa SDL_EndGPUCopyPass + */ +typedef struct SDL_GPUCopyPass SDL_GPUCopyPass; + +/** + * An opaque handle representing a fence. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_QueryGPUFence + * \sa SDL_WaitForGPUFences + * \sa SDL_ReleaseGPUFence + */ +typedef struct SDL_GPUFence SDL_GPUFence; + +/** + * Specifies the primitive topology of a graphics pipeline. + * + * If you are using POINTLIST you must include a point size output in the + * vertex shader. + * + * - For HLSL compiling to SPIRV you must decorate a float output with + * [[vk::builtin("PointSize")]]. + * - For GLSL you must set the gl_PointSize builtin. + * - For MSL you must include a float output with the [[point_size]] + * decorator. + * + * Note that sized point topology is totally unsupported on D3D12. Any size + * other than 1 will be ignored. In general, you should avoid using point + * topology for both compatibility and performance reasons. You WILL regret + * using it. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUPrimitiveType +{ + SDL_GPU_PRIMITIVETYPE_TRIANGLELIST, /**< A series of separate triangles. */ + SDL_GPU_PRIMITIVETYPE_TRIANGLESTRIP, /**< A series of connected triangles. */ + SDL_GPU_PRIMITIVETYPE_LINELIST, /**< A series of separate lines. */ + SDL_GPU_PRIMITIVETYPE_LINESTRIP, /**< A series of connected lines. */ + SDL_GPU_PRIMITIVETYPE_POINTLIST /**< A series of separate points. */ +} SDL_GPUPrimitiveType; + +/** + * Specifies how the contents of a texture attached to a render pass are + * treated at the beginning of the render pass. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef enum SDL_GPULoadOp +{ + SDL_GPU_LOADOP_LOAD, /**< The previous contents of the texture will be preserved. */ + SDL_GPU_LOADOP_CLEAR, /**< The contents of the texture will be cleared to a color. */ + SDL_GPU_LOADOP_DONT_CARE /**< The previous contents of the texture need not be preserved. The contents will be undefined. */ +} SDL_GPULoadOp; + +/** + * Specifies how the contents of a texture attached to a render pass are + * treated at the end of the render pass. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef enum SDL_GPUStoreOp +{ + SDL_GPU_STOREOP_STORE, /**< The contents generated during the render pass will be written to memory. */ + SDL_GPU_STOREOP_DONT_CARE, /**< The contents generated during the render pass are not needed and may be discarded. The contents will be undefined. */ + SDL_GPU_STOREOP_RESOLVE, /**< The multisample contents generated during the render pass will be resolved to a non-multisample texture. The contents in the multisample texture may then be discarded and will be undefined. */ + SDL_GPU_STOREOP_RESOLVE_AND_STORE /**< The multisample contents generated during the render pass will be resolved to a non-multisample texture. The contents in the multisample texture will be written to memory. */ +} SDL_GPUStoreOp; + +/** + * Specifies the size of elements in an index buffer. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUIndexElementSize +{ + SDL_GPU_INDEXELEMENTSIZE_16BIT, /**< The index elements are 16-bit. */ + SDL_GPU_INDEXELEMENTSIZE_32BIT /**< The index elements are 32-bit. */ +} SDL_GPUIndexElementSize; + +/** + * Specifies the pixel format of a texture. + * + * Texture format support varies depending on driver, hardware, and usage + * flags. In general, you should use SDL_GPUTextureSupportsFormat to query if + * a format is supported before using it. However, there are a few guaranteed + * formats. + * + * FIXME: Check universal support for 32-bit component formats FIXME: Check + * universal support for SIMULTANEOUS_READ_WRITE + * + * For SAMPLER usage, the following formats are universally supported: + * + * - R8G8B8A8_UNORM + * - B8G8R8A8_UNORM + * - R8_UNORM + * - R8_SNORM + * - R8G8_UNORM + * - R8G8_SNORM + * - R8G8B8A8_SNORM + * - R16_FLOAT + * - R16G16_FLOAT + * - R16G16B16A16_FLOAT + * - R32_FLOAT + * - R32G32_FLOAT + * - R32G32B32A32_FLOAT + * - R11G11B10_UFLOAT + * - R8G8B8A8_UNORM_SRGB + * - B8G8R8A8_UNORM_SRGB + * - D16_UNORM + * + * For COLOR_TARGET usage, the following formats are universally supported: + * + * - R8G8B8A8_UNORM + * - B8G8R8A8_UNORM + * - R8_UNORM + * - R16_FLOAT + * - R16G16_FLOAT + * - R16G16B16A16_FLOAT + * - R32_FLOAT + * - R32G32_FLOAT + * - R32G32B32A32_FLOAT + * - R8_UINT + * - R8G8_UINT + * - R8G8B8A8_UINT + * - R16_UINT + * - R16G16_UINT + * - R16G16B16A16_UINT + * - R8_INT + * - R8G8_INT + * - R8G8B8A8_INT + * - R16_INT + * - R16G16_INT + * - R16G16B16A16_INT + * - R8G8B8A8_UNORM_SRGB + * - B8G8R8A8_UNORM_SRGB + * + * For STORAGE usages, the following formats are universally supported: + * + * - R8G8B8A8_UNORM + * - R8G8B8A8_SNORM + * - R16G16B16A16_FLOAT + * - R32_FLOAT + * - R32G32_FLOAT + * - R32G32B32A32_FLOAT + * - R8G8B8A8_UINT + * - R16G16B16A16_UINT + * - R8G8B8A8_INT + * - R16G16B16A16_INT + * + * For DEPTH_STENCIL_TARGET usage, the following formats are universally + * supported: + * + * - D16_UNORM + * - Either (but not necessarily both!) D24_UNORM or D32_FLOAT + * - Either (but not necessarily both!) D24_UNORM_S8_UINT or D32_FLOAT_S8_UINT + * + * Unless D16_UNORM is sufficient for your purposes, always check which of + * D24/D32 is supported before creating a depth-stencil texture! + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_GPUTextureSupportsFormat + */ +typedef enum SDL_GPUTextureFormat +{ + SDL_GPU_TEXTUREFORMAT_INVALID, + + /* Unsigned Normalized Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_A8_UNORM, + SDL_GPU_TEXTUREFORMAT_R8_UNORM, + SDL_GPU_TEXTUREFORMAT_R8G8_UNORM, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UNORM, + SDL_GPU_TEXTUREFORMAT_R16_UNORM, + SDL_GPU_TEXTUREFORMAT_R16G16_UNORM, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_UNORM, + SDL_GPU_TEXTUREFORMAT_R10G10B10A2_UNORM, + SDL_GPU_TEXTUREFORMAT_B5G6R5_UNORM, + SDL_GPU_TEXTUREFORMAT_B5G5R5A1_UNORM, + SDL_GPU_TEXTUREFORMAT_B4G4R4A4_UNORM, + SDL_GPU_TEXTUREFORMAT_B8G8R8A8_UNORM, + /* Compressed Unsigned Normalized Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC1_RGBA_UNORM, + SDL_GPU_TEXTUREFORMAT_BC2_RGBA_UNORM, + SDL_GPU_TEXTUREFORMAT_BC3_RGBA_UNORM, + SDL_GPU_TEXTUREFORMAT_BC4_R_UNORM, + SDL_GPU_TEXTUREFORMAT_BC5_RG_UNORM, + SDL_GPU_TEXTUREFORMAT_BC7_RGBA_UNORM, + /* Compressed Signed Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC6H_RGB_FLOAT, + /* Compressed Unsigned Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC6H_RGB_UFLOAT, + /* Signed Normalized Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8_SNORM, + SDL_GPU_TEXTUREFORMAT_R8G8_SNORM, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_SNORM, + SDL_GPU_TEXTUREFORMAT_R16_SNORM, + SDL_GPU_TEXTUREFORMAT_R16G16_SNORM, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_SNORM, + /* Signed Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_R16_FLOAT, + SDL_GPU_TEXTUREFORMAT_R16G16_FLOAT, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_FLOAT, + SDL_GPU_TEXTUREFORMAT_R32_FLOAT, + SDL_GPU_TEXTUREFORMAT_R32G32_FLOAT, + SDL_GPU_TEXTUREFORMAT_R32G32B32A32_FLOAT, + /* Unsigned Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_R11G11B10_UFLOAT, + /* Unsigned Integer Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8_UINT, + SDL_GPU_TEXTUREFORMAT_R8G8_UINT, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UINT, + SDL_GPU_TEXTUREFORMAT_R16_UINT, + SDL_GPU_TEXTUREFORMAT_R16G16_UINT, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_UINT, + SDL_GPU_TEXTUREFORMAT_R32_UINT, + SDL_GPU_TEXTUREFORMAT_R32G32_UINT, + SDL_GPU_TEXTUREFORMAT_R32G32B32A32_UINT, + /* Signed Integer Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8_INT, + SDL_GPU_TEXTUREFORMAT_R8G8_INT, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_INT, + SDL_GPU_TEXTUREFORMAT_R16_INT, + SDL_GPU_TEXTUREFORMAT_R16G16_INT, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_INT, + SDL_GPU_TEXTUREFORMAT_R32_INT, + SDL_GPU_TEXTUREFORMAT_R32G32_INT, + SDL_GPU_TEXTUREFORMAT_R32G32B32A32_INT, + /* SRGB Unsigned Normalized Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_B8G8R8A8_UNORM_SRGB, + /* Compressed SRGB Unsigned Normalized Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC1_RGBA_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_BC2_RGBA_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_BC3_RGBA_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_BC7_RGBA_UNORM_SRGB, + /* Depth Formats */ + SDL_GPU_TEXTUREFORMAT_D16_UNORM, + SDL_GPU_TEXTUREFORMAT_D24_UNORM, + SDL_GPU_TEXTUREFORMAT_D32_FLOAT, + SDL_GPU_TEXTUREFORMAT_D24_UNORM_S8_UINT, + SDL_GPU_TEXTUREFORMAT_D32_FLOAT_S8_UINT, + /* Compressed ASTC Normalized Float Color Formats*/ + SDL_GPU_TEXTUREFORMAT_ASTC_4x4_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_5x4_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_5x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_6x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_6x6_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_8x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_8x6_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_8x8_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x6_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x8_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x10_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_12x10_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_12x12_UNORM, + /* Compressed SRGB ASTC Normalized Float Color Formats*/ + SDL_GPU_TEXTUREFORMAT_ASTC_4x4_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_5x4_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_5x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_6x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_6x6_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_8x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_8x6_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_8x8_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x6_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x8_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x10_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_12x10_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_12x12_UNORM_SRGB, + /* Compressed ASTC Signed Float Color Formats*/ + SDL_GPU_TEXTUREFORMAT_ASTC_4x4_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_5x4_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_5x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_6x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_6x6_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_8x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_8x6_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_8x8_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x6_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x8_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x10_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_12x10_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_12x12_FLOAT +} SDL_GPUTextureFormat; + +/** + * Specifies how a texture is intended to be used by the client. + * + * A texture must have at least one usage flag. Note that some usage flag + * combinations are invalid. + * + * With regards to compute storage usage, READ | WRITE means that you can have + * shader A that only writes into the texture and shader B that only reads + * from the texture and bind the same texture to either shader respectively. + * SIMULTANEOUS means that you can do reads and writes within the same shader + * or compute pass. It also implies that atomic ops can be used, since those + * are read-modify-write operations. If you use SIMULTANEOUS, you are + * responsible for avoiding data races, as there is no data synchronization + * within a compute pass. Note that SIMULTANEOUS usage is only supported by a + * limited number of texture formats. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + */ +typedef Uint32 SDL_GPUTextureUsageFlags; + +#define SDL_GPU_TEXTUREUSAGE_SAMPLER (1u << 0) /**< Texture supports sampling. */ +#define SDL_GPU_TEXTUREUSAGE_COLOR_TARGET (1u << 1) /**< Texture is a color render target. */ +#define SDL_GPU_TEXTUREUSAGE_DEPTH_STENCIL_TARGET (1u << 2) /**< Texture is a depth stencil target. */ +#define SDL_GPU_TEXTUREUSAGE_GRAPHICS_STORAGE_READ (1u << 3) /**< Texture supports storage reads in graphics stages. */ +#define SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_READ (1u << 4) /**< Texture supports storage reads in the compute stage. */ +#define SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_WRITE (1u << 5) /**< Texture supports storage writes in the compute stage. */ +#define SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE (1u << 6) /**< Texture supports reads and writes in the same compute shader. This is NOT equivalent to READ | WRITE. */ + +/** + * Specifies the type of a texture. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + */ +typedef enum SDL_GPUTextureType +{ + SDL_GPU_TEXTURETYPE_2D, /**< The texture is a 2-dimensional image. */ + SDL_GPU_TEXTURETYPE_2D_ARRAY, /**< The texture is a 2-dimensional array image. */ + SDL_GPU_TEXTURETYPE_3D, /**< The texture is a 3-dimensional image. */ + SDL_GPU_TEXTURETYPE_CUBE, /**< The texture is a cube image. */ + SDL_GPU_TEXTURETYPE_CUBE_ARRAY /**< The texture is a cube array image. */ +} SDL_GPUTextureType; + +/** + * Specifies the sample count of a texture. + * + * Used in multisampling. Note that this value only applies when the texture + * is used as a render target. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_GPUTextureSupportsSampleCount + */ +typedef enum SDL_GPUSampleCount +{ + SDL_GPU_SAMPLECOUNT_1, /**< No multisampling. */ + SDL_GPU_SAMPLECOUNT_2, /**< MSAA 2x */ + SDL_GPU_SAMPLECOUNT_4, /**< MSAA 4x */ + SDL_GPU_SAMPLECOUNT_8 /**< MSAA 8x */ +} SDL_GPUSampleCount; + + +/** + * Specifies the face of a cube map. + * + * Can be passed in as the layer field in texture-related structs. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GPUCubeMapFace +{ + SDL_GPU_CUBEMAPFACE_POSITIVEX, + SDL_GPU_CUBEMAPFACE_NEGATIVEX, + SDL_GPU_CUBEMAPFACE_POSITIVEY, + SDL_GPU_CUBEMAPFACE_NEGATIVEY, + SDL_GPU_CUBEMAPFACE_POSITIVEZ, + SDL_GPU_CUBEMAPFACE_NEGATIVEZ +} SDL_GPUCubeMapFace; + +/** + * Specifies how a buffer is intended to be used by the client. + * + * A buffer must have at least one usage flag. Note that some usage flag + * combinations are invalid. + * + * Unlike textures, READ | WRITE can be used for simultaneous read-write + * usage. The same data synchronization concerns as textures apply. + * + * If you use a STORAGE flag, the data in the buffer must respect std140 + * layout conventions. In practical terms this means you must ensure that vec3 + * and vec4 fields are 16-byte aligned. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + */ +typedef Uint32 SDL_GPUBufferUsageFlags; + +#define SDL_GPU_BUFFERUSAGE_VERTEX (1u << 0) /**< Buffer is a vertex buffer. */ +#define SDL_GPU_BUFFERUSAGE_INDEX (1u << 1) /**< Buffer is an index buffer. */ +#define SDL_GPU_BUFFERUSAGE_INDIRECT (1u << 2) /**< Buffer is an indirect buffer. */ +#define SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ (1u << 3) /**< Buffer supports storage reads in graphics stages. */ +#define SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_READ (1u << 4) /**< Buffer supports storage reads in the compute stage. */ +#define SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_WRITE (1u << 5) /**< Buffer supports storage writes in the compute stage. */ + +/** + * Specifies how a transfer buffer is intended to be used by the client. + * + * Note that mapping and copying FROM an upload transfer buffer or TO a + * download transfer buffer is undefined behavior. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTransferBuffer + */ +typedef enum SDL_GPUTransferBufferUsage +{ + SDL_GPU_TRANSFERBUFFERUSAGE_UPLOAD, + SDL_GPU_TRANSFERBUFFERUSAGE_DOWNLOAD +} SDL_GPUTransferBufferUsage; + +/** + * Specifies which stage a shader program corresponds to. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +typedef enum SDL_GPUShaderStage +{ + SDL_GPU_SHADERSTAGE_VERTEX, + SDL_GPU_SHADERSTAGE_FRAGMENT +} SDL_GPUShaderStage; + +/** + * Specifies the format of shader code. + * + * Each format corresponds to a specific backend that accepts it. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +typedef Uint32 SDL_GPUShaderFormat; + +#define SDL_GPU_SHADERFORMAT_INVALID 0 +#define SDL_GPU_SHADERFORMAT_PRIVATE (1u << 0) /**< Shaders for NDA'd platforms. */ +#define SDL_GPU_SHADERFORMAT_SPIRV (1u << 1) /**< SPIR-V shaders for Vulkan. */ +#define SDL_GPU_SHADERFORMAT_DXBC (1u << 2) /**< DXBC SM5_1 shaders for D3D12. */ +#define SDL_GPU_SHADERFORMAT_DXIL (1u << 3) /**< DXIL SM6_0 shaders for D3D12. */ +#define SDL_GPU_SHADERFORMAT_MSL (1u << 4) /**< MSL shaders for Metal. */ +#define SDL_GPU_SHADERFORMAT_METALLIB (1u << 5) /**< Precompiled metallib shaders for Metal. */ + +/** + * Specifies the format of a vertex attribute. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUVertexElementFormat +{ + SDL_GPU_VERTEXELEMENTFORMAT_INVALID, + + /* 32-bit Signed Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_INT, + SDL_GPU_VERTEXELEMENTFORMAT_INT2, + SDL_GPU_VERTEXELEMENTFORMAT_INT3, + SDL_GPU_VERTEXELEMENTFORMAT_INT4, + + /* 32-bit Unsigned Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_UINT, + SDL_GPU_VERTEXELEMENTFORMAT_UINT2, + SDL_GPU_VERTEXELEMENTFORMAT_UINT3, + SDL_GPU_VERTEXELEMENTFORMAT_UINT4, + + /* 32-bit Floats */ + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT, + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT2, + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT3, + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT4, + + /* 8-bit Signed Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_BYTE2, + SDL_GPU_VERTEXELEMENTFORMAT_BYTE4, + + /* 8-bit Unsigned Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE2, + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE4, + + /* 8-bit Signed Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_BYTE2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_BYTE4_NORM, + + /* 8-bit Unsigned Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE4_NORM, + + /* 16-bit Signed Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_SHORT2, + SDL_GPU_VERTEXELEMENTFORMAT_SHORT4, + + /* 16-bit Unsigned Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_USHORT2, + SDL_GPU_VERTEXELEMENTFORMAT_USHORT4, + + /* 16-bit Signed Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_SHORT2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_SHORT4_NORM, + + /* 16-bit Unsigned Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_USHORT2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_USHORT4_NORM, + + /* 16-bit Floats */ + SDL_GPU_VERTEXELEMENTFORMAT_HALF2, + SDL_GPU_VERTEXELEMENTFORMAT_HALF4 +} SDL_GPUVertexElementFormat; + +/** + * Specifies the rate at which vertex attributes are pulled from buffers. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUVertexInputRate +{ + SDL_GPU_VERTEXINPUTRATE_VERTEX, /**< Attribute addressing is a function of the vertex index. */ + SDL_GPU_VERTEXINPUTRATE_INSTANCE /**< Attribute addressing is a function of the instance index. */ +} SDL_GPUVertexInputRate; + +/** + * Specifies the fill mode of the graphics pipeline. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUFillMode +{ + SDL_GPU_FILLMODE_FILL, /**< Polygons will be rendered via rasterization. */ + SDL_GPU_FILLMODE_LINE /**< Polygon edges will be drawn as line segments. */ +} SDL_GPUFillMode; + +/** + * Specifies the facing direction in which triangle faces will be culled. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUCullMode +{ + SDL_GPU_CULLMODE_NONE, /**< No triangles are culled. */ + SDL_GPU_CULLMODE_FRONT, /**< Front-facing triangles are culled. */ + SDL_GPU_CULLMODE_BACK /**< Back-facing triangles are culled. */ +} SDL_GPUCullMode; + +/** + * Specifies the vertex winding that will cause a triangle to be determined to + * be front-facing. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUFrontFace +{ + SDL_GPU_FRONTFACE_COUNTER_CLOCKWISE, /**< A triangle with counter-clockwise vertex winding will be considered front-facing. */ + SDL_GPU_FRONTFACE_CLOCKWISE /**< A triangle with clockwise vertex winding will be considered front-facing. */ +} SDL_GPUFrontFace; + +/** + * Specifies a comparison operator for depth, stencil and sampler operations. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUCompareOp +{ + SDL_GPU_COMPAREOP_INVALID, + SDL_GPU_COMPAREOP_NEVER, /**< The comparison always evaluates false. */ + SDL_GPU_COMPAREOP_LESS, /**< The comparison evaluates reference < test. */ + SDL_GPU_COMPAREOP_EQUAL, /**< The comparison evaluates reference == test. */ + SDL_GPU_COMPAREOP_LESS_OR_EQUAL, /**< The comparison evaluates reference <= test. */ + SDL_GPU_COMPAREOP_GREATER, /**< The comparison evaluates reference > test. */ + SDL_GPU_COMPAREOP_NOT_EQUAL, /**< The comparison evaluates reference != test. */ + SDL_GPU_COMPAREOP_GREATER_OR_EQUAL, /**< The comparison evalutes reference >= test. */ + SDL_GPU_COMPAREOP_ALWAYS /**< The comparison always evaluates true. */ +} SDL_GPUCompareOp; + +/** + * Specifies what happens to a stored stencil value if stencil tests fail or + * pass. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUStencilOp +{ + SDL_GPU_STENCILOP_INVALID, + SDL_GPU_STENCILOP_KEEP, /**< Keeps the current value. */ + SDL_GPU_STENCILOP_ZERO, /**< Sets the value to 0. */ + SDL_GPU_STENCILOP_REPLACE, /**< Sets the value to reference. */ + SDL_GPU_STENCILOP_INCREMENT_AND_CLAMP, /**< Increments the current value and clamps to the maximum value. */ + SDL_GPU_STENCILOP_DECREMENT_AND_CLAMP, /**< Decrements the current value and clamps to 0. */ + SDL_GPU_STENCILOP_INVERT, /**< Bitwise-inverts the current value. */ + SDL_GPU_STENCILOP_INCREMENT_AND_WRAP, /**< Increments the current value and wraps back to 0. */ + SDL_GPU_STENCILOP_DECREMENT_AND_WRAP /**< Decrements the current value and wraps to the maximum value. */ +} SDL_GPUStencilOp; + +/** + * Specifies the operator to be used when pixels in a render target are + * blended with existing pixels in the texture. + * + * The source color is the value written by the fragment shader. The + * destination color is the value currently existing in the texture. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUBlendOp +{ + SDL_GPU_BLENDOP_INVALID, + SDL_GPU_BLENDOP_ADD, /**< (source * source_factor) + (destination * destination_factor) */ + SDL_GPU_BLENDOP_SUBTRACT, /**< (source * source_factor) - (destination * destination_factor) */ + SDL_GPU_BLENDOP_REVERSE_SUBTRACT, /**< (destination * destination_factor) - (source * source_factor) */ + SDL_GPU_BLENDOP_MIN, /**< min(source, destination) */ + SDL_GPU_BLENDOP_MAX /**< max(source, destination) */ +} SDL_GPUBlendOp; + +/** + * Specifies a blending factor to be used when pixels in a render target are + * blended with existing pixels in the texture. + * + * The source color is the value written by the fragment shader. The + * destination color is the value currently existing in the texture. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUBlendFactor +{ + SDL_GPU_BLENDFACTOR_INVALID, + SDL_GPU_BLENDFACTOR_ZERO, /**< 0 */ + SDL_GPU_BLENDFACTOR_ONE, /**< 1 */ + SDL_GPU_BLENDFACTOR_SRC_COLOR, /**< source color */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_SRC_COLOR, /**< 1 - source color */ + SDL_GPU_BLENDFACTOR_DST_COLOR, /**< destination color */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_DST_COLOR, /**< 1 - destination color */ + SDL_GPU_BLENDFACTOR_SRC_ALPHA, /**< source alpha */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_SRC_ALPHA, /**< 1 - source alpha */ + SDL_GPU_BLENDFACTOR_DST_ALPHA, /**< destination alpha */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_DST_ALPHA, /**< 1 - destination alpha */ + SDL_GPU_BLENDFACTOR_CONSTANT_COLOR, /**< blend constant */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_CONSTANT_COLOR, /**< 1 - blend constant */ + SDL_GPU_BLENDFACTOR_SRC_ALPHA_SATURATE /**< min(source alpha, 1 - destination alpha) */ +} SDL_GPUBlendFactor; + +/** + * Specifies which color components are written in a graphics pipeline. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef Uint8 SDL_GPUColorComponentFlags; + +#define SDL_GPU_COLORCOMPONENT_R (1u << 0) /**< the red component */ +#define SDL_GPU_COLORCOMPONENT_G (1u << 1) /**< the green component */ +#define SDL_GPU_COLORCOMPONENT_B (1u << 2) /**< the blue component */ +#define SDL_GPU_COLORCOMPONENT_A (1u << 3) /**< the alpha component */ + +/** + * Specifies a filter operation used by a sampler. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + */ +typedef enum SDL_GPUFilter +{ + SDL_GPU_FILTER_NEAREST, /**< Point filtering. */ + SDL_GPU_FILTER_LINEAR /**< Linear filtering. */ +} SDL_GPUFilter; + +/** + * Specifies a mipmap mode used by a sampler. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + */ +typedef enum SDL_GPUSamplerMipmapMode +{ + SDL_GPU_SAMPLERMIPMAPMODE_NEAREST, /**< Point filtering. */ + SDL_GPU_SAMPLERMIPMAPMODE_LINEAR /**< Linear filtering. */ +} SDL_GPUSamplerMipmapMode; + +/** + * Specifies behavior of texture sampling when the coordinates exceed the 0-1 + * range. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + */ +typedef enum SDL_GPUSamplerAddressMode +{ + SDL_GPU_SAMPLERADDRESSMODE_REPEAT, /**< Specifies that the coordinates will wrap around. */ + SDL_GPU_SAMPLERADDRESSMODE_MIRRORED_REPEAT, /**< Specifies that the coordinates will wrap around mirrored. */ + SDL_GPU_SAMPLERADDRESSMODE_CLAMP_TO_EDGE /**< Specifies that the coordinates will clamp to the 0-1 range. */ +} SDL_GPUSamplerAddressMode; + +/** + * Specifies the timing that will be used to present swapchain textures to the + * OS. + * + * VSYNC mode will always be supported. IMMEDIATE and MAILBOX modes may not be + * supported on certain systems. + * + * It is recommended to query SDL_WindowSupportsGPUPresentMode after claiming + * the window if you wish to change the present mode to IMMEDIATE or MAILBOX. + * + * - VSYNC: Waits for vblank before presenting. No tearing is possible. If + * there is a pending image to present, the new image is enqueued for + * presentation. Disallows tearing at the cost of visual latency. + * - IMMEDIATE: Immediately presents. Lowest latency option, but tearing may + * occur. + * - MAILBOX: Waits for vblank before presenting. No tearing is possible. If + * there is a pending image to present, the pending image is replaced by the + * new image. Similar to VSYNC, but with reduced visual latency. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_SetGPUSwapchainParameters + * \sa SDL_WindowSupportsGPUPresentMode + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + */ +typedef enum SDL_GPUPresentMode +{ + SDL_GPU_PRESENTMODE_VSYNC, + SDL_GPU_PRESENTMODE_IMMEDIATE, + SDL_GPU_PRESENTMODE_MAILBOX +} SDL_GPUPresentMode; + +/** + * Specifies the texture format and colorspace of the swapchain textures. + * + * SDR will always be supported. Other compositions may not be supported on + * certain systems. + * + * It is recommended to query SDL_WindowSupportsGPUSwapchainComposition after + * claiming the window if you wish to change the swapchain composition from + * SDR. + * + * - SDR: B8G8R8A8 or R8G8B8A8 swapchain. Pixel values are in sRGB encoding. + * - SDR_LINEAR: B8G8R8A8_SRGB or R8G8B8A8_SRGB swapchain. Pixel values are + * stored in memory in sRGB encoding but accessed in shaders in "linear + * sRGB" encoding which is sRGB but with a linear transfer function. + * - HDR_EXTENDED_LINEAR: R16G16B16A16_FLOAT swapchain. Pixel values are in + * extended linear sRGB encoding and permits values outside of the [0, 1] + * range. + * - HDR10_ST2084: A2R10G10B10 or A2B10G10R10 swapchain. Pixel values are in + * BT.2020 ST2084 (PQ) encoding. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_SetGPUSwapchainParameters + * \sa SDL_WindowSupportsGPUSwapchainComposition + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + */ +typedef enum SDL_GPUSwapchainComposition +{ + SDL_GPU_SWAPCHAINCOMPOSITION_SDR, + SDL_GPU_SWAPCHAINCOMPOSITION_SDR_LINEAR, + SDL_GPU_SWAPCHAINCOMPOSITION_HDR_EXTENDED_LINEAR, + SDL_GPU_SWAPCHAINCOMPOSITION_HDR10_ST2084 +} SDL_GPUSwapchainComposition; + +/* Structures */ + +/** + * A structure specifying a viewport. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_SetGPUViewport + */ +typedef struct SDL_GPUViewport +{ + float x; /**< The left offset of the viewport. */ + float y; /**< The top offset of the viewport. */ + float w; /**< The width of the viewport. */ + float h; /**< The height of the viewport. */ + float min_depth; /**< The minimum depth of the viewport. */ + float max_depth; /**< The maximum depth of the viewport. */ +} SDL_GPUViewport; + +/** + * A structure specifying parameters related to transferring data to or from a + * texture. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + */ +typedef struct SDL_GPUTextureTransferInfo +{ + SDL_GPUTransferBuffer *transfer_buffer; /**< The transfer buffer used in the transfer operation. */ + Uint32 offset; /**< The starting byte of the image data in the transfer buffer. */ + Uint32 pixels_per_row; /**< The number of pixels from one row to the next. */ + Uint32 rows_per_layer; /**< The number of rows from one layer/depth-slice to the next. */ +} SDL_GPUTextureTransferInfo; + +/** + * A structure specifying a location in a transfer buffer. + * + * Used when transferring buffer data to or from a transfer buffer. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + */ +typedef struct SDL_GPUTransferBufferLocation +{ + SDL_GPUTransferBuffer *transfer_buffer; /**< The transfer buffer used in the transfer operation. */ + Uint32 offset; /**< The starting byte of the buffer data in the transfer buffer. */ +} SDL_GPUTransferBufferLocation; + +/** + * A structure specifying a location in a texture. + * + * Used when copying data from one texture to another. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CopyGPUTextureToTexture + */ +typedef struct SDL_GPUTextureLocation +{ + SDL_GPUTexture *texture; /**< The texture used in the copy operation. */ + Uint32 mip_level; /**< The mip level index of the location. */ + Uint32 layer; /**< The layer index of the location. */ + Uint32 x; /**< The left offset of the location. */ + Uint32 y; /**< The top offset of the location. */ + Uint32 z; /**< The front offset of the location. */ +} SDL_GPUTextureLocation; + +/** + * A structure specifying a region of a texture. + * + * Used when transferring data to or from a texture. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_CreateGPUTexture + */ +typedef struct SDL_GPUTextureRegion +{ + SDL_GPUTexture *texture; /**< The texture used in the copy operation. */ + Uint32 mip_level; /**< The mip level index to transfer. */ + Uint32 layer; /**< The layer index to transfer. */ + Uint32 x; /**< The left offset of the region. */ + Uint32 y; /**< The top offset of the region. */ + Uint32 z; /**< The front offset of the region. */ + Uint32 w; /**< The width of the region. */ + Uint32 h; /**< The height of the region. */ + Uint32 d; /**< The depth of the region. */ +} SDL_GPUTextureRegion; + +/** + * A structure specifying a region of a texture used in the blit operation. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BlitGPUTexture + */ +typedef struct SDL_GPUBlitRegion +{ + SDL_GPUTexture *texture; /**< The texture. */ + Uint32 mip_level; /**< The mip level index of the region. */ + Uint32 layer_or_depth_plane; /**< The layer index or depth plane of the region. This value is treated as a layer index on 2D array and cube textures, and as a depth plane on 3D textures. */ + Uint32 x; /**< The left offset of the region. */ + Uint32 y; /**< The top offset of the region. */ + Uint32 w; /**< The width of the region. */ + Uint32 h; /**< The height of the region. */ +} SDL_GPUBlitRegion; + +/** + * A structure specifying a location in a buffer. + * + * Used when copying data between buffers. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CopyGPUBufferToBuffer + */ +typedef struct SDL_GPUBufferLocation +{ + SDL_GPUBuffer *buffer; /**< The buffer. */ + Uint32 offset; /**< The starting byte within the buffer. */ +} SDL_GPUBufferLocation; + +/** + * A structure specifying a region of a buffer. + * + * Used when transferring data to or from buffers. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + */ +typedef struct SDL_GPUBufferRegion +{ + SDL_GPUBuffer *buffer; /**< The buffer. */ + Uint32 offset; /**< The starting byte within the buffer. */ + Uint32 size; /**< The size in bytes of the region. */ +} SDL_GPUBufferRegion; + +/** + * A structure specifying the parameters of an indirect draw command. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DrawGPUPrimitivesIndirect + */ +typedef struct SDL_GPUIndirectDrawCommand +{ + Uint32 num_vertices; /**< The number of vertices to draw. */ + Uint32 num_instances; /**< The number of instances to draw. */ + Uint32 first_vertex; /**< The index of the first vertex to draw. */ + Uint32 first_instance; /**< The ID of the first instance to draw. */ +} SDL_GPUIndirectDrawCommand; + +/** + * A structure specifying the parameters of an indexed indirect draw command. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DrawGPUIndexedPrimitivesIndirect + */ +typedef struct SDL_GPUIndexedIndirectDrawCommand +{ + Uint32 num_indices; /**< The number of indices to draw per instance. */ + Uint32 num_instances; /**< The number of instances to draw. */ + Uint32 first_index; /**< The base index within the index buffer. */ + Sint32 vertex_offset; /**< The value added to the vertex index before indexing into the vertex buffer. */ + Uint32 first_instance; /**< The ID of the first instance to draw. */ +} SDL_GPUIndexedIndirectDrawCommand; + +/** + * A structure specifying the parameters of an indexed dispatch command. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DispatchGPUComputeIndirect + */ +typedef struct SDL_GPUIndirectDispatchCommand +{ + Uint32 groupcount_x; /**< The number of local workgroups to dispatch in the X dimension. */ + Uint32 groupcount_y; /**< The number of local workgroups to dispatch in the Y dimension. */ + Uint32 groupcount_z; /**< The number of local workgroups to dispatch in the Z dimension. */ +} SDL_GPUIndirectDispatchCommand; + +/* State structures */ + +/** + * A structure specifying the parameters of a sampler. + * + * Note that mip_lod_bias is a no-op for the Metal driver. For Metal, LOD bias + * must be applied via shader instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + * \sa SDL_GPUFilter + * \sa SDL_GPUSamplerMipmapMode + * \sa SDL_GPUSamplerAddressMode + * \sa SDL_GPUCompareOp + */ +typedef struct SDL_GPUSamplerCreateInfo +{ + SDL_GPUFilter min_filter; /**< The minification filter to apply to lookups. */ + SDL_GPUFilter mag_filter; /**< The magnification filter to apply to lookups. */ + SDL_GPUSamplerMipmapMode mipmap_mode; /**< The mipmap filter to apply to lookups. */ + SDL_GPUSamplerAddressMode address_mode_u; /**< The addressing mode for U coordinates outside [0, 1). */ + SDL_GPUSamplerAddressMode address_mode_v; /**< The addressing mode for V coordinates outside [0, 1). */ + SDL_GPUSamplerAddressMode address_mode_w; /**< The addressing mode for W coordinates outside [0, 1). */ + float mip_lod_bias; /**< The bias to be added to mipmap LOD calculation. */ + float max_anisotropy; /**< The anisotropy value clamp used by the sampler. If enable_anisotropy is false, this is ignored. */ + SDL_GPUCompareOp compare_op; /**< The comparison operator to apply to fetched data before filtering. */ + float min_lod; /**< Clamps the minimum of the computed LOD value. */ + float max_lod; /**< Clamps the maximum of the computed LOD value. */ + bool enable_anisotropy; /**< true to enable anisotropic filtering. */ + bool enable_compare; /**< true to enable comparison against a reference value during lookups. */ + Uint8 padding1; + Uint8 padding2; + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUSamplerCreateInfo; + +/** + * A structure specifying the parameters of vertex buffers used in a graphics + * pipeline. + * + * When you call SDL_BindGPUVertexBuffers, you specify the binding slots of + * the vertex buffers. For example if you called SDL_BindGPUVertexBuffers with + * a first_slot of 2 and num_bindings of 3, the binding slots 2, 3, 4 would be + * used by the vertex buffers you pass in. + * + * Vertex attributes are linked to buffers via the buffer_slot field of + * SDL_GPUVertexAttribute. For example, if an attribute has a buffer_slot of + * 0, then that attribute belongs to the vertex buffer bound at slot 0. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUVertexAttribute + * \sa SDL_GPUVertexInputRate + */ +typedef struct SDL_GPUVertexBufferDescription +{ + Uint32 slot; /**< The binding slot of the vertex buffer. */ + Uint32 pitch; /**< The size of a single element + the offset between elements. */ + SDL_GPUVertexInputRate input_rate; /**< Whether attribute addressing is a function of the vertex index or instance index. */ + Uint32 instance_step_rate; /**< Reserved for future use. Must be set to 0. */ +} SDL_GPUVertexBufferDescription; + +/** + * A structure specifying a vertex attribute. + * + * All vertex attribute locations provided to an SDL_GPUVertexInputState must + * be unique. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUVertexBufferDescription + * \sa SDL_GPUVertexInputState + * \sa SDL_GPUVertexElementFormat + */ +typedef struct SDL_GPUVertexAttribute +{ + Uint32 location; /**< The shader input location index. */ + Uint32 buffer_slot; /**< The binding slot of the associated vertex buffer. */ + SDL_GPUVertexElementFormat format; /**< The size and type of the attribute data. */ + Uint32 offset; /**< The byte offset of this attribute relative to the start of the vertex element. */ +} SDL_GPUVertexAttribute; + +/** + * A structure specifying the parameters of a graphics pipeline vertex input + * state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + * \sa SDL_GPUVertexBufferDescription + * \sa SDL_GPUVertexAttribute + */ +typedef struct SDL_GPUVertexInputState +{ + const SDL_GPUVertexBufferDescription *vertex_buffer_descriptions; /**< A pointer to an array of vertex buffer descriptions. */ + Uint32 num_vertex_buffers; /**< The number of vertex buffer descriptions in the above array. */ + const SDL_GPUVertexAttribute *vertex_attributes; /**< A pointer to an array of vertex attribute descriptions. */ + Uint32 num_vertex_attributes; /**< The number of vertex attribute descriptions in the above array. */ +} SDL_GPUVertexInputState; + +/** + * A structure specifying the stencil operation state of a graphics pipeline. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUDepthStencilState + */ +typedef struct SDL_GPUStencilOpState +{ + SDL_GPUStencilOp fail_op; /**< The action performed on samples that fail the stencil test. */ + SDL_GPUStencilOp pass_op; /**< The action performed on samples that pass the depth and stencil tests. */ + SDL_GPUStencilOp depth_fail_op; /**< The action performed on samples that pass the stencil test and fail the depth test. */ + SDL_GPUCompareOp compare_op; /**< The comparison operator used in the stencil test. */ +} SDL_GPUStencilOpState; + +/** + * A structure specifying the blend state of a color target. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUColorTargetDescription + */ +typedef struct SDL_GPUColorTargetBlendState +{ + SDL_GPUBlendFactor src_color_blendfactor; /**< The value to be multiplied by the source RGB value. */ + SDL_GPUBlendFactor dst_color_blendfactor; /**< The value to be multiplied by the destination RGB value. */ + SDL_GPUBlendOp color_blend_op; /**< The blend operation for the RGB components. */ + SDL_GPUBlendFactor src_alpha_blendfactor; /**< The value to be multiplied by the source alpha. */ + SDL_GPUBlendFactor dst_alpha_blendfactor; /**< The value to be multiplied by the destination alpha. */ + SDL_GPUBlendOp alpha_blend_op; /**< The blend operation for the alpha component. */ + SDL_GPUColorComponentFlags color_write_mask; /**< A bitmask specifying which of the RGBA components are enabled for writing. Writes to all channels if enable_color_write_mask is false. */ + bool enable_blend; /**< Whether blending is enabled for the color target. */ + bool enable_color_write_mask; /**< Whether the color write mask is enabled. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPUColorTargetBlendState; + + +/** + * A structure specifying code and metadata for creating a shader object. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +typedef struct SDL_GPUShaderCreateInfo +{ + size_t code_size; /**< The size in bytes of the code pointed to. */ + const Uint8 *code; /**< A pointer to shader code. */ + const char *entrypoint; /**< A pointer to a null-terminated UTF-8 string specifying the entry point function name for the shader. */ + SDL_GPUShaderFormat format; /**< The format of the shader code. */ + SDL_GPUShaderStage stage; /**< The stage the shader program corresponds to. */ + Uint32 num_samplers; /**< The number of samplers defined in the shader. */ + Uint32 num_storage_textures; /**< The number of storage textures defined in the shader. */ + Uint32 num_storage_buffers; /**< The number of storage buffers defined in the shader. */ + Uint32 num_uniform_buffers; /**< The number of uniform buffers defined in the shader. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUShaderCreateInfo; + +/** + * A structure specifying the parameters of a texture. + * + * Usage flags can be bitwise OR'd together for combinations of usages. Note + * that certain usage combinations are invalid, for example SAMPLER and + * GRAPHICS_STORAGE. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_GPUTextureType + * \sa SDL_GPUTextureFormat + * \sa SDL_GPUTextureUsageFlags + * \sa SDL_GPUSampleCount + */ +typedef struct SDL_GPUTextureCreateInfo +{ + SDL_GPUTextureType type; /**< The base dimensionality of the texture. */ + SDL_GPUTextureFormat format; /**< The pixel format of the texture. */ + SDL_GPUTextureUsageFlags usage; /**< How the texture is intended to be used by the client. */ + Uint32 width; /**< The width of the texture. */ + Uint32 height; /**< The height of the texture. */ + Uint32 layer_count_or_depth; /**< The layer count or depth of the texture. This value is treated as a layer count on 2D array textures, and as a depth value on 3D textures. */ + Uint32 num_levels; /**< The number of mip levels in the texture. */ + SDL_GPUSampleCount sample_count; /**< The number of samples per texel. Only applies if the texture is used as a render target. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUTextureCreateInfo; + +/** + * A structure specifying the parameters of a buffer. + * + * Usage flags can be bitwise OR'd together for combinations of usages. Note + * that certain combinations are invalid, for example VERTEX and INDEX. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + * \sa SDL_GPUBufferUsageFlags + */ +typedef struct SDL_GPUBufferCreateInfo +{ + SDL_GPUBufferUsageFlags usage; /**< How the buffer is intended to be used by the client. */ + Uint32 size; /**< The size in bytes of the buffer. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUBufferCreateInfo; + +/** + * A structure specifying the parameters of a transfer buffer. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTransferBuffer + */ +typedef struct SDL_GPUTransferBufferCreateInfo +{ + SDL_GPUTransferBufferUsage usage; /**< How the transfer buffer is intended to be used by the client. */ + Uint32 size; /**< The size in bytes of the transfer buffer. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUTransferBufferCreateInfo; + +/* Pipeline state structures */ + +/** + * A structure specifying the parameters of the graphics pipeline rasterizer + * state. + * + * Note that SDL_GPU_FILLMODE_LINE is not supported on many Android devices. + * For those devices, the fill mode will automatically fall back to FILL. + * + * Also note that the D3D12 driver will enable depth clamping even if + * enable_depth_clip is true. If you need this clamp+clip behavior, consider + * enabling depth clip and then manually clamping depth in your fragment + * shaders on Metal and Vulkan. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + */ +typedef struct SDL_GPURasterizerState +{ + SDL_GPUFillMode fill_mode; /**< Whether polygons will be filled in or drawn as lines. */ + SDL_GPUCullMode cull_mode; /**< The facing direction in which triangles will be culled. */ + SDL_GPUFrontFace front_face; /**< The vertex winding that will cause a triangle to be determined as front-facing. */ + float depth_bias_constant_factor; /**< A scalar factor controlling the depth value added to each fragment. */ + float depth_bias_clamp; /**< The maximum depth bias of a fragment. */ + float depth_bias_slope_factor; /**< A scalar factor applied to a fragment's slope in depth calculations. */ + bool enable_depth_bias; /**< true to bias fragment depth values. */ + bool enable_depth_clip; /**< true to enable depth clip, false to enable depth clamp. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPURasterizerState; + +/** + * A structure specifying the parameters of the graphics pipeline multisample + * state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + */ +typedef struct SDL_GPUMultisampleState +{ + SDL_GPUSampleCount sample_count; /**< The number of samples to be used in rasterization. */ + Uint32 sample_mask; /**< Reserved for future use. Must be set to 0. */ + bool enable_mask; /**< Reserved for future use. Must be set to false. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUMultisampleState; + +/** + * A structure specifying the parameters of the graphics pipeline depth + * stencil state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + */ +typedef struct SDL_GPUDepthStencilState +{ + SDL_GPUCompareOp compare_op; /**< The comparison operator used for depth testing. */ + SDL_GPUStencilOpState back_stencil_state; /**< The stencil op state for back-facing triangles. */ + SDL_GPUStencilOpState front_stencil_state; /**< The stencil op state for front-facing triangles. */ + Uint8 compare_mask; /**< Selects the bits of the stencil values participating in the stencil test. */ + Uint8 write_mask; /**< Selects the bits of the stencil values updated by the stencil test. */ + bool enable_depth_test; /**< true enables the depth test. */ + bool enable_depth_write; /**< true enables depth writes. Depth writes are always disabled when enable_depth_test is false. */ + bool enable_stencil_test; /**< true enables the stencil test. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUDepthStencilState; + +/** + * A structure specifying the parameters of color targets used in a graphics + * pipeline. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineTargetInfo + */ +typedef struct SDL_GPUColorTargetDescription +{ + SDL_GPUTextureFormat format; /**< The pixel format of the texture to be used as a color target. */ + SDL_GPUColorTargetBlendState blend_state; /**< The blend state to be used for the color target. */ +} SDL_GPUColorTargetDescription; + +/** + * A structure specifying the descriptions of render targets used in a + * graphics pipeline. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + * \sa SDL_GPUColorTargetDescription + * \sa SDL_GPUTextureFormat + */ +typedef struct SDL_GPUGraphicsPipelineTargetInfo +{ + const SDL_GPUColorTargetDescription *color_target_descriptions; /**< A pointer to an array of color target descriptions. */ + Uint32 num_color_targets; /**< The number of color target descriptions in the above array. */ + SDL_GPUTextureFormat depth_stencil_format; /**< The pixel format of the depth-stencil target. Ignored if has_depth_stencil_target is false. */ + bool has_depth_stencil_target; /**< true specifies that the pipeline uses a depth-stencil target. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUGraphicsPipelineTargetInfo; + +/** + * A structure specifying the parameters of a graphics pipeline state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_GPUShader + * \sa SDL_GPUVertexInputState + * \sa SDL_GPUPrimitiveType + * \sa SDL_GPURasterizerState + * \sa SDL_GPUMultisampleState + * \sa SDL_GPUDepthStencilState + * \sa SDL_GPUGraphicsPipelineTargetInfo + */ +typedef struct SDL_GPUGraphicsPipelineCreateInfo +{ + SDL_GPUShader *vertex_shader; /**< The vertex shader used by the graphics pipeline. */ + SDL_GPUShader *fragment_shader; /**< The fragment shader used by the graphics pipeline. */ + SDL_GPUVertexInputState vertex_input_state; /**< The vertex layout of the graphics pipeline. */ + SDL_GPUPrimitiveType primitive_type; /**< The primitive topology of the graphics pipeline. */ + SDL_GPURasterizerState rasterizer_state; /**< The rasterizer state of the graphics pipeline. */ + SDL_GPUMultisampleState multisample_state; /**< The multisample state of the graphics pipeline. */ + SDL_GPUDepthStencilState depth_stencil_state; /**< The depth-stencil state of the graphics pipeline. */ + SDL_GPUGraphicsPipelineTargetInfo target_info; /**< Formats and blend modes for the render targets of the graphics pipeline. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUGraphicsPipelineCreateInfo; + +/** + * A structure specifying the parameters of a compute pipeline state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUComputePipeline + * \sa SDL_GPUShaderFormat + */ +typedef struct SDL_GPUComputePipelineCreateInfo +{ + size_t code_size; /**< The size in bytes of the compute shader code pointed to. */ + const Uint8 *code; /**< A pointer to compute shader code. */ + const char *entrypoint; /**< A pointer to a null-terminated UTF-8 string specifying the entry point function name for the shader. */ + SDL_GPUShaderFormat format; /**< The format of the compute shader code. */ + Uint32 num_samplers; /**< The number of samplers defined in the shader. */ + Uint32 num_readonly_storage_textures; /**< The number of readonly storage textures defined in the shader. */ + Uint32 num_readonly_storage_buffers; /**< The number of readonly storage buffers defined in the shader. */ + Uint32 num_readwrite_storage_textures; /**< The number of read-write storage textures defined in the shader. */ + Uint32 num_readwrite_storage_buffers; /**< The number of read-write storage buffers defined in the shader. */ + Uint32 num_uniform_buffers; /**< The number of uniform buffers defined in the shader. */ + Uint32 threadcount_x; /**< The number of threads in the X dimension. This should match the value in the shader. */ + Uint32 threadcount_y; /**< The number of threads in the Y dimension. This should match the value in the shader. */ + Uint32 threadcount_z; /**< The number of threads in the Z dimension. This should match the value in the shader. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUComputePipelineCreateInfo; + +/** + * A structure specifying the parameters of a color target used by a render + * pass. + * + * The load_op field determines what is done with the texture at the beginning + * of the render pass. + * + * - LOAD: Loads the data currently in the texture. Not recommended for + * multisample textures as it requires significant memory bandwidth. + * - CLEAR: Clears the texture to a single color. + * - DONT_CARE: The driver will do whatever it wants with the texture memory. + * This is a good option if you know that every single pixel will be touched + * in the render pass. + * + * The store_op field determines what is done with the color results of the + * render pass. + * + * - STORE: Stores the results of the render pass in the texture. Not + * recommended for multisample textures as it requires significant memory + * bandwidth. + * - DONT_CARE: The driver will do whatever it wants with the texture memory. + * This is often a good option for depth/stencil textures. + * - RESOLVE: Resolves a multisample texture into resolve_texture, which must + * have a sample count of 1. Then the driver may discard the multisample + * texture memory. This is the most performant method of resolving a + * multisample target. + * - RESOLVE_AND_STORE: Resolves a multisample texture into the + * resolve_texture, which must have a sample count of 1. Then the driver + * stores the multisample texture's contents. Not recommended as it requires + * significant memory bandwidth. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef struct SDL_GPUColorTargetInfo +{ + SDL_GPUTexture *texture; /**< The texture that will be used as a color target by a render pass. */ + Uint32 mip_level; /**< The mip level to use as a color target. */ + Uint32 layer_or_depth_plane; /**< The layer index or depth plane to use as a color target. This value is treated as a layer index on 2D array and cube textures, and as a depth plane on 3D textures. */ + SDL_FColor clear_color; /**< The color to clear the color target to at the start of the render pass. Ignored if SDL_GPU_LOADOP_CLEAR is not used. */ + SDL_GPULoadOp load_op; /**< What is done with the contents of the color target at the beginning of the render pass. */ + SDL_GPUStoreOp store_op; /**< What is done with the results of the render pass. */ + SDL_GPUTexture *resolve_texture; /**< The texture that will receive the results of a multisample resolve operation. Ignored if a RESOLVE* store_op is not used. */ + Uint32 resolve_mip_level; /**< The mip level of the resolve texture to use for the resolve operation. Ignored if a RESOLVE* store_op is not used. */ + Uint32 resolve_layer; /**< The layer index of the resolve texture to use for the resolve operation. Ignored if a RESOLVE* store_op is not used. */ + bool cycle; /**< true cycles the texture if the texture is bound and load_op is not LOAD */ + bool cycle_resolve_texture; /**< true cycles the resolve texture if the resolve texture is bound. Ignored if a RESOLVE* store_op is not used. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPUColorTargetInfo; + +/** + * A structure specifying the parameters of a depth-stencil target used by a + * render pass. + * + * The load_op field determines what is done with the depth contents of the + * texture at the beginning of the render pass. + * + * - LOAD: Loads the depth values currently in the texture. + * - CLEAR: Clears the texture to a single depth. + * - DONT_CARE: The driver will do whatever it wants with the memory. This is + * a good option if you know that every single pixel will be touched in the + * render pass. + * + * The store_op field determines what is done with the depth results of the + * render pass. + * + * - STORE: Stores the depth results in the texture. + * - DONT_CARE: The driver will do whatever it wants with the depth results. + * This is often a good option for depth/stencil textures that don't need to + * be reused again. + * + * The stencil_load_op field determines what is done with the stencil contents + * of the texture at the beginning of the render pass. + * + * - LOAD: Loads the stencil values currently in the texture. + * - CLEAR: Clears the stencil values to a single value. + * - DONT_CARE: The driver will do whatever it wants with the memory. This is + * a good option if you know that every single pixel will be touched in the + * render pass. + * + * The stencil_store_op field determines what is done with the stencil results + * of the render pass. + * + * - STORE: Stores the stencil results in the texture. + * - DONT_CARE: The driver will do whatever it wants with the stencil results. + * This is often a good option for depth/stencil textures that don't need to + * be reused again. + * + * Note that depth/stencil targets do not support multisample resolves. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef struct SDL_GPUDepthStencilTargetInfo +{ + SDL_GPUTexture *texture; /**< The texture that will be used as the depth stencil target by the render pass. */ + float clear_depth; /**< The value to clear the depth component to at the beginning of the render pass. Ignored if SDL_GPU_LOADOP_CLEAR is not used. */ + SDL_GPULoadOp load_op; /**< What is done with the depth contents at the beginning of the render pass. */ + SDL_GPUStoreOp store_op; /**< What is done with the depth results of the render pass. */ + SDL_GPULoadOp stencil_load_op; /**< What is done with the stencil contents at the beginning of the render pass. */ + SDL_GPUStoreOp stencil_store_op; /**< What is done with the stencil results of the render pass. */ + bool cycle; /**< true cycles the texture if the texture is bound and any load ops are not LOAD */ + Uint8 clear_stencil; /**< The value to clear the stencil component to at the beginning of the render pass. Ignored if SDL_GPU_LOADOP_CLEAR is not used. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPUDepthStencilTargetInfo; + +/** + * A structure containing parameters for a blit command. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BlitGPUTexture + */ +typedef struct SDL_GPUBlitInfo { + SDL_GPUBlitRegion source; /**< The source region for the blit. */ + SDL_GPUBlitRegion destination; /**< The destination region for the blit. */ + SDL_GPULoadOp load_op; /**< What is done with the contents of the destination before the blit. */ + SDL_FColor clear_color; /**< The color to clear the destination region to before the blit. Ignored if load_op is not SDL_GPU_LOADOP_CLEAR. */ + SDL_FlipMode flip_mode; /**< The flip mode for the source region. */ + SDL_GPUFilter filter; /**< The filter mode used when blitting. */ + bool cycle; /**< true cycles the destination texture if it is already bound. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUBlitInfo; + +/* Binding structs */ + +/** + * A structure specifying parameters in a buffer binding call. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BindGPUVertexBuffers + * \sa SDL_BindGPUIndexBuffer + */ +typedef struct SDL_GPUBufferBinding +{ + SDL_GPUBuffer *buffer; /**< The buffer to bind. Must have been created with SDL_GPU_BUFFERUSAGE_VERTEX for SDL_BindGPUVertexBuffers, or SDL_GPU_BUFFERUSAGE_INDEX for SDL_BindGPUIndexBuffer. */ + Uint32 offset; /**< The starting byte of the data to bind in the buffer. */ +} SDL_GPUBufferBinding; + +/** + * A structure specifying parameters in a sampler binding call. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUFragmentSamplers + */ +typedef struct SDL_GPUTextureSamplerBinding +{ + SDL_GPUTexture *texture; /**< The texture to bind. Must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. */ + SDL_GPUSampler *sampler; /**< The sampler to bind. */ +} SDL_GPUTextureSamplerBinding; + +/** + * A structure specifying parameters related to binding buffers in a compute + * pass. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUComputePass + */ +typedef struct SDL_GPUStorageBufferReadWriteBinding +{ + SDL_GPUBuffer *buffer; /**< The buffer to bind. Must have been created with SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_WRITE. */ + bool cycle; /**< true cycles the buffer if it is already bound. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUStorageBufferReadWriteBinding; + +/** + * A structure specifying parameters related to binding textures in a compute + * pass. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUComputePass + */ +typedef struct SDL_GPUStorageTextureReadWriteBinding +{ + SDL_GPUTexture *texture; /**< The texture to bind. Must have been created with SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_WRITE or SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE. */ + Uint32 mip_level; /**< The mip level index to bind. */ + Uint32 layer; /**< The layer index to bind. */ + bool cycle; /**< true cycles the texture if it is already bound. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUStorageTextureReadWriteBinding; + +/* Functions */ + +/* Device */ + +/** + * Checks for GPU runtime support. + * + * \param format_flags a bitflag indicating which shader formats the app is + * able to provide. + * \param name the preferred GPU driver, or NULL to let SDL pick the optimal + * driver. + * \returns true if supported, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUSupportsShaderFormats( + SDL_GPUShaderFormat format_flags, + const char *name); + +/** + * Checks for GPU runtime support. + * + * \param props the properties to use. + * \returns true if supported, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUDeviceWithProperties + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUSupportsProperties( + SDL_PropertiesID props); + +/** + * Creates a GPU context. + * + * \param format_flags a bitflag indicating which shader formats the app is + * able to provide. + * \param debug_mode enable debug mode properties and validations. + * \param name the preferred GPU driver, or NULL to let SDL pick the optimal + * driver. + * \returns a GPU context on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGPUShaderFormats + * \sa SDL_GetGPUDeviceDriver + * \sa SDL_DestroyGPUDevice + * \sa SDL_GPUSupportsShaderFormats + */ +extern SDL_DECLSPEC SDL_GPUDevice * SDLCALL SDL_CreateGPUDevice( + SDL_GPUShaderFormat format_flags, + bool debug_mode, + const char *name); + +/** + * Creates a GPU context. + * + * These are the supported properties: + * + * - `SDL_PROP_GPU_DEVICE_CREATE_DEBUGMODE_BOOLEAN`: enable debug mode + * properties and validations, defaults to true. + * - `SDL_PROP_GPU_DEVICE_CREATE_PREFERLOWPOWER_BOOLEAN`: enable to prefer + * energy efficiency over maximum GPU performance, defaults to false. + * - `SDL_PROP_GPU_DEVICE_CREATE_NAME_STRING`: the name of the GPU driver to + * use, if a specific one is desired. + * + * These are the current shader format properties: + * + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_PRIVATE_BOOLEAN`: The app is able to + * provide shaders for an NDA platform. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_SPIRV_BOOLEAN`: The app is able to + * provide SPIR-V shaders if applicable. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXBC_BOOLEAN`: The app is able to + * provide DXBC shaders if applicable + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXIL_BOOLEAN`: The app is able to + * provide DXIL shaders if applicable. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_MSL_BOOLEAN`: The app is able to + * provide MSL shaders if applicable. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_METALLIB_BOOLEAN`: The app is able to + * provide Metal shader libraries if applicable. + * + * With the D3D12 renderer: + * + * - `SDL_PROP_GPU_DEVICE_CREATE_D3D12_SEMANTIC_NAME_STRING`: the prefix to + * use for all vertex semantics, default is "TEXCOORD". + * + * \param props the properties to use. + * \returns a GPU context on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGPUShaderFormats + * \sa SDL_GetGPUDeviceDriver + * \sa SDL_DestroyGPUDevice + * \sa SDL_GPUSupportsProperties + */ +extern SDL_DECLSPEC SDL_GPUDevice * SDLCALL SDL_CreateGPUDeviceWithProperties( + SDL_PropertiesID props); + +#define SDL_PROP_GPU_DEVICE_CREATE_DEBUGMODE_BOOLEAN "SDL.gpu.device.create.debugmode" +#define SDL_PROP_GPU_DEVICE_CREATE_PREFERLOWPOWER_BOOLEAN "SDL.gpu.device.create.preferlowpower" +#define SDL_PROP_GPU_DEVICE_CREATE_NAME_STRING "SDL.gpu.device.create.name" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_PRIVATE_BOOLEAN "SDL.gpu.device.create.shaders.private" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_SPIRV_BOOLEAN "SDL.gpu.device.create.shaders.spirv" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXBC_BOOLEAN "SDL.gpu.device.create.shaders.dxbc" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXIL_BOOLEAN "SDL.gpu.device.create.shaders.dxil" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_MSL_BOOLEAN "SDL.gpu.device.create.shaders.msl" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_METALLIB_BOOLEAN "SDL.gpu.device.create.shaders.metallib" +#define SDL_PROP_GPU_DEVICE_CREATE_D3D12_SEMANTIC_NAME_STRING "SDL.gpu.device.create.d3d12.semantic" + +/** + * Destroys a GPU context previously returned by SDL_CreateGPUDevice. + * + * \param device a GPU Context to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUDevice + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyGPUDevice(SDL_GPUDevice *device); + +/** + * Get the number of GPU drivers compiled into SDL. + * + * \returns the number of built in GPU drivers. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGPUDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumGPUDrivers(void); + +/** + * Get the name of a built in GPU driver. + * + * The GPU drivers are presented in the order in which they are normally + * checked during initialization. + * + * The names of drivers are all simple, low-ASCII identifiers, like "vulkan", + * "metal" or "direct3d12". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of a GPU driver. + * \returns the name of the GPU driver with the given **index**. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumGPUDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGPUDriver(int index); + +/** + * Returns the name of the backend used to create this GPU context. + * + * \param device a GPU context to query. + * \returns the name of the device's driver, or NULL on error. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGPUDeviceDriver(SDL_GPUDevice *device); + +/** + * Returns the supported shader formats for this GPU context. + * + * \param device a GPU context to query. + * \returns a bitflag indicating which shader formats the driver is able to + * consume. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GPUShaderFormat SDLCALL SDL_GetGPUShaderFormats(SDL_GPUDevice *device); + +/* State Creation */ + +/** + * Creates a pipeline object to be used in a compute workflow. + * + * Shader resource bindings must be authored to follow a particular order + * depending on the shader format. + * + * For SPIR-V shaders, use the following resource sets: + * + * - 0: Sampled textures, followed by read-only storage textures, followed by + * read-only storage buffers + * - 1: Read-write storage textures, followed by read-write storage buffers + * - 2: Uniform buffers + * + * For DXBC and DXIL shaders, use the following register order: + * + * - (t[n], space0): Sampled textures, followed by read-only storage textures, + * followed by read-only storage buffers + * - (u[n], space1): Read-write storage textures, followed by read-write + * storage buffers + * - (b[n], space2): Uniform buffers + * + * For MSL/metallib, use the following order: + * + * - [[buffer]]: Uniform buffers, followed by read-only storage buffers, + * followed by read-write storage buffers + * - [[texture]]: Sampled textures, followed by read-only storage textures, + * followed by read-write storage textures + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_COMPUTEPIPELINE_CREATE_NAME_STRING`: a name that can be + * displayed in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the compute pipeline to + * create. + * \returns a compute pipeline object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindGPUComputePipeline + * \sa SDL_ReleaseGPUComputePipeline + */ +extern SDL_DECLSPEC SDL_GPUComputePipeline * SDLCALL SDL_CreateGPUComputePipeline( + SDL_GPUDevice *device, + const SDL_GPUComputePipelineCreateInfo *createinfo); + +#define SDL_PROP_GPU_COMPUTEPIPELINE_CREATE_NAME_STRING "SDL.gpu.computepipeline.create.name" + +/** + * Creates a pipeline object to be used in a graphics workflow. + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_GRAPHICSPIPELINE_CREATE_NAME_STRING`: a name that can be + * displayed in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the graphics pipeline to + * create. + * \returns a graphics pipeline object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + * \sa SDL_BindGPUGraphicsPipeline + * \sa SDL_ReleaseGPUGraphicsPipeline + */ +extern SDL_DECLSPEC SDL_GPUGraphicsPipeline * SDLCALL SDL_CreateGPUGraphicsPipeline( + SDL_GPUDevice *device, + const SDL_GPUGraphicsPipelineCreateInfo *createinfo); + +#define SDL_PROP_GPU_GRAPHICSPIPELINE_CREATE_NAME_STRING "SDL.gpu.graphicspipeline.create.name" + +/** + * Creates a sampler object to be used when binding textures in a graphics + * workflow. + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_SAMPLER_CREATE_NAME_STRING`: a name that can be displayed + * in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the sampler to create. + * \returns a sampler object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_ReleaseGPUSampler + */ +extern SDL_DECLSPEC SDL_GPUSampler * SDLCALL SDL_CreateGPUSampler( + SDL_GPUDevice *device, + const SDL_GPUSamplerCreateInfo *createinfo); + +#define SDL_PROP_GPU_SAMPLER_CREATE_NAME_STRING "SDL.gpu.sampler.create.name" + +/** + * Creates a shader to be used when creating a graphics pipeline. + * + * Shader resource bindings must be authored to follow a particular order + * depending on the shader format. + * + * For SPIR-V shaders, use the following resource sets: + * + * For vertex shaders: + * + * - 0: Sampled textures, followed by storage textures, followed by storage + * buffers + * - 1: Uniform buffers + * + * For fragment shaders: + * + * - 2: Sampled textures, followed by storage textures, followed by storage + * buffers + * - 3: Uniform buffers + * + * For DXBC and DXIL shaders, use the following register order: + * + * For vertex shaders: + * + * - (t[n], space0): Sampled textures, followed by storage textures, followed + * by storage buffers + * - (s[n], space0): Samplers with indices corresponding to the sampled + * textures + * - (b[n], space1): Uniform buffers + * + * For pixel shaders: + * + * - (t[n], space2): Sampled textures, followed by storage textures, followed + * by storage buffers + * - (s[n], space2): Samplers with indices corresponding to the sampled + * textures + * - (b[n], space3): Uniform buffers + * + * For MSL/metallib, use the following order: + * + * - [[texture]]: Sampled textures, followed by storage textures + * - [[sampler]]: Samplers with indices corresponding to the sampled textures + * - [[buffer]]: Uniform buffers, followed by storage buffers. Vertex buffer 0 + * is bound at [[buffer(14)]], vertex buffer 1 at [[buffer(15)]], and so on. + * Rather than manually authoring vertex buffer indices, use the + * [[stage_in]] attribute which will automatically use the vertex input + * information from the SDL_GPUGraphicsPipeline. + * + * Shader semantics other than system-value semantics do not matter in D3D12 + * and for ease of use the SDL implementation assumes that non system-value + * semantics will all be TEXCOORD. If you are using HLSL as the shader source + * language, your vertex semantics should start at TEXCOORD0 and increment + * like so: TEXCOORD1, TEXCOORD2, etc. If you wish to change the semantic + * prefix to something other than TEXCOORD you can use + * SDL_PROP_GPU_DEVICE_CREATE_D3D12_SEMANTIC_NAME_STRING with + * SDL_CreateGPUDeviceWithProperties(). + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_SHADER_CREATE_NAME_STRING`: a name that can be displayed in + * debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the shader to create. + * \returns a shader object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_ReleaseGPUShader + */ +extern SDL_DECLSPEC SDL_GPUShader * SDLCALL SDL_CreateGPUShader( + SDL_GPUDevice *device, + const SDL_GPUShaderCreateInfo *createinfo); + +#define SDL_PROP_GPU_SHADER_CREATE_NAME_STRING "SDL.gpu.shader.create.name" + +/** + * Creates a texture object to be used in graphics or compute workflows. + * + * The contents of this texture are undefined until data is written to the + * texture. + * + * Note that certain combinations of usage flags are invalid. For example, a + * texture cannot have both the SAMPLER and GRAPHICS_STORAGE_READ flags. + * + * If you request a sample count higher than the hardware supports, the + * implementation will automatically fall back to the highest available sample + * count. + * + * There are optional properties that can be provided through + * SDL_GPUTextureCreateInfo's `props`. These are the supported properties: + * + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_R_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this red intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_G_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this green intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_B_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this blue intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_A_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this alpha intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_DEPTH_FLOAT`: (Direct3D 12 only) + * if the texture usage is SDL_GPU_TEXTUREUSAGE_DEPTH_STENCIL_TARGET, clear + * the texture to a depth of this value. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_STENCIL_NUMBER`: (Direct3D 12 + * only) if the texture usage is SDL_GPU_TEXTUREUSAGE_DEPTH_STENCIL_TARGET, + * clear the texture to a stencil of this Uint8 value. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_NAME_STRING`: a name that can be displayed + * in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the texture to create. + * \returns a texture object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUVertexStorageTextures + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_BindGPUFragmentStorageTextures + * \sa SDL_BindGPUComputeStorageTextures + * \sa SDL_BlitGPUTexture + * \sa SDL_ReleaseGPUTexture + * \sa SDL_GPUTextureSupportsFormat + */ +extern SDL_DECLSPEC SDL_GPUTexture * SDLCALL SDL_CreateGPUTexture( + SDL_GPUDevice *device, + const SDL_GPUTextureCreateInfo *createinfo); + +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_R_FLOAT "SDL.gpu.texture.create.d3d12.clear.r" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_G_FLOAT "SDL.gpu.texture.create.d3d12.clear.g" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_B_FLOAT "SDL.gpu.texture.create.d3d12.clear.b" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_A_FLOAT "SDL.gpu.texture.create.d3d12.clear.a" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_DEPTH_FLOAT "SDL.gpu.texture.create.d3d12.clear.depth" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_STENCIL_NUMBER "SDL.gpu.texture.create.d3d12.clear.stencil" +#define SDL_PROP_GPU_TEXTURE_CREATE_NAME_STRING "SDL.gpu.texture.create.name" + +/** + * Creates a buffer object to be used in graphics or compute workflows. + * + * The contents of this buffer are undefined until data is written to the + * buffer. + * + * Note that certain combinations of usage flags are invalid. For example, a + * buffer cannot have both the VERTEX and INDEX flags. + * + * If you use a STORAGE flag, the data in the buffer must respect std140 + * layout conventions. In practical terms this means you must ensure that vec3 + * and vec4 fields are 16-byte aligned. + * + * For better understanding of underlying concepts and memory management with + * SDL GPU API, you may refer + * [this blog post](https://moonside.games/posts/sdl-gpu-concepts-cycling/) + * . + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_BUFFER_CREATE_NAME_STRING`: a name that can be displayed in + * debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the buffer to create. + * \returns a buffer object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_CopyGPUBufferToBuffer + * \sa SDL_BindGPUVertexBuffers + * \sa SDL_BindGPUIndexBuffer + * \sa SDL_BindGPUVertexStorageBuffers + * \sa SDL_BindGPUFragmentStorageBuffers + * \sa SDL_DrawGPUPrimitivesIndirect + * \sa SDL_DrawGPUIndexedPrimitivesIndirect + * \sa SDL_BindGPUComputeStorageBuffers + * \sa SDL_DispatchGPUComputeIndirect + * \sa SDL_ReleaseGPUBuffer + */ +extern SDL_DECLSPEC SDL_GPUBuffer * SDLCALL SDL_CreateGPUBuffer( + SDL_GPUDevice *device, + const SDL_GPUBufferCreateInfo *createinfo); + +#define SDL_PROP_GPU_BUFFER_CREATE_NAME_STRING "SDL.gpu.buffer.create.name" + +/** + * Creates a transfer buffer to be used when uploading to or downloading from + * graphics resources. + * + * Download buffers can be particularly expensive to create, so it is good + * practice to reuse them if data will be downloaded regularly. + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_TRANSFERBUFFER_CREATE_NAME_STRING`: a name that can be + * displayed in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the transfer buffer to + * create. + * \returns a transfer buffer on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_ReleaseGPUTransferBuffer + */ +extern SDL_DECLSPEC SDL_GPUTransferBuffer * SDLCALL SDL_CreateGPUTransferBuffer( + SDL_GPUDevice *device, + const SDL_GPUTransferBufferCreateInfo *createinfo); + +#define SDL_PROP_GPU_TRANSFERBUFFER_CREATE_NAME_STRING "SDL.gpu.transferbuffer.create.name" + +/* Debug Naming */ + +/** + * Sets an arbitrary string constant to label a buffer. + * + * You should use SDL_PROP_GPU_BUFFER_CREATE_NAME_STRING with + * SDL_CreateGPUBuffer instead of this function to avoid thread safety issues. + * + * \param device a GPU Context. + * \param buffer a buffer to attach the name to. + * \param text a UTF-8 string constant to mark as the name of the buffer. + * + * \threadsafety This function is not thread safe, you must make sure the + * buffer is not simultaneously used by any other thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUBufferName( + SDL_GPUDevice *device, + SDL_GPUBuffer *buffer, + const char *text); + +/** + * Sets an arbitrary string constant to label a texture. + * + * You should use SDL_PROP_GPU_TEXTURE_CREATE_NAME_STRING with + * SDL_CreateGPUTexture instead of this function to avoid thread safety + * issues. + * + * \param device a GPU Context. + * \param texture a texture to attach the name to. + * \param text a UTF-8 string constant to mark as the name of the texture. + * + * \threadsafety This function is not thread safe, you must make sure the + * texture is not simultaneously used by any other thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUTextureName( + SDL_GPUDevice *device, + SDL_GPUTexture *texture, + const char *text); + +/** + * Inserts an arbitrary string label into the command buffer callstream. + * + * Useful for debugging. + * + * \param command_buffer a command buffer. + * \param text a UTF-8 string constant to insert as the label. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_InsertGPUDebugLabel( + SDL_GPUCommandBuffer *command_buffer, + const char *text); + +/** + * Begins a debug group with an arbitary name. + * + * Used for denoting groups of calls when viewing the command buffer + * callstream in a graphics debugging tool. + * + * Each call to SDL_PushGPUDebugGroup must have a corresponding call to + * SDL_PopGPUDebugGroup. + * + * On some backends (e.g. Metal), pushing a debug group during a + * render/blit/compute pass will create a group that is scoped to the native + * pass rather than the command buffer. For best results, if you push a debug + * group during a pass, always pop it in the same pass. + * + * \param command_buffer a command buffer. + * \param name a UTF-8 string constant that names the group. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PopGPUDebugGroup + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUDebugGroup( + SDL_GPUCommandBuffer *command_buffer, + const char *name); + +/** + * Ends the most-recently pushed debug group. + * + * \param command_buffer a command buffer. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PushGPUDebugGroup + */ +extern SDL_DECLSPEC void SDLCALL SDL_PopGPUDebugGroup( + SDL_GPUCommandBuffer *command_buffer); + +/* Disposal */ + +/** + * Frees the given texture as soon as it is safe to do so. + * + * You must not reference the texture after calling this function. + * + * \param device a GPU context. + * \param texture a texture to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUTexture( + SDL_GPUDevice *device, + SDL_GPUTexture *texture); + +/** + * Frees the given sampler as soon as it is safe to do so. + * + * You must not reference the sampler after calling this function. + * + * \param device a GPU context. + * \param sampler a sampler to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUSampler( + SDL_GPUDevice *device, + SDL_GPUSampler *sampler); + +/** + * Frees the given buffer as soon as it is safe to do so. + * + * You must not reference the buffer after calling this function. + * + * \param device a GPU context. + * \param buffer a buffer to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUBuffer( + SDL_GPUDevice *device, + SDL_GPUBuffer *buffer); + +/** + * Frees the given transfer buffer as soon as it is safe to do so. + * + * You must not reference the transfer buffer after calling this function. + * + * \param device a GPU context. + * \param transfer_buffer a transfer buffer to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUTransferBuffer( + SDL_GPUDevice *device, + SDL_GPUTransferBuffer *transfer_buffer); + +/** + * Frees the given compute pipeline as soon as it is safe to do so. + * + * You must not reference the compute pipeline after calling this function. + * + * \param device a GPU context. + * \param compute_pipeline a compute pipeline to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUComputePipeline( + SDL_GPUDevice *device, + SDL_GPUComputePipeline *compute_pipeline); + +/** + * Frees the given shader as soon as it is safe to do so. + * + * You must not reference the shader after calling this function. + * + * \param device a GPU context. + * \param shader a shader to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUShader( + SDL_GPUDevice *device, + SDL_GPUShader *shader); + +/** + * Frees the given graphics pipeline as soon as it is safe to do so. + * + * You must not reference the graphics pipeline after calling this function. + * + * \param device a GPU context. + * \param graphics_pipeline a graphics pipeline to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUGraphicsPipeline( + SDL_GPUDevice *device, + SDL_GPUGraphicsPipeline *graphics_pipeline); + +/** + * Acquire a command buffer. + * + * This command buffer is managed by the implementation and should not be + * freed by the user. The command buffer may only be used on the thread it was + * acquired on. The command buffer should be submitted on the thread it was + * acquired on. + * + * It is valid to acquire multiple command buffers on the same thread at once. + * In fact a common design pattern is to acquire two command buffers per frame + * where one is dedicated to render and compute passes and the other is + * dedicated to copy passes and other preparatory work such as generating + * mipmaps. Interleaving commands between the two command buffers reduces the + * total amount of passes overall which improves rendering performance. + * + * \param device a GPU context. + * \returns a command buffer, or NULL on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC SDL_GPUCommandBuffer * SDLCALL SDL_AcquireGPUCommandBuffer( + SDL_GPUDevice *device); + +/* Uniform Data */ + +/** + * Pushes data to a vertex uniform slot on the command buffer. + * + * Subsequent draw calls will use this uniform data. + * + * The data being pushed must respect std140 layout conventions. In practical + * terms this means you must ensure that vec3 and vec4 fields are 16-byte + * aligned. + * + * \param command_buffer a command buffer. + * \param slot_index the vertex uniform slot to push data to. + * \param data client data to write. + * \param length the length of the data to write. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUVertexUniformData( + SDL_GPUCommandBuffer *command_buffer, + Uint32 slot_index, + const void *data, + Uint32 length); + +/** + * Pushes data to a fragment uniform slot on the command buffer. + * + * Subsequent draw calls will use this uniform data. + * + * The data being pushed must respect std140 layout conventions. In practical + * terms this means you must ensure that vec3 and vec4 fields are 16-byte + * aligned. + * + * \param command_buffer a command buffer. + * \param slot_index the fragment uniform slot to push data to. + * \param data client data to write. + * \param length the length of the data to write. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUFragmentUniformData( + SDL_GPUCommandBuffer *command_buffer, + Uint32 slot_index, + const void *data, + Uint32 length); + +/** + * Pushes data to a uniform slot on the command buffer. + * + * Subsequent draw calls will use this uniform data. + * + * The data being pushed must respect std140 layout conventions. In practical + * terms this means you must ensure that vec3 and vec4 fields are 16-byte + * aligned. + * + * \param command_buffer a command buffer. + * \param slot_index the uniform slot to push data to. + * \param data client data to write. + * \param length the length of the data to write. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUComputeUniformData( + SDL_GPUCommandBuffer *command_buffer, + Uint32 slot_index, + const void *data, + Uint32 length); + +/* Graphics State */ + +/** + * Begins a render pass on a command buffer. + * + * A render pass consists of a set of texture subresources (or depth slices in + * the 3D texture case) which will be rendered to during the render pass, + * along with corresponding clear values and load/store operations. All + * operations related to graphics pipelines must take place inside of a render + * pass. A default viewport and scissor state are automatically set when this + * is called. You cannot begin another render pass, or begin a compute pass or + * copy pass until you have ended the render pass. + * + * \param command_buffer a command buffer. + * \param color_target_infos an array of texture subresources with + * corresponding clear values and load/store ops. + * \param num_color_targets the number of color targets in the + * color_target_infos array. + * \param depth_stencil_target_info a texture subresource with corresponding + * clear value and load/store ops, may be + * NULL. + * \returns a render pass handle. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EndGPURenderPass + */ +extern SDL_DECLSPEC SDL_GPURenderPass * SDLCALL SDL_BeginGPURenderPass( + SDL_GPUCommandBuffer *command_buffer, + const SDL_GPUColorTargetInfo *color_target_infos, + Uint32 num_color_targets, + const SDL_GPUDepthStencilTargetInfo *depth_stencil_target_info); + +/** + * Binds a graphics pipeline on a render pass to be used in rendering. + * + * A graphics pipeline must be bound before making any draw calls. + * + * \param render_pass a render pass handle. + * \param graphics_pipeline the graphics pipeline to bind. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUGraphicsPipeline( + SDL_GPURenderPass *render_pass, + SDL_GPUGraphicsPipeline *graphics_pipeline); + +/** + * Sets the current viewport state on a command buffer. + * + * \param render_pass a render pass handle. + * \param viewport the viewport to set. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUViewport( + SDL_GPURenderPass *render_pass, + const SDL_GPUViewport *viewport); + +/** + * Sets the current scissor state on a command buffer. + * + * \param render_pass a render pass handle. + * \param scissor the scissor area to set. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUScissor( + SDL_GPURenderPass *render_pass, + const SDL_Rect *scissor); + +/** + * Sets the current blend constants on a command buffer. + * + * \param render_pass a render pass handle. + * \param blend_constants the blend constant color. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GPU_BLENDFACTOR_CONSTANT_COLOR + * \sa SDL_GPU_BLENDFACTOR_ONE_MINUS_CONSTANT_COLOR + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUBlendConstants( + SDL_GPURenderPass *render_pass, + SDL_FColor blend_constants); + +/** + * Sets the current stencil reference value on a command buffer. + * + * \param render_pass a render pass handle. + * \param reference the stencil reference value to set. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUStencilReference( + SDL_GPURenderPass *render_pass, + Uint8 reference); + +/** + * Binds vertex buffers on a command buffer for use with subsequent draw + * calls. + * + * \param render_pass a render pass handle. + * \param first_slot the vertex buffer slot to begin binding from. + * \param bindings an array of SDL_GPUBufferBinding structs containing vertex + * buffers and offset values. + * \param num_bindings the number of bindings in the bindings array. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexBuffers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + const SDL_GPUBufferBinding *bindings, + Uint32 num_bindings); + +/** + * Binds an index buffer on a command buffer for use with subsequent draw + * calls. + * + * \param render_pass a render pass handle. + * \param binding a pointer to a struct containing an index buffer and offset. + * \param index_element_size whether the index values in the buffer are 16- or + * 32-bit. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUIndexBuffer( + SDL_GPURenderPass *render_pass, + const SDL_GPUBufferBinding *binding, + SDL_GPUIndexElementSize index_element_size); + +/** + * Binds texture-sampler pairs for use on the vertex shader. + * + * The textures must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the vertex sampler slot to begin binding from. + * \param texture_sampler_bindings an array of texture-sampler binding + * structs. + * \param num_bindings the number of texture-sampler pairs to bind from the + * array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexSamplers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + const SDL_GPUTextureSamplerBinding *texture_sampler_bindings, + Uint32 num_bindings); + +/** + * Binds storage textures for use on the vertex shader. + * + * These textures must have been created with + * SDL_GPU_TEXTUREUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the vertex storage texture slot to begin binding from. + * \param storage_textures an array of storage textures. + * \param num_bindings the number of storage texture to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexStorageTextures( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUTexture *const *storage_textures, + Uint32 num_bindings); + +/** + * Binds storage buffers for use on the vertex shader. + * + * These buffers must have been created with + * SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the vertex storage buffer slot to begin binding from. + * \param storage_buffers an array of buffers. + * \param num_bindings the number of buffers to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexStorageBuffers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUBuffer *const *storage_buffers, + Uint32 num_bindings); + +/** + * Binds texture-sampler pairs for use on the fragment shader. + * + * The textures must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the fragment sampler slot to begin binding from. + * \param texture_sampler_bindings an array of texture-sampler binding + * structs. + * \param num_bindings the number of texture-sampler pairs to bind from the + * array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUFragmentSamplers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + const SDL_GPUTextureSamplerBinding *texture_sampler_bindings, + Uint32 num_bindings); + +/** + * Binds storage textures for use on the fragment shader. + * + * These textures must have been created with + * SDL_GPU_TEXTUREUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the fragment storage texture slot to begin binding from. + * \param storage_textures an array of storage textures. + * \param num_bindings the number of storage textures to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUFragmentStorageTextures( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUTexture *const *storage_textures, + Uint32 num_bindings); + +/** + * Binds storage buffers for use on the fragment shader. + * + * These buffers must have been created with + * SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the fragment storage buffer slot to begin binding from. + * \param storage_buffers an array of storage buffers. + * \param num_bindings the number of storage buffers to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUFragmentStorageBuffers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUBuffer *const *storage_buffers, + Uint32 num_bindings); + +/* Drawing */ + +/** + * Draws data using bound graphics state with an index buffer and instancing + * enabled. + * + * You must not call this function before binding a graphics pipeline. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \param render_pass a render pass handle. + * \param num_indices the number of indices to draw per instance. + * \param num_instances the number of instances to draw. + * \param first_index the starting index within the index buffer. + * \param vertex_offset value added to vertex index before indexing into the + * vertex buffer. + * \param first_instance the ID of the first instance to draw. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUIndexedPrimitives( + SDL_GPURenderPass *render_pass, + Uint32 num_indices, + Uint32 num_instances, + Uint32 first_index, + Sint32 vertex_offset, + Uint32 first_instance); + +/** + * Draws data using bound graphics state. + * + * You must not call this function before binding a graphics pipeline. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \param render_pass a render pass handle. + * \param num_vertices the number of vertices to draw. + * \param num_instances the number of instances that will be drawn. + * \param first_vertex the index of the first vertex to draw. + * \param first_instance the ID of the first instance to draw. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUPrimitives( + SDL_GPURenderPass *render_pass, + Uint32 num_vertices, + Uint32 num_instances, + Uint32 first_vertex, + Uint32 first_instance); + +/** + * Draws data using bound graphics state and with draw parameters set from a + * buffer. + * + * The buffer must consist of tightly-packed draw parameter sets that each + * match the layout of SDL_GPUIndirectDrawCommand. You must not call this + * function before binding a graphics pipeline. + * + * \param render_pass a render pass handle. + * \param buffer a buffer containing draw parameters. + * \param offset the offset to start reading from the draw buffer. + * \param draw_count the number of draw parameter sets that should be read + * from the draw buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUPrimitivesIndirect( + SDL_GPURenderPass *render_pass, + SDL_GPUBuffer *buffer, + Uint32 offset, + Uint32 draw_count); + +/** + * Draws data using bound graphics state with an index buffer enabled and with + * draw parameters set from a buffer. + * + * The buffer must consist of tightly-packed draw parameter sets that each + * match the layout of SDL_GPUIndexedIndirectDrawCommand. You must not call + * this function before binding a graphics pipeline. + * + * \param render_pass a render pass handle. + * \param buffer a buffer containing draw parameters. + * \param offset the offset to start reading from the draw buffer. + * \param draw_count the number of draw parameter sets that should be read + * from the draw buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUIndexedPrimitivesIndirect( + SDL_GPURenderPass *render_pass, + SDL_GPUBuffer *buffer, + Uint32 offset, + Uint32 draw_count); + +/** + * Ends the given render pass. + * + * All bound graphics state on the render pass command buffer is unset. The + * render pass handle is now invalid. + * + * \param render_pass a render pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EndGPURenderPass( + SDL_GPURenderPass *render_pass); + +/* Compute Pass */ + +/** + * Begins a compute pass on a command buffer. + * + * A compute pass is defined by a set of texture subresources and buffers that + * may be written to by compute pipelines. These textures and buffers must + * have been created with the COMPUTE_STORAGE_WRITE bit or the + * COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE bit. If you do not create a texture + * with COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE, you must not read from the + * texture in the compute pass. All operations related to compute pipelines + * must take place inside of a compute pass. You must not begin another + * compute pass, or a render pass or copy pass before ending the compute pass. + * + * A VERY IMPORTANT NOTE - Reads and writes in compute passes are NOT + * implicitly synchronized. This means you may cause data races by both + * reading and writing a resource region in a compute pass, or by writing + * multiple times to a resource region. If your compute work depends on + * reading the completed output from a previous dispatch, you MUST end the + * current compute pass and begin a new one before you can safely access the + * data. Otherwise you will receive unexpected results. Reading and writing a + * texture in the same compute pass is only supported by specific texture + * formats. Make sure you check the format support! + * + * \param command_buffer a command buffer. + * \param storage_texture_bindings an array of writeable storage texture + * binding structs. + * \param num_storage_texture_bindings the number of storage textures to bind + * from the array. + * \param storage_buffer_bindings an array of writeable storage buffer binding + * structs. + * \param num_storage_buffer_bindings the number of storage buffers to bind + * from the array. + * \returns a compute pass handle. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EndGPUComputePass + */ +extern SDL_DECLSPEC SDL_GPUComputePass * SDLCALL SDL_BeginGPUComputePass( + SDL_GPUCommandBuffer *command_buffer, + const SDL_GPUStorageTextureReadWriteBinding *storage_texture_bindings, + Uint32 num_storage_texture_bindings, + const SDL_GPUStorageBufferReadWriteBinding *storage_buffer_bindings, + Uint32 num_storage_buffer_bindings); + +/** + * Binds a compute pipeline on a command buffer for use in compute dispatch. + * + * \param compute_pass a compute pass handle. + * \param compute_pipeline a compute pipeline to bind. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputePipeline( + SDL_GPUComputePass *compute_pass, + SDL_GPUComputePipeline *compute_pipeline); + +/** + * Binds texture-sampler pairs for use on the compute shader. + * + * The textures must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param compute_pass a compute pass handle. + * \param first_slot the compute sampler slot to begin binding from. + * \param texture_sampler_bindings an array of texture-sampler binding + * structs. + * \param num_bindings the number of texture-sampler bindings to bind from the + * array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputeSamplers( + SDL_GPUComputePass *compute_pass, + Uint32 first_slot, + const SDL_GPUTextureSamplerBinding *texture_sampler_bindings, + Uint32 num_bindings); + +/** + * Binds storage textures as readonly for use on the compute pipeline. + * + * These textures must have been created with + * SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param compute_pass a compute pass handle. + * \param first_slot the compute storage texture slot to begin binding from. + * \param storage_textures an array of storage textures. + * \param num_bindings the number of storage textures to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputeStorageTextures( + SDL_GPUComputePass *compute_pass, + Uint32 first_slot, + SDL_GPUTexture *const *storage_textures, + Uint32 num_bindings); + +/** + * Binds storage buffers as readonly for use on the compute pipeline. + * + * These buffers must have been created with + * SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param compute_pass a compute pass handle. + * \param first_slot the compute storage buffer slot to begin binding from. + * \param storage_buffers an array of storage buffer binding structs. + * \param num_bindings the number of storage buffers to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputeStorageBuffers( + SDL_GPUComputePass *compute_pass, + Uint32 first_slot, + SDL_GPUBuffer *const *storage_buffers, + Uint32 num_bindings); + +/** + * Dispatches compute work. + * + * You must not call this function before binding a compute pipeline. + * + * A VERY IMPORTANT NOTE If you dispatch multiple times in a compute pass, and + * the dispatches write to the same resource region as each other, there is no + * guarantee of which order the writes will occur. If the write order matters, + * you MUST end the compute pass and begin another one. + * + * \param compute_pass a compute pass handle. + * \param groupcount_x number of local workgroups to dispatch in the X + * dimension. + * \param groupcount_y number of local workgroups to dispatch in the Y + * dimension. + * \param groupcount_z number of local workgroups to dispatch in the Z + * dimension. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DispatchGPUCompute( + SDL_GPUComputePass *compute_pass, + Uint32 groupcount_x, + Uint32 groupcount_y, + Uint32 groupcount_z); + +/** + * Dispatches compute work with parameters set from a buffer. + * + * The buffer layout should match the layout of + * SDL_GPUIndirectDispatchCommand. You must not call this function before + * binding a compute pipeline. + * + * A VERY IMPORTANT NOTE If you dispatch multiple times in a compute pass, and + * the dispatches write to the same resource region as each other, there is no + * guarantee of which order the writes will occur. If the write order matters, + * you MUST end the compute pass and begin another one. + * + * \param compute_pass a compute pass handle. + * \param buffer a buffer containing dispatch parameters. + * \param offset the offset to start reading from the dispatch buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DispatchGPUComputeIndirect( + SDL_GPUComputePass *compute_pass, + SDL_GPUBuffer *buffer, + Uint32 offset); + +/** + * Ends the current compute pass. + * + * All bound compute state on the command buffer is unset. The compute pass + * handle is now invalid. + * + * \param compute_pass a compute pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EndGPUComputePass( + SDL_GPUComputePass *compute_pass); + +/* TransferBuffer Data */ + +/** + * Maps a transfer buffer into application address space. + * + * You must unmap the transfer buffer before encoding upload commands. The + * memory is owned by the graphics driver - do NOT call SDL_free() on the + * returned pointer. + * + * \param device a GPU context. + * \param transfer_buffer a transfer buffer. + * \param cycle if true, cycles the transfer buffer if it is already bound. + * \returns the address of the mapped transfer buffer memory, or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_MapGPUTransferBuffer( + SDL_GPUDevice *device, + SDL_GPUTransferBuffer *transfer_buffer, + bool cycle); + +/** + * Unmaps a previously mapped transfer buffer. + * + * \param device a GPU context. + * \param transfer_buffer a previously mapped transfer buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnmapGPUTransferBuffer( + SDL_GPUDevice *device, + SDL_GPUTransferBuffer *transfer_buffer); + +/* Copy Pass */ + +/** + * Begins a copy pass on a command buffer. + * + * All operations related to copying to or from buffers or textures take place + * inside a copy pass. You must not begin another copy pass, or a render pass + * or compute pass before ending the copy pass. + * + * \param command_buffer a command buffer. + * \returns a copy pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GPUCopyPass * SDLCALL SDL_BeginGPUCopyPass( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Uploads data from a transfer buffer to a texture. + * + * The upload occurs on the GPU timeline. You may assume that the upload has + * finished in subsequent commands. + * + * You must align the data in the transfer buffer to a multiple of the texel + * size of the texture format. + * + * \param copy_pass a copy pass handle. + * \param source the source transfer buffer with image layout information. + * \param destination the destination texture region. + * \param cycle if true, cycles the texture if the texture is bound, otherwise + * overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UploadToGPUTexture( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTextureTransferInfo *source, + const SDL_GPUTextureRegion *destination, + bool cycle); + +/** + * Uploads data from a transfer buffer to a buffer. + * + * The upload occurs on the GPU timeline. You may assume that the upload has + * finished in subsequent commands. + * + * \param copy_pass a copy pass handle. + * \param source the source transfer buffer with offset. + * \param destination the destination buffer with offset and size. + * \param cycle if true, cycles the buffer if it is already bound, otherwise + * overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UploadToGPUBuffer( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTransferBufferLocation *source, + const SDL_GPUBufferRegion *destination, + bool cycle); + +/** + * Performs a texture-to-texture copy. + * + * This copy occurs on the GPU timeline. You may assume the copy has finished + * in subsequent commands. + * + * \param copy_pass a copy pass handle. + * \param source a source texture region. + * \param destination a destination texture region. + * \param w the width of the region to copy. + * \param h the height of the region to copy. + * \param d the depth of the region to copy. + * \param cycle if true, cycles the destination texture if the destination + * texture is bound, otherwise overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CopyGPUTextureToTexture( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTextureLocation *source, + const SDL_GPUTextureLocation *destination, + Uint32 w, + Uint32 h, + Uint32 d, + bool cycle); + +/** + * Performs a buffer-to-buffer copy. + * + * This copy occurs on the GPU timeline. You may assume the copy has finished + * in subsequent commands. + * + * \param copy_pass a copy pass handle. + * \param source the buffer and offset to copy from. + * \param destination the buffer and offset to copy to. + * \param size the length of the buffer to copy. + * \param cycle if true, cycles the destination buffer if it is already bound, + * otherwise overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CopyGPUBufferToBuffer( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUBufferLocation *source, + const SDL_GPUBufferLocation *destination, + Uint32 size, + bool cycle); + +/** + * Copies data from a texture to a transfer buffer on the GPU timeline. + * + * This data is not guaranteed to be copied until the command buffer fence is + * signaled. + * + * \param copy_pass a copy pass handle. + * \param source the source texture region. + * \param destination the destination transfer buffer with image layout + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DownloadFromGPUTexture( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTextureRegion *source, + const SDL_GPUTextureTransferInfo *destination); + +/** + * Copies data from a buffer to a transfer buffer on the GPU timeline. + * + * This data is not guaranteed to be copied until the command buffer fence is + * signaled. + * + * \param copy_pass a copy pass handle. + * \param source the source buffer with offset and size. + * \param destination the destination transfer buffer with offset. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DownloadFromGPUBuffer( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUBufferRegion *source, + const SDL_GPUTransferBufferLocation *destination); + +/** + * Ends the current copy pass. + * + * \param copy_pass a copy pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EndGPUCopyPass( + SDL_GPUCopyPass *copy_pass); + +/** + * Generates mipmaps for the given texture. + * + * This function must not be called inside of any pass. + * + * \param command_buffer a command_buffer. + * \param texture a texture with more than 1 mip level. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_GenerateMipmapsForGPUTexture( + SDL_GPUCommandBuffer *command_buffer, + SDL_GPUTexture *texture); + +/** + * Blits from a source texture region to a destination texture region. + * + * This function must not be called inside of any pass. + * + * \param command_buffer a command buffer. + * \param info the blit info struct containing the blit parameters. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BlitGPUTexture( + SDL_GPUCommandBuffer *command_buffer, + const SDL_GPUBlitInfo *info); + +/* Submission/Presentation */ + +/** + * Determines whether a swapchain composition is supported by the window. + * + * The window must be claimed before calling this function. + * + * \param device a GPU context. + * \param window an SDL_Window. + * \param swapchain_composition the swapchain composition to check. + * \returns true if supported, false if unsupported. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WindowSupportsGPUSwapchainComposition( + SDL_GPUDevice *device, + SDL_Window *window, + SDL_GPUSwapchainComposition swapchain_composition); + +/** + * Determines whether a presentation mode is supported by the window. + * + * The window must be claimed before calling this function. + * + * \param device a GPU context. + * \param window an SDL_Window. + * \param present_mode the presentation mode to check. + * \returns true if supported, false if unsupported. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WindowSupportsGPUPresentMode( + SDL_GPUDevice *device, + SDL_Window *window, + SDL_GPUPresentMode present_mode); + +/** + * Claims a window, creating a swapchain structure for it. + * + * This must be called before SDL_AcquireGPUSwapchainTexture is called using + * the window. You should only call this function from the thread that created + * the window. + * + * The swapchain will be created with SDL_GPU_SWAPCHAINCOMPOSITION_SDR and + * SDL_GPU_PRESENTMODE_VSYNC. If you want to have different swapchain + * parameters, you must call SDL_SetGPUSwapchainParameters after claiming the + * window. + * + * \param device a GPU context. + * \param window an SDL_Window. + * \returns true on success, or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_ReleaseWindowFromGPUDevice + * \sa SDL_WindowSupportsGPUPresentMode + * \sa SDL_WindowSupportsGPUSwapchainComposition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClaimWindowForGPUDevice( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Unclaims a window, destroying its swapchain structure. + * + * \param device a GPU context. + * \param window an SDL_Window that has been claimed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseWindowFromGPUDevice( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Changes the swapchain parameters for the given claimed window. + * + * This function will fail if the requested present mode or swapchain + * composition are unsupported by the device. Check if the parameters are + * supported via SDL_WindowSupportsGPUPresentMode / + * SDL_WindowSupportsGPUSwapchainComposition prior to calling this function. + * + * SDL_GPU_PRESENTMODE_VSYNC with SDL_GPU_SWAPCHAINCOMPOSITION_SDR are always + * supported. + * + * \param device a GPU context. + * \param window an SDL_Window that has been claimed. + * \param swapchain_composition the desired composition of the swapchain. + * \param present_mode the desired present mode for the swapchain. + * \returns true if successful, false on error; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WindowSupportsGPUPresentMode + * \sa SDL_WindowSupportsGPUSwapchainComposition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGPUSwapchainParameters( + SDL_GPUDevice *device, + SDL_Window *window, + SDL_GPUSwapchainComposition swapchain_composition, + SDL_GPUPresentMode present_mode); + +/** + * Configures the maximum allowed number of frames in flight. + * + * The default value when the device is created is 2. This means that after + * you have submitted 2 frames for presentation, if the GPU has not finished + * working on the first frame, SDL_AcquireGPUSwapchainTexture() will fill the + * swapchain texture pointer with NULL, and + * SDL_WaitAndAcquireGPUSwapchainTexture() will block. + * + * Higher values increase throughput at the expense of visual latency. Lower + * values decrease visual latency at the expense of throughput. + * + * Note that calling this function will stall and flush the command queue to + * prevent synchronization issues. + * + * The minimum value of allowed frames in flight is 1, and the maximum is 3. + * + * \param device a GPU context. + * \param allowed_frames_in_flight the maximum number of frames that can be + * pending on the GPU. + * \returns true if successful, false on error; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGPUAllowedFramesInFlight( + SDL_GPUDevice *device, + Uint32 allowed_frames_in_flight); + +/** + * Obtains the texture format of the swapchain for the given window. + * + * Note that this format can change if the swapchain parameters change. + * + * \param device a GPU context. + * \param window an SDL_Window that has been claimed. + * \returns the texture format of the swapchain. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GPUTextureFormat SDLCALL SDL_GetGPUSwapchainTextureFormat( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Acquire a texture to use in presentation. + * + * When a swapchain texture is acquired on a command buffer, it will + * automatically be submitted for presentation when the command buffer is + * submitted. The swapchain texture should only be referenced by the command + * buffer used to acquire it. + * + * This function will fill the swapchain texture handle with NULL if too many + * frames are in flight. This is not an error. + * + * If you use this function, it is possible to create a situation where many + * command buffers are allocated while the rendering context waits for the GPU + * to catch up, which will cause memory usage to grow. You should use + * SDL_WaitAndAcquireGPUSwapchainTexture() unless you know what you are doing + * with timing. + * + * The swapchain texture is managed by the implementation and must not be + * freed by the user. You MUST NOT call this function from any thread other + * than the one that created the window. + * + * \param command_buffer a command buffer. + * \param window a window that has been claimed. + * \param swapchain_texture a pointer filled in with a swapchain texture + * handle. + * \param swapchain_texture_width a pointer filled in with the swapchain + * texture width, may be NULL. + * \param swapchain_texture_height a pointer filled in with the swapchain + * texture height, may be NULL. + * \returns true on success, false on error; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_CancelGPUCommandBuffer + * \sa SDL_GetWindowSizeInPixels + * \sa SDL_WaitForGPUSwapchain + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_SetGPUAllowedFramesInFlight + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AcquireGPUSwapchainTexture( + SDL_GPUCommandBuffer *command_buffer, + SDL_Window *window, + SDL_GPUTexture **swapchain_texture, + Uint32 *swapchain_texture_width, + Uint32 *swapchain_texture_height); + +/** + * Blocks the thread until a swapchain texture is available to be acquired. + * + * \param device a GPU context. + * \param window a window that has been claimed. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUSwapchainTexture + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_SetGPUAllowedFramesInFlight + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitForGPUSwapchain( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Blocks the thread until a swapchain texture is available to be acquired, + * and then acquires it. + * + * When a swapchain texture is acquired on a command buffer, it will + * automatically be submitted for presentation when the command buffer is + * submitted. The swapchain texture should only be referenced by the command + * buffer used to acquire it. It is an error to call + * SDL_CancelGPUCommandBuffer() after a swapchain texture is acquired. + * + * This function can fill the swapchain texture handle with NULL in certain + * cases, for example if the window is minimized. This is not an error. You + * should always make sure to check whether the pointer is NULL before + * actually using it. + * + * The swapchain texture is managed by the implementation and must not be + * freed by the user. You MUST NOT call this function from any thread other + * than the one that created the window. + * + * The swapchain texture is write-only and cannot be used as a sampler or for + * another reading operation. + * + * \param command_buffer a command buffer. + * \param window a window that has been claimed. + * \param swapchain_texture a pointer filled in with a swapchain texture + * handle. + * \param swapchain_texture_width a pointer filled in with the swapchain + * texture width, may be NULL. + * \param swapchain_texture_height a pointer filled in with the swapchain + * texture height, may be NULL. + * \returns true on success, false on error; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_AcquireGPUSwapchainTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitAndAcquireGPUSwapchainTexture( + SDL_GPUCommandBuffer *command_buffer, + SDL_Window *window, + SDL_GPUTexture **swapchain_texture, + Uint32 *swapchain_texture_width, + Uint32 *swapchain_texture_height); + +/** + * Submits a command buffer so its commands can be processed on the GPU. + * + * It is invalid to use the command buffer after this is called. + * + * This must be called from the thread the command buffer was acquired on. + * + * All commands in the submission are guaranteed to begin executing before any + * command in a subsequent submission begins executing. + * + * \param command_buffer a command buffer. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_AcquireGPUSwapchainTexture + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SubmitGPUCommandBuffer( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Submits a command buffer so its commands can be processed on the GPU, and + * acquires a fence associated with the command buffer. + * + * You must release this fence when it is no longer needed or it will cause a + * leak. It is invalid to use the command buffer after this is called. + * + * This must be called from the thread the command buffer was acquired on. + * + * All commands in the submission are guaranteed to begin executing before any + * command in a subsequent submission begins executing. + * + * \param command_buffer a command buffer. + * \returns a fence associated with the command buffer, or NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_AcquireGPUSwapchainTexture + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_ReleaseGPUFence + */ +extern SDL_DECLSPEC SDL_GPUFence * SDLCALL SDL_SubmitGPUCommandBufferAndAcquireFence( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Cancels a command buffer. + * + * None of the enqueued commands are executed. + * + * It is an error to call this function after a swapchain texture has been + * acquired. + * + * This must be called from the thread the command buffer was acquired on. + * + * You must not reference the command buffer after calling this function. + * + * \param command_buffer a command buffer. + * \returns true on success, false on error; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_AcquireGPUSwapchainTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CancelGPUCommandBuffer( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Blocks the thread until the GPU is completely idle. + * + * \param device a GPU context. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitForGPUFences + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitForGPUIdle( + SDL_GPUDevice *device); + +/** + * Blocks the thread until the given fences are signaled. + * + * \param device a GPU context. + * \param wait_all if 0, wait for any fence to be signaled, if 1, wait for all + * fences to be signaled. + * \param fences an array of fences to wait on. + * \param num_fences the number of fences in the fences array. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_WaitForGPUIdle + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitForGPUFences( + SDL_GPUDevice *device, + bool wait_all, + SDL_GPUFence *const *fences, + Uint32 num_fences); + +/** + * Checks the status of a fence. + * + * \param device a GPU context. + * \param fence a fence. + * \returns true if the fence is signaled, false if it is not. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC bool SDLCALL SDL_QueryGPUFence( + SDL_GPUDevice *device, + SDL_GPUFence *fence); + +/** + * Releases a fence obtained from SDL_SubmitGPUCommandBufferAndAcquireFence. + * + * You must not reference the fence after calling this function. + * + * \param device a GPU context. + * \param fence a fence. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUFence( + SDL_GPUDevice *device, + SDL_GPUFence *fence); + +/* Format Info */ + +/** + * Obtains the texel block size for a texture format. + * + * \param format the texture format you want to know the texel size of. + * \returns the texel block size of the texture format. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GPUTextureFormatTexelBlockSize( + SDL_GPUTextureFormat format); + +/** + * Determines whether a texture format is supported for a given type and + * usage. + * + * \param device a GPU context. + * \param format the texture format to check. + * \param type the type of texture (2D, 3D, Cube). + * \param usage a bitmask of all usage scenarios to check. + * \returns whether the texture format is supported for this type and usage. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUTextureSupportsFormat( + SDL_GPUDevice *device, + SDL_GPUTextureFormat format, + SDL_GPUTextureType type, + SDL_GPUTextureUsageFlags usage); + +/** + * Determines if a sample count for a texture format is supported. + * + * \param device a GPU context. + * \param format the texture format to check. + * \param sample_count the sample count to check. + * \returns whether the sample count is supported for this texture format. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUTextureSupportsSampleCount( + SDL_GPUDevice *device, + SDL_GPUTextureFormat format, + SDL_GPUSampleCount sample_count); + +/** + * Calculate the size in bytes of a texture format with dimensions. + * + * \param format a texture format. + * \param width width in pixels. + * \param height height in pixels. + * \param depth_or_layer_count depth for 3D textures or layer count otherwise. + * \returns the size of a texture with this format and dimensions. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_CalculateGPUTextureFormatSize( + SDL_GPUTextureFormat format, + Uint32 width, + Uint32 height, + Uint32 depth_or_layer_count); + +#ifdef SDL_PLATFORM_GDK + +/** + * Call this to suspend GPU operation on Xbox when you receive the + * SDL_EVENT_DID_ENTER_BACKGROUND event. + * + * Do NOT call any SDL_GPU functions after calling this function! This must + * also be called before calling SDL_GDKSuspendComplete. + * + * \param device a GPU context. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + */ +extern SDL_DECLSPEC void SDLCALL SDL_GDKSuspendGPU(SDL_GPUDevice *device); + +/** + * Call this to resume GPU operation on Xbox when you receive the + * SDL_EVENT_WILL_ENTER_FOREGROUND event. + * + * When resuming, this function MUST be called before calling any other + * SDL_GPU functions. + * + * \param device a GPU context. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + */ +extern SDL_DECLSPEC void SDLCALL SDL_GDKResumeGPU(SDL_GPUDevice *device); + +#endif /* SDL_PLATFORM_GDK */ + +#ifdef __cplusplus +} +#endif /* __cplusplus */ +#include + +#endif /* SDL_gpu_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_guid.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_guid.h new file mode 100644 index 0000000..312c42c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_guid.h @@ -0,0 +1,106 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: GUID */ + +/** + * # CategoryGUID + * + * A GUID is a 128-bit value that represents something that is uniquely + * identifiable by this value: "globally unique." + * + * SDL provides functions to convert a GUID to/from a string. + */ + +#ifndef SDL_guid_h_ +#define SDL_guid_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An SDL_GUID is a 128-bit identifier for an input device that identifies + * that device across runs of SDL programs on the same platform. + * + * If the device is detached and then re-attached to a different port, or if + * the base system is rebooted, the device should still report the same GUID. + * + * GUIDs are as precise as possible but are not guaranteed to distinguish + * physically distinct but equivalent devices. For example, two game + * controllers from the same vendor with the same product ID and revision may + * have the same GUID. + * + * GUIDs may be platform-dependent (i.e., the same device may report different + * GUIDs on different operating systems). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GUID { + Uint8 data[16]; +} SDL_GUID; + +/* Function prototypes */ + +/** + * Get an ASCII string representation for a given SDL_GUID. + * + * \param guid the SDL_GUID you wish to convert to string. + * \param pszGUID buffer in which to write the ASCII string. + * \param cbGUID the size of pszGUID, should be at least 33 bytes. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StringToGUID + */ +extern SDL_DECLSPEC void SDLCALL SDL_GUIDToString(SDL_GUID guid, char *pszGUID, int cbGUID); + +/** + * Convert a GUID string into a SDL_GUID structure. + * + * Performs no error checking. If this function is given a string containing + * an invalid GUID, the function will silently succeed, but the GUID generated + * will not be useful. + * + * \param pchGUID string containing an ASCII representation of a GUID. + * \returns a SDL_GUID structure. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GUIDToString + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_StringToGUID(const char *pchGUID); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_guid_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_haptic.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_haptic.h new file mode 100644 index 0000000..a45335b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_haptic.h @@ -0,0 +1,1441 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryHaptic + * + * The SDL haptic subsystem manages haptic (force feedback) devices. + * + * The basic usage is as follows: + * + * - Initialize the subsystem (SDL_INIT_HAPTIC). + * - Open a haptic device. + * - SDL_OpenHaptic() to open from index. + * - SDL_OpenHapticFromJoystick() to open from an existing joystick. + * - Create an effect (SDL_HapticEffect). + * - Upload the effect with SDL_CreateHapticEffect(). + * - Run the effect with SDL_RunHapticEffect(). + * - (optional) Free the effect with SDL_DestroyHapticEffect(). + * - Close the haptic device with SDL_CloseHaptic(). + * + * Simple rumble example: + * + * ```c + * SDL_Haptic *haptic = NULL; + * + * // Open the device + * SDL_HapticID *haptics = SDL_GetHaptics(NULL); + * if (haptics) { + * haptic = SDL_OpenHaptic(haptics[0]); + * SDL_free(haptics); + * } + * if (haptic == NULL) + * return; + * + * // Initialize simple rumble + * if (!SDL_InitHapticRumble(haptic)) + * return; + * + * // Play effect at 50% strength for 2 seconds + * if (!SDL_PlayHapticRumble(haptic, 0.5, 2000)) + * return; + * SDL_Delay(2000); + * + * // Clean up + * SDL_CloseHaptic(haptic); + * ``` + * + * Complete example: + * + * ```c + * bool test_haptic(SDL_Joystick *joystick) + * { + * SDL_Haptic *haptic; + * SDL_HapticEffect effect; + * int effect_id; + * + * // Open the device + * haptic = SDL_OpenHapticFromJoystick(joystick); + * if (haptic == NULL) return false; // Most likely joystick isn't haptic + * + * // See if it can do sine waves + * if ((SDL_GetHapticFeatures(haptic) & SDL_HAPTIC_SINE)==0) { + * SDL_CloseHaptic(haptic); // No sine effect + * return false; + * } + * + * // Create the effect + * SDL_memset(&effect, 0, sizeof(SDL_HapticEffect)); // 0 is safe default + * effect.type = SDL_HAPTIC_SINE; + * effect.periodic.direction.type = SDL_HAPTIC_POLAR; // Polar coordinates + * effect.periodic.direction.dir[0] = 18000; // Force comes from south + * effect.periodic.period = 1000; // 1000 ms + * effect.periodic.magnitude = 20000; // 20000/32767 strength + * effect.periodic.length = 5000; // 5 seconds long + * effect.periodic.attack_length = 1000; // Takes 1 second to get max strength + * effect.periodic.fade_length = 1000; // Takes 1 second to fade away + * + * // Upload the effect + * effect_id = SDL_CreateHapticEffect(haptic, &effect); + * + * // Test the effect + * SDL_RunHapticEffect(haptic, effect_id, 1); + * SDL_Delay(5000); // Wait for the effect to finish + * + * // We destroy the effect, although closing the device also does this + * SDL_DestroyHapticEffect(haptic, effect_id); + * + * // Close the device + * SDL_CloseHaptic(haptic); + * + * return true; // Success + * } + * ``` + * + * Note that the SDL haptic subsystem is not thread-safe. + */ + + +#ifndef SDL_haptic_h_ +#define SDL_haptic_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/* FIXME: + * + * At the moment the magnitude variables are mixed between signed/unsigned, and + * it is also not made clear that ALL of those variables expect a max of 0x7FFF. + * + * Some platforms may have higher precision than that (Linux FF, Windows XInput) + * so we should fix the inconsistency in favor of higher possible precision, + * adjusting for platforms that use different scales. + * -flibit + */ + +/** + * The haptic structure used to identify an SDL haptic. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_OpenHaptic + * \sa SDL_OpenHapticFromJoystick + * \sa SDL_CloseHaptic + */ +typedef struct SDL_Haptic SDL_Haptic; + + +/** + * \name Haptic features + * + * Different haptic features a device can have. + */ +/* @{ */ + +/** + * \name Haptic effects + */ +/* @{ */ + +/** + * Constant effect supported. + * + * Constant haptic effect. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_CONSTANT (1u<<0) + +/** + * Sine wave effect supported. + * + * Periodic haptic effect that simulates sine waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SINE (1u<<1) + +/** + * Square wave effect supported. + * + * Periodic haptic effect that simulates square waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SQUARE (1u<<2) + +/** + * Triangle wave effect supported. + * + * Periodic haptic effect that simulates triangular waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_TRIANGLE (1u<<3) + +/** + * Sawtoothup wave effect supported. + * + * Periodic haptic effect that simulates saw tooth up waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SAWTOOTHUP (1u<<4) + +/** + * Sawtoothdown wave effect supported. + * + * Periodic haptic effect that simulates saw tooth down waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SAWTOOTHDOWN (1u<<5) + +/** + * Ramp effect supported. + * + * Ramp haptic effect. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticRamp + */ +#define SDL_HAPTIC_RAMP (1u<<6) + +/** + * Spring effect supported - uses axes position. + * + * Condition haptic effect that simulates a spring. Effect is based on the + * axes position. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_SPRING (1u<<7) + +/** + * Damper effect supported - uses axes velocity. + * + * Condition haptic effect that simulates dampening. Effect is based on the + * axes velocity. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_DAMPER (1u<<8) + +/** + * Inertia effect supported - uses axes acceleration. + * + * Condition haptic effect that simulates inertia. Effect is based on the axes + * acceleration. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_INERTIA (1u<<9) + +/** + * Friction effect supported - uses axes movement. + * + * Condition haptic effect that simulates friction. Effect is based on the + * axes movement. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_FRICTION (1u<<10) + +/** + * Left/Right effect supported. + * + * Haptic effect for direct control over high/low frequency motors. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticLeftRight + */ +#define SDL_HAPTIC_LEFTRIGHT (1u<<11) + +/** + * Reserved for future use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_RESERVED1 (1u<<12) + +/** + * Reserved for future use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_RESERVED2 (1u<<13) + +/** + * Reserved for future use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_RESERVED3 (1u<<14) + +/** + * Custom effect is supported. + * + * User defined custom haptic effect. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_CUSTOM (1u<<15) + +/* @} *//* Haptic effects */ + +/* These last few are features the device has, not effects */ + +/** + * Device can set global gain. + * + * Device supports setting the global gain. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SetHapticGain + */ +#define SDL_HAPTIC_GAIN (1u<<16) + +/** + * Device can set autocenter. + * + * Device supports setting autocenter. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SetHapticAutocenter + */ +#define SDL_HAPTIC_AUTOCENTER (1u<<17) + +/** + * Device can be queried for effect status. + * + * Device supports querying effect status. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_GetHapticEffectStatus + */ +#define SDL_HAPTIC_STATUS (1u<<18) + +/** + * Device can be paused. + * + * Devices supports being paused. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PauseHaptic + * \sa SDL_ResumeHaptic + */ +#define SDL_HAPTIC_PAUSE (1u<<19) + + +/** + * \name Direction encodings + */ +/* @{ */ + +/** + * Uses polar coordinates for the direction. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_POLAR 0 + +/** + * Uses cartesian coordinates for the direction. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_CARTESIAN 1 + +/** + * Uses spherical coordinates for the direction. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_SPHERICAL 2 + +/** + * Use this value to play an effect on the steering wheel axis. + * + * This provides better compatibility across platforms and devices as SDL will + * guess the correct axis. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_STEERING_AXIS 3 + +/* @} *//* Direction encodings */ + +/* @} *//* Haptic features */ + +/* + * Misc defines. + */ + +/** + * Used to play a device an infinite number of times. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_RunHapticEffect + */ +#define SDL_HAPTIC_INFINITY 4294967295U + + +/** + * Structure that represents a haptic direction. + * + * This is the direction where the force comes from, instead of the direction + * in which the force is exerted. + * + * Directions can be specified by: + * + * - SDL_HAPTIC_POLAR : Specified by polar coordinates. + * - SDL_HAPTIC_CARTESIAN : Specified by cartesian coordinates. + * - SDL_HAPTIC_SPHERICAL : Specified by spherical coordinates. + * + * Cardinal directions of the haptic device are relative to the positioning of + * the device. North is considered to be away from the user. + * + * The following diagram represents the cardinal directions: + * + * ``` + * .--. + * |__| .-------. + * |=.| |.-----.| + * |--| || || + * | | |'-----'| + * |__|~')_____(' + * [ COMPUTER ] + * + * + * North (0,-1) + * ^ + * | + * | + * (-1,0) West <----[ HAPTIC ]----> East (1,0) + * | + * | + * v + * South (0,1) + * + * + * [ USER ] + * \|||/ + * (o o) + * ---ooO-(_)-Ooo--- + * ``` + * + * If type is SDL_HAPTIC_POLAR, direction is encoded by hundredths of a degree + * starting north and turning clockwise. SDL_HAPTIC_POLAR only uses the first + * `dir` parameter. The cardinal directions would be: + * + * - North: 0 (0 degrees) + * - East: 9000 (90 degrees) + * - South: 18000 (180 degrees) + * - West: 27000 (270 degrees) + * + * If type is SDL_HAPTIC_CARTESIAN, direction is encoded by three positions (X + * axis, Y axis and Z axis (with 3 axes)). SDL_HAPTIC_CARTESIAN uses the first + * three `dir` parameters. The cardinal directions would be: + * + * - North: 0,-1, 0 + * - East: 1, 0, 0 + * - South: 0, 1, 0 + * - West: -1, 0, 0 + * + * The Z axis represents the height of the effect if supported, otherwise it's + * unused. In cartesian encoding (1, 2) would be the same as (2, 4), you can + * use any multiple you want, only the direction matters. + * + * If type is SDL_HAPTIC_SPHERICAL, direction is encoded by two rotations. The + * first two `dir` parameters are used. The `dir` parameters are as follows + * (all values are in hundredths of degrees): + * + * - Degrees from (1, 0) rotated towards (0, 1). + * - Degrees towards (0, 0, 1) (device needs at least 3 axes). + * + * Example of force coming from the south with all encodings (force coming + * from the south means the user will have to pull the stick to counteract): + * + * ```c + * SDL_HapticDirection direction; + * + * // Cartesian directions + * direction.type = SDL_HAPTIC_CARTESIAN; // Using cartesian direction encoding. + * direction.dir[0] = 0; // X position + * direction.dir[1] = 1; // Y position + * // Assuming the device has 2 axes, we don't need to specify third parameter. + * + * // Polar directions + * direction.type = SDL_HAPTIC_POLAR; // We'll be using polar direction encoding. + * direction.dir[0] = 18000; // Polar only uses first parameter + * + * // Spherical coordinates + * direction.type = SDL_HAPTIC_SPHERICAL; // Spherical encoding + * direction.dir[0] = 9000; // Since we only have two axes we don't need more parameters. + * ``` + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_POLAR + * \sa SDL_HAPTIC_CARTESIAN + * \sa SDL_HAPTIC_SPHERICAL + * \sa SDL_HAPTIC_STEERING_AXIS + * \sa SDL_HapticEffect + * \sa SDL_GetNumHapticAxes + */ +typedef struct SDL_HapticDirection +{ + Uint8 type; /**< The type of encoding. */ + Sint32 dir[3]; /**< The encoded direction. */ +} SDL_HapticDirection; + + +/** + * A structure containing a template for a Constant effect. + * + * This struct is exclusively for the SDL_HAPTIC_CONSTANT effect. + * + * A constant effect applies a constant force in the specified direction to + * the joystick. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_CONSTANT + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticConstant +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_CONSTANT */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Constant */ + Sint16 level; /**< Strength of the constant effect. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticConstant; + +/** + * A structure containing a template for a Periodic effect. + * + * The struct handles the following effects: + * + * - SDL_HAPTIC_SINE + * - SDL_HAPTIC_SQUARE + * - SDL_HAPTIC_TRIANGLE + * - SDL_HAPTIC_SAWTOOTHUP + * - SDL_HAPTIC_SAWTOOTHDOWN + * + * A periodic effect consists in a wave-shaped effect that repeats itself over + * time. The type determines the shape of the wave and the parameters + * determine the dimensions of the wave. + * + * Phase is given by hundredth of a degree meaning that giving the phase a + * value of 9000 will displace it 25% of its period. Here are sample values: + * + * - 0: No phase displacement. + * - 9000: Displaced 25% of its period. + * - 18000: Displaced 50% of its period. + * - 27000: Displaced 75% of its period. + * - 36000: Displaced 100% of its period, same as 0, but 0 is preferred. + * + * Examples: + * + * ``` + * SDL_HAPTIC_SINE + * __ __ __ __ + * / \ / \ / \ / + * / \__/ \__/ \__/ + * + * SDL_HAPTIC_SQUARE + * __ __ __ __ __ + * | | | | | | | | | | + * | |__| |__| |__| |__| | + * + * SDL_HAPTIC_TRIANGLE + * /\ /\ /\ /\ /\ + * / \ / \ / \ / \ / + * / \/ \/ \/ \/ + * + * SDL_HAPTIC_SAWTOOTHUP + * /| /| /| /| /| /| /| + * / | / | / | / | / | / | / | + * / |/ |/ |/ |/ |/ |/ | + * + * SDL_HAPTIC_SAWTOOTHDOWN + * \ |\ |\ |\ |\ |\ |\ | + * \ | \ | \ | \ | \ | \ | \ | + * \| \| \| \| \| \| \| + * ``` + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_SINE + * \sa SDL_HAPTIC_SQUARE + * \sa SDL_HAPTIC_TRIANGLE + * \sa SDL_HAPTIC_SAWTOOTHUP + * \sa SDL_HAPTIC_SAWTOOTHDOWN + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticPeriodic +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_SINE, SDL_HAPTIC_SQUARE + SDL_HAPTIC_TRIANGLE, SDL_HAPTIC_SAWTOOTHUP or + SDL_HAPTIC_SAWTOOTHDOWN */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Periodic */ + Uint16 period; /**< Period of the wave. */ + Sint16 magnitude; /**< Peak value; if negative, equivalent to 180 degrees extra phase shift. */ + Sint16 offset; /**< Mean value of the wave. */ + Uint16 phase; /**< Positive phase shift given by hundredth of a degree. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticPeriodic; + +/** + * A structure containing a template for a Condition effect. + * + * The struct handles the following effects: + * + * - SDL_HAPTIC_SPRING: Effect based on axes position. + * - SDL_HAPTIC_DAMPER: Effect based on axes velocity. + * - SDL_HAPTIC_INERTIA: Effect based on axes acceleration. + * - SDL_HAPTIC_FRICTION: Effect based on axes movement. + * + * Direction is handled by condition internals instead of a direction member. + * The condition effect specific members have three parameters. The first + * refers to the X axis, the second refers to the Y axis and the third refers + * to the Z axis. The right terms refer to the positive side of the axis and + * the left terms refer to the negative side of the axis. Please refer to the + * SDL_HapticDirection diagram for which side is positive and which is + * negative. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + * \sa SDL_HAPTIC_SPRING + * \sa SDL_HAPTIC_DAMPER + * \sa SDL_HAPTIC_INERTIA + * \sa SDL_HAPTIC_FRICTION + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticCondition +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_SPRING, SDL_HAPTIC_DAMPER, + SDL_HAPTIC_INERTIA or SDL_HAPTIC_FRICTION */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Condition */ + Uint16 right_sat[3]; /**< Level when joystick is to the positive side; max 0xFFFF. */ + Uint16 left_sat[3]; /**< Level when joystick is to the negative side; max 0xFFFF. */ + Sint16 right_coeff[3]; /**< How fast to increase the force towards the positive side. */ + Sint16 left_coeff[3]; /**< How fast to increase the force towards the negative side. */ + Uint16 deadband[3]; /**< Size of the dead zone; max 0xFFFF: whole axis-range when 0-centered. */ + Sint16 center[3]; /**< Position of the dead zone. */ +} SDL_HapticCondition; + +/** + * A structure containing a template for a Ramp effect. + * + * This struct is exclusively for the SDL_HAPTIC_RAMP effect. + * + * The ramp effect starts at start strength and ends at end strength. It + * augments in linear fashion. If you use attack and fade with a ramp the + * effects get added to the ramp effect making the effect become quadratic + * instead of linear. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_RAMP + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticRamp +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_RAMP */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Ramp */ + Sint16 start; /**< Beginning strength level. */ + Sint16 end; /**< Ending strength level. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticRamp; + +/** + * A structure containing a template for a Left/Right effect. + * + * This struct is exclusively for the SDL_HAPTIC_LEFTRIGHT effect. + * + * The Left/Right effect is used to explicitly control the large and small + * motors, commonly found in modern game controllers. The small (right) motor + * is high frequency, and the large (left) motor is low frequency. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_LEFTRIGHT + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticLeftRight +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_LEFTRIGHT */ + + /* Replay */ + Uint32 length; /**< Duration of the effect in milliseconds. */ + + /* Rumble */ + Uint16 large_magnitude; /**< Control of the large controller motor. */ + Uint16 small_magnitude; /**< Control of the small controller motor. */ +} SDL_HapticLeftRight; + +/** + * A structure containing a template for the SDL_HAPTIC_CUSTOM effect. + * + * This struct is exclusively for the SDL_HAPTIC_CUSTOM effect. + * + * A custom force feedback effect is much like a periodic effect, where the + * application can define its exact shape. You will have to allocate the data + * yourself. Data should consist of channels * samples Uint16 samples. + * + * If channels is one, the effect is rotated using the defined direction. + * Otherwise it uses the samples in data for the different axes. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_CUSTOM + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticCustom +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_CUSTOM */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Custom */ + Uint8 channels; /**< Axes to use, minimum of one. */ + Uint16 period; /**< Sample periods. */ + Uint16 samples; /**< Amount of samples. */ + Uint16 *data; /**< Should contain channels*samples items. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticCustom; + +/** + * The generic template for any haptic effect. + * + * All values max at 32767 (0x7FFF). Signed values also can be negative. Time + * values unless specified otherwise are in milliseconds. + * + * You can also pass SDL_HAPTIC_INFINITY to length instead of a 0-32767 value. + * Neither delay, interval, attack_length nor fade_length support + * SDL_HAPTIC_INFINITY. Fade will also not be used since effect never ends. + * + * Additionally, the SDL_HAPTIC_RAMP effect does not support a duration of + * SDL_HAPTIC_INFINITY. + * + * Button triggers may not be supported on all devices, it is advised to not + * use them if possible. Buttons start at index 1 instead of index 0 like the + * joystick. + * + * If both attack_length and fade_level are 0, the envelope is not used, + * otherwise both values are used. + * + * Common parts: + * + * ```c + * // Replay - All effects have this + * Uint32 length; // Duration of effect (ms). + * Uint16 delay; // Delay before starting effect. + * + * // Trigger - All effects have this + * Uint16 button; // Button that triggers effect. + * Uint16 interval; // How soon before effect can be triggered again. + * + * // Envelope - All effects except condition effects have this + * Uint16 attack_length; // Duration of the attack (ms). + * Uint16 attack_level; // Level at the start of the attack. + * Uint16 fade_length; // Duration of the fade out (ms). + * Uint16 fade_level; // Level at the end of the fade. + * ``` + * + * Here we have an example of a constant effect evolution in time: + * + * ``` + * Strength + * ^ + * | + * | effect level --> _________________ + * | / \ + * | / \ + * | / \ + * | / \ + * | attack_level --> | \ + * | | | <--- fade_level + * | + * +--------------------------------------------------> Time + * [--] [---] + * attack_length fade_length + * + * [------------------][-----------------------] + * delay length + * ``` + * + * Note either the attack_level or the fade_level may be above the actual + * effect level. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HapticConstant + * \sa SDL_HapticPeriodic + * \sa SDL_HapticCondition + * \sa SDL_HapticRamp + * \sa SDL_HapticLeftRight + * \sa SDL_HapticCustom + */ +typedef union SDL_HapticEffect +{ + /* Common for all force feedback effects */ + Uint16 type; /**< Effect type. */ + SDL_HapticConstant constant; /**< Constant effect. */ + SDL_HapticPeriodic periodic; /**< Periodic effect. */ + SDL_HapticCondition condition; /**< Condition effect. */ + SDL_HapticRamp ramp; /**< Ramp effect. */ + SDL_HapticLeftRight leftright; /**< Left/Right effect. */ + SDL_HapticCustom custom; /**< Custom effect. */ +} SDL_HapticEffect; + +/** + * This is a unique ID for a haptic device for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the haptic device is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_HapticID; + + +/* Function prototypes */ + +/** + * Get a list of currently connected haptic devices. + * + * \param count a pointer filled in with the number of haptic devices + * returned, may be NULL. + * \returns a 0 terminated array of haptic device instance IDs or NULL on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHaptic + */ +extern SDL_DECLSPEC SDL_HapticID * SDLCALL SDL_GetHaptics(int *count); + +/** + * Get the implementation dependent name of a haptic device. + * + * This can be called before any haptic devices are opened. + * + * \param instance_id the haptic device instance ID. + * \returns the name of the selected haptic device. If no name can be found, + * this function returns NULL; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticName + * \sa SDL_OpenHaptic + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetHapticNameForID(SDL_HapticID instance_id); + +/** + * Open a haptic device for use. + * + * The index passed as an argument refers to the N'th haptic device on this + * system. + * + * When opening a haptic device, its gain will be set to maximum and + * autocenter will be disabled. To modify these values use SDL_SetHapticGain() + * and SDL_SetHapticAutocenter(). + * + * \param instance_id the haptic device instance ID. + * \returns the device identifier or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseHaptic + * \sa SDL_GetHaptics + * \sa SDL_OpenHapticFromJoystick + * \sa SDL_OpenHapticFromMouse + * \sa SDL_SetHapticAutocenter + * \sa SDL_SetHapticGain + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_OpenHaptic(SDL_HapticID instance_id); + + +/** + * Get the SDL_Haptic associated with an instance ID, if it has been opened. + * + * \param instance_id the instance ID to get the SDL_Haptic for. + * \returns an SDL_Haptic on success or NULL on failure or if it hasn't been + * opened yet; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_GetHapticFromID(SDL_HapticID instance_id); + +/** + * Get the instance ID of an opened haptic device. + * + * \param haptic the SDL_Haptic device to query. + * \returns the instance ID of the specified haptic device on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_HapticID SDLCALL SDL_GetHapticID(SDL_Haptic *haptic); + +/** + * Get the implementation dependent name of a haptic device. + * + * \param haptic the SDL_Haptic obtained from SDL_OpenJoystick(). + * \returns the name of the selected haptic device. If no name can be found, + * this function returns NULL; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticNameForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetHapticName(SDL_Haptic *haptic); + +/** + * Query whether or not the current mouse has haptic capabilities. + * + * \returns true if the mouse is haptic or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHapticFromMouse + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsMouseHaptic(void); + +/** + * Try to open a haptic device from the current mouse. + * + * \returns the haptic device identifier or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseHaptic + * \sa SDL_IsMouseHaptic + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_OpenHapticFromMouse(void); + +/** + * Query if a joystick has haptic features. + * + * \param joystick the SDL_Joystick to test for haptic capabilities. + * \returns true if the joystick is haptic or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHapticFromJoystick + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsJoystickHaptic(SDL_Joystick *joystick); + +/** + * Open a haptic device for use from a joystick device. + * + * You must still close the haptic device separately. It will not be closed + * with the joystick. + * + * When opened from a joystick you should first close the haptic device before + * closing the joystick device. If not, on some implementations the haptic + * device will also get unallocated and you'll be unable to use force feedback + * on that device. + * + * \param joystick the SDL_Joystick to create a haptic device from. + * \returns a valid haptic device identifier on success or NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseHaptic + * \sa SDL_IsJoystickHaptic + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_OpenHapticFromJoystick(SDL_Joystick *joystick); + +/** + * Close a haptic device previously opened with SDL_OpenHaptic(). + * + * \param haptic the SDL_Haptic device to close. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHaptic + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseHaptic(SDL_Haptic *haptic); + +/** + * Get the number of effects a haptic device can store. + * + * On some platforms this isn't fully supported, and therefore is an + * approximation. Always check to see if your created effect was actually + * created and do not rely solely on SDL_GetMaxHapticEffects(). + * + * \param haptic the SDL_Haptic device to query. + * \returns the number of effects the haptic device can store or a negative + * error code on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMaxHapticEffectsPlaying + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetMaxHapticEffects(SDL_Haptic *haptic); + +/** + * Get the number of effects a haptic device can play at the same time. + * + * This is not supported on all platforms, but will always return a value. + * + * \param haptic the SDL_Haptic device to query maximum playing effects. + * \returns the number of effects the haptic device can play at the same time + * or -1 on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMaxHapticEffects + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetMaxHapticEffectsPlaying(SDL_Haptic *haptic); + +/** + * Get the haptic device's supported features in bitwise manner. + * + * \param haptic the SDL_Haptic device to query. + * \returns a list of supported haptic features in bitwise manner (OR'd), or 0 + * on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HapticEffectSupported + * \sa SDL_GetMaxHapticEffects + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetHapticFeatures(SDL_Haptic *haptic); + +/** + * Get the number of haptic axes the device has. + * + * The number of haptic axes might be useful if working with the + * SDL_HapticDirection effect. + * + * \param haptic the SDL_Haptic device to query. + * \returns the number of axes on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumHapticAxes(SDL_Haptic *haptic); + +/** + * Check to see if an effect is supported by a haptic device. + * + * \param haptic the SDL_Haptic device to query. + * \param effect the desired effect to query. + * \returns true if the effect is supported or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateHapticEffect + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HapticEffectSupported(SDL_Haptic *haptic, const SDL_HapticEffect *effect); + +/** + * Create a new haptic effect on a specified device. + * + * \param haptic an SDL_Haptic device to create the effect on. + * \param effect an SDL_HapticEffect structure containing the properties of + * the effect to create. + * \returns the ID of the effect on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyHapticEffect + * \sa SDL_RunHapticEffect + * \sa SDL_UpdateHapticEffect + */ +extern SDL_DECLSPEC int SDLCALL SDL_CreateHapticEffect(SDL_Haptic *haptic, const SDL_HapticEffect *effect); + +/** + * Update the properties of an effect. + * + * Can be used dynamically, although behavior when dynamically changing + * direction may be strange. Specifically the effect may re-upload itself and + * start playing from the start. You also cannot change the type either when + * running SDL_UpdateHapticEffect(). + * + * \param haptic the SDL_Haptic device that has the effect. + * \param effect the identifier of the effect to update. + * \param data an SDL_HapticEffect structure containing the new effect + * properties to use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateHapticEffect + * \sa SDL_RunHapticEffect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateHapticEffect(SDL_Haptic *haptic, int effect, const SDL_HapticEffect *data); + +/** + * Run the haptic effect on its associated haptic device. + * + * To repeat the effect over and over indefinitely, set `iterations` to + * `SDL_HAPTIC_INFINITY`. (Repeats the envelope - attack and fade.) To make + * one instance of the effect last indefinitely (so the effect does not fade), + * set the effect's `length` in its structure/union to `SDL_HAPTIC_INFINITY` + * instead. + * + * \param haptic the SDL_Haptic device to run the effect on. + * \param effect the ID of the haptic effect to run. + * \param iterations the number of iterations to run the effect; use + * `SDL_HAPTIC_INFINITY` to repeat forever. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticEffectStatus + * \sa SDL_StopHapticEffect + * \sa SDL_StopHapticEffects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RunHapticEffect(SDL_Haptic *haptic, int effect, Uint32 iterations); + +/** + * Stop the haptic effect on its associated haptic device. + * + * \param haptic the SDL_Haptic device to stop the effect on. + * \param effect the ID of the haptic effect to stop. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RunHapticEffect + * \sa SDL_StopHapticEffects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopHapticEffect(SDL_Haptic *haptic, int effect); + +/** + * Destroy a haptic effect on the device. + * + * This will stop the effect if it's running. Effects are automatically + * destroyed when the device is closed. + * + * \param haptic the SDL_Haptic device to destroy the effect on. + * \param effect the ID of the haptic effect to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateHapticEffect + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyHapticEffect(SDL_Haptic *haptic, int effect); + +/** + * Get the status of the current effect on the specified haptic device. + * + * Device must support the SDL_HAPTIC_STATUS feature. + * + * \param haptic the SDL_Haptic device to query for the effect status on. + * \param effect the ID of the haptic effect to query its status. + * \returns true if it is playing, false if it isn't playing or haptic status + * isn't supported. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetHapticEffectStatus(SDL_Haptic *haptic, int effect); + +/** + * Set the global gain of the specified haptic device. + * + * Device must support the SDL_HAPTIC_GAIN feature. + * + * The user may specify the maximum gain by setting the environment variable + * `SDL_HAPTIC_GAIN_MAX` which should be between 0 and 100. All calls to + * SDL_SetHapticGain() will scale linearly using `SDL_HAPTIC_GAIN_MAX` as the + * maximum. + * + * \param haptic the SDL_Haptic device to set the gain on. + * \param gain value to set the gain to, should be between 0 and 100 (0 - + * 100). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHapticGain(SDL_Haptic *haptic, int gain); + +/** + * Set the global autocenter of the device. + * + * Autocenter should be between 0 and 100. Setting it to 0 will disable + * autocentering. + * + * Device must support the SDL_HAPTIC_AUTOCENTER feature. + * + * \param haptic the SDL_Haptic device to set autocentering on. + * \param autocenter value to set autocenter to (0-100). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHapticAutocenter(SDL_Haptic *haptic, int autocenter); + +/** + * Pause a haptic device. + * + * Device must support the `SDL_HAPTIC_PAUSE` feature. Call SDL_ResumeHaptic() + * to resume playback. + * + * Do not modify the effects nor add new ones while the device is paused. That + * can cause all sorts of weird errors. + * + * \param haptic the SDL_Haptic device to pause. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResumeHaptic + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PauseHaptic(SDL_Haptic *haptic); + +/** + * Resume a haptic device. + * + * Call to unpause after SDL_PauseHaptic(). + * + * \param haptic the SDL_Haptic device to unpause. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseHaptic + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResumeHaptic(SDL_Haptic *haptic); + +/** + * Stop all the currently playing effects on a haptic device. + * + * \param haptic the SDL_Haptic device to stop. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RunHapticEffect + * \sa SDL_StopHapticEffects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopHapticEffects(SDL_Haptic *haptic); + +/** + * Check whether rumble is supported on a haptic device. + * + * \param haptic haptic device to check for rumble support. + * \returns true if the effect is supported or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InitHapticRumble + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HapticRumbleSupported(SDL_Haptic *haptic); + +/** + * Initialize a haptic device for simple rumble playback. + * + * \param haptic the haptic device to initialize for simple rumble playback. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PlayHapticRumble + * \sa SDL_StopHapticRumble + * \sa SDL_HapticRumbleSupported + */ +extern SDL_DECLSPEC bool SDLCALL SDL_InitHapticRumble(SDL_Haptic *haptic); + +/** + * Run a simple rumble effect on a haptic device. + * + * \param haptic the haptic device to play the rumble effect on. + * \param strength strength of the rumble to play as a 0-1 float value. + * \param length length of the rumble to play in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InitHapticRumble + * \sa SDL_StopHapticRumble + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PlayHapticRumble(SDL_Haptic *haptic, float strength, Uint32 length); + +/** + * Stop the simple rumble on a haptic device. + * + * \param haptic the haptic device to stop the rumble effect on. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PlayHapticRumble + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopHapticRumble(SDL_Haptic *haptic); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_haptic_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_hidapi.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_hidapi.h new file mode 100644 index 0000000..131b037 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_hidapi.h @@ -0,0 +1,552 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: HIDAPI */ + +/** + * # CategoryHIDAPI + * + * Header file for SDL HIDAPI functions. + * + * This is an adaptation of the original HIDAPI interface by Alan Ott, and + * includes source code licensed under the following license: + * + * ``` + * HIDAPI - Multi-Platform library for + * communication with HID devices. + * + * Copyright 2009, Alan Ott, Signal 11 Software. + * All Rights Reserved. + * + * This software may be used by anyone for any reason so + * long as the copyright notice in the source files + * remains intact. + * ``` + * + * (Note that this license is the same as item three of SDL's zlib license, so + * it adds no new requirements on the user.) + * + * If you would like a version of SDL without this code, you can build SDL + * with SDL_HIDAPI_DISABLED defined to 1. You might want to do this for + * example on iOS or tvOS to avoid a dependency on the CoreBluetooth + * framework. + */ + +#ifndef SDL_hidapi_h_ +#define SDL_hidapi_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque handle representing an open HID device. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_hid_device SDL_hid_device; + +/** + * HID underlying bus types. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_hid_bus_type { + /** Unknown bus type */ + SDL_HID_API_BUS_UNKNOWN = 0x00, + + /** USB bus + Specifications: + https://usb.org/hid */ + SDL_HID_API_BUS_USB = 0x01, + + /** Bluetooth or Bluetooth LE bus + Specifications: + https://www.bluetooth.com/specifications/specs/human-interface-device-profile-1-1-1/ + https://www.bluetooth.com/specifications/specs/hid-service-1-0/ + https://www.bluetooth.com/specifications/specs/hid-over-gatt-profile-1-0/ */ + SDL_HID_API_BUS_BLUETOOTH = 0x02, + + /** I2C bus + Specifications: + https://docs.microsoft.com/previous-versions/windows/hardware/design/dn642101(v=vs.85) */ + SDL_HID_API_BUS_I2C = 0x03, + + /** SPI bus + Specifications: + https://www.microsoft.com/download/details.aspx?id=103325 */ + SDL_HID_API_BUS_SPI = 0x04 + +} SDL_hid_bus_type; + +/** hidapi info structure */ + +/** + * Information about a connected HID device + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_hid_device_info +{ + /** Platform-specific device path */ + char *path; + /** Device Vendor ID */ + unsigned short vendor_id; + /** Device Product ID */ + unsigned short product_id; + /** Serial Number */ + wchar_t *serial_number; + /** Device Release Number in binary-coded decimal, + also known as Device Version Number */ + unsigned short release_number; + /** Manufacturer String */ + wchar_t *manufacturer_string; + /** Product string */ + wchar_t *product_string; + /** Usage Page for this Device/Interface + (Windows/Mac/hidraw only) */ + unsigned short usage_page; + /** Usage for this Device/Interface + (Windows/Mac/hidraw only) */ + unsigned short usage; + /** The USB interface which this logical device + represents. + + Valid only if the device is a USB HID device. + Set to -1 in all other cases. + */ + int interface_number; + + /** Additional information about the USB interface. + Valid on libusb and Android implementations. */ + int interface_class; + int interface_subclass; + int interface_protocol; + + /** Underlying bus type */ + SDL_hid_bus_type bus_type; + + /** Pointer to the next device */ + struct SDL_hid_device_info *next; + +} SDL_hid_device_info; + + +/** + * Initialize the HIDAPI library. + * + * This function initializes the HIDAPI library. Calling it is not strictly + * necessary, as it will be called automatically by SDL_hid_enumerate() and + * any of the SDL_hid_open_*() functions if it is needed. This function should + * be called at the beginning of execution however, if there is a chance of + * HIDAPI handles being opened by different threads simultaneously. + * + * Each call to this function should have a matching call to SDL_hid_exit() + * + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_exit + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_init(void); + +/** + * Finalize the HIDAPI library. + * + * This function frees all of the static data associated with HIDAPI. It + * should be called at the end of execution to avoid memory leaks. + * + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_init + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_exit(void); + +/** + * Check to see if devices may have been added or removed. + * + * Enumerating the HID devices is an expensive operation, so you can call this + * to see if there have been any system device changes since the last call to + * this function. A change in the counter returned doesn't necessarily mean + * that anything has changed, but you can call SDL_hid_enumerate() to get an + * updated device list. + * + * Calling this function for the first time may cause a thread or other system + * resource to be allocated to track device change notifications. + * + * \returns a change counter that is incremented with each potential device + * change, or 0 if device change detection isn't available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_enumerate + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_hid_device_change_count(void); + +/** + * Enumerate the HID Devices. + * + * This function returns a linked list of all the HID devices attached to the + * system which match vendor_id and product_id. If `vendor_id` is set to 0 + * then any vendor matches. If `product_id` is set to 0 then any product + * matches. If `vendor_id` and `product_id` are both set to 0, then all HID + * devices will be returned. + * + * By default SDL will only enumerate controllers, to reduce risk of hanging + * or crashing on bad drivers, but SDL_HINT_HIDAPI_ENUMERATE_ONLY_CONTROLLERS + * can be set to "0" to enumerate all HID devices. + * + * \param vendor_id the Vendor ID (VID) of the types of device to open, or 0 + * to match any vendor. + * \param product_id the Product ID (PID) of the types of device to open, or 0 + * to match any product. + * \returns a pointer to a linked list of type SDL_hid_device_info, containing + * information about the HID devices attached to the system, or NULL + * in the case of failure. Free this linked list by calling + * SDL_hid_free_enumeration(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_device_change_count + */ +extern SDL_DECLSPEC SDL_hid_device_info * SDLCALL SDL_hid_enumerate(unsigned short vendor_id, unsigned short product_id); + +/** + * Free an enumeration linked list. + * + * This function frees a linked list created by SDL_hid_enumerate(). + * + * \param devs pointer to a list of struct_device returned from + * SDL_hid_enumerate(). + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_hid_free_enumeration(SDL_hid_device_info *devs); + +/** + * Open a HID device using a Vendor ID (VID), Product ID (PID) and optionally + * a serial number. + * + * If `serial_number` is NULL, the first device with the specified VID and PID + * is opened. + * + * \param vendor_id the Vendor ID (VID) of the device to open. + * \param product_id the Product ID (PID) of the device to open. + * \param serial_number the Serial Number of the device to open (Optionally + * NULL). + * \returns a pointer to a SDL_hid_device object on success or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_hid_device * SDLCALL SDL_hid_open(unsigned short vendor_id, unsigned short product_id, const wchar_t *serial_number); + +/** + * Open a HID device by its path name. + * + * The path name be determined by calling SDL_hid_enumerate(), or a + * platform-specific path name can be used (eg: /dev/hidraw0 on Linux). + * + * \param path the path name of the device to open. + * \returns a pointer to a SDL_hid_device object on success or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_hid_device * SDLCALL SDL_hid_open_path(const char *path); + +/** + * Write an Output report to a HID device. + * + * The first byte of `data` must contain the Report ID. For devices which only + * support a single report, this must be set to 0x0. The remaining bytes + * contain the report data. Since the Report ID is mandatory, calls to + * SDL_hid_write() will always contain one more byte than the report contains. + * For example, if a hid report is 16 bytes long, 17 bytes must be passed to + * SDL_hid_write(), the Report ID (or 0x0, for devices with a single report), + * followed by the report data (16 bytes). In this example, the length passed + * in would be 17. + * + * SDL_hid_write() will send the data on the first OUT endpoint, if one + * exists. If it does not, it will send the data through the Control Endpoint + * (Endpoint 0). + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data the data to send, including the report number as the first + * byte. + * \param length the length in bytes of the data to send. + * \returns the actual number of bytes written and -1 on on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_write(SDL_hid_device *dev, const unsigned char *data, size_t length); + +/** + * Read an Input report from a HID device with timeout. + * + * Input reports are returned to the host through the INTERRUPT IN endpoint. + * The first byte will contain the Report number if the device uses numbered + * reports. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into. + * \param length the number of bytes to read. For devices with multiple + * reports, make sure to read an extra byte for the report + * number. + * \param milliseconds timeout in milliseconds or -1 for blocking wait. + * \returns the actual number of bytes read and -1 on on failure; call + * SDL_GetError() for more information. If no packet was available to + * be read within the timeout period, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_read_timeout(SDL_hid_device *dev, unsigned char *data, size_t length, int milliseconds); + +/** + * Read an Input report from a HID device. + * + * Input reports are returned to the host through the INTERRUPT IN endpoint. + * The first byte will contain the Report number if the device uses numbered + * reports. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into. + * \param length the number of bytes to read. For devices with multiple + * reports, make sure to read an extra byte for the report + * number. + * \returns the actual number of bytes read and -1 on failure; call + * SDL_GetError() for more information. If no packet was available to + * be read and the handle is in non-blocking mode, this function + * returns 0. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_read(SDL_hid_device *dev, unsigned char *data, size_t length); + +/** + * Set the device handle to be non-blocking. + * + * In non-blocking mode calls to SDL_hid_read() will return immediately with a + * value of 0 if there is no data to be read. In blocking mode, SDL_hid_read() + * will wait (block) until there is data to read before returning. + * + * Nonblocking can be turned on and off at any time. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param nonblock enable or not the nonblocking reads - 1 to enable + * nonblocking - 0 to disable nonblocking. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_set_nonblocking(SDL_hid_device *dev, int nonblock); + +/** + * Send a Feature report to the device. + * + * Feature reports are sent over the Control endpoint as a Set_Report + * transfer. The first byte of `data` must contain the Report ID. For devices + * which only support a single report, this must be set to 0x0. The remaining + * bytes contain the report data. Since the Report ID is mandatory, calls to + * SDL_hid_send_feature_report() will always contain one more byte than the + * report contains. For example, if a hid report is 16 bytes long, 17 bytes + * must be passed to SDL_hid_send_feature_report(): the Report ID (or 0x0, for + * devices which do not use numbered reports), followed by the report data (16 + * bytes). In this example, the length passed in would be 17. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data the data to send, including the report number as the first + * byte. + * \param length the length in bytes of the data to send, including the report + * number. + * \returns the actual number of bytes written and -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_send_feature_report(SDL_hid_device *dev, const unsigned char *data, size_t length); + +/** + * Get a feature report from a HID device. + * + * Set the first byte of `data` to the Report ID of the report to be read. + * Make sure to allow space for this extra byte in `data`. Upon return, the + * first byte will still contain the Report ID, and the report data will start + * in data[1]. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into, including the Report ID. + * Set the first byte of `data` to the Report ID of the report to + * be read, or set it to zero if your device does not use numbered + * reports. + * \param length the number of bytes to read, including an extra byte for the + * report ID. The buffer can be longer than the actual report. + * \returns the number of bytes read plus one for the report ID (which is + * still in the first byte), or -1 on on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_feature_report(SDL_hid_device *dev, unsigned char *data, size_t length); + +/** + * Get an input report from a HID device. + * + * Set the first byte of `data` to the Report ID of the report to be read. + * Make sure to allow space for this extra byte in `data`. Upon return, the + * first byte will still contain the Report ID, and the report data will start + * in data[1]. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into, including the Report ID. + * Set the first byte of `data` to the Report ID of the report to + * be read, or set it to zero if your device does not use numbered + * reports. + * \param length the number of bytes to read, including an extra byte for the + * report ID. The buffer can be longer than the actual report. + * \returns the number of bytes read plus one for the report ID (which is + * still in the first byte), or -1 on on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_input_report(SDL_hid_device *dev, unsigned char *data, size_t length); + +/** + * Close a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_close(SDL_hid_device *dev); + +/** + * Get The Manufacturer String from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_manufacturer_string(SDL_hid_device *dev, wchar_t *string, size_t maxlen); + +/** + * Get The Product String from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_product_string(SDL_hid_device *dev, wchar_t *string, size_t maxlen); + +/** + * Get The Serial Number String from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_serial_number_string(SDL_hid_device *dev, wchar_t *string, size_t maxlen); + +/** + * Get a string from a HID device, based on its string index. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string_index the index of the string to get. + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_indexed_string(SDL_hid_device *dev, int string_index, wchar_t *string, size_t maxlen); + +/** + * Get the device info from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \returns a pointer to the SDL_hid_device_info for this hid_device or NULL + * on failure; call SDL_GetError() for more information. This struct + * is valid until the device is closed with SDL_hid_close(). + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_hid_device_info * SDLCALL SDL_hid_get_device_info(SDL_hid_device *dev); + +/** + * Get a report descriptor from a HID device. + * + * User has to provide a preallocated buffer where descriptor will be copied + * to. The recommended size for a preallocated buffer is 4096 bytes. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param buf the buffer to copy descriptor into. + * \param buf_size the size of the buffer in bytes. + * \returns the number of bytes actually copied or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_report_descriptor(SDL_hid_device *dev, unsigned char *buf, size_t buf_size); + +/** + * Start or stop a BLE scan on iOS and tvOS to pair Steam Controllers. + * + * \param active true to start the scan, false to stop the scan. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_hid_ble_scan(bool active); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_hidapi_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_hints.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_hints.h new file mode 100644 index 0000000..a081535 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_hints.h @@ -0,0 +1,4486 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryHints + * + * This file contains functions to set and get configuration hints, as well as + * listing each of them alphabetically. + * + * The convention for naming hints is SDL_HINT_X, where "SDL_X" is the + * environment variable that can be used to override the default. + * + * In general these hints are just that - they may or may not be supported or + * applicable on any given platform, but they provide a way for an application + * or user to give the library a hint as to how they would like the library to + * work. + */ + +#ifndef SDL_hints_h_ +#define SDL_hints_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Specify the behavior of Alt+Tab while the keyboard is grabbed. + * + * By default, SDL emulates Alt+Tab functionality while the keyboard is + * grabbed and your window is full-screen. This prevents the user from getting + * stuck in your application if you've enabled keyboard grab. + * + * The variable can be set to the following values: + * + * - "0": SDL will not handle Alt+Tab. Your application is responsible for + * handling Alt+Tab while the keyboard is grabbed. + * - "1": SDL will minimize your window when Alt+Tab is pressed (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ALLOW_ALT_TAB_WHILE_GRABBED "SDL_ALLOW_ALT_TAB_WHILE_GRABBED" + +/** + * A variable to control whether the SDL activity is allowed to be re-created. + * + * If this hint is true, the activity can be recreated on demand by the OS, + * and Java static data and C++ static data remain with their current values. + * If this hint is false, then SDL will call exit() when you return from your + * main function and the application will be terminated and then started fresh + * each time. + * + * The variable can be set to the following values: + * + * - "0": The application starts fresh at each launch. (default) + * - "1": The application activity can be recreated by the OS. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_ALLOW_RECREATE_ACTIVITY "SDL_ANDROID_ALLOW_RECREATE_ACTIVITY" + +/** + * A variable to control whether the event loop will block itself when the app + * is paused. + * + * The variable can be set to the following values: + * + * - "0": Non blocking. + * - "1": Blocking. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_BLOCK_ON_PAUSE "SDL_ANDROID_BLOCK_ON_PAUSE" + +/** + * A variable to control whether low latency audio should be enabled. + * + * Some devices have poor quality output when this is enabled, but this is + * usually an improvement in audio latency. + * + * The variable can be set to the following values: + * + * - "0": Low latency audio is not enabled. + * - "1": Low latency audio is enabled. (default) + * + * This hint should be set before SDL audio is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_LOW_LATENCY_AUDIO "SDL_ANDROID_LOW_LATENCY_AUDIO" + +/** + * A variable to control whether we trap the Android back button to handle it + * manually. + * + * This is necessary for the right mouse button to work on some Android + * devices, or to be able to trap the back button for use in your code + * reliably. If this hint is true, the back button will show up as an + * SDL_EVENT_KEY_DOWN / SDL_EVENT_KEY_UP pair with a keycode of + * SDL_SCANCODE_AC_BACK. + * + * The variable can be set to the following values: + * + * - "0": Back button will be handled as usual for system. (default) + * - "1": Back button will be trapped, allowing you to handle the key press + * manually. (This will also let right mouse click work on systems where the + * right mouse button functions as back.) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_TRAP_BACK_BUTTON "SDL_ANDROID_TRAP_BACK_BUTTON" + +/** + * A variable setting the app ID string. + * + * This string is used by desktop compositors to identify and group windows + * together, as well as match applications with associated desktop settings + * and icons. + * + * This will override SDL_PROP_APP_METADATA_IDENTIFIER_STRING, if set by the + * application. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APP_ID "SDL_APP_ID" + +/** + * A variable setting the application name. + * + * This hint lets you specify the application name sent to the OS when + * required. For example, this will often appear in volume control applets for + * audio streams, and in lists of applications which are inhibiting the + * screensaver. You should use a string that describes your program ("My Game + * 2: The Revenge") + * + * This will override SDL_PROP_APP_METADATA_NAME_STRING, if set by the + * application. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APP_NAME "SDL_APP_NAME" + +/** + * A variable controlling whether controllers used with the Apple TV generate + * UI events. + * + * When UI events are generated by controller input, the app will be + * backgrounded when the Apple TV remote's menu button is pressed, and when + * the pause or B buttons on gamepads are pressed. + * + * More information about properly making use of controllers for the Apple TV + * can be found here: + * https://developer.apple.com/tvos/human-interface-guidelines/remote-and-controllers/ + * + * The variable can be set to the following values: + * + * - "0": Controller input does not generate UI events. (default) + * - "1": Controller input generates UI events. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APPLE_TV_CONTROLLER_UI_EVENTS "SDL_APPLE_TV_CONTROLLER_UI_EVENTS" + +/** + * A variable controlling whether the Apple TV remote's joystick axes will + * automatically match the rotation of the remote. + * + * The variable can be set to the following values: + * + * - "0": Remote orientation does not affect joystick axes. (default) + * - "1": Joystick axes are based on the orientation of the remote. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APPLE_TV_REMOTE_ALLOW_ROTATION "SDL_APPLE_TV_REMOTE_ALLOW_ROTATION" + +/** + * Specify the default ALSA audio device name. + * + * This variable is a specific audio device to open when the "default" audio + * device is used. + * + * This hint will be ignored when opening the default playback device if + * SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE is set, or when opening the + * default recording device if SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE is + * set. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE + */ +#define SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE "SDL_AUDIO_ALSA_DEFAULT_DEVICE" + +/** + * Specify the default ALSA audio playback device name. + * + * This variable is a specific audio device to open for playback, when the + * "default" audio device is used. + * + * If this hint isn't set, SDL will check SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + * before choosing a reasonable default. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + */ +#define SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE "SDL_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE" + +/** + * Specify the default ALSA audio recording device name. + * + * This variable is a specific audio device to open for recording, when the + * "default" audio device is used. + * + * If this hint isn't set, SDL will check SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + * before choosing a reasonable default. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + */ +#define SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE "SDL_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE" + +/** + * A variable controlling the audio category on iOS and macOS. + * + * The variable can be set to the following values: + * + * - "ambient": Use the AVAudioSessionCategoryAmbient audio category, will be + * muted by the phone mute switch (default) + * - "playback": Use the AVAudioSessionCategoryPlayback category. + * + * For more information, see Apple's documentation: + * https://developer.apple.com/library/content/documentation/Audio/Conceptual/AudioSessionProgrammingGuide/AudioSessionCategoriesandModes/AudioSessionCategoriesandModes.html + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_CATEGORY "SDL_AUDIO_CATEGORY" + +/** + * A variable controlling the default audio channel count. + * + * If the application doesn't specify the audio channel count when opening the + * device, this hint can be used to specify a default channel count that will + * be used. This defaults to "1" for recording and "2" for playback devices. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_CHANNELS "SDL_AUDIO_CHANNELS" + +/** + * Specify an application icon name for an audio device. + * + * Some audio backends (such as Pulseaudio and Pipewire) allow you to set an + * XDG icon name for your application. Among other things, this icon might + * show up in a system control panel that lets the user adjust the volume on + * specific audio streams instead of using one giant master volume slider. + * Note that this is unrelated to the icon used by the windowing system, which + * may be set with SDL_SetWindowIcon (or via desktop file on Wayland). + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default, "applications-games", which is likely to be installed. See + * https://specifications.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html + * and + * https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html + * for the relevant XDG icon specs. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_APP_ICON_NAME "SDL_AUDIO_DEVICE_APP_ICON_NAME" + +/** + * A variable controlling device buffer size. + * + * This hint is an integer > 0, that represents the size of the device's + * buffer in sample frames (stereo audio data in 16-bit format is 4 bytes per + * sample frame, for example). + * + * SDL3 generally decides this value on behalf of the app, but if for some + * reason the app needs to dictate this (because they want either lower + * latency or higher throughput AND ARE WILLING TO DEAL WITH what that might + * require of the app), they can specify it. + * + * SDL will try to accommodate this value, but there is no promise you'll get + * the buffer size requested. Many platforms won't honor this request at all, + * or might adjust it. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_SAMPLE_FRAMES "SDL_AUDIO_DEVICE_SAMPLE_FRAMES" + +/** + * Specify an audio stream name for an audio device. + * + * Some audio backends (such as PulseAudio) allow you to describe your audio + * stream. Among other things, this description might show up in a system + * control panel that lets the user adjust the volume on specific audio + * streams instead of using one giant master volume slider. + * + * This hints lets you transmit that information to the OS. The contents of + * this hint are used while opening an audio device. You should use a string + * that describes your what your program is playing ("audio stream" is + * probably sufficient in many cases, but this could be useful for something + * like "team chat" if you have a headset playing VoIP audio separately). + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default: "audio stream" or something similar. + * + * Note that while this talks about audio streams, this is an OS-level + * concept, so it applies to a physical audio device in this case, and not an + * SDL_AudioStream, nor an SDL logical audio device. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_STREAM_NAME "SDL_AUDIO_DEVICE_STREAM_NAME" + +/** + * Specify an application role for an audio device. + * + * Some audio backends (such as Pipewire) allow you to describe the role of + * your audio stream. Among other things, this description might show up in a + * system control panel or software for displaying and manipulating media + * playback/recording graphs. + * + * This hints lets you transmit that information to the OS. The contents of + * this hint are used while opening an audio device. You should use a string + * that describes your what your program is playing (Game, Music, Movie, + * etc...). + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default: "Game" or something similar. + * + * Note that while this talks about audio streams, this is an OS-level + * concept, so it applies to a physical audio device in this case, and not an + * SDL_AudioStream, nor an SDL logical audio device. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_STREAM_ROLE "SDL_AUDIO_DEVICE_STREAM_ROLE" + +/** + * Specify the input file when recording audio using the disk audio driver. + * + * This defaults to "sdlaudio-in.raw" + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DISK_INPUT_FILE "SDL_AUDIO_DISK_INPUT_FILE" + +/** + * Specify the output file when playing audio using the disk audio driver. + * + * This defaults to "sdlaudio.raw" + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DISK_OUTPUT_FILE "SDL_AUDIO_DISK_OUTPUT_FILE" + +/** + * A variable controlling the audio rate when using the disk audio driver. + * + * The disk audio driver normally simulates real-time for the audio rate that + * was specified, but you can use this variable to adjust this rate higher or + * lower down to 0. The default value is "1.0". + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DISK_TIMESCALE "SDL_AUDIO_DISK_TIMESCALE" + +/** + * A variable that specifies an audio backend to use. + * + * By default, SDL will try all available audio backends in a reasonable order + * until it finds one that can work, but this hint allows the app or user to + * force a specific driver, such as "pipewire" if, say, you are on PulseAudio + * but want to try talking to the lower level instead. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DRIVER "SDL_AUDIO_DRIVER" + +/** + * A variable controlling the audio rate when using the dummy audio driver. + * + * The dummy audio driver normally simulates real-time for the audio rate that + * was specified, but you can use this variable to adjust this rate higher or + * lower down to 0. The default value is "1.0". + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DUMMY_TIMESCALE "SDL_AUDIO_DUMMY_TIMESCALE" + +/** + * A variable controlling the default audio format. + * + * If the application doesn't specify the audio format when opening the + * device, this hint can be used to specify a default format that will be + * used. + * + * The variable can be set to the following values: + * + * - "U8": Unsigned 8-bit audio + * - "S8": Signed 8-bit audio + * - "S16LE": Signed 16-bit little-endian audio + * - "S16BE": Signed 16-bit big-endian audio + * - "S16": Signed 16-bit native-endian audio (default) + * - "S32LE": Signed 32-bit little-endian audio + * - "S32BE": Signed 32-bit big-endian audio + * - "S32": Signed 32-bit native-endian audio + * - "F32LE": Floating point little-endian audio + * - "F32BE": Floating point big-endian audio + * - "F32": Floating point native-endian audio + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_FORMAT "SDL_AUDIO_FORMAT" + +/** + * A variable controlling the default audio frequency. + * + * If the application doesn't specify the audio frequency when opening the + * device, this hint can be used to specify a default frequency that will be + * used. This defaults to "44100". + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_FREQUENCY "SDL_AUDIO_FREQUENCY" + +/** + * A variable that causes SDL to not ignore audio "monitors". + * + * This is currently only used by the PulseAudio driver. + * + * By default, SDL ignores audio devices that aren't associated with physical + * hardware. Changing this hint to "1" will expose anything SDL sees that + * appears to be an audio source or sink. This will add "devices" to the list + * that the user probably doesn't want or need, but it can be useful in + * scenarios where you want to hook up SDL to some sort of virtual device, + * etc. + * + * The variable can be set to the following values: + * + * - "0": Audio monitor devices will be ignored. (default) + * - "1": Audio monitor devices will show up in the device list. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_INCLUDE_MONITORS "SDL_AUDIO_INCLUDE_MONITORS" + +/** + * A variable controlling whether SDL updates joystick state when getting + * input events. + * + * The variable can be set to the following values: + * + * - "0": You'll call SDL_UpdateJoysticks() manually. + * - "1": SDL will automatically call SDL_UpdateJoysticks(). (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUTO_UPDATE_JOYSTICKS "SDL_AUTO_UPDATE_JOYSTICKS" + +/** + * A variable controlling whether SDL updates sensor state when getting input + * events. + * + * The variable can be set to the following values: + * + * - "0": You'll call SDL_UpdateSensors() manually. + * - "1": SDL will automatically call SDL_UpdateSensors(). (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUTO_UPDATE_SENSORS "SDL_AUTO_UPDATE_SENSORS" + +/** + * Prevent SDL from using version 4 of the bitmap header when saving BMPs. + * + * The bitmap header version 4 is required for proper alpha channel support + * and SDL will use it when required. Should this not be desired, this hint + * can force the use of the 40 byte header version which is supported + * everywhere. + * + * The variable can be set to the following values: + * + * - "0": Surfaces with a colorkey or an alpha channel are saved to a 32-bit + * BMP file with an alpha mask. SDL will use the bitmap header version 4 and + * set the alpha mask accordingly. (default) + * - "1": Surfaces with a colorkey or an alpha channel are saved to a 32-bit + * BMP file without an alpha mask. The alpha channel data will be in the + * file, but applications are going to ignore it. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_BMP_SAVE_LEGACY_FORMAT "SDL_BMP_SAVE_LEGACY_FORMAT" + +/** + * A variable that decides what camera backend to use. + * + * By default, SDL will try all available camera backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target, such as "directshow" if, say, you are on + * Windows Media Foundations but want to try DirectShow instead. + * + * The default value is unset, in which case SDL will try to figure out the + * best camera backend on your behalf. This hint needs to be set before + * SDL_Init() is called to be useful. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_CAMERA_DRIVER "SDL_CAMERA_DRIVER" + +/** + * A variable that limits what CPU features are available. + * + * By default, SDL marks all features the current CPU supports as available. + * This hint allows to limit these to a subset. + * + * When the hint is unset, or empty, SDL will enable all detected CPU + * features. + * + * The variable can be set to a comma separated list containing the following + * items: + * + * - "all" + * - "altivec" + * - "sse" + * - "sse2" + * - "sse3" + * - "sse41" + * - "sse42" + * - "avx" + * - "avx2" + * - "avx512f" + * - "arm-simd" + * - "neon" + * - "lsx" + * - "lasx" + * + * The items can be prefixed by '+'/'-' to add/remove features. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_CPU_FEATURE_MASK "SDL_CPU_FEATURE_MASK" + +/** + * A variable controlling whether DirectInput should be used for controllers. + * + * The variable can be set to the following values: + * + * - "0": Disable DirectInput detection. + * - "1": Enable DirectInput detection. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_DIRECTINPUT "SDL_JOYSTICK_DIRECTINPUT" + +/** + * A variable that specifies a dialog backend to use. + * + * By default, SDL will try all available dialog backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target. + * + * If the specified target does not exist or is not available, the + * dialog-related function calls will fail. + * + * This hint currently only applies to platforms using the generic "Unix" + * dialog implementation, but may be extended to more platforms in the future. + * Note that some Unix and Unix-like platforms have their own implementation, + * such as macOS and Haiku. + * + * The variable can be set to the following values: + * + * - NULL: Select automatically (default, all platforms) + * - "portal": Use XDG Portals through DBus (Unix only) + * - "zenity": Use the Zenity program (Unix only) + * + * More options may be added in the future. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_FILE_DIALOG_DRIVER "SDL_FILE_DIALOG_DRIVER" + +/** + * Override for SDL_GetDisplayUsableBounds(). + * + * If set, this hint will override the expected results for + * SDL_GetDisplayUsableBounds() for display index 0. Generally you don't want + * to do this, but this allows an embedded system to request that some of the + * screen be reserved for other uses when paired with a well-behaved + * application. + * + * The contents of this hint must be 4 comma-separated integers, the first is + * the bounds x, then y, width and height, in that order. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_DISPLAY_USABLE_BOUNDS "SDL_DISPLAY_USABLE_BOUNDS" + +/** + * Disable giving back control to the browser automatically when running with + * asyncify. + * + * With -s ASYNCIFY, SDL calls emscripten_sleep during operations such as + * refreshing the screen or polling events. + * + * This hint only applies to the emscripten platform. + * + * The variable can be set to the following values: + * + * - "0": Disable emscripten_sleep calls (if you give back browser control + * manually or use asyncify for other purposes). + * - "1": Enable emscripten_sleep calls. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EMSCRIPTEN_ASYNCIFY "SDL_EMSCRIPTEN_ASYNCIFY" + +/** + * Specify the CSS selector used for the "default" window/canvas. + * + * This hint only applies to the emscripten platform. + * + * The default value is "#canvas" + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EMSCRIPTEN_CANVAS_SELECTOR "SDL_EMSCRIPTEN_CANVAS_SELECTOR" + +/** + * Override the binding element for keyboard inputs for Emscripten builds. + * + * This hint only applies to the emscripten platform. + * + * The variable can be one of: + * + * - "#window": the javascript window object (default) + * - "#document": the javascript document object + * - "#screen": the javascript window.screen object + * - "#canvas": the WebGL canvas element + * - "#none": Don't bind anything at all + * - any other string without a leading # sign applies to the element on the + * page with that ID. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EMSCRIPTEN_KEYBOARD_ELEMENT "SDL_EMSCRIPTEN_KEYBOARD_ELEMENT" + +/** + * A variable that controls whether the on-screen keyboard should be shown + * when text input is active. + * + * The variable can be set to the following values: + * + * - "auto": The on-screen keyboard will be shown if there is no physical + * keyboard attached. (default) + * - "0": Do not show the on-screen keyboard. + * - "1": Show the on-screen keyboard, if available. + * + * This hint must be set before SDL_StartTextInput() is called + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ENABLE_SCREEN_KEYBOARD "SDL_ENABLE_SCREEN_KEYBOARD" + +/** + * A variable containing a list of evdev devices to use if udev is not + * available. + * + * The list of devices is in the form: + * + * deviceclass:path[,deviceclass:path[,...]] + * + * where device class is an integer representing the SDL_UDEV_deviceclass and + * path is the full path to the event device. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EVDEV_DEVICES "SDL_EVDEV_DEVICES" + +/** + * A variable controlling verbosity of the logging of SDL events pushed onto + * the internal queue. + * + * The variable can be set to the following values, from least to most + * verbose: + * + * - "0": Don't log any events. (default) + * - "1": Log most events (other than the really spammy ones). + * - "2": Include mouse and finger motion events. + * + * This is generally meant to be used to debug SDL itself, but can be useful + * for application developers that need better visibility into what is going + * on in the event queue. Logged events are sent through SDL_Log(), which + * means by default they appear on stdout on most platforms or maybe + * OutputDebugString() on Windows, and can be funneled by the app with + * SDL_SetLogOutputFunction(), etc. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EVENT_LOGGING "SDL_EVENT_LOGGING" + +/** + * A variable controlling whether raising the window should be done more + * forcefully. + * + * The variable can be set to the following values: + * + * - "0": Honor the OS policy for raising windows. (default) + * - "1": Force the window to be raised, overriding any OS policy. + * + * At present, this is only an issue under MS Windows, which makes it nearly + * impossible to programmatically move a window to the foreground, for + * "security" reasons. See http://stackoverflow.com/a/34414846 for a + * discussion. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_FORCE_RAISEWINDOW "SDL_FORCE_RAISEWINDOW" + +/** + * A variable controlling how 3D acceleration is used to accelerate the SDL + * screen surface. + * + * SDL can try to accelerate the SDL screen surface by using streaming + * textures with a 3D rendering engine. This variable controls whether and how + * this is done. + * + * The variable can be set to the following values: + * + * - "0": Disable 3D acceleration + * - "1": Enable 3D acceleration, using the default renderer. (default) + * - "X": Enable 3D acceleration, using X where X is one of the valid + * rendering drivers. (e.g. "direct3d", "opengl", etc.) + * + * This hint should be set before calling SDL_GetWindowSurface() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_FRAMEBUFFER_ACCELERATION "SDL_FRAMEBUFFER_ACCELERATION" + +/** + * A variable that lets you manually hint extra gamecontroller db entries. + * + * The variable should be newline delimited rows of gamecontroller config + * data, see SDL_gamepad.h + * + * You can update mappings after SDL is initialized with + * SDL_GetGamepadMappingForGUID() and SDL_AddGamepadMapping() + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLERCONFIG "SDL_GAMECONTROLLERCONFIG" + +/** + * A variable that lets you provide a file with extra gamecontroller db + * entries. + * + * The file should contain lines of gamecontroller config data, see + * SDL_gamepad.h + * + * You can update mappings after SDL is initialized with + * SDL_GetGamepadMappingForGUID() and SDL_AddGamepadMapping() + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLERCONFIG_FILE "SDL_GAMECONTROLLERCONFIG_FILE" + +/** + * A variable that overrides the automatic controller type detection. + * + * The variable should be comma separated entries, in the form: VID/PID=type + * + * The VID and PID should be hexadecimal with exactly 4 digits, e.g. 0x00fd + * + * This hint affects what low level protocol is used with the HIDAPI driver. + * + * The variable can be set to the following values: + * + * - "Xbox360" + * - "XboxOne" + * - "PS3" + * - "PS4" + * - "PS5" + * - "SwitchPro" + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLERTYPE "SDL_GAMECONTROLLERTYPE" + +/** + * A variable containing a list of devices to skip when scanning for game + * controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * 0xAAAA/0xBBBB,0xCCCC/0xDDDD + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLER_IGNORE_DEVICES "SDL_GAMECONTROLLER_IGNORE_DEVICES" + +/** + * If set, all devices will be skipped when scanning for game controllers + * except for the ones listed in this variable. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * 0xAAAA/0xBBBB,0xCCCC/0xDDDD + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLER_IGNORE_DEVICES_EXCEPT "SDL_GAMECONTROLLER_IGNORE_DEVICES_EXCEPT" + +/** + * A variable that controls whether the device's built-in accelerometer and + * gyro should be used as sensors for gamepads. + * + * The variable can be set to the following values: + * + * - "0": Sensor fusion is disabled + * - "1": Sensor fusion is enabled for all controllers that lack sensors + * + * Or the variable can be a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * 0xAAAA/0xBBBB,0xCCCC/0xDDDD + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before a gamepad is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLER_SENSOR_FUSION "SDL_GAMECONTROLLER_SENSOR_FUSION" + +/** + * This variable sets the default text of the TextInput window on GDK + * platforms. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_DEFAULT_TEXT "SDL_GDK_TEXTINPUT_DEFAULT_TEXT" + +/** + * This variable sets the description of the TextInput window on GDK + * platforms. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_DESCRIPTION "SDL_GDK_TEXTINPUT_DESCRIPTION" + +/** + * This variable sets the maximum input length of the TextInput window on GDK + * platforms. + * + * The value must be a stringified integer, for example "10" to allow for up + * to 10 characters of text input. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_MAX_LENGTH "SDL_GDK_TEXTINPUT_MAX_LENGTH" + +/** + * This variable sets the input scope of the TextInput window on GDK + * platforms. + * + * Set this hint to change the XGameUiTextEntryInputScope value that will be + * passed to the window creation function. The value must be a stringified + * integer, for example "0" for XGameUiTextEntryInputScope::Default. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_SCOPE "SDL_GDK_TEXTINPUT_SCOPE" + +/** + * This variable sets the title of the TextInput window on GDK platforms. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_TITLE "SDL_GDK_TEXTINPUT_TITLE" + +/** + * A variable to control whether HIDAPI uses libusb for device access. + * + * By default libusb will only be used for a few devices that require direct + * USB access, and this can be controlled with + * SDL_HINT_HIDAPI_LIBUSB_WHITELIST. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI will not use libusb for device access. + * - "1": HIDAPI will use libusb for device access if available. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_LIBUSB "SDL_HIDAPI_LIBUSB" + +/** + * A variable to control whether HIDAPI uses libusb only for whitelisted + * devices. + * + * By default libusb will only be used for a few devices that require direct + * USB access. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI will use libusb for all device access. + * - "1": HIDAPI will use libusb only for whitelisted devices. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_LIBUSB_WHITELIST "SDL_HIDAPI_LIBUSB_WHITELIST" + +/** + * A variable to control whether HIDAPI uses udev for device detection. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI will poll for device changes. + * - "1": HIDAPI will use udev for device detection. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_UDEV "SDL_HIDAPI_UDEV" + +/** + * A variable that specifies a GPU backend to use. + * + * By default, SDL will try all available GPU backends in a reasonable order + * until it finds one that can work, but this hint allows the app or user to + * force a specific target, such as "direct3d12" if, say, your hardware + * supports Vulkan but you want to try using D3D12 instead. + * + * This hint should be set before any GPU functions are called. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GPU_DRIVER "SDL_GPU_DRIVER" + +/** + * A variable to control whether SDL_hid_enumerate() enumerates all HID + * devices or only controllers. + * + * The variable can be set to the following values: + * + * - "0": SDL_hid_enumerate() will enumerate all HID devices. + * - "1": SDL_hid_enumerate() will only enumerate controllers. (default) + * + * By default SDL will only enumerate controllers, to reduce risk of hanging + * or crashing on devices with bad drivers and avoiding macOS keyboard capture + * permission prompts. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_ENUMERATE_ONLY_CONTROLLERS "SDL_HIDAPI_ENUMERATE_ONLY_CONTROLLERS" + +/** + * A variable containing a list of devices to ignore in SDL_hid_enumerate(). + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * For example, to ignore the Shanwan DS3 controller and any Valve controller, + * you might use the string "0x2563/0x0523,0x28de/0x0000" + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_IGNORE_DEVICES "SDL_HIDAPI_IGNORE_DEVICES" + +/** + * A variable describing what IME UI elements the application can display. + * + * By default IME UI is handled using native components by the OS where + * possible, however this can interfere with or not be visible when exclusive + * fullscreen mode is used. + * + * The variable can be set to a comma separated list containing the following + * items: + * + * - "none" or "0": The application can't render any IME elements, and native + * UI should be used. (default) + * - "composition": The application handles SDL_EVENT_TEXT_EDITING events and + * can render the composition text. + * - "candidates": The application handles SDL_EVENT_TEXT_EDITING_CANDIDATES + * and can render the candidate list. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_IME_IMPLEMENTED_UI "SDL_IME_IMPLEMENTED_UI" + +/** + * A variable controlling whether the home indicator bar on iPhone X should be + * hidden. + * + * The variable can be set to the following values: + * + * - "0": The indicator bar is not hidden. (default for windowed applications) + * - "1": The indicator bar is hidden and is shown when the screen is touched + * (useful for movie playback applications). + * - "2": The indicator bar is dim and the first swipe makes it visible and + * the second swipe performs the "home" action. (default for fullscreen + * applications) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_IOS_HIDE_HOME_INDICATOR "SDL_IOS_HIDE_HOME_INDICATOR" + +/** + * A variable that lets you enable joystick (and gamecontroller) events even + * when your app is in the background. + * + * The variable can be set to the following values: + * + * - "0": Disable joystick & gamecontroller input events when the application + * is in the background. (default) + * - "1": Enable joystick & gamecontroller input events when the application + * is in the background. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS "SDL_JOYSTICK_ALLOW_BACKGROUND_EVENTS" + +/** + * A variable containing a list of arcade stick style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ARCADESTICK_DEVICES "SDL_JOYSTICK_ARCADESTICK_DEVICES" + +/** + * A variable containing a list of devices that are not arcade stick style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_ARCADESTICK_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ARCADESTICK_DEVICES_EXCLUDED "SDL_JOYSTICK_ARCADESTICK_DEVICES_EXCLUDED" + +/** + * A variable containing a list of devices that should not be considered + * joysticks. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_BLACKLIST_DEVICES "SDL_JOYSTICK_BLACKLIST_DEVICES" + +/** + * A variable containing a list of devices that should be considered + * joysticks. + * + * This will override SDL_HINT_JOYSTICK_BLACKLIST_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_BLACKLIST_DEVICES_EXCLUDED "SDL_JOYSTICK_BLACKLIST_DEVICES_EXCLUDED" + +/** + * A variable containing a comma separated list of devices to open as + * joysticks. + * + * This variable is currently only used by the Linux joystick driver. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_DEVICE "SDL_JOYSTICK_DEVICE" + +/** + * A variable controlling whether enhanced reports should be used for + * controllers when using the HIDAPI driver. + * + * Enhanced reports allow rumble and effects on Bluetooth PlayStation + * controllers and gyro on Nintendo Switch controllers, but break Windows + * DirectInput for other applications that don't use SDL. + * + * Once enhanced reports are enabled, they can't be disabled on PlayStation + * controllers without power cycling the controller. + * + * The variable can be set to the following values: + * + * - "0": enhanced reports are not enabled. + * - "1": enhanced reports are enabled. (default) + * - "auto": enhanced features are advertised to the application, but SDL + * doesn't change the controller report mode unless the application uses + * them. + * + * This hint can be enabled anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ENHANCED_REPORTS "SDL_JOYSTICK_ENHANCED_REPORTS" + +/** + * A variable containing a list of flightstick style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of @file, in which case the named file + * will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_FLIGHTSTICK_DEVICES "SDL_JOYSTICK_FLIGHTSTICK_DEVICES" + +/** + * A variable containing a list of devices that are not flightstick style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_FLIGHTSTICK_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_FLIGHTSTICK_DEVICES_EXCLUDED "SDL_JOYSTICK_FLIGHTSTICK_DEVICES_EXCLUDED" + +/** + * A variable controlling whether GameInput should be used for controller + * handling on Windows. + * + * The variable can be set to the following values: + * + * - "0": GameInput is not used. + * - "1": GameInput is used. + * + * The default is "1" on GDK platforms, and "0" otherwise. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_GAMEINPUT "SDL_JOYSTICK_GAMEINPUT" + +/** + * A variable containing a list of devices known to have a GameCube form + * factor. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_GAMECUBE_DEVICES "SDL_JOYSTICK_GAMECUBE_DEVICES" + +/** + * A variable containing a list of devices known not to have a GameCube form + * factor. + * + * This will override SDL_HINT_JOYSTICK_GAMECUBE_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_GAMECUBE_DEVICES_EXCLUDED "SDL_JOYSTICK_GAMECUBE_DEVICES_EXCLUDED" + +/** + * A variable controlling whether the HIDAPI joystick drivers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI drivers are not used. + * - "1": HIDAPI drivers are used. (default) + * + * This variable is the default for all drivers, but can be overridden by the + * hints for specific drivers below. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI "SDL_JOYSTICK_HIDAPI" + +/** + * A variable controlling whether Nintendo Switch Joy-Con controllers will be + * combined into a single Pro-like controller when using the HIDAPI driver. + * + * The variable can be set to the following values: + * + * - "0": Left and right Joy-Con controllers will not be combined and each + * will be a mini-gamepad. + * - "1": Left and right Joy-Con controllers will be combined into a single + * controller. (default) + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_COMBINE_JOY_CONS "SDL_JOYSTICK_HIDAPI_COMBINE_JOY_CONS" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo GameCube + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE "SDL_JOYSTICK_HIDAPI_GAMECUBE" + +/** + * A variable controlling whether rumble is used to implement the GameCube + * controller's 3 rumble modes, Stop(0), Rumble(1), and StopHard(2). + * + * This is useful for applications that need full compatibility for things + * like ADSR envelopes. - Stop is implemented by setting low_frequency_rumble + * to 0 and high_frequency_rumble >0 - Rumble is both at any arbitrary value - + * StopHard is implemented by setting both low_frequency_rumble and + * high_frequency_rumble to 0 + * + * The variable can be set to the following values: + * + * - "0": Normal rumble behavior is behavior is used. (default) + * - "1": Proper GameCube controller rumble behavior is used. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE "SDL_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Switch + * Joy-Cons should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_JOY_CONS "SDL_JOYSTICK_HIDAPI_JOY_CONS" + +/** + * A variable controlling whether the Home button LED should be turned on when + * a Nintendo Switch Joy-Con controller is opened. + * + * The variable can be set to the following values: + * + * - "0": home button LED is turned off + * - "1": home button LED is turned on + * + * By default the Home button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Home button LED. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_JOYCON_HOME_LED "SDL_JOYSTICK_HIDAPI_JOYCON_HOME_LED" + +/** + * A variable controlling whether the HIDAPI driver for Amazon Luna + * controllers connected via Bluetooth should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_LUNA "SDL_JOYSTICK_HIDAPI_LUNA" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Online + * classic controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_NINTENDO_CLASSIC "SDL_JOYSTICK_HIDAPI_NINTENDO_CLASSIC" + +/** + * A variable controlling whether the HIDAPI driver for PS3 controllers should + * be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI on macOS, and "0" on + * other platforms. + * + * For official Sony driver (sixaxis.sys) use + * SDL_HINT_JOYSTICK_HIDAPI_PS3_SIXAXIS_DRIVER. See + * https://github.com/ViGEm/DsHidMini for an alternative driver on Windows. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS3 "SDL_JOYSTICK_HIDAPI_PS3" + +/** + * A variable controlling whether the Sony driver (sixaxis.sys) for PS3 + * controllers (Sixaxis/DualShock 3) should be used. + * + * The variable can be set to the following values: + * + * - "0": Sony driver (sixaxis.sys) is not used. + * - "1": Sony driver (sixaxis.sys) is used. + * + * The default value is 0. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS3_SIXAXIS_DRIVER "SDL_JOYSTICK_HIDAPI_PS3_SIXAXIS_DRIVER" + +/** + * A variable controlling whether the HIDAPI driver for PS4 controllers should + * be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS4 "SDL_JOYSTICK_HIDAPI_PS4" + +/** + * A variable controlling the update rate of the PS4 controller over Bluetooth + * when using the HIDAPI driver. + * + * This defaults to 4 ms, to match the behavior over USB, and to be more + * friendly to other Bluetooth devices and older Bluetooth hardware on the + * computer. It can be set to "1" (1000Hz), "2" (500Hz) and "4" (250Hz) + * + * This hint can be set anytime, but only takes effect when extended input + * reports are enabled. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS4_REPORT_INTERVAL "SDL_JOYSTICK_HIDAPI_PS4_REPORT_INTERVAL" + +/** + * A variable controlling whether the HIDAPI driver for PS5 controllers should + * be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS5 "SDL_JOYSTICK_HIDAPI_PS5" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with a PS5 controller. + * + * The variable can be set to the following values: + * + * - "0": player LEDs are not enabled. + * - "1": player LEDs are enabled. (default) + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS5_PLAYER_LED "SDL_JOYSTICK_HIDAPI_PS5_PLAYER_LED" + +/** + * A variable controlling whether the HIDAPI driver for NVIDIA SHIELD + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SHIELD "SDL_JOYSTICK_HIDAPI_SHIELD" + +/** + * A variable controlling whether the HIDAPI driver for Google Stadia + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STADIA "SDL_JOYSTICK_HIDAPI_STADIA" + +/** + * A variable controlling whether the HIDAPI driver for Bluetooth Steam + * Controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. (default) + * - "1": HIDAPI driver is used for Steam Controllers, which requires + * Bluetooth access and may prompt the user for permission on iOS and + * Android. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAM "SDL_JOYSTICK_HIDAPI_STEAM" + +/** + * A variable controlling whether the Steam button LED should be turned on + * when a Steam controller is opened. + * + * The variable can be set to the following values: + * + * - "0": Steam button LED is turned off. + * - "1": Steam button LED is turned on. + * + * By default the Steam button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Steam button LED. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAM_HOME_LED "SDL_JOYSTICK_HIDAPI_STEAM_HOME_LED" + +/** + * A variable controlling whether the HIDAPI driver for the Steam Deck builtin + * controller should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAMDECK "SDL_JOYSTICK_HIDAPI_STEAMDECK" + +/** + * A variable controlling whether the HIDAPI driver for HORI licensed Steam + * controllers should be used. + * + * This variable can be set to the following values: "0" - HIDAPI driver is + * not used "1" - HIDAPI driver is used + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAM_HORI "SDL_JOYSTICK_HIDAPI_STEAM_HORI" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Switch + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SWITCH "SDL_JOYSTICK_HIDAPI_SWITCH" + +/** + * A variable controlling whether the Home button LED should be turned on when + * a Nintendo Switch Pro controller is opened. + * + * The variable can be set to the following values: + * + * - "0": Home button LED is turned off. + * - "1": Home button LED is turned on. + * + * By default the Home button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Home button LED. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SWITCH_HOME_LED "SDL_JOYSTICK_HIDAPI_SWITCH_HOME_LED" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with a Nintendo Switch controller. + * + * The variable can be set to the following values: + * + * - "0": Player LEDs are not enabled. + * - "1": Player LEDs are enabled. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SWITCH_PLAYER_LED "SDL_JOYSTICK_HIDAPI_SWITCH_PLAYER_LED" + +/** + * A variable controlling whether Nintendo Switch Joy-Con controllers will be + * in vertical mode when using the HIDAPI driver. + * + * The variable can be set to the following values: + * + * - "0": Left and right Joy-Con controllers will not be in vertical mode. + * (default) + * - "1": Left and right Joy-Con controllers will be in vertical mode. + * + * This hint should be set before opening a Joy-Con controller. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_VERTICAL_JOY_CONS "SDL_JOYSTICK_HIDAPI_VERTICAL_JOY_CONS" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Wii and Wii U + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * This driver doesn't work with the dolphinbar, so the default is false for + * now. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_WII "SDL_JOYSTICK_HIDAPI_WII" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with a Wii controller. + * + * The variable can be set to the following values: + * + * - "0": Player LEDs are not enabled. + * - "1": Player LEDs are enabled. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_WII_PLAYER_LED "SDL_JOYSTICK_HIDAPI_WII_PLAYER_LED" + +/** + * A variable controlling whether the HIDAPI driver for XBox controllers + * should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is "0" on Windows, otherwise the value of + * SDL_HINT_JOYSTICK_HIDAPI + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX "SDL_JOYSTICK_HIDAPI_XBOX" + +/** + * A variable controlling whether the HIDAPI driver for XBox 360 controllers + * should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360 "SDL_JOYSTICK_HIDAPI_XBOX_360" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with an Xbox 360 controller. + * + * The variable can be set to the following values: + * + * - "0": Player LEDs are not enabled. + * - "1": Player LEDs are enabled. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360_PLAYER_LED "SDL_JOYSTICK_HIDAPI_XBOX_360_PLAYER_LED" + +/** + * A variable controlling whether the HIDAPI driver for XBox 360 wireless + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX_360 + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360_WIRELESS "SDL_JOYSTICK_HIDAPI_XBOX_360_WIRELESS" + +/** + * A variable controlling whether the HIDAPI driver for XBox One controllers + * should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_ONE "SDL_JOYSTICK_HIDAPI_XBOX_ONE" + +/** + * A variable controlling whether the Home button LED should be turned on when + * an Xbox One controller is opened. + * + * The variable can be set to the following values: + * + * - "0": Home button LED is turned off. + * - "1": Home button LED is turned on. + * + * By default the Home button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Home button LED. The default brightness is 0.4. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_ONE_HOME_LED "SDL_JOYSTICK_HIDAPI_XBOX_ONE_HOME_LED" + +/** + * A variable controlling whether IOKit should be used for controller + * handling. + * + * The variable can be set to the following values: + * + * - "0": IOKit is not used. + * - "1": IOKit is used. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_IOKIT "SDL_JOYSTICK_IOKIT" + +/** + * A variable controlling whether to use the classic /dev/input/js* joystick + * interface or the newer /dev/input/event* joystick interface on Linux. + * + * The variable can be set to the following values: + * + * - "0": Use /dev/input/event* (default) + * - "1": Use /dev/input/js* + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_CLASSIC "SDL_JOYSTICK_LINUX_CLASSIC" + +/** + * A variable controlling whether joysticks on Linux adhere to their + * HID-defined deadzones or return unfiltered values. + * + * The variable can be set to the following values: + * + * - "0": Return unfiltered joystick axis values. (default) + * - "1": Return axis values with deadzones taken into account. + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_DEADZONES "SDL_JOYSTICK_LINUX_DEADZONES" + +/** + * A variable controlling whether joysticks on Linux will always treat 'hat' + * axis inputs (ABS_HAT0X - ABS_HAT3Y) as 8-way digital hats without checking + * whether they may be analog. + * + * The variable can be set to the following values: + * + * - "0": Only map hat axis inputs to digital hat outputs if the input axes + * appear to actually be digital. (default) + * - "1": Always handle the input axes numbered ABS_HAT0X to ABS_HAT3Y as + * digital hats. + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_DIGITAL_HATS "SDL_JOYSTICK_LINUX_DIGITAL_HATS" + +/** + * A variable controlling whether digital hats on Linux will apply deadzones + * to their underlying input axes or use unfiltered values. + * + * The variable can be set to the following values: + * + * - "0": Return digital hat values based on unfiltered input axis values. + * - "1": Return digital hat values with deadzones on the input axes taken + * into account. (default) + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_HAT_DEADZONES "SDL_JOYSTICK_LINUX_HAT_DEADZONES" + +/** + * A variable controlling whether GCController should be used for controller + * handling. + * + * The variable can be set to the following values: + * + * - "0": GCController is not used. + * - "1": GCController is used. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_MFI "SDL_JOYSTICK_MFI" + +/** + * A variable controlling whether the RAWINPUT joystick drivers should be used + * for better handling XInput-capable devices. + * + * The variable can be set to the following values: + * + * - "0": RAWINPUT drivers are not used. (default) + * - "1": RAWINPUT drivers are used. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_RAWINPUT "SDL_JOYSTICK_RAWINPUT" + +/** + * A variable controlling whether the RAWINPUT driver should pull correlated + * data from XInput. + * + * The variable can be set to the following values: + * + * - "0": RAWINPUT driver will only use data from raw input APIs. + * - "1": RAWINPUT driver will also pull data from XInput and + * Windows.Gaming.Input, providing better trigger axes, guide button + * presses, and rumble support for Xbox controllers. (default) + * + * This hint should be set before a gamepad is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_RAWINPUT_CORRELATE_XINPUT "SDL_JOYSTICK_RAWINPUT_CORRELATE_XINPUT" + +/** + * A variable controlling whether the ROG Chakram mice should show up as + * joysticks. + * + * The variable can be set to the following values: + * + * - "0": ROG Chakram mice do not show up as joysticks. (default) + * - "1": ROG Chakram mice show up as joysticks. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ROG_CHAKRAM "SDL_JOYSTICK_ROG_CHAKRAM" + +/** + * A variable controlling whether a separate thread should be used for + * handling joystick detection and raw input messages on Windows. + * + * The variable can be set to the following values: + * + * - "0": A separate thread is not used. + * - "1": A separate thread is used for handling raw input messages. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_THREAD "SDL_JOYSTICK_THREAD" + +/** + * A variable containing a list of throttle style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_THROTTLE_DEVICES "SDL_JOYSTICK_THROTTLE_DEVICES" + +/** + * A variable containing a list of devices that are not throttle style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_THROTTLE_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_THROTTLE_DEVICES_EXCLUDED "SDL_JOYSTICK_THROTTLE_DEVICES_EXCLUDED" + +/** + * A variable controlling whether Windows.Gaming.Input should be used for + * controller handling. + * + * The variable can be set to the following values: + * + * - "0": WGI is not used. + * - "1": WGI is used. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_WGI "SDL_JOYSTICK_WGI" + +/** + * A variable containing a list of wheel style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_WHEEL_DEVICES "SDL_JOYSTICK_WHEEL_DEVICES" + +/** + * A variable containing a list of devices that are not wheel style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_WHEEL_DEVICES and the built in device + * list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_WHEEL_DEVICES_EXCLUDED "SDL_JOYSTICK_WHEEL_DEVICES_EXCLUDED" + +/** + * A variable containing a list of devices known to have all axes centered at + * zero. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ZERO_CENTERED_DEVICES "SDL_JOYSTICK_ZERO_CENTERED_DEVICES" + +/** + * A variable containing a list of devices and their desired number of haptic + * (force feedback) enabled axis. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form plus the number of desired axes, e.g. + * + * `0xAAAA/0xBBBB/1,0xCCCC/0xDDDD/3` + * + * This hint supports a "wildcard" device that will set the number of haptic + * axes on all initialized haptic devices which were not defined explicitly in + * this hint. + * + * `0xFFFF/0xFFFF/1` + * + * This hint should be set before a controller is opened. The number of haptic + * axes won't exceed the number of real axes found on the device. + * + * \since This hint is available since SDL 3.2.5. + */ +#define SDL_HINT_JOYSTICK_HAPTIC_AXES "SDL_JOYSTICK_HAPTIC_AXES" + +/** + * A variable that controls keycode representation in keyboard events. + * + * This variable is a comma separated set of options for translating keycodes + * in events: + * + * - "none": Keycode options are cleared, this overrides other options. + * - "hide_numpad": The numpad keysyms will be translated into their + * non-numpad versions based on the current NumLock state. For example, + * SDLK_KP_4 would become SDLK_4 if SDL_KMOD_NUM is set in the event + * modifiers, and SDLK_LEFT if it is unset. + * - "french_numbers": The number row on French keyboards is inverted, so + * pressing the 1 key would yield the keycode SDLK_1, or '1', instead of + * SDLK_AMPERSAND, or '&' + * - "latin_letters": For keyboards using non-Latin letters, such as Russian + * or Thai, the letter keys generate keycodes as though it had an en_US + * layout. e.g. pressing the key associated with SDL_SCANCODE_A on a Russian + * keyboard would yield 'a' instead of a Cyrillic letter. + * + * The default value for this hint is "french_numbers,latin_letters" + * + * Some platforms like Emscripten only provide modified keycodes and the + * options are not used. + * + * These options do not affect the return value of SDL_GetKeyFromScancode() or + * SDL_GetScancodeFromKey(), they just apply to the keycode included in key + * events. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_KEYCODE_OPTIONS "SDL_KEYCODE_OPTIONS" + +/** + * A variable that controls what KMSDRM device to use. + * + * SDL might open something like "/dev/dri/cardNN" to access KMSDRM + * functionality, where "NN" is a device index number. SDL makes a guess at + * the best index to use (usually zero), but the app or user can set this hint + * to a number between 0 and 99 to force selection. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_KMSDRM_DEVICE_INDEX "SDL_KMSDRM_DEVICE_INDEX" + +/** + * A variable that controls whether SDL requires DRM master access in order to + * initialize the KMSDRM video backend. + * + * The DRM subsystem has a concept of a "DRM master" which is a DRM client + * that has the ability to set planes, set cursor, etc. When SDL is DRM + * master, it can draw to the screen using the SDL rendering APIs. Without DRM + * master, SDL is still able to process input and query attributes of attached + * displays, but it cannot change display state or draw to the screen + * directly. + * + * In some cases, it can be useful to have the KMSDRM backend even if it + * cannot be used for rendering. An app may want to use SDL for input + * processing while using another rendering API (such as an MMAL overlay on + * Raspberry Pi) or using its own code to render to DRM overlays that SDL + * doesn't support. + * + * The variable can be set to the following values: + * + * - "0": SDL will allow usage of the KMSDRM backend without DRM master. + * - "1": SDL Will require DRM master to use the KMSDRM backend. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_KMSDRM_REQUIRE_DRM_MASTER "SDL_KMSDRM_REQUIRE_DRM_MASTER" + +/** + * A variable controlling the default SDL log levels. + * + * This variable is a comma separated set of category=level tokens that define + * the default logging levels for SDL applications. + * + * The category can be a numeric category, one of "app", "error", "assert", + * "system", "audio", "video", "render", "input", "test", or `*` for any + * unspecified category. + * + * The level can be a numeric level, one of "verbose", "debug", "info", + * "warn", "error", "critical", or "quiet" to disable that category. + * + * You can omit the category if you want to set the logging level for all + * categories. + * + * If this hint isn't set, the default log levels are equivalent to: + * + * `app=info,assert=warn,test=verbose,*=error` + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_LOGGING "SDL_LOGGING" + +/** + * A variable controlling whether to force the application to become the + * foreground process when launched on macOS. + * + * The variable can be set to the following values: + * + * - "0": The application is brought to the foreground when launched. + * (default) + * - "1": The application may remain in the background when launched. + * + * This hint needs to be set before SDL_Init(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_BACKGROUND_APP "SDL_MAC_BACKGROUND_APP" + +/** + * A variable that determines whether Ctrl+Click should generate a right-click + * event on macOS. + * + * The variable can be set to the following values: + * + * - "0": Ctrl+Click does not generate a right mouse button click event. + * (default) + * - "1": Ctrl+Click generated a right mouse button click event. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK "SDL_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK" + +/** + * A variable controlling whether dispatching OpenGL context updates should + * block the dispatching thread until the main thread finishes processing on + * macOS. + * + * The variable can be set to the following values: + * + * - "0": Dispatching OpenGL context updates will block the dispatching thread + * until the main thread finishes processing. (default) + * - "1": Dispatching OpenGL context updates will allow the dispatching thread + * to continue execution. + * + * Generally you want the default, but if you have OpenGL code in a background + * thread on a Mac, and the main thread hangs because it's waiting for that + * background thread, but that background thread is also hanging because it's + * waiting for the main thread to do an update, this might fix your issue. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_OPENGL_ASYNC_DISPATCH "SDL_MAC_OPENGL_ASYNC_DISPATCH" + +/** + * A variable controlling whether the Option key on macOS should be remapped + * to act as the Alt key. + * + * The variable can be set to the following values: + * + * - "none": The Option key is not remapped to Alt. (default) + * - "only_left": Only the left Option key is remapped to Alt. + * - "only_right": Only the right Option key is remapped to Alt. + * - "both": Both Option keys are remapped to Alt. + * + * This will prevent the triggering of key compositions that rely on the + * Option key, but will still send the Alt modifier for keyboard events. In + * the case that both Alt and Option are pressed, the Option key will be + * ignored. This is particularly useful for applications like terminal + * emulators and graphical user interfaces (GUIs) that rely on Alt key + * functionality for shortcuts or navigation. This does not apply to + * SDL_GetKeyFromScancode and only has an effect if IME is enabled. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_OPTION_AS_ALT "SDL_MAC_OPTION_AS_ALT" + +/** + * A variable controlling whether SDL_EVENT_MOUSE_WHEEL event values will have + * momentum on macOS. + * + * The variable can be set to the following values: + * + * - "0": The mouse wheel events will have no momentum. (default) + * - "1": The mouse wheel events will have momentum. + * + * This hint needs to be set before SDL_Init(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_SCROLL_MOMENTUM "SDL_MAC_SCROLL_MOMENTUM" + +/** + * Request SDL_AppIterate() be called at a specific rate. + * + * If this is set to a number, it represents Hz, so "60" means try to iterate + * 60 times per second. "0" means to iterate as fast as possible. Negative + * values are illegal, but reserved, in case they are useful in a future + * revision of SDL. + * + * There are other strings that have special meaning. If set to "waitevent", + * SDL_AppIterate will not be called until new event(s) have arrived (and been + * processed by SDL_AppEvent). This can be useful for apps that are completely + * idle except in response to input. + * + * On some platforms, or if you are using SDL_main instead of SDL_AppIterate, + * this hint is ignored. When the hint can be used, it is allowed to be + * changed at any time. + * + * This defaults to 0, and specifying NULL for the hint's value will restore + * the default. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAIN_CALLBACK_RATE "SDL_MAIN_CALLBACK_RATE" + +/** + * A variable controlling whether the mouse is captured while mouse buttons + * are pressed. + * + * The variable can be set to the following values: + * + * - "0": The mouse is not captured while mouse buttons are pressed. + * - "1": The mouse is captured while mouse buttons are pressed. + * + * By default the mouse is captured while mouse buttons are pressed so if the + * mouse is dragged outside the window, the application continues to receive + * mouse events until the button is released. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_AUTO_CAPTURE "SDL_MOUSE_AUTO_CAPTURE" + +/** + * A variable setting the double click radius, in pixels. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_DOUBLE_CLICK_RADIUS "SDL_MOUSE_DOUBLE_CLICK_RADIUS" + +/** + * A variable setting the double click time, in milliseconds. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_DOUBLE_CLICK_TIME "SDL_MOUSE_DOUBLE_CLICK_TIME" + +/** + * A variable setting which system cursor to use as the default cursor. + * + * This should be an integer corresponding to the SDL_SystemCursor enum. The + * default value is zero (SDL_SYSTEM_CURSOR_DEFAULT). + * + * This hint needs to be set before SDL_Init(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_DEFAULT_SYSTEM_CURSOR "SDL_MOUSE_DEFAULT_SYSTEM_CURSOR" + +/** + * A variable controlling whether warping a hidden mouse cursor will activate + * relative mouse mode. + * + * When this hint is set, the mouse cursor is hidden, and multiple warps to + * the window center occur within a short time period, SDL will emulate mouse + * warps using relative mouse mode. This can provide smoother and more + * reliable mouse motion for some older games, which continuously calculate + * the distance travelled by the mouse pointer and warp it back to the center + * of the window, rather than using relative mouse motion. + * + * Note that relative mouse mode may have different mouse acceleration + * behavior than pointer warps. + * + * If your application needs to repeatedly warp the hidden mouse cursor at a + * high-frequency for other purposes, it should disable this hint. + * + * The variable can be set to the following values: + * + * - "0": Attempts to warp the mouse will always be made. + * - "1": Some mouse warps will be emulated by forcing relative mouse mode. + * (default) + * + * If not set, this is automatically enabled unless an application uses + * relative mouse mode directly. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_EMULATE_WARP_WITH_RELATIVE "SDL_MOUSE_EMULATE_WARP_WITH_RELATIVE" + +/** + * Allow mouse click events when clicking to focus an SDL window. + * + * The variable can be set to the following values: + * + * - "0": Ignore mouse clicks that activate a window. (default) + * - "1": Generate events for mouse clicks that activate a window. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH "SDL_MOUSE_FOCUS_CLICKTHROUGH" + +/** + * A variable setting the speed scale for mouse motion, in floating point, + * when the mouse is not in relative mode. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_NORMAL_SPEED_SCALE "SDL_MOUSE_NORMAL_SPEED_SCALE" + +/** + * A variable controlling whether relative mouse mode constrains the mouse to + * the center of the window. + * + * Constraining to the center of the window works better for FPS games and + * when the application is running over RDP. Constraining to the whole window + * works better for 2D games and increases the chance that the mouse will be + * in the correct position when using high DPI mice. + * + * The variable can be set to the following values: + * + * - "0": Relative mouse mode constrains the mouse to the window. + * - "1": Relative mouse mode constrains the mouse to the center of the + * window. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_MODE_CENTER "SDL_MOUSE_RELATIVE_MODE_CENTER" + +/** + * A variable setting the scale for mouse motion, in floating point, when the + * mouse is in relative mode. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_SPEED_SCALE "SDL_MOUSE_RELATIVE_SPEED_SCALE" + +/** + * A variable controlling whether the system mouse acceleration curve is used + * for relative mouse motion. + * + * The variable can be set to the following values: + * + * - "0": Relative mouse motion will be unscaled. (default) + * - "1": Relative mouse motion will be scaled using the system mouse + * acceleration curve. + * + * If SDL_HINT_MOUSE_RELATIVE_SPEED_SCALE is set, that will be applied after + * system speed scale. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_SYSTEM_SCALE "SDL_MOUSE_RELATIVE_SYSTEM_SCALE" + +/** + * A variable controlling whether a motion event should be generated for mouse + * warping in relative mode. + * + * The variable can be set to the following values: + * + * - "0": Warping the mouse will not generate a motion event in relative mode + * - "1": Warping the mouse will generate a motion event in relative mode + * + * By default warping the mouse will not generate motion events in relative + * mode. This avoids the application having to filter out large relative + * motion due to warping. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_WARP_MOTION "SDL_MOUSE_RELATIVE_WARP_MOTION" + +/** + * A variable controlling whether the hardware cursor stays visible when + * relative mode is active. + * + * This variable can be set to the following values: + * + * - "0": The cursor will be hidden while relative mode is active (default) + * - "1": The cursor will remain visible while relative mode is active + * + * Note that for systems without raw hardware inputs, relative mode is + * implemented using warping, so the hardware cursor will visibly warp between + * frames if this is enabled on those systems. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_CURSOR_VISIBLE "SDL_MOUSE_RELATIVE_CURSOR_VISIBLE" + +/** + * A variable controlling whether mouse events should generate synthetic touch + * events. + * + * The variable can be set to the following values: + * + * - "0": Mouse events will not generate touch events. (default for desktop + * platforms) + * - "1": Mouse events will generate touch events. (default for mobile + * platforms, such as Android and iOS) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_TOUCH_EVENTS "SDL_MOUSE_TOUCH_EVENTS" + +/** + * A variable controlling whether the keyboard should be muted on the console. + * + * Normally the keyboard is muted while SDL applications are running so that + * keyboard input doesn't show up as key strokes on the console. This hint + * allows you to turn that off for debugging purposes. + * + * The variable can be set to the following values: + * + * - "0": Allow keystrokes to go through to the console. + * - "1": Mute keyboard input so it doesn't show up on the console. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MUTE_CONSOLE_KEYBOARD "SDL_MUTE_CONSOLE_KEYBOARD" + +/** + * Tell SDL not to catch the SIGINT or SIGTERM signals on POSIX platforms. + * + * The variable can be set to the following values: + * + * - "0": SDL will install a SIGINT and SIGTERM handler, and when it catches a + * signal, convert it into an SDL_EVENT_QUIT event. (default) + * - "1": SDL will not install a signal handler at all. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_NO_SIGNAL_HANDLERS "SDL_NO_SIGNAL_HANDLERS" + +/** + * Specify the OpenGL library to load. + * + * This hint should be set before creating an OpenGL window or creating an + * OpenGL context. If this hint isn't set, SDL will choose a reasonable + * default. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_OPENGL_LIBRARY "SDL_OPENGL_LIBRARY" + +/** + * Specify the EGL library to load. + * + * This hint should be set before creating an OpenGL window or creating an + * OpenGL context. This hint is only considered if SDL is using EGL to manage + * OpenGL contexts. If this hint isn't set, SDL will choose a reasonable + * default. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EGL_LIBRARY "SDL_EGL_LIBRARY" + +/** + * A variable controlling what driver to use for OpenGL ES contexts. + * + * On some platforms, currently Windows and X11, OpenGL drivers may support + * creating contexts with an OpenGL ES profile. By default SDL uses these + * profiles, when available, otherwise it attempts to load an OpenGL ES + * library, e.g. that provided by the ANGLE project. This variable controls + * whether SDL follows this default behaviour or will always load an OpenGL ES + * library. + * + * Circumstances where this is useful include - Testing an app with a + * particular OpenGL ES implementation, e.g ANGLE, or emulator, e.g. those + * from ARM, Imagination or Qualcomm. - Resolving OpenGL ES function addresses + * at link time by linking with the OpenGL ES library instead of querying them + * at run time with SDL_GL_GetProcAddress(). + * + * Caution: for an application to work with the default behaviour across + * different OpenGL drivers it must query the OpenGL ES function addresses at + * run time using SDL_GL_GetProcAddress(). + * + * This variable is ignored on most platforms because OpenGL ES is native or + * not supported. + * + * The variable can be set to the following values: + * + * - "0": Use ES profile of OpenGL, if available. (default) + * - "1": Load OpenGL ES library using the default library names. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_OPENGL_ES_DRIVER "SDL_OPENGL_ES_DRIVER" + +/** + * Mechanism to specify openvr_api library location + * + * By default, when using the OpenVR driver, it will search for the API + * library in the current folder. But, if you wish to use a system API you can + * specify that by using this hint. This should be the full or relative path + * to a .dll on Windows or .so on Linux. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_OPENVR_LIBRARY "SDL_OPENVR_LIBRARY" + +/** + * A variable controlling which orientations are allowed on iOS/Android. + * + * In some circumstances it is necessary to be able to explicitly control + * which UI orientations are allowed. + * + * This variable is a space delimited list of the following values: + * + * - "LandscapeLeft" + * - "LandscapeRight" + * - "Portrait" + * - "PortraitUpsideDown" + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ORIENTATIONS "SDL_ORIENTATIONS" + +/** + * A variable controlling the use of a sentinel event when polling the event + * queue. + * + * When polling for events, SDL_PumpEvents is used to gather new events from + * devices. If a device keeps producing new events between calls to + * SDL_PumpEvents, a poll loop will become stuck until the new events stop. + * This is most noticeable when moving a high frequency mouse. + * + * The variable can be set to the following values: + * + * - "0": Disable poll sentinels. + * - "1": Enable poll sentinels. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_POLL_SENTINEL "SDL_POLL_SENTINEL" + +/** + * Override for SDL_GetPreferredLocales(). + * + * If set, this will be favored over anything the OS might report for the + * user's preferred locales. Changing this hint at runtime will not generate a + * SDL_EVENT_LOCALE_CHANGED event (but if you can change the hint, you can + * push your own event, if you want). + * + * The format of this hint is a comma-separated list of language and locale, + * combined with an underscore, as is a common format: "en_GB". Locale is + * optional: "en". So you might have a list like this: "en_GB,jp,es_PT" + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_PREFERRED_LOCALES "SDL_PREFERRED_LOCALES" + +/** + * A variable that decides whether to send SDL_EVENT_QUIT when closing the + * last window. + * + * The variable can be set to the following values: + * + * - "0": SDL will not send an SDL_EVENT_QUIT event when the last window is + * requesting to close. Note that in this case, there are still other + * legitimate reasons one might get an SDL_EVENT_QUIT event: choosing "Quit" + * from the macOS menu bar, sending a SIGINT (ctrl-c) on Unix, etc. + * - "1": SDL will send a quit event when the last window is requesting to + * close. (default) + * + * If there is at least one active system tray icon, SDL_EVENT_QUIT will + * instead be sent when both the last window will be closed and the last tray + * icon will be destroyed. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_QUIT_ON_LAST_WINDOW_CLOSE "SDL_QUIT_ON_LAST_WINDOW_CLOSE" + +/** + * A variable controlling whether the Direct3D device is initialized for + * thread-safe operations. + * + * The variable can be set to the following values: + * + * - "0": Thread-safety is not enabled. (default) + * - "1": Thread-safety is enabled. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_DIRECT3D_THREADSAFE "SDL_RENDER_DIRECT3D_THREADSAFE" + +/** + * A variable controlling whether to enable Direct3D 11+'s Debug Layer. + * + * This variable does not have any effect on the Direct3D 9 based renderer. + * + * The variable can be set to the following values: + * + * - "0": Disable Debug Layer use. (default) + * - "1": Enable Debug Layer use. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_DIRECT3D11_DEBUG "SDL_RENDER_DIRECT3D11_DEBUG" + +/** + * A variable controlling whether to enable Vulkan Validation Layers. + * + * This variable can be set to the following values: + * + * - "0": Disable Validation Layer use + * - "1": Enable Validation Layer use + * + * By default, SDL does not use Vulkan Validation Layers. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_VULKAN_DEBUG "SDL_RENDER_VULKAN_DEBUG" + +/** + * A variable controlling whether to create the GPU device in debug mode. + * + * This variable can be set to the following values: + * + * - "0": Disable debug mode use (default) + * - "1": Enable debug mode use + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_GPU_DEBUG "SDL_RENDER_GPU_DEBUG" + +/** + * A variable controlling whether to prefer a low-power GPU on multi-GPU + * systems. + * + * This variable can be set to the following values: + * + * - "0": Prefer high-performance GPU (default) + * - "1": Prefer low-power GPU + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_GPU_LOW_POWER "SDL_RENDER_GPU_LOW_POWER" + +/** + * A variable specifying which render driver to use. + * + * If the application doesn't pick a specific renderer to use, this variable + * specifies the name of the preferred renderer. If the preferred renderer + * can't be initialized, creating a renderer will fail. + * + * This variable is case insensitive and can be set to the following values: + * + * - "direct3d" + * - "direct3d11" + * - "direct3d12" + * - "opengl" + * - "opengles2" + * - "opengles" + * - "metal" + * - "vulkan" + * - "gpu" + * - "software" + * + * This hint accepts a comma-separated list of driver names, and each will be + * tried in the order listed when creating a renderer until one succeeds or + * all of them fail. + * + * The default varies by platform, but it's the first one in the list that is + * available on the current platform. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_DRIVER "SDL_RENDER_DRIVER" + +/** + * A variable controlling how the 2D render API renders lines. + * + * The variable can be set to the following values: + * + * - "0": Use the default line drawing method (Bresenham's line algorithm) + * - "1": Use the driver point API using Bresenham's line algorithm (correct, + * draws many points) + * - "2": Use the driver line API (occasionally misses line endpoints based on + * hardware driver quirks + * - "3": Use the driver geometry API (correct, draws thicker diagonal lines) + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_LINE_METHOD "SDL_RENDER_LINE_METHOD" + +/** + * A variable controlling whether the Metal render driver select low power + * device over default one. + * + * The variable can be set to the following values: + * + * - "0": Use the preferred OS device. (default) + * - "1": Select a low power device. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_METAL_PREFER_LOW_POWER_DEVICE "SDL_RENDER_METAL_PREFER_LOW_POWER_DEVICE" + +/** + * A variable controlling whether updates to the SDL screen surface should be + * synchronized with the vertical refresh, to avoid tearing. + * + * This hint overrides the application preference when creating a renderer. + * + * The variable can be set to the following values: + * + * - "0": Disable vsync. (default) + * - "1": Enable vsync. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_VSYNC "SDL_RENDER_VSYNC" + +/** + * A variable to control whether the return key on the soft keyboard should + * hide the soft keyboard on Android and iOS. + * + * This hint sets the default value of SDL_PROP_TEXTINPUT_MULTILINE_BOOLEAN. + * + * The variable can be set to the following values: + * + * - "0": The return key will be handled as a key event. (default) + * - "1": The return key will hide the keyboard. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RETURN_KEY_HIDES_IME "SDL_RETURN_KEY_HIDES_IME" + +/** + * A variable containing a list of ROG gamepad capable mice. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_ROG_GAMEPAD_MICE_EXCLUDED + */ +#define SDL_HINT_ROG_GAMEPAD_MICE "SDL_ROG_GAMEPAD_MICE" + +/** + * A variable containing a list of devices that are not ROG gamepad capable + * mice. + * + * This will override SDL_HINT_ROG_GAMEPAD_MICE and the built in device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ROG_GAMEPAD_MICE_EXCLUDED "SDL_ROG_GAMEPAD_MICE_EXCLUDED" + +/** + * A variable controlling which Dispmanx layer to use on a Raspberry PI. + * + * Also known as Z-order. The variable can take a negative or positive value. + * The default is 10000. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RPI_VIDEO_LAYER "SDL_RPI_VIDEO_LAYER" + +/** + * Specify an "activity name" for screensaver inhibition. + * + * Some platforms, notably Linux desktops, list the applications which are + * inhibiting the screensaver or other power-saving features. + * + * This hint lets you specify the "activity name" sent to the OS when + * SDL_DisableScreenSaver() is used (or the screensaver is automatically + * disabled). The contents of this hint are used when the screensaver is + * disabled. You should use a string that describes what your program is doing + * (and, therefore, why the screensaver is disabled). For example, "Playing a + * game" or "Watching a video". + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default: "Playing a game" or something similar. + * + * This hint should be set before calling SDL_DisableScreenSaver() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_SCREENSAVER_INHIBIT_ACTIVITY_NAME "SDL_SCREENSAVER_INHIBIT_ACTIVITY_NAME" + +/** + * A variable controlling whether SDL calls dbus_shutdown() on quit. + * + * This is useful as a debug tool to validate memory leaks, but shouldn't ever + * be set in production applications, as other libraries used by the + * application might use dbus under the hood and this can cause crashes if + * they continue after SDL_Quit(). + * + * The variable can be set to the following values: + * + * - "0": SDL will not call dbus_shutdown() on quit. (default) + * - "1": SDL will call dbus_shutdown() on quit. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_SHUTDOWN_DBUS_ON_QUIT "SDL_SHUTDOWN_DBUS_ON_QUIT" + +/** + * A variable that specifies a backend to use for title storage. + * + * By default, SDL will try all available storage backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target, such as "pc" if, say, you are on Steam but + * want to avoid SteamRemoteStorage for title data. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_STORAGE_TITLE_DRIVER "SDL_STORAGE_TITLE_DRIVER" + +/** + * A variable that specifies a backend to use for user storage. + * + * By default, SDL will try all available storage backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target, such as "pc" if, say, you are on Steam but + * want to avoid SteamRemoteStorage for user data. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_STORAGE_USER_DRIVER "SDL_STORAGE_USER_DRIVER" + +/** + * Specifies whether SDL_THREAD_PRIORITY_TIME_CRITICAL should be treated as + * realtime. + * + * On some platforms, like Linux, a realtime priority thread may be subject to + * restrictions that require special handling by the application. This hint + * exists to let SDL know that the app is prepared to handle said + * restrictions. + * + * On Linux, SDL will apply the following configuration to any thread that + * becomes realtime: + * + * - The SCHED_RESET_ON_FORK bit will be set on the scheduling policy, + * - An RLIMIT_RTTIME budget will be configured to the rtkit specified limit. + * - Exceeding this limit will result in the kernel sending SIGKILL to the + * app, refer to the man pages for more information. + * + * The variable can be set to the following values: + * + * - "0": default platform specific behaviour + * - "1": Force SDL_THREAD_PRIORITY_TIME_CRITICAL to a realtime scheduling + * policy + * + * This hint should be set before calling SDL_SetCurrentThreadPriority() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_THREAD_FORCE_REALTIME_TIME_CRITICAL "SDL_THREAD_FORCE_REALTIME_TIME_CRITICAL" + +/** + * A string specifying additional information to use with + * SDL_SetCurrentThreadPriority. + * + * By default SDL_SetCurrentThreadPriority will make appropriate system + * changes in order to apply a thread priority. For example on systems using + * pthreads the scheduler policy is changed automatically to a policy that + * works well with a given priority. Code which has specific requirements can + * override SDL's default behavior with this hint. + * + * pthread hint values are "current", "other", "fifo" and "rr". Currently no + * other platform hint values are defined but may be in the future. + * + * On Linux, the kernel may send SIGKILL to realtime tasks which exceed the + * distro configured execution budget for rtkit. This budget can be queried + * through RLIMIT_RTTIME after calling SDL_SetCurrentThreadPriority(). + * + * This hint should be set before calling SDL_SetCurrentThreadPriority() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_THREAD_PRIORITY_POLICY "SDL_THREAD_PRIORITY_POLICY" + +/** + * A variable that controls the timer resolution, in milliseconds. + * + * The higher resolution the timer, the more frequently the CPU services timer + * interrupts, and the more precise delays are, but this takes up power and + * CPU time. This hint is only used on Windows. + * + * See this blog post for more information: + * http://randomascii.wordpress.com/2013/07/08/windows-timer-resolution-megawatts-wasted/ + * + * The default value is "1". + * + * If this variable is set to "0", the system timer resolution is not set. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TIMER_RESOLUTION "SDL_TIMER_RESOLUTION" + +/** + * A variable controlling whether touch events should generate synthetic mouse + * events. + * + * The variable can be set to the following values: + * + * - "0": Touch events will not generate mouse events. + * - "1": Touch events will generate mouse events. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TOUCH_MOUSE_EVENTS "SDL_TOUCH_MOUSE_EVENTS" + +/** + * A variable controlling whether trackpads should be treated as touch + * devices. + * + * On macOS (and possibly other platforms in the future), SDL will report + * touches on a trackpad as mouse input, which is generally what users expect + * from this device; however, these are often actually full multitouch-capable + * touch devices, so it might be preferable to some apps to treat them as + * such. + * + * The variable can be set to the following values: + * + * - "0": Trackpad will send mouse events. (default) + * - "1": Trackpad will send touch events. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TRACKPAD_IS_TOUCH_ONLY "SDL_TRACKPAD_IS_TOUCH_ONLY" + +/** + * A variable controlling whether the Android / tvOS remotes should be listed + * as joystick devices, instead of sending keyboard events. + * + * The variable can be set to the following values: + * + * - "0": Remotes send enter/escape/arrow key events. + * - "1": Remotes are available as 2 axis, 2 button joysticks. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TV_REMOTE_AS_JOYSTICK "SDL_TV_REMOTE_AS_JOYSTICK" + +/** + * A variable controlling whether the screensaver is enabled. + * + * The variable can be set to the following values: + * + * - "0": Disable screensaver. (default) + * - "1": Enable screensaver. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_ALLOW_SCREENSAVER "SDL_VIDEO_ALLOW_SCREENSAVER" + +/** + * A comma separated list containing the names of the displays that SDL should + * sort to the front of the display list. + * + * When this hint is set, displays with matching name strings will be + * prioritized in the list of displays, as exposed by calling + * SDL_GetDisplays(), with the first listed becoming the primary display. The + * naming convention can vary depending on the environment, but it is usually + * a connector name (e.g. 'DP-1', 'DP-2', 'HDMI-A-1',etc...). + * + * On Wayland and X11 desktops, the connector names associated with displays + * can typically be found by using the `xrandr` utility. + * + * This hint is currently supported on the following drivers: + * + * - KMSDRM (kmsdrm) + * - Wayland (wayland) + * - X11 (x11) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DISPLAY_PRIORITY "SDL_VIDEO_DISPLAY_PRIORITY" + +/** + * Tell the video driver that we only want a double buffer. + * + * By default, most lowlevel 2D APIs will use a triple buffer scheme that + * wastes no CPU time on waiting for vsync after issuing a flip, but + * introduces a frame of latency. On the other hand, using a double buffer + * scheme instead is recommended for cases where low latency is an important + * factor because we save a whole frame of latency. + * + * We do so by waiting for vsync immediately after issuing a flip, usually + * just after eglSwapBuffers call in the backend's *_SwapWindow function. + * + * This hint is currently supported on the following drivers: + * + * - Raspberry Pi (raspberrypi) + * - Wayland (wayland) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DOUBLE_BUFFER "SDL_VIDEO_DOUBLE_BUFFER" + +/** + * A variable that specifies a video backend to use. + * + * By default, SDL will try all available video backends in a reasonable order + * until it finds one that can work, but this hint allows the app or user to + * force a specific target, such as "x11" if, say, you are on Wayland but want + * to try talking to the X server instead. + * + * This hint accepts a comma-separated list of driver names, and each will be + * tried in the order listed during init, until one succeeds or all of them + * fail. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DRIVER "SDL_VIDEO_DRIVER" + +/** + * A variable controlling whether the dummy video driver saves output frames. + * + * - "0": Video frames are not saved to disk. (default) + * - "1": Video frames are saved to files in the format "SDL_windowX-Y.bmp", + * where X is the window ID, and Y is the frame number. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DUMMY_SAVE_FRAMES "SDL_VIDEO_DUMMY_SAVE_FRAMES" + +/** + * If eglGetPlatformDisplay fails, fall back to calling eglGetDisplay. + * + * The variable can be set to one of the following values: + * + * - "0": Do not fall back to eglGetDisplay. + * - "1": Fall back to eglGetDisplay if eglGetPlatformDisplay fails. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_EGL_ALLOW_GETDISPLAY_FALLBACK "SDL_VIDEO_EGL_ALLOW_GETDISPLAY_FALLBACK" + +/** + * A variable controlling whether the OpenGL context should be created with + * EGL. + * + * The variable can be set to the following values: + * + * - "0": Use platform-specific GL context creation API (GLX, WGL, CGL, etc). + * (default) + * - "1": Use EGL + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_FORCE_EGL "SDL_VIDEO_FORCE_EGL" + +/** + * A variable that specifies the policy for fullscreen Spaces on macOS. + * + * The variable can be set to the following values: + * + * - "0": Disable Spaces support (FULLSCREEN_DESKTOP won't use them and + * SDL_WINDOW_RESIZABLE windows won't offer the "fullscreen" button on their + * titlebars). + * - "1": Enable Spaces support (FULLSCREEN_DESKTOP will use them and + * SDL_WINDOW_RESIZABLE windows will offer the "fullscreen" button on their + * titlebars). (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_MAC_FULLSCREEN_SPACES "SDL_VIDEO_MAC_FULLSCREEN_SPACES" + +/** + * A variable that specifies the menu visibility when a window is fullscreen + * in Spaces on macOS. + * + * The variable can be set to the following values: + * + * - "0": The menu will be hidden when the window is in a fullscreen space, + * and not accessible by moving the mouse to the top of the screen. + * - "1": The menu will be accessible when the window is in a fullscreen + * space. + * - "auto": The menu will be hidden if fullscreen mode was toggled on + * programmatically via `SDL_SetWindowFullscreen()`, and accessible if + * fullscreen was entered via the "fullscreen" button on the window title + * bar. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_MAC_FULLSCREEN_MENU_VISIBILITY "SDL_VIDEO_MAC_FULLSCREEN_MENU_VISIBILITY" + +/** + * A variable controlling whether fullscreen windows are minimized when they + * lose focus. + * + * The variable can be set to the following values: + * + * - "0": Fullscreen windows will not be minimized when they lose focus. + * (default) + * - "1": Fullscreen windows are minimized when they lose focus. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS "SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS" + +/** + * A variable controlling whether the offscreen video driver saves output + * frames. + * + * This only saves frames that are generated using software rendering, not + * accelerated OpenGL rendering. + * + * - "0": Video frames are not saved to disk. (default) + * - "1": Video frames are saved to files in the format "SDL_windowX-Y.bmp", + * where X is the window ID, and Y is the frame number. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_OFFSCREEN_SAVE_FRAMES "SDL_VIDEO_OFFSCREEN_SAVE_FRAMES" + +/** + * A variable controlling whether all window operations will block until + * complete. + * + * Window systems that run asynchronously may not have the results of window + * operations that resize or move the window applied immediately upon the + * return of the requesting function. Setting this hint will cause such + * operations to block after every call until the pending operation has + * completed. Setting this to '1' is the equivalent of calling + * SDL_SyncWindow() after every function call. + * + * Be aware that amount of time spent blocking while waiting for window + * operations to complete can be quite lengthy, as animations may have to + * complete, which can take upwards of multiple seconds in some cases. + * + * The variable can be set to the following values: + * + * - "0": Window operations are non-blocking. (default) + * - "1": Window operations will block until completed. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_SYNC_WINDOW_OPERATIONS "SDL_VIDEO_SYNC_WINDOW_OPERATIONS" + +/** + * A variable controlling whether the libdecor Wayland backend is allowed to + * be used. + * + * libdecor is used over xdg-shell when xdg-decoration protocol is + * unavailable. + * + * The variable can be set to the following values: + * + * - "0": libdecor use is disabled. + * - "1": libdecor use is enabled. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_ALLOW_LIBDECOR "SDL_VIDEO_WAYLAND_ALLOW_LIBDECOR" + +/** + * A variable controlling whether video mode emulation is enabled under + * Wayland. + * + * When this hint is set, a standard set of emulated CVT video modes will be + * exposed for use by the application. If it is disabled, the only modes + * exposed will be the logical desktop size and, in the case of a scaled + * desktop, the native display resolution. + * + * The variable can be set to the following values: + * + * - "0": Video mode emulation is disabled. + * - "1": Video mode emulation is enabled. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_MODE_EMULATION "SDL_VIDEO_WAYLAND_MODE_EMULATION" + +/** + * A variable controlling how modes with a non-native aspect ratio are + * displayed under Wayland. + * + * When this hint is set, the requested scaling will be used when displaying + * fullscreen video modes that don't match the display's native aspect ratio. + * This is contingent on compositor viewport support. + * + * The variable can be set to the following values: + * + * - "aspect" - Video modes will be displayed scaled, in their proper aspect + * ratio, with black bars. + * - "stretch" - Video modes will be scaled to fill the entire display. + * (default) + * - "none" - Video modes will be displayed as 1:1 with no scaling. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_MODE_SCALING "SDL_VIDEO_WAYLAND_MODE_SCALING" + +/** + * A variable controlling whether the libdecor Wayland backend is preferred + * over native decorations. + * + * When this hint is set, libdecor will be used to provide window decorations, + * even if xdg-decoration is available. (Note that, by default, libdecor will + * use xdg-decoration itself if available). + * + * The variable can be set to the following values: + * + * - "0": libdecor is enabled only if server-side decorations are unavailable. + * (default) + * - "1": libdecor is always enabled if available. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_PREFER_LIBDECOR "SDL_VIDEO_WAYLAND_PREFER_LIBDECOR" + +/** + * A variable forcing non-DPI-aware Wayland windows to output at 1:1 scaling. + * + * This must be set before initializing the video subsystem. + * + * When this hint is set, Wayland windows that are not flagged as being + * DPI-aware will be output with scaling designed to force 1:1 pixel mapping. + * + * This is intended to allow legacy applications to be displayed without + * desktop scaling being applied, and has issues with certain display + * configurations, as this forces the window to behave in a way that Wayland + * desktops were not designed to accommodate: + * + * - Rounding errors can result with odd window sizes and/or desktop scales, + * which can cause the window contents to appear slightly blurry. + * - Positioning the window may be imprecise due to unit conversions and + * rounding. + * - The window may be unusably small on scaled desktops. + * - The window may jump in size when moving between displays of different + * scale factors. + * - Displays may appear to overlap when using a multi-monitor setup with + * scaling enabled. + * - Possible loss of cursor precision due to the logical size of the window + * being reduced. + * + * New applications should be designed with proper DPI awareness handling + * instead of enabling this. + * + * The variable can be set to the following values: + * + * - "0": Windows will be scaled normally. + * - "1": Windows will be forced to scale to achieve 1:1 output. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_SCALE_TO_DISPLAY "SDL_VIDEO_WAYLAND_SCALE_TO_DISPLAY" + +/** + * A variable specifying which shader compiler to preload when using the + * Chrome ANGLE binaries. + * + * SDL has EGL and OpenGL ES2 support on Windows via the ANGLE project. It can + * use two different sets of binaries, those compiled by the user from source + * or those provided by the Chrome browser. In the later case, these binaries + * require that SDL loads a DLL providing the shader compiler. + * + * The variable can be set to the following values: + * + * - "d3dcompiler_46.dll" - best for Vista or later. (default) + * - "d3dcompiler_43.dll" - for XP support. + * - "none" - do not load any library, useful if you compiled ANGLE from + * source and included the compiler in your binaries. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WIN_D3DCOMPILER "SDL_VIDEO_WIN_D3DCOMPILER" + +/** + * A variable controlling whether SDL should call XSelectInput() to enable + * input events on X11 windows wrapped by SDL windows. + * + * The variable can be set to the following values: + * + * - "0": Don't call XSelectInput(), assuming the native window code has done + * it already. + * - "1": Call XSelectInput() to enable input events. (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.10. + */ +#define SDL_HINT_VIDEO_X11_EXTERNAL_WINDOW_INPUT "SDL_VIDEO_X11_EXTERNAL_WINDOW_INPUT" + +/** + * A variable controlling whether the X11 _NET_WM_BYPASS_COMPOSITOR hint + * should be used. + * + * The variable can be set to the following values: + * + * - "0": Disable _NET_WM_BYPASS_COMPOSITOR. + * - "1": Enable _NET_WM_BYPASS_COMPOSITOR. (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR "SDL_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR" + +/** + * A variable controlling whether the X11 _NET_WM_PING protocol should be + * supported. + * + * By default SDL will use _NET_WM_PING, but for applications that know they + * will not always be able to respond to ping requests in a timely manner they + * can turn it off to avoid the window manager thinking the app is hung. + * + * The variable can be set to the following values: + * + * - "0": Disable _NET_WM_PING. + * - "1": Enable _NET_WM_PING. (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_NET_WM_PING "SDL_VIDEO_X11_NET_WM_PING" + +/** + * A variable controlling whether SDL uses DirectColor visuals. + * + * The variable can be set to the following values: + * + * - "0": Disable DirectColor visuals. + * - "1": Enable DirectColor visuals. (default) + * + * This hint should be set before initializing the video subsystem. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_NODIRECTCOLOR "SDL_VIDEO_X11_NODIRECTCOLOR" + +/** + * A variable forcing the content scaling factor for X11 displays. + * + * The variable can be set to a floating point value in the range 1.0-10.0f + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_SCALING_FACTOR "SDL_VIDEO_X11_SCALING_FACTOR" + +/** + * A variable forcing the visual ID used for X11 display modes. + * + * This hint should be set before initializing the video subsystem. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_VISUALID "SDL_VIDEO_X11_VISUALID" + +/** + * A variable forcing the visual ID chosen for new X11 windows. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_WINDOW_VISUALID "SDL_VIDEO_X11_WINDOW_VISUALID" + +/** + * A variable controlling whether the X11 XRandR extension should be used. + * + * The variable can be set to the following values: + * + * - "0": Disable XRandR. + * - "1": Enable XRandR. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_XRANDR "SDL_VIDEO_X11_XRANDR" + +/** + * A variable controlling whether touch should be enabled on the back panel of + * the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "0": Disable touch on the back panel. + * - "1": Enable touch on the back panel. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_ENABLE_BACK_TOUCH "SDL_VITA_ENABLE_BACK_TOUCH" + +/** + * A variable controlling whether touch should be enabled on the front panel + * of the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "0": Disable touch on the front panel. + * - "1": Enable touch on the front panel. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_ENABLE_FRONT_TOUCH "SDL_VITA_ENABLE_FRONT_TOUCH" + +/** + * A variable controlling the module path on the PlayStation Vita. + * + * This hint defaults to "app0:module" + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_MODULE_PATH "SDL_VITA_MODULE_PATH" + +/** + * A variable controlling whether to perform PVR initialization on the + * PlayStation Vita. + * + * - "0": Skip PVR initialization. + * - "1": Perform the normal PVR initialization. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_PVR_INIT "SDL_VITA_PVR_INIT" + +/** + * A variable overriding the resolution reported on the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "544": 544p (default) + * - "720": 725p for PSTV + * - "1080": 1088i for PSTV + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_RESOLUTION "SDL_VITA_RESOLUTION" + +/** + * A variable controlling whether OpenGL should be used instead of OpenGL ES + * on the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "0": Use OpenGL ES. (default) + * - "1": Use OpenGL. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_PVR_OPENGL "SDL_VITA_PVR_OPENGL" + +/** + * A variable controlling which touchpad should generate synthetic mouse + * events. + * + * The variable can be set to the following values: + * + * - "0": Only front touchpad should generate mouse events. (default) + * - "1": Only back touchpad should generate mouse events. + * - "2": Both touchpads should generate mouse events. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_TOUCH_MOUSE_DEVICE "SDL_VITA_TOUCH_MOUSE_DEVICE" + +/** + * A variable overriding the display index used in SDL_Vulkan_CreateSurface() + * + * The display index starts at 0, which is the default. + * + * This hint should be set before calling SDL_Vulkan_CreateSurface() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VULKAN_DISPLAY "SDL_VULKAN_DISPLAY" + +/** + * Specify the Vulkan library to load. + * + * This hint should be set before creating a Vulkan window or calling + * SDL_Vulkan_LoadLibrary(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VULKAN_LIBRARY "SDL_VULKAN_LIBRARY" + +/** + * A variable controlling how the fact chunk affects the loading of a WAVE + * file. + * + * The fact chunk stores information about the number of samples of a WAVE + * file. The Standards Update from Microsoft notes that this value can be used + * to 'determine the length of the data in seconds'. This is especially useful + * for compressed formats (for which this is a mandatory chunk) if they + * produce multiple sample frames per block and truncating the block is not + * allowed. The fact chunk can exactly specify how many sample frames there + * should be in this case. + * + * Unfortunately, most application seem to ignore the fact chunk and so SDL + * ignores it by default as well. + * + * The variable can be set to the following values: + * + * - "truncate" - Use the number of samples to truncate the wave data if the + * fact chunk is present and valid. + * - "strict" - Like "truncate", but raise an error if the fact chunk is + * invalid, not present for non-PCM formats, or if the data chunk doesn't + * have that many samples. + * - "ignorezero" - Like "truncate", but ignore fact chunk if the number of + * samples is zero. + * - "ignore" - Ignore fact chunk entirely. (default) + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_FACT_CHUNK "SDL_WAVE_FACT_CHUNK" + +/** + * A variable controlling the maximum number of chunks in a WAVE file. + * + * This sets an upper bound on the number of chunks in a WAVE file to avoid + * wasting time on malformed or corrupt WAVE files. This defaults to "10000". + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_CHUNK_LIMIT "SDL_WAVE_CHUNK_LIMIT" + +/** + * A variable controlling how the size of the RIFF chunk affects the loading + * of a WAVE file. + * + * The size of the RIFF chunk (which includes all the sub-chunks of the WAVE + * file) is not always reliable. In case the size is wrong, it's possible to + * just ignore it and step through the chunks until a fixed limit is reached. + * + * Note that files that have trailing data unrelated to the WAVE file or + * corrupt files may slow down the loading process without a reliable + * boundary. By default, SDL stops after 10000 chunks to prevent wasting time. + * Use SDL_HINT_WAVE_CHUNK_LIMIT to adjust this value. + * + * The variable can be set to the following values: + * + * - "force" - Always use the RIFF chunk size as a boundary for the chunk + * search. + * - "ignorezero" - Like "force", but a zero size searches up to 4 GiB. + * (default) + * - "ignore" - Ignore the RIFF chunk size and always search up to 4 GiB. + * - "maximum" - Search for chunks until the end of file. (not recommended) + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_RIFF_CHUNK_SIZE "SDL_WAVE_RIFF_CHUNK_SIZE" + +/** + * A variable controlling how a truncated WAVE file is handled. + * + * A WAVE file is considered truncated if any of the chunks are incomplete or + * the data chunk size is not a multiple of the block size. By default, SDL + * decodes until the first incomplete block, as most applications seem to do. + * + * The variable can be set to the following values: + * + * - "verystrict" - Raise an error if the file is truncated. + * - "strict" - Like "verystrict", but the size of the RIFF chunk is ignored. + * - "dropframe" - Decode until the first incomplete sample frame. + * - "dropblock" - Decode until the first incomplete block. (default) + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_TRUNCATION "SDL_WAVE_TRUNCATION" + +/** + * A variable controlling whether the window is activated when the + * SDL_RaiseWindow function is called. + * + * The variable can be set to the following values: + * + * - "0": The window is not activated when the SDL_RaiseWindow function is + * called. + * - "1": The window is activated when the SDL_RaiseWindow function is called. + * (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_ACTIVATE_WHEN_RAISED "SDL_WINDOW_ACTIVATE_WHEN_RAISED" + +/** + * A variable controlling whether the window is activated when the + * SDL_ShowWindow function is called. + * + * The variable can be set to the following values: + * + * - "0": The window is not activated when the SDL_ShowWindow function is + * called. + * - "1": The window is activated when the SDL_ShowWindow function is called. + * (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_ACTIVATE_WHEN_SHOWN "SDL_WINDOW_ACTIVATE_WHEN_SHOWN" + +/** + * If set to "0" then never set the top-most flag on an SDL Window even if the + * application requests it. + * + * This is a debugging aid for developers and not expected to be used by end + * users. + * + * The variable can be set to the following values: + * + * - "0": don't allow topmost + * - "1": allow topmost (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_ALLOW_TOPMOST "SDL_WINDOW_ALLOW_TOPMOST" + +/** + * A variable controlling whether the window frame and title bar are + * interactive when the cursor is hidden. + * + * The variable can be set to the following values: + * + * - "0": The window frame is not interactive when the cursor is hidden (no + * move, resize, etc). + * - "1": The window frame is interactive when the cursor is hidden. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN "SDL_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN" + +/** + * A variable controlling whether SDL generates window-close events for Alt+F4 + * on Windows. + * + * The variable can be set to the following values: + * + * - "0": SDL will only do normal key handling for Alt+F4. + * - "1": SDL will generate a window-close event when it sees Alt+F4. + * (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_CLOSE_ON_ALT_F4 "SDL_WINDOWS_CLOSE_ON_ALT_F4" + +/** + * A variable controlling whether menus can be opened with their keyboard + * shortcut (Alt+mnemonic). + * + * If the mnemonics are enabled, then menus can be opened by pressing the Alt + * key and the corresponding mnemonic (for example, Alt+F opens the File + * menu). However, in case an invalid mnemonic is pressed, Windows makes an + * audible beep to convey that nothing happened. This is true even if the + * window has no menu at all! + * + * Because most SDL applications don't have menus, and some want to use the + * Alt key for other purposes, SDL disables mnemonics (and the beeping) by + * default. + * + * Note: This also affects keyboard events: with mnemonics enabled, when a + * menu is opened from the keyboard, you will not receive a KEYUP event for + * the mnemonic key, and *might* not receive one for Alt. + * + * The variable can be set to the following values: + * + * - "0": Alt+mnemonic does nothing, no beeping. (default) + * - "1": Alt+mnemonic opens menus, invalid mnemonics produce a beep. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_ENABLE_MENU_MNEMONICS "SDL_WINDOWS_ENABLE_MENU_MNEMONICS" + +/** + * A variable controlling whether the windows message loop is processed by + * SDL. + * + * The variable can be set to the following values: + * + * - "0": The window message loop is not run. + * - "1": The window message loop is processed in SDL_PumpEvents(). (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP "SDL_WINDOWS_ENABLE_MESSAGELOOP" + +/** + * A variable controlling whether GameInput is used for raw keyboard and mouse + * on Windows. + * + * The variable can be set to the following values: + * + * - "0": GameInput is not used for raw keyboard and mouse events. + * - "1": GameInput is used for raw keyboard and mouse events, if available. + * (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_GAMEINPUT "SDL_WINDOWS_GAMEINPUT" + +/** + * A variable controlling whether raw keyboard events are used on Windows. + * + * The variable can be set to the following values: + * + * - "0": The Windows message loop is used for keyboard events. (default) + * - "1": Low latency raw keyboard events are used. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_RAW_KEYBOARD "SDL_WINDOWS_RAW_KEYBOARD" + +/** + * A variable controlling whether SDL uses Kernel Semaphores on Windows. + * + * Kernel Semaphores are inter-process and require a context switch on every + * interaction. On Windows 8 and newer, the WaitOnAddress API is available. + * Using that and atomics to implement semaphores increases performance. SDL + * will fall back to Kernel Objects on older OS versions or if forced to by + * this hint. + * + * The variable can be set to the following values: + * + * - "0": Use Atomics and WaitOnAddress API when available, otherwise fall + * back to Kernel Objects. (default) + * - "1": Force the use of Kernel Objects in all cases. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_FORCE_SEMAPHORE_KERNEL "SDL_WINDOWS_FORCE_SEMAPHORE_KERNEL" + +/** + * A variable to specify custom icon resource id from RC file on Windows + * platform. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_INTRESOURCE_ICON "SDL_WINDOWS_INTRESOURCE_ICON" + +/** + * A variable to specify custom icon resource id from RC file on Windows + * platform. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_INTRESOURCE_ICON_SMALL "SDL_WINDOWS_INTRESOURCE_ICON_SMALL" + +/** + * A variable controlling whether SDL uses the D3D9Ex API introduced in + * Windows Vista, instead of normal D3D9. + * + * Direct3D 9Ex contains changes to state management that can eliminate device + * loss errors during scenarios like Alt+Tab or UAC prompts. D3D9Ex may + * require some changes to your application to cope with the new behavior, so + * this is disabled by default. + * + * For more information on Direct3D 9Ex, see: + * + * - https://docs.microsoft.com/en-us/windows/win32/direct3darticles/graphics-apis-in-windows-vista#direct3d-9ex + * - https://docs.microsoft.com/en-us/windows/win32/direct3darticles/direct3d-9ex-improvements + * + * The variable can be set to the following values: + * + * - "0": Use the original Direct3D 9 API. (default) + * - "1": Use the Direct3D 9Ex API on Vista and later (and fall back if D3D9Ex + * is unavailable) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_USE_D3D9EX "SDL_WINDOWS_USE_D3D9EX" + +/** + * A variable controlling whether SDL will clear the window contents when the + * WM_ERASEBKGND message is received. + * + * The variable can be set to the following values: + * + * - "0"/"never": Never clear the window. + * - "1"/"initial": Clear the window when the first WM_ERASEBKGND event fires. + * (default) + * - "2"/"always": Clear the window on every WM_ERASEBKGND event. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_ERASE_BACKGROUND_MODE "SDL_WINDOWS_ERASE_BACKGROUND_MODE" + +/** + * A variable controlling whether X11 windows are marked as override-redirect. + * + * If set, this _might_ increase framerate at the expense of the desktop not + * working as expected. Override-redirect windows aren't noticed by the window + * manager at all. + * + * You should probably only use this for fullscreen windows, and you probably + * shouldn't even use it for that. But it's here if you want to try! + * + * The variable can be set to the following values: + * + * - "0": Do not mark the window as override-redirect. (default) + * - "1": Mark the window as override-redirect. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_X11_FORCE_OVERRIDE_REDIRECT "SDL_X11_FORCE_OVERRIDE_REDIRECT" + +/** + * A variable specifying the type of an X11 window. + * + * During SDL_CreateWindow, SDL uses the _NET_WM_WINDOW_TYPE X11 property to + * report to the window manager the type of window it wants to create. This + * might be set to various things if SDL_WINDOW_TOOLTIP or + * SDL_WINDOW_POPUP_MENU, etc, were specified. For "normal" windows that + * haven't set a specific type, this hint can be used to specify a custom + * type. For example, a dock window might set this to + * "_NET_WM_WINDOW_TYPE_DOCK". + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_X11_WINDOW_TYPE "SDL_X11_WINDOW_TYPE" + +/** + * Specify the XCB library to load for the X11 driver. + * + * The default is platform-specific, often "libX11-xcb.so.1". + * + * This hint should be set before initializing the video subsystem. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_X11_XCB_LIBRARY "SDL_X11_XCB_LIBRARY" + +/** + * A variable controlling whether XInput should be used for controller + * handling. + * + * The variable can be set to the following values: + * + * - "0": XInput is not enabled. + * - "1": XInput is enabled. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_XINPUT_ENABLED "SDL_XINPUT_ENABLED" + +/** + * A variable controlling response to SDL_assert failures. + * + * The variable can be set to the following case-sensitive values: + * + * - "abort": Program terminates immediately. + * - "break": Program triggers a debugger breakpoint. + * - "retry": Program reruns the SDL_assert's test again. + * - "ignore": Program continues on, ignoring this assertion failure this + * time. + * - "always_ignore": Program continues on, ignoring this assertion failure + * for the rest of the run. + * + * Note that SDL_SetAssertionHandler offers a programmatic means to deal with + * assertion failures through a callback, and this hint is largely intended to + * be used via environment variables by end users and automated tools. + * + * This hint should be set before an assertion failure is triggered and can be + * changed at any time. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ASSERT "SDL_ASSERT" + +/** + * A variable controlling whether pen events should generate synthetic mouse + * events. + * + * The variable can be set to the following values: + * + * - "0": Pen events will not generate mouse events. + * - "1": Pen events will generate mouse events. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_PEN_MOUSE_EVENTS "SDL_PEN_MOUSE_EVENTS" + +/** + * A variable controlling whether pen events should generate synthetic touch + * events. + * + * The variable can be set to the following values: + * + * - "0": Pen events will not generate touch events. + * - "1": Pen events will generate touch events. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_PEN_TOUCH_EVENTS "SDL_PEN_TOUCH_EVENTS" + + +/** + * An enumeration of hint priorities. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_HintPriority +{ + SDL_HINT_DEFAULT, + SDL_HINT_NORMAL, + SDL_HINT_OVERRIDE +} SDL_HintPriority; + +/** + * Set a hint with a specific priority. + * + * The priority controls the behavior when setting a hint that already has a + * value. Hints will replace existing hints of their priority and lower. + * Environment variables are considered to have override priority. + * + * \param name the hint to set. + * \param value the value of the hint variable. + * \param priority the SDL_HintPriority level for the hint. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHint + * \sa SDL_ResetHint + * \sa SDL_SetHint + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHintWithPriority(const char *name, const char *value, SDL_HintPriority priority); + +/** + * Set a hint with normal priority. + * + * Hints will not be set if there is an existing override hint or environment + * variable that takes precedence. You can use SDL_SetHintWithPriority() to + * set the hint with override priority instead. + * + * \param name the hint to set. + * \param value the value of the hint variable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHint + * \sa SDL_ResetHint + * \sa SDL_SetHintWithPriority + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHint(const char *name, const char *value); + +/** + * Reset a hint to the default value. + * + * This will reset a hint to the value of the environment variable, or NULL if + * the environment isn't set. Callbacks will be called normally with this + * change. + * + * \param name the hint to set. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetHint + * \sa SDL_ResetHints + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResetHint(const char *name); + +/** + * Reset all hints to the default values. + * + * This will reset all hints to the value of the associated environment + * variable, or NULL if the environment isn't set. Callbacks will be called + * normally with this change. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResetHint + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetHints(void); + +/** + * Get the value of a hint. + * + * \param name the hint to query. + * \returns the string value of a hint or NULL if the hint isn't set. + * + * \threadsafety It is safe to call this function from any thread, however the + * return value only remains valid until the hint is changed; if + * another thread might do so, the app should supply locks + * and/or make a copy of the string. Note that using a hint + * callback instead is always thread-safe, as SDL holds a lock + * on the thread subsystem during the callback. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetHint + * \sa SDL_SetHintWithPriority + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetHint(const char *name); + +/** + * Get the boolean value of a hint variable. + * + * \param name the name of the hint to get the boolean value from. + * \param default_value the value to return if the hint does not exist. + * \returns the boolean value of a hint or the provided default value if the + * hint does not exist. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHint + * \sa SDL_SetHint + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetHintBoolean(const char *name, bool default_value); + +/** + * A callback used to send notifications of hint value changes. + * + * This is called an initial time during SDL_AddHintCallback with the hint's + * current value, and then again each time the hint's value changes. + * + * \param userdata what was passed as `userdata` to SDL_AddHintCallback(). + * \param name what was passed as `name` to SDL_AddHintCallback(). + * \param oldValue the previous hint value. + * \param newValue the new value hint is to be set to. + * + * \threadsafety This callback is fired from whatever thread is setting a new + * hint value. SDL holds a lock on the hint subsystem when + * calling this callback. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_AddHintCallback + */ +typedef void(SDLCALL *SDL_HintCallback)(void *userdata, const char *name, const char *oldValue, const char *newValue); + +/** + * Add a function to watch a particular hint. + * + * The callback function is called _during_ this function, to provide it an + * initial value, and again each time the hint's value changes. + * + * \param name the hint to watch. + * \param callback An SDL_HintCallback function that will be called when the + * hint value changes. + * \param userdata a pointer to pass to the callback function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveHintCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddHintCallback(const char *name, SDL_HintCallback callback, void *userdata); + +/** + * Remove a function watching a particular hint. + * + * \param name the hint being watched. + * \param callback an SDL_HintCallback function that will be called when the + * hint value changes. + * \param userdata a pointer being passed to the callback function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddHintCallback + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveHintCallback(const char *name, + SDL_HintCallback callback, + void *userdata); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_hints_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_init.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_init.h new file mode 100644 index 0000000..27ebe4b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_init.h @@ -0,0 +1,497 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryInit + * + * All SDL programs need to initialize the library before starting to work + * with it. + * + * Almost everything can simply call SDL_Init() near startup, with a handful + * of flags to specify subsystems to touch. These are here to make sure SDL + * does not even attempt to touch low-level pieces of the operating system + * that you don't intend to use. For example, you might be using SDL for video + * and input but chose an external library for audio, and in this case you + * would just need to leave off the `SDL_INIT_AUDIO` flag to make sure that + * external library has complete control. + * + * Most apps, when terminating, should call SDL_Quit(). This will clean up + * (nearly) everything that SDL might have allocated, and crucially, it'll + * make sure that the display's resolution is back to what the user expects if + * you had previously changed it for your game. + * + * SDL3 apps are strongly encouraged to call SDL_SetAppMetadata() at startup + * to fill in details about the program. This is completely optional, but it + * helps in small ways (we can provide an About dialog box for the macOS menu, + * we can name the app in the system's audio mixer, etc). Those that want to + * provide a _lot_ of information should look at the more-detailed + * SDL_SetAppMetadataProperty(). + */ + +#ifndef SDL_init_h_ +#define SDL_init_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* As of version 0.5, SDL is loaded dynamically into the application */ + +/** + * Initialization flags for SDL_Init and/or SDL_InitSubSystem + * + * These are the flags which may be passed to SDL_Init(). You should specify + * the subsystems which you will be using in your application. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_Quit + * \sa SDL_InitSubSystem + * \sa SDL_QuitSubSystem + * \sa SDL_WasInit + */ +typedef Uint32 SDL_InitFlags; + +#define SDL_INIT_AUDIO 0x00000010u /**< `SDL_INIT_AUDIO` implies `SDL_INIT_EVENTS` */ +#define SDL_INIT_VIDEO 0x00000020u /**< `SDL_INIT_VIDEO` implies `SDL_INIT_EVENTS`, should be initialized on the main thread */ +#define SDL_INIT_JOYSTICK 0x00000200u /**< `SDL_INIT_JOYSTICK` implies `SDL_INIT_EVENTS` */ +#define SDL_INIT_HAPTIC 0x00001000u +#define SDL_INIT_GAMEPAD 0x00002000u /**< `SDL_INIT_GAMEPAD` implies `SDL_INIT_JOYSTICK` */ +#define SDL_INIT_EVENTS 0x00004000u +#define SDL_INIT_SENSOR 0x00008000u /**< `SDL_INIT_SENSOR` implies `SDL_INIT_EVENTS` */ +#define SDL_INIT_CAMERA 0x00010000u /**< `SDL_INIT_CAMERA` implies `SDL_INIT_EVENTS` */ + +/** + * Return values for optional main callbacks. + * + * Returning SDL_APP_SUCCESS or SDL_APP_FAILURE from SDL_AppInit, + * SDL_AppEvent, or SDL_AppIterate will terminate the program and report + * success/failure to the operating system. What that means is + * platform-dependent. On Unix, for example, on success, the process error + * code will be zero, and on failure it will be 1. This interface doesn't + * allow you to return specific exit codes, just whether there was an error + * generally or not. + * + * Returning SDL_APP_CONTINUE from these functions will let the app continue + * to run. + * + * See + * [Main callbacks in SDL3](https://wiki.libsdl.org/SDL3/README/main-functions#main-callbacks-in-sdl3) + * for complete details. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AppResult +{ + SDL_APP_CONTINUE, /**< Value that requests that the app continue from the main callbacks. */ + SDL_APP_SUCCESS, /**< Value that requests termination with success from the main callbacks. */ + SDL_APP_FAILURE /**< Value that requests termination with error from the main callbacks. */ +} SDL_AppResult; + +/** + * Function pointer typedef for SDL_AppInit. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppInit directly. + * + * \param appstate a place where the app can optionally store a pointer for + * future use. + * \param argc the standard ANSI C main's argc; number of elements in `argv`. + * \param argv the standard ANSI C main's argv; array of command line + * arguments. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AppResult (SDLCALL *SDL_AppInit_func)(void **appstate, int argc, char *argv[]); + +/** + * Function pointer typedef for SDL_AppIterate. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppIterate directly. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AppResult (SDLCALL *SDL_AppIterate_func)(void *appstate); + +/** + * Function pointer typedef for SDL_AppEvent. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppEvent directly. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param event the new event for the app to examine. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AppResult (SDLCALL *SDL_AppEvent_func)(void *appstate, SDL_Event *event); + +/** + * Function pointer typedef for SDL_AppQuit. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppEvent directly. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param result the result code that terminated the app (success or failure). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void (SDLCALL *SDL_AppQuit_func)(void *appstate, SDL_AppResult result); + + +/** + * Initialize the SDL library. + * + * SDL_Init() simply forwards to calling SDL_InitSubSystem(). Therefore, the + * two may be used interchangeably. Though for readability of your code + * SDL_InitSubSystem() might be preferred. + * + * The file I/O (for example: SDL_IOFromFile) and threading (SDL_CreateThread) + * subsystems are initialized by default. Message boxes + * (SDL_ShowSimpleMessageBox) also attempt to work without initializing the + * video subsystem, in hopes of being useful in showing an error dialog when + * SDL_Init fails. You must specifically initialize other subsystems if you + * use them in your application. + * + * Logging (such as SDL_Log) works without initialization, too. + * + * `flags` may be any of the following OR'd together: + * + * - `SDL_INIT_AUDIO`: audio subsystem; automatically initializes the events + * subsystem + * - `SDL_INIT_VIDEO`: video subsystem; automatically initializes the events + * subsystem, should be initialized on the main thread. + * - `SDL_INIT_JOYSTICK`: joystick subsystem; automatically initializes the + * events subsystem + * - `SDL_INIT_HAPTIC`: haptic (force feedback) subsystem + * - `SDL_INIT_GAMEPAD`: gamepad subsystem; automatically initializes the + * joystick subsystem + * - `SDL_INIT_EVENTS`: events subsystem + * - `SDL_INIT_SENSOR`: sensor subsystem; automatically initializes the events + * subsystem + * - `SDL_INIT_CAMERA`: camera subsystem; automatically initializes the events + * subsystem + * + * Subsystem initialization is ref-counted, you must call SDL_QuitSubSystem() + * for each SDL_InitSubSystem() to correctly shutdown a subsystem manually (or + * call SDL_Quit() to force shutdown). If a subsystem is already loaded then + * this call will increase the ref-count and return. + * + * Consider reporting some basic metadata about your application before + * calling SDL_Init, using either SDL_SetAppMetadata() or + * SDL_SetAppMetadataProperty(). + * + * \param flags subsystem initialization flags. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAppMetadata + * \sa SDL_SetAppMetadataProperty + * \sa SDL_InitSubSystem + * \sa SDL_Quit + * \sa SDL_SetMainReady + * \sa SDL_WasInit + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Init(SDL_InitFlags flags); + +/** + * Compatibility function to initialize the SDL library. + * + * This function and SDL_Init() are interchangeable. + * + * \param flags any of the flags used by SDL_Init(); see SDL_Init for details. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_Quit + * \sa SDL_QuitSubSystem + */ +extern SDL_DECLSPEC bool SDLCALL SDL_InitSubSystem(SDL_InitFlags flags); + +/** + * Shut down specific SDL subsystems. + * + * You still need to call SDL_Quit() even if you close all open subsystems + * with SDL_QuitSubSystem(). + * + * \param flags any of the flags used by SDL_Init(); see SDL_Init for details. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InitSubSystem + * \sa SDL_Quit + */ +extern SDL_DECLSPEC void SDLCALL SDL_QuitSubSystem(SDL_InitFlags flags); + +/** + * Get a mask of the specified subsystems which are currently initialized. + * + * \param flags any of the flags used by SDL_Init(); see SDL_Init for details. + * \returns a mask of all initialized subsystems if `flags` is 0, otherwise it + * returns the initialization status of the specified subsystems. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_InitSubSystem + */ +extern SDL_DECLSPEC SDL_InitFlags SDLCALL SDL_WasInit(SDL_InitFlags flags); + +/** + * Clean up all initialized subsystems. + * + * You should call this function even if you have already shutdown each + * initialized subsystem with SDL_QuitSubSystem(). It is safe to call this + * function even in the case of errors in initialization. + * + * You can use this function with atexit() to ensure that it is run when your + * application is shutdown, but it is not wise to do this from a library or + * other dynamically loaded code. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_QuitSubSystem + */ +extern SDL_DECLSPEC void SDLCALL SDL_Quit(void); + +/** + * Return whether this is the main thread. + * + * On Apple platforms, the main thread is the thread that runs your program's + * main() entry point. On other platforms, the main thread is the one that + * calls SDL_Init(SDL_INIT_VIDEO), which should usually be the one that runs + * your program's main() entry point. If you are using the main callbacks, + * SDL_AppInit(), SDL_AppIterate(), and SDL_AppQuit() are all called on the + * main thread. + * + * \returns true if this thread is the main thread, or false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RunOnMainThread + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsMainThread(void); + +/** + * Callback run on the main thread. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_RunOnMainThread + */ +typedef void (SDLCALL *SDL_MainThreadCallback)(void *userdata); + +/** + * Call a function on the main thread during event processing. + * + * If this is called on the main thread, the callback is executed immediately. + * If this is called on another thread, this callback is queued for execution + * on the main thread during event processing. + * + * Be careful of deadlocks when using this functionality. You should not have + * the main thread wait for the current thread while this function is being + * called with `wait_complete` true. + * + * \param callback the callback to call on the main thread. + * \param userdata a pointer that is passed to `callback`. + * \param wait_complete true to wait for the callback to complete, false to + * return immediately. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IsMainThread + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RunOnMainThread(SDL_MainThreadCallback callback, void *userdata, bool wait_complete); + +/** + * Specify basic metadata about your app. + * + * You can optionally provide metadata about your app to SDL. This is not + * required, but strongly encouraged. + * + * There are several locations where SDL can make use of metadata (an "About" + * box in the macOS menu bar, the name of the app can be shown on some audio + * mixers, etc). Any piece of metadata can be left as NULL, if a specific + * detail doesn't make sense for the app. + * + * This function should be called as early as possible, before SDL_Init. + * Multiple calls to this function are allowed, but various state might not + * change once it has been set up with a previous call to this function. + * + * Passing a NULL removes any previous metadata. + * + * This is a simplified interface for the most important information. You can + * supply significantly more detailed metadata with + * SDL_SetAppMetadataProperty(). + * + * \param appname The name of the application ("My Game 2: Bad Guy's + * Revenge!"). + * \param appversion The version of the application ("1.0.0beta5" or a git + * hash, or whatever makes sense). + * \param appidentifier A unique string in reverse-domain format that + * identifies this app ("com.example.mygame2"). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAppMetadataProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAppMetadata(const char *appname, const char *appversion, const char *appidentifier); + +/** + * Specify metadata about your app through a set of properties. + * + * You can optionally provide metadata about your app to SDL. This is not + * required, but strongly encouraged. + * + * There are several locations where SDL can make use of metadata (an "About" + * box in the macOS menu bar, the name of the app can be shown on some audio + * mixers, etc). Any piece of metadata can be left out, if a specific detail + * doesn't make sense for the app. + * + * This function should be called as early as possible, before SDL_Init. + * Multiple calls to this function are allowed, but various state might not + * change once it has been set up with a previous call to this function. + * + * Once set, this metadata can be read using SDL_GetAppMetadataProperty(). + * + * These are the supported properties: + * + * - `SDL_PROP_APP_METADATA_NAME_STRING`: The human-readable name of the + * application, like "My Game 2: Bad Guy's Revenge!". This will show up + * anywhere the OS shows the name of the application separately from window + * titles, such as volume control applets, etc. This defaults to "SDL + * Application". + * - `SDL_PROP_APP_METADATA_VERSION_STRING`: The version of the app that is + * running; there are no rules on format, so "1.0.3beta2" and "April 22nd, + * 2024" and a git hash are all valid options. This has no default. + * - `SDL_PROP_APP_METADATA_IDENTIFIER_STRING`: A unique string that + * identifies this app. This must be in reverse-domain format, like + * "com.example.mygame2". This string is used by desktop compositors to + * identify and group windows together, as well as match applications with + * associated desktop settings and icons. If you plan to package your + * application in a container such as Flatpak, the app ID should match the + * name of your Flatpak container as well. This has no default. + * - `SDL_PROP_APP_METADATA_CREATOR_STRING`: The human-readable name of the + * creator/developer/maker of this app, like "MojoWorkshop, LLC" + * - `SDL_PROP_APP_METADATA_COPYRIGHT_STRING`: The human-readable copyright + * notice, like "Copyright (c) 2024 MojoWorkshop, LLC" or whatnot. Keep this + * to one line, don't paste a copy of a whole software license in here. This + * has no default. + * - `SDL_PROP_APP_METADATA_URL_STRING`: A URL to the app on the web. Maybe a + * product page, or a storefront, or even a GitHub repository, for user's + * further information This has no default. + * - `SDL_PROP_APP_METADATA_TYPE_STRING`: The type of application this is. + * Currently this string can be "game" for a video game, "mediaplayer" for a + * media player, or generically "application" if nothing else applies. + * Future versions of SDL might add new types. This defaults to + * "application". + * + * \param name the name of the metadata property to set. + * \param value the value of the property, or NULL to remove that property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAppMetadataProperty + * \sa SDL_SetAppMetadata + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAppMetadataProperty(const char *name, const char *value); + +#define SDL_PROP_APP_METADATA_NAME_STRING "SDL.app.metadata.name" +#define SDL_PROP_APP_METADATA_VERSION_STRING "SDL.app.metadata.version" +#define SDL_PROP_APP_METADATA_IDENTIFIER_STRING "SDL.app.metadata.identifier" +#define SDL_PROP_APP_METADATA_CREATOR_STRING "SDL.app.metadata.creator" +#define SDL_PROP_APP_METADATA_COPYRIGHT_STRING "SDL.app.metadata.copyright" +#define SDL_PROP_APP_METADATA_URL_STRING "SDL.app.metadata.url" +#define SDL_PROP_APP_METADATA_TYPE_STRING "SDL.app.metadata.type" + +/** + * Get metadata about your app. + * + * This returns metadata previously set using SDL_SetAppMetadata() or + * SDL_SetAppMetadataProperty(). See SDL_SetAppMetadataProperty() for the list + * of available properties and their meanings. + * + * \param name the name of the metadata property to get. + * \returns the current value of the metadata property, or the default if it + * is not set, NULL for properties with no default. + * + * \threadsafety It is safe to call this function from any thread, although + * the string returned is not protected and could potentially be + * freed if you call SDL_SetAppMetadataProperty() to set that + * property from another thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAppMetadata + * \sa SDL_SetAppMetadataProperty + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAppMetadataProperty(const char *name); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_init_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_intrin.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_intrin.h new file mode 100644 index 0000000..bac6d7a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_intrin.h @@ -0,0 +1,407 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Intrinsics */ + +/** + * # CategoryIntrinsics + * + * SDL does some preprocessor gymnastics to determine if any CPU-specific + * compiler intrinsics are available, as this is not necessarily an easy thing + * to calculate, and sometimes depends on quirks of a system, versions of + * build tools, and other external forces. + * + * Apps including SDL's headers will be able to check consistent preprocessor + * definitions to decide if it's safe to use compiler intrinsics for a + * specific CPU architecture. This check only tells you that the compiler is + * capable of using those intrinsics; at runtime, you should still check if + * they are available on the current system with the + * [CPU info functions](https://wiki.libsdl.org/SDL3/CategoryCPUInfo) + * , such as SDL_HasSSE() or SDL_HasNEON(). Otherwise, the process might crash + * for using an unsupported CPU instruction. + * + * SDL only sets preprocessor defines for CPU intrinsics if they are + * supported, so apps should check with `#ifdef` and not `#if`. + * + * SDL will also include the appropriate instruction-set-specific support + * headers, so if SDL decides to define SDL_SSE2_INTRINSICS, it will also + * `#include ` as well. + */ + +#ifndef SDL_intrin_h_ +#define SDL_intrin_h_ + +#include + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Defined if (and only if) the compiler supports Loongarch LSX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LASX_INTRINSICS + */ +#define SDL_LSX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Loongarch LSX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LASX_INTRINSICS + */ +#define SDL_LASX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports ARM NEON intrinsics. + * + * If this macro is defined, SDL will have already included `` + * ``, ``, and ``, as appropriate. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NEON_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports PowerPC Altivec intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ALTIVEC_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel MMX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + */ +#define SDL_MMX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE2 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE2_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE3 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE3_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE4.1 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE4_1_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE4.2 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + */ +#define SDL_SSE4_2_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel AVX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AVX2_INTRINSICS + * \sa SDL_AVX512F_INTRINSICS + */ +#define SDL_AVX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel AVX2 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AVX_INTRINSICS + * \sa SDL_AVX512F_INTRINSICS + */ +#define SDL_AVX2_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel AVX-512F intrinsics. + * + * AVX-512F is also sometimes referred to as "AVX-512 Foundation." + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AVX_INTRINSICS + * \sa SDL_AVX2_INTRINSICS + */ +#define SDL_AVX512F_INTRINSICS 1 +#endif + +/* Need to do this here because intrin.h has C++ code in it */ +/* Visual Studio 2005 has a bug where intrin.h conflicts with winnt.h */ +#if defined(_MSC_VER) && (_MSC_VER >= 1500) && (defined(_M_IX86) || defined(_M_X64)) +#ifdef __clang__ +/* As of Clang 11, '_m_prefetchw' is conflicting with the winnt.h's version, + so we define the needed '_m_prefetch' here as a pseudo-header, until the issue is fixed. */ +#ifndef __PRFCHWINTRIN_H +#define __PRFCHWINTRIN_H +static __inline__ void __attribute__((__always_inline__, __nodebug__)) +_m_prefetch(void *__P) +{ + __builtin_prefetch (__P, 0, 3 /* _MM_HINT_T0 */); +} +#endif /* __PRFCHWINTRIN_H */ +#endif /* __clang__ */ +#include + +#elif defined(__MINGW64_VERSION_MAJOR) +#include +#if defined(__ARM_NEON) && !defined(SDL_DISABLE_NEON) +# define SDL_NEON_INTRINSICS 1 +# include +#endif + +#else +/* altivec.h redefining bool causes a number of problems, see bugs 3993 and 4392, so you need to explicitly define SDL_ENABLE_ALTIVEC to have it included. */ +#if defined(__ALTIVEC__) && defined(SDL_ENABLE_ALTIVEC) +#define SDL_ALTIVEC_INTRINSICS 1 +#include +#endif +#ifndef SDL_DISABLE_NEON +# ifdef __ARM_NEON +# define SDL_NEON_INTRINSICS 1 +# include +# elif defined(SDL_PLATFORM_WINDOWS) +/* Visual Studio doesn't define __ARM_ARCH, but _M_ARM (if set, always 7), and _M_ARM64 (if set, always 1). */ +# ifdef _M_ARM +# define SDL_NEON_INTRINSICS 1 +# include +# include +# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */ +# endif +# if defined (_M_ARM64) +# define SDL_NEON_INTRINSICS 1 +# include +# include +# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */ +# define __ARM_ARCH 8 +# endif +# endif +#endif +#endif /* compiler version */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION +/** + * A macro to decide if the compiler supports `__attribute__((target))`. + * + * Even though this is defined in SDL's public headers, it is generally not + * used directly by apps. Apps should probably just use SDL_TARGETING + * directly, instead. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_TARGETING + */ +#define SDL_HAS_TARGET_ATTRIBS + +#elif defined(__clang__) && defined(__has_attribute) +# if __has_attribute(target) +# define SDL_HAS_TARGET_ATTRIBS +# endif +#elif defined(__GNUC__) && (__GNUC__ + (__GNUC_MINOR__ >= 9) > 4) /* gcc >= 4.9 */ +# define SDL_HAS_TARGET_ATTRIBS +#elif defined(__ICC) && __ICC >= 1600 +# define SDL_HAS_TARGET_ATTRIBS +#endif + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to tag a function as targeting a specific CPU architecture. + * + * This is a hint to the compiler that a function should be built with support + * for a CPU instruction set that might be different than the rest of the + * program. + * + * The particulars of this are explained in the GCC documentation: + * + * https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-target-function-attribute + * + * An example of using this feature is to turn on SSE2 support for a specific + * function, even if the rest of the source code is not compiled to use SSE2 + * code: + * + * ```c + * #ifdef SDL_SSE2_INTRINSICS + * static void SDL_TARGETING("sse2") DoSomethingWithSSE2(char *x) { + * ...use SSE2 intrinsic functions, etc... + * } + * #endif + * + * // later... + * #ifdef SDL_SSE2_INTRINSICS + * if (SDL_HasSSE2()) { + * DoSomethingWithSSE2(str); + * } + * #endif + * ``` + * + * The application is, on a whole, built without SSE2 instructions, so it will + * run on Intel machines that don't support SSE2. But then at runtime, it + * checks if the system supports the instructions, and then calls into a + * function that uses SSE2 opcodes. The ifdefs make sure that this code isn't + * used on platforms that don't have SSE2 at all. + * + * On compilers without target support, this is defined to nothing. + * + * This symbol is used by SDL internally, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TARGETING(x) __attribute__((target(x))) + +#elif defined(SDL_HAS_TARGET_ATTRIBS) +# define SDL_TARGETING(x) __attribute__((target(x))) +#else +# define SDL_TARGETING(x) +#endif + +#ifdef __loongarch64 +# ifndef SDL_DISABLE_LSX +# define SDL_LSX_INTRINSICS 1 +# include +# endif +# ifndef SDL_DISABLE_LASX +# define SDL_LASX_INTRINSICS 1 +# include +# endif +#endif + +#if defined(__x86_64__) || defined(_M_X64) || defined(__i386__) || defined(_M_IX86) +# if ((defined(_MSC_VER) && !defined(_M_X64)) || defined(__MMX__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_MMX) +# define SDL_MMX_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE) +# define SDL_SSE_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE2__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE2) +# define SDL_SSE2_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE3__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE3) +# define SDL_SSE3_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE4_1__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE4_1) +# define SDL_SSE4_1_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE4_2__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE4_2) +# define SDL_SSE4_2_INTRINSICS 1 +# include +# endif +# if defined(__clang__) && (defined(_MSC_VER) || defined(__SCE__)) && !defined(__AVX__) && !defined(SDL_DISABLE_AVX) +# define SDL_DISABLE_AVX /* see https://reviews.llvm.org/D20291 and https://reviews.llvm.org/D79194 */ +# endif +# if (defined(_MSC_VER) || defined(__AVX__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(_M_ARM64EC) && !defined(SDL_DISABLE_AVX) +# define SDL_AVX_INTRINSICS 1 +# include +# endif +# if defined(__clang__) && (defined(_MSC_VER) || defined(__SCE__)) && !defined(__AVX2__) && !defined(SDL_DISABLE_AVX2) +# define SDL_DISABLE_AVX2 /* see https://reviews.llvm.org/D20291 and https://reviews.llvm.org/D79194 */ +# endif +# if (defined(_MSC_VER) || defined(__AVX2__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(_M_ARM64EC) && !defined(SDL_DISABLE_AVX2) +# define SDL_AVX2_INTRINSICS 1 +# include +# endif +# if defined(__clang__) && (defined(_MSC_VER) || defined(__SCE__)) && !defined(__AVX512F__) && !defined(SDL_DISABLE_AVX512F) +# define SDL_DISABLE_AVX512F /* see https://reviews.llvm.org/D20291 and https://reviews.llvm.org/D79194 */ +# endif +# if (defined(_MSC_VER) || defined(__AVX512F__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(_M_ARM64EC) && !defined(SDL_DISABLE_AVX512F) +# define SDL_AVX512F_INTRINSICS 1 +# include +# endif +#endif /* defined(__x86_64__) || defined(_M_X64) || defined(__i386__) || defined(_M_IX86) */ + +#endif /* SDL_intrin_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_iostream.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_iostream.h new file mode 100644 index 0000000..4ca1609 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_iostream.h @@ -0,0 +1,1354 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: IOStream */ + +/** + * # CategoryIOStream + * + * SDL provides an abstract interface for reading and writing data streams. It + * offers implementations for files, memory, etc, and the app can provide + * their own implementations, too. + * + * SDL_IOStream is not related to the standard C++ iostream class, other than + * both are abstract interfaces to read/write data. + */ + +#ifndef SDL_iostream_h_ +#define SDL_iostream_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SDL_IOStream status, set by a read or write operation. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_IOStatus +{ + SDL_IO_STATUS_READY, /**< Everything is ready (no errors and not EOF). */ + SDL_IO_STATUS_ERROR, /**< Read or write I/O error */ + SDL_IO_STATUS_EOF, /**< End of file */ + SDL_IO_STATUS_NOT_READY, /**< Non blocking I/O, not ready */ + SDL_IO_STATUS_READONLY, /**< Tried to write a read-only buffer */ + SDL_IO_STATUS_WRITEONLY /**< Tried to read a write-only buffer */ +} SDL_IOStatus; + +/** + * Possible `whence` values for SDL_IOStream seeking. + * + * These map to the same "whence" concept that `fseek` or `lseek` use in the + * standard C runtime. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_IOWhence +{ + SDL_IO_SEEK_SET, /**< Seek from the beginning of data */ + SDL_IO_SEEK_CUR, /**< Seek relative to current read point */ + SDL_IO_SEEK_END /**< Seek relative to the end of data */ +} SDL_IOWhence; + +/** + * The function pointers that drive an SDL_IOStream. + * + * Applications can provide this struct to SDL_OpenIO() to create their own + * implementation of SDL_IOStream. This is not necessarily required, as SDL + * already offers several common types of I/O streams, via functions like + * SDL_IOFromFile() and SDL_IOFromMem(). + * + * This structure should be initialized using SDL_INIT_INTERFACE() + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_INIT_INTERFACE + */ +typedef struct SDL_IOStreamInterface +{ + /* The version of this interface */ + Uint32 version; + + /** + * Return the number of bytes in this SDL_IOStream + * + * \return the total size of the data stream, or -1 on error. + */ + Sint64 (SDLCALL *size)(void *userdata); + + /** + * Seek to `offset` relative to `whence`, one of stdio's whence values: + * SDL_IO_SEEK_SET, SDL_IO_SEEK_CUR, SDL_IO_SEEK_END + * + * \return the final offset in the data stream, or -1 on error. + */ + Sint64 (SDLCALL *seek)(void *userdata, Sint64 offset, SDL_IOWhence whence); + + /** + * Read up to `size` bytes from the data stream to the area pointed + * at by `ptr`. + * + * On an incomplete read, you should set `*status` to a value from the + * SDL_IOStatus enum. You do not have to explicitly set this on + * a complete, successful read. + * + * \return the number of bytes read + */ + size_t (SDLCALL *read)(void *userdata, void *ptr, size_t size, SDL_IOStatus *status); + + /** + * Write exactly `size` bytes from the area pointed at by `ptr` + * to data stream. + * + * On an incomplete write, you should set `*status` to a value from the + * SDL_IOStatus enum. You do not have to explicitly set this on + * a complete, successful write. + * + * \return the number of bytes written + */ + size_t (SDLCALL *write)(void *userdata, const void *ptr, size_t size, SDL_IOStatus *status); + + /** + * If the stream is buffering, make sure the data is written out. + * + * On failure, you should set `*status` to a value from the + * SDL_IOStatus enum. You do not have to explicitly set this on + * a successful flush. + * + * \return true if successful or false on write error when flushing data. + */ + bool (SDLCALL *flush)(void *userdata, SDL_IOStatus *status); + + /** + * Close and free any allocated resources. + * + * This does not guarantee file writes will sync to physical media; they + * can be in the system's file cache, waiting to go to disk. + * + * The SDL_IOStream is still destroyed even if this fails, so clean up anything + * even if flushing buffers, etc, returns an error. + * + * \return true if successful or false on write error when flushing data. + */ + bool (SDLCALL *close)(void *userdata); + +} SDL_IOStreamInterface; + +/* Check the size of SDL_IOStreamInterface + * + * If this assert fails, either the compiler is padding to an unexpected size, + * or the interface has been updated and this should be updated to match and + * the code using this interface should be updated to handle the old version. + */ +SDL_COMPILE_TIME_ASSERT(SDL_IOStreamInterface_SIZE, + (sizeof(void *) == 4 && sizeof(SDL_IOStreamInterface) == 28) || + (sizeof(void *) == 8 && sizeof(SDL_IOStreamInterface) == 56)); + +/** + * The read/write operation structure. + * + * This operates as an opaque handle. There are several APIs to create various + * types of I/O streams, or an app can supply an SDL_IOStreamInterface to + * SDL_OpenIO() to provide their own stream implementation behind this + * struct's abstract interface. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_IOStream SDL_IOStream; + + +/** + * \name IOFrom functions + * + * Functions to create SDL_IOStream structures from various data streams. + */ +/* @{ */ + +/** + * Use this function to create a new SDL_IOStream structure for reading from + * and/or writing to a named file. + * + * The `mode` string is treated roughly the same as in a call to the C + * library's fopen(), even if SDL doesn't happen to use fopen() behind the + * scenes. + * + * Available `mode` strings: + * + * - "r": Open a file for reading. The file must exist. + * - "w": Create an empty file for writing. If a file with the same name + * already exists its content is erased and the file is treated as a new + * empty file. + * - "a": Append to a file. Writing operations append data at the end of the + * file. The file is created if it does not exist. + * - "r+": Open a file for update both reading and writing. The file must + * exist. + * - "w+": Create an empty file for both reading and writing. If a file with + * the same name already exists its content is erased and the file is + * treated as a new empty file. + * - "a+": Open a file for reading and appending. All writing operations are + * performed at the end of the file, protecting the previous content to be + * overwritten. You can reposition (fseek, rewind) the internal pointer to + * anywhere in the file for reading, but writing operations will move it + * back to the end of file. The file is created if it does not exist. + * + * **NOTE**: In order to open a file as a binary file, a "b" character has to + * be included in the `mode` string. This additional "b" character can either + * be appended at the end of the string (thus making the following compound + * modes: "rb", "wb", "ab", "r+b", "w+b", "a+b") or be inserted between the + * letter and the "+" sign for the mixed modes ("rb+", "wb+", "ab+"). + * Additional characters may follow the sequence, although they should have no + * effect. For example, "t" is sometimes appended to make explicit the file is + * a text file. + * + * This function supports Unicode filenames, but they must be encoded in UTF-8 + * format, regardless of the underlying operating system. + * + * In Android, SDL_IOFromFile() can be used to open content:// URIs. As a + * fallback, SDL_IOFromFile() will transparently open a matching filename in + * the app's `assets`. + * + * Closing the SDL_IOStream will close SDL's internal file handle. + * + * The following properties may be set at creation time by SDL: + * + * - `SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER`: a pointer, that can be cast + * to a win32 `HANDLE`, that this SDL_IOStream is using to access the + * filesystem. If the program isn't running on Windows, or SDL used some + * other method to access the filesystem, this property will not be set. + * - `SDL_PROP_IOSTREAM_STDIO_FILE_POINTER`: a pointer, that can be cast to a + * stdio `FILE *`, that this SDL_IOStream is using to access the filesystem. + * If SDL used some other method to access the filesystem, this property + * will not be set. PLEASE NOTE that if SDL is using a different C runtime + * than your app, trying to use this pointer will almost certainly result in + * a crash! This is mostly a problem on Windows; make sure you build SDL and + * your app with the same compiler and settings to avoid it. + * - `SDL_PROP_IOSTREAM_FILE_DESCRIPTOR_NUMBER`: a file descriptor that this + * SDL_IOStream is using to access the filesystem. + * - `SDL_PROP_IOSTREAM_ANDROID_AASSET_POINTER`: a pointer, that can be cast + * to an Android NDK `AAsset *`, that this SDL_IOStream is using to access + * the filesystem. If SDL used some other method to access the filesystem, + * this property will not be set. + * + * \param file a UTF-8 string representing the filename to open. + * \param mode an ASCII string representing the mode to be used for opening + * the file. + * \returns a pointer to the SDL_IOStream structure that is created or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseIO + * \sa SDL_FlushIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromFile(const char *file, const char *mode); + +#define SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER "SDL.iostream.windows.handle" +#define SDL_PROP_IOSTREAM_STDIO_FILE_POINTER "SDL.iostream.stdio.file" +#define SDL_PROP_IOSTREAM_FILE_DESCRIPTOR_NUMBER "SDL.iostream.file_descriptor" +#define SDL_PROP_IOSTREAM_ANDROID_AASSET_POINTER "SDL.iostream.android.aasset" + +/** + * Use this function to prepare a read-write memory buffer for use with + * SDL_IOStream. + * + * This function sets up an SDL_IOStream struct based on a memory area of a + * certain size, for both read and write access. + * + * This memory buffer is not copied by the SDL_IOStream; the pointer you + * provide must remain valid until you close the stream. Closing the stream + * will not free the original buffer. + * + * If you need to make sure the SDL_IOStream never writes to the memory + * buffer, you should use SDL_IOFromConstMem() with a read-only buffer of + * memory instead. + * + * The following properties will be set at creation time by SDL: + * + * - `SDL_PROP_IOSTREAM_MEMORY_POINTER`: this will be the `mem` parameter that + * was passed to this function. + * - `SDL_PROP_IOSTREAM_MEMORY_SIZE_NUMBER`: this will be the `size` parameter + * that was passed to this function. + * + * \param mem a pointer to a buffer to feed an SDL_IOStream stream. + * \param size the buffer size, in bytes. + * \returns a pointer to a new SDL_IOStream structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOFromConstMem + * \sa SDL_CloseIO + * \sa SDL_FlushIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromMem(void *mem, size_t size); + +#define SDL_PROP_IOSTREAM_MEMORY_POINTER "SDL.iostream.memory.base" +#define SDL_PROP_IOSTREAM_MEMORY_SIZE_NUMBER "SDL.iostream.memory.size" + +/** + * Use this function to prepare a read-only memory buffer for use with + * SDL_IOStream. + * + * This function sets up an SDL_IOStream struct based on a memory area of a + * certain size. It assumes the memory area is not writable. + * + * Attempting to write to this SDL_IOStream stream will report an error + * without writing to the memory buffer. + * + * This memory buffer is not copied by the SDL_IOStream; the pointer you + * provide must remain valid until you close the stream. Closing the stream + * will not free the original buffer. + * + * If you need to write to a memory buffer, you should use SDL_IOFromMem() + * with a writable buffer of memory instead. + * + * The following properties will be set at creation time by SDL: + * + * - `SDL_PROP_IOSTREAM_MEMORY_POINTER`: this will be the `mem` parameter that + * was passed to this function. + * - `SDL_PROP_IOSTREAM_MEMORY_SIZE_NUMBER`: this will be the `size` parameter + * that was passed to this function. + * + * \param mem a pointer to a read-only buffer to feed an SDL_IOStream stream. + * \param size the buffer size, in bytes. + * \returns a pointer to a new SDL_IOStream structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOFromMem + * \sa SDL_CloseIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromConstMem(const void *mem, size_t size); + +/** + * Use this function to create an SDL_IOStream that is backed by dynamically + * allocated memory. + * + * This supports the following properties to provide access to the memory and + * control over allocations: + * + * - `SDL_PROP_IOSTREAM_DYNAMIC_MEMORY_POINTER`: a pointer to the internal + * memory of the stream. This can be set to NULL to transfer ownership of + * the memory to the application, which should free the memory with + * SDL_free(). If this is done, the next operation on the stream must be + * SDL_CloseIO(). + * - `SDL_PROP_IOSTREAM_DYNAMIC_CHUNKSIZE_NUMBER`: memory will be allocated in + * multiples of this size, defaulting to 1024. + * + * \returns a pointer to a new SDL_IOStream structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromDynamicMem(void); + +#define SDL_PROP_IOSTREAM_DYNAMIC_MEMORY_POINTER "SDL.iostream.dynamic.memory" +#define SDL_PROP_IOSTREAM_DYNAMIC_CHUNKSIZE_NUMBER "SDL.iostream.dynamic.chunksize" + +/* @} *//* IOFrom functions */ + + +/** + * Create a custom SDL_IOStream. + * + * Applications do not need to use this function unless they are providing + * their own SDL_IOStream implementation. If you just need an SDL_IOStream to + * read/write a common data source, you should use the built-in + * implementations in SDL, like SDL_IOFromFile() or SDL_IOFromMem(), etc. + * + * This function makes a copy of `iface` and the caller does not need to keep + * it around after this call. + * + * \param iface the interface that implements this SDL_IOStream, initialized + * using SDL_INIT_INTERFACE(). + * \param userdata the pointer that will be passed to the interface functions. + * \returns a pointer to the allocated memory on success or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseIO + * \sa SDL_INIT_INTERFACE + * \sa SDL_IOFromConstMem + * \sa SDL_IOFromFile + * \sa SDL_IOFromMem + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_OpenIO(const SDL_IOStreamInterface *iface, void *userdata); + +/** + * Close and free an allocated SDL_IOStream structure. + * + * SDL_CloseIO() closes and cleans up the SDL_IOStream stream. It releases any + * resources used by the stream and frees the SDL_IOStream itself. This + * returns true on success, or false if the stream failed to flush to its + * output (e.g. to disk). + * + * Note that if this fails to flush the stream for any reason, this function + * reports an error, but the SDL_IOStream is still invalid once this function + * returns. + * + * This call flushes any buffered writes to the operating system, but there + * are no guarantees that those writes have gone to physical media; they might + * be in the OS's file cache, waiting to go to disk later. If it's absolutely + * crucial that writes go to disk immediately, so they are definitely stored + * even if the power fails before the file cache would have caught up, one + * should call SDL_FlushIO() before closing. Note that flushing takes time and + * makes the system and your app operate less efficiently, so do so sparingly. + * + * \param context SDL_IOStream structure to close. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenIO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CloseIO(SDL_IOStream *context); + +/** + * Get the properties associated with an SDL_IOStream. + * + * \param context a pointer to an SDL_IOStream structure. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetIOProperties(SDL_IOStream *context); + +/** + * Query the stream status of an SDL_IOStream. + * + * This information can be useful to decide if a short read or write was due + * to an error, an EOF, or a non-blocking operation that isn't yet ready to + * complete. + * + * An SDL_IOStream's status is only expected to change after a SDL_ReadIO or + * SDL_WriteIO call; don't expect it to change if you just call this query + * function in a tight loop. + * + * \param context the SDL_IOStream to query. + * \returns an SDL_IOStatus enum with the current state. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_IOStatus SDLCALL SDL_GetIOStatus(SDL_IOStream *context); + +/** + * Use this function to get the size of the data stream in an SDL_IOStream. + * + * \param context the SDL_IOStream to get the size of the data stream from. + * \returns the size of the data stream in the SDL_IOStream on success or a + * negative error code on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_GetIOSize(SDL_IOStream *context); + +/** + * Seek within an SDL_IOStream data stream. + * + * This function seeks to byte `offset`, relative to `whence`. + * + * `whence` may be any of the following values: + * + * - `SDL_IO_SEEK_SET`: seek from the beginning of data + * - `SDL_IO_SEEK_CUR`: seek relative to current read point + * - `SDL_IO_SEEK_END`: seek relative to the end of data + * + * If this stream can not seek, it will return -1. + * + * \param context a pointer to an SDL_IOStream structure. + * \param offset an offset in bytes, relative to `whence` location; can be + * negative. + * \param whence any of `SDL_IO_SEEK_SET`, `SDL_IO_SEEK_CUR`, + * `SDL_IO_SEEK_END`. + * \returns the final offset in the data stream after the seek or -1 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TellIO + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_SeekIO(SDL_IOStream *context, Sint64 offset, SDL_IOWhence whence); + +/** + * Determine the current read/write offset in an SDL_IOStream data stream. + * + * SDL_TellIO is actually a wrapper function that calls the SDL_IOStream's + * `seek` method, with an offset of 0 bytes from `SDL_IO_SEEK_CUR`, to + * simplify application development. + * + * \param context an SDL_IOStream data stream object from which to get the + * current offset. + * \returns the current offset in the stream, or -1 if the information can not + * be determined. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SeekIO + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_TellIO(SDL_IOStream *context); + +/** + * Read from a data source. + * + * This function reads up `size` bytes from the data source to the area + * pointed at by `ptr`. This function may read less bytes than requested. + * + * This function will return zero when the data stream is completely read, and + * SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If zero is returned and + * the stream is not at EOF, SDL_GetIOStatus() will return a different error + * value and SDL_GetError() will offer a human-readable message. + * + * \param context a pointer to an SDL_IOStream structure. + * \param ptr a pointer to a buffer to read data into. + * \param size the number of bytes to read from the data source. + * \returns the number of bytes read, or 0 on end of file or other failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WriteIO + * \sa SDL_GetIOStatus + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_ReadIO(SDL_IOStream *context, void *ptr, size_t size); + +/** + * Write to an SDL_IOStream data stream. + * + * This function writes exactly `size` bytes from the area pointed at by `ptr` + * to the stream. If this fails for any reason, it'll return less than `size` + * to demonstrate how far the write progressed. On success, it returns `size`. + * + * On error, this function still attempts to write as much as possible, so it + * might return a positive value less than the requested write size. + * + * The caller can use SDL_GetIOStatus() to determine if the problem is + * recoverable, such as a non-blocking write that can simply be retried later, + * or a fatal error. + * + * \param context a pointer to an SDL_IOStream structure. + * \param ptr a pointer to a buffer containing data to write. + * \param size the number of bytes to write. + * \returns the number of bytes written, which will be less than `size` on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOprintf + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_FlushIO + * \sa SDL_GetIOStatus + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_WriteIO(SDL_IOStream *context, const void *ptr, size_t size); + +/** + * Print to an SDL_IOStream data stream. + * + * This function does formatted printing to the stream. + * + * \param context a pointer to an SDL_IOStream structure. + * \param fmt a printf() style format string. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * \returns the number of bytes written or 0 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOvprintf + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_IOprintf(SDL_IOStream *context, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Print to an SDL_IOStream data stream. + * + * This function does formatted printing to the stream. + * + * \param context a pointer to an SDL_IOStream structure. + * \param fmt a printf() style format string. + * \param ap a variable argument list. + * \returns the number of bytes written or 0 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOprintf + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_IOvprintf(SDL_IOStream *context, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + +/** + * Flush any buffered data in the stream. + * + * This function makes sure that any buffered data is written to the stream. + * Normally this isn't necessary but if the stream is a pipe or socket it + * guarantees that any pending data is sent. + * + * \param context SDL_IOStream structure to flush. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlushIO(SDL_IOStream *context); + +/** + * Load all the data from an SDL data stream. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in the value reported via + * `datasize`. + * + * The data should be freed with SDL_free(). + * + * \param src the SDL_IOStream to read all available data from. + * \param datasize a pointer filled in with the number of bytes read, may be + * NULL. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns the data or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFile + * \sa SDL_SaveFile_IO + */ +extern SDL_DECLSPEC void * SDLCALL SDL_LoadFile_IO(SDL_IOStream *src, size_t *datasize, bool closeio); + +/** + * Load all the data from a file path. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in the value reported via + * `datasize`. + * + * The data should be freed with SDL_free(). + * + * \param file the path to read all available data from. + * \param datasize if not NULL, will store the number of bytes read. + * \returns the data or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFile_IO + * \sa SDL_SaveFile + */ +extern SDL_DECLSPEC void * SDLCALL SDL_LoadFile(const char *file, size_t *datasize); + +/** + * Save all the data into an SDL data stream. + * + * \param src the SDL_IOStream to write all data to. + * \param data the data to be written. If datasize is 0, may be NULL or a + * invalid pointer. + * \param datasize the number of bytes to be written. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SaveFile + * \sa SDL_LoadFile_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveFile_IO(SDL_IOStream *src, const void *data, size_t datasize, bool closeio); + +/** + * Save all the data into a file path. + * + * \param file the path to write all available data into. + * \param data the data to be written. If datasize is 0, may be NULL or a + * invalid pointer. + * \param datasize the number of bytes to be written. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SaveFile_IO + * \sa SDL_LoadFile + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveFile(const char *file, const void *data, size_t datasize); + +/** + * \name Read endian functions + * + * Read an item of the specified endianness and return in native format. + */ +/* @{ */ + +/** + * Use this function to read a byte from an SDL_IOStream. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the SDL_IOStream to read from. + * \param value a pointer filled in with the data read. + * \returns true on success or false on failure or EOF; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU8(SDL_IOStream *src, Uint8 *value); + +/** + * Use this function to read a signed byte from an SDL_IOStream. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the SDL_IOStream to read from. + * \param value a pointer filled in with the data read. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS8(SDL_IOStream *src, Sint8 *value); + +/** + * Use this function to read 16 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU16LE(SDL_IOStream *src, Uint16 *value); + +/** + * Use this function to read 16 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS16LE(SDL_IOStream *src, Sint16 *value); + +/** + * Use this function to read 16 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU16BE(SDL_IOStream *src, Uint16 *value); + +/** + * Use this function to read 16 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS16BE(SDL_IOStream *src, Sint16 *value); + +/** + * Use this function to read 32 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU32LE(SDL_IOStream *src, Uint32 *value); + +/** + * Use this function to read 32 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS32LE(SDL_IOStream *src, Sint32 *value); + +/** + * Use this function to read 32 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU32BE(SDL_IOStream *src, Uint32 *value); + +/** + * Use this function to read 32 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS32BE(SDL_IOStream *src, Sint32 *value); + +/** + * Use this function to read 64 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU64LE(SDL_IOStream *src, Uint64 *value); + +/** + * Use this function to read 64 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS64LE(SDL_IOStream *src, Sint64 *value); + +/** + * Use this function to read 64 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU64BE(SDL_IOStream *src, Uint64 *value); + +/** + * Use this function to read 64 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS64BE(SDL_IOStream *src, Sint64 *value); +/* @} *//* Read endian functions */ + +/** + * \name Write endian functions + * + * Write an item of native format to the specified endianness. + */ +/* @{ */ + +/** + * Use this function to write a byte to an SDL_IOStream. + * + * \param dst the SDL_IOStream to write to. + * \param value the byte value to write. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU8(SDL_IOStream *dst, Uint8 value); + +/** + * Use this function to write a signed byte to an SDL_IOStream. + * + * \param dst the SDL_IOStream to write to. + * \param value the byte value to write. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS8(SDL_IOStream *dst, Sint8 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU16LE(SDL_IOStream *dst, Uint16 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS16LE(SDL_IOStream *dst, Sint16 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU16BE(SDL_IOStream *dst, Uint16 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS16BE(SDL_IOStream *dst, Sint16 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU32LE(SDL_IOStream *dst, Uint32 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS32LE(SDL_IOStream *dst, Sint32 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU32BE(SDL_IOStream *dst, Uint32 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS32BE(SDL_IOStream *dst, Sint32 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU64LE(SDL_IOStream *dst, Uint64 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS64LE(SDL_IOStream *dst, Sint64 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU64BE(SDL_IOStream *dst, Uint64 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS64BE(SDL_IOStream *dst, Sint64 value); + +/* @} *//* Write endian functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_iostream_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_joystick.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_joystick.h new file mode 100644 index 0000000..d15668b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_joystick.h @@ -0,0 +1,1202 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryJoystick + * + * SDL joystick support. + * + * This is the lower-level joystick handling. If you want the simpler option, + * where what each button does is well-defined, you should use the gamepad API + * instead. + * + * The term "instance_id" is the current instantiation of a joystick device in + * the system, if the joystick is removed and then re-inserted then it will + * get a new instance_id, instance_id's are monotonically increasing + * identifiers of a joystick plugged in. + * + * The term "player_index" is the number assigned to a player on a specific + * controller. For XInput controllers this returns the XInput user index. Many + * joysticks will not be able to supply this information. + * + * SDL_GUID is used as a stable 128-bit identifier for a joystick device that + * does not change over time. It identifies class of the device (a X360 wired + * controller for example). This identifier is platform dependent. + * + * In order to use these functions, SDL_Init() must have been called with the + * SDL_INIT_JOYSTICK flag. This causes SDL to scan the system for joysticks, + * and load appropriate drivers. + * + * If you would like to receive joystick updates while the application is in + * the background, you should set the following hint before calling + * SDL_Init(): SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS + */ + +#ifndef SDL_joystick_h_ +#define SDL_joystick_h_ + +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef SDL_THREAD_SAFETY_ANALYSIS +/* + * This is not an exported symbol from SDL, this is only in the headers to + * help Clang's thread safety analysis tools to function. Do not attempt + * to access this symbol from your app, it will not work! + */ +extern SDL_Mutex *SDL_joystick_lock; +#endif + +/** + * The joystick structure used to identify an SDL joystick. + * + * This is opaque data. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Joystick SDL_Joystick; + +/** + * This is a unique ID for a joystick for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the joystick is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_JoystickID; + +/** + * An enum of some common joystick types. + * + * In some cases, SDL can identify a low-level joystick as being a certain + * type of device, and will report it through SDL_GetJoystickType (or + * SDL_GetJoystickTypeForID). + * + * This is by no means a complete list of everything that can be plugged into + * a computer. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_JoystickType +{ + SDL_JOYSTICK_TYPE_UNKNOWN, + SDL_JOYSTICK_TYPE_GAMEPAD, + SDL_JOYSTICK_TYPE_WHEEL, + SDL_JOYSTICK_TYPE_ARCADE_STICK, + SDL_JOYSTICK_TYPE_FLIGHT_STICK, + SDL_JOYSTICK_TYPE_DANCE_PAD, + SDL_JOYSTICK_TYPE_GUITAR, + SDL_JOYSTICK_TYPE_DRUM_KIT, + SDL_JOYSTICK_TYPE_ARCADE_PAD, + SDL_JOYSTICK_TYPE_THROTTLE, + SDL_JOYSTICK_TYPE_COUNT +} SDL_JoystickType; + +/** + * Possible connection states for a joystick device. + * + * This is used by SDL_GetJoystickConnectionState to report how a device is + * connected to the system. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_JoystickConnectionState +{ + SDL_JOYSTICK_CONNECTION_INVALID = -1, + SDL_JOYSTICK_CONNECTION_UNKNOWN, + SDL_JOYSTICK_CONNECTION_WIRED, + SDL_JOYSTICK_CONNECTION_WIRELESS +} SDL_JoystickConnectionState; + +/** + * The largest value an SDL_Joystick's axis can report. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_JOYSTICK_AXIS_MIN + */ +#define SDL_JOYSTICK_AXIS_MAX 32767 + +/** + * The smallest value an SDL_Joystick's axis can report. + * + * This is a negative number! + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_JOYSTICK_AXIS_MAX + */ +#define SDL_JOYSTICK_AXIS_MIN -32768 + + +/* Function prototypes */ + +/** + * Locking for atomic access to the joystick API. + * + * The SDL joystick functions are thread-safe, however you can lock the + * joysticks while processing to guarantee that the joystick list won't change + * and joystick and gamepad events will not be delivered. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockJoysticks(void) SDL_ACQUIRE(SDL_joystick_lock); + +/** + * Unlocking for atomic access to the joystick API. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockJoysticks(void) SDL_RELEASE(SDL_joystick_lock); + +/** + * Return whether a joystick is currently connected. + * + * \returns true if a joystick is connected, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasJoystick(void); + +/** + * Get a list of currently connected joysticks. + * + * \param count a pointer filled in with the number of joysticks returned, may + * be NULL. + * \returns a 0 terminated array of joystick instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasJoystick + * \sa SDL_OpenJoystick + */ +extern SDL_DECLSPEC SDL_JoystickID * SDLCALL SDL_GetJoysticks(int *count); + +/** + * Get the implementation dependent name of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the name of the selected joystick. If no name can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickName + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickNameForID(SDL_JoystickID instance_id); + +/** + * Get the implementation dependent path of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the path of the selected joystick. If no path can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPath + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickPathForID(SDL_JoystickID instance_id); + +/** + * Get the player index of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the player index of a joystick, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPlayerIndex + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetJoystickPlayerIndexForID(SDL_JoystickID instance_id); + +/** + * Get the implementation-dependent GUID of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the GUID of the selected joystick. If called with an invalid + * instance_id, this function returns a zero GUID. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUID + * \sa SDL_GUIDToString + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_GetJoystickGUIDForID(SDL_JoystickID instance_id); + +/** + * Get the USB vendor ID of a joystick, if available. + * + * This can be called before any joysticks are opened. If the vendor ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB vendor ID of the selected joystick. If called with an + * invalid instance_id, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickVendor + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickVendorForID(SDL_JoystickID instance_id); + +/** + * Get the USB product ID of a joystick, if available. + * + * This can be called before any joysticks are opened. If the product ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB product ID of the selected joystick. If called with an + * invalid instance_id, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProduct + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProductForID(SDL_JoystickID instance_id); + +/** + * Get the product version of a joystick, if available. + * + * This can be called before any joysticks are opened. If the product version + * isn't available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the product version of the selected joystick. If called with an + * invalid instance_id, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProductVersion + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProductVersionForID(SDL_JoystickID instance_id); + +/** + * Get the type of a joystick, if available. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the SDL_JoystickType of the selected joystick. If called with an + * invalid instance_id, this function returns + * `SDL_JOYSTICK_TYPE_UNKNOWN`. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickType + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC SDL_JoystickType SDLCALL SDL_GetJoystickTypeForID(SDL_JoystickID instance_id); + +/** + * Open a joystick for use. + * + * The joystick subsystem must be initialized before a joystick can be opened + * for use. + * + * \param instance_id the joystick instance ID. + * \returns a joystick identifier or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseJoystick + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_OpenJoystick(SDL_JoystickID instance_id); + +/** + * Get the SDL_Joystick associated with an instance ID, if it has been opened. + * + * \param instance_id the instance ID to get the SDL_Joystick for. + * \returns an SDL_Joystick on success or NULL on failure or if it hasn't been + * opened yet; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_GetJoystickFromID(SDL_JoystickID instance_id); + +/** + * Get the SDL_Joystick associated with a player index. + * + * \param player_index the player index to get the SDL_Joystick for. + * \returns an SDL_Joystick on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPlayerIndex + * \sa SDL_SetJoystickPlayerIndex + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_GetJoystickFromPlayerIndex(int player_index); + +/** + * The structure that describes a virtual joystick touchpad. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_VirtualJoystickDesc + */ +typedef struct SDL_VirtualJoystickTouchpadDesc +{ + Uint16 nfingers; /**< the number of simultaneous fingers on this touchpad */ + Uint16 padding[3]; +} SDL_VirtualJoystickTouchpadDesc; + +/** + * The structure that describes a virtual joystick sensor. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_VirtualJoystickDesc + */ +typedef struct SDL_VirtualJoystickSensorDesc +{ + SDL_SensorType type; /**< the type of this sensor */ + float rate; /**< the update frequency of this sensor, may be 0.0f */ +} SDL_VirtualJoystickSensorDesc; + +/** + * The structure that describes a virtual joystick. + * + * This structure should be initialized using SDL_INIT_INTERFACE(). All + * elements of this structure are optional. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AttachVirtualJoystick + * \sa SDL_INIT_INTERFACE + * \sa SDL_VirtualJoystickSensorDesc + * \sa SDL_VirtualJoystickTouchpadDesc + */ +typedef struct SDL_VirtualJoystickDesc +{ + Uint32 version; /**< the version of this interface */ + Uint16 type; /**< `SDL_JoystickType` */ + Uint16 padding; /**< unused */ + Uint16 vendor_id; /**< the USB vendor ID of this joystick */ + Uint16 product_id; /**< the USB product ID of this joystick */ + Uint16 naxes; /**< the number of axes on this joystick */ + Uint16 nbuttons; /**< the number of buttons on this joystick */ + Uint16 nballs; /**< the number of balls on this joystick */ + Uint16 nhats; /**< the number of hats on this joystick */ + Uint16 ntouchpads; /**< the number of touchpads on this joystick, requires `touchpads` to point at valid descriptions */ + Uint16 nsensors; /**< the number of sensors on this joystick, requires `sensors` to point at valid descriptions */ + Uint16 padding2[2]; /**< unused */ + Uint32 button_mask; /**< A mask of which buttons are valid for this controller + e.g. (1 << SDL_GAMEPAD_BUTTON_SOUTH) */ + Uint32 axis_mask; /**< A mask of which axes are valid for this controller + e.g. (1 << SDL_GAMEPAD_AXIS_LEFTX) */ + const char *name; /**< the name of the joystick */ + const SDL_VirtualJoystickTouchpadDesc *touchpads; /**< A pointer to an array of touchpad descriptions, required if `ntouchpads` is > 0 */ + const SDL_VirtualJoystickSensorDesc *sensors; /**< A pointer to an array of sensor descriptions, required if `nsensors` is > 0 */ + + void *userdata; /**< User data pointer passed to callbacks */ + void (SDLCALL *Update)(void *userdata); /**< Called when the joystick state should be updated */ + void (SDLCALL *SetPlayerIndex)(void *userdata, int player_index); /**< Called when the player index is set */ + bool (SDLCALL *Rumble)(void *userdata, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble); /**< Implements SDL_RumbleJoystick() */ + bool (SDLCALL *RumbleTriggers)(void *userdata, Uint16 left_rumble, Uint16 right_rumble); /**< Implements SDL_RumbleJoystickTriggers() */ + bool (SDLCALL *SetLED)(void *userdata, Uint8 red, Uint8 green, Uint8 blue); /**< Implements SDL_SetJoystickLED() */ + bool (SDLCALL *SendEffect)(void *userdata, const void *data, int size); /**< Implements SDL_SendJoystickEffect() */ + bool (SDLCALL *SetSensorsEnabled)(void *userdata, bool enabled); /**< Implements SDL_SetGamepadSensorEnabled() */ + void (SDLCALL *Cleanup)(void *userdata); /**< Cleans up the userdata when the joystick is detached */ +} SDL_VirtualJoystickDesc; + +/* Check the size of SDL_VirtualJoystickDesc + * + * If this assert fails, either the compiler is padding to an unexpected size, + * or the interface has been updated and this should be updated to match and + * the code using this interface should be updated to handle the old version. + */ +SDL_COMPILE_TIME_ASSERT(SDL_VirtualJoystickDesc_SIZE, + (sizeof(void *) == 4 && sizeof(SDL_VirtualJoystickDesc) == 84) || + (sizeof(void *) == 8 && sizeof(SDL_VirtualJoystickDesc) == 136)); + +/** + * Attach a new virtual joystick. + * + * \param desc joystick description, initialized using SDL_INIT_INTERFACE(). + * \returns the joystick instance ID, or 0 on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DetachVirtualJoystick + */ +extern SDL_DECLSPEC SDL_JoystickID SDLCALL SDL_AttachVirtualJoystick(const SDL_VirtualJoystickDesc *desc); + +/** + * Detach a virtual joystick. + * + * \param instance_id the joystick instance ID, previously returned from + * SDL_AttachVirtualJoystick(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AttachVirtualJoystick + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DetachVirtualJoystick(SDL_JoystickID instance_id); + +/** + * Query whether or not a joystick is virtual. + * + * \param instance_id the joystick instance ID. + * \returns true if the joystick is virtual, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsJoystickVirtual(SDL_JoystickID instance_id); + +/** + * Set the state of an axis on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * Note that when sending trigger axes, you should scale the value to the full + * range of Sint16. For example, a trigger at rest would have the value of + * `SDL_JOYSTICK_AXIS_MIN`. + * + * \param joystick the virtual joystick on which to set state. + * \param axis the index of the axis on the virtual joystick to update. + * \param value the new value for the specified axis. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualAxis(SDL_Joystick *joystick, int axis, Sint16 value); + +/** + * Generate ball motion on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param ball the index of the ball on the virtual joystick to update. + * \param xrel the relative motion on the X axis. + * \param yrel the relative motion on the Y axis. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualBall(SDL_Joystick *joystick, int ball, Sint16 xrel, Sint16 yrel); + +/** + * Set the state of a button on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param button the index of the button on the virtual joystick to update. + * \param down true if the button is pressed, false otherwise. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualButton(SDL_Joystick *joystick, int button, bool down); + +/** + * Set the state of a hat on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param hat the index of the hat on the virtual joystick to update. + * \param value the new value for the specified hat. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualHat(SDL_Joystick *joystick, int hat, Uint8 value); + +/** + * Set touchpad finger state on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param touchpad the index of the touchpad on the virtual joystick to + * update. + * \param finger the index of the finger on the touchpad to set. + * \param down true if the finger is pressed, false if the finger is released. + * \param x the x coordinate of the finger on the touchpad, normalized 0 to 1, + * with the origin in the upper left. + * \param y the y coordinate of the finger on the touchpad, normalized 0 to 1, + * with the origin in the upper left. + * \param pressure the pressure of the finger. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualTouchpad(SDL_Joystick *joystick, int touchpad, int finger, bool down, float x, float y, float pressure); + +/** + * Send a sensor update for an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param type the type of the sensor on the virtual joystick to update. + * \param sensor_timestamp a 64-bit timestamp in nanoseconds associated with + * the sensor reading. + * \param data the data associated with the sensor reading. + * \param num_values the number of values pointed to by `data`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendJoystickVirtualSensorData(SDL_Joystick *joystick, SDL_SensorType type, Uint64 sensor_timestamp, const float *data, int num_values); + +/** + * Get the properties associated with a joystick. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_JOYSTICK_CAP_MONO_LED_BOOLEAN`: true if this joystick has an + * LED that has adjustable brightness + * - `SDL_PROP_JOYSTICK_CAP_RGB_LED_BOOLEAN`: true if this joystick has an LED + * that has adjustable color + * - `SDL_PROP_JOYSTICK_CAP_PLAYER_LED_BOOLEAN`: true if this joystick has a + * player LED + * - `SDL_PROP_JOYSTICK_CAP_RUMBLE_BOOLEAN`: true if this joystick has + * left/right rumble + * - `SDL_PROP_JOYSTICK_CAP_TRIGGER_RUMBLE_BOOLEAN`: true if this joystick has + * simple trigger rumble + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetJoystickProperties(SDL_Joystick *joystick); + +#define SDL_PROP_JOYSTICK_CAP_MONO_LED_BOOLEAN "SDL.joystick.cap.mono_led" +#define SDL_PROP_JOYSTICK_CAP_RGB_LED_BOOLEAN "SDL.joystick.cap.rgb_led" +#define SDL_PROP_JOYSTICK_CAP_PLAYER_LED_BOOLEAN "SDL.joystick.cap.player_led" +#define SDL_PROP_JOYSTICK_CAP_RUMBLE_BOOLEAN "SDL.joystick.cap.rumble" +#define SDL_PROP_JOYSTICK_CAP_TRIGGER_RUMBLE_BOOLEAN "SDL.joystick.cap.trigger_rumble" + +/** + * Get the implementation dependent name of a joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the name of the selected joystick. If no name can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickNameForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickName(SDL_Joystick *joystick); + +/** + * Get the implementation dependent path of a joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the path of the selected joystick. If no path can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPathForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickPath(SDL_Joystick *joystick); + +/** + * Get the player index of an opened joystick. + * + * For XInput controllers this returns the XInput user index. Many joysticks + * will not be able to supply this information. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the player index, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetJoystickPlayerIndex + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetJoystickPlayerIndex(SDL_Joystick *joystick); + +/** + * Set the player index of an opened joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \param player_index player index to assign to this joystick, or -1 to clear + * the player index and turn off player LEDs. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPlayerIndex + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickPlayerIndex(SDL_Joystick *joystick, int player_index); + +/** + * Get the implementation-dependent GUID for the joystick. + * + * This function requires an open joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the GUID of the given joystick. If called on an invalid index, + * this function returns a zero GUID; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUIDForID + * \sa SDL_GUIDToString + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_GetJoystickGUID(SDL_Joystick *joystick); + +/** + * Get the USB vendor ID of an opened joystick, if available. + * + * If the vendor ID isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the USB vendor ID of the selected joystick, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickVendorForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickVendor(SDL_Joystick *joystick); + +/** + * Get the USB product ID of an opened joystick, if available. + * + * If the product ID isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the USB product ID of the selected joystick, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProductForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProduct(SDL_Joystick *joystick); + +/** + * Get the product version of an opened joystick, if available. + * + * If the product version isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the product version of the selected joystick, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProductVersionForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProductVersion(SDL_Joystick *joystick); + +/** + * Get the firmware version of an opened joystick, if available. + * + * If the firmware version isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the firmware version of the selected joystick, or 0 if + * unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickFirmwareVersion(SDL_Joystick *joystick); + +/** + * Get the serial number of an opened joystick, if available. + * + * Returns the serial number of the joystick, or NULL if it is not available. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the serial number of the selected joystick, or NULL if + * unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickSerial(SDL_Joystick *joystick); + +/** + * Get the type of an opened joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the SDL_JoystickType of the selected joystick. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickTypeForID + */ +extern SDL_DECLSPEC SDL_JoystickType SDLCALL SDL_GetJoystickType(SDL_Joystick *joystick); + +/** + * Get the device information encoded in a SDL_GUID structure. + * + * \param guid the SDL_GUID you wish to get info about. + * \param vendor a pointer filled in with the device VID, or 0 if not + * available. + * \param product a pointer filled in with the device PID, or 0 if not + * available. + * \param version a pointer filled in with the device version, or 0 if not + * available. + * \param crc16 a pointer filled in with a CRC used to distinguish different + * products with the same VID/PID, or 0 if not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUIDForID + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetJoystickGUIDInfo(SDL_GUID guid, Uint16 *vendor, Uint16 *product, Uint16 *version, Uint16 *crc16); + +/** + * Get the status of a specified joystick. + * + * \param joystick the joystick to query. + * \returns true if the joystick has been opened, false if it has not; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_JoystickConnected(SDL_Joystick *joystick); + +/** + * Get the instance ID of an opened joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the instance ID of the specified joystick on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickID SDLCALL SDL_GetJoystickID(SDL_Joystick *joystick); + +/** + * Get the number of general axis controls on a joystick. + * + * Often, the directional pad on a game controller will either look like 4 + * separate buttons or a POV hat, and not axes, but all of this is up to the + * device and platform. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of axis controls/number of axes on success or -1 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickAxis + * \sa SDL_GetNumJoystickBalls + * \sa SDL_GetNumJoystickButtons + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickAxes(SDL_Joystick *joystick); + +/** + * Get the number of trackballs on a joystick. + * + * Joystick trackballs have only relative motion events associated with them + * and their state cannot be polled. + * + * Most joysticks do not have trackballs. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of trackballs on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickBall + * \sa SDL_GetNumJoystickAxes + * \sa SDL_GetNumJoystickButtons + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickBalls(SDL_Joystick *joystick); + +/** + * Get the number of POV hats on a joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of POV hats on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickHat + * \sa SDL_GetNumJoystickAxes + * \sa SDL_GetNumJoystickBalls + * \sa SDL_GetNumJoystickButtons + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickHats(SDL_Joystick *joystick); + +/** + * Get the number of buttons on a joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of buttons on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickButton + * \sa SDL_GetNumJoystickAxes + * \sa SDL_GetNumJoystickBalls + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickButtons(SDL_Joystick *joystick); + +/** + * Set the state of joystick event processing. + * + * If joystick events are disabled, you must call SDL_UpdateJoysticks() + * yourself and check the state of the joystick when you want joystick + * information. + * + * \param enabled whether to process joystick events or not. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_JoystickEventsEnabled + * \sa SDL_UpdateJoysticks + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetJoystickEventsEnabled(bool enabled); + +/** + * Query the state of joystick event processing. + * + * If joystick events are disabled, you must call SDL_UpdateJoysticks() + * yourself and check the state of the joystick when you want joystick + * information. + * + * \returns true if joystick events are being processed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetJoystickEventsEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_JoystickEventsEnabled(void); + +/** + * Update the current state of the open joysticks. + * + * This is called automatically by the event loop if any joystick events are + * enabled. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateJoysticks(void); + +/** + * Get the current state of an axis control on a joystick. + * + * SDL makes no promises about what part of the joystick any given axis refers + * to. Your game should have some sort of configuration UI to let users + * specify what each axis should be bound to. Alternately, SDL's higher-level + * Game Controller API makes a great effort to apply order to this lower-level + * interface, so you know that a specific axis is the "left thumb stick," etc. + * + * The value returned by SDL_GetJoystickAxis() is a signed integer (-32768 to + * 32767) representing the current position of the axis. It may be necessary + * to impose certain tolerances on these values to account for jitter. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param axis the axis to query; the axis indices start at index 0. + * \returns a 16-bit signed integer representing the current position of the + * axis or 0 on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickAxes + */ +extern SDL_DECLSPEC Sint16 SDLCALL SDL_GetJoystickAxis(SDL_Joystick *joystick, int axis); + +/** + * Get the initial state of an axis control on a joystick. + * + * The state is a value ranging from -32768 to 32767. + * + * The axis indices start at index 0. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param axis the axis to query; the axis indices start at index 0. + * \param state upon return, the initial value is supplied here. + * \returns true if this axis has any initial value, or false if not. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetJoystickAxisInitialState(SDL_Joystick *joystick, int axis, Sint16 *state); + +/** + * Get the ball axis change since the last poll. + * + * Trackballs can only return relative motion since the last call to + * SDL_GetJoystickBall(), these motion deltas are placed into `dx` and `dy`. + * + * Most joysticks do not have trackballs. + * + * \param joystick the SDL_Joystick to query. + * \param ball the ball index to query; ball indices start at index 0. + * \param dx stores the difference in the x axis position since the last poll. + * \param dy stores the difference in the y axis position since the last poll. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickBalls + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetJoystickBall(SDL_Joystick *joystick, int ball, int *dx, int *dy); + +/** + * Get the current state of a POV hat on a joystick. + * + * The returned value will be one of the `SDL_HAT_*` values. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param hat the hat index to get the state from; indices start at index 0. + * \returns the current hat position. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC Uint8 SDLCALL SDL_GetJoystickHat(SDL_Joystick *joystick, int hat); + +#define SDL_HAT_CENTERED 0x00u +#define SDL_HAT_UP 0x01u +#define SDL_HAT_RIGHT 0x02u +#define SDL_HAT_DOWN 0x04u +#define SDL_HAT_LEFT 0x08u +#define SDL_HAT_RIGHTUP (SDL_HAT_RIGHT|SDL_HAT_UP) +#define SDL_HAT_RIGHTDOWN (SDL_HAT_RIGHT|SDL_HAT_DOWN) +#define SDL_HAT_LEFTUP (SDL_HAT_LEFT|SDL_HAT_UP) +#define SDL_HAT_LEFTDOWN (SDL_HAT_LEFT|SDL_HAT_DOWN) + +/** + * Get the current state of a button on a joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param button the button index to get the state from; indices start at + * index 0. + * \returns true if the button is pressed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickButtons + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetJoystickButton(SDL_Joystick *joystick, int button); + +/** + * Start a rumble effect. + * + * Each call to this function cancels any previous rumble effect, and calling + * it with 0 intensity stops any rumbling. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param joystick the joystick to vibrate. + * \param low_frequency_rumble the intensity of the low frequency (left) + * rumble motor, from 0 to 0xFFFF. + * \param high_frequency_rumble the intensity of the high frequency (right) + * rumble motor, from 0 to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true, or false if rumble isn't supported on this joystick. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleJoystick(SDL_Joystick *joystick, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble, Uint32 duration_ms); + +/** + * Start a rumble effect in the joystick's triggers. + * + * Each call to this function cancels any previous trigger rumble effect, and + * calling it with 0 intensity stops any rumbling. + * + * Note that this is rumbling of the _triggers_ and not the game controller as + * a whole. This is currently only supported on Xbox One controllers. If you + * want the (more common) whole-controller rumble, use SDL_RumbleJoystick() + * instead. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param joystick the joystick to vibrate. + * \param left_rumble the intensity of the left trigger rumble motor, from 0 + * to 0xFFFF. + * \param right_rumble the intensity of the right trigger rumble motor, from 0 + * to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RumbleJoystick + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleJoystickTriggers(SDL_Joystick *joystick, Uint16 left_rumble, Uint16 right_rumble, Uint32 duration_ms); + +/** + * Update a joystick's LED color. + * + * An example of a joystick LED is the light on the back of a PlayStation 4's + * DualShock 4 controller. + * + * For joysticks with a single color LED, the maximum of the RGB values will + * be used as the LED brightness. + * + * \param joystick the joystick to update. + * \param red the intensity of the red LED. + * \param green the intensity of the green LED. + * \param blue the intensity of the blue LED. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickLED(SDL_Joystick *joystick, Uint8 red, Uint8 green, Uint8 blue); + +/** + * Send a joystick specific effect packet. + * + * \param joystick the joystick to affect. + * \param data the data to send to the joystick. + * \param size the size of the data to send to the joystick. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendJoystickEffect(SDL_Joystick *joystick, const void *data, int size); + +/** + * Close a joystick previously opened with SDL_OpenJoystick(). + * + * \param joystick the joystick device to close. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenJoystick + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseJoystick(SDL_Joystick *joystick); + +/** + * Get the connection state of a joystick. + * + * \param joystick the joystick to query. + * \returns the connection state on success or + * `SDL_JOYSTICK_CONNECTION_INVALID` on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickConnectionState SDLCALL SDL_GetJoystickConnectionState(SDL_Joystick *joystick); + +/** + * Get the battery state of a joystick. + * + * You should never take a battery status as absolute truth. Batteries + * (especially failing batteries) are delicate hardware, and the values + * reported here are best estimates based on what that hardware reports. It's + * not uncommon for older batteries to lose stored power much faster than it + * reports, or completely drain when reporting it has 20 percent left, etc. + * + * \param joystick the joystick to query. + * \param percent a pointer filled in with the percentage of battery life + * left, between 0 and 100, or NULL to ignore. This will be + * filled in with -1 we can't determine a value or there is no + * battery. + * \returns the current battery state or `SDL_POWERSTATE_ERROR` on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PowerState SDLCALL SDL_GetJoystickPowerInfo(SDL_Joystick *joystick, int *percent); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_joystick_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_keyboard.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_keyboard.h new file mode 100644 index 0000000..afa77b6 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_keyboard.h @@ -0,0 +1,609 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryKeyboard + * + * SDL keyboard management. + * + * Please refer to the Best Keyboard Practices document for details on how + * best to accept keyboard input in various types of programs: + * + * https://wiki.libsdl.org/SDL3/BestKeyboardPractices + */ + +#ifndef SDL_keyboard_h_ +#define SDL_keyboard_h_ + +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a keyboard for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the keyboard is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_KeyboardID; + +/* Function prototypes */ + +/** + * Return whether a keyboard is currently connected. + * + * \returns true if a keyboard is connected, false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboards + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasKeyboard(void); + +/** + * Get a list of currently connected keyboards. + * + * Note that this will include any device or virtual driver that includes + * keyboard functionality, including some mice, KVM switches, motherboard + * power buttons, etc. You should wait for input from a device before you + * consider it actively in use. + * + * \param count a pointer filled in with the number of keyboards returned, may + * be NULL. + * \returns a 0 terminated array of keyboards instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboardNameForID + * \sa SDL_HasKeyboard + */ +extern SDL_DECLSPEC SDL_KeyboardID * SDLCALL SDL_GetKeyboards(int *count); + +/** + * Get the name of a keyboard. + * + * This function returns "" if the keyboard doesn't have a name. + * + * \param instance_id the keyboard instance ID. + * \returns the name of the selected keyboard or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboards + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetKeyboardNameForID(SDL_KeyboardID instance_id); + +/** + * Query the window which currently has keyboard focus. + * + * \returns the window with keyboard focus. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetKeyboardFocus(void); + +/** + * Get a snapshot of the current state of the keyboard. + * + * The pointer returned is a pointer to an internal SDL array. It will be + * valid for the whole lifetime of the application and should not be freed by + * the caller. + * + * A array element with a value of true means that the key is pressed and a + * value of false means that it is not. Indexes into this array are obtained + * by using SDL_Scancode values. + * + * Use SDL_PumpEvents() to update the state array. + * + * This function gives you the current state after all events have been + * processed, so if a key or button has been pressed and released before you + * process events, then the pressed state will never show up in the + * SDL_GetKeyboardState() calls. + * + * Note: This function doesn't take into account whether shift has been + * pressed or not. + * + * \param numkeys if non-NULL, receives the length of the returned array. + * \returns a pointer to an array of key states. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PumpEvents + * \sa SDL_ResetKeyboard + */ +extern SDL_DECLSPEC const bool * SDLCALL SDL_GetKeyboardState(int *numkeys); + +/** + * Clear the state of the keyboard. + * + * This function will generate key up events for all pressed keys. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboardState + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetKeyboard(void); + +/** + * Get the current key modifier state for the keyboard. + * + * \returns an OR'd combination of the modifier keys for the keyboard. See + * SDL_Keymod for details. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboardState + * \sa SDL_SetModState + */ +extern SDL_DECLSPEC SDL_Keymod SDLCALL SDL_GetModState(void); + +/** + * Set the current key modifier state for the keyboard. + * + * The inverse of SDL_GetModState(), SDL_SetModState() allows you to impose + * modifier key states on your application. Simply pass your desired modifier + * states into `modstate`. This value may be a bitwise, OR'd combination of + * SDL_Keymod values. + * + * This does not change the keyboard state, only the key modifier flags that + * SDL reports. + * + * \param modstate the desired SDL_Keymod for the keyboard. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetModState + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetModState(SDL_Keymod modstate); + +/** + * Get the key code corresponding to the given scancode according to the + * current keyboard layout. + * + * If you want to get the keycode as it would be delivered in key events, + * including options specified in SDL_HINT_KEYCODE_OPTIONS, then you should + * pass `key_event` as true. Otherwise this function simply translates the + * scancode based on the given modifier state. + * + * \param scancode the desired SDL_Scancode to query. + * \param modstate the modifier state to use when translating the scancode to + * a keycode. + * \param key_event true if the keycode will be used in key events. + * \returns the SDL_Keycode that corresponds to the given SDL_Scancode. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyName + * \sa SDL_GetScancodeFromKey + */ +extern SDL_DECLSPEC SDL_Keycode SDLCALL SDL_GetKeyFromScancode(SDL_Scancode scancode, SDL_Keymod modstate, bool key_event); + +/** + * Get the scancode corresponding to the given key code according to the + * current keyboard layout. + * + * Note that there may be multiple scancode+modifier states that can generate + * this keycode, this will just return the first one found. + * + * \param key the desired SDL_Keycode to query. + * \param modstate a pointer to the modifier state that would be used when the + * scancode generates this key, may be NULL. + * \returns the SDL_Scancode that corresponds to the given SDL_Keycode. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromScancode + * \sa SDL_GetScancodeName + */ +extern SDL_DECLSPEC SDL_Scancode SDLCALL SDL_GetScancodeFromKey(SDL_Keycode key, SDL_Keymod *modstate); + +/** + * Set a human-readable name for a scancode. + * + * \param scancode the desired SDL_Scancode. + * \param name the name to use for the scancode, encoded as UTF-8. The string + * is not copied, so the pointer given to this function must stay + * valid while SDL is being used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetScancodeName + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetScancodeName(SDL_Scancode scancode, const char *name); + +/** + * Get a human-readable name for a scancode. + * + * **Warning**: The returned name is by design not stable across platforms, + * e.g. the name for `SDL_SCANCODE_LGUI` is "Left GUI" under Linux but "Left + * Windows" under Microsoft Windows, and some scancodes like + * `SDL_SCANCODE_NONUSBACKSLASH` don't have any name at all. There are even + * scancodes that share names, e.g. `SDL_SCANCODE_RETURN` and + * `SDL_SCANCODE_RETURN2` (both called "Return"). This function is therefore + * unsuitable for creating a stable cross-platform two-way mapping between + * strings and scancodes. + * + * \param scancode the desired SDL_Scancode to query. + * \returns a pointer to the name for the scancode. If the scancode doesn't + * have a name this function returns an empty string (""). + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetScancodeFromKey + * \sa SDL_GetScancodeFromName + * \sa SDL_SetScancodeName + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetScancodeName(SDL_Scancode scancode); + +/** + * Get a scancode from a human-readable name. + * + * \param name the human-readable scancode name. + * \returns the SDL_Scancode, or `SDL_SCANCODE_UNKNOWN` if the name wasn't + * recognized; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromName + * \sa SDL_GetScancodeFromKey + * \sa SDL_GetScancodeName + */ +extern SDL_DECLSPEC SDL_Scancode SDLCALL SDL_GetScancodeFromName(const char *name); + +/** + * Get a human-readable name for a key. + * + * If the key doesn't have a name, this function returns an empty string (""). + * + * Letters will be presented in their uppercase form, if applicable. + * + * \param key the desired SDL_Keycode to query. + * \returns a UTF-8 encoded string of the key name. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromName + * \sa SDL_GetKeyFromScancode + * \sa SDL_GetScancodeFromKey + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetKeyName(SDL_Keycode key); + +/** + * Get a key code from a human-readable name. + * + * \param name the human-readable key name. + * \returns key code, or `SDLK_UNKNOWN` if the name wasn't recognized; call + * SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromScancode + * \sa SDL_GetKeyName + * \sa SDL_GetScancodeFromName + */ +extern SDL_DECLSPEC SDL_Keycode SDLCALL SDL_GetKeyFromName(const char *name); + +/** + * Start accepting Unicode text input events in a window. + * + * This function will enable text input (SDL_EVENT_TEXT_INPUT and + * SDL_EVENT_TEXT_EDITING events) in the specified window. Please use this + * function paired with SDL_StopTextInput(). + * + * Text input events are not received by default. + * + * On some platforms using this function shows the screen keyboard and/or + * activates an IME, which can prevent some key press events from being passed + * through. + * + * \param window the window to enable text input. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextInputArea + * \sa SDL_StartTextInputWithProperties + * \sa SDL_StopTextInput + * \sa SDL_TextInputActive + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StartTextInput(SDL_Window *window); + +/** + * Text input type. + * + * These are the valid values for SDL_PROP_TEXTINPUT_TYPE_NUMBER. Not every + * value is valid on every platform, but where a value isn't supported, a + * reasonable fallback will be used. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_StartTextInputWithProperties + */ +typedef enum SDL_TextInputType +{ + SDL_TEXTINPUT_TYPE_TEXT, /**< The input is text */ + SDL_TEXTINPUT_TYPE_TEXT_NAME, /**< The input is a person's name */ + SDL_TEXTINPUT_TYPE_TEXT_EMAIL, /**< The input is an e-mail address */ + SDL_TEXTINPUT_TYPE_TEXT_USERNAME, /**< The input is a username */ + SDL_TEXTINPUT_TYPE_TEXT_PASSWORD_HIDDEN, /**< The input is a secure password that is hidden */ + SDL_TEXTINPUT_TYPE_TEXT_PASSWORD_VISIBLE, /**< The input is a secure password that is visible */ + SDL_TEXTINPUT_TYPE_NUMBER, /**< The input is a number */ + SDL_TEXTINPUT_TYPE_NUMBER_PASSWORD_HIDDEN, /**< The input is a secure PIN that is hidden */ + SDL_TEXTINPUT_TYPE_NUMBER_PASSWORD_VISIBLE /**< The input is a secure PIN that is visible */ +} SDL_TextInputType; + +/** + * Auto capitalization type. + * + * These are the valid values for SDL_PROP_TEXTINPUT_CAPITALIZATION_NUMBER. + * Not every value is valid on every platform, but where a value isn't + * supported, a reasonable fallback will be used. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_StartTextInputWithProperties + */ +typedef enum SDL_Capitalization +{ + SDL_CAPITALIZE_NONE, /**< No auto-capitalization will be done */ + SDL_CAPITALIZE_SENTENCES, /**< The first letter of sentences will be capitalized */ + SDL_CAPITALIZE_WORDS, /**< The first letter of words will be capitalized */ + SDL_CAPITALIZE_LETTERS /**< All letters will be capitalized */ +} SDL_Capitalization; + +/** + * Start accepting Unicode text input events in a window, with properties + * describing the input. + * + * This function will enable text input (SDL_EVENT_TEXT_INPUT and + * SDL_EVENT_TEXT_EDITING events) in the specified window. Please use this + * function paired with SDL_StopTextInput(). + * + * Text input events are not received by default. + * + * On some platforms using this function shows the screen keyboard and/or + * activates an IME, which can prevent some key press events from being passed + * through. + * + * These are the supported properties: + * + * - `SDL_PROP_TEXTINPUT_TYPE_NUMBER` - an SDL_TextInputType value that + * describes text being input, defaults to SDL_TEXTINPUT_TYPE_TEXT. + * - `SDL_PROP_TEXTINPUT_CAPITALIZATION_NUMBER` - an SDL_Capitalization value + * that describes how text should be capitalized, defaults to + * SDL_CAPITALIZE_SENTENCES for normal text entry, SDL_CAPITALIZE_WORDS for + * SDL_TEXTINPUT_TYPE_TEXT_NAME, and SDL_CAPITALIZE_NONE for e-mail + * addresses, usernames, and passwords. + * - `SDL_PROP_TEXTINPUT_AUTOCORRECT_BOOLEAN` - true to enable auto completion + * and auto correction, defaults to true. + * - `SDL_PROP_TEXTINPUT_MULTILINE_BOOLEAN` - true if multiple lines of text + * are allowed. This defaults to true if SDL_HINT_RETURN_KEY_HIDES_IME is + * "0" or is not set, and defaults to false if SDL_HINT_RETURN_KEY_HIDES_IME + * is "1". + * + * On Android you can directly specify the input type: + * + * - `SDL_PROP_TEXTINPUT_ANDROID_INPUTTYPE_NUMBER` - the text input type to + * use, overriding other properties. This is documented at + * https://developer.android.com/reference/android/text/InputType + * + * \param window the window to enable text input. + * \param props the properties to use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextInputArea + * \sa SDL_StartTextInput + * \sa SDL_StopTextInput + * \sa SDL_TextInputActive + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StartTextInputWithProperties(SDL_Window *window, SDL_PropertiesID props); + +#define SDL_PROP_TEXTINPUT_TYPE_NUMBER "SDL.textinput.type" +#define SDL_PROP_TEXTINPUT_CAPITALIZATION_NUMBER "SDL.textinput.capitalization" +#define SDL_PROP_TEXTINPUT_AUTOCORRECT_BOOLEAN "SDL.textinput.autocorrect" +#define SDL_PROP_TEXTINPUT_MULTILINE_BOOLEAN "SDL.textinput.multiline" +#define SDL_PROP_TEXTINPUT_ANDROID_INPUTTYPE_NUMBER "SDL.textinput.android.inputtype" + +/** + * Check whether or not Unicode text input events are enabled for a window. + * + * \param window the window to check. + * \returns true if text input events are enabled else false. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TextInputActive(SDL_Window *window); + +/** + * Stop receiving any text input events in a window. + * + * If SDL_StartTextInput() showed the screen keyboard, this function will hide + * it. + * + * \param window the window to disable text input. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopTextInput(SDL_Window *window); + +/** + * Dismiss the composition window/IME without disabling the subsystem. + * + * \param window the window to affect. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + * \sa SDL_StopTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearComposition(SDL_Window *window); + +/** + * Set the area used to type Unicode text input. + * + * Native input methods may place a window with word suggestions near the + * cursor, without covering the text being entered. + * + * \param window the window for which to set the text input area. + * \param rect the SDL_Rect representing the text input area, in window + * coordinates, or NULL to clear it. + * \param cursor the offset of the current cursor location relative to + * `rect->x`, in window coordinates. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextInputArea + * \sa SDL_StartTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextInputArea(SDL_Window *window, const SDL_Rect *rect, int cursor); + +/** + * Get the area used to type Unicode text input. + * + * This returns the values previously set by SDL_SetTextInputArea(). + * + * \param window the window for which to query the text input area. + * \param rect a pointer to an SDL_Rect filled in with the text input area, + * may be NULL. + * \param cursor a pointer to the offset of the current cursor location + * relative to `rect->x`, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextInputArea + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextInputArea(SDL_Window *window, SDL_Rect *rect, int *cursor); + +/** + * Check whether the platform has screen keyboard support. + * + * \returns true if the platform has some screen keyboard support or false if + * not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + * \sa SDL_ScreenKeyboardShown + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasScreenKeyboardSupport(void); + +/** + * Check whether the screen keyboard is shown for given window. + * + * \param window the window for which screen keyboard should be queried. + * \returns true if screen keyboard is shown or false if not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasScreenKeyboardSupport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ScreenKeyboardShown(SDL_Window *window); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_keyboard_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_keycode.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_keycode.h new file mode 100644 index 0000000..61b68e7 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_keycode.h @@ -0,0 +1,343 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryKeycode + * + * Defines constants which identify keyboard keys and modifiers. + * + * Please refer to the Best Keyboard Practices document for details on what + * this information means and how best to use it. + * + * https://wiki.libsdl.org/SDL3/BestKeyboardPractices + */ + +#ifndef SDL_keycode_h_ +#define SDL_keycode_h_ + +#include +#include + +/** + * The SDL virtual key representation. + * + * Values of this type are used to represent keyboard keys using the current + * layout of the keyboard. These values include Unicode values representing + * the unmodified character that would be generated by pressing the key, or an + * `SDLK_*` constant for those keys that do not generate characters. + * + * A special exception is the number keys at the top of the keyboard which map + * to SDLK_0...SDLK_9 on AZERTY layouts. + * + * Keys with the `SDLK_EXTENDED_MASK` bit set do not map to a scancode or + * unicode code point. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_Keycode; + +#define SDLK_EXTENDED_MASK (1u << 29) +#define SDLK_SCANCODE_MASK (1u << 30) +#define SDL_SCANCODE_TO_KEYCODE(X) (X | SDLK_SCANCODE_MASK) +#define SDLK_UNKNOWN 0x00000000u /**< 0 */ +#define SDLK_RETURN 0x0000000du /**< '\r' */ +#define SDLK_ESCAPE 0x0000001bu /**< '\x1B' */ +#define SDLK_BACKSPACE 0x00000008u /**< '\b' */ +#define SDLK_TAB 0x00000009u /**< '\t' */ +#define SDLK_SPACE 0x00000020u /**< ' ' */ +#define SDLK_EXCLAIM 0x00000021u /**< '!' */ +#define SDLK_DBLAPOSTROPHE 0x00000022u /**< '"' */ +#define SDLK_HASH 0x00000023u /**< '#' */ +#define SDLK_DOLLAR 0x00000024u /**< '$' */ +#define SDLK_PERCENT 0x00000025u /**< '%' */ +#define SDLK_AMPERSAND 0x00000026u /**< '&' */ +#define SDLK_APOSTROPHE 0x00000027u /**< '\'' */ +#define SDLK_LEFTPAREN 0x00000028u /**< '(' */ +#define SDLK_RIGHTPAREN 0x00000029u /**< ')' */ +#define SDLK_ASTERISK 0x0000002au /**< '*' */ +#define SDLK_PLUS 0x0000002bu /**< '+' */ +#define SDLK_COMMA 0x0000002cu /**< ',' */ +#define SDLK_MINUS 0x0000002du /**< '-' */ +#define SDLK_PERIOD 0x0000002eu /**< '.' */ +#define SDLK_SLASH 0x0000002fu /**< '/' */ +#define SDLK_0 0x00000030u /**< '0' */ +#define SDLK_1 0x00000031u /**< '1' */ +#define SDLK_2 0x00000032u /**< '2' */ +#define SDLK_3 0x00000033u /**< '3' */ +#define SDLK_4 0x00000034u /**< '4' */ +#define SDLK_5 0x00000035u /**< '5' */ +#define SDLK_6 0x00000036u /**< '6' */ +#define SDLK_7 0x00000037u /**< '7' */ +#define SDLK_8 0x00000038u /**< '8' */ +#define SDLK_9 0x00000039u /**< '9' */ +#define SDLK_COLON 0x0000003au /**< ':' */ +#define SDLK_SEMICOLON 0x0000003bu /**< ';' */ +#define SDLK_LESS 0x0000003cu /**< '<' */ +#define SDLK_EQUALS 0x0000003du /**< '=' */ +#define SDLK_GREATER 0x0000003eu /**< '>' */ +#define SDLK_QUESTION 0x0000003fu /**< '?' */ +#define SDLK_AT 0x00000040u /**< '@' */ +#define SDLK_LEFTBRACKET 0x0000005bu /**< '[' */ +#define SDLK_BACKSLASH 0x0000005cu /**< '\\' */ +#define SDLK_RIGHTBRACKET 0x0000005du /**< ']' */ +#define SDLK_CARET 0x0000005eu /**< '^' */ +#define SDLK_UNDERSCORE 0x0000005fu /**< '_' */ +#define SDLK_GRAVE 0x00000060u /**< '`' */ +#define SDLK_A 0x00000061u /**< 'a' */ +#define SDLK_B 0x00000062u /**< 'b' */ +#define SDLK_C 0x00000063u /**< 'c' */ +#define SDLK_D 0x00000064u /**< 'd' */ +#define SDLK_E 0x00000065u /**< 'e' */ +#define SDLK_F 0x00000066u /**< 'f' */ +#define SDLK_G 0x00000067u /**< 'g' */ +#define SDLK_H 0x00000068u /**< 'h' */ +#define SDLK_I 0x00000069u /**< 'i' */ +#define SDLK_J 0x0000006au /**< 'j' */ +#define SDLK_K 0x0000006bu /**< 'k' */ +#define SDLK_L 0x0000006cu /**< 'l' */ +#define SDLK_M 0x0000006du /**< 'm' */ +#define SDLK_N 0x0000006eu /**< 'n' */ +#define SDLK_O 0x0000006fu /**< 'o' */ +#define SDLK_P 0x00000070u /**< 'p' */ +#define SDLK_Q 0x00000071u /**< 'q' */ +#define SDLK_R 0x00000072u /**< 'r' */ +#define SDLK_S 0x00000073u /**< 's' */ +#define SDLK_T 0x00000074u /**< 't' */ +#define SDLK_U 0x00000075u /**< 'u' */ +#define SDLK_V 0x00000076u /**< 'v' */ +#define SDLK_W 0x00000077u /**< 'w' */ +#define SDLK_X 0x00000078u /**< 'x' */ +#define SDLK_Y 0x00000079u /**< 'y' */ +#define SDLK_Z 0x0000007au /**< 'z' */ +#define SDLK_LEFTBRACE 0x0000007bu /**< '{' */ +#define SDLK_PIPE 0x0000007cu /**< '|' */ +#define SDLK_RIGHTBRACE 0x0000007du /**< '}' */ +#define SDLK_TILDE 0x0000007eu /**< '~' */ +#define SDLK_DELETE 0x0000007fu /**< '\x7F' */ +#define SDLK_PLUSMINUS 0x000000b1u /**< '\xB1' */ +#define SDLK_CAPSLOCK 0x40000039u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CAPSLOCK) */ +#define SDLK_F1 0x4000003au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F1) */ +#define SDLK_F2 0x4000003bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F2) */ +#define SDLK_F3 0x4000003cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F3) */ +#define SDLK_F4 0x4000003du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F4) */ +#define SDLK_F5 0x4000003eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F5) */ +#define SDLK_F6 0x4000003fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F6) */ +#define SDLK_F7 0x40000040u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F7) */ +#define SDLK_F8 0x40000041u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F8) */ +#define SDLK_F9 0x40000042u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F9) */ +#define SDLK_F10 0x40000043u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F10) */ +#define SDLK_F11 0x40000044u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F11) */ +#define SDLK_F12 0x40000045u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F12) */ +#define SDLK_PRINTSCREEN 0x40000046u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PRINTSCREEN) */ +#define SDLK_SCROLLLOCK 0x40000047u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SCROLLLOCK) */ +#define SDLK_PAUSE 0x40000048u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAUSE) */ +#define SDLK_INSERT 0x40000049u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_INSERT) */ +#define SDLK_HOME 0x4000004au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_HOME) */ +#define SDLK_PAGEUP 0x4000004bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAGEUP) */ +#define SDLK_END 0x4000004du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_END) */ +#define SDLK_PAGEDOWN 0x4000004eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAGEDOWN) */ +#define SDLK_RIGHT 0x4000004fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RIGHT) */ +#define SDLK_LEFT 0x40000050u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LEFT) */ +#define SDLK_DOWN 0x40000051u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_DOWN) */ +#define SDLK_UP 0x40000052u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_UP) */ +#define SDLK_NUMLOCKCLEAR 0x40000053u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_NUMLOCKCLEAR) */ +#define SDLK_KP_DIVIDE 0x40000054u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DIVIDE) */ +#define SDLK_KP_MULTIPLY 0x40000055u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MULTIPLY) */ +#define SDLK_KP_MINUS 0x40000056u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MINUS) */ +#define SDLK_KP_PLUS 0x40000057u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PLUS) */ +#define SDLK_KP_ENTER 0x40000058u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_ENTER) */ +#define SDLK_KP_1 0x40000059u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_1) */ +#define SDLK_KP_2 0x4000005au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_2) */ +#define SDLK_KP_3 0x4000005bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_3) */ +#define SDLK_KP_4 0x4000005cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_4) */ +#define SDLK_KP_5 0x4000005du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_5) */ +#define SDLK_KP_6 0x4000005eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_6) */ +#define SDLK_KP_7 0x4000005fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_7) */ +#define SDLK_KP_8 0x40000060u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_8) */ +#define SDLK_KP_9 0x40000061u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_9) */ +#define SDLK_KP_0 0x40000062u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_0) */ +#define SDLK_KP_PERIOD 0x40000063u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PERIOD) */ +#define SDLK_APPLICATION 0x40000065u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_APPLICATION) */ +#define SDLK_POWER 0x40000066u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_POWER) */ +#define SDLK_KP_EQUALS 0x40000067u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EQUALS) */ +#define SDLK_F13 0x40000068u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F13) */ +#define SDLK_F14 0x40000069u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F14) */ +#define SDLK_F15 0x4000006au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F15) */ +#define SDLK_F16 0x4000006bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F16) */ +#define SDLK_F17 0x4000006cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F17) */ +#define SDLK_F18 0x4000006du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F18) */ +#define SDLK_F19 0x4000006eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F19) */ +#define SDLK_F20 0x4000006fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F20) */ +#define SDLK_F21 0x40000070u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F21) */ +#define SDLK_F22 0x40000071u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F22) */ +#define SDLK_F23 0x40000072u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F23) */ +#define SDLK_F24 0x40000073u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F24) */ +#define SDLK_EXECUTE 0x40000074u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_EXECUTE) */ +#define SDLK_HELP 0x40000075u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_HELP) */ +#define SDLK_MENU 0x40000076u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MENU) */ +#define SDLK_SELECT 0x40000077u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SELECT) */ +#define SDLK_STOP 0x40000078u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_STOP) */ +#define SDLK_AGAIN 0x40000079u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AGAIN) */ +#define SDLK_UNDO 0x4000007au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_UNDO) */ +#define SDLK_CUT 0x4000007bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CUT) */ +#define SDLK_COPY 0x4000007cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_COPY) */ +#define SDLK_PASTE 0x4000007du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PASTE) */ +#define SDLK_FIND 0x4000007eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_FIND) */ +#define SDLK_MUTE 0x4000007fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MUTE) */ +#define SDLK_VOLUMEUP 0x40000080u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_VOLUMEUP) */ +#define SDLK_VOLUMEDOWN 0x40000081u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_VOLUMEDOWN) */ +#define SDLK_KP_COMMA 0x40000085u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_COMMA) */ +#define SDLK_KP_EQUALSAS400 0x40000086u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EQUALSAS400) */ +#define SDLK_ALTERASE 0x40000099u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_ALTERASE) */ +#define SDLK_SYSREQ 0x4000009au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SYSREQ) */ +#define SDLK_CANCEL 0x4000009bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CANCEL) */ +#define SDLK_CLEAR 0x4000009cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CLEAR) */ +#define SDLK_PRIOR 0x4000009du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PRIOR) */ +#define SDLK_RETURN2 0x4000009eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RETURN2) */ +#define SDLK_SEPARATOR 0x4000009fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SEPARATOR) */ +#define SDLK_OUT 0x400000a0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_OUT) */ +#define SDLK_OPER 0x400000a1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_OPER) */ +#define SDLK_CLEARAGAIN 0x400000a2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CLEARAGAIN) */ +#define SDLK_CRSEL 0x400000a3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CRSEL) */ +#define SDLK_EXSEL 0x400000a4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_EXSEL) */ +#define SDLK_KP_00 0x400000b0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_00) */ +#define SDLK_KP_000 0x400000b1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_000) */ +#define SDLK_THOUSANDSSEPARATOR 0x400000b2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_THOUSANDSSEPARATOR) */ +#define SDLK_DECIMALSEPARATOR 0x400000b3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_DECIMALSEPARATOR) */ +#define SDLK_CURRENCYUNIT 0x400000b4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CURRENCYUNIT) */ +#define SDLK_CURRENCYSUBUNIT 0x400000b5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CURRENCYSUBUNIT) */ +#define SDLK_KP_LEFTPAREN 0x400000b6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LEFTPAREN) */ +#define SDLK_KP_RIGHTPAREN 0x400000b7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_RIGHTPAREN) */ +#define SDLK_KP_LEFTBRACE 0x400000b8u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LEFTBRACE) */ +#define SDLK_KP_RIGHTBRACE 0x400000b9u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_RIGHTBRACE) */ +#define SDLK_KP_TAB 0x400000bau /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_TAB) */ +#define SDLK_KP_BACKSPACE 0x400000bbu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_BACKSPACE) */ +#define SDLK_KP_A 0x400000bcu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_A) */ +#define SDLK_KP_B 0x400000bdu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_B) */ +#define SDLK_KP_C 0x400000beu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_C) */ +#define SDLK_KP_D 0x400000bfu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_D) */ +#define SDLK_KP_E 0x400000c0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_E) */ +#define SDLK_KP_F 0x400000c1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_F) */ +#define SDLK_KP_XOR 0x400000c2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_XOR) */ +#define SDLK_KP_POWER 0x400000c3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_POWER) */ +#define SDLK_KP_PERCENT 0x400000c4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PERCENT) */ +#define SDLK_KP_LESS 0x400000c5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LESS) */ +#define SDLK_KP_GREATER 0x400000c6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_GREATER) */ +#define SDLK_KP_AMPERSAND 0x400000c7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_AMPERSAND) */ +#define SDLK_KP_DBLAMPERSAND 0x400000c8u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DBLAMPERSAND) */ +#define SDLK_KP_VERTICALBAR 0x400000c9u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_VERTICALBAR) */ +#define SDLK_KP_DBLVERTICALBAR 0x400000cau /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DBLVERTICALBAR) */ +#define SDLK_KP_COLON 0x400000cbu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_COLON) */ +#define SDLK_KP_HASH 0x400000ccu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_HASH) */ +#define SDLK_KP_SPACE 0x400000cdu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_SPACE) */ +#define SDLK_KP_AT 0x400000ceu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_AT) */ +#define SDLK_KP_EXCLAM 0x400000cfu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EXCLAM) */ +#define SDLK_KP_MEMSTORE 0x400000d0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMSTORE) */ +#define SDLK_KP_MEMRECALL 0x400000d1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMRECALL) */ +#define SDLK_KP_MEMCLEAR 0x400000d2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMCLEAR) */ +#define SDLK_KP_MEMADD 0x400000d3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMADD) */ +#define SDLK_KP_MEMSUBTRACT 0x400000d4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMSUBTRACT) */ +#define SDLK_KP_MEMMULTIPLY 0x400000d5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMMULTIPLY) */ +#define SDLK_KP_MEMDIVIDE 0x400000d6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMDIVIDE) */ +#define SDLK_KP_PLUSMINUS 0x400000d7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PLUSMINUS) */ +#define SDLK_KP_CLEAR 0x400000d8u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_CLEAR) */ +#define SDLK_KP_CLEARENTRY 0x400000d9u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_CLEARENTRY) */ +#define SDLK_KP_BINARY 0x400000dau /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_BINARY) */ +#define SDLK_KP_OCTAL 0x400000dbu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_OCTAL) */ +#define SDLK_KP_DECIMAL 0x400000dcu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DECIMAL) */ +#define SDLK_KP_HEXADECIMAL 0x400000ddu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_HEXADECIMAL) */ +#define SDLK_LCTRL 0x400000e0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LCTRL) */ +#define SDLK_LSHIFT 0x400000e1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LSHIFT) */ +#define SDLK_LALT 0x400000e2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LALT) */ +#define SDLK_LGUI 0x400000e3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LGUI) */ +#define SDLK_RCTRL 0x400000e4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RCTRL) */ +#define SDLK_RSHIFT 0x400000e5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RSHIFT) */ +#define SDLK_RALT 0x400000e6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RALT) */ +#define SDLK_RGUI 0x400000e7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RGUI) */ +#define SDLK_MODE 0x40000101u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MODE) */ +#define SDLK_SLEEP 0x40000102u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SLEEP) */ +#define SDLK_WAKE 0x40000103u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_WAKE) */ +#define SDLK_CHANNEL_INCREMENT 0x40000104u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CHANNEL_INCREMENT) */ +#define SDLK_CHANNEL_DECREMENT 0x40000105u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CHANNEL_DECREMENT) */ +#define SDLK_MEDIA_PLAY 0x40000106u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PLAY) */ +#define SDLK_MEDIA_PAUSE 0x40000107u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PAUSE) */ +#define SDLK_MEDIA_RECORD 0x40000108u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_RECORD) */ +#define SDLK_MEDIA_FAST_FORWARD 0x40000109u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_FAST_FORWARD) */ +#define SDLK_MEDIA_REWIND 0x4000010au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_REWIND) */ +#define SDLK_MEDIA_NEXT_TRACK 0x4000010bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_NEXT_TRACK) */ +#define SDLK_MEDIA_PREVIOUS_TRACK 0x4000010cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PREVIOUS_TRACK) */ +#define SDLK_MEDIA_STOP 0x4000010du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_STOP) */ +#define SDLK_MEDIA_EJECT 0x4000010eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_EJECT) */ +#define SDLK_MEDIA_PLAY_PAUSE 0x4000010fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PLAY_PAUSE) */ +#define SDLK_MEDIA_SELECT 0x40000110u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_SELECT) */ +#define SDLK_AC_NEW 0x40000111u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_NEW) */ +#define SDLK_AC_OPEN 0x40000112u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_OPEN) */ +#define SDLK_AC_CLOSE 0x40000113u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_CLOSE) */ +#define SDLK_AC_EXIT 0x40000114u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_EXIT) */ +#define SDLK_AC_SAVE 0x40000115u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_SAVE) */ +#define SDLK_AC_PRINT 0x40000116u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_PRINT) */ +#define SDLK_AC_PROPERTIES 0x40000117u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_PROPERTIES) */ +#define SDLK_AC_SEARCH 0x40000118u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_SEARCH) */ +#define SDLK_AC_HOME 0x40000119u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_HOME) */ +#define SDLK_AC_BACK 0x4000011au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_BACK) */ +#define SDLK_AC_FORWARD 0x4000011bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_FORWARD) */ +#define SDLK_AC_STOP 0x4000011cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_STOP) */ +#define SDLK_AC_REFRESH 0x4000011du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_REFRESH) */ +#define SDLK_AC_BOOKMARKS 0x4000011eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_BOOKMARKS) */ +#define SDLK_SOFTLEFT 0x4000011fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SOFTLEFT) */ +#define SDLK_SOFTRIGHT 0x40000120u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SOFTRIGHT) */ +#define SDLK_CALL 0x40000121u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CALL) */ +#define SDLK_ENDCALL 0x40000122u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_ENDCALL) */ +#define SDLK_LEFT_TAB 0x20000001u /**< Extended key Left Tab */ +#define SDLK_LEVEL5_SHIFT 0x20000002u /**< Extended key Level 5 Shift */ +#define SDLK_MULTI_KEY_COMPOSE 0x20000003u /**< Extended key Multi-key Compose */ +#define SDLK_LMETA 0x20000004u /**< Extended key Left Meta */ +#define SDLK_RMETA 0x20000005u /**< Extended key Right Meta */ +#define SDLK_LHYPER 0x20000006u /**< Extended key Left Hyper */ +#define SDLK_RHYPER 0x20000007u /**< Extended key Right Hyper */ + +/** + * Valid key modifiers (possibly OR'd together). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint16 SDL_Keymod; + +#define SDL_KMOD_NONE 0x0000u /**< no modifier is applicable. */ +#define SDL_KMOD_LSHIFT 0x0001u /**< the left Shift key is down. */ +#define SDL_KMOD_RSHIFT 0x0002u /**< the right Shift key is down. */ +#define SDL_KMOD_LEVEL5 0x0004u /**< the Level 5 Shift key is down. */ +#define SDL_KMOD_LCTRL 0x0040u /**< the left Ctrl (Control) key is down. */ +#define SDL_KMOD_RCTRL 0x0080u /**< the right Ctrl (Control) key is down. */ +#define SDL_KMOD_LALT 0x0100u /**< the left Alt key is down. */ +#define SDL_KMOD_RALT 0x0200u /**< the right Alt key is down. */ +#define SDL_KMOD_LGUI 0x0400u /**< the left GUI key (often the Windows key) is down. */ +#define SDL_KMOD_RGUI 0x0800u /**< the right GUI key (often the Windows key) is down. */ +#define SDL_KMOD_NUM 0x1000u /**< the Num Lock key (may be located on an extended keypad) is down. */ +#define SDL_KMOD_CAPS 0x2000u /**< the Caps Lock key is down. */ +#define SDL_KMOD_MODE 0x4000u /**< the !AltGr key is down. */ +#define SDL_KMOD_SCROLL 0x8000u /**< the Scroll Lock key is down. */ +#define SDL_KMOD_CTRL (SDL_KMOD_LCTRL | SDL_KMOD_RCTRL) /**< Any Ctrl key is down. */ +#define SDL_KMOD_SHIFT (SDL_KMOD_LSHIFT | SDL_KMOD_RSHIFT) /**< Any Shift key is down. */ +#define SDL_KMOD_ALT (SDL_KMOD_LALT | SDL_KMOD_RALT) /**< Any Alt key is down. */ +#define SDL_KMOD_GUI (SDL_KMOD_LGUI | SDL_KMOD_RGUI) /**< Any GUI key is down. */ + +#endif /* SDL_keycode_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_loadso.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_loadso.h new file mode 100644 index 0000000..f8649d7 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_loadso.h @@ -0,0 +1,145 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: SharedObject */ + +/** + * # CategorySharedObject + * + * System-dependent library loading routines. + * + * Shared objects are code that is programmatically loadable at runtime. + * Windows calls these "DLLs", Linux calls them "shared libraries", etc. + * + * To use them, build such a library, then call SDL_LoadObject() on it. Once + * loaded, you can use SDL_LoadFunction() on that object to find the address + * of its exported symbols. When done with the object, call SDL_UnloadObject() + * to dispose of it. + * + * Some things to keep in mind: + * + * - These functions only work on C function names. Other languages may have + * name mangling and intrinsic language support that varies from compiler to + * compiler. + * - Make sure you declare your function pointers with the same calling + * convention as the actual library function. Your code will crash + * mysteriously if you do not do this. + * - Avoid namespace collisions. If you load a symbol from the library, it is + * not defined whether or not it goes into the global symbol namespace for + * the application. If it does and it conflicts with symbols in your code or + * other shared libraries, you will not get the results you expect. :) + * - Once a library is unloaded, all pointers into it obtained through + * SDL_LoadFunction() become invalid, even if the library is later reloaded. + * Don't unload a library if you plan to use these pointers in the future. + * Notably: beware of giving one of these pointers to atexit(), since it may + * call that pointer after the library unloads. + */ + +#ifndef SDL_loadso_h_ +#define SDL_loadso_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque datatype that represents a loaded shared object. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_LoadObject + * \sa SDL_LoadFunction + * \sa SDL_UnloadObject + */ +typedef struct SDL_SharedObject SDL_SharedObject; + +/** + * Dynamically load a shared object. + * + * \param sofile a system-dependent name of the object file. + * \returns an opaque pointer to the object handle or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFunction + * \sa SDL_UnloadObject + */ +extern SDL_DECLSPEC SDL_SharedObject * SDLCALL SDL_LoadObject(const char *sofile); + +/** + * Look up the address of the named function in a shared object. + * + * This function pointer is no longer valid after calling SDL_UnloadObject(). + * + * This function can only look up C function names. Other languages may have + * name mangling and intrinsic language support that varies from compiler to + * compiler. + * + * Make sure you declare your function pointers with the same calling + * convention as the actual library function. Your code will crash + * mysteriously if you do not do this. + * + * If the requested function doesn't exist, NULL is returned. + * + * \param handle a valid shared object handle returned by SDL_LoadObject(). + * \param name the name of the function to look up. + * \returns a pointer to the function or NULL on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadObject + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_LoadFunction(SDL_SharedObject *handle, const char *name); + +/** + * Unload a shared object from memory. + * + * Note that any pointers from this object looked up through + * SDL_LoadFunction() will no longer be valid. + * + * \param handle a valid shared object handle returned by SDL_LoadObject(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadObject + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnloadObject(SDL_SharedObject *handle); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_loadso_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_locale.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_locale.h new file mode 100644 index 0000000..902843e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_locale.h @@ -0,0 +1,117 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryLocale + * + * SDL locale services. + * + * This provides a way to get a list of preferred locales (language plus + * country) for the user. There is exactly one function: + * SDL_GetPreferredLocales(), which handles all the heavy lifting, and offers + * documentation on all the strange ways humans might have configured their + * language settings. + */ + +#ifndef SDL_locale_h +#define SDL_locale_h + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +extern "C" { +/* *INDENT-ON* */ +#endif + +/** + * A struct to provide locale data. + * + * Locale data is split into a spoken language, like English, and an optional + * country, like Canada. The language will be in ISO-639 format (so English + * would be "en"), and the country, if not NULL, will be an ISO-3166 country + * code (so Canada would be "CA"). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPreferredLocales + */ +typedef struct SDL_Locale +{ + const char *language; /**< A language name, like "en" for English. */ + const char *country; /**< A country, like "US" for America. Can be NULL. */ +} SDL_Locale; + +/** + * Report the user's preferred locale. + * + * Returned language strings are in the format xx, where 'xx' is an ISO-639 + * language specifier (such as "en" for English, "de" for German, etc). + * Country strings are in the format YY, where "YY" is an ISO-3166 country + * code (such as "US" for the United States, "CA" for Canada, etc). Country + * might be NULL if there's no specific guidance on them (so you might get { + * "en", "US" } for American English, but { "en", NULL } means "English + * language, generically"). Language strings are never NULL, except to + * terminate the array. + * + * Please note that not all of these strings are 2 characters; some are three + * or more. + * + * The returned list of locales are in the order of the user's preference. For + * example, a German citizen that is fluent in US English and knows enough + * Japanese to navigate around Tokyo might have a list like: { "de", "en_US", + * "jp", NULL }. Someone from England might prefer British English (where + * "color" is spelled "colour", etc), but will settle for anything like it: { + * "en_GB", "en", NULL }. + * + * This function returns NULL on error, including when the platform does not + * supply this information at all. + * + * This might be a "slow" call that has to query the operating system. It's + * best to ask for this once and save the results. However, this list can + * change, usually because the user has changed a system preference outside of + * your program; SDL will send an SDL_EVENT_LOCALE_CHANGED event in this case, + * if possible, and you can call this function again to get an updated copy of + * preferred locales. + * + * \param count a pointer filled in with the number of locales returned, may + * be NULL. + * \returns a NULL terminated array of locale pointers, or NULL on failure; + * call SDL_GetError() for more information. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Locale ** SDLCALL SDL_GetPreferredLocales(int *count); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +} +/* *INDENT-ON* */ +#endif +#include + +#endif /* SDL_locale_h */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_log.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_log.h new file mode 100644 index 0000000..3fd7ec2 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_log.h @@ -0,0 +1,538 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryLog + * + * Simple log messages with priorities and categories. A message's + * SDL_LogPriority signifies how important the message is. A message's + * SDL_LogCategory signifies from what domain it belongs to. Every category + * has a minimum priority specified: when a message belongs to that category, + * it will only be sent out if it has that minimum priority or higher. + * + * SDL's own logs are sent below the default priority threshold, so they are + * quiet by default. + * + * You can change the log verbosity programmatically using + * SDL_SetLogPriority() or with SDL_SetHint(SDL_HINT_LOGGING, ...), or with + * the "SDL_LOGGING" environment variable. This variable is a comma separated + * set of category=level tokens that define the default logging levels for SDL + * applications. + * + * The category can be a numeric category, one of "app", "error", "assert", + * "system", "audio", "video", "render", "input", "test", or `*` for any + * unspecified category. + * + * The level can be a numeric level, one of "trace", "verbose", "debug", + * "info", "warn", "error", "critical", or "quiet" to disable that category. + * + * You can omit the category if you want to set the logging level for all + * categories. + * + * If this hint isn't set, the default log levels are equivalent to: + * + * `app=info,assert=warn,test=verbose,*=error` + * + * Here's where the messages go on different platforms: + * + * - Windows: debug output stream + * - Android: log output + * - Others: standard error output (stderr) + * + * You don't need to have a newline (`\n`) on the end of messages, the + * functions will do that for you. For consistent behavior cross-platform, you + * shouldn't have any newlines in messages, such as to log multiple lines in + * one call; unusual platform-specific behavior can be observed in such usage. + * Do one log call per line instead, with no newlines in messages. + * + * Each log call is atomic, so you won't see log messages cut off one another + * when logging from multiple threads. + */ + +#ifndef SDL_log_h_ +#define SDL_log_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The predefined log categories + * + * By default the application and gpu categories are enabled at the INFO + * level, the assert category is enabled at the WARN level, test is enabled at + * the VERBOSE level and all other categories are enabled at the ERROR level. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_LogCategory +{ + SDL_LOG_CATEGORY_APPLICATION, + SDL_LOG_CATEGORY_ERROR, + SDL_LOG_CATEGORY_ASSERT, + SDL_LOG_CATEGORY_SYSTEM, + SDL_LOG_CATEGORY_AUDIO, + SDL_LOG_CATEGORY_VIDEO, + SDL_LOG_CATEGORY_RENDER, + SDL_LOG_CATEGORY_INPUT, + SDL_LOG_CATEGORY_TEST, + SDL_LOG_CATEGORY_GPU, + + /* Reserved for future SDL library use */ + SDL_LOG_CATEGORY_RESERVED2, + SDL_LOG_CATEGORY_RESERVED3, + SDL_LOG_CATEGORY_RESERVED4, + SDL_LOG_CATEGORY_RESERVED5, + SDL_LOG_CATEGORY_RESERVED6, + SDL_LOG_CATEGORY_RESERVED7, + SDL_LOG_CATEGORY_RESERVED8, + SDL_LOG_CATEGORY_RESERVED9, + SDL_LOG_CATEGORY_RESERVED10, + + /* Beyond this point is reserved for application use, e.g. + enum { + MYAPP_CATEGORY_AWESOME1 = SDL_LOG_CATEGORY_CUSTOM, + MYAPP_CATEGORY_AWESOME2, + MYAPP_CATEGORY_AWESOME3, + ... + }; + */ + SDL_LOG_CATEGORY_CUSTOM +} SDL_LogCategory; + +/** + * The predefined log priorities + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_LogPriority +{ + SDL_LOG_PRIORITY_INVALID, + SDL_LOG_PRIORITY_TRACE, + SDL_LOG_PRIORITY_VERBOSE, + SDL_LOG_PRIORITY_DEBUG, + SDL_LOG_PRIORITY_INFO, + SDL_LOG_PRIORITY_WARN, + SDL_LOG_PRIORITY_ERROR, + SDL_LOG_PRIORITY_CRITICAL, + SDL_LOG_PRIORITY_COUNT +} SDL_LogPriority; + + +/** + * Set the priority of all log categories. + * + * \param priority the SDL_LogPriority to assign. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResetLogPriorities + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetLogPriorities(SDL_LogPriority priority); + +/** + * Set the priority of a particular log category. + * + * \param category the category to assign a priority to. + * \param priority the SDL_LogPriority to assign. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetLogPriority + * \sa SDL_ResetLogPriorities + * \sa SDL_SetLogPriorities + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetLogPriority(int category, SDL_LogPriority priority); + +/** + * Get the priority of a particular log category. + * + * \param category the category to query. + * \returns the SDL_LogPriority for the requested category. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC SDL_LogPriority SDLCALL SDL_GetLogPriority(int category); + +/** + * Reset all priorities to default. + * + * This is called by SDL_Quit(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogPriorities + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetLogPriorities(void); + +/** + * Set the text prepended to log messages of a given priority. + * + * By default SDL_LOG_PRIORITY_INFO and below have no prefix, and + * SDL_LOG_PRIORITY_WARN and higher have a prefix showing their priority, e.g. + * "WARNING: ". + * + * \param priority the SDL_LogPriority to modify. + * \param prefix the prefix to use for that log priority, or NULL to use no + * prefix. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogPriorities + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetLogPriorityPrefix(SDL_LogPriority priority, const char *prefix); + +/** + * Log a message with SDL_LOG_CATEGORY_APPLICATION and SDL_LOG_PRIORITY_INFO. + * + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_Log(SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(1); + +/** + * Log a message with SDL_LOG_PRIORITY_TRACE. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogTrace(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_VERBOSE. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogVerbose(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_DEBUG. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogDebug(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_INFO. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogInfo(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_WARN. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogWarn(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_ERROR. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogError(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_CRITICAL. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogCritical(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with the specified category and priority. + * + * \param category the category of the message. + * \param priority the priority of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogMessage(int category, + SDL_LogPriority priority, + SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(3); + +/** + * Log a message with the specified category and priority. + * + * \param category the category of the message. + * \param priority the priority of the message. + * \param fmt a printf() style message format string. + * \param ap a variable argument list. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogMessageV(int category, + SDL_LogPriority priority, + SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(3); + +/** + * The prototype for the log output callback function. + * + * This function is called by SDL when there is new text to be logged. A mutex + * is held so that this function is never called by more than one thread at + * once. + * + * \param userdata what was passed as `userdata` to + * SDL_SetLogOutputFunction(). + * \param category the category of the message. + * \param priority the priority of the message. + * \param message the message being output. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void (SDLCALL *SDL_LogOutputFunction)(void *userdata, int category, SDL_LogPriority priority, const char *message); + +/** + * Get the default log output function. + * + * \returns the default log output callback. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogOutputFunction + * \sa SDL_GetLogOutputFunction + */ +extern SDL_DECLSPEC SDL_LogOutputFunction SDLCALL SDL_GetDefaultLogOutputFunction(void); + +/** + * Get the current log output function. + * + * \param callback an SDL_LogOutputFunction filled in with the current log + * callback. + * \param userdata a pointer filled in with the pointer that is passed to + * `callback`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDefaultLogOutputFunction + * \sa SDL_SetLogOutputFunction + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetLogOutputFunction(SDL_LogOutputFunction *callback, void **userdata); + +/** + * Replace the default log output function with one of your own. + * + * \param callback an SDL_LogOutputFunction to call instead of the default. + * \param userdata a pointer that is passed to `callback`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDefaultLogOutputFunction + * \sa SDL_GetLogOutputFunction + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetLogOutputFunction(SDL_LogOutputFunction callback, void *userdata); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_log_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_main.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_main.h new file mode 100644 index 0000000..905d78e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_main.h @@ -0,0 +1,675 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMain + * + * Redefine main() if necessary so that it is called by SDL. + * + * In order to make this consistent on all platforms, the application's main() + * should look like this: + * + * ```c + * #include + * #include + * + * int main(int argc, char *argv[]) + * { + * } + * ``` + * + * SDL will take care of platform specific details on how it gets called. + * + * This is also where an app can be configured to use the main callbacks, via + * the SDL_MAIN_USE_CALLBACKS macro. + * + * SDL_main.h is a "single-header library," which is to say that including + * this header inserts code into your program, and you should only include it + * once in most cases. SDL.h does not include this header automatically. + * + * For more information, see: + * + * https://wiki.libsdl.org/SDL3/README/main-functions + */ + +#ifndef SDL_main_h_ +#define SDL_main_h_ + +#include +#include +#include +#include + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Inform SDL that the app is providing an entry point instead of SDL. + * + * SDL does not define this macro, but will check if it is defined when + * including `SDL_main.h`. If defined, SDL will expect the app to provide the + * proper entry point for the platform, and all the other magic details + * needed, like manually calling SDL_SetMainReady. + * + * Please see [README/main-functions](README/main-functions), (or + * docs/README-main-functions.md in the source tree) for a more detailed + * explanation. + * + * \since This macro is used by the headers since SDL 3.2.0. + */ +#define SDL_MAIN_HANDLED 1 + +/** + * Inform SDL to use the main callbacks instead of main. + * + * SDL does not define this macro, but will check if it is defined when + * including `SDL_main.h`. If defined, SDL will expect the app to provide + * several functions: SDL_AppInit, SDL_AppEvent, SDL_AppIterate, and + * SDL_AppQuit. The app should not provide a `main` function in this case, and + * doing so will likely cause the build to fail. + * + * Please see [README/main-functions](README/main-functions), (or + * docs/README-main-functions.md in the source tree) for a more detailed + * explanation. + * + * \since This macro is used by the headers since SDL 3.2.0. + * + * \sa SDL_AppInit + * \sa SDL_AppEvent + * \sa SDL_AppIterate + * \sa SDL_AppQuit + */ +#define SDL_MAIN_USE_CALLBACKS 1 + +/** + * Defined if the target platform offers a special mainline through SDL. + * + * This won't be defined otherwise. If defined, SDL's headers will redefine + * `main` to `SDL_main`. + * + * This macro is defined by `SDL_main.h`, which is not automatically included + * by `SDL.h`. + * + * Even if available, an app can define SDL_MAIN_HANDLED and provide their + * own, if they know what they're doing. + * + * This macro is used internally by SDL, and apps probably shouldn't rely on it. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MAIN_AVAILABLE + +/** + * Defined if the target platform _requires_ a special mainline through SDL. + * + * This won't be defined otherwise. If defined, SDL's headers will redefine + * `main` to `SDL_main`. + * + * This macro is defined by `SDL_main.h`, which is not automatically included + * by `SDL.h`. + * + * Even if required, an app can define SDL_MAIN_HANDLED and provide their + * own, if they know what they're doing. + * + * This macro is used internally by SDL, and apps probably shouldn't rely on it. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MAIN_NEEDED + +#endif + +#if defined(__has_include) + #if __has_include("SDL_main_private.h") && __has_include("SDL_main_impl_private.h") + #define SDL_PLATFORM_PRIVATE_MAIN + #endif +#endif + +#ifndef SDL_MAIN_HANDLED + #if defined(SDL_PLATFORM_PRIVATE_MAIN) + /* Private platforms may have their own ideas about entry points. */ + #include "SDL_main_private.h" + + #elif defined(SDL_PLATFORM_WIN32) + /* On Windows SDL provides WinMain(), which parses the command line and passes + the arguments to your main function. + + If you provide your own WinMain(), you may define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #elif defined(SDL_PLATFORM_GDK) + /* On GDK, SDL provides a main function that initializes the game runtime. + + If you prefer to write your own WinMain-function instead of having SDL + provide one that calls your main() function, + #define SDL_MAIN_HANDLED before #include'ing SDL_main.h + and call the SDL_RunApp function from your entry point. + */ + #define SDL_MAIN_NEEDED + + #elif defined(SDL_PLATFORM_IOS) + /* On iOS SDL provides a main function that creates an application delegate + and starts the iOS application run loop. + + To use it, just #include SDL_main.h in the source file that contains your + main() function. + + See src/video/uikit/SDL_uikitappdelegate.m for more details. + */ + #define SDL_MAIN_NEEDED + + #elif defined(SDL_PLATFORM_ANDROID) + /* On Android SDL provides a Java class in SDLActivity.java that is the + main activity entry point. + + See docs/README-android.md for more details on extending that class. + */ + #define SDL_MAIN_NEEDED + + /* As this is launched from Java, the real entry point (main() function) + is outside of the the binary built from this code. + This define makes sure that, unlike on other platforms, SDL_main.h + and SDL_main_impl.h export an `SDL_main()` function (to be called + from Java), but don't implement a native `int main(int argc, char* argv[])` + or similar. + */ + #define SDL_MAIN_EXPORTED + + #elif defined(SDL_PLATFORM_EMSCRIPTEN) + /* On Emscripten, SDL provides a main function that converts URL + parameters that start with "SDL_" to environment variables, so + they can be used as SDL hints, etc. + + This is 100% optional, so if you don't want this to happen, you may + define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #elif defined(SDL_PLATFORM_PSP) + /* On PSP SDL provides a main function that sets the module info, + activates the GPU and starts the thread required to be able to exit + the software. + + If you provide this yourself, you may define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #elif defined(SDL_PLATFORM_PS2) + #define SDL_MAIN_AVAILABLE + + #define SDL_PS2_SKIP_IOP_RESET() \ + void reset_IOP(); \ + void reset_IOP() {} + + #elif defined(SDL_PLATFORM_3DS) + /* + On N3DS, SDL provides a main function that sets up the screens + and storage. + + If you provide this yourself, you may define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #endif +#endif /* SDL_MAIN_HANDLED */ + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to tag a main entry point function as exported. + * + * Most platforms don't need this, and the macro will be defined to nothing. + * Some, like Android, keep the entry points in a shared library and need to + * explicitly export the symbols. + * + * External code rarely needs this, and if it needs something, it's almost + * always SDL_DECLSPEC instead. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_DECLSPEC + */ +#define SDLMAIN_DECLSPEC + +#elif defined(SDL_MAIN_EXPORTED) +/* We need to export SDL_main so it can be launched from external code, + like SDLActivity.java on Android */ +#define SDLMAIN_DECLSPEC SDL_DECLSPEC +#else +/* usually this is empty */ +#define SDLMAIN_DECLSPEC +#endif /* SDL_MAIN_EXPORTED */ + +#if defined(SDL_MAIN_NEEDED) || defined(SDL_MAIN_AVAILABLE) || defined(SDL_MAIN_USE_CALLBACKS) +#define main SDL_main +#endif + +#include +#include +#ifdef __cplusplus +extern "C" { +#endif + +/* + * You can (optionally!) define SDL_MAIN_USE_CALLBACKS before including + * SDL_main.h, and then your application will _not_ have a standard + * "main" entry point. Instead, it will operate as a collection of + * functions that are called as necessary by the system. On some + * platforms, this is just a layer where SDL drives your program + * instead of your program driving SDL, on other platforms this might + * hook into the OS to manage the lifecycle. Programs on most platforms + * can use whichever approach they prefer, but the decision boils down + * to: + * + * - Using a standard "main" function: this works like it always has for + * the past 50+ years in C programming, and your app is in control. + * - Using the callback functions: this might clean up some code, + * avoid some #ifdef blocks in your program for some platforms, be more + * resource-friendly to the system, and possibly be the primary way to + * access some future platforms (but none require this at the moment). + * + * This is up to the app; both approaches are considered valid and supported + * ways to write SDL apps. + * + * If using the callbacks, don't define a "main" function. Instead, implement + * the functions listed below in your program. + */ +#ifdef SDL_MAIN_USE_CALLBACKS + +/** + * App-implemented initial entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called by SDL once, at startup. The function should + * initialize whatever is necessary, possibly create windows and open audio + * devices, etc. The `argc` and `argv` parameters work like they would with a + * standard "main" function. + * + * This function should not go into an infinite mainloop; it should do any + * one-time setup it requires and then return. + * + * The app may optionally assign a pointer to `*appstate`. This pointer will + * be provided on every future call to the other entry points, to allow + * application state to be preserved between functions without the app needing + * to use a global variable. If this isn't set, the pointer will be NULL in + * future entry points. + * + * If this function returns SDL_APP_CONTINUE, the app will proceed to normal + * operation, and will begin receiving repeated calls to SDL_AppIterate and + * SDL_AppEvent for the life of the program. If this function returns + * SDL_APP_FAILURE, SDL will call SDL_AppQuit and terminate the process with + * an exit code that reports an error to the platform. If it returns + * SDL_APP_SUCCESS, SDL calls SDL_AppQuit and terminates with an exit code + * that reports success to the platform. + * + * This function is called by SDL on the main thread. + * + * \param appstate a place where the app can optionally store a pointer for + * future use. + * \param argc the standard ANSI C main's argc; number of elements in `argv`. + * \param argv the standard ANSI C main's argv; array of command line + * arguments. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppIterate + * \sa SDL_AppEvent + * \sa SDL_AppQuit + */ +extern SDLMAIN_DECLSPEC SDL_AppResult SDLCALL SDL_AppInit(void **appstate, int argc, char *argv[]); + +/** + * App-implemented iteration entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called repeatedly by SDL after SDL_AppInit returns 0. The + * function should operate as a single iteration the program's primary loop; + * it should update whatever state it needs and draw a new frame of video, + * usually. + * + * On some platforms, this function will be called at the refresh rate of the + * display (which might change during the life of your app!). There are no + * promises made about what frequency this function might run at. You should + * use SDL's timer functions if you need to see how much time has passed since + * the last iteration. + * + * There is no need to process the SDL event queue during this function; SDL + * will send events as they arrive in SDL_AppEvent, and in most cases the + * event queue will be empty when this function runs anyhow. + * + * This function should not go into an infinite mainloop; it should do one + * iteration of whatever the program does and return. + * + * The `appstate` parameter is an optional pointer provided by the app during + * SDL_AppInit(). If the app never provided a pointer, this will be NULL. + * + * If this function returns SDL_APP_CONTINUE, the app will continue normal + * operation, receiving repeated calls to SDL_AppIterate and SDL_AppEvent for + * the life of the program. If this function returns SDL_APP_FAILURE, SDL will + * call SDL_AppQuit and terminate the process with an exit code that reports + * an error to the platform. If it returns SDL_APP_SUCCESS, SDL calls + * SDL_AppQuit and terminates with an exit code that reports success to the + * platform. + * + * This function is called by SDL on the main thread. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \threadsafety This function may get called concurrently with SDL_AppEvent() + * for events not pushed on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppInit + * \sa SDL_AppEvent + */ +extern SDLMAIN_DECLSPEC SDL_AppResult SDLCALL SDL_AppIterate(void *appstate); + +/** + * App-implemented event entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called as needed by SDL after SDL_AppInit returns + * SDL_APP_CONTINUE. It is called once for each new event. + * + * There is (currently) no guarantee about what thread this will be called + * from; whatever thread pushes an event onto SDL's queue will trigger this + * function. SDL is responsible for pumping the event queue between each call + * to SDL_AppIterate, so in normal operation one should only get events in a + * serial fashion, but be careful if you have a thread that explicitly calls + * SDL_PushEvent. SDL itself will push events to the queue on the main thread. + * + * Events sent to this function are not owned by the app; if you need to save + * the data, you should copy it. + * + * This function should not go into an infinite mainloop; it should handle the + * provided event appropriately and return. + * + * The `appstate` parameter is an optional pointer provided by the app during + * SDL_AppInit(). If the app never provided a pointer, this will be NULL. + * + * If this function returns SDL_APP_CONTINUE, the app will continue normal + * operation, receiving repeated calls to SDL_AppIterate and SDL_AppEvent for + * the life of the program. If this function returns SDL_APP_FAILURE, SDL will + * call SDL_AppQuit and terminate the process with an exit code that reports + * an error to the platform. If it returns SDL_APP_SUCCESS, SDL calls + * SDL_AppQuit and terminates with an exit code that reports success to the + * platform. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param event the new event for the app to examine. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \threadsafety This function may get called concurrently with + * SDL_AppIterate() or SDL_AppQuit() for events not pushed from + * the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppInit + * \sa SDL_AppIterate + */ +extern SDLMAIN_DECLSPEC SDL_AppResult SDLCALL SDL_AppEvent(void *appstate, SDL_Event *event); + +/** + * App-implemented deinit entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called once by SDL before terminating the program. + * + * This function will be called no matter what, even if SDL_AppInit requests + * termination. + * + * This function should not go into an infinite mainloop; it should + * deinitialize any resources necessary, perform whatever shutdown activities, + * and return. + * + * You do not need to call SDL_Quit() in this function, as SDL will call it + * after this function returns and before the process terminates, but it is + * safe to do so. + * + * The `appstate` parameter is an optional pointer provided by the app during + * SDL_AppInit(). If the app never provided a pointer, this will be NULL. This + * function call is the last time this pointer will be provided, so any + * resources to it should be cleaned up here. + * + * This function is called by SDL on the main thread. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param result the result code that terminated the app (success or failure). + * + * \threadsafety SDL_AppEvent() may get called concurrently with this function + * if other threads that push events are still active. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppInit + */ +extern SDLMAIN_DECLSPEC void SDLCALL SDL_AppQuit(void *appstate, SDL_AppResult result); + +#endif /* SDL_MAIN_USE_CALLBACKS */ + + +/** + * The prototype for the application's main() function + * + * \param argc an ANSI-C style main function's argc. + * \param argv an ANSI-C style main function's argv. + * \returns an ANSI-C main return code; generally 0 is considered successful + * program completion, and small non-zero values are considered + * errors. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef int (SDLCALL *SDL_main_func)(int argc, char *argv[]); + +/** + * An app-supplied function for program entry. + * + * Apps do not directly create this function; they should create a standard + * ANSI-C `main` function instead. If SDL needs to insert some startup code + * before `main` runs, or the platform doesn't actually _use_ a function + * called "main", SDL will do some macro magic to redefine `main` to + * `SDL_main` and provide its own `main`. + * + * Apps should include `SDL_main.h` in the same file as their `main` function, + * and they should not use that symbol for anything else in that file, as it + * might get redefined. + * + * This function is only provided by the app if it isn't using + * SDL_MAIN_USE_CALLBACKS. + * + * Program startup is a surprisingly complex topic. Please see + * [README/main-functions](README/main-functions), (or + * docs/README-main-functions.md in the source tree) for a more detailed + * explanation. + * + * \param argc an ANSI-C style main function's argc. + * \param argv an ANSI-C style main function's argv. + * \returns an ANSI-C main return code; generally 0 is considered successful + * program completion, and small non-zero values are considered + * errors. + * + * \threadsafety This is the program entry point. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDLMAIN_DECLSPEC int SDLCALL SDL_main(int argc, char *argv[]); + +/** + * Circumvent failure of SDL_Init() when not using SDL_main() as an entry + * point. + * + * This function is defined in SDL_main.h, along with the preprocessor rule to + * redefine main() as SDL_main(). Thus to ensure that your main() function + * will not be changed it is necessary to define SDL_MAIN_HANDLED before + * including SDL.h. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetMainReady(void); + +/** + * Initializes and launches an SDL application, by doing platform-specific + * initialization before calling your mainFunction and cleanups after it + * returns, if that is needed for a specific platform, otherwise it just calls + * mainFunction. + * + * You can use this if you want to use your own main() implementation without + * using SDL_main (like when using SDL_MAIN_HANDLED). When using this, you do + * *not* need SDL_SetMainReady(). + * + * \param argc the argc parameter from the application's main() function, or 0 + * if the platform's main-equivalent has no argc. + * \param argv the argv parameter from the application's main() function, or + * NULL if the platform's main-equivalent has no argv. + * \param mainFunction your SDL app's C-style main(). NOT the function you're + * calling this from! Its name doesn't matter; it doesn't + * literally have to be `main`. + * \param reserved should be NULL (reserved for future use, will probably be + * platform-specific then). + * \returns the return value from mainFunction: 0 on success, otherwise + * failure; SDL_GetError() might have more information on the + * failure. + * + * \threadsafety Generally this is called once, near startup, from the + * process's initial thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_RunApp(int argc, char *argv[], SDL_main_func mainFunction, void *reserved); + +/** + * An entry point for SDL's use in SDL_MAIN_USE_CALLBACKS. + * + * Generally, you should not call this function directly. This only exists to + * hand off work into SDL as soon as possible, where it has a lot more control + * and functionality available, and make the inline code in SDL_main.h as + * small as possible. + * + * Not all platforms use this, it's actual use is hidden in a magic + * header-only library, and you should not call this directly unless you + * _really_ know what you're doing. + * + * \param argc standard Unix main argc. + * \param argv standard Unix main argv. + * \param appinit the application's SDL_AppInit function. + * \param appiter the application's SDL_AppIterate function. + * \param appevent the application's SDL_AppEvent function. + * \param appquit the application's SDL_AppQuit function. + * \returns standard Unix main return value. + * + * \threadsafety It is not safe to call this anywhere except as the only + * function call in SDL_main. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_EnterAppMainCallbacks(int argc, char *argv[], SDL_AppInit_func appinit, SDL_AppIterate_func appiter, SDL_AppEvent_func appevent, SDL_AppQuit_func appquit); + + +#if defined(SDL_PLATFORM_WINDOWS) + +/** + * Register a win32 window class for SDL's use. + * + * This can be called to set the application window class at startup. It is + * safe to call this multiple times, as long as every call is eventually + * paired with a call to SDL_UnregisterApp, but a second registration attempt + * while a previous registration is still active will be ignored, other than + * to increment a counter. + * + * Most applications do not need to, and should not, call this directly; SDL + * will call it when initializing the video subsystem. + * + * \param name the window class name, in UTF-8 encoding. If NULL, SDL + * currently uses "SDL_app" but this isn't guaranteed. + * \param style the value to use in WNDCLASSEX::style. If `name` is NULL, SDL + * currently uses `(CS_BYTEALIGNCLIENT | CS_OWNDC)` regardless of + * what is specified here. + * \param hInst the HINSTANCE to use in WNDCLASSEX::hInstance. If zero, SDL + * will use `GetModuleHandle(NULL)` instead. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RegisterApp(const char *name, Uint32 style, void *hInst); + +/** + * Deregister the win32 window class from an SDL_RegisterApp call. + * + * This can be called to undo the effects of SDL_RegisterApp. + * + * Most applications do not need to, and should not, call this directly; SDL + * will call it when deinitializing the video subsystem. + * + * It is safe to call this multiple times, as long as every call is eventually + * paired with a prior call to SDL_RegisterApp. The window class will only be + * deregistered when the registration counter in SDL_RegisterApp decrements to + * zero through calls to this function. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnregisterApp(void); + +#endif /* defined(SDL_PLATFORM_WINDOWS) */ + +/** + * Callback from the application to let the suspend continue. + * + * This function is only needed for Xbox GDK support; all other platforms will + * do nothing and set an "unsupported" error message. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_GDKSuspendComplete(void); + +#ifdef __cplusplus +} +#endif + +#include + +#if !defined(SDL_MAIN_HANDLED) && !defined(SDL_MAIN_NOIMPL) + /* include header-only SDL_main implementations */ + #if defined(SDL_MAIN_USE_CALLBACKS) || defined(SDL_MAIN_NEEDED) || defined(SDL_MAIN_AVAILABLE) + /* platforms which main (-equivalent) can be implemented in plain C */ + #include + #endif +#endif + +#endif /* SDL_main_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_main_impl.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_main_impl.h new file mode 100644 index 0000000..14ebb42 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_main_impl.h @@ -0,0 +1,151 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Main */ + +#ifndef SDL_main_impl_h_ +#define SDL_main_impl_h_ + +#ifndef SDL_main_h_ +#error "This header should not be included directly, but only via SDL_main.h!" +#endif + +/* if someone wants to include SDL_main.h but doesn't want the main handing magic, + (maybe to call SDL_RegisterApp()) they can #define SDL_MAIN_HANDLED first. + SDL_MAIN_NOIMPL is for SDL-internal usage (only affects implementation, + not definition of SDL_MAIN_AVAILABLE etc in SDL_main.h) and if the user wants + to have the SDL_main implementation (from this header) in another source file + than their main() function, for example if SDL_main requires C++ + and main() is implemented in plain C */ +#if !defined(SDL_MAIN_HANDLED) && !defined(SDL_MAIN_NOIMPL) + + /* the implementations below must be able to use the implement real main(), nothing renamed + (the user's main() will be renamed to SDL_main so it can be called from here) */ + #ifdef main + #undef main + #endif + + #ifdef SDL_MAIN_USE_CALLBACKS + + #if 0 + /* currently there are no platforms that _need_ a magic entry point here + for callbacks, but if one shows up, implement it here. */ + + #else /* use a standard SDL_main, which the app SHOULD NOT ALSO SUPPLY. */ + + /* this define makes the normal SDL_main entry point stuff work...we just provide SDL_main() instead of the app. */ + #define SDL_MAIN_CALLBACK_STANDARD 1 + + int SDL_main(int argc, char **argv) + { + return SDL_EnterAppMainCallbacks(argc, argv, SDL_AppInit, SDL_AppIterate, SDL_AppEvent, SDL_AppQuit); + } + + #endif /* platform-specific tests */ + + #endif /* SDL_MAIN_USE_CALLBACKS */ + + + /* set up the usual SDL_main stuff if we're not using callbacks or if we are but need the normal entry point, + unless the real entry point needs to be somewhere else entirely, like Android where it's in Java code */ + #if (!defined(SDL_MAIN_USE_CALLBACKS) || defined(SDL_MAIN_CALLBACK_STANDARD)) && !defined(SDL_MAIN_EXPORTED) + + #if defined(SDL_PLATFORM_PRIVATE_MAIN) + /* Private platforms may have their own ideas about entry points. */ + #include "SDL_main_impl_private.h" + + #elif defined(SDL_PLATFORM_WINDOWS) + + /* these defines/typedefs are needed for the WinMain() definition */ + #ifndef WINAPI + #define WINAPI __stdcall + #endif + + typedef struct HINSTANCE__ * HINSTANCE; + typedef char *LPSTR; + typedef wchar_t *PWSTR; + + /* The VC++ compiler needs main/wmain defined, but not for GDK */ + #if defined(_MSC_VER) && !defined(SDL_PLATFORM_GDK) + + /* This is where execution begins [console apps] */ + #if defined(UNICODE) && UNICODE + int wmain(int argc, wchar_t *wargv[], wchar_t *wenvp) + { + (void)argc; + (void)wargv; + (void)wenvp; + return SDL_RunApp(0, NULL, SDL_main, NULL); + } + #else /* ANSI */ + int main(int argc, char *argv[]) + { + (void)argc; + (void)argv; + return SDL_RunApp(0, NULL, SDL_main, NULL); + } + #endif /* UNICODE */ + + #endif /* _MSC_VER && ! SDL_PLATFORM_GDK */ + + /* This is where execution begins [windowed apps and GDK] */ + + #ifdef __cplusplus + extern "C" { + #endif + + #if defined(UNICODE) && UNICODE + int WINAPI wWinMain(HINSTANCE hInst, HINSTANCE hPrev, PWSTR szCmdLine, int sw) + #else /* ANSI */ + int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR szCmdLine, int sw) + #endif + { + (void)hInst; + (void)hPrev; + (void)szCmdLine; + (void)sw; + return SDL_RunApp(0, NULL, SDL_main, NULL); + } + + #ifdef __cplusplus + } /* extern "C" */ + #endif + + /* end of SDL_PLATFORM_WINDOWS impls */ + + #else /* platforms that use a standard main() and just call SDL_RunApp(), like iOS and 3DS */ + int main(int argc, char *argv[]) + { + return SDL_RunApp(argc, argv, SDL_main, NULL); + } + + /* end of impls for standard-conforming platforms */ + + #endif /* SDL_PLATFORM_WIN32 etc */ + + #endif /* !defined(SDL_MAIN_USE_CALLBACKS) || defined(SDL_MAIN_CALLBACK_STANDARD) */ + + /* rename users main() function to SDL_main() so it can be called from the wrappers above */ + #define main SDL_main + +#endif /* SDL_MAIN_HANDLED */ + +#endif /* SDL_main_impl_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_messagebox.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_messagebox.h new file mode 100644 index 0000000..365ae36 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_messagebox.h @@ -0,0 +1,226 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMessagebox + * + * SDL offers a simple message box API, which is useful for simple alerts, + * such as informing the user when something fatal happens at startup without + * the need to build a UI for it (or informing the user _before_ your UI is + * ready). + * + * These message boxes are native system dialogs where possible. + * + * There is both a customizable function (SDL_ShowMessageBox()) that offers + * lots of options for what to display and reports on what choice the user + * made, and also a much-simplified version (SDL_ShowSimpleMessageBox()), + * merely takes a text message and title, and waits until the user presses a + * single "OK" UI button. Often, this is all that is necessary. + */ + +#ifndef SDL_messagebox_h_ +#define SDL_messagebox_h_ + +#include +#include +#include /* For SDL_Window */ + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Message box flags. + * + * If supported will display warning icon, etc. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_MessageBoxFlags; + +#define SDL_MESSAGEBOX_ERROR 0x00000010u /**< error dialog */ +#define SDL_MESSAGEBOX_WARNING 0x00000020u /**< warning dialog */ +#define SDL_MESSAGEBOX_INFORMATION 0x00000040u /**< informational dialog */ +#define SDL_MESSAGEBOX_BUTTONS_LEFT_TO_RIGHT 0x00000080u /**< buttons placed left to right */ +#define SDL_MESSAGEBOX_BUTTONS_RIGHT_TO_LEFT 0x00000100u /**< buttons placed right to left */ + +/** + * SDL_MessageBoxButtonData flags. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_MessageBoxButtonFlags; + +#define SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT 0x00000001u /**< Marks the default button when return is hit */ +#define SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT 0x00000002u /**< Marks the default button when escape is hit */ + +/** + * Individual button data. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxButtonData +{ + SDL_MessageBoxButtonFlags flags; + int buttonID; /**< User defined button id (value returned via SDL_ShowMessageBox) */ + const char *text; /**< The UTF-8 button text */ +} SDL_MessageBoxButtonData; + +/** + * RGB value used in a message box color scheme + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxColor +{ + Uint8 r, g, b; +} SDL_MessageBoxColor; + +/** + * An enumeration of indices inside the colors array of + * SDL_MessageBoxColorScheme. + */ +typedef enum SDL_MessageBoxColorType +{ + SDL_MESSAGEBOX_COLOR_BACKGROUND, + SDL_MESSAGEBOX_COLOR_TEXT, + SDL_MESSAGEBOX_COLOR_BUTTON_BORDER, + SDL_MESSAGEBOX_COLOR_BUTTON_BACKGROUND, + SDL_MESSAGEBOX_COLOR_BUTTON_SELECTED, + SDL_MESSAGEBOX_COLOR_COUNT /**< Size of the colors array of SDL_MessageBoxColorScheme. */ +} SDL_MessageBoxColorType; + +/** + * A set of colors to use for message box dialogs + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxColorScheme +{ + SDL_MessageBoxColor colors[SDL_MESSAGEBOX_COLOR_COUNT]; +} SDL_MessageBoxColorScheme; + +/** + * MessageBox structure containing title, text, window, etc. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxData +{ + SDL_MessageBoxFlags flags; + SDL_Window *window; /**< Parent window, can be NULL */ + const char *title; /**< UTF-8 title */ + const char *message; /**< UTF-8 message text */ + + int numbuttons; + const SDL_MessageBoxButtonData *buttons; + + const SDL_MessageBoxColorScheme *colorScheme; /**< SDL_MessageBoxColorScheme, can be NULL to use system settings */ +} SDL_MessageBoxData; + +/** + * Create a modal message box. + * + * If your needs aren't complex, it might be easier to use + * SDL_ShowSimpleMessageBox. + * + * This function should be called on the thread that created the parent + * window, or on the main thread if the messagebox has no parent. It will + * block execution of that thread until the user clicks a button or closes the + * messagebox. + * + * This function may be called at any time, even before SDL_Init(). This makes + * it useful for reporting errors like a failure to create a renderer or + * OpenGL context. + * + * On X11, SDL rolls its own dialog box with X11 primitives instead of a + * formal toolkit like GTK+ or Qt. + * + * Note that if SDL_Init() would fail because there isn't any available video + * target, this function is likely to fail for the same reasons. If this is a + * concern, check the return value from this function and fall back to writing + * to stderr if you can. + * + * \param messageboxdata the SDL_MessageBoxData structure with title, text and + * other options. + * \param buttonid the pointer to which user id of hit button should be + * copied. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShowSimpleMessageBox + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid); + +/** + * Display a simple modal message box. + * + * If your needs aren't complex, this function is preferred over + * SDL_ShowMessageBox. + * + * `flags` may be any of the following: + * + * - `SDL_MESSAGEBOX_ERROR`: error dialog + * - `SDL_MESSAGEBOX_WARNING`: warning dialog + * - `SDL_MESSAGEBOX_INFORMATION`: informational dialog + * + * This function should be called on the thread that created the parent + * window, or on the main thread if the messagebox has no parent. It will + * block execution of that thread until the user clicks a button or closes the + * messagebox. + * + * This function may be called at any time, even before SDL_Init(). This makes + * it useful for reporting errors like a failure to create a renderer or + * OpenGL context. + * + * On X11, SDL rolls its own dialog box with X11 primitives instead of a + * formal toolkit like GTK+ or Qt. + * + * Note that if SDL_Init() would fail because there isn't any available video + * target, this function is likely to fail for the same reasons. If this is a + * concern, check the return value from this function and fall back to writing + * to stderr if you can. + * + * \param flags an SDL_MessageBoxFlags value. + * \param title UTF-8 title text. + * \param message UTF-8 message text. + * \param window the parent window, or NULL for no parent. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShowMessageBox + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowSimpleMessageBox(SDL_MessageBoxFlags flags, const char *title, const char *message, SDL_Window *window); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_messagebox_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_metal.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_metal.h new file mode 100644 index 0000000..14b1bc8 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_metal.h @@ -0,0 +1,107 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMetal + * + * Functions to creating Metal layers and views on SDL windows. + * + * This provides some platform-specific glue for Apple platforms. Most macOS + * and iOS apps can use SDL without these functions, but this API they can be + * useful for specific OS-level integration tasks. + */ + +#ifndef SDL_metal_h_ +#define SDL_metal_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A handle to a CAMetalLayer-backed NSView (macOS) or UIView (iOS/tvOS). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_MetalView; + +/** + * \name Metal support functions + */ +/* @{ */ + +/** + * Create a CAMetalLayer-backed NSView/UIView and attach it to the specified + * window. + * + * On macOS, this does *not* associate a MTLDevice with the CAMetalLayer on + * its own. It is up to user code to do that. + * + * The returned handle can be casted directly to a NSView or UIView. To access + * the backing CAMetalLayer, call SDL_Metal_GetLayer(). + * + * \param window the window. + * \returns handle NSView or UIView. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Metal_DestroyView + * \sa SDL_Metal_GetLayer + */ +extern SDL_DECLSPEC SDL_MetalView SDLCALL SDL_Metal_CreateView(SDL_Window *window); + +/** + * Destroy an existing SDL_MetalView object. + * + * This should be called before SDL_DestroyWindow, if SDL_Metal_CreateView was + * called after SDL_CreateWindow. + * + * \param view the SDL_MetalView object. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Metal_CreateView + */ +extern SDL_DECLSPEC void SDLCALL SDL_Metal_DestroyView(SDL_MetalView view); + +/** + * Get a pointer to the backing CAMetalLayer for the given view. + * + * \param view the SDL_MetalView object. + * \returns a pointer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_Metal_GetLayer(SDL_MetalView view); + +/* @} *//* Metal support functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_metal_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_misc.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_misc.h new file mode 100644 index 0000000..3dd6fcd --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_misc.h @@ -0,0 +1,78 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMisc + * + * SDL API functions that don't fit elsewhere. + */ + +#ifndef SDL_misc_h_ +#define SDL_misc_h_ + +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Open a URL/URI in the browser or other appropriate external application. + * + * Open a URL in a separate, system-provided application. How this works will + * vary wildly depending on the platform. This will likely launch what makes + * sense to handle a specific URL's protocol (a web browser for `http://`, + * etc), but it might also be able to launch file managers for directories and + * other things. + * + * What happens when you open a URL varies wildly as well: your game window + * may lose focus (and may or may not lose focus if your game was fullscreen + * or grabbing input at the time). On mobile devices, your app will likely + * move to the background or your process might be paused. Any given platform + * may or may not handle a given URL. + * + * If this is unimplemented (or simply unavailable) for a platform, this will + * fail with an error. A successful result does not mean the URL loaded, just + * that we launched _something_ to handle it (or at least believe we did). + * + * All this to say: this function can be useful, but you should definitely + * test it on every platform you target. + * + * \param url a valid URL/URI to open. Use `file:///full/path/to/file` for + * local files, if supported. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_OpenURL(const char *url); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_misc_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_mouse.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_mouse.h new file mode 100644 index 0000000..864135d --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_mouse.h @@ -0,0 +1,689 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMouse + * + * Any GUI application has to deal with the mouse, and SDL provides functions + * to manage mouse input and the displayed cursor. + * + * Most interactions with the mouse will come through the event subsystem. + * Moving a mouse generates an SDL_EVENT_MOUSE_MOTION event, pushing a button + * generates SDL_EVENT_MOUSE_BUTTON_DOWN, etc, but one can also query the + * current state of the mouse at any time with SDL_GetMouseState(). + * + * For certain games, it's useful to disassociate the mouse cursor from mouse + * input. An FPS, for example, would not want the player's motion to stop as + * the mouse hits the edge of the window. For these scenarios, use + * SDL_SetWindowRelativeMouseMode(), which hides the cursor, grabs mouse input + * to the window, and reads mouse input no matter how far it moves. + * + * Games that want the system to track the mouse but want to draw their own + * cursor can use SDL_HideCursor() and SDL_ShowCursor(). It might be more + * efficient to let the system manage the cursor, if possible, using + * SDL_SetCursor() with a custom image made through SDL_CreateColorCursor(), + * or perhaps just a specific system cursor from SDL_CreateSystemCursor(). + * + * SDL can, on many platforms, differentiate between multiple connected mice, + * allowing for interesting input scenarios and multiplayer games. They can be + * enumerated with SDL_GetMice(), and SDL will send SDL_EVENT_MOUSE_ADDED and + * SDL_EVENT_MOUSE_REMOVED events as they are connected and unplugged. + * + * Since many apps only care about basic mouse input, SDL offers a virtual + * mouse device for touch and pen input, which often can make a desktop + * application work on a touchscreen phone without any code changes. Apps that + * care about touch/pen separately from mouse input should filter out events + * with a `which` field of SDL_TOUCH_MOUSEID/SDL_PEN_MOUSEID. + */ + +#ifndef SDL_mouse_h_ +#define SDL_mouse_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a mouse for the time it is connected to the system, + * and is never reused for the lifetime of the application. + * + * If the mouse is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_MouseID; + +/** + * The structure used to identify an SDL cursor. + * + * This is opaque data. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Cursor SDL_Cursor; + +/** + * Cursor types for SDL_CreateSystemCursor(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_SystemCursor +{ + SDL_SYSTEM_CURSOR_DEFAULT, /**< Default cursor. Usually an arrow. */ + SDL_SYSTEM_CURSOR_TEXT, /**< Text selection. Usually an I-beam. */ + SDL_SYSTEM_CURSOR_WAIT, /**< Wait. Usually an hourglass or watch or spinning ball. */ + SDL_SYSTEM_CURSOR_CROSSHAIR, /**< Crosshair. */ + SDL_SYSTEM_CURSOR_PROGRESS, /**< Program is busy but still interactive. Usually it's WAIT with an arrow. */ + SDL_SYSTEM_CURSOR_NWSE_RESIZE, /**< Double arrow pointing northwest and southeast. */ + SDL_SYSTEM_CURSOR_NESW_RESIZE, /**< Double arrow pointing northeast and southwest. */ + SDL_SYSTEM_CURSOR_EW_RESIZE, /**< Double arrow pointing west and east. */ + SDL_SYSTEM_CURSOR_NS_RESIZE, /**< Double arrow pointing north and south. */ + SDL_SYSTEM_CURSOR_MOVE, /**< Four pointed arrow pointing north, south, east, and west. */ + SDL_SYSTEM_CURSOR_NOT_ALLOWED, /**< Not permitted. Usually a slashed circle or crossbones. */ + SDL_SYSTEM_CURSOR_POINTER, /**< Pointer that indicates a link. Usually a pointing hand. */ + SDL_SYSTEM_CURSOR_NW_RESIZE, /**< Window resize top-left. This may be a single arrow or a double arrow like NWSE_RESIZE. */ + SDL_SYSTEM_CURSOR_N_RESIZE, /**< Window resize top. May be NS_RESIZE. */ + SDL_SYSTEM_CURSOR_NE_RESIZE, /**< Window resize top-right. May be NESW_RESIZE. */ + SDL_SYSTEM_CURSOR_E_RESIZE, /**< Window resize right. May be EW_RESIZE. */ + SDL_SYSTEM_CURSOR_SE_RESIZE, /**< Window resize bottom-right. May be NWSE_RESIZE. */ + SDL_SYSTEM_CURSOR_S_RESIZE, /**< Window resize bottom. May be NS_RESIZE. */ + SDL_SYSTEM_CURSOR_SW_RESIZE, /**< Window resize bottom-left. May be NESW_RESIZE. */ + SDL_SYSTEM_CURSOR_W_RESIZE, /**< Window resize left. May be EW_RESIZE. */ + SDL_SYSTEM_CURSOR_COUNT +} SDL_SystemCursor; + +/** + * Scroll direction types for the Scroll event + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_MouseWheelDirection +{ + SDL_MOUSEWHEEL_NORMAL, /**< The scroll direction is normal */ + SDL_MOUSEWHEEL_FLIPPED /**< The scroll direction is flipped / natural */ +} SDL_MouseWheelDirection; + +/** + * A bitmask of pressed mouse buttons, as reported by SDL_GetMouseState, etc. + * + * - Button 1: Left mouse button + * - Button 2: Middle mouse button + * - Button 3: Right mouse button + * - Button 4: Side mouse button 1 + * - Button 5: Side mouse button 2 + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetMouseState + * \sa SDL_GetGlobalMouseState + * \sa SDL_GetRelativeMouseState + */ +typedef Uint32 SDL_MouseButtonFlags; + +#define SDL_BUTTON_LEFT 1 +#define SDL_BUTTON_MIDDLE 2 +#define SDL_BUTTON_RIGHT 3 +#define SDL_BUTTON_X1 4 +#define SDL_BUTTON_X2 5 + +#define SDL_BUTTON_MASK(X) (1u << ((X)-1)) +#define SDL_BUTTON_LMASK SDL_BUTTON_MASK(SDL_BUTTON_LEFT) +#define SDL_BUTTON_MMASK SDL_BUTTON_MASK(SDL_BUTTON_MIDDLE) +#define SDL_BUTTON_RMASK SDL_BUTTON_MASK(SDL_BUTTON_RIGHT) +#define SDL_BUTTON_X1MASK SDL_BUTTON_MASK(SDL_BUTTON_X1) +#define SDL_BUTTON_X2MASK SDL_BUTTON_MASK(SDL_BUTTON_X2) + + +/* Function prototypes */ + +/** + * Return whether a mouse is currently connected. + * + * \returns true if a mouse is connected, false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasMouse(void); + +/** + * Get a list of currently connected mice. + * + * Note that this will include any device or virtual driver that includes + * mouse functionality, including some game controllers, KVM switches, etc. + * You should wait for input from a device before you consider it actively in + * use. + * + * \param count a pointer filled in with the number of mice returned, may be + * NULL. + * \returns a 0 terminated array of mouse instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMouseNameForID + * \sa SDL_HasMouse + */ +extern SDL_DECLSPEC SDL_MouseID * SDLCALL SDL_GetMice(int *count); + +/** + * Get the name of a mouse. + * + * This function returns "" if the mouse doesn't have a name. + * + * \param instance_id the mouse instance ID. + * \returns the name of the selected mouse, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMice + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetMouseNameForID(SDL_MouseID instance_id); + +/** + * Get the window which currently has mouse focus. + * + * \returns the window with mouse focus. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetMouseFocus(void); + +/** + * Query SDL's cache for the synchronous mouse button state and the + * window-relative SDL-cursor position. + * + * This function returns the cached synchronous state as SDL understands it + * from the last pump of the event queue. + * + * To query the platform for immediate asynchronous state, use + * SDL_GetGlobalMouseState. + * + * Passing non-NULL pointers to `x` or `y` will write the destination with + * respective x or y coordinates relative to the focused window. + * + * In Relative Mode, the SDL-cursor's position usually contradicts the + * platform-cursor's position as manually calculated from + * SDL_GetGlobalMouseState() and SDL_GetWindowPosition. + * + * \param x a pointer to receive the SDL-cursor's x-position from the focused + * window's top left corner, can be NULL if unused. + * \param y a pointer to receive the SDL-cursor's y-position from the focused + * window's top left corner, can be NULL if unused. + * \returns a 32-bit bitmask of the button state that can be bitwise-compared + * against the SDL_BUTTON_MASK(X) macro. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGlobalMouseState + * \sa SDL_GetRelativeMouseState + */ +extern SDL_DECLSPEC SDL_MouseButtonFlags SDLCALL SDL_GetMouseState(float *x, float *y); + +/** + * Query the platform for the asynchronous mouse button state and the + * desktop-relative platform-cursor position. + * + * This function immediately queries the platform for the most recent + * asynchronous state, more costly than retrieving SDL's cached state in + * SDL_GetMouseState(). + * + * Passing non-NULL pointers to `x` or `y` will write the destination with + * respective x or y coordinates relative to the desktop. + * + * In Relative Mode, the platform-cursor's position usually contradicts the + * SDL-cursor's position as manually calculated from SDL_GetMouseState() and + * SDL_GetWindowPosition. + * + * This function can be useful if you need to track the mouse outside of a + * specific window and SDL_CaptureMouse() doesn't fit your needs. For example, + * it could be useful if you need to track the mouse while dragging a window, + * where coordinates relative to a window might not be in sync at all times. + * + * \param x a pointer to receive the platform-cursor's x-position from the + * desktop's top left corner, can be NULL if unused. + * \param y a pointer to receive the platform-cursor's y-position from the + * desktop's top left corner, can be NULL if unused. + * \returns a 32-bit bitmask of the button state that can be bitwise-compared + * against the SDL_BUTTON_MASK(X) macro. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CaptureMouse + * \sa SDL_GetMouseState + * \sa SDL_GetGlobalMouseState + */ +extern SDL_DECLSPEC SDL_MouseButtonFlags SDLCALL SDL_GetGlobalMouseState(float *x, float *y); + +/** + * Query SDL's cache for the synchronous mouse button state and accumulated + * mouse delta since last call. + * + * This function returns the cached synchronous state as SDL understands it + * from the last pump of the event queue. + * + * To query the platform for immediate asynchronous state, use + * SDL_GetGlobalMouseState. + * + * Passing non-NULL pointers to `x` or `y` will write the destination with + * respective x or y deltas accumulated since the last call to this function + * (or since event initialization). + * + * This function is useful for reducing overhead by processing relative mouse + * inputs in one go per-frame instead of individually per-event, at the + * expense of losing the order between events within the frame (e.g. quickly + * pressing and releasing a button within the same frame). + * + * \param x a pointer to receive the x mouse delta accumulated since last + * call, can be NULL if unused. + * \param y a pointer to receive the y mouse delta accumulated since last + * call, can be NULL if unused. + * \returns a 32-bit bitmask of the button state that can be bitwise-compared + * against the SDL_BUTTON_MASK(X) macro. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMouseState + * \sa SDL_GetGlobalMouseState + */ +extern SDL_DECLSPEC SDL_MouseButtonFlags SDLCALL SDL_GetRelativeMouseState(float *x, float *y); + +/** + * Move the mouse cursor to the given position within the window. + * + * This function generates a mouse motion event if relative mode is not + * enabled. If relative mode is enabled, you can force mouse events for the + * warp by setting the SDL_HINT_MOUSE_RELATIVE_WARP_MOTION hint. + * + * Note that this function will appear to succeed, but not actually move the + * mouse when used over Microsoft Remote Desktop. + * + * \param window the window to move the mouse into, or NULL for the current + * mouse focus. + * \param x the x coordinate within the window. + * \param y the y coordinate within the window. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WarpMouseGlobal + */ +extern SDL_DECLSPEC void SDLCALL SDL_WarpMouseInWindow(SDL_Window *window, + float x, float y); + +/** + * Move the mouse to the given position in global screen space. + * + * This function generates a mouse motion event. + * + * A failure of this function usually means that it is unsupported by a + * platform. + * + * Note that this function will appear to succeed, but not actually move the + * mouse when used over Microsoft Remote Desktop. + * + * \param x the x coordinate. + * \param y the y coordinate. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WarpMouseInWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WarpMouseGlobal(float x, float y); + +/** + * Set relative mouse mode for a window. + * + * While the window has focus and relative mouse mode is enabled, the cursor + * is hidden, the mouse position is constrained to the window, and SDL will + * report continuous relative mouse motion even if the mouse is at the edge of + * the window. + * + * If you'd like to keep the mouse position fixed while in relative mode you + * can use SDL_SetWindowMouseRect(). If you'd like the cursor to be at a + * specific location when relative mode ends, you should use + * SDL_WarpMouseInWindow() before disabling relative mode. + * + * This function will flush any pending mouse motion for this window. + * + * \param window the window to change. + * \param enabled true to enable relative mode, false to disable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowRelativeMouseMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowRelativeMouseMode(SDL_Window *window, bool enabled); + +/** + * Query whether relative mouse mode is enabled for a window. + * + * \param window the window to query. + * \returns true if relative mode is enabled for a window or false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowRelativeMouseMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowRelativeMouseMode(SDL_Window *window); + +/** + * Capture the mouse and to track input outside an SDL window. + * + * Capturing enables your app to obtain mouse events globally, instead of just + * within your window. Not all video targets support this function. When + * capturing is enabled, the current window will get all mouse events, but + * unlike relative mode, no change is made to the cursor and it is not + * restrained to your window. + * + * This function may also deny mouse input to other windows--both those in + * your application and others on the system--so you should use this function + * sparingly, and in small bursts. For example, you might want to track the + * mouse while the user is dragging something, until the user releases a mouse + * button. It is not recommended that you capture the mouse for long periods + * of time, such as the entire time your app is running. For that, you should + * probably use SDL_SetWindowRelativeMouseMode() or SDL_SetWindowMouseGrab(), + * depending on your goals. + * + * While captured, mouse events still report coordinates relative to the + * current (foreground) window, but those coordinates may be outside the + * bounds of the window (including negative values). Capturing is only allowed + * for the foreground window. If the window loses focus while capturing, the + * capture will be disabled automatically. + * + * While capturing is enabled, the current window will have the + * `SDL_WINDOW_MOUSE_CAPTURE` flag set. + * + * Please note that SDL will attempt to "auto capture" the mouse while the + * user is pressing a button; this is to try and make mouse behavior more + * consistent between platforms, and deal with the common case of a user + * dragging the mouse outside of the window. This means that if you are + * calling SDL_CaptureMouse() only to deal with this situation, you do not + * have to (although it is safe to do so). If this causes problems for your + * app, you can disable auto capture by setting the + * `SDL_HINT_MOUSE_AUTO_CAPTURE` hint to zero. + * + * \param enabled true to enable capturing, false to disable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGlobalMouseState + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CaptureMouse(bool enabled); + +/** + * Create a cursor using the specified bitmap data and mask (in MSB format). + * + * `mask` has to be in MSB (Most Significant Bit) format. + * + * The cursor width (`w`) must be a multiple of 8 bits. + * + * The cursor is created in black and white according to the following: + * + * - data=0, mask=1: white + * - data=1, mask=1: black + * - data=0, mask=0: transparent + * - data=1, mask=0: inverted color if possible, black if not. + * + * Cursors created with this function must be freed with SDL_DestroyCursor(). + * + * If you want to have a color cursor, or create your cursor from an + * SDL_Surface, you should use SDL_CreateColorCursor(). Alternately, you can + * hide the cursor and draw your own as part of your game's rendering, but it + * will be bound to the framerate. + * + * Also, SDL_CreateSystemCursor() is available, which provides several + * readily-available system cursors to pick from. + * + * \param data the color value for each pixel of the cursor. + * \param mask the mask value for each pixel of the cursor. + * \param w the width of the cursor. + * \param h the height of the cursor. + * \param hot_x the x-axis offset from the left of the cursor image to the + * mouse x position, in the range of 0 to `w` - 1. + * \param hot_y the y-axis offset from the top of the cursor image to the + * mouse y position, in the range of 0 to `h` - 1. + * \returns a new cursor with the specified parameters on success or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateColorCursor + * \sa SDL_CreateSystemCursor + * \sa SDL_DestroyCursor + * \sa SDL_SetCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_CreateCursor(const Uint8 *data, + const Uint8 *mask, + int w, int h, int hot_x, + int hot_y); + +/** + * Create a color cursor. + * + * If this function is passed a surface with alternate representations, the + * surface will be interpreted as the content to be used for 100% display + * scale, and the alternate representations will be used for high DPI + * situations. For example, if the original surface is 32x32, then on a 2x + * macOS display or 200% display scale on Windows, a 64x64 version of the + * image will be used, if available. If a matching version of the image isn't + * available, the closest larger size image will be downscaled to the + * appropriate size and be used instead, if available. Otherwise, the closest + * smaller image will be upscaled and be used instead. + * + * \param surface an SDL_Surface structure representing the cursor image. + * \param hot_x the x position of the cursor hot spot. + * \param hot_y the y position of the cursor hot spot. + * \returns the new cursor on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateCursor + * \sa SDL_CreateSystemCursor + * \sa SDL_DestroyCursor + * \sa SDL_SetCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_CreateColorCursor(SDL_Surface *surface, + int hot_x, + int hot_y); + +/** + * Create a system cursor. + * + * \param id an SDL_SystemCursor enum value. + * \returns a cursor on success or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_CreateSystemCursor(SDL_SystemCursor id); + +/** + * Set the active cursor. + * + * This function sets the currently active cursor to the specified one. If the + * cursor is currently visible, the change will be immediately represented on + * the display. SDL_SetCursor(NULL) can be used to force cursor redraw, if + * this is desired for any reason. + * + * \param cursor a cursor to make active. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetCursor(SDL_Cursor *cursor); + +/** + * Get the active cursor. + * + * This function returns a pointer to the current cursor which is owned by the + * library. It is not necessary to free the cursor with SDL_DestroyCursor(). + * + * \returns the active cursor or NULL if there is no mouse. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_GetCursor(void); + +/** + * Get the default cursor. + * + * You do not have to call SDL_DestroyCursor() on the return value, but it is + * safe to do so. + * + * \returns the default cursor on success or NULL on failuree; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_GetDefaultCursor(void); + +/** + * Free a previously-created cursor. + * + * Use this function to free cursor resources created with SDL_CreateCursor(), + * SDL_CreateColorCursor() or SDL_CreateSystemCursor(). + * + * \param cursor the cursor to free. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateColorCursor + * \sa SDL_CreateCursor + * \sa SDL_CreateSystemCursor + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyCursor(SDL_Cursor *cursor); + +/** + * Show the cursor. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CursorVisible + * \sa SDL_HideCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowCursor(void); + +/** + * Hide the cursor. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CursorVisible + * \sa SDL_ShowCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HideCursor(void); + +/** + * Return whether the cursor is currently being shown. + * + * \returns `true` if the cursor is being shown, or `false` if the cursor is + * hidden. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HideCursor + * \sa SDL_ShowCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CursorVisible(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_mouse_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_mutex.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_mutex.h new file mode 100644 index 0000000..c88ec15 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_mutex.h @@ -0,0 +1,1073 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_mutex_h_ +#define SDL_mutex_h_ + +/** + * # CategoryMutex + * + * SDL offers several thread synchronization primitives. This document can't + * cover the complicated topic of thread safety, but reading up on what each + * of these primitives are, why they are useful, and how to correctly use them + * is vital to writing correct and safe multithreaded programs. + * + * - Mutexes: SDL_CreateMutex() + * - Read/Write locks: SDL_CreateRWLock() + * - Semaphores: SDL_CreateSemaphore() + * - Condition variables: SDL_CreateCondition() + * + * SDL also offers a datatype, SDL_InitState, which can be used to make sure + * only one thread initializes/deinitializes some resource that several + * threads might try to use for the first time simultaneously. + */ + +#include +#include +#include +#include + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Enable thread safety attributes, only with clang. + * + * The attributes can be safely erased when compiling with other compilers. + * + * To enable analysis, set these environment variables before running cmake: + * + * ```bash + * export CC=clang + * export CFLAGS="-DSDL_THREAD_SAFETY_ANALYSIS -Wthread-safety" + * ``` + */ +#define SDL_THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) + +#elif defined(SDL_THREAD_SAFETY_ANALYSIS) && defined(__clang__) && (!defined(SWIG)) +#define SDL_THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) +#else +#define SDL_THREAD_ANNOTATION_ATTRIBUTE__(x) /* no-op */ +#endif + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCOPED_CAPABILITY \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(scoped_lockable) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_GUARDED_BY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PT_GUARDED_BY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(pt_guarded_by(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRED_BEFORE(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquired_before(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRED_AFTER(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquired_after(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_REQUIRES(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(requires_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_REQUIRES_SHARED(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(requires_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRE(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquire_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRE_SHARED(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquire_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RELEASE(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(release_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RELEASE_SHARED(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(release_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RELEASE_GENERIC(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(release_generic_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TRY_ACQUIRE(x, y) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_capability(x, y)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TRY_ACQUIRE_SHARED(x, y) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_shared_capability(x, y)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_EXCLUDES(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(locks_excluded(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ASSERT_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(assert_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ASSERT_SHARED_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(assert_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RETURN_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(lock_returned(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NO_THREAD_SAFETY_ANALYSIS \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(no_thread_safety_analysis) + +/******************************************************************************/ + + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \name Mutex functions + */ +/* @{ */ + +/** + * A means to serialize access to a resource between threads. + * + * Mutexes (short for "mutual exclusion") are a synchronization primitive that + * allows exactly one thread to proceed at a time. + * + * Wikipedia has a thorough explanation of the concept: + * + * https://en.wikipedia.org/wiki/Mutex + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Mutex SDL_Mutex; + +/** + * Create a new mutex. + * + * All newly-created mutexes begin in the _unlocked_ state. + * + * Calls to SDL_LockMutex() will not return while the mutex is locked by + * another thread. See SDL_TryLockMutex() to attempt to lock without blocking. + * + * SDL mutexes are reentrant. + * + * \returns the initialized and unlocked mutex or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyMutex + * \sa SDL_LockMutex + * \sa SDL_TryLockMutex + * \sa SDL_UnlockMutex + */ +extern SDL_DECLSPEC SDL_Mutex * SDLCALL SDL_CreateMutex(void); + +/** + * Lock the mutex. + * + * This will block until the mutex is available, which is to say it is in the + * unlocked state and the OS has chosen the caller as the next thread to lock + * it. Of all threads waiting to lock the mutex, only one may do so at a time. + * + * It is legal for the owning thread to lock an already-locked mutex. It must + * unlock it the same number of times before it is actually made available for + * other threads in the system (this is known as a "recursive mutex"). + * + * This function does not fail; if mutex is NULL, it will return immediately + * having locked nothing. If the mutex is valid, this function will always + * block until it can lock the mutex, and return with it locked. + * + * \param mutex the mutex to lock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TryLockMutex + * \sa SDL_UnlockMutex + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockMutex(SDL_Mutex *mutex) SDL_ACQUIRE(mutex); + +/** + * Try to lock a mutex without blocking. + * + * This works just like SDL_LockMutex(), but if the mutex is not available, + * this function returns false immediately. + * + * This technique is useful if you need exclusive access to a resource but + * don't want to wait for it, and will return to it to try again later. + * + * This function returns true if passed a NULL mutex. + * + * \param mutex the mutex to try to lock. + * \returns true on success, false if the mutex would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockMutex + * \sa SDL_UnlockMutex + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockMutex(SDL_Mutex *mutex) SDL_TRY_ACQUIRE(0, mutex); + +/** + * Unlock the mutex. + * + * It is legal for the owning thread to lock an already-locked mutex. It must + * unlock it the same number of times before it is actually made available for + * other threads in the system (this is known as a "recursive mutex"). + * + * It is illegal to unlock a mutex that has not been locked by the current + * thread, and doing so results in undefined behavior. + * + * \param mutex the mutex to unlock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockMutex + * \sa SDL_TryLockMutex + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockMutex(SDL_Mutex *mutex) SDL_RELEASE(mutex); + +/** + * Destroy a mutex created with SDL_CreateMutex(). + * + * This function must be called on any mutex that is no longer needed. Failure + * to destroy a mutex will result in a system memory or resource leak. While + * it is safe to destroy a mutex that is _unlocked_, it is not safe to attempt + * to destroy a locked mutex, and may result in undefined behavior depending + * on the platform. + * + * \param mutex the mutex to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateMutex + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyMutex(SDL_Mutex *mutex); + +/* @} *//* Mutex functions */ + + +/** + * \name Read/write lock functions + */ +/* @{ */ + +/** + * A mutex that allows read-only threads to run in parallel. + * + * A rwlock is roughly the same concept as SDL_Mutex, but allows threads that + * request read-only access to all hold the lock at the same time. If a thread + * requests write access, it will block until all read-only threads have + * released the lock, and no one else can hold the thread (for reading or + * writing) at the same time as the writing thread. + * + * This can be more efficient in cases where several threads need to access + * data frequently, but changes to that data are rare. + * + * There are other rules that apply to rwlocks that don't apply to mutexes, + * about how threads are scheduled and when they can be recursively locked. + * These are documented in the other rwlock functions. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_RWLock SDL_RWLock; + +/** + * Create a new read/write lock. + * + * A read/write lock is useful for situations where you have multiple threads + * trying to access a resource that is rarely updated. All threads requesting + * a read-only lock will be allowed to run in parallel; if a thread requests a + * write lock, it will be provided exclusive access. This makes it safe for + * multiple threads to use a resource at the same time if they promise not to + * change it, and when it has to be changed, the rwlock will serve as a + * gateway to make sure those changes can be made safely. + * + * In the right situation, a rwlock can be more efficient than a mutex, which + * only lets a single thread proceed at a time, even if it won't be modifying + * the data. + * + * All newly-created read/write locks begin in the _unlocked_ state. + * + * Calls to SDL_LockRWLockForReading() and SDL_LockRWLockForWriting will not + * return while the rwlock is locked _for writing_ by another thread. See + * SDL_TryLockRWLockForReading() and SDL_TryLockRWLockForWriting() to attempt + * to lock without blocking. + * + * SDL read/write locks are only recursive for read-only locks! They are not + * guaranteed to be fair, or provide access in a FIFO manner! They are not + * guaranteed to favor writers. You may not lock a rwlock for both read-only + * and write access at the same time from the same thread (so you can't + * promote your read-only lock to a write lock without unlocking first). + * + * \returns the initialized and unlocked read/write lock or NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyRWLock + * \sa SDL_LockRWLockForReading + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC SDL_RWLock * SDLCALL SDL_CreateRWLock(void); + +/** + * Lock the read/write lock for _read only_ operations. + * + * This will block until the rwlock is available, which is to say it is not + * locked for writing by any other thread. Of all threads waiting to lock the + * rwlock, all may do so at the same time as long as they are requesting + * read-only access; if a thread wants to lock for writing, only one may do so + * at a time, and no other threads, read-only or not, may hold the lock at the + * same time. + * + * It is legal for the owning thread to lock an already-locked rwlock for + * reading. It must unlock it the same number of times before it is actually + * made available for other threads in the system (this is known as a + * "recursive rwlock"). + * + * Note that locking for writing is not recursive (this is only available to + * read-only locks). + * + * It is illegal to request a read-only lock from a thread that already holds + * the write lock. Doing so results in undefined behavior. Unlock the write + * lock before requesting a read-only lock. (But, of course, if you have the + * write lock, you don't need further locks to read in any case.) + * + * This function does not fail; if rwlock is NULL, it will return immediately + * having locked nothing. If the rwlock is valid, this function will always + * block until it can lock the mutex, and return with it locked. + * + * \param rwlock the read/write lock to lock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockRWLockForReading(SDL_RWLock *rwlock) SDL_ACQUIRE_SHARED(rwlock); + +/** + * Lock the read/write lock for _write_ operations. + * + * This will block until the rwlock is available, which is to say it is not + * locked for reading or writing by any other thread. Only one thread may hold + * the lock when it requests write access; all other threads, whether they + * also want to write or only want read-only access, must wait until the + * writer thread has released the lock. + * + * It is illegal for the owning thread to lock an already-locked rwlock for + * writing (read-only may be locked recursively, writing can not). Doing so + * results in undefined behavior. + * + * It is illegal to request a write lock from a thread that already holds a + * read-only lock. Doing so results in undefined behavior. Unlock the + * read-only lock before requesting a write lock. + * + * This function does not fail; if rwlock is NULL, it will return immediately + * having locked nothing. If the rwlock is valid, this function will always + * block until it can lock the mutex, and return with it locked. + * + * \param rwlock the read/write lock to lock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockRWLockForWriting(SDL_RWLock *rwlock) SDL_ACQUIRE(rwlock); + +/** + * Try to lock a read/write lock _for reading_ without blocking. + * + * This works just like SDL_LockRWLockForReading(), but if the rwlock is not + * available, then this function returns false immediately. + * + * This technique is useful if you need access to a resource but don't want to + * wait for it, and will return to it to try again later. + * + * Trying to lock for read-only access can succeed if other threads are + * holding read-only locks, as this won't prevent access. + * + * This function returns true if passed a NULL rwlock. + * + * \param rwlock the rwlock to try to lock. + * \returns true on success, false if the lock would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockRWLockForReading(SDL_RWLock *rwlock) SDL_TRY_ACQUIRE_SHARED(0, rwlock); + +/** + * Try to lock a read/write lock _for writing_ without blocking. + * + * This works just like SDL_LockRWLockForWriting(), but if the rwlock is not + * available, then this function returns false immediately. + * + * This technique is useful if you need exclusive access to a resource but + * don't want to wait for it, and will return to it to try again later. + * + * It is illegal for the owning thread to lock an already-locked rwlock for + * writing (read-only may be locked recursively, writing can not). Doing so + * results in undefined behavior. + * + * It is illegal to request a write lock from a thread that already holds a + * read-only lock. Doing so results in undefined behavior. Unlock the + * read-only lock before requesting a write lock. + * + * This function returns true if passed a NULL rwlock. + * + * \param rwlock the rwlock to try to lock. + * \returns true on success, false if the lock would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockRWLockForWriting(SDL_RWLock *rwlock) SDL_TRY_ACQUIRE(0, rwlock); + +/** + * Unlock the read/write lock. + * + * Use this function to unlock the rwlock, whether it was locked for read-only + * or write operations. + * + * It is legal for the owning thread to lock an already-locked read-only lock. + * It must unlock it the same number of times before it is actually made + * available for other threads in the system (this is known as a "recursive + * rwlock"). + * + * It is illegal to unlock a rwlock that has not been locked by the current + * thread, and doing so results in undefined behavior. + * + * \param rwlock the rwlock to unlock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForReading + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockRWLock(SDL_RWLock *rwlock) SDL_RELEASE_GENERIC(rwlock); + +/** + * Destroy a read/write lock created with SDL_CreateRWLock(). + * + * This function must be called on any read/write lock that is no longer + * needed. Failure to destroy a rwlock will result in a system memory or + * resource leak. While it is safe to destroy a rwlock that is _unlocked_, it + * is not safe to attempt to destroy a locked rwlock, and may result in + * undefined behavior depending on the platform. + * + * \param rwlock the rwlock to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRWLock + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyRWLock(SDL_RWLock *rwlock); + +/* @} *//* Read/write lock functions */ + + +/** + * \name Semaphore functions + */ +/* @{ */ + +/** + * A means to manage access to a resource, by count, between threads. + * + * Semaphores (specifically, "counting semaphores"), let X number of threads + * request access at the same time, each thread granted access decrementing a + * counter. When the counter reaches zero, future requests block until a prior + * thread releases their request, incrementing the counter again. + * + * Wikipedia has a thorough explanation of the concept: + * + * https://en.wikipedia.org/wiki/Semaphore_(programming) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Semaphore SDL_Semaphore; + +/** + * Create a semaphore. + * + * This function creates a new semaphore and initializes it with the value + * `initial_value`. Each wait operation on the semaphore will atomically + * decrement the semaphore value and potentially block if the semaphore value + * is 0. Each post operation will atomically increment the semaphore value and + * wake waiting threads and allow them to retry the wait operation. + * + * \param initial_value the starting value of the semaphore. + * \returns a new semaphore or NULL on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySemaphore + * \sa SDL_SignalSemaphore + * \sa SDL_TryWaitSemaphore + * \sa SDL_GetSemaphoreValue + * \sa SDL_WaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC SDL_Semaphore * SDLCALL SDL_CreateSemaphore(Uint32 initial_value); + +/** + * Destroy a semaphore. + * + * It is not safe to destroy a semaphore if there are threads currently + * waiting on it. + * + * \param sem the semaphore to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSemaphore + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroySemaphore(SDL_Semaphore *sem); + +/** + * Wait until a semaphore has a positive value and then decrements it. + * + * This function suspends the calling thread until the semaphore pointed to by + * `sem` has a positive value, and then atomically decrement the semaphore + * value. + * + * This function is the equivalent of calling SDL_WaitSemaphoreTimeout() with + * a time length of -1. + * + * \param sem the semaphore wait on. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalSemaphore + * \sa SDL_TryWaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_WaitSemaphore(SDL_Semaphore *sem); + +/** + * See if a semaphore has a positive value and decrement it if it does. + * + * This function checks to see if the semaphore pointed to by `sem` has a + * positive value and atomically decrements the semaphore value if it does. If + * the semaphore doesn't have a positive value, the function immediately + * returns false. + * + * \param sem the semaphore to wait on. + * \returns true if the wait succeeds, false if the wait would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalSemaphore + * \sa SDL_WaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryWaitSemaphore(SDL_Semaphore *sem); + +/** + * Wait until a semaphore has a positive value and then decrements it. + * + * This function suspends the calling thread until either the semaphore + * pointed to by `sem` has a positive value or the specified time has elapsed. + * If the call is successful it will atomically decrement the semaphore value. + * + * \param sem the semaphore to wait on. + * \param timeoutMS the length of the timeout, in milliseconds, or -1 to wait + * indefinitely. + * \returns true if the wait succeeds or false if the wait times out. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalSemaphore + * \sa SDL_TryWaitSemaphore + * \sa SDL_WaitSemaphore + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitSemaphoreTimeout(SDL_Semaphore *sem, Sint32 timeoutMS); + +/** + * Atomically increment a semaphore's value and wake waiting threads. + * + * \param sem the semaphore to increment. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TryWaitSemaphore + * \sa SDL_WaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_SignalSemaphore(SDL_Semaphore *sem); + +/** + * Get the current value of a semaphore. + * + * \param sem the semaphore to query. + * \returns the current value of the semaphore. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetSemaphoreValue(SDL_Semaphore *sem); + +/* @} *//* Semaphore functions */ + + +/** + * \name Condition variable functions + */ +/* @{ */ + +/** + * A means to block multiple threads until a condition is satisfied. + * + * Condition variables, paired with an SDL_Mutex, let an app halt multiple + * threads until a condition has occurred, at which time the app can release + * one or all waiting threads. + * + * Wikipedia has a thorough explanation of the concept: + * + * https://en.wikipedia.org/wiki/Condition_variable + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Condition SDL_Condition; + +/** + * Create a condition variable. + * + * \returns a new condition variable or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_SignalCondition + * \sa SDL_WaitCondition + * \sa SDL_WaitConditionTimeout + * \sa SDL_DestroyCondition + */ +extern SDL_DECLSPEC SDL_Condition * SDLCALL SDL_CreateCondition(void); + +/** + * Destroy a condition variable. + * + * \param cond the condition variable to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateCondition + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyCondition(SDL_Condition *cond); + +/** + * Restart one of the threads that are waiting on the condition variable. + * + * \param cond the condition variable to signal. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_WaitCondition + * \sa SDL_WaitConditionTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_SignalCondition(SDL_Condition *cond); + +/** + * Restart all threads that are waiting on the condition variable. + * + * \param cond the condition variable to signal. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalCondition + * \sa SDL_WaitCondition + * \sa SDL_WaitConditionTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_BroadcastCondition(SDL_Condition *cond); + +/** + * Wait until a condition variable is signaled. + * + * This function unlocks the specified `mutex` and waits for another thread to + * call SDL_SignalCondition() or SDL_BroadcastCondition() on the condition + * variable `cond`. Once the condition variable is signaled, the mutex is + * re-locked and the function returns. + * + * The mutex must be locked before calling this function. Locking the mutex + * recursively (more than once) is not supported and leads to undefined + * behavior. + * + * This function is the equivalent of calling SDL_WaitConditionTimeout() with + * a time length of -1. + * + * \param cond the condition variable to wait on. + * \param mutex the mutex used to coordinate thread access. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_SignalCondition + * \sa SDL_WaitConditionTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_WaitCondition(SDL_Condition *cond, SDL_Mutex *mutex); + +/** + * Wait until a condition variable is signaled or a certain time has passed. + * + * This function unlocks the specified `mutex` and waits for another thread to + * call SDL_SignalCondition() or SDL_BroadcastCondition() on the condition + * variable `cond`, or for the specified time to elapse. Once the condition + * variable is signaled or the time elapsed, the mutex is re-locked and the + * function returns. + * + * The mutex must be locked before calling this function. Locking the mutex + * recursively (more than once) is not supported and leads to undefined + * behavior. + * + * \param cond the condition variable to wait on. + * \param mutex the mutex used to coordinate thread access. + * \param timeoutMS the maximum time to wait, in milliseconds, or -1 to wait + * indefinitely. + * \returns true if the condition variable is signaled, false if the condition + * is not signaled in the allotted time. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_SignalCondition + * \sa SDL_WaitCondition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitConditionTimeout(SDL_Condition *cond, + SDL_Mutex *mutex, Sint32 timeoutMS); + +/* @} *//* Condition variable functions */ + +/** + * \name Thread-safe initialization state functions + */ +/* @{ */ + +/** + * The current status of an SDL_InitState structure. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_InitStatus +{ + SDL_INIT_STATUS_UNINITIALIZED, + SDL_INIT_STATUS_INITIALIZING, + SDL_INIT_STATUS_INITIALIZED, + SDL_INIT_STATUS_UNINITIALIZING +} SDL_InitStatus; + +/** + * A structure used for thread-safe initialization and shutdown. + * + * Here is an example of using this: + * + * ```c + * static SDL_AtomicInitState init; + * + * bool InitSystem(void) + * { + * if (!SDL_ShouldInit(&init)) { + * // The system is initialized + * return true; + * } + * + * // At this point, you should not leave this function without calling SDL_SetInitialized() + * + * bool initialized = DoInitTasks(); + * SDL_SetInitialized(&init, initialized); + * return initialized; + * } + * + * bool UseSubsystem(void) + * { + * if (SDL_ShouldInit(&init)) { + * // Error, the subsystem isn't initialized + * SDL_SetInitialized(&init, false); + * return false; + * } + * + * // Do work using the initialized subsystem + * + * return true; + * } + * + * void QuitSystem(void) + * { + * if (!SDL_ShouldQuit(&init)) { + * // The system is not initialized + * return; + * } + * + * // At this point, you should not leave this function without calling SDL_SetInitialized() + * + * DoQuitTasks(); + * SDL_SetInitialized(&init, false); + * } + * ``` + * + * Note that this doesn't protect any resources created during initialization, + * or guarantee that nobody is using those resources during cleanup. You + * should use other mechanisms to protect those, if that's a concern for your + * code. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_InitState +{ + SDL_AtomicInt status; + SDL_ThreadID thread; + void *reserved; +} SDL_InitState; + +/** + * Return whether initialization should be done. + * + * This function checks the passed in state and if initialization should be + * done, sets the status to `SDL_INIT_STATUS_INITIALIZING` and returns true. + * If another thread is already modifying this state, it will wait until + * that's done before returning. + * + * If this function returns true, the calling code must call + * SDL_SetInitialized() to complete the initialization. + * + * \param state the initialization state to check. + * \returns true if initialization needs to be done, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetInitialized + * \sa SDL_ShouldQuit + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShouldInit(SDL_InitState *state); + +/** + * Return whether cleanup should be done. + * + * This function checks the passed in state and if cleanup should be done, + * sets the status to `SDL_INIT_STATUS_UNINITIALIZING` and returns true. + * + * If this function returns true, the calling code must call + * SDL_SetInitialized() to complete the cleanup. + * + * \param state the initialization state to check. + * \returns true if cleanup needs to be done, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetInitialized + * \sa SDL_ShouldInit + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShouldQuit(SDL_InitState *state); + +/** + * Finish an initialization state transition. + * + * This function sets the status of the passed in state to + * `SDL_INIT_STATUS_INITIALIZED` or `SDL_INIT_STATUS_UNINITIALIZED` and allows + * any threads waiting for the status to proceed. + * + * \param state the initialization state to check. + * \param initialized the new initialization state. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShouldInit + * \sa SDL_ShouldQuit + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetInitialized(SDL_InitState *state, bool initialized); + +/* @} *//* Thread-safe initialization state functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_mutex_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_oldnames.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_oldnames.h new file mode 100644 index 0000000..c93607e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_oldnames.h @@ -0,0 +1,1327 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * Definitions to ease transition from SDL2 code + */ + +#ifndef SDL_oldnames_h_ +#define SDL_oldnames_h_ + +#include + +/* The new function names are recommended, but if you want to have the + * old names available while you are in the process of migrating code + * to SDL3, you can define `SDL_ENABLE_OLD_NAMES` in your project. + * + * You can use https://github.com/libsdl-org/SDL/blob/main/build-scripts/rename_symbols.py to mass rename the symbols defined here in your codebase: + * rename_symbols.py --all-symbols source_code_path + */ +#ifdef SDL_ENABLE_OLD_NAMES + +/* ##SDL_atomic.h */ +#define SDL_AtomicAdd SDL_AddAtomicInt +#define SDL_AtomicCAS SDL_CompareAndSwapAtomicInt +#define SDL_AtomicCASPtr SDL_CompareAndSwapAtomicPointer +#define SDL_AtomicGet SDL_GetAtomicInt +#define SDL_AtomicGetPtr SDL_GetAtomicPointer +#define SDL_AtomicLock SDL_LockSpinlock +#define SDL_AtomicSet SDL_SetAtomicInt +#define SDL_AtomicSetPtr SDL_SetAtomicPointer +#define SDL_AtomicTryLock SDL_TryLockSpinlock +#define SDL_AtomicUnlock SDL_UnlockSpinlock +#define SDL_atomic_t SDL_AtomicInt + +/* ##SDL_audio.h */ +#define AUDIO_F32 SDL_AUDIO_F32LE +#define AUDIO_F32LSB SDL_AUDIO_F32LE +#define AUDIO_F32MSB SDL_AUDIO_F32BE +#define AUDIO_F32SYS SDL_AUDIO_F32 +#define AUDIO_S16 SDL_AUDIO_S16LE +#define AUDIO_S16LSB SDL_AUDIO_S16LE +#define AUDIO_S16MSB SDL_AUDIO_S16BE +#define AUDIO_S16SYS SDL_AUDIO_S16 +#define AUDIO_S32 SDL_AUDIO_S32LE +#define AUDIO_S32LSB SDL_AUDIO_S32LE +#define AUDIO_S32MSB SDL_AUDIO_S32BE +#define AUDIO_S32SYS SDL_AUDIO_S32 +#define AUDIO_S8 SDL_AUDIO_S8 +#define AUDIO_U8 SDL_AUDIO_U8 +#define SDL_AudioStreamAvailable SDL_GetAudioStreamAvailable +#define SDL_AudioStreamClear SDL_ClearAudioStream +#define SDL_AudioStreamFlush SDL_FlushAudioStream +#define SDL_AudioStreamGet SDL_GetAudioStreamData +#define SDL_AudioStreamPut SDL_PutAudioStreamData +#define SDL_FreeAudioStream SDL_DestroyAudioStream +#define SDL_FreeWAV SDL_free +#define SDL_LoadWAV_RW SDL_LoadWAV_IO +#define SDL_MixAudioFormat SDL_MixAudio +#define SDL_NewAudioStream SDL_CreateAudioStream + +/* ##SDL_cpuinfo.h */ +#define SDL_GetCPUCount SDL_GetNumLogicalCPUCores +#define SDL_SIMDGetAlignment SDL_GetSIMDAlignment + +/* ##SDL_endian.h */ +#define SDL_SwapBE16 SDL_Swap16BE +#define SDL_SwapBE32 SDL_Swap32BE +#define SDL_SwapBE64 SDL_Swap64BE +#define SDL_SwapLE16 SDL_Swap16LE +#define SDL_SwapLE32 SDL_Swap32LE +#define SDL_SwapLE64 SDL_Swap64LE + +/* ##SDL_events.h */ +#define SDL_APP_DIDENTERBACKGROUND SDL_EVENT_DID_ENTER_BACKGROUND +#define SDL_APP_DIDENTERFOREGROUND SDL_EVENT_DID_ENTER_FOREGROUND +#define SDL_APP_LOWMEMORY SDL_EVENT_LOW_MEMORY +#define SDL_APP_TERMINATING SDL_EVENT_TERMINATING +#define SDL_APP_WILLENTERBACKGROUND SDL_EVENT_WILL_ENTER_BACKGROUND +#define SDL_APP_WILLENTERFOREGROUND SDL_EVENT_WILL_ENTER_FOREGROUND +#define SDL_AUDIODEVICEADDED SDL_EVENT_AUDIO_DEVICE_ADDED +#define SDL_AUDIODEVICEREMOVED SDL_EVENT_AUDIO_DEVICE_REMOVED +#define SDL_CLIPBOARDUPDATE SDL_EVENT_CLIPBOARD_UPDATE +#define SDL_CONTROLLERAXISMOTION SDL_EVENT_GAMEPAD_AXIS_MOTION +#define SDL_CONTROLLERBUTTONDOWN SDL_EVENT_GAMEPAD_BUTTON_DOWN +#define SDL_CONTROLLERBUTTONUP SDL_EVENT_GAMEPAD_BUTTON_UP +#define SDL_CONTROLLERDEVICEADDED SDL_EVENT_GAMEPAD_ADDED +#define SDL_CONTROLLERDEVICEREMAPPED SDL_EVENT_GAMEPAD_REMAPPED +#define SDL_CONTROLLERDEVICEREMOVED SDL_EVENT_GAMEPAD_REMOVED +#define SDL_CONTROLLERSENSORUPDATE SDL_EVENT_GAMEPAD_SENSOR_UPDATE +#define SDL_CONTROLLERSTEAMHANDLEUPDATED SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED +#define SDL_CONTROLLERTOUCHPADDOWN SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN +#define SDL_CONTROLLERTOUCHPADMOTION SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION +#define SDL_CONTROLLERTOUCHPADUP SDL_EVENT_GAMEPAD_TOUCHPAD_UP +#define SDL_ControllerAxisEvent SDL_GamepadAxisEvent +#define SDL_ControllerButtonEvent SDL_GamepadButtonEvent +#define SDL_ControllerDeviceEvent SDL_GamepadDeviceEvent +#define SDL_ControllerSensorEvent SDL_GamepadSensorEvent +#define SDL_ControllerTouchpadEvent SDL_GamepadTouchpadEvent +#define SDL_DISPLAYEVENT_CONNECTED SDL_EVENT_DISPLAY_ADDED +#define SDL_DISPLAYEVENT_DISCONNECTED SDL_EVENT_DISPLAY_REMOVED +#define SDL_DISPLAYEVENT_MOVED SDL_EVENT_DISPLAY_MOVED +#define SDL_DISPLAYEVENT_ORIENTATION SDL_EVENT_DISPLAY_ORIENTATION +#define SDL_DROPBEGIN SDL_EVENT_DROP_BEGIN +#define SDL_DROPCOMPLETE SDL_EVENT_DROP_COMPLETE +#define SDL_DROPFILE SDL_EVENT_DROP_FILE +#define SDL_DROPTEXT SDL_EVENT_DROP_TEXT +#define SDL_DelEventWatch SDL_RemoveEventWatch +#define SDL_FINGERDOWN SDL_EVENT_FINGER_DOWN +#define SDL_FINGERMOTION SDL_EVENT_FINGER_MOTION +#define SDL_FINGERUP SDL_EVENT_FINGER_UP +#define SDL_FIRSTEVENT SDL_EVENT_FIRST +#define SDL_JOYAXISMOTION SDL_EVENT_JOYSTICK_AXIS_MOTION +#define SDL_JOYBATTERYUPDATED SDL_EVENT_JOYSTICK_BATTERY_UPDATED +#define SDL_JOYBUTTONDOWN SDL_EVENT_JOYSTICK_BUTTON_DOWN +#define SDL_JOYBUTTONUP SDL_EVENT_JOYSTICK_BUTTON_UP +#define SDL_JOYDEVICEADDED SDL_EVENT_JOYSTICK_ADDED +#define SDL_JOYDEVICEREMOVED SDL_EVENT_JOYSTICK_REMOVED +#define SDL_JOYBALLMOTION SDL_EVENT_JOYSTICK_BALL_MOTION +#define SDL_JOYHATMOTION SDL_EVENT_JOYSTICK_HAT_MOTION +#define SDL_KEYDOWN SDL_EVENT_KEY_DOWN +#define SDL_KEYMAPCHANGED SDL_EVENT_KEYMAP_CHANGED +#define SDL_KEYUP SDL_EVENT_KEY_UP +#define SDL_LASTEVENT SDL_EVENT_LAST +#define SDL_LOCALECHANGED SDL_EVENT_LOCALE_CHANGED +#define SDL_MOUSEBUTTONDOWN SDL_EVENT_MOUSE_BUTTON_DOWN +#define SDL_MOUSEBUTTONUP SDL_EVENT_MOUSE_BUTTON_UP +#define SDL_MOUSEMOTION SDL_EVENT_MOUSE_MOTION +#define SDL_MOUSEWHEEL SDL_EVENT_MOUSE_WHEEL +#define SDL_POLLSENTINEL SDL_EVENT_POLL_SENTINEL +#define SDL_QUIT SDL_EVENT_QUIT +#define SDL_RENDER_DEVICE_RESET SDL_EVENT_RENDER_DEVICE_RESET +#define SDL_RENDER_TARGETS_RESET SDL_EVENT_RENDER_TARGETS_RESET +#define SDL_SENSORUPDATE SDL_EVENT_SENSOR_UPDATE +#define SDL_TEXTEDITING SDL_EVENT_TEXT_EDITING +#define SDL_TEXTEDITING_EXT SDL_EVENT_TEXT_EDITING_EXT +#define SDL_TEXTINPUT SDL_EVENT_TEXT_INPUT +#define SDL_USEREVENT SDL_EVENT_USER +#define SDL_WINDOWEVENT_CLOSE SDL_EVENT_WINDOW_CLOSE_REQUESTED +#define SDL_WINDOWEVENT_DISPLAY_CHANGED SDL_EVENT_WINDOW_DISPLAY_CHANGED +#define SDL_WINDOWEVENT_ENTER SDL_EVENT_WINDOW_MOUSE_ENTER +#define SDL_WINDOWEVENT_EXPOSED SDL_EVENT_WINDOW_EXPOSED +#define SDL_WINDOWEVENT_FOCUS_GAINED SDL_EVENT_WINDOW_FOCUS_GAINED +#define SDL_WINDOWEVENT_FOCUS_LOST SDL_EVENT_WINDOW_FOCUS_LOST +#define SDL_WINDOWEVENT_HIDDEN SDL_EVENT_WINDOW_HIDDEN +#define SDL_WINDOWEVENT_HIT_TEST SDL_EVENT_WINDOW_HIT_TEST +#define SDL_WINDOWEVENT_ICCPROF_CHANGED SDL_EVENT_WINDOW_ICCPROF_CHANGED +#define SDL_WINDOWEVENT_LEAVE SDL_EVENT_WINDOW_MOUSE_LEAVE +#define SDL_WINDOWEVENT_MAXIMIZED SDL_EVENT_WINDOW_MAXIMIZED +#define SDL_WINDOWEVENT_MINIMIZED SDL_EVENT_WINDOW_MINIMIZED +#define SDL_WINDOWEVENT_MOVED SDL_EVENT_WINDOW_MOVED +#define SDL_WINDOWEVENT_RESIZED SDL_EVENT_WINDOW_RESIZED +#define SDL_WINDOWEVENT_RESTORED SDL_EVENT_WINDOW_RESTORED +#define SDL_WINDOWEVENT_SHOWN SDL_EVENT_WINDOW_SHOWN +#define SDL_WINDOWEVENT_SIZE_CHANGED SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED +#define SDL_eventaction SDL_EventAction + +/* ##SDL_gamecontroller.h */ +#define SDL_CONTROLLER_AXIS_INVALID SDL_GAMEPAD_AXIS_INVALID +#define SDL_CONTROLLER_AXIS_LEFTX SDL_GAMEPAD_AXIS_LEFTX +#define SDL_CONTROLLER_AXIS_LEFTY SDL_GAMEPAD_AXIS_LEFTY +#define SDL_CONTROLLER_AXIS_MAX SDL_GAMEPAD_AXIS_COUNT +#define SDL_CONTROLLER_AXIS_RIGHTX SDL_GAMEPAD_AXIS_RIGHTX +#define SDL_CONTROLLER_AXIS_RIGHTY SDL_GAMEPAD_AXIS_RIGHTY +#define SDL_CONTROLLER_AXIS_TRIGGERLEFT SDL_GAMEPAD_AXIS_LEFT_TRIGGER +#define SDL_CONTROLLER_AXIS_TRIGGERRIGHT SDL_GAMEPAD_AXIS_RIGHT_TRIGGER +#define SDL_CONTROLLER_BINDTYPE_AXIS SDL_GAMEPAD_BINDTYPE_AXIS +#define SDL_CONTROLLER_BINDTYPE_BUTTON SDL_GAMEPAD_BINDTYPE_BUTTON +#define SDL_CONTROLLER_BINDTYPE_HAT SDL_GAMEPAD_BINDTYPE_HAT +#define SDL_CONTROLLER_BINDTYPE_NONE SDL_GAMEPAD_BINDTYPE_NONE +#define SDL_CONTROLLER_BUTTON_A SDL_GAMEPAD_BUTTON_SOUTH +#define SDL_CONTROLLER_BUTTON_B SDL_GAMEPAD_BUTTON_EAST +#define SDL_CONTROLLER_BUTTON_BACK SDL_GAMEPAD_BUTTON_BACK +#define SDL_CONTROLLER_BUTTON_DPAD_DOWN SDL_GAMEPAD_BUTTON_DPAD_DOWN +#define SDL_CONTROLLER_BUTTON_DPAD_LEFT SDL_GAMEPAD_BUTTON_DPAD_LEFT +#define SDL_CONTROLLER_BUTTON_DPAD_RIGHT SDL_GAMEPAD_BUTTON_DPAD_RIGHT +#define SDL_CONTROLLER_BUTTON_DPAD_UP SDL_GAMEPAD_BUTTON_DPAD_UP +#define SDL_CONTROLLER_BUTTON_GUIDE SDL_GAMEPAD_BUTTON_GUIDE +#define SDL_CONTROLLER_BUTTON_INVALID SDL_GAMEPAD_BUTTON_INVALID +#define SDL_CONTROLLER_BUTTON_LEFTSHOULDER SDL_GAMEPAD_BUTTON_LEFT_SHOULDER +#define SDL_CONTROLLER_BUTTON_LEFTSTICK SDL_GAMEPAD_BUTTON_LEFT_STICK +#define SDL_CONTROLLER_BUTTON_MAX SDL_GAMEPAD_BUTTON_COUNT +#define SDL_CONTROLLER_BUTTON_MISC1 SDL_GAMEPAD_BUTTON_MISC1 +#define SDL_CONTROLLER_BUTTON_PADDLE1 SDL_GAMEPAD_BUTTON_RIGHT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE2 SDL_GAMEPAD_BUTTON_LEFT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE3 SDL_GAMEPAD_BUTTON_RIGHT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_PADDLE4 SDL_GAMEPAD_BUTTON_LEFT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_RIGHTSHOULDER SDL_GAMEPAD_BUTTON_RIGHT_SHOULDER +#define SDL_CONTROLLER_BUTTON_RIGHTSTICK SDL_GAMEPAD_BUTTON_RIGHT_STICK +#define SDL_CONTROLLER_BUTTON_START SDL_GAMEPAD_BUTTON_START +#define SDL_CONTROLLER_BUTTON_TOUCHPAD SDL_GAMEPAD_BUTTON_TOUCHPAD +#define SDL_CONTROLLER_BUTTON_X SDL_GAMEPAD_BUTTON_WEST +#define SDL_CONTROLLER_BUTTON_Y SDL_GAMEPAD_BUTTON_NORTH +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_LEFT SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_LEFT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_PAIR SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_PAIR +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_PRO +#define SDL_CONTROLLER_TYPE_PS3 SDL_GAMEPAD_TYPE_PS3 +#define SDL_CONTROLLER_TYPE_PS4 SDL_GAMEPAD_TYPE_PS4 +#define SDL_CONTROLLER_TYPE_PS5 SDL_GAMEPAD_TYPE_PS5 +#define SDL_CONTROLLER_TYPE_UNKNOWN SDL_GAMEPAD_TYPE_STANDARD +#define SDL_CONTROLLER_TYPE_VIRTUAL SDL_GAMEPAD_TYPE_VIRTUAL +#define SDL_CONTROLLER_TYPE_XBOX360 SDL_GAMEPAD_TYPE_XBOX360 +#define SDL_CONTROLLER_TYPE_XBOXONE SDL_GAMEPAD_TYPE_XBOXONE +#define SDL_GameController SDL_Gamepad +#define SDL_GameControllerAddMapping SDL_AddGamepadMapping +#define SDL_GameControllerAddMappingsFromFile SDL_AddGamepadMappingsFromFile +#define SDL_GameControllerAddMappingsFromRW SDL_AddGamepadMappingsFromIO +#define SDL_GameControllerAxis SDL_GamepadAxis +#define SDL_GameControllerBindType SDL_GamepadBindingType +#define SDL_GameControllerButton SDL_GamepadButton +#define SDL_GameControllerClose SDL_CloseGamepad +#define SDL_GameControllerFromInstanceID SDL_GetGamepadFromID +#define SDL_GameControllerFromPlayerIndex SDL_GetGamepadFromPlayerIndex +#define SDL_GameControllerGetAppleSFSymbolsNameForAxis SDL_GetGamepadAppleSFSymbolsNameForAxis +#define SDL_GameControllerGetAppleSFSymbolsNameForButton SDL_GetGamepadAppleSFSymbolsNameForButton +#define SDL_GameControllerGetAttached SDL_GamepadConnected +#define SDL_GameControllerGetAxis SDL_GetGamepadAxis +#define SDL_GameControllerGetAxisFromString SDL_GetGamepadAxisFromString +#define SDL_GameControllerGetButton SDL_GetGamepadButton +#define SDL_GameControllerGetButtonFromString SDL_GetGamepadButtonFromString +#define SDL_GameControllerGetFirmwareVersion SDL_GetGamepadFirmwareVersion +#define SDL_GameControllerGetJoystick SDL_GetGamepadJoystick +#define SDL_GameControllerGetNumTouchpadFingers SDL_GetNumGamepadTouchpadFingers +#define SDL_GameControllerGetNumTouchpads SDL_GetNumGamepadTouchpads +#define SDL_GameControllerGetPlayerIndex SDL_GetGamepadPlayerIndex +#define SDL_GameControllerGetProduct SDL_GetGamepadProduct +#define SDL_GameControllerGetProductVersion SDL_GetGamepadProductVersion +#define SDL_GameControllerGetSensorData SDL_GetGamepadSensorData +#define SDL_GameControllerGetSensorDataRate SDL_GetGamepadSensorDataRate +#define SDL_GameControllerGetSerial SDL_GetGamepadSerial +#define SDL_GameControllerGetSteamHandle SDL_GetGamepadSteamHandle +#define SDL_GameControllerGetStringForAxis SDL_GetGamepadStringForAxis +#define SDL_GameControllerGetStringForButton SDL_GetGamepadStringForButton +#define SDL_GameControllerGetTouchpadFinger SDL_GetGamepadTouchpadFinger +#define SDL_GameControllerGetType SDL_GetGamepadType +#define SDL_GameControllerGetVendor SDL_GetGamepadVendor +#define SDL_GameControllerHasAxis SDL_GamepadHasAxis +#define SDL_GameControllerHasButton SDL_GamepadHasButton +#define SDL_GameControllerHasSensor SDL_GamepadHasSensor +#define SDL_GameControllerIsSensorEnabled SDL_GamepadSensorEnabled +#define SDL_GameControllerMapping SDL_GetGamepadMapping +#define SDL_GameControllerMappingForGUID SDL_GetGamepadMappingForGUID +#define SDL_GameControllerName SDL_GetGamepadName +#define SDL_GameControllerOpen SDL_OpenGamepad +#define SDL_GameControllerPath SDL_GetGamepadPath +#define SDL_GameControllerRumble SDL_RumbleGamepad +#define SDL_GameControllerRumbleTriggers SDL_RumbleGamepadTriggers +#define SDL_GameControllerSendEffect SDL_SendGamepadEffect +#define SDL_GameControllerSetLED SDL_SetGamepadLED +#define SDL_GameControllerSetPlayerIndex SDL_SetGamepadPlayerIndex +#define SDL_GameControllerSetSensorEnabled SDL_SetGamepadSensorEnabled +#define SDL_GameControllerType SDL_GamepadType +#define SDL_GameControllerUpdate SDL_UpdateGamepads +#define SDL_INIT_GAMECONTROLLER SDL_INIT_GAMEPAD +#define SDL_IsGameController SDL_IsGamepad + +/* ##SDL_guid.h */ +#define SDL_GUIDFromString SDL_StringToGUID + +/* ##SDL_haptic.h */ +#define SDL_HapticClose SDL_CloseHaptic +#define SDL_HapticDestroyEffect SDL_DestroyHapticEffect +#define SDL_HapticGetEffectStatus SDL_GetHapticEffectStatus +#define SDL_HapticNewEffect SDL_CreateHapticEffect +#define SDL_HapticNumAxes SDL_GetNumHapticAxes +#define SDL_HapticNumEffects SDL_GetMaxHapticEffects +#define SDL_HapticNumEffectsPlaying SDL_GetMaxHapticEffectsPlaying +#define SDL_HapticOpen SDL_OpenHaptic +#define SDL_HapticOpenFromJoystick SDL_OpenHapticFromJoystick +#define SDL_HapticOpenFromMouse SDL_OpenHapticFromMouse +#define SDL_HapticPause SDL_PauseHaptic +#define SDL_HapticQuery SDL_GetHapticFeatures +#define SDL_HapticRumbleInit SDL_InitHapticRumble +#define SDL_HapticRumblePlay SDL_PlayHapticRumble +#define SDL_HapticRumbleStop SDL_StopHapticRumble +#define SDL_HapticRunEffect SDL_RunHapticEffect +#define SDL_HapticSetAutocenter SDL_SetHapticAutocenter +#define SDL_HapticSetGain SDL_SetHapticGain +#define SDL_HapticStopAll SDL_StopHapticEffects +#define SDL_HapticStopEffect SDL_StopHapticEffect +#define SDL_HapticUnpause SDL_ResumeHaptic +#define SDL_HapticUpdateEffect SDL_UpdateHapticEffect +#define SDL_JoystickIsHaptic SDL_IsJoystickHaptic +#define SDL_MouseIsHaptic SDL_IsMouseHaptic + +/* ##SDL_hints.h */ +#define SDL_DelHintCallback SDL_RemoveHintCallback +#define SDL_HINT_ALLOW_TOPMOST SDL_HINT_WINDOW_ALLOW_TOPMOST +#define SDL_HINT_DIRECTINPUT_ENABLED SDL_HINT_JOYSTICK_DIRECTINPUT +#define SDL_HINT_GDK_TEXTINPUT_DEFAULT SDL_HINT_GDK_TEXTINPUT_DEFAULT_TEXT +#define SDL_HINT_JOYSTICK_GAMECUBE_RUMBLE_BRAKE SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE +#define SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_LINUX_DIGITAL_HATS SDL_HINT_JOYSTICK_LINUX_DIGITAL_HATS +#define SDL_HINT_LINUX_HAT_DEADZONES SDL_HINT_JOYSTICK_LINUX_HAT_DEADZONES +#define SDL_HINT_LINUX_JOYSTICK_CLASSIC SDL_HINT_JOYSTICK_LINUX_CLASSIC +#define SDL_HINT_LINUX_JOYSTICK_DEADZONES SDL_HINT_JOYSTICK_LINUX_DEADZONES + +/* ##SDL_joystick.h */ +#define SDL_JOYSTICK_TYPE_GAMECONTROLLER SDL_JOYSTICK_TYPE_GAMEPAD +#define SDL_JoystickAttachVirtualEx SDL_AttachVirtualJoystick +#define SDL_JoystickClose SDL_CloseJoystick +#define SDL_JoystickDetachVirtual SDL_DetachVirtualJoystick +#define SDL_JoystickFromInstanceID SDL_GetJoystickFromID +#define SDL_JoystickFromPlayerIndex SDL_GetJoystickFromPlayerIndex +#define SDL_JoystickGUID SDL_GUID +#define SDL_JoystickGetAttached SDL_JoystickConnected +#define SDL_JoystickGetAxis SDL_GetJoystickAxis +#define SDL_JoystickGetAxisInitialState SDL_GetJoystickAxisInitialState +#define SDL_JoystickGetBall SDL_GetJoystickBall +#define SDL_JoystickGetButton SDL_GetJoystickButton +#define SDL_JoystickGetFirmwareVersion SDL_GetJoystickFirmwareVersion +#define SDL_JoystickGetGUID SDL_GetJoystickGUID +#define SDL_JoystickGetGUIDFromString SDL_StringToGUID +#define SDL_JoystickGetHat SDL_GetJoystickHat +#define SDL_JoystickGetPlayerIndex SDL_GetJoystickPlayerIndex +#define SDL_JoystickGetProduct SDL_GetJoystickProduct +#define SDL_JoystickGetProductVersion SDL_GetJoystickProductVersion +#define SDL_JoystickGetSerial SDL_GetJoystickSerial +#define SDL_JoystickGetType SDL_GetJoystickType +#define SDL_JoystickGetVendor SDL_GetJoystickVendor +#define SDL_JoystickInstanceID SDL_GetJoystickID +#define SDL_JoystickIsVirtual SDL_IsJoystickVirtual +#define SDL_JoystickName SDL_GetJoystickName +#define SDL_JoystickNumAxes SDL_GetNumJoystickAxes +#define SDL_JoystickNumBalls SDL_GetNumJoystickBalls +#define SDL_JoystickNumButtons SDL_GetNumJoystickButtons +#define SDL_JoystickNumHats SDL_GetNumJoystickHats +#define SDL_JoystickOpen SDL_OpenJoystick +#define SDL_JoystickPath SDL_GetJoystickPath +#define SDL_JoystickRumble SDL_RumbleJoystick +#define SDL_JoystickRumbleTriggers SDL_RumbleJoystickTriggers +#define SDL_JoystickSendEffect SDL_SendJoystickEffect +#define SDL_JoystickSetLED SDL_SetJoystickLED +#define SDL_JoystickSetPlayerIndex SDL_SetJoystickPlayerIndex +#define SDL_JoystickSetVirtualAxis SDL_SetJoystickVirtualAxis +#define SDL_JoystickSetVirtualButton SDL_SetJoystickVirtualButton +#define SDL_JoystickSetVirtualHat SDL_SetJoystickVirtualHat +#define SDL_JoystickUpdate SDL_UpdateJoysticks + +/* ##SDL_keyboard.h */ +#define SDL_IsScreenKeyboardShown SDL_ScreenKeyboardShown +#define SDL_IsTextInputActive SDL_TextInputActive + +/* ##SDL_keycode.h */ +#define KMOD_ALT SDL_KMOD_ALT +#define KMOD_CAPS SDL_KMOD_CAPS +#define KMOD_CTRL SDL_KMOD_CTRL +#define KMOD_GUI SDL_KMOD_GUI +#define KMOD_LALT SDL_KMOD_LALT +#define KMOD_LCTRL SDL_KMOD_LCTRL +#define KMOD_LGUI SDL_KMOD_LGUI +#define KMOD_LSHIFT SDL_KMOD_LSHIFT +#define KMOD_MODE SDL_KMOD_MODE +#define KMOD_NONE SDL_KMOD_NONE +#define KMOD_NUM SDL_KMOD_NUM +#define KMOD_RALT SDL_KMOD_RALT +#define KMOD_RCTRL SDL_KMOD_RCTRL +#define KMOD_RGUI SDL_KMOD_RGUI +#define KMOD_RSHIFT SDL_KMOD_RSHIFT +#define KMOD_SCROLL SDL_KMOD_SCROLL +#define KMOD_SHIFT SDL_KMOD_SHIFT +#define SDLK_AUDIOFASTFORWARD SDLK_MEDIA_FAST_FORWARD +#define SDLK_AUDIOMUTE SDLK_MUTE +#define SDLK_AUDIONEXT SDLK_MEDIA_NEXT_TRACK +#define SDLK_AUDIOPLAY SDLK_MEDIA_PLAY +#define SDLK_AUDIOPREV SDLK_MEDIA_PREVIOUS_TRACK +#define SDLK_AUDIOREWIND SDLK_MEDIA_REWIND +#define SDLK_AUDIOSTOP SDLK_MEDIA_STOP +#define SDLK_BACKQUOTE SDLK_GRAVE +#define SDLK_EJECT SDLK_MEDIA_EJECT +#define SDLK_MEDIASELECT SDLK_MEDIA_SELECT +#define SDLK_QUOTE SDLK_APOSTROPHE +#define SDLK_QUOTEDBL SDLK_DBLAPOSTROPHE +#define SDLK_a SDLK_A +#define SDLK_b SDLK_B +#define SDLK_c SDLK_C +#define SDLK_d SDLK_D +#define SDLK_e SDLK_E +#define SDLK_f SDLK_F +#define SDLK_g SDLK_G +#define SDLK_h SDLK_H +#define SDLK_i SDLK_I +#define SDLK_j SDLK_J +#define SDLK_k SDLK_K +#define SDLK_l SDLK_L +#define SDLK_m SDLK_M +#define SDLK_n SDLK_N +#define SDLK_o SDLK_O +#define SDLK_p SDLK_P +#define SDLK_q SDLK_Q +#define SDLK_r SDLK_R +#define SDLK_s SDLK_S +#define SDLK_t SDLK_T +#define SDLK_u SDLK_U +#define SDLK_v SDLK_V +#define SDLK_w SDLK_W +#define SDLK_x SDLK_X +#define SDLK_y SDLK_Y +#define SDLK_z SDLK_Z + +/* ##SDL_log.h */ +#define SDL_LogGetOutputFunction SDL_GetLogOutputFunction +#define SDL_LogGetPriority SDL_GetLogPriority +#define SDL_LogResetPriorities SDL_ResetLogPriorities +#define SDL_LogSetAllPriority SDL_SetLogPriorities +#define SDL_LogSetOutputFunction SDL_SetLogOutputFunction +#define SDL_LogSetPriority SDL_SetLogPriority +#define SDL_NUM_LOG_PRIORITIES SDL_LOG_PRIORITY_COUNT + +/* ##SDL_messagebox.h */ +#define SDL_MESSAGEBOX_COLOR_MAX SDL_MESSAGEBOX_COLOR_COUNT + +/* ##SDL_mouse.h */ +#define SDL_BUTTON SDL_BUTTON_MASK +#define SDL_FreeCursor SDL_DestroyCursor +#define SDL_NUM_SYSTEM_CURSORS SDL_SYSTEM_CURSOR_COUNT +#define SDL_SYSTEM_CURSOR_ARROW SDL_SYSTEM_CURSOR_DEFAULT +#define SDL_SYSTEM_CURSOR_HAND SDL_SYSTEM_CURSOR_POINTER +#define SDL_SYSTEM_CURSOR_IBEAM SDL_SYSTEM_CURSOR_TEXT +#define SDL_SYSTEM_CURSOR_NO SDL_SYSTEM_CURSOR_NOT_ALLOWED +#define SDL_SYSTEM_CURSOR_SIZEALL SDL_SYSTEM_CURSOR_MOVE +#define SDL_SYSTEM_CURSOR_SIZENESW SDL_SYSTEM_CURSOR_NESW_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENS SDL_SYSTEM_CURSOR_NS_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENWSE SDL_SYSTEM_CURSOR_NWSE_RESIZE +#define SDL_SYSTEM_CURSOR_SIZEWE SDL_SYSTEM_CURSOR_EW_RESIZE +#define SDL_SYSTEM_CURSOR_WAITARROW SDL_SYSTEM_CURSOR_PROGRESS +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOM SDL_SYSTEM_CURSOR_S_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMLEFT SDL_SYSTEM_CURSOR_SW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMRIGHT SDL_SYSTEM_CURSOR_SE_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_LEFT SDL_SYSTEM_CURSOR_W_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_RIGHT SDL_SYSTEM_CURSOR_E_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOP SDL_SYSTEM_CURSOR_N_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPLEFT SDL_SYSTEM_CURSOR_NW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPRIGHT SDL_SYSTEM_CURSOR_NE_RESIZE + +/* ##SDL_mutex.h */ +#define SDL_CondBroadcast SDL_BroadcastCondition +#define SDL_CondSignal SDL_SignalCondition +#define SDL_CondWait SDL_WaitCondition +#define SDL_CondWaitTimeout SDL_WaitConditionTimeout +#define SDL_CreateCond SDL_CreateCondition +#define SDL_DestroyCond SDL_DestroyCondition +#define SDL_SemPost SDL_SignalSemaphore +#define SDL_SemTryWait SDL_TryWaitSemaphore +#define SDL_SemValue SDL_GetSemaphoreValue +#define SDL_SemWait SDL_WaitSemaphore +#define SDL_SemWaitTimeout SDL_WaitSemaphoreTimeout + +/* ##SDL_mutex.h */ +#define SDL_cond SDL_Condition +#define SDL_mutex SDL_Mutex +#define SDL_sem SDL_Semaphore + +/* ##SDL_pixels.h */ +#define SDL_AllocFormat SDL_GetPixelFormatDetails +#define SDL_AllocPalette SDL_CreatePalette +#define SDL_Colour SDL_Color +#define SDL_FreePalette SDL_DestroyPalette +#define SDL_MasksToPixelFormatEnum SDL_GetPixelFormatForMasks +#define SDL_PIXELFORMAT_BGR444 SDL_PIXELFORMAT_XBGR4444 +#define SDL_PIXELFORMAT_BGR555 SDL_PIXELFORMAT_XBGR1555 +#define SDL_PIXELFORMAT_BGR888 SDL_PIXELFORMAT_XBGR8888 +#define SDL_PIXELFORMAT_RGB444 SDL_PIXELFORMAT_XRGB4444 +#define SDL_PIXELFORMAT_RGB555 SDL_PIXELFORMAT_XRGB1555 +#define SDL_PIXELFORMAT_RGB888 SDL_PIXELFORMAT_XRGB8888 +#define SDL_PixelFormatEnumToMasks SDL_GetMasksForPixelFormat + +/* ##SDL_rect.h */ +#define SDL_EncloseFPoints SDL_GetRectEnclosingPointsFloat +#define SDL_EnclosePoints SDL_GetRectEnclosingPoints +#define SDL_FRectEmpty SDL_RectEmptyFloat +#define SDL_FRectEquals SDL_RectsEqualFloat +#define SDL_FRectEqualsEpsilon SDL_RectsEqualEpsilon +#define SDL_HasIntersection SDL_HasRectIntersection +#define SDL_HasIntersectionF SDL_HasRectIntersectionFloat +#define SDL_IntersectFRect SDL_GetRectIntersectionFloat +#define SDL_IntersectFRectAndLine SDL_GetRectAndLineIntersectionFloat +#define SDL_IntersectRect SDL_GetRectIntersection +#define SDL_IntersectRectAndLine SDL_GetRectAndLineIntersection +#define SDL_PointInFRect SDL_PointInRectFloat +#define SDL_RectEquals SDL_RectsEqual +#define SDL_UnionFRect SDL_GetRectUnionFloat +#define SDL_UnionRect SDL_GetRectUnion + +/* ##SDL_render.h */ +#define SDL_GetRendererOutputSize SDL_GetCurrentRenderOutputSize +#define SDL_RenderCopy SDL_RenderTexture +#define SDL_RenderCopyEx SDL_RenderTextureRotated +#define SDL_RenderCopyExF SDL_RenderTextureRotated +#define SDL_RenderCopyF SDL_RenderTexture +#define SDL_RenderDrawLine SDL_RenderLine +#define SDL_RenderDrawLineF SDL_RenderLine +#define SDL_RenderDrawLines SDL_RenderLines +#define SDL_RenderDrawLinesF SDL_RenderLines +#define SDL_RenderDrawPoint SDL_RenderPoint +#define SDL_RenderDrawPointF SDL_RenderPoint +#define SDL_RenderDrawPoints SDL_RenderPoints +#define SDL_RenderDrawPointsF SDL_RenderPoints +#define SDL_RenderDrawRect SDL_RenderRect +#define SDL_RenderDrawRectF SDL_RenderRect +#define SDL_RenderDrawRects SDL_RenderRects +#define SDL_RenderDrawRectsF SDL_RenderRects +#define SDL_RenderFillRectF SDL_RenderFillRect +#define SDL_RenderFillRectsF SDL_RenderFillRects +#define SDL_RendererFlip SDL_FlipMode +#define SDL_RenderFlush SDL_FlushRenderer +#define SDL_RenderGetClipRect SDL_GetRenderClipRect +#define SDL_RenderGetLogicalSize SDL_GetRenderLogicalPresentation +#define SDL_RenderGetMetalCommandEncoder SDL_GetRenderMetalCommandEncoder +#define SDL_RenderGetMetalLayer SDL_GetRenderMetalLayer +#define SDL_RenderGetScale SDL_GetRenderScale +#define SDL_RenderGetViewport SDL_GetRenderViewport +#define SDL_RenderGetWindow SDL_GetRenderWindow +#define SDL_RenderIsClipEnabled SDL_RenderClipEnabled +#define SDL_RenderLogicalToWindow SDL_RenderCoordinatesToWindow +#define SDL_RenderSetClipRect SDL_SetRenderClipRect +#define SDL_RenderSetLogicalSize SDL_SetRenderLogicalPresentation +#define SDL_RenderSetScale SDL_SetRenderScale +#define SDL_RenderSetVSync SDL_SetRenderVSync +#define SDL_RenderSetViewport SDL_SetRenderViewport +#define SDL_RenderWindowToLogical SDL_RenderCoordinatesFromWindow +#define SDL_ScaleModeLinear SDL_SCALEMODE_LINEAR +#define SDL_ScaleModeNearest SDL_SCALEMODE_NEAREST + +/* ##SDL_rwops.h */ +#define RW_SEEK_CUR SDL_IO_SEEK_CUR +#define RW_SEEK_END SDL_IO_SEEK_END +#define RW_SEEK_SET SDL_IO_SEEK_SET +#define SDL_RWFromConstMem SDL_IOFromConstMem +#define SDL_RWFromFile SDL_IOFromFile +#define SDL_RWFromMem SDL_IOFromMem +#define SDL_RWclose SDL_CloseIO +#define SDL_RWops SDL_IOStream +#define SDL_RWread SDL_ReadIO +#define SDL_RWseek SDL_SeekIO +#define SDL_RWsize SDL_GetIOSize +#define SDL_RWtell SDL_TellIO +#define SDL_RWwrite SDL_WriteIO +#define SDL_ReadBE16 SDL_ReadU16BE +#define SDL_ReadBE32 SDL_ReadU32BE +#define SDL_ReadBE64 SDL_ReadU64BE +#define SDL_ReadLE16 SDL_ReadU16LE +#define SDL_ReadLE32 SDL_ReadU32LE +#define SDL_ReadLE64 SDL_ReadU64LE +#define SDL_WriteBE16 SDL_WriteU16BE +#define SDL_WriteBE32 SDL_WriteU32BE +#define SDL_WriteBE64 SDL_WriteU64BE +#define SDL_WriteLE16 SDL_WriteU16LE +#define SDL_WriteLE32 SDL_WriteU32LE +#define SDL_WriteLE64 SDL_WriteU64LE + +/* ##SDL_scancode.h */ +#define SDL_NUM_SCANCODES SDL_SCANCODE_COUNT +#define SDL_SCANCODE_AUDIOFASTFORWARD SDL_SCANCODE_MEDIA_FAST_FORWARD +#define SDL_SCANCODE_AUDIOMUTE SDL_SCANCODE_MUTE +#define SDL_SCANCODE_AUDIONEXT SDL_SCANCODE_MEDIA_NEXT_TRACK +#define SDL_SCANCODE_AUDIOPLAY SDL_SCANCODE_MEDIA_PLAY +#define SDL_SCANCODE_AUDIOPREV SDL_SCANCODE_MEDIA_PREVIOUS_TRACK +#define SDL_SCANCODE_AUDIOREWIND SDL_SCANCODE_MEDIA_REWIND +#define SDL_SCANCODE_AUDIOSTOP SDL_SCANCODE_MEDIA_STOP +#define SDL_SCANCODE_EJECT SDL_SCANCODE_MEDIA_EJECT +#define SDL_SCANCODE_MEDIASELECT SDL_SCANCODE_MEDIA_SELECT + +/* ##SDL_sensor.h */ +#define SDL_SensorClose SDL_CloseSensor +#define SDL_SensorFromInstanceID SDL_GetSensorFromID +#define SDL_SensorGetData SDL_GetSensorData +#define SDL_SensorGetInstanceID SDL_GetSensorID +#define SDL_SensorGetName SDL_GetSensorName +#define SDL_SensorGetNonPortableType SDL_GetSensorNonPortableType +#define SDL_SensorGetType SDL_GetSensorType +#define SDL_SensorOpen SDL_OpenSensor +#define SDL_SensorUpdate SDL_UpdateSensors + +/* ##SDL_stdinc.h */ +#define SDL_FALSE false +#define SDL_TABLESIZE SDL_arraysize +#define SDL_TRUE true +#define SDL_bool bool +#define SDL_size_add_overflow SDL_size_add_check_overflow +#define SDL_size_mul_overflow SDL_size_mul_check_overflow +#define SDL_strtokr SDL_strtok_r + +/* ##SDL_surface.h */ +#define SDL_BlitScaled SDL_BlitSurfaceScaled +#define SDL_ConvertSurfaceFormat SDL_ConvertSurface +#define SDL_FillRect SDL_FillSurfaceRect +#define SDL_FillRects SDL_FillSurfaceRects +#define SDL_FreeSurface SDL_DestroySurface +#define SDL_GetClipRect SDL_GetSurfaceClipRect +#define SDL_GetColorKey SDL_GetSurfaceColorKey +#define SDL_HasColorKey SDL_SurfaceHasColorKey +#define SDL_HasSurfaceRLE SDL_SurfaceHasRLE +#define SDL_LoadBMP_RW SDL_LoadBMP_IO +#define SDL_LowerBlit SDL_BlitSurfaceUnchecked +#define SDL_LowerBlitScaled SDL_BlitSurfaceUncheckedScaled +#define SDL_PREALLOC SDL_SURFACE_PREALLOCATED +#define SDL_SIMD_ALIGNED SDL_SURFACE_SIMD_ALIGNED +#define SDL_SaveBMP_RW SDL_SaveBMP_IO +#define SDL_SetClipRect SDL_SetSurfaceClipRect +#define SDL_SetColorKey SDL_SetSurfaceColorKey +#define SDL_UpperBlit SDL_BlitSurface +#define SDL_UpperBlitScaled SDL_BlitSurfaceScaled + +/* ##SDL_system.h */ +#define SDL_AndroidBackButton SDL_SendAndroidBackButton +#define SDL_AndroidGetActivity SDL_GetAndroidActivity +#define SDL_AndroidGetExternalStoragePath SDL_GetAndroidExternalStoragePath +#define SDL_AndroidGetExternalStorageState SDL_GetAndroidExternalStorageState +#define SDL_AndroidGetInternalStoragePath SDL_GetAndroidInternalStoragePath +#define SDL_AndroidGetJNIEnv SDL_GetAndroidJNIEnv +#define SDL_AndroidRequestPermission SDL_RequestAndroidPermission +#define SDL_AndroidRequestPermissionCallback SDL_RequestAndroidPermissionCallback +#define SDL_AndroidSendMessage SDL_SendAndroidMessage +#define SDL_AndroidShowToast SDL_ShowAndroidToast +#define SDL_DXGIGetOutputInfo SDL_GetDXGIOutputInfo +#define SDL_Direct3D9GetAdapterIndex SDL_GetDirect3D9AdapterIndex +#define SDL_GDKGetDefaultUser SDL_GetGDKDefaultUser +#define SDL_GDKGetTaskQueue SDL_GetGDKTaskQueue +#define SDL_LinuxSetThreadPriority SDL_SetLinuxThreadPriority +#define SDL_LinuxSetThreadPriorityAndPolicy SDL_SetLinuxThreadPriorityAndPolicy +#define SDL_OnApplicationDidBecomeActive SDL_OnApplicationDidEnterForeground +#define SDL_OnApplicationWillResignActive SDL_OnApplicationWillEnterBackground +#define SDL_iOSSetAnimationCallback SDL_SetiOSAnimationCallback +#define SDL_iOSSetEventPump SDL_SetiOSEventPump +#define SDL_iPhoneSetAnimationCallback SDL_SetiOSAnimationCallback +#define SDL_iPhoneSetEventPump SDL_SetiOSEventPump + +/* ##SDL_thread.h */ +#define SDL_SetThreadPriority SDL_SetCurrentThreadPriority +#define SDL_TLSCleanup SDL_CleanupTLS +#define SDL_TLSGet SDL_GetTLS +#define SDL_TLSSet SDL_SetTLS +#define SDL_threadID SDL_ThreadID + +/* ##SDL_timer.h */ +#define SDL_GetTicks64 SDL_GetTicks + +/* ##SDL_version.h */ +#define SDL_COMPILEDVERSION SDL_VERSION +#define SDL_PATCHLEVEL SDL_MICRO_VERSION + +/* ##SDL_video.h */ +#define SDL_GL_DeleteContext SDL_GL_DestroyContext +#define SDL_GLattr SDL_GLAttr +#define SDL_GLcontextFlag SDL_GLContextFlag +#define SDL_GLcontextReleaseFlag SDL_GLContextReleaseFlag +#define SDL_GLprofile SDL_GLProfile +#define SDL_GetClosestDisplayMode SDL_GetClosestFullscreenDisplayMode +#define SDL_GetDisplayOrientation SDL_GetCurrentDisplayOrientation +#define SDL_GetPointDisplayIndex SDL_GetDisplayForPoint +#define SDL_GetRectDisplayIndex SDL_GetDisplayForRect +#define SDL_GetWindowDisplayIndex SDL_GetDisplayForWindow +#define SDL_GetWindowDisplayMode SDL_GetWindowFullscreenMode +#define SDL_HasWindowSurface SDL_WindowHasSurface +#define SDL_IsScreenSaverEnabled SDL_ScreenSaverEnabled +#define SDL_SetWindowDisplayMode SDL_SetWindowFullscreenMode +#define SDL_WINDOW_ALLOW_HIGHDPI SDL_WINDOW_HIGH_PIXEL_DENSITY +#define SDL_WINDOW_INPUT_GRABBED SDL_WINDOW_MOUSE_GRABBED +#define SDL_WINDOW_SKIP_TASKBAR SDL_WINDOW_UTILITY + +#elif !defined(SDL_DISABLE_OLD_NAMES) + +/* ##SDL_atomic.h */ +#define SDL_AtomicAdd SDL_AtomicAdd_renamed_SDL_AddAtomicInt +#define SDL_AtomicCAS SDL_AtomicCAS_renamed_SDL_CompareAndSwapAtomicInt +#define SDL_AtomicCASPtr SDL_AtomicCASPtr_renamed_SDL_CompareAndSwapAtomicPointer +#define SDL_AtomicGet SDL_AtomicGet_renamed_SDL_GetAtomicInt +#define SDL_AtomicGetPtr SDL_AtomicGetPtr_renamed_SDL_GetAtomicPointer +#define SDL_AtomicLock SDL_AtomicLock_renamed_SDL_LockSpinlock +#define SDL_AtomicSet SDL_AtomicSet_renamed_SDL_SetAtomicInt +#define SDL_AtomicSetPtr SDL_AtomicSetPtr_renamed_SDL_SetAtomicPointer +#define SDL_AtomicTryLock SDL_AtomicTryLock_renamed_SDL_TryLockSpinlock +#define SDL_AtomicUnlock SDL_AtomicUnlock_renamed_SDL_UnlockSpinlock +#define SDL_atomic_t SDL_atomic_t_renamed_SDL_AtomicInt + +/* ##SDL_audio.h */ +#define AUDIO_F32 AUDIO_F32_renamed_SDL_AUDIO_F32LE +#define AUDIO_F32LSB AUDIO_F32LSB_renamed_SDL_AUDIO_F32LE +#define AUDIO_F32MSB AUDIO_F32MSB_renamed_SDL_AUDIO_F32BE +#define AUDIO_F32SYS AUDIO_F32SYS_renamed_SDL_AUDIO_F32 +#define AUDIO_S16 AUDIO_S16_renamed_SDL_AUDIO_S16LE +#define AUDIO_S16LSB AUDIO_S16LSB_renamed_SDL_AUDIO_S16LE +#define AUDIO_S16MSB AUDIO_S16MSB_renamed_SDL_AUDIO_S16BE +#define AUDIO_S16SYS AUDIO_S16SYS_renamed_SDL_AUDIO_S16 +#define AUDIO_S32 AUDIO_S32_renamed_SDL_AUDIO_S32LE +#define AUDIO_S32LSB AUDIO_S32LSB_renamed_SDL_AUDIO_S32LE +#define AUDIO_S32MSB AUDIO_S32MSB_renamed_SDL_AUDIO_S32BE +#define AUDIO_S32SYS AUDIO_S32SYS_renamed_SDL_AUDIO_S32 +#define AUDIO_S8 AUDIO_S8_renamed_SDL_AUDIO_S8 +#define AUDIO_U8 AUDIO_U8_renamed_SDL_AUDIO_U8 +#define SDL_AudioStreamAvailable SDL_AudioStreamAvailable_renamed_SDL_GetAudioStreamAvailable +#define SDL_AudioStreamClear SDL_AudioStreamClear_renamed_SDL_ClearAudioStream +#define SDL_AudioStreamFlush SDL_AudioStreamFlush_renamed_SDL_FlushAudioStream +#define SDL_AudioStreamGet SDL_AudioStreamGet_renamed_SDL_GetAudioStreamData +#define SDL_AudioStreamPut SDL_AudioStreamPut_renamed_SDL_PutAudioStreamData +#define SDL_FreeAudioStream SDL_FreeAudioStream_renamed_SDL_DestroyAudioStream +#define SDL_FreeWAV SDL_FreeWAV_renamed_SDL_free +#define SDL_LoadWAV_RW SDL_LoadWAV_RW_renamed_SDL_LoadWAV_IO +#define SDL_MixAudioFormat SDL_MixAudioFormat_renamed_SDL_MixAudio +#define SDL_NewAudioStream SDL_NewAudioStream_renamed_SDL_CreateAudioStream + +/* ##SDL_cpuinfo.h */ +#define SDL_GetCPUCount SDL_GetCPUCount_renamed_SDL_GetNumLogicalCPUCores +#define SDL_SIMDGetAlignment SDL_SIMDGetAlignment_renamed_SDL_GetSIMDAlignment + +/* ##SDL_endian.h */ +#define SDL_SwapBE16 SDL_SwapBE16_renamed_SDL_Swap16BE +#define SDL_SwapBE32 SDL_SwapBE32_renamed_SDL_Swap32BE +#define SDL_SwapBE64 SDL_SwapBE64_renamed_SDL_Swap64BE +#define SDL_SwapLE16 SDL_SwapLE16_renamed_SDL_Swap16LE +#define SDL_SwapLE32 SDL_SwapLE32_renamed_SDL_Swap32LE +#define SDL_SwapLE64 SDL_SwapLE64_renamed_SDL_Swap64LE + +/* ##SDL_events.h */ +#define SDL_APP_DIDENTERBACKGROUND SDL_APP_DIDENTERBACKGROUND_renamed_SDL_EVENT_DID_ENTER_BACKGROUND +#define SDL_APP_DIDENTERFOREGROUND SDL_APP_DIDENTERFOREGROUND_renamed_SDL_EVENT_DID_ENTER_FOREGROUND +#define SDL_APP_LOWMEMORY SDL_APP_LOWMEMORY_renamed_SDL_EVENT_LOW_MEMORY +#define SDL_APP_TERMINATING SDL_APP_TERMINATING_renamed_SDL_EVENT_TERMINATING +#define SDL_APP_WILLENTERBACKGROUND SDL_APP_WILLENTERBACKGROUND_renamed_SDL_EVENT_WILL_ENTER_BACKGROUND +#define SDL_APP_WILLENTERFOREGROUND SDL_APP_WILLENTERFOREGROUND_renamed_SDL_EVENT_WILL_ENTER_FOREGROUND +#define SDL_AUDIODEVICEADDED SDL_AUDIODEVICEADDED_renamed_SDL_EVENT_AUDIO_DEVICE_ADDED +#define SDL_AUDIODEVICEREMOVED SDL_AUDIODEVICEREMOVED_renamed_SDL_EVENT_AUDIO_DEVICE_REMOVED +#define SDL_CLIPBOARDUPDATE SDL_CLIPBOARDUPDATE_renamed_SDL_EVENT_CLIPBOARD_UPDATE +#define SDL_CONTROLLERAXISMOTION SDL_CONTROLLERAXISMOTION_renamed_SDL_EVENT_GAMEPAD_AXIS_MOTION +#define SDL_CONTROLLERBUTTONDOWN SDL_CONTROLLERBUTTONDOWN_renamed_SDL_EVENT_GAMEPAD_BUTTON_DOWN +#define SDL_CONTROLLERBUTTONUP SDL_CONTROLLERBUTTONUP_renamed_SDL_EVENT_GAMEPAD_BUTTON_UP +#define SDL_CONTROLLERDEVICEADDED SDL_CONTROLLERDEVICEADDED_renamed_SDL_EVENT_GAMEPAD_ADDED +#define SDL_CONTROLLERDEVICEREMAPPED SDL_CONTROLLERDEVICEREMAPPED_renamed_SDL_EVENT_GAMEPAD_REMAPPED +#define SDL_CONTROLLERDEVICEREMOVED SDL_CONTROLLERDEVICEREMOVED_renamed_SDL_EVENT_GAMEPAD_REMOVED +#define SDL_CONTROLLERSENSORUPDATE SDL_CONTROLLERSENSORUPDATE_renamed_SDL_EVENT_GAMEPAD_SENSOR_UPDATE +#define SDL_CONTROLLERSTEAMHANDLEUPDATED SDL_CONTROLLERSTEAMHANDLEUPDATED_renamed_SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED +#define SDL_CONTROLLERTOUCHPADDOWN SDL_CONTROLLERTOUCHPADDOWN_renamed_SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN +#define SDL_CONTROLLERTOUCHPADMOTION SDL_CONTROLLERTOUCHPADMOTION_renamed_SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION +#define SDL_CONTROLLERTOUCHPADUP SDL_CONTROLLERTOUCHPADUP_renamed_SDL_EVENT_GAMEPAD_TOUCHPAD_UP +#define SDL_ControllerAxisEvent SDL_ControllerAxisEvent_renamed_SDL_GamepadAxisEvent +#define SDL_ControllerButtonEvent SDL_ControllerButtonEvent_renamed_SDL_GamepadButtonEvent +#define SDL_ControllerDeviceEvent SDL_ControllerDeviceEvent_renamed_SDL_GamepadDeviceEvent +#define SDL_ControllerSensorEvent SDL_ControllerSensorEvent_renamed_SDL_GamepadSensorEvent +#define SDL_ControllerTouchpadEvent SDL_ControllerTouchpadEvent_renamed_SDL_GamepadTouchpadEvent +#define SDL_DISPLAYEVENT_CONNECTED SDL_DISPLAYEVENT_CONNECTED_renamed_SDL_EVENT_DISPLAY_ADDED +#define SDL_DISPLAYEVENT_DISCONNECTED SDL_DISPLAYEVENT_DISCONNECTED_renamed_SDL_EVENT_DISPLAY_REMOVED +#define SDL_DISPLAYEVENT_MOVED SDL_DISPLAYEVENT_MOVED_renamed_SDL_EVENT_DISPLAY_MOVED +#define SDL_DISPLAYEVENT_ORIENTATION SDL_DISPLAYEVENT_ORIENTATION_renamed_SDL_EVENT_DISPLAY_ORIENTATION +#define SDL_DROPBEGIN SDL_DROPBEGIN_renamed_SDL_EVENT_DROP_BEGIN +#define SDL_DROPCOMPLETE SDL_DROPCOMPLETE_renamed_SDL_EVENT_DROP_COMPLETE +#define SDL_DROPFILE SDL_DROPFILE_renamed_SDL_EVENT_DROP_FILE +#define SDL_DROPTEXT SDL_DROPTEXT_renamed_SDL_EVENT_DROP_TEXT +#define SDL_DelEventWatch SDL_DelEventWatch_renamed_SDL_RemoveEventWatch +#define SDL_FINGERDOWN SDL_FINGERDOWN_renamed_SDL_EVENT_FINGER_DOWN +#define SDL_FINGERMOTION SDL_FINGERMOTION_renamed_SDL_EVENT_FINGER_MOTION +#define SDL_FINGERUP SDL_FINGERUP_renamed_SDL_EVENT_FINGER_UP +#define SDL_FIRSTEVENT SDL_FIRSTEVENT_renamed_SDL_EVENT_FIRST +#define SDL_JOYAXISMOTION SDL_JOYAXISMOTION_renamed_SDL_EVENT_JOYSTICK_AXIS_MOTION +#define SDL_JOYBATTERYUPDATED SDL_JOYBATTERYUPDATED_renamed_SDL_EVENT_JOYSTICK_BATTERY_UPDATED +#define SDL_JOYBUTTONDOWN SDL_JOYBUTTONDOWN_renamed_SDL_EVENT_JOYSTICK_BUTTON_DOWN +#define SDL_JOYBUTTONUP SDL_JOYBUTTONUP_renamed_SDL_EVENT_JOYSTICK_BUTTON_UP +#define SDL_JOYDEVICEADDED SDL_JOYDEVICEADDED_renamed_SDL_EVENT_JOYSTICK_ADDED +#define SDL_JOYDEVICEREMOVED SDL_JOYDEVICEREMOVED_renamed_SDL_EVENT_JOYSTICK_REMOVED +#define SDL_JOYBALLMOTION SDL_JOYBALLMOTION_renamed_SDL_EVENT_JOYSTICK_BALL_MOTION +#define SDL_JOYHATMOTION SDL_JOYHATMOTION_renamed_SDL_EVENT_JOYSTICK_HAT_MOTION +#define SDL_KEYDOWN SDL_KEYDOWN_renamed_SDL_EVENT_KEY_DOWN +#define SDL_KEYMAPCHANGED SDL_KEYMAPCHANGED_renamed_SDL_EVENT_KEYMAP_CHANGED +#define SDL_KEYUP SDL_KEYUP_renamed_SDL_EVENT_KEY_UP +#define SDL_LASTEVENT SDL_LASTEVENT_renamed_SDL_EVENT_LAST +#define SDL_LOCALECHANGED SDL_LOCALECHANGED_renamed_SDL_EVENT_LOCALE_CHANGED +#define SDL_MOUSEBUTTONDOWN SDL_MOUSEBUTTONDOWN_renamed_SDL_EVENT_MOUSE_BUTTON_DOWN +#define SDL_MOUSEBUTTONUP SDL_MOUSEBUTTONUP_renamed_SDL_EVENT_MOUSE_BUTTON_UP +#define SDL_MOUSEMOTION SDL_MOUSEMOTION_renamed_SDL_EVENT_MOUSE_MOTION +#define SDL_MOUSEWHEEL SDL_MOUSEWHEEL_renamed_SDL_EVENT_MOUSE_WHEEL +#define SDL_POLLSENTINEL SDL_POLLSENTINEL_renamed_SDL_EVENT_POLL_SENTINEL +#define SDL_QUIT SDL_QUIT_renamed_SDL_EVENT_QUIT +#define SDL_RENDER_DEVICE_RESET SDL_RENDER_DEVICE_RESET_renamed_SDL_EVENT_RENDER_DEVICE_RESET +#define SDL_RENDER_TARGETS_RESET SDL_RENDER_TARGETS_RESET_renamed_SDL_EVENT_RENDER_TARGETS_RESET +#define SDL_SENSORUPDATE SDL_SENSORUPDATE_renamed_SDL_EVENT_SENSOR_UPDATE +#define SDL_TEXTEDITING SDL_TEXTEDITING_renamed_SDL_EVENT_TEXT_EDITING +#define SDL_TEXTEDITING_EXT SDL_TEXTEDITING_EXT_renamed_SDL_EVENT_TEXT_EDITING_EXT +#define SDL_TEXTINPUT SDL_TEXTINPUT_renamed_SDL_EVENT_TEXT_INPUT +#define SDL_USEREVENT SDL_USEREVENT_renamed_SDL_EVENT_USER +#define SDL_WINDOWEVENT_CLOSE SDL_WINDOWEVENT_CLOSE_renamed_SDL_EVENT_WINDOW_CLOSE_REQUESTED +#define SDL_WINDOWEVENT_DISPLAY_CHANGED SDL_WINDOWEVENT_DISPLAY_CHANGED_renamed_SDL_EVENT_WINDOW_DISPLAY_CHANGED +#define SDL_WINDOWEVENT_ENTER SDL_WINDOWEVENT_ENTER_renamed_SDL_EVENT_WINDOW_MOUSE_ENTER +#define SDL_WINDOWEVENT_EXPOSED SDL_WINDOWEVENT_EXPOSED_renamed_SDL_EVENT_WINDOW_EXPOSED +#define SDL_WINDOWEVENT_FOCUS_GAINED SDL_WINDOWEVENT_FOCUS_GAINED_renamed_SDL_EVENT_WINDOW_FOCUS_GAINED +#define SDL_WINDOWEVENT_FOCUS_LOST SDL_WINDOWEVENT_FOCUS_LOST_renamed_SDL_EVENT_WINDOW_FOCUS_LOST +#define SDL_WINDOWEVENT_HIDDEN SDL_WINDOWEVENT_HIDDEN_renamed_SDL_EVENT_WINDOW_HIDDEN +#define SDL_WINDOWEVENT_HIT_TEST SDL_WINDOWEVENT_HIT_TEST_renamed_SDL_EVENT_WINDOW_HIT_TEST +#define SDL_WINDOWEVENT_ICCPROF_CHANGED SDL_WINDOWEVENT_ICCPROF_CHANGED_renamed_SDL_EVENT_WINDOW_ICCPROF_CHANGED +#define SDL_WINDOWEVENT_LEAVE SDL_WINDOWEVENT_LEAVE_renamed_SDL_EVENT_WINDOW_MOUSE_LEAVE +#define SDL_WINDOWEVENT_MAXIMIZED SDL_WINDOWEVENT_MAXIMIZED_renamed_SDL_EVENT_WINDOW_MAXIMIZED +#define SDL_WINDOWEVENT_MINIMIZED SDL_WINDOWEVENT_MINIMIZED_renamed_SDL_EVENT_WINDOW_MINIMIZED +#define SDL_WINDOWEVENT_MOVED SDL_WINDOWEVENT_MOVED_renamed_SDL_EVENT_WINDOW_MOVED +#define SDL_WINDOWEVENT_RESIZED SDL_WINDOWEVENT_RESIZED_renamed_SDL_EVENT_WINDOW_RESIZED +#define SDL_WINDOWEVENT_RESTORED SDL_WINDOWEVENT_RESTORED_renamed_SDL_EVENT_WINDOW_RESTORED +#define SDL_WINDOWEVENT_SHOWN SDL_WINDOWEVENT_SHOWN_renamed_SDL_EVENT_WINDOW_SHOWN +#define SDL_WINDOWEVENT_SIZE_CHANGED SDL_WINDOWEVENT_SIZE_CHANGED_renamed_SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED +#define SDL_eventaction SDL_eventaction_renamed_SDL_EventAction + +/* ##SDL_gamecontroller.h */ +#define SDL_CONTROLLER_AXIS_INVALID SDL_CONTROLLER_AXIS_INVALID_renamed_SDL_GAMEPAD_AXIS_INVALID +#define SDL_CONTROLLER_AXIS_LEFTX SDL_CONTROLLER_AXIS_LEFTX_renamed_SDL_GAMEPAD_AXIS_LEFTX +#define SDL_CONTROLLER_AXIS_LEFTY SDL_CONTROLLER_AXIS_LEFTY_renamed_SDL_GAMEPAD_AXIS_LEFTY +#define SDL_CONTROLLER_AXIS_MAX SDL_CONTROLLER_AXIS_MAX_renamed_SDL_GAMEPAD_AXIS_COUNT +#define SDL_CONTROLLER_AXIS_RIGHTX SDL_CONTROLLER_AXIS_RIGHTX_renamed_SDL_GAMEPAD_AXIS_RIGHTX +#define SDL_CONTROLLER_AXIS_RIGHTY SDL_CONTROLLER_AXIS_RIGHTY_renamed_SDL_GAMEPAD_AXIS_RIGHTY +#define SDL_CONTROLLER_AXIS_TRIGGERLEFT SDL_CONTROLLER_AXIS_TRIGGERLEFT_renamed_SDL_GAMEPAD_AXIS_LEFT_TRIGGER +#define SDL_CONTROLLER_AXIS_TRIGGERRIGHT SDL_CONTROLLER_AXIS_TRIGGERRIGHT_renamed_SDL_GAMEPAD_AXIS_RIGHT_TRIGGER +#define SDL_CONTROLLER_BINDTYPE_AXIS SDL_CONTROLLER_BINDTYPE_AXIS_renamed_SDL_GAMEPAD_BINDTYPE_AXIS +#define SDL_CONTROLLER_BINDTYPE_BUTTON SDL_CONTROLLER_BINDTYPE_BUTTON_renamed_SDL_GAMEPAD_BINDTYPE_BUTTON +#define SDL_CONTROLLER_BINDTYPE_HAT SDL_CONTROLLER_BINDTYPE_HAT_renamed_SDL_GAMEPAD_BINDTYPE_HAT +#define SDL_CONTROLLER_BINDTYPE_NONE SDL_CONTROLLER_BINDTYPE_NONE_renamed_SDL_GAMEPAD_BINDTYPE_NONE +#define SDL_CONTROLLER_BUTTON_A SDL_CONTROLLER_BUTTON_A_renamed_SDL_GAMEPAD_BUTTON_SOUTH +#define SDL_CONTROLLER_BUTTON_B SDL_CONTROLLER_BUTTON_B_renamed_SDL_GAMEPAD_BUTTON_EAST +#define SDL_CONTROLLER_BUTTON_BACK SDL_CONTROLLER_BUTTON_BACK_renamed_SDL_GAMEPAD_BUTTON_BACK +#define SDL_CONTROLLER_BUTTON_DPAD_DOWN SDL_CONTROLLER_BUTTON_DPAD_DOWN_renamed_SDL_GAMEPAD_BUTTON_DPAD_DOWN +#define SDL_CONTROLLER_BUTTON_DPAD_LEFT SDL_CONTROLLER_BUTTON_DPAD_LEFT_renamed_SDL_GAMEPAD_BUTTON_DPAD_LEFT +#define SDL_CONTROLLER_BUTTON_DPAD_RIGHT SDL_CONTROLLER_BUTTON_DPAD_RIGHT_renamed_SDL_GAMEPAD_BUTTON_DPAD_RIGHT +#define SDL_CONTROLLER_BUTTON_DPAD_UP SDL_CONTROLLER_BUTTON_DPAD_UP_renamed_SDL_GAMEPAD_BUTTON_DPAD_UP +#define SDL_CONTROLLER_BUTTON_GUIDE SDL_CONTROLLER_BUTTON_GUIDE_renamed_SDL_GAMEPAD_BUTTON_GUIDE +#define SDL_CONTROLLER_BUTTON_INVALID SDL_CONTROLLER_BUTTON_INVALID_renamed_SDL_GAMEPAD_BUTTON_INVALID +#define SDL_CONTROLLER_BUTTON_LEFTSHOULDER SDL_CONTROLLER_BUTTON_LEFTSHOULDER_renamed_SDL_GAMEPAD_BUTTON_LEFT_SHOULDER +#define SDL_CONTROLLER_BUTTON_LEFTSTICK SDL_CONTROLLER_BUTTON_LEFTSTICK_renamed_SDL_GAMEPAD_BUTTON_LEFT_STICK +#define SDL_CONTROLLER_BUTTON_MAX SDL_CONTROLLER_BUTTON_MAX_renamed_SDL_GAMEPAD_BUTTON_COUNT +#define SDL_CONTROLLER_BUTTON_MISC1 SDL_CONTROLLER_BUTTON_MISC1_renamed_SDL_GAMEPAD_BUTTON_MISC1 +#define SDL_CONTROLLER_BUTTON_PADDLE1 SDL_CONTROLLER_BUTTON_PADDLE1_renamed_SDL_GAMEPAD_BUTTON_RIGHT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE2 SDL_CONTROLLER_BUTTON_PADDLE2_renamed_SDL_GAMEPAD_BUTTON_LEFT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE3 SDL_CONTROLLER_BUTTON_PADDLE3_renamed_SDL_GAMEPAD_BUTTON_RIGHT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_PADDLE4 SDL_CONTROLLER_BUTTON_PADDLE4_renamed_SDL_GAMEPAD_BUTTON_LEFT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_RIGHTSHOULDER SDL_CONTROLLER_BUTTON_RIGHTSHOULDER_renamed_SDL_GAMEPAD_BUTTON_RIGHT_SHOULDER +#define SDL_CONTROLLER_BUTTON_RIGHTSTICK SDL_CONTROLLER_BUTTON_RIGHTSTICK_renamed_SDL_GAMEPAD_BUTTON_RIGHT_STICK +#define SDL_CONTROLLER_BUTTON_START SDL_CONTROLLER_BUTTON_START_renamed_SDL_GAMEPAD_BUTTON_START +#define SDL_CONTROLLER_BUTTON_TOUCHPAD SDL_CONTROLLER_BUTTON_TOUCHPAD_renamed_SDL_GAMEPAD_BUTTON_TOUCHPAD +#define SDL_CONTROLLER_BUTTON_X SDL_CONTROLLER_BUTTON_X_renamed_SDL_GAMEPAD_BUTTON_WEST +#define SDL_CONTROLLER_BUTTON_Y SDL_CONTROLLER_BUTTON_Y_renamed_SDL_GAMEPAD_BUTTON_NORTH +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_LEFT SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_LEFT_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_LEFT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_PAIR SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_PAIR_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_PAIR +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_PRO +#define SDL_CONTROLLER_TYPE_PS3 SDL_CONTROLLER_TYPE_PS3_renamed_SDL_GAMEPAD_TYPE_PS3 +#define SDL_CONTROLLER_TYPE_PS4 SDL_CONTROLLER_TYPE_PS4_renamed_SDL_GAMEPAD_TYPE_PS4 +#define SDL_CONTROLLER_TYPE_PS5 SDL_CONTROLLER_TYPE_PS5_renamed_SDL_GAMEPAD_TYPE_PS5 +#define SDL_CONTROLLER_TYPE_UNKNOWN SDL_CONTROLLER_TYPE_UNKNOWN_renamed_SDL_GAMEPAD_TYPE_STANDARD +#define SDL_CONTROLLER_TYPE_VIRTUAL SDL_CONTROLLER_TYPE_VIRTUAL_renamed_SDL_GAMEPAD_TYPE_VIRTUAL +#define SDL_CONTROLLER_TYPE_XBOX360 SDL_CONTROLLER_TYPE_XBOX360_renamed_SDL_GAMEPAD_TYPE_XBOX360 +#define SDL_CONTROLLER_TYPE_XBOXONE SDL_CONTROLLER_TYPE_XBOXONE_renamed_SDL_GAMEPAD_TYPE_XBOXONE +#define SDL_GameController SDL_GameController_renamed_SDL_Gamepad +#define SDL_GameControllerAddMapping SDL_GameControllerAddMapping_renamed_SDL_AddGamepadMapping +#define SDL_GameControllerAddMappingsFromFile SDL_GameControllerAddMappingsFromFile_renamed_SDL_AddGamepadMappingsFromFile +#define SDL_GameControllerAddMappingsFromRW SDL_GameControllerAddMappingsFromRW_renamed_SDL_AddGamepadMappingsFromIO +#define SDL_GameControllerAxis SDL_GameControllerAxis_renamed_SDL_GamepadAxis +#define SDL_GameControllerBindType SDL_GameControllerBindType_renamed_SDL_GamepadBindingType +#define SDL_GameControllerButton SDL_GameControllerButton_renamed_SDL_GamepadButton +#define SDL_GameControllerClose SDL_GameControllerClose_renamed_SDL_CloseGamepad +#define SDL_GameControllerFromInstanceID SDL_GameControllerFromInstanceID_renamed_SDL_GetGamepadFromID +#define SDL_GameControllerFromPlayerIndex SDL_GameControllerFromPlayerIndex_renamed_SDL_GetGamepadFromPlayerIndex +#define SDL_GameControllerGetAppleSFSymbolsNameForAxis SDL_GameControllerGetAppleSFSymbolsNameForAxis_renamed_SDL_GetGamepadAppleSFSymbolsNameForAxis +#define SDL_GameControllerGetAppleSFSymbolsNameForButton SDL_GameControllerGetAppleSFSymbolsNameForButton_renamed_SDL_GetGamepadAppleSFSymbolsNameForButton +#define SDL_GameControllerGetAttached SDL_GameControllerGetAttached_renamed_SDL_GamepadConnected +#define SDL_GameControllerGetAxis SDL_GameControllerGetAxis_renamed_SDL_GetGamepadAxis +#define SDL_GameControllerGetAxisFromString SDL_GameControllerGetAxisFromString_renamed_SDL_GetGamepadAxisFromString +#define SDL_GameControllerGetButton SDL_GameControllerGetButton_renamed_SDL_GetGamepadButton +#define SDL_GameControllerGetButtonFromString SDL_GameControllerGetButtonFromString_renamed_SDL_GetGamepadButtonFromString +#define SDL_GameControllerGetFirmwareVersion SDL_GameControllerGetFirmwareVersion_renamed_SDL_GetGamepadFirmwareVersion +#define SDL_GameControllerGetJoystick SDL_GameControllerGetJoystick_renamed_SDL_GetGamepadJoystick +#define SDL_GameControllerGetNumTouchpadFingers SDL_GameControllerGetNumTouchpadFingers_renamed_SDL_GetNumGamepadTouchpadFingers +#define SDL_GameControllerGetNumTouchpads SDL_GameControllerGetNumTouchpads_renamed_SDL_GetNumGamepadTouchpads +#define SDL_GameControllerGetPlayerIndex SDL_GameControllerGetPlayerIndex_renamed_SDL_GetGamepadPlayerIndex +#define SDL_GameControllerGetProduct SDL_GameControllerGetProduct_renamed_SDL_GetGamepadProduct +#define SDL_GameControllerGetProductVersion SDL_GameControllerGetProductVersion_renamed_SDL_GetGamepadProductVersion +#define SDL_GameControllerGetSensorData SDL_GameControllerGetSensorData_renamed_SDL_GetGamepadSensorData +#define SDL_GameControllerGetSensorDataRate SDL_GameControllerGetSensorDataRate_renamed_SDL_GetGamepadSensorDataRate +#define SDL_GameControllerGetSerial SDL_GameControllerGetSerial_renamed_SDL_GetGamepadSerial +#define SDL_GameControllerGetSteamHandle SDL_GameControllerGetSteamHandle_renamed_SDL_GetGamepadSteamHandle +#define SDL_GameControllerGetStringForAxis SDL_GameControllerGetStringForAxis_renamed_SDL_GetGamepadStringForAxis +#define SDL_GameControllerGetStringForButton SDL_GameControllerGetStringForButton_renamed_SDL_GetGamepadStringForButton +#define SDL_GameControllerGetTouchpadFinger SDL_GameControllerGetTouchpadFinger_renamed_SDL_GetGamepadTouchpadFinger +#define SDL_GameControllerGetType SDL_GameControllerGetType_renamed_SDL_GetGamepadType +#define SDL_GameControllerGetVendor SDL_GameControllerGetVendor_renamed_SDL_GetGamepadVendor +#define SDL_GameControllerHasAxis SDL_GameControllerHasAxis_renamed_SDL_GamepadHasAxis +#define SDL_GameControllerHasButton SDL_GameControllerHasButton_renamed_SDL_GamepadHasButton +#define SDL_GameControllerHasSensor SDL_GameControllerHasSensor_renamed_SDL_GamepadHasSensor +#define SDL_GameControllerIsSensorEnabled SDL_GameControllerIsSensorEnabled_renamed_SDL_GamepadSensorEnabled +#define SDL_GameControllerMapping SDL_GameControllerMapping_renamed_SDL_GetGamepadMapping +#define SDL_GameControllerMappingForDeviceIndex SDL_GameControllerMappingForDeviceIndex_renamed_SDL_GetGamepadMappingForDeviceIndex +#define SDL_GameControllerMappingForGUID SDL_GameControllerMappingForGUID_renamed_SDL_GetGamepadMappingForGUID +#define SDL_GameControllerName SDL_GameControllerName_renamed_SDL_GetGamepadName +#define SDL_GameControllerOpen SDL_GameControllerOpen_renamed_SDL_OpenGamepad +#define SDL_GameControllerPath SDL_GameControllerPath_renamed_SDL_GetGamepadPath +#define SDL_GameControllerRumble SDL_GameControllerRumble_renamed_SDL_RumbleGamepad +#define SDL_GameControllerRumbleTriggers SDL_GameControllerRumbleTriggers_renamed_SDL_RumbleGamepadTriggers +#define SDL_GameControllerSendEffect SDL_GameControllerSendEffect_renamed_SDL_SendGamepadEffect +#define SDL_GameControllerSetLED SDL_GameControllerSetLED_renamed_SDL_SetGamepadLED +#define SDL_GameControllerSetPlayerIndex SDL_GameControllerSetPlayerIndex_renamed_SDL_SetGamepadPlayerIndex +#define SDL_GameControllerSetSensorEnabled SDL_GameControllerSetSensorEnabled_renamed_SDL_SetGamepadSensorEnabled +#define SDL_GameControllerType SDL_GameControllerType_renamed_SDL_GamepadType +#define SDL_GameControllerUpdate SDL_GameControllerUpdate_renamed_SDL_UpdateGamepads +#define SDL_INIT_GAMECONTROLLER SDL_INIT_GAMECONTROLLER_renamed_SDL_INIT_GAMEPAD +#define SDL_IsGameController SDL_IsGameController_renamed_SDL_IsGamepad + +/* ##SDL_guid.h */ +#define SDL_GUIDFromString SDL_GUIDFromString_renamed_SDL_StringToGUID + +/* ##SDL_haptic.h */ +#define SDL_HapticClose SDL_HapticClose_renamed_SDL_CloseHaptic +#define SDL_HapticDestroyEffect SDL_HapticDestroyEffect_renamed_SDL_DestroyHapticEffect +#define SDL_HapticGetEffectStatus SDL_HapticGetEffectStatus_renamed_SDL_GetHapticEffectStatus +#define SDL_HapticNewEffect SDL_HapticNewEffect_renamed_SDL_CreateHapticEffect +#define SDL_HapticNumAxes SDL_HapticNumAxes_renamed_SDL_GetNumHapticAxes +#define SDL_HapticNumEffects SDL_HapticNumEffects_renamed_SDL_GetMaxHapticEffects +#define SDL_HapticNumEffectsPlaying SDL_HapticNumEffectsPlaying_renamed_SDL_GetMaxHapticEffectsPlaying +#define SDL_HapticOpen SDL_HapticOpen_renamed_SDL_OpenHaptic +#define SDL_HapticOpenFromJoystick SDL_HapticOpenFromJoystick_renamed_SDL_OpenHapticFromJoystick +#define SDL_HapticOpenFromMouse SDL_HapticOpenFromMouse_renamed_SDL_OpenHapticFromMouse +#define SDL_HapticPause SDL_HapticPause_renamed_SDL_PauseHaptic +#define SDL_HapticQuery SDL_HapticQuery_renamed_SDL_GetHapticFeatures +#define SDL_HapticRumbleInit SDL_HapticRumbleInit_renamed_SDL_InitHapticRumble +#define SDL_HapticRumblePlay SDL_HapticRumblePlay_renamed_SDL_PlayHapticRumble +#define SDL_HapticRumbleStop SDL_HapticRumbleStop_renamed_SDL_StopHapticRumble +#define SDL_HapticRunEffect SDL_HapticRunEffect_renamed_SDL_RunHapticEffect +#define SDL_HapticSetAutocenter SDL_HapticSetAutocenter_renamed_SDL_SetHapticAutocenter +#define SDL_HapticSetGain SDL_HapticSetGain_renamed_SDL_SetHapticGain +#define SDL_HapticStopAll SDL_HapticStopAll_renamed_SDL_StopHapticEffects +#define SDL_HapticStopEffect SDL_HapticStopEffect_renamed_SDL_StopHapticEffect +#define SDL_HapticUnpause SDL_HapticUnpause_renamed_SDL_ResumeHaptic +#define SDL_HapticUpdateEffect SDL_HapticUpdateEffect_renamed_SDL_UpdateHapticEffect +#define SDL_JoystickIsHaptic SDL_JoystickIsHaptic_renamed_SDL_IsJoystickHaptic +#define SDL_MouseIsHaptic SDL_MouseIsHaptic_renamed_SDL_IsMouseHaptic + +/* ##SDL_hints.h */ +#define SDL_DelHintCallback SDL_DelHintCallback_renamed_SDL_RemoveHintCallback +#define SDL_HINT_ALLOW_TOPMOST SDL_HINT_ALLOW_TOPMOST_renamed_SDL_HINT_WINDOW_ALLOW_TOPMOST +#define SDL_HINT_DIRECTINPUT_ENABLED SDL_HINT_DIRECTINPUT_ENABLED_renamed_SDL_HINT_JOYSTICK_DIRECTINPUT +#define SDL_HINT_GDK_TEXTINPUT_DEFAULT SDL_HINT_GDK_TEXTINPUT_DEFAULT_renamed_SDL_HINT_GDK_TEXTINPUT_DEFAULT_TEXT +#define SDL_HINT_JOYSTICK_GAMECUBE_RUMBLE_BRAKE SDL_HINT_JOYSTICK_GAMECUBE_RUMBLE_BRAKE_renamed_SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE +#define SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE_renamed_SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE_renamed_SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_LINUX_DIGITAL_HATS SDL_HINT_LINUX_DIGITAL_HATS_renamed_SDL_HINT_JOYSTICK_LINUX_DIGITAL_HATS +#define SDL_HINT_LINUX_HAT_DEADZONES SDL_HINT_LINUX_HAT_DEADZONES_renamed_SDL_HINT_JOYSTICK_LINUX_HAT_DEADZONES +#define SDL_HINT_LINUX_JOYSTICK_CLASSIC SDL_HINT_LINUX_JOYSTICK_CLASSIC_renamed_SDL_HINT_JOYSTICK_LINUX_CLASSIC +#define SDL_HINT_LINUX_JOYSTICK_DEADZONES SDL_HINT_LINUX_JOYSTICK_DEADZONES_renamed_SDL_HINT_JOYSTICK_LINUX_DEADZONES + +/* ##SDL_joystick.h */ +#define SDL_JOYSTICK_TYPE_GAMECONTROLLER SDL_JOYSTICK_TYPE_GAMECONTROLLER_renamed_SDL_JOYSTICK_TYPE_GAMEPAD +#define SDL_JoystickAttachVirtualEx SDL_JoystickAttachVirtualEx_renamed_SDL_AttachVirtualJoystick +#define SDL_JoystickClose SDL_JoystickClose_renamed_SDL_CloseJoystick +#define SDL_JoystickDetachVirtual SDL_JoystickDetachVirtual_renamed_SDL_DetachVirtualJoystick +#define SDL_JoystickFromInstanceID SDL_JoystickFromInstanceID_renamed_SDL_GetJoystickFromID +#define SDL_JoystickFromPlayerIndex SDL_JoystickFromPlayerIndex_renamed_SDL_GetJoystickFromPlayerIndex +#define SDL_JoystickGUID SDL_JoystickGUID_renamed_SDL_GUID +#define SDL_JoystickGetAttached SDL_JoystickGetAttached_renamed_SDL_JoystickConnected +#define SDL_JoystickGetAxis SDL_JoystickGetAxis_renamed_SDL_GetJoystickAxis +#define SDL_JoystickGetAxisInitialState SDL_JoystickGetAxisInitialState_renamed_SDL_GetJoystickAxisInitialState +#define SDL_JoystickGetBall SDL_JoystickGetBall_renamed_SDL_GetJoystickBall +#define SDL_JoystickGetButton SDL_JoystickGetButton_renamed_SDL_GetJoystickButton +#define SDL_JoystickGetFirmwareVersion SDL_JoystickGetFirmwareVersion_renamed_SDL_GetJoystickFirmwareVersion +#define SDL_JoystickGetGUID SDL_JoystickGetGUID_renamed_SDL_GetJoystickGUID +#define SDL_JoystickGetGUIDFromString SDL_JoystickGetGUIDFromString_renamed_SDL_GUIDFromString +#define SDL_JoystickGetHat SDL_JoystickGetHat_renamed_SDL_GetJoystickHat +#define SDL_JoystickGetPlayerIndex SDL_JoystickGetPlayerIndex_renamed_SDL_GetJoystickPlayerIndex +#define SDL_JoystickGetProduct SDL_JoystickGetProduct_renamed_SDL_GetJoystickProduct +#define SDL_JoystickGetProductVersion SDL_JoystickGetProductVersion_renamed_SDL_GetJoystickProductVersion +#define SDL_JoystickGetSerial SDL_JoystickGetSerial_renamed_SDL_GetJoystickSerial +#define SDL_JoystickGetType SDL_JoystickGetType_renamed_SDL_GetJoystickType +#define SDL_JoystickGetVendor SDL_JoystickGetVendor_renamed_SDL_GetJoystickVendor +#define SDL_JoystickInstanceID SDL_JoystickInstanceID_renamed_SDL_GetJoystickID +#define SDL_JoystickIsVirtual SDL_JoystickIsVirtual_renamed_SDL_IsJoystickVirtual +#define SDL_JoystickName SDL_JoystickName_renamed_SDL_GetJoystickName +#define SDL_JoystickNumAxes SDL_JoystickNumAxes_renamed_SDL_GetNumJoystickAxes +#define SDL_JoystickNumBalls SDL_JoystickNumBalls_renamed_SDL_GetNumJoystickBalls +#define SDL_JoystickNumButtons SDL_JoystickNumButtons_renamed_SDL_GetNumJoystickButtons +#define SDL_JoystickNumHats SDL_JoystickNumHats_renamed_SDL_GetNumJoystickHats +#define SDL_JoystickOpen SDL_JoystickOpen_renamed_SDL_OpenJoystick +#define SDL_JoystickPath SDL_JoystickPath_renamed_SDL_GetJoystickPath +#define SDL_JoystickRumble SDL_JoystickRumble_renamed_SDL_RumbleJoystick +#define SDL_JoystickRumbleTriggers SDL_JoystickRumbleTriggers_renamed_SDL_RumbleJoystickTriggers +#define SDL_JoystickSendEffect SDL_JoystickSendEffect_renamed_SDL_SendJoystickEffect +#define SDL_JoystickSetLED SDL_JoystickSetLED_renamed_SDL_SetJoystickLED +#define SDL_JoystickSetPlayerIndex SDL_JoystickSetPlayerIndex_renamed_SDL_SetJoystickPlayerIndex +#define SDL_JoystickSetVirtualAxis SDL_JoystickSetVirtualAxis_renamed_SDL_SetJoystickVirtualAxis +#define SDL_JoystickSetVirtualButton SDL_JoystickSetVirtualButton_renamed_SDL_SetJoystickVirtualButton +#define SDL_JoystickSetVirtualHat SDL_JoystickSetVirtualHat_renamed_SDL_SetJoystickVirtualHat +#define SDL_JoystickUpdate SDL_JoystickUpdate_renamed_SDL_UpdateJoysticks + +/* ##SDL_keyboard.h */ +#define SDL_IsScreenKeyboardShown SDL_IsScreenKeyboardShown_renamed_SDL_ScreenKeyboardShown +#define SDL_IsTextInputActive SDL_IsTextInputActive_renamed_SDL_TextInputActive + +/* ##SDL_keycode.h */ +#define KMOD_ALT KMOD_ALT_renamed_SDL_KMOD_ALT +#define KMOD_CAPS KMOD_CAPS_renamed_SDL_KMOD_CAPS +#define KMOD_CTRL KMOD_CTRL_renamed_SDL_KMOD_CTRL +#define KMOD_GUI KMOD_GUI_renamed_SDL_KMOD_GUI +#define KMOD_LALT KMOD_LALT_renamed_SDL_KMOD_LALT +#define KMOD_LCTRL KMOD_LCTRL_renamed_SDL_KMOD_LCTRL +#define KMOD_LGUI KMOD_LGUI_renamed_SDL_KMOD_LGUI +#define KMOD_LSHIFT KMOD_LSHIFT_renamed_SDL_KMOD_LSHIFT +#define KMOD_MODE KMOD_MODE_renamed_SDL_KMOD_MODE +#define KMOD_NONE KMOD_NONE_renamed_SDL_KMOD_NONE +#define KMOD_NUM KMOD_NUM_renamed_SDL_KMOD_NUM +#define KMOD_RALT KMOD_RALT_renamed_SDL_KMOD_RALT +#define KMOD_RCTRL KMOD_RCTRL_renamed_SDL_KMOD_RCTRL +#define KMOD_RGUI KMOD_RGUI_renamed_SDL_KMOD_RGUI +#define KMOD_RSHIFT KMOD_RSHIFT_renamed_SDL_KMOD_RSHIFT +#define KMOD_SCROLL KMOD_SCROLL_renamed_SDL_KMOD_SCROLL +#define KMOD_SHIFT KMOD_SHIFT_renamed_SDL_KMOD_SHIFT +#define SDLK_AUDIOFASTFORWARD SDLK_AUDIOFASTFORWARD_renamed_SDLK_MEDIA_FAST_FORWARD +#define SDLK_AUDIOMUTE SDLK_AUDIOMUTE_renamed_SDLK_MUTE +#define SDLK_AUDIONEXT SDLK_AUDIONEXT_renamed_SDLK_MEDIA_NEXT_TRACK +#define SDLK_AUDIOPLAY SDLK_AUDIOPLAY_renamed_SDLK_MEDIA_PLAY +#define SDLK_AUDIOPREV SDLK_AUDIOPREV_renamed_SDLK_MEDIA_PREVIOUS_TRACK +#define SDLK_AUDIOREWIND SDLK_AUDIOREWIND_renamed_SDLK_MEDIA_REWIND +#define SDLK_AUDIOSTOP SDLK_AUDIOSTOP_renamed_SDLK_MEDIA_STOP +#define SDLK_BACKQUOTE SDLK_BACKQUOTE_renamed_SDLK_GRAVE +#define SDLK_EJECT SDLK_EJECT_renamed_SDLK_MEDIA_EJECT +#define SDLK_MEDIASELECT SDLK_MEDIASELECT_renamed_SDLK_MEDIA_SELECT +#define SDLK_QUOTE SDLK_QUOTE_renamed_SDLK_APOSTROPHE +#define SDLK_QUOTEDBL SDLK_QUOTEDBL_renamed_SDLK_DBLAPOSTROPHE +#define SDLK_a SDLK_a_renamed_SDLK_A +#define SDLK_b SDLK_b_renamed_SDLK_B +#define SDLK_c SDLK_c_renamed_SDLK_C +#define SDLK_d SDLK_d_renamed_SDLK_D +#define SDLK_e SDLK_e_renamed_SDLK_E +#define SDLK_f SDLK_f_renamed_SDLK_F +#define SDLK_g SDLK_g_renamed_SDLK_G +#define SDLK_h SDLK_h_renamed_SDLK_H +#define SDLK_i SDLK_i_renamed_SDLK_I +#define SDLK_j SDLK_j_renamed_SDLK_J +#define SDLK_k SDLK_k_renamed_SDLK_K +#define SDLK_l SDLK_l_renamed_SDLK_L +#define SDLK_m SDLK_m_renamed_SDLK_M +#define SDLK_n SDLK_n_renamed_SDLK_N +#define SDLK_o SDLK_o_renamed_SDLK_O +#define SDLK_p SDLK_p_renamed_SDLK_P +#define SDLK_q SDLK_q_renamed_SDLK_Q +#define SDLK_r SDLK_r_renamed_SDLK_R +#define SDLK_s SDLK_s_renamed_SDLK_S +#define SDLK_t SDLK_t_renamed_SDLK_T +#define SDLK_u SDLK_u_renamed_SDLK_U +#define SDLK_v SDLK_v_renamed_SDLK_V +#define SDLK_w SDLK_w_renamed_SDLK_W +#define SDLK_x SDLK_x_renamed_SDLK_X +#define SDLK_y SDLK_y_renamed_SDLK_Y +#define SDLK_z SDLK_z_renamed_SDLK_Z + +/* ##SDL_log.h */ +#define SDL_LogGetOutputFunction SDL_LogGetOutputFunction_renamed_SDL_GetLogOutputFunction +#define SDL_LogGetPriority SDL_LogGetPriority_renamed_SDL_GetLogPriority +#define SDL_LogResetPriorities SDL_LogResetPriorities_renamed_SDL_ResetLogPriorities +#define SDL_LogSetAllPriority SDL_LogSetAllPriority_renamed_SDL_SetLogPriorities +#define SDL_LogSetOutputFunction SDL_LogSetOutputFunction_renamed_SDL_SetLogOutputFunction +#define SDL_LogSetPriority SDL_LogSetPriority_renamed_SDL_SetLogPriority +#define SDL_NUM_LOG_PRIORITIES SDL_NUM_LOG_PRIORITIES_renamed_SDL_LOG_PRIORITY_COUNT + +/* ##SDL_messagebox.h */ +#define SDL_MESSAGEBOX_COLOR_MAX SDL_MESSAGEBOX_COLOR_MAX_renamed_SDL_MESSAGEBOX_COLOR_COUNT + +/* ##SDL_mouse.h */ +#define SDL_BUTTON SDL_BUTTON_renamed_SDL_BUTTON_MASK +#define SDL_FreeCursor SDL_FreeCursor_renamed_SDL_DestroyCursor +#define SDL_NUM_SYSTEM_CURSORS SDL_NUM_SYSTEM_CURSORS_renamed_SDL_SYSTEM_CURSOR_COUNT +#define SDL_SYSTEM_CURSOR_ARROW SDL_SYSTEM_CURSOR_ARROW_renamed_SDL_SYSTEM_CURSOR_DEFAULT +#define SDL_SYSTEM_CURSOR_HAND SDL_SYSTEM_CURSOR_HAND_renamed_SDL_SYSTEM_CURSOR_POINTER +#define SDL_SYSTEM_CURSOR_IBEAM SDL_SYSTEM_CURSOR_IBEAM_renamed_SDL_SYSTEM_CURSOR_TEXT +#define SDL_SYSTEM_CURSOR_NO SDL_SYSTEM_CURSOR_NO_renamed_SDL_SYSTEM_CURSOR_NOT_ALLOWED +#define SDL_SYSTEM_CURSOR_SIZEALL SDL_SYSTEM_CURSOR_SIZEALL_renamed_SDL_SYSTEM_CURSOR_MOVE +#define SDL_SYSTEM_CURSOR_SIZENESW SDL_SYSTEM_CURSOR_SIZENESW_renamed_SDL_SYSTEM_CURSOR_NESW_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENS SDL_SYSTEM_CURSOR_SIZENS_renamed_SDL_SYSTEM_CURSOR_NS_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENWSE SDL_SYSTEM_CURSOR_SIZENWSE_renamed_SDL_SYSTEM_CURSOR_NWSE_RESIZE +#define SDL_SYSTEM_CURSOR_SIZEWE SDL_SYSTEM_CURSOR_SIZEWE_renamed_SDL_SYSTEM_CURSOR_EW_RESIZE +#define SDL_SYSTEM_CURSOR_WAITARROW SDL_SYSTEM_CURSOR_WAITARROW_renamed_SDL_SYSTEM_CURSOR_PROGRESS +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOM SDL_SYSTEM_CURSOR_WINDOW_BOTTOM_renamed_SDL_SYSTEM_CURSOR_S_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMLEFT SDL_SYSTEM_CURSOR_WINDOW_BOTTOMLEFT_renamed_SDL_SYSTEM_CURSOR_SW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMRIGHT SDL_SYSTEM_CURSOR_WINDOW_BOTTOMRIGHT_renamed_SDL_SYSTEM_CURSOR_SE_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_LEFT SDL_SYSTEM_CURSOR_WINDOW_LEFT_renamed_SDL_SYSTEM_CURSOR_W_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_RIGHT SDL_SYSTEM_CURSOR_WINDOW_RIGHT_renamed_SDL_SYSTEM_CURSOR_E_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOP SDL_SYSTEM_CURSOR_WINDOW_TOP_renamed_SDL_SYSTEM_CURSOR_N_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPLEFT SDL_SYSTEM_CURSOR_WINDOW_TOPLEFT_renamed_SDL_SYSTEM_CURSOR_NW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPRIGHT SDL_SYSTEM_CURSOR_WINDOW_TOPRIGHT_renamed_SDL_SYSTEM_CURSOR_NE_RESIZE + +/* ##SDL_mutex.h */ +#define SDL_CondBroadcast SDL_CondBroadcast_renamed_SDL_BroadcastCondition +#define SDL_CondSignal SDL_CondSignal_renamed_SDL_SignalCondition +#define SDL_CondWait SDL_CondWait_renamed_SDL_WaitCondition +#define SDL_CondWaitTimeout SDL_CondWaitTimeout_renamed_SDL_WaitConditionTimeout +#define SDL_CreateCond SDL_CreateCond_renamed_SDL_CreateCondition +#define SDL_DestroyCond SDL_DestroyCond_renamed_SDL_DestroyCondition +#define SDL_SemPost SDL_SemPost_renamed_SDL_SignalSemaphore +#define SDL_SemTryWait SDL_SemTryWait_renamed_SDL_TryWaitSemaphore +#define SDL_SemValue SDL_SemValue_renamed_SDL_GetSemaphoreValue +#define SDL_SemWait SDL_SemWait_renamed_SDL_WaitSemaphore +#define SDL_SemWaitTimeout SDL_SemWaitTimeout_renamed_SDL_WaitSemaphoreTimeout + +/* ##SDL_mutex.h */ +#define SDL_cond SDL_cond_renamed_SDL_Condition +#define SDL_mutex SDL_mutex_renamed_SDL_Mutex +#define SDL_sem SDL_sem_renamed_SDL_Semaphore + +/* ##SDL_pixels.h */ +#define SDL_AllocFormat SDL_AllocFormat_renamed_SDL_GetPixelFormatDetails +#define SDL_AllocPalette SDL_AllocPalette_renamed_SDL_CreatePalette +#define SDL_Colour SDL_Colour_renamed_SDL_Color +#define SDL_FreePalette SDL_FreePalette_renamed_SDL_DestroyPalette +#define SDL_MasksToPixelFormatEnum SDL_MasksToPixelFormatEnum_renamed_SDL_GetPixelFormatForMasks +#define SDL_PIXELFORMAT_BGR444 SDL_PIXELFORMAT_BGR444_renamed_SDL_PIXELFORMAT_XBGR4444 +#define SDL_PIXELFORMAT_BGR555 SDL_PIXELFORMAT_BGR555_renamed_SDL_PIXELFORMAT_XBGR1555 +#define SDL_PIXELFORMAT_BGR888 SDL_PIXELFORMAT_BGR888_renamed_SDL_PIXELFORMAT_XBGR8888 +#define SDL_PIXELFORMAT_RGB444 SDL_PIXELFORMAT_RGB444_renamed_SDL_PIXELFORMAT_XRGB4444 +#define SDL_PIXELFORMAT_RGB555 SDL_PIXELFORMAT_RGB555_renamed_SDL_PIXELFORMAT_XRGB1555 +#define SDL_PIXELFORMAT_RGB888 SDL_PIXELFORMAT_RGB888_renamed_SDL_PIXELFORMAT_XRGB8888 +#define SDL_PixelFormatEnumToMasks SDL_PixelFormatEnumToMasks_renamed_SDL_GetMasksForPixelFormat + +/* ##SDL_rect.h */ +#define SDL_EncloseFPoints SDL_EncloseFPoints_renamed_SDL_GetRectEnclosingPointsFloat +#define SDL_EnclosePoints SDL_EnclosePoints_renamed_SDL_GetRectEnclosingPoints +#define SDL_FRectEmpty SDL_FRectEmpty_renamed_SDL_RectEmptyFloat +#define SDL_FRectEquals SDL_FRectEquals_renamed_SDL_RectsEqualFloat +#define SDL_FRectEqualsEpsilon SDL_FRectEqualsEpsilon_renamed_SDL_RectsEqualEpsilon +#define SDL_HasIntersection SDL_HasIntersection_renamed_SDL_HasRectIntersection +#define SDL_HasIntersectionF SDL_HasIntersectionF_renamed_SDL_HasRectIntersectionFloat +#define SDL_IntersectFRect SDL_IntersectFRect_renamed_SDL_GetRectIntersectionFloat +#define SDL_IntersectFRectAndLine SDL_IntersectFRectAndLine_renamed_SDL_GetRectAndLineIntersectionFloat +#define SDL_IntersectRect SDL_IntersectRect_renamed_SDL_GetRectIntersection +#define SDL_IntersectRectAndLine SDL_IntersectRectAndLine_renamed_SDL_GetRectAndLineIntersection +#define SDL_PointInFRect SDL_PointInFRect_renamed_SDL_PointInRectFloat +#define SDL_RectEquals SDL_RectEquals_renamed_SDL_RectsEqual +#define SDL_UnionFRect SDL_UnionFRect_renamed_SDL_GetRectUnionFloat +#define SDL_UnionRect SDL_UnionRect_renamed_SDL_GetRectUnion + +/* ##SDL_render.h */ +#define SDL_GetRendererOutputSize SDL_GetRendererOutputSize_renamed_SDL_GetCurrentRenderOutputSize +#define SDL_RenderCopy SDL_RenderCopy_renamed_SDL_RenderTexture +#define SDL_RenderCopyEx SDL_RenderCopyEx_renamed_SDL_RenderTextureRotated +#define SDL_RenderCopyExF SDL_RenderCopyExF_renamed_SDL_RenderTextureRotated +#define SDL_RenderCopyF SDL_RenderCopyF_renamed_SDL_RenderTexture +#define SDL_RenderDrawLine SDL_RenderDrawLine_renamed_SDL_RenderLine +#define SDL_RenderDrawLineF SDL_RenderDrawLineF_renamed_SDL_RenderLine +#define SDL_RenderDrawLines SDL_RenderDrawLines_renamed_SDL_RenderLines +#define SDL_RenderDrawLinesF SDL_RenderDrawLinesF_renamed_SDL_RenderLines +#define SDL_RenderDrawPoint SDL_RenderDrawPoint_renamed_SDL_RenderPoint +#define SDL_RenderDrawPointF SDL_RenderDrawPointF_renamed_SDL_RenderPoint +#define SDL_RenderDrawPoints SDL_RenderDrawPoints_renamed_SDL_RenderPoints +#define SDL_RenderDrawPointsF SDL_RenderDrawPointsF_renamed_SDL_RenderPoints +#define SDL_RenderDrawRect SDL_RenderDrawRect_renamed_SDL_RenderRect +#define SDL_RenderDrawRectF SDL_RenderDrawRectF_renamed_SDL_RenderRect +#define SDL_RenderDrawRects SDL_RenderDrawRects_renamed_SDL_RenderRects +#define SDL_RenderDrawRectsF SDL_RenderDrawRectsF_renamed_SDL_RenderRects +#define SDL_RenderFillRectF SDL_RenderFillRectF_renamed_SDL_RenderFillRect +#define SDL_RenderFillRectsF SDL_RenderFillRectsF_renamed_SDL_RenderFillRects +#define SDL_RendererFlip SDL_RendererFlip_renamed_SDL_FlipMode +#define SDL_RenderFlush SDL_RenderFlush_renamed_SDL_FlushRenderer +#define SDL_RenderGetClipRect SDL_RenderGetClipRect_renamed_SDL_GetRenderClipRect +#define SDL_RenderGetLogicalSize SDL_RenderGetLogicalSize_renamed_SDL_GetRenderLogicalPresentation +#define SDL_RenderGetMetalCommandEncoder SDL_RenderGetMetalCommandEncoder_renamed_SDL_GetRenderMetalCommandEncoder +#define SDL_RenderGetMetalLayer SDL_RenderGetMetalLayer_renamed_SDL_GetRenderMetalLayer +#define SDL_RenderGetScale SDL_RenderGetScale_renamed_SDL_GetRenderScale +#define SDL_RenderGetViewport SDL_RenderGetViewport_renamed_SDL_GetRenderViewport +#define SDL_RenderGetWindow SDL_RenderGetWindow_renamed_SDL_GetRenderWindow +#define SDL_RenderIsClipEnabled SDL_RenderIsClipEnabled_renamed_SDL_RenderClipEnabled +#define SDL_RenderLogicalToWindow SDL_RenderLogicalToWindow_renamed_SDL_RenderCoordinatesToWindow +#define SDL_RenderSetClipRect SDL_RenderSetClipRect_renamed_SDL_SetRenderClipRect +#define SDL_RenderSetLogicalSize SDL_RenderSetLogicalSize_renamed_SDL_SetRenderLogicalPresentation +#define SDL_RenderSetScale SDL_RenderSetScale_renamed_SDL_SetRenderScale +#define SDL_RenderSetVSync SDL_RenderSetVSync_renamed_SDL_SetRenderVSync +#define SDL_RenderSetViewport SDL_RenderSetViewport_renamed_SDL_SetRenderViewport +#define SDL_RenderWindowToLogical SDL_RenderWindowToLogical_renamed_SDL_RenderCoordinatesFromWindow +#define SDL_ScaleModeLinear SDL_ScaleModeLinear_renamed_SDL_SCALEMODE_LINEAR +#define SDL_ScaleModeNearest SDL_ScaleModeNearest_renamed_SDL_SCALEMODE_NEAREST + +/* ##SDL_rwops.h */ +#define RW_SEEK_CUR RW_SEEK_CUR_renamed_SDL_IO_SEEK_CUR +#define RW_SEEK_END RW_SEEK_END_renamed_SDL_IO_SEEK_END +#define RW_SEEK_SET RW_SEEK_SET_renamed_SDL_IO_SEEK_SET +#define SDL_RWFromConstMem SDL_RWFromConstMem_renamed_SDL_IOFromConstMem +#define SDL_RWFromFile SDL_RWFromFile_renamed_SDL_IOFromFile +#define SDL_RWFromMem SDL_RWFromMem_renamed_SDL_IOFromMem +#define SDL_RWclose SDL_RWclose_renamed_SDL_CloseIO +#define SDL_RWops SDL_RWops_renamed_SDL_IOStream +#define SDL_RWread SDL_RWread_renamed_SDL_ReadIO +#define SDL_RWseek SDL_RWseek_renamed_SDL_SeekIO +#define SDL_RWsize SDL_RWsize_renamed_SDL_GetIOSize +#define SDL_RWtell SDL_RWtell_renamed_SDL_TellIO +#define SDL_RWwrite SDL_RWwrite_renamed_SDL_WriteIO +#define SDL_ReadBE16 SDL_ReadBE16_renamed_SDL_ReadU16BE +#define SDL_ReadBE32 SDL_ReadBE32_renamed_SDL_ReadU32BE +#define SDL_ReadBE64 SDL_ReadBE64_renamed_SDL_ReadU64BE +#define SDL_ReadLE16 SDL_ReadLE16_renamed_SDL_ReadU16LE +#define SDL_ReadLE32 SDL_ReadLE32_renamed_SDL_ReadU32LE +#define SDL_ReadLE64 SDL_ReadLE64_renamed_SDL_ReadU64LE +#define SDL_WriteBE16 SDL_WriteBE16_renamed_SDL_WriteU16BE +#define SDL_WriteBE32 SDL_WriteBE32_renamed_SDL_WriteU32BE +#define SDL_WriteBE64 SDL_WriteBE64_renamed_SDL_WriteU64BE +#define SDL_WriteLE16 SDL_WriteLE16_renamed_SDL_WriteU16LE +#define SDL_WriteLE32 SDL_WriteLE32_renamed_SDL_WriteU32LE +#define SDL_WriteLE64 SDL_WriteLE64_renamed_SDL_WriteU64LE + +/* ##SDL_scancode.h */ +#define SDL_NUM_SCANCODES SDL_NUM_SCANCODES_renamed_SDL_SCANCODE_COUNT +#define SDL_SCANCODE_AUDIOFASTFORWARD SDL_SCANCODE_AUDIOFASTFORWARD_renamed_SDL_SCANCODE_MEDIA_FAST_FORWARD +#define SDL_SCANCODE_AUDIOMUTE SDL_SCANCODE_AUDIOMUTE_renamed_SDL_SCANCODE_MUTE +#define SDL_SCANCODE_AUDIONEXT SDL_SCANCODE_AUDIONEXT_renamed_SDL_SCANCODE_MEDIA_NEXT_TRACK +#define SDL_SCANCODE_AUDIOPLAY SDL_SCANCODE_AUDIOPLAY_renamed_SDL_SCANCODE_MEDIA_PLAY +#define SDL_SCANCODE_AUDIOPREV SDL_SCANCODE_AUDIOPREV_renamed_SDL_SCANCODE_MEDIA_PREVIOUS_TRACK +#define SDL_SCANCODE_AUDIOREWIND SDL_SCANCODE_AUDIOREWIND_renamed_SDL_SCANCODE_MEDIA_REWIND +#define SDL_SCANCODE_AUDIOSTOP SDL_SCANCODE_AUDIOSTOP_renamed_SDL_SCANCODE_MEDIA_STOP +#define SDL_SCANCODE_EJECT SDL_SCANCODE_EJECT_renamed_SDL_SCANCODE_MEDIA_EJECT +#define SDL_SCANCODE_MEDIASELECT SDL_SCANCODE_MEDIASELECT_renamed_SDL_SCANCODE_MEDIA_SELECT + +/* ##SDL_sensor.h */ +#define SDL_SensorClose SDL_SensorClose_renamed_SDL_CloseSensor +#define SDL_SensorFromInstanceID SDL_SensorFromInstanceID_renamed_SDL_GetSensorFromID +#define SDL_SensorGetData SDL_SensorGetData_renamed_SDL_GetSensorData +#define SDL_SensorGetInstanceID SDL_SensorGetInstanceID_renamed_SDL_GetSensorID +#define SDL_SensorGetName SDL_SensorGetName_renamed_SDL_GetSensorName +#define SDL_SensorGetNonPortableType SDL_SensorGetNonPortableType_renamed_SDL_GetSensorNonPortableType +#define SDL_SensorGetType SDL_SensorGetType_renamed_SDL_GetSensorType +#define SDL_SensorOpen SDL_SensorOpen_renamed_SDL_OpenSensor +#define SDL_SensorUpdate SDL_SensorUpdate_renamed_SDL_UpdateSensors + +/* ##SDL_stdinc.h */ +#define SDL_FALSE SDL_FALSE_renamed_false +#define SDL_TABLESIZE SDL_TABLESIZE_renamed_SDL_arraysize +#define SDL_TRUE SDL_TRUE_renamed_true +#define SDL_bool SDL_bool_renamed_bool +#define SDL_size_add_overflow SDL_size_add_overflow_renamed_SDL_size_add_check_overflow +#define SDL_size_mul_overflow SDL_size_mul_overflow_renamed_SDL_size_mul_check_overflow +#define SDL_strtokr SDL_strtokr_renamed_SDL_strtok_r + +/* ##SDL_surface.h */ +#define SDL_BlitScaled SDL_BlitScaled_renamed_SDL_BlitSurfaceScaled +#define SDL_ConvertSurfaceFormat SDL_ConvertSurfaceFormat_renamed_SDL_ConvertSurface +#define SDL_FillRect SDL_FillRect_renamed_SDL_FillSurfaceRect +#define SDL_FillRects SDL_FillRects_renamed_SDL_FillSurfaceRects +#define SDL_FreeSurface SDL_FreeSurface_renamed_SDL_DestroySurface +#define SDL_GetClipRect SDL_GetClipRect_renamed_SDL_GetSurfaceClipRect +#define SDL_GetColorKey SDL_GetColorKey_renamed_SDL_GetSurfaceColorKey +#define SDL_HasColorKey SDL_HasColorKey_renamed_SDL_SurfaceHasColorKey +#define SDL_HasSurfaceRLE SDL_HasSurfaceRLE_renamed_SDL_SurfaceHasRLE +#define SDL_LoadBMP_RW SDL_LoadBMP_RW_renamed_SDL_LoadBMP_IO +#define SDL_LowerBlit SDL_LowerBlit_renamed_SDL_BlitSurfaceUnchecked +#define SDL_LowerBlitScaled SDL_LowerBlitScaled_renamed_SDL_BlitSurfaceUncheckedScaled +#define SDL_PREALLOC SDL_PREALLOC_renamed_SDL_SURFACE_PREALLOCATED +#define SDL_SIMD_ALIGNED SDL_SIMD_ALIGNED_renamed_SDL_SURFACE_SIMD_ALIGNED +#define SDL_SaveBMP_RW SDL_SaveBMP_RW_renamed_SDL_SaveBMP_IO +#define SDL_SetClipRect SDL_SetClipRect_renamed_SDL_SetSurfaceClipRect +#define SDL_SetColorKey SDL_SetColorKey_renamed_SDL_SetSurfaceColorKey +#define SDL_UpperBlit SDL_UpperBlit_renamed_SDL_BlitSurface +#define SDL_UpperBlitScaled SDL_UpperBlitScaled_renamed_SDL_BlitSurfaceScaled + +/* ##SDL_system.h */ +#define SDL_AndroidBackButton SDL_AndroidBackButton_renamed_SDL_SendAndroidBackButton +#define SDL_AndroidGetActivity SDL_AndroidGetActivity_renamed_SDL_GetAndroidActivity +#define SDL_AndroidGetExternalStoragePath SDL_AndroidGetExternalStoragePath_renamed_SDL_GetAndroidExternalStoragePath +#define SDL_AndroidGetExternalStorageState SDL_AndroidGetExternalStorageState_renamed_SDL_GetAndroidExternalStorageState +#define SDL_AndroidGetInternalStoragePath SDL_AndroidGetInternalStoragePath_renamed_SDL_GetAndroidInternalStoragePath +#define SDL_AndroidGetJNIEnv SDL_AndroidGetJNIEnv_renamed_SDL_GetAndroidJNIEnv +#define SDL_AndroidRequestPermission SDL_AndroidRequestPermission_renamed_SDL_RequestAndroidPermission +#define SDL_AndroidRequestPermissionCallback SDL_AndroidRequestPermissionCallback_renamed_SDL_RequestAndroidPermissionCallback +#define SDL_AndroidSendMessage SDL_AndroidSendMessage_renamed_SDL_SendAndroidMessage +#define SDL_AndroidShowToast SDL_AndroidShowToast_renamed_SDL_ShowAndroidToast +#define SDL_DXGIGetOutputInfo SDL_DXGIGetOutputInfo_renamed_SDL_GetDXGIOutputInfo +#define SDL_Direct3D9GetAdapterIndex SDL_Direct3D9GetAdapterIndex_renamed_SDL_GetDirect3D9AdapterIndex +#define SDL_GDKGetDefaultUser SDL_GDKGetDefaultUser_renamed_SDL_GetGDKDefaultUser +#define SDL_GDKGetTaskQueue SDL_GDKGetTaskQueue_renamed_SDL_GetGDKTaskQueue +#define SDL_LinuxSetThreadPriority SDL_LinuxSetThreadPriority_renamed_SDL_SetLinuxThreadPriority +#define SDL_LinuxSetThreadPriorityAndPolicy SDL_LinuxSetThreadPriorityAndPolicy_renamed_SDL_SetLinuxThreadPriorityAndPolicy +#define SDL_OnApplicationDidBecomeActive SDL_OnApplicationDidBecomeActive_renamed_SDL_OnApplicationDidEnterForeground +#define SDL_OnApplicationWillResignActive SDL_OnApplicationWillResignActive_renamed_SDL_OnApplicationWillEnterBackground +#define SDL_iOSSetAnimationCallback SDL_iOSSetAnimationCallback_renamed_SDL_SetiOSAnimationCallback +#define SDL_iOSSetEventPump SDL_iOSSetEventPump_renamed_SDL_SetiOSEventPump +#define SDL_iPhoneSetAnimationCallback SDL_iPhoneSetAnimationCallback_renamed_SDL_iOSSetAnimationCallback +#define SDL_iPhoneSetEventPump SDL_iPhoneSetEventPump_renamed_SDL_iOSSetEventPump + +/* ##SDL_thread.h */ +#define SDL_SetThreadPriority SDL_SetThreadPriority_renamed_SDL_SetCurrentThreadPriority +#define SDL_TLSCleanup SDL_TLSCleanup_renamed_SDL_CleanupTLS +#define SDL_TLSGet SDL_TLSGet_renamed_SDL_GetTLS +#define SDL_TLSSet SDL_TLSSet_renamed_SDL_SetTLS +#define SDL_threadID SDL_threadID_renamed_SDL_ThreadID + +/* ##SDL_timer.h */ +#define SDL_GetTicks64 SDL_GetTicks64_renamed_SDL_GetTicks + +/* ##SDL_version.h */ +#define SDL_COMPILEDVERSION SDL_COMPILEDVERSION_renamed_SDL_VERSION +#define SDL_PATCHLEVEL SDL_PATCHLEVEL_renamed_SDL_MICRO_VERSION + +/* ##SDL_video.h */ +#define SDL_GL_DeleteContext SDL_GL_DeleteContext_renamed_SDL_GL_DestroyContext +#define SDL_GLattr SDL_GLattr_renamed_SDL_GLAttr +#define SDL_GLcontextFlag SDL_GLcontextFlag_renamed_SDL_GLContextFlag +#define SDL_GLcontextReleaseFlag SDL_GLcontextReleaseFlag_renamed_SDL_GLContextReleaseFlag +#define SDL_GLprofile SDL_GLprofile_renamed_SDL_GLProfile +#define SDL_GetClosestDisplayMode SDL_GetClosestDisplayMode_renamed_SDL_GetClosestFullscreenDisplayMode +#define SDL_GetDisplayOrientation SDL_GetDisplayOrientation_renamed_SDL_GetCurrentDisplayOrientation +#define SDL_GetPointDisplayIndex SDL_GetPointDisplayIndex_renamed_SDL_GetDisplayForPoint +#define SDL_GetRectDisplayIndex SDL_GetRectDisplayIndex_renamed_SDL_GetDisplayForRect +#define SDL_GetWindowDisplayIndex SDL_GetWindowDisplayIndex_renamed_SDL_GetDisplayForWindow +#define SDL_GetWindowDisplayMode SDL_GetWindowDisplayMode_renamed_SDL_GetWindowFullscreenMode +#define SDL_HasWindowSurface SDL_HasWindowSurface_renamed_SDL_WindowHasSurface +#define SDL_IsScreenSaverEnabled SDL_IsScreenSaverEnabled_renamed_SDL_ScreenSaverEnabled +#define SDL_SetWindowDisplayMode SDL_SetWindowDisplayMode_renamed_SDL_SetWindowFullscreenMode +#define SDL_WINDOW_ALLOW_HIGHDPI SDL_WINDOW_ALLOW_HIGHDPI_renamed_SDL_WINDOW_HIGH_PIXEL_DENSITY +#define SDL_WINDOW_INPUT_GRABBED SDL_WINDOW_INPUT_GRABBED_renamed_SDL_WINDOW_MOUSE_GRABBED +#define SDL_WINDOW_SKIP_TASKBAR SDL_WINDOW_SKIP_TASKBAR_renamed_SDL_WINDOW_UTILITY + +#endif /* SDL_ENABLE_OLD_NAMES */ + +#endif /* SDL_oldnames_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengl.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengl.h new file mode 100644 index 0000000..d1b8b02 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengl.h @@ -0,0 +1,3101 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the OpenGL API headers. + * + * Define NO_SDL_GLEXT if you have your own version of glext.h and want + * to disable the version included in SDL_opengl.h. + */ + +#ifndef SDL_opengl_h_ +#define SDL_opengl_h_ + +#include + +#ifndef SDL_PLATFORM_IOS /* No OpenGL on iOS. */ + +/* + * Mesa 3-D graphics library + * + * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. + * Copyright (C) 2009 VMware, Inc. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + */ + + +#ifndef __gl_h_ +#define __gl_h_ + +#ifdef USE_MGL_NAMESPACE +#include +#endif + + +/********************************************************************** + * Begin system-specific stuff. + */ + +#if defined(_WIN32) && !defined(__CYGWIN__) +# if (defined(_MSC_VER) || defined(__MINGW32__)) && defined(BUILD_GL32) /* tag specify we're building mesa as a DLL */ +# define GLAPI __declspec(dllexport) +# elif (defined(_MSC_VER) || defined(__MINGW32__)) && defined(_DLL) /* tag specifying we're building for DLL runtime support */ +# define GLAPI __declspec(dllimport) +# else /* for use with static link lib build of Win32 edition only */ +# define GLAPI extern +# endif /* _STATIC_MESA support */ +# if defined(__MINGW32__) && defined(GL_NO_STDCALL) || defined(UNDER_CE) /* The generated DLLs by MingW with STDCALL are not compatible with the ones done by Microsoft's compilers */ +# define GLAPIENTRY +# else +# define GLAPIENTRY __stdcall +# endif +#elif defined(__CYGWIN__) && defined(USE_OPENGL32) /* use native windows opengl32 */ +# define GLAPI extern +# define GLAPIENTRY __stdcall +#elif (defined(__GNUC__) && __GNUC__ >= 4) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) +# define GLAPI __attribute__((visibility("default"))) +# define GLAPIENTRY +#endif /* WIN32 && !CYGWIN */ + +/* + * WINDOWS: Include windows.h here to define APIENTRY. + * It is also useful when applications include this file by + * including only glut.h, since glut.h depends on windows.h. + * Applications needing to include windows.h with parms other + * than "WIN32_LEAN_AND_MEAN" may include windows.h before + * glut.h or gl.h. + */ +#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN 1 +#endif +#ifndef NOMINMAX /* don't define min() and max(). */ +#define NOMINMAX +#endif +#include +#endif + +#ifndef GLAPI +#define GLAPI extern +#endif + +#ifndef GLAPIENTRY +#define GLAPIENTRY +#endif + +#ifndef APIENTRY +#define APIENTRY GLAPIENTRY +#endif + +/* "P" suffix to be used for a pointer to a function */ +#ifndef APIENTRYP +#define APIENTRYP APIENTRY * +#endif + +#ifndef GLAPIENTRYP +#define GLAPIENTRYP GLAPIENTRY * +#endif + +#if defined(PRAGMA_EXPORT_SUPPORTED) +#pragma export on +#endif + +/* + * End system-specific stuff. + **********************************************************************/ + + + +#ifdef __cplusplus +extern "C" { +#endif + + + +#define GL_VERSION_1_1 1 +#define GL_VERSION_1_2 1 +#define GL_VERSION_1_3 1 +#define GL_ARB_imaging 1 + + +/* + * Datatypes + */ +typedef unsigned int GLenum; +typedef unsigned char GLboolean; +typedef unsigned int GLbitfield; +typedef void GLvoid; +typedef signed char GLbyte; /* 1-byte signed */ +typedef short GLshort; /* 2-byte signed */ +typedef int GLint; /* 4-byte signed */ +typedef unsigned char GLubyte; /* 1-byte unsigned */ +typedef unsigned short GLushort; /* 2-byte unsigned */ +typedef unsigned int GLuint; /* 4-byte unsigned */ +typedef int GLsizei; /* 4-byte signed */ +typedef float GLfloat; /* single precision float */ +typedef float GLclampf; /* single precision float in [0,1] */ +typedef double GLdouble; /* double precision float */ +typedef double GLclampd; /* double precision float in [0,1] */ + + + +/* + * Constants + */ + +/* Boolean values */ +#define GL_FALSE 0 +#define GL_TRUE 1 + +/* Data types */ +#define GL_BYTE 0x1400 +#define GL_UNSIGNED_BYTE 0x1401 +#define GL_SHORT 0x1402 +#define GL_UNSIGNED_SHORT 0x1403 +#define GL_INT 0x1404 +#define GL_UNSIGNED_INT 0x1405 +#define GL_FLOAT 0x1406 +#define GL_2_BYTES 0x1407 +#define GL_3_BYTES 0x1408 +#define GL_4_BYTES 0x1409 +#define GL_DOUBLE 0x140A + +/* Primitives */ +#define GL_POINTS 0x0000 +#define GL_LINES 0x0001 +#define GL_LINE_LOOP 0x0002 +#define GL_LINE_STRIP 0x0003 +#define GL_TRIANGLES 0x0004 +#define GL_TRIANGLE_STRIP 0x0005 +#define GL_TRIANGLE_FAN 0x0006 +#define GL_QUADS 0x0007 +#define GL_QUAD_STRIP 0x0008 +#define GL_POLYGON 0x0009 + +/* Vertex Arrays */ +#define GL_VERTEX_ARRAY 0x8074 +#define GL_NORMAL_ARRAY 0x8075 +#define GL_COLOR_ARRAY 0x8076 +#define GL_INDEX_ARRAY 0x8077 +#define GL_TEXTURE_COORD_ARRAY 0x8078 +#define GL_EDGE_FLAG_ARRAY 0x8079 +#define GL_VERTEX_ARRAY_SIZE 0x807A +#define GL_VERTEX_ARRAY_TYPE 0x807B +#define GL_VERTEX_ARRAY_STRIDE 0x807C +#define GL_NORMAL_ARRAY_TYPE 0x807E +#define GL_NORMAL_ARRAY_STRIDE 0x807F +#define GL_COLOR_ARRAY_SIZE 0x8081 +#define GL_COLOR_ARRAY_TYPE 0x8082 +#define GL_COLOR_ARRAY_STRIDE 0x8083 +#define GL_INDEX_ARRAY_TYPE 0x8085 +#define GL_INDEX_ARRAY_STRIDE 0x8086 +#define GL_TEXTURE_COORD_ARRAY_SIZE 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE 0x808A +#define GL_EDGE_FLAG_ARRAY_STRIDE 0x808C +#define GL_VERTEX_ARRAY_POINTER 0x808E +#define GL_NORMAL_ARRAY_POINTER 0x808F +#define GL_COLOR_ARRAY_POINTER 0x8090 +#define GL_INDEX_ARRAY_POINTER 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER 0x8093 +#define GL_V2F 0x2A20 +#define GL_V3F 0x2A21 +#define GL_C4UB_V2F 0x2A22 +#define GL_C4UB_V3F 0x2A23 +#define GL_C3F_V3F 0x2A24 +#define GL_N3F_V3F 0x2A25 +#define GL_C4F_N3F_V3F 0x2A26 +#define GL_T2F_V3F 0x2A27 +#define GL_T4F_V4F 0x2A28 +#define GL_T2F_C4UB_V3F 0x2A29 +#define GL_T2F_C3F_V3F 0x2A2A +#define GL_T2F_N3F_V3F 0x2A2B +#define GL_T2F_C4F_N3F_V3F 0x2A2C +#define GL_T4F_C4F_N3F_V4F 0x2A2D + +/* Matrix Mode */ +#define GL_MATRIX_MODE 0x0BA0 +#define GL_MODELVIEW 0x1700 +#define GL_PROJECTION 0x1701 +#define GL_TEXTURE 0x1702 + +/* Points */ +#define GL_POINT_SMOOTH 0x0B10 +#define GL_POINT_SIZE 0x0B11 +#define GL_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_POINT_SIZE_RANGE 0x0B12 + +/* Lines */ +#define GL_LINE_SMOOTH 0x0B20 +#define GL_LINE_STIPPLE 0x0B24 +#define GL_LINE_STIPPLE_PATTERN 0x0B25 +#define GL_LINE_STIPPLE_REPEAT 0x0B26 +#define GL_LINE_WIDTH 0x0B21 +#define GL_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_LINE_WIDTH_RANGE 0x0B22 + +/* Polygons */ +#define GL_POINT 0x1B00 +#define GL_LINE 0x1B01 +#define GL_FILL 0x1B02 +#define GL_CW 0x0900 +#define GL_CCW 0x0901 +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_POLYGON_MODE 0x0B40 +#define GL_POLYGON_SMOOTH 0x0B41 +#define GL_POLYGON_STIPPLE 0x0B42 +#define GL_EDGE_FLAG 0x0B43 +#define GL_CULL_FACE 0x0B44 +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_POLYGON_OFFSET_UNITS 0x2A00 +#define GL_POLYGON_OFFSET_POINT 0x2A01 +#define GL_POLYGON_OFFSET_LINE 0x2A02 +#define GL_POLYGON_OFFSET_FILL 0x8037 + +/* Display Lists */ +#define GL_COMPILE 0x1300 +#define GL_COMPILE_AND_EXECUTE 0x1301 +#define GL_LIST_BASE 0x0B32 +#define GL_LIST_INDEX 0x0B33 +#define GL_LIST_MODE 0x0B30 + +/* Depth buffer */ +#define GL_NEVER 0x0200 +#define GL_LESS 0x0201 +#define GL_EQUAL 0x0202 +#define GL_LEQUAL 0x0203 +#define GL_GREATER 0x0204 +#define GL_NOTEQUAL 0x0205 +#define GL_GEQUAL 0x0206 +#define GL_ALWAYS 0x0207 +#define GL_DEPTH_TEST 0x0B71 +#define GL_DEPTH_BITS 0x0D56 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_COMPONENT 0x1902 + +/* Lighting */ +#define GL_LIGHTING 0x0B50 +#define GL_LIGHT0 0x4000 +#define GL_LIGHT1 0x4001 +#define GL_LIGHT2 0x4002 +#define GL_LIGHT3 0x4003 +#define GL_LIGHT4 0x4004 +#define GL_LIGHT5 0x4005 +#define GL_LIGHT6 0x4006 +#define GL_LIGHT7 0x4007 +#define GL_SPOT_EXPONENT 0x1205 +#define GL_SPOT_CUTOFF 0x1206 +#define GL_CONSTANT_ATTENUATION 0x1207 +#define GL_LINEAR_ATTENUATION 0x1208 +#define GL_QUADRATIC_ATTENUATION 0x1209 +#define GL_AMBIENT 0x1200 +#define GL_DIFFUSE 0x1201 +#define GL_SPECULAR 0x1202 +#define GL_SHININESS 0x1601 +#define GL_EMISSION 0x1600 +#define GL_POSITION 0x1203 +#define GL_SPOT_DIRECTION 0x1204 +#define GL_AMBIENT_AND_DIFFUSE 0x1602 +#define GL_COLOR_INDEXES 0x1603 +#define GL_LIGHT_MODEL_TWO_SIDE 0x0B52 +#define GL_LIGHT_MODEL_LOCAL_VIEWER 0x0B51 +#define GL_LIGHT_MODEL_AMBIENT 0x0B53 +#define GL_FRONT_AND_BACK 0x0408 +#define GL_SHADE_MODEL 0x0B54 +#define GL_FLAT 0x1D00 +#define GL_SMOOTH 0x1D01 +#define GL_COLOR_MATERIAL 0x0B57 +#define GL_COLOR_MATERIAL_FACE 0x0B55 +#define GL_COLOR_MATERIAL_PARAMETER 0x0B56 +#define GL_NORMALIZE 0x0BA1 + +/* User clipping planes */ +#define GL_CLIP_PLANE0 0x3000 +#define GL_CLIP_PLANE1 0x3001 +#define GL_CLIP_PLANE2 0x3002 +#define GL_CLIP_PLANE3 0x3003 +#define GL_CLIP_PLANE4 0x3004 +#define GL_CLIP_PLANE5 0x3005 + +/* Accumulation buffer */ +#define GL_ACCUM_RED_BITS 0x0D58 +#define GL_ACCUM_GREEN_BITS 0x0D59 +#define GL_ACCUM_BLUE_BITS 0x0D5A +#define GL_ACCUM_ALPHA_BITS 0x0D5B +#define GL_ACCUM_CLEAR_VALUE 0x0B80 +#define GL_ACCUM 0x0100 +#define GL_ADD 0x0104 +#define GL_LOAD 0x0101 +#define GL_MULT 0x0103 +#define GL_RETURN 0x0102 + +/* Alpha testing */ +#define GL_ALPHA_TEST 0x0BC0 +#define GL_ALPHA_TEST_REF 0x0BC2 +#define GL_ALPHA_TEST_FUNC 0x0BC1 + +/* Blending */ +#define GL_BLEND 0x0BE2 +#define GL_BLEND_SRC 0x0BE1 +#define GL_BLEND_DST 0x0BE0 +#define GL_ZERO 0 +#define GL_ONE 1 +#define GL_SRC_COLOR 0x0300 +#define GL_ONE_MINUS_SRC_COLOR 0x0301 +#define GL_SRC_ALPHA 0x0302 +#define GL_ONE_MINUS_SRC_ALPHA 0x0303 +#define GL_DST_ALPHA 0x0304 +#define GL_ONE_MINUS_DST_ALPHA 0x0305 +#define GL_DST_COLOR 0x0306 +#define GL_ONE_MINUS_DST_COLOR 0x0307 +#define GL_SRC_ALPHA_SATURATE 0x0308 + +/* Render Mode */ +#define GL_FEEDBACK 0x1C01 +#define GL_RENDER 0x1C00 +#define GL_SELECT 0x1C02 + +/* Feedback */ +#define GL_2D 0x0600 +#define GL_3D 0x0601 +#define GL_3D_COLOR 0x0602 +#define GL_3D_COLOR_TEXTURE 0x0603 +#define GL_4D_COLOR_TEXTURE 0x0604 +#define GL_POINT_TOKEN 0x0701 +#define GL_LINE_TOKEN 0x0702 +#define GL_LINE_RESET_TOKEN 0x0707 +#define GL_POLYGON_TOKEN 0x0703 +#define GL_BITMAP_TOKEN 0x0704 +#define GL_DRAW_PIXEL_TOKEN 0x0705 +#define GL_COPY_PIXEL_TOKEN 0x0706 +#define GL_PASS_THROUGH_TOKEN 0x0700 +#define GL_FEEDBACK_BUFFER_POINTER 0x0DF0 +#define GL_FEEDBACK_BUFFER_SIZE 0x0DF1 +#define GL_FEEDBACK_BUFFER_TYPE 0x0DF2 + +/* Selection */ +#define GL_SELECTION_BUFFER_POINTER 0x0DF3 +#define GL_SELECTION_BUFFER_SIZE 0x0DF4 + +/* Fog */ +#define GL_FOG 0x0B60 +#define GL_FOG_MODE 0x0B65 +#define GL_FOG_DENSITY 0x0B62 +#define GL_FOG_COLOR 0x0B66 +#define GL_FOG_INDEX 0x0B61 +#define GL_FOG_START 0x0B63 +#define GL_FOG_END 0x0B64 +#define GL_LINEAR 0x2601 +#define GL_EXP 0x0800 +#define GL_EXP2 0x0801 + +/* Logic Ops */ +#define GL_LOGIC_OP 0x0BF1 +#define GL_INDEX_LOGIC_OP 0x0BF1 +#define GL_COLOR_LOGIC_OP 0x0BF2 +#define GL_LOGIC_OP_MODE 0x0BF0 +#define GL_CLEAR 0x1500 +#define GL_SET 0x150F +#define GL_COPY 0x1503 +#define GL_COPY_INVERTED 0x150C +#define GL_NOOP 0x1505 +#define GL_INVERT 0x150A +#define GL_AND 0x1501 +#define GL_NAND 0x150E +#define GL_OR 0x1507 +#define GL_NOR 0x1508 +#define GL_XOR 0x1506 +#define GL_EQUIV 0x1509 +#define GL_AND_REVERSE 0x1502 +#define GL_AND_INVERTED 0x1504 +#define GL_OR_REVERSE 0x150B +#define GL_OR_INVERTED 0x150D + +/* Stencil */ +#define GL_STENCIL_BITS 0x0D57 +#define GL_STENCIL_TEST 0x0B90 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#define GL_STENCIL_VALUE_MASK 0x0B93 +#define GL_STENCIL_FAIL 0x0B94 +#define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 +#define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 +#define GL_STENCIL_REF 0x0B97 +#define GL_STENCIL_WRITEMASK 0x0B98 +#define GL_STENCIL_INDEX 0x1901 +#define GL_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 + +/* Buffers, Pixel Drawing/Reading */ +#define GL_NONE 0 +#define GL_LEFT 0x0406 +#define GL_RIGHT 0x0407 +/*GL_FRONT 0x0404 */ +/*GL_BACK 0x0405 */ +/*GL_FRONT_AND_BACK 0x0408 */ +#define GL_FRONT_LEFT 0x0400 +#define GL_FRONT_RIGHT 0x0401 +#define GL_BACK_LEFT 0x0402 +#define GL_BACK_RIGHT 0x0403 +#define GL_AUX0 0x0409 +#define GL_AUX1 0x040A +#define GL_AUX2 0x040B +#define GL_AUX3 0x040C +#define GL_COLOR_INDEX 0x1900 +#define GL_RED 0x1903 +#define GL_GREEN 0x1904 +#define GL_BLUE 0x1905 +#define GL_ALPHA 0x1906 +#define GL_LUMINANCE 0x1909 +#define GL_LUMINANCE_ALPHA 0x190A +#define GL_ALPHA_BITS 0x0D55 +#define GL_RED_BITS 0x0D52 +#define GL_GREEN_BITS 0x0D53 +#define GL_BLUE_BITS 0x0D54 +#define GL_INDEX_BITS 0x0D51 +#define GL_SUBPIXEL_BITS 0x0D50 +#define GL_AUX_BUFFERS 0x0C00 +#define GL_READ_BUFFER 0x0C02 +#define GL_DRAW_BUFFER 0x0C01 +#define GL_DOUBLEBUFFER 0x0C32 +#define GL_STEREO 0x0C33 +#define GL_BITMAP 0x1A00 +#define GL_COLOR 0x1800 +#define GL_DEPTH 0x1801 +#define GL_STENCIL 0x1802 +#define GL_DITHER 0x0BD0 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 + +/* Implementation limits */ +#define GL_MAX_LIST_NESTING 0x0B31 +#define GL_MAX_EVAL_ORDER 0x0D30 +#define GL_MAX_LIGHTS 0x0D31 +#define GL_MAX_CLIP_PLANES 0x0D32 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_PIXEL_MAP_TABLE 0x0D34 +#define GL_MAX_ATTRIB_STACK_DEPTH 0x0D35 +#define GL_MAX_MODELVIEW_STACK_DEPTH 0x0D36 +#define GL_MAX_NAME_STACK_DEPTH 0x0D37 +#define GL_MAX_PROJECTION_STACK_DEPTH 0x0D38 +#define GL_MAX_TEXTURE_STACK_DEPTH 0x0D39 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_MAX_CLIENT_ATTRIB_STACK_DEPTH 0x0D3B + +/* Gets */ +#define GL_ATTRIB_STACK_DEPTH 0x0BB0 +#define GL_CLIENT_ATTRIB_STACK_DEPTH 0x0BB1 +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_CURRENT_INDEX 0x0B01 +#define GL_CURRENT_COLOR 0x0B00 +#define GL_CURRENT_NORMAL 0x0B02 +#define GL_CURRENT_RASTER_COLOR 0x0B04 +#define GL_CURRENT_RASTER_DISTANCE 0x0B09 +#define GL_CURRENT_RASTER_INDEX 0x0B05 +#define GL_CURRENT_RASTER_POSITION 0x0B07 +#define GL_CURRENT_RASTER_TEXTURE_COORDS 0x0B06 +#define GL_CURRENT_RASTER_POSITION_VALID 0x0B08 +#define GL_CURRENT_TEXTURE_COORDS 0x0B03 +#define GL_INDEX_CLEAR_VALUE 0x0C20 +#define GL_INDEX_MODE 0x0C30 +#define GL_INDEX_WRITEMASK 0x0C21 +#define GL_MODELVIEW_MATRIX 0x0BA6 +#define GL_MODELVIEW_STACK_DEPTH 0x0BA3 +#define GL_NAME_STACK_DEPTH 0x0D70 +#define GL_PROJECTION_MATRIX 0x0BA7 +#define GL_PROJECTION_STACK_DEPTH 0x0BA4 +#define GL_RENDER_MODE 0x0C40 +#define GL_RGBA_MODE 0x0C31 +#define GL_TEXTURE_MATRIX 0x0BA8 +#define GL_TEXTURE_STACK_DEPTH 0x0BA5 +#define GL_VIEWPORT 0x0BA2 + +/* Evaluators */ +#define GL_AUTO_NORMAL 0x0D80 +#define GL_MAP1_COLOR_4 0x0D90 +#define GL_MAP1_INDEX 0x0D91 +#define GL_MAP1_NORMAL 0x0D92 +#define GL_MAP1_TEXTURE_COORD_1 0x0D93 +#define GL_MAP1_TEXTURE_COORD_2 0x0D94 +#define GL_MAP1_TEXTURE_COORD_3 0x0D95 +#define GL_MAP1_TEXTURE_COORD_4 0x0D96 +#define GL_MAP1_VERTEX_3 0x0D97 +#define GL_MAP1_VERTEX_4 0x0D98 +#define GL_MAP2_COLOR_4 0x0DB0 +#define GL_MAP2_INDEX 0x0DB1 +#define GL_MAP2_NORMAL 0x0DB2 +#define GL_MAP2_TEXTURE_COORD_1 0x0DB3 +#define GL_MAP2_TEXTURE_COORD_2 0x0DB4 +#define GL_MAP2_TEXTURE_COORD_3 0x0DB5 +#define GL_MAP2_TEXTURE_COORD_4 0x0DB6 +#define GL_MAP2_VERTEX_3 0x0DB7 +#define GL_MAP2_VERTEX_4 0x0DB8 +#define GL_MAP1_GRID_DOMAIN 0x0DD0 +#define GL_MAP1_GRID_SEGMENTS 0x0DD1 +#define GL_MAP2_GRID_DOMAIN 0x0DD2 +#define GL_MAP2_GRID_SEGMENTS 0x0DD3 +#define GL_COEFF 0x0A00 +#define GL_ORDER 0x0A01 +#define GL_DOMAIN 0x0A02 + +/* Hints */ +#define GL_PERSPECTIVE_CORRECTION_HINT 0x0C50 +#define GL_POINT_SMOOTH_HINT 0x0C51 +#define GL_LINE_SMOOTH_HINT 0x0C52 +#define GL_POLYGON_SMOOTH_HINT 0x0C53 +#define GL_FOG_HINT 0x0C54 +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 + +/* Scissor box */ +#define GL_SCISSOR_BOX 0x0C10 +#define GL_SCISSOR_TEST 0x0C11 + +/* Pixel Mode / Transfer */ +#define GL_MAP_COLOR 0x0D10 +#define GL_MAP_STENCIL 0x0D11 +#define GL_INDEX_SHIFT 0x0D12 +#define GL_INDEX_OFFSET 0x0D13 +#define GL_RED_SCALE 0x0D14 +#define GL_RED_BIAS 0x0D15 +#define GL_GREEN_SCALE 0x0D18 +#define GL_GREEN_BIAS 0x0D19 +#define GL_BLUE_SCALE 0x0D1A +#define GL_BLUE_BIAS 0x0D1B +#define GL_ALPHA_SCALE 0x0D1C +#define GL_ALPHA_BIAS 0x0D1D +#define GL_DEPTH_SCALE 0x0D1E +#define GL_DEPTH_BIAS 0x0D1F +#define GL_PIXEL_MAP_S_TO_S_SIZE 0x0CB1 +#define GL_PIXEL_MAP_I_TO_I_SIZE 0x0CB0 +#define GL_PIXEL_MAP_I_TO_R_SIZE 0x0CB2 +#define GL_PIXEL_MAP_I_TO_G_SIZE 0x0CB3 +#define GL_PIXEL_MAP_I_TO_B_SIZE 0x0CB4 +#define GL_PIXEL_MAP_I_TO_A_SIZE 0x0CB5 +#define GL_PIXEL_MAP_R_TO_R_SIZE 0x0CB6 +#define GL_PIXEL_MAP_G_TO_G_SIZE 0x0CB7 +#define GL_PIXEL_MAP_B_TO_B_SIZE 0x0CB8 +#define GL_PIXEL_MAP_A_TO_A_SIZE 0x0CB9 +#define GL_PIXEL_MAP_S_TO_S 0x0C71 +#define GL_PIXEL_MAP_I_TO_I 0x0C70 +#define GL_PIXEL_MAP_I_TO_R 0x0C72 +#define GL_PIXEL_MAP_I_TO_G 0x0C73 +#define GL_PIXEL_MAP_I_TO_B 0x0C74 +#define GL_PIXEL_MAP_I_TO_A 0x0C75 +#define GL_PIXEL_MAP_R_TO_R 0x0C76 +#define GL_PIXEL_MAP_G_TO_G 0x0C77 +#define GL_PIXEL_MAP_B_TO_B 0x0C78 +#define GL_PIXEL_MAP_A_TO_A 0x0C79 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_PACK_LSB_FIRST 0x0D01 +#define GL_PACK_ROW_LENGTH 0x0D02 +#define GL_PACK_SKIP_PIXELS 0x0D04 +#define GL_PACK_SKIP_ROWS 0x0D03 +#define GL_PACK_SWAP_BYTES 0x0D00 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_UNPACK_LSB_FIRST 0x0CF1 +#define GL_UNPACK_ROW_LENGTH 0x0CF2 +#define GL_UNPACK_SKIP_PIXELS 0x0CF4 +#define GL_UNPACK_SKIP_ROWS 0x0CF3 +#define GL_UNPACK_SWAP_BYTES 0x0CF0 +#define GL_ZOOM_X 0x0D16 +#define GL_ZOOM_Y 0x0D17 + +/* Texture mapping */ +#define GL_TEXTURE_ENV 0x2300 +#define GL_TEXTURE_ENV_MODE 0x2200 +#define GL_TEXTURE_1D 0x0DE0 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_TEXTURE_WRAP_S 0x2802 +#define GL_TEXTURE_WRAP_T 0x2803 +#define GL_TEXTURE_MAG_FILTER 0x2800 +#define GL_TEXTURE_MIN_FILTER 0x2801 +#define GL_TEXTURE_ENV_COLOR 0x2201 +#define GL_TEXTURE_GEN_S 0x0C60 +#define GL_TEXTURE_GEN_T 0x0C61 +#define GL_TEXTURE_GEN_R 0x0C62 +#define GL_TEXTURE_GEN_Q 0x0C63 +#define GL_TEXTURE_GEN_MODE 0x2500 +#define GL_TEXTURE_BORDER_COLOR 0x1004 +#define GL_TEXTURE_WIDTH 0x1000 +#define GL_TEXTURE_HEIGHT 0x1001 +#define GL_TEXTURE_BORDER 0x1005 +#define GL_TEXTURE_COMPONENTS 0x1003 +#define GL_TEXTURE_RED_SIZE 0x805C +#define GL_TEXTURE_GREEN_SIZE 0x805D +#define GL_TEXTURE_BLUE_SIZE 0x805E +#define GL_TEXTURE_ALPHA_SIZE 0x805F +#define GL_TEXTURE_LUMINANCE_SIZE 0x8060 +#define GL_TEXTURE_INTENSITY_SIZE 0x8061 +#define GL_NEAREST_MIPMAP_NEAREST 0x2700 +#define GL_NEAREST_MIPMAP_LINEAR 0x2702 +#define GL_LINEAR_MIPMAP_NEAREST 0x2701 +#define GL_LINEAR_MIPMAP_LINEAR 0x2703 +#define GL_OBJECT_LINEAR 0x2401 +#define GL_OBJECT_PLANE 0x2501 +#define GL_EYE_LINEAR 0x2400 +#define GL_EYE_PLANE 0x2502 +#define GL_SPHERE_MAP 0x2402 +#define GL_DECAL 0x2101 +#define GL_MODULATE 0x2100 +#define GL_NEAREST 0x2600 +#define GL_REPEAT 0x2901 +#define GL_CLAMP 0x2900 +#define GL_S 0x2000 +#define GL_T 0x2001 +#define GL_R 0x2002 +#define GL_Q 0x2003 + +/* Utility */ +#define GL_VENDOR 0x1F00 +#define GL_RENDERER 0x1F01 +#define GL_VERSION 0x1F02 +#define GL_EXTENSIONS 0x1F03 + +/* Errors */ +#define GL_NO_ERROR 0 +#define GL_INVALID_ENUM 0x0500 +#define GL_INVALID_VALUE 0x0501 +#define GL_INVALID_OPERATION 0x0502 +#define GL_STACK_OVERFLOW 0x0503 +#define GL_STACK_UNDERFLOW 0x0504 +#define GL_OUT_OF_MEMORY 0x0505 + +/* glPush/PopAttrib bits */ +#define GL_CURRENT_BIT 0x00000001 +#define GL_POINT_BIT 0x00000002 +#define GL_LINE_BIT 0x00000004 +#define GL_POLYGON_BIT 0x00000008 +#define GL_POLYGON_STIPPLE_BIT 0x00000010 +#define GL_PIXEL_MODE_BIT 0x00000020 +#define GL_LIGHTING_BIT 0x00000040 +#define GL_FOG_BIT 0x00000080 +#define GL_DEPTH_BUFFER_BIT 0x00000100 +#define GL_ACCUM_BUFFER_BIT 0x00000200 +#define GL_STENCIL_BUFFER_BIT 0x00000400 +#define GL_VIEWPORT_BIT 0x00000800 +#define GL_TRANSFORM_BIT 0x00001000 +#define GL_ENABLE_BIT 0x00002000 +#define GL_COLOR_BUFFER_BIT 0x00004000 +#define GL_HINT_BIT 0x00008000 +#define GL_EVAL_BIT 0x00010000 +#define GL_LIST_BIT 0x00020000 +#define GL_TEXTURE_BIT 0x00040000 +#define GL_SCISSOR_BIT 0x00080000 +#define GL_ALL_ATTRIB_BITS 0x000FFFFF + + +/* OpenGL 1.1 */ +#define GL_PROXY_TEXTURE_1D 0x8063 +#define GL_PROXY_TEXTURE_2D 0x8064 +#define GL_TEXTURE_PRIORITY 0x8066 +#define GL_TEXTURE_RESIDENT 0x8067 +#define GL_TEXTURE_BINDING_1D 0x8068 +#define GL_TEXTURE_BINDING_2D 0x8069 +#define GL_TEXTURE_INTERNAL_FORMAT 0x1003 +#define GL_ALPHA4 0x803B +#define GL_ALPHA8 0x803C +#define GL_ALPHA12 0x803D +#define GL_ALPHA16 0x803E +#define GL_LUMINANCE4 0x803F +#define GL_LUMINANCE8 0x8040 +#define GL_LUMINANCE12 0x8041 +#define GL_LUMINANCE16 0x8042 +#define GL_LUMINANCE4_ALPHA4 0x8043 +#define GL_LUMINANCE6_ALPHA2 0x8044 +#define GL_LUMINANCE8_ALPHA8 0x8045 +#define GL_LUMINANCE12_ALPHA4 0x8046 +#define GL_LUMINANCE12_ALPHA12 0x8047 +#define GL_LUMINANCE16_ALPHA16 0x8048 +#define GL_INTENSITY 0x8049 +#define GL_INTENSITY4 0x804A +#define GL_INTENSITY8 0x804B +#define GL_INTENSITY12 0x804C +#define GL_INTENSITY16 0x804D +#define GL_R3_G3_B2 0x2A10 +#define GL_RGB4 0x804F +#define GL_RGB5 0x8050 +#define GL_RGB8 0x8051 +#define GL_RGB10 0x8052 +#define GL_RGB12 0x8053 +#define GL_RGB16 0x8054 +#define GL_RGBA2 0x8055 +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGBA8 0x8058 +#define GL_RGB10_A2 0x8059 +#define GL_RGBA12 0x805A +#define GL_RGBA16 0x805B +#define GL_CLIENT_PIXEL_STORE_BIT 0x00000001 +#define GL_CLIENT_VERTEX_ARRAY_BIT 0x00000002 +#define GL_ALL_CLIENT_ATTRIB_BITS 0xFFFFFFFF +#define GL_CLIENT_ALL_ATTRIB_BITS 0xFFFFFFFF + + + +/* + * Miscellaneous + */ + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES +GLAPI void GLAPIENTRY glClearIndex( GLfloat c ); + +GLAPI void GLAPIENTRY glClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ); + +GLAPI void GLAPIENTRY glClear( GLbitfield mask ); + +GLAPI void GLAPIENTRY glIndexMask( GLuint mask ); + +GLAPI void GLAPIENTRY glColorMask( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ); + +GLAPI void GLAPIENTRY glAlphaFunc( GLenum func, GLclampf ref ); + +GLAPI void GLAPIENTRY glBlendFunc( GLenum sfactor, GLenum dfactor ); + +GLAPI void GLAPIENTRY glLogicOp( GLenum opcode ); + +GLAPI void GLAPIENTRY glCullFace( GLenum mode ); + +GLAPI void GLAPIENTRY glFrontFace( GLenum mode ); + +GLAPI void GLAPIENTRY glPointSize( GLfloat size ); + +GLAPI void GLAPIENTRY glLineWidth( GLfloat width ); + +GLAPI void GLAPIENTRY glLineStipple( GLint factor, GLushort pattern ); + +GLAPI void GLAPIENTRY glPolygonMode( GLenum face, GLenum mode ); + +GLAPI void GLAPIENTRY glPolygonOffset( GLfloat factor, GLfloat units ); + +GLAPI void GLAPIENTRY glPolygonStipple( const GLubyte *mask ); + +GLAPI void GLAPIENTRY glGetPolygonStipple( GLubyte *mask ); + +GLAPI void GLAPIENTRY glEdgeFlag( GLboolean flag ); + +GLAPI void GLAPIENTRY glEdgeFlagv( const GLboolean *flag ); + +GLAPI void GLAPIENTRY glScissor( GLint x, GLint y, GLsizei width, GLsizei height); + +GLAPI void GLAPIENTRY glClipPlane( GLenum plane, const GLdouble *equation ); + +GLAPI void GLAPIENTRY glGetClipPlane( GLenum plane, GLdouble *equation ); + +GLAPI void GLAPIENTRY glDrawBuffer( GLenum mode ); + +GLAPI void GLAPIENTRY glReadBuffer( GLenum mode ); + +GLAPI void GLAPIENTRY glEnable( GLenum cap ); + +GLAPI void GLAPIENTRY glDisable( GLenum cap ); + +GLAPI GLboolean GLAPIENTRY glIsEnabled( GLenum cap ); + + +GLAPI void GLAPIENTRY glEnableClientState( GLenum cap ); /* 1.1 */ + +GLAPI void GLAPIENTRY glDisableClientState( GLenum cap ); /* 1.1 */ + + +GLAPI void GLAPIENTRY glGetBooleanv( GLenum pname, GLboolean *params ); + +GLAPI void GLAPIENTRY glGetDoublev( GLenum pname, GLdouble *params ); + +GLAPI void GLAPIENTRY glGetFloatv( GLenum pname, GLfloat *params ); + +GLAPI void GLAPIENTRY glGetIntegerv( GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glPushAttrib( GLbitfield mask ); + +GLAPI void GLAPIENTRY glPopAttrib( void ); + + +GLAPI void GLAPIENTRY glPushClientAttrib( GLbitfield mask ); /* 1.1 */ + +GLAPI void GLAPIENTRY glPopClientAttrib( void ); /* 1.1 */ + + +GLAPI GLint GLAPIENTRY glRenderMode( GLenum mode ); + +GLAPI GLenum GLAPIENTRY glGetError( void ); + +GLAPI const GLubyte * GLAPIENTRY glGetString( GLenum name ); + +GLAPI void GLAPIENTRY glFinish( void ); + +GLAPI void GLAPIENTRY glFlush( void ); + +GLAPI void GLAPIENTRY glHint( GLenum target, GLenum mode ); + + +/* + * Depth Buffer + */ + +GLAPI void GLAPIENTRY glClearDepth( GLclampd depth ); + +GLAPI void GLAPIENTRY glDepthFunc( GLenum func ); + +GLAPI void GLAPIENTRY glDepthMask( GLboolean flag ); + +GLAPI void GLAPIENTRY glDepthRange( GLclampd near_val, GLclampd far_val ); + + +/* + * Accumulation Buffer + */ + +GLAPI void GLAPIENTRY glClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ); + +GLAPI void GLAPIENTRY glAccum( GLenum op, GLfloat value ); + + +/* + * Transformation + */ + +GLAPI void GLAPIENTRY glMatrixMode( GLenum mode ); + +GLAPI void GLAPIENTRY glOrtho( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +GLAPI void GLAPIENTRY glFrustum( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +GLAPI void GLAPIENTRY glViewport( GLint x, GLint y, + GLsizei width, GLsizei height ); + +GLAPI void GLAPIENTRY glPushMatrix( void ); + +GLAPI void GLAPIENTRY glPopMatrix( void ); + +GLAPI void GLAPIENTRY glLoadIdentity( void ); + +GLAPI void GLAPIENTRY glLoadMatrixd( const GLdouble *m ); +GLAPI void GLAPIENTRY glLoadMatrixf( const GLfloat *m ); + +GLAPI void GLAPIENTRY glMultMatrixd( const GLdouble *m ); +GLAPI void GLAPIENTRY glMultMatrixf( const GLfloat *m ); + +GLAPI void GLAPIENTRY glRotated( GLdouble angle, + GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glRotatef( GLfloat angle, + GLfloat x, GLfloat y, GLfloat z ); + +GLAPI void GLAPIENTRY glScaled( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glScalef( GLfloat x, GLfloat y, GLfloat z ); + +GLAPI void GLAPIENTRY glTranslated( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glTranslatef( GLfloat x, GLfloat y, GLfloat z ); + + +/* + * Display Lists + */ + +GLAPI GLboolean GLAPIENTRY glIsList( GLuint list ); + +GLAPI void GLAPIENTRY glDeleteLists( GLuint list, GLsizei range ); + +GLAPI GLuint GLAPIENTRY glGenLists( GLsizei range ); + +GLAPI void GLAPIENTRY glNewList( GLuint list, GLenum mode ); + +GLAPI void GLAPIENTRY glEndList( void ); + +GLAPI void GLAPIENTRY glCallList( GLuint list ); + +GLAPI void GLAPIENTRY glCallLists( GLsizei n, GLenum type, + const GLvoid *lists ); + +GLAPI void GLAPIENTRY glListBase( GLuint base ); + + +/* + * Drawing Functions + */ + +GLAPI void GLAPIENTRY glBegin( GLenum mode ); + +GLAPI void GLAPIENTRY glEnd( void ); + + +GLAPI void GLAPIENTRY glVertex2d( GLdouble x, GLdouble y ); +GLAPI void GLAPIENTRY glVertex2f( GLfloat x, GLfloat y ); +GLAPI void GLAPIENTRY glVertex2i( GLint x, GLint y ); +GLAPI void GLAPIENTRY glVertex2s( GLshort x, GLshort y ); + +GLAPI void GLAPIENTRY glVertex3d( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glVertex3f( GLfloat x, GLfloat y, GLfloat z ); +GLAPI void GLAPIENTRY glVertex3i( GLint x, GLint y, GLint z ); +GLAPI void GLAPIENTRY glVertex3s( GLshort x, GLshort y, GLshort z ); + +GLAPI void GLAPIENTRY glVertex4d( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +GLAPI void GLAPIENTRY glVertex4f( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +GLAPI void GLAPIENTRY glVertex4i( GLint x, GLint y, GLint z, GLint w ); +GLAPI void GLAPIENTRY glVertex4s( GLshort x, GLshort y, GLshort z, GLshort w ); + +GLAPI void GLAPIENTRY glVertex2dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glVertex2fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glVertex2iv( const GLint *v ); +GLAPI void GLAPIENTRY glVertex2sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glVertex3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glVertex3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glVertex3iv( const GLint *v ); +GLAPI void GLAPIENTRY glVertex3sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glVertex4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glVertex4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glVertex4iv( const GLint *v ); +GLAPI void GLAPIENTRY glVertex4sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glNormal3b( GLbyte nx, GLbyte ny, GLbyte nz ); +GLAPI void GLAPIENTRY glNormal3d( GLdouble nx, GLdouble ny, GLdouble nz ); +GLAPI void GLAPIENTRY glNormal3f( GLfloat nx, GLfloat ny, GLfloat nz ); +GLAPI void GLAPIENTRY glNormal3i( GLint nx, GLint ny, GLint nz ); +GLAPI void GLAPIENTRY glNormal3s( GLshort nx, GLshort ny, GLshort nz ); + +GLAPI void GLAPIENTRY glNormal3bv( const GLbyte *v ); +GLAPI void GLAPIENTRY glNormal3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glNormal3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glNormal3iv( const GLint *v ); +GLAPI void GLAPIENTRY glNormal3sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glIndexd( GLdouble c ); +GLAPI void GLAPIENTRY glIndexf( GLfloat c ); +GLAPI void GLAPIENTRY glIndexi( GLint c ); +GLAPI void GLAPIENTRY glIndexs( GLshort c ); +GLAPI void GLAPIENTRY glIndexub( GLubyte c ); /* 1.1 */ + +GLAPI void GLAPIENTRY glIndexdv( const GLdouble *c ); +GLAPI void GLAPIENTRY glIndexfv( const GLfloat *c ); +GLAPI void GLAPIENTRY glIndexiv( const GLint *c ); +GLAPI void GLAPIENTRY glIndexsv( const GLshort *c ); +GLAPI void GLAPIENTRY glIndexubv( const GLubyte *c ); /* 1.1 */ + +GLAPI void GLAPIENTRY glColor3b( GLbyte red, GLbyte green, GLbyte blue ); +GLAPI void GLAPIENTRY glColor3d( GLdouble red, GLdouble green, GLdouble blue ); +GLAPI void GLAPIENTRY glColor3f( GLfloat red, GLfloat green, GLfloat blue ); +GLAPI void GLAPIENTRY glColor3i( GLint red, GLint green, GLint blue ); +GLAPI void GLAPIENTRY glColor3s( GLshort red, GLshort green, GLshort blue ); +GLAPI void GLAPIENTRY glColor3ub( GLubyte red, GLubyte green, GLubyte blue ); +GLAPI void GLAPIENTRY glColor3ui( GLuint red, GLuint green, GLuint blue ); +GLAPI void GLAPIENTRY glColor3us( GLushort red, GLushort green, GLushort blue ); + +GLAPI void GLAPIENTRY glColor4b( GLbyte red, GLbyte green, + GLbyte blue, GLbyte alpha ); +GLAPI void GLAPIENTRY glColor4d( GLdouble red, GLdouble green, + GLdouble blue, GLdouble alpha ); +GLAPI void GLAPIENTRY glColor4f( GLfloat red, GLfloat green, + GLfloat blue, GLfloat alpha ); +GLAPI void GLAPIENTRY glColor4i( GLint red, GLint green, + GLint blue, GLint alpha ); +GLAPI void GLAPIENTRY glColor4s( GLshort red, GLshort green, + GLshort blue, GLshort alpha ); +GLAPI void GLAPIENTRY glColor4ub( GLubyte red, GLubyte green, + GLubyte blue, GLubyte alpha ); +GLAPI void GLAPIENTRY glColor4ui( GLuint red, GLuint green, + GLuint blue, GLuint alpha ); +GLAPI void GLAPIENTRY glColor4us( GLushort red, GLushort green, + GLushort blue, GLushort alpha ); + + +GLAPI void GLAPIENTRY glColor3bv( const GLbyte *v ); +GLAPI void GLAPIENTRY glColor3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glColor3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glColor3iv( const GLint *v ); +GLAPI void GLAPIENTRY glColor3sv( const GLshort *v ); +GLAPI void GLAPIENTRY glColor3ubv( const GLubyte *v ); +GLAPI void GLAPIENTRY glColor3uiv( const GLuint *v ); +GLAPI void GLAPIENTRY glColor3usv( const GLushort *v ); + +GLAPI void GLAPIENTRY glColor4bv( const GLbyte *v ); +GLAPI void GLAPIENTRY glColor4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glColor4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glColor4iv( const GLint *v ); +GLAPI void GLAPIENTRY glColor4sv( const GLshort *v ); +GLAPI void GLAPIENTRY glColor4ubv( const GLubyte *v ); +GLAPI void GLAPIENTRY glColor4uiv( const GLuint *v ); +GLAPI void GLAPIENTRY glColor4usv( const GLushort *v ); + + +GLAPI void GLAPIENTRY glTexCoord1d( GLdouble s ); +GLAPI void GLAPIENTRY glTexCoord1f( GLfloat s ); +GLAPI void GLAPIENTRY glTexCoord1i( GLint s ); +GLAPI void GLAPIENTRY glTexCoord1s( GLshort s ); + +GLAPI void GLAPIENTRY glTexCoord2d( GLdouble s, GLdouble t ); +GLAPI void GLAPIENTRY glTexCoord2f( GLfloat s, GLfloat t ); +GLAPI void GLAPIENTRY glTexCoord2i( GLint s, GLint t ); +GLAPI void GLAPIENTRY glTexCoord2s( GLshort s, GLshort t ); + +GLAPI void GLAPIENTRY glTexCoord3d( GLdouble s, GLdouble t, GLdouble r ); +GLAPI void GLAPIENTRY glTexCoord3f( GLfloat s, GLfloat t, GLfloat r ); +GLAPI void GLAPIENTRY glTexCoord3i( GLint s, GLint t, GLint r ); +GLAPI void GLAPIENTRY glTexCoord3s( GLshort s, GLshort t, GLshort r ); + +GLAPI void GLAPIENTRY glTexCoord4d( GLdouble s, GLdouble t, GLdouble r, GLdouble q ); +GLAPI void GLAPIENTRY glTexCoord4f( GLfloat s, GLfloat t, GLfloat r, GLfloat q ); +GLAPI void GLAPIENTRY glTexCoord4i( GLint s, GLint t, GLint r, GLint q ); +GLAPI void GLAPIENTRY glTexCoord4s( GLshort s, GLshort t, GLshort r, GLshort q ); + +GLAPI void GLAPIENTRY glTexCoord1dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord1fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord1iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord1sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glTexCoord2dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord2fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord2iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord2sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glTexCoord3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord3iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord3sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glTexCoord4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord4iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord4sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glRasterPos2d( GLdouble x, GLdouble y ); +GLAPI void GLAPIENTRY glRasterPos2f( GLfloat x, GLfloat y ); +GLAPI void GLAPIENTRY glRasterPos2i( GLint x, GLint y ); +GLAPI void GLAPIENTRY glRasterPos2s( GLshort x, GLshort y ); + +GLAPI void GLAPIENTRY glRasterPos3d( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glRasterPos3f( GLfloat x, GLfloat y, GLfloat z ); +GLAPI void GLAPIENTRY glRasterPos3i( GLint x, GLint y, GLint z ); +GLAPI void GLAPIENTRY glRasterPos3s( GLshort x, GLshort y, GLshort z ); + +GLAPI void GLAPIENTRY glRasterPos4d( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +GLAPI void GLAPIENTRY glRasterPos4f( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +GLAPI void GLAPIENTRY glRasterPos4i( GLint x, GLint y, GLint z, GLint w ); +GLAPI void GLAPIENTRY glRasterPos4s( GLshort x, GLshort y, GLshort z, GLshort w ); + +GLAPI void GLAPIENTRY glRasterPos2dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glRasterPos2fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glRasterPos2iv( const GLint *v ); +GLAPI void GLAPIENTRY glRasterPos2sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glRasterPos3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glRasterPos3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glRasterPos3iv( const GLint *v ); +GLAPI void GLAPIENTRY glRasterPos3sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glRasterPos4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glRasterPos4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glRasterPos4iv( const GLint *v ); +GLAPI void GLAPIENTRY glRasterPos4sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glRectd( GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2 ); +GLAPI void GLAPIENTRY glRectf( GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2 ); +GLAPI void GLAPIENTRY glRecti( GLint x1, GLint y1, GLint x2, GLint y2 ); +GLAPI void GLAPIENTRY glRects( GLshort x1, GLshort y1, GLshort x2, GLshort y2 ); + + +GLAPI void GLAPIENTRY glRectdv( const GLdouble *v1, const GLdouble *v2 ); +GLAPI void GLAPIENTRY glRectfv( const GLfloat *v1, const GLfloat *v2 ); +GLAPI void GLAPIENTRY glRectiv( const GLint *v1, const GLint *v2 ); +GLAPI void GLAPIENTRY glRectsv( const GLshort *v1, const GLshort *v2 ); + + +/* + * Vertex Arrays (1.1) + */ + +GLAPI void GLAPIENTRY glVertexPointer( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glNormalPointer( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glColorPointer( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glIndexPointer( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glTexCoordPointer( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glEdgeFlagPointer( GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glGetPointerv( GLenum pname, GLvoid **params ); + +GLAPI void GLAPIENTRY glArrayElement( GLint i ); + +GLAPI void GLAPIENTRY glDrawArrays( GLenum mode, GLint first, GLsizei count ); + +GLAPI void GLAPIENTRY glDrawElements( GLenum mode, GLsizei count, + GLenum type, const GLvoid *indices ); + +GLAPI void GLAPIENTRY glInterleavedArrays( GLenum format, GLsizei stride, + const GLvoid *pointer ); + +/* + * Lighting + */ + +GLAPI void GLAPIENTRY glShadeModel( GLenum mode ); + +GLAPI void GLAPIENTRY glLightf( GLenum light, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glLighti( GLenum light, GLenum pname, GLint param ); +GLAPI void GLAPIENTRY glLightfv( GLenum light, GLenum pname, + const GLfloat *params ); +GLAPI void GLAPIENTRY glLightiv( GLenum light, GLenum pname, + const GLint *params ); + +GLAPI void GLAPIENTRY glGetLightfv( GLenum light, GLenum pname, + GLfloat *params ); +GLAPI void GLAPIENTRY glGetLightiv( GLenum light, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glLightModelf( GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glLightModeli( GLenum pname, GLint param ); +GLAPI void GLAPIENTRY glLightModelfv( GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glLightModeliv( GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glMaterialf( GLenum face, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glMateriali( GLenum face, GLenum pname, GLint param ); +GLAPI void GLAPIENTRY glMaterialfv( GLenum face, GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glMaterialiv( GLenum face, GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glGetMaterialfv( GLenum face, GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetMaterialiv( GLenum face, GLenum pname, GLint *params ); + +GLAPI void GLAPIENTRY glColorMaterial( GLenum face, GLenum mode ); + + +/* + * Raster functions + */ + +GLAPI void GLAPIENTRY glPixelZoom( GLfloat xfactor, GLfloat yfactor ); + +GLAPI void GLAPIENTRY glPixelStoref( GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glPixelStorei( GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glPixelTransferf( GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glPixelTransferi( GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glPixelMapfv( GLenum map, GLsizei mapsize, + const GLfloat *values ); +GLAPI void GLAPIENTRY glPixelMapuiv( GLenum map, GLsizei mapsize, + const GLuint *values ); +GLAPI void GLAPIENTRY glPixelMapusv( GLenum map, GLsizei mapsize, + const GLushort *values ); + +GLAPI void GLAPIENTRY glGetPixelMapfv( GLenum map, GLfloat *values ); +GLAPI void GLAPIENTRY glGetPixelMapuiv( GLenum map, GLuint *values ); +GLAPI void GLAPIENTRY glGetPixelMapusv( GLenum map, GLushort *values ); + +GLAPI void GLAPIENTRY glBitmap( GLsizei width, GLsizei height, + GLfloat xorig, GLfloat yorig, + GLfloat xmove, GLfloat ymove, + const GLubyte *bitmap ); + +GLAPI void GLAPIENTRY glReadPixels( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + GLvoid *pixels ); + +GLAPI void GLAPIENTRY glDrawPixels( GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glCopyPixels( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum type ); + +/* + * Stenciling + */ + +GLAPI void GLAPIENTRY glStencilFunc( GLenum func, GLint ref, GLuint mask ); + +GLAPI void GLAPIENTRY glStencilMask( GLuint mask ); + +GLAPI void GLAPIENTRY glStencilOp( GLenum fail, GLenum zfail, GLenum zpass ); + +GLAPI void GLAPIENTRY glClearStencil( GLint s ); + + + +/* + * Texture mapping + */ + +GLAPI void GLAPIENTRY glTexGend( GLenum coord, GLenum pname, GLdouble param ); +GLAPI void GLAPIENTRY glTexGenf( GLenum coord, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glTexGeni( GLenum coord, GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glTexGendv( GLenum coord, GLenum pname, const GLdouble *params ); +GLAPI void GLAPIENTRY glTexGenfv( GLenum coord, GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glTexGeniv( GLenum coord, GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glGetTexGendv( GLenum coord, GLenum pname, GLdouble *params ); +GLAPI void GLAPIENTRY glGetTexGenfv( GLenum coord, GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetTexGeniv( GLenum coord, GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glTexEnvf( GLenum target, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glTexEnvi( GLenum target, GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glTexEnvfv( GLenum target, GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glTexEnviv( GLenum target, GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glGetTexEnvfv( GLenum target, GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetTexEnviv( GLenum target, GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glTexParameterf( GLenum target, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glTexParameteri( GLenum target, GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glTexParameterfv( GLenum target, GLenum pname, + const GLfloat *params ); +GLAPI void GLAPIENTRY glTexParameteriv( GLenum target, GLenum pname, + const GLint *params ); + +GLAPI void GLAPIENTRY glGetTexParameterfv( GLenum target, + GLenum pname, GLfloat *params); +GLAPI void GLAPIENTRY glGetTexParameteriv( GLenum target, + GLenum pname, GLint *params ); + +GLAPI void GLAPIENTRY glGetTexLevelParameterfv( GLenum target, GLint level, + GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetTexLevelParameteriv( GLenum target, GLint level, + GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glTexImage1D( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glTexImage2D( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLint border, GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glGetTexImage( GLenum target, GLint level, + GLenum format, GLenum type, + GLvoid *pixels ); + + +/* 1.1 functions */ + +GLAPI void GLAPIENTRY glGenTextures( GLsizei n, GLuint *textures ); + +GLAPI void GLAPIENTRY glDeleteTextures( GLsizei n, const GLuint *textures); + +GLAPI void GLAPIENTRY glBindTexture( GLenum target, GLuint texture ); + +GLAPI void GLAPIENTRY glPrioritizeTextures( GLsizei n, + const GLuint *textures, + const GLclampf *priorities ); + +GLAPI GLboolean GLAPIENTRY glAreTexturesResident( GLsizei n, + const GLuint *textures, + GLboolean *residences ); + +GLAPI GLboolean GLAPIENTRY glIsTexture( GLuint texture ); + + +GLAPI void GLAPIENTRY glTexSubImage1D( GLenum target, GLint level, + GLint xoffset, + GLsizei width, GLenum format, + GLenum type, const GLvoid *pixels ); + + +GLAPI void GLAPIENTRY glTexSubImage2D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + + +GLAPI void GLAPIENTRY glCopyTexImage1D( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLint border ); + + +GLAPI void GLAPIENTRY glCopyTexImage2D( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLsizei height, + GLint border ); + + +GLAPI void GLAPIENTRY glCopyTexSubImage1D( GLenum target, GLint level, + GLint xoffset, GLint x, GLint y, + GLsizei width ); + + +GLAPI void GLAPIENTRY glCopyTexSubImage2D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint x, GLint y, + GLsizei width, GLsizei height ); + + +/* + * Evaluators + */ + +GLAPI void GLAPIENTRY glMap1d( GLenum target, GLdouble u1, GLdouble u2, + GLint stride, + GLint order, const GLdouble *points ); +GLAPI void GLAPIENTRY glMap1f( GLenum target, GLfloat u1, GLfloat u2, + GLint stride, + GLint order, const GLfloat *points ); + +GLAPI void GLAPIENTRY glMap2d( GLenum target, + GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, + GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, + const GLdouble *points ); +GLAPI void GLAPIENTRY glMap2f( GLenum target, + GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, + GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, + const GLfloat *points ); + +GLAPI void GLAPIENTRY glGetMapdv( GLenum target, GLenum query, GLdouble *v ); +GLAPI void GLAPIENTRY glGetMapfv( GLenum target, GLenum query, GLfloat *v ); +GLAPI void GLAPIENTRY glGetMapiv( GLenum target, GLenum query, GLint *v ); + +GLAPI void GLAPIENTRY glEvalCoord1d( GLdouble u ); +GLAPI void GLAPIENTRY glEvalCoord1f( GLfloat u ); + +GLAPI void GLAPIENTRY glEvalCoord1dv( const GLdouble *u ); +GLAPI void GLAPIENTRY glEvalCoord1fv( const GLfloat *u ); + +GLAPI void GLAPIENTRY glEvalCoord2d( GLdouble u, GLdouble v ); +GLAPI void GLAPIENTRY glEvalCoord2f( GLfloat u, GLfloat v ); + +GLAPI void GLAPIENTRY glEvalCoord2dv( const GLdouble *u ); +GLAPI void GLAPIENTRY glEvalCoord2fv( const GLfloat *u ); + +GLAPI void GLAPIENTRY glMapGrid1d( GLint un, GLdouble u1, GLdouble u2 ); +GLAPI void GLAPIENTRY glMapGrid1f( GLint un, GLfloat u1, GLfloat u2 ); + +GLAPI void GLAPIENTRY glMapGrid2d( GLint un, GLdouble u1, GLdouble u2, + GLint vn, GLdouble v1, GLdouble v2 ); +GLAPI void GLAPIENTRY glMapGrid2f( GLint un, GLfloat u1, GLfloat u2, + GLint vn, GLfloat v1, GLfloat v2 ); + +GLAPI void GLAPIENTRY glEvalPoint1( GLint i ); + +GLAPI void GLAPIENTRY glEvalPoint2( GLint i, GLint j ); + +GLAPI void GLAPIENTRY glEvalMesh1( GLenum mode, GLint i1, GLint i2 ); + +GLAPI void GLAPIENTRY glEvalMesh2( GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 ); + + +/* + * Fog + */ + +GLAPI void GLAPIENTRY glFogf( GLenum pname, GLfloat param ); + +GLAPI void GLAPIENTRY glFogi( GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glFogfv( GLenum pname, const GLfloat *params ); + +GLAPI void GLAPIENTRY glFogiv( GLenum pname, const GLint *params ); + + +/* + * Selection and Feedback + */ + +GLAPI void GLAPIENTRY glFeedbackBuffer( GLsizei size, GLenum type, GLfloat *buffer ); + +GLAPI void GLAPIENTRY glPassThrough( GLfloat token ); + +GLAPI void GLAPIENTRY glSelectBuffer( GLsizei size, GLuint *buffer ); + +GLAPI void GLAPIENTRY glInitNames( void ); + +GLAPI void GLAPIENTRY glLoadName( GLuint name ); + +GLAPI void GLAPIENTRY glPushName( GLuint name ); + +GLAPI void GLAPIENTRY glPopName( void ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLCLEARINDEXPROC) ( GLfloat c ); + +typedef void (APIENTRYP PFNGLCLEARCOLORPROC) ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ); + +typedef void (APIENTRYP PFNGLCLEARPROC) ( GLbitfield mask ); + +typedef void (APIENTRYP PFNGLINDEXMASKPROC) ( GLuint mask ); + +typedef void (APIENTRYP PFNGLCOLORMASKPROC) ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ); + +typedef void (APIENTRYP PFNGLALPHAFUNCPROC) ( GLenum func, GLclampf ref ); + +typedef void (APIENTRYP PFNGLBLENDFUNCPROC) ( GLenum sfactor, GLenum dfactor ); + +typedef void (APIENTRYP PFNGLLOGICOPPROC) ( GLenum opcode ); + +typedef void (APIENTRYP PFNGLCULLFACEPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLFRONTFACEPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLPOINTSIZEPROC) ( GLfloat size ); + +typedef void (APIENTRYP PFNGLLINEWIDTHPROC) ( GLfloat width ); + +typedef void (APIENTRYP PFNGLLINESTIPPLEPROC) ( GLint factor, GLushort pattern ); + +typedef void (APIENTRYP PFNGLPOLYGONMODEPROC) ( GLenum face, GLenum mode ); + +typedef void (APIENTRYP PFNGLPOLYGONOFFSETPROC) ( GLfloat factor, GLfloat units ); + +typedef void (APIENTRYP PFNGLPOLYGONSTIPPLEPROC) ( const GLubyte *mask ); + +typedef void (APIENTRYP PFNGLGETPOLYGONSTIPPLEPROC) ( GLubyte *mask ); + +typedef void (APIENTRYP PFNGLEDGEFLAGPROC) ( GLboolean flag ); + +typedef void (APIENTRYP PFNGLEDGEFLAGVPROC) ( const GLboolean *flag ); + +typedef void (APIENTRYP PFNGLSCISSORPROC) ( GLint x, GLint y, GLsizei width, GLsizei height); + +typedef void (APIENTRYP PFNGLCLIPPLANEPROC) ( GLenum plane, const GLdouble *equation ); + +typedef void (APIENTRYP PFNGLGETCLIPPLANEPROC) ( GLenum plane, GLdouble *equation ); + +typedef void (APIENTRYP PFNGLDRAWBUFFERPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLREADBUFFERPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLENABLEPROC) ( GLenum cap ); + +typedef void (APIENTRYP PFNGLDISABLEPROC) ( GLenum cap ); + +typedef GLboolean (APIENTRYP PFNGLISENABLEDPROC) ( GLenum cap ); + + +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEPROC) ( GLenum cap ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEPROC) ( GLenum cap ); /* 1.1 */ + + +typedef void (APIENTRYP PFNGLGETBOOLEANVPROC) ( GLenum pname, GLboolean *params ); + +typedef void (APIENTRYP PFNGLGETDOUBLEVPROC) ( GLenum pname, GLdouble *params ); + +typedef void (APIENTRYP PFNGLGETFLOATVPROC) ( GLenum pname, GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETINTEGERVPROC) ( GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLPUSHATTRIBPROC) ( GLbitfield mask ); + +typedef void (APIENTRYP PFNGLPOPATTRIBPROC) ( void ); + + +typedef void (APIENTRYP PFNGLPUSHCLIENTATTRIBPROC) ( GLbitfield mask ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLPOPCLIENTATTRIBPROC) ( void ); /* 1.1 */ + + +typedef GLint (APIENTRYP PFNGLRENDERMODEPROC) ( GLenum mode ); + +typedef GLenum (APIENTRYP PFNGLGETERRORPROC) ( void ); + +typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGPROC) ( GLenum name ); + +typedef void (APIENTRYP PFNGLFINISHPROC) ( void ); + +typedef void (APIENTRYP PFNGLFLUSHPROC) ( void ); + +typedef void (APIENTRYP PFNGLHINTPROC) ( GLenum target, GLenum mode ); + + +/* + * Depth Buffer + */ + +typedef void (APIENTRYP PFNGLCLEARDEPTHPROC) ( GLclampd depth ); + +typedef void (APIENTRYP PFNGLDEPTHFUNCPROC) ( GLenum func ); + +typedef void (APIENTRYP PFNGLDEPTHMASKPROC) ( GLboolean flag ); + +typedef void (APIENTRYP PFNGLDEPTHRANGEPROC) ( GLclampd near_val, GLclampd far_val ); + + +/* + * Accumulation Buffer + */ + +typedef void (APIENTRYP PFNGLCLEARACCUMPROC) ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ); + +typedef void (APIENTRYP PFNGLACCUMPROC) ( GLenum op, GLfloat value ); + + +/* + * Transformation + */ + +typedef void (APIENTRYP PFNGLMATRIXMODEPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLORTHOPROC) ( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +typedef void (APIENTRYP PFNGLFRUSTUMPROC) ( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +typedef void (APIENTRYP PFNGLVIEWPORTPROC) ( GLint x, GLint y, + GLsizei width, GLsizei height ); + +typedef void (APIENTRYP PFNGLPUSHMATRIXPROC) ( void ); + +typedef void (APIENTRYP PFNGLPOPMATRIXPROC) ( void ); + +typedef void (APIENTRYP PFNGLLOADIDENTITYPROC) ( void ); + +typedef void (APIENTRYP PFNGLLOADMATRIXDPROC) ( const GLdouble *m ); +typedef void (APIENTRYP PFNGLLOADMATRIXFPROC) ( const GLfloat *m ); + +typedef void (APIENTRYP PFNGLMULTMATRIXDPROC) ( const GLdouble *m ); +typedef void (APIENTRYP PFNGLMULTMATRIXFPROC) ( const GLfloat *m ); + +typedef void (APIENTRYP PFNGLROTATEDPROC) ( GLdouble angle, + GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLROTATEFPROC) ( GLfloat angle, + GLfloat x, GLfloat y, GLfloat z ); + +typedef void (APIENTRYP PFNGLSCALEDPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLSCALEFPROC) ( GLfloat x, GLfloat y, GLfloat z ); + +typedef void (APIENTRYP PFNGLTRANSLATEDPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLTRANSLATEFPROC) ( GLfloat x, GLfloat y, GLfloat z ); + + +/* + * Display Lists + */ + +typedef GLboolean (APIENTRYP PFNGLISLISTPROC) ( GLuint list ); + +typedef void (APIENTRYP PFNGLDELETELISTSPROC) ( GLuint list, GLsizei range ); + +typedef GLuint (APIENTRYP PFNGLGENLISTSPROC) ( GLsizei range ); + +typedef void (APIENTRYP PFNGLNEWLISTPROC) ( GLuint list, GLenum mode ); + +typedef void (APIENTRYP PFNGLENDLISTPROC) ( void ); + +typedef void (APIENTRYP PFNGLCALLLISTPROC) ( GLuint list ); + +typedef void (APIENTRYP PFNGLCALLLISTSPROC) ( GLsizei n, GLenum type, + const GLvoid *lists ); + +typedef void (APIENTRYP PFNGLLISTBASEPROC) ( GLuint base ); + + +/* + * Drawing Functions + */ + +typedef void (APIENTRYP PFNGLBEGINPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLENDPROC) ( void ); + + +typedef void (APIENTRYP PFNGLVERTEX2DPROC) ( GLdouble x, GLdouble y ); +typedef void (APIENTRYP PFNGLVERTEX2FPROC) ( GLfloat x, GLfloat y ); +typedef void (APIENTRYP PFNGLVERTEX2IPROC) ( GLint x, GLint y ); +typedef void (APIENTRYP PFNGLVERTEX2SPROC) ( GLshort x, GLshort y ); + +typedef void (APIENTRYP PFNGLVERTEX3DPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLVERTEX3FPROC) ( GLfloat x, GLfloat y, GLfloat z ); +typedef void (APIENTRYP PFNGLVERTEX3IPROC) ( GLint x, GLint y, GLint z ); +typedef void (APIENTRYP PFNGLVERTEX3SPROC) ( GLshort x, GLshort y, GLshort z ); + +typedef void (APIENTRYP PFNGLVERTEX4DPROC) ( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +typedef void (APIENTRYP PFNGLVERTEX4FPROC) ( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +typedef void (APIENTRYP PFNGLVERTEX4IPROC) ( GLint x, GLint y, GLint z, GLint w ); +typedef void (APIENTRYP PFNGLVERTEX4SPROC) ( GLshort x, GLshort y, GLshort z, GLshort w ); + +typedef void (APIENTRYP PFNGLVERTEX2DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLVERTEX2FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLVERTEX2IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLVERTEX2SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLVERTEX3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLVERTEX3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLVERTEX3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLVERTEX3SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLVERTEX4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLVERTEX4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLVERTEX4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLVERTEX4SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLNORMAL3BPROC) ( GLbyte nx, GLbyte ny, GLbyte nz ); +typedef void (APIENTRYP PFNGLNORMAL3DPROC) ( GLdouble nx, GLdouble ny, GLdouble nz ); +typedef void (APIENTRYP PFNGLNORMAL3FPROC) ( GLfloat nx, GLfloat ny, GLfloat nz ); +typedef void (APIENTRYP PFNGLNORMAL3IPROC) ( GLint nx, GLint ny, GLint nz ); +typedef void (APIENTRYP PFNGLNORMAL3SPROC) ( GLshort nx, GLshort ny, GLshort nz ); + +typedef void (APIENTRYP PFNGLNORMAL3BVPROC) ( const GLbyte *v ); +typedef void (APIENTRYP PFNGLNORMAL3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLNORMAL3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLNORMAL3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLNORMAL3SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLINDEXDPROC) ( GLdouble c ); +typedef void (APIENTRYP PFNGLINDEXFPROC) ( GLfloat c ); +typedef void (APIENTRYP PFNGLINDEXIPROC) ( GLint c ); +typedef void (APIENTRYP PFNGLINDEXSPROC) ( GLshort c ); +typedef void (APIENTRYP PFNGLINDEXUBPROC) ( GLubyte c ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLINDEXDVPROC) ( const GLdouble *c ); +typedef void (APIENTRYP PFNGLINDEXFVPROC) ( const GLfloat *c ); +typedef void (APIENTRYP PFNGLINDEXIVPROC) ( const GLint *c ); +typedef void (APIENTRYP PFNGLINDEXSVPROC) ( const GLshort *c ); +typedef void (APIENTRYP PFNGLINDEXUBVPROC) ( const GLubyte *c ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLCOLOR3BPROC) ( GLbyte red, GLbyte green, GLbyte blue ); +typedef void (APIENTRYP PFNGLCOLOR3DPROC) ( GLdouble red, GLdouble green, GLdouble blue ); +typedef void (APIENTRYP PFNGLCOLOR3FPROC) ( GLfloat red, GLfloat green, GLfloat blue ); +typedef void (APIENTRYP PFNGLCOLOR3IPROC) ( GLint red, GLint green, GLint blue ); +typedef void (APIENTRYP PFNGLCOLOR3SPROC) ( GLshort red, GLshort green, GLshort blue ); +typedef void (APIENTRYP PFNGLCOLOR3UBPROC) ( GLubyte red, GLubyte green, GLubyte blue ); +typedef void (APIENTRYP PFNGLCOLOR3UIPROC) ( GLuint red, GLuint green, GLuint blue ); +typedef void (APIENTRYP PFNGLCOLOR3USPROC) ( GLushort red, GLushort green, GLushort blue ); + +typedef void (APIENTRYP PFNGLCOLOR4BPROC) ( GLbyte red, GLbyte green, + GLbyte blue, GLbyte alpha ); +typedef void (APIENTRYP PFNGLCOLOR4DPROC) ( GLdouble red, GLdouble green, + GLdouble blue, GLdouble alpha ); +typedef void (APIENTRYP PFNGLCOLOR4FPROC) ( GLfloat red, GLfloat green, + GLfloat blue, GLfloat alpha ); +typedef void (APIENTRYP PFNGLCOLOR4IPROC) ( GLint red, GLint green, + GLint blue, GLint alpha ); +typedef void (APIENTRYP PFNGLCOLOR4SPROC) ( GLshort red, GLshort green, + GLshort blue, GLshort alpha ); +typedef void (APIENTRYP PFNGLCOLOR4UBPROC) ( GLubyte red, GLubyte green, + GLubyte blue, GLubyte alpha ); +typedef void (APIENTRYP PFNGLCOLOR4UIPROC) ( GLuint red, GLuint green, + GLuint blue, GLuint alpha ); +typedef void (APIENTRYP PFNGLCOLOR4USPROC) ( GLushort red, GLushort green, + GLushort blue, GLushort alpha ); + + +typedef void (APIENTRYP PFNGLCOLOR3BVPROC) ( const GLbyte *v ); +typedef void (APIENTRYP PFNGLCOLOR3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLCOLOR3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLCOLOR3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLCOLOR3SVPROC) ( const GLshort *v ); +typedef void (APIENTRYP PFNGLCOLOR3UBVPROC) ( const GLubyte *v ); +typedef void (APIENTRYP PFNGLCOLOR3UIVPROC) ( const GLuint *v ); +typedef void (APIENTRYP PFNGLCOLOR3USVPROC) ( const GLushort *v ); + +typedef void (APIENTRYP PFNGLCOLOR4BVPROC) ( const GLbyte *v ); +typedef void (APIENTRYP PFNGLCOLOR4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLCOLOR4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLCOLOR4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLCOLOR4SVPROC) ( const GLshort *v ); +typedef void (APIENTRYP PFNGLCOLOR4UBVPROC) ( const GLubyte *v ); +typedef void (APIENTRYP PFNGLCOLOR4UIVPROC) ( const GLuint *v ); +typedef void (APIENTRYP PFNGLCOLOR4USVPROC) ( const GLushort *v ); + + +typedef void (APIENTRYP PFNGLTEXCOORD1DPROC) ( GLdouble s ); +typedef void (APIENTRYP PFNGLTEXCOORD1FPROC) ( GLfloat s ); +typedef void (APIENTRYP PFNGLTEXCOORD1IPROC) ( GLint s ); +typedef void (APIENTRYP PFNGLTEXCOORD1SPROC) ( GLshort s ); + +typedef void (APIENTRYP PFNGLTEXCOORD2DPROC) ( GLdouble s, GLdouble t ); +typedef void (APIENTRYP PFNGLTEXCOORD2FPROC) ( GLfloat s, GLfloat t ); +typedef void (APIENTRYP PFNGLTEXCOORD2IPROC) ( GLint s, GLint t ); +typedef void (APIENTRYP PFNGLTEXCOORD2SPROC) ( GLshort s, GLshort t ); + +typedef void (APIENTRYP PFNGLTEXCOORD3DPROC) ( GLdouble s, GLdouble t, GLdouble r ); +typedef void (APIENTRYP PFNGLTEXCOORD3FPROC) ( GLfloat s, GLfloat t, GLfloat r ); +typedef void (APIENTRYP PFNGLTEXCOORD3IPROC) ( GLint s, GLint t, GLint r ); +typedef void (APIENTRYP PFNGLTEXCOORD3SPROC) ( GLshort s, GLshort t, GLshort r ); + +typedef void (APIENTRYP PFNGLTEXCOORD4DPROC) ( GLdouble s, GLdouble t, GLdouble r, GLdouble q ); +typedef void (APIENTRYP PFNGLTEXCOORD4FPROC) ( GLfloat s, GLfloat t, GLfloat r, GLfloat q ); +typedef void (APIENTRYP PFNGLTEXCOORD4IPROC) ( GLint s, GLint t, GLint r, GLint q ); +typedef void (APIENTRYP PFNGLTEXCOORD4SPROC) ( GLshort s, GLshort t, GLshort r, GLshort q ); + +typedef void (APIENTRYP PFNGLTEXCOORD1DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD1FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD1IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD1SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLTEXCOORD2DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD2FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD2IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD2SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLTEXCOORD3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD3SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLTEXCOORD4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD4SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLRASTERPOS2DPROC) ( GLdouble x, GLdouble y ); +typedef void (APIENTRYP PFNGLRASTERPOS2FPROC) ( GLfloat x, GLfloat y ); +typedef void (APIENTRYP PFNGLRASTERPOS2IPROC) ( GLint x, GLint y ); +typedef void (APIENTRYP PFNGLRASTERPOS2SPROC) ( GLshort x, GLshort y ); + +typedef void (APIENTRYP PFNGLRASTERPOS3DPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLRASTERPOS3FPROC) ( GLfloat x, GLfloat y, GLfloat z ); +typedef void (APIENTRYP PFNGLRASTERPOS3IPROC) ( GLint x, GLint y, GLint z ); +typedef void (APIENTRYP PFNGLRASTERPOS3SPROC) ( GLshort x, GLshort y, GLshort z ); + +typedef void (APIENTRYP PFNGLRASTERPOS4DPROC) ( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +typedef void (APIENTRYP PFNGLRASTERPOS4FPROC) ( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +typedef void (APIENTRYP PFNGLRASTERPOS4IPROC) ( GLint x, GLint y, GLint z, GLint w ); +typedef void (APIENTRYP PFNGLRASTERPOS4SPROC) ( GLshort x, GLshort y, GLshort z, GLshort w ); + +typedef void (APIENTRYP PFNGLRASTERPOS2DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLRASTERPOS2FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLRASTERPOS2IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLRASTERPOS2SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLRASTERPOS3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLRASTERPOS3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLRASTERPOS3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLRASTERPOS3SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLRASTERPOS4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLRASTERPOS4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLRASTERPOS4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLRASTERPOS4SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLRECTDPROC) ( GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2 ); +typedef void (APIENTRYP PFNGLRECTFPROC) ( GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2 ); +typedef void (APIENTRYP PFNGLRECTIPROC) ( GLint x1, GLint y1, GLint x2, GLint y2 ); +typedef void (APIENTRYP PFNGLRECTSPROC) ( GLshort x1, GLshort y1, GLshort x2, GLshort y2 ); + + +typedef void (APIENTRYP PFNGLRECTDVPROC) ( const GLdouble *v1, const GLdouble *v2 ); +typedef void (APIENTRYP PFNGLRECTFVPROC) ( const GLfloat *v1, const GLfloat *v2 ); +typedef void (APIENTRYP PFNGLRECTIVPROC) ( const GLint *v1, const GLint *v2 ); +typedef void (APIENTRYP PFNGLRECTSVPROC) ( const GLshort *v1, const GLshort *v2 ); + + +/* + * Vertex Arrays (1.1) + */ + +typedef void (APIENTRYP PFNGLVERTEXPOINTERPROC) ( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLNORMALPOINTERPROC) ( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLCOLORPOINTERPROC) ( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLINDEXPOINTERPROC) ( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERPROC) ( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTERPROC) ( GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLGETPOINTERVPROC) ( GLenum pname, GLvoid **params ); + +typedef void (APIENTRYP PFNGLARRAYELEMENTPROC) ( GLint i ); + +typedef void (APIENTRYP PFNGLDRAWARRAYSPROC) ( GLenum mode, GLint first, GLsizei count ); + +typedef void (APIENTRYP PFNGLDRAWELEMENTSPROC) ( GLenum mode, GLsizei count, + GLenum type, const GLvoid *indices ); + +typedef void (APIENTRYP PFNGLINTERLEAVEDARRAYSPROC) ( GLenum format, GLsizei stride, + const GLvoid *pointer ); + +/* + * Lighting + */ + +typedef void (APIENTRYP PFNGLSHADEMODELPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLLIGHTFPROC) ( GLenum light, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLLIGHTIPROC) ( GLenum light, GLenum pname, GLint param ); +typedef void (APIENTRYP PFNGLLIGHTFVPROC) ( GLenum light, GLenum pname, + const GLfloat *params ); +typedef void (APIENTRYP PFNGLLIGHTIVPROC) ( GLenum light, GLenum pname, + const GLint *params ); + +typedef void (APIENTRYP PFNGLGETLIGHTFVPROC) ( GLenum light, GLenum pname, + GLfloat *params ); +typedef void (APIENTRYP PFNGLGETLIGHTIVPROC) ( GLenum light, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLLIGHTMODELFPROC) ( GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLLIGHTMODELIPROC) ( GLenum pname, GLint param ); +typedef void (APIENTRYP PFNGLLIGHTMODELFVPROC) ( GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLLIGHTMODELIVPROC) ( GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLMATERIALFPROC) ( GLenum face, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLMATERIALIPROC) ( GLenum face, GLenum pname, GLint param ); +typedef void (APIENTRYP PFNGLMATERIALFVPROC) ( GLenum face, GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLMATERIALIVPROC) ( GLenum face, GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLGETMATERIALFVPROC) ( GLenum face, GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETMATERIALIVPROC) ( GLenum face, GLenum pname, GLint *params ); + +typedef void (APIENTRYP PFNGLCOLORMATERIALPROC) ( GLenum face, GLenum mode ); + + +/* + * Raster functions + */ + +typedef void (APIENTRYP PFNGLPIXELZOOMPROC) ( GLfloat xfactor, GLfloat yfactor ); + +typedef void (APIENTRYP PFNGLPIXELSTOREFPROC) ( GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLPIXELSTOREIPROC) ( GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLPIXELTRANSFERFPROC) ( GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLPIXELTRANSFERIPROC) ( GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLPIXELMAPFVPROC) ( GLenum map, GLsizei mapsize, + const GLfloat *values ); +typedef void (APIENTRYP PFNGLPIXELMAPUIVPROC) ( GLenum map, GLsizei mapsize, + const GLuint *values ); +typedef void (APIENTRYP PFNGLPIXELMAPUSVPROC) ( GLenum map, GLsizei mapsize, + const GLushort *values ); + +typedef void (APIENTRYP PFNGLGETPIXELMAPFVPROC) ( GLenum map, GLfloat *values ); +typedef void (APIENTRYP PFNGLGETPIXELMAPUIVPROC) ( GLenum map, GLuint *values ); +typedef void (APIENTRYP PFNGLGETPIXELMAPUSVPROC) ( GLenum map, GLushort *values ); + +typedef void (APIENTRYP PFNGLBITMAPPROC) ( GLsizei width, GLsizei height, + GLfloat xorig, GLfloat yorig, + GLfloat xmove, GLfloat ymove, + const GLubyte *bitmap ); + +typedef void (APIENTRYP PFNGLREADPIXELSPROC) ( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLDRAWPIXELSPROC) ( GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLCOPYPIXELSPROC) ( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum type ); + +/* + * Stenciling + */ + +typedef void (APIENTRYP PFNGLSTENCILFUNCPROC) ( GLenum func, GLint ref, GLuint mask ); + +typedef void (APIENTRYP PFNGLSTENCILMASKPROC) ( GLuint mask ); + +typedef void (APIENTRYP PFNGLSTENCILOPPROC) ( GLenum fail, GLenum zfail, GLenum zpass ); + +typedef void (APIENTRYP PFNGLCLEARSTENCILPROC) ( GLint s ); + + + +/* + * Texture mapping + */ + +typedef void (APIENTRYP PFNGLTEXGENDPROC) ( GLenum coord, GLenum pname, GLdouble param ); +typedef void (APIENTRYP PFNGLTEXGENFPROC) ( GLenum coord, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLTEXGENIPROC) ( GLenum coord, GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLTEXGENDVPROC) ( GLenum coord, GLenum pname, const GLdouble *params ); +typedef void (APIENTRYP PFNGLTEXGENFVPROC) ( GLenum coord, GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLTEXGENIVPROC) ( GLenum coord, GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXGENDVPROC) ( GLenum coord, GLenum pname, GLdouble *params ); +typedef void (APIENTRYP PFNGLGETTEXGENFVPROC) ( GLenum coord, GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETTEXGENIVPROC) ( GLenum coord, GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLTEXENVFPROC) ( GLenum target, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLTEXENVIPROC) ( GLenum target, GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLTEXENVFVPROC) ( GLenum target, GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLTEXENVIVPROC) ( GLenum target, GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXENVFVPROC) ( GLenum target, GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETTEXENVIVPROC) ( GLenum target, GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLTEXPARAMETERFPROC) ( GLenum target, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLTEXPARAMETERIPROC) ( GLenum target, GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLTEXPARAMETERFVPROC) ( GLenum target, GLenum pname, + const GLfloat *params ); +typedef void (APIENTRYP PFNGLTEXPARAMETERIVPROC) ( GLenum target, GLenum pname, + const GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXPARAMETERFVPROC) ( GLenum target, + GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIVPROC) ( GLenum target, + GLenum pname, GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERFVPROC) ( GLenum target, GLint level, + GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERIVPROC) ( GLenum target, GLint level, + GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLTEXIMAGE1DPROC) ( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLTEXIMAGE2DPROC) ( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLint border, GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLGETTEXIMAGEPROC) ( GLenum target, GLint level, + GLenum format, GLenum type, + GLvoid *pixels ); + + +/* 1.1 functions */ + +typedef void (APIENTRYP PFNGLGENTEXTURESPROC) ( GLsizei n, GLuint *textures ); + +typedef void (APIENTRYP PFNGLDELETETEXTURESPROC) ( GLsizei n, const GLuint *textures); + +typedef void (APIENTRYP PFNGLBINDTEXTUREPROC) ( GLenum target, GLuint texture ); + +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESPROC) ( GLsizei n, + const GLuint *textures, + const GLclampf *priorities ); + +typedef GLboolean (APIENTRYP PFNGLARETEXTURESRESIDENTPROC) ( GLsizei n, + const GLuint *textures, + GLboolean *residences ); + +typedef GLboolean (APIENTRYP PFNGLISTEXTUREPROC) ( GLuint texture ); + + +typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DPROC) ( GLenum target, GLint level, + GLint xoffset, + GLsizei width, GLenum format, + GLenum type, const GLvoid *pixels ); + + +typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + + +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DPROC) ( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLint border ); + + +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DPROC) ( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLsizei height, + GLint border ); + + +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint x, GLint y, + GLsizei width ); + + +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint x, GLint y, + GLsizei width, GLsizei height ); + + +/* + * Evaluators + */ + +typedef void (APIENTRYP PFNGLMAP1DPROC) ( GLenum target, GLdouble u1, GLdouble u2, + GLint stride, + GLint order, const GLdouble *points ); +typedef void (APIENTRYP PFNGLMAP1FPROC) ( GLenum target, GLfloat u1, GLfloat u2, + GLint stride, + GLint order, const GLfloat *points ); + +typedef void (APIENTRYP PFNGLMAP2DPROC) ( GLenum target, + GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, + GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, + const GLdouble *points ); +typedef void (APIENTRYP PFNGLMAP2FPROC) ( GLenum target, + GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, + GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, + const GLfloat *points ); + +typedef void (APIENTRYP PFNGLGETMAPDVPROC) ( GLenum target, GLenum query, GLdouble *v ); +typedef void (APIENTRYP PFNGLGETMAPFVPROC) ( GLenum target, GLenum query, GLfloat *v ); +typedef void (APIENTRYP PFNGLGETMAPIVPROC) ( GLenum target, GLenum query, GLint *v ); + +typedef void (APIENTRYP PFNGLEVALCOORD1DPROC) ( GLdouble u ); +typedef void (APIENTRYP PFNGLEVALCOORD1FPROC) ( GLfloat u ); + +typedef void (APIENTRYP PFNGLEVALCOORD1DVPROC) ( const GLdouble *u ); +typedef void (APIENTRYP PFNGLEVALCOORD1FVPROC) ( const GLfloat *u ); + +typedef void (APIENTRYP PFNGLEVALCOORD2DPROC) ( GLdouble u, GLdouble v ); +typedef void (APIENTRYP PFNGLEVALCOORD2FPROC) ( GLfloat u, GLfloat v ); + +typedef void (APIENTRYP PFNGLEVALCOORD2DVPROC) ( const GLdouble *u ); +typedef void (APIENTRYP PFNGLEVALCOORD2FVPROC) ( const GLfloat *u ); + +typedef void (APIENTRYP PFNGLMAPGRID1DPROC) ( GLint un, GLdouble u1, GLdouble u2 ); +typedef void (APIENTRYP PFNGLMAPGRID1FPROC) ( GLint un, GLfloat u1, GLfloat u2 ); + +typedef void (APIENTRYP PFNGLMAPGRID2DPROC) ( GLint un, GLdouble u1, GLdouble u2, + GLint vn, GLdouble v1, GLdouble v2 ); +typedef void (APIENTRYP PFNGLMAPGRID2FPROC) ( GLint un, GLfloat u1, GLfloat u2, + GLint vn, GLfloat v1, GLfloat v2 ); + +typedef void (APIENTRYP PFNGLEVALPOINT1PROC) ( GLint i ); + +typedef void (APIENTRYP PFNGLEVALPOINT2PROC) ( GLint i, GLint j ); + +typedef void (APIENTRYP PFNGLEVALMESH1PROC) ( GLenum mode, GLint i1, GLint i2 ); + +typedef void (APIENTRYP PFNGLEVALMESH2PROC) ( GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 ); + + +/* + * Fog + */ + +typedef void (APIENTRYP PFNGLFOGFPROC) ( GLenum pname, GLfloat param ); + +typedef void (APIENTRYP PFNGLFOGIPROC) ( GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLFOGFVPROC) ( GLenum pname, const GLfloat *params ); + +typedef void (APIENTRYP PFNGLFOGIVPROC) ( GLenum pname, const GLint *params ); + + +/* + * Selection and Feedback + */ + +typedef void (APIENTRYP PFNGLFEEDBACKBUFFERPROC) ( GLsizei size, GLenum type, GLfloat *buffer ); + +typedef void (APIENTRYP PFNGLPASSTHROUGHPROC) ( GLfloat token ); + +typedef void (APIENTRYP PFNGLSELECTBUFFERPROC) ( GLsizei size, GLuint *buffer ); + +typedef void (APIENTRYP PFNGLINITNAMESPROC) ( void ); + +typedef void (APIENTRYP PFNGLLOADNAMEPROC) ( GLuint name ); + +typedef void (APIENTRYP PFNGLPUSHNAMEPROC) ( GLuint name ); + +typedef void (APIENTRYP PFNGLPOPNAMEPROC) ( void ); +#endif + + +/* + * OpenGL 1.2 + */ + +#define GL_RESCALE_NORMAL 0x803A +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_MAX_ELEMENTS_VERTICES 0x80E8 +#define GL_MAX_ELEMENTS_INDICES 0x80E9 +#define GL_BGR 0x80E0 +#define GL_BGRA 0x80E1 +#define GL_UNSIGNED_BYTE_3_3_2 0x8032 +#define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 +#define GL_UNSIGNED_INT_8_8_8_8 0x8035 +#define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 +#define GL_UNSIGNED_INT_10_10_10_2 0x8036 +#define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 +#define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8 +#define GL_SINGLE_COLOR 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR 0x81FA +#define GL_TEXTURE_MIN_LOD 0x813A +#define GL_TEXTURE_MAX_LOD 0x813B +#define GL_TEXTURE_BASE_LEVEL 0x813C +#define GL_TEXTURE_MAX_LEVEL 0x813D +#define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 +#define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 +#define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_PACK_SKIP_IMAGES 0x806B +#define GL_PACK_IMAGE_HEIGHT 0x806C +#define GL_UNPACK_SKIP_IMAGES 0x806D +#define GL_UNPACK_IMAGE_HEIGHT 0x806E +#define GL_TEXTURE_3D 0x806F +#define GL_PROXY_TEXTURE_3D 0x8070 +#define GL_TEXTURE_DEPTH 0x8071 +#define GL_TEXTURE_WRAP_R 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE 0x8073 +#define GL_TEXTURE_BINDING_3D 0x806A + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glDrawRangeElements( GLenum mode, GLuint start, + GLuint end, GLsizei count, GLenum type, const GLvoid *indices ); + +GLAPI void GLAPIENTRY glTexImage3D( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLsizei depth, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glTexSubImage3D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLsizei width, + GLsizei height, GLsizei depth, + GLenum format, + GLenum type, const GLvoid *pixels); + +GLAPI void GLAPIENTRY glCopyTexSubImage3D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLint x, + GLint y, GLsizei width, + GLsizei height ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) ( GLenum mode, GLuint start, + GLuint end, GLsizei count, GLenum type, const GLvoid *indices ); + +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) ( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLsizei depth, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLsizei width, + GLsizei height, GLsizei depth, + GLenum format, + GLenum type, const GLvoid *pixels); + +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLint x, + GLint y, GLsizei width, + GLsizei height ); + +#endif + +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices); +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); + + +/* + * GL_ARB_imaging + */ + +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_COLOR_TABLE 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2 +#define GL_PROXY_COLOR_TABLE 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5 +#define GL_COLOR_TABLE_SCALE 0x80D6 +#define GL_COLOR_TABLE_BIAS 0x80D7 +#define GL_COLOR_TABLE_FORMAT 0x80D8 +#define GL_COLOR_TABLE_WIDTH 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF +#define GL_CONVOLUTION_1D 0x8010 +#define GL_CONVOLUTION_2D 0x8011 +#define GL_SEPARABLE_2D 0x8012 +#define GL_CONVOLUTION_BORDER_MODE 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS 0x8015 +#define GL_REDUCE 0x8016 +#define GL_CONVOLUTION_FORMAT 0x8017 +#define GL_CONVOLUTION_WIDTH 0x8018 +#define GL_CONVOLUTION_HEIGHT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023 +#define GL_CONSTANT_BORDER 0x8151 +#define GL_REPLICATE_BORDER 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR 0x8154 +#define GL_COLOR_MATRIX 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB +#define GL_HISTOGRAM 0x8024 +#define GL_PROXY_HISTOGRAM 0x8025 +#define GL_HISTOGRAM_WIDTH 0x8026 +#define GL_HISTOGRAM_FORMAT 0x8027 +#define GL_HISTOGRAM_RED_SIZE 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C +#define GL_HISTOGRAM_SINK 0x802D +#define GL_MINMAX 0x802E +#define GL_MINMAX_FORMAT 0x802F +#define GL_MINMAX_SINK 0x8030 +#define GL_TABLE_TOO_LARGE 0x8031 +#define GL_BLEND_EQUATION 0x8009 +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +#define GL_FUNC_ADD 0x8006 +#define GL_FUNC_SUBTRACT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_BLEND_COLOR 0x8005 + + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glColorTable( GLenum target, GLenum internalformat, + GLsizei width, GLenum format, + GLenum type, const GLvoid *table ); + +GLAPI void GLAPIENTRY glColorSubTable( GLenum target, + GLsizei start, GLsizei count, + GLenum format, GLenum type, + const GLvoid *data ); + +GLAPI void GLAPIENTRY glColorTableParameteriv(GLenum target, GLenum pname, + const GLint *params); + +GLAPI void GLAPIENTRY glColorTableParameterfv(GLenum target, GLenum pname, + const GLfloat *params); + +GLAPI void GLAPIENTRY glCopyColorSubTable( GLenum target, GLsizei start, + GLint x, GLint y, GLsizei width ); + +GLAPI void GLAPIENTRY glCopyColorTable( GLenum target, GLenum internalformat, + GLint x, GLint y, GLsizei width ); + +GLAPI void GLAPIENTRY glGetColorTable( GLenum target, GLenum format, + GLenum type, GLvoid *table ); + +GLAPI void GLAPIENTRY glGetColorTableParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetColorTableParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glBlendEquation( GLenum mode ); + +GLAPI void GLAPIENTRY glBlendColor( GLclampf red, GLclampf green, + GLclampf blue, GLclampf alpha ); + +GLAPI void GLAPIENTRY glHistogram( GLenum target, GLsizei width, + GLenum internalformat, GLboolean sink ); + +GLAPI void GLAPIENTRY glResetHistogram( GLenum target ); + +GLAPI void GLAPIENTRY glGetHistogram( GLenum target, GLboolean reset, + GLenum format, GLenum type, + GLvoid *values ); + +GLAPI void GLAPIENTRY glGetHistogramParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetHistogramParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glMinmax( GLenum target, GLenum internalformat, + GLboolean sink ); + +GLAPI void GLAPIENTRY glResetMinmax( GLenum target ); + +GLAPI void GLAPIENTRY glGetMinmax( GLenum target, GLboolean reset, + GLenum format, GLenum types, + GLvoid *values ); + +GLAPI void GLAPIENTRY glGetMinmaxParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetMinmaxParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glConvolutionFilter1D( GLenum target, + GLenum internalformat, GLsizei width, GLenum format, GLenum type, + const GLvoid *image ); + +GLAPI void GLAPIENTRY glConvolutionFilter2D( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *image ); + +GLAPI void GLAPIENTRY glConvolutionParameterf( GLenum target, GLenum pname, + GLfloat params ); + +GLAPI void GLAPIENTRY glConvolutionParameterfv( GLenum target, GLenum pname, + const GLfloat *params ); + +GLAPI void GLAPIENTRY glConvolutionParameteri( GLenum target, GLenum pname, + GLint params ); + +GLAPI void GLAPIENTRY glConvolutionParameteriv( GLenum target, GLenum pname, + const GLint *params ); + +GLAPI void GLAPIENTRY glCopyConvolutionFilter1D( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width ); + +GLAPI void GLAPIENTRY glCopyConvolutionFilter2D( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width, + GLsizei height); + +GLAPI void GLAPIENTRY glGetConvolutionFilter( GLenum target, GLenum format, + GLenum type, GLvoid *image ); + +GLAPI void GLAPIENTRY glGetConvolutionParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetConvolutionParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glSeparableFilter2D( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *row, const GLvoid *column ); + +GLAPI void GLAPIENTRY glGetSeparableFilter( GLenum target, GLenum format, + GLenum type, GLvoid *row, GLvoid *column, GLvoid *span ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLCOLORTABLEPROC) ( GLenum target, GLenum internalformat, + GLsizei width, GLenum format, + GLenum type, const GLvoid *table ); + +typedef void (APIENTRYP PFNGLCOLORSUBTABLEPROC) ( GLenum target, + GLsizei start, GLsizei count, + GLenum format, GLenum type, + const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, + const GLint *params); + +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, + const GLfloat *params); + +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEPROC) ( GLenum target, GLsizei start, + GLint x, GLint y, GLsizei width ); + +typedef void (APIENTRYP PFNGLCOPYCOLORTABLEPROC) ( GLenum target, GLenum internalformat, + GLint x, GLint y, GLsizei width ); + +typedef void (APIENTRYP PFNGLGETCOLORTABLEPROC) ( GLenum target, GLenum format, + GLenum type, GLvoid *table ); + +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLBLENDCOLORPROC) ( GLclampf red, GLclampf green, + GLclampf blue, GLclampf alpha ); + +typedef void (APIENTRYP PFNGLHISTOGRAMPROC) ( GLenum target, GLsizei width, + GLenum internalformat, GLboolean sink ); + +typedef void (APIENTRYP PFNGLRESETHISTOGRAMPROC) ( GLenum target ); + +typedef void (APIENTRYP PFNGLGETHISTOGRAMPROC) ( GLenum target, GLboolean reset, + GLenum format, GLenum type, + GLvoid *values ); + +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLMINMAXPROC) ( GLenum target, GLenum internalformat, + GLboolean sink ); + +typedef void (APIENTRYP PFNGLRESETMINMAXPROC) ( GLenum target ); + +typedef void (APIENTRYP PFNGLGETMINMAXPROC) ( GLenum target, GLboolean reset, + GLenum format, GLenum types, + GLvoid *values ); + +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DPROC) ( GLenum target, + GLenum internalformat, GLsizei width, GLenum format, GLenum type, + const GLvoid *image ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DPROC) ( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *image ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFPROC) ( GLenum target, GLenum pname, + GLfloat params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVPROC) ( GLenum target, GLenum pname, + const GLfloat *params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIPROC) ( GLenum target, GLenum pname, + GLint params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVPROC) ( GLenum target, GLenum pname, + const GLint *params ); + +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DPROC) ( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width ); + +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DPROC) ( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width, + GLsizei height); + +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTERPROC) ( GLenum target, GLenum format, + GLenum type, GLvoid *image ); + +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DPROC) ( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *row, const GLvoid *column ); + +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTERPROC) ( GLenum target, GLenum format, + GLenum type, GLvoid *row, GLvoid *column, GLvoid *span ); + +#endif + + + + +/* + * OpenGL 1.3 + */ + +/* multitexture */ +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE 0x84E1 +#define GL_MAX_TEXTURE_UNITS 0x84E2 +/* texture_cube_map */ +#define GL_NORMAL_MAP 0x8511 +#define GL_REFLECTION_MAP 0x8512 +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +/* texture_compression */ +#define GL_COMPRESSED_ALPHA 0x84E9 +#define GL_COMPRESSED_LUMINANCE 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB +#define GL_COMPRESSED_INTENSITY 0x84EC +#define GL_COMPRESSED_RGB 0x84ED +#define GL_COMPRESSED_RGBA 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 +#define GL_TEXTURE_COMPRESSED 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +/* multisample */ +#define GL_MULTISAMPLE 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE 0x809F +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_MULTISAMPLE_BIT 0x20000000 +/* transpose_matrix */ +#define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX 0x84E6 +/* texture_env_combine */ +#define GL_COMBINE 0x8570 +#define GL_COMBINE_RGB 0x8571 +#define GL_COMBINE_ALPHA 0x8572 +#define GL_SOURCE0_RGB 0x8580 +#define GL_SOURCE1_RGB 0x8581 +#define GL_SOURCE2_RGB 0x8582 +#define GL_SOURCE0_ALPHA 0x8588 +#define GL_SOURCE1_ALPHA 0x8589 +#define GL_SOURCE2_ALPHA 0x858A +#define GL_OPERAND0_RGB 0x8590 +#define GL_OPERAND1_RGB 0x8591 +#define GL_OPERAND2_RGB 0x8592 +#define GL_OPERAND0_ALPHA 0x8598 +#define GL_OPERAND1_ALPHA 0x8599 +#define GL_OPERAND2_ALPHA 0x859A +#define GL_RGB_SCALE 0x8573 +#define GL_ADD_SIGNED 0x8574 +#define GL_INTERPOLATE 0x8575 +#define GL_SUBTRACT 0x84E7 +#define GL_CONSTANT 0x8576 +#define GL_PRIMARY_COLOR 0x8577 +#define GL_PREVIOUS 0x8578 +/* texture_env_dot3 */ +#define GL_DOT3_RGB 0x86AE +#define GL_DOT3_RGBA 0x86AF +/* texture_border_clamp */ +#define GL_CLAMP_TO_BORDER 0x812D + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glActiveTexture( GLenum texture ); + +GLAPI void GLAPIENTRY glClientActiveTexture( GLenum texture ); + +GLAPI void GLAPIENTRY glCompressedTexImage1D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexImage2D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexImage3D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexSubImage1D( GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexSubImage2D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexSubImage3D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glGetCompressedTexImage( GLenum target, GLint lod, GLvoid *img ); + +GLAPI void GLAPIENTRY glMultiTexCoord1d( GLenum target, GLdouble s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord1f( GLenum target, GLfloat s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord1i( GLenum target, GLint s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord1s( GLenum target, GLshort s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1sv( GLenum target, const GLshort *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2d( GLenum target, GLdouble s, GLdouble t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2f( GLenum target, GLfloat s, GLfloat t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2i( GLenum target, GLint s, GLint t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2s( GLenum target, GLshort s, GLshort t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2sv( GLenum target, const GLshort *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3d( GLenum target, GLdouble s, GLdouble t, GLdouble r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3f( GLenum target, GLfloat s, GLfloat t, GLfloat r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3i( GLenum target, GLint s, GLint t, GLint r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3s( GLenum target, GLshort s, GLshort t, GLshort r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3sv( GLenum target, const GLshort *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4d( GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4f( GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4i( GLenum target, GLint s, GLint t, GLint r, GLint q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4s( GLenum target, GLshort s, GLshort t, GLshort r, GLshort q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4sv( GLenum target, const GLshort *v ); + + +GLAPI void GLAPIENTRY glLoadTransposeMatrixd( const GLdouble m[16] ); + +GLAPI void GLAPIENTRY glLoadTransposeMatrixf( const GLfloat m[16] ); + +GLAPI void GLAPIENTRY glMultTransposeMatrixd( const GLdouble m[16] ); + +GLAPI void GLAPIENTRY glMultTransposeMatrixf( const GLfloat m[16] ); + +GLAPI void GLAPIENTRY glSampleCoverage( GLclampf value, GLboolean invert ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) ( GLenum texture ); + +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREPROC) ( GLenum texture ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) ( GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) ( GLenum target, GLint lod, GLvoid *img ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DPROC) ( GLenum target, GLdouble s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FPROC) ( GLenum target, GLfloat s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IPROC) ( GLenum target, GLint s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SPROC) ( GLenum target, GLshort s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVPROC) ( GLenum target, const GLshort *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DPROC) ( GLenum target, GLdouble s, GLdouble t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FPROC) ( GLenum target, GLfloat s, GLfloat t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IPROC) ( GLenum target, GLint s, GLint t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SPROC) ( GLenum target, GLshort s, GLshort t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVPROC) ( GLenum target, const GLshort *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DPROC) ( GLenum target, GLdouble s, GLdouble t, GLdouble r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FPROC) ( GLenum target, GLfloat s, GLfloat t, GLfloat r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IPROC) ( GLenum target, GLint s, GLint t, GLint r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SPROC) ( GLenum target, GLshort s, GLshort t, GLshort r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVPROC) ( GLenum target, const GLshort *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DPROC) ( GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FPROC) ( GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IPROC) ( GLenum target, GLint s, GLint t, GLint r, GLint q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SPROC) ( GLenum target, GLshort s, GLshort t, GLshort r, GLshort q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVPROC) ( GLenum target, const GLshort *v ); + + +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDPROC) ( const GLdouble m[16] ); + +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFPROC) ( const GLfloat m[16] ); + +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDPROC) ( const GLdouble m[16] ); + +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFPROC) ( const GLfloat m[16] ); + +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) ( GLclampf value, GLboolean invert ); + +#endif + + +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, GLvoid *img); + + + +/* + * GL_ARB_multitexture (ARB extension 1 and OpenGL 1.2.1) + */ +#ifndef GL_ARB_multitexture +#define GL_ARB_multitexture 1 + +#define GL_TEXTURE0_ARB 0x84C0 +#define GL_TEXTURE1_ARB 0x84C1 +#define GL_TEXTURE2_ARB 0x84C2 +#define GL_TEXTURE3_ARB 0x84C3 +#define GL_TEXTURE4_ARB 0x84C4 +#define GL_TEXTURE5_ARB 0x84C5 +#define GL_TEXTURE6_ARB 0x84C6 +#define GL_TEXTURE7_ARB 0x84C7 +#define GL_TEXTURE8_ARB 0x84C8 +#define GL_TEXTURE9_ARB 0x84C9 +#define GL_TEXTURE10_ARB 0x84CA +#define GL_TEXTURE11_ARB 0x84CB +#define GL_TEXTURE12_ARB 0x84CC +#define GL_TEXTURE13_ARB 0x84CD +#define GL_TEXTURE14_ARB 0x84CE +#define GL_TEXTURE15_ARB 0x84CF +#define GL_TEXTURE16_ARB 0x84D0 +#define GL_TEXTURE17_ARB 0x84D1 +#define GL_TEXTURE18_ARB 0x84D2 +#define GL_TEXTURE19_ARB 0x84D3 +#define GL_TEXTURE20_ARB 0x84D4 +#define GL_TEXTURE21_ARB 0x84D5 +#define GL_TEXTURE22_ARB 0x84D6 +#define GL_TEXTURE23_ARB 0x84D7 +#define GL_TEXTURE24_ARB 0x84D8 +#define GL_TEXTURE25_ARB 0x84D9 +#define GL_TEXTURE26_ARB 0x84DA +#define GL_TEXTURE27_ARB 0x84DB +#define GL_TEXTURE28_ARB 0x84DC +#define GL_TEXTURE29_ARB 0x84DD +#define GL_TEXTURE30_ARB 0x84DE +#define GL_TEXTURE31_ARB 0x84DF +#define GL_ACTIVE_TEXTURE_ARB 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1 +#define GL_MAX_TEXTURE_UNITS_ARB 0x84E2 + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glActiveTextureARB(GLenum texture); +GLAPI void GLAPIENTRY glClientActiveTextureARB(GLenum texture); +GLAPI void GLAPIENTRY glMultiTexCoord1dARB(GLenum target, GLdouble s); +GLAPI void GLAPIENTRY glMultiTexCoord1dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord1fARB(GLenum target, GLfloat s); +GLAPI void GLAPIENTRY glMultiTexCoord1fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord1iARB(GLenum target, GLint s); +GLAPI void GLAPIENTRY glMultiTexCoord1ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord1sARB(GLenum target, GLshort s); +GLAPI void GLAPIENTRY glMultiTexCoord1svARB(GLenum target, const GLshort *v); +GLAPI void GLAPIENTRY glMultiTexCoord2dARB(GLenum target, GLdouble s, GLdouble t); +GLAPI void GLAPIENTRY glMultiTexCoord2dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord2fARB(GLenum target, GLfloat s, GLfloat t); +GLAPI void GLAPIENTRY glMultiTexCoord2fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord2iARB(GLenum target, GLint s, GLint t); +GLAPI void GLAPIENTRY glMultiTexCoord2ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord2sARB(GLenum target, GLshort s, GLshort t); +GLAPI void GLAPIENTRY glMultiTexCoord2svARB(GLenum target, const GLshort *v); +GLAPI void GLAPIENTRY glMultiTexCoord3dARB(GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void GLAPIENTRY glMultiTexCoord3dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord3fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void GLAPIENTRY glMultiTexCoord3fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord3iARB(GLenum target, GLint s, GLint t, GLint r); +GLAPI void GLAPIENTRY glMultiTexCoord3ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord3sARB(GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void GLAPIENTRY glMultiTexCoord3svARB(GLenum target, const GLshort *v); +GLAPI void GLAPIENTRY glMultiTexCoord4dARB(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void GLAPIENTRY glMultiTexCoord4dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord4fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void GLAPIENTRY glMultiTexCoord4fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord4iARB(GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void GLAPIENTRY glMultiTexCoord4ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord4sARB(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void GLAPIENTRY glMultiTexCoord4svARB(GLenum target, const GLshort *v); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); + +#endif + +typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); + +#endif /* GL_ARB_multitexture */ + + + +/* + * Define this token if you want "old-style" header file behaviour (extensions + * defined in gl.h). Otherwise, extensions will be included from glext.h. + */ +#if !defined(NO_SDL_GLEXT) && !defined(GL_GLEXT_LEGACY) +#include +#endif /* GL_GLEXT_LEGACY */ + + + +/********************************************************************** + * Begin system-specific stuff + */ +#if defined(PRAGMA_EXPORT_SUPPORTED) +#pragma export off +#endif + +/* + * End system-specific stuff + **********************************************************************/ + + +#ifdef __cplusplus +} +#endif + +#endif /* __gl_h_ */ + +#endif /* !SDL_PLATFORM_IOS */ + +#endif /* SDL_opengl_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengl_glext.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengl_glext.h new file mode 100644 index 0000000..fa0f6c2 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengl_glext.h @@ -0,0 +1,13213 @@ +/* SDL modified the include guard to be compatible with Mesa and Apple include guards: + * - Mesa uses: __gl_glext_h_ + * - Apple uses: __glext_h_ */ +#if !defined(__glext_h_) && !defined(__gl_glext_h_) +#define __glext_h_ 1 +#define __gl_glext_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN 1 +#endif +#include +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif +#ifndef APIENTRYP +#define APIENTRYP APIENTRY * +#endif +#ifndef GLAPI +#define GLAPI extern +#endif + +#define GL_GLEXT_VERSION 20220530 + +/*#include */ +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ + +/* Generated C header for: + * API: gl + * Profile: compatibility + * Versions considered: .* + * Versions emitted: 1\.[2-9]|[234]\.[0-9] + * Default extensions included: gl + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_VERSION_1_2 +#define GL_VERSION_1_2 1 +#define GL_UNSIGNED_BYTE_3_3_2 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2 0x8036 +#define GL_TEXTURE_BINDING_3D 0x806A +#define GL_PACK_SKIP_IMAGES 0x806B +#define GL_PACK_IMAGE_HEIGHT 0x806C +#define GL_UNPACK_SKIP_IMAGES 0x806D +#define GL_UNPACK_IMAGE_HEIGHT 0x806E +#define GL_TEXTURE_3D 0x806F +#define GL_PROXY_TEXTURE_3D 0x8070 +#define GL_TEXTURE_DEPTH 0x8071 +#define GL_TEXTURE_WRAP_R 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE 0x8073 +#define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 +#define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 +#define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 +#define GL_BGR 0x80E0 +#define GL_BGRA 0x80E1 +#define GL_MAX_ELEMENTS_VERTICES 0x80E8 +#define GL_MAX_ELEMENTS_INDICES 0x80E9 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_TEXTURE_MIN_LOD 0x813A +#define GL_TEXTURE_MAX_LOD 0x813B +#define GL_TEXTURE_BASE_LEVEL 0x813C +#define GL_TEXTURE_MAX_LEVEL 0x813D +#define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 +#define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 +#define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_RESCALE_NORMAL 0x803A +#define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8 +#define GL_SINGLE_COLOR 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR 0x81FA +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawRangeElements (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +GLAPI void APIENTRY glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#endif +#endif /* GL_VERSION_1_2 */ + +#ifndef GL_VERSION_1_3 +#define GL_VERSION_1_3 1 +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_MULTISAMPLE 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE 0x809F +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +#define GL_COMPRESSED_RGB 0x84ED +#define GL_COMPRESSED_RGBA 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 +#define GL_TEXTURE_COMPRESSED 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +#define GL_CLAMP_TO_BORDER 0x812D +#define GL_CLIENT_ACTIVE_TEXTURE 0x84E1 +#define GL_MAX_TEXTURE_UNITS 0x84E2 +#define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX 0x84E6 +#define GL_MULTISAMPLE_BIT 0x20000000 +#define GL_NORMAL_MAP 0x8511 +#define GL_REFLECTION_MAP 0x8512 +#define GL_COMPRESSED_ALPHA 0x84E9 +#define GL_COMPRESSED_LUMINANCE 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB +#define GL_COMPRESSED_INTENSITY 0x84EC +#define GL_COMBINE 0x8570 +#define GL_COMBINE_RGB 0x8571 +#define GL_COMBINE_ALPHA 0x8572 +#define GL_SOURCE0_RGB 0x8580 +#define GL_SOURCE1_RGB 0x8581 +#define GL_SOURCE2_RGB 0x8582 +#define GL_SOURCE0_ALPHA 0x8588 +#define GL_SOURCE1_ALPHA 0x8589 +#define GL_SOURCE2_ALPHA 0x858A +#define GL_OPERAND0_RGB 0x8590 +#define GL_OPERAND1_RGB 0x8591 +#define GL_OPERAND2_RGB 0x8592 +#define GL_OPERAND0_ALPHA 0x8598 +#define GL_OPERAND1_ALPHA 0x8599 +#define GL_OPERAND2_ALPHA 0x859A +#define GL_RGB_SCALE 0x8573 +#define GL_ADD_SIGNED 0x8574 +#define GL_INTERPOLATE 0x8575 +#define GL_SUBTRACT 0x84E7 +#define GL_CONSTANT 0x8576 +#define GL_PRIMARY_COLOR 0x8577 +#define GL_PREVIOUS 0x8578 +#define GL_DOT3_RGB 0x86AE +#define GL_DOT3_RGBA 0x86AF +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLfloat value, GLboolean invert); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, void *img); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDPROC) (const GLdouble *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDPROC) (const GLdouble *m); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveTexture (GLenum texture); +GLAPI void APIENTRY glSampleCoverage (GLfloat value, GLboolean invert); +GLAPI void APIENTRY glCompressedTexImage3D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage1D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage1D (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glGetCompressedTexImage (GLenum target, GLint level, void *img); +GLAPI void APIENTRY glClientActiveTexture (GLenum texture); +GLAPI void APIENTRY glMultiTexCoord1d (GLenum target, GLdouble s); +GLAPI void APIENTRY glMultiTexCoord1dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord1f (GLenum target, GLfloat s); +GLAPI void APIENTRY glMultiTexCoord1fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord1i (GLenum target, GLint s); +GLAPI void APIENTRY glMultiTexCoord1iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord1s (GLenum target, GLshort s); +GLAPI void APIENTRY glMultiTexCoord1sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord2d (GLenum target, GLdouble s, GLdouble t); +GLAPI void APIENTRY glMultiTexCoord2dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord2f (GLenum target, GLfloat s, GLfloat t); +GLAPI void APIENTRY glMultiTexCoord2fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord2i (GLenum target, GLint s, GLint t); +GLAPI void APIENTRY glMultiTexCoord2iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord2s (GLenum target, GLshort s, GLshort t); +GLAPI void APIENTRY glMultiTexCoord2sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord3d (GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void APIENTRY glMultiTexCoord3dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord3f (GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void APIENTRY glMultiTexCoord3fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord3i (GLenum target, GLint s, GLint t, GLint r); +GLAPI void APIENTRY glMultiTexCoord3iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord3s (GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void APIENTRY glMultiTexCoord3sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord4d (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void APIENTRY glMultiTexCoord4dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord4f (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void APIENTRY glMultiTexCoord4fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord4i (GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void APIENTRY glMultiTexCoord4iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord4s (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void APIENTRY glMultiTexCoord4sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glLoadTransposeMatrixf (const GLfloat *m); +GLAPI void APIENTRY glLoadTransposeMatrixd (const GLdouble *m); +GLAPI void APIENTRY glMultTransposeMatrixf (const GLfloat *m); +GLAPI void APIENTRY glMultTransposeMatrixd (const GLdouble *m); +#endif +#endif /* GL_VERSION_1_3 */ + +#ifndef GL_VERSION_1_4 +#define GL_VERSION_1_4 1 +#define GL_BLEND_DST_RGB 0x80C8 +#define GL_BLEND_SRC_RGB 0x80C9 +#define GL_BLEND_DST_ALPHA 0x80CA +#define GL_BLEND_SRC_ALPHA 0x80CB +#define GL_POINT_FADE_THRESHOLD_SIZE 0x8128 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_DEPTH_COMPONENT24 0x81A6 +#define GL_DEPTH_COMPONENT32 0x81A7 +#define GL_MIRRORED_REPEAT 0x8370 +#define GL_MAX_TEXTURE_LOD_BIAS 0x84FD +#define GL_TEXTURE_LOD_BIAS 0x8501 +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 +#define GL_TEXTURE_DEPTH_SIZE 0x884A +#define GL_TEXTURE_COMPARE_MODE 0x884C +#define GL_TEXTURE_COMPARE_FUNC 0x884D +#define GL_POINT_SIZE_MIN 0x8126 +#define GL_POINT_SIZE_MAX 0x8127 +#define GL_POINT_DISTANCE_ATTENUATION 0x8129 +#define GL_GENERATE_MIPMAP 0x8191 +#define GL_GENERATE_MIPMAP_HINT 0x8192 +#define GL_FOG_COORDINATE_SOURCE 0x8450 +#define GL_FOG_COORDINATE 0x8451 +#define GL_FRAGMENT_DEPTH 0x8452 +#define GL_CURRENT_FOG_COORDINATE 0x8453 +#define GL_FOG_COORDINATE_ARRAY_TYPE 0x8454 +#define GL_FOG_COORDINATE_ARRAY_STRIDE 0x8455 +#define GL_FOG_COORDINATE_ARRAY_POINTER 0x8456 +#define GL_FOG_COORDINATE_ARRAY 0x8457 +#define GL_COLOR_SUM 0x8458 +#define GL_CURRENT_SECONDARY_COLOR 0x8459 +#define GL_SECONDARY_COLOR_ARRAY_SIZE 0x845A +#define GL_SECONDARY_COLOR_ARRAY_TYPE 0x845B +#define GL_SECONDARY_COLOR_ARRAY_STRIDE 0x845C +#define GL_SECONDARY_COLOR_ARRAY_POINTER 0x845D +#define GL_SECONDARY_COLOR_ARRAY 0x845E +#define GL_TEXTURE_FILTER_CONTROL 0x8500 +#define GL_DEPTH_TEXTURE_MODE 0x884B +#define GL_COMPARE_R_TO_TEXTURE 0x884E +#define GL_BLEND_COLOR 0x8005 +#define GL_BLEND_EQUATION 0x8009 +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_FUNC_ADD 0x8006 +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_FUNC_SUBTRACT 0x800A +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIVPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFOGCOORDFPROC) (GLfloat coord); +typedef void (APIENTRYP PFNGLFOGCOORDFVPROC) (const GLfloat *coord); +typedef void (APIENTRYP PFNGLFOGCOORDDPROC) (GLdouble coord); +typedef void (APIENTRYP PFNGLFOGCOORDDVPROC) (const GLdouble *coord); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTERPROC) (GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BPROC) (GLbyte red, GLbyte green, GLbyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DPROC) (GLdouble red, GLdouble green, GLdouble blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FPROC) (GLfloat red, GLfloat green, GLfloat blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IPROC) (GLint red, GLint green, GLint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SPROC) (GLshort red, GLshort green, GLshort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBPROC) (GLubyte red, GLubyte green, GLubyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVPROC) (const GLubyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIPROC) (GLuint red, GLuint green, GLuint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVPROC) (const GLuint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USPROC) (GLushort red, GLushort green, GLushort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVPROC) (const GLushort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLWINDOWPOS2DPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLBLENDCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +GLAPI void APIENTRY glMultiDrawArrays (GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); +GLAPI void APIENTRY glMultiDrawElements (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount); +GLAPI void APIENTRY glPointParameterf (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfv (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glPointParameteri (GLenum pname, GLint param); +GLAPI void APIENTRY glPointParameteriv (GLenum pname, const GLint *params); +GLAPI void APIENTRY glFogCoordf (GLfloat coord); +GLAPI void APIENTRY glFogCoordfv (const GLfloat *coord); +GLAPI void APIENTRY glFogCoordd (GLdouble coord); +GLAPI void APIENTRY glFogCoorddv (const GLdouble *coord); +GLAPI void APIENTRY glFogCoordPointer (GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glSecondaryColor3b (GLbyte red, GLbyte green, GLbyte blue); +GLAPI void APIENTRY glSecondaryColor3bv (const GLbyte *v); +GLAPI void APIENTRY glSecondaryColor3d (GLdouble red, GLdouble green, GLdouble blue); +GLAPI void APIENTRY glSecondaryColor3dv (const GLdouble *v); +GLAPI void APIENTRY glSecondaryColor3f (GLfloat red, GLfloat green, GLfloat blue); +GLAPI void APIENTRY glSecondaryColor3fv (const GLfloat *v); +GLAPI void APIENTRY glSecondaryColor3i (GLint red, GLint green, GLint blue); +GLAPI void APIENTRY glSecondaryColor3iv (const GLint *v); +GLAPI void APIENTRY glSecondaryColor3s (GLshort red, GLshort green, GLshort blue); +GLAPI void APIENTRY glSecondaryColor3sv (const GLshort *v); +GLAPI void APIENTRY glSecondaryColor3ub (GLubyte red, GLubyte green, GLubyte blue); +GLAPI void APIENTRY glSecondaryColor3ubv (const GLubyte *v); +GLAPI void APIENTRY glSecondaryColor3ui (GLuint red, GLuint green, GLuint blue); +GLAPI void APIENTRY glSecondaryColor3uiv (const GLuint *v); +GLAPI void APIENTRY glSecondaryColor3us (GLushort red, GLushort green, GLushort blue); +GLAPI void APIENTRY glSecondaryColor3usv (const GLushort *v); +GLAPI void APIENTRY glSecondaryColorPointer (GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glWindowPos2d (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dv (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2f (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fv (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2i (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2iv (const GLint *v); +GLAPI void APIENTRY glWindowPos2s (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2sv (const GLshort *v); +GLAPI void APIENTRY glWindowPos3d (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dv (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3f (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fv (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3i (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3iv (const GLint *v); +GLAPI void APIENTRY glWindowPos3s (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3sv (const GLshort *v); +GLAPI void APIENTRY glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI void APIENTRY glBlendEquation (GLenum mode); +#endif +#endif /* GL_VERSION_1_4 */ + +#ifndef GL_VERSION_1_5 +#define GL_VERSION_1_5 1 +typedef khronos_ssize_t GLsizeiptr; +typedef khronos_intptr_t GLintptr; +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 +#define GL_QUERY_COUNTER_BITS 0x8864 +#define GL_CURRENT_QUERY 0x8865 +#define GL_QUERY_RESULT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE 0x8867 +#define GL_ARRAY_BUFFER 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER 0x8893 +#define GL_ARRAY_BUFFER_BINDING 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F +#define GL_READ_ONLY 0x88B8 +#define GL_WRITE_ONLY 0x88B9 +#define GL_READ_WRITE 0x88BA +#define GL_BUFFER_ACCESS 0x88BB +#define GL_BUFFER_MAPPED 0x88BC +#define GL_BUFFER_MAP_POINTER 0x88BD +#define GL_STREAM_DRAW 0x88E0 +#define GL_STREAM_READ 0x88E1 +#define GL_STREAM_COPY 0x88E2 +#define GL_STATIC_DRAW 0x88E4 +#define GL_STATIC_READ 0x88E5 +#define GL_STATIC_COPY 0x88E6 +#define GL_DYNAMIC_DRAW 0x88E8 +#define GL_DYNAMIC_READ 0x88E9 +#define GL_DYNAMIC_COPY 0x88EA +#define GL_SAMPLES_PASSED 0x8914 +#define GL_SRC1_ALPHA 0x8589 +#define GL_VERTEX_ARRAY_BUFFER_BINDING 0x8896 +#define GL_NORMAL_ARRAY_BUFFER_BINDING 0x8897 +#define GL_COLOR_ARRAY_BUFFER_BINDING 0x8898 +#define GL_INDEX_ARRAY_BUFFER_BINDING 0x8899 +#define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING 0x889A +#define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING 0x889B +#define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING 0x889C +#define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING 0x889D +#define GL_WEIGHT_ARRAY_BUFFER_BINDING 0x889E +#define GL_FOG_COORD_SRC 0x8450 +#define GL_FOG_COORD 0x8451 +#define GL_CURRENT_FOG_COORD 0x8453 +#define GL_FOG_COORD_ARRAY_TYPE 0x8454 +#define GL_FOG_COORD_ARRAY_STRIDE 0x8455 +#define GL_FOG_COORD_ARRAY_POINTER 0x8456 +#define GL_FOG_COORD_ARRAY 0x8457 +#define GL_FOG_COORD_ARRAY_BUFFER_BINDING 0x889D +#define GL_SRC0_RGB 0x8580 +#define GL_SRC1_RGB 0x8581 +#define GL_SRC2_RGB 0x8582 +#define GL_SRC0_ALPHA 0x8588 +#define GL_SRC2_ALPHA 0x858A +typedef void (APIENTRYP PFNGLGENQUERIESPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEQUERIESPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISQUERYPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINQUERYPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVPROC) (GLuint id, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer); +typedef void (APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers); +typedef void (APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef GLboolean (APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, void *data); +typedef void *(APIENTRYP PFNGLMAPBUFFERPROC) (GLenum target, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueries (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteQueries (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsQuery (GLuint id); +GLAPI void APIENTRY glBeginQuery (GLenum target, GLuint id); +GLAPI void APIENTRY glEndQuery (GLenum target); +GLAPI void APIENTRY glGetQueryiv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectiv (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectuiv (GLuint id, GLenum pname, GLuint *params); +GLAPI void APIENTRY glBindBuffer (GLenum target, GLuint buffer); +GLAPI void APIENTRY glDeleteBuffers (GLsizei n, const GLuint *buffers); +GLAPI void APIENTRY glGenBuffers (GLsizei n, GLuint *buffers); +GLAPI GLboolean APIENTRY glIsBuffer (GLuint buffer); +GLAPI void APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +GLAPI void APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glGetBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, void *data); +GLAPI void *APIENTRY glMapBuffer (GLenum target, GLenum access); +GLAPI GLboolean APIENTRY glUnmapBuffer (GLenum target); +GLAPI void APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetBufferPointerv (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_VERSION_1_5 */ + +#ifndef GL_VERSION_2_0 +#define GL_VERSION_2_0 1 +typedef char GLchar; +#define GL_BLEND_EQUATION_RGB 0x8009 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 +#define GL_VERTEX_PROGRAM_POINT_SIZE 0x8642 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_STENCIL_BACK_FUNC 0x8800 +#define GL_STENCIL_BACK_FAIL 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 +#define GL_MAX_DRAW_BUFFERS 0x8824 +#define GL_DRAW_BUFFER0 0x8825 +#define GL_DRAW_BUFFER1 0x8826 +#define GL_DRAW_BUFFER2 0x8827 +#define GL_DRAW_BUFFER3 0x8828 +#define GL_DRAW_BUFFER4 0x8829 +#define GL_DRAW_BUFFER5 0x882A +#define GL_DRAW_BUFFER6 0x882B +#define GL_DRAW_BUFFER7 0x882C +#define GL_DRAW_BUFFER8 0x882D +#define GL_DRAW_BUFFER9 0x882E +#define GL_DRAW_BUFFER10 0x882F +#define GL_DRAW_BUFFER11 0x8830 +#define GL_DRAW_BUFFER12 0x8831 +#define GL_DRAW_BUFFER13 0x8832 +#define GL_DRAW_BUFFER14 0x8833 +#define GL_DRAW_BUFFER15 0x8834 +#define GL_BLEND_EQUATION_ALPHA 0x883D +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS 0x8B49 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS 0x8B4A +#define GL_MAX_VARYING_FLOATS 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_SHADER_TYPE 0x8B4F +#define GL_FLOAT_VEC2 0x8B50 +#define GL_FLOAT_VEC3 0x8B51 +#define GL_FLOAT_VEC4 0x8B52 +#define GL_INT_VEC2 0x8B53 +#define GL_INT_VEC3 0x8B54 +#define GL_INT_VEC4 0x8B55 +#define GL_BOOL 0x8B56 +#define GL_BOOL_VEC2 0x8B57 +#define GL_BOOL_VEC3 0x8B58 +#define GL_BOOL_VEC4 0x8B59 +#define GL_FLOAT_MAT2 0x8B5A +#define GL_FLOAT_MAT3 0x8B5B +#define GL_FLOAT_MAT4 0x8B5C +#define GL_SAMPLER_1D 0x8B5D +#define GL_SAMPLER_2D 0x8B5E +#define GL_SAMPLER_3D 0x8B5F +#define GL_SAMPLER_CUBE 0x8B60 +#define GL_SAMPLER_1D_SHADOW 0x8B61 +#define GL_SAMPLER_2D_SHADOW 0x8B62 +#define GL_DELETE_STATUS 0x8B80 +#define GL_COMPILE_STATUS 0x8B81 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT 0x8B8B +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D +#define GL_POINT_SPRITE_COORD_ORIGIN 0x8CA0 +#define GL_LOWER_LEFT 0x8CA1 +#define GL_UPPER_LEFT 0x8CA2 +#define GL_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 +#define GL_VERTEX_PROGRAM_TWO_SIDE 0x8643 +#define GL_POINT_SPRITE 0x8861 +#define GL_COORD_REPLACE 0x8862 +#define GL_MAX_TEXTURE_COORDS 0x8871 +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLDRAWBUFFERSPROC) (GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum face, GLenum func, GLint ref, GLuint mask); +typedef void (APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask); +typedef void (APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name); +typedef void (APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader); +typedef GLuint (APIENTRYP PFNGLCREATEPROGRAMPROC) (void); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROC) (GLenum type); +typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader); +typedef void (APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params); +typedef void (APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMPROC) (GLuint program); +typedef GLboolean (APIENTRYP PFNGLISSHADERPROC) (GLuint shader); +typedef void (APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +typedef void (APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0); +typedef void (APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glDrawBuffers (GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GLAPI void APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask); +GLAPI void APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask); +GLAPI void APIENTRY glAttachShader (GLuint program, GLuint shader); +GLAPI void APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar *name); +GLAPI void APIENTRY glCompileShader (GLuint shader); +GLAPI GLuint APIENTRY glCreateProgram (void); +GLAPI GLuint APIENTRY glCreateShader (GLenum type); +GLAPI void APIENTRY glDeleteProgram (GLuint program); +GLAPI void APIENTRY glDeleteShader (GLuint shader); +GLAPI void APIENTRY glDetachShader (GLuint program, GLuint shader); +GLAPI void APIENTRY glDisableVertexAttribArray (GLuint index); +GLAPI void APIENTRY glEnableVertexAttribArray (GLuint index); +GLAPI void APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +GLAPI GLint APIENTRY glGetAttribLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +GLAPI GLint APIENTRY glGetUniformLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat *params); +GLAPI void APIENTRY glGetUniformiv (GLuint program, GLint location, GLint *params); +GLAPI void APIENTRY glGetVertexAttribdv (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer); +GLAPI GLboolean APIENTRY glIsProgram (GLuint program); +GLAPI GLboolean APIENTRY glIsShader (GLuint shader); +GLAPI void APIENTRY glLinkProgram (GLuint program); +GLAPI void APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +GLAPI void APIENTRY glUseProgram (GLuint program); +GLAPI void APIENTRY glUniform1f (GLint location, GLfloat v0); +GLAPI void APIENTRY glUniform2f (GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glUniform1i (GLint location, GLint v0); +GLAPI void APIENTRY glUniform2i (GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glUniform3i (GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glValidateProgram (GLuint program); +GLAPI void APIENTRY glVertexAttrib1d (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1f (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1s (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2d (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2s (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3d (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3s (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4Nbv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4Niv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4Nsv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4Nub (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4Nubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4Nuiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4Nusv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttrib4bv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4d (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4s (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4usv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +#endif +#endif /* GL_VERSION_2_0 */ + +#ifndef GL_VERSION_2_1 +#define GL_VERSION_2_1 1 +#define GL_PIXEL_PACK_BUFFER 0x88EB +#define GL_PIXEL_UNPACK_BUFFER 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING 0x88EF +#define GL_FLOAT_MAT2x3 0x8B65 +#define GL_FLOAT_MAT2x4 0x8B66 +#define GL_FLOAT_MAT3x2 0x8B67 +#define GL_FLOAT_MAT3x4 0x8B68 +#define GL_FLOAT_MAT4x2 0x8B69 +#define GL_FLOAT_MAT4x3 0x8B6A +#define GL_SRGB 0x8C40 +#define GL_SRGB8 0x8C41 +#define GL_SRGB_ALPHA 0x8C42 +#define GL_SRGB8_ALPHA8 0x8C43 +#define GL_COMPRESSED_SRGB 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA 0x8C49 +#define GL_CURRENT_RASTER_SECONDARY_COLOR 0x845F +#define GL_SLUMINANCE_ALPHA 0x8C44 +#define GL_SLUMINANCE8_ALPHA8 0x8C45 +#define GL_SLUMINANCE 0x8C46 +#define GL_SLUMINANCE8 0x8C47 +#define GL_COMPRESSED_SLUMINANCE 0x8C4A +#define GL_COMPRESSED_SLUMINANCE_ALPHA 0x8C4B +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniformMatrix2x3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3x2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix2x4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4x2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3x4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4x3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_VERSION_2_1 */ + +#ifndef GL_VERSION_3_0 +#define GL_VERSION_3_0 1 +typedef khronos_uint16_t GLhalf; +#define GL_COMPARE_REF_TO_TEXTURE 0x884E +#define GL_CLIP_DISTANCE0 0x3000 +#define GL_CLIP_DISTANCE1 0x3001 +#define GL_CLIP_DISTANCE2 0x3002 +#define GL_CLIP_DISTANCE3 0x3003 +#define GL_CLIP_DISTANCE4 0x3004 +#define GL_CLIP_DISTANCE5 0x3005 +#define GL_CLIP_DISTANCE6 0x3006 +#define GL_CLIP_DISTANCE7 0x3007 +#define GL_MAX_CLIP_DISTANCES 0x0D32 +#define GL_MAJOR_VERSION 0x821B +#define GL_MINOR_VERSION 0x821C +#define GL_NUM_EXTENSIONS 0x821D +#define GL_CONTEXT_FLAGS 0x821E +#define GL_COMPRESSED_RED 0x8225 +#define GL_COMPRESSED_RG 0x8226 +#define GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT 0x00000001 +#define GL_RGBA32F 0x8814 +#define GL_RGB32F 0x8815 +#define GL_RGBA16F 0x881A +#define GL_RGB16F 0x881B +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER 0x88FD +#define GL_MAX_ARRAY_TEXTURE_LAYERS 0x88FF +#define GL_MIN_PROGRAM_TEXEL_OFFSET 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET 0x8905 +#define GL_CLAMP_READ_COLOR 0x891C +#define GL_FIXED_ONLY 0x891D +#define GL_MAX_VARYING_COMPONENTS 0x8B4B +#define GL_TEXTURE_1D_ARRAY 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY 0x8C19 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY 0x8C1D +#define GL_R11F_G11F_B10F 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV 0x8C3B +#define GL_RGB9_E5 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV 0x8C3E +#define GL_TEXTURE_SHARED_SIZE 0x8C3F +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH 0x8C76 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE 0x8C85 +#define GL_PRIMITIVES_GENERATED 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN 0x8C88 +#define GL_RASTERIZER_DISCARD 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS 0x8C8B +#define GL_INTERLEAVED_ATTRIBS 0x8C8C +#define GL_SEPARATE_ATTRIBS 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING 0x8C8F +#define GL_RGBA32UI 0x8D70 +#define GL_RGB32UI 0x8D71 +#define GL_RGBA16UI 0x8D76 +#define GL_RGB16UI 0x8D77 +#define GL_RGBA8UI 0x8D7C +#define GL_RGB8UI 0x8D7D +#define GL_RGBA32I 0x8D82 +#define GL_RGB32I 0x8D83 +#define GL_RGBA16I 0x8D88 +#define GL_RGB16I 0x8D89 +#define GL_RGBA8I 0x8D8E +#define GL_RGB8I 0x8D8F +#define GL_RED_INTEGER 0x8D94 +#define GL_GREEN_INTEGER 0x8D95 +#define GL_BLUE_INTEGER 0x8D96 +#define GL_RGB_INTEGER 0x8D98 +#define GL_RGBA_INTEGER 0x8D99 +#define GL_BGR_INTEGER 0x8D9A +#define GL_BGRA_INTEGER 0x8D9B +#define GL_SAMPLER_1D_ARRAY 0x8DC0 +#define GL_SAMPLER_2D_ARRAY 0x8DC1 +#define GL_SAMPLER_1D_ARRAY_SHADOW 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW 0x8DC5 +#define GL_UNSIGNED_INT_VEC2 0x8DC6 +#define GL_UNSIGNED_INT_VEC3 0x8DC7 +#define GL_UNSIGNED_INT_VEC4 0x8DC8 +#define GL_INT_SAMPLER_1D 0x8DC9 +#define GL_INT_SAMPLER_2D 0x8DCA +#define GL_INT_SAMPLER_3D 0x8DCB +#define GL_INT_SAMPLER_CUBE 0x8DCC +#define GL_INT_SAMPLER_1D_ARRAY 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY 0x8DCF +#define GL_UNSIGNED_INT_SAMPLER_1D 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY 0x8DD7 +#define GL_QUERY_WAIT 0x8E13 +#define GL_QUERY_NO_WAIT 0x8E14 +#define GL_QUERY_BY_REGION_WAIT 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT 0x8E16 +#define GL_BUFFER_ACCESS_FLAGS 0x911F +#define GL_BUFFER_MAP_LENGTH 0x9120 +#define GL_BUFFER_MAP_OFFSET 0x9121 +#define GL_DEPTH_COMPONENT32F 0x8CAC +#define GL_DEPTH32F_STENCIL8 0x8CAD +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV 0x8DAD +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING 0x8210 +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE 0x8211 +#define GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE 0x8212 +#define GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE 0x8213 +#define GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE 0x8214 +#define GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE 0x8215 +#define GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE 0x8216 +#define GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE 0x8217 +#define GL_FRAMEBUFFER_DEFAULT 0x8218 +#define GL_FRAMEBUFFER_UNDEFINED 0x8219 +#define GL_DEPTH_STENCIL_ATTACHMENT 0x821A +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 +#define GL_DEPTH_STENCIL 0x84F9 +#define GL_UNSIGNED_INT_24_8 0x84FA +#define GL_DEPTH24_STENCIL8 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE 0x88F1 +#define GL_TEXTURE_RED_TYPE 0x8C10 +#define GL_TEXTURE_GREEN_TYPE 0x8C11 +#define GL_TEXTURE_BLUE_TYPE 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE 0x8C13 +#define GL_TEXTURE_DEPTH_TYPE 0x8C16 +#define GL_UNSIGNED_NORMALIZED 0x8C17 +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_DRAW_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_READ_FRAMEBUFFER 0x8CA8 +#define GL_DRAW_FRAMEBUFFER 0x8CA9 +#define GL_READ_FRAMEBUFFER_BINDING 0x8CAA +#define GL_RENDERBUFFER_SAMPLES 0x8CAB +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS 0x8CDF +#define GL_COLOR_ATTACHMENT0 0x8CE0 +#define GL_COLOR_ATTACHMENT1 0x8CE1 +#define GL_COLOR_ATTACHMENT2 0x8CE2 +#define GL_COLOR_ATTACHMENT3 0x8CE3 +#define GL_COLOR_ATTACHMENT4 0x8CE4 +#define GL_COLOR_ATTACHMENT5 0x8CE5 +#define GL_COLOR_ATTACHMENT6 0x8CE6 +#define GL_COLOR_ATTACHMENT7 0x8CE7 +#define GL_COLOR_ATTACHMENT8 0x8CE8 +#define GL_COLOR_ATTACHMENT9 0x8CE9 +#define GL_COLOR_ATTACHMENT10 0x8CEA +#define GL_COLOR_ATTACHMENT11 0x8CEB +#define GL_COLOR_ATTACHMENT12 0x8CEC +#define GL_COLOR_ATTACHMENT13 0x8CED +#define GL_COLOR_ATTACHMENT14 0x8CEE +#define GL_COLOR_ATTACHMENT15 0x8CEF +#define GL_COLOR_ATTACHMENT16 0x8CF0 +#define GL_COLOR_ATTACHMENT17 0x8CF1 +#define GL_COLOR_ATTACHMENT18 0x8CF2 +#define GL_COLOR_ATTACHMENT19 0x8CF3 +#define GL_COLOR_ATTACHMENT20 0x8CF4 +#define GL_COLOR_ATTACHMENT21 0x8CF5 +#define GL_COLOR_ATTACHMENT22 0x8CF6 +#define GL_COLOR_ATTACHMENT23 0x8CF7 +#define GL_COLOR_ATTACHMENT24 0x8CF8 +#define GL_COLOR_ATTACHMENT25 0x8CF9 +#define GL_COLOR_ATTACHMENT26 0x8CFA +#define GL_COLOR_ATTACHMENT27 0x8CFB +#define GL_COLOR_ATTACHMENT28 0x8CFC +#define GL_COLOR_ATTACHMENT29 0x8CFD +#define GL_COLOR_ATTACHMENT30 0x8CFE +#define GL_COLOR_ATTACHMENT31 0x8CFF +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#define GL_STENCIL_INDEX1 0x8D46 +#define GL_STENCIL_INDEX4 0x8D47 +#define GL_STENCIL_INDEX8 0x8D48 +#define GL_STENCIL_INDEX16 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE 0x8D56 +#define GL_MAX_SAMPLES 0x8D57 +#define GL_INDEX 0x8222 +#define GL_TEXTURE_LUMINANCE_TYPE 0x8C14 +#define GL_TEXTURE_INTENSITY_TYPE 0x8C15 +#define GL_FRAMEBUFFER_SRGB 0x8DB9 +#define GL_HALF_FLOAT 0x140B +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT 0x0020 +#define GL_COMPRESSED_RED_RGTC1 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1 0x8DBC +#define GL_COMPRESSED_RG_RGTC2 0x8DBD +#define GL_COMPRESSED_SIGNED_RG_RGTC2 0x8DBE +#define GL_RG 0x8227 +#define GL_RG_INTEGER 0x8228 +#define GL_R8 0x8229 +#define GL_R16 0x822A +#define GL_RG8 0x822B +#define GL_RG16 0x822C +#define GL_R16F 0x822D +#define GL_R32F 0x822E +#define GL_RG16F 0x822F +#define GL_RG32F 0x8230 +#define GL_R8I 0x8231 +#define GL_R8UI 0x8232 +#define GL_R16I 0x8233 +#define GL_R16UI 0x8234 +#define GL_R32I 0x8235 +#define GL_R32UI 0x8236 +#define GL_RG8I 0x8237 +#define GL_RG8UI 0x8238 +#define GL_RG16I 0x8239 +#define GL_RG16UI 0x823A +#define GL_RG32I 0x823B +#define GL_RG32UI 0x823C +#define GL_VERTEX_ARRAY_BINDING 0x85B5 +#define GL_CLAMP_VERTEX_COLOR 0x891A +#define GL_CLAMP_FRAGMENT_COLOR 0x891B +#define GL_ALPHA_INTEGER 0x8D97 +typedef void (APIENTRYP PFNGLCOLORMASKIPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef void (APIENTRYP PFNGLGETBOOLEANI_VPROC) (GLenum target, GLuint index, GLboolean *data); +typedef void (APIENTRYP PFNGLGETINTEGERI_VPROC) (GLenum target, GLuint index, GLint *data); +typedef void (APIENTRYP PFNGLENABLEIPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEIPROC) (GLenum target, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISENABLEDIPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGEPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFERBASEPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSPROC) (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLCLAMPCOLORPROC) (GLenum target, GLenum clamp); +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERPROC) (GLuint id, GLenum mode); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERPROC) (void); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVPROC) (GLuint index, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IPROC) (GLuint index, GLint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IPROC) (GLuint index, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IPROC) (GLuint index, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIPROC) (GLuint index, GLuint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIPROC) (GLuint index, GLuint x, GLuint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLGETUNIFORMUIVPROC) (GLuint program, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORM1UIPROC) (GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLUNIFORM2UIPROC) (GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLUNIFORM3UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLUNIFORM4UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLUNIFORM1UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM2UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM3UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM4UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLCLEARBUFFERIVPROC) (GLenum buffer, GLint drawbuffer, const GLint *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERUIVPROC) (GLenum buffer, GLint drawbuffer, const GLuint *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERFVPROC) (GLenum buffer, GLint drawbuffer, const GLfloat *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERFIPROC) (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +typedef const GLubyte *(APIENTRYP PFNGLGETSTRINGIPROC) (GLenum name, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFERPROC) (GLuint renderbuffer); +typedef void (APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLGENRENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFERPROC) (GLuint framebuffer); +typedef void (APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer); +typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATEMIPMAPPROC) (GLenum target); +typedef void (APIENTRYP PFNGLBLITFRAMEBUFFERPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void *(APIENTRYP PFNGLMAPBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLBINDVERTEXARRAYPROC) (GLuint array); +typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSPROC) (GLsizei n, const GLuint *arrays); +typedef void (APIENTRYP PFNGLGENVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYPROC) (GLuint array); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorMaski (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GLAPI void APIENTRY glGetBooleani_v (GLenum target, GLuint index, GLboolean *data); +GLAPI void APIENTRY glGetIntegeri_v (GLenum target, GLuint index, GLint *data); +GLAPI void APIENTRY glEnablei (GLenum target, GLuint index); +GLAPI void APIENTRY glDisablei (GLenum target, GLuint index); +GLAPI GLboolean APIENTRY glIsEnabledi (GLenum target, GLuint index); +GLAPI void APIENTRY glBeginTransformFeedback (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedback (void); +GLAPI void APIENTRY glBindBufferRange (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferBase (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryings (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +GLAPI void APIENTRY glGetTransformFeedbackVarying (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glClampColor (GLenum target, GLenum clamp); +GLAPI void APIENTRY glBeginConditionalRender (GLuint id, GLenum mode); +GLAPI void APIENTRY glEndConditionalRender (void); +GLAPI void APIENTRY glVertexAttribIPointer (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribIiv (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribIuiv (GLuint index, GLenum pname, GLuint *params); +GLAPI void APIENTRY glVertexAttribI1i (GLuint index, GLint x); +GLAPI void APIENTRY glVertexAttribI2i (GLuint index, GLint x, GLint y); +GLAPI void APIENTRY glVertexAttribI3i (GLuint index, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexAttribI4i (GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexAttribI1ui (GLuint index, GLuint x); +GLAPI void APIENTRY glVertexAttribI2ui (GLuint index, GLuint x, GLuint y); +GLAPI void APIENTRY glVertexAttribI3ui (GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI void APIENTRY glVertexAttribI4ui (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glVertexAttribI1iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI2iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI3iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI4iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI1uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI2uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI3uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4bv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttribI4sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttribI4ubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribI4usv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glGetUniformuiv (GLuint program, GLint location, GLuint *params); +GLAPI void APIENTRY glBindFragDataLocation (GLuint program, GLuint color, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glUniform1ui (GLint location, GLuint v0); +GLAPI void APIENTRY glUniform2ui (GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glUniform3ui (GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glUniform4ui (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glUniform1uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform2uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform3uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform4uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glTexParameterIiv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTexParameterIuiv (GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTexParameterIiv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTexParameterIuiv (GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glClearBufferiv (GLenum buffer, GLint drawbuffer, const GLint *value); +GLAPI void APIENTRY glClearBufferuiv (GLenum buffer, GLint drawbuffer, const GLuint *value); +GLAPI void APIENTRY glClearBufferfv (GLenum buffer, GLint drawbuffer, const GLfloat *value); +GLAPI void APIENTRY glClearBufferfi (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +GLAPI const GLubyte *APIENTRY glGetStringi (GLenum name, GLuint index); +GLAPI GLboolean APIENTRY glIsRenderbuffer (GLuint renderbuffer); +GLAPI void APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint *renderbuffers); +GLAPI void APIENTRY glGenRenderbuffers (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI GLboolean APIENTRY glIsFramebuffer (GLuint framebuffer); +GLAPI void APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer); +GLAPI void APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); +GLAPI void APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers); +GLAPI GLenum APIENTRY glCheckFramebufferStatus (GLenum target); +GLAPI void APIENTRY glFramebufferTexture1D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture3D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateMipmap (GLenum target); +GLAPI void APIENTRY glBlitFramebuffer (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI void APIENTRY glRenderbufferStorageMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void *APIENTRY glMapBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI void APIENTRY glFlushMappedBufferRange (GLenum target, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glBindVertexArray (GLuint array); +GLAPI void APIENTRY glDeleteVertexArrays (GLsizei n, const GLuint *arrays); +GLAPI void APIENTRY glGenVertexArrays (GLsizei n, GLuint *arrays); +GLAPI GLboolean APIENTRY glIsVertexArray (GLuint array); +#endif +#endif /* GL_VERSION_3_0 */ + +#ifndef GL_VERSION_3_1 +#define GL_VERSION_3_1 1 +#define GL_SAMPLER_2D_RECT 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW 0x8B64 +#define GL_SAMPLER_BUFFER 0x8DC2 +#define GL_INT_SAMPLER_2D_RECT 0x8DCD +#define GL_INT_SAMPLER_BUFFER 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER 0x8DD8 +#define GL_TEXTURE_BUFFER 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING 0x8C2D +#define GL_TEXTURE_RECTANGLE 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE 0x84F8 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGB8_SNORM 0x8F96 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM 0x8F98 +#define GL_RG16_SNORM 0x8F99 +#define GL_RGB16_SNORM 0x8F9A +#define GL_RGBA16_SNORM 0x8F9B +#define GL_SIGNED_NORMALIZED 0x8F9C +#define GL_PRIMITIVE_RESTART 0x8F9D +#define GL_PRIMITIVE_RESTART_INDEX 0x8F9E +#define GL_COPY_READ_BUFFER 0x8F36 +#define GL_COPY_WRITE_BUFFER 0x8F37 +#define GL_UNIFORM_BUFFER 0x8A11 +#define GL_UNIFORM_BUFFER_BINDING 0x8A28 +#define GL_UNIFORM_BUFFER_START 0x8A29 +#define GL_UNIFORM_BUFFER_SIZE 0x8A2A +#define GL_MAX_VERTEX_UNIFORM_BLOCKS 0x8A2B +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS 0x8A2C +#define GL_MAX_FRAGMENT_UNIFORM_BLOCKS 0x8A2D +#define GL_MAX_COMBINED_UNIFORM_BLOCKS 0x8A2E +#define GL_MAX_UNIFORM_BUFFER_BINDINGS 0x8A2F +#define GL_MAX_UNIFORM_BLOCK_SIZE 0x8A30 +#define GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS 0x8A31 +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS 0x8A32 +#define GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS 0x8A33 +#define GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT 0x8A34 +#define GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH 0x8A35 +#define GL_ACTIVE_UNIFORM_BLOCKS 0x8A36 +#define GL_UNIFORM_TYPE 0x8A37 +#define GL_UNIFORM_SIZE 0x8A38 +#define GL_UNIFORM_NAME_LENGTH 0x8A39 +#define GL_UNIFORM_BLOCK_INDEX 0x8A3A +#define GL_UNIFORM_OFFSET 0x8A3B +#define GL_UNIFORM_ARRAY_STRIDE 0x8A3C +#define GL_UNIFORM_MATRIX_STRIDE 0x8A3D +#define GL_UNIFORM_IS_ROW_MAJOR 0x8A3E +#define GL_UNIFORM_BLOCK_BINDING 0x8A3F +#define GL_UNIFORM_BLOCK_DATA_SIZE 0x8A40 +#define GL_UNIFORM_BLOCK_NAME_LENGTH 0x8A41 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS 0x8A42 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES 0x8A43 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER 0x8A44 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER 0x8A45 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER 0x8A46 +#define GL_INVALID_INDEX 0xFFFFFFFFu +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount); +typedef void (APIENTRYP PFNGLTEXBUFFERPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXPROC) (GLuint index); +typedef void (APIENTRYP PFNGLCOPYBUFFERSUBDATAPROC) (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLGETUNIFORMINDICESPROC) (GLuint program, GLsizei uniformCount, const GLchar *const*uniformNames, GLuint *uniformIndices); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMSIVPROC) (GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMNAMEPROC) (GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); +typedef GLuint (APIENTRYP PFNGLGETUNIFORMBLOCKINDEXPROC) (GLuint program, const GLchar *uniformBlockName); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKIVPROC) (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC) (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); +typedef void (APIENTRYP PFNGLUNIFORMBLOCKBINDINGPROC) (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstanced (GLenum mode, GLint first, GLsizei count, GLsizei instancecount); +GLAPI void APIENTRY glDrawElementsInstanced (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount); +GLAPI void APIENTRY glTexBuffer (GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glPrimitiveRestartIndex (GLuint index); +GLAPI void APIENTRY glCopyBufferSubData (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glGetUniformIndices (GLuint program, GLsizei uniformCount, const GLchar *const*uniformNames, GLuint *uniformIndices); +GLAPI void APIENTRY glGetActiveUniformsiv (GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetActiveUniformName (GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); +GLAPI GLuint APIENTRY glGetUniformBlockIndex (GLuint program, const GLchar *uniformBlockName); +GLAPI void APIENTRY glGetActiveUniformBlockiv (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetActiveUniformBlockName (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); +GLAPI void APIENTRY glUniformBlockBinding (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); +#endif +#endif /* GL_VERSION_3_1 */ + +#ifndef GL_VERSION_3_2 +#define GL_VERSION_3_2 1 +typedef struct __GLsync *GLsync; +typedef khronos_uint64_t GLuint64; +typedef khronos_int64_t GLint64; +#define GL_CONTEXT_CORE_PROFILE_BIT 0x00000001 +#define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x00000002 +#define GL_LINES_ADJACENCY 0x000A +#define GL_LINE_STRIP_ADJACENCY 0x000B +#define GL_TRIANGLES_ADJACENCY 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY 0x000D +#define GL_PROGRAM_POINT_SIZE 0x8642 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS 0x8DA8 +#define GL_GEOMETRY_SHADER 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT 0x8916 +#define GL_GEOMETRY_INPUT_TYPE 0x8917 +#define GL_GEOMETRY_OUTPUT_TYPE 0x8918 +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS 0x8DE1 +#define GL_MAX_VERTEX_OUTPUT_COMPONENTS 0x9122 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS 0x9124 +#define GL_MAX_FRAGMENT_INPUT_COMPONENTS 0x9125 +#define GL_CONTEXT_PROFILE_MASK 0x9126 +#define GL_DEPTH_CLAMP 0x864F +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION 0x8E4D +#define GL_LAST_VERTEX_CONVENTION 0x8E4E +#define GL_PROVOKING_VERTEX 0x8E4F +#define GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F +#define GL_MAX_SERVER_WAIT_TIMEOUT 0x9111 +#define GL_OBJECT_TYPE 0x9112 +#define GL_SYNC_CONDITION 0x9113 +#define GL_SYNC_STATUS 0x9114 +#define GL_SYNC_FLAGS 0x9115 +#define GL_SYNC_FENCE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE 0x9117 +#define GL_UNSIGNALED 0x9118 +#define GL_SIGNALED 0x9119 +#define GL_ALREADY_SIGNALED 0x911A +#define GL_TIMEOUT_EXPIRED 0x911B +#define GL_CONDITION_SATISFIED 0x911C +#define GL_WAIT_FAILED 0x911D +#define GL_TIMEOUT_IGNORED 0xFFFFFFFFFFFFFFFFull +#define GL_SYNC_FLUSH_COMMANDS_BIT 0x00000001 +#define GL_SAMPLE_POSITION 0x8E50 +#define GL_SAMPLE_MASK 0x8E51 +#define GL_SAMPLE_MASK_VALUE 0x8E52 +#define GL_MAX_SAMPLE_MASK_WORDS 0x8E59 +#define GL_TEXTURE_2D_MULTISAMPLE 0x9100 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE 0x9101 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9103 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE 0x9104 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY 0x9105 +#define GL_TEXTURE_SAMPLES 0x9106 +#define GL_TEXTURE_FIXED_SAMPLE_LOCATIONS 0x9107 +#define GL_SAMPLER_2D_MULTISAMPLE 0x9108 +#define GL_INT_SAMPLER_2D_MULTISAMPLE 0x9109 +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE 0x910A +#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910B +#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910C +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910D +#define GL_MAX_COLOR_TEXTURE_SAMPLES 0x910E +#define GL_MAX_DEPTH_TEXTURE_SAMPLES 0x910F +#define GL_MAX_INTEGER_SAMPLES 0x9110 +typedef void (APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +typedef void (APIENTRYP PFNGLPROVOKINGVERTEXPROC) (GLenum mode); +typedef GLsync (APIENTRYP PFNGLFENCESYNCPROC) (GLenum condition, GLbitfield flags); +typedef GLboolean (APIENTRYP PFNGLISSYNCPROC) (GLsync sync); +typedef void (APIENTRYP PFNGLDELETESYNCPROC) (GLsync sync); +typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (APIENTRYP PFNGLWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (APIENTRYP PFNGLGETINTEGER64VPROC) (GLenum pname, GLint64 *data); +typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC) (GLenum target, GLuint index, GLint64 *data); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC) (GLenum target, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVPROC) (GLenum pname, GLuint index, GLfloat *val); +typedef void (APIENTRYP PFNGLSAMPLEMASKIPROC) (GLuint maskNumber, GLbitfield mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawElementsBaseVertex (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GLAPI void APIENTRY glDrawRangeElementsBaseVertex (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GLAPI void APIENTRY glDrawElementsInstancedBaseVertex (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +GLAPI void APIENTRY glMultiDrawElementsBaseVertex (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +GLAPI void APIENTRY glProvokingVertex (GLenum mode); +GLAPI GLsync APIENTRY glFenceSync (GLenum condition, GLbitfield flags); +GLAPI GLboolean APIENTRY glIsSync (GLsync sync); +GLAPI void APIENTRY glDeleteSync (GLsync sync); +GLAPI GLenum APIENTRY glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI void APIENTRY glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI void APIENTRY glGetInteger64v (GLenum pname, GLint64 *data); +GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +GLAPI void APIENTRY glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data); +GLAPI void APIENTRY glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glFramebufferTexture (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glTexImage2DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTexImage3DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glGetMultisamplefv (GLenum pname, GLuint index, GLfloat *val); +GLAPI void APIENTRY glSampleMaski (GLuint maskNumber, GLbitfield mask); +#endif +#endif /* GL_VERSION_3_2 */ + +#ifndef GL_VERSION_3_3 +#define GL_VERSION_3_3 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR 0x88FE +#define GL_SRC1_COLOR 0x88F9 +#define GL_ONE_MINUS_SRC1_COLOR 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA 0x88FB +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS 0x88FC +#define GL_ANY_SAMPLES_PASSED 0x8C2F +#define GL_SAMPLER_BINDING 0x8919 +#define GL_RGB10_A2UI 0x906F +#define GL_TEXTURE_SWIZZLE_R 0x8E42 +#define GL_TEXTURE_SWIZZLE_G 0x8E43 +#define GL_TEXTURE_SWIZZLE_B 0x8E44 +#define GL_TEXTURE_SWIZZLE_A 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA 0x8E46 +#define GL_TIME_ELAPSED 0x88BF +#define GL_TIMESTAMP 0x8E28 +#define GL_INT_2_10_10_10_REV 0x8D9F +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDPROC) (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATAINDEXPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGENSAMPLERSPROC) (GLsizei count, GLuint *samplers); +typedef void (APIENTRYP PFNGLDELETESAMPLERSPROC) (GLsizei count, const GLuint *samplers); +typedef GLboolean (APIENTRYP PFNGLISSAMPLERPROC) (GLuint sampler); +typedef void (APIENTRYP PFNGLBINDSAMPLERPROC) (GLuint unit, GLuint sampler); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIPROC) (GLuint sampler, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFPROC) (GLuint sampler, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLQUERYCOUNTERPROC) (GLuint id, GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VPROC) (GLuint id, GLenum pname, GLuint64 *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORPROC) (GLuint index, GLuint divisor); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP2UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP2UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP3UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP3UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP4UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP4UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLTEXCOORDP1UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP1UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP2UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP2UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP3UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP3UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP4UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP4UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLNORMALP3UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLNORMALP3UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLCOLORP3UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLCOLORP3UIVPROC) (GLenum type, const GLuint *color); +typedef void (APIENTRYP PFNGLCOLORP4UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLCOLORP4UIVPROC) (GLenum type, const GLuint *color); +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIVPROC) (GLenum type, const GLuint *color); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindFragDataLocationIndexed (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataIndex (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGenSamplers (GLsizei count, GLuint *samplers); +GLAPI void APIENTRY glDeleteSamplers (GLsizei count, const GLuint *samplers); +GLAPI GLboolean APIENTRY glIsSampler (GLuint sampler); +GLAPI void APIENTRY glBindSampler (GLuint unit, GLuint sampler); +GLAPI void APIENTRY glSamplerParameteri (GLuint sampler, GLenum pname, GLint param); +GLAPI void APIENTRY glSamplerParameteriv (GLuint sampler, GLenum pname, const GLint *param); +GLAPI void APIENTRY glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param); +GLAPI void APIENTRY glSamplerParameterfv (GLuint sampler, GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glSamplerParameterIiv (GLuint sampler, GLenum pname, const GLint *param); +GLAPI void APIENTRY glSamplerParameterIuiv (GLuint sampler, GLenum pname, const GLuint *param); +GLAPI void APIENTRY glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSamplerParameterIiv (GLuint sampler, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetSamplerParameterIuiv (GLuint sampler, GLenum pname, GLuint *params); +GLAPI void APIENTRY glQueryCounter (GLuint id, GLenum target); +GLAPI void APIENTRY glGetQueryObjecti64v (GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetQueryObjectui64v (GLuint id, GLenum pname, GLuint64 *params); +GLAPI void APIENTRY glVertexAttribDivisor (GLuint index, GLuint divisor); +GLAPI void APIENTRY glVertexAttribP1ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP1uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP2ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP2uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP3ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP3uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP4ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP4uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexP2ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP2uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glVertexP3ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP3uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glVertexP4ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP4uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glTexCoordP1ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP1uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP2ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP2uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP3ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP3uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP4ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP4uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP1ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP1uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP2ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP2uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP3ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP3uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP4ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP4uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glNormalP3ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glNormalP3uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glColorP3ui (GLenum type, GLuint color); +GLAPI void APIENTRY glColorP3uiv (GLenum type, const GLuint *color); +GLAPI void APIENTRY glColorP4ui (GLenum type, GLuint color); +GLAPI void APIENTRY glColorP4uiv (GLenum type, const GLuint *color); +GLAPI void APIENTRY glSecondaryColorP3ui (GLenum type, GLuint color); +GLAPI void APIENTRY glSecondaryColorP3uiv (GLenum type, const GLuint *color); +#endif +#endif /* GL_VERSION_3_3 */ + +#ifndef GL_VERSION_4_0 +#define GL_VERSION_4_0 1 +#define GL_SAMPLE_SHADING 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE 0x8C37 +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5F +#define GL_TEXTURE_CUBE_MAP_ARRAY 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY 0x900A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY 0x900B +#define GL_SAMPLER_CUBE_MAP_ARRAY 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY 0x900F +#define GL_DRAW_INDIRECT_BUFFER 0x8F3F +#define GL_DRAW_INDIRECT_BUFFER_BINDING 0x8F43 +#define GL_GEOMETRY_SHADER_INVOCATIONS 0x887F +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS 0x8E5A +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET 0x8E5C +#define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS 0x8E5D +#define GL_MAX_VERTEX_STREAMS 0x8E71 +#define GL_DOUBLE_VEC2 0x8FFC +#define GL_DOUBLE_VEC3 0x8FFD +#define GL_DOUBLE_VEC4 0x8FFE +#define GL_DOUBLE_MAT2 0x8F46 +#define GL_DOUBLE_MAT3 0x8F47 +#define GL_DOUBLE_MAT4 0x8F48 +#define GL_DOUBLE_MAT2x3 0x8F49 +#define GL_DOUBLE_MAT2x4 0x8F4A +#define GL_DOUBLE_MAT3x2 0x8F4B +#define GL_DOUBLE_MAT3x4 0x8F4C +#define GL_DOUBLE_MAT4x2 0x8F4D +#define GL_DOUBLE_MAT4x3 0x8F4E +#define GL_ACTIVE_SUBROUTINES 0x8DE5 +#define GL_ACTIVE_SUBROUTINE_UNIFORMS 0x8DE6 +#define GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS 0x8E47 +#define GL_ACTIVE_SUBROUTINE_MAX_LENGTH 0x8E48 +#define GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH 0x8E49 +#define GL_MAX_SUBROUTINES 0x8DE7 +#define GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS 0x8DE8 +#define GL_NUM_COMPATIBLE_SUBROUTINES 0x8E4A +#define GL_COMPATIBLE_SUBROUTINES 0x8E4B +#define GL_PATCHES 0x000E +#define GL_PATCH_VERTICES 0x8E72 +#define GL_PATCH_DEFAULT_INNER_LEVEL 0x8E73 +#define GL_PATCH_DEFAULT_OUTER_LEVEL 0x8E74 +#define GL_TESS_CONTROL_OUTPUT_VERTICES 0x8E75 +#define GL_TESS_GEN_MODE 0x8E76 +#define GL_TESS_GEN_SPACING 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER 0x8E78 +#define GL_TESS_GEN_POINT_MODE 0x8E79 +#define GL_ISOLINES 0x8E7A +#define GL_FRACTIONAL_ODD 0x8E7B +#define GL_FRACTIONAL_EVEN 0x8E7C +#define GL_MAX_PATCH_VERTICES 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E1F +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER 0x84F0 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER 0x84F1 +#define GL_TESS_EVALUATION_SHADER 0x8E87 +#define GL_TESS_CONTROL_SHADER 0x8E88 +#define GL_TRANSFORM_FEEDBACK 0x8E22 +#define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED 0x8E23 +#define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE 0x8E24 +#define GL_TRANSFORM_FEEDBACK_BINDING 0x8E25 +#define GL_MAX_TRANSFORM_FEEDBACK_BUFFERS 0x8E70 +typedef void (APIENTRYP PFNGLMINSAMPLESHADINGPROC) (GLfloat value); +typedef void (APIENTRYP PFNGLBLENDEQUATIONIPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLBLENDFUNCIPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (APIENTRYP PFNGLDRAWARRAYSINDIRECTPROC) (GLenum mode, const void *indirect); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const void *indirect); +typedef void (APIENTRYP PFNGLUNIFORM1DPROC) (GLint location, GLdouble x); +typedef void (APIENTRYP PFNGLUNIFORM2DPROC) (GLint location, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLUNIFORM3DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLUNIFORM4DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLUNIFORM1DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM2DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM3DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM4DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLGETUNIFORMDVPROC) (GLuint program, GLint location, GLdouble *params); +typedef GLint (APIENTRYP PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC) (GLuint program, GLenum shadertype, const GLchar *name); +typedef GLuint (APIENTRYP PFNGLGETSUBROUTINEINDEXPROC) (GLuint program, GLenum shadertype, const GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC) (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINENAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORMSUBROUTINESUIVPROC) (GLenum shadertype, GLsizei count, const GLuint *indices); +typedef void (APIENTRYP PFNGLGETUNIFORMSUBROUTINEUIVPROC) (GLenum shadertype, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTAGEIVPROC) (GLuint program, GLenum shadertype, GLenum pname, GLint *values); +typedef void (APIENTRYP PFNGLPATCHPARAMETERIPROC) (GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLPATCHPARAMETERFVPROC) (GLenum pname, const GLfloat *values); +typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSPROC) (GLsizei n, const GLuint *ids); +typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKPROC) (GLuint id); +typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKPROC) (GLenum mode, GLuint id); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC) (GLenum mode, GLuint id, GLuint stream); +typedef void (APIENTRYP PFNGLBEGINQUERYINDEXEDPROC) (GLenum target, GLuint index, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYINDEXEDPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLGETQUERYINDEXEDIVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMinSampleShading (GLfloat value); +GLAPI void APIENTRY glBlendEquationi (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparatei (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glBlendFunci (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparatei (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GLAPI void APIENTRY glDrawArraysIndirect (GLenum mode, const void *indirect); +GLAPI void APIENTRY glDrawElementsIndirect (GLenum mode, GLenum type, const void *indirect); +GLAPI void APIENTRY glUniform1d (GLint location, GLdouble x); +GLAPI void APIENTRY glUniform2d (GLint location, GLdouble x, GLdouble y); +GLAPI void APIENTRY glUniform3d (GLint location, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glUniform4d (GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glUniform1dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform2dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform3dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform4dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2x3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2x4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3x2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3x4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4x2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4x3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glGetUniformdv (GLuint program, GLint location, GLdouble *params); +GLAPI GLint APIENTRY glGetSubroutineUniformLocation (GLuint program, GLenum shadertype, const GLchar *name); +GLAPI GLuint APIENTRY glGetSubroutineIndex (GLuint program, GLenum shadertype, const GLchar *name); +GLAPI void APIENTRY glGetActiveSubroutineUniformiv (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values); +GLAPI void APIENTRY glGetActiveSubroutineUniformName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glGetActiveSubroutineName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glUniformSubroutinesuiv (GLenum shadertype, GLsizei count, const GLuint *indices); +GLAPI void APIENTRY glGetUniformSubroutineuiv (GLenum shadertype, GLint location, GLuint *params); +GLAPI void APIENTRY glGetProgramStageiv (GLuint program, GLenum shadertype, GLenum pname, GLint *values); +GLAPI void APIENTRY glPatchParameteri (GLenum pname, GLint value); +GLAPI void APIENTRY glPatchParameterfv (GLenum pname, const GLfloat *values); +GLAPI void APIENTRY glBindTransformFeedback (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteTransformFeedbacks (GLsizei n, const GLuint *ids); +GLAPI void APIENTRY glGenTransformFeedbacks (GLsizei n, GLuint *ids); +GLAPI GLboolean APIENTRY glIsTransformFeedback (GLuint id); +GLAPI void APIENTRY glPauseTransformFeedback (void); +GLAPI void APIENTRY glResumeTransformFeedback (void); +GLAPI void APIENTRY glDrawTransformFeedback (GLenum mode, GLuint id); +GLAPI void APIENTRY glDrawTransformFeedbackStream (GLenum mode, GLuint id, GLuint stream); +GLAPI void APIENTRY glBeginQueryIndexed (GLenum target, GLuint index, GLuint id); +GLAPI void APIENTRY glEndQueryIndexed (GLenum target, GLuint index); +GLAPI void APIENTRY glGetQueryIndexediv (GLenum target, GLuint index, GLenum pname, GLint *params); +#endif +#endif /* GL_VERSION_4_0 */ + +#ifndef GL_VERSION_4_1 +#define GL_VERSION_4_1 1 +#define GL_FIXED 0x140C +#define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B +#define GL_LOW_FLOAT 0x8DF0 +#define GL_MEDIUM_FLOAT 0x8DF1 +#define GL_HIGH_FLOAT 0x8DF2 +#define GL_LOW_INT 0x8DF3 +#define GL_MEDIUM_INT 0x8DF4 +#define GL_HIGH_INT 0x8DF5 +#define GL_SHADER_COMPILER 0x8DFA +#define GL_SHADER_BINARY_FORMATS 0x8DF8 +#define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 +#define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB +#define GL_MAX_VARYING_VECTORS 0x8DFC +#define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD +#define GL_RGB565 0x8D62 +#define GL_PROGRAM_BINARY_RETRIEVABLE_HINT 0x8257 +#define GL_PROGRAM_BINARY_LENGTH 0x8741 +#define GL_NUM_PROGRAM_BINARY_FORMATS 0x87FE +#define GL_PROGRAM_BINARY_FORMATS 0x87FF +#define GL_VERTEX_SHADER_BIT 0x00000001 +#define GL_FRAGMENT_SHADER_BIT 0x00000002 +#define GL_GEOMETRY_SHADER_BIT 0x00000004 +#define GL_TESS_CONTROL_SHADER_BIT 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT 0x00000010 +#define GL_ALL_SHADER_BITS 0xFFFFFFFF +#define GL_PROGRAM_SEPARABLE 0x8258 +#define GL_ACTIVE_PROGRAM 0x8259 +#define GL_PROGRAM_PIPELINE_BINDING 0x825A +#define GL_MAX_VIEWPORTS 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE 0x825D +#define GL_LAYER_PROVOKING_VERTEX 0x825E +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX 0x825F +#define GL_UNDEFINED_VERTEX 0x8260 +typedef void (APIENTRYP PFNGLRELEASESHADERCOMPILERPROC) (void); +typedef void (APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +typedef void (APIENTRYP PFNGLDEPTHRANGEFPROC) (GLfloat n, GLfloat f); +typedef void (APIENTRYP PFNGLCLEARDEPTHFPROC) (GLfloat d); +typedef void (APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +typedef void (APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIPROC) (GLuint program, GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLUSEPROGRAMSTAGESPROC) (GLuint pipeline, GLbitfield stages, GLuint program); +typedef void (APIENTRYP PFNGLACTIVESHADERPROGRAMPROC) (GLuint pipeline, GLuint program); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMVPROC) (GLenum type, GLsizei count, const GLchar *const*strings); +typedef void (APIENTRYP PFNGLBINDPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLDELETEPROGRAMPIPELINESPROC) (GLsizei n, const GLuint *pipelines); +typedef void (APIENTRYP PFNGLGENPROGRAMPIPELINESPROC) (GLsizei n, GLuint *pipelines); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEIVPROC) (GLuint pipeline, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IPROC) (GLuint program, GLint location, GLint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DPROC) (GLuint program, GLint location, GLdouble v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIPROC) (GLuint program, GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLVIEWPORTARRAYVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLSCISSORARRAYVPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (APIENTRYP PFNGLSCISSORINDEXEDPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLSCISSORINDEXEDVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEARRAYVPROC) (GLuint first, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEINDEXEDPROC) (GLuint index, GLdouble n, GLdouble f); +typedef void (APIENTRYP PFNGLGETFLOATI_VPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (APIENTRYP PFNGLGETDOUBLEI_VPROC) (GLenum target, GLuint index, GLdouble *data); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReleaseShaderCompiler (void); +GLAPI void APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +GLAPI void APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +GLAPI void APIENTRY glDepthRangef (GLfloat n, GLfloat f); +GLAPI void APIENTRY glClearDepthf (GLfloat d); +GLAPI void APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +GLAPI void APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); +GLAPI void APIENTRY glProgramParameteri (GLuint program, GLenum pname, GLint value); +GLAPI void APIENTRY glUseProgramStages (GLuint pipeline, GLbitfield stages, GLuint program); +GLAPI void APIENTRY glActiveShaderProgram (GLuint pipeline, GLuint program); +GLAPI GLuint APIENTRY glCreateShaderProgramv (GLenum type, GLsizei count, const GLchar *const*strings); +GLAPI void APIENTRY glBindProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glDeleteProgramPipelines (GLsizei n, const GLuint *pipelines); +GLAPI void APIENTRY glGenProgramPipelines (GLsizei n, GLuint *pipelines); +GLAPI GLboolean APIENTRY glIsProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glGetProgramPipelineiv (GLuint pipeline, GLenum pname, GLint *params); +GLAPI void APIENTRY glProgramUniform1i (GLuint program, GLint location, GLint v0); +GLAPI void APIENTRY glProgramUniform1iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform1f (GLuint program, GLint location, GLfloat v0); +GLAPI void APIENTRY glProgramUniform1fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform1d (GLuint program, GLint location, GLdouble v0); +GLAPI void APIENTRY glProgramUniform1dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform1ui (GLuint program, GLint location, GLuint v0); +GLAPI void APIENTRY glProgramUniform1uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform2i (GLuint program, GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glProgramUniform2iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform2f (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glProgramUniform2fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform2d (GLuint program, GLint location, GLdouble v0, GLdouble v1); +GLAPI void APIENTRY glProgramUniform2dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform2ui (GLuint program, GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glProgramUniform2uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform3i (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glProgramUniform3iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform3f (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glProgramUniform3fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform3d (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2); +GLAPI void APIENTRY glProgramUniform3dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform3ui (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glProgramUniform3uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform4i (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glProgramUniform4iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform4f (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glProgramUniform4fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform4d (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3); +GLAPI void APIENTRY glProgramUniform4dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform4ui (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glProgramUniform4uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniformMatrix2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glValidateProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glGetProgramPipelineInfoLog (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glVertexAttribL1d (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttribL2d (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttribL3d (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttribL4d (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttribL1dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL2dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL3dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL4dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribLPointer (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribLdv (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glViewportArrayv (GLuint first, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glViewportIndexedf (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GLAPI void APIENTRY glViewportIndexedfv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glScissorArrayv (GLuint first, GLsizei count, const GLint *v); +GLAPI void APIENTRY glScissorIndexed (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GLAPI void APIENTRY glScissorIndexedv (GLuint index, const GLint *v); +GLAPI void APIENTRY glDepthRangeArrayv (GLuint first, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glDepthRangeIndexed (GLuint index, GLdouble n, GLdouble f); +GLAPI void APIENTRY glGetFloati_v (GLenum target, GLuint index, GLfloat *data); +GLAPI void APIENTRY glGetDoublei_v (GLenum target, GLuint index, GLdouble *data); +#endif +#endif /* GL_VERSION_4_1 */ + +#ifndef GL_VERSION_4_2 +#define GL_VERSION_4_2 1 +#define GL_COPY_READ_BUFFER_BINDING 0x8F36 +#define GL_COPY_WRITE_BUFFER_BINDING 0x8F37 +#define GL_TRANSFORM_FEEDBACK_ACTIVE 0x8E24 +#define GL_TRANSFORM_FEEDBACK_PAUSED 0x8E23 +#define GL_UNPACK_COMPRESSED_BLOCK_WIDTH 0x9127 +#define GL_UNPACK_COMPRESSED_BLOCK_HEIGHT 0x9128 +#define GL_UNPACK_COMPRESSED_BLOCK_DEPTH 0x9129 +#define GL_UNPACK_COMPRESSED_BLOCK_SIZE 0x912A +#define GL_PACK_COMPRESSED_BLOCK_WIDTH 0x912B +#define GL_PACK_COMPRESSED_BLOCK_HEIGHT 0x912C +#define GL_PACK_COMPRESSED_BLOCK_DEPTH 0x912D +#define GL_PACK_COMPRESSED_BLOCK_SIZE 0x912E +#define GL_NUM_SAMPLE_COUNTS 0x9380 +#define GL_MIN_MAP_BUFFER_ALIGNMENT 0x90BC +#define GL_ATOMIC_COUNTER_BUFFER 0x92C0 +#define GL_ATOMIC_COUNTER_BUFFER_BINDING 0x92C1 +#define GL_ATOMIC_COUNTER_BUFFER_START 0x92C2 +#define GL_ATOMIC_COUNTER_BUFFER_SIZE 0x92C3 +#define GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE 0x92C4 +#define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS 0x92C5 +#define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES 0x92C6 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER 0x92C7 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER 0x92C8 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER 0x92C9 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER 0x92CA +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER 0x92CB +#define GL_MAX_VERTEX_ATOMIC_COUNTER_BUFFERS 0x92CC +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS 0x92CE +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS 0x92CF +#define GL_MAX_FRAGMENT_ATOMIC_COUNTER_BUFFERS 0x92D0 +#define GL_MAX_COMBINED_ATOMIC_COUNTER_BUFFERS 0x92D1 +#define GL_MAX_VERTEX_ATOMIC_COUNTERS 0x92D2 +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS 0x92D4 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS 0x92D5 +#define GL_MAX_FRAGMENT_ATOMIC_COUNTERS 0x92D6 +#define GL_MAX_COMBINED_ATOMIC_COUNTERS 0x92D7 +#define GL_MAX_ATOMIC_COUNTER_BUFFER_SIZE 0x92D8 +#define GL_MAX_ATOMIC_COUNTER_BUFFER_BINDINGS 0x92DC +#define GL_ACTIVE_ATOMIC_COUNTER_BUFFERS 0x92D9 +#define GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX 0x92DA +#define GL_UNSIGNED_INT_ATOMIC_COUNTER 0x92DB +#define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT 0x00000001 +#define GL_ELEMENT_ARRAY_BARRIER_BIT 0x00000002 +#define GL_UNIFORM_BARRIER_BIT 0x00000004 +#define GL_TEXTURE_FETCH_BARRIER_BIT 0x00000008 +#define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT 0x00000020 +#define GL_COMMAND_BARRIER_BIT 0x00000040 +#define GL_PIXEL_BUFFER_BARRIER_BIT 0x00000080 +#define GL_TEXTURE_UPDATE_BARRIER_BIT 0x00000100 +#define GL_BUFFER_UPDATE_BARRIER_BIT 0x00000200 +#define GL_FRAMEBUFFER_BARRIER_BIT 0x00000400 +#define GL_TRANSFORM_FEEDBACK_BARRIER_BIT 0x00000800 +#define GL_ATOMIC_COUNTER_BARRIER_BIT 0x00001000 +#define GL_ALL_BARRIER_BITS 0xFFFFFFFF +#define GL_MAX_IMAGE_UNITS 0x8F38 +#define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS 0x8F39 +#define GL_IMAGE_BINDING_NAME 0x8F3A +#define GL_IMAGE_BINDING_LEVEL 0x8F3B +#define GL_IMAGE_BINDING_LAYERED 0x8F3C +#define GL_IMAGE_BINDING_LAYER 0x8F3D +#define GL_IMAGE_BINDING_ACCESS 0x8F3E +#define GL_IMAGE_1D 0x904C +#define GL_IMAGE_2D 0x904D +#define GL_IMAGE_3D 0x904E +#define GL_IMAGE_2D_RECT 0x904F +#define GL_IMAGE_CUBE 0x9050 +#define GL_IMAGE_BUFFER 0x9051 +#define GL_IMAGE_1D_ARRAY 0x9052 +#define GL_IMAGE_2D_ARRAY 0x9053 +#define GL_IMAGE_CUBE_MAP_ARRAY 0x9054 +#define GL_IMAGE_2D_MULTISAMPLE 0x9055 +#define GL_IMAGE_2D_MULTISAMPLE_ARRAY 0x9056 +#define GL_INT_IMAGE_1D 0x9057 +#define GL_INT_IMAGE_2D 0x9058 +#define GL_INT_IMAGE_3D 0x9059 +#define GL_INT_IMAGE_2D_RECT 0x905A +#define GL_INT_IMAGE_CUBE 0x905B +#define GL_INT_IMAGE_BUFFER 0x905C +#define GL_INT_IMAGE_1D_ARRAY 0x905D +#define GL_INT_IMAGE_2D_ARRAY 0x905E +#define GL_INT_IMAGE_CUBE_MAP_ARRAY 0x905F +#define GL_INT_IMAGE_2D_MULTISAMPLE 0x9060 +#define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY 0x9061 +#define GL_UNSIGNED_INT_IMAGE_1D 0x9062 +#define GL_UNSIGNED_INT_IMAGE_2D 0x9063 +#define GL_UNSIGNED_INT_IMAGE_3D 0x9064 +#define GL_UNSIGNED_INT_IMAGE_2D_RECT 0x9065 +#define GL_UNSIGNED_INT_IMAGE_CUBE 0x9066 +#define GL_UNSIGNED_INT_IMAGE_BUFFER 0x9067 +#define GL_UNSIGNED_INT_IMAGE_1D_ARRAY 0x9068 +#define GL_UNSIGNED_INT_IMAGE_2D_ARRAY 0x9069 +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY 0x906A +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE 0x906B +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY 0x906C +#define GL_MAX_IMAGE_SAMPLES 0x906D +#define GL_IMAGE_BINDING_FORMAT 0x906E +#define GL_IMAGE_FORMAT_COMPATIBILITY_TYPE 0x90C7 +#define GL_IMAGE_FORMAT_COMPATIBILITY_BY_SIZE 0x90C8 +#define GL_IMAGE_FORMAT_COMPATIBILITY_BY_CLASS 0x90C9 +#define GL_MAX_VERTEX_IMAGE_UNIFORMS 0x90CA +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS 0x90CC +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS 0x90CD +#define GL_MAX_FRAGMENT_IMAGE_UNIFORMS 0x90CE +#define GL_MAX_COMBINED_IMAGE_UNIFORMS 0x90CF +#define GL_COMPRESSED_RGBA_BPTC_UNORM 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT 0x8E8F +#define GL_TEXTURE_IMMUTABLE_FORMAT 0x912F +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +typedef void (APIENTRYP PFNGLGETINTERNALFORMATIVPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC) (GLuint program, GLuint bufferIndex, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLBINDIMAGETEXTUREPROC) (GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format); +typedef void (APIENTRYP PFNGLMEMORYBARRIERPROC) (GLbitfield barriers); +typedef void (APIENTRYP PFNGLTEXSTORAGE1DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXSTORAGE2DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXSTORAGE3DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC) (GLenum mode, GLuint id, GLsizei instancecount); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC) (GLenum mode, GLuint id, GLuint stream, GLsizei instancecount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedBaseInstance (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +GLAPI void APIENTRY glDrawElementsInstancedBaseInstance (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +GLAPI void APIENTRY glDrawElementsInstancedBaseVertexBaseInstance (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +GLAPI void APIENTRY glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params); +GLAPI void APIENTRY glGetActiveAtomicCounterBufferiv (GLuint program, GLuint bufferIndex, GLenum pname, GLint *params); +GLAPI void APIENTRY glBindImageTexture (GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format); +GLAPI void APIENTRY glMemoryBarrier (GLbitfield barriers); +GLAPI void APIENTRY glTexStorage1D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTexStorage2D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTexStorage3D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glDrawTransformFeedbackInstanced (GLenum mode, GLuint id, GLsizei instancecount); +GLAPI void APIENTRY glDrawTransformFeedbackStreamInstanced (GLenum mode, GLuint id, GLuint stream, GLsizei instancecount); +#endif +#endif /* GL_VERSION_4_2 */ + +#ifndef GL_VERSION_4_3 +#define GL_VERSION_4_3 1 +typedef void (APIENTRY *GLDEBUGPROC)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +#define GL_NUM_SHADING_LANGUAGE_VERSIONS 0x82E9 +#define GL_VERTEX_ATTRIB_ARRAY_LONG 0x874E +#define GL_COMPRESSED_RGB8_ETC2 0x9274 +#define GL_COMPRESSED_SRGB8_ETC2 0x9275 +#define GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 0x9276 +#define GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 0x9277 +#define GL_COMPRESSED_RGBA8_ETC2_EAC 0x9278 +#define GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC 0x9279 +#define GL_COMPRESSED_R11_EAC 0x9270 +#define GL_COMPRESSED_SIGNED_R11_EAC 0x9271 +#define GL_COMPRESSED_RG11_EAC 0x9272 +#define GL_COMPRESSED_SIGNED_RG11_EAC 0x9273 +#define GL_PRIMITIVE_RESTART_FIXED_INDEX 0x8D69 +#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE 0x8D6A +#define GL_MAX_ELEMENT_INDEX 0x8D6B +#define GL_COMPUTE_SHADER 0x91B9 +#define GL_MAX_COMPUTE_UNIFORM_BLOCKS 0x91BB +#define GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS 0x91BC +#define GL_MAX_COMPUTE_IMAGE_UNIFORMS 0x91BD +#define GL_MAX_COMPUTE_SHARED_MEMORY_SIZE 0x8262 +#define GL_MAX_COMPUTE_UNIFORM_COMPONENTS 0x8263 +#define GL_MAX_COMPUTE_ATOMIC_COUNTER_BUFFERS 0x8264 +#define GL_MAX_COMPUTE_ATOMIC_COUNTERS 0x8265 +#define GL_MAX_COMBINED_COMPUTE_UNIFORM_COMPONENTS 0x8266 +#define GL_MAX_COMPUTE_WORK_GROUP_INVOCATIONS 0x90EB +#define GL_MAX_COMPUTE_WORK_GROUP_COUNT 0x91BE +#define GL_MAX_COMPUTE_WORK_GROUP_SIZE 0x91BF +#define GL_COMPUTE_WORK_GROUP_SIZE 0x8267 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER 0x90EC +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER 0x90ED +#define GL_DISPATCH_INDIRECT_BUFFER 0x90EE +#define GL_DISPATCH_INDIRECT_BUFFER_BINDING 0x90EF +#define GL_COMPUTE_SHADER_BIT 0x00000020 +#define GL_DEBUG_OUTPUT_SYNCHRONOUS 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM 0x8245 +#define GL_DEBUG_SOURCE_API 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION 0x824A +#define GL_DEBUG_SOURCE_OTHER 0x824B +#define GL_DEBUG_TYPE_ERROR 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR 0x824E +#define GL_DEBUG_TYPE_PORTABILITY 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE 0x8250 +#define GL_DEBUG_TYPE_OTHER 0x8251 +#define GL_MAX_DEBUG_MESSAGE_LENGTH 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES 0x9145 +#define GL_DEBUG_SEVERITY_HIGH 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM 0x9147 +#define GL_DEBUG_SEVERITY_LOW 0x9148 +#define GL_DEBUG_TYPE_MARKER 0x8268 +#define GL_DEBUG_TYPE_PUSH_GROUP 0x8269 +#define GL_DEBUG_TYPE_POP_GROUP 0x826A +#define GL_DEBUG_SEVERITY_NOTIFICATION 0x826B +#define GL_MAX_DEBUG_GROUP_STACK_DEPTH 0x826C +#define GL_DEBUG_GROUP_STACK_DEPTH 0x826D +#define GL_BUFFER 0x82E0 +#define GL_SHADER 0x82E1 +#define GL_PROGRAM 0x82E2 +#define GL_QUERY 0x82E3 +#define GL_PROGRAM_PIPELINE 0x82E4 +#define GL_SAMPLER 0x82E6 +#define GL_MAX_LABEL_LENGTH 0x82E8 +#define GL_DEBUG_OUTPUT 0x92E0 +#define GL_CONTEXT_FLAG_DEBUG_BIT 0x00000002 +#define GL_MAX_UNIFORM_LOCATIONS 0x826E +#define GL_FRAMEBUFFER_DEFAULT_WIDTH 0x9310 +#define GL_FRAMEBUFFER_DEFAULT_HEIGHT 0x9311 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS 0x9312 +#define GL_FRAMEBUFFER_DEFAULT_SAMPLES 0x9313 +#define GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS 0x9314 +#define GL_MAX_FRAMEBUFFER_WIDTH 0x9315 +#define GL_MAX_FRAMEBUFFER_HEIGHT 0x9316 +#define GL_MAX_FRAMEBUFFER_LAYERS 0x9317 +#define GL_MAX_FRAMEBUFFER_SAMPLES 0x9318 +#define GL_INTERNALFORMAT_SUPPORTED 0x826F +#define GL_INTERNALFORMAT_PREFERRED 0x8270 +#define GL_INTERNALFORMAT_RED_SIZE 0x8271 +#define GL_INTERNALFORMAT_GREEN_SIZE 0x8272 +#define GL_INTERNALFORMAT_BLUE_SIZE 0x8273 +#define GL_INTERNALFORMAT_ALPHA_SIZE 0x8274 +#define GL_INTERNALFORMAT_DEPTH_SIZE 0x8275 +#define GL_INTERNALFORMAT_STENCIL_SIZE 0x8276 +#define GL_INTERNALFORMAT_SHARED_SIZE 0x8277 +#define GL_INTERNALFORMAT_RED_TYPE 0x8278 +#define GL_INTERNALFORMAT_GREEN_TYPE 0x8279 +#define GL_INTERNALFORMAT_BLUE_TYPE 0x827A +#define GL_INTERNALFORMAT_ALPHA_TYPE 0x827B +#define GL_INTERNALFORMAT_DEPTH_TYPE 0x827C +#define GL_INTERNALFORMAT_STENCIL_TYPE 0x827D +#define GL_MAX_WIDTH 0x827E +#define GL_MAX_HEIGHT 0x827F +#define GL_MAX_DEPTH 0x8280 +#define GL_MAX_LAYERS 0x8281 +#define GL_MAX_COMBINED_DIMENSIONS 0x8282 +#define GL_COLOR_COMPONENTS 0x8283 +#define GL_DEPTH_COMPONENTS 0x8284 +#define GL_STENCIL_COMPONENTS 0x8285 +#define GL_COLOR_RENDERABLE 0x8286 +#define GL_DEPTH_RENDERABLE 0x8287 +#define GL_STENCIL_RENDERABLE 0x8288 +#define GL_FRAMEBUFFER_RENDERABLE 0x8289 +#define GL_FRAMEBUFFER_RENDERABLE_LAYERED 0x828A +#define GL_FRAMEBUFFER_BLEND 0x828B +#define GL_READ_PIXELS 0x828C +#define GL_READ_PIXELS_FORMAT 0x828D +#define GL_READ_PIXELS_TYPE 0x828E +#define GL_TEXTURE_IMAGE_FORMAT 0x828F +#define GL_TEXTURE_IMAGE_TYPE 0x8290 +#define GL_GET_TEXTURE_IMAGE_FORMAT 0x8291 +#define GL_GET_TEXTURE_IMAGE_TYPE 0x8292 +#define GL_MIPMAP 0x8293 +#define GL_MANUAL_GENERATE_MIPMAP 0x8294 +#define GL_AUTO_GENERATE_MIPMAP 0x8295 +#define GL_COLOR_ENCODING 0x8296 +#define GL_SRGB_READ 0x8297 +#define GL_SRGB_WRITE 0x8298 +#define GL_FILTER 0x829A +#define GL_VERTEX_TEXTURE 0x829B +#define GL_TESS_CONTROL_TEXTURE 0x829C +#define GL_TESS_EVALUATION_TEXTURE 0x829D +#define GL_GEOMETRY_TEXTURE 0x829E +#define GL_FRAGMENT_TEXTURE 0x829F +#define GL_COMPUTE_TEXTURE 0x82A0 +#define GL_TEXTURE_SHADOW 0x82A1 +#define GL_TEXTURE_GATHER 0x82A2 +#define GL_TEXTURE_GATHER_SHADOW 0x82A3 +#define GL_SHADER_IMAGE_LOAD 0x82A4 +#define GL_SHADER_IMAGE_STORE 0x82A5 +#define GL_SHADER_IMAGE_ATOMIC 0x82A6 +#define GL_IMAGE_TEXEL_SIZE 0x82A7 +#define GL_IMAGE_COMPATIBILITY_CLASS 0x82A8 +#define GL_IMAGE_PIXEL_FORMAT 0x82A9 +#define GL_IMAGE_PIXEL_TYPE 0x82AA +#define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST 0x82AC +#define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST 0x82AD +#define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE 0x82AE +#define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE 0x82AF +#define GL_TEXTURE_COMPRESSED_BLOCK_WIDTH 0x82B1 +#define GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT 0x82B2 +#define GL_TEXTURE_COMPRESSED_BLOCK_SIZE 0x82B3 +#define GL_CLEAR_BUFFER 0x82B4 +#define GL_TEXTURE_VIEW 0x82B5 +#define GL_VIEW_COMPATIBILITY_CLASS 0x82B6 +#define GL_FULL_SUPPORT 0x82B7 +#define GL_CAVEAT_SUPPORT 0x82B8 +#define GL_IMAGE_CLASS_4_X_32 0x82B9 +#define GL_IMAGE_CLASS_2_X_32 0x82BA +#define GL_IMAGE_CLASS_1_X_32 0x82BB +#define GL_IMAGE_CLASS_4_X_16 0x82BC +#define GL_IMAGE_CLASS_2_X_16 0x82BD +#define GL_IMAGE_CLASS_1_X_16 0x82BE +#define GL_IMAGE_CLASS_4_X_8 0x82BF +#define GL_IMAGE_CLASS_2_X_8 0x82C0 +#define GL_IMAGE_CLASS_1_X_8 0x82C1 +#define GL_IMAGE_CLASS_11_11_10 0x82C2 +#define GL_IMAGE_CLASS_10_10_10_2 0x82C3 +#define GL_VIEW_CLASS_128_BITS 0x82C4 +#define GL_VIEW_CLASS_96_BITS 0x82C5 +#define GL_VIEW_CLASS_64_BITS 0x82C6 +#define GL_VIEW_CLASS_48_BITS 0x82C7 +#define GL_VIEW_CLASS_32_BITS 0x82C8 +#define GL_VIEW_CLASS_24_BITS 0x82C9 +#define GL_VIEW_CLASS_16_BITS 0x82CA +#define GL_VIEW_CLASS_8_BITS 0x82CB +#define GL_VIEW_CLASS_S3TC_DXT1_RGB 0x82CC +#define GL_VIEW_CLASS_S3TC_DXT1_RGBA 0x82CD +#define GL_VIEW_CLASS_S3TC_DXT3_RGBA 0x82CE +#define GL_VIEW_CLASS_S3TC_DXT5_RGBA 0x82CF +#define GL_VIEW_CLASS_RGTC1_RED 0x82D0 +#define GL_VIEW_CLASS_RGTC2_RG 0x82D1 +#define GL_VIEW_CLASS_BPTC_UNORM 0x82D2 +#define GL_VIEW_CLASS_BPTC_FLOAT 0x82D3 +#define GL_UNIFORM 0x92E1 +#define GL_UNIFORM_BLOCK 0x92E2 +#define GL_PROGRAM_INPUT 0x92E3 +#define GL_PROGRAM_OUTPUT 0x92E4 +#define GL_BUFFER_VARIABLE 0x92E5 +#define GL_SHADER_STORAGE_BLOCK 0x92E6 +#define GL_VERTEX_SUBROUTINE 0x92E8 +#define GL_TESS_CONTROL_SUBROUTINE 0x92E9 +#define GL_TESS_EVALUATION_SUBROUTINE 0x92EA +#define GL_GEOMETRY_SUBROUTINE 0x92EB +#define GL_FRAGMENT_SUBROUTINE 0x92EC +#define GL_COMPUTE_SUBROUTINE 0x92ED +#define GL_VERTEX_SUBROUTINE_UNIFORM 0x92EE +#define GL_TESS_CONTROL_SUBROUTINE_UNIFORM 0x92EF +#define GL_TESS_EVALUATION_SUBROUTINE_UNIFORM 0x92F0 +#define GL_GEOMETRY_SUBROUTINE_UNIFORM 0x92F1 +#define GL_FRAGMENT_SUBROUTINE_UNIFORM 0x92F2 +#define GL_COMPUTE_SUBROUTINE_UNIFORM 0x92F3 +#define GL_TRANSFORM_FEEDBACK_VARYING 0x92F4 +#define GL_ACTIVE_RESOURCES 0x92F5 +#define GL_MAX_NAME_LENGTH 0x92F6 +#define GL_MAX_NUM_ACTIVE_VARIABLES 0x92F7 +#define GL_MAX_NUM_COMPATIBLE_SUBROUTINES 0x92F8 +#define GL_NAME_LENGTH 0x92F9 +#define GL_TYPE 0x92FA +#define GL_ARRAY_SIZE 0x92FB +#define GL_OFFSET 0x92FC +#define GL_BLOCK_INDEX 0x92FD +#define GL_ARRAY_STRIDE 0x92FE +#define GL_MATRIX_STRIDE 0x92FF +#define GL_IS_ROW_MAJOR 0x9300 +#define GL_ATOMIC_COUNTER_BUFFER_INDEX 0x9301 +#define GL_BUFFER_BINDING 0x9302 +#define GL_BUFFER_DATA_SIZE 0x9303 +#define GL_NUM_ACTIVE_VARIABLES 0x9304 +#define GL_ACTIVE_VARIABLES 0x9305 +#define GL_REFERENCED_BY_VERTEX_SHADER 0x9306 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER 0x9308 +#define GL_REFERENCED_BY_GEOMETRY_SHADER 0x9309 +#define GL_REFERENCED_BY_FRAGMENT_SHADER 0x930A +#define GL_REFERENCED_BY_COMPUTE_SHADER 0x930B +#define GL_TOP_LEVEL_ARRAY_SIZE 0x930C +#define GL_TOP_LEVEL_ARRAY_STRIDE 0x930D +#define GL_LOCATION 0x930E +#define GL_LOCATION_INDEX 0x930F +#define GL_IS_PER_PATCH 0x92E7 +#define GL_SHADER_STORAGE_BUFFER 0x90D2 +#define GL_SHADER_STORAGE_BUFFER_BINDING 0x90D3 +#define GL_SHADER_STORAGE_BUFFER_START 0x90D4 +#define GL_SHADER_STORAGE_BUFFER_SIZE 0x90D5 +#define GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS 0x90D6 +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS 0x90D7 +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS 0x90D9 +#define GL_MAX_FRAGMENT_SHADER_STORAGE_BLOCKS 0x90DA +#define GL_MAX_COMPUTE_SHADER_STORAGE_BLOCKS 0x90DB +#define GL_MAX_COMBINED_SHADER_STORAGE_BLOCKS 0x90DC +#define GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS 0x90DD +#define GL_MAX_SHADER_STORAGE_BLOCK_SIZE 0x90DE +#define GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT 0x90DF +#define GL_SHADER_STORAGE_BARRIER_BIT 0x00002000 +#define GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES 0x8F39 +#define GL_DEPTH_STENCIL_TEXTURE_MODE 0x90EA +#define GL_TEXTURE_BUFFER_OFFSET 0x919D +#define GL_TEXTURE_BUFFER_SIZE 0x919E +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT 0x919F +#define GL_TEXTURE_VIEW_MIN_LEVEL 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS 0x82DE +#define GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF +#define GL_VERTEX_ATTRIB_BINDING 0x82D4 +#define GL_VERTEX_ATTRIB_RELATIVE_OFFSET 0x82D5 +#define GL_VERTEX_BINDING_DIVISOR 0x82D6 +#define GL_VERTEX_BINDING_OFFSET 0x82D7 +#define GL_VERTEX_BINDING_STRIDE 0x82D8 +#define GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET 0x82D9 +#define GL_MAX_VERTEX_ATTRIB_BINDINGS 0x82DA +#define GL_VERTEX_BINDING_BUFFER 0x8F4F +#define GL_DISPLAY_LIST 0x82E7 +typedef void (APIENTRYP PFNGLCLEARBUFFERDATAPROC) (GLenum target, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARBUFFERSUBDATAPROC) (GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEPROC) (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z); +typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEINDIRECTPROC) (GLintptr indirect); +typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATAPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +typedef void (APIENTRYP PFNGLFRAMEBUFFERPARAMETERIPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETINTERNALFORMATI64VPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint64 *params); +typedef void (APIENTRYP PFNGLINVALIDATETEXSUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLINVALIDATETEXIMAGEPROC) (GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLINVALIDATEBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLINVALIDATEBUFFERDATAPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLINVALIDATEFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments); +typedef void (APIENTRYP PFNGLINVALIDATESUBFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTPROC) (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLGETPROGRAMINTERFACEIVPROC) (GLuint program, GLenum programInterface, GLenum pname, GLint *params); +typedef GLuint (APIENTRYP PFNGLGETPROGRAMRESOURCEINDEXPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCENAMEPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCEIVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLint *params); +typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef void (APIENTRYP PFNGLSHADERSTORAGEBLOCKBINDINGPROC) (GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding); +typedef void (APIENTRYP PFNGLTEXBUFFERRANGEPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLTEXSTORAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXSTORAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTUREVIEWPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +typedef void (APIENTRYP PFNGLBINDVERTEXBUFFERPROC) (GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXATTRIBBINDINGPROC) (GLuint attribindex, GLuint bindingindex); +typedef void (APIENTRYP PFNGLVERTEXBINDINGDIVISORPROC) (GLuint bindingindex, GLuint divisor); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECONTROLPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKPROC) (GLDEBUGPROC callback, const void *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +typedef void (APIENTRYP PFNGLPUSHDEBUGGROUPPROC) (GLenum source, GLuint id, GLsizei length, const GLchar *message); +typedef void (APIENTRYP PFNGLPOPDEBUGGROUPPROC) (void); +typedef void (APIENTRYP PFNGLOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +typedef void (APIENTRYP PFNGLGETOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (APIENTRYP PFNGLOBJECTPTRLABELPROC) (const void *ptr, GLsizei length, const GLchar *label); +typedef void (APIENTRYP PFNGLGETOBJECTPTRLABELPROC) (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClearBufferData (GLenum target, GLenum internalformat, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearBufferSubData (GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glDispatchCompute (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z); +GLAPI void APIENTRY glDispatchComputeIndirect (GLintptr indirect); +GLAPI void APIENTRY glCopyImageSubData (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +GLAPI void APIENTRY glFramebufferParameteri (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glGetFramebufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetInternalformati64v (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint64 *params); +GLAPI void APIENTRY glInvalidateTexSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glInvalidateTexImage (GLuint texture, GLint level); +GLAPI void APIENTRY glInvalidateBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glInvalidateBufferData (GLuint buffer); +GLAPI void APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments); +GLAPI void APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glMultiDrawArraysIndirect (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirect (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +GLAPI void APIENTRY glGetProgramInterfaceiv (GLuint program, GLenum programInterface, GLenum pname, GLint *params); +GLAPI GLuint APIENTRY glGetProgramResourceIndex (GLuint program, GLenum programInterface, const GLchar *name); +GLAPI void APIENTRY glGetProgramResourceName (GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glGetProgramResourceiv (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLint *params); +GLAPI GLint APIENTRY glGetProgramResourceLocation (GLuint program, GLenum programInterface, const GLchar *name); +GLAPI GLint APIENTRY glGetProgramResourceLocationIndex (GLuint program, GLenum programInterface, const GLchar *name); +GLAPI void APIENTRY glShaderStorageBlockBinding (GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding); +GLAPI void APIENTRY glTexBufferRange (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glTexStorage2DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTexStorage3DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureView (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +GLAPI void APIENTRY glBindVertexBuffer (GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +GLAPI void APIENTRY glVertexAttribFormat (GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +GLAPI void APIENTRY glVertexAttribIFormat (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexAttribLFormat (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexAttribBinding (GLuint attribindex, GLuint bindingindex); +GLAPI void APIENTRY glVertexBindingDivisor (GLuint bindingindex, GLuint divisor); +GLAPI void APIENTRY glDebugMessageControl (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsert (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallback (GLDEBUGPROC callback, const void *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLog (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +GLAPI void APIENTRY glPushDebugGroup (GLenum source, GLuint id, GLsizei length, const GLchar *message); +GLAPI void APIENTRY glPopDebugGroup (void); +GLAPI void APIENTRY glObjectLabel (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +GLAPI void APIENTRY glGetObjectLabel (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +GLAPI void APIENTRY glObjectPtrLabel (const void *ptr, GLsizei length, const GLchar *label); +GLAPI void APIENTRY glGetObjectPtrLabel (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +#endif /* GL_VERSION_4_3 */ + +#ifndef GL_VERSION_4_4 +#define GL_VERSION_4_4 1 +#define GL_MAX_VERTEX_ATTRIB_STRIDE 0x82E5 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED 0x8221 +#define GL_TEXTURE_BUFFER_BINDING 0x8C2A +#define GL_MAP_PERSISTENT_BIT 0x0040 +#define GL_MAP_COHERENT_BIT 0x0080 +#define GL_DYNAMIC_STORAGE_BIT 0x0100 +#define GL_CLIENT_STORAGE_BIT 0x0200 +#define GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT 0x00004000 +#define GL_BUFFER_IMMUTABLE_STORAGE 0x821F +#define GL_BUFFER_STORAGE_FLAGS 0x8220 +#define GL_CLEAR_TEXTURE 0x9365 +#define GL_LOCATION_COMPONENT 0x934A +#define GL_TRANSFORM_FEEDBACK_BUFFER_INDEX 0x934B +#define GL_TRANSFORM_FEEDBACK_BUFFER_STRIDE 0x934C +#define GL_QUERY_BUFFER 0x9192 +#define GL_QUERY_BUFFER_BARRIER_BIT 0x00008000 +#define GL_QUERY_BUFFER_BINDING 0x9193 +#define GL_QUERY_RESULT_NO_WAIT 0x9194 +#define GL_MIRROR_CLAMP_TO_EDGE 0x8743 +typedef void (APIENTRYP PFNGLBUFFERSTORAGEPROC) (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (APIENTRYP PFNGLCLEARTEXIMAGEPROC) (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARTEXSUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLBINDBUFFERSBASEPROC) (GLenum target, GLuint first, GLsizei count, const GLuint *buffers); +typedef void (APIENTRYP PFNGLBINDBUFFERSRANGEPROC) (GLenum target, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizeiptr *sizes); +typedef void (APIENTRYP PFNGLBINDTEXTURESPROC) (GLuint first, GLsizei count, const GLuint *textures); +typedef void (APIENTRYP PFNGLBINDSAMPLERSPROC) (GLuint first, GLsizei count, const GLuint *samplers); +typedef void (APIENTRYP PFNGLBINDIMAGETEXTURESPROC) (GLuint first, GLsizei count, const GLuint *textures); +typedef void (APIENTRYP PFNGLBINDVERTEXBUFFERSPROC) (GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferStorage (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +GLAPI void APIENTRY glClearTexImage (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearTexSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glBindBuffersBase (GLenum target, GLuint first, GLsizei count, const GLuint *buffers); +GLAPI void APIENTRY glBindBuffersRange (GLenum target, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizeiptr *sizes); +GLAPI void APIENTRY glBindTextures (GLuint first, GLsizei count, const GLuint *textures); +GLAPI void APIENTRY glBindSamplers (GLuint first, GLsizei count, const GLuint *samplers); +GLAPI void APIENTRY glBindImageTextures (GLuint first, GLsizei count, const GLuint *textures); +GLAPI void APIENTRY glBindVertexBuffers (GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +#endif +#endif /* GL_VERSION_4_4 */ + +#ifndef GL_VERSION_4_5 +#define GL_VERSION_4_5 1 +#define GL_CONTEXT_LOST 0x0507 +#define GL_NEGATIVE_ONE_TO_ONE 0x935E +#define GL_ZERO_TO_ONE 0x935F +#define GL_CLIP_ORIGIN 0x935C +#define GL_CLIP_DEPTH_MODE 0x935D +#define GL_QUERY_WAIT_INVERTED 0x8E17 +#define GL_QUERY_NO_WAIT_INVERTED 0x8E18 +#define GL_QUERY_BY_REGION_WAIT_INVERTED 0x8E19 +#define GL_QUERY_BY_REGION_NO_WAIT_INVERTED 0x8E1A +#define GL_MAX_CULL_DISTANCES 0x82F9 +#define GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES 0x82FA +#define GL_TEXTURE_TARGET 0x1006 +#define GL_QUERY_TARGET 0x82EA +#define GL_GUILTY_CONTEXT_RESET 0x8253 +#define GL_INNOCENT_CONTEXT_RESET 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY 0x8256 +#define GL_LOSE_CONTEXT_ON_RESET 0x8252 +#define GL_NO_RESET_NOTIFICATION 0x8261 +#define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT 0x00000004 +#define GL_COLOR_TABLE 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2 +#define GL_PROXY_COLOR_TABLE 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5 +#define GL_CONVOLUTION_1D 0x8010 +#define GL_CONVOLUTION_2D 0x8011 +#define GL_SEPARABLE_2D 0x8012 +#define GL_HISTOGRAM 0x8024 +#define GL_PROXY_HISTOGRAM 0x8025 +#define GL_MINMAX 0x802E +#define GL_CONTEXT_RELEASE_BEHAVIOR 0x82FB +#define GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH 0x82FC +typedef void (APIENTRYP PFNGLCLIPCONTROLPROC) (GLenum origin, GLenum depth); +typedef void (APIENTRYP PFNGLCREATETRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKBUFFERBASEPROC) (GLuint xfb, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKBUFFERRANGEPROC) (GLuint xfb, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKIVPROC) (GLuint xfb, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint *param); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI64_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint64 *param); +typedef void (APIENTRYP PFNGLCREATEBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (APIENTRYP PFNGLNAMEDBUFFERDATAPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLCOPYNAMEDBUFFERSUBDATAPROC) (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERDATAPROC) (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERPROC) (GLuint buffer, GLenum access); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERRANGEPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef GLboolean (APIENTRYP PFNGLUNMAPNAMEDBUFFERPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERIVPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERI64VPROC) (GLuint buffer, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPOINTERVPROC) (GLuint buffer, GLenum pname, void **params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +typedef void (APIENTRYP PFNGLCREATEFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERRENDERBUFFERPROC) (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERPARAMETERIPROC) (GLuint framebuffer, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURELAYERPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERDRAWBUFFERPROC) (GLuint framebuffer, GLenum buf); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERDRAWBUFFERSPROC) (GLuint framebuffer, GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERREADBUFFERPROC) (GLuint framebuffer, GLenum src); +typedef void (APIENTRYP PFNGLINVALIDATENAMEDFRAMEBUFFERDATAPROC) (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments); +typedef void (APIENTRYP PFNGLINVALIDATENAMEDFRAMEBUFFERSUBDATAPROC) (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERIVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLint *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERUIVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERFVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLfloat *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERFIPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +typedef void (APIENTRYP PFNGLBLITNAMEDFRAMEBUFFERPROC) (GLuint readFramebuffer, GLuint drawFramebuffer, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef GLenum (APIENTRYP PFNGLCHECKNAMEDFRAMEBUFFERSTATUSPROC) (GLuint framebuffer, GLenum target); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVPROC) (GLuint framebuffer, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATERENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEPROC) (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETNAMEDRENDERBUFFERPARAMETERIVPROC) (GLuint renderbuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATETEXTURESPROC) (GLenum target, GLsizei n, GLuint *textures); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERPROC) (GLuint texture, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERRANGEPROC) (GLuint texture, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE1DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DMULTISAMPLEPROC) (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DMULTISAMPLEPROC) (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFPROC) (GLuint texture, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFVPROC) (GLuint texture, GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIPROC) (GLuint texture, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIIVPROC) (GLuint texture, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIUIVPROC) (GLuint texture, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIVPROC) (GLuint texture, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLGENERATETEXTUREMIPMAPPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLBINDTEXTUREUNITPROC) (GLuint unit, GLuint texture); +typedef void (APIENTRYP PFNGLGETTEXTUREIMAGEPROC) (GLuint texture, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTUREIMAGEPROC) (GLuint texture, GLint level, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERFVPROC) (GLuint texture, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERIVPROC) (GLuint texture, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERFVPROC) (GLuint texture, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIIVPROC) (GLuint texture, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIUIVPROC) (GLuint texture, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIVPROC) (GLuint texture, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATEVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays); +typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYATTRIBPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYATTRIBPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLVERTEXARRAYELEMENTBUFFERPROC) (GLuint vaobj, GLuint buffer); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBUFFERPROC) (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBUFFERSPROC) (GLuint vaobj, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBBINDINGPROC) (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBIFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBLFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYBINDINGDIVISORPROC) (GLuint vaobj, GLuint bindingindex, GLuint divisor); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYIVPROC) (GLuint vaobj, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINDEXEDIVPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINDEXED64IVPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint64 *param); +typedef void (APIENTRYP PFNGLCREATESAMPLERSPROC) (GLsizei n, GLuint *samplers); +typedef void (APIENTRYP PFNGLCREATEPROGRAMPIPELINESPROC) (GLsizei n, GLuint *pipelines); +typedef void (APIENTRYP PFNGLCREATEQUERIESPROC) (GLenum target, GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTI64VPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTIVPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTUI64VPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTUIVPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLMEMORYBARRIERBYREGIONPROC) (GLbitfield barriers); +typedef void (APIENTRYP PFNGLGETTEXTURESUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTURESUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei bufSize, void *pixels); +typedef GLenum (APIENTRYP PFNGLGETGRAPHICSRESETSTATUSPROC) (void); +typedef void (APIENTRYP PFNGLGETNCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint lod, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETNTEXIMAGEPROC) (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETNUNIFORMDVPROC) (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMFVPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMIVPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUIVPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +typedef void (APIENTRYP PFNGLREADNPIXELSPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (APIENTRYP PFNGLGETNMAPDVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +typedef void (APIENTRYP PFNGLGETNMAPFVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLGETNMAPIVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +typedef void (APIENTRYP PFNGLGETNPIXELMAPFVPROC) (GLenum map, GLsizei bufSize, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVPROC) (GLenum map, GLsizei bufSize, GLuint *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUSVPROC) (GLenum map, GLsizei bufSize, GLushort *values); +typedef void (APIENTRYP PFNGLGETNPOLYGONSTIPPLEPROC) (GLsizei bufSize, GLubyte *pattern); +typedef void (APIENTRYP PFNGLGETNCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +typedef void (APIENTRYP PFNGLGETNCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +typedef void (APIENTRYP PFNGLGETNSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +typedef void (APIENTRYP PFNGLGETNHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLGETNMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLTEXTUREBARRIERPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClipControl (GLenum origin, GLenum depth); +GLAPI void APIENTRY glCreateTransformFeedbacks (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glTransformFeedbackBufferBase (GLuint xfb, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackBufferRange (GLuint xfb, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glGetTransformFeedbackiv (GLuint xfb, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetTransformFeedbacki_v (GLuint xfb, GLenum pname, GLuint index, GLint *param); +GLAPI void APIENTRY glGetTransformFeedbacki64_v (GLuint xfb, GLenum pname, GLuint index, GLint64 *param); +GLAPI void APIENTRY glCreateBuffers (GLsizei n, GLuint *buffers); +GLAPI void APIENTRY glNamedBufferStorage (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +GLAPI void APIENTRY glNamedBufferData (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +GLAPI void APIENTRY glNamedBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glCopyNamedBufferSubData (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glClearNamedBufferData (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearNamedBufferSubData (GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +GLAPI void *APIENTRY glMapNamedBuffer (GLuint buffer, GLenum access); +GLAPI void *APIENTRY glMapNamedBufferRange (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI GLboolean APIENTRY glUnmapNamedBuffer (GLuint buffer); +GLAPI void APIENTRY glFlushMappedNamedBufferRange (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glGetNamedBufferParameteriv (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedBufferParameteri64v (GLuint buffer, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetNamedBufferPointerv (GLuint buffer, GLenum pname, void **params); +GLAPI void APIENTRY glGetNamedBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +GLAPI void APIENTRY glCreateFramebuffers (GLsizei n, GLuint *framebuffers); +GLAPI void APIENTRY glNamedFramebufferRenderbuffer (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glNamedFramebufferParameteri (GLuint framebuffer, GLenum pname, GLint param); +GLAPI void APIENTRY glNamedFramebufferTexture (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTextureLayer (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glNamedFramebufferDrawBuffer (GLuint framebuffer, GLenum buf); +GLAPI void APIENTRY glNamedFramebufferDrawBuffers (GLuint framebuffer, GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glNamedFramebufferReadBuffer (GLuint framebuffer, GLenum src); +GLAPI void APIENTRY glInvalidateNamedFramebufferData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments); +GLAPI void APIENTRY glInvalidateNamedFramebufferSubData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glClearNamedFramebufferiv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLint *value); +GLAPI void APIENTRY glClearNamedFramebufferuiv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value); +GLAPI void APIENTRY glClearNamedFramebufferfv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLfloat *value); +GLAPI void APIENTRY glClearNamedFramebufferfi (GLuint framebuffer, GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +GLAPI void APIENTRY glBlitNamedFramebuffer (GLuint readFramebuffer, GLuint drawFramebuffer, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI GLenum APIENTRY glCheckNamedFramebufferStatus (GLuint framebuffer, GLenum target); +GLAPI void APIENTRY glGetNamedFramebufferParameteriv (GLuint framebuffer, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetNamedFramebufferAttachmentParameteriv (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateRenderbuffers (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glNamedRenderbufferStorage (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisample (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetNamedRenderbufferParameteriv (GLuint renderbuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateTextures (GLenum target, GLsizei n, GLuint *textures); +GLAPI void APIENTRY glTextureBuffer (GLuint texture, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glTextureBufferRange (GLuint texture, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glTextureStorage1D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTextureStorage2D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureStorage3D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glTextureStorage2DMultisample (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureStorage3DMultisample (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCompressedTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCopyTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glCopyTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureParameterf (GLuint texture, GLenum pname, GLfloat param); +GLAPI void APIENTRY glTextureParameterfv (GLuint texture, GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glTextureParameteri (GLuint texture, GLenum pname, GLint param); +GLAPI void APIENTRY glTextureParameterIiv (GLuint texture, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureParameterIuiv (GLuint texture, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glTextureParameteriv (GLuint texture, GLenum pname, const GLint *param); +GLAPI void APIENTRY glGenerateTextureMipmap (GLuint texture); +GLAPI void APIENTRY glBindTextureUnit (GLuint unit, GLuint texture); +GLAPI void APIENTRY glGetTextureImage (GLuint texture, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetCompressedTextureImage (GLuint texture, GLint level, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetTextureLevelParameterfv (GLuint texture, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureLevelParameteriv (GLuint texture, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterfv (GLuint texture, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureParameterIiv (GLuint texture, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterIuiv (GLuint texture, GLenum pname, GLuint *params); +GLAPI void APIENTRY glGetTextureParameteriv (GLuint texture, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateVertexArrays (GLsizei n, GLuint *arrays); +GLAPI void APIENTRY glDisableVertexArrayAttrib (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glEnableVertexArrayAttrib (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glVertexArrayElementBuffer (GLuint vaobj, GLuint buffer); +GLAPI void APIENTRY glVertexArrayVertexBuffer (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +GLAPI void APIENTRY glVertexArrayVertexBuffers (GLuint vaobj, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +GLAPI void APIENTRY glVertexArrayAttribBinding (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +GLAPI void APIENTRY glVertexArrayAttribFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayAttribIFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayAttribLFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayBindingDivisor (GLuint vaobj, GLuint bindingindex, GLuint divisor); +GLAPI void APIENTRY glGetVertexArrayiv (GLuint vaobj, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayIndexediv (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayIndexed64iv (GLuint vaobj, GLuint index, GLenum pname, GLint64 *param); +GLAPI void APIENTRY glCreateSamplers (GLsizei n, GLuint *samplers); +GLAPI void APIENTRY glCreateProgramPipelines (GLsizei n, GLuint *pipelines); +GLAPI void APIENTRY glCreateQueries (GLenum target, GLsizei n, GLuint *ids); +GLAPI void APIENTRY glGetQueryBufferObjecti64v (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectiv (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectui64v (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectuiv (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glMemoryBarrierByRegion (GLbitfield barriers); +GLAPI void APIENTRY glGetTextureSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetCompressedTextureSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei bufSize, void *pixels); +GLAPI GLenum APIENTRY glGetGraphicsResetStatus (void); +GLAPI void APIENTRY glGetnCompressedTexImage (GLenum target, GLint lod, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetnTexImage (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetnUniformdv (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +GLAPI void APIENTRY glGetnUniformfv (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GLAPI void APIENTRY glGetnUniformiv (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GLAPI void APIENTRY glGetnUniformuiv (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +GLAPI void APIENTRY glReadnPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GLAPI void APIENTRY glGetnMapdv (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +GLAPI void APIENTRY glGetnMapfv (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glGetnMapiv (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +GLAPI void APIENTRY glGetnPixelMapfv (GLenum map, GLsizei bufSize, GLfloat *values); +GLAPI void APIENTRY glGetnPixelMapuiv (GLenum map, GLsizei bufSize, GLuint *values); +GLAPI void APIENTRY glGetnPixelMapusv (GLenum map, GLsizei bufSize, GLushort *values); +GLAPI void APIENTRY glGetnPolygonStipple (GLsizei bufSize, GLubyte *pattern); +GLAPI void APIENTRY glGetnColorTable (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +GLAPI void APIENTRY glGetnConvolutionFilter (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +GLAPI void APIENTRY glGetnSeparableFilter (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +GLAPI void APIENTRY glGetnHistogram (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glGetnMinmax (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glTextureBarrier (void); +#endif +#endif /* GL_VERSION_4_5 */ + +#ifndef GL_VERSION_4_6 +#define GL_VERSION_4_6 1 +#define GL_SHADER_BINARY_FORMAT_SPIR_V 0x9551 +#define GL_SPIR_V_BINARY 0x9552 +#define GL_PARAMETER_BUFFER 0x80EE +#define GL_PARAMETER_BUFFER_BINDING 0x80EF +#define GL_CONTEXT_FLAG_NO_ERROR_BIT 0x00000008 +#define GL_VERTICES_SUBMITTED 0x82EE +#define GL_PRIMITIVES_SUBMITTED 0x82EF +#define GL_VERTEX_SHADER_INVOCATIONS 0x82F0 +#define GL_TESS_CONTROL_SHADER_PATCHES 0x82F1 +#define GL_TESS_EVALUATION_SHADER_INVOCATIONS 0x82F2 +#define GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED 0x82F3 +#define GL_FRAGMENT_SHADER_INVOCATIONS 0x82F4 +#define GL_COMPUTE_SHADER_INVOCATIONS 0x82F5 +#define GL_CLIPPING_INPUT_PRIMITIVES 0x82F6 +#define GL_CLIPPING_OUTPUT_PRIMITIVES 0x82F7 +#define GL_POLYGON_OFFSET_CLAMP 0x8E1B +#define GL_SPIR_V_EXTENSIONS 0x9553 +#define GL_NUM_SPIR_V_EXTENSIONS 0x9554 +#define GL_TEXTURE_MAX_ANISOTROPY 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY 0x84FF +#define GL_TRANSFORM_FEEDBACK_OVERFLOW 0x82EC +#define GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW 0x82ED +typedef void (APIENTRYP PFNGLSPECIALIZESHADERPROC) (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTCOUNTPROC) (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTPROC) (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLPOLYGONOFFSETCLAMPPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpecializeShader (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +GLAPI void APIENTRY glMultiDrawArraysIndirectCount (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectCount (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glPolygonOffsetClamp (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_VERSION_4_6 */ + +#ifndef GL_ARB_ES2_compatibility +#define GL_ARB_ES2_compatibility 1 +#endif /* GL_ARB_ES2_compatibility */ + +#ifndef GL_ARB_ES3_1_compatibility +#define GL_ARB_ES3_1_compatibility 1 +#endif /* GL_ARB_ES3_1_compatibility */ + +#ifndef GL_ARB_ES3_2_compatibility +#define GL_ARB_ES3_2_compatibility 1 +#define GL_PRIMITIVE_BOUNDING_BOX_ARB 0x92BE +#define GL_MULTISAMPLE_LINE_WIDTH_RANGE_ARB 0x9381 +#define GL_MULTISAMPLE_LINE_WIDTH_GRANULARITY_ARB 0x9382 +typedef void (APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXARBPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPrimitiveBoundingBoxARB (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_ARB_ES3_2_compatibility */ + +#ifndef GL_ARB_ES3_compatibility +#define GL_ARB_ES3_compatibility 1 +#endif /* GL_ARB_ES3_compatibility */ + +#ifndef GL_ARB_arrays_of_arrays +#define GL_ARB_arrays_of_arrays 1 +#endif /* GL_ARB_arrays_of_arrays */ + +#ifndef GL_ARB_base_instance +#define GL_ARB_base_instance 1 +#endif /* GL_ARB_base_instance */ + +#ifndef GL_ARB_bindless_texture +#define GL_ARB_bindless_texture 1 +typedef khronos_uint64_t GLuint64EXT; +#define GL_UNSIGNED_INT64_ARB 0x140F +typedef GLuint64 (APIENTRYP PFNGLGETTEXTUREHANDLEARBPROC) (GLuint texture); +typedef GLuint64 (APIENTRYP PFNGLGETTEXTURESAMPLERHANDLEARBPROC) (GLuint texture, GLuint sampler); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLENONRESIDENTARBPROC) (GLuint64 handle); +typedef GLuint64 (APIENTRYP PFNGLGETIMAGEHANDLEARBPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLERESIDENTARBPROC) (GLuint64 handle, GLenum access); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLENONRESIDENTARBPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64ARBPROC) (GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64ARBPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +typedef GLboolean (APIENTRYP PFNGLISTEXTUREHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef GLboolean (APIENTRYP PFNGLISIMAGEHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64ARBPROC) (GLuint index, GLuint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64VARBPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLUI64VARBPROC) (GLuint index, GLenum pname, GLuint64EXT *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint64 APIENTRY glGetTextureHandleARB (GLuint texture); +GLAPI GLuint64 APIENTRY glGetTextureSamplerHandleARB (GLuint texture, GLuint sampler); +GLAPI void APIENTRY glMakeTextureHandleResidentARB (GLuint64 handle); +GLAPI void APIENTRY glMakeTextureHandleNonResidentARB (GLuint64 handle); +GLAPI GLuint64 APIENTRY glGetImageHandleARB (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +GLAPI void APIENTRY glMakeImageHandleResidentARB (GLuint64 handle, GLenum access); +GLAPI void APIENTRY glMakeImageHandleNonResidentARB (GLuint64 handle); +GLAPI void APIENTRY glUniformHandleui64ARB (GLint location, GLuint64 value); +GLAPI void APIENTRY glUniformHandleui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniformHandleui64ARB (GLuint program, GLint location, GLuint64 value); +GLAPI void APIENTRY glProgramUniformHandleui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +GLAPI GLboolean APIENTRY glIsTextureHandleResidentARB (GLuint64 handle); +GLAPI GLboolean APIENTRY glIsImageHandleResidentARB (GLuint64 handle); +GLAPI void APIENTRY glVertexAttribL1ui64ARB (GLuint index, GLuint64EXT x); +GLAPI void APIENTRY glVertexAttribL1ui64vARB (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glGetVertexAttribLui64vARB (GLuint index, GLenum pname, GLuint64EXT *params); +#endif +#endif /* GL_ARB_bindless_texture */ + +#ifndef GL_ARB_blend_func_extended +#define GL_ARB_blend_func_extended 1 +#endif /* GL_ARB_blend_func_extended */ + +#ifndef GL_ARB_buffer_storage +#define GL_ARB_buffer_storage 1 +#endif /* GL_ARB_buffer_storage */ + +#ifndef GL_ARB_cl_event +#define GL_ARB_cl_event 1 +struct _cl_context; +struct _cl_event; +#define GL_SYNC_CL_EVENT_ARB 0x8240 +#define GL_SYNC_CL_EVENT_COMPLETE_ARB 0x8241 +typedef GLsync (APIENTRYP PFNGLCREATESYNCFROMCLEVENTARBPROC) (struct _cl_context *context, struct _cl_event *event, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLsync APIENTRY glCreateSyncFromCLeventARB (struct _cl_context *context, struct _cl_event *event, GLbitfield flags); +#endif +#endif /* GL_ARB_cl_event */ + +#ifndef GL_ARB_clear_buffer_object +#define GL_ARB_clear_buffer_object 1 +#endif /* GL_ARB_clear_buffer_object */ + +#ifndef GL_ARB_clear_texture +#define GL_ARB_clear_texture 1 +#endif /* GL_ARB_clear_texture */ + +#ifndef GL_ARB_clip_control +#define GL_ARB_clip_control 1 +#endif /* GL_ARB_clip_control */ + +#ifndef GL_ARB_color_buffer_float +#define GL_ARB_color_buffer_float 1 +#define GL_RGBA_FLOAT_MODE_ARB 0x8820 +#define GL_CLAMP_VERTEX_COLOR_ARB 0x891A +#define GL_CLAMP_FRAGMENT_COLOR_ARB 0x891B +#define GL_CLAMP_READ_COLOR_ARB 0x891C +#define GL_FIXED_ONLY_ARB 0x891D +typedef void (APIENTRYP PFNGLCLAMPCOLORARBPROC) (GLenum target, GLenum clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClampColorARB (GLenum target, GLenum clamp); +#endif +#endif /* GL_ARB_color_buffer_float */ + +#ifndef GL_ARB_compatibility +#define GL_ARB_compatibility 1 +#endif /* GL_ARB_compatibility */ + +#ifndef GL_ARB_compressed_texture_pixel_storage +#define GL_ARB_compressed_texture_pixel_storage 1 +#endif /* GL_ARB_compressed_texture_pixel_storage */ + +#ifndef GL_ARB_compute_shader +#define GL_ARB_compute_shader 1 +#endif /* GL_ARB_compute_shader */ + +#ifndef GL_ARB_compute_variable_group_size +#define GL_ARB_compute_variable_group_size 1 +#define GL_MAX_COMPUTE_VARIABLE_GROUP_INVOCATIONS_ARB 0x9344 +#define GL_MAX_COMPUTE_FIXED_GROUP_INVOCATIONS_ARB 0x90EB +#define GL_MAX_COMPUTE_VARIABLE_GROUP_SIZE_ARB 0x9345 +#define GL_MAX_COMPUTE_FIXED_GROUP_SIZE_ARB 0x91BF +typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEGROUPSIZEARBPROC) (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z, GLuint group_size_x, GLuint group_size_y, GLuint group_size_z); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDispatchComputeGroupSizeARB (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z, GLuint group_size_x, GLuint group_size_y, GLuint group_size_z); +#endif +#endif /* GL_ARB_compute_variable_group_size */ + +#ifndef GL_ARB_conditional_render_inverted +#define GL_ARB_conditional_render_inverted 1 +#endif /* GL_ARB_conditional_render_inverted */ + +#ifndef GL_ARB_conservative_depth +#define GL_ARB_conservative_depth 1 +#endif /* GL_ARB_conservative_depth */ + +#ifndef GL_ARB_copy_buffer +#define GL_ARB_copy_buffer 1 +#endif /* GL_ARB_copy_buffer */ + +#ifndef GL_ARB_copy_image +#define GL_ARB_copy_image 1 +#endif /* GL_ARB_copy_image */ + +#ifndef GL_ARB_cull_distance +#define GL_ARB_cull_distance 1 +#endif /* GL_ARB_cull_distance */ + +#ifndef GL_ARB_debug_output +#define GL_ARB_debug_output 1 +typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +#define GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_ARB 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION_ARB 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM_ARB 0x8245 +#define GL_DEBUG_SOURCE_API_ARB 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_ARB 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER_ARB 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY_ARB 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION_ARB 0x824A +#define GL_DEBUG_SOURCE_OTHER_ARB 0x824B +#define GL_DEBUG_TYPE_ERROR_ARB 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB 0x824E +#define GL_DEBUG_TYPE_PORTABILITY_ARB 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE_ARB 0x8250 +#define GL_DEBUG_TYPE_OTHER_ARB 0x8251 +#define GL_MAX_DEBUG_MESSAGE_LENGTH_ARB 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_ARB 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_ARB 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_ARB 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_ARB 0x9147 +#define GL_DEBUG_SEVERITY_LOW_ARB 0x9148 +typedef void (APIENTRYP PFNGLDEBUGMESSAGECONTROLARBPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTARBPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKARBPROC) (GLDEBUGPROCARB callback, const void *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGARBPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDebugMessageControlARB (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsertARB (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallbackARB (GLDEBUGPROCARB callback, const void *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLogARB (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +#endif +#endif /* GL_ARB_debug_output */ + +#ifndef GL_ARB_depth_buffer_float +#define GL_ARB_depth_buffer_float 1 +#endif /* GL_ARB_depth_buffer_float */ + +#ifndef GL_ARB_depth_clamp +#define GL_ARB_depth_clamp 1 +#endif /* GL_ARB_depth_clamp */ + +#ifndef GL_ARB_depth_texture +#define GL_ARB_depth_texture 1 +#define GL_DEPTH_COMPONENT16_ARB 0x81A5 +#define GL_DEPTH_COMPONENT24_ARB 0x81A6 +#define GL_DEPTH_COMPONENT32_ARB 0x81A7 +#define GL_TEXTURE_DEPTH_SIZE_ARB 0x884A +#define GL_DEPTH_TEXTURE_MODE_ARB 0x884B +#endif /* GL_ARB_depth_texture */ + +#ifndef GL_ARB_derivative_control +#define GL_ARB_derivative_control 1 +#endif /* GL_ARB_derivative_control */ + +#ifndef GL_ARB_direct_state_access +#define GL_ARB_direct_state_access 1 +#endif /* GL_ARB_direct_state_access */ + +#ifndef GL_ARB_draw_buffers +#define GL_ARB_draw_buffers 1 +#define GL_MAX_DRAW_BUFFERS_ARB 0x8824 +#define GL_DRAW_BUFFER0_ARB 0x8825 +#define GL_DRAW_BUFFER1_ARB 0x8826 +#define GL_DRAW_BUFFER2_ARB 0x8827 +#define GL_DRAW_BUFFER3_ARB 0x8828 +#define GL_DRAW_BUFFER4_ARB 0x8829 +#define GL_DRAW_BUFFER5_ARB 0x882A +#define GL_DRAW_BUFFER6_ARB 0x882B +#define GL_DRAW_BUFFER7_ARB 0x882C +#define GL_DRAW_BUFFER8_ARB 0x882D +#define GL_DRAW_BUFFER9_ARB 0x882E +#define GL_DRAW_BUFFER10_ARB 0x882F +#define GL_DRAW_BUFFER11_ARB 0x8830 +#define GL_DRAW_BUFFER12_ARB 0x8831 +#define GL_DRAW_BUFFER13_ARB 0x8832 +#define GL_DRAW_BUFFER14_ARB 0x8833 +#define GL_DRAW_BUFFER15_ARB 0x8834 +typedef void (APIENTRYP PFNGLDRAWBUFFERSARBPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawBuffersARB (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_ARB_draw_buffers */ + +#ifndef GL_ARB_draw_buffers_blend +#define GL_ARB_draw_buffers_blend 1 +typedef void (APIENTRYP PFNGLBLENDEQUATIONIARBPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIARBPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLBLENDFUNCIARBPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIARBPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationiARB (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparateiARB (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glBlendFunciARB (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparateiARB (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +#endif +#endif /* GL_ARB_draw_buffers_blend */ + +#ifndef GL_ARB_draw_elements_base_vertex +#define GL_ARB_draw_elements_base_vertex 1 +#endif /* GL_ARB_draw_elements_base_vertex */ + +#ifndef GL_ARB_draw_indirect +#define GL_ARB_draw_indirect 1 +#endif /* GL_ARB_draw_indirect */ + +#ifndef GL_ARB_draw_instanced +#define GL_ARB_draw_instanced 1 +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDARBPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDARBPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedARB (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GLAPI void APIENTRY glDrawElementsInstancedARB (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_ARB_draw_instanced */ + +#ifndef GL_ARB_enhanced_layouts +#define GL_ARB_enhanced_layouts 1 +#endif /* GL_ARB_enhanced_layouts */ + +#ifndef GL_ARB_explicit_attrib_location +#define GL_ARB_explicit_attrib_location 1 +#endif /* GL_ARB_explicit_attrib_location */ + +#ifndef GL_ARB_explicit_uniform_location +#define GL_ARB_explicit_uniform_location 1 +#endif /* GL_ARB_explicit_uniform_location */ + +#ifndef GL_ARB_fragment_coord_conventions +#define GL_ARB_fragment_coord_conventions 1 +#endif /* GL_ARB_fragment_coord_conventions */ + +#ifndef GL_ARB_fragment_layer_viewport +#define GL_ARB_fragment_layer_viewport 1 +#endif /* GL_ARB_fragment_layer_viewport */ + +#ifndef GL_ARB_fragment_program +#define GL_ARB_fragment_program 1 +#define GL_FRAGMENT_PROGRAM_ARB 0x8804 +#define GL_PROGRAM_FORMAT_ASCII_ARB 0x8875 +#define GL_PROGRAM_LENGTH_ARB 0x8627 +#define GL_PROGRAM_FORMAT_ARB 0x8876 +#define GL_PROGRAM_BINDING_ARB 0x8677 +#define GL_PROGRAM_INSTRUCTIONS_ARB 0x88A0 +#define GL_MAX_PROGRAM_INSTRUCTIONS_ARB 0x88A1 +#define GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A2 +#define GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A3 +#define GL_PROGRAM_TEMPORARIES_ARB 0x88A4 +#define GL_MAX_PROGRAM_TEMPORARIES_ARB 0x88A5 +#define GL_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A6 +#define GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A7 +#define GL_PROGRAM_PARAMETERS_ARB 0x88A8 +#define GL_MAX_PROGRAM_PARAMETERS_ARB 0x88A9 +#define GL_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AA +#define GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AB +#define GL_PROGRAM_ATTRIBS_ARB 0x88AC +#define GL_MAX_PROGRAM_ATTRIBS_ARB 0x88AD +#define GL_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AE +#define GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AF +#define GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB 0x88B4 +#define GL_MAX_PROGRAM_ENV_PARAMETERS_ARB 0x88B5 +#define GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB 0x88B6 +#define GL_PROGRAM_ALU_INSTRUCTIONS_ARB 0x8805 +#define GL_PROGRAM_TEX_INSTRUCTIONS_ARB 0x8806 +#define GL_PROGRAM_TEX_INDIRECTIONS_ARB 0x8807 +#define GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x8808 +#define GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x8809 +#define GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x880A +#define GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB 0x880B +#define GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB 0x880C +#define GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB 0x880D +#define GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x880E +#define GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x880F +#define GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x8810 +#define GL_PROGRAM_STRING_ARB 0x8628 +#define GL_PROGRAM_ERROR_POSITION_ARB 0x864B +#define GL_CURRENT_MATRIX_ARB 0x8641 +#define GL_TRANSPOSE_CURRENT_MATRIX_ARB 0x88B7 +#define GL_CURRENT_MATRIX_STACK_DEPTH_ARB 0x8640 +#define GL_MAX_PROGRAM_MATRICES_ARB 0x862F +#define GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB 0x862E +#define GL_MAX_TEXTURE_COORDS_ARB 0x8871 +#define GL_MAX_TEXTURE_IMAGE_UNITS_ARB 0x8872 +#define GL_PROGRAM_ERROR_STRING_ARB 0x8874 +#define GL_MATRIX0_ARB 0x88C0 +#define GL_MATRIX1_ARB 0x88C1 +#define GL_MATRIX2_ARB 0x88C2 +#define GL_MATRIX3_ARB 0x88C3 +#define GL_MATRIX4_ARB 0x88C4 +#define GL_MATRIX5_ARB 0x88C5 +#define GL_MATRIX6_ARB 0x88C6 +#define GL_MATRIX7_ARB 0x88C7 +#define GL_MATRIX8_ARB 0x88C8 +#define GL_MATRIX9_ARB 0x88C9 +#define GL_MATRIX10_ARB 0x88CA +#define GL_MATRIX11_ARB 0x88CB +#define GL_MATRIX12_ARB 0x88CC +#define GL_MATRIX13_ARB 0x88CD +#define GL_MATRIX14_ARB 0x88CE +#define GL_MATRIX15_ARB 0x88CF +#define GL_MATRIX16_ARB 0x88D0 +#define GL_MATRIX17_ARB 0x88D1 +#define GL_MATRIX18_ARB 0x88D2 +#define GL_MATRIX19_ARB 0x88D3 +#define GL_MATRIX20_ARB 0x88D4 +#define GL_MATRIX21_ARB 0x88D5 +#define GL_MATRIX22_ARB 0x88D6 +#define GL_MATRIX23_ARB 0x88D7 +#define GL_MATRIX24_ARB 0x88D8 +#define GL_MATRIX25_ARB 0x88D9 +#define GL_MATRIX26_ARB 0x88DA +#define GL_MATRIX27_ARB 0x88DB +#define GL_MATRIX28_ARB 0x88DC +#define GL_MATRIX29_ARB 0x88DD +#define GL_MATRIX30_ARB 0x88DE +#define GL_MATRIX31_ARB 0x88DF +typedef void (APIENTRYP PFNGLPROGRAMSTRINGARBPROC) (GLenum target, GLenum format, GLsizei len, const void *string); +typedef void (APIENTRYP PFNGLBINDPROGRAMARBPROC) (GLenum target, GLuint program); +typedef void (APIENTRYP PFNGLDELETEPROGRAMSARBPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLGENPROGRAMSARBPROC) (GLsizei n, GLuint *programs); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGARBPROC) (GLenum target, GLenum pname, void *string); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMARBPROC) (GLuint program); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramStringARB (GLenum target, GLenum format, GLsizei len, const void *string); +GLAPI void APIENTRY glBindProgramARB (GLenum target, GLuint program); +GLAPI void APIENTRY glDeleteProgramsARB (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glGenProgramsARB (GLsizei n, GLuint *programs); +GLAPI void APIENTRY glProgramEnvParameter4dARB (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramEnvParameter4dvARB (GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glProgramEnvParameter4fARB (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramEnvParameter4fvARB (GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glProgramLocalParameter4dARB (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramLocalParameter4dvARB (GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glProgramLocalParameter4fARB (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramLocalParameter4fvARB (GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glGetProgramEnvParameterdvARB (GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetProgramEnvParameterfvARB (GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetProgramLocalParameterdvARB (GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetProgramLocalParameterfvARB (GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetProgramivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramStringARB (GLenum target, GLenum pname, void *string); +GLAPI GLboolean APIENTRY glIsProgramARB (GLuint program); +#endif +#endif /* GL_ARB_fragment_program */ + +#ifndef GL_ARB_fragment_program_shadow +#define GL_ARB_fragment_program_shadow 1 +#endif /* GL_ARB_fragment_program_shadow */ + +#ifndef GL_ARB_fragment_shader +#define GL_ARB_fragment_shader 1 +#define GL_FRAGMENT_SHADER_ARB 0x8B30 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB 0x8B49 +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB 0x8B8B +#endif /* GL_ARB_fragment_shader */ + +#ifndef GL_ARB_fragment_shader_interlock +#define GL_ARB_fragment_shader_interlock 1 +#endif /* GL_ARB_fragment_shader_interlock */ + +#ifndef GL_ARB_framebuffer_no_attachments +#define GL_ARB_framebuffer_no_attachments 1 +#endif /* GL_ARB_framebuffer_no_attachments */ + +#ifndef GL_ARB_framebuffer_object +#define GL_ARB_framebuffer_object 1 +#endif /* GL_ARB_framebuffer_object */ + +#ifndef GL_ARB_framebuffer_sRGB +#define GL_ARB_framebuffer_sRGB 1 +#endif /* GL_ARB_framebuffer_sRGB */ + +#ifndef GL_ARB_geometry_shader4 +#define GL_ARB_geometry_shader4 1 +#define GL_LINES_ADJACENCY_ARB 0x000A +#define GL_LINE_STRIP_ADJACENCY_ARB 0x000B +#define GL_TRIANGLES_ADJACENCY_ARB 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_ARB 0x000D +#define GL_PROGRAM_POINT_SIZE_ARB 0x8642 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_ARB 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB 0x8DA8 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB 0x8DA9 +#define GL_GEOMETRY_SHADER_ARB 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT_ARB 0x8DDA +#define GL_GEOMETRY_INPUT_TYPE_ARB 0x8DDB +#define GL_GEOMETRY_OUTPUT_TYPE_ARB 0x8DDC +#define GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB 0x8DDD +#define GL_MAX_VERTEX_VARYING_COMPONENTS_ARB 0x8DDE +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB 0x8DE1 +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIARBPROC) (GLuint program, GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREFACEARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramParameteriARB (GLuint program, GLenum pname, GLint value); +GLAPI void APIENTRY glFramebufferTextureARB (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTextureLayerARB (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glFramebufferTextureFaceARB (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#endif +#endif /* GL_ARB_geometry_shader4 */ + +#ifndef GL_ARB_get_program_binary +#define GL_ARB_get_program_binary 1 +#endif /* GL_ARB_get_program_binary */ + +#ifndef GL_ARB_get_texture_sub_image +#define GL_ARB_get_texture_sub_image 1 +#endif /* GL_ARB_get_texture_sub_image */ + +#ifndef GL_ARB_gl_spirv +#define GL_ARB_gl_spirv 1 +#define GL_SHADER_BINARY_FORMAT_SPIR_V_ARB 0x9551 +#define GL_SPIR_V_BINARY_ARB 0x9552 +typedef void (APIENTRYP PFNGLSPECIALIZESHADERARBPROC) (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpecializeShaderARB (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +#endif +#endif /* GL_ARB_gl_spirv */ + +#ifndef GL_ARB_gpu_shader5 +#define GL_ARB_gpu_shader5 1 +#endif /* GL_ARB_gpu_shader5 */ + +#ifndef GL_ARB_gpu_shader_fp64 +#define GL_ARB_gpu_shader_fp64 1 +#endif /* GL_ARB_gpu_shader_fp64 */ + +#ifndef GL_ARB_gpu_shader_int64 +#define GL_ARB_gpu_shader_int64 1 +#define GL_INT64_ARB 0x140E +#define GL_INT64_VEC2_ARB 0x8FE9 +#define GL_INT64_VEC3_ARB 0x8FEA +#define GL_INT64_VEC4_ARB 0x8FEB +#define GL_UNSIGNED_INT64_VEC2_ARB 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_ARB 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_ARB 0x8FF7 +typedef void (APIENTRYP PFNGLUNIFORM1I64ARBPROC) (GLint location, GLint64 x); +typedef void (APIENTRYP PFNGLUNIFORM2I64ARBPROC) (GLint location, GLint64 x, GLint64 y); +typedef void (APIENTRYP PFNGLUNIFORM3I64ARBPROC) (GLint location, GLint64 x, GLint64 y, GLint64 z); +typedef void (APIENTRYP PFNGLUNIFORM4I64ARBPROC) (GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +typedef void (APIENTRYP PFNGLUNIFORM1I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM2I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM3I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM4I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM1UI64ARBPROC) (GLint location, GLuint64 x); +typedef void (APIENTRYP PFNGLUNIFORM2UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y); +typedef void (APIENTRYP PFNGLUNIFORM3UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +typedef void (APIENTRYP PFNGLUNIFORM4UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +typedef void (APIENTRYP PFNGLUNIFORM1UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM2UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM3UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM4UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLGETUNIFORMI64VARBPROC) (GLuint program, GLint location, GLint64 *params); +typedef void (APIENTRYP PFNGLGETUNIFORMUI64VARBPROC) (GLuint program, GLint location, GLuint64 *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMI64VARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLint64 *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUI64VARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint64 *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64ARBPROC) (GLuint program, GLint location, GLint64 x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64ARBPROC) (GLuint program, GLint location, GLuint64 x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniform1i64ARB (GLint location, GLint64 x); +GLAPI void APIENTRY glUniform2i64ARB (GLint location, GLint64 x, GLint64 y); +GLAPI void APIENTRY glUniform3i64ARB (GLint location, GLint64 x, GLint64 y, GLint64 z); +GLAPI void APIENTRY glUniform4i64ARB (GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +GLAPI void APIENTRY glUniform1i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform2i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform3i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform4i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform1ui64ARB (GLint location, GLuint64 x); +GLAPI void APIENTRY glUniform2ui64ARB (GLint location, GLuint64 x, GLuint64 y); +GLAPI void APIENTRY glUniform3ui64ARB (GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +GLAPI void APIENTRY glUniform4ui64ARB (GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +GLAPI void APIENTRY glUniform1ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform2ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform3ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform4ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glGetUniformi64vARB (GLuint program, GLint location, GLint64 *params); +GLAPI void APIENTRY glGetUniformui64vARB (GLuint program, GLint location, GLuint64 *params); +GLAPI void APIENTRY glGetnUniformi64vARB (GLuint program, GLint location, GLsizei bufSize, GLint64 *params); +GLAPI void APIENTRY glGetnUniformui64vARB (GLuint program, GLint location, GLsizei bufSize, GLuint64 *params); +GLAPI void APIENTRY glProgramUniform1i64ARB (GLuint program, GLint location, GLint64 x); +GLAPI void APIENTRY glProgramUniform2i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y); +GLAPI void APIENTRY glProgramUniform3i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z); +GLAPI void APIENTRY glProgramUniform4i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +GLAPI void APIENTRY glProgramUniform1i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform2i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform3i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform4i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform1ui64ARB (GLuint program, GLint location, GLuint64 x); +GLAPI void APIENTRY glProgramUniform2ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y); +GLAPI void APIENTRY glProgramUniform3ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +GLAPI void APIENTRY glProgramUniform4ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +GLAPI void APIENTRY glProgramUniform1ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform2ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform3ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform4ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +#endif +#endif /* GL_ARB_gpu_shader_int64 */ + +#ifndef GL_ARB_half_float_pixel +#define GL_ARB_half_float_pixel 1 +typedef khronos_uint16_t GLhalfARB; +#define GL_HALF_FLOAT_ARB 0x140B +#endif /* GL_ARB_half_float_pixel */ + +#ifndef GL_ARB_half_float_vertex +#define GL_ARB_half_float_vertex 1 +#endif /* GL_ARB_half_float_vertex */ + +#ifndef GL_ARB_imaging +#define GL_ARB_imaging 1 +#define GL_CONVOLUTION_BORDER_MODE 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS 0x8015 +#define GL_REDUCE 0x8016 +#define GL_CONVOLUTION_FORMAT 0x8017 +#define GL_CONVOLUTION_WIDTH 0x8018 +#define GL_CONVOLUTION_HEIGHT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023 +#define GL_HISTOGRAM_WIDTH 0x8026 +#define GL_HISTOGRAM_FORMAT 0x8027 +#define GL_HISTOGRAM_RED_SIZE 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C +#define GL_HISTOGRAM_SINK 0x802D +#define GL_MINMAX_FORMAT 0x802F +#define GL_MINMAX_SINK 0x8030 +#define GL_TABLE_TOO_LARGE 0x8031 +#define GL_COLOR_MATRIX 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB +#define GL_COLOR_TABLE_SCALE 0x80D6 +#define GL_COLOR_TABLE_BIAS 0x80D7 +#define GL_COLOR_TABLE_FORMAT 0x80D8 +#define GL_COLOR_TABLE_WIDTH 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF +#define GL_CONSTANT_BORDER 0x8151 +#define GL_REPLICATE_BORDER 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR 0x8154 +typedef void (APIENTRYP PFNGLCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, void *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIPROC) (GLenum target, GLenum pname, GLint params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, void *image); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLHISTOGRAMPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLMINMAXPROC) (GLenum target, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLRESETHISTOGRAMPROC) (GLenum target); +typedef void (APIENTRYP PFNGLRESETMINMAXPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTable (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +GLAPI void APIENTRY glColorTableParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glColorTableParameteriv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyColorTable (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glGetColorTable (GLenum target, GLenum format, GLenum type, void *table); +GLAPI void APIENTRY glGetColorTableParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetColorTableParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glColorSubTable (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glCopyColorSubTable (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glConvolutionFilter1D (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionFilter2D (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionParameterf (GLenum target, GLenum pname, GLfloat params); +GLAPI void APIENTRY glConvolutionParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glConvolutionParameteri (GLenum target, GLenum pname, GLint params); +GLAPI void APIENTRY glConvolutionParameteriv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyConvolutionFilter1D (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyConvolutionFilter2D (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetConvolutionFilter (GLenum target, GLenum format, GLenum type, void *image); +GLAPI void APIENTRY glGetConvolutionParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetConvolutionParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSeparableFilter (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +GLAPI void APIENTRY glSeparableFilter2D (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +GLAPI void APIENTRY glGetHistogram (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetHistogramParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetHistogramParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMinmax (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetMinmaxParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMinmaxParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glHistogram (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glMinmax (GLenum target, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glResetHistogram (GLenum target); +GLAPI void APIENTRY glResetMinmax (GLenum target); +#endif +#endif /* GL_ARB_imaging */ + +#ifndef GL_ARB_indirect_parameters +#define GL_ARB_indirect_parameters 1 +#define GL_PARAMETER_BUFFER_ARB 0x80EE +#define GL_PARAMETER_BUFFER_BINDING_ARB 0x80EF +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTCOUNTARBPROC) (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTARBPROC) (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectCountARB (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectCountARB (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_ARB_indirect_parameters */ + +#ifndef GL_ARB_instanced_arrays +#define GL_ARB_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB 0x88FE +typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORARBPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribDivisorARB (GLuint index, GLuint divisor); +#endif +#endif /* GL_ARB_instanced_arrays */ + +#ifndef GL_ARB_internalformat_query +#define GL_ARB_internalformat_query 1 +#endif /* GL_ARB_internalformat_query */ + +#ifndef GL_ARB_internalformat_query2 +#define GL_ARB_internalformat_query2 1 +#define GL_SRGB_DECODE_ARB 0x8299 +#define GL_VIEW_CLASS_EAC_R11 0x9383 +#define GL_VIEW_CLASS_EAC_RG11 0x9384 +#define GL_VIEW_CLASS_ETC2_RGB 0x9385 +#define GL_VIEW_CLASS_ETC2_RGBA 0x9386 +#define GL_VIEW_CLASS_ETC2_EAC_RGBA 0x9387 +#define GL_VIEW_CLASS_ASTC_4x4_RGBA 0x9388 +#define GL_VIEW_CLASS_ASTC_5x4_RGBA 0x9389 +#define GL_VIEW_CLASS_ASTC_5x5_RGBA 0x938A +#define GL_VIEW_CLASS_ASTC_6x5_RGBA 0x938B +#define GL_VIEW_CLASS_ASTC_6x6_RGBA 0x938C +#define GL_VIEW_CLASS_ASTC_8x5_RGBA 0x938D +#define GL_VIEW_CLASS_ASTC_8x6_RGBA 0x938E +#define GL_VIEW_CLASS_ASTC_8x8_RGBA 0x938F +#define GL_VIEW_CLASS_ASTC_10x5_RGBA 0x9390 +#define GL_VIEW_CLASS_ASTC_10x6_RGBA 0x9391 +#define GL_VIEW_CLASS_ASTC_10x8_RGBA 0x9392 +#define GL_VIEW_CLASS_ASTC_10x10_RGBA 0x9393 +#define GL_VIEW_CLASS_ASTC_12x10_RGBA 0x9394 +#define GL_VIEW_CLASS_ASTC_12x12_RGBA 0x9395 +#endif /* GL_ARB_internalformat_query2 */ + +#ifndef GL_ARB_invalidate_subdata +#define GL_ARB_invalidate_subdata 1 +#endif /* GL_ARB_invalidate_subdata */ + +#ifndef GL_ARB_map_buffer_alignment +#define GL_ARB_map_buffer_alignment 1 +#endif /* GL_ARB_map_buffer_alignment */ + +#ifndef GL_ARB_map_buffer_range +#define GL_ARB_map_buffer_range 1 +#endif /* GL_ARB_map_buffer_range */ + +#ifndef GL_ARB_matrix_palette +#define GL_ARB_matrix_palette 1 +#define GL_MATRIX_PALETTE_ARB 0x8840 +#define GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB 0x8841 +#define GL_MAX_PALETTE_MATRICES_ARB 0x8842 +#define GL_CURRENT_PALETTE_MATRIX_ARB 0x8843 +#define GL_MATRIX_INDEX_ARRAY_ARB 0x8844 +#define GL_CURRENT_MATRIX_INDEX_ARB 0x8845 +#define GL_MATRIX_INDEX_ARRAY_SIZE_ARB 0x8846 +#define GL_MATRIX_INDEX_ARRAY_TYPE_ARB 0x8847 +#define GL_MATRIX_INDEX_ARRAY_STRIDE_ARB 0x8848 +#define GL_MATRIX_INDEX_ARRAY_POINTER_ARB 0x8849 +typedef void (APIENTRYP PFNGLCURRENTPALETTEMATRIXARBPROC) (GLint index); +typedef void (APIENTRYP PFNGLMATRIXINDEXUBVARBPROC) (GLint size, const GLubyte *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXUSVARBPROC) (GLint size, const GLushort *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXUIVARBPROC) (GLint size, const GLuint *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCurrentPaletteMatrixARB (GLint index); +GLAPI void APIENTRY glMatrixIndexubvARB (GLint size, const GLubyte *indices); +GLAPI void APIENTRY glMatrixIndexusvARB (GLint size, const GLushort *indices); +GLAPI void APIENTRY glMatrixIndexuivARB (GLint size, const GLuint *indices); +GLAPI void APIENTRY glMatrixIndexPointerARB (GLint size, GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_ARB_matrix_palette */ + +#ifndef GL_ARB_multi_bind +#define GL_ARB_multi_bind 1 +#endif /* GL_ARB_multi_bind */ + +#ifndef GL_ARB_multi_draw_indirect +#define GL_ARB_multi_draw_indirect 1 +#endif /* GL_ARB_multi_draw_indirect */ + +#ifndef GL_ARB_multisample +#define GL_ARB_multisample 1 +#define GL_MULTISAMPLE_ARB 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE_ARB 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_ARB 0x809F +#define GL_SAMPLE_COVERAGE_ARB 0x80A0 +#define GL_SAMPLE_BUFFERS_ARB 0x80A8 +#define GL_SAMPLES_ARB 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE_ARB 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT_ARB 0x80AB +#define GL_MULTISAMPLE_BIT_ARB 0x20000000 +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEARBPROC) (GLfloat value, GLboolean invert); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleCoverageARB (GLfloat value, GLboolean invert); +#endif +#endif /* GL_ARB_multisample */ + +#ifndef GL_ARB_multitexture +#define GL_ARB_multitexture 1 +#define GL_TEXTURE0_ARB 0x84C0 +#define GL_TEXTURE1_ARB 0x84C1 +#define GL_TEXTURE2_ARB 0x84C2 +#define GL_TEXTURE3_ARB 0x84C3 +#define GL_TEXTURE4_ARB 0x84C4 +#define GL_TEXTURE5_ARB 0x84C5 +#define GL_TEXTURE6_ARB 0x84C6 +#define GL_TEXTURE7_ARB 0x84C7 +#define GL_TEXTURE8_ARB 0x84C8 +#define GL_TEXTURE9_ARB 0x84C9 +#define GL_TEXTURE10_ARB 0x84CA +#define GL_TEXTURE11_ARB 0x84CB +#define GL_TEXTURE12_ARB 0x84CC +#define GL_TEXTURE13_ARB 0x84CD +#define GL_TEXTURE14_ARB 0x84CE +#define GL_TEXTURE15_ARB 0x84CF +#define GL_TEXTURE16_ARB 0x84D0 +#define GL_TEXTURE17_ARB 0x84D1 +#define GL_TEXTURE18_ARB 0x84D2 +#define GL_TEXTURE19_ARB 0x84D3 +#define GL_TEXTURE20_ARB 0x84D4 +#define GL_TEXTURE21_ARB 0x84D5 +#define GL_TEXTURE22_ARB 0x84D6 +#define GL_TEXTURE23_ARB 0x84D7 +#define GL_TEXTURE24_ARB 0x84D8 +#define GL_TEXTURE25_ARB 0x84D9 +#define GL_TEXTURE26_ARB 0x84DA +#define GL_TEXTURE27_ARB 0x84DB +#define GL_TEXTURE28_ARB 0x84DC +#define GL_TEXTURE29_ARB 0x84DD +#define GL_TEXTURE30_ARB 0x84DE +#define GL_TEXTURE31_ARB 0x84DF +#define GL_ACTIVE_TEXTURE_ARB 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1 +#define GL_MAX_TEXTURE_UNITS_ARB 0x84E2 +typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveTextureARB (GLenum texture); +GLAPI void APIENTRY glClientActiveTextureARB (GLenum texture); +GLAPI void APIENTRY glMultiTexCoord1dARB (GLenum target, GLdouble s); +GLAPI void APIENTRY glMultiTexCoord1dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord1fARB (GLenum target, GLfloat s); +GLAPI void APIENTRY glMultiTexCoord1fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord1iARB (GLenum target, GLint s); +GLAPI void APIENTRY glMultiTexCoord1ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord1sARB (GLenum target, GLshort s); +GLAPI void APIENTRY glMultiTexCoord1svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord2dARB (GLenum target, GLdouble s, GLdouble t); +GLAPI void APIENTRY glMultiTexCoord2dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord2fARB (GLenum target, GLfloat s, GLfloat t); +GLAPI void APIENTRY glMultiTexCoord2fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord2iARB (GLenum target, GLint s, GLint t); +GLAPI void APIENTRY glMultiTexCoord2ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord2sARB (GLenum target, GLshort s, GLshort t); +GLAPI void APIENTRY glMultiTexCoord2svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord3dARB (GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void APIENTRY glMultiTexCoord3dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord3fARB (GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void APIENTRY glMultiTexCoord3fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord3iARB (GLenum target, GLint s, GLint t, GLint r); +GLAPI void APIENTRY glMultiTexCoord3ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord3sARB (GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void APIENTRY glMultiTexCoord3svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord4dARB (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void APIENTRY glMultiTexCoord4dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord4fARB (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void APIENTRY glMultiTexCoord4fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord4iARB (GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void APIENTRY glMultiTexCoord4ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord4sARB (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void APIENTRY glMultiTexCoord4svARB (GLenum target, const GLshort *v); +#endif +#endif /* GL_ARB_multitexture */ + +#ifndef GL_ARB_occlusion_query +#define GL_ARB_occlusion_query 1 +#define GL_QUERY_COUNTER_BITS_ARB 0x8864 +#define GL_CURRENT_QUERY_ARB 0x8865 +#define GL_QUERY_RESULT_ARB 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_ARB 0x8867 +#define GL_SAMPLES_PASSED_ARB 0x8914 +typedef void (APIENTRYP PFNGLGENQUERIESARBPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEQUERIESARBPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISQUERYARBPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINQUERYARBPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYARBPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVARBPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVARBPROC) (GLuint id, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueriesARB (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteQueriesARB (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsQueryARB (GLuint id); +GLAPI void APIENTRY glBeginQueryARB (GLenum target, GLuint id); +GLAPI void APIENTRY glEndQueryARB (GLenum target); +GLAPI void APIENTRY glGetQueryivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectivARB (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectuivARB (GLuint id, GLenum pname, GLuint *params); +#endif +#endif /* GL_ARB_occlusion_query */ + +#ifndef GL_ARB_occlusion_query2 +#define GL_ARB_occlusion_query2 1 +#endif /* GL_ARB_occlusion_query2 */ + +#ifndef GL_ARB_parallel_shader_compile +#define GL_ARB_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_ARB 0x91B0 +#define GL_COMPLETION_STATUS_ARB 0x91B1 +typedef void (APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSARBPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMaxShaderCompilerThreadsARB (GLuint count); +#endif +#endif /* GL_ARB_parallel_shader_compile */ + +#ifndef GL_ARB_pipeline_statistics_query +#define GL_ARB_pipeline_statistics_query 1 +#define GL_VERTICES_SUBMITTED_ARB 0x82EE +#define GL_PRIMITIVES_SUBMITTED_ARB 0x82EF +#define GL_VERTEX_SHADER_INVOCATIONS_ARB 0x82F0 +#define GL_TESS_CONTROL_SHADER_PATCHES_ARB 0x82F1 +#define GL_TESS_EVALUATION_SHADER_INVOCATIONS_ARB 0x82F2 +#define GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED_ARB 0x82F3 +#define GL_FRAGMENT_SHADER_INVOCATIONS_ARB 0x82F4 +#define GL_COMPUTE_SHADER_INVOCATIONS_ARB 0x82F5 +#define GL_CLIPPING_INPUT_PRIMITIVES_ARB 0x82F6 +#define GL_CLIPPING_OUTPUT_PRIMITIVES_ARB 0x82F7 +#endif /* GL_ARB_pipeline_statistics_query */ + +#ifndef GL_ARB_pixel_buffer_object +#define GL_ARB_pixel_buffer_object 1 +#define GL_PIXEL_PACK_BUFFER_ARB 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_ARB 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_ARB 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_ARB 0x88EF +#endif /* GL_ARB_pixel_buffer_object */ + +#ifndef GL_ARB_point_parameters +#define GL_ARB_point_parameters 1 +#define GL_POINT_SIZE_MIN_ARB 0x8126 +#define GL_POINT_SIZE_MAX_ARB 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_ARB 0x8128 +#define GL_POINT_DISTANCE_ATTENUATION_ARB 0x8129 +typedef void (APIENTRYP PFNGLPOINTPARAMETERFARBPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVARBPROC) (GLenum pname, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfARB (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvARB (GLenum pname, const GLfloat *params); +#endif +#endif /* GL_ARB_point_parameters */ + +#ifndef GL_ARB_point_sprite +#define GL_ARB_point_sprite 1 +#define GL_POINT_SPRITE_ARB 0x8861 +#define GL_COORD_REPLACE_ARB 0x8862 +#endif /* GL_ARB_point_sprite */ + +#ifndef GL_ARB_polygon_offset_clamp +#define GL_ARB_polygon_offset_clamp 1 +#endif /* GL_ARB_polygon_offset_clamp */ + +#ifndef GL_ARB_post_depth_coverage +#define GL_ARB_post_depth_coverage 1 +#endif /* GL_ARB_post_depth_coverage */ + +#ifndef GL_ARB_program_interface_query +#define GL_ARB_program_interface_query 1 +#endif /* GL_ARB_program_interface_query */ + +#ifndef GL_ARB_provoking_vertex +#define GL_ARB_provoking_vertex 1 +#endif /* GL_ARB_provoking_vertex */ + +#ifndef GL_ARB_query_buffer_object +#define GL_ARB_query_buffer_object 1 +#endif /* GL_ARB_query_buffer_object */ + +#ifndef GL_ARB_robust_buffer_access_behavior +#define GL_ARB_robust_buffer_access_behavior 1 +#endif /* GL_ARB_robust_buffer_access_behavior */ + +#ifndef GL_ARB_robustness +#define GL_ARB_robustness 1 +#define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB 0x00000004 +#define GL_LOSE_CONTEXT_ON_RESET_ARB 0x8252 +#define GL_GUILTY_CONTEXT_RESET_ARB 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_ARB 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_ARB 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 +#define GL_NO_RESET_NOTIFICATION_ARB 0x8261 +typedef GLenum (APIENTRYP PFNGLGETGRAPHICSRESETSTATUSARBPROC) (void); +typedef void (APIENTRYP PFNGLGETNTEXIMAGEARBPROC) (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *img); +typedef void (APIENTRYP PFNGLREADNPIXELSARBPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (APIENTRYP PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint lod, GLsizei bufSize, void *img); +typedef void (APIENTRYP PFNGLGETNUNIFORMFVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMDVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNMAPDVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +typedef void (APIENTRYP PFNGLGETNMAPFVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLGETNMAPIVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +typedef void (APIENTRYP PFNGLGETNPIXELMAPFVARBPROC) (GLenum map, GLsizei bufSize, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVARBPROC) (GLenum map, GLsizei bufSize, GLuint *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUSVARBPROC) (GLenum map, GLsizei bufSize, GLushort *values); +typedef void (APIENTRYP PFNGLGETNPOLYGONSTIPPLEARBPROC) (GLsizei bufSize, GLubyte *pattern); +typedef void (APIENTRYP PFNGLGETNCOLORTABLEARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +typedef void (APIENTRYP PFNGLGETNCONVOLUTIONFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +typedef void (APIENTRYP PFNGLGETNSEPARABLEFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +typedef void (APIENTRYP PFNGLGETNHISTOGRAMARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLGETNMINMAXARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLenum APIENTRY glGetGraphicsResetStatusARB (void); +GLAPI void APIENTRY glGetnTexImageARB (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *img); +GLAPI void APIENTRY glReadnPixelsARB (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GLAPI void APIENTRY glGetnCompressedTexImageARB (GLenum target, GLint lod, GLsizei bufSize, void *img); +GLAPI void APIENTRY glGetnUniformfvARB (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GLAPI void APIENTRY glGetnUniformivARB (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GLAPI void APIENTRY glGetnUniformuivARB (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +GLAPI void APIENTRY glGetnUniformdvARB (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +GLAPI void APIENTRY glGetnMapdvARB (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +GLAPI void APIENTRY glGetnMapfvARB (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glGetnMapivARB (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +GLAPI void APIENTRY glGetnPixelMapfvARB (GLenum map, GLsizei bufSize, GLfloat *values); +GLAPI void APIENTRY glGetnPixelMapuivARB (GLenum map, GLsizei bufSize, GLuint *values); +GLAPI void APIENTRY glGetnPixelMapusvARB (GLenum map, GLsizei bufSize, GLushort *values); +GLAPI void APIENTRY glGetnPolygonStippleARB (GLsizei bufSize, GLubyte *pattern); +GLAPI void APIENTRY glGetnColorTableARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +GLAPI void APIENTRY glGetnConvolutionFilterARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +GLAPI void APIENTRY glGetnSeparableFilterARB (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +GLAPI void APIENTRY glGetnHistogramARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glGetnMinmaxARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +#endif +#endif /* GL_ARB_robustness */ + +#ifndef GL_ARB_robustness_isolation +#define GL_ARB_robustness_isolation 1 +#endif /* GL_ARB_robustness_isolation */ + +#ifndef GL_ARB_sample_locations +#define GL_ARB_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_ARB 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_ARB 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_ARB 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_ARB 0x9340 +#define GL_SAMPLE_LOCATION_ARB 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_ARB 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_ARB 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_ARB 0x9343 +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVARBPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVARBPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLEVALUATEDEPTHVALUESARBPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSampleLocationsfvARB (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glNamedFramebufferSampleLocationsfvARB (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glEvaluateDepthValuesARB (void); +#endif +#endif /* GL_ARB_sample_locations */ + +#ifndef GL_ARB_sample_shading +#define GL_ARB_sample_shading 1 +#define GL_SAMPLE_SHADING_ARB 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE_ARB 0x8C37 +typedef void (APIENTRYP PFNGLMINSAMPLESHADINGARBPROC) (GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMinSampleShadingARB (GLfloat value); +#endif +#endif /* GL_ARB_sample_shading */ + +#ifndef GL_ARB_sampler_objects +#define GL_ARB_sampler_objects 1 +#endif /* GL_ARB_sampler_objects */ + +#ifndef GL_ARB_seamless_cube_map +#define GL_ARB_seamless_cube_map 1 +#endif /* GL_ARB_seamless_cube_map */ + +#ifndef GL_ARB_seamless_cubemap_per_texture +#define GL_ARB_seamless_cubemap_per_texture 1 +#endif /* GL_ARB_seamless_cubemap_per_texture */ + +#ifndef GL_ARB_separate_shader_objects +#define GL_ARB_separate_shader_objects 1 +#endif /* GL_ARB_separate_shader_objects */ + +#ifndef GL_ARB_shader_atomic_counter_ops +#define GL_ARB_shader_atomic_counter_ops 1 +#endif /* GL_ARB_shader_atomic_counter_ops */ + +#ifndef GL_ARB_shader_atomic_counters +#define GL_ARB_shader_atomic_counters 1 +#endif /* GL_ARB_shader_atomic_counters */ + +#ifndef GL_ARB_shader_ballot +#define GL_ARB_shader_ballot 1 +#endif /* GL_ARB_shader_ballot */ + +#ifndef GL_ARB_shader_bit_encoding +#define GL_ARB_shader_bit_encoding 1 +#endif /* GL_ARB_shader_bit_encoding */ + +#ifndef GL_ARB_shader_clock +#define GL_ARB_shader_clock 1 +#endif /* GL_ARB_shader_clock */ + +#ifndef GL_ARB_shader_draw_parameters +#define GL_ARB_shader_draw_parameters 1 +#endif /* GL_ARB_shader_draw_parameters */ + +#ifndef GL_ARB_shader_group_vote +#define GL_ARB_shader_group_vote 1 +#endif /* GL_ARB_shader_group_vote */ + +#ifndef GL_ARB_shader_image_load_store +#define GL_ARB_shader_image_load_store 1 +#endif /* GL_ARB_shader_image_load_store */ + +#ifndef GL_ARB_shader_image_size +#define GL_ARB_shader_image_size 1 +#endif /* GL_ARB_shader_image_size */ + +#ifndef GL_ARB_shader_objects +#define GL_ARB_shader_objects 1 +#ifdef __APPLE__ +typedef void *GLhandleARB; +#else +typedef unsigned int GLhandleARB; +#endif +typedef char GLcharARB; +#define GL_PROGRAM_OBJECT_ARB 0x8B40 +#define GL_SHADER_OBJECT_ARB 0x8B48 +#define GL_OBJECT_TYPE_ARB 0x8B4E +#define GL_OBJECT_SUBTYPE_ARB 0x8B4F +#define GL_FLOAT_VEC2_ARB 0x8B50 +#define GL_FLOAT_VEC3_ARB 0x8B51 +#define GL_FLOAT_VEC4_ARB 0x8B52 +#define GL_INT_VEC2_ARB 0x8B53 +#define GL_INT_VEC3_ARB 0x8B54 +#define GL_INT_VEC4_ARB 0x8B55 +#define GL_BOOL_ARB 0x8B56 +#define GL_BOOL_VEC2_ARB 0x8B57 +#define GL_BOOL_VEC3_ARB 0x8B58 +#define GL_BOOL_VEC4_ARB 0x8B59 +#define GL_FLOAT_MAT2_ARB 0x8B5A +#define GL_FLOAT_MAT3_ARB 0x8B5B +#define GL_FLOAT_MAT4_ARB 0x8B5C +#define GL_SAMPLER_1D_ARB 0x8B5D +#define GL_SAMPLER_2D_ARB 0x8B5E +#define GL_SAMPLER_3D_ARB 0x8B5F +#define GL_SAMPLER_CUBE_ARB 0x8B60 +#define GL_SAMPLER_1D_SHADOW_ARB 0x8B61 +#define GL_SAMPLER_2D_SHADOW_ARB 0x8B62 +#define GL_SAMPLER_2D_RECT_ARB 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW_ARB 0x8B64 +#define GL_OBJECT_DELETE_STATUS_ARB 0x8B80 +#define GL_OBJECT_COMPILE_STATUS_ARB 0x8B81 +#define GL_OBJECT_LINK_STATUS_ARB 0x8B82 +#define GL_OBJECT_VALIDATE_STATUS_ARB 0x8B83 +#define GL_OBJECT_INFO_LOG_LENGTH_ARB 0x8B84 +#define GL_OBJECT_ATTACHED_OBJECTS_ARB 0x8B85 +#define GL_OBJECT_ACTIVE_UNIFORMS_ARB 0x8B86 +#define GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB 0x8B87 +#define GL_OBJECT_SHADER_SOURCE_LENGTH_ARB 0x8B88 +typedef void (APIENTRYP PFNGLDELETEOBJECTARBPROC) (GLhandleARB obj); +typedef GLhandleARB (APIENTRYP PFNGLGETHANDLEARBPROC) (GLenum pname); +typedef void (APIENTRYP PFNGLDETACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB attachedObj); +typedef GLhandleARB (APIENTRYP PFNGLCREATESHADEROBJECTARBPROC) (GLenum shaderType); +typedef void (APIENTRYP PFNGLSHADERSOURCEARBPROC) (GLhandleARB shaderObj, GLsizei count, const GLcharARB **string, const GLint *length); +typedef void (APIENTRYP PFNGLCOMPILESHADERARBPROC) (GLhandleARB shaderObj); +typedef GLhandleARB (APIENTRYP PFNGLCREATEPROGRAMOBJECTARBPROC) (void); +typedef void (APIENTRYP PFNGLATTACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB obj); +typedef void (APIENTRYP PFNGLLINKPROGRAMARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLUSEPROGRAMOBJECTARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLUNIFORM1FARBPROC) (GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLUNIFORM2FARBPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLUNIFORM3FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLUNIFORM4FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLUNIFORM1IARBPROC) (GLint location, GLint v0); +typedef void (APIENTRYP PFNGLUNIFORM2IARBPROC) (GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLUNIFORM3IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLUNIFORM4IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLUNIFORM1FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM2FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM3FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM4FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM1IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM2IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM3IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM4IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERFVARBPROC) (GLhandleARB obj, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVARBPROC) (GLhandleARB obj, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETINFOLOGARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog); +typedef void (APIENTRYP PFNGLGETATTACHEDOBJECTSARBPROC) (GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj); +typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +typedef void (APIENTRYP PFNGLGETUNIFORMFVARBPROC) (GLhandleARB programObj, GLint location, GLfloat *params); +typedef void (APIENTRYP PFNGLGETUNIFORMIVARBPROC) (GLhandleARB programObj, GLint location, GLint *params); +typedef void (APIENTRYP PFNGLGETSHADERSOURCEARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeleteObjectARB (GLhandleARB obj); +GLAPI GLhandleARB APIENTRY glGetHandleARB (GLenum pname); +GLAPI void APIENTRY glDetachObjectARB (GLhandleARB containerObj, GLhandleARB attachedObj); +GLAPI GLhandleARB APIENTRY glCreateShaderObjectARB (GLenum shaderType); +GLAPI void APIENTRY glShaderSourceARB (GLhandleARB shaderObj, GLsizei count, const GLcharARB **string, const GLint *length); +GLAPI void APIENTRY glCompileShaderARB (GLhandleARB shaderObj); +GLAPI GLhandleARB APIENTRY glCreateProgramObjectARB (void); +GLAPI void APIENTRY glAttachObjectARB (GLhandleARB containerObj, GLhandleARB obj); +GLAPI void APIENTRY glLinkProgramARB (GLhandleARB programObj); +GLAPI void APIENTRY glUseProgramObjectARB (GLhandleARB programObj); +GLAPI void APIENTRY glValidateProgramARB (GLhandleARB programObj); +GLAPI void APIENTRY glUniform1fARB (GLint location, GLfloat v0); +GLAPI void APIENTRY glUniform2fARB (GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glUniform3fARB (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glUniform4fARB (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glUniform1iARB (GLint location, GLint v0); +GLAPI void APIENTRY glUniform2iARB (GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glUniform3iARB (GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glUniform4iARB (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glUniform1fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform2fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform3fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform4fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform1ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform2ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform3ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform4ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniformMatrix2fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glGetObjectParameterfvARB (GLhandleARB obj, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetObjectParameterivARB (GLhandleARB obj, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetInfoLogARB (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog); +GLAPI void APIENTRY glGetAttachedObjectsARB (GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj); +GLAPI GLint APIENTRY glGetUniformLocationARB (GLhandleARB programObj, const GLcharARB *name); +GLAPI void APIENTRY glGetActiveUniformARB (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +GLAPI void APIENTRY glGetUniformfvARB (GLhandleARB programObj, GLint location, GLfloat *params); +GLAPI void APIENTRY glGetUniformivARB (GLhandleARB programObj, GLint location, GLint *params); +GLAPI void APIENTRY glGetShaderSourceARB (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source); +#endif +#endif /* GL_ARB_shader_objects */ + +#ifndef GL_ARB_shader_precision +#define GL_ARB_shader_precision 1 +#endif /* GL_ARB_shader_precision */ + +#ifndef GL_ARB_shader_stencil_export +#define GL_ARB_shader_stencil_export 1 +#endif /* GL_ARB_shader_stencil_export */ + +#ifndef GL_ARB_shader_storage_buffer_object +#define GL_ARB_shader_storage_buffer_object 1 +#endif /* GL_ARB_shader_storage_buffer_object */ + +#ifndef GL_ARB_shader_subroutine +#define GL_ARB_shader_subroutine 1 +#endif /* GL_ARB_shader_subroutine */ + +#ifndef GL_ARB_shader_texture_image_samples +#define GL_ARB_shader_texture_image_samples 1 +#endif /* GL_ARB_shader_texture_image_samples */ + +#ifndef GL_ARB_shader_texture_lod +#define GL_ARB_shader_texture_lod 1 +#endif /* GL_ARB_shader_texture_lod */ + +#ifndef GL_ARB_shader_viewport_layer_array +#define GL_ARB_shader_viewport_layer_array 1 +#endif /* GL_ARB_shader_viewport_layer_array */ + +#ifndef GL_ARB_shading_language_100 +#define GL_ARB_shading_language_100 1 +#define GL_SHADING_LANGUAGE_VERSION_ARB 0x8B8C +#endif /* GL_ARB_shading_language_100 */ + +#ifndef GL_ARB_shading_language_420pack +#define GL_ARB_shading_language_420pack 1 +#endif /* GL_ARB_shading_language_420pack */ + +#ifndef GL_ARB_shading_language_include +#define GL_ARB_shading_language_include 1 +#define GL_SHADER_INCLUDE_ARB 0x8DAE +#define GL_NAMED_STRING_LENGTH_ARB 0x8DE9 +#define GL_NAMED_STRING_TYPE_ARB 0x8DEA +typedef void (APIENTRYP PFNGLNAMEDSTRINGARBPROC) (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string); +typedef void (APIENTRYP PFNGLDELETENAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name); +typedef void (APIENTRYP PFNGLCOMPILESHADERINCLUDEARBPROC) (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); +typedef GLboolean (APIENTRYP PFNGLISNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name); +typedef void (APIENTRYP PFNGLGETNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string); +typedef void (APIENTRYP PFNGLGETNAMEDSTRINGIVARBPROC) (GLint namelen, const GLchar *name, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glNamedStringARB (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string); +GLAPI void APIENTRY glDeleteNamedStringARB (GLint namelen, const GLchar *name); +GLAPI void APIENTRY glCompileShaderIncludeARB (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); +GLAPI GLboolean APIENTRY glIsNamedStringARB (GLint namelen, const GLchar *name); +GLAPI void APIENTRY glGetNamedStringARB (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string); +GLAPI void APIENTRY glGetNamedStringivARB (GLint namelen, const GLchar *name, GLenum pname, GLint *params); +#endif +#endif /* GL_ARB_shading_language_include */ + +#ifndef GL_ARB_shading_language_packing +#define GL_ARB_shading_language_packing 1 +#endif /* GL_ARB_shading_language_packing */ + +#ifndef GL_ARB_shadow +#define GL_ARB_shadow 1 +#define GL_TEXTURE_COMPARE_MODE_ARB 0x884C +#define GL_TEXTURE_COMPARE_FUNC_ARB 0x884D +#define GL_COMPARE_R_TO_TEXTURE_ARB 0x884E +#endif /* GL_ARB_shadow */ + +#ifndef GL_ARB_shadow_ambient +#define GL_ARB_shadow_ambient 1 +#define GL_TEXTURE_COMPARE_FAIL_VALUE_ARB 0x80BF +#endif /* GL_ARB_shadow_ambient */ + +#ifndef GL_ARB_sparse_buffer +#define GL_ARB_sparse_buffer 1 +#define GL_SPARSE_STORAGE_BIT_ARB 0x0400 +#define GL_SPARSE_BUFFER_PAGE_SIZE_ARB 0x82F8 +typedef void (APIENTRYP PFNGLBUFFERPAGECOMMITMENTARBPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTARBPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferPageCommitmentARB (GLenum target, GLintptr offset, GLsizeiptr size, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentARB (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +#endif +#endif /* GL_ARB_sparse_buffer */ + +#ifndef GL_ARB_sparse_texture +#define GL_ARB_sparse_texture 1 +#define GL_TEXTURE_SPARSE_ARB 0x91A6 +#define GL_VIRTUAL_PAGE_SIZE_INDEX_ARB 0x91A7 +#define GL_NUM_SPARSE_LEVELS_ARB 0x91AA +#define GL_NUM_VIRTUAL_PAGE_SIZES_ARB 0x91A8 +#define GL_VIRTUAL_PAGE_SIZE_X_ARB 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_ARB 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_ARB 0x9197 +#define GL_MAX_SPARSE_TEXTURE_SIZE_ARB 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_ARB 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_ARB 0x919A +#define GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_ARB 0x91A9 +typedef void (APIENTRYP PFNGLTEXPAGECOMMITMENTARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexPageCommitmentARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#endif +#endif /* GL_ARB_sparse_texture */ + +#ifndef GL_ARB_sparse_texture2 +#define GL_ARB_sparse_texture2 1 +#endif /* GL_ARB_sparse_texture2 */ + +#ifndef GL_ARB_sparse_texture_clamp +#define GL_ARB_sparse_texture_clamp 1 +#endif /* GL_ARB_sparse_texture_clamp */ + +#ifndef GL_ARB_spirv_extensions +#define GL_ARB_spirv_extensions 1 +#endif /* GL_ARB_spirv_extensions */ + +#ifndef GL_ARB_stencil_texturing +#define GL_ARB_stencil_texturing 1 +#endif /* GL_ARB_stencil_texturing */ + +#ifndef GL_ARB_sync +#define GL_ARB_sync 1 +#endif /* GL_ARB_sync */ + +#ifndef GL_ARB_tessellation_shader +#define GL_ARB_tessellation_shader 1 +#endif /* GL_ARB_tessellation_shader */ + +#ifndef GL_ARB_texture_barrier +#define GL_ARB_texture_barrier 1 +#endif /* GL_ARB_texture_barrier */ + +#ifndef GL_ARB_texture_border_clamp +#define GL_ARB_texture_border_clamp 1 +#define GL_CLAMP_TO_BORDER_ARB 0x812D +#endif /* GL_ARB_texture_border_clamp */ + +#ifndef GL_ARB_texture_buffer_object +#define GL_ARB_texture_buffer_object 1 +#define GL_TEXTURE_BUFFER_ARB 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_ARB 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_ARB 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT_ARB 0x8C2E +typedef void (APIENTRYP PFNGLTEXBUFFERARBPROC) (GLenum target, GLenum internalformat, GLuint buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBufferARB (GLenum target, GLenum internalformat, GLuint buffer); +#endif +#endif /* GL_ARB_texture_buffer_object */ + +#ifndef GL_ARB_texture_buffer_object_rgb32 +#define GL_ARB_texture_buffer_object_rgb32 1 +#endif /* GL_ARB_texture_buffer_object_rgb32 */ + +#ifndef GL_ARB_texture_buffer_range +#define GL_ARB_texture_buffer_range 1 +#endif /* GL_ARB_texture_buffer_range */ + +#ifndef GL_ARB_texture_compression +#define GL_ARB_texture_compression 1 +#define GL_COMPRESSED_ALPHA_ARB 0x84E9 +#define GL_COMPRESSED_LUMINANCE_ARB 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA_ARB 0x84EB +#define GL_COMPRESSED_INTENSITY_ARB 0x84EC +#define GL_COMPRESSED_RGB_ARB 0x84ED +#define GL_COMPRESSED_RGBA_ARB 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT_ARB 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB 0x86A0 +#define GL_TEXTURE_COMPRESSED_ARB 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A3 +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DARBPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint level, void *img); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCompressedTexImage3DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage2DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage1DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage3DARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage2DARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage1DARB (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glGetCompressedTexImageARB (GLenum target, GLint level, void *img); +#endif +#endif /* GL_ARB_texture_compression */ + +#ifndef GL_ARB_texture_compression_bptc +#define GL_ARB_texture_compression_bptc 1 +#define GL_COMPRESSED_RGBA_BPTC_UNORM_ARB 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB 0x8E8F +#endif /* GL_ARB_texture_compression_bptc */ + +#ifndef GL_ARB_texture_compression_rgtc +#define GL_ARB_texture_compression_rgtc 1 +#endif /* GL_ARB_texture_compression_rgtc */ + +#ifndef GL_ARB_texture_cube_map +#define GL_ARB_texture_cube_map 1 +#define GL_NORMAL_MAP_ARB 0x8511 +#define GL_REFLECTION_MAP_ARB 0x8512 +#define GL_TEXTURE_CUBE_MAP_ARB 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARB 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARB 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB 0x851C +#endif /* GL_ARB_texture_cube_map */ + +#ifndef GL_ARB_texture_cube_map_array +#define GL_ARB_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_ARB 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB 0x900A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB 0x900B +#define GL_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900F +#endif /* GL_ARB_texture_cube_map_array */ + +#ifndef GL_ARB_texture_env_add +#define GL_ARB_texture_env_add 1 +#endif /* GL_ARB_texture_env_add */ + +#ifndef GL_ARB_texture_env_combine +#define GL_ARB_texture_env_combine 1 +#define GL_COMBINE_ARB 0x8570 +#define GL_COMBINE_RGB_ARB 0x8571 +#define GL_COMBINE_ALPHA_ARB 0x8572 +#define GL_SOURCE0_RGB_ARB 0x8580 +#define GL_SOURCE1_RGB_ARB 0x8581 +#define GL_SOURCE2_RGB_ARB 0x8582 +#define GL_SOURCE0_ALPHA_ARB 0x8588 +#define GL_SOURCE1_ALPHA_ARB 0x8589 +#define GL_SOURCE2_ALPHA_ARB 0x858A +#define GL_OPERAND0_RGB_ARB 0x8590 +#define GL_OPERAND1_RGB_ARB 0x8591 +#define GL_OPERAND2_RGB_ARB 0x8592 +#define GL_OPERAND0_ALPHA_ARB 0x8598 +#define GL_OPERAND1_ALPHA_ARB 0x8599 +#define GL_OPERAND2_ALPHA_ARB 0x859A +#define GL_RGB_SCALE_ARB 0x8573 +#define GL_ADD_SIGNED_ARB 0x8574 +#define GL_INTERPOLATE_ARB 0x8575 +#define GL_SUBTRACT_ARB 0x84E7 +#define GL_CONSTANT_ARB 0x8576 +#define GL_PRIMARY_COLOR_ARB 0x8577 +#define GL_PREVIOUS_ARB 0x8578 +#endif /* GL_ARB_texture_env_combine */ + +#ifndef GL_ARB_texture_env_crossbar +#define GL_ARB_texture_env_crossbar 1 +#endif /* GL_ARB_texture_env_crossbar */ + +#ifndef GL_ARB_texture_env_dot3 +#define GL_ARB_texture_env_dot3 1 +#define GL_DOT3_RGB_ARB 0x86AE +#define GL_DOT3_RGBA_ARB 0x86AF +#endif /* GL_ARB_texture_env_dot3 */ + +#ifndef GL_ARB_texture_filter_anisotropic +#define GL_ARB_texture_filter_anisotropic 1 +#endif /* GL_ARB_texture_filter_anisotropic */ + +#ifndef GL_ARB_texture_filter_minmax +#define GL_ARB_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_ARB 0x9366 +#define GL_WEIGHTED_AVERAGE_ARB 0x9367 +#endif /* GL_ARB_texture_filter_minmax */ + +#ifndef GL_ARB_texture_float +#define GL_ARB_texture_float 1 +#define GL_TEXTURE_RED_TYPE_ARB 0x8C10 +#define GL_TEXTURE_GREEN_TYPE_ARB 0x8C11 +#define GL_TEXTURE_BLUE_TYPE_ARB 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE_ARB 0x8C13 +#define GL_TEXTURE_LUMINANCE_TYPE_ARB 0x8C14 +#define GL_TEXTURE_INTENSITY_TYPE_ARB 0x8C15 +#define GL_TEXTURE_DEPTH_TYPE_ARB 0x8C16 +#define GL_UNSIGNED_NORMALIZED_ARB 0x8C17 +#define GL_RGBA32F_ARB 0x8814 +#define GL_RGB32F_ARB 0x8815 +#define GL_ALPHA32F_ARB 0x8816 +#define GL_INTENSITY32F_ARB 0x8817 +#define GL_LUMINANCE32F_ARB 0x8818 +#define GL_LUMINANCE_ALPHA32F_ARB 0x8819 +#define GL_RGBA16F_ARB 0x881A +#define GL_RGB16F_ARB 0x881B +#define GL_ALPHA16F_ARB 0x881C +#define GL_INTENSITY16F_ARB 0x881D +#define GL_LUMINANCE16F_ARB 0x881E +#define GL_LUMINANCE_ALPHA16F_ARB 0x881F +#endif /* GL_ARB_texture_float */ + +#ifndef GL_ARB_texture_gather +#define GL_ARB_texture_gather 1 +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5F +#define GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS_ARB 0x8F9F +#endif /* GL_ARB_texture_gather */ + +#ifndef GL_ARB_texture_mirror_clamp_to_edge +#define GL_ARB_texture_mirror_clamp_to_edge 1 +#endif /* GL_ARB_texture_mirror_clamp_to_edge */ + +#ifndef GL_ARB_texture_mirrored_repeat +#define GL_ARB_texture_mirrored_repeat 1 +#define GL_MIRRORED_REPEAT_ARB 0x8370 +#endif /* GL_ARB_texture_mirrored_repeat */ + +#ifndef GL_ARB_texture_multisample +#define GL_ARB_texture_multisample 1 +#endif /* GL_ARB_texture_multisample */ + +#ifndef GL_ARB_texture_non_power_of_two +#define GL_ARB_texture_non_power_of_two 1 +#endif /* GL_ARB_texture_non_power_of_two */ + +#ifndef GL_ARB_texture_query_levels +#define GL_ARB_texture_query_levels 1 +#endif /* GL_ARB_texture_query_levels */ + +#ifndef GL_ARB_texture_query_lod +#define GL_ARB_texture_query_lod 1 +#endif /* GL_ARB_texture_query_lod */ + +#ifndef GL_ARB_texture_rectangle +#define GL_ARB_texture_rectangle 1 +#define GL_TEXTURE_RECTANGLE_ARB 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE_ARB 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE_ARB 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB 0x84F8 +#endif /* GL_ARB_texture_rectangle */ + +#ifndef GL_ARB_texture_rg +#define GL_ARB_texture_rg 1 +#endif /* GL_ARB_texture_rg */ + +#ifndef GL_ARB_texture_rgb10_a2ui +#define GL_ARB_texture_rgb10_a2ui 1 +#endif /* GL_ARB_texture_rgb10_a2ui */ + +#ifndef GL_ARB_texture_stencil8 +#define GL_ARB_texture_stencil8 1 +#endif /* GL_ARB_texture_stencil8 */ + +#ifndef GL_ARB_texture_storage +#define GL_ARB_texture_storage 1 +#endif /* GL_ARB_texture_storage */ + +#ifndef GL_ARB_texture_storage_multisample +#define GL_ARB_texture_storage_multisample 1 +#endif /* GL_ARB_texture_storage_multisample */ + +#ifndef GL_ARB_texture_swizzle +#define GL_ARB_texture_swizzle 1 +#endif /* GL_ARB_texture_swizzle */ + +#ifndef GL_ARB_texture_view +#define GL_ARB_texture_view 1 +#endif /* GL_ARB_texture_view */ + +#ifndef GL_ARB_timer_query +#define GL_ARB_timer_query 1 +#endif /* GL_ARB_timer_query */ + +#ifndef GL_ARB_transform_feedback2 +#define GL_ARB_transform_feedback2 1 +#endif /* GL_ARB_transform_feedback2 */ + +#ifndef GL_ARB_transform_feedback3 +#define GL_ARB_transform_feedback3 1 +#endif /* GL_ARB_transform_feedback3 */ + +#ifndef GL_ARB_transform_feedback_instanced +#define GL_ARB_transform_feedback_instanced 1 +#endif /* GL_ARB_transform_feedback_instanced */ + +#ifndef GL_ARB_transform_feedback_overflow_query +#define GL_ARB_transform_feedback_overflow_query 1 +#define GL_TRANSFORM_FEEDBACK_OVERFLOW_ARB 0x82EC +#define GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW_ARB 0x82ED +#endif /* GL_ARB_transform_feedback_overflow_query */ + +#ifndef GL_ARB_transpose_matrix +#define GL_ARB_transpose_matrix 1 +#define GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX_ARB 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX_ARB 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX_ARB 0x84E6 +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFARBPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDARBPROC) (const GLdouble *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFARBPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDARBPROC) (const GLdouble *m); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLoadTransposeMatrixfARB (const GLfloat *m); +GLAPI void APIENTRY glLoadTransposeMatrixdARB (const GLdouble *m); +GLAPI void APIENTRY glMultTransposeMatrixfARB (const GLfloat *m); +GLAPI void APIENTRY glMultTransposeMatrixdARB (const GLdouble *m); +#endif +#endif /* GL_ARB_transpose_matrix */ + +#ifndef GL_ARB_uniform_buffer_object +#define GL_ARB_uniform_buffer_object 1 +#endif /* GL_ARB_uniform_buffer_object */ + +#ifndef GL_ARB_vertex_array_bgra +#define GL_ARB_vertex_array_bgra 1 +#endif /* GL_ARB_vertex_array_bgra */ + +#ifndef GL_ARB_vertex_array_object +#define GL_ARB_vertex_array_object 1 +#endif /* GL_ARB_vertex_array_object */ + +#ifndef GL_ARB_vertex_attrib_64bit +#define GL_ARB_vertex_attrib_64bit 1 +#endif /* GL_ARB_vertex_attrib_64bit */ + +#ifndef GL_ARB_vertex_attrib_binding +#define GL_ARB_vertex_attrib_binding 1 +#endif /* GL_ARB_vertex_attrib_binding */ + +#ifndef GL_ARB_vertex_blend +#define GL_ARB_vertex_blend 1 +#define GL_MAX_VERTEX_UNITS_ARB 0x86A4 +#define GL_ACTIVE_VERTEX_UNITS_ARB 0x86A5 +#define GL_WEIGHT_SUM_UNITY_ARB 0x86A6 +#define GL_VERTEX_BLEND_ARB 0x86A7 +#define GL_CURRENT_WEIGHT_ARB 0x86A8 +#define GL_WEIGHT_ARRAY_TYPE_ARB 0x86A9 +#define GL_WEIGHT_ARRAY_STRIDE_ARB 0x86AA +#define GL_WEIGHT_ARRAY_SIZE_ARB 0x86AB +#define GL_WEIGHT_ARRAY_POINTER_ARB 0x86AC +#define GL_WEIGHT_ARRAY_ARB 0x86AD +#define GL_MODELVIEW0_ARB 0x1700 +#define GL_MODELVIEW1_ARB 0x850A +#define GL_MODELVIEW2_ARB 0x8722 +#define GL_MODELVIEW3_ARB 0x8723 +#define GL_MODELVIEW4_ARB 0x8724 +#define GL_MODELVIEW5_ARB 0x8725 +#define GL_MODELVIEW6_ARB 0x8726 +#define GL_MODELVIEW7_ARB 0x8727 +#define GL_MODELVIEW8_ARB 0x8728 +#define GL_MODELVIEW9_ARB 0x8729 +#define GL_MODELVIEW10_ARB 0x872A +#define GL_MODELVIEW11_ARB 0x872B +#define GL_MODELVIEW12_ARB 0x872C +#define GL_MODELVIEW13_ARB 0x872D +#define GL_MODELVIEW14_ARB 0x872E +#define GL_MODELVIEW15_ARB 0x872F +#define GL_MODELVIEW16_ARB 0x8730 +#define GL_MODELVIEW17_ARB 0x8731 +#define GL_MODELVIEW18_ARB 0x8732 +#define GL_MODELVIEW19_ARB 0x8733 +#define GL_MODELVIEW20_ARB 0x8734 +#define GL_MODELVIEW21_ARB 0x8735 +#define GL_MODELVIEW22_ARB 0x8736 +#define GL_MODELVIEW23_ARB 0x8737 +#define GL_MODELVIEW24_ARB 0x8738 +#define GL_MODELVIEW25_ARB 0x8739 +#define GL_MODELVIEW26_ARB 0x873A +#define GL_MODELVIEW27_ARB 0x873B +#define GL_MODELVIEW28_ARB 0x873C +#define GL_MODELVIEW29_ARB 0x873D +#define GL_MODELVIEW30_ARB 0x873E +#define GL_MODELVIEW31_ARB 0x873F +typedef void (APIENTRYP PFNGLWEIGHTBVARBPROC) (GLint size, const GLbyte *weights); +typedef void (APIENTRYP PFNGLWEIGHTSVARBPROC) (GLint size, const GLshort *weights); +typedef void (APIENTRYP PFNGLWEIGHTIVARBPROC) (GLint size, const GLint *weights); +typedef void (APIENTRYP PFNGLWEIGHTFVARBPROC) (GLint size, const GLfloat *weights); +typedef void (APIENTRYP PFNGLWEIGHTDVARBPROC) (GLint size, const GLdouble *weights); +typedef void (APIENTRYP PFNGLWEIGHTUBVARBPROC) (GLint size, const GLubyte *weights); +typedef void (APIENTRYP PFNGLWEIGHTUSVARBPROC) (GLint size, const GLushort *weights); +typedef void (APIENTRYP PFNGLWEIGHTUIVARBPROC) (GLint size, const GLuint *weights); +typedef void (APIENTRYP PFNGLWEIGHTPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLVERTEXBLENDARBPROC) (GLint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWeightbvARB (GLint size, const GLbyte *weights); +GLAPI void APIENTRY glWeightsvARB (GLint size, const GLshort *weights); +GLAPI void APIENTRY glWeightivARB (GLint size, const GLint *weights); +GLAPI void APIENTRY glWeightfvARB (GLint size, const GLfloat *weights); +GLAPI void APIENTRY glWeightdvARB (GLint size, const GLdouble *weights); +GLAPI void APIENTRY glWeightubvARB (GLint size, const GLubyte *weights); +GLAPI void APIENTRY glWeightusvARB (GLint size, const GLushort *weights); +GLAPI void APIENTRY glWeightuivARB (GLint size, const GLuint *weights); +GLAPI void APIENTRY glWeightPointerARB (GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glVertexBlendARB (GLint count); +#endif +#endif /* GL_ARB_vertex_blend */ + +#ifndef GL_ARB_vertex_buffer_object +#define GL_ARB_vertex_buffer_object 1 +typedef khronos_ssize_t GLsizeiptrARB; +typedef khronos_intptr_t GLintptrARB; +#define GL_BUFFER_SIZE_ARB 0x8764 +#define GL_BUFFER_USAGE_ARB 0x8765 +#define GL_ARRAY_BUFFER_ARB 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER_ARB 0x8893 +#define GL_ARRAY_BUFFER_BINDING_ARB 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB 0x8895 +#define GL_VERTEX_ARRAY_BUFFER_BINDING_ARB 0x8896 +#define GL_NORMAL_ARRAY_BUFFER_BINDING_ARB 0x8897 +#define GL_COLOR_ARRAY_BUFFER_BINDING_ARB 0x8898 +#define GL_INDEX_ARRAY_BUFFER_BINDING_ARB 0x8899 +#define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB 0x889A +#define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB 0x889B +#define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB 0x889C +#define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB 0x889D +#define GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB 0x889E +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB 0x889F +#define GL_READ_ONLY_ARB 0x88B8 +#define GL_WRITE_ONLY_ARB 0x88B9 +#define GL_READ_WRITE_ARB 0x88BA +#define GL_BUFFER_ACCESS_ARB 0x88BB +#define GL_BUFFER_MAPPED_ARB 0x88BC +#define GL_BUFFER_MAP_POINTER_ARB 0x88BD +#define GL_STREAM_DRAW_ARB 0x88E0 +#define GL_STREAM_READ_ARB 0x88E1 +#define GL_STREAM_COPY_ARB 0x88E2 +#define GL_STATIC_DRAW_ARB 0x88E4 +#define GL_STATIC_READ_ARB 0x88E5 +#define GL_STATIC_COPY_ARB 0x88E6 +#define GL_DYNAMIC_DRAW_ARB 0x88E8 +#define GL_DYNAMIC_READ_ARB 0x88E9 +#define GL_DYNAMIC_COPY_ARB 0x88EA +typedef void (APIENTRYP PFNGLBINDBUFFERARBPROC) (GLenum target, GLuint buffer); +typedef void (APIENTRYP PFNGLDELETEBUFFERSARBPROC) (GLsizei n, const GLuint *buffers); +typedef void (APIENTRYP PFNGLGENBUFFERSARBPROC) (GLsizei n, GLuint *buffers); +typedef GLboolean (APIENTRYP PFNGLISBUFFERARBPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLBUFFERDATAARBPROC) (GLenum target, GLsizeiptrARB size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const void *data); +typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, void *data); +typedef void *(APIENTRYP PFNGLMAPBUFFERARBPROC) (GLenum target, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERARBPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVARBPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindBufferARB (GLenum target, GLuint buffer); +GLAPI void APIENTRY glDeleteBuffersARB (GLsizei n, const GLuint *buffers); +GLAPI void APIENTRY glGenBuffersARB (GLsizei n, GLuint *buffers); +GLAPI GLboolean APIENTRY glIsBufferARB (GLuint buffer); +GLAPI void APIENTRY glBufferDataARB (GLenum target, GLsizeiptrARB size, const void *data, GLenum usage); +GLAPI void APIENTRY glBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const void *data); +GLAPI void APIENTRY glGetBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, void *data); +GLAPI void *APIENTRY glMapBufferARB (GLenum target, GLenum access); +GLAPI GLboolean APIENTRY glUnmapBufferARB (GLenum target); +GLAPI void APIENTRY glGetBufferParameterivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetBufferPointervARB (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_ARB_vertex_buffer_object */ + +#ifndef GL_ARB_vertex_program +#define GL_ARB_vertex_program 1 +#define GL_COLOR_SUM_ARB 0x8458 +#define GL_VERTEX_PROGRAM_ARB 0x8620 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB_ARB 0x8626 +#define GL_VERTEX_PROGRAM_POINT_SIZE_ARB 0x8642 +#define GL_VERTEX_PROGRAM_TWO_SIDE_ARB 0x8643 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB 0x8645 +#define GL_MAX_VERTEX_ATTRIBS_ARB 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB 0x886A +#define GL_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B0 +#define GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B1 +#define GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B2 +#define GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B3 +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DARBPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FARBPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SARBPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DARBPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FARBPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SARBPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVARBPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVARBPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBARBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVARBPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVARBPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVARBPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVARBPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVARBPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVARBPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVARBPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVARBPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERARBPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVARBPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVARBPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVARBPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVARBPROC) (GLuint index, GLenum pname, void **pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttrib1dARB (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1fARB (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1sARB (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2dARB (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2fARB (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2sARB (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3dARB (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3fARB (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3sARB (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4NbvARB (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4NivARB (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4NsvARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4NubARB (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4NubvARB (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4NuivARB (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4NusvARB (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttrib4bvARB (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4dARB (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4fARB (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4ivARB (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4sARB (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubvARB (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4uivARB (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4usvARB (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribPointerARB (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glEnableVertexAttribArrayARB (GLuint index); +GLAPI void APIENTRY glDisableVertexAttribArrayARB (GLuint index); +GLAPI void APIENTRY glGetVertexAttribdvARB (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfvARB (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribivARB (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointervARB (GLuint index, GLenum pname, void **pointer); +#endif +#endif /* GL_ARB_vertex_program */ + +#ifndef GL_ARB_vertex_shader +#define GL_ARB_vertex_shader 1 +#define GL_VERTEX_SHADER_ARB 0x8B31 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB 0x8B4A +#define GL_MAX_VARYING_FLOATS_ARB 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB 0x8B4D +#define GL_OBJECT_ACTIVE_ATTRIBUTES_ARB 0x8B89 +#define GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB 0x8B8A +typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONARBPROC) (GLhandleARB programObj, GLuint index, const GLcharARB *name); +typedef void (APIENTRYP PFNGLGETACTIVEATTRIBARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindAttribLocationARB (GLhandleARB programObj, GLuint index, const GLcharARB *name); +GLAPI void APIENTRY glGetActiveAttribARB (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +GLAPI GLint APIENTRY glGetAttribLocationARB (GLhandleARB programObj, const GLcharARB *name); +#endif +#endif /* GL_ARB_vertex_shader */ + +#ifndef GL_ARB_vertex_type_10f_11f_11f_rev +#define GL_ARB_vertex_type_10f_11f_11f_rev 1 +#endif /* GL_ARB_vertex_type_10f_11f_11f_rev */ + +#ifndef GL_ARB_vertex_type_2_10_10_10_rev +#define GL_ARB_vertex_type_2_10_10_10_rev 1 +#endif /* GL_ARB_vertex_type_2_10_10_10_rev */ + +#ifndef GL_ARB_viewport_array +#define GL_ARB_viewport_array 1 +typedef void (APIENTRYP PFNGLDEPTHRANGEARRAYDVNVPROC) (GLuint first, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEINDEXEDDNVPROC) (GLuint index, GLdouble n, GLdouble f); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthRangeArraydvNV (GLuint first, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glDepthRangeIndexeddNV (GLuint index, GLdouble n, GLdouble f); +#endif +#endif /* GL_ARB_viewport_array */ + +#ifndef GL_ARB_window_pos +#define GL_ARB_window_pos 1 +typedef void (APIENTRYP PFNGLWINDOWPOS2DARBPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVARBPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FARBPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVARBPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IARBPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVARBPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SARBPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVARBPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DARBPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVARBPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FARBPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVARBPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IARBPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVARBPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SARBPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVARBPROC) (const GLshort *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowPos2dARB (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dvARB (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2fARB (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fvARB (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2iARB (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2ivARB (const GLint *v); +GLAPI void APIENTRY glWindowPos2sARB (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2svARB (const GLshort *v); +GLAPI void APIENTRY glWindowPos3dARB (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dvARB (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3fARB (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fvARB (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3iARB (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3ivARB (const GLint *v); +GLAPI void APIENTRY glWindowPos3sARB (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3svARB (const GLshort *v); +#endif +#endif /* GL_ARB_window_pos */ + +#ifndef GL_KHR_blend_equation_advanced +#define GL_KHR_blend_equation_advanced 1 +#define GL_MULTIPLY_KHR 0x9294 +#define GL_SCREEN_KHR 0x9295 +#define GL_OVERLAY_KHR 0x9296 +#define GL_DARKEN_KHR 0x9297 +#define GL_LIGHTEN_KHR 0x9298 +#define GL_COLORDODGE_KHR 0x9299 +#define GL_COLORBURN_KHR 0x929A +#define GL_HARDLIGHT_KHR 0x929B +#define GL_SOFTLIGHT_KHR 0x929C +#define GL_DIFFERENCE_KHR 0x929E +#define GL_EXCLUSION_KHR 0x92A0 +#define GL_HSL_HUE_KHR 0x92AD +#define GL_HSL_SATURATION_KHR 0x92AE +#define GL_HSL_COLOR_KHR 0x92AF +#define GL_HSL_LUMINOSITY_KHR 0x92B0 +typedef void (APIENTRYP PFNGLBLENDBARRIERKHRPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendBarrierKHR (void); +#endif +#endif /* GL_KHR_blend_equation_advanced */ + +#ifndef GL_KHR_blend_equation_advanced_coherent +#define GL_KHR_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_KHR 0x9285 +#endif /* GL_KHR_blend_equation_advanced_coherent */ + +#ifndef GL_KHR_context_flush_control +#define GL_KHR_context_flush_control 1 +#endif /* GL_KHR_context_flush_control */ + +#ifndef GL_KHR_debug +#define GL_KHR_debug 1 +#endif /* GL_KHR_debug */ + +#ifndef GL_KHR_no_error +#define GL_KHR_no_error 1 +#define GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 +#endif /* GL_KHR_no_error */ + +#ifndef GL_KHR_parallel_shader_compile +#define GL_KHR_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_KHR 0x91B0 +#define GL_COMPLETION_STATUS_KHR 0x91B1 +typedef void (APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSKHRPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMaxShaderCompilerThreadsKHR (GLuint count); +#endif +#endif /* GL_KHR_parallel_shader_compile */ + +#ifndef GL_KHR_robust_buffer_access_behavior +#define GL_KHR_robust_buffer_access_behavior 1 +#endif /* GL_KHR_robust_buffer_access_behavior */ + +#ifndef GL_KHR_robustness +#define GL_KHR_robustness 1 +#define GL_CONTEXT_ROBUST_ACCESS 0x90F3 +#endif /* GL_KHR_robustness */ + +#ifndef GL_KHR_shader_subgroup +#define GL_KHR_shader_subgroup 1 +#define GL_SUBGROUP_SIZE_KHR 0x9532 +#define GL_SUBGROUP_SUPPORTED_STAGES_KHR 0x9533 +#define GL_SUBGROUP_SUPPORTED_FEATURES_KHR 0x9534 +#define GL_SUBGROUP_QUAD_ALL_STAGES_KHR 0x9535 +#define GL_SUBGROUP_FEATURE_BASIC_BIT_KHR 0x00000001 +#define GL_SUBGROUP_FEATURE_VOTE_BIT_KHR 0x00000002 +#define GL_SUBGROUP_FEATURE_ARITHMETIC_BIT_KHR 0x00000004 +#define GL_SUBGROUP_FEATURE_BALLOT_BIT_KHR 0x00000008 +#define GL_SUBGROUP_FEATURE_SHUFFLE_BIT_KHR 0x00000010 +#define GL_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT_KHR 0x00000020 +#define GL_SUBGROUP_FEATURE_CLUSTERED_BIT_KHR 0x00000040 +#define GL_SUBGROUP_FEATURE_QUAD_BIT_KHR 0x00000080 +#endif /* GL_KHR_shader_subgroup */ + +#ifndef GL_KHR_texture_compression_astc_hdr +#define GL_KHR_texture_compression_astc_hdr 1 +#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 +#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1 +#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2 +#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3 +#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4 +#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5 +#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6 +#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7 +#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8 +#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 +#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA +#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB +#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC +#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD +#endif /* GL_KHR_texture_compression_astc_hdr */ + +#ifndef GL_KHR_texture_compression_astc_ldr +#define GL_KHR_texture_compression_astc_ldr 1 +#endif /* GL_KHR_texture_compression_astc_ldr */ + +#ifndef GL_KHR_texture_compression_astc_sliced_3d +#define GL_KHR_texture_compression_astc_sliced_3d 1 +#endif /* GL_KHR_texture_compression_astc_sliced_3d */ + +#ifndef GL_OES_byte_coordinates +#define GL_OES_byte_coordinates 1 +typedef void (APIENTRYP PFNGLMULTITEXCOORD1BOESPROC) (GLenum texture, GLbyte s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2BOESPROC) (GLenum texture, GLbyte s, GLbyte t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3BOESPROC) (GLenum texture, GLbyte s, GLbyte t, GLbyte r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4BOESPROC) (GLenum texture, GLbyte s, GLbyte t, GLbyte r, GLbyte q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD1BOESPROC) (GLbyte s); +typedef void (APIENTRYP PFNGLTEXCOORD1BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD2BOESPROC) (GLbyte s, GLbyte t); +typedef void (APIENTRYP PFNGLTEXCOORD2BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD3BOESPROC) (GLbyte s, GLbyte t, GLbyte r); +typedef void (APIENTRYP PFNGLTEXCOORD3BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD4BOESPROC) (GLbyte s, GLbyte t, GLbyte r, GLbyte q); +typedef void (APIENTRYP PFNGLTEXCOORD4BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLVERTEX2BOESPROC) (GLbyte x, GLbyte y); +typedef void (APIENTRYP PFNGLVERTEX2BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLVERTEX3BOESPROC) (GLbyte x, GLbyte y, GLbyte z); +typedef void (APIENTRYP PFNGLVERTEX3BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLVERTEX4BOESPROC) (GLbyte x, GLbyte y, GLbyte z, GLbyte w); +typedef void (APIENTRYP PFNGLVERTEX4BVOESPROC) (const GLbyte *coords); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiTexCoord1bOES (GLenum texture, GLbyte s); +GLAPI void APIENTRY glMultiTexCoord1bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glMultiTexCoord2bOES (GLenum texture, GLbyte s, GLbyte t); +GLAPI void APIENTRY glMultiTexCoord2bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glMultiTexCoord3bOES (GLenum texture, GLbyte s, GLbyte t, GLbyte r); +GLAPI void APIENTRY glMultiTexCoord3bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glMultiTexCoord4bOES (GLenum texture, GLbyte s, GLbyte t, GLbyte r, GLbyte q); +GLAPI void APIENTRY glMultiTexCoord4bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glTexCoord1bOES (GLbyte s); +GLAPI void APIENTRY glTexCoord1bvOES (const GLbyte *coords); +GLAPI void APIENTRY glTexCoord2bOES (GLbyte s, GLbyte t); +GLAPI void APIENTRY glTexCoord2bvOES (const GLbyte *coords); +GLAPI void APIENTRY glTexCoord3bOES (GLbyte s, GLbyte t, GLbyte r); +GLAPI void APIENTRY glTexCoord3bvOES (const GLbyte *coords); +GLAPI void APIENTRY glTexCoord4bOES (GLbyte s, GLbyte t, GLbyte r, GLbyte q); +GLAPI void APIENTRY glTexCoord4bvOES (const GLbyte *coords); +GLAPI void APIENTRY glVertex2bOES (GLbyte x, GLbyte y); +GLAPI void APIENTRY glVertex2bvOES (const GLbyte *coords); +GLAPI void APIENTRY glVertex3bOES (GLbyte x, GLbyte y, GLbyte z); +GLAPI void APIENTRY glVertex3bvOES (const GLbyte *coords); +GLAPI void APIENTRY glVertex4bOES (GLbyte x, GLbyte y, GLbyte z, GLbyte w); +GLAPI void APIENTRY glVertex4bvOES (const GLbyte *coords); +#endif +#endif /* GL_OES_byte_coordinates */ + +#ifndef GL_OES_compressed_paletted_texture +#define GL_OES_compressed_paletted_texture 1 +#define GL_PALETTE4_RGB8_OES 0x8B90 +#define GL_PALETTE4_RGBA8_OES 0x8B91 +#define GL_PALETTE4_R5_G6_B5_OES 0x8B92 +#define GL_PALETTE4_RGBA4_OES 0x8B93 +#define GL_PALETTE4_RGB5_A1_OES 0x8B94 +#define GL_PALETTE8_RGB8_OES 0x8B95 +#define GL_PALETTE8_RGBA8_OES 0x8B96 +#define GL_PALETTE8_R5_G6_B5_OES 0x8B97 +#define GL_PALETTE8_RGBA4_OES 0x8B98 +#define GL_PALETTE8_RGB5_A1_OES 0x8B99 +#endif /* GL_OES_compressed_paletted_texture */ + +#ifndef GL_OES_fixed_point +#define GL_OES_fixed_point 1 +typedef khronos_int32_t GLfixed; +#define GL_FIXED_OES 0x140C +typedef void (APIENTRYP PFNGLALPHAFUNCXOESPROC) (GLenum func, GLfixed ref); +typedef void (APIENTRYP PFNGLCLEARCOLORXOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLCLEARDEPTHXOESPROC) (GLfixed depth); +typedef void (APIENTRYP PFNGLCLIPPLANEXOESPROC) (GLenum plane, const GLfixed *equation); +typedef void (APIENTRYP PFNGLCOLOR4XOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLDEPTHRANGEXOESPROC) (GLfixed n, GLfixed f); +typedef void (APIENTRYP PFNGLFOGXOESPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLFOGXVOESPROC) (GLenum pname, const GLfixed *param); +typedef void (APIENTRYP PFNGLFRUSTUMXOESPROC) (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +typedef void (APIENTRYP PFNGLGETCLIPPLANEXOESPROC) (GLenum plane, GLfixed *equation); +typedef void (APIENTRYP PFNGLGETFIXEDVOESPROC) (GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETTEXENVXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLLIGHTMODELXOESPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLLIGHTMODELXVOESPROC) (GLenum pname, const GLfixed *param); +typedef void (APIENTRYP PFNGLLIGHTXOESPROC) (GLenum light, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLLIGHTXVOESPROC) (GLenum light, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLLINEWIDTHXOESPROC) (GLfixed width); +typedef void (APIENTRYP PFNGLLOADMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMATERIALXOESPROC) (GLenum face, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLMATERIALXVOESPROC) (GLenum face, GLenum pname, const GLfixed *param); +typedef void (APIENTRYP PFNGLMULTMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4XOESPROC) (GLenum texture, GLfixed s, GLfixed t, GLfixed r, GLfixed q); +typedef void (APIENTRYP PFNGLNORMAL3XOESPROC) (GLfixed nx, GLfixed ny, GLfixed nz); +typedef void (APIENTRYP PFNGLORTHOXOESPROC) (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +typedef void (APIENTRYP PFNGLPOINTPARAMETERXVOESPROC) (GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLPOINTSIZEXOESPROC) (GLfixed size); +typedef void (APIENTRYP PFNGLPOLYGONOFFSETXOESPROC) (GLfixed factor, GLfixed units); +typedef void (APIENTRYP PFNGLROTATEXOESPROC) (GLfixed angle, GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLSCALEXOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLTEXENVXOESPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLTEXENVXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERXOESPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLTEXPARAMETERXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLTRANSLATEXOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLACCUMXOESPROC) (GLenum op, GLfixed value); +typedef void (APIENTRYP PFNGLBITMAPXOESPROC) (GLsizei width, GLsizei height, GLfixed xorig, GLfixed yorig, GLfixed xmove, GLfixed ymove, const GLubyte *bitmap); +typedef void (APIENTRYP PFNGLBLENDCOLORXOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLCLEARACCUMXOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLCOLOR3XOESPROC) (GLfixed red, GLfixed green, GLfixed blue); +typedef void (APIENTRYP PFNGLCOLOR3XVOESPROC) (const GLfixed *components); +typedef void (APIENTRYP PFNGLCOLOR4XVOESPROC) (const GLfixed *components); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERXOESPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLEVALCOORD1XOESPROC) (GLfixed u); +typedef void (APIENTRYP PFNGLEVALCOORD1XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLEVALCOORD2XOESPROC) (GLfixed u, GLfixed v); +typedef void (APIENTRYP PFNGLEVALCOORD2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLFEEDBACKBUFFERXOESPROC) (GLsizei n, GLenum type, const GLfixed *buffer); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETLIGHTXOESPROC) (GLenum light, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETMAPXVOESPROC) (GLenum target, GLenum query, GLfixed *v); +typedef void (APIENTRYP PFNGLGETMATERIALXOESPROC) (GLenum face, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLGETPIXELMAPXVPROC) (GLenum map, GLint size, GLfixed *values); +typedef void (APIENTRYP PFNGLGETTEXGENXVOESPROC) (GLenum coord, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERXVOESPROC) (GLenum target, GLint level, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLINDEXXOESPROC) (GLfixed component); +typedef void (APIENTRYP PFNGLINDEXXVOESPROC) (const GLfixed *component); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMAP1XOESPROC) (GLenum target, GLfixed u1, GLfixed u2, GLint stride, GLint order, GLfixed points); +typedef void (APIENTRYP PFNGLMAP2XOESPROC) (GLenum target, GLfixed u1, GLfixed u2, GLint ustride, GLint uorder, GLfixed v1, GLfixed v2, GLint vstride, GLint vorder, GLfixed points); +typedef void (APIENTRYP PFNGLMAPGRID1XOESPROC) (GLint n, GLfixed u1, GLfixed u2); +typedef void (APIENTRYP PFNGLMAPGRID2XOESPROC) (GLint n, GLfixed u1, GLfixed u2, GLfixed v1, GLfixed v2); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1XOESPROC) (GLenum texture, GLfixed s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2XOESPROC) (GLenum texture, GLfixed s, GLfixed t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3XOESPROC) (GLenum texture, GLfixed s, GLfixed t, GLfixed r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLNORMAL3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLPASSTHROUGHXOESPROC) (GLfixed token); +typedef void (APIENTRYP PFNGLPIXELMAPXPROC) (GLenum map, GLint size, const GLfixed *values); +typedef void (APIENTRYP PFNGLPIXELSTOREXPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLPIXELTRANSFERXOESPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLPIXELZOOMXOESPROC) (GLfixed xfactor, GLfixed yfactor); +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESXOESPROC) (GLsizei n, const GLuint *textures, const GLfixed *priorities); +typedef void (APIENTRYP PFNGLRASTERPOS2XOESPROC) (GLfixed x, GLfixed y); +typedef void (APIENTRYP PFNGLRASTERPOS2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLRASTERPOS3XOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLRASTERPOS3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLRASTERPOS4XOESPROC) (GLfixed x, GLfixed y, GLfixed z, GLfixed w); +typedef void (APIENTRYP PFNGLRASTERPOS4XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLRECTXOESPROC) (GLfixed x1, GLfixed y1, GLfixed x2, GLfixed y2); +typedef void (APIENTRYP PFNGLRECTXVOESPROC) (const GLfixed *v1, const GLfixed *v2); +typedef void (APIENTRYP PFNGLTEXCOORD1XOESPROC) (GLfixed s); +typedef void (APIENTRYP PFNGLTEXCOORD1XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXCOORD2XOESPROC) (GLfixed s, GLfixed t); +typedef void (APIENTRYP PFNGLTEXCOORD2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXCOORD3XOESPROC) (GLfixed s, GLfixed t, GLfixed r); +typedef void (APIENTRYP PFNGLTEXCOORD3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXCOORD4XOESPROC) (GLfixed s, GLfixed t, GLfixed r, GLfixed q); +typedef void (APIENTRYP PFNGLTEXCOORD4XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXGENXOESPROC) (GLenum coord, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLTEXGENXVOESPROC) (GLenum coord, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLVERTEX2XOESPROC) (GLfixed x); +typedef void (APIENTRYP PFNGLVERTEX2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLVERTEX3XOESPROC) (GLfixed x, GLfixed y); +typedef void (APIENTRYP PFNGLVERTEX3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLVERTEX4XOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLVERTEX4XVOESPROC) (const GLfixed *coords); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAlphaFuncxOES (GLenum func, GLfixed ref); +GLAPI void APIENTRY glClearColorxOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glClearDepthxOES (GLfixed depth); +GLAPI void APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation); +GLAPI void APIENTRY glColor4xOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glDepthRangexOES (GLfixed n, GLfixed f); +GLAPI void APIENTRY glFogxOES (GLenum pname, GLfixed param); +GLAPI void APIENTRY glFogxvOES (GLenum pname, const GLfixed *param); +GLAPI void APIENTRY glFrustumxOES (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +GLAPI void APIENTRY glGetClipPlanexOES (GLenum plane, GLfixed *equation); +GLAPI void APIENTRY glGetFixedvOES (GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetTexEnvxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetTexParameterxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glLightModelxOES (GLenum pname, GLfixed param); +GLAPI void APIENTRY glLightModelxvOES (GLenum pname, const GLfixed *param); +GLAPI void APIENTRY glLightxOES (GLenum light, GLenum pname, GLfixed param); +GLAPI void APIENTRY glLightxvOES (GLenum light, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glLineWidthxOES (GLfixed width); +GLAPI void APIENTRY glLoadMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMaterialxOES (GLenum face, GLenum pname, GLfixed param); +GLAPI void APIENTRY glMaterialxvOES (GLenum face, GLenum pname, const GLfixed *param); +GLAPI void APIENTRY glMultMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMultiTexCoord4xOES (GLenum texture, GLfixed s, GLfixed t, GLfixed r, GLfixed q); +GLAPI void APIENTRY glNormal3xOES (GLfixed nx, GLfixed ny, GLfixed nz); +GLAPI void APIENTRY glOrthoxOES (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +GLAPI void APIENTRY glPointParameterxvOES (GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glPointSizexOES (GLfixed size); +GLAPI void APIENTRY glPolygonOffsetxOES (GLfixed factor, GLfixed units); +GLAPI void APIENTRY glRotatexOES (GLfixed angle, GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glScalexOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glTexEnvxOES (GLenum target, GLenum pname, GLfixed param); +GLAPI void APIENTRY glTexEnvxvOES (GLenum target, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glTexParameterxOES (GLenum target, GLenum pname, GLfixed param); +GLAPI void APIENTRY glTexParameterxvOES (GLenum target, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glTranslatexOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glAccumxOES (GLenum op, GLfixed value); +GLAPI void APIENTRY glBitmapxOES (GLsizei width, GLsizei height, GLfixed xorig, GLfixed yorig, GLfixed xmove, GLfixed ymove, const GLubyte *bitmap); +GLAPI void APIENTRY glBlendColorxOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glClearAccumxOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glColor3xOES (GLfixed red, GLfixed green, GLfixed blue); +GLAPI void APIENTRY glColor3xvOES (const GLfixed *components); +GLAPI void APIENTRY glColor4xvOES (const GLfixed *components); +GLAPI void APIENTRY glConvolutionParameterxOES (GLenum target, GLenum pname, GLfixed param); +GLAPI void APIENTRY glConvolutionParameterxvOES (GLenum target, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glEvalCoord1xOES (GLfixed u); +GLAPI void APIENTRY glEvalCoord1xvOES (const GLfixed *coords); +GLAPI void APIENTRY glEvalCoord2xOES (GLfixed u, GLfixed v); +GLAPI void APIENTRY glEvalCoord2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glFeedbackBufferxOES (GLsizei n, GLenum type, const GLfixed *buffer); +GLAPI void APIENTRY glGetConvolutionParameterxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetHistogramParameterxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetLightxOES (GLenum light, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetMapxvOES (GLenum target, GLenum query, GLfixed *v); +GLAPI void APIENTRY glGetMaterialxOES (GLenum face, GLenum pname, GLfixed param); +GLAPI void APIENTRY glGetPixelMapxv (GLenum map, GLint size, GLfixed *values); +GLAPI void APIENTRY glGetTexGenxvOES (GLenum coord, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetTexLevelParameterxvOES (GLenum target, GLint level, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glIndexxOES (GLfixed component); +GLAPI void APIENTRY glIndexxvOES (const GLfixed *component); +GLAPI void APIENTRY glLoadTransposeMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMap1xOES (GLenum target, GLfixed u1, GLfixed u2, GLint stride, GLint order, GLfixed points); +GLAPI void APIENTRY glMap2xOES (GLenum target, GLfixed u1, GLfixed u2, GLint ustride, GLint uorder, GLfixed v1, GLfixed v2, GLint vstride, GLint vorder, GLfixed points); +GLAPI void APIENTRY glMapGrid1xOES (GLint n, GLfixed u1, GLfixed u2); +GLAPI void APIENTRY glMapGrid2xOES (GLint n, GLfixed u1, GLfixed u2, GLfixed v1, GLfixed v2); +GLAPI void APIENTRY glMultTransposeMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMultiTexCoord1xOES (GLenum texture, GLfixed s); +GLAPI void APIENTRY glMultiTexCoord1xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glMultiTexCoord2xOES (GLenum texture, GLfixed s, GLfixed t); +GLAPI void APIENTRY glMultiTexCoord2xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glMultiTexCoord3xOES (GLenum texture, GLfixed s, GLfixed t, GLfixed r); +GLAPI void APIENTRY glMultiTexCoord3xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glMultiTexCoord4xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glNormal3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glPassThroughxOES (GLfixed token); +GLAPI void APIENTRY glPixelMapx (GLenum map, GLint size, const GLfixed *values); +GLAPI void APIENTRY glPixelStorex (GLenum pname, GLfixed param); +GLAPI void APIENTRY glPixelTransferxOES (GLenum pname, GLfixed param); +GLAPI void APIENTRY glPixelZoomxOES (GLfixed xfactor, GLfixed yfactor); +GLAPI void APIENTRY glPrioritizeTexturesxOES (GLsizei n, const GLuint *textures, const GLfixed *priorities); +GLAPI void APIENTRY glRasterPos2xOES (GLfixed x, GLfixed y); +GLAPI void APIENTRY glRasterPos2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glRasterPos3xOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glRasterPos3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glRasterPos4xOES (GLfixed x, GLfixed y, GLfixed z, GLfixed w); +GLAPI void APIENTRY glRasterPos4xvOES (const GLfixed *coords); +GLAPI void APIENTRY glRectxOES (GLfixed x1, GLfixed y1, GLfixed x2, GLfixed y2); +GLAPI void APIENTRY glRectxvOES (const GLfixed *v1, const GLfixed *v2); +GLAPI void APIENTRY glTexCoord1xOES (GLfixed s); +GLAPI void APIENTRY glTexCoord1xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexCoord2xOES (GLfixed s, GLfixed t); +GLAPI void APIENTRY glTexCoord2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexCoord3xOES (GLfixed s, GLfixed t, GLfixed r); +GLAPI void APIENTRY glTexCoord3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexCoord4xOES (GLfixed s, GLfixed t, GLfixed r, GLfixed q); +GLAPI void APIENTRY glTexCoord4xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexGenxOES (GLenum coord, GLenum pname, GLfixed param); +GLAPI void APIENTRY glTexGenxvOES (GLenum coord, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glVertex2xOES (GLfixed x); +GLAPI void APIENTRY glVertex2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glVertex3xOES (GLfixed x, GLfixed y); +GLAPI void APIENTRY glVertex3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glVertex4xOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glVertex4xvOES (const GLfixed *coords); +#endif +#endif /* GL_OES_fixed_point */ + +#ifndef GL_OES_query_matrix +#define GL_OES_query_matrix 1 +typedef GLbitfield (APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed *mantissa, GLint *exponent); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLbitfield APIENTRY glQueryMatrixxOES (GLfixed *mantissa, GLint *exponent); +#endif +#endif /* GL_OES_query_matrix */ + +#ifndef GL_OES_read_format +#define GL_OES_read_format 1 +#define GL_IMPLEMENTATION_COLOR_READ_TYPE_OES 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES 0x8B9B +#endif /* GL_OES_read_format */ + +#ifndef GL_OES_single_precision +#define GL_OES_single_precision 1 +typedef void (APIENTRYP PFNGLCLEARDEPTHFOESPROC) (GLclampf depth); +typedef void (APIENTRYP PFNGLCLIPPLANEFOESPROC) (GLenum plane, const GLfloat *equation); +typedef void (APIENTRYP PFNGLDEPTHRANGEFOESPROC) (GLclampf n, GLclampf f); +typedef void (APIENTRYP PFNGLFRUSTUMFOESPROC) (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +typedef void (APIENTRYP PFNGLGETCLIPPLANEFOESPROC) (GLenum plane, GLfloat *equation); +typedef void (APIENTRYP PFNGLORTHOFOESPROC) (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClearDepthfOES (GLclampf depth); +GLAPI void APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation); +GLAPI void APIENTRY glDepthRangefOES (GLclampf n, GLclampf f); +GLAPI void APIENTRY glFrustumfOES (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +GLAPI void APIENTRY glGetClipPlanefOES (GLenum plane, GLfloat *equation); +GLAPI void APIENTRY glOrthofOES (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +#endif +#endif /* GL_OES_single_precision */ + +#ifndef GL_3DFX_multisample +#define GL_3DFX_multisample 1 +#define GL_MULTISAMPLE_3DFX 0x86B2 +#define GL_SAMPLE_BUFFERS_3DFX 0x86B3 +#define GL_SAMPLES_3DFX 0x86B4 +#define GL_MULTISAMPLE_BIT_3DFX 0x20000000 +#endif /* GL_3DFX_multisample */ + +#ifndef GL_3DFX_tbuffer +#define GL_3DFX_tbuffer 1 +typedef void (APIENTRYP PFNGLTBUFFERMASK3DFXPROC) (GLuint mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTbufferMask3DFX (GLuint mask); +#endif +#endif /* GL_3DFX_tbuffer */ + +#ifndef GL_3DFX_texture_compression_FXT1 +#define GL_3DFX_texture_compression_FXT1 1 +#define GL_COMPRESSED_RGB_FXT1_3DFX 0x86B0 +#define GL_COMPRESSED_RGBA_FXT1_3DFX 0x86B1 +#endif /* GL_3DFX_texture_compression_FXT1 */ + +#ifndef GL_AMD_blend_minmax_factor +#define GL_AMD_blend_minmax_factor 1 +#define GL_FACTOR_MIN_AMD 0x901C +#define GL_FACTOR_MAX_AMD 0x901D +#endif /* GL_AMD_blend_minmax_factor */ + +#ifndef GL_AMD_conservative_depth +#define GL_AMD_conservative_depth 1 +#endif /* GL_AMD_conservative_depth */ + +#ifndef GL_AMD_debug_output +#define GL_AMD_debug_output 1 +typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,GLenum category,GLenum severity,GLsizei length,const GLchar *message,void *userParam); +#define GL_MAX_DEBUG_MESSAGE_LENGTH_AMD 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_AMD 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_AMD 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_AMD 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_AMD 0x9147 +#define GL_DEBUG_SEVERITY_LOW_AMD 0x9148 +#define GL_DEBUG_CATEGORY_API_ERROR_AMD 0x9149 +#define GL_DEBUG_CATEGORY_WINDOW_SYSTEM_AMD 0x914A +#define GL_DEBUG_CATEGORY_DEPRECATION_AMD 0x914B +#define GL_DEBUG_CATEGORY_UNDEFINED_BEHAVIOR_AMD 0x914C +#define GL_DEBUG_CATEGORY_PERFORMANCE_AMD 0x914D +#define GL_DEBUG_CATEGORY_SHADER_COMPILER_AMD 0x914E +#define GL_DEBUG_CATEGORY_APPLICATION_AMD 0x914F +#define GL_DEBUG_CATEGORY_OTHER_AMD 0x9150 +typedef void (APIENTRYP PFNGLDEBUGMESSAGEENABLEAMDPROC) (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTAMDPROC) (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKAMDPROC) (GLDEBUGPROCAMD callback, void *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGAMDPROC) (GLuint count, GLsizei bufSize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDebugMessageEnableAMD (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsertAMD (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallbackAMD (GLDEBUGPROCAMD callback, void *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLogAMD (GLuint count, GLsizei bufSize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); +#endif +#endif /* GL_AMD_debug_output */ + +#ifndef GL_AMD_depth_clamp_separate +#define GL_AMD_depth_clamp_separate 1 +#define GL_DEPTH_CLAMP_NEAR_AMD 0x901E +#define GL_DEPTH_CLAMP_FAR_AMD 0x901F +#endif /* GL_AMD_depth_clamp_separate */ + +#ifndef GL_AMD_draw_buffers_blend +#define GL_AMD_draw_buffers_blend 1 +typedef void (APIENTRYP PFNGLBLENDFUNCINDEXEDAMDPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (APIENTRYP PFNGLBLENDEQUATIONINDEXEDAMDPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncIndexedAMD (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparateIndexedAMD (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GLAPI void APIENTRY glBlendEquationIndexedAMD (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparateIndexedAMD (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +#endif +#endif /* GL_AMD_draw_buffers_blend */ + +#ifndef GL_AMD_framebuffer_multisample_advanced +#define GL_AMD_framebuffer_multisample_advanced 1 +#define GL_RENDERBUFFER_STORAGE_SAMPLES_AMD 0x91B2 +#define GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD 0x91B3 +#define GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD 0x91B4 +#define GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD 0x91B5 +#define GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B6 +#define GL_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B7 +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleAdvancedAMD (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleAdvancedAMD (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_AMD_framebuffer_multisample_advanced */ + +#ifndef GL_AMD_framebuffer_sample_positions +#define GL_AMD_framebuffer_sample_positions 1 +#define GL_SUBSAMPLE_DISTANCE_AMD 0x883F +#define GL_PIXELS_PER_SAMPLE_PATTERN_X_AMD 0x91AE +#define GL_PIXELS_PER_SAMPLE_PATTERN_Y_AMD 0x91AF +#define GL_ALL_PIXELS_AMD 0xFFFFFFFF +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC) (GLenum target, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC) (GLuint framebuffer, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERFVAMDPROC) (GLenum target, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERFVAMDPROC) (GLuint framebuffer, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSamplePositionsfvAMD (GLenum target, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +GLAPI void APIENTRY glNamedFramebufferSamplePositionsfvAMD (GLuint framebuffer, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +GLAPI void APIENTRY glGetFramebufferParameterfvAMD (GLenum target, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +GLAPI void APIENTRY glGetNamedFramebufferParameterfvAMD (GLuint framebuffer, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +#endif +#endif /* GL_AMD_framebuffer_sample_positions */ + +#ifndef GL_AMD_gcn_shader +#define GL_AMD_gcn_shader 1 +#endif /* GL_AMD_gcn_shader */ + +#ifndef GL_AMD_gpu_shader_half_float +#define GL_AMD_gpu_shader_half_float 1 +#define GL_FLOAT16_NV 0x8FF8 +#define GL_FLOAT16_VEC2_NV 0x8FF9 +#define GL_FLOAT16_VEC3_NV 0x8FFA +#define GL_FLOAT16_VEC4_NV 0x8FFB +#define GL_FLOAT16_MAT2_AMD 0x91C5 +#define GL_FLOAT16_MAT3_AMD 0x91C6 +#define GL_FLOAT16_MAT4_AMD 0x91C7 +#define GL_FLOAT16_MAT2x3_AMD 0x91C8 +#define GL_FLOAT16_MAT2x4_AMD 0x91C9 +#define GL_FLOAT16_MAT3x2_AMD 0x91CA +#define GL_FLOAT16_MAT3x4_AMD 0x91CB +#define GL_FLOAT16_MAT4x2_AMD 0x91CC +#define GL_FLOAT16_MAT4x3_AMD 0x91CD +#endif /* GL_AMD_gpu_shader_half_float */ + +#ifndef GL_AMD_gpu_shader_int16 +#define GL_AMD_gpu_shader_int16 1 +#endif /* GL_AMD_gpu_shader_int16 */ + +#ifndef GL_AMD_gpu_shader_int64 +#define GL_AMD_gpu_shader_int64 1 +typedef khronos_int64_t GLint64EXT; +#define GL_INT64_NV 0x140E +#define GL_UNSIGNED_INT64_NV 0x140F +#define GL_INT8_NV 0x8FE0 +#define GL_INT8_VEC2_NV 0x8FE1 +#define GL_INT8_VEC3_NV 0x8FE2 +#define GL_INT8_VEC4_NV 0x8FE3 +#define GL_INT16_NV 0x8FE4 +#define GL_INT16_VEC2_NV 0x8FE5 +#define GL_INT16_VEC3_NV 0x8FE6 +#define GL_INT16_VEC4_NV 0x8FE7 +#define GL_INT64_VEC2_NV 0x8FE9 +#define GL_INT64_VEC3_NV 0x8FEA +#define GL_INT64_VEC4_NV 0x8FEB +#define GL_UNSIGNED_INT8_NV 0x8FEC +#define GL_UNSIGNED_INT8_VEC2_NV 0x8FED +#define GL_UNSIGNED_INT8_VEC3_NV 0x8FEE +#define GL_UNSIGNED_INT8_VEC4_NV 0x8FEF +#define GL_UNSIGNED_INT16_NV 0x8FF0 +#define GL_UNSIGNED_INT16_VEC2_NV 0x8FF1 +#define GL_UNSIGNED_INT16_VEC3_NV 0x8FF2 +#define GL_UNSIGNED_INT16_VEC4_NV 0x8FF3 +#define GL_UNSIGNED_INT64_VEC2_NV 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_NV 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_NV 0x8FF7 +typedef void (APIENTRYP PFNGLUNIFORM1I64NVPROC) (GLint location, GLint64EXT x); +typedef void (APIENTRYP PFNGLUNIFORM2I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLUNIFORM3I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLUNIFORM4I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLUNIFORM1I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM2I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM3I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM4I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM1UI64NVPROC) (GLint location, GLuint64EXT x); +typedef void (APIENTRYP PFNGLUNIFORM2UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLUNIFORM3UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLUNIFORM4UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLUNIFORM1UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM2UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM3UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM4UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLGETUNIFORMI64VNVPROC) (GLuint program, GLint location, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64NVPROC) (GLuint program, GLint location, GLint64EXT x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniform1i64NV (GLint location, GLint64EXT x); +GLAPI void APIENTRY glUniform2i64NV (GLint location, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glUniform3i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glUniform4i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glUniform1i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform2i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform3i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform4i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform1ui64NV (GLint location, GLuint64EXT x); +GLAPI void APIENTRY glUniform2ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glUniform3ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glUniform4ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glUniform1ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform2ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform3ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform4ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glGetUniformi64vNV (GLuint program, GLint location, GLint64EXT *params); +GLAPI void APIENTRY glGetUniformui64vNV (GLuint program, GLint location, GLuint64EXT *params); +GLAPI void APIENTRY glProgramUniform1i64NV (GLuint program, GLint location, GLint64EXT x); +GLAPI void APIENTRY glProgramUniform2i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glProgramUniform3i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glProgramUniform4i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glProgramUniform1i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform2i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform3i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform4i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform1ui64NV (GLuint program, GLint location, GLuint64EXT x); +GLAPI void APIENTRY glProgramUniform2ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glProgramUniform3ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glProgramUniform4ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glProgramUniform1ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform2ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform3ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform4ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif +#endif /* GL_AMD_gpu_shader_int64 */ + +#ifndef GL_AMD_interleaved_elements +#define GL_AMD_interleaved_elements 1 +#define GL_VERTEX_ELEMENT_SWIZZLE_AMD 0x91A4 +#define GL_VERTEX_ID_SWIZZLE_AMD 0x91A5 +typedef void (APIENTRYP PFNGLVERTEXATTRIBPARAMETERIAMDPROC) (GLuint index, GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribParameteriAMD (GLuint index, GLenum pname, GLint param); +#endif +#endif /* GL_AMD_interleaved_elements */ + +#ifndef GL_AMD_multi_draw_indirect +#define GL_AMD_multi_draw_indirect 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTAMDPROC) (GLenum mode, const void *indirect, GLsizei primcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTAMDPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei primcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectAMD (GLenum mode, const void *indirect, GLsizei primcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectAMD (GLenum mode, GLenum type, const void *indirect, GLsizei primcount, GLsizei stride); +#endif +#endif /* GL_AMD_multi_draw_indirect */ + +#ifndef GL_AMD_name_gen_delete +#define GL_AMD_name_gen_delete 1 +#define GL_DATA_BUFFER_AMD 0x9151 +#define GL_PERFORMANCE_MONITOR_AMD 0x9152 +#define GL_QUERY_OBJECT_AMD 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_AMD 0x9154 +#define GL_SAMPLER_OBJECT_AMD 0x9155 +typedef void (APIENTRYP PFNGLGENNAMESAMDPROC) (GLenum identifier, GLuint num, GLuint *names); +typedef void (APIENTRYP PFNGLDELETENAMESAMDPROC) (GLenum identifier, GLuint num, const GLuint *names); +typedef GLboolean (APIENTRYP PFNGLISNAMEAMDPROC) (GLenum identifier, GLuint name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenNamesAMD (GLenum identifier, GLuint num, GLuint *names); +GLAPI void APIENTRY glDeleteNamesAMD (GLenum identifier, GLuint num, const GLuint *names); +GLAPI GLboolean APIENTRY glIsNameAMD (GLenum identifier, GLuint name); +#endif +#endif /* GL_AMD_name_gen_delete */ + +#ifndef GL_AMD_occlusion_query_event +#define GL_AMD_occlusion_query_event 1 +#define GL_OCCLUSION_QUERY_EVENT_MASK_AMD 0x874F +#define GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD 0x00000001 +#define GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD 0x00000002 +#define GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD 0x00000004 +#define GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD 0x00000008 +#define GL_QUERY_ALL_EVENT_BITS_AMD 0xFFFFFFFF +typedef void (APIENTRYP PFNGLQUERYOBJECTPARAMETERUIAMDPROC) (GLenum target, GLuint id, GLenum pname, GLuint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glQueryObjectParameteruiAMD (GLenum target, GLuint id, GLenum pname, GLuint param); +#endif +#endif /* GL_AMD_occlusion_query_event */ + +#ifndef GL_AMD_performance_monitor +#define GL_AMD_performance_monitor 1 +#define GL_COUNTER_TYPE_AMD 0x8BC0 +#define GL_COUNTER_RANGE_AMD 0x8BC1 +#define GL_UNSIGNED_INT64_AMD 0x8BC2 +#define GL_PERCENTAGE_AMD 0x8BC3 +#define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4 +#define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5 +#define GL_PERFMON_RESULT_AMD 0x8BC6 +typedef void (APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +typedef void (APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, void *data); +typedef void (APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +typedef void (APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor); +typedef void (APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +GLAPI void APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +GLAPI void APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +GLAPI void APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +GLAPI void APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, void *data); +GLAPI void APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors); +GLAPI void APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors); +GLAPI void APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +GLAPI void APIENTRY glBeginPerfMonitorAMD (GLuint monitor); +GLAPI void APIENTRY glEndPerfMonitorAMD (GLuint monitor); +GLAPI void APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#endif +#endif /* GL_AMD_performance_monitor */ + +#ifndef GL_AMD_pinned_memory +#define GL_AMD_pinned_memory 1 +#define GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD 0x9160 +#endif /* GL_AMD_pinned_memory */ + +#ifndef GL_AMD_query_buffer_object +#define GL_AMD_query_buffer_object 1 +#define GL_QUERY_BUFFER_AMD 0x9192 +#define GL_QUERY_BUFFER_BINDING_AMD 0x9193 +#define GL_QUERY_RESULT_NO_WAIT_AMD 0x9194 +#endif /* GL_AMD_query_buffer_object */ + +#ifndef GL_AMD_sample_positions +#define GL_AMD_sample_positions 1 +typedef void (APIENTRYP PFNGLSETMULTISAMPLEFVAMDPROC) (GLenum pname, GLuint index, const GLfloat *val); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSetMultisamplefvAMD (GLenum pname, GLuint index, const GLfloat *val); +#endif +#endif /* GL_AMD_sample_positions */ + +#ifndef GL_AMD_seamless_cubemap_per_texture +#define GL_AMD_seamless_cubemap_per_texture 1 +#endif /* GL_AMD_seamless_cubemap_per_texture */ + +#ifndef GL_AMD_shader_atomic_counter_ops +#define GL_AMD_shader_atomic_counter_ops 1 +#endif /* GL_AMD_shader_atomic_counter_ops */ + +#ifndef GL_AMD_shader_ballot +#define GL_AMD_shader_ballot 1 +#endif /* GL_AMD_shader_ballot */ + +#ifndef GL_AMD_shader_explicit_vertex_parameter +#define GL_AMD_shader_explicit_vertex_parameter 1 +#endif /* GL_AMD_shader_explicit_vertex_parameter */ + +#ifndef GL_AMD_shader_gpu_shader_half_float_fetch +#define GL_AMD_shader_gpu_shader_half_float_fetch 1 +#endif /* GL_AMD_shader_gpu_shader_half_float_fetch */ + +#ifndef GL_AMD_shader_image_load_store_lod +#define GL_AMD_shader_image_load_store_lod 1 +#endif /* GL_AMD_shader_image_load_store_lod */ + +#ifndef GL_AMD_shader_stencil_export +#define GL_AMD_shader_stencil_export 1 +#endif /* GL_AMD_shader_stencil_export */ + +#ifndef GL_AMD_shader_trinary_minmax +#define GL_AMD_shader_trinary_minmax 1 +#endif /* GL_AMD_shader_trinary_minmax */ + +#ifndef GL_AMD_sparse_texture +#define GL_AMD_sparse_texture 1 +#define GL_VIRTUAL_PAGE_SIZE_X_AMD 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_AMD 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_AMD 0x9197 +#define GL_MAX_SPARSE_TEXTURE_SIZE_AMD 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_AMD 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS 0x919A +#define GL_MIN_SPARSE_LEVEL_AMD 0x919B +#define GL_MIN_LOD_WARNING_AMD 0x919C +#define GL_TEXTURE_STORAGE_SPARSE_BIT_AMD 0x00000001 +typedef void (APIENTRYP PFNGLTEXSTORAGESPARSEAMDPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +typedef void (APIENTRYP PFNGLTEXTURESTORAGESPARSEAMDPROC) (GLuint texture, GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexStorageSparseAMD (GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +GLAPI void APIENTRY glTextureStorageSparseAMD (GLuint texture, GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +#endif +#endif /* GL_AMD_sparse_texture */ + +#ifndef GL_AMD_stencil_operation_extended +#define GL_AMD_stencil_operation_extended 1 +#define GL_SET_AMD 0x874A +#define GL_REPLACE_VALUE_AMD 0x874B +#define GL_STENCIL_OP_VALUE_AMD 0x874C +#define GL_STENCIL_BACK_OP_VALUE_AMD 0x874D +typedef void (APIENTRYP PFNGLSTENCILOPVALUEAMDPROC) (GLenum face, GLuint value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilOpValueAMD (GLenum face, GLuint value); +#endif +#endif /* GL_AMD_stencil_operation_extended */ + +#ifndef GL_AMD_texture_gather_bias_lod +#define GL_AMD_texture_gather_bias_lod 1 +#endif /* GL_AMD_texture_gather_bias_lod */ + +#ifndef GL_AMD_texture_texture4 +#define GL_AMD_texture_texture4 1 +#endif /* GL_AMD_texture_texture4 */ + +#ifndef GL_AMD_transform_feedback3_lines_triangles +#define GL_AMD_transform_feedback3_lines_triangles 1 +#endif /* GL_AMD_transform_feedback3_lines_triangles */ + +#ifndef GL_AMD_transform_feedback4 +#define GL_AMD_transform_feedback4 1 +#define GL_STREAM_RASTERIZATION_AMD 0x91A0 +#endif /* GL_AMD_transform_feedback4 */ + +#ifndef GL_AMD_vertex_shader_layer +#define GL_AMD_vertex_shader_layer 1 +#endif /* GL_AMD_vertex_shader_layer */ + +#ifndef GL_AMD_vertex_shader_tessellator +#define GL_AMD_vertex_shader_tessellator 1 +#define GL_SAMPLER_BUFFER_AMD 0x9001 +#define GL_INT_SAMPLER_BUFFER_AMD 0x9002 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_AMD 0x9003 +#define GL_TESSELLATION_MODE_AMD 0x9004 +#define GL_TESSELLATION_FACTOR_AMD 0x9005 +#define GL_DISCRETE_AMD 0x9006 +#define GL_CONTINUOUS_AMD 0x9007 +typedef void (APIENTRYP PFNGLTESSELLATIONFACTORAMDPROC) (GLfloat factor); +typedef void (APIENTRYP PFNGLTESSELLATIONMODEAMDPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTessellationFactorAMD (GLfloat factor); +GLAPI void APIENTRY glTessellationModeAMD (GLenum mode); +#endif +#endif /* GL_AMD_vertex_shader_tessellator */ + +#ifndef GL_AMD_vertex_shader_viewport_index +#define GL_AMD_vertex_shader_viewport_index 1 +#endif /* GL_AMD_vertex_shader_viewport_index */ + +#ifndef GL_APPLE_aux_depth_stencil +#define GL_APPLE_aux_depth_stencil 1 +#define GL_AUX_DEPTH_STENCIL_APPLE 0x8A14 +#endif /* GL_APPLE_aux_depth_stencil */ + +#ifndef GL_APPLE_client_storage +#define GL_APPLE_client_storage 1 +#define GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2 +#endif /* GL_APPLE_client_storage */ + +#ifndef GL_APPLE_element_array +#define GL_APPLE_element_array 1 +#define GL_ELEMENT_ARRAY_APPLE 0x8A0C +#define GL_ELEMENT_ARRAY_TYPE_APPLE 0x8A0D +#define GL_ELEMENT_ARRAY_POINTER_APPLE 0x8A0E +typedef void (APIENTRYP PFNGLELEMENTPOINTERAPPLEPROC) (GLenum type, const void *pointer); +typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (APIENTRYP PFNGLMULTIDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glElementPointerAPPLE (GLenum type, const void *pointer); +GLAPI void APIENTRY glDrawElementArrayAPPLE (GLenum mode, GLint first, GLsizei count); +GLAPI void APIENTRY glDrawRangeElementArrayAPPLE (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count); +GLAPI void APIENTRY glMultiDrawElementArrayAPPLE (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GLAPI void APIENTRY glMultiDrawRangeElementArrayAPPLE (GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount); +#endif +#endif /* GL_APPLE_element_array */ + +#ifndef GL_APPLE_fence +#define GL_APPLE_fence 1 +#define GL_DRAW_PIXELS_APPLE 0x8A0A +#define GL_FENCE_APPLE 0x8A0B +typedef void (APIENTRYP PFNGLGENFENCESAPPLEPROC) (GLsizei n, GLuint *fences); +typedef void (APIENTRYP PFNGLDELETEFENCESAPPLEPROC) (GLsizei n, const GLuint *fences); +typedef void (APIENTRYP PFNGLSETFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLISFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTFENCEAPPLEPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLFINISHFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTOBJECTAPPLEPROC) (GLenum object, GLuint name); +typedef void (APIENTRYP PFNGLFINISHOBJECTAPPLEPROC) (GLenum object, GLint name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenFencesAPPLE (GLsizei n, GLuint *fences); +GLAPI void APIENTRY glDeleteFencesAPPLE (GLsizei n, const GLuint *fences); +GLAPI void APIENTRY glSetFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glIsFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glTestFenceAPPLE (GLuint fence); +GLAPI void APIENTRY glFinishFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glTestObjectAPPLE (GLenum object, GLuint name); +GLAPI void APIENTRY glFinishObjectAPPLE (GLenum object, GLint name); +#endif +#endif /* GL_APPLE_fence */ + +#ifndef GL_APPLE_float_pixels +#define GL_APPLE_float_pixels 1 +#define GL_HALF_APPLE 0x140B +#define GL_RGBA_FLOAT32_APPLE 0x8814 +#define GL_RGB_FLOAT32_APPLE 0x8815 +#define GL_ALPHA_FLOAT32_APPLE 0x8816 +#define GL_INTENSITY_FLOAT32_APPLE 0x8817 +#define GL_LUMINANCE_FLOAT32_APPLE 0x8818 +#define GL_LUMINANCE_ALPHA_FLOAT32_APPLE 0x8819 +#define GL_RGBA_FLOAT16_APPLE 0x881A +#define GL_RGB_FLOAT16_APPLE 0x881B +#define GL_ALPHA_FLOAT16_APPLE 0x881C +#define GL_INTENSITY_FLOAT16_APPLE 0x881D +#define GL_LUMINANCE_FLOAT16_APPLE 0x881E +#define GL_LUMINANCE_ALPHA_FLOAT16_APPLE 0x881F +#define GL_COLOR_FLOAT_APPLE 0x8A0F +#endif /* GL_APPLE_float_pixels */ + +#ifndef GL_APPLE_flush_buffer_range +#define GL_APPLE_flush_buffer_range 1 +#define GL_BUFFER_SERIALIZED_MODIFY_APPLE 0x8A12 +#define GL_BUFFER_FLUSHING_UNMAP_APPLE 0x8A13 +typedef void (APIENTRYP PFNGLBUFFERPARAMETERIAPPLEPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEAPPLEPROC) (GLenum target, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferParameteriAPPLE (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glFlushMappedBufferRangeAPPLE (GLenum target, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_APPLE_flush_buffer_range */ + +#ifndef GL_APPLE_object_purgeable +#define GL_APPLE_object_purgeable 1 +#define GL_BUFFER_OBJECT_APPLE 0x85B3 +#define GL_RELEASED_APPLE 0x8A19 +#define GL_VOLATILE_APPLE 0x8A1A +#define GL_RETAINED_APPLE 0x8A1B +#define GL_UNDEFINED_APPLE 0x8A1C +#define GL_PURGEABLE_APPLE 0x8A1D +typedef GLenum (APIENTRYP PFNGLOBJECTPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option); +typedef GLenum (APIENTRYP PFNGLOBJECTUNPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVAPPLEPROC) (GLenum objectType, GLuint name, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLenum APIENTRY glObjectPurgeableAPPLE (GLenum objectType, GLuint name, GLenum option); +GLAPI GLenum APIENTRY glObjectUnpurgeableAPPLE (GLenum objectType, GLuint name, GLenum option); +GLAPI void APIENTRY glGetObjectParameterivAPPLE (GLenum objectType, GLuint name, GLenum pname, GLint *params); +#endif +#endif /* GL_APPLE_object_purgeable */ + +#ifndef GL_APPLE_rgb_422 +#define GL_APPLE_rgb_422 1 +#define GL_RGB_422_APPLE 0x8A1F +#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB +#define GL_RGB_RAW_422_APPLE 0x8A51 +#endif /* GL_APPLE_rgb_422 */ + +#ifndef GL_APPLE_row_bytes +#define GL_APPLE_row_bytes 1 +#define GL_PACK_ROW_BYTES_APPLE 0x8A15 +#define GL_UNPACK_ROW_BYTES_APPLE 0x8A16 +#endif /* GL_APPLE_row_bytes */ + +#ifndef GL_APPLE_specular_vector +#define GL_APPLE_specular_vector 1 +#define GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE 0x85B0 +#endif /* GL_APPLE_specular_vector */ + +#ifndef GL_APPLE_texture_range +#define GL_APPLE_texture_range 1 +#define GL_TEXTURE_RANGE_LENGTH_APPLE 0x85B7 +#define GL_TEXTURE_RANGE_POINTER_APPLE 0x85B8 +#define GL_TEXTURE_STORAGE_HINT_APPLE 0x85BC +#define GL_STORAGE_PRIVATE_APPLE 0x85BD +#define GL_STORAGE_CACHED_APPLE 0x85BE +#define GL_STORAGE_SHARED_APPLE 0x85BF +typedef void (APIENTRYP PFNGLTEXTURERANGEAPPLEPROC) (GLenum target, GLsizei length, const void *pointer); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERPOINTERVAPPLEPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureRangeAPPLE (GLenum target, GLsizei length, const void *pointer); +GLAPI void APIENTRY glGetTexParameterPointervAPPLE (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_APPLE_texture_range */ + +#ifndef GL_APPLE_transform_hint +#define GL_APPLE_transform_hint 1 +#define GL_TRANSFORM_HINT_APPLE 0x85B1 +#endif /* GL_APPLE_transform_hint */ + +#ifndef GL_APPLE_vertex_array_object +#define GL_APPLE_vertex_array_object 1 +#define GL_VERTEX_ARRAY_BINDING_APPLE 0x85B5 +typedef void (APIENTRYP PFNGLBINDVERTEXARRAYAPPLEPROC) (GLuint array); +typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint *arrays); +typedef void (APIENTRYP PFNGLGENVERTEXARRAYSAPPLEPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYAPPLEPROC) (GLuint array); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindVertexArrayAPPLE (GLuint array); +GLAPI void APIENTRY glDeleteVertexArraysAPPLE (GLsizei n, const GLuint *arrays); +GLAPI void APIENTRY glGenVertexArraysAPPLE (GLsizei n, GLuint *arrays); +GLAPI GLboolean APIENTRY glIsVertexArrayAPPLE (GLuint array); +#endif +#endif /* GL_APPLE_vertex_array_object */ + +#ifndef GL_APPLE_vertex_array_range +#define GL_APPLE_vertex_array_range 1 +#define GL_VERTEX_ARRAY_RANGE_APPLE 0x851D +#define GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE 0x851E +#define GL_VERTEX_ARRAY_STORAGE_HINT_APPLE 0x851F +#define GL_VERTEX_ARRAY_RANGE_POINTER_APPLE 0x8521 +#define GL_STORAGE_CLIENT_APPLE 0x85B4 +typedef void (APIENTRYP PFNGLVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, void *pointer); +typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, void *pointer); +typedef void (APIENTRYP PFNGLVERTEXARRAYPARAMETERIAPPLEPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexArrayRangeAPPLE (GLsizei length, void *pointer); +GLAPI void APIENTRY glFlushVertexArrayRangeAPPLE (GLsizei length, void *pointer); +GLAPI void APIENTRY glVertexArrayParameteriAPPLE (GLenum pname, GLint param); +#endif +#endif /* GL_APPLE_vertex_array_range */ + +#ifndef GL_APPLE_vertex_program_evaluators +#define GL_APPLE_vertex_program_evaluators 1 +#define GL_VERTEX_ATTRIB_MAP1_APPLE 0x8A00 +#define GL_VERTEX_ATTRIB_MAP2_APPLE 0x8A01 +#define GL_VERTEX_ATTRIB_MAP1_SIZE_APPLE 0x8A02 +#define GL_VERTEX_ATTRIB_MAP1_COEFF_APPLE 0x8A03 +#define GL_VERTEX_ATTRIB_MAP1_ORDER_APPLE 0x8A04 +#define GL_VERTEX_ATTRIB_MAP1_DOMAIN_APPLE 0x8A05 +#define GL_VERTEX_ATTRIB_MAP2_SIZE_APPLE 0x8A06 +#define GL_VERTEX_ATTRIB_MAP2_COEFF_APPLE 0x8A07 +#define GL_VERTEX_ATTRIB_MAP2_ORDER_APPLE 0x8A08 +#define GL_VERTEX_ATTRIB_MAP2_DOMAIN_APPLE 0x8A09 +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname); +typedef GLboolean (APIENTRYP PFNGLISVERTEXATTRIBENABLEDAPPLEPROC) (GLuint index, GLenum pname); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB1DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB1FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB2DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB2FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glEnableVertexAttribAPPLE (GLuint index, GLenum pname); +GLAPI void APIENTRY glDisableVertexAttribAPPLE (GLuint index, GLenum pname); +GLAPI GLboolean APIENTRY glIsVertexAttribEnabledAPPLE (GLuint index, GLenum pname); +GLAPI void APIENTRY glMapVertexAttrib1dAPPLE (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points); +GLAPI void APIENTRY glMapVertexAttrib1fAPPLE (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points); +GLAPI void APIENTRY glMapVertexAttrib2dAPPLE (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points); +GLAPI void APIENTRY glMapVertexAttrib2fAPPLE (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points); +#endif +#endif /* GL_APPLE_vertex_program_evaluators */ + +#ifndef GL_APPLE_ycbcr_422 +#define GL_APPLE_ycbcr_422 1 +#define GL_YCBCR_422_APPLE 0x85B9 +#endif /* GL_APPLE_ycbcr_422 */ + +#ifndef GL_ATI_draw_buffers +#define GL_ATI_draw_buffers 1 +#define GL_MAX_DRAW_BUFFERS_ATI 0x8824 +#define GL_DRAW_BUFFER0_ATI 0x8825 +#define GL_DRAW_BUFFER1_ATI 0x8826 +#define GL_DRAW_BUFFER2_ATI 0x8827 +#define GL_DRAW_BUFFER3_ATI 0x8828 +#define GL_DRAW_BUFFER4_ATI 0x8829 +#define GL_DRAW_BUFFER5_ATI 0x882A +#define GL_DRAW_BUFFER6_ATI 0x882B +#define GL_DRAW_BUFFER7_ATI 0x882C +#define GL_DRAW_BUFFER8_ATI 0x882D +#define GL_DRAW_BUFFER9_ATI 0x882E +#define GL_DRAW_BUFFER10_ATI 0x882F +#define GL_DRAW_BUFFER11_ATI 0x8830 +#define GL_DRAW_BUFFER12_ATI 0x8831 +#define GL_DRAW_BUFFER13_ATI 0x8832 +#define GL_DRAW_BUFFER14_ATI 0x8833 +#define GL_DRAW_BUFFER15_ATI 0x8834 +typedef void (APIENTRYP PFNGLDRAWBUFFERSATIPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawBuffersATI (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_ATI_draw_buffers */ + +#ifndef GL_ATI_element_array +#define GL_ATI_element_array 1 +#define GL_ELEMENT_ARRAY_ATI 0x8768 +#define GL_ELEMENT_ARRAY_TYPE_ATI 0x8769 +#define GL_ELEMENT_ARRAY_POINTER_ATI 0x876A +typedef void (APIENTRYP PFNGLELEMENTPOINTERATIPROC) (GLenum type, const void *pointer); +typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYATIPROC) (GLenum mode, GLsizei count); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYATIPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glElementPointerATI (GLenum type, const void *pointer); +GLAPI void APIENTRY glDrawElementArrayATI (GLenum mode, GLsizei count); +GLAPI void APIENTRY glDrawRangeElementArrayATI (GLenum mode, GLuint start, GLuint end, GLsizei count); +#endif +#endif /* GL_ATI_element_array */ + +#ifndef GL_ATI_envmap_bumpmap +#define GL_ATI_envmap_bumpmap 1 +#define GL_BUMP_ROT_MATRIX_ATI 0x8775 +#define GL_BUMP_ROT_MATRIX_SIZE_ATI 0x8776 +#define GL_BUMP_NUM_TEX_UNITS_ATI 0x8777 +#define GL_BUMP_TEX_UNITS_ATI 0x8778 +#define GL_DUDV_ATI 0x8779 +#define GL_DU8DV8_ATI 0x877A +#define GL_BUMP_ENVMAP_ATI 0x877B +#define GL_BUMP_TARGET_ATI 0x877C +typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERIVATIPROC) (GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERFVATIPROC) (GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERIVATIPROC) (GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERFVATIPROC) (GLenum pname, GLfloat *param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBumpParameterivATI (GLenum pname, const GLint *param); +GLAPI void APIENTRY glTexBumpParameterfvATI (GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glGetTexBumpParameterivATI (GLenum pname, GLint *param); +GLAPI void APIENTRY glGetTexBumpParameterfvATI (GLenum pname, GLfloat *param); +#endif +#endif /* GL_ATI_envmap_bumpmap */ + +#ifndef GL_ATI_fragment_shader +#define GL_ATI_fragment_shader 1 +#define GL_FRAGMENT_SHADER_ATI 0x8920 +#define GL_REG_0_ATI 0x8921 +#define GL_REG_1_ATI 0x8922 +#define GL_REG_2_ATI 0x8923 +#define GL_REG_3_ATI 0x8924 +#define GL_REG_4_ATI 0x8925 +#define GL_REG_5_ATI 0x8926 +#define GL_REG_6_ATI 0x8927 +#define GL_REG_7_ATI 0x8928 +#define GL_REG_8_ATI 0x8929 +#define GL_REG_9_ATI 0x892A +#define GL_REG_10_ATI 0x892B +#define GL_REG_11_ATI 0x892C +#define GL_REG_12_ATI 0x892D +#define GL_REG_13_ATI 0x892E +#define GL_REG_14_ATI 0x892F +#define GL_REG_15_ATI 0x8930 +#define GL_REG_16_ATI 0x8931 +#define GL_REG_17_ATI 0x8932 +#define GL_REG_18_ATI 0x8933 +#define GL_REG_19_ATI 0x8934 +#define GL_REG_20_ATI 0x8935 +#define GL_REG_21_ATI 0x8936 +#define GL_REG_22_ATI 0x8937 +#define GL_REG_23_ATI 0x8938 +#define GL_REG_24_ATI 0x8939 +#define GL_REG_25_ATI 0x893A +#define GL_REG_26_ATI 0x893B +#define GL_REG_27_ATI 0x893C +#define GL_REG_28_ATI 0x893D +#define GL_REG_29_ATI 0x893E +#define GL_REG_30_ATI 0x893F +#define GL_REG_31_ATI 0x8940 +#define GL_CON_0_ATI 0x8941 +#define GL_CON_1_ATI 0x8942 +#define GL_CON_2_ATI 0x8943 +#define GL_CON_3_ATI 0x8944 +#define GL_CON_4_ATI 0x8945 +#define GL_CON_5_ATI 0x8946 +#define GL_CON_6_ATI 0x8947 +#define GL_CON_7_ATI 0x8948 +#define GL_CON_8_ATI 0x8949 +#define GL_CON_9_ATI 0x894A +#define GL_CON_10_ATI 0x894B +#define GL_CON_11_ATI 0x894C +#define GL_CON_12_ATI 0x894D +#define GL_CON_13_ATI 0x894E +#define GL_CON_14_ATI 0x894F +#define GL_CON_15_ATI 0x8950 +#define GL_CON_16_ATI 0x8951 +#define GL_CON_17_ATI 0x8952 +#define GL_CON_18_ATI 0x8953 +#define GL_CON_19_ATI 0x8954 +#define GL_CON_20_ATI 0x8955 +#define GL_CON_21_ATI 0x8956 +#define GL_CON_22_ATI 0x8957 +#define GL_CON_23_ATI 0x8958 +#define GL_CON_24_ATI 0x8959 +#define GL_CON_25_ATI 0x895A +#define GL_CON_26_ATI 0x895B +#define GL_CON_27_ATI 0x895C +#define GL_CON_28_ATI 0x895D +#define GL_CON_29_ATI 0x895E +#define GL_CON_30_ATI 0x895F +#define GL_CON_31_ATI 0x8960 +#define GL_MOV_ATI 0x8961 +#define GL_ADD_ATI 0x8963 +#define GL_MUL_ATI 0x8964 +#define GL_SUB_ATI 0x8965 +#define GL_DOT3_ATI 0x8966 +#define GL_DOT4_ATI 0x8967 +#define GL_MAD_ATI 0x8968 +#define GL_LERP_ATI 0x8969 +#define GL_CND_ATI 0x896A +#define GL_CND0_ATI 0x896B +#define GL_DOT2_ADD_ATI 0x896C +#define GL_SECONDARY_INTERPOLATOR_ATI 0x896D +#define GL_NUM_FRAGMENT_REGISTERS_ATI 0x896E +#define GL_NUM_FRAGMENT_CONSTANTS_ATI 0x896F +#define GL_NUM_PASSES_ATI 0x8970 +#define GL_NUM_INSTRUCTIONS_PER_PASS_ATI 0x8971 +#define GL_NUM_INSTRUCTIONS_TOTAL_ATI 0x8972 +#define GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI 0x8973 +#define GL_NUM_LOOPBACK_COMPONENTS_ATI 0x8974 +#define GL_COLOR_ALPHA_PAIRING_ATI 0x8975 +#define GL_SWIZZLE_STR_ATI 0x8976 +#define GL_SWIZZLE_STQ_ATI 0x8977 +#define GL_SWIZZLE_STR_DR_ATI 0x8978 +#define GL_SWIZZLE_STQ_DQ_ATI 0x8979 +#define GL_SWIZZLE_STRQ_ATI 0x897A +#define GL_SWIZZLE_STRQ_DQ_ATI 0x897B +#define GL_RED_BIT_ATI 0x00000001 +#define GL_GREEN_BIT_ATI 0x00000002 +#define GL_BLUE_BIT_ATI 0x00000004 +#define GL_2X_BIT_ATI 0x00000001 +#define GL_4X_BIT_ATI 0x00000002 +#define GL_8X_BIT_ATI 0x00000004 +#define GL_HALF_BIT_ATI 0x00000008 +#define GL_QUARTER_BIT_ATI 0x00000010 +#define GL_EIGHTH_BIT_ATI 0x00000020 +#define GL_SATURATE_BIT_ATI 0x00000040 +#define GL_COMP_BIT_ATI 0x00000002 +#define GL_NEGATE_BIT_ATI 0x00000004 +#define GL_BIAS_BIT_ATI 0x00000008 +typedef GLuint (APIENTRYP PFNGLGENFRAGMENTSHADERSATIPROC) (GLuint range); +typedef void (APIENTRYP PFNGLBINDFRAGMENTSHADERATIPROC) (GLuint id); +typedef void (APIENTRYP PFNGLDELETEFRAGMENTSHADERATIPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINFRAGMENTSHADERATIPROC) (void); +typedef void (APIENTRYP PFNGLENDFRAGMENTSHADERATIPROC) (void); +typedef void (APIENTRYP PFNGLPASSTEXCOORDATIPROC) (GLuint dst, GLuint coord, GLenum swizzle); +typedef void (APIENTRYP PFNGLSAMPLEMAPATIPROC) (GLuint dst, GLuint interp, GLenum swizzle); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +typedef void (APIENTRYP PFNGLSETFRAGMENTSHADERCONSTANTATIPROC) (GLuint dst, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glGenFragmentShadersATI (GLuint range); +GLAPI void APIENTRY glBindFragmentShaderATI (GLuint id); +GLAPI void APIENTRY glDeleteFragmentShaderATI (GLuint id); +GLAPI void APIENTRY glBeginFragmentShaderATI (void); +GLAPI void APIENTRY glEndFragmentShaderATI (void); +GLAPI void APIENTRY glPassTexCoordATI (GLuint dst, GLuint coord, GLenum swizzle); +GLAPI void APIENTRY glSampleMapATI (GLuint dst, GLuint interp, GLenum swizzle); +GLAPI void APIENTRY glColorFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +GLAPI void APIENTRY glColorFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +GLAPI void APIENTRY glColorFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +GLAPI void APIENTRY glAlphaFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +GLAPI void APIENTRY glAlphaFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +GLAPI void APIENTRY glAlphaFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +GLAPI void APIENTRY glSetFragmentShaderConstantATI (GLuint dst, const GLfloat *value); +#endif +#endif /* GL_ATI_fragment_shader */ + +#ifndef GL_ATI_map_object_buffer +#define GL_ATI_map_object_buffer 1 +typedef void *(APIENTRYP PFNGLMAPOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLUNMAPOBJECTBUFFERATIPROC) (GLuint buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void *APIENTRY glMapObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glUnmapObjectBufferATI (GLuint buffer); +#endif +#endif /* GL_ATI_map_object_buffer */ + +#ifndef GL_ATI_meminfo +#define GL_ATI_meminfo 1 +#define GL_VBO_FREE_MEMORY_ATI 0x87FB +#define GL_TEXTURE_FREE_MEMORY_ATI 0x87FC +#define GL_RENDERBUFFER_FREE_MEMORY_ATI 0x87FD +#endif /* GL_ATI_meminfo */ + +#ifndef GL_ATI_pixel_format_float +#define GL_ATI_pixel_format_float 1 +#define GL_RGBA_FLOAT_MODE_ATI 0x8820 +#define GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI 0x8835 +#endif /* GL_ATI_pixel_format_float */ + +#ifndef GL_ATI_pn_triangles +#define GL_ATI_pn_triangles 1 +#define GL_PN_TRIANGLES_ATI 0x87F0 +#define GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F1 +#define GL_PN_TRIANGLES_POINT_MODE_ATI 0x87F2 +#define GL_PN_TRIANGLES_NORMAL_MODE_ATI 0x87F3 +#define GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F4 +#define GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI 0x87F5 +#define GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI 0x87F6 +#define GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI 0x87F7 +#define GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI 0x87F8 +typedef void (APIENTRYP PFNGLPNTRIANGLESIATIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPNTRIANGLESFATIPROC) (GLenum pname, GLfloat param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPNTrianglesiATI (GLenum pname, GLint param); +GLAPI void APIENTRY glPNTrianglesfATI (GLenum pname, GLfloat param); +#endif +#endif /* GL_ATI_pn_triangles */ + +#ifndef GL_ATI_separate_stencil +#define GL_ATI_separate_stencil 1 +#define GL_STENCIL_BACK_FUNC_ATI 0x8800 +#define GL_STENCIL_BACK_FAIL_ATI 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI 0x8803 +typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEATIPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEATIPROC) (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilOpSeparateATI (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GLAPI void APIENTRY glStencilFuncSeparateATI (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +#endif +#endif /* GL_ATI_separate_stencil */ + +#ifndef GL_ATI_text_fragment_shader +#define GL_ATI_text_fragment_shader 1 +#define GL_TEXT_FRAGMENT_SHADER_ATI 0x8200 +#endif /* GL_ATI_text_fragment_shader */ + +#ifndef GL_ATI_texture_env_combine3 +#define GL_ATI_texture_env_combine3 1 +#define GL_MODULATE_ADD_ATI 0x8744 +#define GL_MODULATE_SIGNED_ADD_ATI 0x8745 +#define GL_MODULATE_SUBTRACT_ATI 0x8746 +#endif /* GL_ATI_texture_env_combine3 */ + +#ifndef GL_ATI_texture_float +#define GL_ATI_texture_float 1 +#define GL_RGBA_FLOAT32_ATI 0x8814 +#define GL_RGB_FLOAT32_ATI 0x8815 +#define GL_ALPHA_FLOAT32_ATI 0x8816 +#define GL_INTENSITY_FLOAT32_ATI 0x8817 +#define GL_LUMINANCE_FLOAT32_ATI 0x8818 +#define GL_LUMINANCE_ALPHA_FLOAT32_ATI 0x8819 +#define GL_RGBA_FLOAT16_ATI 0x881A +#define GL_RGB_FLOAT16_ATI 0x881B +#define GL_ALPHA_FLOAT16_ATI 0x881C +#define GL_INTENSITY_FLOAT16_ATI 0x881D +#define GL_LUMINANCE_FLOAT16_ATI 0x881E +#define GL_LUMINANCE_ALPHA_FLOAT16_ATI 0x881F +#endif /* GL_ATI_texture_float */ + +#ifndef GL_ATI_texture_mirror_once +#define GL_ATI_texture_mirror_once 1 +#define GL_MIRROR_CLAMP_ATI 0x8742 +#define GL_MIRROR_CLAMP_TO_EDGE_ATI 0x8743 +#endif /* GL_ATI_texture_mirror_once */ + +#ifndef GL_ATI_vertex_array_object +#define GL_ATI_vertex_array_object 1 +#define GL_STATIC_ATI 0x8760 +#define GL_DYNAMIC_ATI 0x8761 +#define GL_PRESERVE_ATI 0x8762 +#define GL_DISCARD_ATI 0x8763 +#define GL_OBJECT_BUFFER_SIZE_ATI 0x8764 +#define GL_OBJECT_BUFFER_USAGE_ATI 0x8765 +#define GL_ARRAY_OBJECT_BUFFER_ATI 0x8766 +#define GL_ARRAY_OBJECT_OFFSET_ATI 0x8767 +typedef GLuint (APIENTRYP PFNGLNEWOBJECTBUFFERATIPROC) (GLsizei size, const void *pointer, GLenum usage); +typedef GLboolean (APIENTRYP PFNGLISOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLUPDATEOBJECTBUFFERATIPROC) (GLuint buffer, GLuint offset, GLsizei size, const void *pointer, GLenum preserve); +typedef void (APIENTRYP PFNGLGETOBJECTBUFFERFVATIPROC) (GLuint buffer, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETOBJECTBUFFERIVATIPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLFREEOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLARRAYOBJECTATIPROC) (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETARRAYOBJECTFVATIPROC) (GLenum array, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETARRAYOBJECTIVATIPROC) (GLenum array, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLVARIANTARRAYOBJECTATIPROC) (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTFVATIPROC) (GLuint id, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTIVATIPROC) (GLuint id, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glNewObjectBufferATI (GLsizei size, const void *pointer, GLenum usage); +GLAPI GLboolean APIENTRY glIsObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glUpdateObjectBufferATI (GLuint buffer, GLuint offset, GLsizei size, const void *pointer, GLenum preserve); +GLAPI void APIENTRY glGetObjectBufferfvATI (GLuint buffer, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetObjectBufferivATI (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glFreeObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glArrayObjectATI (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetArrayObjectfvATI (GLenum array, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetArrayObjectivATI (GLenum array, GLenum pname, GLint *params); +GLAPI void APIENTRY glVariantArrayObjectATI (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetVariantArrayObjectfvATI (GLuint id, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVariantArrayObjectivATI (GLuint id, GLenum pname, GLint *params); +#endif +#endif /* GL_ATI_vertex_array_object */ + +#ifndef GL_ATI_vertex_attrib_array_object +#define GL_ATI_vertex_attrib_array_object 1 +typedef void (APIENTRYP PFNGLVERTEXATTRIBARRAYOBJECTATIPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTFVATIPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTIVATIPROC) (GLuint index, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribArrayObjectATI (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetVertexAttribArrayObjectfvATI (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribArrayObjectivATI (GLuint index, GLenum pname, GLint *params); +#endif +#endif /* GL_ATI_vertex_attrib_array_object */ + +#ifndef GL_ATI_vertex_streams +#define GL_ATI_vertex_streams 1 +#define GL_MAX_VERTEX_STREAMS_ATI 0x876B +#define GL_VERTEX_STREAM0_ATI 0x876C +#define GL_VERTEX_STREAM1_ATI 0x876D +#define GL_VERTEX_STREAM2_ATI 0x876E +#define GL_VERTEX_STREAM3_ATI 0x876F +#define GL_VERTEX_STREAM4_ATI 0x8770 +#define GL_VERTEX_STREAM5_ATI 0x8771 +#define GL_VERTEX_STREAM6_ATI 0x8772 +#define GL_VERTEX_STREAM7_ATI 0x8773 +#define GL_VERTEX_SOURCE_ATI 0x8774 +typedef void (APIENTRYP PFNGLVERTEXSTREAM1SATIPROC) (GLenum stream, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1IATIPROC) (GLenum stream, GLint x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1FATIPROC) (GLenum stream, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1DATIPROC) (GLenum stream, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2SATIPROC) (GLenum stream, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2IATIPROC) (GLenum stream, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2FATIPROC) (GLenum stream, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2DATIPROC) (GLenum stream, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3IATIPROC) (GLenum stream, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4IATIPROC) (GLenum stream, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3BATIPROC) (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3BVATIPROC) (GLenum stream, const GLbyte *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3SATIPROC) (GLenum stream, GLshort nx, GLshort ny, GLshort nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3IATIPROC) (GLenum stream, GLint nx, GLint ny, GLint nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3FATIPROC) (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3DATIPROC) (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLCLIENTACTIVEVERTEXSTREAMATIPROC) (GLenum stream); +typedef void (APIENTRYP PFNGLVERTEXBLENDENVIATIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLVERTEXBLENDENVFATIPROC) (GLenum pname, GLfloat param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexStream1sATI (GLenum stream, GLshort x); +GLAPI void APIENTRY glVertexStream1svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream1iATI (GLenum stream, GLint x); +GLAPI void APIENTRY glVertexStream1ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream1fATI (GLenum stream, GLfloat x); +GLAPI void APIENTRY glVertexStream1fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream1dATI (GLenum stream, GLdouble x); +GLAPI void APIENTRY glVertexStream1dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream2sATI (GLenum stream, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexStream2svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream2iATI (GLenum stream, GLint x, GLint y); +GLAPI void APIENTRY glVertexStream2ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream2fATI (GLenum stream, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexStream2fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream2dATI (GLenum stream, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexStream2dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream3sATI (GLenum stream, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexStream3svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream3iATI (GLenum stream, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexStream3ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream3fATI (GLenum stream, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexStream3fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream3dATI (GLenum stream, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexStream3dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream4sATI (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexStream4svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream4iATI (GLenum stream, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexStream4ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream4fATI (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexStream4fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream4dATI (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexStream4dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glNormalStream3bATI (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz); +GLAPI void APIENTRY glNormalStream3bvATI (GLenum stream, const GLbyte *coords); +GLAPI void APIENTRY glNormalStream3sATI (GLenum stream, GLshort nx, GLshort ny, GLshort nz); +GLAPI void APIENTRY glNormalStream3svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glNormalStream3iATI (GLenum stream, GLint nx, GLint ny, GLint nz); +GLAPI void APIENTRY glNormalStream3ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glNormalStream3fATI (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz); +GLAPI void APIENTRY glNormalStream3fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glNormalStream3dATI (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz); +GLAPI void APIENTRY glNormalStream3dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glClientActiveVertexStreamATI (GLenum stream); +GLAPI void APIENTRY glVertexBlendEnviATI (GLenum pname, GLint param); +GLAPI void APIENTRY glVertexBlendEnvfATI (GLenum pname, GLfloat param); +#endif +#endif /* GL_ATI_vertex_streams */ + +#ifndef GL_EXT_422_pixels +#define GL_EXT_422_pixels 1 +#define GL_422_EXT 0x80CC +#define GL_422_REV_EXT 0x80CD +#define GL_422_AVERAGE_EXT 0x80CE +#define GL_422_REV_AVERAGE_EXT 0x80CF +#endif /* GL_EXT_422_pixels */ + +#ifndef GL_EXT_EGL_image_storage +#define GL_EXT_EGL_image_storage 1 +typedef void *GLeglImageOES; +typedef void (APIENTRYP PFNGLEGLIMAGETARGETTEXSTORAGEEXTPROC) (GLenum target, GLeglImageOES image, const GLint* attrib_list); +typedef void (APIENTRYP PFNGLEGLIMAGETARGETTEXTURESTORAGEEXTPROC) (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glEGLImageTargetTexStorageEXT (GLenum target, GLeglImageOES image, const GLint* attrib_list); +GLAPI void APIENTRY glEGLImageTargetTextureStorageEXT (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#endif +#endif /* GL_EXT_EGL_image_storage */ + +#ifndef GL_EXT_EGL_sync +#define GL_EXT_EGL_sync 1 +#endif /* GL_EXT_EGL_sync */ + +#ifndef GL_EXT_abgr +#define GL_EXT_abgr 1 +#define GL_ABGR_EXT 0x8000 +#endif /* GL_EXT_abgr */ + +#ifndef GL_EXT_bgra +#define GL_EXT_bgra 1 +#define GL_BGR_EXT 0x80E0 +#define GL_BGRA_EXT 0x80E1 +#endif /* GL_EXT_bgra */ + +#ifndef GL_EXT_bindable_uniform +#define GL_EXT_bindable_uniform 1 +#define GL_MAX_VERTEX_BINDABLE_UNIFORMS_EXT 0x8DE2 +#define GL_MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT 0x8DE3 +#define GL_MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT 0x8DE4 +#define GL_MAX_BINDABLE_UNIFORM_SIZE_EXT 0x8DED +#define GL_UNIFORM_BUFFER_EXT 0x8DEE +#define GL_UNIFORM_BUFFER_BINDING_EXT 0x8DEF +typedef void (APIENTRYP PFNGLUNIFORMBUFFEREXTPROC) (GLuint program, GLint location, GLuint buffer); +typedef GLint (APIENTRYP PFNGLGETUNIFORMBUFFERSIZEEXTPROC) (GLuint program, GLint location); +typedef GLintptr (APIENTRYP PFNGLGETUNIFORMOFFSETEXTPROC) (GLuint program, GLint location); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniformBufferEXT (GLuint program, GLint location, GLuint buffer); +GLAPI GLint APIENTRY glGetUniformBufferSizeEXT (GLuint program, GLint location); +GLAPI GLintptr APIENTRY glGetUniformOffsetEXT (GLuint program, GLint location); +#endif +#endif /* GL_EXT_bindable_uniform */ + +#ifndef GL_EXT_blend_color +#define GL_EXT_blend_color 1 +#define GL_CONSTANT_COLOR_EXT 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR_EXT 0x8002 +#define GL_CONSTANT_ALPHA_EXT 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA_EXT 0x8004 +#define GL_BLEND_COLOR_EXT 0x8005 +typedef void (APIENTRYP PFNGLBLENDCOLOREXTPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendColorEXT (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +#endif +#endif /* GL_EXT_blend_color */ + +#ifndef GL_EXT_blend_equation_separate +#define GL_EXT_blend_equation_separate 1 +#define GL_BLEND_EQUATION_RGB_EXT 0x8009 +#define GL_BLEND_EQUATION_ALPHA_EXT 0x883D +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEEXTPROC) (GLenum modeRGB, GLenum modeAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationSeparateEXT (GLenum modeRGB, GLenum modeAlpha); +#endif +#endif /* GL_EXT_blend_equation_separate */ + +#ifndef GL_EXT_blend_func_separate +#define GL_EXT_blend_func_separate 1 +#define GL_BLEND_DST_RGB_EXT 0x80C8 +#define GL_BLEND_SRC_RGB_EXT 0x80C9 +#define GL_BLEND_DST_ALPHA_EXT 0x80CA +#define GL_BLEND_SRC_ALPHA_EXT 0x80CB +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEEXTPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparateEXT (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#endif +#endif /* GL_EXT_blend_func_separate */ + +#ifndef GL_EXT_blend_logic_op +#define GL_EXT_blend_logic_op 1 +#endif /* GL_EXT_blend_logic_op */ + +#ifndef GL_EXT_blend_minmax +#define GL_EXT_blend_minmax 1 +#define GL_MIN_EXT 0x8007 +#define GL_MAX_EXT 0x8008 +#define GL_FUNC_ADD_EXT 0x8006 +#define GL_BLEND_EQUATION_EXT 0x8009 +typedef void (APIENTRYP PFNGLBLENDEQUATIONEXTPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationEXT (GLenum mode); +#endif +#endif /* GL_EXT_blend_minmax */ + +#ifndef GL_EXT_blend_subtract +#define GL_EXT_blend_subtract 1 +#define GL_FUNC_SUBTRACT_EXT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT_EXT 0x800B +#endif /* GL_EXT_blend_subtract */ + +#ifndef GL_EXT_clip_volume_hint +#define GL_EXT_clip_volume_hint 1 +#define GL_CLIP_VOLUME_CLIPPING_HINT_EXT 0x80F0 +#endif /* GL_EXT_clip_volume_hint */ + +#ifndef GL_EXT_cmyka +#define GL_EXT_cmyka 1 +#define GL_CMYK_EXT 0x800C +#define GL_CMYKA_EXT 0x800D +#define GL_PACK_CMYK_HINT_EXT 0x800E +#define GL_UNPACK_CMYK_HINT_EXT 0x800F +#endif /* GL_EXT_cmyka */ + +#ifndef GL_EXT_color_subtable +#define GL_EXT_color_subtable 1 +typedef void (APIENTRYP PFNGLCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorSubTableEXT (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glCopyColorSubTableEXT (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +#endif +#endif /* GL_EXT_color_subtable */ + +#ifndef GL_EXT_compiled_vertex_array +#define GL_EXT_compiled_vertex_array 1 +#define GL_ARRAY_ELEMENT_LOCK_FIRST_EXT 0x81A8 +#define GL_ARRAY_ELEMENT_LOCK_COUNT_EXT 0x81A9 +typedef void (APIENTRYP PFNGLLOCKARRAYSEXTPROC) (GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLUNLOCKARRAYSEXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLockArraysEXT (GLint first, GLsizei count); +GLAPI void APIENTRY glUnlockArraysEXT (void); +#endif +#endif /* GL_EXT_compiled_vertex_array */ + +#ifndef GL_EXT_convolution +#define GL_EXT_convolution 1 +#define GL_CONVOLUTION_1D_EXT 0x8010 +#define GL_CONVOLUTION_2D_EXT 0x8011 +#define GL_SEPARABLE_2D_EXT 0x8012 +#define GL_CONVOLUTION_BORDER_MODE_EXT 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE_EXT 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS_EXT 0x8015 +#define GL_REDUCE_EXT 0x8016 +#define GL_CONVOLUTION_FORMAT_EXT 0x8017 +#define GL_CONVOLUTION_WIDTH_EXT 0x8018 +#define GL_CONVOLUTION_HEIGHT_EXT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH_EXT 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT_EXT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE_EXT 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE_EXT 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE_EXT 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE_EXT 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS_EXT 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS_EXT 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS_EXT 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS_EXT 0x8023 +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, void *image); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConvolutionFilter1DEXT (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionFilter2DEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionParameterfEXT (GLenum target, GLenum pname, GLfloat params); +GLAPI void APIENTRY glConvolutionParameterfvEXT (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glConvolutionParameteriEXT (GLenum target, GLenum pname, GLint params); +GLAPI void APIENTRY glConvolutionParameterivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyConvolutionFilter1DEXT (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyConvolutionFilter2DEXT (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetConvolutionFilterEXT (GLenum target, GLenum format, GLenum type, void *image); +GLAPI void APIENTRY glGetConvolutionParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetConvolutionParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSeparableFilterEXT (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +GLAPI void APIENTRY glSeparableFilter2DEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +#endif +#endif /* GL_EXT_convolution */ + +#ifndef GL_EXT_coordinate_frame +#define GL_EXT_coordinate_frame 1 +#define GL_TANGENT_ARRAY_EXT 0x8439 +#define GL_BINORMAL_ARRAY_EXT 0x843A +#define GL_CURRENT_TANGENT_EXT 0x843B +#define GL_CURRENT_BINORMAL_EXT 0x843C +#define GL_TANGENT_ARRAY_TYPE_EXT 0x843E +#define GL_TANGENT_ARRAY_STRIDE_EXT 0x843F +#define GL_BINORMAL_ARRAY_TYPE_EXT 0x8440 +#define GL_BINORMAL_ARRAY_STRIDE_EXT 0x8441 +#define GL_TANGENT_ARRAY_POINTER_EXT 0x8442 +#define GL_BINORMAL_ARRAY_POINTER_EXT 0x8443 +#define GL_MAP1_TANGENT_EXT 0x8444 +#define GL_MAP2_TANGENT_EXT 0x8445 +#define GL_MAP1_BINORMAL_EXT 0x8446 +#define GL_MAP2_BINORMAL_EXT 0x8447 +typedef void (APIENTRYP PFNGLTANGENT3BEXTPROC) (GLbyte tx, GLbyte ty, GLbyte tz); +typedef void (APIENTRYP PFNGLTANGENT3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLTANGENT3DEXTPROC) (GLdouble tx, GLdouble ty, GLdouble tz); +typedef void (APIENTRYP PFNGLTANGENT3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLTANGENT3FEXTPROC) (GLfloat tx, GLfloat ty, GLfloat tz); +typedef void (APIENTRYP PFNGLTANGENT3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLTANGENT3IEXTPROC) (GLint tx, GLint ty, GLint tz); +typedef void (APIENTRYP PFNGLTANGENT3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLTANGENT3SEXTPROC) (GLshort tx, GLshort ty, GLshort tz); +typedef void (APIENTRYP PFNGLTANGENT3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLBINORMAL3BEXTPROC) (GLbyte bx, GLbyte by, GLbyte bz); +typedef void (APIENTRYP PFNGLBINORMAL3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLBINORMAL3DEXTPROC) (GLdouble bx, GLdouble by, GLdouble bz); +typedef void (APIENTRYP PFNGLBINORMAL3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLBINORMAL3FEXTPROC) (GLfloat bx, GLfloat by, GLfloat bz); +typedef void (APIENTRYP PFNGLBINORMAL3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLBINORMAL3IEXTPROC) (GLint bx, GLint by, GLint bz); +typedef void (APIENTRYP PFNGLBINORMAL3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLBINORMAL3SEXTPROC) (GLshort bx, GLshort by, GLshort bz); +typedef void (APIENTRYP PFNGLBINORMAL3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLTANGENTPOINTEREXTPROC) (GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLBINORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTangent3bEXT (GLbyte tx, GLbyte ty, GLbyte tz); +GLAPI void APIENTRY glTangent3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glTangent3dEXT (GLdouble tx, GLdouble ty, GLdouble tz); +GLAPI void APIENTRY glTangent3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glTangent3fEXT (GLfloat tx, GLfloat ty, GLfloat tz); +GLAPI void APIENTRY glTangent3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glTangent3iEXT (GLint tx, GLint ty, GLint tz); +GLAPI void APIENTRY glTangent3ivEXT (const GLint *v); +GLAPI void APIENTRY glTangent3sEXT (GLshort tx, GLshort ty, GLshort tz); +GLAPI void APIENTRY glTangent3svEXT (const GLshort *v); +GLAPI void APIENTRY glBinormal3bEXT (GLbyte bx, GLbyte by, GLbyte bz); +GLAPI void APIENTRY glBinormal3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glBinormal3dEXT (GLdouble bx, GLdouble by, GLdouble bz); +GLAPI void APIENTRY glBinormal3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glBinormal3fEXT (GLfloat bx, GLfloat by, GLfloat bz); +GLAPI void APIENTRY glBinormal3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glBinormal3iEXT (GLint bx, GLint by, GLint bz); +GLAPI void APIENTRY glBinormal3ivEXT (const GLint *v); +GLAPI void APIENTRY glBinormal3sEXT (GLshort bx, GLshort by, GLshort bz); +GLAPI void APIENTRY glBinormal3svEXT (const GLshort *v); +GLAPI void APIENTRY glTangentPointerEXT (GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glBinormalPointerEXT (GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_coordinate_frame */ + +#ifndef GL_EXT_copy_texture +#define GL_EXT_copy_texture 1 +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCopyTexImage1DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyTexImage2DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTexSubImage2DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glCopyTexSubImage3DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#endif +#endif /* GL_EXT_copy_texture */ + +#ifndef GL_EXT_cull_vertex +#define GL_EXT_cull_vertex 1 +#define GL_CULL_VERTEX_EXT 0x81AA +#define GL_CULL_VERTEX_EYE_POSITION_EXT 0x81AB +#define GL_CULL_VERTEX_OBJECT_POSITION_EXT 0x81AC +typedef void (APIENTRYP PFNGLCULLPARAMETERDVEXTPROC) (GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLCULLPARAMETERFVEXTPROC) (GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCullParameterdvEXT (GLenum pname, GLdouble *params); +GLAPI void APIENTRY glCullParameterfvEXT (GLenum pname, GLfloat *params); +#endif +#endif /* GL_EXT_cull_vertex */ + +#ifndef GL_EXT_debug_label +#define GL_EXT_debug_label 1 +#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F +#define GL_PROGRAM_OBJECT_EXT 0x8B40 +#define GL_SHADER_OBJECT_EXT 0x8B48 +#define GL_BUFFER_OBJECT_EXT 0x9151 +#define GL_QUERY_OBJECT_EXT 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154 +typedef void (APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label); +typedef void (APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label); +GLAPI void APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +#endif /* GL_EXT_debug_label */ + +#ifndef GL_EXT_debug_marker +#define GL_EXT_debug_marker 1 +typedef void (APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker); +GLAPI void APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker); +GLAPI void APIENTRY glPopGroupMarkerEXT (void); +#endif +#endif /* GL_EXT_debug_marker */ + +#ifndef GL_EXT_depth_bounds_test +#define GL_EXT_depth_bounds_test 1 +#define GL_DEPTH_BOUNDS_TEST_EXT 0x8890 +#define GL_DEPTH_BOUNDS_EXT 0x8891 +typedef void (APIENTRYP PFNGLDEPTHBOUNDSEXTPROC) (GLclampd zmin, GLclampd zmax); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthBoundsEXT (GLclampd zmin, GLclampd zmax); +#endif +#endif /* GL_EXT_depth_bounds_test */ + +#ifndef GL_EXT_direct_state_access +#define GL_EXT_direct_state_access 1 +#define GL_PROGRAM_MATRIX_EXT 0x8E2D +#define GL_TRANSPOSE_PROGRAM_MATRIX_EXT 0x8E2E +#define GL_PROGRAM_MATRIX_STACK_DEPTH_EXT 0x8E2F +typedef void (APIENTRYP PFNGLMATRIXLOADFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXMULTFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXLOADIDENTITYEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLMATRIXROTATEFEXTPROC) (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXROTATEDEXTPROC) (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXSCALEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXSCALEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXTRANSLATEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXTRANSLATEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXFRUSTUMEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLMATRIXORTHOEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLMATRIXPOPEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLMATRIXPUSHEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLPUSHCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLBINDMULTITEXTUREEXTPROC) (GLenum texunit, GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORDPOINTEREXTPROC) (GLenum texunit, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLMULTITEXENVFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXENVIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXGENDEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble param); +typedef void (APIENTRYP PFNGLMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params); +typedef void (APIENTRYP PFNGLMULTITEXGENFEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXGENIEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXLEVELPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXLEVELPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLGETFLOATINDEXEDVEXTPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (APIENTRYP PFNGLGETDOUBLEINDEXEDVEXTPROC) (GLenum target, GLuint index, GLdouble *data); +typedef void (APIENTRYP PFNGLGETPOINTERINDEXEDVEXTPROC) (GLenum target, GLuint index, void **data); +typedef void (APIENTRYP PFNGLENABLEINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISENABLEDINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLGETINTEGERINDEXEDVEXTPROC) (GLenum target, GLuint index, GLint *data); +typedef void (APIENTRYP PFNGLGETBOOLEANINDEXEDVEXTPROC) (GLenum target, GLuint index, GLboolean *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint lod, void *img); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint lod, void *img); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLNAMEDBUFFERDATAEXTPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFEREXTPROC) (GLuint buffer, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPNAMEDBUFFEREXTPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERIVEXTPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPOINTERVEXTPROC) (GLuint buffer, GLenum pname, void **params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLTEXTUREBUFFEREXTPROC) (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLMULTITEXBUFFEREXTPROC) (GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIEXTPROC) (GLuint program, GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4IEXTPROC) (GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERSI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERSI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERIIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERIUIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint *params); +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEIEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEIEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLGETFLOATI_VEXTPROC) (GLenum pname, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETDOUBLEI_VEXTPROC) (GLenum pname, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPOINTERI_VEXTPROC) (GLenum pname, GLuint index, void **params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum format, GLsizei len, const void *string); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4DEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4DVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4FEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4FVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERDVEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERFVEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMIVEXTPROC) (GLuint program, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum pname, void *string); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEEXTPROC) (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETNAMEDRENDERBUFFERPARAMETERIVEXTPROC) (GLuint renderbuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLECOVERAGEEXTPROC) (GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef GLenum (APIENTRYP PFNGLCHECKNAMEDFRAMEBUFFERSTATUSEXTPROC) (GLuint framebuffer, GLenum target); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE1DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE2DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE3DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERRENDERBUFFEREXTPROC) (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATETEXTUREMIPMAPEXTPROC) (GLuint texture, GLenum target); +typedef void (APIENTRYP PFNGLGENERATEMULTITEXMIPMAPEXTPROC) (GLenum texunit, GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERDRAWBUFFEREXTPROC) (GLuint framebuffer, GLenum mode); +typedef void (APIENTRYP PFNGLFRAMEBUFFERDRAWBUFFERSEXTPROC) (GLuint framebuffer, GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLFRAMEBUFFERREADBUFFEREXTPROC) (GLuint framebuffer, GLenum mode); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLNAMEDCOPYBUFFERSUBDATAEXTPROC) (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURELAYEREXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREFACEEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face); +typedef void (APIENTRYP PFNGLTEXTURERENDERBUFFEREXTPROC) (GLuint texture, GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLMULTITEXRENDERBUFFEREXTPROC) (GLenum texunit, GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYCOLOROFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYEDGEFLAGOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYINDEXOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYNORMALOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYTEXCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYMULTITEXCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum texunit, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYFOGCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYSECONDARYCOLOROFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBIOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYEXTPROC) (GLuint vaobj, GLenum array); +typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYEXTPROC) (GLuint vaobj, GLenum array); +typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYATTRIBEXTPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYATTRIBEXTPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINTEGERVEXTPROC) (GLuint vaobj, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYPOINTERVEXTPROC) (GLuint vaobj, GLenum pname, void **param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINTEGERI_VEXTPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYPOINTERI_VEXTPROC) (GLuint vaobj, GLuint index, GLenum pname, void **param); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERDATAEXTPROC) (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLenum internalformat, GLsizeiptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERPARAMETERIEXTPROC) (GLuint framebuffer, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DEXTPROC) (GLuint program, GLint location, GLdouble x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERRANGEEXTPROC) (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DMULTISAMPLEEXTPROC) (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DMULTISAMPLEEXTPROC) (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLVERTEXARRAYBINDVERTEXBUFFEREXTPROC) (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBIFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBLFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBBINDINGEXTPROC) (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBINDINGDIVISOREXTPROC) (GLuint vaobj, GLuint bindingindex, GLuint divisor); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBLOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLTEXTUREPAGECOMMITMENTEXTPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBDIVISOREXTPROC) (GLuint vaobj, GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMatrixLoadfEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoaddEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixMultfEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultdEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixLoadIdentityEXT (GLenum mode); +GLAPI void APIENTRY glMatrixRotatefEXT (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixRotatedEXT (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixScalefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixScaledEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixTranslatefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixTranslatedEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixFrustumEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glMatrixOrthoEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glMatrixPopEXT (GLenum mode); +GLAPI void APIENTRY glMatrixPushEXT (GLenum mode); +GLAPI void APIENTRY glClientAttribDefaultEXT (GLbitfield mask); +GLAPI void APIENTRY glPushClientAttribDefaultEXT (GLbitfield mask); +GLAPI void APIENTRY glTextureParameterfEXT (GLuint texture, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glTextureParameterfvEXT (GLuint texture, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glTextureParameteriEXT (GLuint texture, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glTextureParameterivEXT (GLuint texture, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetTextureImageEXT (GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +GLAPI void APIENTRY glGetTextureParameterfvEXT (GLuint texture, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureParameterivEXT (GLuint texture, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureLevelParameterfvEXT (GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureLevelParameterivEXT (GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glTextureImage3DEXT (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glBindMultiTextureEXT (GLenum texunit, GLenum target, GLuint texture); +GLAPI void APIENTRY glMultiTexCoordPointerEXT (GLenum texunit, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glMultiTexEnvfEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexEnvfvEXT (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexEnviEXT (GLenum texunit, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexEnvivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexGendEXT (GLenum texunit, GLenum coord, GLenum pname, GLdouble param); +GLAPI void APIENTRY glMultiTexGendvEXT (GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params); +GLAPI void APIENTRY glMultiTexGenfEXT (GLenum texunit, GLenum coord, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexGenfvEXT (GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexGeniEXT (GLenum texunit, GLenum coord, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexGenivEXT (GLenum texunit, GLenum coord, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetMultiTexEnvfvEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexEnvivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexGendvEXT (GLenum texunit, GLenum coord, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetMultiTexGenfvEXT (GLenum texunit, GLenum coord, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexGenivEXT (GLenum texunit, GLenum coord, GLenum pname, GLint *params); +GLAPI void APIENTRY glMultiTexParameteriEXT (GLenum texunit, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexParameterivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexParameterfEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexParameterfvEXT (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetMultiTexImageEXT (GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +GLAPI void APIENTRY glGetMultiTexParameterfvEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexParameterivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexLevelParameterfvEXT (GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexLevelParameterivEXT (GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glMultiTexImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glEnableClientStateIndexedEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glDisableClientStateIndexedEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glGetFloatIndexedvEXT (GLenum target, GLuint index, GLfloat *data); +GLAPI void APIENTRY glGetDoubleIndexedvEXT (GLenum target, GLuint index, GLdouble *data); +GLAPI void APIENTRY glGetPointerIndexedvEXT (GLenum target, GLuint index, void **data); +GLAPI void APIENTRY glEnableIndexedEXT (GLenum target, GLuint index); +GLAPI void APIENTRY glDisableIndexedEXT (GLenum target, GLuint index); +GLAPI GLboolean APIENTRY glIsEnabledIndexedEXT (GLenum target, GLuint index); +GLAPI void APIENTRY glGetIntegerIndexedvEXT (GLenum target, GLuint index, GLint *data); +GLAPI void APIENTRY glGetBooleanIndexedvEXT (GLenum target, GLuint index, GLboolean *data); +GLAPI void APIENTRY glCompressedTextureImage3DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glGetCompressedTextureImageEXT (GLuint texture, GLenum target, GLint lod, void *img); +GLAPI void APIENTRY glCompressedMultiTexImage3DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glGetCompressedMultiTexImageEXT (GLenum texunit, GLenum target, GLint lod, void *img); +GLAPI void APIENTRY glMatrixLoadTransposefEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoadTransposedEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixMultTransposefEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultTransposedEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glNamedBufferDataEXT (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +GLAPI void APIENTRY glNamedBufferSubDataEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void *APIENTRY glMapNamedBufferEXT (GLuint buffer, GLenum access); +GLAPI GLboolean APIENTRY glUnmapNamedBufferEXT (GLuint buffer); +GLAPI void APIENTRY glGetNamedBufferParameterivEXT (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedBufferPointervEXT (GLuint buffer, GLenum pname, void **params); +GLAPI void APIENTRY glGetNamedBufferSubDataEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +GLAPI void APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat v0); +GLAPI void APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint v0); +GLAPI void APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glTextureBufferEXT (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glMultiTexBufferEXT (GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glTextureParameterIivEXT (GLuint texture, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureParameterIuivEXT (GLuint texture, GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTextureParameterIivEXT (GLuint texture, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterIuivEXT (GLuint texture, GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glMultiTexParameterIivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexParameterIuivEXT (GLenum texunit, GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetMultiTexParameterIivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexParameterIuivEXT (GLenum texunit, GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glProgramUniform1uiEXT (GLuint program, GLint location, GLuint v0); +GLAPI void APIENTRY glProgramUniform2uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glProgramUniform3uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glProgramUniform4uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glProgramUniform1uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform2uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform3uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform4uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glNamedProgramLocalParameters4fvEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glNamedProgramLocalParameterI4iEXT (GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glNamedProgramLocalParameterI4ivEXT (GLuint program, GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glNamedProgramLocalParametersI4ivEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glNamedProgramLocalParameterI4uiEXT (GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glNamedProgramLocalParameterI4uivEXT (GLuint program, GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glNamedProgramLocalParametersI4uivEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterIivEXT (GLuint program, GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterIuivEXT (GLuint program, GLenum target, GLuint index, GLuint *params); +GLAPI void APIENTRY glEnableClientStateiEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glDisableClientStateiEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glGetFloati_vEXT (GLenum pname, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetDoublei_vEXT (GLenum pname, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetPointeri_vEXT (GLenum pname, GLuint index, void **params); +GLAPI void APIENTRY glNamedProgramStringEXT (GLuint program, GLenum target, GLenum format, GLsizei len, const void *string); +GLAPI void APIENTRY glNamedProgramLocalParameter4dEXT (GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glNamedProgramLocalParameter4dvEXT (GLuint program, GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glNamedProgramLocalParameter4fEXT (GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glNamedProgramLocalParameter4fvEXT (GLuint program, GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterdvEXT (GLuint program, GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterfvEXT (GLuint program, GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetNamedProgramivEXT (GLuint program, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedProgramStringEXT (GLuint program, GLenum target, GLenum pname, void *string); +GLAPI void APIENTRY glNamedRenderbufferStorageEXT (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetNamedRenderbufferParameterivEXT (GLuint renderbuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleEXT (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleCoverageEXT (GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI GLenum APIENTRY glCheckNamedFramebufferStatusEXT (GLuint framebuffer, GLenum target); +GLAPI void APIENTRY glNamedFramebufferTexture1DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTexture2DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTexture3DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glNamedFramebufferRenderbufferEXT (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetNamedFramebufferAttachmentParameterivEXT (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateTextureMipmapEXT (GLuint texture, GLenum target); +GLAPI void APIENTRY glGenerateMultiTexMipmapEXT (GLenum texunit, GLenum target); +GLAPI void APIENTRY glFramebufferDrawBufferEXT (GLuint framebuffer, GLenum mode); +GLAPI void APIENTRY glFramebufferDrawBuffersEXT (GLuint framebuffer, GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glFramebufferReadBufferEXT (GLuint framebuffer, GLenum mode); +GLAPI void APIENTRY glGetFramebufferParameterivEXT (GLuint framebuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glNamedCopyBufferSubDataEXT (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glNamedFramebufferTextureEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTextureLayerEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glNamedFramebufferTextureFaceEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face); +GLAPI void APIENTRY glTextureRenderbufferEXT (GLuint texture, GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glMultiTexRenderbufferEXT (GLenum texunit, GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glVertexArrayVertexOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayColorOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayEdgeFlagOffsetEXT (GLuint vaobj, GLuint buffer, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayIndexOffsetEXT (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayNormalOffsetEXT (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayTexCoordOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayMultiTexCoordOffsetEXT (GLuint vaobj, GLuint buffer, GLenum texunit, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayFogCoordOffsetEXT (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArraySecondaryColorOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayVertexAttribOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayVertexAttribIOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glEnableVertexArrayEXT (GLuint vaobj, GLenum array); +GLAPI void APIENTRY glDisableVertexArrayEXT (GLuint vaobj, GLenum array); +GLAPI void APIENTRY glEnableVertexArrayAttribEXT (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glDisableVertexArrayAttribEXT (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glGetVertexArrayIntegervEXT (GLuint vaobj, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayPointervEXT (GLuint vaobj, GLenum pname, void **param); +GLAPI void APIENTRY glGetVertexArrayIntegeri_vEXT (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayPointeri_vEXT (GLuint vaobj, GLuint index, GLenum pname, void **param); +GLAPI void *APIENTRY glMapNamedBufferRangeEXT (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI void APIENTRY glFlushMappedNamedBufferRangeEXT (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glNamedBufferStorageEXT (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +GLAPI void APIENTRY glClearNamedBufferDataEXT (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearNamedBufferSubDataEXT (GLuint buffer, GLenum internalformat, GLsizeiptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glNamedFramebufferParameteriEXT (GLuint framebuffer, GLenum pname, GLint param); +GLAPI void APIENTRY glGetNamedFramebufferParameterivEXT (GLuint framebuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glProgramUniform1dEXT (GLuint program, GLint location, GLdouble x); +GLAPI void APIENTRY glProgramUniform2dEXT (GLuint program, GLint location, GLdouble x, GLdouble y); +GLAPI void APIENTRY glProgramUniform3dEXT (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glProgramUniform4dEXT (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramUniform1dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform2dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform3dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform4dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glTextureBufferRangeEXT (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glTextureStorage1DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTextureStorage2DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureStorage3DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glTextureStorage2DMultisampleEXT (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureStorage3DMultisampleEXT (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glVertexArrayBindVertexBufferEXT (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +GLAPI void APIENTRY glVertexArrayVertexAttribFormatEXT (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayVertexAttribIFormatEXT (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayVertexAttribLFormatEXT (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayVertexAttribBindingEXT (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +GLAPI void APIENTRY glVertexArrayVertexBindingDivisorEXT (GLuint vaobj, GLuint bindingindex, GLuint divisor); +GLAPI void APIENTRY glVertexArrayVertexAttribLOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glTexturePageCommitmentEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +GLAPI void APIENTRY glVertexArrayVertexAttribDivisorEXT (GLuint vaobj, GLuint index, GLuint divisor); +#endif +#endif /* GL_EXT_direct_state_access */ + +#ifndef GL_EXT_draw_buffers2 +#define GL_EXT_draw_buffers2 1 +typedef void (APIENTRYP PFNGLCOLORMASKINDEXEDEXTPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorMaskIndexedEXT (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +#endif +#endif /* GL_EXT_draw_buffers2 */ + +#ifndef GL_EXT_draw_instanced +#define GL_EXT_draw_instanced 1 +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +GLAPI void APIENTRY glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_EXT_draw_instanced */ + +#ifndef GL_EXT_draw_range_elements +#define GL_EXT_draw_range_elements 1 +#define GL_MAX_ELEMENTS_VERTICES_EXT 0x80E8 +#define GL_MAX_ELEMENTS_INDICES_EXT 0x80E9 +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawRangeElementsEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +#endif +#endif /* GL_EXT_draw_range_elements */ + +#ifndef GL_EXT_external_buffer +#define GL_EXT_external_buffer 1 +typedef void *GLeglClientBufferEXT; +typedef void (APIENTRYP PFNGLBUFFERSTORAGEEXTERNALEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTERNALEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferStorageExternalEXT (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +GLAPI void APIENTRY glNamedBufferStorageExternalEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#endif +#endif /* GL_EXT_external_buffer */ + +#ifndef GL_EXT_fog_coord +#define GL_EXT_fog_coord 1 +#define GL_FOG_COORDINATE_SOURCE_EXT 0x8450 +#define GL_FOG_COORDINATE_EXT 0x8451 +#define GL_FRAGMENT_DEPTH_EXT 0x8452 +#define GL_CURRENT_FOG_COORDINATE_EXT 0x8453 +#define GL_FOG_COORDINATE_ARRAY_TYPE_EXT 0x8454 +#define GL_FOG_COORDINATE_ARRAY_STRIDE_EXT 0x8455 +#define GL_FOG_COORDINATE_ARRAY_POINTER_EXT 0x8456 +#define GL_FOG_COORDINATE_ARRAY_EXT 0x8457 +typedef void (APIENTRYP PFNGLFOGCOORDFEXTPROC) (GLfloat coord); +typedef void (APIENTRYP PFNGLFOGCOORDFVEXTPROC) (const GLfloat *coord); +typedef void (APIENTRYP PFNGLFOGCOORDDEXTPROC) (GLdouble coord); +typedef void (APIENTRYP PFNGLFOGCOORDDVEXTPROC) (const GLdouble *coord); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTEREXTPROC) (GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFogCoordfEXT (GLfloat coord); +GLAPI void APIENTRY glFogCoordfvEXT (const GLfloat *coord); +GLAPI void APIENTRY glFogCoorddEXT (GLdouble coord); +GLAPI void APIENTRY glFogCoorddvEXT (const GLdouble *coord); +GLAPI void APIENTRY glFogCoordPointerEXT (GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_fog_coord */ + +#ifndef GL_EXT_framebuffer_blit +#define GL_EXT_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_EXT 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_EXT 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_EXT 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_EXT 0x8CAA +typedef void (APIENTRYP PFNGLBLITFRAMEBUFFEREXTPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlitFramebufferEXT (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_EXT_framebuffer_blit */ + +#ifndef GL_EXT_framebuffer_multisample +#define GL_EXT_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 +#define GL_MAX_SAMPLES_EXT 0x8D57 +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_EXT_framebuffer_multisample */ + +#ifndef GL_EXT_framebuffer_multisample_blit_scaled +#define GL_EXT_framebuffer_multisample_blit_scaled 1 +#define GL_SCALED_RESOLVE_FASTEST_EXT 0x90BA +#define GL_SCALED_RESOLVE_NICEST_EXT 0x90BB +#endif /* GL_EXT_framebuffer_multisample_blit_scaled */ + +#ifndef GL_EXT_framebuffer_object +#define GL_EXT_framebuffer_object 1 +#define GL_INVALID_FRAMEBUFFER_OPERATION_EXT 0x0506 +#define GL_MAX_RENDERBUFFER_SIZE_EXT 0x84E8 +#define GL_FRAMEBUFFER_BINDING_EXT 0x8CA6 +#define GL_RENDERBUFFER_BINDING_EXT 0x8CA7 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE_EXT 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT 0x8CD9 +#define GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT 0x8CDA +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED_EXT 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF +#define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 +#define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 +#define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 +#define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 +#define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 +#define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 +#define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 +#define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 +#define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 +#define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 +#define GL_COLOR_ATTACHMENT10_EXT 0x8CEA +#define GL_COLOR_ATTACHMENT11_EXT 0x8CEB +#define GL_COLOR_ATTACHMENT12_EXT 0x8CEC +#define GL_COLOR_ATTACHMENT13_EXT 0x8CED +#define GL_COLOR_ATTACHMENT14_EXT 0x8CEE +#define GL_COLOR_ATTACHMENT15_EXT 0x8CEF +#define GL_DEPTH_ATTACHMENT_EXT 0x8D00 +#define GL_STENCIL_ATTACHMENT_EXT 0x8D20 +#define GL_FRAMEBUFFER_EXT 0x8D40 +#define GL_RENDERBUFFER_EXT 0x8D41 +#define GL_RENDERBUFFER_WIDTH_EXT 0x8D42 +#define GL_RENDERBUFFER_HEIGHT_EXT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT_EXT 0x8D44 +#define GL_STENCIL_INDEX1_EXT 0x8D46 +#define GL_STENCIL_INDEX4_EXT 0x8D47 +#define GL_STENCIL_INDEX8_EXT 0x8D48 +#define GL_STENCIL_INDEX16_EXT 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE_EXT 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE_EXT 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE_EXT 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE_EXT 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE_EXT 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE_EXT 0x8D55 +typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFEREXTPROC) (GLuint renderbuffer); +typedef void (APIENTRYP PFNGLBINDRENDERBUFFEREXTPROC) (GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSEXTPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLGENRENDERBUFFERSEXTPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFEREXTPROC) (GLuint framebuffer); +typedef void (APIENTRYP PFNGLBINDFRAMEBUFFEREXTPROC) (GLenum target, GLuint framebuffer); +typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSEXTPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSEXTPROC) (GLsizei n, GLuint *framebuffers); +typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC) (GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFEREXTPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATEMIPMAPEXTPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glIsRenderbufferEXT (GLuint renderbuffer); +GLAPI void APIENTRY glBindRenderbufferEXT (GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glDeleteRenderbuffersEXT (GLsizei n, const GLuint *renderbuffers); +GLAPI void APIENTRY glGenRenderbuffersEXT (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glRenderbufferStorageEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetRenderbufferParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI GLboolean APIENTRY glIsFramebufferEXT (GLuint framebuffer); +GLAPI void APIENTRY glBindFramebufferEXT (GLenum target, GLuint framebuffer); +GLAPI void APIENTRY glDeleteFramebuffersEXT (GLsizei n, const GLuint *framebuffers); +GLAPI void APIENTRY glGenFramebuffersEXT (GLsizei n, GLuint *framebuffers); +GLAPI GLenum APIENTRY glCheckFramebufferStatusEXT (GLenum target); +GLAPI void APIENTRY glFramebufferTexture1DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture2DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture3DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glFramebufferRenderbufferEXT (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetFramebufferAttachmentParameterivEXT (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateMipmapEXT (GLenum target); +#endif +#endif /* GL_EXT_framebuffer_object */ + +#ifndef GL_EXT_framebuffer_sRGB +#define GL_EXT_framebuffer_sRGB 1 +#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 +#define GL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x8DBA +#endif /* GL_EXT_framebuffer_sRGB */ + +#ifndef GL_EXT_geometry_shader4 +#define GL_EXT_geometry_shader4 1 +#define GL_GEOMETRY_SHADER_EXT 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT_EXT 0x8DDA +#define GL_GEOMETRY_INPUT_TYPE_EXT 0x8DDB +#define GL_GEOMETRY_OUTPUT_TYPE_EXT 0x8DDC +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29 +#define GL_MAX_GEOMETRY_VARYING_COMPONENTS_EXT 0x8DDD +#define GL_MAX_VERTEX_VARYING_COMPONENTS_EXT 0x8DDE +#define GL_MAX_VARYING_COMPONENTS_EXT 0x8B4B +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1 +#define GL_LINES_ADJACENCY_EXT 0x000A +#define GL_LINE_STRIP_ADJACENCY_EXT 0x000B +#define GL_TRIANGLES_ADJACENCY_EXT 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0x000D +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT 0x8DA9 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT 0x8CD4 +#define GL_PROGRAM_POINT_SIZE_EXT 0x8642 +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value); +#endif +#endif /* GL_EXT_geometry_shader4 */ + +#ifndef GL_EXT_gpu_program_parameters +#define GL_EXT_gpu_program_parameters 1 +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramEnvParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glProgramLocalParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +#endif +#endif /* GL_EXT_gpu_program_parameters */ + +#ifndef GL_EXT_gpu_shader4 +#define GL_EXT_gpu_shader4 1 +#define GL_SAMPLER_1D_ARRAY_EXT 0x8DC0 +#define GL_SAMPLER_2D_ARRAY_EXT 0x8DC1 +#define GL_SAMPLER_BUFFER_EXT 0x8DC2 +#define GL_SAMPLER_1D_ARRAY_SHADOW_EXT 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW_EXT 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW_EXT 0x8DC5 +#define GL_UNSIGNED_INT_VEC2_EXT 0x8DC6 +#define GL_UNSIGNED_INT_VEC3_EXT 0x8DC7 +#define GL_UNSIGNED_INT_VEC4_EXT 0x8DC8 +#define GL_INT_SAMPLER_1D_EXT 0x8DC9 +#define GL_INT_SAMPLER_2D_EXT 0x8DCA +#define GL_INT_SAMPLER_3D_EXT 0x8DCB +#define GL_INT_SAMPLER_CUBE_EXT 0x8DCC +#define GL_INT_SAMPLER_2D_RECT_EXT 0x8DCD +#define GL_INT_SAMPLER_1D_ARRAY_EXT 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY_EXT 0x8DCF +#define GL_INT_SAMPLER_BUFFER_EXT 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_1D_EXT 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D_EXT 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D_EXT 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE_EXT 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT_EXT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT 0x8DD7 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT 0x8DD8 +#define GL_MIN_PROGRAM_TEXEL_OFFSET_EXT 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET_EXT 0x8905 +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT 0x88FD +typedef void (APIENTRYP PFNGLGETUNIFORMUIVEXTPROC) (GLuint program, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONEXTPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONEXTPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORM1UIEXTPROC) (GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLUNIFORM2UIEXTPROC) (GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLUNIFORM3UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLUNIFORM4UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLUNIFORM1UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM2UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM3UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM4UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IEXTPROC) (GLuint index, GLint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IEXTPROC) (GLuint index, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IEXTPROC) (GLuint index, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IEXTPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIEXTPROC) (GLuint index, GLuint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIEXTPROC) (GLuint index, GLuint x, GLuint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVEXTPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVEXTPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVEXTPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVEXTPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVEXTPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVEXTPROC) (GLuint index, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetUniformuivEXT (GLuint program, GLint location, GLuint *params); +GLAPI void APIENTRY glBindFragDataLocationEXT (GLuint program, GLuint color, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataLocationEXT (GLuint program, const GLchar *name); +GLAPI void APIENTRY glUniform1uiEXT (GLint location, GLuint v0); +GLAPI void APIENTRY glUniform2uiEXT (GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glUniform3uiEXT (GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glUniform4uiEXT (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glUniform1uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform2uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform3uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform4uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glVertexAttribI1iEXT (GLuint index, GLint x); +GLAPI void APIENTRY glVertexAttribI2iEXT (GLuint index, GLint x, GLint y); +GLAPI void APIENTRY glVertexAttribI3iEXT (GLuint index, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexAttribI4iEXT (GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexAttribI1uiEXT (GLuint index, GLuint x); +GLAPI void APIENTRY glVertexAttribI2uiEXT (GLuint index, GLuint x, GLuint y); +GLAPI void APIENTRY glVertexAttribI3uiEXT (GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI void APIENTRY glVertexAttribI4uiEXT (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glVertexAttribI1ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI2ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI3ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI4ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI1uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI2uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI3uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4bvEXT (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttribI4svEXT (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttribI4ubvEXT (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribI4usvEXT (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribIPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribIivEXT (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribIuivEXT (GLuint index, GLenum pname, GLuint *params); +#endif +#endif /* GL_EXT_gpu_shader4 */ + +#ifndef GL_EXT_histogram +#define GL_EXT_histogram 1 +#define GL_HISTOGRAM_EXT 0x8024 +#define GL_PROXY_HISTOGRAM_EXT 0x8025 +#define GL_HISTOGRAM_WIDTH_EXT 0x8026 +#define GL_HISTOGRAM_FORMAT_EXT 0x8027 +#define GL_HISTOGRAM_RED_SIZE_EXT 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE_EXT 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE_EXT 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE_EXT 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE_EXT 0x802C +#define GL_HISTOGRAM_SINK_EXT 0x802D +#define GL_MINMAX_EXT 0x802E +#define GL_MINMAX_FORMAT_EXT 0x802F +#define GL_MINMAX_SINK_EXT 0x8030 +#define GL_TABLE_TOO_LARGE_EXT 0x8031 +typedef void (APIENTRYP PFNGLGETHISTOGRAMEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMINMAXEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLHISTOGRAMEXTPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLMINMAXEXTPROC) (GLenum target, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLRESETHISTOGRAMEXTPROC) (GLenum target); +typedef void (APIENTRYP PFNGLRESETMINMAXEXTPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetHistogramEXT (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetHistogramParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetHistogramParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMinmaxEXT (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetMinmaxParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMinmaxParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glHistogramEXT (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glMinmaxEXT (GLenum target, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glResetHistogramEXT (GLenum target); +GLAPI void APIENTRY glResetMinmaxEXT (GLenum target); +#endif +#endif /* GL_EXT_histogram */ + +#ifndef GL_EXT_index_array_formats +#define GL_EXT_index_array_formats 1 +#define GL_IUI_V2F_EXT 0x81AD +#define GL_IUI_V3F_EXT 0x81AE +#define GL_IUI_N3F_V2F_EXT 0x81AF +#define GL_IUI_N3F_V3F_EXT 0x81B0 +#define GL_T2F_IUI_V2F_EXT 0x81B1 +#define GL_T2F_IUI_V3F_EXT 0x81B2 +#define GL_T2F_IUI_N3F_V2F_EXT 0x81B3 +#define GL_T2F_IUI_N3F_V3F_EXT 0x81B4 +#endif /* GL_EXT_index_array_formats */ + +#ifndef GL_EXT_index_func +#define GL_EXT_index_func 1 +#define GL_INDEX_TEST_EXT 0x81B5 +#define GL_INDEX_TEST_FUNC_EXT 0x81B6 +#define GL_INDEX_TEST_REF_EXT 0x81B7 +typedef void (APIENTRYP PFNGLINDEXFUNCEXTPROC) (GLenum func, GLclampf ref); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIndexFuncEXT (GLenum func, GLclampf ref); +#endif +#endif /* GL_EXT_index_func */ + +#ifndef GL_EXT_index_material +#define GL_EXT_index_material 1 +#define GL_INDEX_MATERIAL_EXT 0x81B8 +#define GL_INDEX_MATERIAL_PARAMETER_EXT 0x81B9 +#define GL_INDEX_MATERIAL_FACE_EXT 0x81BA +typedef void (APIENTRYP PFNGLINDEXMATERIALEXTPROC) (GLenum face, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIndexMaterialEXT (GLenum face, GLenum mode); +#endif +#endif /* GL_EXT_index_material */ + +#ifndef GL_EXT_index_texture +#define GL_EXT_index_texture 1 +#endif /* GL_EXT_index_texture */ + +#ifndef GL_EXT_light_texture +#define GL_EXT_light_texture 1 +#define GL_FRAGMENT_MATERIAL_EXT 0x8349 +#define GL_FRAGMENT_NORMAL_EXT 0x834A +#define GL_FRAGMENT_COLOR_EXT 0x834C +#define GL_ATTENUATION_EXT 0x834D +#define GL_SHADOW_ATTENUATION_EXT 0x834E +#define GL_TEXTURE_APPLICATION_MODE_EXT 0x834F +#define GL_TEXTURE_LIGHT_EXT 0x8350 +#define GL_TEXTURE_MATERIAL_FACE_EXT 0x8351 +#define GL_TEXTURE_MATERIAL_PARAMETER_EXT 0x8352 +typedef void (APIENTRYP PFNGLAPPLYTEXTUREEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLTEXTURELIGHTEXTPROC) (GLenum pname); +typedef void (APIENTRYP PFNGLTEXTUREMATERIALEXTPROC) (GLenum face, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glApplyTextureEXT (GLenum mode); +GLAPI void APIENTRY glTextureLightEXT (GLenum pname); +GLAPI void APIENTRY glTextureMaterialEXT (GLenum face, GLenum mode); +#endif +#endif /* GL_EXT_light_texture */ + +#ifndef GL_EXT_memory_object +#define GL_EXT_memory_object 1 +#define GL_TEXTURE_TILING_EXT 0x9580 +#define GL_DEDICATED_MEMORY_OBJECT_EXT 0x9581 +#define GL_PROTECTED_MEMORY_OBJECT_EXT 0x959B +#define GL_NUM_TILING_TYPES_EXT 0x9582 +#define GL_TILING_TYPES_EXT 0x9583 +#define GL_OPTIMAL_TILING_EXT 0x9584 +#define GL_LINEAR_TILING_EXT 0x9585 +#define GL_NUM_DEVICE_UUIDS_EXT 0x9596 +#define GL_DEVICE_UUID_EXT 0x9597 +#define GL_DRIVER_UUID_EXT 0x9598 +#define GL_UUID_SIZE_EXT 16 +typedef void (APIENTRYP PFNGLGETUNSIGNEDBYTEVEXTPROC) (GLenum pname, GLubyte *data); +typedef void (APIENTRYP PFNGLGETUNSIGNEDBYTEI_VEXTPROC) (GLenum target, GLuint index, GLubyte *data); +typedef void (APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); +typedef GLboolean (APIENTRYP PFNGLISMEMORYOBJECTEXTPROC) (GLuint memoryObject); +typedef void (APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); +typedef void (APIENTRYP PFNGLMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM2DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM3DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLBUFFERSTORAGEMEMEXTPROC) (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM2DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM2DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM3DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM3DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEMEMEXTPROC) (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM1DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetUnsignedBytevEXT (GLenum pname, GLubyte *data); +GLAPI void APIENTRY glGetUnsignedBytei_vEXT (GLenum target, GLuint index, GLubyte *data); +GLAPI void APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); +GLAPI GLboolean APIENTRY glIsMemoryObjectEXT (GLuint memoryObject); +GLAPI void APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects); +GLAPI void APIENTRY glMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, GLint *params); +GLAPI void APIENTRY glTexStorageMem2DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem2DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem3DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem3DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glBufferStorageMemEXT (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem2DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem2DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem3DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem3DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glNamedBufferStorageMemEXT (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem1DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem1DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_EXT_memory_object */ + +#ifndef GL_EXT_memory_object_fd +#define GL_EXT_memory_object_fd 1 +#define GL_HANDLE_TYPE_OPAQUE_FD_EXT 0x9586 +typedef void (APIENTRYP PFNGLIMPORTMEMORYFDEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportMemoryFdEXT (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_memory_object_fd */ + +#ifndef GL_EXT_memory_object_win32 +#define GL_EXT_memory_object_win32 1 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_EXT 0x9587 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_KMT_EXT 0x9588 +#define GL_DEVICE_LUID_EXT 0x9599 +#define GL_DEVICE_NODE_MASK_EXT 0x959A +#define GL_LUID_SIZE_EXT 8 +#define GL_HANDLE_TYPE_D3D12_TILEPOOL_EXT 0x9589 +#define GL_HANDLE_TYPE_D3D12_RESOURCE_EXT 0x958A +#define GL_HANDLE_TYPE_D3D11_IMAGE_EXT 0x958B +#define GL_HANDLE_TYPE_D3D11_IMAGE_KMT_EXT 0x958C +typedef void (APIENTRYP PFNGLIMPORTMEMORYWIN32HANDLEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +typedef void (APIENTRYP PFNGLIMPORTMEMORYWIN32NAMEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportMemoryWin32HandleEXT (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +GLAPI void APIENTRY glImportMemoryWin32NameEXT (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_memory_object_win32 */ + +#ifndef GL_EXT_misc_attribute +#define GL_EXT_misc_attribute 1 +#endif /* GL_EXT_misc_attribute */ + +#ifndef GL_EXT_multi_draw_arrays +#define GL_EXT_multi_draw_arrays 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysEXT (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GLAPI void APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#endif +#endif /* GL_EXT_multi_draw_arrays */ + +#ifndef GL_EXT_multisample +#define GL_EXT_multisample 1 +#define GL_MULTISAMPLE_EXT 0x809D +#define GL_SAMPLE_ALPHA_TO_MASK_EXT 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F +#define GL_SAMPLE_MASK_EXT 0x80A0 +#define GL_1PASS_EXT 0x80A1 +#define GL_2PASS_0_EXT 0x80A2 +#define GL_2PASS_1_EXT 0x80A3 +#define GL_4PASS_0_EXT 0x80A4 +#define GL_4PASS_1_EXT 0x80A5 +#define GL_4PASS_2_EXT 0x80A6 +#define GL_4PASS_3_EXT 0x80A7 +#define GL_SAMPLE_BUFFERS_EXT 0x80A8 +#define GL_SAMPLES_EXT 0x80A9 +#define GL_SAMPLE_MASK_VALUE_EXT 0x80AA +#define GL_SAMPLE_MASK_INVERT_EXT 0x80AB +#define GL_SAMPLE_PATTERN_EXT 0x80AC +#define GL_MULTISAMPLE_BIT_EXT 0x20000000 +typedef void (APIENTRYP PFNGLSAMPLEMASKEXTPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLSAMPLEPATTERNEXTPROC) (GLenum pattern); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleMaskEXT (GLclampf value, GLboolean invert); +GLAPI void APIENTRY glSamplePatternEXT (GLenum pattern); +#endif +#endif /* GL_EXT_multisample */ + +#ifndef GL_EXT_multiview_tessellation_geometry_shader +#define GL_EXT_multiview_tessellation_geometry_shader 1 +#endif /* GL_EXT_multiview_tessellation_geometry_shader */ + +#ifndef GL_EXT_multiview_texture_multisample +#define GL_EXT_multiview_texture_multisample 1 +#endif /* GL_EXT_multiview_texture_multisample */ + +#ifndef GL_EXT_multiview_timer_query +#define GL_EXT_multiview_timer_query 1 +#endif /* GL_EXT_multiview_timer_query */ + +#ifndef GL_EXT_packed_depth_stencil +#define GL_EXT_packed_depth_stencil 1 +#define GL_DEPTH_STENCIL_EXT 0x84F9 +#define GL_UNSIGNED_INT_24_8_EXT 0x84FA +#define GL_DEPTH24_STENCIL8_EXT 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE_EXT 0x88F1 +#endif /* GL_EXT_packed_depth_stencil */ + +#ifndef GL_EXT_packed_float +#define GL_EXT_packed_float 1 +#define GL_R11F_G11F_B10F_EXT 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV_EXT 0x8C3B +#define GL_RGBA_SIGNED_COMPONENTS_EXT 0x8C3C +#endif /* GL_EXT_packed_float */ + +#ifndef GL_EXT_packed_pixels +#define GL_EXT_packed_pixels 1 +#define GL_UNSIGNED_BYTE_3_3_2_EXT 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4_EXT 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1_EXT 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8_EXT 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2_EXT 0x8036 +#endif /* GL_EXT_packed_pixels */ + +#ifndef GL_EXT_paletted_texture +#define GL_EXT_paletted_texture 1 +#define GL_COLOR_INDEX1_EXT 0x80E2 +#define GL_COLOR_INDEX2_EXT 0x80E3 +#define GL_COLOR_INDEX4_EXT 0x80E4 +#define GL_COLOR_INDEX8_EXT 0x80E5 +#define GL_COLOR_INDEX12_EXT 0x80E6 +#define GL_COLOR_INDEX16_EXT 0x80E7 +#define GL_TEXTURE_INDEX_SIZE_EXT 0x80ED +typedef void (APIENTRYP PFNGLCOLORTABLEEXTPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEEXTPROC) (GLenum target, GLenum format, GLenum type, void *data); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTableEXT (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const void *table); +GLAPI void APIENTRY glGetColorTableEXT (GLenum target, GLenum format, GLenum type, void *data); +GLAPI void APIENTRY glGetColorTableParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetColorTableParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +#endif +#endif /* GL_EXT_paletted_texture */ + +#ifndef GL_EXT_pixel_buffer_object +#define GL_EXT_pixel_buffer_object 1 +#define GL_PIXEL_PACK_BUFFER_EXT 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_EXT 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_EXT 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_EXT 0x88EF +#endif /* GL_EXT_pixel_buffer_object */ + +#ifndef GL_EXT_pixel_transform +#define GL_EXT_pixel_transform 1 +#define GL_PIXEL_TRANSFORM_2D_EXT 0x8330 +#define GL_PIXEL_MAG_FILTER_EXT 0x8331 +#define GL_PIXEL_MIN_FILTER_EXT 0x8332 +#define GL_PIXEL_CUBIC_WEIGHT_EXT 0x8333 +#define GL_CUBIC_EXT 0x8334 +#define GL_AVERAGE_EXT 0x8335 +#define GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8336 +#define GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8337 +#define GL_PIXEL_TRANSFORM_2D_MATRIX_EXT 0x8338 +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTransformParameteriEXT (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glPixelTransformParameterfEXT (GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glPixelTransformParameterivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glPixelTransformParameterfvEXT (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetPixelTransformParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetPixelTransformParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +#endif +#endif /* GL_EXT_pixel_transform */ + +#ifndef GL_EXT_pixel_transform_color_table +#define GL_EXT_pixel_transform_color_table 1 +#endif /* GL_EXT_pixel_transform_color_table */ + +#ifndef GL_EXT_point_parameters +#define GL_EXT_point_parameters 1 +#define GL_POINT_SIZE_MIN_EXT 0x8126 +#define GL_POINT_SIZE_MAX_EXT 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_EXT 0x8128 +#define GL_DISTANCE_ATTENUATION_EXT 0x8129 +typedef void (APIENTRYP PFNGLPOINTPARAMETERFEXTPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVEXTPROC) (GLenum pname, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfEXT (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvEXT (GLenum pname, const GLfloat *params); +#endif +#endif /* GL_EXT_point_parameters */ + +#ifndef GL_EXT_polygon_offset +#define GL_EXT_polygon_offset 1 +#define GL_POLYGON_OFFSET_EXT 0x8037 +#define GL_POLYGON_OFFSET_FACTOR_EXT 0x8038 +#define GL_POLYGON_OFFSET_BIAS_EXT 0x8039 +typedef void (APIENTRYP PFNGLPOLYGONOFFSETEXTPROC) (GLfloat factor, GLfloat bias); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPolygonOffsetEXT (GLfloat factor, GLfloat bias); +#endif +#endif /* GL_EXT_polygon_offset */ + +#ifndef GL_EXT_polygon_offset_clamp +#define GL_EXT_polygon_offset_clamp 1 +#define GL_POLYGON_OFFSET_CLAMP_EXT 0x8E1B +typedef void (APIENTRYP PFNGLPOLYGONOFFSETCLAMPEXTPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPolygonOffsetClampEXT (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_EXT_polygon_offset_clamp */ + +#ifndef GL_EXT_post_depth_coverage +#define GL_EXT_post_depth_coverage 1 +#endif /* GL_EXT_post_depth_coverage */ + +#ifndef GL_EXT_provoking_vertex +#define GL_EXT_provoking_vertex 1 +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E +#define GL_PROVOKING_VERTEX_EXT 0x8E4F +typedef void (APIENTRYP PFNGLPROVOKINGVERTEXEXTPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProvokingVertexEXT (GLenum mode); +#endif +#endif /* GL_EXT_provoking_vertex */ + +#ifndef GL_EXT_raster_multisample +#define GL_EXT_raster_multisample 1 +#define GL_RASTER_MULTISAMPLE_EXT 0x9327 +#define GL_RASTER_SAMPLES_EXT 0x9328 +#define GL_MAX_RASTER_SAMPLES_EXT 0x9329 +#define GL_RASTER_FIXED_SAMPLE_LOCATIONS_EXT 0x932A +#define GL_MULTISAMPLE_RASTERIZATION_ALLOWED_EXT 0x932B +#define GL_EFFECTIVE_RASTER_SAMPLES_EXT 0x932C +typedef void (APIENTRYP PFNGLRASTERSAMPLESEXTPROC) (GLuint samples, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRasterSamplesEXT (GLuint samples, GLboolean fixedsamplelocations); +#endif +#endif /* GL_EXT_raster_multisample */ + +#ifndef GL_EXT_rescale_normal +#define GL_EXT_rescale_normal 1 +#define GL_RESCALE_NORMAL_EXT 0x803A +#endif /* GL_EXT_rescale_normal */ + +#ifndef GL_EXT_secondary_color +#define GL_EXT_secondary_color 1 +#define GL_COLOR_SUM_EXT 0x8458 +#define GL_CURRENT_SECONDARY_COLOR_EXT 0x8459 +#define GL_SECONDARY_COLOR_ARRAY_SIZE_EXT 0x845A +#define GL_SECONDARY_COLOR_ARRAY_TYPE_EXT 0x845B +#define GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT 0x845C +#define GL_SECONDARY_COLOR_ARRAY_POINTER_EXT 0x845D +#define GL_SECONDARY_COLOR_ARRAY_EXT 0x845E +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BEXTPROC) (GLbyte red, GLbyte green, GLbyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DEXTPROC) (GLdouble red, GLdouble green, GLdouble blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FEXTPROC) (GLfloat red, GLfloat green, GLfloat blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IEXTPROC) (GLint red, GLint green, GLint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SEXTPROC) (GLshort red, GLshort green, GLshort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBEXTPROC) (GLubyte red, GLubyte green, GLubyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVEXTPROC) (const GLubyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIEXTPROC) (GLuint red, GLuint green, GLuint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVEXTPROC) (const GLuint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USEXTPROC) (GLushort red, GLushort green, GLushort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVEXTPROC) (const GLushort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSecondaryColor3bEXT (GLbyte red, GLbyte green, GLbyte blue); +GLAPI void APIENTRY glSecondaryColor3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glSecondaryColor3dEXT (GLdouble red, GLdouble green, GLdouble blue); +GLAPI void APIENTRY glSecondaryColor3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glSecondaryColor3fEXT (GLfloat red, GLfloat green, GLfloat blue); +GLAPI void APIENTRY glSecondaryColor3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glSecondaryColor3iEXT (GLint red, GLint green, GLint blue); +GLAPI void APIENTRY glSecondaryColor3ivEXT (const GLint *v); +GLAPI void APIENTRY glSecondaryColor3sEXT (GLshort red, GLshort green, GLshort blue); +GLAPI void APIENTRY glSecondaryColor3svEXT (const GLshort *v); +GLAPI void APIENTRY glSecondaryColor3ubEXT (GLubyte red, GLubyte green, GLubyte blue); +GLAPI void APIENTRY glSecondaryColor3ubvEXT (const GLubyte *v); +GLAPI void APIENTRY glSecondaryColor3uiEXT (GLuint red, GLuint green, GLuint blue); +GLAPI void APIENTRY glSecondaryColor3uivEXT (const GLuint *v); +GLAPI void APIENTRY glSecondaryColor3usEXT (GLushort red, GLushort green, GLushort blue); +GLAPI void APIENTRY glSecondaryColor3usvEXT (const GLushort *v); +GLAPI void APIENTRY glSecondaryColorPointerEXT (GLint size, GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_secondary_color */ + +#ifndef GL_EXT_semaphore +#define GL_EXT_semaphore 1 +#define GL_LAYOUT_GENERAL_EXT 0x958D +#define GL_LAYOUT_COLOR_ATTACHMENT_EXT 0x958E +#define GL_LAYOUT_DEPTH_STENCIL_ATTACHMENT_EXT 0x958F +#define GL_LAYOUT_DEPTH_STENCIL_READ_ONLY_EXT 0x9590 +#define GL_LAYOUT_SHADER_READ_ONLY_EXT 0x9591 +#define GL_LAYOUT_TRANSFER_SRC_EXT 0x9592 +#define GL_LAYOUT_TRANSFER_DST_EXT 0x9593 +#define GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT 0x9530 +#define GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT 0x9531 +typedef void (APIENTRYP PFNGLGENSEMAPHORESEXTPROC) (GLsizei n, GLuint *semaphores); +typedef void (APIENTRYP PFNGLDELETESEMAPHORESEXTPROC) (GLsizei n, const GLuint *semaphores); +typedef GLboolean (APIENTRYP PFNGLISSEMAPHOREEXTPROC) (GLuint semaphore); +typedef void (APIENTRYP PFNGLSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, const GLuint64 *params); +typedef void (APIENTRYP PFNGLGETSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, GLuint64 *params); +typedef void (APIENTRYP PFNGLWAITSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +typedef void (APIENTRYP PFNGLSIGNALSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenSemaphoresEXT (GLsizei n, GLuint *semaphores); +GLAPI void APIENTRY glDeleteSemaphoresEXT (GLsizei n, const GLuint *semaphores); +GLAPI GLboolean APIENTRY glIsSemaphoreEXT (GLuint semaphore); +GLAPI void APIENTRY glSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, const GLuint64 *params); +GLAPI void APIENTRY glGetSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, GLuint64 *params); +GLAPI void APIENTRY glWaitSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +GLAPI void APIENTRY glSignalSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#endif +#endif /* GL_EXT_semaphore */ + +#ifndef GL_EXT_semaphore_fd +#define GL_EXT_semaphore_fd 1 +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREFDEXTPROC) (GLuint semaphore, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportSemaphoreFdEXT (GLuint semaphore, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_semaphore_fd */ + +#ifndef GL_EXT_semaphore_win32 +#define GL_EXT_semaphore_win32 1 +#define GL_HANDLE_TYPE_D3D12_FENCE_EXT 0x9594 +#define GL_D3D12_FENCE_VALUE_EXT 0x9595 +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREWIN32HANDLEEXTPROC) (GLuint semaphore, GLenum handleType, void *handle); +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREWIN32NAMEEXTPROC) (GLuint semaphore, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportSemaphoreWin32HandleEXT (GLuint semaphore, GLenum handleType, void *handle); +GLAPI void APIENTRY glImportSemaphoreWin32NameEXT (GLuint semaphore, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_semaphore_win32 */ + +#ifndef GL_EXT_separate_shader_objects +#define GL_EXT_separate_shader_objects 1 +#define GL_ACTIVE_PROGRAM_EXT 0x8B8D +typedef void (APIENTRYP PFNGLUSESHADERPROGRAMEXTPROC) (GLenum type, GLuint program); +typedef void (APIENTRYP PFNGLACTIVEPROGRAMEXTPROC) (GLuint program); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMEXTPROC) (GLenum type, const GLchar *string); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUseShaderProgramEXT (GLenum type, GLuint program); +GLAPI void APIENTRY glActiveProgramEXT (GLuint program); +GLAPI GLuint APIENTRY glCreateShaderProgramEXT (GLenum type, const GLchar *string); +#endif +#endif /* GL_EXT_separate_shader_objects */ + +#ifndef GL_EXT_separate_specular_color +#define GL_EXT_separate_specular_color 1 +#define GL_LIGHT_MODEL_COLOR_CONTROL_EXT 0x81F8 +#define GL_SINGLE_COLOR_EXT 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR_EXT 0x81FA +#endif /* GL_EXT_separate_specular_color */ + +#ifndef GL_EXT_shader_framebuffer_fetch +#define GL_EXT_shader_framebuffer_fetch 1 +#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT 0x8A52 +#endif /* GL_EXT_shader_framebuffer_fetch */ + +#ifndef GL_EXT_shader_framebuffer_fetch_non_coherent +#define GL_EXT_shader_framebuffer_fetch_non_coherent 1 +typedef void (APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferFetchBarrierEXT (void); +#endif +#endif /* GL_EXT_shader_framebuffer_fetch_non_coherent */ + +#ifndef GL_EXT_shader_image_load_formatted +#define GL_EXT_shader_image_load_formatted 1 +#endif /* GL_EXT_shader_image_load_formatted */ + +#ifndef GL_EXT_shader_image_load_store +#define GL_EXT_shader_image_load_store 1 +#define GL_MAX_IMAGE_UNITS_EXT 0x8F38 +#define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS_EXT 0x8F39 +#define GL_IMAGE_BINDING_NAME_EXT 0x8F3A +#define GL_IMAGE_BINDING_LEVEL_EXT 0x8F3B +#define GL_IMAGE_BINDING_LAYERED_EXT 0x8F3C +#define GL_IMAGE_BINDING_LAYER_EXT 0x8F3D +#define GL_IMAGE_BINDING_ACCESS_EXT 0x8F3E +#define GL_IMAGE_1D_EXT 0x904C +#define GL_IMAGE_2D_EXT 0x904D +#define GL_IMAGE_3D_EXT 0x904E +#define GL_IMAGE_2D_RECT_EXT 0x904F +#define GL_IMAGE_CUBE_EXT 0x9050 +#define GL_IMAGE_BUFFER_EXT 0x9051 +#define GL_IMAGE_1D_ARRAY_EXT 0x9052 +#define GL_IMAGE_2D_ARRAY_EXT 0x9053 +#define GL_IMAGE_CUBE_MAP_ARRAY_EXT 0x9054 +#define GL_IMAGE_2D_MULTISAMPLE_EXT 0x9055 +#define GL_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9056 +#define GL_INT_IMAGE_1D_EXT 0x9057 +#define GL_INT_IMAGE_2D_EXT 0x9058 +#define GL_INT_IMAGE_3D_EXT 0x9059 +#define GL_INT_IMAGE_2D_RECT_EXT 0x905A +#define GL_INT_IMAGE_CUBE_EXT 0x905B +#define GL_INT_IMAGE_BUFFER_EXT 0x905C +#define GL_INT_IMAGE_1D_ARRAY_EXT 0x905D +#define GL_INT_IMAGE_2D_ARRAY_EXT 0x905E +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x905F +#define GL_INT_IMAGE_2D_MULTISAMPLE_EXT 0x9060 +#define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9061 +#define GL_UNSIGNED_INT_IMAGE_1D_EXT 0x9062 +#define GL_UNSIGNED_INT_IMAGE_2D_EXT 0x9063 +#define GL_UNSIGNED_INT_IMAGE_3D_EXT 0x9064 +#define GL_UNSIGNED_INT_IMAGE_2D_RECT_EXT 0x9065 +#define GL_UNSIGNED_INT_IMAGE_CUBE_EXT 0x9066 +#define GL_UNSIGNED_INT_IMAGE_BUFFER_EXT 0x9067 +#define GL_UNSIGNED_INT_IMAGE_1D_ARRAY_EXT 0x9068 +#define GL_UNSIGNED_INT_IMAGE_2D_ARRAY_EXT 0x9069 +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x906A +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_EXT 0x906B +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x906C +#define GL_MAX_IMAGE_SAMPLES_EXT 0x906D +#define GL_IMAGE_BINDING_FORMAT_EXT 0x906E +#define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT_EXT 0x00000001 +#define GL_ELEMENT_ARRAY_BARRIER_BIT_EXT 0x00000002 +#define GL_UNIFORM_BARRIER_BIT_EXT 0x00000004 +#define GL_TEXTURE_FETCH_BARRIER_BIT_EXT 0x00000008 +#define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT_EXT 0x00000020 +#define GL_COMMAND_BARRIER_BIT_EXT 0x00000040 +#define GL_PIXEL_BUFFER_BARRIER_BIT_EXT 0x00000080 +#define GL_TEXTURE_UPDATE_BARRIER_BIT_EXT 0x00000100 +#define GL_BUFFER_UPDATE_BARRIER_BIT_EXT 0x00000200 +#define GL_FRAMEBUFFER_BARRIER_BIT_EXT 0x00000400 +#define GL_TRANSFORM_FEEDBACK_BARRIER_BIT_EXT 0x00000800 +#define GL_ATOMIC_COUNTER_BARRIER_BIT_EXT 0x00001000 +#define GL_ALL_BARRIER_BITS_EXT 0xFFFFFFFF +typedef void (APIENTRYP PFNGLBINDIMAGETEXTUREEXTPROC) (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format); +typedef void (APIENTRYP PFNGLMEMORYBARRIEREXTPROC) (GLbitfield barriers); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindImageTextureEXT (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format); +GLAPI void APIENTRY glMemoryBarrierEXT (GLbitfield barriers); +#endif +#endif /* GL_EXT_shader_image_load_store */ + +#ifndef GL_EXT_shader_integer_mix +#define GL_EXT_shader_integer_mix 1 +#endif /* GL_EXT_shader_integer_mix */ + +#ifndef GL_EXT_shader_samples_identical +#define GL_EXT_shader_samples_identical 1 +#endif /* GL_EXT_shader_samples_identical */ + +#ifndef GL_EXT_shadow_funcs +#define GL_EXT_shadow_funcs 1 +#endif /* GL_EXT_shadow_funcs */ + +#ifndef GL_EXT_shared_texture_palette +#define GL_EXT_shared_texture_palette 1 +#define GL_SHARED_TEXTURE_PALETTE_EXT 0x81FB +#endif /* GL_EXT_shared_texture_palette */ + +#ifndef GL_EXT_sparse_texture2 +#define GL_EXT_sparse_texture2 1 +#endif /* GL_EXT_sparse_texture2 */ + +#ifndef GL_EXT_stencil_clear_tag +#define GL_EXT_stencil_clear_tag 1 +#define GL_STENCIL_TAG_BITS_EXT 0x88F2 +#define GL_STENCIL_CLEAR_TAG_VALUE_EXT 0x88F3 +typedef void (APIENTRYP PFNGLSTENCILCLEARTAGEXTPROC) (GLsizei stencilTagBits, GLuint stencilClearTag); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilClearTagEXT (GLsizei stencilTagBits, GLuint stencilClearTag); +#endif +#endif /* GL_EXT_stencil_clear_tag */ + +#ifndef GL_EXT_stencil_two_side +#define GL_EXT_stencil_two_side 1 +#define GL_STENCIL_TEST_TWO_SIDE_EXT 0x8910 +#define GL_ACTIVE_STENCIL_FACE_EXT 0x8911 +typedef void (APIENTRYP PFNGLACTIVESTENCILFACEEXTPROC) (GLenum face); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveStencilFaceEXT (GLenum face); +#endif +#endif /* GL_EXT_stencil_two_side */ + +#ifndef GL_EXT_stencil_wrap +#define GL_EXT_stencil_wrap 1 +#define GL_INCR_WRAP_EXT 0x8507 +#define GL_DECR_WRAP_EXT 0x8508 +#endif /* GL_EXT_stencil_wrap */ + +#ifndef GL_EXT_subtexture +#define GL_EXT_subtexture 1 +typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage2DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +#endif +#endif /* GL_EXT_subtexture */ + +#ifndef GL_EXT_texture +#define GL_EXT_texture 1 +#define GL_ALPHA4_EXT 0x803B +#define GL_ALPHA8_EXT 0x803C +#define GL_ALPHA12_EXT 0x803D +#define GL_ALPHA16_EXT 0x803E +#define GL_LUMINANCE4_EXT 0x803F +#define GL_LUMINANCE8_EXT 0x8040 +#define GL_LUMINANCE12_EXT 0x8041 +#define GL_LUMINANCE16_EXT 0x8042 +#define GL_LUMINANCE4_ALPHA4_EXT 0x8043 +#define GL_LUMINANCE6_ALPHA2_EXT 0x8044 +#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 +#define GL_LUMINANCE12_ALPHA4_EXT 0x8046 +#define GL_LUMINANCE12_ALPHA12_EXT 0x8047 +#define GL_LUMINANCE16_ALPHA16_EXT 0x8048 +#define GL_INTENSITY_EXT 0x8049 +#define GL_INTENSITY4_EXT 0x804A +#define GL_INTENSITY8_EXT 0x804B +#define GL_INTENSITY12_EXT 0x804C +#define GL_INTENSITY16_EXT 0x804D +#define GL_RGB2_EXT 0x804E +#define GL_RGB4_EXT 0x804F +#define GL_RGB5_EXT 0x8050 +#define GL_RGB8_EXT 0x8051 +#define GL_RGB10_EXT 0x8052 +#define GL_RGB12_EXT 0x8053 +#define GL_RGB16_EXT 0x8054 +#define GL_RGBA2_EXT 0x8055 +#define GL_RGBA4_EXT 0x8056 +#define GL_RGB5_A1_EXT 0x8057 +#define GL_RGBA8_EXT 0x8058 +#define GL_RGB10_A2_EXT 0x8059 +#define GL_RGBA12_EXT 0x805A +#define GL_RGBA16_EXT 0x805B +#define GL_TEXTURE_RED_SIZE_EXT 0x805C +#define GL_TEXTURE_GREEN_SIZE_EXT 0x805D +#define GL_TEXTURE_BLUE_SIZE_EXT 0x805E +#define GL_TEXTURE_ALPHA_SIZE_EXT 0x805F +#define GL_TEXTURE_LUMINANCE_SIZE_EXT 0x8060 +#define GL_TEXTURE_INTENSITY_SIZE_EXT 0x8061 +#define GL_REPLACE_EXT 0x8062 +#define GL_PROXY_TEXTURE_1D_EXT 0x8063 +#define GL_PROXY_TEXTURE_2D_EXT 0x8064 +#define GL_TEXTURE_TOO_LARGE_EXT 0x8065 +#endif /* GL_EXT_texture */ + +#ifndef GL_EXT_texture3D +#define GL_EXT_texture3D 1 +#define GL_PACK_SKIP_IMAGES_EXT 0x806B +#define GL_PACK_IMAGE_HEIGHT_EXT 0x806C +#define GL_UNPACK_SKIP_IMAGES_EXT 0x806D +#define GL_UNPACK_IMAGE_HEIGHT_EXT 0x806E +#define GL_TEXTURE_3D_EXT 0x806F +#define GL_PROXY_TEXTURE_3D_EXT 0x8070 +#define GL_TEXTURE_DEPTH_EXT 0x8071 +#define GL_TEXTURE_WRAP_R_EXT 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE_EXT 0x8073 +typedef void (APIENTRYP PFNGLTEXIMAGE3DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage3DEXT (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage3DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +#endif +#endif /* GL_EXT_texture3D */ + +#ifndef GL_EXT_texture_array +#define GL_EXT_texture_array 1 +#define GL_TEXTURE_1D_ARRAY_EXT 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY_EXT 0x8C19 +#define GL_TEXTURE_2D_ARRAY_EXT 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY_EXT 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY_EXT 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY_EXT 0x8C1D +#define GL_MAX_ARRAY_TEXTURE_LAYERS_EXT 0x88FF +#define GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT 0x884E +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYEREXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferTextureLayerEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +#endif +#endif /* GL_EXT_texture_array */ + +#ifndef GL_EXT_texture_buffer_object +#define GL_EXT_texture_buffer_object 1 +#define GL_TEXTURE_BUFFER_EXT 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT_EXT 0x8C2E +typedef void (APIENTRYP PFNGLTEXBUFFEREXTPROC) (GLenum target, GLenum internalformat, GLuint buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBufferEXT (GLenum target, GLenum internalformat, GLuint buffer); +#endif +#endif /* GL_EXT_texture_buffer_object */ + +#ifndef GL_EXT_texture_compression_latc +#define GL_EXT_texture_compression_latc 1 +#define GL_COMPRESSED_LUMINANCE_LATC1_EXT 0x8C70 +#define GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT 0x8C71 +#define GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT 0x8C72 +#define GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT 0x8C73 +#endif /* GL_EXT_texture_compression_latc */ + +#ifndef GL_EXT_texture_compression_rgtc +#define GL_EXT_texture_compression_rgtc 1 +#define GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC +#define GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD +#define GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE +#endif /* GL_EXT_texture_compression_rgtc */ + +#ifndef GL_EXT_texture_compression_s3tc +#define GL_EXT_texture_compression_s3tc 1 +#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 +#endif /* GL_EXT_texture_compression_s3tc */ + +#ifndef GL_EXT_texture_cube_map +#define GL_EXT_texture_cube_map 1 +#define GL_NORMAL_MAP_EXT 0x8511 +#define GL_REFLECTION_MAP_EXT 0x8512 +#define GL_TEXTURE_CUBE_MAP_EXT 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP_EXT 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP_EXT 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT 0x851C +#endif /* GL_EXT_texture_cube_map */ + +#ifndef GL_EXT_texture_env_add +#define GL_EXT_texture_env_add 1 +#endif /* GL_EXT_texture_env_add */ + +#ifndef GL_EXT_texture_env_combine +#define GL_EXT_texture_env_combine 1 +#define GL_COMBINE_EXT 0x8570 +#define GL_COMBINE_RGB_EXT 0x8571 +#define GL_COMBINE_ALPHA_EXT 0x8572 +#define GL_RGB_SCALE_EXT 0x8573 +#define GL_ADD_SIGNED_EXT 0x8574 +#define GL_INTERPOLATE_EXT 0x8575 +#define GL_CONSTANT_EXT 0x8576 +#define GL_PRIMARY_COLOR_EXT 0x8577 +#define GL_PREVIOUS_EXT 0x8578 +#define GL_SOURCE0_RGB_EXT 0x8580 +#define GL_SOURCE1_RGB_EXT 0x8581 +#define GL_SOURCE2_RGB_EXT 0x8582 +#define GL_SOURCE0_ALPHA_EXT 0x8588 +#define GL_SOURCE1_ALPHA_EXT 0x8589 +#define GL_SOURCE2_ALPHA_EXT 0x858A +#define GL_OPERAND0_RGB_EXT 0x8590 +#define GL_OPERAND1_RGB_EXT 0x8591 +#define GL_OPERAND2_RGB_EXT 0x8592 +#define GL_OPERAND0_ALPHA_EXT 0x8598 +#define GL_OPERAND1_ALPHA_EXT 0x8599 +#define GL_OPERAND2_ALPHA_EXT 0x859A +#endif /* GL_EXT_texture_env_combine */ + +#ifndef GL_EXT_texture_env_dot3 +#define GL_EXT_texture_env_dot3 1 +#define GL_DOT3_RGB_EXT 0x8740 +#define GL_DOT3_RGBA_EXT 0x8741 +#endif /* GL_EXT_texture_env_dot3 */ + +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_EXT_texture_filter_anisotropic 1 +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF +#endif /* GL_EXT_texture_filter_anisotropic */ + +#ifndef GL_EXT_texture_filter_minmax +#define GL_EXT_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_EXT 0x9366 +#define GL_WEIGHTED_AVERAGE_EXT 0x9367 +#endif /* GL_EXT_texture_filter_minmax */ + +#ifndef GL_EXT_texture_integer +#define GL_EXT_texture_integer 1 +#define GL_RGBA32UI_EXT 0x8D70 +#define GL_RGB32UI_EXT 0x8D71 +#define GL_ALPHA32UI_EXT 0x8D72 +#define GL_INTENSITY32UI_EXT 0x8D73 +#define GL_LUMINANCE32UI_EXT 0x8D74 +#define GL_LUMINANCE_ALPHA32UI_EXT 0x8D75 +#define GL_RGBA16UI_EXT 0x8D76 +#define GL_RGB16UI_EXT 0x8D77 +#define GL_ALPHA16UI_EXT 0x8D78 +#define GL_INTENSITY16UI_EXT 0x8D79 +#define GL_LUMINANCE16UI_EXT 0x8D7A +#define GL_LUMINANCE_ALPHA16UI_EXT 0x8D7B +#define GL_RGBA8UI_EXT 0x8D7C +#define GL_RGB8UI_EXT 0x8D7D +#define GL_ALPHA8UI_EXT 0x8D7E +#define GL_INTENSITY8UI_EXT 0x8D7F +#define GL_LUMINANCE8UI_EXT 0x8D80 +#define GL_LUMINANCE_ALPHA8UI_EXT 0x8D81 +#define GL_RGBA32I_EXT 0x8D82 +#define GL_RGB32I_EXT 0x8D83 +#define GL_ALPHA32I_EXT 0x8D84 +#define GL_INTENSITY32I_EXT 0x8D85 +#define GL_LUMINANCE32I_EXT 0x8D86 +#define GL_LUMINANCE_ALPHA32I_EXT 0x8D87 +#define GL_RGBA16I_EXT 0x8D88 +#define GL_RGB16I_EXT 0x8D89 +#define GL_ALPHA16I_EXT 0x8D8A +#define GL_INTENSITY16I_EXT 0x8D8B +#define GL_LUMINANCE16I_EXT 0x8D8C +#define GL_LUMINANCE_ALPHA16I_EXT 0x8D8D +#define GL_RGBA8I_EXT 0x8D8E +#define GL_RGB8I_EXT 0x8D8F +#define GL_ALPHA8I_EXT 0x8D90 +#define GL_INTENSITY8I_EXT 0x8D91 +#define GL_LUMINANCE8I_EXT 0x8D92 +#define GL_LUMINANCE_ALPHA8I_EXT 0x8D93 +#define GL_RED_INTEGER_EXT 0x8D94 +#define GL_GREEN_INTEGER_EXT 0x8D95 +#define GL_BLUE_INTEGER_EXT 0x8D96 +#define GL_ALPHA_INTEGER_EXT 0x8D97 +#define GL_RGB_INTEGER_EXT 0x8D98 +#define GL_RGBA_INTEGER_EXT 0x8D99 +#define GL_BGR_INTEGER_EXT 0x8D9A +#define GL_BGRA_INTEGER_EXT 0x8D9B +#define GL_LUMINANCE_INTEGER_EXT 0x8D9C +#define GL_LUMINANCE_ALPHA_INTEGER_EXT 0x8D9D +#define GL_RGBA_INTEGER_MODE_EXT 0x8D9E +typedef void (APIENTRYP PFNGLTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLCLEARCOLORIIEXTPROC) (GLint red, GLint green, GLint blue, GLint alpha); +typedef void (APIENTRYP PFNGLCLEARCOLORIUIEXTPROC) (GLuint red, GLuint green, GLuint blue, GLuint alpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexParameterIivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTexParameterIuivEXT (GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTexParameterIivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTexParameterIuivEXT (GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glClearColorIiEXT (GLint red, GLint green, GLint blue, GLint alpha); +GLAPI void APIENTRY glClearColorIuiEXT (GLuint red, GLuint green, GLuint blue, GLuint alpha); +#endif +#endif /* GL_EXT_texture_integer */ + +#ifndef GL_EXT_texture_lod_bias +#define GL_EXT_texture_lod_bias 1 +#define GL_MAX_TEXTURE_LOD_BIAS_EXT 0x84FD +#define GL_TEXTURE_FILTER_CONTROL_EXT 0x8500 +#define GL_TEXTURE_LOD_BIAS_EXT 0x8501 +#endif /* GL_EXT_texture_lod_bias */ + +#ifndef GL_EXT_texture_mirror_clamp +#define GL_EXT_texture_mirror_clamp 1 +#define GL_MIRROR_CLAMP_EXT 0x8742 +#define GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 +#define GL_MIRROR_CLAMP_TO_BORDER_EXT 0x8912 +#endif /* GL_EXT_texture_mirror_clamp */ + +#ifndef GL_EXT_texture_object +#define GL_EXT_texture_object 1 +#define GL_TEXTURE_PRIORITY_EXT 0x8066 +#define GL_TEXTURE_RESIDENT_EXT 0x8067 +#define GL_TEXTURE_1D_BINDING_EXT 0x8068 +#define GL_TEXTURE_2D_BINDING_EXT 0x8069 +#define GL_TEXTURE_3D_BINDING_EXT 0x806A +typedef GLboolean (APIENTRYP PFNGLARETEXTURESRESIDENTEXTPROC) (GLsizei n, const GLuint *textures, GLboolean *residences); +typedef void (APIENTRYP PFNGLBINDTEXTUREEXTPROC) (GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLDELETETEXTURESEXTPROC) (GLsizei n, const GLuint *textures); +typedef void (APIENTRYP PFNGLGENTEXTURESEXTPROC) (GLsizei n, GLuint *textures); +typedef GLboolean (APIENTRYP PFNGLISTEXTUREEXTPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESEXTPROC) (GLsizei n, const GLuint *textures, const GLclampf *priorities); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAreTexturesResidentEXT (GLsizei n, const GLuint *textures, GLboolean *residences); +GLAPI void APIENTRY glBindTextureEXT (GLenum target, GLuint texture); +GLAPI void APIENTRY glDeleteTexturesEXT (GLsizei n, const GLuint *textures); +GLAPI void APIENTRY glGenTexturesEXT (GLsizei n, GLuint *textures); +GLAPI GLboolean APIENTRY glIsTextureEXT (GLuint texture); +GLAPI void APIENTRY glPrioritizeTexturesEXT (GLsizei n, const GLuint *textures, const GLclampf *priorities); +#endif +#endif /* GL_EXT_texture_object */ + +#ifndef GL_EXT_texture_perturb_normal +#define GL_EXT_texture_perturb_normal 1 +#define GL_PERTURB_EXT 0x85AE +#define GL_TEXTURE_NORMAL_EXT 0x85AF +typedef void (APIENTRYP PFNGLTEXTURENORMALEXTPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureNormalEXT (GLenum mode); +#endif +#endif /* GL_EXT_texture_perturb_normal */ + +#ifndef GL_EXT_texture_sRGB +#define GL_EXT_texture_sRGB 1 +#define GL_SRGB_EXT 0x8C40 +#define GL_SRGB8_EXT 0x8C41 +#define GL_SRGB_ALPHA_EXT 0x8C42 +#define GL_SRGB8_ALPHA8_EXT 0x8C43 +#define GL_SLUMINANCE_ALPHA_EXT 0x8C44 +#define GL_SLUMINANCE8_ALPHA8_EXT 0x8C45 +#define GL_SLUMINANCE_EXT 0x8C46 +#define GL_SLUMINANCE8_EXT 0x8C47 +#define GL_COMPRESSED_SRGB_EXT 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA_EXT 0x8C49 +#define GL_COMPRESSED_SLUMINANCE_EXT 0x8C4A +#define GL_COMPRESSED_SLUMINANCE_ALPHA_EXT 0x8C4B +#define GL_COMPRESSED_SRGB_S3TC_DXT1_EXT 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT 0x8C4F +#endif /* GL_EXT_texture_sRGB */ + +#ifndef GL_EXT_texture_sRGB_R8 +#define GL_EXT_texture_sRGB_R8 1 +#define GL_SR8_EXT 0x8FBD +#endif /* GL_EXT_texture_sRGB_R8 */ + +#ifndef GL_EXT_texture_sRGB_RG8 +#define GL_EXT_texture_sRGB_RG8 1 +#define GL_SRG8_EXT 0x8FBE +#endif /* GL_EXT_texture_sRGB_RG8 */ + +#ifndef GL_EXT_texture_sRGB_decode +#define GL_EXT_texture_sRGB_decode 1 +#define GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 +#define GL_DECODE_EXT 0x8A49 +#define GL_SKIP_DECODE_EXT 0x8A4A +#endif /* GL_EXT_texture_sRGB_decode */ + +#ifndef GL_EXT_texture_shadow_lod +#define GL_EXT_texture_shadow_lod 1 +#endif /* GL_EXT_texture_shadow_lod */ + +#ifndef GL_EXT_texture_shared_exponent +#define GL_EXT_texture_shared_exponent 1 +#define GL_RGB9_E5_EXT 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV_EXT 0x8C3E +#define GL_TEXTURE_SHARED_SIZE_EXT 0x8C3F +#endif /* GL_EXT_texture_shared_exponent */ + +#ifndef GL_EXT_texture_snorm +#define GL_EXT_texture_snorm 1 +#define GL_ALPHA_SNORM 0x9010 +#define GL_LUMINANCE_SNORM 0x9011 +#define GL_LUMINANCE_ALPHA_SNORM 0x9012 +#define GL_INTENSITY_SNORM 0x9013 +#define GL_ALPHA8_SNORM 0x9014 +#define GL_LUMINANCE8_SNORM 0x9015 +#define GL_LUMINANCE8_ALPHA8_SNORM 0x9016 +#define GL_INTENSITY8_SNORM 0x9017 +#define GL_ALPHA16_SNORM 0x9018 +#define GL_LUMINANCE16_SNORM 0x9019 +#define GL_LUMINANCE16_ALPHA16_SNORM 0x901A +#define GL_INTENSITY16_SNORM 0x901B +#define GL_RED_SNORM 0x8F90 +#define GL_RG_SNORM 0x8F91 +#define GL_RGB_SNORM 0x8F92 +#define GL_RGBA_SNORM 0x8F93 +#endif /* GL_EXT_texture_snorm */ + +#ifndef GL_EXT_texture_storage +#define GL_EXT_texture_storage 1 +#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F +#define GL_RGBA32F_EXT 0x8814 +#define GL_RGB32F_EXT 0x8815 +#define GL_ALPHA32F_EXT 0x8816 +#define GL_LUMINANCE32F_EXT 0x8818 +#define GL_LUMINANCE_ALPHA32F_EXT 0x8819 +#define GL_RGBA16F_EXT 0x881A +#define GL_RGB16F_EXT 0x881B +#define GL_ALPHA16F_EXT 0x881C +#define GL_LUMINANCE16F_EXT 0x881E +#define GL_LUMINANCE_ALPHA16F_EXT 0x881F +#define GL_BGRA8_EXT 0x93A1 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B +#define GL_R32F_EXT 0x822E +#define GL_RG32F_EXT 0x8230 +#define GL_R16F_EXT 0x822D +#define GL_RG16F_EXT 0x822F +typedef void (APIENTRYP PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexStorage1DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTexStorage2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTexStorage3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_EXT_texture_storage */ + +#ifndef GL_EXT_texture_swizzle +#define GL_EXT_texture_swizzle 1 +#define GL_TEXTURE_SWIZZLE_R_EXT 0x8E42 +#define GL_TEXTURE_SWIZZLE_G_EXT 0x8E43 +#define GL_TEXTURE_SWIZZLE_B_EXT 0x8E44 +#define GL_TEXTURE_SWIZZLE_A_EXT 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA_EXT 0x8E46 +#endif /* GL_EXT_texture_swizzle */ + +#ifndef GL_EXT_timer_query +#define GL_EXT_timer_query 1 +#define GL_TIME_ELAPSED_EXT 0x88BF +typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64 *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64 *params); +#endif +#endif /* GL_EXT_timer_query */ + +#ifndef GL_EXT_transform_feedback +#define GL_EXT_transform_feedback 1 +#define GL_TRANSFORM_FEEDBACK_BUFFER_EXT 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT 0x8C85 +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT 0x8C8F +#define GL_INTERLEAVED_ATTRIBS_EXT 0x8C8C +#define GL_SEPARATE_ATTRIBS_EXT 0x8C8D +#define GL_PRIMITIVES_GENERATED_EXT 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT 0x8C88 +#define GL_RASTERIZER_DISCARD_EXT 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT 0x8C8B +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS_EXT 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT 0x8C7F +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT 0x8C76 +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKEXTPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKEXTPROC) (void); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGEEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFEROFFSETEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +typedef void (APIENTRYP PFNGLBINDBUFFERBASEEXTPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSEXTPROC) (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGEXTPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginTransformFeedbackEXT (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedbackEXT (void); +GLAPI void APIENTRY glBindBufferRangeEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferOffsetEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +GLAPI void APIENTRY glBindBufferBaseEXT (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryingsEXT (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +GLAPI void APIENTRY glGetTransformFeedbackVaryingEXT (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +#endif +#endif /* GL_EXT_transform_feedback */ + +#ifndef GL_EXT_vertex_array +#define GL_EXT_vertex_array 1 +#define GL_VERTEX_ARRAY_EXT 0x8074 +#define GL_NORMAL_ARRAY_EXT 0x8075 +#define GL_COLOR_ARRAY_EXT 0x8076 +#define GL_INDEX_ARRAY_EXT 0x8077 +#define GL_TEXTURE_COORD_ARRAY_EXT 0x8078 +#define GL_EDGE_FLAG_ARRAY_EXT 0x8079 +#define GL_VERTEX_ARRAY_SIZE_EXT 0x807A +#define GL_VERTEX_ARRAY_TYPE_EXT 0x807B +#define GL_VERTEX_ARRAY_STRIDE_EXT 0x807C +#define GL_VERTEX_ARRAY_COUNT_EXT 0x807D +#define GL_NORMAL_ARRAY_TYPE_EXT 0x807E +#define GL_NORMAL_ARRAY_STRIDE_EXT 0x807F +#define GL_NORMAL_ARRAY_COUNT_EXT 0x8080 +#define GL_COLOR_ARRAY_SIZE_EXT 0x8081 +#define GL_COLOR_ARRAY_TYPE_EXT 0x8082 +#define GL_COLOR_ARRAY_STRIDE_EXT 0x8083 +#define GL_COLOR_ARRAY_COUNT_EXT 0x8084 +#define GL_INDEX_ARRAY_TYPE_EXT 0x8085 +#define GL_INDEX_ARRAY_STRIDE_EXT 0x8086 +#define GL_INDEX_ARRAY_COUNT_EXT 0x8087 +#define GL_TEXTURE_COORD_ARRAY_SIZE_EXT 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE_EXT 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE_EXT 0x808A +#define GL_TEXTURE_COORD_ARRAY_COUNT_EXT 0x808B +#define GL_EDGE_FLAG_ARRAY_STRIDE_EXT 0x808C +#define GL_EDGE_FLAG_ARRAY_COUNT_EXT 0x808D +#define GL_VERTEX_ARRAY_POINTER_EXT 0x808E +#define GL_NORMAL_ARRAY_POINTER_EXT 0x808F +#define GL_COLOR_ARRAY_POINTER_EXT 0x8090 +#define GL_INDEX_ARRAY_POINTER_EXT 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER_EXT 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER_EXT 0x8093 +typedef void (APIENTRYP PFNGLARRAYELEMENTEXTPROC) (GLint i); +typedef void (APIENTRYP PFNGLCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLDRAWARRAYSEXTPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTEREXTPROC) (GLsizei stride, GLsizei count, const GLboolean *pointer); +typedef void (APIENTRYP PFNGLGETPOINTERVEXTPROC) (GLenum pname, void **params); +typedef void (APIENTRYP PFNGLINDEXPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLNORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLVERTEXPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glArrayElementEXT (GLint i); +GLAPI void APIENTRY glColorPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glDrawArraysEXT (GLenum mode, GLint first, GLsizei count); +GLAPI void APIENTRY glEdgeFlagPointerEXT (GLsizei stride, GLsizei count, const GLboolean *pointer); +GLAPI void APIENTRY glGetPointervEXT (GLenum pname, void **params); +GLAPI void APIENTRY glIndexPointerEXT (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glNormalPointerEXT (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glTexCoordPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glVertexPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +#endif +#endif /* GL_EXT_vertex_array */ + +#ifndef GL_EXT_vertex_array_bgra +#define GL_EXT_vertex_array_bgra 1 +#endif /* GL_EXT_vertex_array_bgra */ + +#ifndef GL_EXT_vertex_attrib_64bit +#define GL_EXT_vertex_attrib_64bit 1 +#define GL_DOUBLE_VEC2_EXT 0x8FFC +#define GL_DOUBLE_VEC3_EXT 0x8FFD +#define GL_DOUBLE_VEC4_EXT 0x8FFE +#define GL_DOUBLE_MAT2_EXT 0x8F46 +#define GL_DOUBLE_MAT3_EXT 0x8F47 +#define GL_DOUBLE_MAT4_EXT 0x8F48 +#define GL_DOUBLE_MAT2x3_EXT 0x8F49 +#define GL_DOUBLE_MAT2x4_EXT 0x8F4A +#define GL_DOUBLE_MAT3x2_EXT 0x8F4B +#define GL_DOUBLE_MAT3x4_EXT 0x8F4C +#define GL_DOUBLE_MAT4x2_EXT 0x8F4D +#define GL_DOUBLE_MAT4x3_EXT 0x8F4E +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DEXTPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DEXTPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVEXTPROC) (GLuint index, GLenum pname, GLdouble *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribL1dEXT (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttribL2dEXT (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttribL3dEXT (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttribL4dEXT (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttribL1dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL2dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL3dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL4dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribLPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribLdvEXT (GLuint index, GLenum pname, GLdouble *params); +#endif +#endif /* GL_EXT_vertex_attrib_64bit */ + +#ifndef GL_EXT_vertex_shader +#define GL_EXT_vertex_shader 1 +#define GL_VERTEX_SHADER_EXT 0x8780 +#define GL_VERTEX_SHADER_BINDING_EXT 0x8781 +#define GL_OP_INDEX_EXT 0x8782 +#define GL_OP_NEGATE_EXT 0x8783 +#define GL_OP_DOT3_EXT 0x8784 +#define GL_OP_DOT4_EXT 0x8785 +#define GL_OP_MUL_EXT 0x8786 +#define GL_OP_ADD_EXT 0x8787 +#define GL_OP_MADD_EXT 0x8788 +#define GL_OP_FRAC_EXT 0x8789 +#define GL_OP_MAX_EXT 0x878A +#define GL_OP_MIN_EXT 0x878B +#define GL_OP_SET_GE_EXT 0x878C +#define GL_OP_SET_LT_EXT 0x878D +#define GL_OP_CLAMP_EXT 0x878E +#define GL_OP_FLOOR_EXT 0x878F +#define GL_OP_ROUND_EXT 0x8790 +#define GL_OP_EXP_BASE_2_EXT 0x8791 +#define GL_OP_LOG_BASE_2_EXT 0x8792 +#define GL_OP_POWER_EXT 0x8793 +#define GL_OP_RECIP_EXT 0x8794 +#define GL_OP_RECIP_SQRT_EXT 0x8795 +#define GL_OP_SUB_EXT 0x8796 +#define GL_OP_CROSS_PRODUCT_EXT 0x8797 +#define GL_OP_MULTIPLY_MATRIX_EXT 0x8798 +#define GL_OP_MOV_EXT 0x8799 +#define GL_OUTPUT_VERTEX_EXT 0x879A +#define GL_OUTPUT_COLOR0_EXT 0x879B +#define GL_OUTPUT_COLOR1_EXT 0x879C +#define GL_OUTPUT_TEXTURE_COORD0_EXT 0x879D +#define GL_OUTPUT_TEXTURE_COORD1_EXT 0x879E +#define GL_OUTPUT_TEXTURE_COORD2_EXT 0x879F +#define GL_OUTPUT_TEXTURE_COORD3_EXT 0x87A0 +#define GL_OUTPUT_TEXTURE_COORD4_EXT 0x87A1 +#define GL_OUTPUT_TEXTURE_COORD5_EXT 0x87A2 +#define GL_OUTPUT_TEXTURE_COORD6_EXT 0x87A3 +#define GL_OUTPUT_TEXTURE_COORD7_EXT 0x87A4 +#define GL_OUTPUT_TEXTURE_COORD8_EXT 0x87A5 +#define GL_OUTPUT_TEXTURE_COORD9_EXT 0x87A6 +#define GL_OUTPUT_TEXTURE_COORD10_EXT 0x87A7 +#define GL_OUTPUT_TEXTURE_COORD11_EXT 0x87A8 +#define GL_OUTPUT_TEXTURE_COORD12_EXT 0x87A9 +#define GL_OUTPUT_TEXTURE_COORD13_EXT 0x87AA +#define GL_OUTPUT_TEXTURE_COORD14_EXT 0x87AB +#define GL_OUTPUT_TEXTURE_COORD15_EXT 0x87AC +#define GL_OUTPUT_TEXTURE_COORD16_EXT 0x87AD +#define GL_OUTPUT_TEXTURE_COORD17_EXT 0x87AE +#define GL_OUTPUT_TEXTURE_COORD18_EXT 0x87AF +#define GL_OUTPUT_TEXTURE_COORD19_EXT 0x87B0 +#define GL_OUTPUT_TEXTURE_COORD20_EXT 0x87B1 +#define GL_OUTPUT_TEXTURE_COORD21_EXT 0x87B2 +#define GL_OUTPUT_TEXTURE_COORD22_EXT 0x87B3 +#define GL_OUTPUT_TEXTURE_COORD23_EXT 0x87B4 +#define GL_OUTPUT_TEXTURE_COORD24_EXT 0x87B5 +#define GL_OUTPUT_TEXTURE_COORD25_EXT 0x87B6 +#define GL_OUTPUT_TEXTURE_COORD26_EXT 0x87B7 +#define GL_OUTPUT_TEXTURE_COORD27_EXT 0x87B8 +#define GL_OUTPUT_TEXTURE_COORD28_EXT 0x87B9 +#define GL_OUTPUT_TEXTURE_COORD29_EXT 0x87BA +#define GL_OUTPUT_TEXTURE_COORD30_EXT 0x87BB +#define GL_OUTPUT_TEXTURE_COORD31_EXT 0x87BC +#define GL_OUTPUT_FOG_EXT 0x87BD +#define GL_SCALAR_EXT 0x87BE +#define GL_VECTOR_EXT 0x87BF +#define GL_MATRIX_EXT 0x87C0 +#define GL_VARIANT_EXT 0x87C1 +#define GL_INVARIANT_EXT 0x87C2 +#define GL_LOCAL_CONSTANT_EXT 0x87C3 +#define GL_LOCAL_EXT 0x87C4 +#define GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87C5 +#define GL_MAX_VERTEX_SHADER_VARIANTS_EXT 0x87C6 +#define GL_MAX_VERTEX_SHADER_INVARIANTS_EXT 0x87C7 +#define GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87C8 +#define GL_MAX_VERTEX_SHADER_LOCALS_EXT 0x87C9 +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CA +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT 0x87CB +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87CC +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT 0x87CD +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT 0x87CE +#define GL_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CF +#define GL_VERTEX_SHADER_VARIANTS_EXT 0x87D0 +#define GL_VERTEX_SHADER_INVARIANTS_EXT 0x87D1 +#define GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87D2 +#define GL_VERTEX_SHADER_LOCALS_EXT 0x87D3 +#define GL_VERTEX_SHADER_OPTIMIZED_EXT 0x87D4 +#define GL_X_EXT 0x87D5 +#define GL_Y_EXT 0x87D6 +#define GL_Z_EXT 0x87D7 +#define GL_W_EXT 0x87D8 +#define GL_NEGATIVE_X_EXT 0x87D9 +#define GL_NEGATIVE_Y_EXT 0x87DA +#define GL_NEGATIVE_Z_EXT 0x87DB +#define GL_NEGATIVE_W_EXT 0x87DC +#define GL_ZERO_EXT 0x87DD +#define GL_ONE_EXT 0x87DE +#define GL_NEGATIVE_ONE_EXT 0x87DF +#define GL_NORMALIZED_RANGE_EXT 0x87E0 +#define GL_FULL_RANGE_EXT 0x87E1 +#define GL_CURRENT_VERTEX_EXT 0x87E2 +#define GL_MVP_MATRIX_EXT 0x87E3 +#define GL_VARIANT_VALUE_EXT 0x87E4 +#define GL_VARIANT_DATATYPE_EXT 0x87E5 +#define GL_VARIANT_ARRAY_STRIDE_EXT 0x87E6 +#define GL_VARIANT_ARRAY_TYPE_EXT 0x87E7 +#define GL_VARIANT_ARRAY_EXT 0x87E8 +#define GL_VARIANT_ARRAY_POINTER_EXT 0x87E9 +#define GL_INVARIANT_VALUE_EXT 0x87EA +#define GL_INVARIANT_DATATYPE_EXT 0x87EB +#define GL_LOCAL_CONSTANT_VALUE_EXT 0x87EC +#define GL_LOCAL_CONSTANT_DATATYPE_EXT 0x87ED +typedef void (APIENTRYP PFNGLBEGINVERTEXSHADEREXTPROC) (void); +typedef void (APIENTRYP PFNGLENDVERTEXSHADEREXTPROC) (void); +typedef void (APIENTRYP PFNGLBINDVERTEXSHADEREXTPROC) (GLuint id); +typedef GLuint (APIENTRYP PFNGLGENVERTEXSHADERSEXTPROC) (GLuint range); +typedef void (APIENTRYP PFNGLDELETEVERTEXSHADEREXTPROC) (GLuint id); +typedef void (APIENTRYP PFNGLSHADEROP1EXTPROC) (GLenum op, GLuint res, GLuint arg1); +typedef void (APIENTRYP PFNGLSHADEROP2EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2); +typedef void (APIENTRYP PFNGLSHADEROP3EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3); +typedef void (APIENTRYP PFNGLSWIZZLEEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +typedef void (APIENTRYP PFNGLWRITEMASKEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +typedef void (APIENTRYP PFNGLINSERTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); +typedef void (APIENTRYP PFNGLEXTRACTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); +typedef GLuint (APIENTRYP PFNGLGENSYMBOLSEXTPROC) (GLenum datatype, GLenum storagetype, GLenum range, GLuint components); +typedef void (APIENTRYP PFNGLSETINVARIANTEXTPROC) (GLuint id, GLenum type, const void *addr); +typedef void (APIENTRYP PFNGLSETLOCALCONSTANTEXTPROC) (GLuint id, GLenum type, const void *addr); +typedef void (APIENTRYP PFNGLVARIANTBVEXTPROC) (GLuint id, const GLbyte *addr); +typedef void (APIENTRYP PFNGLVARIANTSVEXTPROC) (GLuint id, const GLshort *addr); +typedef void (APIENTRYP PFNGLVARIANTIVEXTPROC) (GLuint id, const GLint *addr); +typedef void (APIENTRYP PFNGLVARIANTFVEXTPROC) (GLuint id, const GLfloat *addr); +typedef void (APIENTRYP PFNGLVARIANTDVEXTPROC) (GLuint id, const GLdouble *addr); +typedef void (APIENTRYP PFNGLVARIANTUBVEXTPROC) (GLuint id, const GLubyte *addr); +typedef void (APIENTRYP PFNGLVARIANTUSVEXTPROC) (GLuint id, const GLushort *addr); +typedef void (APIENTRYP PFNGLVARIANTUIVEXTPROC) (GLuint id, const GLuint *addr); +typedef void (APIENTRYP PFNGLVARIANTPOINTEREXTPROC) (GLuint id, GLenum type, GLuint stride, const void *addr); +typedef void (APIENTRYP PFNGLENABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); +typedef void (APIENTRYP PFNGLDISABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); +typedef GLuint (APIENTRYP PFNGLBINDLIGHTPARAMETEREXTPROC) (GLenum light, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDMATERIALPARAMETEREXTPROC) (GLenum face, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDTEXGENPARAMETEREXTPROC) (GLenum unit, GLenum coord, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDTEXTUREUNITPARAMETEREXTPROC) (GLenum unit, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDPARAMETEREXTPROC) (GLenum value); +typedef GLboolean (APIENTRYP PFNGLISVARIANTENABLEDEXTPROC) (GLuint id, GLenum cap); +typedef void (APIENTRYP PFNGLGETVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +typedef void (APIENTRYP PFNGLGETVARIANTPOINTERVEXTPROC) (GLuint id, GLenum value, void **data); +typedef void (APIENTRYP PFNGLGETINVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETINVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETINVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginVertexShaderEXT (void); +GLAPI void APIENTRY glEndVertexShaderEXT (void); +GLAPI void APIENTRY glBindVertexShaderEXT (GLuint id); +GLAPI GLuint APIENTRY glGenVertexShadersEXT (GLuint range); +GLAPI void APIENTRY glDeleteVertexShaderEXT (GLuint id); +GLAPI void APIENTRY glShaderOp1EXT (GLenum op, GLuint res, GLuint arg1); +GLAPI void APIENTRY glShaderOp2EXT (GLenum op, GLuint res, GLuint arg1, GLuint arg2); +GLAPI void APIENTRY glShaderOp3EXT (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3); +GLAPI void APIENTRY glSwizzleEXT (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +GLAPI void APIENTRY glWriteMaskEXT (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +GLAPI void APIENTRY glInsertComponentEXT (GLuint res, GLuint src, GLuint num); +GLAPI void APIENTRY glExtractComponentEXT (GLuint res, GLuint src, GLuint num); +GLAPI GLuint APIENTRY glGenSymbolsEXT (GLenum datatype, GLenum storagetype, GLenum range, GLuint components); +GLAPI void APIENTRY glSetInvariantEXT (GLuint id, GLenum type, const void *addr); +GLAPI void APIENTRY glSetLocalConstantEXT (GLuint id, GLenum type, const void *addr); +GLAPI void APIENTRY glVariantbvEXT (GLuint id, const GLbyte *addr); +GLAPI void APIENTRY glVariantsvEXT (GLuint id, const GLshort *addr); +GLAPI void APIENTRY glVariantivEXT (GLuint id, const GLint *addr); +GLAPI void APIENTRY glVariantfvEXT (GLuint id, const GLfloat *addr); +GLAPI void APIENTRY glVariantdvEXT (GLuint id, const GLdouble *addr); +GLAPI void APIENTRY glVariantubvEXT (GLuint id, const GLubyte *addr); +GLAPI void APIENTRY glVariantusvEXT (GLuint id, const GLushort *addr); +GLAPI void APIENTRY glVariantuivEXT (GLuint id, const GLuint *addr); +GLAPI void APIENTRY glVariantPointerEXT (GLuint id, GLenum type, GLuint stride, const void *addr); +GLAPI void APIENTRY glEnableVariantClientStateEXT (GLuint id); +GLAPI void APIENTRY glDisableVariantClientStateEXT (GLuint id); +GLAPI GLuint APIENTRY glBindLightParameterEXT (GLenum light, GLenum value); +GLAPI GLuint APIENTRY glBindMaterialParameterEXT (GLenum face, GLenum value); +GLAPI GLuint APIENTRY glBindTexGenParameterEXT (GLenum unit, GLenum coord, GLenum value); +GLAPI GLuint APIENTRY glBindTextureUnitParameterEXT (GLenum unit, GLenum value); +GLAPI GLuint APIENTRY glBindParameterEXT (GLenum value); +GLAPI GLboolean APIENTRY glIsVariantEnabledEXT (GLuint id, GLenum cap); +GLAPI void APIENTRY glGetVariantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetVariantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetVariantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +GLAPI void APIENTRY glGetVariantPointervEXT (GLuint id, GLenum value, void **data); +GLAPI void APIENTRY glGetInvariantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetInvariantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetInvariantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +GLAPI void APIENTRY glGetLocalConstantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetLocalConstantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetLocalConstantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +#endif +#endif /* GL_EXT_vertex_shader */ + +#ifndef GL_EXT_vertex_weighting +#define GL_EXT_vertex_weighting 1 +#define GL_MODELVIEW0_STACK_DEPTH_EXT 0x0BA3 +#define GL_MODELVIEW1_STACK_DEPTH_EXT 0x8502 +#define GL_MODELVIEW0_MATRIX_EXT 0x0BA6 +#define GL_MODELVIEW1_MATRIX_EXT 0x8506 +#define GL_VERTEX_WEIGHTING_EXT 0x8509 +#define GL_MODELVIEW0_EXT 0x1700 +#define GL_MODELVIEW1_EXT 0x850A +#define GL_CURRENT_VERTEX_WEIGHT_EXT 0x850B +#define GL_VERTEX_WEIGHT_ARRAY_EXT 0x850C +#define GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT 0x850D +#define GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT 0x850E +#define GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT 0x850F +#define GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT 0x8510 +typedef void (APIENTRYP PFNGLVERTEXWEIGHTFEXTPROC) (GLfloat weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTFVEXTPROC) (const GLfloat *weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexWeightfEXT (GLfloat weight); +GLAPI void APIENTRY glVertexWeightfvEXT (const GLfloat *weight); +GLAPI void APIENTRY glVertexWeightPointerEXT (GLint size, GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_vertex_weighting */ + +#ifndef GL_EXT_win32_keyed_mutex +#define GL_EXT_win32_keyed_mutex 1 +typedef GLboolean (APIENTRYP PFNGLACQUIREKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key, GLuint timeout); +typedef GLboolean (APIENTRYP PFNGLRELEASEKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAcquireKeyedMutexWin32EXT (GLuint memory, GLuint64 key, GLuint timeout); +GLAPI GLboolean APIENTRY glReleaseKeyedMutexWin32EXT (GLuint memory, GLuint64 key); +#endif +#endif /* GL_EXT_win32_keyed_mutex */ + +#ifndef GL_EXT_window_rectangles +#define GL_EXT_window_rectangles 1 +#define GL_INCLUSIVE_EXT 0x8F10 +#define GL_EXCLUSIVE_EXT 0x8F11 +#define GL_WINDOW_RECTANGLE_EXT 0x8F12 +#define GL_WINDOW_RECTANGLE_MODE_EXT 0x8F13 +#define GL_MAX_WINDOW_RECTANGLES_EXT 0x8F14 +#define GL_NUM_WINDOW_RECTANGLES_EXT 0x8F15 +typedef void (APIENTRYP PFNGLWINDOWRECTANGLESEXTPROC) (GLenum mode, GLsizei count, const GLint *box); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowRectanglesEXT (GLenum mode, GLsizei count, const GLint *box); +#endif +#endif /* GL_EXT_window_rectangles */ + +#ifndef GL_EXT_x11_sync_object +#define GL_EXT_x11_sync_object 1 +#define GL_SYNC_X11_FENCE_EXT 0x90E1 +typedef GLsync (APIENTRYP PFNGLIMPORTSYNCEXTPROC) (GLenum external_sync_type, GLintptr external_sync, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLsync APIENTRY glImportSyncEXT (GLenum external_sync_type, GLintptr external_sync, GLbitfield flags); +#endif +#endif /* GL_EXT_x11_sync_object */ + +#ifndef GL_GREMEDY_frame_terminator +#define GL_GREMEDY_frame_terminator 1 +typedef void (APIENTRYP PFNGLFRAMETERMINATORGREMEDYPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFrameTerminatorGREMEDY (void); +#endif +#endif /* GL_GREMEDY_frame_terminator */ + +#ifndef GL_GREMEDY_string_marker +#define GL_GREMEDY_string_marker 1 +typedef void (APIENTRYP PFNGLSTRINGMARKERGREMEDYPROC) (GLsizei len, const void *string); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStringMarkerGREMEDY (GLsizei len, const void *string); +#endif +#endif /* GL_GREMEDY_string_marker */ + +#ifndef GL_HP_convolution_border_modes +#define GL_HP_convolution_border_modes 1 +#define GL_IGNORE_BORDER_HP 0x8150 +#define GL_CONSTANT_BORDER_HP 0x8151 +#define GL_REPLICATE_BORDER_HP 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR_HP 0x8154 +#endif /* GL_HP_convolution_border_modes */ + +#ifndef GL_HP_image_transform +#define GL_HP_image_transform 1 +#define GL_IMAGE_SCALE_X_HP 0x8155 +#define GL_IMAGE_SCALE_Y_HP 0x8156 +#define GL_IMAGE_TRANSLATE_X_HP 0x8157 +#define GL_IMAGE_TRANSLATE_Y_HP 0x8158 +#define GL_IMAGE_ROTATE_ANGLE_HP 0x8159 +#define GL_IMAGE_ROTATE_ORIGIN_X_HP 0x815A +#define GL_IMAGE_ROTATE_ORIGIN_Y_HP 0x815B +#define GL_IMAGE_MAG_FILTER_HP 0x815C +#define GL_IMAGE_MIN_FILTER_HP 0x815D +#define GL_IMAGE_CUBIC_WEIGHT_HP 0x815E +#define GL_CUBIC_HP 0x815F +#define GL_AVERAGE_HP 0x8160 +#define GL_IMAGE_TRANSFORM_2D_HP 0x8161 +#define GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8162 +#define GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8163 +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIHPPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFHPPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImageTransformParameteriHP (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glImageTransformParameterfHP (GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glImageTransformParameterivHP (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glImageTransformParameterfvHP (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetImageTransformParameterivHP (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetImageTransformParameterfvHP (GLenum target, GLenum pname, GLfloat *params); +#endif +#endif /* GL_HP_image_transform */ + +#ifndef GL_HP_occlusion_test +#define GL_HP_occlusion_test 1 +#define GL_OCCLUSION_TEST_HP 0x8165 +#define GL_OCCLUSION_TEST_RESULT_HP 0x8166 +#endif /* GL_HP_occlusion_test */ + +#ifndef GL_HP_texture_lighting +#define GL_HP_texture_lighting 1 +#define GL_TEXTURE_LIGHTING_MODE_HP 0x8167 +#define GL_TEXTURE_POST_SPECULAR_HP 0x8168 +#define GL_TEXTURE_PRE_SPECULAR_HP 0x8169 +#endif /* GL_HP_texture_lighting */ + +#ifndef GL_IBM_cull_vertex +#define GL_IBM_cull_vertex 1 +#define GL_CULL_VERTEX_IBM 103050 +#endif /* GL_IBM_cull_vertex */ + +#ifndef GL_IBM_multimode_draw_arrays +#define GL_IBM_multimode_draw_arrays 1 +typedef void (APIENTRYP PFNGLMULTIMODEDRAWARRAYSIBMPROC) (const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); +typedef void (APIENTRYP PFNGLMULTIMODEDRAWELEMENTSIBMPROC) (const GLenum *mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount, GLint modestride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiModeDrawArraysIBM (const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); +GLAPI void APIENTRY glMultiModeDrawElementsIBM (const GLenum *mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount, GLint modestride); +#endif +#endif /* GL_IBM_multimode_draw_arrays */ + +#ifndef GL_IBM_rasterpos_clip +#define GL_IBM_rasterpos_clip 1 +#define GL_RASTER_POSITION_UNCLIPPED_IBM 0x19262 +#endif /* GL_IBM_rasterpos_clip */ + +#ifndef GL_IBM_static_data +#define GL_IBM_static_data 1 +#define GL_ALL_STATIC_DATA_IBM 103060 +#define GL_STATIC_VERTEX_ARRAY_IBM 103061 +typedef void (APIENTRYP PFNGLFLUSHSTATICDATAIBMPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushStaticDataIBM (GLenum target); +#endif +#endif /* GL_IBM_static_data */ + +#ifndef GL_IBM_texture_mirrored_repeat +#define GL_IBM_texture_mirrored_repeat 1 +#define GL_MIRRORED_REPEAT_IBM 0x8370 +#endif /* GL_IBM_texture_mirrored_repeat */ + +#ifndef GL_IBM_vertex_array_lists +#define GL_IBM_vertex_array_lists 1 +#define GL_VERTEX_ARRAY_LIST_IBM 103070 +#define GL_NORMAL_ARRAY_LIST_IBM 103071 +#define GL_COLOR_ARRAY_LIST_IBM 103072 +#define GL_INDEX_ARRAY_LIST_IBM 103073 +#define GL_TEXTURE_COORD_ARRAY_LIST_IBM 103074 +#define GL_EDGE_FLAG_ARRAY_LIST_IBM 103075 +#define GL_FOG_COORDINATE_ARRAY_LIST_IBM 103076 +#define GL_SECONDARY_COLOR_ARRAY_LIST_IBM 103077 +#define GL_VERTEX_ARRAY_LIST_STRIDE_IBM 103080 +#define GL_NORMAL_ARRAY_LIST_STRIDE_IBM 103081 +#define GL_COLOR_ARRAY_LIST_STRIDE_IBM 103082 +#define GL_INDEX_ARRAY_LIST_STRIDE_IBM 103083 +#define GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM 103084 +#define GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM 103085 +#define GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM 103086 +#define GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM 103087 +typedef void (APIENTRYP PFNGLCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTERLISTIBMPROC) (GLint stride, const GLboolean **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLINDEXPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLNORMALPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLVERTEXPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glSecondaryColorPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glEdgeFlagPointerListIBM (GLint stride, const GLboolean **pointer, GLint ptrstride); +GLAPI void APIENTRY glFogCoordPointerListIBM (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glIndexPointerListIBM (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glNormalPointerListIBM (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glTexCoordPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glVertexPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +#endif +#endif /* GL_IBM_vertex_array_lists */ + +#ifndef GL_INGR_blend_func_separate +#define GL_INGR_blend_func_separate 1 +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEINGRPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparateINGR (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#endif +#endif /* GL_INGR_blend_func_separate */ + +#ifndef GL_INGR_color_clamp +#define GL_INGR_color_clamp 1 +#define GL_RED_MIN_CLAMP_INGR 0x8560 +#define GL_GREEN_MIN_CLAMP_INGR 0x8561 +#define GL_BLUE_MIN_CLAMP_INGR 0x8562 +#define GL_ALPHA_MIN_CLAMP_INGR 0x8563 +#define GL_RED_MAX_CLAMP_INGR 0x8564 +#define GL_GREEN_MAX_CLAMP_INGR 0x8565 +#define GL_BLUE_MAX_CLAMP_INGR 0x8566 +#define GL_ALPHA_MAX_CLAMP_INGR 0x8567 +#endif /* GL_INGR_color_clamp */ + +#ifndef GL_INGR_interlace_read +#define GL_INGR_interlace_read 1 +#define GL_INTERLACE_READ_INGR 0x8568 +#endif /* GL_INGR_interlace_read */ + +#ifndef GL_INTEL_blackhole_render +#define GL_INTEL_blackhole_render 1 +#define GL_BLACKHOLE_RENDER_INTEL 0x83FC +#endif /* GL_INTEL_blackhole_render */ + +#ifndef GL_INTEL_conservative_rasterization +#define GL_INTEL_conservative_rasterization 1 +#define GL_CONSERVATIVE_RASTERIZATION_INTEL 0x83FE +#endif /* GL_INTEL_conservative_rasterization */ + +#ifndef GL_INTEL_fragment_shader_ordering +#define GL_INTEL_fragment_shader_ordering 1 +#endif /* GL_INTEL_fragment_shader_ordering */ + +#ifndef GL_INTEL_framebuffer_CMAA +#define GL_INTEL_framebuffer_CMAA 1 +typedef void (APIENTRYP PFNGLAPPLYFRAMEBUFFERATTACHMENTCMAAINTELPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glApplyFramebufferAttachmentCMAAINTEL (void); +#endif +#endif /* GL_INTEL_framebuffer_CMAA */ + +#ifndef GL_INTEL_map_texture +#define GL_INTEL_map_texture 1 +#define GL_TEXTURE_MEMORY_LAYOUT_INTEL 0x83FF +#define GL_LAYOUT_DEFAULT_INTEL 0 +#define GL_LAYOUT_LINEAR_INTEL 1 +#define GL_LAYOUT_LINEAR_CPU_CACHED_INTEL 2 +typedef void (APIENTRYP PFNGLSYNCTEXTUREINTELPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLUNMAPTEXTURE2DINTELPROC) (GLuint texture, GLint level); +typedef void *(APIENTRYP PFNGLMAPTEXTURE2DINTELPROC) (GLuint texture, GLint level, GLbitfield access, GLint *stride, GLenum *layout); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSyncTextureINTEL (GLuint texture); +GLAPI void APIENTRY glUnmapTexture2DINTEL (GLuint texture, GLint level); +GLAPI void *APIENTRY glMapTexture2DINTEL (GLuint texture, GLint level, GLbitfield access, GLint *stride, GLenum *layout); +#endif +#endif /* GL_INTEL_map_texture */ + +#ifndef GL_INTEL_parallel_arrays +#define GL_INTEL_parallel_arrays 1 +#define GL_PARALLEL_ARRAYS_INTEL 0x83F4 +#define GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL 0x83F5 +#define GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL 0x83F6 +#define GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL 0x83F7 +#define GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL 0x83F8 +typedef void (APIENTRYP PFNGLVERTEXPOINTERVINTELPROC) (GLint size, GLenum type, const void **pointer); +typedef void (APIENTRYP PFNGLNORMALPOINTERVINTELPROC) (GLenum type, const void **pointer); +typedef void (APIENTRYP PFNGLCOLORPOINTERVINTELPROC) (GLint size, GLenum type, const void **pointer); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERVINTELPROC) (GLint size, GLenum type, const void **pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexPointervINTEL (GLint size, GLenum type, const void **pointer); +GLAPI void APIENTRY glNormalPointervINTEL (GLenum type, const void **pointer); +GLAPI void APIENTRY glColorPointervINTEL (GLint size, GLenum type, const void **pointer); +GLAPI void APIENTRY glTexCoordPointervINTEL (GLint size, GLenum type, const void **pointer); +#endif +#endif /* GL_INTEL_parallel_arrays */ + +#ifndef GL_INTEL_performance_query +#define GL_INTEL_performance_query 1 +#define GL_PERFQUERY_SINGLE_CONTEXT_INTEL 0x00000000 +#define GL_PERFQUERY_GLOBAL_CONTEXT_INTEL 0x00000001 +#define GL_PERFQUERY_WAIT_INTEL 0x83FB +#define GL_PERFQUERY_FLUSH_INTEL 0x83FA +#define GL_PERFQUERY_DONOT_FLUSH_INTEL 0x83F9 +#define GL_PERFQUERY_COUNTER_EVENT_INTEL 0x94F0 +#define GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL 0x94F1 +#define GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL 0x94F2 +#define GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL 0x94F3 +#define GL_PERFQUERY_COUNTER_RAW_INTEL 0x94F4 +#define GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL 0x94F5 +#define GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL 0x94F8 +#define GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL 0x94F9 +#define GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL 0x94FA +#define GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL 0x94FB +#define GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL 0x94FC +#define GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL 0x94FD +#define GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL 0x94FE +#define GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL 0x94FF +#define GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL 0x9500 +typedef void (APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); +typedef void (APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (APIENTRYP PFNGLGETFIRSTPERFQUERYIDINTELPROC) (GLuint *queryId); +typedef void (APIENTRYP PFNGLGETNEXTPERFQUERYIDINTELPROC) (GLuint queryId, GLuint *nextQueryId); +typedef void (APIENTRYP PFNGLGETPERFCOUNTERINFOINTELPROC) (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +typedef void (APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +typedef void (APIENTRYP PFNGLGETPERFQUERYIDBYNAMEINTELPROC) (GLchar *queryName, GLuint *queryId); +typedef void (APIENTRYP PFNGLGETPERFQUERYINFOINTELPROC) (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); +GLAPI void APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); +GLAPI void APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); +GLAPI void APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); +GLAPI void APIENTRY glGetFirstPerfQueryIdINTEL (GLuint *queryId); +GLAPI void APIENTRY glGetNextPerfQueryIdINTEL (GLuint queryId, GLuint *nextQueryId); +GLAPI void APIENTRY glGetPerfCounterInfoINTEL (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +GLAPI void APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +GLAPI void APIENTRY glGetPerfQueryIdByNameINTEL (GLchar *queryName, GLuint *queryId); +GLAPI void APIENTRY glGetPerfQueryInfoINTEL (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#endif +#endif /* GL_INTEL_performance_query */ + +#ifndef GL_MESAX_texture_stack +#define GL_MESAX_texture_stack 1 +#define GL_TEXTURE_1D_STACK_MESAX 0x8759 +#define GL_TEXTURE_2D_STACK_MESAX 0x875A +#define GL_PROXY_TEXTURE_1D_STACK_MESAX 0x875B +#define GL_PROXY_TEXTURE_2D_STACK_MESAX 0x875C +#define GL_TEXTURE_1D_STACK_BINDING_MESAX 0x875D +#define GL_TEXTURE_2D_STACK_BINDING_MESAX 0x875E +#endif /* GL_MESAX_texture_stack */ + +#ifndef GL_MESA_framebuffer_flip_x +#define GL_MESA_framebuffer_flip_x 1 +#define GL_FRAMEBUFFER_FLIP_X_MESA 0x8BBC +#endif /* GL_MESA_framebuffer_flip_x */ + +#ifndef GL_MESA_framebuffer_flip_y +#define GL_MESA_framebuffer_flip_y 1 +#define GL_FRAMEBUFFER_FLIP_Y_MESA 0x8BBB +typedef void (APIENTRYP PFNGLFRAMEBUFFERPARAMETERIMESAPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVMESAPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferParameteriMESA (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glGetFramebufferParameterivMESA (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_MESA_framebuffer_flip_y */ + +#ifndef GL_MESA_framebuffer_swap_xy +#define GL_MESA_framebuffer_swap_xy 1 +#define GL_FRAMEBUFFER_SWAP_XY_MESA 0x8BBD +#endif /* GL_MESA_framebuffer_swap_xy */ + +#ifndef GL_MESA_pack_invert +#define GL_MESA_pack_invert 1 +#define GL_PACK_INVERT_MESA 0x8758 +#endif /* GL_MESA_pack_invert */ + +#ifndef GL_MESA_program_binary_formats +#define GL_MESA_program_binary_formats 1 +#define GL_PROGRAM_BINARY_FORMAT_MESA 0x875F +#endif /* GL_MESA_program_binary_formats */ + +#ifndef GL_MESA_resize_buffers +#define GL_MESA_resize_buffers 1 +typedef void (APIENTRYP PFNGLRESIZEBUFFERSMESAPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glResizeBuffersMESA (void); +#endif +#endif /* GL_MESA_resize_buffers */ + +#ifndef GL_MESA_shader_integer_functions +#define GL_MESA_shader_integer_functions 1 +#endif /* GL_MESA_shader_integer_functions */ + +#ifndef GL_MESA_tile_raster_order +#define GL_MESA_tile_raster_order 1 +#define GL_TILE_RASTER_ORDER_FIXED_MESA 0x8BB8 +#define GL_TILE_RASTER_ORDER_INCREASING_X_MESA 0x8BB9 +#define GL_TILE_RASTER_ORDER_INCREASING_Y_MESA 0x8BBA +#endif /* GL_MESA_tile_raster_order */ + +#ifndef GL_MESA_window_pos +#define GL_MESA_window_pos 1 +typedef void (APIENTRYP PFNGLWINDOWPOS2DMESAPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FMESAPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IMESAPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SMESAPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVMESAPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DMESAPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FMESAPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IMESAPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SMESAPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVMESAPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4DMESAPROC) (GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLWINDOWPOS4DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4FMESAPROC) (GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLWINDOWPOS4FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4IMESAPROC) (GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLWINDOWPOS4IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4SMESAPROC) (GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLWINDOWPOS4SVMESAPROC) (const GLshort *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowPos2dMESA (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2fMESA (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2iMESA (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos2sMESA (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2svMESA (const GLshort *v); +GLAPI void APIENTRY glWindowPos3dMESA (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3fMESA (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3iMESA (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos3sMESA (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3svMESA (const GLshort *v); +GLAPI void APIENTRY glWindowPos4dMESA (GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glWindowPos4dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos4fMESA (GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glWindowPos4fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos4iMESA (GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glWindowPos4ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos4sMESA (GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glWindowPos4svMESA (const GLshort *v); +#endif +#endif /* GL_MESA_window_pos */ + +#ifndef GL_MESA_ycbcr_texture +#define GL_MESA_ycbcr_texture 1 +#define GL_UNSIGNED_SHORT_8_8_MESA 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_MESA 0x85BB +#define GL_YCBCR_MESA 0x8757 +#endif /* GL_MESA_ycbcr_texture */ + +#ifndef GL_NVX_blend_equation_advanced_multi_draw_buffers +#define GL_NVX_blend_equation_advanced_multi_draw_buffers 1 +#endif /* GL_NVX_blend_equation_advanced_multi_draw_buffers */ + +#ifndef GL_NVX_conditional_render +#define GL_NVX_conditional_render 1 +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERNVXPROC) (GLuint id); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERNVXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginConditionalRenderNVX (GLuint id); +GLAPI void APIENTRY glEndConditionalRenderNVX (void); +#endif +#endif /* GL_NVX_conditional_render */ + +#ifndef GL_NVX_gpu_memory_info +#define GL_NVX_gpu_memory_info 1 +#define GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX 0x9047 +#define GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX 0x9048 +#define GL_GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX 0x9049 +#define GL_GPU_MEMORY_INFO_EVICTION_COUNT_NVX 0x904A +#define GL_GPU_MEMORY_INFO_EVICTED_MEMORY_NVX 0x904B +#endif /* GL_NVX_gpu_memory_info */ + +#ifndef GL_NVX_gpu_multicast2 +#define GL_NVX_gpu_multicast2 1 +#define GL_UPLOAD_GPU_MASK_NVX 0x954A +typedef void (APIENTRYP PFNGLUPLOADGPUMASKNVXPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLMULTICASTVIEWPORTARRAYVNVXPROC) (GLuint gpu, GLuint first, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTICASTVIEWPORTPOSITIONWSCALENVXPROC) (GLuint gpu, GLuint index, GLfloat xcoeff, GLfloat ycoeff); +typedef void (APIENTRYP PFNGLMULTICASTSCISSORARRAYVNVXPROC) (GLuint gpu, GLuint first, GLsizei count, const GLint *v); +typedef GLuint (APIENTRYP PFNGLASYNCCOPYBUFFERSUBDATANVXPROC) (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *fenceValueArray, GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +typedef GLuint (APIENTRYP PFNGLASYNCCOPYIMAGESUBDATANVXPROC) (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *waitValueArray, GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUploadGPUMaskNVX (GLbitfield mask); +GLAPI void APIENTRY glMulticastViewportArrayvNVX (GLuint gpu, GLuint first, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glMulticastViewportPositionWScaleNVX (GLuint gpu, GLuint index, GLfloat xcoeff, GLfloat ycoeff); +GLAPI void APIENTRY glMulticastScissorArrayvNVX (GLuint gpu, GLuint first, GLsizei count, const GLint *v); +GLAPI GLuint APIENTRY glAsyncCopyBufferSubDataNVX (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *fenceValueArray, GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +GLAPI GLuint APIENTRY glAsyncCopyImageSubDataNVX (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *waitValueArray, GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +#endif +#endif /* GL_NVX_gpu_multicast2 */ + +#ifndef GL_NVX_linked_gpu_multicast +#define GL_NVX_linked_gpu_multicast 1 +#define GL_LGPU_SEPARATE_STORAGE_BIT_NVX 0x0800 +#define GL_MAX_LGPU_GPUS_NVX 0x92BA +typedef void (APIENTRYP PFNGLLGPUNAMEDBUFFERSUBDATANVXPROC) (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLLGPUCOPYIMAGESUBDATANVXPROC) (GLuint sourceGPU, GLbitfield destinationGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srxY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLLGPUINTERLOCKNVXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLGPUNamedBufferSubDataNVX (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glLGPUCopyImageSubDataNVX (GLuint sourceGPU, GLbitfield destinationGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srxY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glLGPUInterlockNVX (void); +#endif +#endif /* GL_NVX_linked_gpu_multicast */ + +#ifndef GL_NVX_progress_fence +#define GL_NVX_progress_fence 1 +typedef GLuint (APIENTRYP PFNGLCREATEPROGRESSFENCENVXPROC) (void); +typedef void (APIENTRYP PFNGLSIGNALSEMAPHOREUI64NVXPROC) (GLuint signalGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +typedef void (APIENTRYP PFNGLWAITSEMAPHOREUI64NVXPROC) (GLuint waitGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +typedef void (APIENTRYP PFNGLCLIENTWAITSEMAPHOREUI64NVXPROC) (GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glCreateProgressFenceNVX (void); +GLAPI void APIENTRY glSignalSemaphoreui64NVX (GLuint signalGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +GLAPI void APIENTRY glWaitSemaphoreui64NVX (GLuint waitGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +GLAPI void APIENTRY glClientWaitSemaphoreui64NVX (GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +#endif +#endif /* GL_NVX_progress_fence */ + +#ifndef GL_NV_alpha_to_coverage_dither_control +#define GL_NV_alpha_to_coverage_dither_control 1 +#define GL_ALPHA_TO_COVERAGE_DITHER_DEFAULT_NV 0x934D +#define GL_ALPHA_TO_COVERAGE_DITHER_ENABLE_NV 0x934E +#define GL_ALPHA_TO_COVERAGE_DITHER_DISABLE_NV 0x934F +#define GL_ALPHA_TO_COVERAGE_DITHER_MODE_NV 0x92BF +typedef void (APIENTRYP PFNGLALPHATOCOVERAGEDITHERCONTROLNVPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAlphaToCoverageDitherControlNV (GLenum mode); +#endif +#endif /* GL_NV_alpha_to_coverage_dither_control */ + +#ifndef GL_NV_bindless_multi_draw_indirect +#define GL_NV_bindless_multi_draw_indirect 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSNVPROC) (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTBINDLESSNVPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectBindlessNV (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +GLAPI void APIENTRY glMultiDrawElementsIndirectBindlessNV (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +#endif +#endif /* GL_NV_bindless_multi_draw_indirect */ + +#ifndef GL_NV_bindless_multi_draw_indirect_count +#define GL_NV_bindless_multi_draw_indirect_count 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSCOUNTNVPROC) (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTBINDLESSCOUNTNVPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectBindlessCountNV (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +GLAPI void APIENTRY glMultiDrawElementsIndirectBindlessCountNV (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +#endif +#endif /* GL_NV_bindless_multi_draw_indirect_count */ + +#ifndef GL_NV_bindless_texture +#define GL_NV_bindless_texture 1 +typedef GLuint64 (APIENTRYP PFNGLGETTEXTUREHANDLENVPROC) (GLuint texture); +typedef GLuint64 (APIENTRYP PFNGLGETTEXTURESAMPLERHANDLENVPROC) (GLuint texture, GLuint sampler); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef GLuint64 (APIENTRYP PFNGLGETIMAGEHANDLENVPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle, GLenum access); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64NVPROC) (GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64VNVPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64NVPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +typedef GLboolean (APIENTRYP PFNGLISTEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef GLboolean (APIENTRYP PFNGLISIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint64 APIENTRY glGetTextureHandleNV (GLuint texture); +GLAPI GLuint64 APIENTRY glGetTextureSamplerHandleNV (GLuint texture, GLuint sampler); +GLAPI void APIENTRY glMakeTextureHandleResidentNV (GLuint64 handle); +GLAPI void APIENTRY glMakeTextureHandleNonResidentNV (GLuint64 handle); +GLAPI GLuint64 APIENTRY glGetImageHandleNV (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +GLAPI void APIENTRY glMakeImageHandleResidentNV (GLuint64 handle, GLenum access); +GLAPI void APIENTRY glMakeImageHandleNonResidentNV (GLuint64 handle); +GLAPI void APIENTRY glUniformHandleui64NV (GLint location, GLuint64 value); +GLAPI void APIENTRY glUniformHandleui64vNV (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniformHandleui64NV (GLuint program, GLint location, GLuint64 value); +GLAPI void APIENTRY glProgramUniformHandleui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +GLAPI GLboolean APIENTRY glIsTextureHandleResidentNV (GLuint64 handle); +GLAPI GLboolean APIENTRY glIsImageHandleResidentNV (GLuint64 handle); +#endif +#endif /* GL_NV_bindless_texture */ + +#ifndef GL_NV_blend_equation_advanced +#define GL_NV_blend_equation_advanced 1 +#define GL_BLEND_OVERLAP_NV 0x9281 +#define GL_BLEND_PREMULTIPLIED_SRC_NV 0x9280 +#define GL_BLUE_NV 0x1905 +#define GL_COLORBURN_NV 0x929A +#define GL_COLORDODGE_NV 0x9299 +#define GL_CONJOINT_NV 0x9284 +#define GL_CONTRAST_NV 0x92A1 +#define GL_DARKEN_NV 0x9297 +#define GL_DIFFERENCE_NV 0x929E +#define GL_DISJOINT_NV 0x9283 +#define GL_DST_ATOP_NV 0x928F +#define GL_DST_IN_NV 0x928B +#define GL_DST_NV 0x9287 +#define GL_DST_OUT_NV 0x928D +#define GL_DST_OVER_NV 0x9289 +#define GL_EXCLUSION_NV 0x92A0 +#define GL_GREEN_NV 0x1904 +#define GL_HARDLIGHT_NV 0x929B +#define GL_HARDMIX_NV 0x92A9 +#define GL_HSL_COLOR_NV 0x92AF +#define GL_HSL_HUE_NV 0x92AD +#define GL_HSL_LUMINOSITY_NV 0x92B0 +#define GL_HSL_SATURATION_NV 0x92AE +#define GL_INVERT_OVG_NV 0x92B4 +#define GL_INVERT_RGB_NV 0x92A3 +#define GL_LIGHTEN_NV 0x9298 +#define GL_LINEARBURN_NV 0x92A5 +#define GL_LINEARDODGE_NV 0x92A4 +#define GL_LINEARLIGHT_NV 0x92A7 +#define GL_MINUS_CLAMPED_NV 0x92B3 +#define GL_MINUS_NV 0x929F +#define GL_MULTIPLY_NV 0x9294 +#define GL_OVERLAY_NV 0x9296 +#define GL_PINLIGHT_NV 0x92A8 +#define GL_PLUS_CLAMPED_ALPHA_NV 0x92B2 +#define GL_PLUS_CLAMPED_NV 0x92B1 +#define GL_PLUS_DARKER_NV 0x9292 +#define GL_PLUS_NV 0x9291 +#define GL_RED_NV 0x1903 +#define GL_SCREEN_NV 0x9295 +#define GL_SOFTLIGHT_NV 0x929C +#define GL_SRC_ATOP_NV 0x928E +#define GL_SRC_IN_NV 0x928A +#define GL_SRC_NV 0x9286 +#define GL_SRC_OUT_NV 0x928C +#define GL_SRC_OVER_NV 0x9288 +#define GL_UNCORRELATED_NV 0x9282 +#define GL_VIVIDLIGHT_NV 0x92A6 +#define GL_XOR_NV 0x1506 +typedef void (APIENTRYP PFNGLBLENDPARAMETERINVPROC) (GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLBLENDBARRIERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendParameteriNV (GLenum pname, GLint value); +GLAPI void APIENTRY glBlendBarrierNV (void); +#endif +#endif /* GL_NV_blend_equation_advanced */ + +#ifndef GL_NV_blend_equation_advanced_coherent +#define GL_NV_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_NV 0x9285 +#endif /* GL_NV_blend_equation_advanced_coherent */ + +#ifndef GL_NV_blend_minmax_factor +#define GL_NV_blend_minmax_factor 1 +#endif /* GL_NV_blend_minmax_factor */ + +#ifndef GL_NV_blend_square +#define GL_NV_blend_square 1 +#endif /* GL_NV_blend_square */ + +#ifndef GL_NV_clip_space_w_scaling +#define GL_NV_clip_space_w_scaling 1 +#define GL_VIEWPORT_POSITION_W_SCALE_NV 0x937C +#define GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV 0x937D +#define GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV 0x937E +typedef void (APIENTRYP PFNGLVIEWPORTPOSITIONWSCALENVPROC) (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glViewportPositionWScaleNV (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#endif +#endif /* GL_NV_clip_space_w_scaling */ + +#ifndef GL_NV_command_list +#define GL_NV_command_list 1 +#define GL_TERMINATE_SEQUENCE_COMMAND_NV 0x0000 +#define GL_NOP_COMMAND_NV 0x0001 +#define GL_DRAW_ELEMENTS_COMMAND_NV 0x0002 +#define GL_DRAW_ARRAYS_COMMAND_NV 0x0003 +#define GL_DRAW_ELEMENTS_STRIP_COMMAND_NV 0x0004 +#define GL_DRAW_ARRAYS_STRIP_COMMAND_NV 0x0005 +#define GL_DRAW_ELEMENTS_INSTANCED_COMMAND_NV 0x0006 +#define GL_DRAW_ARRAYS_INSTANCED_COMMAND_NV 0x0007 +#define GL_ELEMENT_ADDRESS_COMMAND_NV 0x0008 +#define GL_ATTRIBUTE_ADDRESS_COMMAND_NV 0x0009 +#define GL_UNIFORM_ADDRESS_COMMAND_NV 0x000A +#define GL_BLEND_COLOR_COMMAND_NV 0x000B +#define GL_STENCIL_REF_COMMAND_NV 0x000C +#define GL_LINE_WIDTH_COMMAND_NV 0x000D +#define GL_POLYGON_OFFSET_COMMAND_NV 0x000E +#define GL_ALPHA_REF_COMMAND_NV 0x000F +#define GL_VIEWPORT_COMMAND_NV 0x0010 +#define GL_SCISSOR_COMMAND_NV 0x0011 +#define GL_FRONT_FACE_COMMAND_NV 0x0012 +typedef void (APIENTRYP PFNGLCREATESTATESNVPROC) (GLsizei n, GLuint *states); +typedef void (APIENTRYP PFNGLDELETESTATESNVPROC) (GLsizei n, const GLuint *states); +typedef GLboolean (APIENTRYP PFNGLISSTATENVPROC) (GLuint state); +typedef void (APIENTRYP PFNGLSTATECAPTURENVPROC) (GLuint state, GLenum mode); +typedef GLuint (APIENTRYP PFNGLGETCOMMANDHEADERNVPROC) (GLenum tokenID, GLuint size); +typedef GLushort (APIENTRYP PFNGLGETSTAGEINDEXNVPROC) (GLenum shadertype); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSNVPROC) (GLenum primitiveMode, GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSADDRESSNVPROC) (GLenum primitiveMode, const GLuint64 *indirects, const GLsizei *sizes, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSSTATESNVPROC) (GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSSTATESADDRESSNVPROC) (const GLuint64 *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLCREATECOMMANDLISTSNVPROC) (GLsizei n, GLuint *lists); +typedef void (APIENTRYP PFNGLDELETECOMMANDLISTSNVPROC) (GLsizei n, const GLuint *lists); +typedef GLboolean (APIENTRYP PFNGLISCOMMANDLISTNVPROC) (GLuint list); +typedef void (APIENTRYP PFNGLLISTDRAWCOMMANDSSTATESCLIENTNVPROC) (GLuint list, GLuint segment, const void **indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLCOMMANDLISTSEGMENTSNVPROC) (GLuint list, GLuint segments); +typedef void (APIENTRYP PFNGLCOMPILECOMMANDLISTNVPROC) (GLuint list); +typedef void (APIENTRYP PFNGLCALLCOMMANDLISTNVPROC) (GLuint list); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCreateStatesNV (GLsizei n, GLuint *states); +GLAPI void APIENTRY glDeleteStatesNV (GLsizei n, const GLuint *states); +GLAPI GLboolean APIENTRY glIsStateNV (GLuint state); +GLAPI void APIENTRY glStateCaptureNV (GLuint state, GLenum mode); +GLAPI GLuint APIENTRY glGetCommandHeaderNV (GLenum tokenID, GLuint size); +GLAPI GLushort APIENTRY glGetStageIndexNV (GLenum shadertype); +GLAPI void APIENTRY glDrawCommandsNV (GLenum primitiveMode, GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, GLuint count); +GLAPI void APIENTRY glDrawCommandsAddressNV (GLenum primitiveMode, const GLuint64 *indirects, const GLsizei *sizes, GLuint count); +GLAPI void APIENTRY glDrawCommandsStatesNV (GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glDrawCommandsStatesAddressNV (const GLuint64 *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glCreateCommandListsNV (GLsizei n, GLuint *lists); +GLAPI void APIENTRY glDeleteCommandListsNV (GLsizei n, const GLuint *lists); +GLAPI GLboolean APIENTRY glIsCommandListNV (GLuint list); +GLAPI void APIENTRY glListDrawCommandsStatesClientNV (GLuint list, GLuint segment, const void **indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glCommandListSegmentsNV (GLuint list, GLuint segments); +GLAPI void APIENTRY glCompileCommandListNV (GLuint list); +GLAPI void APIENTRY glCallCommandListNV (GLuint list); +#endif +#endif /* GL_NV_command_list */ + +#ifndef GL_NV_compute_program5 +#define GL_NV_compute_program5 1 +#define GL_COMPUTE_PROGRAM_NV 0x90FB +#define GL_COMPUTE_PROGRAM_PARAMETER_BUFFER_NV 0x90FC +#endif /* GL_NV_compute_program5 */ + +#ifndef GL_NV_compute_shader_derivatives +#define GL_NV_compute_shader_derivatives 1 +#endif /* GL_NV_compute_shader_derivatives */ + +#ifndef GL_NV_conditional_render +#define GL_NV_conditional_render 1 +#define GL_QUERY_WAIT_NV 0x8E13 +#define GL_QUERY_NO_WAIT_NV 0x8E14 +#define GL_QUERY_BY_REGION_WAIT_NV 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16 +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERNVPROC) (GLuint id, GLenum mode); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginConditionalRenderNV (GLuint id, GLenum mode); +GLAPI void APIENTRY glEndConditionalRenderNV (void); +#endif +#endif /* GL_NV_conditional_render */ + +#ifndef GL_NV_conservative_raster +#define GL_NV_conservative_raster 1 +#define GL_CONSERVATIVE_RASTERIZATION_NV 0x9346 +#define GL_SUBPIXEL_PRECISION_BIAS_X_BITS_NV 0x9347 +#define GL_SUBPIXEL_PRECISION_BIAS_Y_BITS_NV 0x9348 +#define GL_MAX_SUBPIXEL_PRECISION_BIAS_BITS_NV 0x9349 +typedef void (APIENTRYP PFNGLSUBPIXELPRECISIONBIASNVPROC) (GLuint xbits, GLuint ybits); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSubpixelPrecisionBiasNV (GLuint xbits, GLuint ybits); +#endif +#endif /* GL_NV_conservative_raster */ + +#ifndef GL_NV_conservative_raster_dilate +#define GL_NV_conservative_raster_dilate 1 +#define GL_CONSERVATIVE_RASTER_DILATE_NV 0x9379 +#define GL_CONSERVATIVE_RASTER_DILATE_RANGE_NV 0x937A +#define GL_CONSERVATIVE_RASTER_DILATE_GRANULARITY_NV 0x937B +typedef void (APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERFNVPROC) (GLenum pname, GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConservativeRasterParameterfNV (GLenum pname, GLfloat value); +#endif +#endif /* GL_NV_conservative_raster_dilate */ + +#ifndef GL_NV_conservative_raster_pre_snap +#define GL_NV_conservative_raster_pre_snap 1 +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV 0x9550 +#endif /* GL_NV_conservative_raster_pre_snap */ + +#ifndef GL_NV_conservative_raster_pre_snap_triangles +#define GL_NV_conservative_raster_pre_snap_triangles 1 +#define GL_CONSERVATIVE_RASTER_MODE_NV 0x954D +#define GL_CONSERVATIVE_RASTER_MODE_POST_SNAP_NV 0x954E +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_TRIANGLES_NV 0x954F +typedef void (APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERINVPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConservativeRasterParameteriNV (GLenum pname, GLint param); +#endif +#endif /* GL_NV_conservative_raster_pre_snap_triangles */ + +#ifndef GL_NV_conservative_raster_underestimation +#define GL_NV_conservative_raster_underestimation 1 +#endif /* GL_NV_conservative_raster_underestimation */ + +#ifndef GL_NV_copy_depth_to_color +#define GL_NV_copy_depth_to_color 1 +#define GL_DEPTH_STENCIL_TO_RGBA_NV 0x886E +#define GL_DEPTH_STENCIL_TO_BGRA_NV 0x886F +#endif /* GL_NV_copy_depth_to_color */ + +#ifndef GL_NV_copy_image +#define GL_NV_copy_image 1 +typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATANVPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCopyImageSubDataNV (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_NV_copy_image */ + +#ifndef GL_NV_deep_texture3D +#define GL_NV_deep_texture3D 1 +#define GL_MAX_DEEP_3D_TEXTURE_WIDTH_HEIGHT_NV 0x90D0 +#define GL_MAX_DEEP_3D_TEXTURE_DEPTH_NV 0x90D1 +#endif /* GL_NV_deep_texture3D */ + +#ifndef GL_NV_depth_buffer_float +#define GL_NV_depth_buffer_float 1 +#define GL_DEPTH_COMPONENT32F_NV 0x8DAB +#define GL_DEPTH32F_STENCIL8_NV 0x8DAC +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV_NV 0x8DAD +#define GL_DEPTH_BUFFER_FLOAT_MODE_NV 0x8DAF +typedef void (APIENTRYP PFNGLDEPTHRANGEDNVPROC) (GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLCLEARDEPTHDNVPROC) (GLdouble depth); +typedef void (APIENTRYP PFNGLDEPTHBOUNDSDNVPROC) (GLdouble zmin, GLdouble zmax); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthRangedNV (GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glClearDepthdNV (GLdouble depth); +GLAPI void APIENTRY glDepthBoundsdNV (GLdouble zmin, GLdouble zmax); +#endif +#endif /* GL_NV_depth_buffer_float */ + +#ifndef GL_NV_depth_clamp +#define GL_NV_depth_clamp 1 +#define GL_DEPTH_CLAMP_NV 0x864F +#endif /* GL_NV_depth_clamp */ + +#ifndef GL_NV_draw_texture +#define GL_NV_draw_texture 1 +typedef void (APIENTRYP PFNGLDRAWTEXTURENVPROC) (GLuint texture, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawTextureNV (GLuint texture, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +#endif +#endif /* GL_NV_draw_texture */ + +#ifndef GL_NV_draw_vulkan_image +#define GL_NV_draw_vulkan_image 1 +typedef void (APIENTRY *GLVULKANPROCNV)(void); +typedef void (APIENTRYP PFNGLDRAWVKIMAGENVPROC) (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +typedef GLVULKANPROCNV (APIENTRYP PFNGLGETVKPROCADDRNVPROC) (const GLchar *name); +typedef void (APIENTRYP PFNGLWAITVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (APIENTRYP PFNGLSIGNALVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (APIENTRYP PFNGLSIGNALVKFENCENVPROC) (GLuint64 vkFence); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawVkImageNV (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +GLAPI GLVULKANPROCNV APIENTRY glGetVkProcAddrNV (const GLchar *name); +GLAPI void APIENTRY glWaitVkSemaphoreNV (GLuint64 vkSemaphore); +GLAPI void APIENTRY glSignalVkSemaphoreNV (GLuint64 vkSemaphore); +GLAPI void APIENTRY glSignalVkFenceNV (GLuint64 vkFence); +#endif +#endif /* GL_NV_draw_vulkan_image */ + +#ifndef GL_NV_evaluators +#define GL_NV_evaluators 1 +#define GL_EVAL_2D_NV 0x86C0 +#define GL_EVAL_TRIANGULAR_2D_NV 0x86C1 +#define GL_MAP_TESSELLATION_NV 0x86C2 +#define GL_MAP_ATTRIB_U_ORDER_NV 0x86C3 +#define GL_MAP_ATTRIB_V_ORDER_NV 0x86C4 +#define GL_EVAL_FRACTIONAL_TESSELLATION_NV 0x86C5 +#define GL_EVAL_VERTEX_ATTRIB0_NV 0x86C6 +#define GL_EVAL_VERTEX_ATTRIB1_NV 0x86C7 +#define GL_EVAL_VERTEX_ATTRIB2_NV 0x86C8 +#define GL_EVAL_VERTEX_ATTRIB3_NV 0x86C9 +#define GL_EVAL_VERTEX_ATTRIB4_NV 0x86CA +#define GL_EVAL_VERTEX_ATTRIB5_NV 0x86CB +#define GL_EVAL_VERTEX_ATTRIB6_NV 0x86CC +#define GL_EVAL_VERTEX_ATTRIB7_NV 0x86CD +#define GL_EVAL_VERTEX_ATTRIB8_NV 0x86CE +#define GL_EVAL_VERTEX_ATTRIB9_NV 0x86CF +#define GL_EVAL_VERTEX_ATTRIB10_NV 0x86D0 +#define GL_EVAL_VERTEX_ATTRIB11_NV 0x86D1 +#define GL_EVAL_VERTEX_ATTRIB12_NV 0x86D2 +#define GL_EVAL_VERTEX_ATTRIB13_NV 0x86D3 +#define GL_EVAL_VERTEX_ATTRIB14_NV 0x86D4 +#define GL_EVAL_VERTEX_ATTRIB15_NV 0x86D5 +#define GL_MAX_MAP_TESSELLATION_NV 0x86D6 +#define GL_MAX_RATIONAL_EVAL_ORDER_NV 0x86D7 +typedef void (APIENTRYP PFNGLMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const void *points); +typedef void (APIENTRYP PFNGLMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, void *points); +typedef void (APIENTRYP PFNGLGETMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERIVNVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLEVALMAPSNVPROC) (GLenum target, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMapControlPointsNV (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const void *points); +GLAPI void APIENTRY glMapParameterivNV (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMapParameterfvNV (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetMapControlPointsNV (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, void *points); +GLAPI void APIENTRY glGetMapParameterivNV (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMapParameterfvNV (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMapAttribParameterivNV (GLenum target, GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMapAttribParameterfvNV (GLenum target, GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glEvalMapsNV (GLenum target, GLenum mode); +#endif +#endif /* GL_NV_evaluators */ + +#ifndef GL_NV_explicit_multisample +#define GL_NV_explicit_multisample 1 +#define GL_SAMPLE_POSITION_NV 0x8E50 +#define GL_SAMPLE_MASK_NV 0x8E51 +#define GL_SAMPLE_MASK_VALUE_NV 0x8E52 +#define GL_TEXTURE_BINDING_RENDERBUFFER_NV 0x8E53 +#define GL_TEXTURE_RENDERBUFFER_DATA_STORE_BINDING_NV 0x8E54 +#define GL_TEXTURE_RENDERBUFFER_NV 0x8E55 +#define GL_SAMPLER_RENDERBUFFER_NV 0x8E56 +#define GL_INT_SAMPLER_RENDERBUFFER_NV 0x8E57 +#define GL_UNSIGNED_INT_SAMPLER_RENDERBUFFER_NV 0x8E58 +#define GL_MAX_SAMPLE_MASK_WORDS_NV 0x8E59 +typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVNVPROC) (GLenum pname, GLuint index, GLfloat *val); +typedef void (APIENTRYP PFNGLSAMPLEMASKINDEXEDNVPROC) (GLuint index, GLbitfield mask); +typedef void (APIENTRYP PFNGLTEXRENDERBUFFERNVPROC) (GLenum target, GLuint renderbuffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetMultisamplefvNV (GLenum pname, GLuint index, GLfloat *val); +GLAPI void APIENTRY glSampleMaskIndexedNV (GLuint index, GLbitfield mask); +GLAPI void APIENTRY glTexRenderbufferNV (GLenum target, GLuint renderbuffer); +#endif +#endif /* GL_NV_explicit_multisample */ + +#ifndef GL_NV_fence +#define GL_NV_fence 1 +#define GL_ALL_COMPLETED_NV 0x84F2 +#define GL_FENCE_STATUS_NV 0x84F3 +#define GL_FENCE_CONDITION_NV 0x84F4 +typedef void (APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences); +typedef void (APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences); +typedef GLboolean (APIENTRYP PFNGLISFENCENVPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences); +GLAPI void APIENTRY glGenFencesNV (GLsizei n, GLuint *fences); +GLAPI GLboolean APIENTRY glIsFenceNV (GLuint fence); +GLAPI GLboolean APIENTRY glTestFenceNV (GLuint fence); +GLAPI void APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params); +GLAPI void APIENTRY glFinishFenceNV (GLuint fence); +GLAPI void APIENTRY glSetFenceNV (GLuint fence, GLenum condition); +#endif +#endif /* GL_NV_fence */ + +#ifndef GL_NV_fill_rectangle +#define GL_NV_fill_rectangle 1 +#define GL_FILL_RECTANGLE_NV 0x933C +#endif /* GL_NV_fill_rectangle */ + +#ifndef GL_NV_float_buffer +#define GL_NV_float_buffer 1 +#define GL_FLOAT_R_NV 0x8880 +#define GL_FLOAT_RG_NV 0x8881 +#define GL_FLOAT_RGB_NV 0x8882 +#define GL_FLOAT_RGBA_NV 0x8883 +#define GL_FLOAT_R16_NV 0x8884 +#define GL_FLOAT_R32_NV 0x8885 +#define GL_FLOAT_RG16_NV 0x8886 +#define GL_FLOAT_RG32_NV 0x8887 +#define GL_FLOAT_RGB16_NV 0x8888 +#define GL_FLOAT_RGB32_NV 0x8889 +#define GL_FLOAT_RGBA16_NV 0x888A +#define GL_FLOAT_RGBA32_NV 0x888B +#define GL_TEXTURE_FLOAT_COMPONENTS_NV 0x888C +#define GL_FLOAT_CLEAR_COLOR_VALUE_NV 0x888D +#define GL_FLOAT_RGBA_MODE_NV 0x888E +#endif /* GL_NV_float_buffer */ + +#ifndef GL_NV_fog_distance +#define GL_NV_fog_distance 1 +#define GL_FOG_DISTANCE_MODE_NV 0x855A +#define GL_EYE_RADIAL_NV 0x855B +#define GL_EYE_PLANE_ABSOLUTE_NV 0x855C +#endif /* GL_NV_fog_distance */ + +#ifndef GL_NV_fragment_coverage_to_color +#define GL_NV_fragment_coverage_to_color 1 +#define GL_FRAGMENT_COVERAGE_TO_COLOR_NV 0x92DD +#define GL_FRAGMENT_COVERAGE_COLOR_NV 0x92DE +typedef void (APIENTRYP PFNGLFRAGMENTCOVERAGECOLORNVPROC) (GLuint color); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFragmentCoverageColorNV (GLuint color); +#endif +#endif /* GL_NV_fragment_coverage_to_color */ + +#ifndef GL_NV_fragment_program +#define GL_NV_fragment_program 1 +#define GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV 0x8868 +#define GL_FRAGMENT_PROGRAM_NV 0x8870 +#define GL_MAX_TEXTURE_COORDS_NV 0x8871 +#define GL_MAX_TEXTURE_IMAGE_UNITS_NV 0x8872 +#define GL_FRAGMENT_PROGRAM_BINDING_NV 0x8873 +#define GL_PROGRAM_ERROR_STRING_NV 0x8874 +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v); +typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERFVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERDVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramNamedParameter4fNV (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramNamedParameter4fvNV (GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v); +GLAPI void APIENTRY glProgramNamedParameter4dNV (GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramNamedParameter4dvNV (GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v); +GLAPI void APIENTRY glGetProgramNamedParameterfvNV (GLuint id, GLsizei len, const GLubyte *name, GLfloat *params); +GLAPI void APIENTRY glGetProgramNamedParameterdvNV (GLuint id, GLsizei len, const GLubyte *name, GLdouble *params); +#endif +#endif /* GL_NV_fragment_program */ + +#ifndef GL_NV_fragment_program2 +#define GL_NV_fragment_program2 1 +#define GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 +#define GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 +#define GL_MAX_PROGRAM_IF_DEPTH_NV 0x88F6 +#define GL_MAX_PROGRAM_LOOP_DEPTH_NV 0x88F7 +#define GL_MAX_PROGRAM_LOOP_COUNT_NV 0x88F8 +#endif /* GL_NV_fragment_program2 */ + +#ifndef GL_NV_fragment_program4 +#define GL_NV_fragment_program4 1 +#endif /* GL_NV_fragment_program4 */ + +#ifndef GL_NV_fragment_program_option +#define GL_NV_fragment_program_option 1 +#endif /* GL_NV_fragment_program_option */ + +#ifndef GL_NV_fragment_shader_barycentric +#define GL_NV_fragment_shader_barycentric 1 +#endif /* GL_NV_fragment_shader_barycentric */ + +#ifndef GL_NV_fragment_shader_interlock +#define GL_NV_fragment_shader_interlock 1 +#endif /* GL_NV_fragment_shader_interlock */ + +#ifndef GL_NV_framebuffer_mixed_samples +#define GL_NV_framebuffer_mixed_samples 1 +#define GL_COVERAGE_MODULATION_TABLE_NV 0x9331 +#define GL_COLOR_SAMPLES_NV 0x8E20 +#define GL_DEPTH_SAMPLES_NV 0x932D +#define GL_STENCIL_SAMPLES_NV 0x932E +#define GL_MIXED_DEPTH_SAMPLES_SUPPORTED_NV 0x932F +#define GL_MIXED_STENCIL_SAMPLES_SUPPORTED_NV 0x9330 +#define GL_COVERAGE_MODULATION_NV 0x9332 +#define GL_COVERAGE_MODULATION_TABLE_SIZE_NV 0x9333 +typedef void (APIENTRYP PFNGLCOVERAGEMODULATIONTABLENVPROC) (GLsizei n, const GLfloat *v); +typedef void (APIENTRYP PFNGLGETCOVERAGEMODULATIONTABLENVPROC) (GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLCOVERAGEMODULATIONNVPROC) (GLenum components); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCoverageModulationTableNV (GLsizei n, const GLfloat *v); +GLAPI void APIENTRY glGetCoverageModulationTableNV (GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glCoverageModulationNV (GLenum components); +#endif +#endif /* GL_NV_framebuffer_mixed_samples */ + +#ifndef GL_NV_framebuffer_multisample_coverage +#define GL_NV_framebuffer_multisample_coverage 1 +#define GL_RENDERBUFFER_COVERAGE_SAMPLES_NV 0x8CAB +#define GL_RENDERBUFFER_COLOR_SAMPLES_NV 0x8E10 +#define GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV 0x8E11 +#define GL_MULTISAMPLE_COVERAGE_MODES_NV 0x8E12 +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_NV_framebuffer_multisample_coverage */ + +#ifndef GL_NV_geometry_program4 +#define GL_NV_geometry_program4 1 +#define GL_GEOMETRY_PROGRAM_NV 0x8C26 +#define GL_MAX_PROGRAM_OUTPUT_VERTICES_NV 0x8C27 +#define GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV 0x8C28 +typedef void (APIENTRYP PFNGLPROGRAMVERTEXLIMITNVPROC) (GLenum target, GLint limit); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREFACEEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramVertexLimitNV (GLenum target, GLint limit); +GLAPI void APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTextureFaceEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#endif +#endif /* GL_NV_geometry_program4 */ + +#ifndef GL_NV_geometry_shader4 +#define GL_NV_geometry_shader4 1 +#endif /* GL_NV_geometry_shader4 */ + +#ifndef GL_NV_geometry_shader_passthrough +#define GL_NV_geometry_shader_passthrough 1 +#endif /* GL_NV_geometry_shader_passthrough */ + +#ifndef GL_NV_gpu_multicast +#define GL_NV_gpu_multicast 1 +#define GL_PER_GPU_STORAGE_BIT_NV 0x0800 +#define GL_MULTICAST_GPUS_NV 0x92BA +#define GL_RENDER_GPU_MASK_NV 0x9558 +#define GL_PER_GPU_STORAGE_NV 0x9548 +#define GL_MULTICAST_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9549 +typedef void (APIENTRYP PFNGLRENDERGPUMASKNVPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLMULTICASTBUFFERSUBDATANVPROC) (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLMULTICASTCOPYBUFFERSUBDATANVPROC) (GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLMULTICASTCOPYIMAGESUBDATANVPROC) (GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +typedef void (APIENTRYP PFNGLMULTICASTBLITFRAMEBUFFERNVPROC) (GLuint srcGPU, GLuint dstGPU, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef void (APIENTRYP PFNGLMULTICASTFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint gpu, GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTICASTBARRIERNVPROC) (void); +typedef void (APIENTRYP PFNGLMULTICASTWAITSYNCNVPROC) (GLuint signalGPU, GLbitfield waitGPUMask); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTIVNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTUIVNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTI64VNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTUI64VNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLuint64 *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderGPUMaskNV (GLbitfield mask); +GLAPI void APIENTRY glMulticastBufferSubDataNV (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glMulticastCopyBufferSubDataNV (GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glMulticastCopyImageSubDataNV (GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +GLAPI void APIENTRY glMulticastBlitFramebufferNV (GLuint srcGPU, GLuint dstGPU, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI void APIENTRY glMulticastFramebufferSampleLocationsfvNV (GLuint gpu, GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glMulticastBarrierNV (void); +GLAPI void APIENTRY glMulticastWaitSyncNV (GLuint signalGPU, GLbitfield waitGPUMask); +GLAPI void APIENTRY glMulticastGetQueryObjectivNV (GLuint gpu, GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glMulticastGetQueryObjectuivNV (GLuint gpu, GLuint id, GLenum pname, GLuint *params); +GLAPI void APIENTRY glMulticastGetQueryObjecti64vNV (GLuint gpu, GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glMulticastGetQueryObjectui64vNV (GLuint gpu, GLuint id, GLenum pname, GLuint64 *params); +#endif +#endif /* GL_NV_gpu_multicast */ + +#ifndef GL_NV_gpu_program4 +#define GL_NV_gpu_program4 1 +#define GL_MIN_PROGRAM_TEXEL_OFFSET_NV 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET_NV 0x8905 +#define GL_PROGRAM_ATTRIB_COMPONENTS_NV 0x8906 +#define GL_PROGRAM_RESULT_COMPONENTS_NV 0x8907 +#define GL_MAX_PROGRAM_ATTRIB_COMPONENTS_NV 0x8908 +#define GL_MAX_PROGRAM_RESULT_COMPONENTS_NV 0x8909 +#define GL_MAX_PROGRAM_GENERIC_ATTRIBS_NV 0x8DA5 +#define GL_MAX_PROGRAM_GENERIC_RESULTS_NV 0x8DA6 +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERIIVNVPROC) (GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERIUIVNVPROC) (GLenum target, GLuint index, GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERIIVNVPROC) (GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERIUIVNVPROC) (GLenum target, GLuint index, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramLocalParameterI4iNV (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glProgramLocalParameterI4ivNV (GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glProgramLocalParametersI4ivNV (GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramLocalParameterI4uiNV (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glProgramLocalParameterI4uivNV (GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glProgramLocalParametersI4uivNV (GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glProgramEnvParameterI4iNV (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glProgramEnvParameterI4ivNV (GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glProgramEnvParametersI4ivNV (GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramEnvParameterI4uiNV (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glProgramEnvParameterI4uivNV (GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glProgramEnvParametersI4uivNV (GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetProgramLocalParameterIivNV (GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetProgramLocalParameterIuivNV (GLenum target, GLuint index, GLuint *params); +GLAPI void APIENTRY glGetProgramEnvParameterIivNV (GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetProgramEnvParameterIuivNV (GLenum target, GLuint index, GLuint *params); +#endif +#endif /* GL_NV_gpu_program4 */ + +#ifndef GL_NV_gpu_program5 +#define GL_NV_gpu_program5 1 +#define GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV 0x8E5A +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5C +#define GL_FRAGMENT_PROGRAM_INTERPOLATION_OFFSET_BITS_NV 0x8E5D +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5F +#define GL_MAX_PROGRAM_SUBROUTINE_PARAMETERS_NV 0x8F44 +#define GL_MAX_PROGRAM_SUBROUTINE_NUM_NV 0x8F45 +typedef void (APIENTRYP PFNGLPROGRAMSUBROUTINEPARAMETERSUIVNVPROC) (GLenum target, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSUBROUTINEPARAMETERUIVNVPROC) (GLenum target, GLuint index, GLuint *param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramSubroutineParametersuivNV (GLenum target, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetProgramSubroutineParameteruivNV (GLenum target, GLuint index, GLuint *param); +#endif +#endif /* GL_NV_gpu_program5 */ + +#ifndef GL_NV_gpu_program5_mem_extended +#define GL_NV_gpu_program5_mem_extended 1 +#endif /* GL_NV_gpu_program5_mem_extended */ + +#ifndef GL_NV_gpu_shader5 +#define GL_NV_gpu_shader5 1 +#endif /* GL_NV_gpu_shader5 */ + +#ifndef GL_NV_half_float +#define GL_NV_half_float 1 +typedef unsigned short GLhalfNV; +#define GL_HALF_FLOAT_NV 0x140B +typedef void (APIENTRYP PFNGLVERTEX2HNVPROC) (GLhalfNV x, GLhalfNV y); +typedef void (APIENTRYP PFNGLVERTEX2HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEX3HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z); +typedef void (APIENTRYP PFNGLVERTEX3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEX4HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +typedef void (APIENTRYP PFNGLVERTEX4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLNORMAL3HNVPROC) (GLhalfNV nx, GLhalfNV ny, GLhalfNV nz); +typedef void (APIENTRYP PFNGLNORMAL3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +typedef void (APIENTRYP PFNGLCOLOR3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLCOLOR4HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue, GLhalfNV alpha); +typedef void (APIENTRYP PFNGLCOLOR4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD1HNVPROC) (GLhalfNV s); +typedef void (APIENTRYP PFNGLTEXCOORD1HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD2HNVPROC) (GLhalfNV s, GLhalfNV t); +typedef void (APIENTRYP PFNGLTEXCOORD2HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD3HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r); +typedef void (APIENTRYP PFNGLTEXCOORD3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD4HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +typedef void (APIENTRYP PFNGLTEXCOORD4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1HNVPROC) (GLenum target, GLhalfNV s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLFOGCOORDHNVPROC) (GLhalfNV fog); +typedef void (APIENTRYP PFNGLFOGCOORDHVNVPROC) (const GLhalfNV *fog); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTHNVPROC) (GLhalfNV weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTHVNVPROC) (const GLhalfNV *weight); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1HNVPROC) (GLuint index, GLhalfNV x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertex2hNV (GLhalfNV x, GLhalfNV y); +GLAPI void APIENTRY glVertex2hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertex3hNV (GLhalfNV x, GLhalfNV y, GLhalfNV z); +GLAPI void APIENTRY glVertex3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertex4hNV (GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +GLAPI void APIENTRY glVertex4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glNormal3hNV (GLhalfNV nx, GLhalfNV ny, GLhalfNV nz); +GLAPI void APIENTRY glNormal3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glColor3hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +GLAPI void APIENTRY glColor3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glColor4hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue, GLhalfNV alpha); +GLAPI void APIENTRY glColor4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord1hNV (GLhalfNV s); +GLAPI void APIENTRY glTexCoord1hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord2hNV (GLhalfNV s, GLhalfNV t); +GLAPI void APIENTRY glTexCoord2hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord3hNV (GLhalfNV s, GLhalfNV t, GLhalfNV r); +GLAPI void APIENTRY glTexCoord3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord4hNV (GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +GLAPI void APIENTRY glTexCoord4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord1hNV (GLenum target, GLhalfNV s); +GLAPI void APIENTRY glMultiTexCoord1hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord2hNV (GLenum target, GLhalfNV s, GLhalfNV t); +GLAPI void APIENTRY glMultiTexCoord2hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord3hNV (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r); +GLAPI void APIENTRY glMultiTexCoord3hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord4hNV (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +GLAPI void APIENTRY glMultiTexCoord4hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glFogCoordhNV (GLhalfNV fog); +GLAPI void APIENTRY glFogCoordhvNV (const GLhalfNV *fog); +GLAPI void APIENTRY glSecondaryColor3hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +GLAPI void APIENTRY glSecondaryColor3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertexWeighthNV (GLhalfNV weight); +GLAPI void APIENTRY glVertexWeighthvNV (const GLhalfNV *weight); +GLAPI void APIENTRY glVertexAttrib1hNV (GLuint index, GLhalfNV x); +GLAPI void APIENTRY glVertexAttrib1hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib2hNV (GLuint index, GLhalfNV x, GLhalfNV y); +GLAPI void APIENTRY glVertexAttrib2hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib3hNV (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z); +GLAPI void APIENTRY glVertexAttrib3hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib4hNV (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +GLAPI void APIENTRY glVertexAttrib4hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs1hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs2hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs3hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs4hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +#endif +#endif /* GL_NV_half_float */ + +#ifndef GL_NV_internalformat_sample_query +#define GL_NV_internalformat_sample_query 1 +#define GL_MULTISAMPLES_NV 0x9371 +#define GL_SUPERSAMPLE_SCALE_X_NV 0x9372 +#define GL_SUPERSAMPLE_SCALE_Y_NV 0x9373 +#define GL_CONFORMANT_NV 0x9374 +typedef void (APIENTRYP PFNGLGETINTERNALFORMATSAMPLEIVNVPROC) (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetInternalformatSampleivNV (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#endif +#endif /* GL_NV_internalformat_sample_query */ + +#ifndef GL_NV_light_max_exponent +#define GL_NV_light_max_exponent 1 +#define GL_MAX_SHININESS_NV 0x8504 +#define GL_MAX_SPOT_EXPONENT_NV 0x8505 +#endif /* GL_NV_light_max_exponent */ + +#ifndef GL_NV_memory_attachment +#define GL_NV_memory_attachment 1 +#define GL_ATTACHED_MEMORY_OBJECT_NV 0x95A4 +#define GL_ATTACHED_MEMORY_OFFSET_NV 0x95A5 +#define GL_MEMORY_ATTACHABLE_ALIGNMENT_NV 0x95A6 +#define GL_MEMORY_ATTACHABLE_SIZE_NV 0x95A7 +#define GL_MEMORY_ATTACHABLE_NV 0x95A8 +#define GL_DETACHED_MEMORY_INCARNATION_NV 0x95A9 +#define GL_DETACHED_TEXTURES_NV 0x95AA +#define GL_DETACHED_BUFFERS_NV 0x95AB +#define GL_MAX_DETACHED_TEXTURES_NV 0x95AC +#define GL_MAX_DETACHED_BUFFERS_NV 0x95AD +typedef void (APIENTRYP PFNGLGETMEMORYOBJECTDETACHEDRESOURCESUIVNVPROC) (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +typedef void (APIENTRYP PFNGLRESETMEMORYOBJECTPARAMETERNVPROC) (GLuint memory, GLenum pname); +typedef void (APIENTRYP PFNGLTEXATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLBUFFERATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTUREATTACHMEMORYNVPROC) (GLuint texture, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLNAMEDBUFFERATTACHMEMORYNVPROC) (GLuint buffer, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetMemoryObjectDetachedResourcesuivNV (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +GLAPI void APIENTRY glResetMemoryObjectParameterNV (GLuint memory, GLenum pname); +GLAPI void APIENTRY glTexAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glBufferAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureAttachMemoryNV (GLuint texture, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glNamedBufferAttachMemoryNV (GLuint buffer, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_NV_memory_attachment */ + +#ifndef GL_NV_memory_object_sparse +#define GL_NV_memory_object_sparse 1 +typedef void (APIENTRYP PFNGLBUFFERPAGECOMMITMENTMEMNVPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (APIENTRYP PFNGLTEXPAGECOMMITMENTMEMNVPROC) (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTMEMNVPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (APIENTRYP PFNGLTEXTUREPAGECOMMITMENTMEMNVPROC) (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferPageCommitmentMemNV (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GLAPI void APIENTRY glTexPageCommitmentMemNV (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentMemNV (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GLAPI void APIENTRY glTexturePageCommitmentMemNV (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#endif +#endif /* GL_NV_memory_object_sparse */ + +#ifndef GL_NV_mesh_shader +#define GL_NV_mesh_shader 1 +#define GL_MESH_SHADER_NV 0x9559 +#define GL_TASK_SHADER_NV 0x955A +#define GL_MAX_MESH_UNIFORM_BLOCKS_NV 0x8E60 +#define GL_MAX_MESH_TEXTURE_IMAGE_UNITS_NV 0x8E61 +#define GL_MAX_MESH_IMAGE_UNIFORMS_NV 0x8E62 +#define GL_MAX_MESH_UNIFORM_COMPONENTS_NV 0x8E63 +#define GL_MAX_MESH_ATOMIC_COUNTER_BUFFERS_NV 0x8E64 +#define GL_MAX_MESH_ATOMIC_COUNTERS_NV 0x8E65 +#define GL_MAX_MESH_SHADER_STORAGE_BLOCKS_NV 0x8E66 +#define GL_MAX_COMBINED_MESH_UNIFORM_COMPONENTS_NV 0x8E67 +#define GL_MAX_TASK_UNIFORM_BLOCKS_NV 0x8E68 +#define GL_MAX_TASK_TEXTURE_IMAGE_UNITS_NV 0x8E69 +#define GL_MAX_TASK_IMAGE_UNIFORMS_NV 0x8E6A +#define GL_MAX_TASK_UNIFORM_COMPONENTS_NV 0x8E6B +#define GL_MAX_TASK_ATOMIC_COUNTER_BUFFERS_NV 0x8E6C +#define GL_MAX_TASK_ATOMIC_COUNTERS_NV 0x8E6D +#define GL_MAX_TASK_SHADER_STORAGE_BLOCKS_NV 0x8E6E +#define GL_MAX_COMBINED_TASK_UNIFORM_COMPONENTS_NV 0x8E6F +#define GL_MAX_MESH_WORK_GROUP_INVOCATIONS_NV 0x95A2 +#define GL_MAX_TASK_WORK_GROUP_INVOCATIONS_NV 0x95A3 +#define GL_MAX_MESH_TOTAL_MEMORY_SIZE_NV 0x9536 +#define GL_MAX_TASK_TOTAL_MEMORY_SIZE_NV 0x9537 +#define GL_MAX_MESH_OUTPUT_VERTICES_NV 0x9538 +#define GL_MAX_MESH_OUTPUT_PRIMITIVES_NV 0x9539 +#define GL_MAX_TASK_OUTPUT_COUNT_NV 0x953A +#define GL_MAX_DRAW_MESH_TASKS_COUNT_NV 0x953D +#define GL_MAX_MESH_VIEWS_NV 0x9557 +#define GL_MESH_OUTPUT_PER_VERTEX_GRANULARITY_NV 0x92DF +#define GL_MESH_OUTPUT_PER_PRIMITIVE_GRANULARITY_NV 0x9543 +#define GL_MAX_MESH_WORK_GROUP_SIZE_NV 0x953B +#define GL_MAX_TASK_WORK_GROUP_SIZE_NV 0x953C +#define GL_MESH_WORK_GROUP_SIZE_NV 0x953E +#define GL_TASK_WORK_GROUP_SIZE_NV 0x953F +#define GL_MESH_VERTICES_OUT_NV 0x9579 +#define GL_MESH_PRIMITIVES_OUT_NV 0x957A +#define GL_MESH_OUTPUT_TYPE_NV 0x957B +#define GL_UNIFORM_BLOCK_REFERENCED_BY_MESH_SHADER_NV 0x959C +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TASK_SHADER_NV 0x959D +#define GL_REFERENCED_BY_MESH_SHADER_NV 0x95A0 +#define GL_REFERENCED_BY_TASK_SHADER_NV 0x95A1 +#define GL_MESH_SHADER_BIT_NV 0x00000040 +#define GL_TASK_SHADER_BIT_NV 0x00000080 +#define GL_MESH_SUBROUTINE_NV 0x957C +#define GL_TASK_SUBROUTINE_NV 0x957D +#define GL_MESH_SUBROUTINE_UNIFORM_NV 0x957E +#define GL_TASK_SUBROUTINE_UNIFORM_NV 0x957F +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_MESH_SHADER_NV 0x959E +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TASK_SHADER_NV 0x959F +typedef void (APIENTRYP PFNGLDRAWMESHTASKSNVPROC) (GLuint first, GLuint count); +typedef void (APIENTRYP PFNGLDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect); +typedef void (APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect, GLsizei drawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTCOUNTNVPROC) (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawMeshTasksNV (GLuint first, GLuint count); +GLAPI void APIENTRY glDrawMeshTasksIndirectNV (GLintptr indirect); +GLAPI void APIENTRY glMultiDrawMeshTasksIndirectNV (GLintptr indirect, GLsizei drawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawMeshTasksIndirectCountNV (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_NV_mesh_shader */ + +#ifndef GL_NV_multisample_coverage +#define GL_NV_multisample_coverage 1 +#endif /* GL_NV_multisample_coverage */ + +#ifndef GL_NV_multisample_filter_hint +#define GL_NV_multisample_filter_hint 1 +#define GL_MULTISAMPLE_FILTER_HINT_NV 0x8534 +#endif /* GL_NV_multisample_filter_hint */ + +#ifndef GL_NV_occlusion_query +#define GL_NV_occlusion_query 1 +#define GL_PIXEL_COUNTER_BITS_NV 0x8864 +#define GL_CURRENT_OCCLUSION_QUERY_ID_NV 0x8865 +#define GL_PIXEL_COUNT_NV 0x8866 +#define GL_PIXEL_COUNT_AVAILABLE_NV 0x8867 +typedef void (APIENTRYP PFNGLGENOCCLUSIONQUERIESNVPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEOCCLUSIONQUERIESNVPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISOCCLUSIONQUERYNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINOCCLUSIONQUERYNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLENDOCCLUSIONQUERYNVPROC) (void); +typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYIVNVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYUIVNVPROC) (GLuint id, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenOcclusionQueriesNV (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteOcclusionQueriesNV (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsOcclusionQueryNV (GLuint id); +GLAPI void APIENTRY glBeginOcclusionQueryNV (GLuint id); +GLAPI void APIENTRY glEndOcclusionQueryNV (void); +GLAPI void APIENTRY glGetOcclusionQueryivNV (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetOcclusionQueryuivNV (GLuint id, GLenum pname, GLuint *params); +#endif +#endif /* GL_NV_occlusion_query */ + +#ifndef GL_NV_packed_depth_stencil +#define GL_NV_packed_depth_stencil 1 +#define GL_DEPTH_STENCIL_NV 0x84F9 +#define GL_UNSIGNED_INT_24_8_NV 0x84FA +#endif /* GL_NV_packed_depth_stencil */ + +#ifndef GL_NV_parameter_buffer_object +#define GL_NV_parameter_buffer_object 1 +#define GL_MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV 0x8DA0 +#define GL_MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV 0x8DA1 +#define GL_VERTEX_PROGRAM_PARAMETER_BUFFER_NV 0x8DA2 +#define GL_GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV 0x8DA3 +#define GL_FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV 0x8DA4 +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSFVNVPROC) (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSIIVNVPROC) (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSIUIVNVPROC) (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramBufferParametersfvNV (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glProgramBufferParametersIivNV (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramBufferParametersIuivNV (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLuint *params); +#endif +#endif /* GL_NV_parameter_buffer_object */ + +#ifndef GL_NV_parameter_buffer_object2 +#define GL_NV_parameter_buffer_object2 1 +#endif /* GL_NV_parameter_buffer_object2 */ + +#ifndef GL_NV_path_rendering +#define GL_NV_path_rendering 1 +#define GL_PATH_FORMAT_SVG_NV 0x9070 +#define GL_PATH_FORMAT_PS_NV 0x9071 +#define GL_STANDARD_FONT_NAME_NV 0x9072 +#define GL_SYSTEM_FONT_NAME_NV 0x9073 +#define GL_FILE_NAME_NV 0x9074 +#define GL_PATH_STROKE_WIDTH_NV 0x9075 +#define GL_PATH_END_CAPS_NV 0x9076 +#define GL_PATH_INITIAL_END_CAP_NV 0x9077 +#define GL_PATH_TERMINAL_END_CAP_NV 0x9078 +#define GL_PATH_JOIN_STYLE_NV 0x9079 +#define GL_PATH_MITER_LIMIT_NV 0x907A +#define GL_PATH_DASH_CAPS_NV 0x907B +#define GL_PATH_INITIAL_DASH_CAP_NV 0x907C +#define GL_PATH_TERMINAL_DASH_CAP_NV 0x907D +#define GL_PATH_DASH_OFFSET_NV 0x907E +#define GL_PATH_CLIENT_LENGTH_NV 0x907F +#define GL_PATH_FILL_MODE_NV 0x9080 +#define GL_PATH_FILL_MASK_NV 0x9081 +#define GL_PATH_FILL_COVER_MODE_NV 0x9082 +#define GL_PATH_STROKE_COVER_MODE_NV 0x9083 +#define GL_PATH_STROKE_MASK_NV 0x9084 +#define GL_COUNT_UP_NV 0x9088 +#define GL_COUNT_DOWN_NV 0x9089 +#define GL_PATH_OBJECT_BOUNDING_BOX_NV 0x908A +#define GL_CONVEX_HULL_NV 0x908B +#define GL_BOUNDING_BOX_NV 0x908D +#define GL_TRANSLATE_X_NV 0x908E +#define GL_TRANSLATE_Y_NV 0x908F +#define GL_TRANSLATE_2D_NV 0x9090 +#define GL_TRANSLATE_3D_NV 0x9091 +#define GL_AFFINE_2D_NV 0x9092 +#define GL_AFFINE_3D_NV 0x9094 +#define GL_TRANSPOSE_AFFINE_2D_NV 0x9096 +#define GL_TRANSPOSE_AFFINE_3D_NV 0x9098 +#define GL_UTF8_NV 0x909A +#define GL_UTF16_NV 0x909B +#define GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV 0x909C +#define GL_PATH_COMMAND_COUNT_NV 0x909D +#define GL_PATH_COORD_COUNT_NV 0x909E +#define GL_PATH_DASH_ARRAY_COUNT_NV 0x909F +#define GL_PATH_COMPUTED_LENGTH_NV 0x90A0 +#define GL_PATH_FILL_BOUNDING_BOX_NV 0x90A1 +#define GL_PATH_STROKE_BOUNDING_BOX_NV 0x90A2 +#define GL_SQUARE_NV 0x90A3 +#define GL_ROUND_NV 0x90A4 +#define GL_TRIANGULAR_NV 0x90A5 +#define GL_BEVEL_NV 0x90A6 +#define GL_MITER_REVERT_NV 0x90A7 +#define GL_MITER_TRUNCATE_NV 0x90A8 +#define GL_SKIP_MISSING_GLYPH_NV 0x90A9 +#define GL_USE_MISSING_GLYPH_NV 0x90AA +#define GL_PATH_ERROR_POSITION_NV 0x90AB +#define GL_ACCUM_ADJACENT_PAIRS_NV 0x90AD +#define GL_ADJACENT_PAIRS_NV 0x90AE +#define GL_FIRST_TO_REST_NV 0x90AF +#define GL_PATH_GEN_MODE_NV 0x90B0 +#define GL_PATH_GEN_COEFF_NV 0x90B1 +#define GL_PATH_GEN_COMPONENTS_NV 0x90B3 +#define GL_PATH_STENCIL_FUNC_NV 0x90B7 +#define GL_PATH_STENCIL_REF_NV 0x90B8 +#define GL_PATH_STENCIL_VALUE_MASK_NV 0x90B9 +#define GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV 0x90BD +#define GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV 0x90BE +#define GL_PATH_COVER_DEPTH_FUNC_NV 0x90BF +#define GL_PATH_DASH_OFFSET_RESET_NV 0x90B4 +#define GL_MOVE_TO_RESETS_NV 0x90B5 +#define GL_MOVE_TO_CONTINUES_NV 0x90B6 +#define GL_CLOSE_PATH_NV 0x00 +#define GL_MOVE_TO_NV 0x02 +#define GL_RELATIVE_MOVE_TO_NV 0x03 +#define GL_LINE_TO_NV 0x04 +#define GL_RELATIVE_LINE_TO_NV 0x05 +#define GL_HORIZONTAL_LINE_TO_NV 0x06 +#define GL_RELATIVE_HORIZONTAL_LINE_TO_NV 0x07 +#define GL_VERTICAL_LINE_TO_NV 0x08 +#define GL_RELATIVE_VERTICAL_LINE_TO_NV 0x09 +#define GL_QUADRATIC_CURVE_TO_NV 0x0A +#define GL_RELATIVE_QUADRATIC_CURVE_TO_NV 0x0B +#define GL_CUBIC_CURVE_TO_NV 0x0C +#define GL_RELATIVE_CUBIC_CURVE_TO_NV 0x0D +#define GL_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0E +#define GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0F +#define GL_SMOOTH_CUBIC_CURVE_TO_NV 0x10 +#define GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV 0x11 +#define GL_SMALL_CCW_ARC_TO_NV 0x12 +#define GL_RELATIVE_SMALL_CCW_ARC_TO_NV 0x13 +#define GL_SMALL_CW_ARC_TO_NV 0x14 +#define GL_RELATIVE_SMALL_CW_ARC_TO_NV 0x15 +#define GL_LARGE_CCW_ARC_TO_NV 0x16 +#define GL_RELATIVE_LARGE_CCW_ARC_TO_NV 0x17 +#define GL_LARGE_CW_ARC_TO_NV 0x18 +#define GL_RELATIVE_LARGE_CW_ARC_TO_NV 0x19 +#define GL_RESTART_PATH_NV 0xF0 +#define GL_DUP_FIRST_CUBIC_CURVE_TO_NV 0xF2 +#define GL_DUP_LAST_CUBIC_CURVE_TO_NV 0xF4 +#define GL_RECT_NV 0xF6 +#define GL_CIRCULAR_CCW_ARC_TO_NV 0xF8 +#define GL_CIRCULAR_CW_ARC_TO_NV 0xFA +#define GL_CIRCULAR_TANGENT_ARC_TO_NV 0xFC +#define GL_ARC_TO_NV 0xFE +#define GL_RELATIVE_ARC_TO_NV 0xFF +#define GL_BOLD_BIT_NV 0x01 +#define GL_ITALIC_BIT_NV 0x02 +#define GL_GLYPH_WIDTH_BIT_NV 0x01 +#define GL_GLYPH_HEIGHT_BIT_NV 0x02 +#define GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV 0x04 +#define GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV 0x08 +#define GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV 0x10 +#define GL_GLYPH_VERTICAL_BEARING_X_BIT_NV 0x20 +#define GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV 0x40 +#define GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV 0x80 +#define GL_GLYPH_HAS_KERNING_BIT_NV 0x100 +#define GL_FONT_X_MIN_BOUNDS_BIT_NV 0x00010000 +#define GL_FONT_Y_MIN_BOUNDS_BIT_NV 0x00020000 +#define GL_FONT_X_MAX_BOUNDS_BIT_NV 0x00040000 +#define GL_FONT_Y_MAX_BOUNDS_BIT_NV 0x00080000 +#define GL_FONT_UNITS_PER_EM_BIT_NV 0x00100000 +#define GL_FONT_ASCENDER_BIT_NV 0x00200000 +#define GL_FONT_DESCENDER_BIT_NV 0x00400000 +#define GL_FONT_HEIGHT_BIT_NV 0x00800000 +#define GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV 0x01000000 +#define GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV 0x02000000 +#define GL_FONT_UNDERLINE_POSITION_BIT_NV 0x04000000 +#define GL_FONT_UNDERLINE_THICKNESS_BIT_NV 0x08000000 +#define GL_FONT_HAS_KERNING_BIT_NV 0x10000000 +#define GL_ROUNDED_RECT_NV 0xE8 +#define GL_RELATIVE_ROUNDED_RECT_NV 0xE9 +#define GL_ROUNDED_RECT2_NV 0xEA +#define GL_RELATIVE_ROUNDED_RECT2_NV 0xEB +#define GL_ROUNDED_RECT4_NV 0xEC +#define GL_RELATIVE_ROUNDED_RECT4_NV 0xED +#define GL_ROUNDED_RECT8_NV 0xEE +#define GL_RELATIVE_ROUNDED_RECT8_NV 0xEF +#define GL_RELATIVE_RECT_NV 0xF7 +#define GL_FONT_GLYPHS_AVAILABLE_NV 0x9368 +#define GL_FONT_TARGET_UNAVAILABLE_NV 0x9369 +#define GL_FONT_UNAVAILABLE_NV 0x936A +#define GL_FONT_UNINTELLIGIBLE_NV 0x936B +#define GL_CONIC_CURVE_TO_NV 0x1A +#define GL_RELATIVE_CONIC_CURVE_TO_NV 0x1B +#define GL_FONT_NUM_GLYPH_INDICES_BIT_NV 0x20000000 +#define GL_STANDARD_FONT_FORMAT_NV 0x936C +#define GL_2_BYTES_NV 0x1407 +#define GL_3_BYTES_NV 0x1408 +#define GL_4_BYTES_NV 0x1409 +#define GL_EYE_LINEAR_NV 0x2400 +#define GL_OBJECT_LINEAR_NV 0x2401 +#define GL_CONSTANT_NV 0x8576 +#define GL_PATH_FOG_GEN_MODE_NV 0x90AC +#define GL_PRIMARY_COLOR_NV 0x852C +#define GL_SECONDARY_COLOR_NV 0x852D +#define GL_PATH_GEN_COLOR_FORMAT_NV 0x90B2 +#define GL_PATH_PROJECTION_NV 0x1701 +#define GL_PATH_MODELVIEW_NV 0x1700 +#define GL_PATH_MODELVIEW_STACK_DEPTH_NV 0x0BA3 +#define GL_PATH_MODELVIEW_MATRIX_NV 0x0BA6 +#define GL_PATH_MAX_MODELVIEW_STACK_DEPTH_NV 0x0D36 +#define GL_PATH_TRANSPOSE_MODELVIEW_MATRIX_NV 0x84E3 +#define GL_PATH_PROJECTION_STACK_DEPTH_NV 0x0BA4 +#define GL_PATH_PROJECTION_MATRIX_NV 0x0BA7 +#define GL_PATH_MAX_PROJECTION_STACK_DEPTH_NV 0x0D38 +#define GL_PATH_TRANSPOSE_PROJECTION_MATRIX_NV 0x84E4 +#define GL_FRAGMENT_INPUT_NV 0x936D +typedef GLuint (APIENTRYP PFNGLGENPATHSNVPROC) (GLsizei range); +typedef void (APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); +typedef GLboolean (APIENTRYP PFNGLISPATHNVPROC) (GLuint path); +typedef void (APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); +typedef void (APIENTRYP PFNGLPATHGLYPHSNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (APIENTRYP PFNGLPATHGLYPHRANGENVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (APIENTRYP PFNGLWEIGHTPATHSNVPROC) (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +typedef void (APIENTRYP PFNGLCOPYPATHNVPROC) (GLuint resultPath, GLuint srcPath); +typedef void (APIENTRYP PFNGLINTERPOLATEPATHSNVPROC) (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +typedef void (APIENTRYP PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, const GLint *value); +typedef void (APIENTRYP PFNGLPATHPARAMETERINVPROC) (GLuint path, GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, const GLfloat *value); +typedef void (APIENTRYP PFNGLPATHPARAMETERFNVPROC) (GLuint path, GLenum pname, GLfloat value); +typedef void (APIENTRYP PFNGLPATHDASHARRAYNVPROC) (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +typedef void (APIENTRYP PFNGLPATHSTENCILFUNCNVPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (APIENTRYP PFNGLPATHSTENCILDEPTHOFFSETNVPROC) (GLfloat factor, GLfloat units); +typedef void (APIENTRYP PFNGLSTENCILFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask); +typedef void (APIENTRYP PFNGLSTENCILSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask); +typedef void (APIENTRYP PFNGLSTENCILFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLSTENCILSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLPATHCOVERDEPTHFUNCNVPROC) (GLenum func); +typedef void (APIENTRYP PFNGLCOVERFILLPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (APIENTRYP PFNGLCOVERSTROKEPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (APIENTRYP PFNGLCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLGETPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, GLfloat *value); +typedef void (APIENTRYP PFNGLGETPATHCOMMANDSNVPROC) (GLuint path, GLubyte *commands); +typedef void (APIENTRYP PFNGLGETPATHCOORDSNVPROC) (GLuint path, GLfloat *coords); +typedef void (APIENTRYP PFNGLGETPATHDASHARRAYNVPROC) (GLuint path, GLfloat *dashArray); +typedef void (APIENTRYP PFNGLGETPATHMETRICSNVPROC) (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +typedef void (APIENTRYP PFNGLGETPATHMETRICRANGENVPROC) (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +typedef void (APIENTRYP PFNGLGETPATHSPACINGNVPROC) (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +typedef GLboolean (APIENTRYP PFNGLISPOINTINFILLPATHNVPROC) (GLuint path, GLuint mask, GLfloat x, GLfloat y); +typedef GLboolean (APIENTRYP PFNGLISPOINTINSTROKEPATHNVPROC) (GLuint path, GLfloat x, GLfloat y); +typedef GLfloat (APIENTRYP PFNGLGETPATHLENGTHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments); +typedef GLboolean (APIENTRYP PFNGLPOINTALONGPATHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +typedef void (APIENTRYP PFNGLMATRIXLOAD3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOAD3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULT3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULT3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef GLenum (APIENTRYP PFNGLPATHGLYPHINDEXRANGENVPROC) (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +typedef GLenum (APIENTRYP PFNGLPATHGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef GLenum (APIENTRYP PFNGLPATHMEMORYGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (APIENTRYP PFNGLPROGRAMPATHFRAGMENTINPUTGENNVPROC) (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCEFVNVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +typedef void (APIENTRYP PFNGLPATHCOLORGENNVPROC) (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLPATHTEXGENNVPROC) (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLPATHFOGGENNVPROC) (GLenum genMode); +typedef void (APIENTRYP PFNGLGETPATHCOLORGENIVNVPROC) (GLenum color, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHCOLORGENFVNVPROC) (GLenum color, GLenum pname, GLfloat *value); +typedef void (APIENTRYP PFNGLGETPATHTEXGENIVNVPROC) (GLenum texCoordSet, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHTEXGENFVNVPROC) (GLenum texCoordSet, GLenum pname, GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glGenPathsNV (GLsizei range); +GLAPI void APIENTRY glDeletePathsNV (GLuint path, GLsizei range); +GLAPI GLboolean APIENTRY glIsPathNV (GLuint path); +GLAPI void APIENTRY glPathCommandsNV (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathCoordsNV (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathSubCommandsNV (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathSubCoordsNV (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathStringNV (GLuint path, GLenum format, GLsizei length, const void *pathString); +GLAPI void APIENTRY glPathGlyphsNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI void APIENTRY glPathGlyphRangeNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI void APIENTRY glWeightPathsNV (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +GLAPI void APIENTRY glCopyPathNV (GLuint resultPath, GLuint srcPath); +GLAPI void APIENTRY glInterpolatePathsNV (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +GLAPI void APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glPathParameterivNV (GLuint path, GLenum pname, const GLint *value); +GLAPI void APIENTRY glPathParameteriNV (GLuint path, GLenum pname, GLint value); +GLAPI void APIENTRY glPathParameterfvNV (GLuint path, GLenum pname, const GLfloat *value); +GLAPI void APIENTRY glPathParameterfNV (GLuint path, GLenum pname, GLfloat value); +GLAPI void APIENTRY glPathDashArrayNV (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +GLAPI void APIENTRY glPathStencilFuncNV (GLenum func, GLint ref, GLuint mask); +GLAPI void APIENTRY glPathStencilDepthOffsetNV (GLfloat factor, GLfloat units); +GLAPI void APIENTRY glStencilFillPathNV (GLuint path, GLenum fillMode, GLuint mask); +GLAPI void APIENTRY glStencilStrokePathNV (GLuint path, GLint reference, GLuint mask); +GLAPI void APIENTRY glStencilFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glStencilStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glPathCoverDepthFuncNV (GLenum func); +GLAPI void APIENTRY glCoverFillPathNV (GLuint path, GLenum coverMode); +GLAPI void APIENTRY glCoverStrokePathNV (GLuint path, GLenum coverMode); +GLAPI void APIENTRY glCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glGetPathParameterivNV (GLuint path, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathParameterfvNV (GLuint path, GLenum pname, GLfloat *value); +GLAPI void APIENTRY glGetPathCommandsNV (GLuint path, GLubyte *commands); +GLAPI void APIENTRY glGetPathCoordsNV (GLuint path, GLfloat *coords); +GLAPI void APIENTRY glGetPathDashArrayNV (GLuint path, GLfloat *dashArray); +GLAPI void APIENTRY glGetPathMetricsNV (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +GLAPI void APIENTRY glGetPathMetricRangeNV (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +GLAPI void APIENTRY glGetPathSpacingNV (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +GLAPI GLboolean APIENTRY glIsPointInFillPathNV (GLuint path, GLuint mask, GLfloat x, GLfloat y); +GLAPI GLboolean APIENTRY glIsPointInStrokePathNV (GLuint path, GLfloat x, GLfloat y); +GLAPI GLfloat APIENTRY glGetPathLengthNV (GLuint path, GLsizei startSegment, GLsizei numSegments); +GLAPI GLboolean APIENTRY glPointAlongPathNV (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +GLAPI void APIENTRY glMatrixLoad3x2fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoad3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoadTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMult3x2fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMult3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glStencilThenCoverFillPathNV (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +GLAPI void APIENTRY glStencilThenCoverStrokePathNV (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +GLAPI void APIENTRY glStencilThenCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glStencilThenCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI GLenum APIENTRY glPathGlyphIndexRangeNV (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +GLAPI GLenum APIENTRY glPathGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI GLenum APIENTRY glPathMemoryGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI void APIENTRY glProgramPathFragmentInputGenNV (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +GLAPI void APIENTRY glGetProgramResourcefvNV (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +GLAPI void APIENTRY glPathColorGenNV (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat *coeffs); +GLAPI void APIENTRY glPathTexGenNV (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat *coeffs); +GLAPI void APIENTRY glPathFogGenNV (GLenum genMode); +GLAPI void APIENTRY glGetPathColorGenivNV (GLenum color, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathColorGenfvNV (GLenum color, GLenum pname, GLfloat *value); +GLAPI void APIENTRY glGetPathTexGenivNV (GLenum texCoordSet, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathTexGenfvNV (GLenum texCoordSet, GLenum pname, GLfloat *value); +#endif +#endif /* GL_NV_path_rendering */ + +#ifndef GL_NV_path_rendering_shared_edge +#define GL_NV_path_rendering_shared_edge 1 +#define GL_SHARED_EDGE_NV 0xC0 +#endif /* GL_NV_path_rendering_shared_edge */ + +#ifndef GL_NV_pixel_data_range +#define GL_NV_pixel_data_range 1 +#define GL_WRITE_PIXEL_DATA_RANGE_NV 0x8878 +#define GL_READ_PIXEL_DATA_RANGE_NV 0x8879 +#define GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV 0x887A +#define GL_READ_PIXEL_DATA_RANGE_LENGTH_NV 0x887B +#define GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV 0x887C +#define GL_READ_PIXEL_DATA_RANGE_POINTER_NV 0x887D +typedef void (APIENTRYP PFNGLPIXELDATARANGENVPROC) (GLenum target, GLsizei length, const void *pointer); +typedef void (APIENTRYP PFNGLFLUSHPIXELDATARANGENVPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelDataRangeNV (GLenum target, GLsizei length, const void *pointer); +GLAPI void APIENTRY glFlushPixelDataRangeNV (GLenum target); +#endif +#endif /* GL_NV_pixel_data_range */ + +#ifndef GL_NV_point_sprite +#define GL_NV_point_sprite 1 +#define GL_POINT_SPRITE_NV 0x8861 +#define GL_COORD_REPLACE_NV 0x8862 +#define GL_POINT_SPRITE_R_MODE_NV 0x8863 +typedef void (APIENTRYP PFNGLPOINTPARAMETERINVPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIVNVPROC) (GLenum pname, const GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameteriNV (GLenum pname, GLint param); +GLAPI void APIENTRY glPointParameterivNV (GLenum pname, const GLint *params); +#endif +#endif /* GL_NV_point_sprite */ + +#ifndef GL_NV_present_video +#define GL_NV_present_video 1 +#define GL_FRAME_NV 0x8E26 +#define GL_FIELDS_NV 0x8E27 +#define GL_CURRENT_TIME_NV 0x8E28 +#define GL_NUM_FILL_STREAMS_NV 0x8E29 +#define GL_PRESENT_TIME_NV 0x8E2A +#define GL_PRESENT_DURATION_NV 0x8E2B +typedef void (APIENTRYP PFNGLPRESENTFRAMEKEYEDNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1); +typedef void (APIENTRYP PFNGLPRESENTFRAMEDUALFILLNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLenum target1, GLuint fill1, GLenum target2, GLuint fill2, GLenum target3, GLuint fill3); +typedef void (APIENTRYP PFNGLGETVIDEOIVNVPROC) (GLuint video_slot, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOUIVNVPROC) (GLuint video_slot, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLGETVIDEOI64VNVPROC) (GLuint video_slot, GLenum pname, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETVIDEOUI64VNVPROC) (GLuint video_slot, GLenum pname, GLuint64EXT *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPresentFrameKeyedNV (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1); +GLAPI void APIENTRY glPresentFrameDualFillNV (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLenum target1, GLuint fill1, GLenum target2, GLuint fill2, GLenum target3, GLuint fill3); +GLAPI void APIENTRY glGetVideoivNV (GLuint video_slot, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideouivNV (GLuint video_slot, GLenum pname, GLuint *params); +GLAPI void APIENTRY glGetVideoi64vNV (GLuint video_slot, GLenum pname, GLint64EXT *params); +GLAPI void APIENTRY glGetVideoui64vNV (GLuint video_slot, GLenum pname, GLuint64EXT *params); +#endif +#endif /* GL_NV_present_video */ + +#ifndef GL_NV_primitive_restart +#define GL_NV_primitive_restart 1 +#define GL_PRIMITIVE_RESTART_NV 0x8558 +#define GL_PRIMITIVE_RESTART_INDEX_NV 0x8559 +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTNVPROC) (void); +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXNVPROC) (GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPrimitiveRestartNV (void); +GLAPI void APIENTRY glPrimitiveRestartIndexNV (GLuint index); +#endif +#endif /* GL_NV_primitive_restart */ + +#ifndef GL_NV_primitive_shading_rate +#define GL_NV_primitive_shading_rate 1 +#define GL_SHADING_RATE_IMAGE_PER_PRIMITIVE_NV 0x95B1 +#define GL_SHADING_RATE_IMAGE_PALETTE_COUNT_NV 0x95B2 +#endif /* GL_NV_primitive_shading_rate */ + +#ifndef GL_NV_query_resource +#define GL_NV_query_resource 1 +#define GL_QUERY_RESOURCE_TYPE_VIDMEM_ALLOC_NV 0x9540 +#define GL_QUERY_RESOURCE_MEMTYPE_VIDMEM_NV 0x9542 +#define GL_QUERY_RESOURCE_SYS_RESERVED_NV 0x9544 +#define GL_QUERY_RESOURCE_TEXTURE_NV 0x9545 +#define GL_QUERY_RESOURCE_RENDERBUFFER_NV 0x9546 +#define GL_QUERY_RESOURCE_BUFFEROBJECT_NV 0x9547 +typedef GLint (APIENTRYP PFNGLQUERYRESOURCENVPROC) (GLenum queryType, GLint tagId, GLuint count, GLint *buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLint APIENTRY glQueryResourceNV (GLenum queryType, GLint tagId, GLuint count, GLint *buffer); +#endif +#endif /* GL_NV_query_resource */ + +#ifndef GL_NV_query_resource_tag +#define GL_NV_query_resource_tag 1 +typedef void (APIENTRYP PFNGLGENQUERYRESOURCETAGNVPROC) (GLsizei n, GLint *tagIds); +typedef void (APIENTRYP PFNGLDELETEQUERYRESOURCETAGNVPROC) (GLsizei n, const GLint *tagIds); +typedef void (APIENTRYP PFNGLQUERYRESOURCETAGNVPROC) (GLint tagId, const GLchar *tagString); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueryResourceTagNV (GLsizei n, GLint *tagIds); +GLAPI void APIENTRY glDeleteQueryResourceTagNV (GLsizei n, const GLint *tagIds); +GLAPI void APIENTRY glQueryResourceTagNV (GLint tagId, const GLchar *tagString); +#endif +#endif /* GL_NV_query_resource_tag */ + +#ifndef GL_NV_register_combiners +#define GL_NV_register_combiners 1 +#define GL_REGISTER_COMBINERS_NV 0x8522 +#define GL_VARIABLE_A_NV 0x8523 +#define GL_VARIABLE_B_NV 0x8524 +#define GL_VARIABLE_C_NV 0x8525 +#define GL_VARIABLE_D_NV 0x8526 +#define GL_VARIABLE_E_NV 0x8527 +#define GL_VARIABLE_F_NV 0x8528 +#define GL_VARIABLE_G_NV 0x8529 +#define GL_CONSTANT_COLOR0_NV 0x852A +#define GL_CONSTANT_COLOR1_NV 0x852B +#define GL_SPARE0_NV 0x852E +#define GL_SPARE1_NV 0x852F +#define GL_DISCARD_NV 0x8530 +#define GL_E_TIMES_F_NV 0x8531 +#define GL_SPARE0_PLUS_SECONDARY_COLOR_NV 0x8532 +#define GL_UNSIGNED_IDENTITY_NV 0x8536 +#define GL_UNSIGNED_INVERT_NV 0x8537 +#define GL_EXPAND_NORMAL_NV 0x8538 +#define GL_EXPAND_NEGATE_NV 0x8539 +#define GL_HALF_BIAS_NORMAL_NV 0x853A +#define GL_HALF_BIAS_NEGATE_NV 0x853B +#define GL_SIGNED_IDENTITY_NV 0x853C +#define GL_SIGNED_NEGATE_NV 0x853D +#define GL_SCALE_BY_TWO_NV 0x853E +#define GL_SCALE_BY_FOUR_NV 0x853F +#define GL_SCALE_BY_ONE_HALF_NV 0x8540 +#define GL_BIAS_BY_NEGATIVE_ONE_HALF_NV 0x8541 +#define GL_COMBINER_INPUT_NV 0x8542 +#define GL_COMBINER_MAPPING_NV 0x8543 +#define GL_COMBINER_COMPONENT_USAGE_NV 0x8544 +#define GL_COMBINER_AB_DOT_PRODUCT_NV 0x8545 +#define GL_COMBINER_CD_DOT_PRODUCT_NV 0x8546 +#define GL_COMBINER_MUX_SUM_NV 0x8547 +#define GL_COMBINER_SCALE_NV 0x8548 +#define GL_COMBINER_BIAS_NV 0x8549 +#define GL_COMBINER_AB_OUTPUT_NV 0x854A +#define GL_COMBINER_CD_OUTPUT_NV 0x854B +#define GL_COMBINER_SUM_OUTPUT_NV 0x854C +#define GL_MAX_GENERAL_COMBINERS_NV 0x854D +#define GL_NUM_GENERAL_COMBINERS_NV 0x854E +#define GL_COLOR_SUM_CLAMP_NV 0x854F +#define GL_COMBINER0_NV 0x8550 +#define GL_COMBINER1_NV 0x8551 +#define GL_COMBINER2_NV 0x8552 +#define GL_COMBINER3_NV 0x8553 +#define GL_COMBINER4_NV 0x8554 +#define GL_COMBINER5_NV 0x8555 +#define GL_COMBINER6_NV 0x8556 +#define GL_COMBINER7_NV 0x8557 +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFVNVPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFNVPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERIVNVPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERINVPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLCOMBINERINPUTNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +typedef void (APIENTRYP PFNGLCOMBINEROUTPUTNVPROC) (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); +typedef void (APIENTRYP PFNGLFINALCOMBINERINPUTNVPROC) (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC) (GLenum variable, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC) (GLenum variable, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCombinerParameterfvNV (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glCombinerParameterfNV (GLenum pname, GLfloat param); +GLAPI void APIENTRY glCombinerParameterivNV (GLenum pname, const GLint *params); +GLAPI void APIENTRY glCombinerParameteriNV (GLenum pname, GLint param); +GLAPI void APIENTRY glCombinerInputNV (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +GLAPI void APIENTRY glCombinerOutputNV (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); +GLAPI void APIENTRY glFinalCombinerInputNV (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +GLAPI void APIENTRY glGetCombinerInputParameterfvNV (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetCombinerInputParameterivNV (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetCombinerOutputParameterfvNV (GLenum stage, GLenum portion, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetCombinerOutputParameterivNV (GLenum stage, GLenum portion, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetFinalCombinerInputParameterfvNV (GLenum variable, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFinalCombinerInputParameterivNV (GLenum variable, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_register_combiners */ + +#ifndef GL_NV_register_combiners2 +#define GL_NV_register_combiners2 1 +#define GL_PER_STAGE_CONSTANTS_NV 0x8535 +typedef void (APIENTRYP PFNGLCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCombinerStageParameterfvNV (GLenum stage, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetCombinerStageParameterfvNV (GLenum stage, GLenum pname, GLfloat *params); +#endif +#endif /* GL_NV_register_combiners2 */ + +#ifndef GL_NV_representative_fragment_test +#define GL_NV_representative_fragment_test 1 +#define GL_REPRESENTATIVE_FRAGMENT_TEST_NV 0x937F +#endif /* GL_NV_representative_fragment_test */ + +#ifndef GL_NV_robustness_video_memory_purge +#define GL_NV_robustness_video_memory_purge 1 +#define GL_PURGED_CONTEXT_RESET_NV 0x92BB +#endif /* GL_NV_robustness_video_memory_purge */ + +#ifndef GL_NV_sample_locations +#define GL_NV_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_NV 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_NV 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_NV 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_NV 0x9340 +#define GL_SAMPLE_LOCATION_NV 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_NV 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_NV 0x9343 +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLRESOLVEDEPTHVALUESNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSampleLocationsfvNV (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glNamedFramebufferSampleLocationsfvNV (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glResolveDepthValuesNV (void); +#endif +#endif /* GL_NV_sample_locations */ + +#ifndef GL_NV_sample_mask_override_coverage +#define GL_NV_sample_mask_override_coverage 1 +#endif /* GL_NV_sample_mask_override_coverage */ + +#ifndef GL_NV_scissor_exclusive +#define GL_NV_scissor_exclusive 1 +#define GL_SCISSOR_TEST_EXCLUSIVE_NV 0x9555 +#define GL_SCISSOR_BOX_EXCLUSIVE_NV 0x9556 +typedef void (APIENTRYP PFNGLSCISSOREXCLUSIVENVPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLSCISSOREXCLUSIVEARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glScissorExclusiveNV (GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glScissorExclusiveArrayvNV (GLuint first, GLsizei count, const GLint *v); +#endif +#endif /* GL_NV_scissor_exclusive */ + +#ifndef GL_NV_shader_atomic_counters +#define GL_NV_shader_atomic_counters 1 +#endif /* GL_NV_shader_atomic_counters */ + +#ifndef GL_NV_shader_atomic_float +#define GL_NV_shader_atomic_float 1 +#endif /* GL_NV_shader_atomic_float */ + +#ifndef GL_NV_shader_atomic_float64 +#define GL_NV_shader_atomic_float64 1 +#endif /* GL_NV_shader_atomic_float64 */ + +#ifndef GL_NV_shader_atomic_fp16_vector +#define GL_NV_shader_atomic_fp16_vector 1 +#endif /* GL_NV_shader_atomic_fp16_vector */ + +#ifndef GL_NV_shader_atomic_int64 +#define GL_NV_shader_atomic_int64 1 +#endif /* GL_NV_shader_atomic_int64 */ + +#ifndef GL_NV_shader_buffer_load +#define GL_NV_shader_buffer_load 1 +#define GL_BUFFER_GPU_ADDRESS_NV 0x8F1D +#define GL_GPU_ADDRESS_NV 0x8F34 +#define GL_MAX_SHADER_BUFFER_ADDRESS_NV 0x8F35 +typedef void (APIENTRYP PFNGLMAKEBUFFERRESIDENTNVPROC) (GLenum target, GLenum access); +typedef void (APIENTRYP PFNGLMAKEBUFFERNONRESIDENTNVPROC) (GLenum target); +typedef GLboolean (APIENTRYP PFNGLISBUFFERRESIDENTNVPROC) (GLenum target); +typedef void (APIENTRYP PFNGLMAKENAMEDBUFFERRESIDENTNVPROC) (GLuint buffer, GLenum access); +typedef void (APIENTRYP PFNGLMAKENAMEDBUFFERNONRESIDENTNVPROC) (GLuint buffer); +typedef GLboolean (APIENTRYP PFNGLISNAMEDBUFFERRESIDENTNVPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERUI64VNVPROC) (GLenum target, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERUI64VNVPROC) (GLuint buffer, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLGETINTEGERUI64VNVPROC) (GLenum value, GLuint64EXT *result); +typedef void (APIENTRYP PFNGLUNIFORMUI64NVPROC) (GLint location, GLuint64EXT value); +typedef void (APIENTRYP PFNGLUNIFORMUI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMUI64NVPROC) (GLuint program, GLint location, GLuint64EXT value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMakeBufferResidentNV (GLenum target, GLenum access); +GLAPI void APIENTRY glMakeBufferNonResidentNV (GLenum target); +GLAPI GLboolean APIENTRY glIsBufferResidentNV (GLenum target); +GLAPI void APIENTRY glMakeNamedBufferResidentNV (GLuint buffer, GLenum access); +GLAPI void APIENTRY glMakeNamedBufferNonResidentNV (GLuint buffer); +GLAPI GLboolean APIENTRY glIsNamedBufferResidentNV (GLuint buffer); +GLAPI void APIENTRY glGetBufferParameterui64vNV (GLenum target, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glGetNamedBufferParameterui64vNV (GLuint buffer, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glGetIntegerui64vNV (GLenum value, GLuint64EXT *result); +GLAPI void APIENTRY glUniformui64NV (GLint location, GLuint64EXT value); +GLAPI void APIENTRY glUniformui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniformui64NV (GLuint program, GLint location, GLuint64EXT value); +GLAPI void APIENTRY glProgramUniformui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif +#endif /* GL_NV_shader_buffer_load */ + +#ifndef GL_NV_shader_buffer_store +#define GL_NV_shader_buffer_store 1 +#define GL_SHADER_GLOBAL_ACCESS_BARRIER_BIT_NV 0x00000010 +#endif /* GL_NV_shader_buffer_store */ + +#ifndef GL_NV_shader_storage_buffer_object +#define GL_NV_shader_storage_buffer_object 1 +#endif /* GL_NV_shader_storage_buffer_object */ + +#ifndef GL_NV_shader_subgroup_partitioned +#define GL_NV_shader_subgroup_partitioned 1 +#define GL_SUBGROUP_FEATURE_PARTITIONED_BIT_NV 0x00000100 +#endif /* GL_NV_shader_subgroup_partitioned */ + +#ifndef GL_NV_shader_texture_footprint +#define GL_NV_shader_texture_footprint 1 +#endif /* GL_NV_shader_texture_footprint */ + +#ifndef GL_NV_shader_thread_group +#define GL_NV_shader_thread_group 1 +#define GL_WARP_SIZE_NV 0x9339 +#define GL_WARPS_PER_SM_NV 0x933A +#define GL_SM_COUNT_NV 0x933B +#endif /* GL_NV_shader_thread_group */ + +#ifndef GL_NV_shader_thread_shuffle +#define GL_NV_shader_thread_shuffle 1 +#endif /* GL_NV_shader_thread_shuffle */ + +#ifndef GL_NV_shading_rate_image +#define GL_NV_shading_rate_image 1 +#define GL_SHADING_RATE_IMAGE_NV 0x9563 +#define GL_SHADING_RATE_NO_INVOCATIONS_NV 0x9564 +#define GL_SHADING_RATE_1_INVOCATION_PER_PIXEL_NV 0x9565 +#define GL_SHADING_RATE_1_INVOCATION_PER_1X2_PIXELS_NV 0x9566 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X1_PIXELS_NV 0x9567 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X2_PIXELS_NV 0x9568 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X4_PIXELS_NV 0x9569 +#define GL_SHADING_RATE_1_INVOCATION_PER_4X2_PIXELS_NV 0x956A +#define GL_SHADING_RATE_1_INVOCATION_PER_4X4_PIXELS_NV 0x956B +#define GL_SHADING_RATE_2_INVOCATIONS_PER_PIXEL_NV 0x956C +#define GL_SHADING_RATE_4_INVOCATIONS_PER_PIXEL_NV 0x956D +#define GL_SHADING_RATE_8_INVOCATIONS_PER_PIXEL_NV 0x956E +#define GL_SHADING_RATE_16_INVOCATIONS_PER_PIXEL_NV 0x956F +#define GL_SHADING_RATE_IMAGE_BINDING_NV 0x955B +#define GL_SHADING_RATE_IMAGE_TEXEL_WIDTH_NV 0x955C +#define GL_SHADING_RATE_IMAGE_TEXEL_HEIGHT_NV 0x955D +#define GL_SHADING_RATE_IMAGE_PALETTE_SIZE_NV 0x955E +#define GL_MAX_COARSE_FRAGMENT_SAMPLES_NV 0x955F +#define GL_SHADING_RATE_SAMPLE_ORDER_DEFAULT_NV 0x95AE +#define GL_SHADING_RATE_SAMPLE_ORDER_PIXEL_MAJOR_NV 0x95AF +#define GL_SHADING_RATE_SAMPLE_ORDER_SAMPLE_MAJOR_NV 0x95B0 +typedef void (APIENTRYP PFNGLBINDSHADINGRATEIMAGENVPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLGETSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint entry, GLenum *rate); +typedef void (APIENTRYP PFNGLGETSHADINGRATESAMPLELOCATIONIVNVPROC) (GLenum rate, GLuint samples, GLuint index, GLint *location); +typedef void (APIENTRYP PFNGLSHADINGRATEIMAGEBARRIERNVPROC) (GLboolean synchronize); +typedef void (APIENTRYP PFNGLSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +typedef void (APIENTRYP PFNGLSHADINGRATESAMPLEORDERNVPROC) (GLenum order); +typedef void (APIENTRYP PFNGLSHADINGRATESAMPLEORDERCUSTOMNVPROC) (GLenum rate, GLuint samples, const GLint *locations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindShadingRateImageNV (GLuint texture); +GLAPI void APIENTRY glGetShadingRateImagePaletteNV (GLuint viewport, GLuint entry, GLenum *rate); +GLAPI void APIENTRY glGetShadingRateSampleLocationivNV (GLenum rate, GLuint samples, GLuint index, GLint *location); +GLAPI void APIENTRY glShadingRateImageBarrierNV (GLboolean synchronize); +GLAPI void APIENTRY glShadingRateImagePaletteNV (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +GLAPI void APIENTRY glShadingRateSampleOrderNV (GLenum order); +GLAPI void APIENTRY glShadingRateSampleOrderCustomNV (GLenum rate, GLuint samples, const GLint *locations); +#endif +#endif /* GL_NV_shading_rate_image */ + +#ifndef GL_NV_stereo_view_rendering +#define GL_NV_stereo_view_rendering 1 +#endif /* GL_NV_stereo_view_rendering */ + +#ifndef GL_NV_tessellation_program5 +#define GL_NV_tessellation_program5 1 +#define GL_MAX_PROGRAM_PATCH_ATTRIBS_NV 0x86D8 +#define GL_TESS_CONTROL_PROGRAM_NV 0x891E +#define GL_TESS_EVALUATION_PROGRAM_NV 0x891F +#define GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV 0x8C74 +#define GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV 0x8C75 +#endif /* GL_NV_tessellation_program5 */ + +#ifndef GL_NV_texgen_emboss +#define GL_NV_texgen_emboss 1 +#define GL_EMBOSS_LIGHT_NV 0x855D +#define GL_EMBOSS_CONSTANT_NV 0x855E +#define GL_EMBOSS_MAP_NV 0x855F +#endif /* GL_NV_texgen_emboss */ + +#ifndef GL_NV_texgen_reflection +#define GL_NV_texgen_reflection 1 +#define GL_NORMAL_MAP_NV 0x8511 +#define GL_REFLECTION_MAP_NV 0x8512 +#endif /* GL_NV_texgen_reflection */ + +#ifndef GL_NV_texture_barrier +#define GL_NV_texture_barrier 1 +typedef void (APIENTRYP PFNGLTEXTUREBARRIERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureBarrierNV (void); +#endif +#endif /* GL_NV_texture_barrier */ + +#ifndef GL_NV_texture_compression_vtc +#define GL_NV_texture_compression_vtc 1 +#endif /* GL_NV_texture_compression_vtc */ + +#ifndef GL_NV_texture_env_combine4 +#define GL_NV_texture_env_combine4 1 +#define GL_COMBINE4_NV 0x8503 +#define GL_SOURCE3_RGB_NV 0x8583 +#define GL_SOURCE3_ALPHA_NV 0x858B +#define GL_OPERAND3_RGB_NV 0x8593 +#define GL_OPERAND3_ALPHA_NV 0x859B +#endif /* GL_NV_texture_env_combine4 */ + +#ifndef GL_NV_texture_expand_normal +#define GL_NV_texture_expand_normal 1 +#define GL_TEXTURE_UNSIGNED_REMAP_MODE_NV 0x888F +#endif /* GL_NV_texture_expand_normal */ + +#ifndef GL_NV_texture_multisample +#define GL_NV_texture_multisample 1 +#define GL_TEXTURE_COVERAGE_SAMPLES_NV 0x9045 +#define GL_TEXTURE_COLOR_SAMPLES_NV 0x9046 +typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DMULTISAMPLENVPROC) (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DMULTISAMPLENVPROC) (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DMULTISAMPLECOVERAGENVPROC) (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DMULTISAMPLECOVERAGENVPROC) (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage2DMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTexImage3DMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage2DMultisampleNV (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage3DMultisampleNV (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage2DMultisampleCoverageNV (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage3DMultisampleCoverageNV (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +#endif +#endif /* GL_NV_texture_multisample */ + +#ifndef GL_NV_texture_rectangle +#define GL_NV_texture_rectangle 1 +#define GL_TEXTURE_RECTANGLE_NV 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE_NV 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE_NV 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE_NV 0x84F8 +#endif /* GL_NV_texture_rectangle */ + +#ifndef GL_NV_texture_rectangle_compressed +#define GL_NV_texture_rectangle_compressed 1 +#endif /* GL_NV_texture_rectangle_compressed */ + +#ifndef GL_NV_texture_shader +#define GL_NV_texture_shader 1 +#define GL_OFFSET_TEXTURE_RECTANGLE_NV 0x864C +#define GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV 0x864D +#define GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV 0x864E +#define GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV 0x86D9 +#define GL_UNSIGNED_INT_S8_S8_8_8_NV 0x86DA +#define GL_UNSIGNED_INT_8_8_S8_S8_REV_NV 0x86DB +#define GL_DSDT_MAG_INTENSITY_NV 0x86DC +#define GL_SHADER_CONSISTENT_NV 0x86DD +#define GL_TEXTURE_SHADER_NV 0x86DE +#define GL_SHADER_OPERATION_NV 0x86DF +#define GL_CULL_MODES_NV 0x86E0 +#define GL_OFFSET_TEXTURE_MATRIX_NV 0x86E1 +#define GL_OFFSET_TEXTURE_SCALE_NV 0x86E2 +#define GL_OFFSET_TEXTURE_BIAS_NV 0x86E3 +#define GL_OFFSET_TEXTURE_2D_MATRIX_NV 0x86E1 +#define GL_OFFSET_TEXTURE_2D_SCALE_NV 0x86E2 +#define GL_OFFSET_TEXTURE_2D_BIAS_NV 0x86E3 +#define GL_PREVIOUS_TEXTURE_INPUT_NV 0x86E4 +#define GL_CONST_EYE_NV 0x86E5 +#define GL_PASS_THROUGH_NV 0x86E6 +#define GL_CULL_FRAGMENT_NV 0x86E7 +#define GL_OFFSET_TEXTURE_2D_NV 0x86E8 +#define GL_DEPENDENT_AR_TEXTURE_2D_NV 0x86E9 +#define GL_DEPENDENT_GB_TEXTURE_2D_NV 0x86EA +#define GL_DOT_PRODUCT_NV 0x86EC +#define GL_DOT_PRODUCT_DEPTH_REPLACE_NV 0x86ED +#define GL_DOT_PRODUCT_TEXTURE_2D_NV 0x86EE +#define GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV 0x86F0 +#define GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV 0x86F1 +#define GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV 0x86F2 +#define GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV 0x86F3 +#define GL_HILO_NV 0x86F4 +#define GL_DSDT_NV 0x86F5 +#define GL_DSDT_MAG_NV 0x86F6 +#define GL_DSDT_MAG_VIB_NV 0x86F7 +#define GL_HILO16_NV 0x86F8 +#define GL_SIGNED_HILO_NV 0x86F9 +#define GL_SIGNED_HILO16_NV 0x86FA +#define GL_SIGNED_RGBA_NV 0x86FB +#define GL_SIGNED_RGBA8_NV 0x86FC +#define GL_SIGNED_RGB_NV 0x86FE +#define GL_SIGNED_RGB8_NV 0x86FF +#define GL_SIGNED_LUMINANCE_NV 0x8701 +#define GL_SIGNED_LUMINANCE8_NV 0x8702 +#define GL_SIGNED_LUMINANCE_ALPHA_NV 0x8703 +#define GL_SIGNED_LUMINANCE8_ALPHA8_NV 0x8704 +#define GL_SIGNED_ALPHA_NV 0x8705 +#define GL_SIGNED_ALPHA8_NV 0x8706 +#define GL_SIGNED_INTENSITY_NV 0x8707 +#define GL_SIGNED_INTENSITY8_NV 0x8708 +#define GL_DSDT8_NV 0x8709 +#define GL_DSDT8_MAG8_NV 0x870A +#define GL_DSDT8_MAG8_INTENSITY8_NV 0x870B +#define GL_SIGNED_RGB_UNSIGNED_ALPHA_NV 0x870C +#define GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV 0x870D +#define GL_HI_SCALE_NV 0x870E +#define GL_LO_SCALE_NV 0x870F +#define GL_DS_SCALE_NV 0x8710 +#define GL_DT_SCALE_NV 0x8711 +#define GL_MAGNITUDE_SCALE_NV 0x8712 +#define GL_VIBRANCE_SCALE_NV 0x8713 +#define GL_HI_BIAS_NV 0x8714 +#define GL_LO_BIAS_NV 0x8715 +#define GL_DS_BIAS_NV 0x8716 +#define GL_DT_BIAS_NV 0x8717 +#define GL_MAGNITUDE_BIAS_NV 0x8718 +#define GL_VIBRANCE_BIAS_NV 0x8719 +#define GL_TEXTURE_BORDER_VALUES_NV 0x871A +#define GL_TEXTURE_HI_SIZE_NV 0x871B +#define GL_TEXTURE_LO_SIZE_NV 0x871C +#define GL_TEXTURE_DS_SIZE_NV 0x871D +#define GL_TEXTURE_DT_SIZE_NV 0x871E +#define GL_TEXTURE_MAG_SIZE_NV 0x871F +#endif /* GL_NV_texture_shader */ + +#ifndef GL_NV_texture_shader2 +#define GL_NV_texture_shader2 1 +#define GL_DOT_PRODUCT_TEXTURE_3D_NV 0x86EF +#endif /* GL_NV_texture_shader2 */ + +#ifndef GL_NV_texture_shader3 +#define GL_NV_texture_shader3 1 +#define GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV 0x8850 +#define GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV 0x8851 +#define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8852 +#define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV 0x8853 +#define GL_OFFSET_HILO_TEXTURE_2D_NV 0x8854 +#define GL_OFFSET_HILO_TEXTURE_RECTANGLE_NV 0x8855 +#define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV 0x8856 +#define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8857 +#define GL_DEPENDENT_HILO_TEXTURE_2D_NV 0x8858 +#define GL_DEPENDENT_RGB_TEXTURE_3D_NV 0x8859 +#define GL_DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV 0x885A +#define GL_DOT_PRODUCT_PASS_THROUGH_NV 0x885B +#define GL_DOT_PRODUCT_TEXTURE_1D_NV 0x885C +#define GL_DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV 0x885D +#define GL_HILO8_NV 0x885E +#define GL_SIGNED_HILO8_NV 0x885F +#define GL_FORCE_BLUE_TO_ONE_NV 0x8860 +#endif /* GL_NV_texture_shader3 */ + +#ifndef GL_NV_timeline_semaphore +#define GL_NV_timeline_semaphore 1 +#define GL_TIMELINE_SEMAPHORE_VALUE_NV 0x9595 +#define GL_SEMAPHORE_TYPE_NV 0x95B3 +#define GL_SEMAPHORE_TYPE_BINARY_NV 0x95B4 +#define GL_SEMAPHORE_TYPE_TIMELINE_NV 0x95B5 +#define GL_MAX_TIMELINE_SEMAPHORE_VALUE_DIFFERENCE_NV 0x95B6 +typedef void (APIENTRYP PFNGLCREATESEMAPHORESNVPROC) (GLsizei n, GLuint *semaphores); +typedef void (APIENTRYP PFNGLSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCreateSemaphoresNV (GLsizei n, GLuint *semaphores); +GLAPI void APIENTRY glSemaphoreParameterivNV (GLuint semaphore, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetSemaphoreParameterivNV (GLuint semaphore, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_timeline_semaphore */ + +#ifndef GL_NV_transform_feedback +#define GL_NV_transform_feedback 1 +#define GL_BACK_PRIMARY_COLOR_NV 0x8C77 +#define GL_BACK_SECONDARY_COLOR_NV 0x8C78 +#define GL_TEXTURE_COORD_NV 0x8C79 +#define GL_CLIP_DISTANCE_NV 0x8C7A +#define GL_VERTEX_ID_NV 0x8C7B +#define GL_PRIMITIVE_ID_NV 0x8C7C +#define GL_GENERIC_ATTRIB_NV 0x8C7D +#define GL_TRANSFORM_FEEDBACK_ATTRIBS_NV 0x8C7E +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_NV 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_NV 0x8C80 +#define GL_ACTIVE_VARYINGS_NV 0x8C81 +#define GL_ACTIVE_VARYING_MAX_LENGTH_NV 0x8C82 +#define GL_TRANSFORM_FEEDBACK_VARYINGS_NV 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START_NV 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_NV 0x8C85 +#define GL_TRANSFORM_FEEDBACK_RECORD_NV 0x8C86 +#define GL_PRIMITIVES_GENERATED_NV 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_NV 0x8C88 +#define GL_RASTERIZER_DISCARD_NV 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_NV 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_NV 0x8C8B +#define GL_INTERLEAVED_ATTRIBS_NV 0x8C8C +#define GL_SEPARATE_ATTRIBS_NV 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER_NV 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_NV 0x8C8F +#define GL_LAYER_NV 0x8DAA +#define GL_NEXT_BUFFER_NV -2 +#define GL_SKIP_COMPONENTS4_NV -3 +#define GL_SKIP_COMPONENTS3_NV -4 +#define GL_SKIP_COMPONENTS2_NV -5 +#define GL_SKIP_COMPONENTS1_NV -6 +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKNVPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKATTRIBSNVPROC) (GLsizei count, const GLint *attribs, GLenum bufferMode); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGENVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFEROFFSETNVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +typedef void (APIENTRYP PFNGLBINDBUFFERBASENVPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSNVPROC) (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode); +typedef void (APIENTRYP PFNGLACTIVEVARYINGNVPROC) (GLuint program, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETVARYINGLOCATIONNVPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVEVARYINGNVPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGNVPROC) (GLuint program, GLuint index, GLint *location); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKSTREAMATTRIBSNVPROC) (GLsizei count, const GLint *attribs, GLsizei nbuffers, const GLint *bufstreams, GLenum bufferMode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginTransformFeedbackNV (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedbackNV (void); +GLAPI void APIENTRY glTransformFeedbackAttribsNV (GLsizei count, const GLint *attribs, GLenum bufferMode); +GLAPI void APIENTRY glBindBufferRangeNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferOffsetNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +GLAPI void APIENTRY glBindBufferBaseNV (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryingsNV (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode); +GLAPI void APIENTRY glActiveVaryingNV (GLuint program, const GLchar *name); +GLAPI GLint APIENTRY glGetVaryingLocationNV (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetActiveVaryingNV (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetTransformFeedbackVaryingNV (GLuint program, GLuint index, GLint *location); +GLAPI void APIENTRY glTransformFeedbackStreamAttribsNV (GLsizei count, const GLint *attribs, GLsizei nbuffers, const GLint *bufstreams, GLenum bufferMode); +#endif +#endif /* GL_NV_transform_feedback */ + +#ifndef GL_NV_transform_feedback2 +#define GL_NV_transform_feedback2 1 +#define GL_TRANSFORM_FEEDBACK_NV 0x8E22 +#define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED_NV 0x8E23 +#define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE_NV 0x8E24 +#define GL_TRANSFORM_FEEDBACK_BINDING_NV 0x8E25 +typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKNVPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSNVPROC) (GLsizei n, const GLuint *ids); +typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSNVPROC) (GLsizei n, GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKNVPROC) (GLenum mode, GLuint id); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindTransformFeedbackNV (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteTransformFeedbacksNV (GLsizei n, const GLuint *ids); +GLAPI void APIENTRY glGenTransformFeedbacksNV (GLsizei n, GLuint *ids); +GLAPI GLboolean APIENTRY glIsTransformFeedbackNV (GLuint id); +GLAPI void APIENTRY glPauseTransformFeedbackNV (void); +GLAPI void APIENTRY glResumeTransformFeedbackNV (void); +GLAPI void APIENTRY glDrawTransformFeedbackNV (GLenum mode, GLuint id); +#endif +#endif /* GL_NV_transform_feedback2 */ + +#ifndef GL_NV_uniform_buffer_unified_memory +#define GL_NV_uniform_buffer_unified_memory 1 +#define GL_UNIFORM_BUFFER_UNIFIED_NV 0x936E +#define GL_UNIFORM_BUFFER_ADDRESS_NV 0x936F +#define GL_UNIFORM_BUFFER_LENGTH_NV 0x9370 +#endif /* GL_NV_uniform_buffer_unified_memory */ + +#ifndef GL_NV_vdpau_interop +#define GL_NV_vdpau_interop 1 +typedef GLintptr GLvdpauSurfaceNV; +#define GL_SURFACE_STATE_NV 0x86EB +#define GL_SURFACE_REGISTERED_NV 0x86FD +#define GL_SURFACE_MAPPED_NV 0x8700 +#define GL_WRITE_DISCARD_NV 0x88BE +typedef void (APIENTRYP PFNGLVDPAUINITNVPROC) (const void *vdpDevice, const void *getProcAddress); +typedef void (APIENTRYP PFNGLVDPAUFININVPROC) (void); +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTERVIDEOSURFACENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTEROUTPUTSURFACENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +typedef GLboolean (APIENTRYP PFNGLVDPAUISSURFACENVPROC) (GLvdpauSurfaceNV surface); +typedef void (APIENTRYP PFNGLVDPAUUNREGISTERSURFACENVPROC) (GLvdpauSurfaceNV surface); +typedef void (APIENTRYP PFNGLVDPAUGETSURFACEIVNVPROC) (GLvdpauSurfaceNV surface, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +typedef void (APIENTRYP PFNGLVDPAUSURFACEACCESSNVPROC) (GLvdpauSurfaceNV surface, GLenum access); +typedef void (APIENTRYP PFNGLVDPAUMAPSURFACESNVPROC) (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces); +typedef void (APIENTRYP PFNGLVDPAUUNMAPSURFACESNVPROC) (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVDPAUInitNV (const void *vdpDevice, const void *getProcAddress); +GLAPI void APIENTRY glVDPAUFiniNV (void); +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterVideoSurfaceNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterOutputSurfaceNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +GLAPI GLboolean APIENTRY glVDPAUIsSurfaceNV (GLvdpauSurfaceNV surface); +GLAPI void APIENTRY glVDPAUUnregisterSurfaceNV (GLvdpauSurfaceNV surface); +GLAPI void APIENTRY glVDPAUGetSurfaceivNV (GLvdpauSurfaceNV surface, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +GLAPI void APIENTRY glVDPAUSurfaceAccessNV (GLvdpauSurfaceNV surface, GLenum access); +GLAPI void APIENTRY glVDPAUMapSurfacesNV (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces); +GLAPI void APIENTRY glVDPAUUnmapSurfacesNV (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces); +#endif +#endif /* GL_NV_vdpau_interop */ + +#ifndef GL_NV_vdpau_interop2 +#define GL_NV_vdpau_interop2 1 +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTERVIDEOSURFACEWITHPICTURESTRUCTURENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames, GLboolean isFrameStructure); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterVideoSurfaceWithPictureStructureNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames, GLboolean isFrameStructure); +#endif +#endif /* GL_NV_vdpau_interop2 */ + +#ifndef GL_NV_vertex_array_range +#define GL_NV_vertex_array_range 1 +#define GL_VERTEX_ARRAY_RANGE_NV 0x851D +#define GL_VERTEX_ARRAY_RANGE_LENGTH_NV 0x851E +#define GL_VERTEX_ARRAY_RANGE_VALID_NV 0x851F +#define GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV 0x8520 +#define GL_VERTEX_ARRAY_RANGE_POINTER_NV 0x8521 +typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGENVPROC) (void); +typedef void (APIENTRYP PFNGLVERTEXARRAYRANGENVPROC) (GLsizei length, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushVertexArrayRangeNV (void); +GLAPI void APIENTRY glVertexArrayRangeNV (GLsizei length, const void *pointer); +#endif +#endif /* GL_NV_vertex_array_range */ + +#ifndef GL_NV_vertex_array_range2 +#define GL_NV_vertex_array_range2 1 +#define GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV 0x8533 +#endif /* GL_NV_vertex_array_range2 */ + +#ifndef GL_NV_vertex_attrib_integer_64bit +#define GL_NV_vertex_attrib_integer_64bit 1 +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1I64NVPROC) (GLuint index, GLint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64NVPROC) (GLuint index, GLuint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLI64VNVPROC) (GLuint index, GLenum pname, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLUI64VNVPROC) (GLuint index, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribL1i64NV (GLuint index, GLint64EXT x); +GLAPI void APIENTRY glVertexAttribL2i64NV (GLuint index, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glVertexAttribL3i64NV (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glVertexAttribL4i64NV (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glVertexAttribL1i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL2i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL3i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL4i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL1ui64NV (GLuint index, GLuint64EXT x); +GLAPI void APIENTRY glVertexAttribL2ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glVertexAttribL3ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glVertexAttribL4ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glVertexAttribL1ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL2ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL3ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL4ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glGetVertexAttribLi64vNV (GLuint index, GLenum pname, GLint64EXT *params); +GLAPI void APIENTRY glGetVertexAttribLui64vNV (GLuint index, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glVertexAttribLFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride); +#endif +#endif /* GL_NV_vertex_attrib_integer_64bit */ + +#ifndef GL_NV_vertex_buffer_unified_memory +#define GL_NV_vertex_buffer_unified_memory 1 +#define GL_VERTEX_ATTRIB_ARRAY_UNIFIED_NV 0x8F1E +#define GL_ELEMENT_ARRAY_UNIFIED_NV 0x8F1F +#define GL_VERTEX_ATTRIB_ARRAY_ADDRESS_NV 0x8F20 +#define GL_VERTEX_ARRAY_ADDRESS_NV 0x8F21 +#define GL_NORMAL_ARRAY_ADDRESS_NV 0x8F22 +#define GL_COLOR_ARRAY_ADDRESS_NV 0x8F23 +#define GL_INDEX_ARRAY_ADDRESS_NV 0x8F24 +#define GL_TEXTURE_COORD_ARRAY_ADDRESS_NV 0x8F25 +#define GL_EDGE_FLAG_ARRAY_ADDRESS_NV 0x8F26 +#define GL_SECONDARY_COLOR_ARRAY_ADDRESS_NV 0x8F27 +#define GL_FOG_COORD_ARRAY_ADDRESS_NV 0x8F28 +#define GL_ELEMENT_ARRAY_ADDRESS_NV 0x8F29 +#define GL_VERTEX_ATTRIB_ARRAY_LENGTH_NV 0x8F2A +#define GL_VERTEX_ARRAY_LENGTH_NV 0x8F2B +#define GL_NORMAL_ARRAY_LENGTH_NV 0x8F2C +#define GL_COLOR_ARRAY_LENGTH_NV 0x8F2D +#define GL_INDEX_ARRAY_LENGTH_NV 0x8F2E +#define GL_TEXTURE_COORD_ARRAY_LENGTH_NV 0x8F2F +#define GL_EDGE_FLAG_ARRAY_LENGTH_NV 0x8F30 +#define GL_SECONDARY_COLOR_ARRAY_LENGTH_NV 0x8F31 +#define GL_FOG_COORD_ARRAY_LENGTH_NV 0x8F32 +#define GL_ELEMENT_ARRAY_LENGTH_NV 0x8F33 +#define GL_DRAW_INDIRECT_UNIFIED_NV 0x8F40 +#define GL_DRAW_INDIRECT_ADDRESS_NV 0x8F41 +#define GL_DRAW_INDIRECT_LENGTH_NV 0x8F42 +typedef void (APIENTRYP PFNGLBUFFERADDRESSRANGENVPROC) (GLenum pname, GLuint index, GLuint64EXT address, GLsizeiptr length); +typedef void (APIENTRYP PFNGLVERTEXFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLNORMALFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLINDEXFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLTEXCOORDFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLEDGEFLAGFORMATNVPROC) (GLsizei stride); +typedef void (APIENTRYP PFNGLSECONDARYCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLFOGCOORDFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLGETINTEGERUI64I_VNVPROC) (GLenum value, GLuint index, GLuint64EXT *result); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferAddressRangeNV (GLenum pname, GLuint index, GLuint64EXT address, GLsizeiptr length); +GLAPI void APIENTRY glVertexFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glNormalFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glColorFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glIndexFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glTexCoordFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glEdgeFlagFormatNV (GLsizei stride); +GLAPI void APIENTRY glSecondaryColorFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glFogCoordFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glVertexAttribFormatNV (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride); +GLAPI void APIENTRY glVertexAttribIFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glGetIntegerui64i_vNV (GLenum value, GLuint index, GLuint64EXT *result); +#endif +#endif /* GL_NV_vertex_buffer_unified_memory */ + +#ifndef GL_NV_vertex_program +#define GL_NV_vertex_program 1 +#define GL_VERTEX_PROGRAM_NV 0x8620 +#define GL_VERTEX_STATE_PROGRAM_NV 0x8621 +#define GL_ATTRIB_ARRAY_SIZE_NV 0x8623 +#define GL_ATTRIB_ARRAY_STRIDE_NV 0x8624 +#define GL_ATTRIB_ARRAY_TYPE_NV 0x8625 +#define GL_CURRENT_ATTRIB_NV 0x8626 +#define GL_PROGRAM_LENGTH_NV 0x8627 +#define GL_PROGRAM_STRING_NV 0x8628 +#define GL_MODELVIEW_PROJECTION_NV 0x8629 +#define GL_IDENTITY_NV 0x862A +#define GL_INVERSE_NV 0x862B +#define GL_TRANSPOSE_NV 0x862C +#define GL_INVERSE_TRANSPOSE_NV 0x862D +#define GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV 0x862E +#define GL_MAX_TRACK_MATRICES_NV 0x862F +#define GL_MATRIX0_NV 0x8630 +#define GL_MATRIX1_NV 0x8631 +#define GL_MATRIX2_NV 0x8632 +#define GL_MATRIX3_NV 0x8633 +#define GL_MATRIX4_NV 0x8634 +#define GL_MATRIX5_NV 0x8635 +#define GL_MATRIX6_NV 0x8636 +#define GL_MATRIX7_NV 0x8637 +#define GL_CURRENT_MATRIX_STACK_DEPTH_NV 0x8640 +#define GL_CURRENT_MATRIX_NV 0x8641 +#define GL_VERTEX_PROGRAM_POINT_SIZE_NV 0x8642 +#define GL_VERTEX_PROGRAM_TWO_SIDE_NV 0x8643 +#define GL_PROGRAM_PARAMETER_NV 0x8644 +#define GL_ATTRIB_ARRAY_POINTER_NV 0x8645 +#define GL_PROGRAM_TARGET_NV 0x8646 +#define GL_PROGRAM_RESIDENT_NV 0x8647 +#define GL_TRACK_MATRIX_NV 0x8648 +#define GL_TRACK_MATRIX_TRANSFORM_NV 0x8649 +#define GL_VERTEX_PROGRAM_BINDING_NV 0x864A +#define GL_PROGRAM_ERROR_POSITION_NV 0x864B +#define GL_VERTEX_ATTRIB_ARRAY0_NV 0x8650 +#define GL_VERTEX_ATTRIB_ARRAY1_NV 0x8651 +#define GL_VERTEX_ATTRIB_ARRAY2_NV 0x8652 +#define GL_VERTEX_ATTRIB_ARRAY3_NV 0x8653 +#define GL_VERTEX_ATTRIB_ARRAY4_NV 0x8654 +#define GL_VERTEX_ATTRIB_ARRAY5_NV 0x8655 +#define GL_VERTEX_ATTRIB_ARRAY6_NV 0x8656 +#define GL_VERTEX_ATTRIB_ARRAY7_NV 0x8657 +#define GL_VERTEX_ATTRIB_ARRAY8_NV 0x8658 +#define GL_VERTEX_ATTRIB_ARRAY9_NV 0x8659 +#define GL_VERTEX_ATTRIB_ARRAY10_NV 0x865A +#define GL_VERTEX_ATTRIB_ARRAY11_NV 0x865B +#define GL_VERTEX_ATTRIB_ARRAY12_NV 0x865C +#define GL_VERTEX_ATTRIB_ARRAY13_NV 0x865D +#define GL_VERTEX_ATTRIB_ARRAY14_NV 0x865E +#define GL_VERTEX_ATTRIB_ARRAY15_NV 0x865F +#define GL_MAP1_VERTEX_ATTRIB0_4_NV 0x8660 +#define GL_MAP1_VERTEX_ATTRIB1_4_NV 0x8661 +#define GL_MAP1_VERTEX_ATTRIB2_4_NV 0x8662 +#define GL_MAP1_VERTEX_ATTRIB3_4_NV 0x8663 +#define GL_MAP1_VERTEX_ATTRIB4_4_NV 0x8664 +#define GL_MAP1_VERTEX_ATTRIB5_4_NV 0x8665 +#define GL_MAP1_VERTEX_ATTRIB6_4_NV 0x8666 +#define GL_MAP1_VERTEX_ATTRIB7_4_NV 0x8667 +#define GL_MAP1_VERTEX_ATTRIB8_4_NV 0x8668 +#define GL_MAP1_VERTEX_ATTRIB9_4_NV 0x8669 +#define GL_MAP1_VERTEX_ATTRIB10_4_NV 0x866A +#define GL_MAP1_VERTEX_ATTRIB11_4_NV 0x866B +#define GL_MAP1_VERTEX_ATTRIB12_4_NV 0x866C +#define GL_MAP1_VERTEX_ATTRIB13_4_NV 0x866D +#define GL_MAP1_VERTEX_ATTRIB14_4_NV 0x866E +#define GL_MAP1_VERTEX_ATTRIB15_4_NV 0x866F +#define GL_MAP2_VERTEX_ATTRIB0_4_NV 0x8670 +#define GL_MAP2_VERTEX_ATTRIB1_4_NV 0x8671 +#define GL_MAP2_VERTEX_ATTRIB2_4_NV 0x8672 +#define GL_MAP2_VERTEX_ATTRIB3_4_NV 0x8673 +#define GL_MAP2_VERTEX_ATTRIB4_4_NV 0x8674 +#define GL_MAP2_VERTEX_ATTRIB5_4_NV 0x8675 +#define GL_MAP2_VERTEX_ATTRIB6_4_NV 0x8676 +#define GL_MAP2_VERTEX_ATTRIB7_4_NV 0x8677 +#define GL_MAP2_VERTEX_ATTRIB8_4_NV 0x8678 +#define GL_MAP2_VERTEX_ATTRIB9_4_NV 0x8679 +#define GL_MAP2_VERTEX_ATTRIB10_4_NV 0x867A +#define GL_MAP2_VERTEX_ATTRIB11_4_NV 0x867B +#define GL_MAP2_VERTEX_ATTRIB12_4_NV 0x867C +#define GL_MAP2_VERTEX_ATTRIB13_4_NV 0x867D +#define GL_MAP2_VERTEX_ATTRIB14_4_NV 0x867E +#define GL_MAP2_VERTEX_ATTRIB15_4_NV 0x867F +typedef GLboolean (APIENTRYP PFNGLAREPROGRAMSRESIDENTNVPROC) (GLsizei n, const GLuint *programs, GLboolean *residences); +typedef void (APIENTRYP PFNGLBINDPROGRAMNVPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETEPROGRAMSNVPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLEXECUTEPROGRAMNVPROC) (GLenum target, GLuint id, const GLfloat *params); +typedef void (APIENTRYP PFNGLGENPROGRAMSNVPROC) (GLsizei n, GLuint *programs); +typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERDVNVPROC) (GLenum target, GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMIVNVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGNVPROC) (GLuint id, GLenum pname, GLubyte *program); +typedef void (APIENTRYP PFNGLGETTRACKMATRIXIVNVPROC) (GLenum target, GLuint address, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVNVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVNVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVNVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVNVPROC) (GLuint index, GLenum pname, void **pointer); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLLOADPROGRAMNVPROC) (GLenum target, GLuint id, GLsizei len, const GLubyte *program); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DNVPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DVNVPROC) (GLenum target, GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FNVPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FVNVPROC) (GLenum target, GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4DVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4FVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLREQUESTRESIDENTPROGRAMSNVPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLTRACKMATRIXNVPROC) (GLenum target, GLuint address, GLenum matrix, GLenum transform); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERNVPROC) (GLuint index, GLint fsize, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DNVPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FNVPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SNVPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DNVPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FNVPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SNVPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBNVPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVNVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4UBVNVPROC) (GLuint index, GLsizei count, const GLubyte *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAreProgramsResidentNV (GLsizei n, const GLuint *programs, GLboolean *residences); +GLAPI void APIENTRY glBindProgramNV (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteProgramsNV (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glExecuteProgramNV (GLenum target, GLuint id, const GLfloat *params); +GLAPI void APIENTRY glGenProgramsNV (GLsizei n, GLuint *programs); +GLAPI void APIENTRY glGetProgramParameterdvNV (GLenum target, GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetProgramParameterfvNV (GLenum target, GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetProgramivNV (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramStringNV (GLuint id, GLenum pname, GLubyte *program); +GLAPI void APIENTRY glGetTrackMatrixivNV (GLenum target, GLuint address, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribdvNV (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfvNV (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribivNV (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointervNV (GLuint index, GLenum pname, void **pointer); +GLAPI GLboolean APIENTRY glIsProgramNV (GLuint id); +GLAPI void APIENTRY glLoadProgramNV (GLenum target, GLuint id, GLsizei len, const GLubyte *program); +GLAPI void APIENTRY glProgramParameter4dNV (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramParameter4dvNV (GLenum target, GLuint index, const GLdouble *v); +GLAPI void APIENTRY glProgramParameter4fNV (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramParameter4fvNV (GLenum target, GLuint index, const GLfloat *v); +GLAPI void APIENTRY glProgramParameters4dvNV (GLenum target, GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glProgramParameters4fvNV (GLenum target, GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glRequestResidentProgramsNV (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glTrackMatrixNV (GLenum target, GLuint address, GLenum matrix, GLenum transform); +GLAPI void APIENTRY glVertexAttribPointerNV (GLuint index, GLint fsize, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glVertexAttrib1dNV (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1fNV (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1sNV (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2dNV (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2fNV (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2sNV (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3dNV (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3fNV (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3sNV (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4dNV (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4fNV (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4sNV (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubNV (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4ubvNV (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribs1dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs1fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs1svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs2dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs2fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs2svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs3dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs3fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs3svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs4dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs4fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs4svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs4ubvNV (GLuint index, GLsizei count, const GLubyte *v); +#endif +#endif /* GL_NV_vertex_program */ + +#ifndef GL_NV_vertex_program1_1 +#define GL_NV_vertex_program1_1 1 +#endif /* GL_NV_vertex_program1_1 */ + +#ifndef GL_NV_vertex_program2 +#define GL_NV_vertex_program2 1 +#endif /* GL_NV_vertex_program2 */ + +#ifndef GL_NV_vertex_program2_option +#define GL_NV_vertex_program2_option 1 +#endif /* GL_NV_vertex_program2_option */ + +#ifndef GL_NV_vertex_program3 +#define GL_NV_vertex_program3 1 +#endif /* GL_NV_vertex_program3 */ + +#ifndef GL_NV_vertex_program4 +#define GL_NV_vertex_program4 1 +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD +#endif /* GL_NV_vertex_program4 */ + +#ifndef GL_NV_video_capture +#define GL_NV_video_capture 1 +#define GL_VIDEO_BUFFER_NV 0x9020 +#define GL_VIDEO_BUFFER_BINDING_NV 0x9021 +#define GL_FIELD_UPPER_NV 0x9022 +#define GL_FIELD_LOWER_NV 0x9023 +#define GL_NUM_VIDEO_CAPTURE_STREAMS_NV 0x9024 +#define GL_NEXT_VIDEO_CAPTURE_BUFFER_STATUS_NV 0x9025 +#define GL_VIDEO_CAPTURE_TO_422_SUPPORTED_NV 0x9026 +#define GL_LAST_VIDEO_CAPTURE_STATUS_NV 0x9027 +#define GL_VIDEO_BUFFER_PITCH_NV 0x9028 +#define GL_VIDEO_COLOR_CONVERSION_MATRIX_NV 0x9029 +#define GL_VIDEO_COLOR_CONVERSION_MAX_NV 0x902A +#define GL_VIDEO_COLOR_CONVERSION_MIN_NV 0x902B +#define GL_VIDEO_COLOR_CONVERSION_OFFSET_NV 0x902C +#define GL_VIDEO_BUFFER_INTERNAL_FORMAT_NV 0x902D +#define GL_PARTIAL_SUCCESS_NV 0x902E +#define GL_SUCCESS_NV 0x902F +#define GL_FAILURE_NV 0x9030 +#define GL_YCBYCR8_422_NV 0x9031 +#define GL_YCBAYCR8A_4224_NV 0x9032 +#define GL_Z6Y10Z6CB10Z6Y10Z6CR10_422_NV 0x9033 +#define GL_Z6Y10Z6CB10Z6A10Z6Y10Z6CR10Z6A10_4224_NV 0x9034 +#define GL_Z4Y12Z4CB12Z4Y12Z4CR12_422_NV 0x9035 +#define GL_Z4Y12Z4CB12Z4A12Z4Y12Z4CR12Z4A12_4224_NV 0x9036 +#define GL_Z4Y12Z4CB12Z4CR12_444_NV 0x9037 +#define GL_VIDEO_CAPTURE_FRAME_WIDTH_NV 0x9038 +#define GL_VIDEO_CAPTURE_FRAME_HEIGHT_NV 0x9039 +#define GL_VIDEO_CAPTURE_FIELD_UPPER_HEIGHT_NV 0x903A +#define GL_VIDEO_CAPTURE_FIELD_LOWER_HEIGHT_NV 0x903B +#define GL_VIDEO_CAPTURE_SURFACE_ORIGIN_NV 0x903C +typedef void (APIENTRYP PFNGLBEGINVIDEOCAPTURENVPROC) (GLuint video_capture_slot); +typedef void (APIENTRYP PFNGLBINDVIDEOCAPTURESTREAMBUFFERNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLintptrARB offset); +typedef void (APIENTRYP PFNGLBINDVIDEOCAPTURESTREAMTEXTURENVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLENDVIDEOCAPTURENVPROC) (GLuint video_capture_slot); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTUREIVNVPROC) (GLuint video_capture_slot, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLdouble *params); +typedef GLenum (APIENTRYP PFNGLVIDEOCAPTURENVPROC) (GLuint video_capture_slot, GLuint *sequence_num, GLuint64EXT *capture_time); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLdouble *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginVideoCaptureNV (GLuint video_capture_slot); +GLAPI void APIENTRY glBindVideoCaptureStreamBufferNV (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLintptrARB offset); +GLAPI void APIENTRY glBindVideoCaptureStreamTextureNV (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLenum target, GLuint texture); +GLAPI void APIENTRY glEndVideoCaptureNV (GLuint video_capture_slot); +GLAPI void APIENTRY glGetVideoCaptureivNV (GLuint video_capture_slot, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideoCaptureStreamivNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideoCaptureStreamfvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVideoCaptureStreamdvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLdouble *params); +GLAPI GLenum APIENTRY glVideoCaptureNV (GLuint video_capture_slot, GLuint *sequence_num, GLuint64EXT *capture_time); +GLAPI void APIENTRY glVideoCaptureStreamParameterivNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLint *params); +GLAPI void APIENTRY glVideoCaptureStreamParameterfvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glVideoCaptureStreamParameterdvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLdouble *params); +#endif +#endif /* GL_NV_video_capture */ + +#ifndef GL_NV_viewport_array2 +#define GL_NV_viewport_array2 1 +#endif /* GL_NV_viewport_array2 */ + +#ifndef GL_NV_viewport_swizzle +#define GL_NV_viewport_swizzle 1 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_X_NV 0x9350 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_X_NV 0x9351 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Y_NV 0x9352 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Y_NV 0x9353 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Z_NV 0x9354 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Z_NV 0x9355 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_W_NV 0x9356 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_W_NV 0x9357 +#define GL_VIEWPORT_SWIZZLE_X_NV 0x9358 +#define GL_VIEWPORT_SWIZZLE_Y_NV 0x9359 +#define GL_VIEWPORT_SWIZZLE_Z_NV 0x935A +#define GL_VIEWPORT_SWIZZLE_W_NV 0x935B +typedef void (APIENTRYP PFNGLVIEWPORTSWIZZLENVPROC) (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glViewportSwizzleNV (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#endif +#endif /* GL_NV_viewport_swizzle */ + +#ifndef GL_OML_interlace +#define GL_OML_interlace 1 +#define GL_INTERLACE_OML 0x8980 +#define GL_INTERLACE_READ_OML 0x8981 +#endif /* GL_OML_interlace */ + +#ifndef GL_OML_resample +#define GL_OML_resample 1 +#define GL_PACK_RESAMPLE_OML 0x8984 +#define GL_UNPACK_RESAMPLE_OML 0x8985 +#define GL_RESAMPLE_REPLICATE_OML 0x8986 +#define GL_RESAMPLE_ZERO_FILL_OML 0x8987 +#define GL_RESAMPLE_AVERAGE_OML 0x8988 +#define GL_RESAMPLE_DECIMATE_OML 0x8989 +#endif /* GL_OML_resample */ + +#ifndef GL_OML_subsample +#define GL_OML_subsample 1 +#define GL_FORMAT_SUBSAMPLE_24_24_OML 0x8982 +#define GL_FORMAT_SUBSAMPLE_244_244_OML 0x8983 +#endif /* GL_OML_subsample */ + +#ifndef GL_OVR_multiview +#define GL_OVR_multiview 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR 0x9630 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR 0x9632 +#define GL_MAX_VIEWS_OVR 0x9631 +#define GL_FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR 0x9633 +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferTextureMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview */ + +#ifndef GL_OVR_multiview2 +#define GL_OVR_multiview2 1 +#endif /* GL_OVR_multiview2 */ + +#ifndef GL_PGI_misc_hints +#define GL_PGI_misc_hints 1 +#define GL_PREFER_DOUBLEBUFFER_HINT_PGI 0x1A1F8 +#define GL_CONSERVE_MEMORY_HINT_PGI 0x1A1FD +#define GL_RECLAIM_MEMORY_HINT_PGI 0x1A1FE +#define GL_NATIVE_GRAPHICS_HANDLE_PGI 0x1A202 +#define GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI 0x1A203 +#define GL_NATIVE_GRAPHICS_END_HINT_PGI 0x1A204 +#define GL_ALWAYS_FAST_HINT_PGI 0x1A20C +#define GL_ALWAYS_SOFT_HINT_PGI 0x1A20D +#define GL_ALLOW_DRAW_OBJ_HINT_PGI 0x1A20E +#define GL_ALLOW_DRAW_WIN_HINT_PGI 0x1A20F +#define GL_ALLOW_DRAW_FRG_HINT_PGI 0x1A210 +#define GL_ALLOW_DRAW_MEM_HINT_PGI 0x1A211 +#define GL_STRICT_DEPTHFUNC_HINT_PGI 0x1A216 +#define GL_STRICT_LIGHTING_HINT_PGI 0x1A217 +#define GL_STRICT_SCISSOR_HINT_PGI 0x1A218 +#define GL_FULL_STIPPLE_HINT_PGI 0x1A219 +#define GL_CLIP_NEAR_HINT_PGI 0x1A220 +#define GL_CLIP_FAR_HINT_PGI 0x1A221 +#define GL_WIDE_LINE_HINT_PGI 0x1A222 +#define GL_BACK_NORMALS_HINT_PGI 0x1A223 +typedef void (APIENTRYP PFNGLHINTPGIPROC) (GLenum target, GLint mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glHintPGI (GLenum target, GLint mode); +#endif +#endif /* GL_PGI_misc_hints */ + +#ifndef GL_PGI_vertex_hints +#define GL_PGI_vertex_hints 1 +#define GL_VERTEX_DATA_HINT_PGI 0x1A22A +#define GL_VERTEX_CONSISTENT_HINT_PGI 0x1A22B +#define GL_MATERIAL_SIDE_HINT_PGI 0x1A22C +#define GL_MAX_VERTEX_HINT_PGI 0x1A22D +#define GL_COLOR3_BIT_PGI 0x00010000 +#define GL_COLOR4_BIT_PGI 0x00020000 +#define GL_EDGEFLAG_BIT_PGI 0x00040000 +#define GL_INDEX_BIT_PGI 0x00080000 +#define GL_MAT_AMBIENT_BIT_PGI 0x00100000 +#define GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI 0x00200000 +#define GL_MAT_DIFFUSE_BIT_PGI 0x00400000 +#define GL_MAT_EMISSION_BIT_PGI 0x00800000 +#define GL_MAT_COLOR_INDEXES_BIT_PGI 0x01000000 +#define GL_MAT_SHININESS_BIT_PGI 0x02000000 +#define GL_MAT_SPECULAR_BIT_PGI 0x04000000 +#define GL_NORMAL_BIT_PGI 0x08000000 +#define GL_TEXCOORD1_BIT_PGI 0x10000000 +#define GL_TEXCOORD2_BIT_PGI 0x20000000 +#define GL_TEXCOORD3_BIT_PGI 0x40000000 +#define GL_TEXCOORD4_BIT_PGI 0x80000000 +#define GL_VERTEX23_BIT_PGI 0x00000004 +#define GL_VERTEX4_BIT_PGI 0x00000008 +#endif /* GL_PGI_vertex_hints */ + +#ifndef GL_REND_screen_coordinates +#define GL_REND_screen_coordinates 1 +#define GL_SCREEN_COORDINATES_REND 0x8490 +#define GL_INVERTED_SCREEN_W_REND 0x8491 +#endif /* GL_REND_screen_coordinates */ + +#ifndef GL_S3_s3tc +#define GL_S3_s3tc 1 +#define GL_RGB_S3TC 0x83A0 +#define GL_RGB4_S3TC 0x83A1 +#define GL_RGBA_S3TC 0x83A2 +#define GL_RGBA4_S3TC 0x83A3 +#define GL_RGBA_DXT5_S3TC 0x83A4 +#define GL_RGBA4_DXT5_S3TC 0x83A5 +#endif /* GL_S3_s3tc */ + +#ifndef GL_SGIS_detail_texture +#define GL_SGIS_detail_texture 1 +#define GL_DETAIL_TEXTURE_2D_SGIS 0x8095 +#define GL_DETAIL_TEXTURE_2D_BINDING_SGIS 0x8096 +#define GL_LINEAR_DETAIL_SGIS 0x8097 +#define GL_LINEAR_DETAIL_ALPHA_SGIS 0x8098 +#define GL_LINEAR_DETAIL_COLOR_SGIS 0x8099 +#define GL_DETAIL_TEXTURE_LEVEL_SGIS 0x809A +#define GL_DETAIL_TEXTURE_MODE_SGIS 0x809B +#define GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS 0x809C +typedef void (APIENTRYP PFNGLDETAILTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETDETAILTEXFUNCSGISPROC) (GLenum target, GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDetailTexFuncSGIS (GLenum target, GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetDetailTexFuncSGIS (GLenum target, GLfloat *points); +#endif +#endif /* GL_SGIS_detail_texture */ + +#ifndef GL_SGIS_fog_function +#define GL_SGIS_fog_function 1 +#define GL_FOG_FUNC_SGIS 0x812A +#define GL_FOG_FUNC_POINTS_SGIS 0x812B +#define GL_MAX_FOG_FUNC_POINTS_SGIS 0x812C +typedef void (APIENTRYP PFNGLFOGFUNCSGISPROC) (GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETFOGFUNCSGISPROC) (GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFogFuncSGIS (GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetFogFuncSGIS (GLfloat *points); +#endif +#endif /* GL_SGIS_fog_function */ + +#ifndef GL_SGIS_generate_mipmap +#define GL_SGIS_generate_mipmap 1 +#define GL_GENERATE_MIPMAP_SGIS 0x8191 +#define GL_GENERATE_MIPMAP_HINT_SGIS 0x8192 +#endif /* GL_SGIS_generate_mipmap */ + +#ifndef GL_SGIS_multisample +#define GL_SGIS_multisample 1 +#define GL_MULTISAMPLE_SGIS 0x809D +#define GL_SAMPLE_ALPHA_TO_MASK_SGIS 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_SGIS 0x809F +#define GL_SAMPLE_MASK_SGIS 0x80A0 +#define GL_1PASS_SGIS 0x80A1 +#define GL_2PASS_0_SGIS 0x80A2 +#define GL_2PASS_1_SGIS 0x80A3 +#define GL_4PASS_0_SGIS 0x80A4 +#define GL_4PASS_1_SGIS 0x80A5 +#define GL_4PASS_2_SGIS 0x80A6 +#define GL_4PASS_3_SGIS 0x80A7 +#define GL_SAMPLE_BUFFERS_SGIS 0x80A8 +#define GL_SAMPLES_SGIS 0x80A9 +#define GL_SAMPLE_MASK_VALUE_SGIS 0x80AA +#define GL_SAMPLE_MASK_INVERT_SGIS 0x80AB +#define GL_SAMPLE_PATTERN_SGIS 0x80AC +typedef void (APIENTRYP PFNGLSAMPLEMASKSGISPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLSAMPLEPATTERNSGISPROC) (GLenum pattern); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleMaskSGIS (GLclampf value, GLboolean invert); +GLAPI void APIENTRY glSamplePatternSGIS (GLenum pattern); +#endif +#endif /* GL_SGIS_multisample */ + +#ifndef GL_SGIS_pixel_texture +#define GL_SGIS_pixel_texture 1 +#define GL_PIXEL_TEXTURE_SGIS 0x8353 +#define GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS 0x8354 +#define GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS 0x8355 +#define GL_PIXEL_GROUP_COLOR_SGIS 0x8356 +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERISGISPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFSGISPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTexGenParameteriSGIS (GLenum pname, GLint param); +GLAPI void APIENTRY glPixelTexGenParameterivSGIS (GLenum pname, const GLint *params); +GLAPI void APIENTRY glPixelTexGenParameterfSGIS (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPixelTexGenParameterfvSGIS (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetPixelTexGenParameterivSGIS (GLenum pname, GLint *params); +GLAPI void APIENTRY glGetPixelTexGenParameterfvSGIS (GLenum pname, GLfloat *params); +#endif +#endif /* GL_SGIS_pixel_texture */ + +#ifndef GL_SGIS_point_line_texgen +#define GL_SGIS_point_line_texgen 1 +#define GL_EYE_DISTANCE_TO_POINT_SGIS 0x81F0 +#define GL_OBJECT_DISTANCE_TO_POINT_SGIS 0x81F1 +#define GL_EYE_DISTANCE_TO_LINE_SGIS 0x81F2 +#define GL_OBJECT_DISTANCE_TO_LINE_SGIS 0x81F3 +#define GL_EYE_POINT_SGIS 0x81F4 +#define GL_OBJECT_POINT_SGIS 0x81F5 +#define GL_EYE_LINE_SGIS 0x81F6 +#define GL_OBJECT_LINE_SGIS 0x81F7 +#endif /* GL_SGIS_point_line_texgen */ + +#ifndef GL_SGIS_point_parameters +#define GL_SGIS_point_parameters 1 +#define GL_POINT_SIZE_MIN_SGIS 0x8126 +#define GL_POINT_SIZE_MAX_SGIS 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_SGIS 0x8128 +#define GL_DISTANCE_ATTENUATION_SGIS 0x8129 +typedef void (APIENTRYP PFNGLPOINTPARAMETERFSGISPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfSGIS (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvSGIS (GLenum pname, const GLfloat *params); +#endif +#endif /* GL_SGIS_point_parameters */ + +#ifndef GL_SGIS_sharpen_texture +#define GL_SGIS_sharpen_texture 1 +#define GL_LINEAR_SHARPEN_SGIS 0x80AD +#define GL_LINEAR_SHARPEN_ALPHA_SGIS 0x80AE +#define GL_LINEAR_SHARPEN_COLOR_SGIS 0x80AF +#define GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS 0x80B0 +typedef void (APIENTRYP PFNGLSHARPENTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETSHARPENTEXFUNCSGISPROC) (GLenum target, GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSharpenTexFuncSGIS (GLenum target, GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetSharpenTexFuncSGIS (GLenum target, GLfloat *points); +#endif +#endif /* GL_SGIS_sharpen_texture */ + +#ifndef GL_SGIS_texture4D +#define GL_SGIS_texture4D 1 +#define GL_PACK_SKIP_VOLUMES_SGIS 0x8130 +#define GL_PACK_IMAGE_DEPTH_SGIS 0x8131 +#define GL_UNPACK_SKIP_VOLUMES_SGIS 0x8132 +#define GL_UNPACK_IMAGE_DEPTH_SGIS 0x8133 +#define GL_TEXTURE_4D_SGIS 0x8134 +#define GL_PROXY_TEXTURE_4D_SGIS 0x8135 +#define GL_TEXTURE_4DSIZE_SGIS 0x8136 +#define GL_TEXTURE_WRAP_Q_SGIS 0x8137 +#define GL_MAX_4D_TEXTURE_SIZE_SGIS 0x8138 +#define GL_TEXTURE_4D_BINDING_SGIS 0x814F +typedef void (APIENTRYP PFNGLTEXIMAGE4DSGISPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE4DSGISPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const void *pixels); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage4DSGIS (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage4DSGIS (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const void *pixels); +#endif +#endif /* GL_SGIS_texture4D */ + +#ifndef GL_SGIS_texture_border_clamp +#define GL_SGIS_texture_border_clamp 1 +#define GL_CLAMP_TO_BORDER_SGIS 0x812D +#endif /* GL_SGIS_texture_border_clamp */ + +#ifndef GL_SGIS_texture_color_mask +#define GL_SGIS_texture_color_mask 1 +#define GL_TEXTURE_COLOR_WRITEMASK_SGIS 0x81EF +typedef void (APIENTRYP PFNGLTEXTURECOLORMASKSGISPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureColorMaskSGIS (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +#endif +#endif /* GL_SGIS_texture_color_mask */ + +#ifndef GL_SGIS_texture_edge_clamp +#define GL_SGIS_texture_edge_clamp 1 +#define GL_CLAMP_TO_EDGE_SGIS 0x812F +#endif /* GL_SGIS_texture_edge_clamp */ + +#ifndef GL_SGIS_texture_filter4 +#define GL_SGIS_texture_filter4 1 +#define GL_FILTER4_SGIS 0x8146 +#define GL_TEXTURE_FILTER4_SIZE_SGIS 0x8147 +typedef void (APIENTRYP PFNGLGETTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLfloat *weights); +typedef void (APIENTRYP PFNGLTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetTexFilterFuncSGIS (GLenum target, GLenum filter, GLfloat *weights); +GLAPI void APIENTRY glTexFilterFuncSGIS (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights); +#endif +#endif /* GL_SGIS_texture_filter4 */ + +#ifndef GL_SGIS_texture_lod +#define GL_SGIS_texture_lod 1 +#define GL_TEXTURE_MIN_LOD_SGIS 0x813A +#define GL_TEXTURE_MAX_LOD_SGIS 0x813B +#define GL_TEXTURE_BASE_LEVEL_SGIS 0x813C +#define GL_TEXTURE_MAX_LEVEL_SGIS 0x813D +#endif /* GL_SGIS_texture_lod */ + +#ifndef GL_SGIS_texture_select +#define GL_SGIS_texture_select 1 +#define GL_DUAL_ALPHA4_SGIS 0x8110 +#define GL_DUAL_ALPHA8_SGIS 0x8111 +#define GL_DUAL_ALPHA12_SGIS 0x8112 +#define GL_DUAL_ALPHA16_SGIS 0x8113 +#define GL_DUAL_LUMINANCE4_SGIS 0x8114 +#define GL_DUAL_LUMINANCE8_SGIS 0x8115 +#define GL_DUAL_LUMINANCE12_SGIS 0x8116 +#define GL_DUAL_LUMINANCE16_SGIS 0x8117 +#define GL_DUAL_INTENSITY4_SGIS 0x8118 +#define GL_DUAL_INTENSITY8_SGIS 0x8119 +#define GL_DUAL_INTENSITY12_SGIS 0x811A +#define GL_DUAL_INTENSITY16_SGIS 0x811B +#define GL_DUAL_LUMINANCE_ALPHA4_SGIS 0x811C +#define GL_DUAL_LUMINANCE_ALPHA8_SGIS 0x811D +#define GL_QUAD_ALPHA4_SGIS 0x811E +#define GL_QUAD_ALPHA8_SGIS 0x811F +#define GL_QUAD_LUMINANCE4_SGIS 0x8120 +#define GL_QUAD_LUMINANCE8_SGIS 0x8121 +#define GL_QUAD_INTENSITY4_SGIS 0x8122 +#define GL_QUAD_INTENSITY8_SGIS 0x8123 +#define GL_DUAL_TEXTURE_SELECT_SGIS 0x8124 +#define GL_QUAD_TEXTURE_SELECT_SGIS 0x8125 +#endif /* GL_SGIS_texture_select */ + +#ifndef GL_SGIX_async +#define GL_SGIX_async 1 +#define GL_ASYNC_MARKER_SGIX 0x8329 +typedef void (APIENTRYP PFNGLASYNCMARKERSGIXPROC) (GLuint marker); +typedef GLint (APIENTRYP PFNGLFINISHASYNCSGIXPROC) (GLuint *markerp); +typedef GLint (APIENTRYP PFNGLPOLLASYNCSGIXPROC) (GLuint *markerp); +typedef GLuint (APIENTRYP PFNGLGENASYNCMARKERSSGIXPROC) (GLsizei range); +typedef void (APIENTRYP PFNGLDELETEASYNCMARKERSSGIXPROC) (GLuint marker, GLsizei range); +typedef GLboolean (APIENTRYP PFNGLISASYNCMARKERSGIXPROC) (GLuint marker); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAsyncMarkerSGIX (GLuint marker); +GLAPI GLint APIENTRY glFinishAsyncSGIX (GLuint *markerp); +GLAPI GLint APIENTRY glPollAsyncSGIX (GLuint *markerp); +GLAPI GLuint APIENTRY glGenAsyncMarkersSGIX (GLsizei range); +GLAPI void APIENTRY glDeleteAsyncMarkersSGIX (GLuint marker, GLsizei range); +GLAPI GLboolean APIENTRY glIsAsyncMarkerSGIX (GLuint marker); +#endif +#endif /* GL_SGIX_async */ + +#ifndef GL_SGIX_async_histogram +#define GL_SGIX_async_histogram 1 +#define GL_ASYNC_HISTOGRAM_SGIX 0x832C +#define GL_MAX_ASYNC_HISTOGRAM_SGIX 0x832D +#endif /* GL_SGIX_async_histogram */ + +#ifndef GL_SGIX_async_pixel +#define GL_SGIX_async_pixel 1 +#define GL_ASYNC_TEX_IMAGE_SGIX 0x835C +#define GL_ASYNC_DRAW_PIXELS_SGIX 0x835D +#define GL_ASYNC_READ_PIXELS_SGIX 0x835E +#define GL_MAX_ASYNC_TEX_IMAGE_SGIX 0x835F +#define GL_MAX_ASYNC_DRAW_PIXELS_SGIX 0x8360 +#define GL_MAX_ASYNC_READ_PIXELS_SGIX 0x8361 +#endif /* GL_SGIX_async_pixel */ + +#ifndef GL_SGIX_blend_alpha_minmax +#define GL_SGIX_blend_alpha_minmax 1 +#define GL_ALPHA_MIN_SGIX 0x8320 +#define GL_ALPHA_MAX_SGIX 0x8321 +#endif /* GL_SGIX_blend_alpha_minmax */ + +#ifndef GL_SGIX_calligraphic_fragment +#define GL_SGIX_calligraphic_fragment 1 +#define GL_CALLIGRAPHIC_FRAGMENT_SGIX 0x8183 +#endif /* GL_SGIX_calligraphic_fragment */ + +#ifndef GL_SGIX_clipmap +#define GL_SGIX_clipmap 1 +#define GL_LINEAR_CLIPMAP_LINEAR_SGIX 0x8170 +#define GL_TEXTURE_CLIPMAP_CENTER_SGIX 0x8171 +#define GL_TEXTURE_CLIPMAP_FRAME_SGIX 0x8172 +#define GL_TEXTURE_CLIPMAP_OFFSET_SGIX 0x8173 +#define GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8174 +#define GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX 0x8175 +#define GL_TEXTURE_CLIPMAP_DEPTH_SGIX 0x8176 +#define GL_MAX_CLIPMAP_DEPTH_SGIX 0x8177 +#define GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8178 +#define GL_NEAREST_CLIPMAP_NEAREST_SGIX 0x844D +#define GL_NEAREST_CLIPMAP_LINEAR_SGIX 0x844E +#define GL_LINEAR_CLIPMAP_NEAREST_SGIX 0x844F +#endif /* GL_SGIX_clipmap */ + +#ifndef GL_SGIX_convolution_accuracy +#define GL_SGIX_convolution_accuracy 1 +#define GL_CONVOLUTION_HINT_SGIX 0x8316 +#endif /* GL_SGIX_convolution_accuracy */ + +#ifndef GL_SGIX_depth_pass_instrument +#define GL_SGIX_depth_pass_instrument 1 +#endif /* GL_SGIX_depth_pass_instrument */ + +#ifndef GL_SGIX_depth_texture +#define GL_SGIX_depth_texture 1 +#define GL_DEPTH_COMPONENT16_SGIX 0x81A5 +#define GL_DEPTH_COMPONENT24_SGIX 0x81A6 +#define GL_DEPTH_COMPONENT32_SGIX 0x81A7 +#endif /* GL_SGIX_depth_texture */ + +#ifndef GL_SGIX_flush_raster +#define GL_SGIX_flush_raster 1 +typedef void (APIENTRYP PFNGLFLUSHRASTERSGIXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushRasterSGIX (void); +#endif +#endif /* GL_SGIX_flush_raster */ + +#ifndef GL_SGIX_fog_offset +#define GL_SGIX_fog_offset 1 +#define GL_FOG_OFFSET_SGIX 0x8198 +#define GL_FOG_OFFSET_VALUE_SGIX 0x8199 +#endif /* GL_SGIX_fog_offset */ + +#ifndef GL_SGIX_fragment_lighting +#define GL_SGIX_fragment_lighting 1 +#define GL_FRAGMENT_LIGHTING_SGIX 0x8400 +#define GL_FRAGMENT_COLOR_MATERIAL_SGIX 0x8401 +#define GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX 0x8402 +#define GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX 0x8403 +#define GL_MAX_FRAGMENT_LIGHTS_SGIX 0x8404 +#define GL_MAX_ACTIVE_LIGHTS_SGIX 0x8405 +#define GL_CURRENT_RASTER_NORMAL_SGIX 0x8406 +#define GL_LIGHT_ENV_MODE_SGIX 0x8407 +#define GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX 0x8408 +#define GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX 0x8409 +#define GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX 0x840A +#define GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX 0x840B +#define GL_FRAGMENT_LIGHT0_SGIX 0x840C +#define GL_FRAGMENT_LIGHT1_SGIX 0x840D +#define GL_FRAGMENT_LIGHT2_SGIX 0x840E +#define GL_FRAGMENT_LIGHT3_SGIX 0x840F +#define GL_FRAGMENT_LIGHT4_SGIX 0x8410 +#define GL_FRAGMENT_LIGHT5_SGIX 0x8411 +#define GL_FRAGMENT_LIGHT6_SGIX 0x8412 +#define GL_FRAGMENT_LIGHT7_SGIX 0x8413 +typedef void (APIENTRYP PFNGLFRAGMENTCOLORMATERIALSGIXPROC) (GLenum face, GLenum mode); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFSGIXPROC) (GLenum light, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTISGIXPROC) (GLenum light, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFSGIXPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFVSGIXPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELISGIXPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELIVSGIXPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFSGIXPROC) (GLenum face, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALISGIXPROC) (GLenum face, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLLIGHTENVISGIXPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFragmentColorMaterialSGIX (GLenum face, GLenum mode); +GLAPI void APIENTRY glFragmentLightfSGIX (GLenum light, GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentLightfvSGIX (GLenum light, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentLightiSGIX (GLenum light, GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentLightivSGIX (GLenum light, GLenum pname, const GLint *params); +GLAPI void APIENTRY glFragmentLightModelfSGIX (GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentLightModelfvSGIX (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentLightModeliSGIX (GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentLightModelivSGIX (GLenum pname, const GLint *params); +GLAPI void APIENTRY glFragmentMaterialfSGIX (GLenum face, GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentMaterialfvSGIX (GLenum face, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentMaterialiSGIX (GLenum face, GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentMaterialivSGIX (GLenum face, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetFragmentLightfvSGIX (GLenum light, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFragmentLightivSGIX (GLenum light, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetFragmentMaterialfvSGIX (GLenum face, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFragmentMaterialivSGIX (GLenum face, GLenum pname, GLint *params); +GLAPI void APIENTRY glLightEnviSGIX (GLenum pname, GLint param); +#endif +#endif /* GL_SGIX_fragment_lighting */ + +#ifndef GL_SGIX_framezoom +#define GL_SGIX_framezoom 1 +#define GL_FRAMEZOOM_SGIX 0x818B +#define GL_FRAMEZOOM_FACTOR_SGIX 0x818C +#define GL_MAX_FRAMEZOOM_FACTOR_SGIX 0x818D +typedef void (APIENTRYP PFNGLFRAMEZOOMSGIXPROC) (GLint factor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFrameZoomSGIX (GLint factor); +#endif +#endif /* GL_SGIX_framezoom */ + +#ifndef GL_SGIX_igloo_interface +#define GL_SGIX_igloo_interface 1 +typedef void (APIENTRYP PFNGLIGLOOINTERFACESGIXPROC) (GLenum pname, const void *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIglooInterfaceSGIX (GLenum pname, const void *params); +#endif +#endif /* GL_SGIX_igloo_interface */ + +#ifndef GL_SGIX_instruments +#define GL_SGIX_instruments 1 +#define GL_INSTRUMENT_BUFFER_POINTER_SGIX 0x8180 +#define GL_INSTRUMENT_MEASUREMENTS_SGIX 0x8181 +typedef GLint (APIENTRYP PFNGLGETINSTRUMENTSSGIXPROC) (void); +typedef void (APIENTRYP PFNGLINSTRUMENTSBUFFERSGIXPROC) (GLsizei size, GLint *buffer); +typedef GLint (APIENTRYP PFNGLPOLLINSTRUMENTSSGIXPROC) (GLint *marker_p); +typedef void (APIENTRYP PFNGLREADINSTRUMENTSSGIXPROC) (GLint marker); +typedef void (APIENTRYP PFNGLSTARTINSTRUMENTSSGIXPROC) (void); +typedef void (APIENTRYP PFNGLSTOPINSTRUMENTSSGIXPROC) (GLint marker); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLint APIENTRY glGetInstrumentsSGIX (void); +GLAPI void APIENTRY glInstrumentsBufferSGIX (GLsizei size, GLint *buffer); +GLAPI GLint APIENTRY glPollInstrumentsSGIX (GLint *marker_p); +GLAPI void APIENTRY glReadInstrumentsSGIX (GLint marker); +GLAPI void APIENTRY glStartInstrumentsSGIX (void); +GLAPI void APIENTRY glStopInstrumentsSGIX (GLint marker); +#endif +#endif /* GL_SGIX_instruments */ + +#ifndef GL_SGIX_interlace +#define GL_SGIX_interlace 1 +#define GL_INTERLACE_SGIX 0x8094 +#endif /* GL_SGIX_interlace */ + +#ifndef GL_SGIX_ir_instrument1 +#define GL_SGIX_ir_instrument1 1 +#define GL_IR_INSTRUMENT1_SGIX 0x817F +#endif /* GL_SGIX_ir_instrument1 */ + +#ifndef GL_SGIX_list_priority +#define GL_SGIX_list_priority 1 +#define GL_LIST_PRIORITY_SGIX 0x8182 +typedef void (APIENTRYP PFNGLGETLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLLISTPARAMETERFSGIXPROC) (GLuint list, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLLISTPARAMETERISGIXPROC) (GLuint list, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, const GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetListParameterfvSGIX (GLuint list, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetListParameterivSGIX (GLuint list, GLenum pname, GLint *params); +GLAPI void APIENTRY glListParameterfSGIX (GLuint list, GLenum pname, GLfloat param); +GLAPI void APIENTRY glListParameterfvSGIX (GLuint list, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glListParameteriSGIX (GLuint list, GLenum pname, GLint param); +GLAPI void APIENTRY glListParameterivSGIX (GLuint list, GLenum pname, const GLint *params); +#endif +#endif /* GL_SGIX_list_priority */ + +#ifndef GL_SGIX_pixel_texture +#define GL_SGIX_pixel_texture 1 +#define GL_PIXEL_TEX_GEN_SGIX 0x8139 +#define GL_PIXEL_TEX_GEN_MODE_SGIX 0x832B +typedef void (APIENTRYP PFNGLPIXELTEXGENSGIXPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTexGenSGIX (GLenum mode); +#endif +#endif /* GL_SGIX_pixel_texture */ + +#ifndef GL_SGIX_pixel_tiles +#define GL_SGIX_pixel_tiles 1 +#define GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX 0x813E +#define GL_PIXEL_TILE_CACHE_INCREMENT_SGIX 0x813F +#define GL_PIXEL_TILE_WIDTH_SGIX 0x8140 +#define GL_PIXEL_TILE_HEIGHT_SGIX 0x8141 +#define GL_PIXEL_TILE_GRID_WIDTH_SGIX 0x8142 +#define GL_PIXEL_TILE_GRID_HEIGHT_SGIX 0x8143 +#define GL_PIXEL_TILE_GRID_DEPTH_SGIX 0x8144 +#define GL_PIXEL_TILE_CACHE_SIZE_SGIX 0x8145 +#endif /* GL_SGIX_pixel_tiles */ + +#ifndef GL_SGIX_polynomial_ffd +#define GL_SGIX_polynomial_ffd 1 +#define GL_TEXTURE_DEFORMATION_BIT_SGIX 0x00000001 +#define GL_GEOMETRY_DEFORMATION_BIT_SGIX 0x00000002 +#define GL_GEOMETRY_DEFORMATION_SGIX 0x8194 +#define GL_TEXTURE_DEFORMATION_SGIX 0x8195 +#define GL_DEFORMATIONS_MASK_SGIX 0x8196 +#define GL_MAX_DEFORMATION_ORDER_SGIX 0x8197 +typedef void (APIENTRYP PFNGLDEFORMATIONMAP3DSGIXPROC) (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points); +typedef void (APIENTRYP PFNGLDEFORMATIONMAP3FSGIXPROC) (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points); +typedef void (APIENTRYP PFNGLDEFORMSGIXPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLLOADIDENTITYDEFORMATIONMAPSGIXPROC) (GLbitfield mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeformationMap3dSGIX (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points); +GLAPI void APIENTRY glDeformationMap3fSGIX (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points); +GLAPI void APIENTRY glDeformSGIX (GLbitfield mask); +GLAPI void APIENTRY glLoadIdentityDeformationMapSGIX (GLbitfield mask); +#endif +#endif /* GL_SGIX_polynomial_ffd */ + +#ifndef GL_SGIX_reference_plane +#define GL_SGIX_reference_plane 1 +#define GL_REFERENCE_PLANE_SGIX 0x817D +#define GL_REFERENCE_PLANE_EQUATION_SGIX 0x817E +typedef void (APIENTRYP PFNGLREFERENCEPLANESGIXPROC) (const GLdouble *equation); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReferencePlaneSGIX (const GLdouble *equation); +#endif +#endif /* GL_SGIX_reference_plane */ + +#ifndef GL_SGIX_resample +#define GL_SGIX_resample 1 +#define GL_PACK_RESAMPLE_SGIX 0x842E +#define GL_UNPACK_RESAMPLE_SGIX 0x842F +#define GL_RESAMPLE_REPLICATE_SGIX 0x8433 +#define GL_RESAMPLE_ZERO_FILL_SGIX 0x8434 +#define GL_RESAMPLE_DECIMATE_SGIX 0x8430 +#endif /* GL_SGIX_resample */ + +#ifndef GL_SGIX_scalebias_hint +#define GL_SGIX_scalebias_hint 1 +#define GL_SCALEBIAS_HINT_SGIX 0x8322 +#endif /* GL_SGIX_scalebias_hint */ + +#ifndef GL_SGIX_shadow +#define GL_SGIX_shadow 1 +#define GL_TEXTURE_COMPARE_SGIX 0x819A +#define GL_TEXTURE_COMPARE_OPERATOR_SGIX 0x819B +#define GL_TEXTURE_LEQUAL_R_SGIX 0x819C +#define GL_TEXTURE_GEQUAL_R_SGIX 0x819D +#endif /* GL_SGIX_shadow */ + +#ifndef GL_SGIX_shadow_ambient +#define GL_SGIX_shadow_ambient 1 +#define GL_SHADOW_AMBIENT_SGIX 0x80BF +#endif /* GL_SGIX_shadow_ambient */ + +#ifndef GL_SGIX_sprite +#define GL_SGIX_sprite 1 +#define GL_SPRITE_SGIX 0x8148 +#define GL_SPRITE_MODE_SGIX 0x8149 +#define GL_SPRITE_AXIS_SGIX 0x814A +#define GL_SPRITE_TRANSLATION_SGIX 0x814B +#define GL_SPRITE_AXIAL_SGIX 0x814C +#define GL_SPRITE_OBJECT_ALIGNED_SGIX 0x814D +#define GL_SPRITE_EYE_ALIGNED_SGIX 0x814E +typedef void (APIENTRYP PFNGLSPRITEPARAMETERFSGIXPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERFVSGIXPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERISGIXPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERIVSGIXPROC) (GLenum pname, const GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpriteParameterfSGIX (GLenum pname, GLfloat param); +GLAPI void APIENTRY glSpriteParameterfvSGIX (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glSpriteParameteriSGIX (GLenum pname, GLint param); +GLAPI void APIENTRY glSpriteParameterivSGIX (GLenum pname, const GLint *params); +#endif +#endif /* GL_SGIX_sprite */ + +#ifndef GL_SGIX_subsample +#define GL_SGIX_subsample 1 +#define GL_PACK_SUBSAMPLE_RATE_SGIX 0x85A0 +#define GL_UNPACK_SUBSAMPLE_RATE_SGIX 0x85A1 +#define GL_PIXEL_SUBSAMPLE_4444_SGIX 0x85A2 +#define GL_PIXEL_SUBSAMPLE_2424_SGIX 0x85A3 +#define GL_PIXEL_SUBSAMPLE_4242_SGIX 0x85A4 +#endif /* GL_SGIX_subsample */ + +#ifndef GL_SGIX_tag_sample_buffer +#define GL_SGIX_tag_sample_buffer 1 +typedef void (APIENTRYP PFNGLTAGSAMPLEBUFFERSGIXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTagSampleBufferSGIX (void); +#endif +#endif /* GL_SGIX_tag_sample_buffer */ + +#ifndef GL_SGIX_texture_add_env +#define GL_SGIX_texture_add_env 1 +#define GL_TEXTURE_ENV_BIAS_SGIX 0x80BE +#endif /* GL_SGIX_texture_add_env */ + +#ifndef GL_SGIX_texture_coordinate_clamp +#define GL_SGIX_texture_coordinate_clamp 1 +#define GL_TEXTURE_MAX_CLAMP_S_SGIX 0x8369 +#define GL_TEXTURE_MAX_CLAMP_T_SGIX 0x836A +#define GL_TEXTURE_MAX_CLAMP_R_SGIX 0x836B +#endif /* GL_SGIX_texture_coordinate_clamp */ + +#ifndef GL_SGIX_texture_lod_bias +#define GL_SGIX_texture_lod_bias 1 +#define GL_TEXTURE_LOD_BIAS_S_SGIX 0x818E +#define GL_TEXTURE_LOD_BIAS_T_SGIX 0x818F +#define GL_TEXTURE_LOD_BIAS_R_SGIX 0x8190 +#endif /* GL_SGIX_texture_lod_bias */ + +#ifndef GL_SGIX_texture_multi_buffer +#define GL_SGIX_texture_multi_buffer 1 +#define GL_TEXTURE_MULTI_BUFFER_HINT_SGIX 0x812E +#endif /* GL_SGIX_texture_multi_buffer */ + +#ifndef GL_SGIX_texture_scale_bias +#define GL_SGIX_texture_scale_bias 1 +#define GL_POST_TEXTURE_FILTER_BIAS_SGIX 0x8179 +#define GL_POST_TEXTURE_FILTER_SCALE_SGIX 0x817A +#define GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX 0x817B +#define GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX 0x817C +#endif /* GL_SGIX_texture_scale_bias */ + +#ifndef GL_SGIX_vertex_preclip +#define GL_SGIX_vertex_preclip 1 +#define GL_VERTEX_PRECLIP_SGIX 0x83EE +#define GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF +#endif /* GL_SGIX_vertex_preclip */ + +#ifndef GL_SGIX_ycrcb +#define GL_SGIX_ycrcb 1 +#define GL_YCRCB_422_SGIX 0x81BB +#define GL_YCRCB_444_SGIX 0x81BC +#endif /* GL_SGIX_ycrcb */ + +#ifndef GL_SGIX_ycrcb_subsample +#define GL_SGIX_ycrcb_subsample 1 +#endif /* GL_SGIX_ycrcb_subsample */ + +#ifndef GL_SGIX_ycrcba +#define GL_SGIX_ycrcba 1 +#define GL_YCRCB_SGIX 0x8318 +#define GL_YCRCBA_SGIX 0x8319 +#endif /* GL_SGIX_ycrcba */ + +#ifndef GL_SGI_color_matrix +#define GL_SGI_color_matrix 1 +#define GL_COLOR_MATRIX_SGI 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE_SGI 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS_SGI 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI 0x80BB +#endif /* GL_SGI_color_matrix */ + +#ifndef GL_SGI_color_table +#define GL_SGI_color_table 1 +#define GL_COLOR_TABLE_SGI 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D2 +#define GL_PROXY_COLOR_TABLE_SGI 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D5 +#define GL_COLOR_TABLE_SCALE_SGI 0x80D6 +#define GL_COLOR_TABLE_BIAS_SGI 0x80D7 +#define GL_COLOR_TABLE_FORMAT_SGI 0x80D8 +#define GL_COLOR_TABLE_WIDTH_SGI 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE_SGI 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE_SGI 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE_SGI 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE_SGI 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE_SGI 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE_SGI 0x80DF +typedef void (APIENTRYP PFNGLCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLGETCOLORTABLESGIPROC) (GLenum target, GLenum format, GLenum type, void *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTableSGI (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +GLAPI void APIENTRY glColorTableParameterfvSGI (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glColorTableParameterivSGI (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyColorTableSGI (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glGetColorTableSGI (GLenum target, GLenum format, GLenum type, void *table); +GLAPI void APIENTRY glGetColorTableParameterfvSGI (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetColorTableParameterivSGI (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_SGI_color_table */ + +#ifndef GL_SGI_texture_color_table +#define GL_SGI_texture_color_table 1 +#define GL_TEXTURE_COLOR_TABLE_SGI 0x80BC +#define GL_PROXY_TEXTURE_COLOR_TABLE_SGI 0x80BD +#endif /* GL_SGI_texture_color_table */ + +#ifndef GL_SUNX_constant_data +#define GL_SUNX_constant_data 1 +#define GL_UNPACK_CONSTANT_DATA_SUNX 0x81D5 +#define GL_TEXTURE_CONSTANT_DATA_SUNX 0x81D6 +typedef void (APIENTRYP PFNGLFINISHTEXTURESUNXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFinishTextureSUNX (void); +#endif +#endif /* GL_SUNX_constant_data */ + +#ifndef GL_SUN_convolution_border_modes +#define GL_SUN_convolution_border_modes 1 +#define GL_WRAP_BORDER_SUN 0x81D4 +#endif /* GL_SUN_convolution_border_modes */ + +#ifndef GL_SUN_global_alpha +#define GL_SUN_global_alpha 1 +#define GL_GLOBAL_ALPHA_SUN 0x81D9 +#define GL_GLOBAL_ALPHA_FACTOR_SUN 0x81DA +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORBSUNPROC) (GLbyte factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORSSUNPROC) (GLshort factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORISUNPROC) (GLint factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORFSUNPROC) (GLfloat factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORDSUNPROC) (GLdouble factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUBSUNPROC) (GLubyte factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUSSUNPROC) (GLushort factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUISUNPROC) (GLuint factor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGlobalAlphaFactorbSUN (GLbyte factor); +GLAPI void APIENTRY glGlobalAlphaFactorsSUN (GLshort factor); +GLAPI void APIENTRY glGlobalAlphaFactoriSUN (GLint factor); +GLAPI void APIENTRY glGlobalAlphaFactorfSUN (GLfloat factor); +GLAPI void APIENTRY glGlobalAlphaFactordSUN (GLdouble factor); +GLAPI void APIENTRY glGlobalAlphaFactorubSUN (GLubyte factor); +GLAPI void APIENTRY glGlobalAlphaFactorusSUN (GLushort factor); +GLAPI void APIENTRY glGlobalAlphaFactoruiSUN (GLuint factor); +#endif +#endif /* GL_SUN_global_alpha */ + +#ifndef GL_SUN_mesh_array +#define GL_SUN_mesh_array 1 +#define GL_QUAD_MESH_SUN 0x8614 +#define GL_TRIANGLE_MESH_SUN 0x8615 +typedef void (APIENTRYP PFNGLDRAWMESHARRAYSSUNPROC) (GLenum mode, GLint first, GLsizei count, GLsizei width); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawMeshArraysSUN (GLenum mode, GLint first, GLsizei count, GLsizei width); +#endif +#endif /* GL_SUN_mesh_array */ + +#ifndef GL_SUN_slice_accum +#define GL_SUN_slice_accum 1 +#define GL_SLICE_ACCUM_SUN 0x85CC +#endif /* GL_SUN_slice_accum */ + +#ifndef GL_SUN_triangle_list +#define GL_SUN_triangle_list 1 +#define GL_RESTART_SUN 0x0001 +#define GL_REPLACE_MIDDLE_SUN 0x0002 +#define GL_REPLACE_OLDEST_SUN 0x0003 +#define GL_TRIANGLE_LIST_SUN 0x81D7 +#define GL_REPLACEMENT_CODE_SUN 0x81D8 +#define GL_REPLACEMENT_CODE_ARRAY_SUN 0x85C0 +#define GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN 0x85C1 +#define GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN 0x85C2 +#define GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN 0x85C3 +#define GL_R1UI_V3F_SUN 0x85C4 +#define GL_R1UI_C4UB_V3F_SUN 0x85C5 +#define GL_R1UI_C3F_V3F_SUN 0x85C6 +#define GL_R1UI_N3F_V3F_SUN 0x85C7 +#define GL_R1UI_C4F_N3F_V3F_SUN 0x85C8 +#define GL_R1UI_T2F_V3F_SUN 0x85C9 +#define GL_R1UI_T2F_N3F_V3F_SUN 0x85CA +#define GL_R1UI_T2F_C4F_N3F_V3F_SUN 0x85CB +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUISUNPROC) (GLuint code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSSUNPROC) (GLushort code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBSUNPROC) (GLubyte code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVSUNPROC) (const GLuint *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSVSUNPROC) (const GLushort *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBVSUNPROC) (const GLubyte *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEPOINTERSUNPROC) (GLenum type, GLsizei stride, const void **pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReplacementCodeuiSUN (GLuint code); +GLAPI void APIENTRY glReplacementCodeusSUN (GLushort code); +GLAPI void APIENTRY glReplacementCodeubSUN (GLubyte code); +GLAPI void APIENTRY glReplacementCodeuivSUN (const GLuint *code); +GLAPI void APIENTRY glReplacementCodeusvSUN (const GLushort *code); +GLAPI void APIENTRY glReplacementCodeubvSUN (const GLubyte *code); +GLAPI void APIENTRY glReplacementCodePointerSUN (GLenum type, GLsizei stride, const void **pointer); +#endif +#endif /* GL_SUN_triangle_list */ + +#ifndef GL_SUN_vertex +#define GL_SUN_vertex 1 +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FVSUNPROC) (const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FVSUNPROC) (const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FSUNPROC) (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FVSUNPROC) (const GLfloat *tc, const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FSUNPROC) (GLuint rc, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FSUNPROC) (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FVSUNPROC) (const GLuint *rc, const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColor4ubVertex2fSUN (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y); +GLAPI void APIENTRY glColor4ubVertex2fvSUN (const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glColor4ubVertex3fSUN (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor4ubVertex3fvSUN (const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glColor3fVertex3fSUN (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor3fVertex3fvSUN (const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glNormal3fVertex3fSUN (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glNormal3fVertex3fvSUN (const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glColor4fNormal3fVertex3fSUN (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor4fNormal3fVertex3fvSUN (const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fVertex3fSUN (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fVertex3fvSUN (const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glTexCoord4fVertex4fSUN (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glTexCoord4fVertex4fvSUN (const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fSUN (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fvSUN (const GLfloat *tc, const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fSUN (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiVertex3fSUN (GLuint rc, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiVertex3fvSUN (const GLuint *rc, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fSUN (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fvSUN (const GLuint *rc, const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fSUN (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fvSUN (const GLuint *rc, const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fSUN (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fSUN (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +#endif +#endif /* GL_SUN_vertex */ + +#ifndef GL_WIN_phong_shading +#define GL_WIN_phong_shading 1 +#define GL_PHONG_WIN 0x80EA +#define GL_PHONG_HINT_WIN 0x80EB +#endif /* GL_WIN_phong_shading */ + +#ifndef GL_WIN_specular_fog +#define GL_WIN_specular_fog 1 +#define GL_FOG_SPECULAR_TEXTURE_WIN 0x80EC +#endif /* GL_WIN_specular_fog */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles.h new file mode 100644 index 0000000..4fb9a4b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles.h @@ -0,0 +1,38 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the OpenGL ES 1.X API headers. + */ + +#include + +#ifdef SDL_PLATFORM_IOS +#include +#include +#else +#include +#include +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2.h new file mode 100644 index 0000000..365898a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2.h @@ -0,0 +1,51 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the OpenGL ES 2.0 API headers. + */ + +#include + +#if !defined(_MSC_VER) && !defined(SDL_USE_BUILTIN_OPENGL_DEFINITIONS) + +#ifdef SDL_PLATFORM_IOS +#include +#include +#else +#include +#include +#include +#endif + +#else /* _MSC_VER */ + +/* OpenGL ES2 headers for Visual Studio */ +#include +#include +#include +#include + +#endif /* _MSC_VER */ + +#ifndef APIENTRY +#define APIENTRY GL_APIENTRY +#endif diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_gl2.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_gl2.h new file mode 100644 index 0000000..d13622a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_gl2.h @@ -0,0 +1,656 @@ +#ifndef __gles2_gl2_h_ +#define __gles2_gl2_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +/*#include */ + +#ifndef GL_APIENTRYP +#define GL_APIENTRYP GL_APIENTRY* +#endif + +#ifndef GL_GLES_PROTOTYPES +#define GL_GLES_PROTOTYPES 1 +#endif + +/* Generated on date 20220530 */ + +/* Generated C header for: + * API: gles2 + * Profile: common + * Versions considered: 2\.[0-9] + * Versions emitted: .* + * Default extensions included: None + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_ES_VERSION_2_0 +#define GL_ES_VERSION_2_0 1 +/*#include */ +typedef khronos_int8_t GLbyte; +typedef khronos_float_t GLclampf; +typedef khronos_int32_t GLfixed; +typedef khronos_int16_t GLshort; +typedef khronos_uint16_t GLushort; +typedef void GLvoid; +typedef struct __GLsync *GLsync; +typedef khronos_int64_t GLint64; +typedef khronos_uint64_t GLuint64; +typedef unsigned int GLenum; +typedef unsigned int GLuint; +typedef char GLchar; +typedef khronos_float_t GLfloat; +typedef khronos_ssize_t GLsizeiptr; +typedef khronos_intptr_t GLintptr; +typedef unsigned int GLbitfield; +typedef int GLint; +typedef unsigned char GLboolean; +typedef int GLsizei; +typedef khronos_uint8_t GLubyte; +#define GL_DEPTH_BUFFER_BIT 0x00000100 +#define GL_STENCIL_BUFFER_BIT 0x00000400 +#define GL_COLOR_BUFFER_BIT 0x00004000 +#define GL_FALSE 0 +#define GL_TRUE 1 +#define GL_POINTS 0x0000 +#define GL_LINES 0x0001 +#define GL_LINE_LOOP 0x0002 +#define GL_LINE_STRIP 0x0003 +#define GL_TRIANGLES 0x0004 +#define GL_TRIANGLE_STRIP 0x0005 +#define GL_TRIANGLE_FAN 0x0006 +#define GL_ZERO 0 +#define GL_ONE 1 +#define GL_SRC_COLOR 0x0300 +#define GL_ONE_MINUS_SRC_COLOR 0x0301 +#define GL_SRC_ALPHA 0x0302 +#define GL_ONE_MINUS_SRC_ALPHA 0x0303 +#define GL_DST_ALPHA 0x0304 +#define GL_ONE_MINUS_DST_ALPHA 0x0305 +#define GL_DST_COLOR 0x0306 +#define GL_ONE_MINUS_DST_COLOR 0x0307 +#define GL_SRC_ALPHA_SATURATE 0x0308 +#define GL_FUNC_ADD 0x8006 +#define GL_BLEND_EQUATION 0x8009 +#define GL_BLEND_EQUATION_RGB 0x8009 +#define GL_BLEND_EQUATION_ALPHA 0x883D +#define GL_FUNC_SUBTRACT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_BLEND_DST_RGB 0x80C8 +#define GL_BLEND_SRC_RGB 0x80C9 +#define GL_BLEND_DST_ALPHA 0x80CA +#define GL_BLEND_SRC_ALPHA 0x80CB +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_BLEND_COLOR 0x8005 +#define GL_ARRAY_BUFFER 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER 0x8893 +#define GL_ARRAY_BUFFER_BINDING 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 +#define GL_STREAM_DRAW 0x88E0 +#define GL_STATIC_DRAW 0x88E4 +#define GL_DYNAMIC_DRAW 0x88E8 +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_FRONT_AND_BACK 0x0408 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_CULL_FACE 0x0B44 +#define GL_BLEND 0x0BE2 +#define GL_DITHER 0x0BD0 +#define GL_STENCIL_TEST 0x0B90 +#define GL_DEPTH_TEST 0x0B71 +#define GL_SCISSOR_TEST 0x0C11 +#define GL_POLYGON_OFFSET_FILL 0x8037 +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_NO_ERROR 0 +#define GL_INVALID_ENUM 0x0500 +#define GL_INVALID_VALUE 0x0501 +#define GL_INVALID_OPERATION 0x0502 +#define GL_OUT_OF_MEMORY 0x0505 +#define GL_CW 0x0900 +#define GL_CCW 0x0901 +#define GL_LINE_WIDTH 0x0B21 +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#define GL_STENCIL_FAIL 0x0B94 +#define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 +#define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 +#define GL_STENCIL_REF 0x0B97 +#define GL_STENCIL_VALUE_MASK 0x0B93 +#define GL_STENCIL_WRITEMASK 0x0B98 +#define GL_STENCIL_BACK_FUNC 0x8800 +#define GL_STENCIL_BACK_FAIL 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 +#define GL_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 +#define GL_VIEWPORT 0x0BA2 +#define GL_SCISSOR_BOX 0x0C10 +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_SUBPIXEL_BITS 0x0D50 +#define GL_RED_BITS 0x0D52 +#define GL_GREEN_BITS 0x0D53 +#define GL_BLUE_BITS 0x0D54 +#define GL_ALPHA_BITS 0x0D55 +#define GL_DEPTH_BITS 0x0D56 +#define GL_STENCIL_BITS 0x0D57 +#define GL_POLYGON_OFFSET_UNITS 0x2A00 +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_TEXTURE_BINDING_2D 0x8069 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 +#define GL_GENERATE_MIPMAP_HINT 0x8192 +#define GL_BYTE 0x1400 +#define GL_UNSIGNED_BYTE 0x1401 +#define GL_SHORT 0x1402 +#define GL_UNSIGNED_SHORT 0x1403 +#define GL_INT 0x1404 +#define GL_UNSIGNED_INT 0x1405 +#define GL_FLOAT 0x1406 +#define GL_FIXED 0x140C +#define GL_DEPTH_COMPONENT 0x1902 +#define GL_ALPHA 0x1906 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 +#define GL_LUMINANCE 0x1909 +#define GL_LUMINANCE_ALPHA 0x190A +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB +#define GL_MAX_VARYING_VECTORS 0x8DFC +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD +#define GL_SHADER_TYPE 0x8B4F +#define GL_DELETE_STATUS 0x8B80 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D +#define GL_NEVER 0x0200 +#define GL_LESS 0x0201 +#define GL_EQUAL 0x0202 +#define GL_LEQUAL 0x0203 +#define GL_GREATER 0x0204 +#define GL_NOTEQUAL 0x0205 +#define GL_GEQUAL 0x0206 +#define GL_ALWAYS 0x0207 +#define GL_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 +#define GL_INVERT 0x150A +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 +#define GL_VENDOR 0x1F00 +#define GL_RENDERER 0x1F01 +#define GL_VERSION 0x1F02 +#define GL_EXTENSIONS 0x1F03 +#define GL_NEAREST 0x2600 +#define GL_LINEAR 0x2601 +#define GL_NEAREST_MIPMAP_NEAREST 0x2700 +#define GL_LINEAR_MIPMAP_NEAREST 0x2701 +#define GL_NEAREST_MIPMAP_LINEAR 0x2702 +#define GL_LINEAR_MIPMAP_LINEAR 0x2703 +#define GL_TEXTURE_MAG_FILTER 0x2800 +#define GL_TEXTURE_MIN_FILTER 0x2801 +#define GL_TEXTURE_WRAP_S 0x2802 +#define GL_TEXTURE_WRAP_T 0x2803 +#define GL_TEXTURE 0x1702 +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_REPEAT 0x2901 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_MIRRORED_REPEAT 0x8370 +#define GL_FLOAT_VEC2 0x8B50 +#define GL_FLOAT_VEC3 0x8B51 +#define GL_FLOAT_VEC4 0x8B52 +#define GL_INT_VEC2 0x8B53 +#define GL_INT_VEC3 0x8B54 +#define GL_INT_VEC4 0x8B55 +#define GL_BOOL 0x8B56 +#define GL_BOOL_VEC2 0x8B57 +#define GL_BOOL_VEC3 0x8B58 +#define GL_BOOL_VEC4 0x8B59 +#define GL_FLOAT_MAT2 0x8B5A +#define GL_FLOAT_MAT3 0x8B5B +#define GL_FLOAT_MAT4 0x8B5C +#define GL_SAMPLER_2D 0x8B5E +#define GL_SAMPLER_CUBE 0x8B60 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F +#define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B +#define GL_COMPILE_STATUS 0x8B81 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_SHADER_COMPILER 0x8DFA +#define GL_SHADER_BINARY_FORMATS 0x8DF8 +#define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 +#define GL_LOW_FLOAT 0x8DF0 +#define GL_MEDIUM_FLOAT 0x8DF1 +#define GL_HIGH_FLOAT 0x8DF2 +#define GL_LOW_INT 0x8DF3 +#define GL_MEDIUM_INT 0x8DF4 +#define GL_HIGH_INT 0x8DF5 +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGB565 0x8D62 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_STENCIL_INDEX8 0x8D48 +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#define GL_RENDERBUFFER_RED_SIZE 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 +#define GL_COLOR_ATTACHMENT0 0x8CE0 +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 +#define GL_NONE 0 +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS 0x8CD9 +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 +typedef void (GL_APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (GL_APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (GL_APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer); +typedef void (GL_APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer); +typedef void (GL_APIENTRYP PFNGLBINDTEXTUREPROC) (GLenum target, GLuint texture); +typedef void (GL_APIENTRYP PFNGLBLENDCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCPROC) (GLenum sfactor, GLenum dfactor); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +typedef void (GL_APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +typedef void (GL_APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +typedef GLenum (GL_APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLCLEARPROC) (GLbitfield mask); +typedef void (GL_APIENTRYP PFNGLCLEARCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (GL_APIENTRYP PFNGLCLEARDEPTHFPROC) (GLfloat d); +typedef void (GL_APIENTRYP PFNGLCLEARSTENCILPROC) (GLint s); +typedef void (GL_APIENTRYP PFNGLCOLORMASKPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +typedef void (GL_APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOPYTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (GL_APIENTRYP PFNGLCOPYTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef GLuint (GL_APIENTRYP PFNGLCREATEPROGRAMPROC) (void); +typedef GLuint (GL_APIENTRYP PFNGLCREATESHADERPROC) (GLenum type); +typedef void (GL_APIENTRYP PFNGLCULLFACEPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers); +typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLDELETERENDERBUFFERSPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (GL_APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader); +typedef void (GL_APIENTRYP PFNGLDELETETEXTURESPROC) (GLsizei n, const GLuint *textures); +typedef void (GL_APIENTRYP PFNGLDEPTHFUNCPROC) (GLenum func); +typedef void (GL_APIENTRYP PFNGLDEPTHMASKPROC) (GLboolean flag); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEFPROC) (GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (GL_APIENTRYP PFNGLDISABLEPROC) (GLenum cap); +typedef void (GL_APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices); +typedef void (GL_APIENTRYP PFNGLENABLEPROC) (GLenum cap); +typedef void (GL_APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (GL_APIENTRYP PFNGLFINISHPROC) (void); +typedef void (GL_APIENTRYP PFNGLFLUSHPROC) (void); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (GL_APIENTRYP PFNGLFRONTFACEPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef void (GL_APIENTRYP PFNGLGENERATEMIPMAPPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef void (GL_APIENTRYP PFNGLGENRENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (GL_APIENTRYP PFNGLGENTEXTURESPROC) (GLsizei n, GLuint *textures); +typedef void (GL_APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +typedef GLint (GL_APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETBOOLEANVPROC) (GLenum pname, GLboolean *data); +typedef void (GL_APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLenum (GL_APIENTRYP PFNGLGETERRORPROC) (void); +typedef void (GL_APIENTRYP PFNGLGETFLOATVPROC) (GLenum pname, GLfloat *data); +typedef void (GL_APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETINTEGERVPROC) (GLenum pname, GLint *data); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +typedef void (GL_APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +typedef const GLubyte *(GL_APIENTRYP PFNGLGETSTRINGPROC) (GLenum name); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params); +typedef GLint (GL_APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer); +typedef void (GL_APIENTRYP PFNGLHINTPROC) (GLenum target, GLenum mode); +typedef GLboolean (GL_APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDPROC) (GLenum cap); +typedef GLboolean (GL_APIENTRYP PFNGLISFRAMEBUFFERPROC) (GLuint framebuffer); +typedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPROC) (GLuint program); +typedef GLboolean (GL_APIENTRYP PFNGLISRENDERBUFFERPROC) (GLuint renderbuffer); +typedef GLboolean (GL_APIENTRYP PFNGLISSHADERPROC) (GLuint shader); +typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREPROC) (GLuint texture); +typedef void (GL_APIENTRYP PFNGLLINEWIDTHPROC) (GLfloat width); +typedef void (GL_APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLPIXELSTOREIPROC) (GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLPOLYGONOFFSETPROC) (GLfloat factor, GLfloat units); +typedef void (GL_APIENTRYP PFNGLREADPIXELSPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +typedef void (GL_APIENTRYP PFNGLRELEASESHADERCOMPILERPROC) (void); +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLfloat value, GLboolean invert); +typedef void (GL_APIENTRYP PFNGLSCISSORPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (GL_APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +typedef void (GL_APIENTRYP PFNGLSTENCILFUNCPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum face, GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILMASKPROC) (GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILOPPROC) (GLenum fail, GLenum zfail, GLenum zpass); +typedef void (GL_APIENTRYP PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (GL_APIENTRYP PFNGLTEXIMAGE2DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0); +typedef void (GL_APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0); +typedef void (GL_APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (GL_APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1); +typedef void (GL_APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (GL_APIENTRYP PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (GL_APIENTRYP PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (GL_APIENTRYP PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GL_APIENTRYP PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +typedef void (GL_APIENTRYP PFNGLVIEWPORTPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +#if GL_GLES_PROTOTYPES +GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture); +GL_APICALL void GL_APIENTRY glAttachShader (GLuint program, GLuint shader); +GL_APICALL void GL_APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar *name); +GL_APICALL void GL_APIENTRY glBindBuffer (GLenum target, GLuint buffer); +GL_APICALL void GL_APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer); +GL_APICALL void GL_APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer); +GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture); +GL_APICALL void GL_APIENTRY glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GL_APICALL void GL_APIENTRY glBlendEquation (GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunc (GLenum sfactor, GLenum dfactor); +GL_APICALL void GL_APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +GL_APICALL void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +GL_APICALL void GL_APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +GL_APICALL GLenum GL_APIENTRY glCheckFramebufferStatus (GLenum target); +GL_APICALL void GL_APIENTRY glClear (GLbitfield mask); +GL_APICALL void GL_APIENTRY glClearColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GL_APICALL void GL_APIENTRY glClearDepthf (GLfloat d); +GL_APICALL void GL_APIENTRY glClearStencil (GLint s); +GL_APICALL void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +GL_APICALL void GL_APIENTRY glCompileShader (GLuint shader); +GL_APICALL void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GL_APICALL void GL_APIENTRY glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL GLuint GL_APIENTRY glCreateProgram (void); +GL_APICALL GLuint GL_APIENTRY glCreateShader (GLenum type); +GL_APICALL void GL_APIENTRY glCullFace (GLenum mode); +GL_APICALL void GL_APIENTRY glDeleteBuffers (GLsizei n, const GLuint *buffers); +GL_APICALL void GL_APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); +GL_APICALL void GL_APIENTRY glDeleteProgram (GLuint program); +GL_APICALL void GL_APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint *renderbuffers); +GL_APICALL void GL_APIENTRY glDeleteShader (GLuint shader); +GL_APICALL void GL_APIENTRY glDeleteTextures (GLsizei n, const GLuint *textures); +GL_APICALL void GL_APIENTRY glDepthFunc (GLenum func); +GL_APICALL void GL_APIENTRY glDepthMask (GLboolean flag); +GL_APICALL void GL_APIENTRY glDepthRangef (GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glDetachShader (GLuint program, GLuint shader); +GL_APICALL void GL_APIENTRY glDisable (GLenum cap); +GL_APICALL void GL_APIENTRY glDisableVertexAttribArray (GLuint index); +GL_APICALL void GL_APIENTRY glDrawArrays (GLenum mode, GLint first, GLsizei count); +GL_APICALL void GL_APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const void *indices); +GL_APICALL void GL_APIENTRY glEnable (GLenum cap); +GL_APICALL void GL_APIENTRY glEnableVertexAttribArray (GLuint index); +GL_APICALL void GL_APIENTRY glFinish (void); +GL_APICALL void GL_APIENTRY glFlush (void); +GL_APICALL void GL_APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GL_APICALL void GL_APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GL_APICALL void GL_APIENTRY glFrontFace (GLenum mode); +GL_APICALL void GL_APIENTRY glGenBuffers (GLsizei n, GLuint *buffers); +GL_APICALL void GL_APIENTRY glGenerateMipmap (GLenum target); +GL_APICALL void GL_APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers); +GL_APICALL void GL_APIENTRY glGenRenderbuffers (GLsizei n, GLuint *renderbuffers); +GL_APICALL void GL_APIENTRY glGenTextures (GLsizei n, GLuint *textures); +GL_APICALL void GL_APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GL_APICALL void GL_APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GL_APICALL void GL_APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +GL_APICALL GLint GL_APIENTRY glGetAttribLocation (GLuint program, const GLchar *name); +GL_APICALL void GL_APIENTRY glGetBooleanv (GLenum pname, GLboolean *data); +GL_APICALL void GL_APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL GLenum GL_APIENTRY glGetError (void); +GL_APICALL void GL_APIENTRY glGetFloatv (GLenum pname, GLfloat *data); +GL_APICALL void GL_APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetIntegerv (GLenum pname, GLint *data); +GL_APICALL void GL_APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +GL_APICALL void GL_APIENTRY glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +GL_APICALL const GLubyte *GL_APIENTRY glGetString (GLenum name); +GL_APICALL void GL_APIENTRY glGetTexParameterfv (GLenum target, GLenum pname, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetTexParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetUniformiv (GLuint program, GLint location, GLint *params); +GL_APICALL GLint GL_APIENTRY glGetUniformLocation (GLuint program, const GLchar *name); +GL_APICALL void GL_APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer); +GL_APICALL void GL_APIENTRY glHint (GLenum target, GLenum mode); +GL_APICALL GLboolean GL_APIENTRY glIsBuffer (GLuint buffer); +GL_APICALL GLboolean GL_APIENTRY glIsEnabled (GLenum cap); +GL_APICALL GLboolean GL_APIENTRY glIsFramebuffer (GLuint framebuffer); +GL_APICALL GLboolean GL_APIENTRY glIsProgram (GLuint program); +GL_APICALL GLboolean GL_APIENTRY glIsRenderbuffer (GLuint renderbuffer); +GL_APICALL GLboolean GL_APIENTRY glIsShader (GLuint shader); +GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture); +GL_APICALL void GL_APIENTRY glLineWidth (GLfloat width); +GL_APICALL void GL_APIENTRY glLinkProgram (GLuint program); +GL_APICALL void GL_APIENTRY glPixelStorei (GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glPolygonOffset (GLfloat factor, GLfloat units); +GL_APICALL void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +GL_APICALL void GL_APIENTRY glReleaseShaderCompiler (void); +GL_APICALL void GL_APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glSampleCoverage (GLfloat value, GLboolean invert); +GL_APICALL void GL_APIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +GL_APICALL void GL_APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +GL_APICALL void GL_APIENTRY glStencilFunc (GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilMask (GLuint mask); +GL_APICALL void GL_APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilOp (GLenum fail, GLenum zfail, GLenum zpass); +GL_APICALL void GL_APIENTRY glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GL_APICALL void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glTexParameterf (GLenum target, GLenum pname, GLfloat param); +GL_APICALL void GL_APIENTRY glTexParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GL_APICALL void GL_APIENTRY glTexParameteri (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glTexParameteriv (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glUniform1f (GLint location, GLfloat v0); +GL_APICALL void GL_APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform1i (GLint location, GLint v0); +GL_APICALL void GL_APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform2f (GLint location, GLfloat v0, GLfloat v1); +GL_APICALL void GL_APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform2i (GLint location, GLint v0, GLint v1); +GL_APICALL void GL_APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GL_APICALL void GL_APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform3i (GLint location, GLint v0, GLint v1, GLint v2); +GL_APICALL void GL_APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GL_APICALL void GL_APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GL_APICALL void GL_APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUseProgram (GLuint program); +GL_APICALL void GL_APIENTRY glValidateProgram (GLuint program); +GL_APICALL void GL_APIENTRY glVertexAttrib1f (GLuint index, GLfloat x); +GL_APICALL void GL_APIENTRY glVertexAttrib1fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y); +GL_APICALL void GL_APIENTRY glVertexAttrib2fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glVertexAttrib3fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GL_APICALL void GL_APIENTRY glVertexAttrib4fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +GL_APICALL void GL_APIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height); +#endif +#endif /* GL_ES_VERSION_2_0 */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_gl2ext.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_gl2ext.h new file mode 100644 index 0000000..9448ce0 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_gl2ext.h @@ -0,0 +1,4033 @@ +#ifndef __gles2_gl2ext_h_ +#define __gles2_gl2ext_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +#ifndef GL_APIENTRYP +#define GL_APIENTRYP GL_APIENTRY* +#endif + +/* Generated on date 20220530 */ + +/* Generated C header for: + * API: gles2 + * Profile: common + * Versions considered: 2\.[0-9] + * Versions emitted: _nomatch_^ + * Default extensions included: gles2 + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_KHR_blend_equation_advanced +#define GL_KHR_blend_equation_advanced 1 +#define GL_MULTIPLY_KHR 0x9294 +#define GL_SCREEN_KHR 0x9295 +#define GL_OVERLAY_KHR 0x9296 +#define GL_DARKEN_KHR 0x9297 +#define GL_LIGHTEN_KHR 0x9298 +#define GL_COLORDODGE_KHR 0x9299 +#define GL_COLORBURN_KHR 0x929A +#define GL_HARDLIGHT_KHR 0x929B +#define GL_SOFTLIGHT_KHR 0x929C +#define GL_DIFFERENCE_KHR 0x929E +#define GL_EXCLUSION_KHR 0x92A0 +#define GL_HSL_HUE_KHR 0x92AD +#define GL_HSL_SATURATION_KHR 0x92AE +#define GL_HSL_COLOR_KHR 0x92AF +#define GL_HSL_LUMINOSITY_KHR 0x92B0 +typedef void (GL_APIENTRYP PFNGLBLENDBARRIERKHRPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlendBarrierKHR (void); +#endif +#endif /* GL_KHR_blend_equation_advanced */ + +#ifndef GL_KHR_blend_equation_advanced_coherent +#define GL_KHR_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_KHR 0x9285 +#endif /* GL_KHR_blend_equation_advanced_coherent */ + +#ifndef GL_KHR_context_flush_control +#define GL_KHR_context_flush_control 1 +#define GL_CONTEXT_RELEASE_BEHAVIOR_KHR 0x82FB +#define GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_KHR 0x82FC +#endif /* GL_KHR_context_flush_control */ + +#ifndef GL_KHR_debug +#define GL_KHR_debug 1 +typedef void (GL_APIENTRY *GLDEBUGPROCKHR)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +#define GL_SAMPLER 0x82E6 +#define GL_DEBUG_OUTPUT_SYNCHRONOUS_KHR 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_KHR 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION_KHR 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM_KHR 0x8245 +#define GL_DEBUG_SOURCE_API_KHR 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_KHR 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER_KHR 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY_KHR 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION_KHR 0x824A +#define GL_DEBUG_SOURCE_OTHER_KHR 0x824B +#define GL_DEBUG_TYPE_ERROR_KHR 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_KHR 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_KHR 0x824E +#define GL_DEBUG_TYPE_PORTABILITY_KHR 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE_KHR 0x8250 +#define GL_DEBUG_TYPE_OTHER_KHR 0x8251 +#define GL_DEBUG_TYPE_MARKER_KHR 0x8268 +#define GL_DEBUG_TYPE_PUSH_GROUP_KHR 0x8269 +#define GL_DEBUG_TYPE_POP_GROUP_KHR 0x826A +#define GL_DEBUG_SEVERITY_NOTIFICATION_KHR 0x826B +#define GL_MAX_DEBUG_GROUP_STACK_DEPTH_KHR 0x826C +#define GL_DEBUG_GROUP_STACK_DEPTH_KHR 0x826D +#define GL_BUFFER_KHR 0x82E0 +#define GL_SHADER_KHR 0x82E1 +#define GL_PROGRAM_KHR 0x82E2 +#define GL_VERTEX_ARRAY_KHR 0x8074 +#define GL_QUERY_KHR 0x82E3 +#define GL_PROGRAM_PIPELINE_KHR 0x82E4 +#define GL_SAMPLER_KHR 0x82E6 +#define GL_MAX_LABEL_LENGTH_KHR 0x82E8 +#define GL_MAX_DEBUG_MESSAGE_LENGTH_KHR 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_KHR 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_KHR 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_KHR 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_KHR 0x9147 +#define GL_DEBUG_SEVERITY_LOW_KHR 0x9148 +#define GL_DEBUG_OUTPUT_KHR 0x92E0 +#define GL_CONTEXT_FLAG_DEBUG_BIT_KHR 0x00000002 +#define GL_STACK_OVERFLOW_KHR 0x0503 +#define GL_STACK_UNDERFLOW_KHR 0x0504 +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECONTROLKHRPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGEINSERTKHRPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECALLBACKKHRPROC) (GLDEBUGPROCKHR callback, const void *userParam); +typedef GLuint (GL_APIENTRYP PFNGLGETDEBUGMESSAGELOGKHRPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +typedef void (GL_APIENTRYP PFNGLPUSHDEBUGGROUPKHRPROC) (GLenum source, GLuint id, GLsizei length, const GLchar *message); +typedef void (GL_APIENTRYP PFNGLPOPDEBUGGROUPKHRPROC) (void); +typedef void (GL_APIENTRYP PFNGLOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (GL_APIENTRYP PFNGLOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETPOINTERVKHRPROC) (GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDebugMessageControlKHR (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GL_APICALL void GL_APIENTRY glDebugMessageInsertKHR (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GL_APICALL void GL_APIENTRY glDebugMessageCallbackKHR (GLDEBUGPROCKHR callback, const void *userParam); +GL_APICALL GLuint GL_APIENTRY glGetDebugMessageLogKHR (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +GL_APICALL void GL_APIENTRY glPushDebugGroupKHR (GLenum source, GLuint id, GLsizei length, const GLchar *message); +GL_APICALL void GL_APIENTRY glPopDebugGroupKHR (void); +GL_APICALL void GL_APIENTRY glObjectLabelKHR (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectLabelKHR (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +GL_APICALL void GL_APIENTRY glObjectPtrLabelKHR (const void *ptr, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectPtrLabelKHR (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +GL_APICALL void GL_APIENTRY glGetPointervKHR (GLenum pname, void **params); +#endif +#endif /* GL_KHR_debug */ + +#ifndef GL_KHR_no_error +#define GL_KHR_no_error 1 +#define GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 +#endif /* GL_KHR_no_error */ + +#ifndef GL_KHR_parallel_shader_compile +#define GL_KHR_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_KHR 0x91B0 +#define GL_COMPLETION_STATUS_KHR 0x91B1 +typedef void (GL_APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSKHRPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMaxShaderCompilerThreadsKHR (GLuint count); +#endif +#endif /* GL_KHR_parallel_shader_compile */ + +#ifndef GL_KHR_robust_buffer_access_behavior +#define GL_KHR_robust_buffer_access_behavior 1 +#endif /* GL_KHR_robust_buffer_access_behavior */ + +#ifndef GL_KHR_robustness +#define GL_KHR_robustness 1 +#define GL_CONTEXT_ROBUST_ACCESS_KHR 0x90F3 +#define GL_LOSE_CONTEXT_ON_RESET_KHR 0x8252 +#define GL_GUILTY_CONTEXT_RESET_KHR 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_KHR 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_KHR 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY_KHR 0x8256 +#define GL_NO_RESET_NOTIFICATION_KHR 0x8261 +#define GL_CONTEXT_LOST_KHR 0x0507 +typedef GLenum (GL_APIENTRYP PFNGLGETGRAPHICSRESETSTATUSKHRPROC) (void); +typedef void (GL_APIENTRYP PFNGLREADNPIXELSKHRPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMUIVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusKHR (void); +GL_APICALL void GL_APIENTRY glReadnPixelsKHR (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GL_APICALL void GL_APIENTRY glGetnUniformfvKHR (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetnUniformivKHR (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GL_APICALL void GL_APIENTRY glGetnUniformuivKHR (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +#endif +#endif /* GL_KHR_robustness */ + +#ifndef GL_KHR_shader_subgroup +#define GL_KHR_shader_subgroup 1 +#define GL_SUBGROUP_SIZE_KHR 0x9532 +#define GL_SUBGROUP_SUPPORTED_STAGES_KHR 0x9533 +#define GL_SUBGROUP_SUPPORTED_FEATURES_KHR 0x9534 +#define GL_SUBGROUP_QUAD_ALL_STAGES_KHR 0x9535 +#define GL_SUBGROUP_FEATURE_BASIC_BIT_KHR 0x00000001 +#define GL_SUBGROUP_FEATURE_VOTE_BIT_KHR 0x00000002 +#define GL_SUBGROUP_FEATURE_ARITHMETIC_BIT_KHR 0x00000004 +#define GL_SUBGROUP_FEATURE_BALLOT_BIT_KHR 0x00000008 +#define GL_SUBGROUP_FEATURE_SHUFFLE_BIT_KHR 0x00000010 +#define GL_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT_KHR 0x00000020 +#define GL_SUBGROUP_FEATURE_CLUSTERED_BIT_KHR 0x00000040 +#define GL_SUBGROUP_FEATURE_QUAD_BIT_KHR 0x00000080 +#endif /* GL_KHR_shader_subgroup */ + +#ifndef GL_KHR_texture_compression_astc_hdr +#define GL_KHR_texture_compression_astc_hdr 1 +#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 +#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1 +#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2 +#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3 +#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4 +#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5 +#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6 +#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7 +#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8 +#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 +#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA +#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB +#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC +#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD +#endif /* GL_KHR_texture_compression_astc_hdr */ + +#ifndef GL_KHR_texture_compression_astc_ldr +#define GL_KHR_texture_compression_astc_ldr 1 +#endif /* GL_KHR_texture_compression_astc_ldr */ + +#ifndef GL_KHR_texture_compression_astc_sliced_3d +#define GL_KHR_texture_compression_astc_sliced_3d 1 +#endif /* GL_KHR_texture_compression_astc_sliced_3d */ + +#ifndef GL_OES_EGL_image +#define GL_OES_EGL_image 1 +typedef void *GLeglImageOES; +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image); +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image); +GL_APICALL void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image); +#endif +#endif /* GL_OES_EGL_image */ + +#ifndef GL_OES_EGL_image_external +#define GL_OES_EGL_image_external 1 +#define GL_TEXTURE_EXTERNAL_OES 0x8D65 +#define GL_TEXTURE_BINDING_EXTERNAL_OES 0x8D67 +#define GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES 0x8D68 +#define GL_SAMPLER_EXTERNAL_OES 0x8D66 +#endif /* GL_OES_EGL_image_external */ + +#ifndef GL_OES_EGL_image_external_essl3 +#define GL_OES_EGL_image_external_essl3 1 +#endif /* GL_OES_EGL_image_external_essl3 */ + +#ifndef GL_OES_compressed_ETC1_RGB8_sub_texture +#define GL_OES_compressed_ETC1_RGB8_sub_texture 1 +#endif /* GL_OES_compressed_ETC1_RGB8_sub_texture */ + +#ifndef GL_OES_compressed_ETC1_RGB8_texture +#define GL_OES_compressed_ETC1_RGB8_texture 1 +#define GL_ETC1_RGB8_OES 0x8D64 +#endif /* GL_OES_compressed_ETC1_RGB8_texture */ + +#ifndef GL_OES_compressed_paletted_texture +#define GL_OES_compressed_paletted_texture 1 +#define GL_PALETTE4_RGB8_OES 0x8B90 +#define GL_PALETTE4_RGBA8_OES 0x8B91 +#define GL_PALETTE4_R5_G6_B5_OES 0x8B92 +#define GL_PALETTE4_RGBA4_OES 0x8B93 +#define GL_PALETTE4_RGB5_A1_OES 0x8B94 +#define GL_PALETTE8_RGB8_OES 0x8B95 +#define GL_PALETTE8_RGBA8_OES 0x8B96 +#define GL_PALETTE8_R5_G6_B5_OES 0x8B97 +#define GL_PALETTE8_RGBA4_OES 0x8B98 +#define GL_PALETTE8_RGB5_A1_OES 0x8B99 +#endif /* GL_OES_compressed_paletted_texture */ + +#ifndef GL_OES_copy_image +#define GL_OES_copy_image 1 +typedef void (GL_APIENTRYP PFNGLCOPYIMAGESUBDATAOESPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyImageSubDataOES (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#endif +#endif /* GL_OES_copy_image */ + +#ifndef GL_OES_depth24 +#define GL_OES_depth24 1 +#define GL_DEPTH_COMPONENT24_OES 0x81A6 +#endif /* GL_OES_depth24 */ + +#ifndef GL_OES_depth32 +#define GL_OES_depth32 1 +#define GL_DEPTH_COMPONENT32_OES 0x81A7 +#endif /* GL_OES_depth32 */ + +#ifndef GL_OES_depth_texture +#define GL_OES_depth_texture 1 +#endif /* GL_OES_depth_texture */ + +#ifndef GL_OES_draw_buffers_indexed +#define GL_OES_draw_buffers_indexed 1 +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +typedef void (GL_APIENTRYP PFNGLENABLEIOESPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEIOESPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONIOESPROC) (GLuint buf, GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEIOESPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCIOESPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEIOESPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (GL_APIENTRYP PFNGLCOLORMASKIOESPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDIOESPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEnableiOES (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiOES (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glBlendEquationiOES (GLuint buf, GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparateiOES (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunciOES (GLuint buf, GLenum src, GLenum dst); +GL_APICALL void GL_APIENTRY glBlendFuncSeparateiOES (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GL_APICALL void GL_APIENTRY glColorMaskiOES (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediOES (GLenum target, GLuint index); +#endif +#endif /* GL_OES_draw_buffers_indexed */ + +#ifndef GL_OES_draw_elements_base_vertex +#define GL_OES_draw_elements_base_vertex 1 +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXOESPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXOESPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXOESPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawElementsBaseVertexOES (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawRangeElementsBaseVertexOES (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexOES (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +GL_APICALL void GL_APIENTRY glMultiDrawElementsBaseVertexEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +#endif +#endif /* GL_OES_draw_elements_base_vertex */ + +#ifndef GL_OES_element_index_uint +#define GL_OES_element_index_uint 1 +#endif /* GL_OES_element_index_uint */ + +#ifndef GL_OES_fbo_render_mipmap +#define GL_OES_fbo_render_mipmap 1 +#endif /* GL_OES_fbo_render_mipmap */ + +#ifndef GL_OES_fragment_precision_high +#define GL_OES_fragment_precision_high 1 +#endif /* GL_OES_fragment_precision_high */ + +#ifndef GL_OES_geometry_point_size +#define GL_OES_geometry_point_size 1 +#endif /* GL_OES_geometry_point_size */ + +#ifndef GL_OES_geometry_shader +#define GL_OES_geometry_shader 1 +#define GL_GEOMETRY_SHADER_OES 0x8DD9 +#define GL_GEOMETRY_SHADER_BIT_OES 0x00000004 +#define GL_GEOMETRY_LINKED_VERTICES_OUT_OES 0x8916 +#define GL_GEOMETRY_LINKED_INPUT_TYPE_OES 0x8917 +#define GL_GEOMETRY_LINKED_OUTPUT_TYPE_OES 0x8918 +#define GL_GEOMETRY_SHADER_INVOCATIONS_OES 0x887F +#define GL_LAYER_PROVOKING_VERTEX_OES 0x825E +#define GL_LINES_ADJACENCY_OES 0x000A +#define GL_LINE_STRIP_ADJACENCY_OES 0x000B +#define GL_TRIANGLES_ADJACENCY_OES 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_OES 0x000D +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_OES 0x8DDF +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS_OES 0x8A2C +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_OES 0x8A32 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS_OES 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_OES 0x9124 +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_OES 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_OES 0x8DE1 +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS_OES 0x8E5A +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_OES 0x8C29 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_OES 0x92CF +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS_OES 0x92D5 +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS_OES 0x90CD +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_OES 0x90D7 +#define GL_FIRST_VERTEX_CONVENTION_OES 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_OES 0x8E4E +#define GL_UNDEFINED_VERTEX_OES 0x8260 +#define GL_PRIMITIVES_GENERATED_OES 0x8C87 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS_OES 0x9312 +#define GL_MAX_FRAMEBUFFER_LAYERS_OES 0x9317 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_OES 0x8DA8 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_OES 0x8DA7 +#define GL_REFERENCED_BY_GEOMETRY_SHADER_OES 0x9309 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREOESPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureOES (GLenum target, GLenum attachment, GLuint texture, GLint level); +#endif +#endif /* GL_OES_geometry_shader */ + +#ifndef GL_OES_get_program_binary +#define GL_OES_get_program_binary 1 +#define GL_PROGRAM_BINARY_LENGTH_OES 0x8741 +#define GL_NUM_PROGRAM_BINARY_FORMATS_OES 0x87FE +#define GL_PROGRAM_BINARY_FORMATS_OES 0x87FF +typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLint length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const void *binary, GLint length); +#endif +#endif /* GL_OES_get_program_binary */ + +#ifndef GL_OES_gpu_shader5 +#define GL_OES_gpu_shader5 1 +#endif /* GL_OES_gpu_shader5 */ + +#ifndef GL_OES_mapbuffer +#define GL_OES_mapbuffer 1 +#define GL_WRITE_ONLY_OES 0x88B9 +#define GL_BUFFER_ACCESS_OES 0x88BB +#define GL_BUFFER_MAPPED_OES 0x88BC +#define GL_BUFFER_MAP_POINTER_OES 0x88BD +typedef void *(GL_APIENTRYP PFNGLMAPBUFFEROESPROC) (GLenum target, GLenum access); +typedef GLboolean (GL_APIENTRYP PFNGLUNMAPBUFFEROESPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLGETBUFFERPOINTERVOESPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void *GL_APIENTRY glMapBufferOES (GLenum target, GLenum access); +GL_APICALL GLboolean GL_APIENTRY glUnmapBufferOES (GLenum target); +GL_APICALL void GL_APIENTRY glGetBufferPointervOES (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_OES_mapbuffer */ + +#ifndef GL_OES_packed_depth_stencil +#define GL_OES_packed_depth_stencil 1 +#define GL_DEPTH_STENCIL_OES 0x84F9 +#define GL_UNSIGNED_INT_24_8_OES 0x84FA +#define GL_DEPTH24_STENCIL8_OES 0x88F0 +#endif /* GL_OES_packed_depth_stencil */ + +#ifndef GL_OES_primitive_bounding_box +#define GL_OES_primitive_bounding_box 1 +#define GL_PRIMITIVE_BOUNDING_BOX_OES 0x92BE +typedef void (GL_APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXOESPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPrimitiveBoundingBoxOES (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_OES_primitive_bounding_box */ + +#ifndef GL_OES_required_internalformat +#define GL_OES_required_internalformat 1 +#define GL_ALPHA8_OES 0x803C +#define GL_DEPTH_COMPONENT16_OES 0x81A5 +#define GL_LUMINANCE4_ALPHA4_OES 0x8043 +#define GL_LUMINANCE8_ALPHA8_OES 0x8045 +#define GL_LUMINANCE8_OES 0x8040 +#define GL_RGBA4_OES 0x8056 +#define GL_RGB5_A1_OES 0x8057 +#define GL_RGB565_OES 0x8D62 +#define GL_RGB8_OES 0x8051 +#define GL_RGBA8_OES 0x8058 +#define GL_RGB10_EXT 0x8052 +#define GL_RGB10_A2_EXT 0x8059 +#endif /* GL_OES_required_internalformat */ + +#ifndef GL_OES_rgb8_rgba8 +#define GL_OES_rgb8_rgba8 1 +#endif /* GL_OES_rgb8_rgba8 */ + +#ifndef GL_OES_sample_shading +#define GL_OES_sample_shading 1 +#define GL_SAMPLE_SHADING_OES 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE_OES 0x8C37 +typedef void (GL_APIENTRYP PFNGLMINSAMPLESHADINGOESPROC) (GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMinSampleShadingOES (GLfloat value); +#endif +#endif /* GL_OES_sample_shading */ + +#ifndef GL_OES_sample_variables +#define GL_OES_sample_variables 1 +#endif /* GL_OES_sample_variables */ + +#ifndef GL_OES_shader_image_atomic +#define GL_OES_shader_image_atomic 1 +#endif /* GL_OES_shader_image_atomic */ + +#ifndef GL_OES_shader_io_blocks +#define GL_OES_shader_io_blocks 1 +#endif /* GL_OES_shader_io_blocks */ + +#ifndef GL_OES_shader_multisample_interpolation +#define GL_OES_shader_multisample_interpolation 1 +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_OES 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_OES 0x8E5C +#define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS_OES 0x8E5D +#endif /* GL_OES_shader_multisample_interpolation */ + +#ifndef GL_OES_standard_derivatives +#define GL_OES_standard_derivatives 1 +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES 0x8B8B +#endif /* GL_OES_standard_derivatives */ + +#ifndef GL_OES_stencil1 +#define GL_OES_stencil1 1 +#define GL_STENCIL_INDEX1_OES 0x8D46 +#endif /* GL_OES_stencil1 */ + +#ifndef GL_OES_stencil4 +#define GL_OES_stencil4 1 +#define GL_STENCIL_INDEX4_OES 0x8D47 +#endif /* GL_OES_stencil4 */ + +#ifndef GL_OES_surfaceless_context +#define GL_OES_surfaceless_context 1 +#define GL_FRAMEBUFFER_UNDEFINED_OES 0x8219 +#endif /* GL_OES_surfaceless_context */ + +#ifndef GL_OES_tessellation_point_size +#define GL_OES_tessellation_point_size 1 +#endif /* GL_OES_tessellation_point_size */ + +#ifndef GL_OES_tessellation_shader +#define GL_OES_tessellation_shader 1 +#define GL_PATCHES_OES 0x000E +#define GL_PATCH_VERTICES_OES 0x8E72 +#define GL_TESS_CONTROL_OUTPUT_VERTICES_OES 0x8E75 +#define GL_TESS_GEN_MODE_OES 0x8E76 +#define GL_TESS_GEN_SPACING_OES 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER_OES 0x8E78 +#define GL_TESS_GEN_POINT_MODE_OES 0x8E79 +#define GL_ISOLINES_OES 0x8E7A +#define GL_QUADS_OES 0x0007 +#define GL_FRACTIONAL_ODD_OES 0x8E7B +#define GL_FRACTIONAL_EVEN_OES 0x8E7C +#define GL_MAX_PATCH_VERTICES_OES 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL_OES 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS_OES 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS_OES 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS_OES 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS_OES 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS_OES 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS_OES 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS_OES 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS_OES 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS_OES 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS_OES 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS_OES 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS_OES 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS_OES 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS_OES 0x8E1F +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_OES 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS_OES 0x92CE +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS_OES 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS_OES 0x92D4 +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_OES 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS_OES 0x90CC +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS_OES 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS_OES 0x90D9 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED_OES 0x8221 +#define GL_IS_PER_PATCH_OES 0x92E7 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER_OES 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER_OES 0x9308 +#define GL_TESS_CONTROL_SHADER_OES 0x8E88 +#define GL_TESS_EVALUATION_SHADER_OES 0x8E87 +#define GL_TESS_CONTROL_SHADER_BIT_OES 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT_OES 0x00000010 +typedef void (GL_APIENTRYP PFNGLPATCHPARAMETERIOESPROC) (GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPatchParameteriOES (GLenum pname, GLint value); +#endif +#endif /* GL_OES_tessellation_shader */ + +#ifndef GL_OES_texture_3D +#define GL_OES_texture_3D 1 +#define GL_TEXTURE_WRAP_R_OES 0x8072 +#define GL_TEXTURE_3D_OES 0x806F +#define GL_TEXTURE_BINDING_3D_OES 0x806A +#define GL_MAX_3D_TEXTURE_SIZE_OES 0x8073 +#define GL_SAMPLER_3D_OES 0x8B5F +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_OES 0x8CD4 +typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLCOPYTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DOESPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glCopyTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glFramebufferTexture3DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +#endif +#endif /* GL_OES_texture_3D */ + +#ifndef GL_OES_texture_border_clamp +#define GL_OES_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_OES 0x1004 +#define GL_CLAMP_TO_BORDER_OES 0x812D +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIIVOESPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIUIVOESPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIIVOESPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIUIVOESPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIIVOESPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIUIVOESPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIIVOESPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVOESPROC) (GLuint sampler, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexParameterIivOES (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexParameterIuivOES (GLenum target, GLenum pname, const GLuint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIivOES (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIuivOES (GLenum target, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glSamplerParameterIivOES (GLuint sampler, GLenum pname, const GLint *param); +GL_APICALL void GL_APIENTRY glSamplerParameterIuivOES (GLuint sampler, GLenum pname, const GLuint *param); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIivOES (GLuint sampler, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIuivOES (GLuint sampler, GLenum pname, GLuint *params); +#endif +#endif /* GL_OES_texture_border_clamp */ + +#ifndef GL_OES_texture_buffer +#define GL_OES_texture_buffer 1 +#define GL_TEXTURE_BUFFER_OES 0x8C2A +#define GL_TEXTURE_BUFFER_BINDING_OES 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_OES 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_OES 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_OES 0x8C2D +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT_OES 0x919F +#define GL_SAMPLER_BUFFER_OES 0x8DC2 +#define GL_INT_SAMPLER_BUFFER_OES 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_OES 0x8DD8 +#define GL_IMAGE_BUFFER_OES 0x9051 +#define GL_INT_IMAGE_BUFFER_OES 0x905C +#define GL_UNSIGNED_INT_IMAGE_BUFFER_OES 0x9067 +#define GL_TEXTURE_BUFFER_OFFSET_OES 0x919D +#define GL_TEXTURE_BUFFER_SIZE_OES 0x919E +typedef void (GL_APIENTRYP PFNGLTEXBUFFEROESPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLTEXBUFFERRANGEOESPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexBufferOES (GLenum target, GLenum internalformat, GLuint buffer); +GL_APICALL void GL_APIENTRY glTexBufferRangeOES (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_OES_texture_buffer */ + +#ifndef GL_OES_texture_compression_astc +#define GL_OES_texture_compression_astc 1 +#define GL_COMPRESSED_RGBA_ASTC_3x3x3_OES 0x93C0 +#define GL_COMPRESSED_RGBA_ASTC_4x3x3_OES 0x93C1 +#define GL_COMPRESSED_RGBA_ASTC_4x4x3_OES 0x93C2 +#define GL_COMPRESSED_RGBA_ASTC_4x4x4_OES 0x93C3 +#define GL_COMPRESSED_RGBA_ASTC_5x4x4_OES 0x93C4 +#define GL_COMPRESSED_RGBA_ASTC_5x5x4_OES 0x93C5 +#define GL_COMPRESSED_RGBA_ASTC_5x5x5_OES 0x93C6 +#define GL_COMPRESSED_RGBA_ASTC_6x5x5_OES 0x93C7 +#define GL_COMPRESSED_RGBA_ASTC_6x6x5_OES 0x93C8 +#define GL_COMPRESSED_RGBA_ASTC_6x6x6_OES 0x93C9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_3x3x3_OES 0x93E0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x3x3_OES 0x93E1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x3_OES 0x93E2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x4_OES 0x93E3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4x4_OES 0x93E4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x4_OES 0x93E5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x5_OES 0x93E6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5x5_OES 0x93E7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x5_OES 0x93E8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x6_OES 0x93E9 +#endif /* GL_OES_texture_compression_astc */ + +#ifndef GL_OES_texture_cube_map_array +#define GL_OES_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_OES 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_OES 0x900A +#define GL_SAMPLER_CUBE_MAP_ARRAY_OES 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_OES 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_OES 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_OES 0x900F +#define GL_IMAGE_CUBE_MAP_ARRAY_OES 0x9054 +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_OES 0x905F +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_OES 0x906A +#endif /* GL_OES_texture_cube_map_array */ + +#ifndef GL_OES_texture_float +#define GL_OES_texture_float 1 +#endif /* GL_OES_texture_float */ + +#ifndef GL_OES_texture_float_linear +#define GL_OES_texture_float_linear 1 +#endif /* GL_OES_texture_float_linear */ + +#ifndef GL_OES_texture_half_float +#define GL_OES_texture_half_float 1 +#define GL_HALF_FLOAT_OES 0x8D61 +#endif /* GL_OES_texture_half_float */ + +#ifndef GL_OES_texture_half_float_linear +#define GL_OES_texture_half_float_linear 1 +#endif /* GL_OES_texture_half_float_linear */ + +#ifndef GL_OES_texture_npot +#define GL_OES_texture_npot 1 +#endif /* GL_OES_texture_npot */ + +#ifndef GL_OES_texture_stencil8 +#define GL_OES_texture_stencil8 1 +#define GL_STENCIL_INDEX_OES 0x1901 +#define GL_STENCIL_INDEX8_OES 0x8D48 +#endif /* GL_OES_texture_stencil8 */ + +#ifndef GL_OES_texture_storage_multisample_2d_array +#define GL_OES_texture_storage_multisample_2d_array 1 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY_OES 0x9102 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY_OES 0x9105 +#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910B +#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910C +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910D +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE3DMULTISAMPLEOESPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorage3DMultisampleOES (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +#endif +#endif /* GL_OES_texture_storage_multisample_2d_array */ + +#ifndef GL_OES_texture_view +#define GL_OES_texture_view 1 +#define GL_TEXTURE_VIEW_MIN_LEVEL_OES 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS_OES 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER_OES 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS_OES 0x82DE +#define GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF +typedef void (GL_APIENTRYP PFNGLTEXTUREVIEWOESPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureViewOES (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#endif +#endif /* GL_OES_texture_view */ + +#ifndef GL_OES_vertex_array_object +#define GL_OES_vertex_array_object 1 +#define GL_VERTEX_ARRAY_BINDING_OES 0x85B5 +typedef void (GL_APIENTRYP PFNGLBINDVERTEXARRAYOESPROC) (GLuint array); +typedef void (GL_APIENTRYP PFNGLDELETEVERTEXARRAYSOESPROC) (GLsizei n, const GLuint *arrays); +typedef void (GL_APIENTRYP PFNGLGENVERTEXARRAYSOESPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (GL_APIENTRYP PFNGLISVERTEXARRAYOESPROC) (GLuint array); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindVertexArrayOES (GLuint array); +GL_APICALL void GL_APIENTRY glDeleteVertexArraysOES (GLsizei n, const GLuint *arrays); +GL_APICALL void GL_APIENTRY glGenVertexArraysOES (GLsizei n, GLuint *arrays); +GL_APICALL GLboolean GL_APIENTRY glIsVertexArrayOES (GLuint array); +#endif +#endif /* GL_OES_vertex_array_object */ + +#ifndef GL_OES_vertex_half_float +#define GL_OES_vertex_half_float 1 +#endif /* GL_OES_vertex_half_float */ + +#ifndef GL_OES_vertex_type_10_10_10_2 +#define GL_OES_vertex_type_10_10_10_2 1 +#define GL_UNSIGNED_INT_10_10_10_2_OES 0x8DF6 +#define GL_INT_10_10_10_2_OES 0x8DF7 +#endif /* GL_OES_vertex_type_10_10_10_2 */ + +#ifndef GL_OES_viewport_array +#define GL_OES_viewport_array 1 +#define GL_MAX_VIEWPORTS_OES 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS_OES 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE_OES 0x825D +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX_OES 0x825F +typedef void (GL_APIENTRYP PFNGLVIEWPORTARRAYVOESPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFOESPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFVOESPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLSCISSORARRAYVOESPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDOESPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDVOESPROC) (GLuint index, const GLint *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEARRAYFVOESPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEINDEXEDFOESPROC) (GLuint index, GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLGETFLOATI_VOESPROC) (GLenum target, GLuint index, GLfloat *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportArrayvOES (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glViewportIndexedfOES (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GL_APICALL void GL_APIENTRY glViewportIndexedfvOES (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glScissorArrayvOES (GLuint first, GLsizei count, const GLint *v); +GL_APICALL void GL_APIENTRY glScissorIndexedOES (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorIndexedvOES (GLuint index, const GLint *v); +GL_APICALL void GL_APIENTRY glDepthRangeArrayfvOES (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glDepthRangeIndexedfOES (GLuint index, GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glGetFloati_vOES (GLenum target, GLuint index, GLfloat *data); +#endif +#endif /* GL_OES_viewport_array */ + +#ifndef GL_AMD_compressed_3DC_texture +#define GL_AMD_compressed_3DC_texture 1 +#define GL_3DC_X_AMD 0x87F9 +#define GL_3DC_XY_AMD 0x87FA +#endif /* GL_AMD_compressed_3DC_texture */ + +#ifndef GL_AMD_compressed_ATC_texture +#define GL_AMD_compressed_ATC_texture 1 +#define GL_ATC_RGB_AMD 0x8C92 +#define GL_ATC_RGBA_EXPLICIT_ALPHA_AMD 0x8C93 +#define GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD 0x87EE +#endif /* GL_AMD_compressed_ATC_texture */ + +#ifndef GL_AMD_framebuffer_multisample_advanced +#define GL_AMD_framebuffer_multisample_advanced 1 +#define GL_RENDERBUFFER_STORAGE_SAMPLES_AMD 0x91B2 +#define GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD 0x91B3 +#define GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD 0x91B4 +#define GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD 0x91B5 +#define GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B6 +#define GL_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B7 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleAdvancedAMD (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glNamedRenderbufferStorageMultisampleAdvancedAMD (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_AMD_framebuffer_multisample_advanced */ + +#ifndef GL_AMD_performance_monitor +#define GL_AMD_performance_monitor 1 +#define GL_COUNTER_TYPE_AMD 0x8BC0 +#define GL_COUNTER_RANGE_AMD 0x8BC1 +#define GL_UNSIGNED_INT64_AMD 0x8BC2 +#define GL_PERCENTAGE_AMD 0x8BC3 +#define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4 +#define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5 +#define GL_PERFMON_RESULT_AMD 0x8BC6 +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, void *data); +typedef void (GL_APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (GL_APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (GL_APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +typedef void (GL_APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GL_APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, void *data); +GL_APICALL void GL_APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors); +GL_APICALL void GL_APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors); +GL_APICALL void GL_APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +GL_APICALL void GL_APIENTRY glBeginPerfMonitorAMD (GLuint monitor); +GL_APICALL void GL_APIENTRY glEndPerfMonitorAMD (GLuint monitor); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#endif +#endif /* GL_AMD_performance_monitor */ + +#ifndef GL_AMD_program_binary_Z400 +#define GL_AMD_program_binary_Z400 1 +#define GL_Z400_BINARY_AMD 0x8740 +#endif /* GL_AMD_program_binary_Z400 */ + +#ifndef GL_ANDROID_extension_pack_es31a +#define GL_ANDROID_extension_pack_es31a 1 +#endif /* GL_ANDROID_extension_pack_es31a */ + +#ifndef GL_ANGLE_depth_texture +#define GL_ANGLE_depth_texture 1 +#endif /* GL_ANGLE_depth_texture */ + +#ifndef GL_ANGLE_framebuffer_blit +#define GL_ANGLE_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_ANGLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_ANGLE 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_ANGLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_ANGLE 0x8CAA +typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlitFramebufferANGLE (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_ANGLE_framebuffer_blit */ + +#ifndef GL_ANGLE_framebuffer_multisample +#define GL_ANGLE_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_ANGLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE 0x8D56 +#define GL_MAX_SAMPLES_ANGLE 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEANGLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleANGLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_ANGLE_framebuffer_multisample */ + +#ifndef GL_ANGLE_instanced_arrays +#define GL_ANGLE_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE 0x88FE +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDANGLEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDANGLEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORANGLEPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedANGLE (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedANGLE (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +GL_APICALL void GL_APIENTRY glVertexAttribDivisorANGLE (GLuint index, GLuint divisor); +#endif +#endif /* GL_ANGLE_instanced_arrays */ + +#ifndef GL_ANGLE_pack_reverse_row_order +#define GL_ANGLE_pack_reverse_row_order 1 +#define GL_PACK_REVERSE_ROW_ORDER_ANGLE 0x93A4 +#endif /* GL_ANGLE_pack_reverse_row_order */ + +#ifndef GL_ANGLE_program_binary +#define GL_ANGLE_program_binary 1 +#define GL_PROGRAM_BINARY_ANGLE 0x93A6 +#endif /* GL_ANGLE_program_binary */ + +#ifndef GL_ANGLE_texture_compression_dxt3 +#define GL_ANGLE_texture_compression_dxt3 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE 0x83F2 +#endif /* GL_ANGLE_texture_compression_dxt3 */ + +#ifndef GL_ANGLE_texture_compression_dxt5 +#define GL_ANGLE_texture_compression_dxt5 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE 0x83F3 +#endif /* GL_ANGLE_texture_compression_dxt5 */ + +#ifndef GL_ANGLE_texture_usage +#define GL_ANGLE_texture_usage 1 +#define GL_TEXTURE_USAGE_ANGLE 0x93A2 +#define GL_FRAMEBUFFER_ATTACHMENT_ANGLE 0x93A3 +#endif /* GL_ANGLE_texture_usage */ + +#ifndef GL_ANGLE_translated_shader_source +#define GL_ANGLE_translated_shader_source 1 +#define GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE 0x93A0 +typedef void (GL_APIENTRYP PFNGLGETTRANSLATEDSHADERSOURCEANGLEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetTranslatedShaderSourceANGLE (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +#endif +#endif /* GL_ANGLE_translated_shader_source */ + +#ifndef GL_APPLE_clip_distance +#define GL_APPLE_clip_distance 1 +#define GL_MAX_CLIP_DISTANCES_APPLE 0x0D32 +#define GL_CLIP_DISTANCE0_APPLE 0x3000 +#define GL_CLIP_DISTANCE1_APPLE 0x3001 +#define GL_CLIP_DISTANCE2_APPLE 0x3002 +#define GL_CLIP_DISTANCE3_APPLE 0x3003 +#define GL_CLIP_DISTANCE4_APPLE 0x3004 +#define GL_CLIP_DISTANCE5_APPLE 0x3005 +#define GL_CLIP_DISTANCE6_APPLE 0x3006 +#define GL_CLIP_DISTANCE7_APPLE 0x3007 +#endif /* GL_APPLE_clip_distance */ + +#ifndef GL_APPLE_color_buffer_packed_float +#define GL_APPLE_color_buffer_packed_float 1 +#endif /* GL_APPLE_color_buffer_packed_float */ + +#ifndef GL_APPLE_copy_texture_levels +#define GL_APPLE_copy_texture_levels 1 +typedef void (GL_APIENTRYP PFNGLCOPYTEXTURELEVELSAPPLEPROC) (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyTextureLevelsAPPLE (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); +#endif +#endif /* GL_APPLE_copy_texture_levels */ + +#ifndef GL_APPLE_framebuffer_multisample +#define GL_APPLE_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_APPLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_APPLE 0x8D56 +#define GL_MAX_SAMPLES_APPLE 0x8D57 +#define GL_READ_FRAMEBUFFER_APPLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_APPLE 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_APPLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_APPLE 0x8CAA +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEAPPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLRESOLVEMULTISAMPLEFRAMEBUFFERAPPLEPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleAPPLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glResolveMultisampleFramebufferAPPLE (void); +#endif +#endif /* GL_APPLE_framebuffer_multisample */ + +#ifndef GL_APPLE_rgb_422 +#define GL_APPLE_rgb_422 1 +#define GL_RGB_422_APPLE 0x8A1F +#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB +#define GL_RGB_RAW_422_APPLE 0x8A51 +#endif /* GL_APPLE_rgb_422 */ + +#ifndef GL_APPLE_sync +#define GL_APPLE_sync 1 +#define GL_SYNC_OBJECT_APPLE 0x8A53 +#define GL_MAX_SERVER_WAIT_TIMEOUT_APPLE 0x9111 +#define GL_OBJECT_TYPE_APPLE 0x9112 +#define GL_SYNC_CONDITION_APPLE 0x9113 +#define GL_SYNC_STATUS_APPLE 0x9114 +#define GL_SYNC_FLAGS_APPLE 0x9115 +#define GL_SYNC_FENCE_APPLE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE 0x9117 +#define GL_UNSIGNALED_APPLE 0x9118 +#define GL_SIGNALED_APPLE 0x9119 +#define GL_ALREADY_SIGNALED_APPLE 0x911A +#define GL_TIMEOUT_EXPIRED_APPLE 0x911B +#define GL_CONDITION_SATISFIED_APPLE 0x911C +#define GL_WAIT_FAILED_APPLE 0x911D +#define GL_SYNC_FLUSH_COMMANDS_BIT_APPLE 0x00000001 +#define GL_TIMEOUT_IGNORED_APPLE 0xFFFFFFFFFFFFFFFFull +typedef GLsync (GL_APIENTRYP PFNGLFENCESYNCAPPLEPROC) (GLenum condition, GLbitfield flags); +typedef GLboolean (GL_APIENTRYP PFNGLISSYNCAPPLEPROC) (GLsync sync); +typedef void (GL_APIENTRYP PFNGLDELETESYNCAPPLEPROC) (GLsync sync); +typedef GLenum (GL_APIENTRYP PFNGLCLIENTWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (GL_APIENTRYP PFNGLWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (GL_APIENTRYP PFNGLGETINTEGER64VAPPLEPROC) (GLenum pname, GLint64 *params); +typedef void (GL_APIENTRYP PFNGLGETSYNCIVAPPLEPROC) (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLsync GL_APIENTRY glFenceSyncAPPLE (GLenum condition, GLbitfield flags); +GL_APICALL GLboolean GL_APIENTRY glIsSyncAPPLE (GLsync sync); +GL_APICALL void GL_APIENTRY glDeleteSyncAPPLE (GLsync sync); +GL_APICALL GLenum GL_APIENTRY glClientWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); +GL_APICALL void GL_APIENTRY glWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); +GL_APICALL void GL_APIENTRY glGetInteger64vAPPLE (GLenum pname, GLint64 *params); +GL_APICALL void GL_APIENTRY glGetSyncivAPPLE (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +#endif +#endif /* GL_APPLE_sync */ + +#ifndef GL_APPLE_texture_format_BGRA8888 +#define GL_APPLE_texture_format_BGRA8888 1 +#define GL_BGRA_EXT 0x80E1 +#define GL_BGRA8_EXT 0x93A1 +#endif /* GL_APPLE_texture_format_BGRA8888 */ + +#ifndef GL_APPLE_texture_max_level +#define GL_APPLE_texture_max_level 1 +#define GL_TEXTURE_MAX_LEVEL_APPLE 0x813D +#endif /* GL_APPLE_texture_max_level */ + +#ifndef GL_APPLE_texture_packed_float +#define GL_APPLE_texture_packed_float 1 +#define GL_UNSIGNED_INT_10F_11F_11F_REV_APPLE 0x8C3B +#define GL_UNSIGNED_INT_5_9_9_9_REV_APPLE 0x8C3E +#define GL_R11F_G11F_B10F_APPLE 0x8C3A +#define GL_RGB9_E5_APPLE 0x8C3D +#endif /* GL_APPLE_texture_packed_float */ + +#ifndef GL_ARM_mali_program_binary +#define GL_ARM_mali_program_binary 1 +#define GL_MALI_PROGRAM_BINARY_ARM 0x8F61 +#endif /* GL_ARM_mali_program_binary */ + +#ifndef GL_ARM_mali_shader_binary +#define GL_ARM_mali_shader_binary 1 +#define GL_MALI_SHADER_BINARY_ARM 0x8F60 +#endif /* GL_ARM_mali_shader_binary */ + +#ifndef GL_ARM_rgba8 +#define GL_ARM_rgba8 1 +#endif /* GL_ARM_rgba8 */ + +#ifndef GL_ARM_shader_framebuffer_fetch +#define GL_ARM_shader_framebuffer_fetch 1 +#define GL_FETCH_PER_SAMPLE_ARM 0x8F65 +#define GL_FRAGMENT_SHADER_FRAMEBUFFER_FETCH_MRT_ARM 0x8F66 +#endif /* GL_ARM_shader_framebuffer_fetch */ + +#ifndef GL_ARM_shader_framebuffer_fetch_depth_stencil +#define GL_ARM_shader_framebuffer_fetch_depth_stencil 1 +#endif /* GL_ARM_shader_framebuffer_fetch_depth_stencil */ + +#ifndef GL_ARM_texture_unnormalized_coordinates +#define GL_ARM_texture_unnormalized_coordinates 1 +#define GL_TEXTURE_UNNORMALIZED_COORDINATES_ARM 0x8F6A +#endif /* GL_ARM_texture_unnormalized_coordinates */ + +#ifndef GL_DMP_program_binary +#define GL_DMP_program_binary 1 +#define GL_SMAPHS30_PROGRAM_BINARY_DMP 0x9251 +#define GL_SMAPHS_PROGRAM_BINARY_DMP 0x9252 +#define GL_DMP_PROGRAM_BINARY_DMP 0x9253 +#endif /* GL_DMP_program_binary */ + +#ifndef GL_DMP_shader_binary +#define GL_DMP_shader_binary 1 +#define GL_SHADER_BINARY_DMP 0x9250 +#endif /* GL_DMP_shader_binary */ + +#ifndef GL_EXT_EGL_image_array +#define GL_EXT_EGL_image_array 1 +#endif /* GL_EXT_EGL_image_array */ + +#ifndef GL_EXT_EGL_image_storage +#define GL_EXT_EGL_image_storage 1 +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXSTORAGEEXTPROC) (GLenum target, GLeglImageOES image, const GLint* attrib_list); +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURESTORAGEEXTPROC) (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEGLImageTargetTexStorageEXT (GLenum target, GLeglImageOES image, const GLint* attrib_list); +GL_APICALL void GL_APIENTRY glEGLImageTargetTextureStorageEXT (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#endif +#endif /* GL_EXT_EGL_image_storage */ + +#ifndef GL_EXT_EGL_image_storage_compression +#define GL_EXT_EGL_image_storage_compression 1 +#define GL_SURFACE_COMPRESSION_EXT 0x96C0 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_NONE_EXT 0x96C1 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_DEFAULT_EXT 0x96C2 +#endif /* GL_EXT_EGL_image_storage_compression */ + +#ifndef GL_EXT_YUV_target +#define GL_EXT_YUV_target 1 +#define GL_SAMPLER_EXTERNAL_2D_Y2Y_EXT 0x8BE7 +#endif /* GL_EXT_YUV_target */ + +#ifndef GL_EXT_base_instance +#define GL_EXT_base_instance 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEEXTPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedBaseInstanceEXT (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseInstanceEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexBaseInstanceEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +#endif +#endif /* GL_EXT_base_instance */ + +#ifndef GL_EXT_blend_func_extended +#define GL_EXT_blend_func_extended 1 +#define GL_SRC1_COLOR_EXT 0x88F9 +#define GL_SRC1_ALPHA_EXT 0x8589 +#define GL_ONE_MINUS_SRC1_COLOR_EXT 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA_EXT 0x88FB +#define GL_SRC_ALPHA_SATURATE_EXT 0x0308 +#define GL_LOCATION_INDEX_EXT 0x930F +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS_EXT 0x88FC +typedef void (GL_APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDEXTPROC) (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLBINDFRAGDATALOCATIONEXTPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (GL_APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONINDEXEXTPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef GLint (GL_APIENTRYP PFNGLGETFRAGDATAINDEXEXTPROC) (GLuint program, const GLchar *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindFragDataLocationIndexedEXT (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +GL_APICALL void GL_APIENTRY glBindFragDataLocationEXT (GLuint program, GLuint color, const GLchar *name); +GL_APICALL GLint GL_APIENTRY glGetProgramResourceLocationIndexEXT (GLuint program, GLenum programInterface, const GLchar *name); +GL_APICALL GLint GL_APIENTRY glGetFragDataIndexEXT (GLuint program, const GLchar *name); +#endif +#endif /* GL_EXT_blend_func_extended */ + +#ifndef GL_EXT_blend_minmax +#define GL_EXT_blend_minmax 1 +#define GL_MIN_EXT 0x8007 +#define GL_MAX_EXT 0x8008 +#endif /* GL_EXT_blend_minmax */ + +#ifndef GL_EXT_buffer_storage +#define GL_EXT_buffer_storage 1 +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_PERSISTENT_BIT_EXT 0x0040 +#define GL_MAP_COHERENT_BIT_EXT 0x0080 +#define GL_DYNAMIC_STORAGE_BIT_EXT 0x0100 +#define GL_CLIENT_STORAGE_BIT_EXT 0x0200 +#define GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT 0x00004000 +#define GL_BUFFER_IMMUTABLE_STORAGE_EXT 0x821F +#define GL_BUFFER_STORAGE_FLAGS_EXT 0x8220 +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEEXTPROC) (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferStorageEXT (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +#endif +#endif /* GL_EXT_buffer_storage */ + +#ifndef GL_EXT_clear_texture +#define GL_EXT_clear_texture 1 +typedef void (GL_APIENTRYP PFNGLCLEARTEXIMAGEEXTPROC) (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +typedef void (GL_APIENTRYP PFNGLCLEARTEXSUBIMAGEEXTPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glClearTexImageEXT (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +GL_APICALL void GL_APIENTRY glClearTexSubImageEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +#endif +#endif /* GL_EXT_clear_texture */ + +#ifndef GL_EXT_clip_control +#define GL_EXT_clip_control 1 +#define GL_LOWER_LEFT_EXT 0x8CA1 +#define GL_UPPER_LEFT_EXT 0x8CA2 +#define GL_NEGATIVE_ONE_TO_ONE_EXT 0x935E +#define GL_ZERO_TO_ONE_EXT 0x935F +#define GL_CLIP_ORIGIN_EXT 0x935C +#define GL_CLIP_DEPTH_MODE_EXT 0x935D +typedef void (GL_APIENTRYP PFNGLCLIPCONTROLEXTPROC) (GLenum origin, GLenum depth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glClipControlEXT (GLenum origin, GLenum depth); +#endif +#endif /* GL_EXT_clip_control */ + +#ifndef GL_EXT_clip_cull_distance +#define GL_EXT_clip_cull_distance 1 +#define GL_MAX_CLIP_DISTANCES_EXT 0x0D32 +#define GL_MAX_CULL_DISTANCES_EXT 0x82F9 +#define GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES_EXT 0x82FA +#define GL_CLIP_DISTANCE0_EXT 0x3000 +#define GL_CLIP_DISTANCE1_EXT 0x3001 +#define GL_CLIP_DISTANCE2_EXT 0x3002 +#define GL_CLIP_DISTANCE3_EXT 0x3003 +#define GL_CLIP_DISTANCE4_EXT 0x3004 +#define GL_CLIP_DISTANCE5_EXT 0x3005 +#define GL_CLIP_DISTANCE6_EXT 0x3006 +#define GL_CLIP_DISTANCE7_EXT 0x3007 +#endif /* GL_EXT_clip_cull_distance */ + +#ifndef GL_EXT_color_buffer_float +#define GL_EXT_color_buffer_float 1 +#endif /* GL_EXT_color_buffer_float */ + +#ifndef GL_EXT_color_buffer_half_float +#define GL_EXT_color_buffer_half_float 1 +#define GL_RGBA16F_EXT 0x881A +#define GL_RGB16F_EXT 0x881B +#define GL_RG16F_EXT 0x822F +#define GL_R16F_EXT 0x822D +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT 0x8211 +#define GL_UNSIGNED_NORMALIZED_EXT 0x8C17 +#endif /* GL_EXT_color_buffer_half_float */ + +#ifndef GL_EXT_conservative_depth +#define GL_EXT_conservative_depth 1 +#endif /* GL_EXT_conservative_depth */ + +#ifndef GL_EXT_copy_image +#define GL_EXT_copy_image 1 +typedef void (GL_APIENTRYP PFNGLCOPYIMAGESUBDATAEXTPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyImageSubDataEXT (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#endif +#endif /* GL_EXT_copy_image */ + +#ifndef GL_EXT_debug_label +#define GL_EXT_debug_label 1 +#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F +#define GL_PROGRAM_OBJECT_EXT 0x8B40 +#define GL_SHADER_OBJECT_EXT 0x8B48 +#define GL_BUFFER_OBJECT_EXT 0x9151 +#define GL_QUERY_OBJECT_EXT 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154 +#define GL_TRANSFORM_FEEDBACK 0x8E22 +typedef void (GL_APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +#endif /* GL_EXT_debug_label */ + +#ifndef GL_EXT_debug_marker +#define GL_EXT_debug_marker 1 +typedef void (GL_APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (GL_APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (GL_APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker); +GL_APICALL void GL_APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker); +GL_APICALL void GL_APIENTRY glPopGroupMarkerEXT (void); +#endif +#endif /* GL_EXT_debug_marker */ + +#ifndef GL_EXT_depth_clamp +#define GL_EXT_depth_clamp 1 +#define GL_DEPTH_CLAMP_EXT 0x864F +#endif /* GL_EXT_depth_clamp */ + +#ifndef GL_EXT_discard_framebuffer +#define GL_EXT_discard_framebuffer 1 +#define GL_COLOR_EXT 0x1800 +#define GL_DEPTH_EXT 0x1801 +#define GL_STENCIL_EXT 0x1802 +typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments); +#endif +#endif /* GL_EXT_discard_framebuffer */ + +#ifndef GL_EXT_disjoint_timer_query +#define GL_EXT_disjoint_timer_query 1 +#define GL_QUERY_COUNTER_BITS_EXT 0x8864 +#define GL_CURRENT_QUERY_EXT 0x8865 +#define GL_QUERY_RESULT_EXT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_EXT 0x8867 +#define GL_TIME_ELAPSED_EXT 0x88BF +#define GL_TIMESTAMP_EXT 0x8E28 +#define GL_GPU_DISJOINT_EXT 0x8FBB +typedef void (GL_APIENTRYP PFNGLGENQUERIESEXTPROC) (GLsizei n, GLuint *ids); +typedef void (GL_APIENTRYP PFNGLDELETEQUERIESEXTPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (GL_APIENTRYP PFNGLISQUERYEXTPROC) (GLuint id); +typedef void (GL_APIENTRYP PFNGLBEGINQUERYEXTPROC) (GLenum target, GLuint id); +typedef void (GL_APIENTRYP PFNGLENDQUERYEXTPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLQUERYCOUNTEREXTPROC) (GLuint id, GLenum target); +typedef void (GL_APIENTRYP PFNGLGETQUERYIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTIVEXTPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUIVEXTPROC) (GLuint id, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLGETINTEGER64VEXTPROC) (GLenum pname, GLint64 *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGenQueriesEXT (GLsizei n, GLuint *ids); +GL_APICALL void GL_APIENTRY glDeleteQueriesEXT (GLsizei n, const GLuint *ids); +GL_APICALL GLboolean GL_APIENTRY glIsQueryEXT (GLuint id); +GL_APICALL void GL_APIENTRY glBeginQueryEXT (GLenum target, GLuint id); +GL_APICALL void GL_APIENTRY glEndQueryEXT (GLenum target); +GL_APICALL void GL_APIENTRY glQueryCounterEXT (GLuint id, GLenum target); +GL_APICALL void GL_APIENTRY glGetQueryivEXT (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectivEXT (GLuint id, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectuivEXT (GLuint id, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64 *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64 *params); +GL_APICALL void GL_APIENTRY glGetInteger64vEXT (GLenum pname, GLint64 *data); +#endif +#endif /* GL_EXT_disjoint_timer_query */ + +#ifndef GL_EXT_draw_buffers +#define GL_EXT_draw_buffers 1 +#define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF +#define GL_MAX_DRAW_BUFFERS_EXT 0x8824 +#define GL_DRAW_BUFFER0_EXT 0x8825 +#define GL_DRAW_BUFFER1_EXT 0x8826 +#define GL_DRAW_BUFFER2_EXT 0x8827 +#define GL_DRAW_BUFFER3_EXT 0x8828 +#define GL_DRAW_BUFFER4_EXT 0x8829 +#define GL_DRAW_BUFFER5_EXT 0x882A +#define GL_DRAW_BUFFER6_EXT 0x882B +#define GL_DRAW_BUFFER7_EXT 0x882C +#define GL_DRAW_BUFFER8_EXT 0x882D +#define GL_DRAW_BUFFER9_EXT 0x882E +#define GL_DRAW_BUFFER10_EXT 0x882F +#define GL_DRAW_BUFFER11_EXT 0x8830 +#define GL_DRAW_BUFFER12_EXT 0x8831 +#define GL_DRAW_BUFFER13_EXT 0x8832 +#define GL_DRAW_BUFFER14_EXT 0x8833 +#define GL_DRAW_BUFFER15_EXT 0x8834 +#define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 +#define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 +#define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 +#define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 +#define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 +#define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 +#define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 +#define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 +#define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 +#define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 +#define GL_COLOR_ATTACHMENT10_EXT 0x8CEA +#define GL_COLOR_ATTACHMENT11_EXT 0x8CEB +#define GL_COLOR_ATTACHMENT12_EXT 0x8CEC +#define GL_COLOR_ATTACHMENT13_EXT 0x8CED +#define GL_COLOR_ATTACHMENT14_EXT 0x8CEE +#define GL_COLOR_ATTACHMENT15_EXT 0x8CEF +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSEXTPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawBuffersEXT (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_EXT_draw_buffers */ + +#ifndef GL_EXT_draw_buffers_indexed +#define GL_EXT_draw_buffers_indexed 1 +typedef void (GL_APIENTRYP PFNGLENABLEIEXTPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEIEXTPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONIEXTPROC) (GLuint buf, GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEIEXTPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCIEXTPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEIEXTPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (GL_APIENTRYP PFNGLCOLORMASKIEXTPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDIEXTPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEnableiEXT (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiEXT (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glBlendEquationiEXT (GLuint buf, GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparateiEXT (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunciEXT (GLuint buf, GLenum src, GLenum dst); +GL_APICALL void GL_APIENTRY glBlendFuncSeparateiEXT (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GL_APICALL void GL_APIENTRY glColorMaskiEXT (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediEXT (GLenum target, GLuint index); +#endif +#endif /* GL_EXT_draw_buffers_indexed */ + +#ifndef GL_EXT_draw_elements_base_vertex +#define GL_EXT_draw_elements_base_vertex 1 +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawElementsBaseVertexEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawRangeElementsBaseVertexEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +#endif +#endif /* GL_EXT_draw_elements_base_vertex */ + +#ifndef GL_EXT_draw_instanced +#define GL_EXT_draw_instanced 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_EXT_draw_instanced */ + +#ifndef GL_EXT_draw_transform_feedback +#define GL_EXT_draw_transform_feedback 1 +typedef void (GL_APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKEXTPROC) (GLenum mode, GLuint id); +typedef void (GL_APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDEXTPROC) (GLenum mode, GLuint id, GLsizei instancecount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawTransformFeedbackEXT (GLenum mode, GLuint id); +GL_APICALL void GL_APIENTRY glDrawTransformFeedbackInstancedEXT (GLenum mode, GLuint id, GLsizei instancecount); +#endif +#endif /* GL_EXT_draw_transform_feedback */ + +#ifndef GL_EXT_external_buffer +#define GL_EXT_external_buffer 1 +typedef void *GLeglClientBufferEXT; +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEEXTERNALEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTERNALEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferStorageExternalEXT (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +GL_APICALL void GL_APIENTRY glNamedBufferStorageExternalEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#endif +#endif /* GL_EXT_external_buffer */ + +#ifndef GL_EXT_float_blend +#define GL_EXT_float_blend 1 +#endif /* GL_EXT_float_blend */ + +#ifndef GL_EXT_fragment_shading_rate +#define GL_EXT_fragment_shading_rate 1 +#define GL_SHADING_RATE_1X1_PIXELS_EXT 0x96A6 +#define GL_SHADING_RATE_1X2_PIXELS_EXT 0x96A7 +#define GL_SHADING_RATE_2X1_PIXELS_EXT 0x96A8 +#define GL_SHADING_RATE_2X2_PIXELS_EXT 0x96A9 +#define GL_SHADING_RATE_1X4_PIXELS_EXT 0x96AA +#define GL_SHADING_RATE_4X1_PIXELS_EXT 0x96AB +#define GL_SHADING_RATE_4X2_PIXELS_EXT 0x96AC +#define GL_SHADING_RATE_2X4_PIXELS_EXT 0x96AD +#define GL_SHADING_RATE_4X4_PIXELS_EXT 0x96AE +#define GL_SHADING_RATE_EXT 0x96D0 +#define GL_SHADING_RATE_ATTACHMENT_EXT 0x96D1 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_EXT 0x96D2 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_REPLACE_EXT 0x96D3 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MIN_EXT 0x96D4 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MAX_EXT 0x96D5 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MUL_EXT 0x96D6 +#define GL_MIN_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_WIDTH_EXT 0x96D7 +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_WIDTH_EXT 0x96D8 +#define GL_MIN_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_HEIGHT_EXT 0x96D9 +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_HEIGHT_EXT 0x96DA +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_ASPECT_RATIO_EXT 0x96DB +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_LAYERS_EXT 0x96DC +#define GL_FRAGMENT_SHADING_RATE_WITH_SHADER_DEPTH_STENCIL_WRITES_SUPPORTED_EXT 0x96DD +#define GL_FRAGMENT_SHADING_RATE_WITH_SAMPLE_MASK_SUPPORTED_EXT 0x96DE +#define GL_FRAGMENT_SHADING_RATE_ATTACHMENT_WITH_DEFAULT_FRAMEBUFFER_SUPPORTED_EXT 0x96DF +#define GL_FRAGMENT_SHADING_RATE_NON_TRIVIAL_COMBINERS_SUPPORTED_EXT 0x8F6F +typedef void (GL_APIENTRYP PFNGLGETFRAGMENTSHADINGRATESEXTPROC) (GLsizei samples, GLsizei maxCount, GLsizei *count, GLenum *shadingRates); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEEXTPROC) (GLenum rate); +typedef void (GL_APIENTRYP PFNGLSHADINGRATECOMBINEROPSEXTPROC) (GLenum combinerOp0, GLenum combinerOp1); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERSHADINGRATEEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint baseLayer, GLsizei numLayers, GLsizei texelWidth, GLsizei texelHeight); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetFragmentShadingRatesEXT (GLsizei samples, GLsizei maxCount, GLsizei *count, GLenum *shadingRates); +GL_APICALL void GL_APIENTRY glShadingRateEXT (GLenum rate); +GL_APICALL void GL_APIENTRY glShadingRateCombinerOpsEXT (GLenum combinerOp0, GLenum combinerOp1); +GL_APICALL void GL_APIENTRY glFramebufferShadingRateEXT (GLenum target, GLenum attachment, GLuint texture, GLint baseLayer, GLsizei numLayers, GLsizei texelWidth, GLsizei texelHeight); +#endif +#endif /* GL_EXT_fragment_shading_rate */ + +#ifndef GL_EXT_geometry_point_size +#define GL_EXT_geometry_point_size 1 +#endif /* GL_EXT_geometry_point_size */ + +#ifndef GL_EXT_geometry_shader +#define GL_EXT_geometry_shader 1 +#define GL_GEOMETRY_SHADER_EXT 0x8DD9 +#define GL_GEOMETRY_SHADER_BIT_EXT 0x00000004 +#define GL_GEOMETRY_LINKED_VERTICES_OUT_EXT 0x8916 +#define GL_GEOMETRY_LINKED_INPUT_TYPE_EXT 0x8917 +#define GL_GEOMETRY_LINKED_OUTPUT_TYPE_EXT 0x8918 +#define GL_GEOMETRY_SHADER_INVOCATIONS_EXT 0x887F +#define GL_LAYER_PROVOKING_VERTEX_EXT 0x825E +#define GL_LINES_ADJACENCY_EXT 0x000A +#define GL_LINE_STRIP_ADJACENCY_EXT 0x000B +#define GL_TRIANGLES_ADJACENCY_EXT 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0x000D +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS_EXT 0x8A2C +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8A32 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS_EXT 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_EXT 0x9124 +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1 +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS_EXT 0x8E5A +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_EXT 0x92CF +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS_EXT 0x92D5 +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS_EXT 0x90CD +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_EXT 0x90D7 +#define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E +#define GL_UNDEFINED_VERTEX_EXT 0x8260 +#define GL_PRIMITIVES_GENERATED_EXT 0x8C87 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS_EXT 0x9312 +#define GL_MAX_FRAMEBUFFER_LAYERS_EXT 0x9317 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7 +#define GL_REFERENCED_BY_GEOMETRY_SHADER_EXT 0x9309 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level); +#endif +#endif /* GL_EXT_geometry_shader */ + +#ifndef GL_EXT_gpu_shader5 +#define GL_EXT_gpu_shader5 1 +#endif /* GL_EXT_gpu_shader5 */ + +#ifndef GL_EXT_instanced_arrays +#define GL_EXT_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_EXT 0x88FE +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISOREXTPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glVertexAttribDivisorEXT (GLuint index, GLuint divisor); +#endif +#endif /* GL_EXT_instanced_arrays */ + +#ifndef GL_EXT_map_buffer_range +#define GL_EXT_map_buffer_range 1 +#define GL_MAP_READ_BIT_EXT 0x0001 +#define GL_MAP_WRITE_BIT_EXT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT_EXT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT_EXT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT_EXT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT_EXT 0x0020 +typedef void *(GL_APIENTRYP PFNGLMAPBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (GL_APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void *GL_APIENTRY glMapBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GL_APICALL void GL_APIENTRY glFlushMappedBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length); +#endif +#endif /* GL_EXT_map_buffer_range */ + +#ifndef GL_EXT_memory_object +#define GL_EXT_memory_object 1 +#define GL_TEXTURE_TILING_EXT 0x9580 +#define GL_DEDICATED_MEMORY_OBJECT_EXT 0x9581 +#define GL_PROTECTED_MEMORY_OBJECT_EXT 0x959B +#define GL_NUM_TILING_TYPES_EXT 0x9582 +#define GL_TILING_TYPES_EXT 0x9583 +#define GL_OPTIMAL_TILING_EXT 0x9584 +#define GL_LINEAR_TILING_EXT 0x9585 +#define GL_NUM_DEVICE_UUIDS_EXT 0x9596 +#define GL_DEVICE_UUID_EXT 0x9597 +#define GL_DRIVER_UUID_EXT 0x9598 +#define GL_UUID_SIZE_EXT 16 +typedef void (GL_APIENTRYP PFNGLGETUNSIGNEDBYTEVEXTPROC) (GLenum pname, GLubyte *data); +typedef void (GL_APIENTRYP PFNGLGETUNSIGNEDBYTEI_VEXTPROC) (GLenum target, GLuint index, GLubyte *data); +typedef void (GL_APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); +typedef GLboolean (GL_APIENTRYP PFNGLISMEMORYOBJECTEXTPROC) (GLuint memoryObject); +typedef void (GL_APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); +typedef void (GL_APIENTRYP PFNGLMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLGETMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM2DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM3DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEMEMEXTPROC) (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM2DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM2DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM3DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM3DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERSTORAGEMEMEXTPROC) (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetUnsignedBytevEXT (GLenum pname, GLubyte *data); +GL_APICALL void GL_APIENTRY glGetUnsignedBytei_vEXT (GLenum target, GLuint index, GLubyte *data); +GL_APICALL void GL_APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); +GL_APICALL GLboolean GL_APIENTRY glIsMemoryObjectEXT (GLuint memoryObject); +GL_APICALL void GL_APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects); +GL_APICALL void GL_APIENTRY glMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glGetMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glTexStorageMem2DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem2DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem3DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem3DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glBufferStorageMemEXT (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem2DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem2DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem3DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem3DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glNamedBufferStorageMemEXT (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_EXT_memory_object */ + +#ifndef GL_EXT_memory_object_fd +#define GL_EXT_memory_object_fd 1 +#define GL_HANDLE_TYPE_OPAQUE_FD_EXT 0x9586 +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYFDEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportMemoryFdEXT (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_memory_object_fd */ + +#ifndef GL_EXT_memory_object_win32 +#define GL_EXT_memory_object_win32 1 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_EXT 0x9587 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_KMT_EXT 0x9588 +#define GL_DEVICE_LUID_EXT 0x9599 +#define GL_DEVICE_NODE_MASK_EXT 0x959A +#define GL_LUID_SIZE_EXT 8 +#define GL_HANDLE_TYPE_D3D12_TILEPOOL_EXT 0x9589 +#define GL_HANDLE_TYPE_D3D12_RESOURCE_EXT 0x958A +#define GL_HANDLE_TYPE_D3D11_IMAGE_EXT 0x958B +#define GL_HANDLE_TYPE_D3D11_IMAGE_KMT_EXT 0x958C +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYWIN32HANDLEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYWIN32NAMEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportMemoryWin32HandleEXT (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +GL_APICALL void GL_APIENTRY glImportMemoryWin32NameEXT (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_memory_object_win32 */ + +#ifndef GL_EXT_multi_draw_arrays +#define GL_EXT_multi_draw_arrays 1 +typedef void (GL_APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMultiDrawArraysEXT (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#endif +#endif /* GL_EXT_multi_draw_arrays */ + +#ifndef GL_EXT_multi_draw_indirect +#define GL_EXT_multi_draw_indirect 1 +typedef void (GL_APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTEXTPROC) (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTEXTPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMultiDrawArraysIndirectEXT (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +GL_APICALL void GL_APIENTRY glMultiDrawElementsIndirectEXT (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +#endif +#endif /* GL_EXT_multi_draw_indirect */ + +#ifndef GL_EXT_multisampled_compatibility +#define GL_EXT_multisampled_compatibility 1 +#define GL_MULTISAMPLE_EXT 0x809D +#define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F +#endif /* GL_EXT_multisampled_compatibility */ + +#ifndef GL_EXT_multisampled_render_to_texture +#define GL_EXT_multisampled_render_to_texture 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT 0x8D6C +#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 +#define GL_MAX_SAMPLES_EXT 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#endif +#endif /* GL_EXT_multisampled_render_to_texture */ + +#ifndef GL_EXT_multisampled_render_to_texture2 +#define GL_EXT_multisampled_render_to_texture2 1 +#endif /* GL_EXT_multisampled_render_to_texture2 */ + +#ifndef GL_EXT_multiview_draw_buffers +#define GL_EXT_multiview_draw_buffers 1 +#define GL_COLOR_ATTACHMENT_EXT 0x90F0 +#define GL_MULTIVIEW_EXT 0x90F1 +#define GL_DRAW_BUFFER_EXT 0x0C01 +#define GL_READ_BUFFER_EXT 0x0C02 +#define GL_MAX_MULTIVIEW_BUFFERS_EXT 0x90F2 +typedef void (GL_APIENTRYP PFNGLREADBUFFERINDEXEDEXTPROC) (GLenum src, GLint index); +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSINDEXEDEXTPROC) (GLint n, const GLenum *location, const GLint *indices); +typedef void (GL_APIENTRYP PFNGLGETINTEGERI_VEXTPROC) (GLenum target, GLuint index, GLint *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glReadBufferIndexedEXT (GLenum src, GLint index); +GL_APICALL void GL_APIENTRY glDrawBuffersIndexedEXT (GLint n, const GLenum *location, const GLint *indices); +GL_APICALL void GL_APIENTRY glGetIntegeri_vEXT (GLenum target, GLuint index, GLint *data); +#endif +#endif /* GL_EXT_multiview_draw_buffers */ + +#ifndef GL_EXT_multiview_tessellation_geometry_shader +#define GL_EXT_multiview_tessellation_geometry_shader 1 +#endif /* GL_EXT_multiview_tessellation_geometry_shader */ + +#ifndef GL_EXT_multiview_texture_multisample +#define GL_EXT_multiview_texture_multisample 1 +#endif /* GL_EXT_multiview_texture_multisample */ + +#ifndef GL_EXT_multiview_timer_query +#define GL_EXT_multiview_timer_query 1 +#endif /* GL_EXT_multiview_timer_query */ + +#ifndef GL_EXT_occlusion_query_boolean +#define GL_EXT_occlusion_query_boolean 1 +#define GL_ANY_SAMPLES_PASSED_EXT 0x8C2F +#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT 0x8D6A +#endif /* GL_EXT_occlusion_query_boolean */ + +#ifndef GL_EXT_polygon_offset_clamp +#define GL_EXT_polygon_offset_clamp 1 +#define GL_POLYGON_OFFSET_CLAMP_EXT 0x8E1B +typedef void (GL_APIENTRYP PFNGLPOLYGONOFFSETCLAMPEXTPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPolygonOffsetClampEXT (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_EXT_polygon_offset_clamp */ + +#ifndef GL_EXT_post_depth_coverage +#define GL_EXT_post_depth_coverage 1 +#endif /* GL_EXT_post_depth_coverage */ + +#ifndef GL_EXT_primitive_bounding_box +#define GL_EXT_primitive_bounding_box 1 +#define GL_PRIMITIVE_BOUNDING_BOX_EXT 0x92BE +typedef void (GL_APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXEXTPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPrimitiveBoundingBoxEXT (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_EXT_primitive_bounding_box */ + +#ifndef GL_EXT_protected_textures +#define GL_EXT_protected_textures 1 +#define GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT 0x00000010 +#define GL_TEXTURE_PROTECTED_EXT 0x8BFA +#endif /* GL_EXT_protected_textures */ + +#ifndef GL_EXT_pvrtc_sRGB +#define GL_EXT_pvrtc_sRGB 1 +#define GL_COMPRESSED_SRGB_PVRTC_2BPPV1_EXT 0x8A54 +#define GL_COMPRESSED_SRGB_PVRTC_4BPPV1_EXT 0x8A55 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_2BPPV1_EXT 0x8A56 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_4BPPV1_EXT 0x8A57 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_2BPPV2_IMG 0x93F0 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_4BPPV2_IMG 0x93F1 +#endif /* GL_EXT_pvrtc_sRGB */ + +#ifndef GL_EXT_raster_multisample +#define GL_EXT_raster_multisample 1 +#define GL_RASTER_MULTISAMPLE_EXT 0x9327 +#define GL_RASTER_SAMPLES_EXT 0x9328 +#define GL_MAX_RASTER_SAMPLES_EXT 0x9329 +#define GL_RASTER_FIXED_SAMPLE_LOCATIONS_EXT 0x932A +#define GL_MULTISAMPLE_RASTERIZATION_ALLOWED_EXT 0x932B +#define GL_EFFECTIVE_RASTER_SAMPLES_EXT 0x932C +typedef void (GL_APIENTRYP PFNGLRASTERSAMPLESEXTPROC) (GLuint samples, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRasterSamplesEXT (GLuint samples, GLboolean fixedsamplelocations); +#endif +#endif /* GL_EXT_raster_multisample */ + +#ifndef GL_EXT_read_format_bgra +#define GL_EXT_read_format_bgra 1 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT 0x8366 +#endif /* GL_EXT_read_format_bgra */ + +#ifndef GL_EXT_render_snorm +#define GL_EXT_render_snorm 1 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM_EXT 0x8F98 +#define GL_RG16_SNORM_EXT 0x8F99 +#define GL_RGBA16_SNORM_EXT 0x8F9B +#endif /* GL_EXT_render_snorm */ + +#ifndef GL_EXT_robustness +#define GL_EXT_robustness 1 +#define GL_GUILTY_CONTEXT_RESET_EXT 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_EXT 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_EXT 0x8255 +#define GL_CONTEXT_ROBUST_ACCESS_EXT 0x90F3 +#define GL_RESET_NOTIFICATION_STRATEGY_EXT 0x8256 +#define GL_LOSE_CONTEXT_ON_RESET_EXT 0x8252 +#define GL_NO_RESET_NOTIFICATION_EXT 0x8261 +typedef GLenum (GL_APIENTRYP PFNGLGETGRAPHICSRESETSTATUSEXTPROC) (void); +typedef void (GL_APIENTRYP PFNGLREADNPIXELSEXTPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusEXT (void); +GL_APICALL void GL_APIENTRY glReadnPixelsEXT (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GL_APICALL void GL_APIENTRY glGetnUniformfvEXT (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetnUniformivEXT (GLuint program, GLint location, GLsizei bufSize, GLint *params); +#endif +#endif /* GL_EXT_robustness */ + +#ifndef GL_EXT_sRGB +#define GL_EXT_sRGB 1 +#define GL_SRGB_EXT 0x8C40 +#define GL_SRGB_ALPHA_EXT 0x8C42 +#define GL_SRGB8_ALPHA8_EXT 0x8C43 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT 0x8210 +#endif /* GL_EXT_sRGB */ + +#ifndef GL_EXT_sRGB_write_control +#define GL_EXT_sRGB_write_control 1 +#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 +#endif /* GL_EXT_sRGB_write_control */ + +#ifndef GL_EXT_semaphore +#define GL_EXT_semaphore 1 +#define GL_LAYOUT_GENERAL_EXT 0x958D +#define GL_LAYOUT_COLOR_ATTACHMENT_EXT 0x958E +#define GL_LAYOUT_DEPTH_STENCIL_ATTACHMENT_EXT 0x958F +#define GL_LAYOUT_DEPTH_STENCIL_READ_ONLY_EXT 0x9590 +#define GL_LAYOUT_SHADER_READ_ONLY_EXT 0x9591 +#define GL_LAYOUT_TRANSFER_SRC_EXT 0x9592 +#define GL_LAYOUT_TRANSFER_DST_EXT 0x9593 +#define GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT 0x9530 +#define GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT 0x9531 +typedef void (GL_APIENTRYP PFNGLGENSEMAPHORESEXTPROC) (GLsizei n, GLuint *semaphores); +typedef void (GL_APIENTRYP PFNGLDELETESEMAPHORESEXTPROC) (GLsizei n, const GLuint *semaphores); +typedef GLboolean (GL_APIENTRYP PFNGLISSEMAPHOREEXTPROC) (GLuint semaphore); +typedef void (GL_APIENTRYP PFNGLSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, const GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLGETSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLWAITSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +typedef void (GL_APIENTRYP PFNGLSIGNALSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGenSemaphoresEXT (GLsizei n, GLuint *semaphores); +GL_APICALL void GL_APIENTRY glDeleteSemaphoresEXT (GLsizei n, const GLuint *semaphores); +GL_APICALL GLboolean GL_APIENTRY glIsSemaphoreEXT (GLuint semaphore); +GL_APICALL void GL_APIENTRY glSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, const GLuint64 *params); +GL_APICALL void GL_APIENTRY glGetSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, GLuint64 *params); +GL_APICALL void GL_APIENTRY glWaitSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +GL_APICALL void GL_APIENTRY glSignalSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#endif +#endif /* GL_EXT_semaphore */ + +#ifndef GL_EXT_semaphore_fd +#define GL_EXT_semaphore_fd 1 +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREFDEXTPROC) (GLuint semaphore, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportSemaphoreFdEXT (GLuint semaphore, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_semaphore_fd */ + +#ifndef GL_EXT_semaphore_win32 +#define GL_EXT_semaphore_win32 1 +#define GL_HANDLE_TYPE_D3D12_FENCE_EXT 0x9594 +#define GL_D3D12_FENCE_VALUE_EXT 0x9595 +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREWIN32HANDLEEXTPROC) (GLuint semaphore, GLenum handleType, void *handle); +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREWIN32NAMEEXTPROC) (GLuint semaphore, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportSemaphoreWin32HandleEXT (GLuint semaphore, GLenum handleType, void *handle); +GL_APICALL void GL_APIENTRY glImportSemaphoreWin32NameEXT (GLuint semaphore, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_semaphore_win32 */ + +#ifndef GL_EXT_separate_depth_stencil +#define GL_EXT_separate_depth_stencil 1 +#endif /* GL_EXT_separate_depth_stencil */ + +#ifndef GL_EXT_separate_shader_objects +#define GL_EXT_separate_shader_objects 1 +#define GL_ACTIVE_PROGRAM_EXT 0x8259 +#define GL_VERTEX_SHADER_BIT_EXT 0x00000001 +#define GL_FRAGMENT_SHADER_BIT_EXT 0x00000002 +#define GL_ALL_SHADER_BITS_EXT 0xFFFFFFFF +#define GL_PROGRAM_SEPARABLE_EXT 0x8258 +#define GL_PROGRAM_PIPELINE_BINDING_EXT 0x825A +typedef void (GL_APIENTRYP PFNGLACTIVESHADERPROGRAMEXTPROC) (GLuint pipeline, GLuint program); +typedef void (GL_APIENTRYP PFNGLBINDPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef GLuint (GL_APIENTRYP PFNGLCREATESHADERPROGRAMVEXTPROC) (GLenum type, GLsizei count, const GLchar **strings); +typedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPIPELINESEXTPROC) (GLsizei n, const GLuint *pipelines); +typedef void (GL_APIENTRYP PFNGLGENPROGRAMPIPELINESEXTPROC) (GLsizei n, GLuint *pipelines); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGEXTPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEIVEXTPROC) (GLuint pipeline, GLenum pname, GLint *params); +typedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef void (GL_APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUSEPROGRAMSTAGESEXTPROC) (GLuint pipeline, GLbitfield stages, GLuint program); +typedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UIEXTPROC) (GLuint program, GLint location, GLuint v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glActiveShaderProgramEXT (GLuint pipeline, GLuint program); +GL_APICALL void GL_APIENTRY glBindProgramPipelineEXT (GLuint pipeline); +GL_APICALL GLuint GL_APIENTRY glCreateShaderProgramvEXT (GLenum type, GLsizei count, const GLchar **strings); +GL_APICALL void GL_APIENTRY glDeleteProgramPipelinesEXT (GLsizei n, const GLuint *pipelines); +GL_APICALL void GL_APIENTRY glGenProgramPipelinesEXT (GLsizei n, GLuint *pipelines); +GL_APICALL void GL_APIENTRY glGetProgramPipelineInfoLogEXT (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetProgramPipelineivEXT (GLuint pipeline, GLenum pname, GLint *params); +GL_APICALL GLboolean GL_APIENTRY glIsProgramPipelineEXT (GLuint pipeline); +GL_APICALL void GL_APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat v0); +GL_APICALL void GL_APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint v0); +GL_APICALL void GL_APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GL_APICALL void GL_APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint v0, GLint v1); +GL_APICALL void GL_APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GL_APICALL void GL_APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GL_APICALL void GL_APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GL_APICALL void GL_APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GL_APICALL void GL_APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUseProgramStagesEXT (GLuint pipeline, GLbitfield stages, GLuint program); +GL_APICALL void GL_APIENTRY glValidateProgramPipelineEXT (GLuint pipeline); +GL_APICALL void GL_APIENTRY glProgramUniform1uiEXT (GLuint program, GLint location, GLuint v0); +GL_APICALL void GL_APIENTRY glProgramUniform2uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1); +GL_APICALL void GL_APIENTRY glProgramUniform3uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GL_APICALL void GL_APIENTRY glProgramUniform4uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GL_APICALL void GL_APIENTRY glProgramUniform1uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform2uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform3uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform4uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_EXT_separate_shader_objects */ + +#ifndef GL_EXT_shader_framebuffer_fetch +#define GL_EXT_shader_framebuffer_fetch 1 +#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT 0x8A52 +#endif /* GL_EXT_shader_framebuffer_fetch */ + +#ifndef GL_EXT_shader_framebuffer_fetch_non_coherent +#define GL_EXT_shader_framebuffer_fetch_non_coherent 1 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFetchBarrierEXT (void); +#endif +#endif /* GL_EXT_shader_framebuffer_fetch_non_coherent */ + +#ifndef GL_EXT_shader_group_vote +#define GL_EXT_shader_group_vote 1 +#endif /* GL_EXT_shader_group_vote */ + +#ifndef GL_EXT_shader_implicit_conversions +#define GL_EXT_shader_implicit_conversions 1 +#endif /* GL_EXT_shader_implicit_conversions */ + +#ifndef GL_EXT_shader_integer_mix +#define GL_EXT_shader_integer_mix 1 +#endif /* GL_EXT_shader_integer_mix */ + +#ifndef GL_EXT_shader_io_blocks +#define GL_EXT_shader_io_blocks 1 +#endif /* GL_EXT_shader_io_blocks */ + +#ifndef GL_EXT_shader_non_constant_global_initializers +#define GL_EXT_shader_non_constant_global_initializers 1 +#endif /* GL_EXT_shader_non_constant_global_initializers */ + +#ifndef GL_EXT_shader_pixel_local_storage +#define GL_EXT_shader_pixel_local_storage 1 +#define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63 +#define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_SIZE_EXT 0x8F67 +#define GL_SHADER_PIXEL_LOCAL_STORAGE_EXT 0x8F64 +#endif /* GL_EXT_shader_pixel_local_storage */ + +#ifndef GL_EXT_shader_pixel_local_storage2 +#define GL_EXT_shader_pixel_local_storage2 1 +#define GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_FAST_SIZE_EXT 0x9650 +#define GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_SIZE_EXT 0x9651 +#define GL_FRAMEBUFFER_INCOMPLETE_INSUFFICIENT_SHADER_COMBINED_LOCAL_STORAGE_EXT 0x9652 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC) (GLuint target, GLsizei size); +typedef GLsizei (GL_APIENTRYP PFNGLGETFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC) (GLuint target); +typedef void (GL_APIENTRYP PFNGLCLEARPIXELLOCALSTORAGEUIEXTPROC) (GLsizei offset, GLsizei n, const GLuint *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferPixelLocalStorageSizeEXT (GLuint target, GLsizei size); +GL_APICALL GLsizei GL_APIENTRY glGetFramebufferPixelLocalStorageSizeEXT (GLuint target); +GL_APICALL void GL_APIENTRY glClearPixelLocalStorageuiEXT (GLsizei offset, GLsizei n, const GLuint *values); +#endif +#endif /* GL_EXT_shader_pixel_local_storage2 */ + +#ifndef GL_EXT_shader_samples_identical +#define GL_EXT_shader_samples_identical 1 +#endif /* GL_EXT_shader_samples_identical */ + +#ifndef GL_EXT_shader_texture_lod +#define GL_EXT_shader_texture_lod 1 +#endif /* GL_EXT_shader_texture_lod */ + +#ifndef GL_EXT_shadow_samplers +#define GL_EXT_shadow_samplers 1 +#define GL_TEXTURE_COMPARE_MODE_EXT 0x884C +#define GL_TEXTURE_COMPARE_FUNC_EXT 0x884D +#define GL_COMPARE_REF_TO_TEXTURE_EXT 0x884E +#define GL_SAMPLER_2D_SHADOW_EXT 0x8B62 +#endif /* GL_EXT_shadow_samplers */ + +#ifndef GL_EXT_sparse_texture +#define GL_EXT_sparse_texture 1 +#define GL_TEXTURE_SPARSE_EXT 0x91A6 +#define GL_VIRTUAL_PAGE_SIZE_INDEX_EXT 0x91A7 +#define GL_NUM_SPARSE_LEVELS_EXT 0x91AA +#define GL_NUM_VIRTUAL_PAGE_SIZES_EXT 0x91A8 +#define GL_VIRTUAL_PAGE_SIZE_X_EXT 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_EXT 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_EXT 0x9197 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_TEXTURE_3D 0x806F +#define GL_MAX_SPARSE_TEXTURE_SIZE_EXT 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_EXT 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_EXT 0x919A +#define GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_EXT 0x91A9 +typedef void (GL_APIENTRYP PFNGLTEXPAGECOMMITMENTEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexPageCommitmentEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#endif +#endif /* GL_EXT_sparse_texture */ + +#ifndef GL_EXT_sparse_texture2 +#define GL_EXT_sparse_texture2 1 +#endif /* GL_EXT_sparse_texture2 */ + +#ifndef GL_EXT_tessellation_point_size +#define GL_EXT_tessellation_point_size 1 +#endif /* GL_EXT_tessellation_point_size */ + +#ifndef GL_EXT_tessellation_shader +#define GL_EXT_tessellation_shader 1 +#define GL_PATCHES_EXT 0x000E +#define GL_PATCH_VERTICES_EXT 0x8E72 +#define GL_TESS_CONTROL_OUTPUT_VERTICES_EXT 0x8E75 +#define GL_TESS_GEN_MODE_EXT 0x8E76 +#define GL_TESS_GEN_SPACING_EXT 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER_EXT 0x8E78 +#define GL_TESS_GEN_POINT_MODE_EXT 0x8E79 +#define GL_ISOLINES_EXT 0x8E7A +#define GL_QUADS_EXT 0x0007 +#define GL_FRACTIONAL_ODD_EXT 0x8E7B +#define GL_FRACTIONAL_EVEN_EXT 0x8E7C +#define GL_MAX_PATCH_VERTICES_EXT 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL_EXT 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS_EXT 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS_EXT 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS_EXT 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS_EXT 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS_EXT 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS_EXT 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS_EXT 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS_EXT 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS_EXT 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS_EXT 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS_EXT 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS_EXT 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT 0x8E1F +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_EXT 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS_EXT 0x92CE +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS_EXT 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS_EXT 0x92D4 +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_EXT 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS_EXT 0x90CC +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS_EXT 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS_EXT 0x90D9 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED 0x8221 +#define GL_IS_PER_PATCH_EXT 0x92E7 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER_EXT 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER_EXT 0x9308 +#define GL_TESS_CONTROL_SHADER_EXT 0x8E88 +#define GL_TESS_EVALUATION_SHADER_EXT 0x8E87 +#define GL_TESS_CONTROL_SHADER_BIT_EXT 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT_EXT 0x00000010 +typedef void (GL_APIENTRYP PFNGLPATCHPARAMETERIEXTPROC) (GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPatchParameteriEXT (GLenum pname, GLint value); +#endif +#endif /* GL_EXT_tessellation_shader */ + +#ifndef GL_EXT_texture_border_clamp +#define GL_EXT_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_EXT 0x1004 +#define GL_CLAMP_TO_BORDER_EXT 0x812D +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIIVEXTPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIUIVEXTPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIIVEXTPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVEXTPROC) (GLuint sampler, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexParameterIivEXT (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexParameterIuivEXT (GLenum target, GLenum pname, const GLuint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIivEXT (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIuivEXT (GLenum target, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glSamplerParameterIivEXT (GLuint sampler, GLenum pname, const GLint *param); +GL_APICALL void GL_APIENTRY glSamplerParameterIuivEXT (GLuint sampler, GLenum pname, const GLuint *param); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIivEXT (GLuint sampler, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIuivEXT (GLuint sampler, GLenum pname, GLuint *params); +#endif +#endif /* GL_EXT_texture_border_clamp */ + +#ifndef GL_EXT_texture_buffer +#define GL_EXT_texture_buffer 1 +#define GL_TEXTURE_BUFFER_EXT 0x8C2A +#define GL_TEXTURE_BUFFER_BINDING_EXT 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT_EXT 0x919F +#define GL_SAMPLER_BUFFER_EXT 0x8DC2 +#define GL_INT_SAMPLER_BUFFER_EXT 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT 0x8DD8 +#define GL_IMAGE_BUFFER_EXT 0x9051 +#define GL_INT_IMAGE_BUFFER_EXT 0x905C +#define GL_UNSIGNED_INT_IMAGE_BUFFER_EXT 0x9067 +#define GL_TEXTURE_BUFFER_OFFSET_EXT 0x919D +#define GL_TEXTURE_BUFFER_SIZE_EXT 0x919E +typedef void (GL_APIENTRYP PFNGLTEXBUFFEREXTPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLTEXBUFFERRANGEEXTPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexBufferEXT (GLenum target, GLenum internalformat, GLuint buffer); +GL_APICALL void GL_APIENTRY glTexBufferRangeEXT (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_EXT_texture_buffer */ + +#ifndef GL_EXT_texture_compression_astc_decode_mode +#define GL_EXT_texture_compression_astc_decode_mode 1 +#define GL_TEXTURE_ASTC_DECODE_PRECISION_EXT 0x8F69 +#endif /* GL_EXT_texture_compression_astc_decode_mode */ + +#ifndef GL_EXT_texture_compression_bptc +#define GL_EXT_texture_compression_bptc 1 +#define GL_COMPRESSED_RGBA_BPTC_UNORM_EXT 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT 0x8E8F +#endif /* GL_EXT_texture_compression_bptc */ + +#ifndef GL_EXT_texture_compression_dxt1 +#define GL_EXT_texture_compression_dxt1 1 +#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 +#endif /* GL_EXT_texture_compression_dxt1 */ + +#ifndef GL_EXT_texture_compression_rgtc +#define GL_EXT_texture_compression_rgtc 1 +#define GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC +#define GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD +#define GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE +#endif /* GL_EXT_texture_compression_rgtc */ + +#ifndef GL_EXT_texture_compression_s3tc +#define GL_EXT_texture_compression_s3tc 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 +#endif /* GL_EXT_texture_compression_s3tc */ + +#ifndef GL_EXT_texture_compression_s3tc_srgb +#define GL_EXT_texture_compression_s3tc_srgb 1 +#define GL_COMPRESSED_SRGB_S3TC_DXT1_EXT 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT 0x8C4F +#endif /* GL_EXT_texture_compression_s3tc_srgb */ + +#ifndef GL_EXT_texture_cube_map_array +#define GL_EXT_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_EXT 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_EXT 0x900A +#define GL_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_EXT 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900F +#define GL_IMAGE_CUBE_MAP_ARRAY_EXT 0x9054 +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x905F +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x906A +#endif /* GL_EXT_texture_cube_map_array */ + +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_EXT_texture_filter_anisotropic 1 +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF +#endif /* GL_EXT_texture_filter_anisotropic */ + +#ifndef GL_EXT_texture_filter_minmax +#define GL_EXT_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_EXT 0x9366 +#define GL_WEIGHTED_AVERAGE_EXT 0x9367 +#endif /* GL_EXT_texture_filter_minmax */ + +#ifndef GL_EXT_texture_format_BGRA8888 +#define GL_EXT_texture_format_BGRA8888 1 +#endif /* GL_EXT_texture_format_BGRA8888 */ + +#ifndef GL_EXT_texture_format_sRGB_override +#define GL_EXT_texture_format_sRGB_override 1 +#define GL_TEXTURE_FORMAT_SRGB_OVERRIDE_EXT 0x8FBF +#endif /* GL_EXT_texture_format_sRGB_override */ + +#ifndef GL_EXT_texture_mirror_clamp_to_edge +#define GL_EXT_texture_mirror_clamp_to_edge 1 +#define GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 +#endif /* GL_EXT_texture_mirror_clamp_to_edge */ + +#ifndef GL_EXT_texture_norm16 +#define GL_EXT_texture_norm16 1 +#define GL_R16_EXT 0x822A +#define GL_RG16_EXT 0x822C +#define GL_RGBA16_EXT 0x805B +#define GL_RGB16_EXT 0x8054 +#define GL_RGB16_SNORM_EXT 0x8F9A +#endif /* GL_EXT_texture_norm16 */ + +#ifndef GL_EXT_texture_query_lod +#define GL_EXT_texture_query_lod 1 +#endif /* GL_EXT_texture_query_lod */ + +#ifndef GL_EXT_texture_rg +#define GL_EXT_texture_rg 1 +#define GL_RED_EXT 0x1903 +#define GL_RG_EXT 0x8227 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B +#endif /* GL_EXT_texture_rg */ + +#ifndef GL_EXT_texture_sRGB_R8 +#define GL_EXT_texture_sRGB_R8 1 +#define GL_SR8_EXT 0x8FBD +#endif /* GL_EXT_texture_sRGB_R8 */ + +#ifndef GL_EXT_texture_sRGB_RG8 +#define GL_EXT_texture_sRGB_RG8 1 +#define GL_SRG8_EXT 0x8FBE +#endif /* GL_EXT_texture_sRGB_RG8 */ + +#ifndef GL_EXT_texture_sRGB_decode +#define GL_EXT_texture_sRGB_decode 1 +#define GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 +#define GL_DECODE_EXT 0x8A49 +#define GL_SKIP_DECODE_EXT 0x8A4A +#endif /* GL_EXT_texture_sRGB_decode */ + +#ifndef GL_EXT_texture_shadow_lod +#define GL_EXT_texture_shadow_lod 1 +#endif /* GL_EXT_texture_shadow_lod */ + +#ifndef GL_EXT_texture_storage +#define GL_EXT_texture_storage 1 +#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F +#define GL_ALPHA8_EXT 0x803C +#define GL_LUMINANCE8_EXT 0x8040 +#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 +#define GL_RGBA32F_EXT 0x8814 +#define GL_RGB32F_EXT 0x8815 +#define GL_ALPHA32F_EXT 0x8816 +#define GL_LUMINANCE32F_EXT 0x8818 +#define GL_LUMINANCE_ALPHA32F_EXT 0x8819 +#define GL_ALPHA16F_EXT 0x881C +#define GL_LUMINANCE16F_EXT 0x881E +#define GL_LUMINANCE_ALPHA16F_EXT 0x881F +#define GL_R32F_EXT 0x822E +#define GL_RG32F_EXT 0x8230 +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorage1DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GL_APICALL void GL_APIENTRY glTexStorage2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glTexStorage3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GL_APICALL void GL_APIENTRY glTextureStorage1DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GL_APICALL void GL_APIENTRY glTextureStorage2DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glTextureStorage3DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_EXT_texture_storage */ + +#ifndef GL_EXT_texture_storage_compression +#define GL_EXT_texture_storage_compression 1 +#define GL_NUM_SURFACE_COMPRESSION_FIXED_RATES_EXT 0x8F6E +#define GL_SURFACE_COMPRESSION_FIXED_RATE_1BPC_EXT 0x96C4 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_2BPC_EXT 0x96C5 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_3BPC_EXT 0x96C6 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_4BPC_EXT 0x96C7 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_5BPC_EXT 0x96C8 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_6BPC_EXT 0x96C9 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_7BPC_EXT 0x96CA +#define GL_SURFACE_COMPRESSION_FIXED_RATE_8BPC_EXT 0x96CB +#define GL_SURFACE_COMPRESSION_FIXED_RATE_9BPC_EXT 0x96CC +#define GL_SURFACE_COMPRESSION_FIXED_RATE_10BPC_EXT 0x96CD +#define GL_SURFACE_COMPRESSION_FIXED_RATE_11BPC_EXT 0x96CE +#define GL_SURFACE_COMPRESSION_FIXED_RATE_12BPC_EXT 0x96CF +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEATTRIBS2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, const GLint* attrib_list); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEATTRIBS3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorageAttribs2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, const GLint* attrib_list); +GL_APICALL void GL_APIENTRY glTexStorageAttribs3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, const GLint* attrib_list); +#endif +#endif /* GL_EXT_texture_storage_compression */ + +#ifndef GL_EXT_texture_type_2_10_10_10_REV +#define GL_EXT_texture_type_2_10_10_10_REV 1 +#define GL_UNSIGNED_INT_2_10_10_10_REV_EXT 0x8368 +#endif /* GL_EXT_texture_type_2_10_10_10_REV */ + +#ifndef GL_EXT_texture_view +#define GL_EXT_texture_view 1 +#define GL_TEXTURE_VIEW_MIN_LEVEL_EXT 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS_EXT 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER_EXT 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS_EXT 0x82DE +typedef void (GL_APIENTRYP PFNGLTEXTUREVIEWEXTPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureViewEXT (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#endif +#endif /* GL_EXT_texture_view */ + +#ifndef GL_EXT_unpack_subimage +#define GL_EXT_unpack_subimage 1 +#define GL_UNPACK_ROW_LENGTH_EXT 0x0CF2 +#define GL_UNPACK_SKIP_ROWS_EXT 0x0CF3 +#define GL_UNPACK_SKIP_PIXELS_EXT 0x0CF4 +#endif /* GL_EXT_unpack_subimage */ + +#ifndef GL_EXT_win32_keyed_mutex +#define GL_EXT_win32_keyed_mutex 1 +typedef GLboolean (GL_APIENTRYP PFNGLACQUIREKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key, GLuint timeout); +typedef GLboolean (GL_APIENTRYP PFNGLRELEASEKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLboolean GL_APIENTRY glAcquireKeyedMutexWin32EXT (GLuint memory, GLuint64 key, GLuint timeout); +GL_APICALL GLboolean GL_APIENTRY glReleaseKeyedMutexWin32EXT (GLuint memory, GLuint64 key); +#endif +#endif /* GL_EXT_win32_keyed_mutex */ + +#ifndef GL_EXT_window_rectangles +#define GL_EXT_window_rectangles 1 +#define GL_INCLUSIVE_EXT 0x8F10 +#define GL_EXCLUSIVE_EXT 0x8F11 +#define GL_WINDOW_RECTANGLE_EXT 0x8F12 +#define GL_WINDOW_RECTANGLE_MODE_EXT 0x8F13 +#define GL_MAX_WINDOW_RECTANGLES_EXT 0x8F14 +#define GL_NUM_WINDOW_RECTANGLES_EXT 0x8F15 +typedef void (GL_APIENTRYP PFNGLWINDOWRECTANGLESEXTPROC) (GLenum mode, GLsizei count, const GLint *box); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glWindowRectanglesEXT (GLenum mode, GLsizei count, const GLint *box); +#endif +#endif /* GL_EXT_window_rectangles */ + +#ifndef GL_FJ_shader_binary_GCCSO +#define GL_FJ_shader_binary_GCCSO 1 +#define GL_GCCSO_SHADER_BINARY_FJ 0x9260 +#endif /* GL_FJ_shader_binary_GCCSO */ + +#ifndef GL_IMG_bindless_texture +#define GL_IMG_bindless_texture 1 +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTUREHANDLEIMGPROC) (GLuint texture); +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTURESAMPLERHANDLEIMGPROC) (GLuint texture, GLuint sampler); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64IMGPROC) (GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64VIMGPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64IMGPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VIMGPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint64 GL_APIENTRY glGetTextureHandleIMG (GLuint texture); +GL_APICALL GLuint64 GL_APIENTRY glGetTextureSamplerHandleIMG (GLuint texture, GLuint sampler); +GL_APICALL void GL_APIENTRY glUniformHandleui64IMG (GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glUniformHandleui64vIMG (GLint location, GLsizei count, const GLuint64 *value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64IMG (GLuint program, GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64vIMG (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +#endif +#endif /* GL_IMG_bindless_texture */ + +#ifndef GL_IMG_framebuffer_downsample +#define GL_IMG_framebuffer_downsample 1 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_AND_DOWNSAMPLE_IMG 0x913C +#define GL_NUM_DOWNSAMPLE_SCALES_IMG 0x913D +#define GL_DOWNSAMPLE_SCALES_IMG 0x913E +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SCALE_IMG 0x913F +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DDOWNSAMPLEIMGPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint xscale, GLint yscale); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERDOWNSAMPLEIMGPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, GLint xscale, GLint yscale); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTexture2DDownsampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint xscale, GLint yscale); +GL_APICALL void GL_APIENTRY glFramebufferTextureLayerDownsampleIMG (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, GLint xscale, GLint yscale); +#endif +#endif /* GL_IMG_framebuffer_downsample */ + +#ifndef GL_IMG_multisampled_render_to_texture +#define GL_IMG_multisampled_render_to_texture 1 +#define GL_RENDERBUFFER_SAMPLES_IMG 0x9133 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_IMG 0x9134 +#define GL_MAX_SAMPLES_IMG 0x9135 +#define GL_TEXTURE_SAMPLES_IMG 0x9136 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEIMGPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEIMGPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleIMG (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#endif +#endif /* GL_IMG_multisampled_render_to_texture */ + +#ifndef GL_IMG_program_binary +#define GL_IMG_program_binary 1 +#define GL_SGX_PROGRAM_BINARY_IMG 0x9130 +#endif /* GL_IMG_program_binary */ + +#ifndef GL_IMG_read_format +#define GL_IMG_read_format 1 +#define GL_BGRA_IMG 0x80E1 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV_IMG 0x8365 +#endif /* GL_IMG_read_format */ + +#ifndef GL_IMG_shader_binary +#define GL_IMG_shader_binary 1 +#define GL_SGX_BINARY_IMG 0x8C0A +#endif /* GL_IMG_shader_binary */ + +#ifndef GL_IMG_texture_compression_pvrtc +#define GL_IMG_texture_compression_pvrtc 1 +#define GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG 0x8C00 +#define GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG 0x8C01 +#define GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG 0x8C02 +#define GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG 0x8C03 +#endif /* GL_IMG_texture_compression_pvrtc */ + +#ifndef GL_IMG_texture_compression_pvrtc2 +#define GL_IMG_texture_compression_pvrtc2 1 +#define GL_COMPRESSED_RGBA_PVRTC_2BPPV2_IMG 0x9137 +#define GL_COMPRESSED_RGBA_PVRTC_4BPPV2_IMG 0x9138 +#endif /* GL_IMG_texture_compression_pvrtc2 */ + +#ifndef GL_IMG_texture_filter_cubic +#define GL_IMG_texture_filter_cubic 1 +#define GL_CUBIC_IMG 0x9139 +#define GL_CUBIC_MIPMAP_NEAREST_IMG 0x913A +#define GL_CUBIC_MIPMAP_LINEAR_IMG 0x913B +#endif /* GL_IMG_texture_filter_cubic */ + +#ifndef GL_INTEL_blackhole_render +#define GL_INTEL_blackhole_render 1 +#define GL_BLACKHOLE_RENDER_INTEL 0x83FC +#endif /* GL_INTEL_blackhole_render */ + +#ifndef GL_INTEL_conservative_rasterization +#define GL_INTEL_conservative_rasterization 1 +#define GL_CONSERVATIVE_RASTERIZATION_INTEL 0x83FE +#endif /* GL_INTEL_conservative_rasterization */ + +#ifndef GL_INTEL_framebuffer_CMAA +#define GL_INTEL_framebuffer_CMAA 1 +typedef void (GL_APIENTRYP PFNGLAPPLYFRAMEBUFFERATTACHMENTCMAAINTELPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glApplyFramebufferAttachmentCMAAINTEL (void); +#endif +#endif /* GL_INTEL_framebuffer_CMAA */ + +#ifndef GL_INTEL_performance_query +#define GL_INTEL_performance_query 1 +#define GL_PERFQUERY_SINGLE_CONTEXT_INTEL 0x00000000 +#define GL_PERFQUERY_GLOBAL_CONTEXT_INTEL 0x00000001 +#define GL_PERFQUERY_WAIT_INTEL 0x83FB +#define GL_PERFQUERY_FLUSH_INTEL 0x83FA +#define GL_PERFQUERY_DONOT_FLUSH_INTEL 0x83F9 +#define GL_PERFQUERY_COUNTER_EVENT_INTEL 0x94F0 +#define GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL 0x94F1 +#define GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL 0x94F2 +#define GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL 0x94F3 +#define GL_PERFQUERY_COUNTER_RAW_INTEL 0x94F4 +#define GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL 0x94F5 +#define GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL 0x94F8 +#define GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL 0x94F9 +#define GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL 0x94FA +#define GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL 0x94FB +#define GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL 0x94FC +#define GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL 0x94FD +#define GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL 0x94FE +#define GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL 0x94FF +#define GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL 0x9500 +typedef void (GL_APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); +typedef void (GL_APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLGETFIRSTPERFQUERYIDINTELPROC) (GLuint *queryId); +typedef void (GL_APIENTRYP PFNGLGETNEXTPERFQUERYIDINTELPROC) (GLuint queryId, GLuint *nextQueryId); +typedef void (GL_APIENTRYP PFNGLGETPERFCOUNTERINFOINTELPROC) (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYIDBYNAMEINTELPROC) (GLchar *queryName, GLuint *queryId); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYINFOINTELPROC) (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); +GL_APICALL void GL_APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glGetFirstPerfQueryIdINTEL (GLuint *queryId); +GL_APICALL void GL_APIENTRY glGetNextPerfQueryIdINTEL (GLuint queryId, GLuint *nextQueryId); +GL_APICALL void GL_APIENTRY glGetPerfCounterInfoINTEL (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +GL_APICALL void GL_APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +GL_APICALL void GL_APIENTRY glGetPerfQueryIdByNameINTEL (GLchar *queryName, GLuint *queryId); +GL_APICALL void GL_APIENTRY glGetPerfQueryInfoINTEL (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#endif +#endif /* GL_INTEL_performance_query */ + +#ifndef GL_MESA_bgra +#define GL_MESA_bgra 1 +#define GL_BGR_EXT 0x80E0 +#endif /* GL_MESA_bgra */ + +#ifndef GL_MESA_framebuffer_flip_x +#define GL_MESA_framebuffer_flip_x 1 +#define GL_FRAMEBUFFER_FLIP_X_MESA 0x8BBC +#endif /* GL_MESA_framebuffer_flip_x */ + +#ifndef GL_MESA_framebuffer_flip_y +#define GL_MESA_framebuffer_flip_y 1 +#define GL_FRAMEBUFFER_FLIP_Y_MESA 0x8BBB +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERPARAMETERIMESAPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVMESAPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferParameteriMESA (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glGetFramebufferParameterivMESA (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_MESA_framebuffer_flip_y */ + +#ifndef GL_MESA_framebuffer_swap_xy +#define GL_MESA_framebuffer_swap_xy 1 +#define GL_FRAMEBUFFER_SWAP_XY_MESA 0x8BBD +#endif /* GL_MESA_framebuffer_swap_xy */ + +#ifndef GL_MESA_program_binary_formats +#define GL_MESA_program_binary_formats 1 +#define GL_PROGRAM_BINARY_FORMAT_MESA 0x875F +#endif /* GL_MESA_program_binary_formats */ + +#ifndef GL_MESA_shader_integer_functions +#define GL_MESA_shader_integer_functions 1 +#endif /* GL_MESA_shader_integer_functions */ + +#ifndef GL_NVX_blend_equation_advanced_multi_draw_buffers +#define GL_NVX_blend_equation_advanced_multi_draw_buffers 1 +#endif /* GL_NVX_blend_equation_advanced_multi_draw_buffers */ + +#ifndef GL_NV_bindless_texture +#define GL_NV_bindless_texture 1 +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTUREHANDLENVPROC) (GLuint texture); +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTURESAMPLERHANDLENVPROC) (GLuint texture, GLuint sampler); +typedef void (GL_APIENTRYP PFNGLMAKETEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef void (GL_APIENTRYP PFNGLMAKETEXTUREHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef GLuint64 (GL_APIENTRYP PFNGLGETIMAGEHANDLENVPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef void (GL_APIENTRYP PFNGLMAKEIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle, GLenum access); +typedef void (GL_APIENTRYP PFNGLMAKEIMAGEHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64NVPROC) (GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64VNVPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64NVPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef GLboolean (GL_APIENTRYP PFNGLISIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint64 GL_APIENTRY glGetTextureHandleNV (GLuint texture); +GL_APICALL GLuint64 GL_APIENTRY glGetTextureSamplerHandleNV (GLuint texture, GLuint sampler); +GL_APICALL void GL_APIENTRY glMakeTextureHandleResidentNV (GLuint64 handle); +GL_APICALL void GL_APIENTRY glMakeTextureHandleNonResidentNV (GLuint64 handle); +GL_APICALL GLuint64 GL_APIENTRY glGetImageHandleNV (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +GL_APICALL void GL_APIENTRY glMakeImageHandleResidentNV (GLuint64 handle, GLenum access); +GL_APICALL void GL_APIENTRY glMakeImageHandleNonResidentNV (GLuint64 handle); +GL_APICALL void GL_APIENTRY glUniformHandleui64NV (GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glUniformHandleui64vNV (GLint location, GLsizei count, const GLuint64 *value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64NV (GLuint program, GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +GL_APICALL GLboolean GL_APIENTRY glIsTextureHandleResidentNV (GLuint64 handle); +GL_APICALL GLboolean GL_APIENTRY glIsImageHandleResidentNV (GLuint64 handle); +#endif +#endif /* GL_NV_bindless_texture */ + +#ifndef GL_NV_blend_equation_advanced +#define GL_NV_blend_equation_advanced 1 +#define GL_BLEND_OVERLAP_NV 0x9281 +#define GL_BLEND_PREMULTIPLIED_SRC_NV 0x9280 +#define GL_BLUE_NV 0x1905 +#define GL_COLORBURN_NV 0x929A +#define GL_COLORDODGE_NV 0x9299 +#define GL_CONJOINT_NV 0x9284 +#define GL_CONTRAST_NV 0x92A1 +#define GL_DARKEN_NV 0x9297 +#define GL_DIFFERENCE_NV 0x929E +#define GL_DISJOINT_NV 0x9283 +#define GL_DST_ATOP_NV 0x928F +#define GL_DST_IN_NV 0x928B +#define GL_DST_NV 0x9287 +#define GL_DST_OUT_NV 0x928D +#define GL_DST_OVER_NV 0x9289 +#define GL_EXCLUSION_NV 0x92A0 +#define GL_GREEN_NV 0x1904 +#define GL_HARDLIGHT_NV 0x929B +#define GL_HARDMIX_NV 0x92A9 +#define GL_HSL_COLOR_NV 0x92AF +#define GL_HSL_HUE_NV 0x92AD +#define GL_HSL_LUMINOSITY_NV 0x92B0 +#define GL_HSL_SATURATION_NV 0x92AE +#define GL_INVERT_OVG_NV 0x92B4 +#define GL_INVERT_RGB_NV 0x92A3 +#define GL_LIGHTEN_NV 0x9298 +#define GL_LINEARBURN_NV 0x92A5 +#define GL_LINEARDODGE_NV 0x92A4 +#define GL_LINEARLIGHT_NV 0x92A7 +#define GL_MINUS_CLAMPED_NV 0x92B3 +#define GL_MINUS_NV 0x929F +#define GL_MULTIPLY_NV 0x9294 +#define GL_OVERLAY_NV 0x9296 +#define GL_PINLIGHT_NV 0x92A8 +#define GL_PLUS_CLAMPED_ALPHA_NV 0x92B2 +#define GL_PLUS_CLAMPED_NV 0x92B1 +#define GL_PLUS_DARKER_NV 0x9292 +#define GL_PLUS_NV 0x9291 +#define GL_RED_NV 0x1903 +#define GL_SCREEN_NV 0x9295 +#define GL_SOFTLIGHT_NV 0x929C +#define GL_SRC_ATOP_NV 0x928E +#define GL_SRC_IN_NV 0x928A +#define GL_SRC_NV 0x9286 +#define GL_SRC_OUT_NV 0x928C +#define GL_SRC_OVER_NV 0x9288 +#define GL_UNCORRELATED_NV 0x9282 +#define GL_VIVIDLIGHT_NV 0x92A6 +#define GL_XOR_NV 0x1506 +typedef void (GL_APIENTRYP PFNGLBLENDPARAMETERINVPROC) (GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLBLENDBARRIERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlendParameteriNV (GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glBlendBarrierNV (void); +#endif +#endif /* GL_NV_blend_equation_advanced */ + +#ifndef GL_NV_blend_equation_advanced_coherent +#define GL_NV_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_NV 0x9285 +#endif /* GL_NV_blend_equation_advanced_coherent */ + +#ifndef GL_NV_blend_minmax_factor +#define GL_NV_blend_minmax_factor 1 +#define GL_FACTOR_MIN_AMD 0x901C +#define GL_FACTOR_MAX_AMD 0x901D +#endif /* GL_NV_blend_minmax_factor */ + +#ifndef GL_NV_clip_space_w_scaling +#define GL_NV_clip_space_w_scaling 1 +#define GL_VIEWPORT_POSITION_W_SCALE_NV 0x937C +#define GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV 0x937D +#define GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV 0x937E +typedef void (GL_APIENTRYP PFNGLVIEWPORTPOSITIONWSCALENVPROC) (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportPositionWScaleNV (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#endif +#endif /* GL_NV_clip_space_w_scaling */ + +#ifndef GL_NV_compute_shader_derivatives +#define GL_NV_compute_shader_derivatives 1 +#endif /* GL_NV_compute_shader_derivatives */ + +#ifndef GL_NV_conditional_render +#define GL_NV_conditional_render 1 +#define GL_QUERY_WAIT_NV 0x8E13 +#define GL_QUERY_NO_WAIT_NV 0x8E14 +#define GL_QUERY_BY_REGION_WAIT_NV 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16 +typedef void (GL_APIENTRYP PFNGLBEGINCONDITIONALRENDERNVPROC) (GLuint id, GLenum mode); +typedef void (GL_APIENTRYP PFNGLENDCONDITIONALRENDERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBeginConditionalRenderNV (GLuint id, GLenum mode); +GL_APICALL void GL_APIENTRY glEndConditionalRenderNV (void); +#endif +#endif /* GL_NV_conditional_render */ + +#ifndef GL_NV_conservative_raster +#define GL_NV_conservative_raster 1 +#define GL_CONSERVATIVE_RASTERIZATION_NV 0x9346 +#define GL_SUBPIXEL_PRECISION_BIAS_X_BITS_NV 0x9347 +#define GL_SUBPIXEL_PRECISION_BIAS_Y_BITS_NV 0x9348 +#define GL_MAX_SUBPIXEL_PRECISION_BIAS_BITS_NV 0x9349 +typedef void (GL_APIENTRYP PFNGLSUBPIXELPRECISIONBIASNVPROC) (GLuint xbits, GLuint ybits); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glSubpixelPrecisionBiasNV (GLuint xbits, GLuint ybits); +#endif +#endif /* GL_NV_conservative_raster */ + +#ifndef GL_NV_conservative_raster_pre_snap +#define GL_NV_conservative_raster_pre_snap 1 +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV 0x9550 +#endif /* GL_NV_conservative_raster_pre_snap */ + +#ifndef GL_NV_conservative_raster_pre_snap_triangles +#define GL_NV_conservative_raster_pre_snap_triangles 1 +#define GL_CONSERVATIVE_RASTER_MODE_NV 0x954D +#define GL_CONSERVATIVE_RASTER_MODE_POST_SNAP_NV 0x954E +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_TRIANGLES_NV 0x954F +typedef void (GL_APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERINVPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glConservativeRasterParameteriNV (GLenum pname, GLint param); +#endif +#endif /* GL_NV_conservative_raster_pre_snap_triangles */ + +#ifndef GL_NV_copy_buffer +#define GL_NV_copy_buffer 1 +#define GL_COPY_READ_BUFFER_NV 0x8F36 +#define GL_COPY_WRITE_BUFFER_NV 0x8F37 +typedef void (GL_APIENTRYP PFNGLCOPYBUFFERSUBDATANVPROC) (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyBufferSubDataNV (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +#endif +#endif /* GL_NV_copy_buffer */ + +#ifndef GL_NV_coverage_sample +#define GL_NV_coverage_sample 1 +#define GL_COVERAGE_COMPONENT_NV 0x8ED0 +#define GL_COVERAGE_COMPONENT4_NV 0x8ED1 +#define GL_COVERAGE_ATTACHMENT_NV 0x8ED2 +#define GL_COVERAGE_BUFFERS_NV 0x8ED3 +#define GL_COVERAGE_SAMPLES_NV 0x8ED4 +#define GL_COVERAGE_ALL_FRAGMENTS_NV 0x8ED5 +#define GL_COVERAGE_EDGE_FRAGMENTS_NV 0x8ED6 +#define GL_COVERAGE_AUTOMATIC_NV 0x8ED7 +#define GL_COVERAGE_BUFFER_BIT_NV 0x00008000 +typedef void (GL_APIENTRYP PFNGLCOVERAGEMASKNVPROC) (GLboolean mask); +typedef void (GL_APIENTRYP PFNGLCOVERAGEOPERATIONNVPROC) (GLenum operation); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCoverageMaskNV (GLboolean mask); +GL_APICALL void GL_APIENTRY glCoverageOperationNV (GLenum operation); +#endif +#endif /* GL_NV_coverage_sample */ + +#ifndef GL_NV_depth_nonlinear +#define GL_NV_depth_nonlinear 1 +#define GL_DEPTH_COMPONENT16_NONLINEAR_NV 0x8E2C +#endif /* GL_NV_depth_nonlinear */ + +#ifndef GL_NV_draw_buffers +#define GL_NV_draw_buffers 1 +#define GL_MAX_DRAW_BUFFERS_NV 0x8824 +#define GL_DRAW_BUFFER0_NV 0x8825 +#define GL_DRAW_BUFFER1_NV 0x8826 +#define GL_DRAW_BUFFER2_NV 0x8827 +#define GL_DRAW_BUFFER3_NV 0x8828 +#define GL_DRAW_BUFFER4_NV 0x8829 +#define GL_DRAW_BUFFER5_NV 0x882A +#define GL_DRAW_BUFFER6_NV 0x882B +#define GL_DRAW_BUFFER7_NV 0x882C +#define GL_DRAW_BUFFER8_NV 0x882D +#define GL_DRAW_BUFFER9_NV 0x882E +#define GL_DRAW_BUFFER10_NV 0x882F +#define GL_DRAW_BUFFER11_NV 0x8830 +#define GL_DRAW_BUFFER12_NV 0x8831 +#define GL_DRAW_BUFFER13_NV 0x8832 +#define GL_DRAW_BUFFER14_NV 0x8833 +#define GL_DRAW_BUFFER15_NV 0x8834 +#define GL_COLOR_ATTACHMENT0_NV 0x8CE0 +#define GL_COLOR_ATTACHMENT1_NV 0x8CE1 +#define GL_COLOR_ATTACHMENT2_NV 0x8CE2 +#define GL_COLOR_ATTACHMENT3_NV 0x8CE3 +#define GL_COLOR_ATTACHMENT4_NV 0x8CE4 +#define GL_COLOR_ATTACHMENT5_NV 0x8CE5 +#define GL_COLOR_ATTACHMENT6_NV 0x8CE6 +#define GL_COLOR_ATTACHMENT7_NV 0x8CE7 +#define GL_COLOR_ATTACHMENT8_NV 0x8CE8 +#define GL_COLOR_ATTACHMENT9_NV 0x8CE9 +#define GL_COLOR_ATTACHMENT10_NV 0x8CEA +#define GL_COLOR_ATTACHMENT11_NV 0x8CEB +#define GL_COLOR_ATTACHMENT12_NV 0x8CEC +#define GL_COLOR_ATTACHMENT13_NV 0x8CED +#define GL_COLOR_ATTACHMENT14_NV 0x8CEE +#define GL_COLOR_ATTACHMENT15_NV 0x8CEF +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSNVPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawBuffersNV (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_NV_draw_buffers */ + +#ifndef GL_NV_draw_instanced +#define GL_NV_draw_instanced 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDNVPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDNVPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedNV (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedNV (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_NV_draw_instanced */ + +#ifndef GL_NV_draw_vulkan_image +#define GL_NV_draw_vulkan_image 1 +typedef void (GL_APIENTRY *GLVULKANPROCNV)(void); +typedef void (GL_APIENTRYP PFNGLDRAWVKIMAGENVPROC) (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +typedef GLVULKANPROCNV (GL_APIENTRYP PFNGLGETVKPROCADDRNVPROC) (const GLchar *name); +typedef void (GL_APIENTRYP PFNGLWAITVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (GL_APIENTRYP PFNGLSIGNALVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (GL_APIENTRYP PFNGLSIGNALVKFENCENVPROC) (GLuint64 vkFence); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawVkImageNV (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +GL_APICALL GLVULKANPROCNV GL_APIENTRY glGetVkProcAddrNV (const GLchar *name); +GL_APICALL void GL_APIENTRY glWaitVkSemaphoreNV (GLuint64 vkSemaphore); +GL_APICALL void GL_APIENTRY glSignalVkSemaphoreNV (GLuint64 vkSemaphore); +GL_APICALL void GL_APIENTRY glSignalVkFenceNV (GLuint64 vkFence); +#endif +#endif /* GL_NV_draw_vulkan_image */ + +#ifndef GL_NV_explicit_attrib_location +#define GL_NV_explicit_attrib_location 1 +#endif /* GL_NV_explicit_attrib_location */ + +#ifndef GL_NV_fbo_color_attachments +#define GL_NV_fbo_color_attachments 1 +#define GL_MAX_COLOR_ATTACHMENTS_NV 0x8CDF +#endif /* GL_NV_fbo_color_attachments */ + +#ifndef GL_NV_fence +#define GL_NV_fence 1 +#define GL_ALL_COMPLETED_NV 0x84F2 +#define GL_FENCE_STATUS_NV 0x84F3 +#define GL_FENCE_CONDITION_NV 0x84F4 +typedef void (GL_APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences); +typedef void (GL_APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences); +typedef GLboolean (GL_APIENTRYP PFNGLISFENCENVPROC) (GLuint fence); +typedef GLboolean (GL_APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence); +typedef void (GL_APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence); +typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences); +GL_APICALL void GL_APIENTRY glGenFencesNV (GLsizei n, GLuint *fences); +GL_APICALL GLboolean GL_APIENTRY glIsFenceNV (GLuint fence); +GL_APICALL GLboolean GL_APIENTRY glTestFenceNV (GLuint fence); +GL_APICALL void GL_APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glFinishFenceNV (GLuint fence); +GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition); +#endif +#endif /* GL_NV_fence */ + +#ifndef GL_NV_fill_rectangle +#define GL_NV_fill_rectangle 1 +#define GL_FILL_RECTANGLE_NV 0x933C +#endif /* GL_NV_fill_rectangle */ + +#ifndef GL_NV_fragment_coverage_to_color +#define GL_NV_fragment_coverage_to_color 1 +#define GL_FRAGMENT_COVERAGE_TO_COLOR_NV 0x92DD +#define GL_FRAGMENT_COVERAGE_COLOR_NV 0x92DE +typedef void (GL_APIENTRYP PFNGLFRAGMENTCOVERAGECOLORNVPROC) (GLuint color); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFragmentCoverageColorNV (GLuint color); +#endif +#endif /* GL_NV_fragment_coverage_to_color */ + +#ifndef GL_NV_fragment_shader_barycentric +#define GL_NV_fragment_shader_barycentric 1 +#endif /* GL_NV_fragment_shader_barycentric */ + +#ifndef GL_NV_fragment_shader_interlock +#define GL_NV_fragment_shader_interlock 1 +#endif /* GL_NV_fragment_shader_interlock */ + +#ifndef GL_NV_framebuffer_blit +#define GL_NV_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_NV 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_NV 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_NV 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_NV 0x8CAA +typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERNVPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlitFramebufferNV (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_NV_framebuffer_blit */ + +#ifndef GL_NV_framebuffer_mixed_samples +#define GL_NV_framebuffer_mixed_samples 1 +#define GL_COVERAGE_MODULATION_TABLE_NV 0x9331 +#define GL_COLOR_SAMPLES_NV 0x8E20 +#define GL_DEPTH_SAMPLES_NV 0x932D +#define GL_STENCIL_SAMPLES_NV 0x932E +#define GL_MIXED_DEPTH_SAMPLES_SUPPORTED_NV 0x932F +#define GL_MIXED_STENCIL_SAMPLES_SUPPORTED_NV 0x9330 +#define GL_COVERAGE_MODULATION_NV 0x9332 +#define GL_COVERAGE_MODULATION_TABLE_SIZE_NV 0x9333 +typedef void (GL_APIENTRYP PFNGLCOVERAGEMODULATIONTABLENVPROC) (GLsizei n, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLGETCOVERAGEMODULATIONTABLENVPROC) (GLsizei bufSize, GLfloat *v); +typedef void (GL_APIENTRYP PFNGLCOVERAGEMODULATIONNVPROC) (GLenum components); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCoverageModulationTableNV (GLsizei n, const GLfloat *v); +GL_APICALL void GL_APIENTRY glGetCoverageModulationTableNV (GLsizei bufSize, GLfloat *v); +GL_APICALL void GL_APIENTRY glCoverageModulationNV (GLenum components); +#endif +#endif /* GL_NV_framebuffer_mixed_samples */ + +#ifndef GL_NV_framebuffer_multisample +#define GL_NV_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_NV 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_NV 0x8D56 +#define GL_MAX_SAMPLES_NV 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLENVPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleNV (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_NV_framebuffer_multisample */ + +#ifndef GL_NV_generate_mipmap_sRGB +#define GL_NV_generate_mipmap_sRGB 1 +#endif /* GL_NV_generate_mipmap_sRGB */ + +#ifndef GL_NV_geometry_shader_passthrough +#define GL_NV_geometry_shader_passthrough 1 +#endif /* GL_NV_geometry_shader_passthrough */ + +#ifndef GL_NV_gpu_shader5 +#define GL_NV_gpu_shader5 1 +typedef khronos_int64_t GLint64EXT; +typedef khronos_uint64_t GLuint64EXT; +#define GL_INT64_NV 0x140E +#define GL_UNSIGNED_INT64_NV 0x140F +#define GL_INT8_NV 0x8FE0 +#define GL_INT8_VEC2_NV 0x8FE1 +#define GL_INT8_VEC3_NV 0x8FE2 +#define GL_INT8_VEC4_NV 0x8FE3 +#define GL_INT16_NV 0x8FE4 +#define GL_INT16_VEC2_NV 0x8FE5 +#define GL_INT16_VEC3_NV 0x8FE6 +#define GL_INT16_VEC4_NV 0x8FE7 +#define GL_INT64_VEC2_NV 0x8FE9 +#define GL_INT64_VEC3_NV 0x8FEA +#define GL_INT64_VEC4_NV 0x8FEB +#define GL_UNSIGNED_INT8_NV 0x8FEC +#define GL_UNSIGNED_INT8_VEC2_NV 0x8FED +#define GL_UNSIGNED_INT8_VEC3_NV 0x8FEE +#define GL_UNSIGNED_INT8_VEC4_NV 0x8FEF +#define GL_UNSIGNED_INT16_NV 0x8FF0 +#define GL_UNSIGNED_INT16_VEC2_NV 0x8FF1 +#define GL_UNSIGNED_INT16_VEC3_NV 0x8FF2 +#define GL_UNSIGNED_INT16_VEC4_NV 0x8FF3 +#define GL_UNSIGNED_INT64_VEC2_NV 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_NV 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_NV 0x8FF7 +#define GL_FLOAT16_NV 0x8FF8 +#define GL_FLOAT16_VEC2_NV 0x8FF9 +#define GL_FLOAT16_VEC3_NV 0x8FFA +#define GL_FLOAT16_VEC4_NV 0x8FFB +#define GL_PATCHES 0x000E +typedef void (GL_APIENTRYP PFNGLUNIFORM1I64NVPROC) (GLint location, GLint64EXT x); +typedef void (GL_APIENTRYP PFNGLUNIFORM2I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y); +typedef void (GL_APIENTRYP PFNGLUNIFORM3I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (GL_APIENTRYP PFNGLUNIFORM4I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (GL_APIENTRYP PFNGLUNIFORM1I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM1UI64NVPROC) (GLint location, GLuint64EXT x); +typedef void (GL_APIENTRYP PFNGLUNIFORM2UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (GL_APIENTRYP PFNGLUNIFORM3UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (GL_APIENTRYP PFNGLUNIFORM4UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (GL_APIENTRYP PFNGLUNIFORM1UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMI64VNVPROC) (GLuint program, GLint location, GLint64EXT *params); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1I64NVPROC) (GLuint program, GLint location, GLint64EXT x); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glUniform1i64NV (GLint location, GLint64EXT x); +GL_APICALL void GL_APIENTRY glUniform2i64NV (GLint location, GLint64EXT x, GLint64EXT y); +GL_APICALL void GL_APIENTRY glUniform3i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GL_APICALL void GL_APIENTRY glUniform4i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GL_APICALL void GL_APIENTRY glUniform1i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform2i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform3i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform4i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform1ui64NV (GLint location, GLuint64EXT x); +GL_APICALL void GL_APIENTRY glUniform2ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y); +GL_APICALL void GL_APIENTRY glUniform3ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GL_APICALL void GL_APIENTRY glUniform4ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GL_APICALL void GL_APIENTRY glUniform1ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform2ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform3ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform4ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glGetUniformi64vNV (GLuint program, GLint location, GLint64EXT *params); +GL_APICALL void GL_APIENTRY glProgramUniform1i64NV (GLuint program, GLint location, GLint64EXT x); +GL_APICALL void GL_APIENTRY glProgramUniform2i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +GL_APICALL void GL_APIENTRY glProgramUniform3i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GL_APICALL void GL_APIENTRY glProgramUniform4i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GL_APICALL void GL_APIENTRY glProgramUniform1i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform2i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform3i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform4i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform1ui64NV (GLuint program, GLint location, GLuint64EXT x); +GL_APICALL void GL_APIENTRY glProgramUniform2ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +GL_APICALL void GL_APIENTRY glProgramUniform3ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GL_APICALL void GL_APIENTRY glProgramUniform4ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GL_APICALL void GL_APIENTRY glProgramUniform1ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform2ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform3ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform4ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif +#endif /* GL_NV_gpu_shader5 */ + +#ifndef GL_NV_image_formats +#define GL_NV_image_formats 1 +#endif /* GL_NV_image_formats */ + +#ifndef GL_NV_instanced_arrays +#define GL_NV_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_NV 0x88FE +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORNVPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glVertexAttribDivisorNV (GLuint index, GLuint divisor); +#endif +#endif /* GL_NV_instanced_arrays */ + +#ifndef GL_NV_internalformat_sample_query +#define GL_NV_internalformat_sample_query 1 +#define GL_TEXTURE_2D_MULTISAMPLE 0x9100 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 +#define GL_MULTISAMPLES_NV 0x9371 +#define GL_SUPERSAMPLE_SCALE_X_NV 0x9372 +#define GL_SUPERSAMPLE_SCALE_Y_NV 0x9373 +#define GL_CONFORMANT_NV 0x9374 +typedef void (GL_APIENTRYP PFNGLGETINTERNALFORMATSAMPLEIVNVPROC) (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetInternalformatSampleivNV (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#endif +#endif /* GL_NV_internalformat_sample_query */ + +#ifndef GL_NV_memory_attachment +#define GL_NV_memory_attachment 1 +#define GL_ATTACHED_MEMORY_OBJECT_NV 0x95A4 +#define GL_ATTACHED_MEMORY_OFFSET_NV 0x95A5 +#define GL_MEMORY_ATTACHABLE_ALIGNMENT_NV 0x95A6 +#define GL_MEMORY_ATTACHABLE_SIZE_NV 0x95A7 +#define GL_MEMORY_ATTACHABLE_NV 0x95A8 +#define GL_DETACHED_MEMORY_INCARNATION_NV 0x95A9 +#define GL_DETACHED_TEXTURES_NV 0x95AA +#define GL_DETACHED_BUFFERS_NV 0x95AB +#define GL_MAX_DETACHED_TEXTURES_NV 0x95AC +#define GL_MAX_DETACHED_BUFFERS_NV 0x95AD +typedef void (GL_APIENTRYP PFNGLGETMEMORYOBJECTDETACHEDRESOURCESUIVNVPROC) (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +typedef void (GL_APIENTRYP PFNGLRESETMEMORYOBJECTPARAMETERNVPROC) (GLuint memory, GLenum pname); +typedef void (GL_APIENTRYP PFNGLTEXATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLBUFFERATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTUREATTACHMEMORYNVPROC) (GLuint texture, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERATTACHMEMORYNVPROC) (GLuint buffer, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetMemoryObjectDetachedResourcesuivNV (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +GL_APICALL void GL_APIENTRY glResetMemoryObjectParameterNV (GLuint memory, GLenum pname); +GL_APICALL void GL_APIENTRY glTexAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glBufferAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureAttachMemoryNV (GLuint texture, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glNamedBufferAttachMemoryNV (GLuint buffer, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_NV_memory_attachment */ + +#ifndef GL_NV_memory_object_sparse +#define GL_NV_memory_object_sparse 1 +typedef void (GL_APIENTRYP PFNGLBUFFERPAGECOMMITMENTMEMNVPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLTEXPAGECOMMITMENTMEMNVPROC) (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTMEMNVPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLTEXTUREPAGECOMMITMENTMEMNVPROC) (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferPageCommitmentMemNV (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GL_APICALL void GL_APIENTRY glTexPageCommitmentMemNV (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +GL_APICALL void GL_APIENTRY glNamedBufferPageCommitmentMemNV (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GL_APICALL void GL_APIENTRY glTexturePageCommitmentMemNV (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#endif +#endif /* GL_NV_memory_object_sparse */ + +#ifndef GL_NV_mesh_shader +#define GL_NV_mesh_shader 1 +#define GL_MESH_SHADER_NV 0x9559 +#define GL_TASK_SHADER_NV 0x955A +#define GL_MAX_MESH_UNIFORM_BLOCKS_NV 0x8E60 +#define GL_MAX_MESH_TEXTURE_IMAGE_UNITS_NV 0x8E61 +#define GL_MAX_MESH_IMAGE_UNIFORMS_NV 0x8E62 +#define GL_MAX_MESH_UNIFORM_COMPONENTS_NV 0x8E63 +#define GL_MAX_MESH_ATOMIC_COUNTER_BUFFERS_NV 0x8E64 +#define GL_MAX_MESH_ATOMIC_COUNTERS_NV 0x8E65 +#define GL_MAX_MESH_SHADER_STORAGE_BLOCKS_NV 0x8E66 +#define GL_MAX_COMBINED_MESH_UNIFORM_COMPONENTS_NV 0x8E67 +#define GL_MAX_TASK_UNIFORM_BLOCKS_NV 0x8E68 +#define GL_MAX_TASK_TEXTURE_IMAGE_UNITS_NV 0x8E69 +#define GL_MAX_TASK_IMAGE_UNIFORMS_NV 0x8E6A +#define GL_MAX_TASK_UNIFORM_COMPONENTS_NV 0x8E6B +#define GL_MAX_TASK_ATOMIC_COUNTER_BUFFERS_NV 0x8E6C +#define GL_MAX_TASK_ATOMIC_COUNTERS_NV 0x8E6D +#define GL_MAX_TASK_SHADER_STORAGE_BLOCKS_NV 0x8E6E +#define GL_MAX_COMBINED_TASK_UNIFORM_COMPONENTS_NV 0x8E6F +#define GL_MAX_MESH_WORK_GROUP_INVOCATIONS_NV 0x95A2 +#define GL_MAX_TASK_WORK_GROUP_INVOCATIONS_NV 0x95A3 +#define GL_MAX_MESH_TOTAL_MEMORY_SIZE_NV 0x9536 +#define GL_MAX_TASK_TOTAL_MEMORY_SIZE_NV 0x9537 +#define GL_MAX_MESH_OUTPUT_VERTICES_NV 0x9538 +#define GL_MAX_MESH_OUTPUT_PRIMITIVES_NV 0x9539 +#define GL_MAX_TASK_OUTPUT_COUNT_NV 0x953A +#define GL_MAX_DRAW_MESH_TASKS_COUNT_NV 0x953D +#define GL_MAX_MESH_VIEWS_NV 0x9557 +#define GL_MESH_OUTPUT_PER_VERTEX_GRANULARITY_NV 0x92DF +#define GL_MESH_OUTPUT_PER_PRIMITIVE_GRANULARITY_NV 0x9543 +#define GL_MAX_MESH_WORK_GROUP_SIZE_NV 0x953B +#define GL_MAX_TASK_WORK_GROUP_SIZE_NV 0x953C +#define GL_MESH_WORK_GROUP_SIZE_NV 0x953E +#define GL_TASK_WORK_GROUP_SIZE_NV 0x953F +#define GL_MESH_VERTICES_OUT_NV 0x9579 +#define GL_MESH_PRIMITIVES_OUT_NV 0x957A +#define GL_MESH_OUTPUT_TYPE_NV 0x957B +#define GL_UNIFORM_BLOCK_REFERENCED_BY_MESH_SHADER_NV 0x959C +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TASK_SHADER_NV 0x959D +#define GL_REFERENCED_BY_MESH_SHADER_NV 0x95A0 +#define GL_REFERENCED_BY_TASK_SHADER_NV 0x95A1 +#define GL_MESH_SHADER_BIT_NV 0x00000040 +#define GL_TASK_SHADER_BIT_NV 0x00000080 +#define GL_MESH_SUBROUTINE_NV 0x957C +#define GL_TASK_SUBROUTINE_NV 0x957D +#define GL_MESH_SUBROUTINE_UNIFORM_NV 0x957E +#define GL_TASK_SUBROUTINE_UNIFORM_NV 0x957F +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_MESH_SHADER_NV 0x959E +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TASK_SHADER_NV 0x959F +typedef void (GL_APIENTRYP PFNGLDRAWMESHTASKSNVPROC) (GLuint first, GLuint count); +typedef void (GL_APIENTRYP PFNGLDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect, GLsizei drawcount, GLsizei stride); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTCOUNTNVPROC) (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawMeshTasksNV (GLuint first, GLuint count); +GL_APICALL void GL_APIENTRY glDrawMeshTasksIndirectNV (GLintptr indirect); +GL_APICALL void GL_APIENTRY glMultiDrawMeshTasksIndirectNV (GLintptr indirect, GLsizei drawcount, GLsizei stride); +GL_APICALL void GL_APIENTRY glMultiDrawMeshTasksIndirectCountNV (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_NV_mesh_shader */ + +#ifndef GL_NV_non_square_matrices +#define GL_NV_non_square_matrices 1 +#define GL_FLOAT_MAT2x3_NV 0x8B65 +#define GL_FLOAT_MAT2x4_NV 0x8B66 +#define GL_FLOAT_MAT3x2_NV 0x8B67 +#define GL_FLOAT_MAT3x4_NV 0x8B68 +#define GL_FLOAT_MAT4x2_NV 0x8B69 +#define GL_FLOAT_MAT4x3_NV 0x8B6A +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2X3FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3X2FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2X4FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4X2FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3X4FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4X3FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glUniformMatrix2x3fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3x2fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix2x4fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4x2fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3x4fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4x3fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_NV_non_square_matrices */ + +#ifndef GL_NV_path_rendering +#define GL_NV_path_rendering 1 +typedef double GLdouble; +#define GL_PATH_FORMAT_SVG_NV 0x9070 +#define GL_PATH_FORMAT_PS_NV 0x9071 +#define GL_STANDARD_FONT_NAME_NV 0x9072 +#define GL_SYSTEM_FONT_NAME_NV 0x9073 +#define GL_FILE_NAME_NV 0x9074 +#define GL_PATH_STROKE_WIDTH_NV 0x9075 +#define GL_PATH_END_CAPS_NV 0x9076 +#define GL_PATH_INITIAL_END_CAP_NV 0x9077 +#define GL_PATH_TERMINAL_END_CAP_NV 0x9078 +#define GL_PATH_JOIN_STYLE_NV 0x9079 +#define GL_PATH_MITER_LIMIT_NV 0x907A +#define GL_PATH_DASH_CAPS_NV 0x907B +#define GL_PATH_INITIAL_DASH_CAP_NV 0x907C +#define GL_PATH_TERMINAL_DASH_CAP_NV 0x907D +#define GL_PATH_DASH_OFFSET_NV 0x907E +#define GL_PATH_CLIENT_LENGTH_NV 0x907F +#define GL_PATH_FILL_MODE_NV 0x9080 +#define GL_PATH_FILL_MASK_NV 0x9081 +#define GL_PATH_FILL_COVER_MODE_NV 0x9082 +#define GL_PATH_STROKE_COVER_MODE_NV 0x9083 +#define GL_PATH_STROKE_MASK_NV 0x9084 +#define GL_COUNT_UP_NV 0x9088 +#define GL_COUNT_DOWN_NV 0x9089 +#define GL_PATH_OBJECT_BOUNDING_BOX_NV 0x908A +#define GL_CONVEX_HULL_NV 0x908B +#define GL_BOUNDING_BOX_NV 0x908D +#define GL_TRANSLATE_X_NV 0x908E +#define GL_TRANSLATE_Y_NV 0x908F +#define GL_TRANSLATE_2D_NV 0x9090 +#define GL_TRANSLATE_3D_NV 0x9091 +#define GL_AFFINE_2D_NV 0x9092 +#define GL_AFFINE_3D_NV 0x9094 +#define GL_TRANSPOSE_AFFINE_2D_NV 0x9096 +#define GL_TRANSPOSE_AFFINE_3D_NV 0x9098 +#define GL_UTF8_NV 0x909A +#define GL_UTF16_NV 0x909B +#define GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV 0x909C +#define GL_PATH_COMMAND_COUNT_NV 0x909D +#define GL_PATH_COORD_COUNT_NV 0x909E +#define GL_PATH_DASH_ARRAY_COUNT_NV 0x909F +#define GL_PATH_COMPUTED_LENGTH_NV 0x90A0 +#define GL_PATH_FILL_BOUNDING_BOX_NV 0x90A1 +#define GL_PATH_STROKE_BOUNDING_BOX_NV 0x90A2 +#define GL_SQUARE_NV 0x90A3 +#define GL_ROUND_NV 0x90A4 +#define GL_TRIANGULAR_NV 0x90A5 +#define GL_BEVEL_NV 0x90A6 +#define GL_MITER_REVERT_NV 0x90A7 +#define GL_MITER_TRUNCATE_NV 0x90A8 +#define GL_SKIP_MISSING_GLYPH_NV 0x90A9 +#define GL_USE_MISSING_GLYPH_NV 0x90AA +#define GL_PATH_ERROR_POSITION_NV 0x90AB +#define GL_ACCUM_ADJACENT_PAIRS_NV 0x90AD +#define GL_ADJACENT_PAIRS_NV 0x90AE +#define GL_FIRST_TO_REST_NV 0x90AF +#define GL_PATH_GEN_MODE_NV 0x90B0 +#define GL_PATH_GEN_COEFF_NV 0x90B1 +#define GL_PATH_GEN_COMPONENTS_NV 0x90B3 +#define GL_PATH_STENCIL_FUNC_NV 0x90B7 +#define GL_PATH_STENCIL_REF_NV 0x90B8 +#define GL_PATH_STENCIL_VALUE_MASK_NV 0x90B9 +#define GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV 0x90BD +#define GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV 0x90BE +#define GL_PATH_COVER_DEPTH_FUNC_NV 0x90BF +#define GL_PATH_DASH_OFFSET_RESET_NV 0x90B4 +#define GL_MOVE_TO_RESETS_NV 0x90B5 +#define GL_MOVE_TO_CONTINUES_NV 0x90B6 +#define GL_CLOSE_PATH_NV 0x00 +#define GL_MOVE_TO_NV 0x02 +#define GL_RELATIVE_MOVE_TO_NV 0x03 +#define GL_LINE_TO_NV 0x04 +#define GL_RELATIVE_LINE_TO_NV 0x05 +#define GL_HORIZONTAL_LINE_TO_NV 0x06 +#define GL_RELATIVE_HORIZONTAL_LINE_TO_NV 0x07 +#define GL_VERTICAL_LINE_TO_NV 0x08 +#define GL_RELATIVE_VERTICAL_LINE_TO_NV 0x09 +#define GL_QUADRATIC_CURVE_TO_NV 0x0A +#define GL_RELATIVE_QUADRATIC_CURVE_TO_NV 0x0B +#define GL_CUBIC_CURVE_TO_NV 0x0C +#define GL_RELATIVE_CUBIC_CURVE_TO_NV 0x0D +#define GL_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0E +#define GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0F +#define GL_SMOOTH_CUBIC_CURVE_TO_NV 0x10 +#define GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV 0x11 +#define GL_SMALL_CCW_ARC_TO_NV 0x12 +#define GL_RELATIVE_SMALL_CCW_ARC_TO_NV 0x13 +#define GL_SMALL_CW_ARC_TO_NV 0x14 +#define GL_RELATIVE_SMALL_CW_ARC_TO_NV 0x15 +#define GL_LARGE_CCW_ARC_TO_NV 0x16 +#define GL_RELATIVE_LARGE_CCW_ARC_TO_NV 0x17 +#define GL_LARGE_CW_ARC_TO_NV 0x18 +#define GL_RELATIVE_LARGE_CW_ARC_TO_NV 0x19 +#define GL_RESTART_PATH_NV 0xF0 +#define GL_DUP_FIRST_CUBIC_CURVE_TO_NV 0xF2 +#define GL_DUP_LAST_CUBIC_CURVE_TO_NV 0xF4 +#define GL_RECT_NV 0xF6 +#define GL_CIRCULAR_CCW_ARC_TO_NV 0xF8 +#define GL_CIRCULAR_CW_ARC_TO_NV 0xFA +#define GL_CIRCULAR_TANGENT_ARC_TO_NV 0xFC +#define GL_ARC_TO_NV 0xFE +#define GL_RELATIVE_ARC_TO_NV 0xFF +#define GL_BOLD_BIT_NV 0x01 +#define GL_ITALIC_BIT_NV 0x02 +#define GL_GLYPH_WIDTH_BIT_NV 0x01 +#define GL_GLYPH_HEIGHT_BIT_NV 0x02 +#define GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV 0x04 +#define GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV 0x08 +#define GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV 0x10 +#define GL_GLYPH_VERTICAL_BEARING_X_BIT_NV 0x20 +#define GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV 0x40 +#define GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV 0x80 +#define GL_GLYPH_HAS_KERNING_BIT_NV 0x100 +#define GL_FONT_X_MIN_BOUNDS_BIT_NV 0x00010000 +#define GL_FONT_Y_MIN_BOUNDS_BIT_NV 0x00020000 +#define GL_FONT_X_MAX_BOUNDS_BIT_NV 0x00040000 +#define GL_FONT_Y_MAX_BOUNDS_BIT_NV 0x00080000 +#define GL_FONT_UNITS_PER_EM_BIT_NV 0x00100000 +#define GL_FONT_ASCENDER_BIT_NV 0x00200000 +#define GL_FONT_DESCENDER_BIT_NV 0x00400000 +#define GL_FONT_HEIGHT_BIT_NV 0x00800000 +#define GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV 0x01000000 +#define GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV 0x02000000 +#define GL_FONT_UNDERLINE_POSITION_BIT_NV 0x04000000 +#define GL_FONT_UNDERLINE_THICKNESS_BIT_NV 0x08000000 +#define GL_FONT_HAS_KERNING_BIT_NV 0x10000000 +#define GL_ROUNDED_RECT_NV 0xE8 +#define GL_RELATIVE_ROUNDED_RECT_NV 0xE9 +#define GL_ROUNDED_RECT2_NV 0xEA +#define GL_RELATIVE_ROUNDED_RECT2_NV 0xEB +#define GL_ROUNDED_RECT4_NV 0xEC +#define GL_RELATIVE_ROUNDED_RECT4_NV 0xED +#define GL_ROUNDED_RECT8_NV 0xEE +#define GL_RELATIVE_ROUNDED_RECT8_NV 0xEF +#define GL_RELATIVE_RECT_NV 0xF7 +#define GL_FONT_GLYPHS_AVAILABLE_NV 0x9368 +#define GL_FONT_TARGET_UNAVAILABLE_NV 0x9369 +#define GL_FONT_UNAVAILABLE_NV 0x936A +#define GL_FONT_UNINTELLIGIBLE_NV 0x936B +#define GL_CONIC_CURVE_TO_NV 0x1A +#define GL_RELATIVE_CONIC_CURVE_TO_NV 0x1B +#define GL_FONT_NUM_GLYPH_INDICES_BIT_NV 0x20000000 +#define GL_STANDARD_FONT_FORMAT_NV 0x936C +#define GL_PATH_PROJECTION_NV 0x1701 +#define GL_PATH_MODELVIEW_NV 0x1700 +#define GL_PATH_MODELVIEW_STACK_DEPTH_NV 0x0BA3 +#define GL_PATH_MODELVIEW_MATRIX_NV 0x0BA6 +#define GL_PATH_MAX_MODELVIEW_STACK_DEPTH_NV 0x0D36 +#define GL_PATH_TRANSPOSE_MODELVIEW_MATRIX_NV 0x84E3 +#define GL_PATH_PROJECTION_STACK_DEPTH_NV 0x0BA4 +#define GL_PATH_PROJECTION_MATRIX_NV 0x0BA7 +#define GL_PATH_MAX_PROJECTION_STACK_DEPTH_NV 0x0D38 +#define GL_PATH_TRANSPOSE_PROJECTION_MATRIX_NV 0x84E4 +#define GL_FRAGMENT_INPUT_NV 0x936D +typedef GLuint (GL_APIENTRYP PFNGLGENPATHSNVPROC) (GLsizei range); +typedef void (GL_APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); +typedef GLboolean (GL_APIENTRYP PFNGLISPATHNVPROC) (GLuint path); +typedef void (GL_APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); +typedef void (GL_APIENTRYP PFNGLPATHGLYPHSNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLPATHGLYPHRANGENVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLWEIGHTPATHSNVPROC) (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +typedef void (GL_APIENTRYP PFNGLCOPYPATHNVPROC) (GLuint resultPath, GLuint srcPath); +typedef void (GL_APIENTRYP PFNGLINTERPOLATEPATHSNVPROC) (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +typedef void (GL_APIENTRYP PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERINVPROC) (GLuint path, GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERFNVPROC) (GLuint path, GLenum pname, GLfloat value); +typedef void (GL_APIENTRYP PFNGLPATHDASHARRAYNVPROC) (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +typedef void (GL_APIENTRYP PFNGLPATHSTENCILFUNCNVPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLPATHSTENCILDEPTHOFFSETNVPROC) (GLfloat factor, GLfloat units); +typedef void (GL_APIENTRYP PFNGLSTENCILFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLSTENCILSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLPATHCOVERDEPTHFUNCNVPROC) (GLenum func); +typedef void (GL_APIENTRYP PFNGLCOVERFILLPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLCOVERSTROKEPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLGETPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, GLint *value); +typedef void (GL_APIENTRYP PFNGLGETPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, GLfloat *value); +typedef void (GL_APIENTRYP PFNGLGETPATHCOMMANDSNVPROC) (GLuint path, GLubyte *commands); +typedef void (GL_APIENTRYP PFNGLGETPATHCOORDSNVPROC) (GLuint path, GLfloat *coords); +typedef void (GL_APIENTRYP PFNGLGETPATHDASHARRAYNVPROC) (GLuint path, GLfloat *dashArray); +typedef void (GL_APIENTRYP PFNGLGETPATHMETRICSNVPROC) (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +typedef void (GL_APIENTRYP PFNGLGETPATHMETRICRANGENVPROC) (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +typedef void (GL_APIENTRYP PFNGLGETPATHSPACINGNVPROC) (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +typedef GLboolean (GL_APIENTRYP PFNGLISPOINTINFILLPATHNVPROC) (GLuint path, GLuint mask, GLfloat x, GLfloat y); +typedef GLboolean (GL_APIENTRYP PFNGLISPOINTINSTROKEPATHNVPROC) (GLuint path, GLfloat x, GLfloat y); +typedef GLfloat (GL_APIENTRYP PFNGLGETPATHLENGTHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments); +typedef GLboolean (GL_APIENTRYP PFNGLPOINTALONGPATHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +typedef void (GL_APIENTRYP PFNGLMATRIXLOAD3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOAD3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULT3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULT3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef GLenum (GL_APIENTRYP PFNGLPATHGLYPHINDEXRANGENVPROC) (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +typedef GLenum (GL_APIENTRYP PFNGLPATHGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef GLenum (GL_APIENTRYP PFNGLPATHMEMORYGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLPROGRAMPATHFRAGMENTINPUTGENNVPROC) (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMRESOURCEFVNVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLMATRIXFRUSTUMEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADIDENTITYEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXORTHOEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (GL_APIENTRYP PFNGLMATRIXPOPEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXPUSHEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXROTATEFEXTPROC) (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXROTATEDEXTPROC) (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +typedef void (GL_APIENTRYP PFNGLMATRIXSCALEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXSCALEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (GL_APIENTRYP PFNGLMATRIXTRANSLATEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXTRANSLATEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint GL_APIENTRY glGenPathsNV (GLsizei range); +GL_APICALL void GL_APIENTRY glDeletePathsNV (GLuint path, GLsizei range); +GL_APICALL GLboolean GL_APIENTRY glIsPathNV (GLuint path); +GL_APICALL void GL_APIENTRY glPathCommandsNV (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathCoordsNV (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathSubCommandsNV (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathSubCoordsNV (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathStringNV (GLuint path, GLenum format, GLsizei length, const void *pathString); +GL_APICALL void GL_APIENTRY glPathGlyphsNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glPathGlyphRangeNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glWeightPathsNV (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +GL_APICALL void GL_APIENTRY glCopyPathNV (GLuint resultPath, GLuint srcPath); +GL_APICALL void GL_APIENTRY glInterpolatePathsNV (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +GL_APICALL void GL_APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glPathParameterivNV (GLuint path, GLenum pname, const GLint *value); +GL_APICALL void GL_APIENTRY glPathParameteriNV (GLuint path, GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glPathParameterfvNV (GLuint path, GLenum pname, const GLfloat *value); +GL_APICALL void GL_APIENTRY glPathParameterfNV (GLuint path, GLenum pname, GLfloat value); +GL_APICALL void GL_APIENTRY glPathDashArrayNV (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +GL_APICALL void GL_APIENTRY glPathStencilFuncNV (GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glPathStencilDepthOffsetNV (GLfloat factor, GLfloat units); +GL_APICALL void GL_APIENTRY glStencilFillPathNV (GLuint path, GLenum fillMode, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilStrokePathNV (GLuint path, GLint reference, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glStencilStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glPathCoverDepthFuncNV (GLenum func); +GL_APICALL void GL_APIENTRY glCoverFillPathNV (GLuint path, GLenum coverMode); +GL_APICALL void GL_APIENTRY glCoverStrokePathNV (GLuint path, GLenum coverMode); +GL_APICALL void GL_APIENTRY glCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glGetPathParameterivNV (GLuint path, GLenum pname, GLint *value); +GL_APICALL void GL_APIENTRY glGetPathParameterfvNV (GLuint path, GLenum pname, GLfloat *value); +GL_APICALL void GL_APIENTRY glGetPathCommandsNV (GLuint path, GLubyte *commands); +GL_APICALL void GL_APIENTRY glGetPathCoordsNV (GLuint path, GLfloat *coords); +GL_APICALL void GL_APIENTRY glGetPathDashArrayNV (GLuint path, GLfloat *dashArray); +GL_APICALL void GL_APIENTRY glGetPathMetricsNV (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +GL_APICALL void GL_APIENTRY glGetPathMetricRangeNV (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +GL_APICALL void GL_APIENTRY glGetPathSpacingNV (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +GL_APICALL GLboolean GL_APIENTRY glIsPointInFillPathNV (GLuint path, GLuint mask, GLfloat x, GLfloat y); +GL_APICALL GLboolean GL_APIENTRY glIsPointInStrokePathNV (GLuint path, GLfloat x, GLfloat y); +GL_APICALL GLfloat GL_APIENTRY glGetPathLengthNV (GLuint path, GLsizei startSegment, GLsizei numSegments); +GL_APICALL GLboolean GL_APIENTRY glPointAlongPathNV (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +GL_APICALL void GL_APIENTRY glMatrixLoad3x2fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoad3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoadTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMult3x2fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMult3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathNV (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathNV (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL GLenum GL_APIENTRY glPathGlyphIndexRangeNV (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +GL_APICALL GLenum GL_APIENTRY glPathGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL GLenum GL_APIENTRY glPathMemoryGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glProgramPathFragmentInputGenNV (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +GL_APICALL void GL_APIENTRY glGetProgramResourcefvNV (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +GL_APICALL void GL_APIENTRY glMatrixFrustumEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GL_APICALL void GL_APIENTRY glMatrixLoadIdentityEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixLoadTransposefEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoadTransposedEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixLoadfEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoaddEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixMultTransposefEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultTransposedEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixMultfEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultdEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixOrthoEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GL_APICALL void GL_APIENTRY glMatrixPopEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixPushEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixRotatefEXT (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixRotatedEXT (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +GL_APICALL void GL_APIENTRY glMatrixScalefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixScaledEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GL_APICALL void GL_APIENTRY glMatrixTranslatefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixTranslatedEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +#endif +#endif /* GL_NV_path_rendering */ + +#ifndef GL_NV_path_rendering_shared_edge +#define GL_NV_path_rendering_shared_edge 1 +#define GL_SHARED_EDGE_NV 0xC0 +#endif /* GL_NV_path_rendering_shared_edge */ + +#ifndef GL_NV_pixel_buffer_object +#define GL_NV_pixel_buffer_object 1 +#define GL_PIXEL_PACK_BUFFER_NV 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_NV 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_NV 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_NV 0x88EF +#endif /* GL_NV_pixel_buffer_object */ + +#ifndef GL_NV_polygon_mode +#define GL_NV_polygon_mode 1 +#define GL_POLYGON_MODE_NV 0x0B40 +#define GL_POLYGON_OFFSET_POINT_NV 0x2A01 +#define GL_POLYGON_OFFSET_LINE_NV 0x2A02 +#define GL_POINT_NV 0x1B00 +#define GL_LINE_NV 0x1B01 +#define GL_FILL_NV 0x1B02 +typedef void (GL_APIENTRYP PFNGLPOLYGONMODENVPROC) (GLenum face, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPolygonModeNV (GLenum face, GLenum mode); +#endif +#endif /* GL_NV_polygon_mode */ + +#ifndef GL_NV_primitive_shading_rate +#define GL_NV_primitive_shading_rate 1 +#define GL_SHADING_RATE_IMAGE_PER_PRIMITIVE_NV 0x95B1 +#define GL_SHADING_RATE_IMAGE_PALETTE_COUNT_NV 0x95B2 +#endif /* GL_NV_primitive_shading_rate */ + +#ifndef GL_NV_read_buffer +#define GL_NV_read_buffer 1 +#define GL_READ_BUFFER_NV 0x0C02 +typedef void (GL_APIENTRYP PFNGLREADBUFFERNVPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glReadBufferNV (GLenum mode); +#endif +#endif /* GL_NV_read_buffer */ + +#ifndef GL_NV_read_buffer_front +#define GL_NV_read_buffer_front 1 +#endif /* GL_NV_read_buffer_front */ + +#ifndef GL_NV_read_depth +#define GL_NV_read_depth 1 +#endif /* GL_NV_read_depth */ + +#ifndef GL_NV_read_depth_stencil +#define GL_NV_read_depth_stencil 1 +#endif /* GL_NV_read_depth_stencil */ + +#ifndef GL_NV_read_stencil +#define GL_NV_read_stencil 1 +#endif /* GL_NV_read_stencil */ + +#ifndef GL_NV_representative_fragment_test +#define GL_NV_representative_fragment_test 1 +#define GL_REPRESENTATIVE_FRAGMENT_TEST_NV 0x937F +#endif /* GL_NV_representative_fragment_test */ + +#ifndef GL_NV_sRGB_formats +#define GL_NV_sRGB_formats 1 +#define GL_SLUMINANCE_NV 0x8C46 +#define GL_SLUMINANCE_ALPHA_NV 0x8C44 +#define GL_SRGB8_NV 0x8C41 +#define GL_SLUMINANCE8_NV 0x8C47 +#define GL_SLUMINANCE8_ALPHA8_NV 0x8C45 +#define GL_COMPRESSED_SRGB_S3TC_DXT1_NV 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV 0x8C4F +#define GL_ETC1_SRGB8_NV 0x88EE +#endif /* GL_NV_sRGB_formats */ + +#ifndef GL_NV_sample_locations +#define GL_NV_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_NV 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_NV 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_NV 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_NV 0x9340 +#define GL_SAMPLE_LOCATION_NV 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_NV 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_NV 0x9343 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLRESOLVEDEPTHVALUESNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferSampleLocationsfvNV (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glNamedFramebufferSampleLocationsfvNV (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glResolveDepthValuesNV (void); +#endif +#endif /* GL_NV_sample_locations */ + +#ifndef GL_NV_sample_mask_override_coverage +#define GL_NV_sample_mask_override_coverage 1 +#endif /* GL_NV_sample_mask_override_coverage */ + +#ifndef GL_NV_scissor_exclusive +#define GL_NV_scissor_exclusive 1 +#define GL_SCISSOR_TEST_EXCLUSIVE_NV 0x9555 +#define GL_SCISSOR_BOX_EXCLUSIVE_NV 0x9556 +typedef void (GL_APIENTRYP PFNGLSCISSOREXCLUSIVENVPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSOREXCLUSIVEARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glScissorExclusiveNV (GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorExclusiveArrayvNV (GLuint first, GLsizei count, const GLint *v); +#endif +#endif /* GL_NV_scissor_exclusive */ + +#ifndef GL_NV_shader_atomic_fp16_vector +#define GL_NV_shader_atomic_fp16_vector 1 +#endif /* GL_NV_shader_atomic_fp16_vector */ + +#ifndef GL_NV_shader_noperspective_interpolation +#define GL_NV_shader_noperspective_interpolation 1 +#endif /* GL_NV_shader_noperspective_interpolation */ + +#ifndef GL_NV_shader_subgroup_partitioned +#define GL_NV_shader_subgroup_partitioned 1 +#define GL_SUBGROUP_FEATURE_PARTITIONED_BIT_NV 0x00000100 +#endif /* GL_NV_shader_subgroup_partitioned */ + +#ifndef GL_NV_shader_texture_footprint +#define GL_NV_shader_texture_footprint 1 +#endif /* GL_NV_shader_texture_footprint */ + +#ifndef GL_NV_shading_rate_image +#define GL_NV_shading_rate_image 1 +#define GL_SHADING_RATE_IMAGE_NV 0x9563 +#define GL_SHADING_RATE_NO_INVOCATIONS_NV 0x9564 +#define GL_SHADING_RATE_1_INVOCATION_PER_PIXEL_NV 0x9565 +#define GL_SHADING_RATE_1_INVOCATION_PER_1X2_PIXELS_NV 0x9566 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X1_PIXELS_NV 0x9567 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X2_PIXELS_NV 0x9568 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X4_PIXELS_NV 0x9569 +#define GL_SHADING_RATE_1_INVOCATION_PER_4X2_PIXELS_NV 0x956A +#define GL_SHADING_RATE_1_INVOCATION_PER_4X4_PIXELS_NV 0x956B +#define GL_SHADING_RATE_2_INVOCATIONS_PER_PIXEL_NV 0x956C +#define GL_SHADING_RATE_4_INVOCATIONS_PER_PIXEL_NV 0x956D +#define GL_SHADING_RATE_8_INVOCATIONS_PER_PIXEL_NV 0x956E +#define GL_SHADING_RATE_16_INVOCATIONS_PER_PIXEL_NV 0x956F +#define GL_SHADING_RATE_IMAGE_BINDING_NV 0x955B +#define GL_SHADING_RATE_IMAGE_TEXEL_WIDTH_NV 0x955C +#define GL_SHADING_RATE_IMAGE_TEXEL_HEIGHT_NV 0x955D +#define GL_SHADING_RATE_IMAGE_PALETTE_SIZE_NV 0x955E +#define GL_MAX_COARSE_FRAGMENT_SAMPLES_NV 0x955F +#define GL_SHADING_RATE_SAMPLE_ORDER_DEFAULT_NV 0x95AE +#define GL_SHADING_RATE_SAMPLE_ORDER_PIXEL_MAJOR_NV 0x95AF +#define GL_SHADING_RATE_SAMPLE_ORDER_SAMPLE_MAJOR_NV 0x95B0 +typedef void (GL_APIENTRYP PFNGLBINDSHADINGRATEIMAGENVPROC) (GLuint texture); +typedef void (GL_APIENTRYP PFNGLGETSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint entry, GLenum *rate); +typedef void (GL_APIENTRYP PFNGLGETSHADINGRATESAMPLELOCATIONIVNVPROC) (GLenum rate, GLuint samples, GLuint index, GLint *location); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEIMAGEBARRIERNVPROC) (GLboolean synchronize); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +typedef void (GL_APIENTRYP PFNGLSHADINGRATESAMPLEORDERNVPROC) (GLenum order); +typedef void (GL_APIENTRYP PFNGLSHADINGRATESAMPLEORDERCUSTOMNVPROC) (GLenum rate, GLuint samples, const GLint *locations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindShadingRateImageNV (GLuint texture); +GL_APICALL void GL_APIENTRY glGetShadingRateImagePaletteNV (GLuint viewport, GLuint entry, GLenum *rate); +GL_APICALL void GL_APIENTRY glGetShadingRateSampleLocationivNV (GLenum rate, GLuint samples, GLuint index, GLint *location); +GL_APICALL void GL_APIENTRY glShadingRateImageBarrierNV (GLboolean synchronize); +GL_APICALL void GL_APIENTRY glShadingRateImagePaletteNV (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +GL_APICALL void GL_APIENTRY glShadingRateSampleOrderNV (GLenum order); +GL_APICALL void GL_APIENTRY glShadingRateSampleOrderCustomNV (GLenum rate, GLuint samples, const GLint *locations); +#endif +#endif /* GL_NV_shading_rate_image */ + +#ifndef GL_NV_shadow_samplers_array +#define GL_NV_shadow_samplers_array 1 +#define GL_SAMPLER_2D_ARRAY_SHADOW_NV 0x8DC4 +#endif /* GL_NV_shadow_samplers_array */ + +#ifndef GL_NV_shadow_samplers_cube +#define GL_NV_shadow_samplers_cube 1 +#define GL_SAMPLER_CUBE_SHADOW_NV 0x8DC5 +#endif /* GL_NV_shadow_samplers_cube */ + +#ifndef GL_NV_stereo_view_rendering +#define GL_NV_stereo_view_rendering 1 +#endif /* GL_NV_stereo_view_rendering */ + +#ifndef GL_NV_texture_border_clamp +#define GL_NV_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_NV 0x1004 +#define GL_CLAMP_TO_BORDER_NV 0x812D +#endif /* GL_NV_texture_border_clamp */ + +#ifndef GL_NV_texture_compression_s3tc_update +#define GL_NV_texture_compression_s3tc_update 1 +#endif /* GL_NV_texture_compression_s3tc_update */ + +#ifndef GL_NV_texture_npot_2D_mipmap +#define GL_NV_texture_npot_2D_mipmap 1 +#endif /* GL_NV_texture_npot_2D_mipmap */ + +#ifndef GL_NV_timeline_semaphore +#define GL_NV_timeline_semaphore 1 +#define GL_TIMELINE_SEMAPHORE_VALUE_NV 0x9595 +#define GL_SEMAPHORE_TYPE_NV 0x95B3 +#define GL_SEMAPHORE_TYPE_BINARY_NV 0x95B4 +#define GL_SEMAPHORE_TYPE_TIMELINE_NV 0x95B5 +#define GL_MAX_TIMELINE_SEMAPHORE_VALUE_DIFFERENCE_NV 0x95B6 +typedef void (GL_APIENTRYP PFNGLCREATESEMAPHORESNVPROC) (GLsizei n, GLuint *semaphores); +typedef void (GL_APIENTRYP PFNGLSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCreateSemaphoresNV (GLsizei n, GLuint *semaphores); +GL_APICALL void GL_APIENTRY glSemaphoreParameterivNV (GLuint semaphore, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glGetSemaphoreParameterivNV (GLuint semaphore, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_timeline_semaphore */ + +#ifndef GL_NV_viewport_array +#define GL_NV_viewport_array 1 +#define GL_MAX_VIEWPORTS_NV 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS_NV 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE_NV 0x825D +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX_NV 0x825F +typedef void (GL_APIENTRYP PFNGLVIEWPORTARRAYVNVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFVNVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLSCISSORARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDNVPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDVNVPROC) (GLuint index, const GLint *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEARRAYFVNVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEINDEXEDFNVPROC) (GLuint index, GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLGETFLOATI_VNVPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (GL_APIENTRYP PFNGLENABLEINVPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEINVPROC) (GLenum target, GLuint index); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDINVPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportArrayvNV (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glViewportIndexedfNV (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GL_APICALL void GL_APIENTRY glViewportIndexedfvNV (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glScissorArrayvNV (GLuint first, GLsizei count, const GLint *v); +GL_APICALL void GL_APIENTRY glScissorIndexedNV (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorIndexedvNV (GLuint index, const GLint *v); +GL_APICALL void GL_APIENTRY glDepthRangeArrayfvNV (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glDepthRangeIndexedfNV (GLuint index, GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glGetFloati_vNV (GLenum target, GLuint index, GLfloat *data); +GL_APICALL void GL_APIENTRY glEnableiNV (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiNV (GLenum target, GLuint index); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediNV (GLenum target, GLuint index); +#endif +#endif /* GL_NV_viewport_array */ + +#ifndef GL_NV_viewport_array2 +#define GL_NV_viewport_array2 1 +#endif /* GL_NV_viewport_array2 */ + +#ifndef GL_NV_viewport_swizzle +#define GL_NV_viewport_swizzle 1 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_X_NV 0x9350 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_X_NV 0x9351 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Y_NV 0x9352 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Y_NV 0x9353 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Z_NV 0x9354 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Z_NV 0x9355 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_W_NV 0x9356 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_W_NV 0x9357 +#define GL_VIEWPORT_SWIZZLE_X_NV 0x9358 +#define GL_VIEWPORT_SWIZZLE_Y_NV 0x9359 +#define GL_VIEWPORT_SWIZZLE_Z_NV 0x935A +#define GL_VIEWPORT_SWIZZLE_W_NV 0x935B +typedef void (GL_APIENTRYP PFNGLVIEWPORTSWIZZLENVPROC) (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportSwizzleNV (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#endif +#endif /* GL_NV_viewport_swizzle */ + +#ifndef GL_OVR_multiview +#define GL_OVR_multiview 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR 0x9630 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR 0x9632 +#define GL_MAX_VIEWS_OVR 0x9631 +#define GL_FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR 0x9633 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview */ + +#ifndef GL_OVR_multiview2 +#define GL_OVR_multiview2 1 +#endif /* GL_OVR_multiview2 */ + +#ifndef GL_OVR_multiview_multisampled_render_to_texture +#define GL_OVR_multiview_multisampled_render_to_texture 1 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTISAMPLEMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLsizei samples, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureMultisampleMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLsizei samples, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview_multisampled_render_to_texture */ + +#ifndef GL_QCOM_YUV_texture_gather +#define GL_QCOM_YUV_texture_gather 1 +#endif /* GL_QCOM_YUV_texture_gather */ + +#ifndef GL_QCOM_alpha_test +#define GL_QCOM_alpha_test 1 +#define GL_ALPHA_TEST_QCOM 0x0BC0 +#define GL_ALPHA_TEST_FUNC_QCOM 0x0BC1 +#define GL_ALPHA_TEST_REF_QCOM 0x0BC2 +typedef void (GL_APIENTRYP PFNGLALPHAFUNCQCOMPROC) (GLenum func, GLclampf ref); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glAlphaFuncQCOM (GLenum func, GLclampf ref); +#endif +#endif /* GL_QCOM_alpha_test */ + +#ifndef GL_QCOM_binning_control +#define GL_QCOM_binning_control 1 +#define GL_BINNING_CONTROL_HINT_QCOM 0x8FB0 +#define GL_CPU_OPTIMIZED_QCOM 0x8FB1 +#define GL_GPU_OPTIMIZED_QCOM 0x8FB2 +#define GL_RENDER_DIRECT_TO_FRAMEBUFFER_QCOM 0x8FB3 +#endif /* GL_QCOM_binning_control */ + +#ifndef GL_QCOM_driver_control +#define GL_QCOM_driver_control 1 +typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSQCOMPROC) (GLint *num, GLsizei size, GLuint *driverControls); +typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSTRINGQCOMPROC) (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); +typedef void (GL_APIENTRYP PFNGLENABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +typedef void (GL_APIENTRYP PFNGLDISABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetDriverControlsQCOM (GLint *num, GLsizei size, GLuint *driverControls); +GL_APICALL void GL_APIENTRY glGetDriverControlStringQCOM (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); +GL_APICALL void GL_APIENTRY glEnableDriverControlQCOM (GLuint driverControl); +GL_APICALL void GL_APIENTRY glDisableDriverControlQCOM (GLuint driverControl); +#endif +#endif /* GL_QCOM_driver_control */ + +#ifndef GL_QCOM_extended_get +#define GL_QCOM_extended_get 1 +#define GL_TEXTURE_WIDTH_QCOM 0x8BD2 +#define GL_TEXTURE_HEIGHT_QCOM 0x8BD3 +#define GL_TEXTURE_DEPTH_QCOM 0x8BD4 +#define GL_TEXTURE_INTERNAL_FORMAT_QCOM 0x8BD5 +#define GL_TEXTURE_FORMAT_QCOM 0x8BD6 +#define GL_TEXTURE_TYPE_QCOM 0x8BD7 +#define GL_TEXTURE_IMAGE_VALID_QCOM 0x8BD8 +#define GL_TEXTURE_NUM_LEVELS_QCOM 0x8BD9 +#define GL_TEXTURE_TARGET_QCOM 0x8BDA +#define GL_TEXTURE_OBJECT_VALID_QCOM 0x8BDB +#define GL_STATE_RESTORE 0x8BDC +typedef void (GL_APIENTRYP PFNGLEXTGETTEXTURESQCOMPROC) (GLuint *textures, GLint maxTextures, GLint *numTextures); +typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERSQCOMPROC) (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETRENDERBUFFERSQCOMPROC) (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETFRAMEBUFFERSQCOMPROC) (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETTEXLEVELPARAMETERIVQCOMPROC) (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLEXTTEXOBJECTSTATEOVERRIDEIQCOMPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLEXTGETTEXSUBIMAGEQCOMPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void *texels); +typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERPOINTERVQCOMPROC) (GLenum target, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtGetTexturesQCOM (GLuint *textures, GLint maxTextures, GLint *numTextures); +GL_APICALL void GL_APIENTRY glExtGetBuffersQCOM (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); +GL_APICALL void GL_APIENTRY glExtGetRenderbuffersQCOM (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); +GL_APICALL void GL_APIENTRY glExtGetFramebuffersQCOM (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); +GL_APICALL void GL_APIENTRY glExtGetTexLevelParameterivQCOM (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glExtTexObjectStateOverrideiQCOM (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glExtGetTexSubImageQCOM (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void *texels); +GL_APICALL void GL_APIENTRY glExtGetBufferPointervQCOM (GLenum target, void **params); +#endif +#endif /* GL_QCOM_extended_get */ + +#ifndef GL_QCOM_extended_get2 +#define GL_QCOM_extended_get2 1 +typedef void (GL_APIENTRYP PFNGLEXTGETSHADERSQCOMPROC) (GLuint *shaders, GLint maxShaders, GLint *numShaders); +typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMSQCOMPROC) (GLuint *programs, GLint maxPrograms, GLint *numPrograms); +typedef GLboolean (GL_APIENTRYP PFNGLEXTISPROGRAMBINARYQCOMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMBINARYSOURCEQCOMPROC) (GLuint program, GLenum shadertype, GLchar *source, GLint *length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtGetShadersQCOM (GLuint *shaders, GLint maxShaders, GLint *numShaders); +GL_APICALL void GL_APIENTRY glExtGetProgramsQCOM (GLuint *programs, GLint maxPrograms, GLint *numPrograms); +GL_APICALL GLboolean GL_APIENTRY glExtIsProgramBinaryQCOM (GLuint program); +GL_APICALL void GL_APIENTRY glExtGetProgramBinarySourceQCOM (GLuint program, GLenum shadertype, GLchar *source, GLint *length); +#endif +#endif /* GL_QCOM_extended_get2 */ + +#ifndef GL_QCOM_frame_extrapolation +#define GL_QCOM_frame_extrapolation 1 +typedef void (GL_APIENTRYP PFNGLEXTRAPOLATETEX2DQCOMPROC) (GLuint src1, GLuint src2, GLuint output, GLfloat scaleFactor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtrapolateTex2DQCOM (GLuint src1, GLuint src2, GLuint output, GLfloat scaleFactor); +#endif +#endif /* GL_QCOM_frame_extrapolation */ + +#ifndef GL_QCOM_framebuffer_foveated +#define GL_QCOM_framebuffer_foveated 1 +#define GL_FOVEATION_ENABLE_BIT_QCOM 0x00000001 +#define GL_FOVEATION_SCALED_BIN_METHOD_BIT_QCOM 0x00000002 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFOVEATIONCONFIGQCOMPROC) (GLuint framebuffer, GLuint numLayers, GLuint focalPointsPerLayer, GLuint requestedFeatures, GLuint *providedFeatures); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFOVEATIONPARAMETERSQCOMPROC) (GLuint framebuffer, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFoveationConfigQCOM (GLuint framebuffer, GLuint numLayers, GLuint focalPointsPerLayer, GLuint requestedFeatures, GLuint *providedFeatures); +GL_APICALL void GL_APIENTRY glFramebufferFoveationParametersQCOM (GLuint framebuffer, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#endif +#endif /* GL_QCOM_framebuffer_foveated */ + +#ifndef GL_QCOM_motion_estimation +#define GL_QCOM_motion_estimation 1 +#define GL_MOTION_ESTIMATION_SEARCH_BLOCK_X_QCOM 0x8C90 +#define GL_MOTION_ESTIMATION_SEARCH_BLOCK_Y_QCOM 0x8C91 +typedef void (GL_APIENTRYP PFNGLTEXESTIMATEMOTIONQCOMPROC) (GLuint ref, GLuint target, GLuint output); +typedef void (GL_APIENTRYP PFNGLTEXESTIMATEMOTIONREGIONSQCOMPROC) (GLuint ref, GLuint target, GLuint output, GLuint mask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexEstimateMotionQCOM (GLuint ref, GLuint target, GLuint output); +GL_APICALL void GL_APIENTRY glTexEstimateMotionRegionsQCOM (GLuint ref, GLuint target, GLuint output, GLuint mask); +#endif +#endif /* GL_QCOM_motion_estimation */ + +#ifndef GL_QCOM_perfmon_global_mode +#define GL_QCOM_perfmon_global_mode 1 +#define GL_PERFMON_GLOBAL_MODE_QCOM 0x8FA0 +#endif /* GL_QCOM_perfmon_global_mode */ + +#ifndef GL_QCOM_render_shared_exponent +#define GL_QCOM_render_shared_exponent 1 +#endif /* GL_QCOM_render_shared_exponent */ + +#ifndef GL_QCOM_shader_framebuffer_fetch_noncoherent +#define GL_QCOM_shader_framebuffer_fetch_noncoherent 1 +#define GL_FRAMEBUFFER_FETCH_NONCOHERENT_QCOM 0x96A2 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIERQCOMPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFetchBarrierQCOM (void); +#endif +#endif /* GL_QCOM_shader_framebuffer_fetch_noncoherent */ + +#ifndef GL_QCOM_shader_framebuffer_fetch_rate +#define GL_QCOM_shader_framebuffer_fetch_rate 1 +#endif /* GL_QCOM_shader_framebuffer_fetch_rate */ + +#ifndef GL_QCOM_shading_rate +#define GL_QCOM_shading_rate 1 +#define GL_SHADING_RATE_QCOM 0x96A4 +#define GL_SHADING_RATE_PRESERVE_ASPECT_RATIO_QCOM 0x96A5 +#define GL_SHADING_RATE_1X1_PIXELS_QCOM 0x96A6 +#define GL_SHADING_RATE_1X2_PIXELS_QCOM 0x96A7 +#define GL_SHADING_RATE_2X1_PIXELS_QCOM 0x96A8 +#define GL_SHADING_RATE_2X2_PIXELS_QCOM 0x96A9 +#define GL_SHADING_RATE_4X2_PIXELS_QCOM 0x96AC +#define GL_SHADING_RATE_4X4_PIXELS_QCOM 0x96AE +typedef void (GL_APIENTRYP PFNGLSHADINGRATEQCOMPROC) (GLenum rate); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glShadingRateQCOM (GLenum rate); +#endif +#endif /* GL_QCOM_shading_rate */ + +#ifndef GL_QCOM_texture_foveated +#define GL_QCOM_texture_foveated 1 +#define GL_TEXTURE_FOVEATED_FEATURE_BITS_QCOM 0x8BFB +#define GL_TEXTURE_FOVEATED_MIN_PIXEL_DENSITY_QCOM 0x8BFC +#define GL_TEXTURE_FOVEATED_FEATURE_QUERY_QCOM 0x8BFD +#define GL_TEXTURE_FOVEATED_NUM_FOCAL_POINTS_QUERY_QCOM 0x8BFE +#define GL_FRAMEBUFFER_INCOMPLETE_FOVEATION_QCOM 0x8BFF +typedef void (GL_APIENTRYP PFNGLTEXTUREFOVEATIONPARAMETERSQCOMPROC) (GLuint texture, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureFoveationParametersQCOM (GLuint texture, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#endif +#endif /* GL_QCOM_texture_foveated */ + +#ifndef GL_QCOM_texture_foveated2 +#define GL_QCOM_texture_foveated2 1 +#define GL_TEXTURE_FOVEATED_CUTOFF_DENSITY_QCOM 0x96A0 +#endif /* GL_QCOM_texture_foveated2 */ + +#ifndef GL_QCOM_texture_foveated_subsampled_layout +#define GL_QCOM_texture_foveated_subsampled_layout 1 +#define GL_FOVEATION_SUBSAMPLED_LAYOUT_METHOD_BIT_QCOM 0x00000004 +#define GL_MAX_SHADER_SUBSAMPLED_IMAGE_UNITS_QCOM 0x8FA1 +#endif /* GL_QCOM_texture_foveated_subsampled_layout */ + +#ifndef GL_QCOM_tiled_rendering +#define GL_QCOM_tiled_rendering 1 +#define GL_COLOR_BUFFER_BIT0_QCOM 0x00000001 +#define GL_COLOR_BUFFER_BIT1_QCOM 0x00000002 +#define GL_COLOR_BUFFER_BIT2_QCOM 0x00000004 +#define GL_COLOR_BUFFER_BIT3_QCOM 0x00000008 +#define GL_COLOR_BUFFER_BIT4_QCOM 0x00000010 +#define GL_COLOR_BUFFER_BIT5_QCOM 0x00000020 +#define GL_COLOR_BUFFER_BIT6_QCOM 0x00000040 +#define GL_COLOR_BUFFER_BIT7_QCOM 0x00000080 +#define GL_DEPTH_BUFFER_BIT0_QCOM 0x00000100 +#define GL_DEPTH_BUFFER_BIT1_QCOM 0x00000200 +#define GL_DEPTH_BUFFER_BIT2_QCOM 0x00000400 +#define GL_DEPTH_BUFFER_BIT3_QCOM 0x00000800 +#define GL_DEPTH_BUFFER_BIT4_QCOM 0x00001000 +#define GL_DEPTH_BUFFER_BIT5_QCOM 0x00002000 +#define GL_DEPTH_BUFFER_BIT6_QCOM 0x00004000 +#define GL_DEPTH_BUFFER_BIT7_QCOM 0x00008000 +#define GL_STENCIL_BUFFER_BIT0_QCOM 0x00010000 +#define GL_STENCIL_BUFFER_BIT1_QCOM 0x00020000 +#define GL_STENCIL_BUFFER_BIT2_QCOM 0x00040000 +#define GL_STENCIL_BUFFER_BIT3_QCOM 0x00080000 +#define GL_STENCIL_BUFFER_BIT4_QCOM 0x00100000 +#define GL_STENCIL_BUFFER_BIT5_QCOM 0x00200000 +#define GL_STENCIL_BUFFER_BIT6_QCOM 0x00400000 +#define GL_STENCIL_BUFFER_BIT7_QCOM 0x00800000 +#define GL_MULTISAMPLE_BUFFER_BIT0_QCOM 0x01000000 +#define GL_MULTISAMPLE_BUFFER_BIT1_QCOM 0x02000000 +#define GL_MULTISAMPLE_BUFFER_BIT2_QCOM 0x04000000 +#define GL_MULTISAMPLE_BUFFER_BIT3_QCOM 0x08000000 +#define GL_MULTISAMPLE_BUFFER_BIT4_QCOM 0x10000000 +#define GL_MULTISAMPLE_BUFFER_BIT5_QCOM 0x20000000 +#define GL_MULTISAMPLE_BUFFER_BIT6_QCOM 0x40000000 +#define GL_MULTISAMPLE_BUFFER_BIT7_QCOM 0x80000000 +typedef void (GL_APIENTRYP PFNGLSTARTTILINGQCOMPROC) (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); +typedef void (GL_APIENTRYP PFNGLENDTILINGQCOMPROC) (GLbitfield preserveMask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glStartTilingQCOM (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); +GL_APICALL void GL_APIENTRY glEndTilingQCOM (GLbitfield preserveMask); +#endif +#endif /* GL_QCOM_tiled_rendering */ + +#ifndef GL_QCOM_writeonly_rendering +#define GL_QCOM_writeonly_rendering 1 +#define GL_WRITEONLY_RENDERING_QCOM 0x8823 +#endif /* GL_QCOM_writeonly_rendering */ + +#ifndef GL_VIV_shader_binary +#define GL_VIV_shader_binary 1 +#define GL_SHADER_BINARY_VIV 0x8FC4 +#endif /* GL_VIV_shader_binary */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_gl2platform.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_gl2platform.h new file mode 100644 index 0000000..426796e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_gl2platform.h @@ -0,0 +1,27 @@ +#ifndef __gl2platform_h_ +#define __gl2platform_h_ + +/* +** Copyright 2017-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +*/ + +/* Platform-specific types and definitions for OpenGL ES 2.X gl2.h + * + * Adopters may modify khrplatform.h and this file to suit their platform. + * Please contribute modifications back to Khronos as pull requests on the + * public github repository: + * https://github.com/KhronosGroup/OpenGL-Registry + */ + +/*#include */ + +#ifndef GL_APICALL +#define GL_APICALL KHRONOS_APICALL +#endif + +#ifndef GL_APIENTRY +#define GL_APIENTRY KHRONOS_APIENTRY +#endif + +#endif /* __gl2platform_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_khrplatform.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_khrplatform.h new file mode 100644 index 0000000..0164644 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_opengles2_khrplatform.h @@ -0,0 +1,311 @@ +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_pen.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_pen.h new file mode 100644 index 0000000..5182eeb --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_pen.h @@ -0,0 +1,127 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryPen + * + * SDL pen event handling. + * + * SDL provides an API for pressure-sensitive pen (stylus and/or eraser) + * handling, e.g., for input and drawing tablets or suitably equipped mobile / + * tablet devices. + * + * To get started with pens, simply handle SDL_EVENT_PEN_* events. When a pen + * starts providing input, SDL will assign it a unique SDL_PenID, which will + * remain for the life of the process, as long as the pen stays connected. + * + * Pens may provide more than simple touch input; they might have other axes, + * such as pressure, tilt, rotation, etc. + */ + +#ifndef SDL_pen_h_ +#define SDL_pen_h_ + +#include +#include +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SDL pen instance IDs. + * + * Zero is used to signify an invalid/null device. + * + * These show up in pen events when SDL sees input from them. They remain + * consistent as long as SDL can recognize a tool to be the same pen; but if a + * pen physically leaves the area and returns, it might get a new ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_PenID; + +/** + * The SDL_MouseID for mouse events simulated with pen input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PEN_MOUSEID ((SDL_MouseID)-2) + +/** + * The SDL_TouchID for touch events simulated with pen input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PEN_TOUCHID ((SDL_TouchID)-2) + + +/** + * Pen input flags, as reported by various pen events' `pen_state` field. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_PenInputFlags; + +#define SDL_PEN_INPUT_DOWN (1u << 0) /**< pen is pressed down */ +#define SDL_PEN_INPUT_BUTTON_1 (1u << 1) /**< button 1 is pressed */ +#define SDL_PEN_INPUT_BUTTON_2 (1u << 2) /**< button 2 is pressed */ +#define SDL_PEN_INPUT_BUTTON_3 (1u << 3) /**< button 3 is pressed */ +#define SDL_PEN_INPUT_BUTTON_4 (1u << 4) /**< button 4 is pressed */ +#define SDL_PEN_INPUT_BUTTON_5 (1u << 5) /**< button 5 is pressed */ +#define SDL_PEN_INPUT_ERASER_TIP (1u << 30) /**< eraser tip is used */ + +/** + * Pen axis indices. + * + * These are the valid values for the `axis` field in SDL_PenAxisEvent. All + * axes are either normalised to 0..1 or report a (positive or negative) angle + * in degrees, with 0.0 representing the centre. Not all pens/backends support + * all axes: unsupported axes are always zero. + * + * To convert angles for tilt and rotation into vector representation, use + * SDL_sinf on the XTILT, YTILT, or ROTATION component, for example: + * + * `SDL_sinf(xtilt * SDL_PI_F / 180.0)`. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PenAxis +{ + SDL_PEN_AXIS_PRESSURE, /**< Pen pressure. Unidirectional: 0 to 1.0 */ + SDL_PEN_AXIS_XTILT, /**< Pen horizontal tilt angle. Bidirectional: -90.0 to 90.0 (left-to-right). */ + SDL_PEN_AXIS_YTILT, /**< Pen vertical tilt angle. Bidirectional: -90.0 to 90.0 (top-to-down). */ + SDL_PEN_AXIS_DISTANCE, /**< Pen distance to drawing surface. Unidirectional: 0.0 to 1.0 */ + SDL_PEN_AXIS_ROTATION, /**< Pen barrel rotation. Bidirectional: -180 to 179.9 (clockwise, 0 is facing up, -180.0 is facing down). */ + SDL_PEN_AXIS_SLIDER, /**< Pen finger wheel or slider (e.g., Airbrush Pen). Unidirectional: 0 to 1.0 */ + SDL_PEN_AXIS_TANGENTIAL_PRESSURE, /**< Pressure from squeezing the pen ("barrel pressure"). */ + SDL_PEN_AXIS_COUNT /**< Total known pen axis types in this version of SDL. This number may grow in future releases! */ +} SDL_PenAxis; + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif + +#endif /* SDL_pen_h_ */ + diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_pixels.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_pixels.h new file mode 100644 index 0000000..39596c1 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_pixels.h @@ -0,0 +1,1441 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryPixels + * + * SDL offers facilities for pixel management. + * + * Largely these facilities deal with pixel _format_: what does this set of + * bits represent? + * + * If you mostly want to think of a pixel as some combination of red, green, + * blue, and maybe alpha intensities, this is all pretty straightforward, and + * in many cases, is enough information to build a perfectly fine game. + * + * However, the actual definition of a pixel is more complex than that: + * + * Pixels are a representation of a color in a particular color space. + * + * The first characteristic of a color space is the color type. SDL + * understands two different color types, RGB and YCbCr, or in SDL also + * referred to as YUV. + * + * RGB colors consist of red, green, and blue channels of color that are added + * together to represent the colors we see on the screen. + * + * https://en.wikipedia.org/wiki/RGB_color_model + * + * YCbCr colors represent colors as a Y luma brightness component and red and + * blue chroma color offsets. This color representation takes advantage of the + * fact that the human eye is more sensitive to brightness than the color in + * an image. The Cb and Cr components are often compressed and have lower + * resolution than the luma component. + * + * https://en.wikipedia.org/wiki/YCbCr + * + * When the color information in YCbCr is compressed, the Y pixels are left at + * full resolution and each Cr and Cb pixel represents an average of the color + * information in a block of Y pixels. The chroma location determines where in + * that block of pixels the color information is coming from. + * + * The color range defines how much of the pixel to use when converting a + * pixel into a color on the display. When the full color range is used, the + * entire numeric range of the pixel bits is significant. When narrow color + * range is used, for historical reasons, the pixel uses only a portion of the + * numeric range to represent colors. + * + * The color primaries and white point are a definition of the colors in the + * color space relative to the standard XYZ color space. + * + * https://en.wikipedia.org/wiki/CIE_1931_color_space + * + * The transfer characteristic, or opto-electrical transfer function (OETF), + * is the way a color is converted from mathematically linear space into a + * non-linear output signals. + * + * https://en.wikipedia.org/wiki/Rec._709#Transfer_characteristics + * + * The matrix coefficients are used to convert between YCbCr and RGB colors. + */ + +#ifndef SDL_pixels_h_ +#define SDL_pixels_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A fully opaque 8-bit alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_TRANSPARENT + */ +#define SDL_ALPHA_OPAQUE 255 + +/** + * A fully opaque floating point alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_TRANSPARENT_FLOAT + */ +#define SDL_ALPHA_OPAQUE_FLOAT 1.0f + +/** + * A fully transparent 8-bit alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_OPAQUE + */ +#define SDL_ALPHA_TRANSPARENT 0 + +/** + * A fully transparent floating point alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_OPAQUE_FLOAT + */ +#define SDL_ALPHA_TRANSPARENT_FLOAT 0.0f + +/** + * Pixel type. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PixelType +{ + SDL_PIXELTYPE_UNKNOWN, + SDL_PIXELTYPE_INDEX1, + SDL_PIXELTYPE_INDEX4, + SDL_PIXELTYPE_INDEX8, + SDL_PIXELTYPE_PACKED8, + SDL_PIXELTYPE_PACKED16, + SDL_PIXELTYPE_PACKED32, + SDL_PIXELTYPE_ARRAYU8, + SDL_PIXELTYPE_ARRAYU16, + SDL_PIXELTYPE_ARRAYU32, + SDL_PIXELTYPE_ARRAYF16, + SDL_PIXELTYPE_ARRAYF32, + /* appended at the end for compatibility with sdl2-compat: */ + SDL_PIXELTYPE_INDEX2 +} SDL_PixelType; + +/** + * Bitmap pixel order, high bit -> low bit. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_BitmapOrder +{ + SDL_BITMAPORDER_NONE, + SDL_BITMAPORDER_4321, + SDL_BITMAPORDER_1234 +} SDL_BitmapOrder; + +/** + * Packed component order, high bit -> low bit. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PackedOrder +{ + SDL_PACKEDORDER_NONE, + SDL_PACKEDORDER_XRGB, + SDL_PACKEDORDER_RGBX, + SDL_PACKEDORDER_ARGB, + SDL_PACKEDORDER_RGBA, + SDL_PACKEDORDER_XBGR, + SDL_PACKEDORDER_BGRX, + SDL_PACKEDORDER_ABGR, + SDL_PACKEDORDER_BGRA +} SDL_PackedOrder; + +/** + * Array component order, low byte -> high byte. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ArrayOrder +{ + SDL_ARRAYORDER_NONE, + SDL_ARRAYORDER_RGB, + SDL_ARRAYORDER_RGBA, + SDL_ARRAYORDER_ARGB, + SDL_ARRAYORDER_BGR, + SDL_ARRAYORDER_BGRA, + SDL_ARRAYORDER_ABGR +} SDL_ArrayOrder; + +/** + * Packed component layout. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PackedLayout +{ + SDL_PACKEDLAYOUT_NONE, + SDL_PACKEDLAYOUT_332, + SDL_PACKEDLAYOUT_4444, + SDL_PACKEDLAYOUT_1555, + SDL_PACKEDLAYOUT_5551, + SDL_PACKEDLAYOUT_565, + SDL_PACKEDLAYOUT_8888, + SDL_PACKEDLAYOUT_2101010, + SDL_PACKEDLAYOUT_1010102 +} SDL_PackedLayout; + +/** + * A macro for defining custom FourCC pixel formats. + * + * For example, defining SDL_PIXELFORMAT_YV12 looks like this: + * + * ```c + * SDL_DEFINE_PIXELFOURCC('Y', 'V', '1', '2') + * ``` + * + * \param A the first character of the FourCC code. + * \param B the second character of the FourCC code. + * \param C the third character of the FourCC code. + * \param D the fourth character of the FourCC code. + * \returns a format value in the style of SDL_PixelFormat. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_PIXELFOURCC(A, B, C, D) SDL_FOURCC(A, B, C, D) + +/** + * A macro for defining custom non-FourCC pixel formats. + * + * For example, defining SDL_PIXELFORMAT_RGBA8888 looks like this: + * + * ```c + * SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_8888, 32, 4) + * ``` + * + * \param type the type of the new format, probably a SDL_PixelType value. + * \param order the order of the new format, probably a SDL_BitmapOrder, + * SDL_PackedOrder, or SDL_ArrayOrder value. + * \param layout the layout of the new format, probably an SDL_PackedLayout + * value or zero. + * \param bits the number of bits per pixel of the new format. + * \param bytes the number of bytes per pixel of the new format. + * \returns a format value in the style of SDL_PixelFormat. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_PIXELFORMAT(type, order, layout, bits, bytes) \ + ((1 << 28) | ((type) << 24) | ((order) << 20) | ((layout) << 16) | \ + ((bits) << 8) | ((bytes) << 0)) + +/** + * A macro to retrieve the flags of an SDL_PixelFormat. + * + * This macro is generally not needed directly by an app, which should use + * specific tests, like SDL_ISPIXELFORMAT_FOURCC, instead. + * + * \param format an SDL_PixelFormat to check. + * \returns the flags of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELFLAG(format) (((format) >> 28) & 0x0F) + +/** + * A macro to retrieve the type of an SDL_PixelFormat. + * + * This is usually a value from the SDL_PixelType enumeration. + * + * \param format an SDL_PixelFormat to check. + * \returns the type of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELTYPE(format) (((format) >> 24) & 0x0F) + +/** + * A macro to retrieve the order of an SDL_PixelFormat. + * + * This is usually a value from the SDL_BitmapOrder, SDL_PackedOrder, or + * SDL_ArrayOrder enumerations, depending on the format type. + * + * \param format an SDL_PixelFormat to check. + * \returns the order of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELORDER(format) (((format) >> 20) & 0x0F) + +/** + * A macro to retrieve the layout of an SDL_PixelFormat. + * + * This is usually a value from the SDL_PackedLayout enumeration, or zero if a + * layout doesn't make sense for the format type. + * + * \param format an SDL_PixelFormat to check. + * \returns the layout of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELLAYOUT(format) (((format) >> 16) & 0x0F) + +/** + * A macro to determine an SDL_PixelFormat's bits per pixel. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * FourCC formats will report zero here, as it rarely makes sense to measure + * them per-pixel. + * + * \param format an SDL_PixelFormat to check. + * \returns the bits-per-pixel of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BYTESPERPIXEL + */ +#define SDL_BITSPERPIXEL(format) \ + (SDL_ISPIXELFORMAT_FOURCC(format) ? 0 : (((format) >> 8) & 0xFF)) + +/** + * A macro to determine an SDL_PixelFormat's bytes per pixel. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * FourCC formats do their best here, but many of them don't have a meaningful + * measurement of bytes per pixel. + * + * \param format an SDL_PixelFormat to check. + * \returns the bytes-per-pixel of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BITSPERPIXEL + */ +#define SDL_BYTESPERPIXEL(format) \ + (SDL_ISPIXELFORMAT_FOURCC(format) ? \ + ((((format) == SDL_PIXELFORMAT_YUY2) || \ + ((format) == SDL_PIXELFORMAT_UYVY) || \ + ((format) == SDL_PIXELFORMAT_YVYU) || \ + ((format) == SDL_PIXELFORMAT_P010)) ? 2 : 1) : (((format) >> 0) & 0xFF)) + + +/** + * A macro to determine if an SDL_PixelFormat is an indexed format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is indexed, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_INDEXED(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX1) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX2) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX4) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX8))) + +/** + * A macro to determine if an SDL_PixelFormat is a packed format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is packed, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_PACKED(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED8) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED32))) + +/** + * A macro to determine if an SDL_PixelFormat is an array format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is an array, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_ARRAY(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU8) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU32) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF32))) + +/** + * A macro to determine if an SDL_PixelFormat is a 10-bit format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is 10-bit, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_10BIT(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED32) && \ + (SDL_PIXELLAYOUT(format) == SDL_PACKEDLAYOUT_2101010))) + +/** + * A macro to determine if an SDL_PixelFormat is a floating point format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is 10-bit, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_FLOAT(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF32))) + +/** + * A macro to determine if an SDL_PixelFormat has an alpha channel. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format has alpha, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_ALPHA(format) \ + ((SDL_ISPIXELFORMAT_PACKED(format) && \ + ((SDL_PIXELORDER(format) == SDL_PACKEDORDER_ARGB) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_RGBA) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_ABGR) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_BGRA))) || \ + (SDL_ISPIXELFORMAT_ARRAY(format) && \ + ((SDL_PIXELORDER(format) == SDL_ARRAYORDER_ARGB) || \ + (SDL_PIXELORDER(format) == SDL_ARRAYORDER_RGBA) || \ + (SDL_PIXELORDER(format) == SDL_ARRAYORDER_ABGR) || \ + (SDL_PIXELORDER(format) == SDL_ARRAYORDER_BGRA)))) + + +/** + * A macro to determine if an SDL_PixelFormat is a "FourCC" format. + * + * This covers custom and other unusual formats. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format has alpha, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_FOURCC(format) /* The flag is set to 1 because 0x1? is not in the printable ASCII range */ \ + ((format) && (SDL_PIXELFLAG(format) != 1)) + +/* Note: If you modify this enum, update SDL_GetPixelFormatName() */ + +/** + * Pixel format. + * + * SDL's pixel formats have the following naming convention: + * + * - Names with a list of components and a single bit count, such as RGB24 and + * ABGR32, define a platform-independent encoding into bytes in the order + * specified. For example, in RGB24 data, each pixel is encoded in 3 bytes + * (red, green, blue) in that order, and in ABGR32 data, each pixel is + * encoded in 4 bytes (alpha, blue, green, red) in that order. Use these + * names if the property of a format that is important to you is the order + * of the bytes in memory or on disk. + * - Names with a bit count per component, such as ARGB8888 and XRGB1555, are + * "packed" into an appropriately-sized integer in the platform's native + * endianness. For example, ARGB8888 is a sequence of 32-bit integers; in + * each integer, the most significant bits are alpha, and the least + * significant bits are blue. On a little-endian CPU such as x86, the least + * significant bits of each integer are arranged first in memory, but on a + * big-endian CPU such as s390x, the most significant bits are arranged + * first. Use these names if the property of a format that is important to + * you is the meaning of each bit position within a native-endianness + * integer. + * - In indexed formats such as INDEX4LSB, each pixel is represented by + * encoding an index into the palette into the indicated number of bits, + * with multiple pixels packed into each byte if appropriate. In LSB + * formats, the first (leftmost) pixel is stored in the least-significant + * bits of the byte; in MSB formats, it's stored in the most-significant + * bits. INDEX8 does not need LSB/MSB variants, because each pixel exactly + * fills one byte. + * + * The 32-bit byte-array encodings such as RGBA32 are aliases for the + * appropriate 8888 encoding for the current platform. For example, RGBA32 is + * an alias for ABGR8888 on little-endian CPUs like x86, or an alias for + * RGBA8888 on big-endian CPUs. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PixelFormat +{ + SDL_PIXELFORMAT_UNKNOWN = 0, + SDL_PIXELFORMAT_INDEX1LSB = 0x11100100u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX1, SDL_BITMAPORDER_4321, 0, 1, 0), */ + SDL_PIXELFORMAT_INDEX1MSB = 0x11200100u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX1, SDL_BITMAPORDER_1234, 0, 1, 0), */ + SDL_PIXELFORMAT_INDEX2LSB = 0x1c100200u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX2, SDL_BITMAPORDER_4321, 0, 2, 0), */ + SDL_PIXELFORMAT_INDEX2MSB = 0x1c200200u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX2, SDL_BITMAPORDER_1234, 0, 2, 0), */ + SDL_PIXELFORMAT_INDEX4LSB = 0x12100400u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX4, SDL_BITMAPORDER_4321, 0, 4, 0), */ + SDL_PIXELFORMAT_INDEX4MSB = 0x12200400u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX4, SDL_BITMAPORDER_1234, 0, 4, 0), */ + SDL_PIXELFORMAT_INDEX8 = 0x13000801u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX8, 0, 0, 8, 1), */ + SDL_PIXELFORMAT_RGB332 = 0x14110801u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED8, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_332, 8, 1), */ + SDL_PIXELFORMAT_XRGB4444 = 0x15120c02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_4444, 12, 2), */ + SDL_PIXELFORMAT_XBGR4444 = 0x15520c02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_4444, 12, 2), */ + SDL_PIXELFORMAT_XRGB1555 = 0x15130f02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_1555, 15, 2), */ + SDL_PIXELFORMAT_XBGR1555 = 0x15530f02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_1555, 15, 2), */ + SDL_PIXELFORMAT_ARGB4444 = 0x15321002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_RGBA4444 = 0x15421002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_ABGR4444 = 0x15721002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_BGRA4444 = 0x15821002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_BGRA, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_ARGB1555 = 0x15331002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_1555, 16, 2), */ + SDL_PIXELFORMAT_RGBA5551 = 0x15441002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_5551, 16, 2), */ + SDL_PIXELFORMAT_ABGR1555 = 0x15731002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_1555, 16, 2), */ + SDL_PIXELFORMAT_BGRA5551 = 0x15841002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_BGRA, SDL_PACKEDLAYOUT_5551, 16, 2), */ + SDL_PIXELFORMAT_RGB565 = 0x15151002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_565, 16, 2), */ + SDL_PIXELFORMAT_BGR565 = 0x15551002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_565, 16, 2), */ + SDL_PIXELFORMAT_RGB24 = 0x17101803u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU8, SDL_ARRAYORDER_RGB, 0, 24, 3), */ + SDL_PIXELFORMAT_BGR24 = 0x17401803u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU8, SDL_ARRAYORDER_BGR, 0, 24, 3), */ + SDL_PIXELFORMAT_XRGB8888 = 0x16161804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_RGBX8888 = 0x16261804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBX, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_XBGR8888 = 0x16561804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_BGRX8888 = 0x16661804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_BGRX, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_ARGB8888 = 0x16362004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_RGBA8888 = 0x16462004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_ABGR8888 = 0x16762004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_BGRA8888 = 0x16862004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_BGRA, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_XRGB2101010 = 0x16172004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_XBGR2101010 = 0x16572004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_ARGB2101010 = 0x16372004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_ABGR2101010 = 0x16772004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_RGB48 = 0x18103006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_RGB, 0, 48, 6), */ + SDL_PIXELFORMAT_BGR48 = 0x18403006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_BGR, 0, 48, 6), */ + SDL_PIXELFORMAT_RGBA64 = 0x18204008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_RGBA, 0, 64, 8), */ + SDL_PIXELFORMAT_ARGB64 = 0x18304008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_ARGB, 0, 64, 8), */ + SDL_PIXELFORMAT_BGRA64 = 0x18504008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_BGRA, 0, 64, 8), */ + SDL_PIXELFORMAT_ABGR64 = 0x18604008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_ABGR, 0, 64, 8), */ + SDL_PIXELFORMAT_RGB48_FLOAT = 0x1a103006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_RGB, 0, 48, 6), */ + SDL_PIXELFORMAT_BGR48_FLOAT = 0x1a403006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_BGR, 0, 48, 6), */ + SDL_PIXELFORMAT_RGBA64_FLOAT = 0x1a204008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_RGBA, 0, 64, 8), */ + SDL_PIXELFORMAT_ARGB64_FLOAT = 0x1a304008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_ARGB, 0, 64, 8), */ + SDL_PIXELFORMAT_BGRA64_FLOAT = 0x1a504008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_BGRA, 0, 64, 8), */ + SDL_PIXELFORMAT_ABGR64_FLOAT = 0x1a604008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_ABGR, 0, 64, 8), */ + SDL_PIXELFORMAT_RGB96_FLOAT = 0x1b10600cu, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_RGB, 0, 96, 12), */ + SDL_PIXELFORMAT_BGR96_FLOAT = 0x1b40600cu, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_BGR, 0, 96, 12), */ + SDL_PIXELFORMAT_RGBA128_FLOAT = 0x1b208010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_RGBA, 0, 128, 16), */ + SDL_PIXELFORMAT_ARGB128_FLOAT = 0x1b308010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_ARGB, 0, 128, 16), */ + SDL_PIXELFORMAT_BGRA128_FLOAT = 0x1b508010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_BGRA, 0, 128, 16), */ + SDL_PIXELFORMAT_ABGR128_FLOAT = 0x1b608010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_ABGR, 0, 128, 16), */ + + SDL_PIXELFORMAT_YV12 = 0x32315659u, /**< Planar mode: Y + V + U (3 planes) */ + /* SDL_DEFINE_PIXELFOURCC('Y', 'V', '1', '2'), */ + SDL_PIXELFORMAT_IYUV = 0x56555949u, /**< Planar mode: Y + U + V (3 planes) */ + /* SDL_DEFINE_PIXELFOURCC('I', 'Y', 'U', 'V'), */ + SDL_PIXELFORMAT_YUY2 = 0x32595559u, /**< Packed mode: Y0+U0+Y1+V0 (1 plane) */ + /* SDL_DEFINE_PIXELFOURCC('Y', 'U', 'Y', '2'), */ + SDL_PIXELFORMAT_UYVY = 0x59565955u, /**< Packed mode: U0+Y0+V0+Y1 (1 plane) */ + /* SDL_DEFINE_PIXELFOURCC('U', 'Y', 'V', 'Y'), */ + SDL_PIXELFORMAT_YVYU = 0x55595659u, /**< Packed mode: Y0+V0+Y1+U0 (1 plane) */ + /* SDL_DEFINE_PIXELFOURCC('Y', 'V', 'Y', 'U'), */ + SDL_PIXELFORMAT_NV12 = 0x3231564eu, /**< Planar mode: Y + U/V interleaved (2 planes) */ + /* SDL_DEFINE_PIXELFOURCC('N', 'V', '1', '2'), */ + SDL_PIXELFORMAT_NV21 = 0x3132564eu, /**< Planar mode: Y + V/U interleaved (2 planes) */ + /* SDL_DEFINE_PIXELFOURCC('N', 'V', '2', '1'), */ + SDL_PIXELFORMAT_P010 = 0x30313050u, /**< Planar mode: Y + U/V interleaved (2 planes) */ + /* SDL_DEFINE_PIXELFOURCC('P', '0', '1', '0'), */ + SDL_PIXELFORMAT_EXTERNAL_OES = 0x2053454fu, /**< Android video texture format */ + /* SDL_DEFINE_PIXELFOURCC('O', 'E', 'S', ' ') */ + + SDL_PIXELFORMAT_MJPG = 0x47504a4du, /**< Motion JPEG */ + /* SDL_DEFINE_PIXELFOURCC('M', 'J', 'P', 'G') */ + + /* Aliases for RGBA byte arrays of color data, for the current platform */ + #if SDL_BYTEORDER == SDL_BIG_ENDIAN + SDL_PIXELFORMAT_RGBA32 = SDL_PIXELFORMAT_RGBA8888, + SDL_PIXELFORMAT_ARGB32 = SDL_PIXELFORMAT_ARGB8888, + SDL_PIXELFORMAT_BGRA32 = SDL_PIXELFORMAT_BGRA8888, + SDL_PIXELFORMAT_ABGR32 = SDL_PIXELFORMAT_ABGR8888, + SDL_PIXELFORMAT_RGBX32 = SDL_PIXELFORMAT_RGBX8888, + SDL_PIXELFORMAT_XRGB32 = SDL_PIXELFORMAT_XRGB8888, + SDL_PIXELFORMAT_BGRX32 = SDL_PIXELFORMAT_BGRX8888, + SDL_PIXELFORMAT_XBGR32 = SDL_PIXELFORMAT_XBGR8888 + #else + SDL_PIXELFORMAT_RGBA32 = SDL_PIXELFORMAT_ABGR8888, + SDL_PIXELFORMAT_ARGB32 = SDL_PIXELFORMAT_BGRA8888, + SDL_PIXELFORMAT_BGRA32 = SDL_PIXELFORMAT_ARGB8888, + SDL_PIXELFORMAT_ABGR32 = SDL_PIXELFORMAT_RGBA8888, + SDL_PIXELFORMAT_RGBX32 = SDL_PIXELFORMAT_XBGR8888, + SDL_PIXELFORMAT_XRGB32 = SDL_PIXELFORMAT_BGRX8888, + SDL_PIXELFORMAT_BGRX32 = SDL_PIXELFORMAT_XRGB8888, + SDL_PIXELFORMAT_XBGR32 = SDL_PIXELFORMAT_RGBX8888 + #endif +} SDL_PixelFormat; + +/** + * Colorspace color type. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ColorType +{ + SDL_COLOR_TYPE_UNKNOWN = 0, + SDL_COLOR_TYPE_RGB = 1, + SDL_COLOR_TYPE_YCBCR = 2 +} SDL_ColorType; + +/** + * Colorspace color range, as described by + * https://www.itu.int/rec/R-REC-BT.2100-2-201807-I/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ColorRange +{ + SDL_COLOR_RANGE_UNKNOWN = 0, + SDL_COLOR_RANGE_LIMITED = 1, /**< Narrow range, e.g. 16-235 for 8-bit RGB and luma, and 16-240 for 8-bit chroma */ + SDL_COLOR_RANGE_FULL = 2 /**< Full range, e.g. 0-255 for 8-bit RGB and luma, and 1-255 for 8-bit chroma */ +} SDL_ColorRange; + +/** + * Colorspace color primaries, as described by + * https://www.itu.int/rec/T-REC-H.273-201612-S/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ColorPrimaries +{ + SDL_COLOR_PRIMARIES_UNKNOWN = 0, + SDL_COLOR_PRIMARIES_BT709 = 1, /**< ITU-R BT.709-6 */ + SDL_COLOR_PRIMARIES_UNSPECIFIED = 2, + SDL_COLOR_PRIMARIES_BT470M = 4, /**< ITU-R BT.470-6 System M */ + SDL_COLOR_PRIMARIES_BT470BG = 5, /**< ITU-R BT.470-6 System B, G / ITU-R BT.601-7 625 */ + SDL_COLOR_PRIMARIES_BT601 = 6, /**< ITU-R BT.601-7 525, SMPTE 170M */ + SDL_COLOR_PRIMARIES_SMPTE240 = 7, /**< SMPTE 240M, functionally the same as SDL_COLOR_PRIMARIES_BT601 */ + SDL_COLOR_PRIMARIES_GENERIC_FILM = 8, /**< Generic film (color filters using Illuminant C) */ + SDL_COLOR_PRIMARIES_BT2020 = 9, /**< ITU-R BT.2020-2 / ITU-R BT.2100-0 */ + SDL_COLOR_PRIMARIES_XYZ = 10, /**< SMPTE ST 428-1 */ + SDL_COLOR_PRIMARIES_SMPTE431 = 11, /**< SMPTE RP 431-2 */ + SDL_COLOR_PRIMARIES_SMPTE432 = 12, /**< SMPTE EG 432-1 / DCI P3 */ + SDL_COLOR_PRIMARIES_EBU3213 = 22, /**< EBU Tech. 3213-E */ + SDL_COLOR_PRIMARIES_CUSTOM = 31 +} SDL_ColorPrimaries; + +/** + * Colorspace transfer characteristics. + * + * These are as described by https://www.itu.int/rec/T-REC-H.273-201612-S/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_TransferCharacteristics +{ + SDL_TRANSFER_CHARACTERISTICS_UNKNOWN = 0, + SDL_TRANSFER_CHARACTERISTICS_BT709 = 1, /**< Rec. ITU-R BT.709-6 / ITU-R BT1361 */ + SDL_TRANSFER_CHARACTERISTICS_UNSPECIFIED = 2, + SDL_TRANSFER_CHARACTERISTICS_GAMMA22 = 4, /**< ITU-R BT.470-6 System M / ITU-R BT1700 625 PAL & SECAM */ + SDL_TRANSFER_CHARACTERISTICS_GAMMA28 = 5, /**< ITU-R BT.470-6 System B, G */ + SDL_TRANSFER_CHARACTERISTICS_BT601 = 6, /**< SMPTE ST 170M / ITU-R BT.601-7 525 or 625 */ + SDL_TRANSFER_CHARACTERISTICS_SMPTE240 = 7, /**< SMPTE ST 240M */ + SDL_TRANSFER_CHARACTERISTICS_LINEAR = 8, + SDL_TRANSFER_CHARACTERISTICS_LOG100 = 9, + SDL_TRANSFER_CHARACTERISTICS_LOG100_SQRT10 = 10, + SDL_TRANSFER_CHARACTERISTICS_IEC61966 = 11, /**< IEC 61966-2-4 */ + SDL_TRANSFER_CHARACTERISTICS_BT1361 = 12, /**< ITU-R BT1361 Extended Colour Gamut */ + SDL_TRANSFER_CHARACTERISTICS_SRGB = 13, /**< IEC 61966-2-1 (sRGB or sYCC) */ + SDL_TRANSFER_CHARACTERISTICS_BT2020_10BIT = 14, /**< ITU-R BT2020 for 10-bit system */ + SDL_TRANSFER_CHARACTERISTICS_BT2020_12BIT = 15, /**< ITU-R BT2020 for 12-bit system */ + SDL_TRANSFER_CHARACTERISTICS_PQ = 16, /**< SMPTE ST 2084 for 10-, 12-, 14- and 16-bit systems */ + SDL_TRANSFER_CHARACTERISTICS_SMPTE428 = 17, /**< SMPTE ST 428-1 */ + SDL_TRANSFER_CHARACTERISTICS_HLG = 18, /**< ARIB STD-B67, known as "hybrid log-gamma" (HLG) */ + SDL_TRANSFER_CHARACTERISTICS_CUSTOM = 31 +} SDL_TransferCharacteristics; + +/** + * Colorspace matrix coefficients. + * + * These are as described by https://www.itu.int/rec/T-REC-H.273-201612-S/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_MatrixCoefficients +{ + SDL_MATRIX_COEFFICIENTS_IDENTITY = 0, + SDL_MATRIX_COEFFICIENTS_BT709 = 1, /**< ITU-R BT.709-6 */ + SDL_MATRIX_COEFFICIENTS_UNSPECIFIED = 2, + SDL_MATRIX_COEFFICIENTS_FCC = 4, /**< US FCC Title 47 */ + SDL_MATRIX_COEFFICIENTS_BT470BG = 5, /**< ITU-R BT.470-6 System B, G / ITU-R BT.601-7 625, functionally the same as SDL_MATRIX_COEFFICIENTS_BT601 */ + SDL_MATRIX_COEFFICIENTS_BT601 = 6, /**< ITU-R BT.601-7 525 */ + SDL_MATRIX_COEFFICIENTS_SMPTE240 = 7, /**< SMPTE 240M */ + SDL_MATRIX_COEFFICIENTS_YCGCO = 8, + SDL_MATRIX_COEFFICIENTS_BT2020_NCL = 9, /**< ITU-R BT.2020-2 non-constant luminance */ + SDL_MATRIX_COEFFICIENTS_BT2020_CL = 10, /**< ITU-R BT.2020-2 constant luminance */ + SDL_MATRIX_COEFFICIENTS_SMPTE2085 = 11, /**< SMPTE ST 2085 */ + SDL_MATRIX_COEFFICIENTS_CHROMA_DERIVED_NCL = 12, + SDL_MATRIX_COEFFICIENTS_CHROMA_DERIVED_CL = 13, + SDL_MATRIX_COEFFICIENTS_ICTCP = 14, /**< ITU-R BT.2100-0 ICTCP */ + SDL_MATRIX_COEFFICIENTS_CUSTOM = 31 +} SDL_MatrixCoefficients; + +/** + * Colorspace chroma sample location. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ChromaLocation +{ + SDL_CHROMA_LOCATION_NONE = 0, /**< RGB, no chroma sampling */ + SDL_CHROMA_LOCATION_LEFT = 1, /**< In MPEG-2, MPEG-4, and AVC, Cb and Cr are taken on midpoint of the left-edge of the 2x2 square. In other words, they have the same horizontal location as the top-left pixel, but is shifted one-half pixel down vertically. */ + SDL_CHROMA_LOCATION_CENTER = 2, /**< In JPEG/JFIF, H.261, and MPEG-1, Cb and Cr are taken at the center of the 2x2 square. In other words, they are offset one-half pixel to the right and one-half pixel down compared to the top-left pixel. */ + SDL_CHROMA_LOCATION_TOPLEFT = 3 /**< In HEVC for BT.2020 and BT.2100 content (in particular on Blu-rays), Cb and Cr are sampled at the same location as the group's top-left Y pixel ("co-sited", "co-located"). */ +} SDL_ChromaLocation; + + +/* Colorspace definition */ + +/** + * A macro for defining custom SDL_Colorspace formats. + * + * For example, defining SDL_COLORSPACE_SRGB looks like this: + * + * ```c + * SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + * SDL_COLOR_RANGE_FULL, + * SDL_COLOR_PRIMARIES_BT709, + * SDL_TRANSFER_CHARACTERISTICS_SRGB, + * SDL_MATRIX_COEFFICIENTS_IDENTITY, + * SDL_CHROMA_LOCATION_NONE) + * ``` + * + * \param type the type of the new format, probably an SDL_ColorType value. + * \param range the range of the new format, probably a SDL_ColorRange value. + * \param primaries the primaries of the new format, probably an + * SDL_ColorPrimaries value. + * \param transfer the transfer characteristics of the new format, probably an + * SDL_TransferCharacteristics value. + * \param matrix the matrix coefficients of the new format, probably an + * SDL_MatrixCoefficients value. + * \param chroma the chroma sample location of the new format, probably an + * SDL_ChromaLocation value. + * \returns a format value in the style of SDL_Colorspace. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_COLORSPACE(type, range, primaries, transfer, matrix, chroma) \ + (((Uint32)(type) << 28) | ((Uint32)(range) << 24) | ((Uint32)(chroma) << 20) | \ + ((Uint32)(primaries) << 10) | ((Uint32)(transfer) << 5) | ((Uint32)(matrix) << 0)) + +/** + * A macro to retrieve the type of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ColorType for `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACETYPE(cspace) (SDL_ColorType)(((cspace) >> 28) & 0x0F) + +/** + * A macro to retrieve the range of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ColorRange of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACERANGE(cspace) (SDL_ColorRange)(((cspace) >> 24) & 0x0F) + +/** + * A macro to retrieve the chroma sample location of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ChromaLocation of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACECHROMA(cspace) (SDL_ChromaLocation)(((cspace) >> 20) & 0x0F) + +/** + * A macro to retrieve the primaries of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ColorPrimaries of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACEPRIMARIES(cspace) (SDL_ColorPrimaries)(((cspace) >> 10) & 0x1F) + +/** + * A macro to retrieve the transfer characteristics of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_TransferCharacteristics of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACETRANSFER(cspace) (SDL_TransferCharacteristics)(((cspace) >> 5) & 0x1F) + +/** + * A macro to retrieve the matrix coefficients of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_MatrixCoefficients of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACEMATRIX(cspace) (SDL_MatrixCoefficients)((cspace) & 0x1F) + +/** + * A macro to determine if an SDL_Colorspace uses BT601 (or BT470BG) matrix + * coefficients. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if BT601 or BT470BG, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_MATRIX_BT601(cspace) (SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT601 || SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT470BG) + +/** + * A macro to determine if an SDL_Colorspace uses BT709 matrix coefficients. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if BT709, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_MATRIX_BT709(cspace) (SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT709) + +/** + * A macro to determine if an SDL_Colorspace uses BT2020_NCL matrix + * coefficients. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if BT2020_NCL, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_MATRIX_BT2020_NCL(cspace) (SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT2020_NCL) + +/** + * A macro to determine if an SDL_Colorspace has a limited range. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if limited range, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_LIMITED_RANGE(cspace) (SDL_COLORSPACERANGE(cspace) != SDL_COLOR_RANGE_FULL) + +/** + * A macro to determine if an SDL_Colorspace has a full range. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if full range, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_FULL_RANGE(cspace) (SDL_COLORSPACERANGE(cspace) == SDL_COLOR_RANGE_FULL) + +/** + * Colorspace definitions. + * + * Since similar colorspaces may vary in their details (matrix, transfer + * function, etc.), this is not an exhaustive list, but rather a + * representative sample of the kinds of colorspaces supported in SDL. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_ColorPrimaries + * \sa SDL_ColorRange + * \sa SDL_ColorType + * \sa SDL_MatrixCoefficients + * \sa SDL_TransferCharacteristics + */ +typedef enum SDL_Colorspace +{ + SDL_COLORSPACE_UNKNOWN = 0, + + /* sRGB is a gamma corrected colorspace, and the default colorspace for SDL rendering and 8-bit RGB surfaces */ + SDL_COLORSPACE_SRGB = 0x120005a0u, /**< Equivalent to DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_SRGB, + SDL_MATRIX_COEFFICIENTS_IDENTITY, + SDL_CHROMA_LOCATION_NONE), */ + + /* This is a linear colorspace and the default colorspace for floating point surfaces. On Windows this is the scRGB colorspace, and on Apple platforms this is kCGColorSpaceExtendedLinearSRGB for EDR content */ + SDL_COLORSPACE_SRGB_LINEAR = 0x12000500u, /**< Equivalent to DXGI_COLOR_SPACE_RGB_FULL_G10_NONE_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_LINEAR, + SDL_MATRIX_COEFFICIENTS_IDENTITY, + SDL_CHROMA_LOCATION_NONE), */ + + /* HDR10 is a non-linear HDR colorspace and the default colorspace for 10-bit surfaces */ + SDL_COLORSPACE_HDR10 = 0x12002600u, /**< Equivalent to DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT2020, + SDL_TRANSFER_CHARACTERISTICS_PQ, + SDL_MATRIX_COEFFICIENTS_IDENTITY, + SDL_CHROMA_LOCATION_NONE), */ + + SDL_COLORSPACE_JPEG = 0x220004c6u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_FULL_G22_NONE_P709_X601 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_BT601, + SDL_MATRIX_COEFFICIENTS_BT601, + SDL_CHROMA_LOCATION_NONE), */ + + SDL_COLORSPACE_BT601_LIMITED = 0x211018c6u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_LIMITED, + SDL_COLOR_PRIMARIES_BT601, + SDL_TRANSFER_CHARACTERISTICS_BT601, + SDL_MATRIX_COEFFICIENTS_BT601, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT601_FULL = 0x221018c6u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT601, + SDL_TRANSFER_CHARACTERISTICS_BT601, + SDL_MATRIX_COEFFICIENTS_BT601, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT709_LIMITED = 0x21100421u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_LIMITED, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_BT709, + SDL_MATRIX_COEFFICIENTS_BT709, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT709_FULL = 0x22100421u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_BT709, + SDL_MATRIX_COEFFICIENTS_BT709, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT2020_LIMITED = 0x21102609u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P2020 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_LIMITED, + SDL_COLOR_PRIMARIES_BT2020, + SDL_TRANSFER_CHARACTERISTICS_PQ, + SDL_MATRIX_COEFFICIENTS_BT2020_NCL, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT2020_FULL = 0x22102609u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P2020 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT2020, + SDL_TRANSFER_CHARACTERISTICS_PQ, + SDL_MATRIX_COEFFICIENTS_BT2020_NCL, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_RGB_DEFAULT = SDL_COLORSPACE_SRGB, /**< The default colorspace for RGB surfaces if no colorspace is specified */ + SDL_COLORSPACE_YUV_DEFAULT = SDL_COLORSPACE_JPEG /**< The default colorspace for YUV surfaces if no colorspace is specified */ +} SDL_Colorspace; + +/** + * A structure that represents a color as RGBA components. + * + * The bits of this structure can be directly reinterpreted as an + * integer-packed color which uses the SDL_PIXELFORMAT_RGBA32 format + * (SDL_PIXELFORMAT_ABGR8888 on little-endian systems and + * SDL_PIXELFORMAT_RGBA8888 on big-endian systems). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Color +{ + Uint8 r; + Uint8 g; + Uint8 b; + Uint8 a; +} SDL_Color; + +/** + * The bits of this structure can be directly reinterpreted as a float-packed + * color which uses the SDL_PIXELFORMAT_RGBA128_FLOAT format + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_FColor +{ + float r; + float g; + float b; + float a; +} SDL_FColor; + +/** + * A set of indexed colors representing a palette. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_SetPaletteColors + */ +typedef struct SDL_Palette +{ + int ncolors; /**< number of elements in `colors`. */ + SDL_Color *colors; /**< an array of colors, `ncolors` long. */ + Uint32 version; /**< internal use only, do not touch. */ + int refcount; /**< internal use only, do not touch. */ +} SDL_Palette; + +/** + * Details about the format of a pixel. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PixelFormatDetails +{ + SDL_PixelFormat format; + Uint8 bits_per_pixel; + Uint8 bytes_per_pixel; + Uint8 padding[2]; + Uint32 Rmask; + Uint32 Gmask; + Uint32 Bmask; + Uint32 Amask; + Uint8 Rbits; + Uint8 Gbits; + Uint8 Bbits; + Uint8 Abits; + Uint8 Rshift; + Uint8 Gshift; + Uint8 Bshift; + Uint8 Ashift; +} SDL_PixelFormatDetails; + +/** + * Get the human readable name of a pixel format. + * + * \param format the pixel format to query. + * \returns the human readable name of the specified pixel format or + * "SDL_PIXELFORMAT_UNKNOWN" if the format isn't recognized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetPixelFormatName(SDL_PixelFormat format); + +/** + * Convert one of the enumerated pixel formats to a bpp value and RGBA masks. + * + * \param format one of the SDL_PixelFormat values. + * \param bpp a bits per pixel value; usually 15, 16, or 32. + * \param Rmask a pointer filled in with the red mask for the format. + * \param Gmask a pointer filled in with the green mask for the format. + * \param Bmask a pointer filled in with the blue mask for the format. + * \param Amask a pointer filled in with the alpha mask for the format. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatForMasks + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetMasksForPixelFormat(SDL_PixelFormat format, int *bpp, Uint32 *Rmask, Uint32 *Gmask, Uint32 *Bmask, Uint32 *Amask); + +/** + * Convert a bpp value and RGBA masks to an enumerated pixel format. + * + * This will return `SDL_PIXELFORMAT_UNKNOWN` if the conversion wasn't + * possible. + * + * \param bpp a bits per pixel value; usually 15, 16, or 32. + * \param Rmask the red mask for the format. + * \param Gmask the green mask for the format. + * \param Bmask the blue mask for the format. + * \param Amask the alpha mask for the format. + * \returns the SDL_PixelFormat value corresponding to the format masks, or + * SDL_PIXELFORMAT_UNKNOWN if there isn't a match. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMasksForPixelFormat + */ +extern SDL_DECLSPEC SDL_PixelFormat SDLCALL SDL_GetPixelFormatForMasks(int bpp, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask); + +/** + * Create an SDL_PixelFormatDetails structure corresponding to a pixel format. + * + * Returned structure may come from a shared global cache (i.e. not newly + * allocated), and hence should not be modified, especially the palette. Weird + * errors such as `Blit combination not supported` may occur. + * + * \param format one of the SDL_PixelFormat values. + * \returns a pointer to a SDL_PixelFormatDetails structure or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const SDL_PixelFormatDetails * SDLCALL SDL_GetPixelFormatDetails(SDL_PixelFormat format); + +/** + * Create a palette structure with the specified number of color entries. + * + * The palette entries are initialized to white. + * + * \param ncolors represents the number of color entries in the color palette. + * \returns a new SDL_Palette structure on success or NULL on failure (e.g. if + * there wasn't enough memory); call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyPalette + * \sa SDL_SetPaletteColors + * \sa SDL_SetSurfacePalette + */ +extern SDL_DECLSPEC SDL_Palette * SDLCALL SDL_CreatePalette(int ncolors); + +/** + * Set a range of colors in a palette. + * + * \param palette the SDL_Palette structure to modify. + * \param colors an array of SDL_Color structures to copy into the palette. + * \param firstcolor the index of the first palette entry to modify. + * \param ncolors the number of entries to modify. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified or destroyed in another thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPaletteColors(SDL_Palette *palette, const SDL_Color *colors, int firstcolor, int ncolors); + +/** + * Free a palette created with SDL_CreatePalette(). + * + * \param palette the SDL_Palette structure to be freed. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified or destroyed in another thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePalette + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyPalette(SDL_Palette *palette); + +/** + * Map an RGB triple to an opaque pixel value for a given pixel format. + * + * This function maps the RGB color value to the specified pixel format and + * returns the pixel value best approximating the given RGB color value for + * the given pixel format. + * + * If the format has a palette (8-bit) the index of the closest matching color + * in the palette will be returned. + * + * If the specified pixel format has an alpha component it will be returned as + * all 1 bits (fully opaque). + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGB + * \sa SDL_MapRGBA + * \sa SDL_MapSurfaceRGB + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapRGB(const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 r, Uint8 g, Uint8 b); + +/** + * Map an RGBA quadruple to a pixel value for a given pixel format. + * + * This function maps the RGBA color value to the specified pixel format and + * returns the pixel value best approximating the given RGBA color value for + * the given pixel format. + * + * If the specified pixel format has no alpha component the alpha value will + * be ignored (as it will be in formats with a palette). + * + * If the format has a palette (8-bit) the index of the closest matching color + * in the palette will be returned. + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \param a the alpha component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGBA + * \sa SDL_MapRGB + * \sa SDL_MapSurfaceRGBA + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapRGBA(const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Get RGB values from a pixel in the specified format. + * + * This function uses the entire 8-bit [0..255] range when converting color + * components from pixel formats with less than 8-bits per RGB component + * (e.g., a completely white pixel in 16-bit RGB565 format would return [0xff, + * 0xff, 0xff] not [0xf8, 0xfc, 0xf8]). + * + * \param pixel a pixel value. + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r a pointer filled in with the red component, may be NULL. + * \param g a pointer filled in with the green component, may be NULL. + * \param b a pointer filled in with the blue component, may be NULL. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGBA + * \sa SDL_MapRGB + * \sa SDL_MapRGBA + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetRGB(Uint32 pixel, const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 *r, Uint8 *g, Uint8 *b); + +/** + * Get RGBA values from a pixel in the specified format. + * + * This function uses the entire 8-bit [0..255] range when converting color + * components from pixel formats with less than 8-bits per RGB component + * (e.g., a completely white pixel in 16-bit RGB565 format would return [0xff, + * 0xff, 0xff] not [0xf8, 0xfc, 0xf8]). + * + * If the surface has no alpha component, the alpha will be returned as 0xff + * (100% opaque). + * + * \param pixel a pixel value. + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r a pointer filled in with the red component, may be NULL. + * \param g a pointer filled in with the green component, may be NULL. + * \param b a pointer filled in with the blue component, may be NULL. + * \param a a pointer filled in with the alpha component, may be NULL. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGB + * \sa SDL_MapRGB + * \sa SDL_MapRGBA + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel, const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_pixels_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_platform.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_platform.h new file mode 100644 index 0000000..e40f009 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_platform.h @@ -0,0 +1,64 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryPlatform + * + * SDL provides a means to identify the app's platform, both at compile time + * and runtime. + */ + +#ifndef SDL_platform_h_ +#define SDL_platform_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Get the name of the platform. + * + * Here are the names returned for some (but not all) supported platforms: + * + * - "Windows" + * - "macOS" + * - "Linux" + * - "iOS" + * - "Android" + * + * \returns the name of the platform. If the correct platform name is not + * available, returns a string beginning with the text "Unknown". + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetPlatform(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_platform_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_platform_defines.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_platform_defines.h new file mode 100644 index 0000000..6b240a8 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_platform_defines.h @@ -0,0 +1,476 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Platform */ + +/* + * SDL_platform_defines.h tries to get a standard set of platform defines. + */ + +#ifndef SDL_platform_defines_h_ +#define SDL_platform_defines_h_ + +#ifdef _AIX + +/** + * A preprocessor macro that is only defined if compiling for AIX. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_AIX 1 +#endif + +#ifdef __HAIKU__ + +/** + * A preprocessor macro that is only defined if compiling for Haiku OS. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_HAIKU 1 +#endif + +#if defined(bsdi) || defined(__bsdi) || defined(__bsdi__) + +/** + * A preprocessor macro that is only defined if compiling for BSDi + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_BSDI 1 +#endif + +#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) + +/** + * A preprocessor macro that is only defined if compiling for FreeBSD. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_FREEBSD 1 +#endif + +#if defined(hpux) || defined(__hpux) || defined(__hpux__) + +/** + * A preprocessor macro that is only defined if compiling for HP-UX. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_HPUX 1 +#endif + +#if defined(sgi) || defined(__sgi) || defined(__sgi__) || defined(_SGI_SOURCE) + +/** + * A preprocessor macro that is only defined if compiling for IRIX. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_IRIX 1 +#endif + +#if (defined(linux) || defined(__linux) || defined(__linux__)) + +/** + * A preprocessor macro that is only defined if compiling for Linux. + * + * Note that Android, although ostensibly a Linux-based system, will not + * define this. It defines SDL_PLATFORM_ANDROID instead. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_LINUX 1 +#endif + +#if defined(ANDROID) || defined(__ANDROID__) + +/** + * A preprocessor macro that is only defined if compiling for Android. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_ANDROID 1 +#undef SDL_PLATFORM_LINUX +#endif + +#if defined(__unix__) || defined(__unix) || defined(unix) + +/** + * A preprocessor macro that is only defined if compiling for a Unix-like + * system. + * + * Other platforms, like Linux, might define this in addition to their primary + * define. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_UNIX 1 +#endif + +#ifdef __APPLE__ + +/** + * A preprocessor macro that is only defined if compiling for Apple platforms. + * + * iOS, macOS, etc will additionally define a more specific platform macro. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_MACOS + * \sa SDL_PLATFORM_IOS + * \sa SDL_PLATFORM_TVOS + * \sa SDL_PLATFORM_VISIONOS + */ +#define SDL_PLATFORM_APPLE 1 + +/* lets us know what version of macOS we're compiling on */ +#include +#ifndef __has_extension /* Older compilers don't support this */ + #define __has_extension(x) 0 + #include + #undef __has_extension +#else + #include +#endif + +/* Fix building with older SDKs that don't define these + See this for more information: + https://stackoverflow.com/questions/12132933/preprocessor-macro-for-os-x-targets +*/ +#ifndef TARGET_OS_MACCATALYST + #define TARGET_OS_MACCATALYST 0 +#endif +#ifndef TARGET_OS_IOS + #define TARGET_OS_IOS 0 +#endif +#ifndef TARGET_OS_IPHONE + #define TARGET_OS_IPHONE 0 +#endif +#ifndef TARGET_OS_TV + #define TARGET_OS_TV 0 +#endif +#ifndef TARGET_OS_SIMULATOR + #define TARGET_OS_SIMULATOR 0 +#endif +#ifndef TARGET_OS_VISION + #define TARGET_OS_VISION 0 +#endif + +#if TARGET_OS_TV + +/** + * A preprocessor macro that is only defined if compiling for tvOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_TVOS 1 +#endif + +#if TARGET_OS_VISION + +/** + * A preprocessor macro that is only defined if compiling for VisionOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_VISIONOS 1 +#endif + +#if TARGET_OS_IPHONE + +/** + * A preprocessor macro that is only defined if compiling for iOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_IOS 1 + +#else + +/** + * A preprocessor macro that is only defined if compiling for macOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_MACOS 1 + +#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070 + #error SDL for macOS only supports deploying on 10.7 and above. +#endif /* MAC_OS_X_VERSION_MIN_REQUIRED < 1070 */ +#endif /* TARGET_OS_IPHONE */ +#endif /* defined(__APPLE__) */ + +#ifdef __EMSCRIPTEN__ + +/** + * A preprocessor macro that is only defined if compiling for Emscripten. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_EMSCRIPTEN 1 +#endif + +#ifdef __NetBSD__ + +/** + * A preprocessor macro that is only defined if compiling for NetBSD. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_NETBSD 1 +#endif + +#ifdef __OpenBSD__ + +/** + * A preprocessor macro that is only defined if compiling for OpenBSD. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_OPENBSD 1 +#endif + +#if defined(__OS2__) || defined(__EMX__) + +/** + * A preprocessor macro that is only defined if compiling for OS/2. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_OS2 1 +#endif + +#if defined(osf) || defined(__osf) || defined(__osf__) || defined(_OSF_SOURCE) + +/** + * A preprocessor macro that is only defined if compiling for Tru64 (OSF/1). + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_OSF 1 +#endif + +#ifdef __QNXNTO__ + +/** + * A preprocessor macro that is only defined if compiling for QNX Neutrino. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_QNXNTO 1 +#endif + +#if defined(riscos) || defined(__riscos) || defined(__riscos__) + +/** + * A preprocessor macro that is only defined if compiling for RISC OS. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_RISCOS 1 +#endif + +#if defined(__sun) && defined(__SVR4) + +/** + * A preprocessor macro that is only defined if compiling for SunOS/Solaris. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_SOLARIS 1 +#endif + +#if defined(__CYGWIN__) + +/** + * A preprocessor macro that is only defined if compiling for Cygwin. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_CYGWIN 1 +#endif + +#if defined(_WIN32) || defined(SDL_PLATFORM_CYGWIN) + +/** + * A preprocessor macro that is only defined if compiling for Windows. + * + * This also covers several other platforms, like Microsoft GDK, Xbox, WinRT, + * etc. Each will have their own more-specific platform macros, too. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_WIN32 + * \sa SDL_PLATFORM_XBOXONE + * \sa SDL_PLATFORM_XBOXSERIES + * \sa SDL_PLATFORM_WINGDK + * \sa SDL_PLATFORM_GDK + */ +#define SDL_PLATFORM_WINDOWS 1 + +/* Try to find out if we're compiling for WinRT, GDK or non-WinRT/GDK */ +#if defined(_MSC_VER) && defined(__has_include) + #if __has_include() + #define HAVE_WINAPIFAMILY_H 1 + #else + #define HAVE_WINAPIFAMILY_H 0 + #endif + + /* If _USING_V110_SDK71_ is defined it means we are using the Windows XP toolset. */ +#elif defined(_MSC_VER) && (_MSC_VER >= 1700 && !_USING_V110_SDK71_) /* _MSC_VER == 1700 for Visual Studio 2012 */ + #define HAVE_WINAPIFAMILY_H 1 +#else + #define HAVE_WINAPIFAMILY_H 0 +#endif + +#if HAVE_WINAPIFAMILY_H + #include + #define WINAPI_FAMILY_WINRT (!WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) && WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)) +#else + #define WINAPI_FAMILY_WINRT 0 +#endif /* HAVE_WINAPIFAMILY_H */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A preprocessor macro that defined to 1 if compiling for Windows Phone. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINAPI_FAMILY_PHONE (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP) + +#elif defined(HAVE_WINAPIFAMILY_H) && HAVE_WINAPIFAMILY_H + #define SDL_WINAPI_FAMILY_PHONE (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP) +#else + #define SDL_WINAPI_FAMILY_PHONE 0 +#endif + +#if WINAPI_FAMILY_WINRT +#error Windows RT/UWP is no longer supported in SDL + +#elif defined(_GAMING_DESKTOP) /* GDK project configuration always defines _GAMING_XXX */ + +/** + * A preprocessor macro that is only defined if compiling for Microsoft GDK + * for Windows. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_WINGDK 1 + +#elif defined(_GAMING_XBOX_XBOXONE) + +/** + * A preprocessor macro that is only defined if compiling for Xbox One. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_XBOXONE 1 + +#elif defined(_GAMING_XBOX_SCARLETT) + +/** + * A preprocessor macro that is only defined if compiling for Xbox Series. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_XBOXSERIES 1 + +#else + +/** + * A preprocessor macro that is only defined if compiling for desktop Windows. + * + * Despite the "32", this also covers 64-bit Windows; as an informal + * convention, its system layer tends to still be referred to as "the Win32 + * API." + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_WIN32 1 + +#endif +#endif /* defined(_WIN32) || defined(SDL_PLATFORM_CYGWIN) */ + + +/* This is to support generic "any GDK" separate from a platform-specific GDK */ +#if defined(SDL_PLATFORM_WINGDK) || defined(SDL_PLATFORM_XBOXONE) || defined(SDL_PLATFORM_XBOXSERIES) + +/** + * A preprocessor macro that is only defined if compiling for Microsoft GDK on + * any platform. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_GDK 1 +#endif + +#if defined(__PSP__) || defined(__psp__) + +/** + * A preprocessor macro that is only defined if compiling for Sony PSP. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_PSP 1 +#endif + +#if defined(__PS2__) || defined(PS2) + +/** + * A preprocessor macro that is only defined if compiling for Sony PlayStation + * 2. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_PS2 1 +#endif + +#if defined(__vita__) || defined(__psp2__) + +/** + * A preprocessor macro that is only defined if compiling for Sony Vita. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_VITA 1 +#endif + +#ifdef __3DS__ + +/** + * A preprocessor macro that is only defined if compiling for Nintendo 3DS. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_3DS 1 +#endif + +#endif /* SDL_platform_defines_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_power.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_power.h new file mode 100644 index 0000000..694fb09 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_power.h @@ -0,0 +1,106 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_power_h_ +#define SDL_power_h_ + +/** + * # CategoryPower + * + * SDL power management routines. + * + * There is a single function in this category: SDL_GetPowerInfo(). + * + * This function is useful for games on the go. This allows an app to know if + * it's running on a draining battery, which can be useful if the app wants to + * reduce processing, or perhaps framerate, to extend the duration of the + * battery's charge. Perhaps the app just wants to show a battery meter when + * fullscreen, or alert the user when the power is getting extremely low, so + * they can save their game. + */ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The basic state for the system's power supply. + * + * These are results returned by SDL_GetPowerInfo(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PowerState +{ + SDL_POWERSTATE_ERROR = -1, /**< error determining power status */ + SDL_POWERSTATE_UNKNOWN, /**< cannot determine power status */ + SDL_POWERSTATE_ON_BATTERY, /**< Not plugged in, running on the battery */ + SDL_POWERSTATE_NO_BATTERY, /**< Plugged in, no battery available */ + SDL_POWERSTATE_CHARGING, /**< Plugged in, charging battery */ + SDL_POWERSTATE_CHARGED /**< Plugged in, battery charged */ +} SDL_PowerState; + +/** + * Get the current power supply details. + * + * You should never take a battery status as absolute truth. Batteries + * (especially failing batteries) are delicate hardware, and the values + * reported here are best estimates based on what that hardware reports. It's + * not uncommon for older batteries to lose stored power much faster than it + * reports, or completely drain when reporting it has 20 percent left, etc. + * + * Battery status can change at any time; if you are concerned with power + * state, you should call this function frequently, and perhaps ignore changes + * until they seem to be stable for a few seconds. + * + * It's possible a platform can only report battery percentage or time left + * but not both. + * + * On some platforms, retrieving power supply details might be expensive. If + * you want to display continuous status you could call this function every + * minute or so. + * + * \param seconds a pointer filled in with the seconds of battery life left, + * or NULL to ignore. This will be filled in with -1 if we + * can't determine a value or there is no battery. + * \param percent a pointer filled in with the percentage of battery life + * left, between 0 and 100, or NULL to ignore. This will be + * filled in with -1 we can't determine a value or there is no + * battery. + * \returns the current battery state or `SDL_POWERSTATE_ERROR` on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PowerState SDLCALL SDL_GetPowerInfo(int *seconds, int *percent); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_power_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_process.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_process.h new file mode 100644 index 0000000..511b2f9 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_process.h @@ -0,0 +1,430 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryProcess + * + * Process control support. + * + * These functions provide a cross-platform way to spawn and manage OS-level + * processes. + * + * You can create a new subprocess with SDL_CreateProcess() and optionally + * read and write to it using SDL_ReadProcess() or SDL_GetProcessInput() and + * SDL_GetProcessOutput(). If more advanced functionality like chaining input + * between processes is necessary, you can use + * SDL_CreateProcessWithProperties(). + * + * You can get the status of a created process with SDL_WaitProcess(), or + * terminate the process with SDL_KillProcess(). + * + * Don't forget to call SDL_DestroyProcess() to clean up, whether the process + * process was killed, terminated on its own, or is still running! + */ + +#ifndef SDL_process_h_ +#define SDL_process_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque handle representing a system process. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + */ +typedef struct SDL_Process SDL_Process; + +/** + * Create a new process. + * + * The path to the executable is supplied in args[0]. args[1..N] are + * additional arguments passed on the command line of the new process, and the + * argument list should be terminated with a NULL, e.g.: + * + * ```c + * const char *args[] = { "myprogram", "argument", NULL }; + * ``` + * + * Setting pipe_stdio to true is equivalent to setting + * `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` and + * `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` to `SDL_PROCESS_STDIO_APP`, and + * will allow the use of SDL_ReadProcess() or SDL_GetProcessInput() and + * SDL_GetProcessOutput(). + * + * See SDL_CreateProcessWithProperties() for more details. + * + * \param args the path and arguments for the new process. + * \param pipe_stdio true to create pipes to the process's standard input and + * from the process's standard output, false for the process + * to have no input and inherit the application's standard + * output. + * \returns the newly created and running process, or NULL if the process + * couldn't be created. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessProperties + * \sa SDL_ReadProcess + * \sa SDL_GetProcessInput + * \sa SDL_GetProcessOutput + * \sa SDL_KillProcess + * \sa SDL_WaitProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC SDL_Process * SDLCALL SDL_CreateProcess(const char * const *args, bool pipe_stdio); + +/** + * Description of where standard I/O should be directed when creating a + * process. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_INHERITED, it will go + * to the same place as the application's I/O stream. This is the default for + * standard output and standard error. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_NULL, it is connected + * to `NUL:` on Windows and `/dev/null` on POSIX systems. This is the default + * for standard input. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_APP, it is connected + * to a new SDL_IOStream that is available to the application. Standard input + * will be available as `SDL_PROP_PROCESS_STDIN_POINTER` and allows + * SDL_GetProcessInput(), standard output will be available as + * `SDL_PROP_PROCESS_STDOUT_POINTER` and allows SDL_ReadProcess() and + * SDL_GetProcessOutput(), and standard error will be available as + * `SDL_PROP_PROCESS_STDERR_POINTER` in the properties for the created + * process. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_REDIRECT, it is + * connected to an existing SDL_IOStream provided by the application. Standard + * input is provided using `SDL_PROP_PROCESS_CREATE_STDIN_POINTER`, standard + * output is provided using `SDL_PROP_PROCESS_CREATE_STDOUT_POINTER`, and + * standard error is provided using `SDL_PROP_PROCESS_CREATE_STDERR_POINTER` + * in the creation properties. These existing streams should be closed by the + * application once the new process is created. + * + * In order to use an SDL_IOStream with SDL_PROCESS_STDIO_REDIRECT, it must + * have `SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER` or + * `SDL_PROP_IOSTREAM_FILE_DESCRIPTOR_NUMBER` set. This is true for streams + * representing files and process I/O. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessProperties + * \sa SDL_ReadProcess + * \sa SDL_GetProcessInput + * \sa SDL_GetProcessOutput + */ +typedef enum SDL_ProcessIO +{ + SDL_PROCESS_STDIO_INHERITED, /**< The I/O stream is inherited from the application. */ + SDL_PROCESS_STDIO_NULL, /**< The I/O stream is ignored. */ + SDL_PROCESS_STDIO_APP, /**< The I/O stream is connected to a new SDL_IOStream that the application can read or write */ + SDL_PROCESS_STDIO_REDIRECT /**< The I/O stream is redirected to an existing SDL_IOStream. */ +} SDL_ProcessIO; + +/** + * Create a new process with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_PROCESS_CREATE_ARGS_POINTER`: an array of strings containing + * the program to run, any arguments, and a NULL pointer, e.g. const char + * *args[] = { "myprogram", "argument", NULL }. This is a required property. + * - `SDL_PROP_PROCESS_CREATE_ENVIRONMENT_POINTER`: an SDL_Environment + * pointer. If this property is set, it will be the entire environment for + * the process, otherwise the current environment is used. + * - `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER`: an SDL_ProcessIO value describing + * where standard input for the process comes from, defaults to + * `SDL_PROCESS_STDIO_NULL`. + * - `SDL_PROP_PROCESS_CREATE_STDIN_POINTER`: an SDL_IOStream pointer used for + * standard input when `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` is set to + * `SDL_PROCESS_STDIO_REDIRECT`. + * - `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER`: an SDL_ProcessIO value + * describing where standard output for the process goes to, defaults to + * `SDL_PROCESS_STDIO_INHERITED`. + * - `SDL_PROP_PROCESS_CREATE_STDOUT_POINTER`: an SDL_IOStream pointer used + * for standard output when `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` is set + * to `SDL_PROCESS_STDIO_REDIRECT`. + * - `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER`: an SDL_ProcessIO value + * describing where standard error for the process goes to, defaults to + * `SDL_PROCESS_STDIO_INHERITED`. + * - `SDL_PROP_PROCESS_CREATE_STDERR_POINTER`: an SDL_IOStream pointer used + * for standard error when `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER` is set to + * `SDL_PROCESS_STDIO_REDIRECT`. + * - `SDL_PROP_PROCESS_CREATE_STDERR_TO_STDOUT_BOOLEAN`: true if the error + * output of the process should be redirected into the standard output of + * the process. This property has no effect if + * `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER` is set. + * - `SDL_PROP_PROCESS_CREATE_BACKGROUND_BOOLEAN`: true if the process should + * run in the background. In this case the default input and output is + * `SDL_PROCESS_STDIO_NULL` and the exitcode of the process is not + * available, and will always be 0. + * + * On POSIX platforms, wait() and waitpid(-1, ...) should not be called, and + * SIGCHLD should not be ignored or handled because those would prevent SDL + * from properly tracking the lifetime of the underlying process. You should + * use SDL_WaitProcess() instead. + * + * \param props the properties to use. + * \returns the newly created and running process, or NULL if the process + * couldn't be created. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_GetProcessProperties + * \sa SDL_ReadProcess + * \sa SDL_GetProcessInput + * \sa SDL_GetProcessOutput + * \sa SDL_KillProcess + * \sa SDL_WaitProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC SDL_Process * SDLCALL SDL_CreateProcessWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_PROCESS_CREATE_ARGS_POINTER "SDL.process.create.args" +#define SDL_PROP_PROCESS_CREATE_ENVIRONMENT_POINTER "SDL.process.create.environment" +#define SDL_PROP_PROCESS_CREATE_STDIN_NUMBER "SDL.process.create.stdin_option" +#define SDL_PROP_PROCESS_CREATE_STDIN_POINTER "SDL.process.create.stdin_source" +#define SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER "SDL.process.create.stdout_option" +#define SDL_PROP_PROCESS_CREATE_STDOUT_POINTER "SDL.process.create.stdout_source" +#define SDL_PROP_PROCESS_CREATE_STDERR_NUMBER "SDL.process.create.stderr_option" +#define SDL_PROP_PROCESS_CREATE_STDERR_POINTER "SDL.process.create.stderr_source" +#define SDL_PROP_PROCESS_CREATE_STDERR_TO_STDOUT_BOOLEAN "SDL.process.create.stderr_to_stdout" +#define SDL_PROP_PROCESS_CREATE_BACKGROUND_BOOLEAN "SDL.process.create.background" + +/** + * Get the properties associated with a process. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_PROCESS_PID_NUMBER`: the process ID of the process. + * - `SDL_PROP_PROCESS_STDIN_POINTER`: an SDL_IOStream that can be used to + * write input to the process, if it was created with + * `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * - `SDL_PROP_PROCESS_STDOUT_POINTER`: a non-blocking SDL_IOStream that can + * be used to read output from the process, if it was created with + * `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * - `SDL_PROP_PROCESS_STDERR_POINTER`: a non-blocking SDL_IOStream that can + * be used to read error output from the process, if it was created with + * `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * - `SDL_PROP_PROCESS_BACKGROUND_BOOLEAN`: true if the process is running in + * the background. + * + * \param process the process to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetProcessProperties(SDL_Process *process); + +#define SDL_PROP_PROCESS_PID_NUMBER "SDL.process.pid" +#define SDL_PROP_PROCESS_STDIN_POINTER "SDL.process.stdin" +#define SDL_PROP_PROCESS_STDOUT_POINTER "SDL.process.stdout" +#define SDL_PROP_PROCESS_STDERR_POINTER "SDL.process.stderr" +#define SDL_PROP_PROCESS_BACKGROUND_BOOLEAN "SDL.process.background" + +/** + * Read all the output from a process. + * + * If a process was created with I/O enabled, you can use this function to + * read the output. This function blocks until the process is complete, + * capturing all output, and providing the process exit code. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in the value reported via + * `datasize`. + * + * The data should be freed with SDL_free(). + * + * \param process The process to read. + * \param datasize a pointer filled in with the number of bytes read, may be + * NULL. + * \param exitcode a pointer filled in with the process exit code if the + * process has exited, may be NULL. + * \returns the data or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC void * SDLCALL SDL_ReadProcess(SDL_Process *process, size_t *datasize, int *exitcode); + +/** + * Get the SDL_IOStream associated with process standard input. + * + * The process must have been created with SDL_CreateProcess() and pipe_stdio + * set to true, or with SDL_CreateProcessWithProperties() and + * `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * + * Writing to this stream can return less data than expected if the process + * hasn't read its input. It may be blocked waiting for its output to be read, + * if so you may need to call SDL_GetProcessOutput() and read the output in + * parallel with writing input. + * + * \param process The process to get the input stream for. + * \returns the input stream or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessOutput + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_GetProcessInput(SDL_Process *process); + +/** + * Get the SDL_IOStream associated with process standard output. + * + * The process must have been created with SDL_CreateProcess() and pipe_stdio + * set to true, or with SDL_CreateProcessWithProperties() and + * `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * + * Reading from this stream can return 0 with SDL_GetIOStatus() returning + * SDL_IO_STATUS_NOT_READY if no output is available yet. + * + * \param process The process to get the output stream for. + * \returns the output stream or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessInput + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_GetProcessOutput(SDL_Process *process); + +/** + * Stop a process. + * + * \param process The process to stop. + * \param force true to terminate the process immediately, false to try to + * stop the process gracefully. In general you should try to stop + * the process gracefully first as terminating a process may + * leave it with half-written data or in some other unstable + * state. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_WaitProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC bool SDLCALL SDL_KillProcess(SDL_Process *process, bool force); + +/** + * Wait for a process to finish. + * + * This can be called multiple times to get the status of a process. + * + * The exit code will be the exit code of the process if it terminates + * normally, a negative signal if it terminated due to a signal, or -255 + * otherwise. It will not be changed if the process is still running. + * + * If you create a process with standard output piped to the application + * (`pipe_stdio` being true) then you should read all of the process output + * before calling SDL_WaitProcess(). If you don't do this the process might be + * blocked indefinitely waiting for output to be read and SDL_WaitProcess() + * will never return true; + * + * \param process The process to wait for. + * \param block If true, block until the process finishes; otherwise, report + * on the process' status. + * \param exitcode a pointer filled in with the process exit code if the + * process has exited, may be NULL. + * \returns true if the process exited, false otherwise. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_KillProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitProcess(SDL_Process *process, bool block, int *exitcode); + +/** + * Destroy a previously created process object. + * + * Note that this does not stop the process, just destroys the SDL object used + * to track it. If you want to stop the process you should use + * SDL_KillProcess(). + * + * \param process The process object to destroy. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_KillProcess + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyProcess(SDL_Process *process); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_process_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_properties.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_properties.h new file mode 100644 index 0000000..1f47d5f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_properties.h @@ -0,0 +1,543 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryProperties + * + * A property is a variable that can be created and retrieved by name at + * runtime. + * + * All properties are part of a property group (SDL_PropertiesID). A property + * group can be created with the SDL_CreateProperties function and destroyed + * with the SDL_DestroyProperties function. + * + * Properties can be added to and retrieved from a property group through the + * following functions: + * + * - SDL_SetPointerProperty and SDL_GetPointerProperty operate on `void*` + * pointer types. + * - SDL_SetStringProperty and SDL_GetStringProperty operate on string types. + * - SDL_SetNumberProperty and SDL_GetNumberProperty operate on signed 64-bit + * integer types. + * - SDL_SetFloatProperty and SDL_GetFloatProperty operate on floating point + * types. + * - SDL_SetBooleanProperty and SDL_GetBooleanProperty operate on boolean + * types. + * + * Properties can be removed from a group by using SDL_ClearProperty. + */ + + +#ifndef SDL_properties_h_ +#define SDL_properties_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SDL properties ID + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_PropertiesID; + +/** + * SDL property type + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PropertyType +{ + SDL_PROPERTY_TYPE_INVALID, + SDL_PROPERTY_TYPE_POINTER, + SDL_PROPERTY_TYPE_STRING, + SDL_PROPERTY_TYPE_NUMBER, + SDL_PROPERTY_TYPE_FLOAT, + SDL_PROPERTY_TYPE_BOOLEAN +} SDL_PropertyType; + +/** + * Get the global SDL properties. + * + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetGlobalProperties(void); + +/** + * Create a group of properties. + * + * All properties are automatically destroyed when SDL_Quit() is called. + * + * \returns an ID for a new group of properties, or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyProperties + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_CreateProperties(void); + +/** + * Copy a group of properties. + * + * Copy all the properties from one group of properties to another, with the + * exception of properties requiring cleanup (set using + * SDL_SetPointerPropertyWithCleanup()), which will not be copied. Any + * property that already exists on `dst` will be overwritten. + * + * \param src the properties to copy. + * \param dst the destination properties. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CopyProperties(SDL_PropertiesID src, SDL_PropertiesID dst); + +/** + * Lock a group of properties. + * + * Obtain a multi-threaded lock for these properties. Other threads will wait + * while trying to lock these properties until they are unlocked. Properties + * must be unlocked before they are destroyed. + * + * The lock is automatically taken when setting individual properties, this + * function is only needed when you want to set several properties atomically + * or want to guarantee that properties being queried aren't freed in another + * thread. + * + * \param props the properties to lock. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UnlockProperties + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockProperties(SDL_PropertiesID props); + +/** + * Unlock a group of properties. + * + * \param props the properties to unlock. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockProperties(SDL_PropertiesID props); + +/** + * A callback used to free resources when a property is deleted. + * + * This should release any resources associated with `value` that are no + * longer needed. + * + * This callback is set per-property. Different properties in the same group + * can have different cleanup callbacks. + * + * This callback will be called _during_ SDL_SetPointerPropertyWithCleanup if + * the function fails for any reason. + * + * \param userdata an app-defined pointer passed to the callback. + * \param value the pointer assigned to the property to clean up. + * + * \threadsafety This callback may fire without any locks held; if this is a + * concern, the app should provide its own locking. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetPointerPropertyWithCleanup + */ +typedef void (SDLCALL *SDL_CleanupPropertyCallback)(void *userdata, void *value); + +/** + * Set a pointer property in a group of properties with a cleanup function + * that is called when the property is deleted. + * + * The cleanup function is also called if setting the property fails for any + * reason. + * + * For simply setting basic data types, like numbers, bools, or strings, use + * SDL_SetNumberProperty, SDL_SetBooleanProperty, or SDL_SetStringProperty + * instead, as those functions will handle cleanup on your behalf. This + * function is only for more complex, custom data. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property, or NULL to delete the property. + * \param cleanup the function to call when this property is deleted, or NULL + * if no cleanup is necessary. + * \param userdata a pointer that is passed to the cleanup function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPointerProperty + * \sa SDL_SetPointerProperty + * \sa SDL_CleanupPropertyCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPointerPropertyWithCleanup(SDL_PropertiesID props, const char *name, void *value, SDL_CleanupPropertyCallback cleanup, void *userdata); + +/** + * Set a pointer property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property, or NULL to delete the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPointerProperty + * \sa SDL_HasProperty + * \sa SDL_SetBooleanProperty + * \sa SDL_SetFloatProperty + * \sa SDL_SetNumberProperty + * \sa SDL_SetPointerPropertyWithCleanup + * \sa SDL_SetStringProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPointerProperty(SDL_PropertiesID props, const char *name, void *value); + +/** + * Set a string property in a group of properties. + * + * This function makes a copy of the string; the caller does not have to + * preserve the data after this call completes. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property, or NULL to delete the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetStringProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetStringProperty(SDL_PropertiesID props, const char *name, const char *value); + +/** + * Set an integer property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumberProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetNumberProperty(SDL_PropertiesID props, const char *name, Sint64 value); + +/** + * Set a floating point property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetFloatProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetFloatProperty(SDL_PropertiesID props, const char *name, float value); + +/** + * Set a boolean property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetBooleanProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetBooleanProperty(SDL_PropertiesID props, const char *name, bool value); + +/** + * Return whether a property exists in a group of properties. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \returns true if the property exists, or false if it doesn't. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasProperty(SDL_PropertiesID props, const char *name); + +/** + * Get the type of a property in a group of properties. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \returns the type of the property, or SDL_PROPERTY_TYPE_INVALID if it is + * not set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasProperty + */ +extern SDL_DECLSPEC SDL_PropertyType SDLCALL SDL_GetPropertyType(SDL_PropertiesID props, const char *name); + +/** + * Get a pointer property from a group of properties. + * + * By convention, the names of properties that SDL exposes on objects will + * start with "SDL.", and properties that SDL uses internally will start with + * "SDL.internal.". These should be considered read-only and should not be + * modified by applications. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a pointer property. + * + * \threadsafety It is safe to call this function from any thread, although + * the data returned is not protected and could potentially be + * freed if you call SDL_SetPointerProperty() or + * SDL_ClearProperty() on these properties from another thread. + * If you need to avoid this, use SDL_LockProperties() and + * SDL_UnlockProperties(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetBooleanProperty + * \sa SDL_GetFloatProperty + * \sa SDL_GetNumberProperty + * \sa SDL_GetPropertyType + * \sa SDL_GetStringProperty + * \sa SDL_HasProperty + * \sa SDL_SetPointerProperty + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetPointerProperty(SDL_PropertiesID props, const char *name, void *default_value); + +/** + * Get a string property from a group of properties. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a string property. + * + * \threadsafety It is safe to call this function from any thread, although + * the data returned is not protected and could potentially be + * freed if you call SDL_SetStringProperty() or + * SDL_ClearProperty() on these properties from another thread. + * If you need to avoid this, use SDL_LockProperties() and + * SDL_UnlockProperties(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetStringProperty + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetStringProperty(SDL_PropertiesID props, const char *name, const char *default_value); + +/** + * Get a number property from a group of properties. + * + * You can use SDL_GetPropertyType() to query whether the property exists and + * is a number property. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a number property. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetNumberProperty + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_GetNumberProperty(SDL_PropertiesID props, const char *name, Sint64 default_value); + +/** + * Get a floating point property from a group of properties. + * + * You can use SDL_GetPropertyType() to query whether the property exists and + * is a floating point property. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a float property. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetFloatProperty + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetFloatProperty(SDL_PropertiesID props, const char *name, float default_value); + +/** + * Get a boolean property from a group of properties. + * + * You can use SDL_GetPropertyType() to query whether the property exists and + * is a boolean property. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a boolean property. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetBooleanProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetBooleanProperty(SDL_PropertiesID props, const char *name, bool default_value); + +/** + * Clear a property from a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to clear. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearProperty(SDL_PropertiesID props, const char *name); + +/** + * A callback used to enumerate all the properties in a group of properties. + * + * This callback is called from SDL_EnumerateProperties(), and is called once + * per property in the set. + * + * \param userdata an app-defined pointer passed to the callback. + * \param props the SDL_PropertiesID that is being enumerated. + * \param name the next property name in the enumeration. + * + * \threadsafety SDL_EnumerateProperties holds a lock on `props` during this + * callback. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EnumerateProperties + */ +typedef void (SDLCALL *SDL_EnumeratePropertiesCallback)(void *userdata, SDL_PropertiesID props, const char *name); + +/** + * Enumerate the properties contained in a group of properties. + * + * The callback function is called for each property in the group of + * properties. The properties are locked during enumeration. + * + * \param props the properties to query. + * \param callback the function to call for each property. + * \param userdata a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnumerateProperties(SDL_PropertiesID props, SDL_EnumeratePropertiesCallback callback, void *userdata); + +/** + * Destroy a group of properties. + * + * All properties are deleted and their cleanup functions will be called, if + * any. + * + * \param props the properties to destroy. + * + * \threadsafety This function should not be called while these properties are + * locked or other threads might be setting or getting values + * from these properties. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyProperties(SDL_PropertiesID props); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_properties_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_rect.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_rect.h new file mode 100644 index 0000000..eb2d34a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_rect.h @@ -0,0 +1,507 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryRect + * + * Some helper functions for managing rectangles and 2D points, in both + * integer and floating point versions. + */ + +#ifndef SDL_rect_h_ +#define SDL_rect_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The structure that defines a point (using integers). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetRectEnclosingPoints + * \sa SDL_PointInRect + */ +typedef struct SDL_Point +{ + int x; + int y; +} SDL_Point; + +/** + * The structure that defines a point (using floating point values). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetRectEnclosingPointsFloat + * \sa SDL_PointInRectFloat + */ +typedef struct SDL_FPoint +{ + float x; + float y; +} SDL_FPoint; + + +/** + * A rectangle, with the origin at the upper left (using integers). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_RectEmpty + * \sa SDL_RectsEqual + * \sa SDL_HasRectIntersection + * \sa SDL_GetRectIntersection + * \sa SDL_GetRectAndLineIntersection + * \sa SDL_GetRectUnion + * \sa SDL_GetRectEnclosingPoints + */ +typedef struct SDL_Rect +{ + int x, y; + int w, h; +} SDL_Rect; + + +/** + * A rectangle, with the origin at the upper left (using floating point + * values). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_RectEmptyFloat + * \sa SDL_RectsEqualFloat + * \sa SDL_RectsEqualEpsilon + * \sa SDL_HasRectIntersectionFloat + * \sa SDL_GetRectIntersectionFloat + * \sa SDL_GetRectAndLineIntersectionFloat + * \sa SDL_GetRectUnionFloat + * \sa SDL_GetRectEnclosingPointsFloat + * \sa SDL_PointInRectFloat + */ +typedef struct SDL_FRect +{ + float x; + float y; + float w; + float h; +} SDL_FRect; + + +/** + * Convert an SDL_Rect to SDL_FRect + * + * \param rect a pointer to an SDL_Rect. + * \param frect a pointer filled in with the floating point representation of + * `rect`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE void SDL_RectToFRect(const SDL_Rect *rect, SDL_FRect *frect) +{ + frect->x = (float)rect->x; + frect->y = (float)rect->y; + frect->w = (float)rect->w; + frect->h = (float)rect->h; +} + +/** + * Determine whether a point resides inside a rectangle. + * + * A point is considered part of a rectangle if both `p` and `r` are not NULL, + * and `p`'s x and y coordinates are >= to the rectangle's top left corner, + * and < the rectangle's x+w and y+h. So a 1x1 rectangle considers point (0,0) + * as "inside" and (0,1) as not. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param p the point to test. + * \param r the rectangle to test. + * \returns true if `p` is contained by `r`, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_PointInRect(const SDL_Point *p, const SDL_Rect *r) +{ + return ( p && r && (p->x >= r->x) && (p->x < (r->x + r->w)) && + (p->y >= r->y) && (p->y < (r->y + r->h)) ) ? true : false; +} + +/** + * Determine whether a rectangle has no area. + * + * A rectangle is considered "empty" for this function if `r` is NULL, or if + * `r`'s width and/or height are <= 0. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param r the rectangle to test. + * \returns true if the rectangle is "empty", false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_RectEmpty(const SDL_Rect *r) +{ + return ((!r) || (r->w <= 0) || (r->h <= 0)) ? true : false; +} + +/** + * Determine whether two rectangles are equal. + * + * Rectangles are considered equal if both are not NULL and each of their x, + * y, width and height match. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param a the first rectangle to test. + * \param b the second rectangle to test. + * \returns true if the rectangles are equal, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_RectsEqual(const SDL_Rect *a, const SDL_Rect *b) +{ + return (a && b && (a->x == b->x) && (a->y == b->y) && + (a->w == b->w) && (a->h == b->h)) ? true : false; +} + +/** + * Determine whether two rectangles intersect. + * + * If either pointer is NULL the function will return false. + * + * \param A an SDL_Rect structure representing the first rectangle. + * \param B an SDL_Rect structure representing the second rectangle. + * \returns true if there is an intersection, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRectIntersection + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasRectIntersection(const SDL_Rect *A, const SDL_Rect *B); + +/** + * Calculate the intersection of two rectangles. + * + * If `result` is NULL then this function will return false. + * + * \param A an SDL_Rect structure representing the first rectangle. + * \param B an SDL_Rect structure representing the second rectangle. + * \param result an SDL_Rect structure filled in with the intersection of + * rectangles `A` and `B`. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasRectIntersection + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectIntersection(const SDL_Rect *A, const SDL_Rect *B, SDL_Rect *result); + +/** + * Calculate the union of two rectangles. + * + * \param A an SDL_Rect structure representing the first rectangle. + * \param B an SDL_Rect structure representing the second rectangle. + * \param result an SDL_Rect structure filled in with the union of rectangles + * `A` and `B`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectUnion(const SDL_Rect *A, const SDL_Rect *B, SDL_Rect *result); + +/** + * Calculate a minimal rectangle enclosing a set of points. + * + * If `clip` is not NULL then only points inside of the clipping rectangle are + * considered. + * + * \param points an array of SDL_Point structures representing points to be + * enclosed. + * \param count the number of structures in the `points` array. + * \param clip an SDL_Rect used for clipping or NULL to enclose all points. + * \param result an SDL_Rect structure filled in with the minimal enclosing + * rectangle. + * \returns true if any points were enclosed or false if all the points were + * outside of the clipping rectangle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectEnclosingPoints(const SDL_Point *points, int count, const SDL_Rect *clip, SDL_Rect *result); + +/** + * Calculate the intersection of a rectangle and line segment. + * + * This function is used to clip a line segment to a rectangle. A line segment + * contained entirely within the rectangle or that does not intersect will + * remain unchanged. A line segment that crosses the rectangle at either or + * both ends will be clipped to the boundary of the rectangle and the new + * coordinates saved in `X1`, `Y1`, `X2`, and/or `Y2` as necessary. + * + * \param rect an SDL_Rect structure representing the rectangle to intersect. + * \param X1 a pointer to the starting X-coordinate of the line. + * \param Y1 a pointer to the starting Y-coordinate of the line. + * \param X2 a pointer to the ending X-coordinate of the line. + * \param Y2 a pointer to the ending Y-coordinate of the line. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectAndLineIntersection(const SDL_Rect *rect, int *X1, int *Y1, int *X2, int *Y2); + + +/* SDL_FRect versions... */ + +/** + * Determine whether a point resides inside a floating point rectangle. + * + * A point is considered part of a rectangle if both `p` and `r` are not NULL, + * and `p`'s x and y coordinates are >= to the rectangle's top left corner, + * and <= the rectangle's x+w and y+h. So a 1x1 rectangle considers point + * (0,0) and (0,1) as "inside" and (0,2) as not. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param p the point to test. + * \param r the rectangle to test. + * \returns true if `p` is contained by `r`, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_PointInRectFloat(const SDL_FPoint *p, const SDL_FRect *r) +{ + return ( p && r && (p->x >= r->x) && (p->x <= (r->x + r->w)) && + (p->y >= r->y) && (p->y <= (r->y + r->h)) ) ? true : false; +} + +/** + * Determine whether a floating point rectangle can contain any point. + * + * A rectangle is considered "empty" for this function if `r` is NULL, or if + * `r`'s width and/or height are < 0.0f. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param r the rectangle to test. + * \returns true if the rectangle is "empty", false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_RectEmptyFloat(const SDL_FRect *r) +{ + return ((!r) || (r->w < 0.0f) || (r->h < 0.0f)) ? true : false; +} + +/** + * Determine whether two floating point rectangles are equal, within some + * given epsilon. + * + * Rectangles are considered equal if both are not NULL and each of their x, + * y, width and height are within `epsilon` of each other. If you don't know + * what value to use for `epsilon`, you should call the SDL_RectsEqualFloat + * function instead. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param a the first rectangle to test. + * \param b the second rectangle to test. + * \param epsilon the epsilon value for comparison. + * \returns true if the rectangles are equal, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RectsEqualFloat + */ +SDL_FORCE_INLINE bool SDL_RectsEqualEpsilon(const SDL_FRect *a, const SDL_FRect *b, float epsilon) +{ + return (a && b && ((a == b) || + ((SDL_fabsf(a->x - b->x) <= epsilon) && + (SDL_fabsf(a->y - b->y) <= epsilon) && + (SDL_fabsf(a->w - b->w) <= epsilon) && + (SDL_fabsf(a->h - b->h) <= epsilon)))) + ? true : false; +} + +/** + * Determine whether two floating point rectangles are equal, within a default + * epsilon. + * + * Rectangles are considered equal if both are not NULL and each of their x, + * y, width and height are within SDL_FLT_EPSILON of each other. This is often + * a reasonable way to compare two floating point rectangles and deal with the + * slight precision variations in floating point calculations that tend to pop + * up. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param a the first rectangle to test. + * \param b the second rectangle to test. + * \returns true if the rectangles are equal, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RectsEqualEpsilon + */ +SDL_FORCE_INLINE bool SDL_RectsEqualFloat(const SDL_FRect *a, const SDL_FRect *b) +{ + return SDL_RectsEqualEpsilon(a, b, SDL_FLT_EPSILON); +} + +/** + * Determine whether two rectangles intersect with float precision. + * + * If either pointer is NULL the function will return false. + * + * \param A an SDL_FRect structure representing the first rectangle. + * \param B an SDL_FRect structure representing the second rectangle. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRectIntersection + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasRectIntersectionFloat(const SDL_FRect *A, const SDL_FRect *B); + +/** + * Calculate the intersection of two rectangles with float precision. + * + * If `result` is NULL then this function will return false. + * + * \param A an SDL_FRect structure representing the first rectangle. + * \param B an SDL_FRect structure representing the second rectangle. + * \param result an SDL_FRect structure filled in with the intersection of + * rectangles `A` and `B`. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasRectIntersectionFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectIntersectionFloat(const SDL_FRect *A, const SDL_FRect *B, SDL_FRect *result); + +/** + * Calculate the union of two rectangles with float precision. + * + * \param A an SDL_FRect structure representing the first rectangle. + * \param B an SDL_FRect structure representing the second rectangle. + * \param result an SDL_FRect structure filled in with the union of rectangles + * `A` and `B`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectUnionFloat(const SDL_FRect *A, const SDL_FRect *B, SDL_FRect *result); + +/** + * Calculate a minimal rectangle enclosing a set of points with float + * precision. + * + * If `clip` is not NULL then only points inside of the clipping rectangle are + * considered. + * + * \param points an array of SDL_FPoint structures representing points to be + * enclosed. + * \param count the number of structures in the `points` array. + * \param clip an SDL_FRect used for clipping or NULL to enclose all points. + * \param result an SDL_FRect structure filled in with the minimal enclosing + * rectangle. + * \returns true if any points were enclosed or false if all the points were + * outside of the clipping rectangle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectEnclosingPointsFloat(const SDL_FPoint *points, int count, const SDL_FRect *clip, SDL_FRect *result); + +/** + * Calculate the intersection of a rectangle and line segment with float + * precision. + * + * This function is used to clip a line segment to a rectangle. A line segment + * contained entirely within the rectangle or that does not intersect will + * remain unchanged. A line segment that crosses the rectangle at either or + * both ends will be clipped to the boundary of the rectangle and the new + * coordinates saved in `X1`, `Y1`, `X2`, and/or `Y2` as necessary. + * + * \param rect an SDL_FRect structure representing the rectangle to intersect. + * \param X1 a pointer to the starting X-coordinate of the line. + * \param Y1 a pointer to the starting Y-coordinate of the line. + * \param X2 a pointer to the ending X-coordinate of the line. + * \param Y2 a pointer to the ending Y-coordinate of the line. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectAndLineIntersectionFloat(const SDL_FRect *rect, float *X1, float *Y1, float *X2, float *Y2); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_rect_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_render.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_render.h new file mode 100644 index 0000000..c9d184c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_render.h @@ -0,0 +1,2645 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryRender + * + * Header file for SDL 2D rendering functions. + * + * This API supports the following features: + * + * - single pixel points + * - single pixel lines + * - filled rectangles + * - texture images + * - 2D polygons + * + * The primitives may be drawn in opaque, blended, or additive modes. + * + * The texture images may be drawn in opaque, blended, or additive modes. They + * can have an additional color tint or alpha modulation applied to them, and + * may also be stretched with linear interpolation. + * + * This API is designed to accelerate simple 2D operations. You may want more + * functionality such as polygons and particle effects and in that case you + * should use SDL's OpenGL/Direct3D support, the SDL3 GPU API, or one of the + * many good 3D engines. + * + * These functions must be called from the main thread. See this bug for + * details: https://github.com/libsdl-org/SDL/issues/986 + */ + +#ifndef SDL_render_h_ +#define SDL_render_h_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The name of the software renderer. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SOFTWARE_RENDERER "software" + +/** + * Vertex structure. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Vertex +{ + SDL_FPoint position; /**< Vertex position, in SDL_Renderer coordinates */ + SDL_FColor color; /**< Vertex color */ + SDL_FPoint tex_coord; /**< Normalized texture coordinates, if needed */ +} SDL_Vertex; + +/** + * The access pattern allowed for a texture. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_TextureAccess +{ + SDL_TEXTUREACCESS_STATIC, /**< Changes rarely, not lockable */ + SDL_TEXTUREACCESS_STREAMING, /**< Changes frequently, lockable */ + SDL_TEXTUREACCESS_TARGET /**< Texture can be used as a render target */ +} SDL_TextureAccess; + +/** + * How the logical size is mapped to the output. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_RendererLogicalPresentation +{ + SDL_LOGICAL_PRESENTATION_DISABLED, /**< There is no logical size in effect */ + SDL_LOGICAL_PRESENTATION_STRETCH, /**< The rendered content is stretched to the output resolution */ + SDL_LOGICAL_PRESENTATION_LETTERBOX, /**< The rendered content is fit to the largest dimension and the other dimension is letterboxed with black bars */ + SDL_LOGICAL_PRESENTATION_OVERSCAN, /**< The rendered content is fit to the smallest dimension and the other dimension extends beyond the output bounds */ + SDL_LOGICAL_PRESENTATION_INTEGER_SCALE /**< The rendered content is scaled up by integer multiples to fit the output resolution */ +} SDL_RendererLogicalPresentation; + +/** + * A structure representing rendering state + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Renderer SDL_Renderer; + +#ifndef SDL_INTERNAL + +/** + * An efficient driver-specific representation of pixel data + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureFromSurface + * \sa SDL_CreateTextureWithProperties + * \sa SDL_DestroyTexture + */ +struct SDL_Texture +{ + SDL_PixelFormat format; /**< The format of the texture, read-only */ + int w; /**< The width of the texture, read-only. */ + int h; /**< The height of the texture, read-only. */ + + int refcount; /**< Application reference count, used when freeing texture */ +}; +#endif /* !SDL_INTERNAL */ + +typedef struct SDL_Texture SDL_Texture; + +/* Function prototypes */ + +/** + * Get the number of 2D rendering drivers available for the current display. + * + * A render driver is a set of code that handles rendering and texture + * management on a particular display. Normally there is only one, but some + * drivers may have several available with different capabilities. + * + * There may be none if SDL was compiled without render support. + * + * \returns the number of built in render drivers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_GetRenderDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumRenderDrivers(void); + +/** + * Use this function to get the name of a built in 2D rendering driver. + * + * The list of rendering drivers is given in the order that they are normally + * initialized by default; the drivers that seem more reasonable to choose + * first (as far as the SDL developers believe) are earlier in the list. + * + * The names of drivers are all simple, low-ASCII identifiers, like "opengl", + * "direct3d12" or "metal". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of the rendering driver; the value ranges from 0 to + * SDL_GetNumRenderDrivers() - 1. + * \returns the name of the rendering driver at the requested index, or NULL + * if an invalid index was specified. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumRenderDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetRenderDriver(int index); + +/** + * Create a window and default renderer. + * + * \param title the title of the window, in UTF-8 encoding. + * \param width the width of the window. + * \param height the height of the window. + * \param window_flags the flags used to create the window (see + * SDL_CreateWindow()). + * \param window a pointer filled with the window, or NULL on error. + * \param renderer a pointer filled with the renderer, or NULL on error. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_CreateWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CreateWindowAndRenderer(const char *title, int width, int height, SDL_WindowFlags window_flags, SDL_Window **window, SDL_Renderer **renderer); + +/** + * Create a 2D rendering context for a window. + * + * If you want a specific renderer, you can specify its name here. A list of + * available renderers can be obtained by calling SDL_GetRenderDriver() + * multiple times, with indices from 0 to SDL_GetNumRenderDrivers()-1. If you + * don't need a specific renderer, specify NULL and SDL will attempt to choose + * the best option for you, based on what is available on the user's system. + * + * If `name` is a comma-separated list, SDL will try each name, in the order + * listed, until one succeeds or all of them fail. + * + * By default the rendering size matches the window size in pixels, but you + * can call SDL_SetRenderLogicalPresentation() to change the content size and + * scaling options. + * + * \param window the window where rendering is displayed. + * \param name the name of the rendering driver to initialize, or NULL to let + * SDL choose one. + * \returns a valid rendering context or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRendererWithProperties + * \sa SDL_CreateSoftwareRenderer + * \sa SDL_DestroyRenderer + * \sa SDL_GetNumRenderDrivers + * \sa SDL_GetRenderDriver + * \sa SDL_GetRendererName + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_CreateRenderer(SDL_Window *window, const char *name); + +/** + * Create a 2D rendering context for a window, with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_RENDERER_CREATE_NAME_STRING`: the name of the rendering driver + * to use, if a specific one is desired + * - `SDL_PROP_RENDERER_CREATE_WINDOW_POINTER`: the window where rendering is + * displayed, required if this isn't a software renderer using a surface + * - `SDL_PROP_RENDERER_CREATE_SURFACE_POINTER`: the surface where rendering + * is displayed, if you want a software renderer without a window + * - `SDL_PROP_RENDERER_CREATE_OUTPUT_COLORSPACE_NUMBER`: an SDL_Colorspace + * value describing the colorspace for output to the display, defaults to + * SDL_COLORSPACE_SRGB. The direct3d11, direct3d12, and metal renderers + * support SDL_COLORSPACE_SRGB_LINEAR, which is a linear color space and + * supports HDR output. If you select SDL_COLORSPACE_SRGB_LINEAR, drawing + * still uses the sRGB colorspace, but values can go beyond 1.0 and float + * (linear) format textures can be used for HDR content. + * - `SDL_PROP_RENDERER_CREATE_PRESENT_VSYNC_NUMBER`: non-zero if you want + * present synchronized with the refresh rate. This property can take any + * value that is supported by SDL_SetRenderVSync() for the renderer. + * + * With the vulkan renderer: + * + * - `SDL_PROP_RENDERER_CREATE_VULKAN_INSTANCE_POINTER`: the VkInstance to use + * with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_SURFACE_NUMBER`: the VkSurfaceKHR to use + * with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_PHYSICAL_DEVICE_POINTER`: the + * VkPhysicalDevice to use with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_DEVICE_POINTER`: the VkDevice to use + * with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER`: the + * queue family index used for rendering. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER`: the + * queue family index used for presentation. + * + * \param props the properties to use. + * \returns a valid rendering context or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + * \sa SDL_CreateRenderer + * \sa SDL_CreateSoftwareRenderer + * \sa SDL_DestroyRenderer + * \sa SDL_GetRendererName + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_CreateRendererWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_RENDERER_CREATE_NAME_STRING "SDL.renderer.create.name" +#define SDL_PROP_RENDERER_CREATE_WINDOW_POINTER "SDL.renderer.create.window" +#define SDL_PROP_RENDERER_CREATE_SURFACE_POINTER "SDL.renderer.create.surface" +#define SDL_PROP_RENDERER_CREATE_OUTPUT_COLORSPACE_NUMBER "SDL.renderer.create.output_colorspace" +#define SDL_PROP_RENDERER_CREATE_PRESENT_VSYNC_NUMBER "SDL.renderer.create.present_vsync" +#define SDL_PROP_RENDERER_CREATE_VULKAN_INSTANCE_POINTER "SDL.renderer.create.vulkan.instance" +#define SDL_PROP_RENDERER_CREATE_VULKAN_SURFACE_NUMBER "SDL.renderer.create.vulkan.surface" +#define SDL_PROP_RENDERER_CREATE_VULKAN_PHYSICAL_DEVICE_POINTER "SDL.renderer.create.vulkan.physical_device" +#define SDL_PROP_RENDERER_CREATE_VULKAN_DEVICE_POINTER "SDL.renderer.create.vulkan.device" +#define SDL_PROP_RENDERER_CREATE_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.create.vulkan.graphics_queue_family_index" +#define SDL_PROP_RENDERER_CREATE_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.create.vulkan.present_queue_family_index" + +/** + * Create a 2D software rendering context for a surface. + * + * Two other API which can be used to create SDL_Renderer: + * SDL_CreateRenderer() and SDL_CreateWindowAndRenderer(). These can _also_ + * create a software renderer, but they are intended to be used with an + * SDL_Window as the final destination and not an SDL_Surface. + * + * \param surface the SDL_Surface structure representing the surface where + * rendering is done. + * \returns a valid rendering context or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyRenderer + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_CreateSoftwareRenderer(SDL_Surface *surface); + +/** + * Get the renderer associated with a window. + * + * \param window the window to query. + * \returns the rendering context on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_GetRenderer(SDL_Window *window); + +/** + * Get the window associated with a renderer. + * + * \param renderer the renderer to query. + * \returns the window on success or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetRenderWindow(SDL_Renderer *renderer); + +/** + * Get the name of a renderer. + * + * \param renderer the rendering context. + * \returns the name of the selected renderer, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_CreateRendererWithProperties + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetRendererName(SDL_Renderer *renderer); + +/** + * Get the properties associated with a renderer. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_RENDERER_NAME_STRING`: the name of the rendering driver + * - `SDL_PROP_RENDERER_WINDOW_POINTER`: the window where rendering is + * displayed, if any + * - `SDL_PROP_RENDERER_SURFACE_POINTER`: the surface where rendering is + * displayed, if this is a software renderer without a window + * - `SDL_PROP_RENDERER_VSYNC_NUMBER`: the current vsync setting + * - `SDL_PROP_RENDERER_MAX_TEXTURE_SIZE_NUMBER`: the maximum texture width + * and height + * - `SDL_PROP_RENDERER_TEXTURE_FORMATS_POINTER`: a (const SDL_PixelFormat *) + * array of pixel formats, terminated with SDL_PIXELFORMAT_UNKNOWN, + * representing the available texture formats for this renderer. + * - `SDL_PROP_RENDERER_OUTPUT_COLORSPACE_NUMBER`: an SDL_Colorspace value + * describing the colorspace for output to the display, defaults to + * SDL_COLORSPACE_SRGB. + * - `SDL_PROP_RENDERER_HDR_ENABLED_BOOLEAN`: true if the output colorspace is + * SDL_COLORSPACE_SRGB_LINEAR and the renderer is showing on a display with + * HDR enabled. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_RENDERER_SDR_WHITE_POINT_FLOAT`: the value of SDR white in the + * SDL_COLORSPACE_SRGB_LINEAR colorspace. When HDR is enabled, this value is + * automatically multiplied into the color scale. This property can change + * dynamically when SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_RENDERER_HDR_HEADROOM_FLOAT`: the additional high dynamic range + * that can be displayed, in terms of the SDR white point. When HDR is not + * enabled, this will be 1.0. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * + * With the direct3d renderer: + * + * - `SDL_PROP_RENDERER_D3D9_DEVICE_POINTER`: the IDirect3DDevice9 associated + * with the renderer + * + * With the direct3d11 renderer: + * + * - `SDL_PROP_RENDERER_D3D11_DEVICE_POINTER`: the ID3D11Device associated + * with the renderer + * - `SDL_PROP_RENDERER_D3D11_SWAPCHAIN_POINTER`: the IDXGISwapChain1 + * associated with the renderer. This may change when the window is resized. + * + * With the direct3d12 renderer: + * + * - `SDL_PROP_RENDERER_D3D12_DEVICE_POINTER`: the ID3D12Device associated + * with the renderer + * - `SDL_PROP_RENDERER_D3D12_SWAPCHAIN_POINTER`: the IDXGISwapChain4 + * associated with the renderer. + * - `SDL_PROP_RENDERER_D3D12_COMMAND_QUEUE_POINTER`: the ID3D12CommandQueue + * associated with the renderer + * + * With the vulkan renderer: + * + * - `SDL_PROP_RENDERER_VULKAN_INSTANCE_POINTER`: the VkInstance associated + * with the renderer + * - `SDL_PROP_RENDERER_VULKAN_SURFACE_NUMBER`: the VkSurfaceKHR associated + * with the renderer + * - `SDL_PROP_RENDERER_VULKAN_PHYSICAL_DEVICE_POINTER`: the VkPhysicalDevice + * associated with the renderer + * - `SDL_PROP_RENDERER_VULKAN_DEVICE_POINTER`: the VkDevice associated with + * the renderer + * - `SDL_PROP_RENDERER_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER`: the queue + * family index used for rendering + * - `SDL_PROP_RENDERER_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER`: the queue + * family index used for presentation + * - `SDL_PROP_RENDERER_VULKAN_SWAPCHAIN_IMAGE_COUNT_NUMBER`: the number of + * swapchain images, or potential frames in flight, used by the Vulkan + * renderer + * + * With the gpu renderer: + * + * - `SDL_PROP_RENDERER_GPU_DEVICE_POINTER`: the SDL_GPUDevice associated with + * the renderer + * + * \param renderer the rendering context. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetRendererProperties(SDL_Renderer *renderer); + +#define SDL_PROP_RENDERER_NAME_STRING "SDL.renderer.name" +#define SDL_PROP_RENDERER_WINDOW_POINTER "SDL.renderer.window" +#define SDL_PROP_RENDERER_SURFACE_POINTER "SDL.renderer.surface" +#define SDL_PROP_RENDERER_VSYNC_NUMBER "SDL.renderer.vsync" +#define SDL_PROP_RENDERER_MAX_TEXTURE_SIZE_NUMBER "SDL.renderer.max_texture_size" +#define SDL_PROP_RENDERER_TEXTURE_FORMATS_POINTER "SDL.renderer.texture_formats" +#define SDL_PROP_RENDERER_OUTPUT_COLORSPACE_NUMBER "SDL.renderer.output_colorspace" +#define SDL_PROP_RENDERER_HDR_ENABLED_BOOLEAN "SDL.renderer.HDR_enabled" +#define SDL_PROP_RENDERER_SDR_WHITE_POINT_FLOAT "SDL.renderer.SDR_white_point" +#define SDL_PROP_RENDERER_HDR_HEADROOM_FLOAT "SDL.renderer.HDR_headroom" +#define SDL_PROP_RENDERER_D3D9_DEVICE_POINTER "SDL.renderer.d3d9.device" +#define SDL_PROP_RENDERER_D3D11_DEVICE_POINTER "SDL.renderer.d3d11.device" +#define SDL_PROP_RENDERER_D3D11_SWAPCHAIN_POINTER "SDL.renderer.d3d11.swap_chain" +#define SDL_PROP_RENDERER_D3D12_DEVICE_POINTER "SDL.renderer.d3d12.device" +#define SDL_PROP_RENDERER_D3D12_SWAPCHAIN_POINTER "SDL.renderer.d3d12.swap_chain" +#define SDL_PROP_RENDERER_D3D12_COMMAND_QUEUE_POINTER "SDL.renderer.d3d12.command_queue" +#define SDL_PROP_RENDERER_VULKAN_INSTANCE_POINTER "SDL.renderer.vulkan.instance" +#define SDL_PROP_RENDERER_VULKAN_SURFACE_NUMBER "SDL.renderer.vulkan.surface" +#define SDL_PROP_RENDERER_VULKAN_PHYSICAL_DEVICE_POINTER "SDL.renderer.vulkan.physical_device" +#define SDL_PROP_RENDERER_VULKAN_DEVICE_POINTER "SDL.renderer.vulkan.device" +#define SDL_PROP_RENDERER_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.vulkan.graphics_queue_family_index" +#define SDL_PROP_RENDERER_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.vulkan.present_queue_family_index" +#define SDL_PROP_RENDERER_VULKAN_SWAPCHAIN_IMAGE_COUNT_NUMBER "SDL.renderer.vulkan.swapchain_image_count" +#define SDL_PROP_RENDERER_GPU_DEVICE_POINTER "SDL.renderer.gpu.device" + +/** + * Get the output size in pixels of a rendering context. + * + * This returns the true output size in pixels, ignoring any render targets or + * logical size and presentation. + * + * For the output size of the current rendering target, with logical size + * adjustments, use SDL_GetCurrentRenderOutputSize() instead. + * + * \param renderer the rendering context. + * \param w a pointer filled in with the width in pixels. + * \param h a pointer filled in with the height in pixels. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentRenderOutputSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderOutputSize(SDL_Renderer *renderer, int *w, int *h); + +/** + * Get the current output size in pixels of a rendering context. + * + * If a rendering target is active, this will return the size of the rendering + * target in pixels, otherwise return the value of SDL_GetRenderOutputSize(). + * + * Rendering target or not, the output will be adjusted by the current logical + * presentation state, dictated by SDL_SetRenderLogicalPresentation(). + * + * \param renderer the rendering context. + * \param w a pointer filled in with the current width. + * \param h a pointer filled in with the current height. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderOutputSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetCurrentRenderOutputSize(SDL_Renderer *renderer, int *w, int *h); + +/** + * Create a texture for a rendering context. + * + * The contents of a texture when first created are not defined. + * + * \param renderer the rendering context. + * \param format one of the enumerated values in SDL_PixelFormat. + * \param access one of the enumerated values in SDL_TextureAccess. + * \param w the width of the texture in pixels. + * \param h the height of the texture in pixels. + * \returns the created texture or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTextureFromSurface + * \sa SDL_CreateTextureWithProperties + * \sa SDL_DestroyTexture + * \sa SDL_GetTextureSize + * \sa SDL_UpdateTexture + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_CreateTexture(SDL_Renderer *renderer, SDL_PixelFormat format, SDL_TextureAccess access, int w, int h); + +/** + * Create a texture from an existing surface. + * + * The surface is not modified or freed by this function. + * + * The SDL_TextureAccess hint for the created texture is + * `SDL_TEXTUREACCESS_STATIC`. + * + * The pixel format of the created texture may be different from the pixel + * format of the surface, and can be queried using the + * SDL_PROP_TEXTURE_FORMAT_NUMBER property. + * + * \param renderer the rendering context. + * \param surface the SDL_Surface structure containing pixel data used to fill + * the texture. + * \returns the created texture or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureWithProperties + * \sa SDL_DestroyTexture + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_CreateTextureFromSurface(SDL_Renderer *renderer, SDL_Surface *surface); + +/** + * Create a texture for a rendering context with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_TEXTURE_CREATE_COLORSPACE_NUMBER`: an SDL_Colorspace value + * describing the texture colorspace, defaults to SDL_COLORSPACE_SRGB_LINEAR + * for floating point textures, SDL_COLORSPACE_HDR10 for 10-bit textures, + * SDL_COLORSPACE_SRGB for other RGB textures and SDL_COLORSPACE_JPEG for + * YUV textures. + * - `SDL_PROP_TEXTURE_CREATE_FORMAT_NUMBER`: one of the enumerated values in + * SDL_PixelFormat, defaults to the best RGBA format for the renderer + * - `SDL_PROP_TEXTURE_CREATE_ACCESS_NUMBER`: one of the enumerated values in + * SDL_TextureAccess, defaults to SDL_TEXTUREACCESS_STATIC + * - `SDL_PROP_TEXTURE_CREATE_WIDTH_NUMBER`: the width of the texture in + * pixels, required + * - `SDL_PROP_TEXTURE_CREATE_HEIGHT_NUMBER`: the height of the texture in + * pixels, required + * - `SDL_PROP_TEXTURE_CREATE_SDR_WHITE_POINT_FLOAT`: for HDR10 and floating + * point textures, this defines the value of 100% diffuse white, with higher + * values being displayed in the High Dynamic Range headroom. This defaults + * to 100 for HDR10 textures and 1.0 for floating point textures. + * - `SDL_PROP_TEXTURE_CREATE_HDR_HEADROOM_FLOAT`: for HDR10 and floating + * point textures, this defines the maximum dynamic range used by the + * content, in terms of the SDR white point. This would be equivalent to + * maxCLL / SDL_PROP_TEXTURE_CREATE_SDR_WHITE_POINT_FLOAT for HDR10 content. + * If this is defined, any values outside the range supported by the display + * will be scaled into the available HDR headroom, otherwise they are + * clipped. + * + * With the direct3d11 renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_POINTER`: the ID3D11Texture2D + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_U_POINTER`: the ID3D11Texture2D + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_V_POINTER`: the ID3D11Texture2D + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the direct3d12 renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_POINTER`: the ID3D12Resource + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_U_POINTER`: the ID3D12Resource + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_V_POINTER`: the ID3D12Resource + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the metal renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_METAL_PIXELBUFFER_POINTER`: the CVPixelBufferRef + * associated with the texture, if you want to create a texture from an + * existing pixel buffer. + * + * With the opengl renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_U_NUMBER`: the GLuint texture + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_V_NUMBER`: the GLuint texture + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the opengles2 renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_U_NUMBER`: the GLuint texture + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_V_NUMBER`: the GLuint texture + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the vulkan renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_VULKAN_TEXTURE_NUMBER`: the VkImage with layout + * VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL associated with the texture, if + * you want to wrap an existing texture. + * + * \param renderer the rendering context. + * \param props the properties to use. + * \returns the created texture or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureFromSurface + * \sa SDL_DestroyTexture + * \sa SDL_GetTextureSize + * \sa SDL_UpdateTexture + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_CreateTextureWithProperties(SDL_Renderer *renderer, SDL_PropertiesID props); + +#define SDL_PROP_TEXTURE_CREATE_COLORSPACE_NUMBER "SDL.texture.create.colorspace" +#define SDL_PROP_TEXTURE_CREATE_FORMAT_NUMBER "SDL.texture.create.format" +#define SDL_PROP_TEXTURE_CREATE_ACCESS_NUMBER "SDL.texture.create.access" +#define SDL_PROP_TEXTURE_CREATE_WIDTH_NUMBER "SDL.texture.create.width" +#define SDL_PROP_TEXTURE_CREATE_HEIGHT_NUMBER "SDL.texture.create.height" +#define SDL_PROP_TEXTURE_CREATE_SDR_WHITE_POINT_FLOAT "SDL.texture.create.SDR_white_point" +#define SDL_PROP_TEXTURE_CREATE_HDR_HEADROOM_FLOAT "SDL.texture.create.HDR_headroom" +#define SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_POINTER "SDL.texture.create.d3d11.texture" +#define SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_U_POINTER "SDL.texture.create.d3d11.texture_u" +#define SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_V_POINTER "SDL.texture.create.d3d11.texture_v" +#define SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_POINTER "SDL.texture.create.d3d12.texture" +#define SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_U_POINTER "SDL.texture.create.d3d12.texture_u" +#define SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_V_POINTER "SDL.texture.create.d3d12.texture_v" +#define SDL_PROP_TEXTURE_CREATE_METAL_PIXELBUFFER_POINTER "SDL.texture.create.metal.pixelbuffer" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_NUMBER "SDL.texture.create.opengl.texture" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_UV_NUMBER "SDL.texture.create.opengl.texture_uv" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_U_NUMBER "SDL.texture.create.opengl.texture_u" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_V_NUMBER "SDL.texture.create.opengl.texture_v" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_NUMBER "SDL.texture.create.opengles2.texture" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_UV_NUMBER "SDL.texture.create.opengles2.texture_uv" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_U_NUMBER "SDL.texture.create.opengles2.texture_u" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_V_NUMBER "SDL.texture.create.opengles2.texture_v" +#define SDL_PROP_TEXTURE_CREATE_VULKAN_TEXTURE_NUMBER "SDL.texture.create.vulkan.texture" + +/** + * Get the properties associated with a texture. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_TEXTURE_COLORSPACE_NUMBER`: an SDL_Colorspace value describing + * the texture colorspace. + * - `SDL_PROP_TEXTURE_FORMAT_NUMBER`: one of the enumerated values in + * SDL_PixelFormat. + * - `SDL_PROP_TEXTURE_ACCESS_NUMBER`: one of the enumerated values in + * SDL_TextureAccess. + * - `SDL_PROP_TEXTURE_WIDTH_NUMBER`: the width of the texture in pixels. + * - `SDL_PROP_TEXTURE_HEIGHT_NUMBER`: the height of the texture in pixels. + * - `SDL_PROP_TEXTURE_SDR_WHITE_POINT_FLOAT`: for HDR10 and floating point + * textures, this defines the value of 100% diffuse white, with higher + * values being displayed in the High Dynamic Range headroom. This defaults + * to 100 for HDR10 textures and 1.0 for other textures. + * - `SDL_PROP_TEXTURE_HDR_HEADROOM_FLOAT`: for HDR10 and floating point + * textures, this defines the maximum dynamic range used by the content, in + * terms of the SDR white point. If this is defined, any values outside the + * range supported by the display will be scaled into the available HDR + * headroom, otherwise they are clipped. This defaults to 1.0 for SDR + * textures, 4.0 for HDR10 textures, and no default for floating point + * textures. + * + * With the direct3d11 renderer: + * + * - `SDL_PROP_TEXTURE_D3D11_TEXTURE_POINTER`: the ID3D11Texture2D associated + * with the texture + * - `SDL_PROP_TEXTURE_D3D11_TEXTURE_U_POINTER`: the ID3D11Texture2D + * associated with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_D3D11_TEXTURE_V_POINTER`: the ID3D11Texture2D + * associated with the V plane of a YUV texture + * + * With the direct3d12 renderer: + * + * - `SDL_PROP_TEXTURE_D3D12_TEXTURE_POINTER`: the ID3D12Resource associated + * with the texture + * - `SDL_PROP_TEXTURE_D3D12_TEXTURE_U_POINTER`: the ID3D12Resource associated + * with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_D3D12_TEXTURE_V_POINTER`: the ID3D12Resource associated + * with the V plane of a YUV texture + * + * With the vulkan renderer: + * + * - `SDL_PROP_TEXTURE_VULKAN_TEXTURE_NUMBER`: the VkImage associated with the + * texture + * + * With the opengl renderer: + * + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_NUMBER`: the GLuint texture associated + * with the texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_U_NUMBER`: the GLuint texture associated + * with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_V_NUMBER`: the GLuint texture associated + * with the V plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_TARGET_NUMBER`: the GLenum for the + * texture target (`GL_TEXTURE_2D`, `GL_TEXTURE_RECTANGLE_ARB`, etc) + * - `SDL_PROP_TEXTURE_OPENGL_TEX_W_FLOAT`: the texture coordinate width of + * the texture (0.0 - 1.0) + * - `SDL_PROP_TEXTURE_OPENGL_TEX_H_FLOAT`: the texture coordinate height of + * the texture (0.0 - 1.0) + * + * With the opengles2 renderer: + * + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_U_NUMBER`: the GLuint texture + * associated with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_V_NUMBER`: the GLuint texture + * associated with the V plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_TARGET_NUMBER`: the GLenum for the + * texture target (`GL_TEXTURE_2D`, `GL_TEXTURE_EXTERNAL_OES`, etc) + * + * \param texture the texture to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetTextureProperties(SDL_Texture *texture); + +#define SDL_PROP_TEXTURE_COLORSPACE_NUMBER "SDL.texture.colorspace" +#define SDL_PROP_TEXTURE_FORMAT_NUMBER "SDL.texture.format" +#define SDL_PROP_TEXTURE_ACCESS_NUMBER "SDL.texture.access" +#define SDL_PROP_TEXTURE_WIDTH_NUMBER "SDL.texture.width" +#define SDL_PROP_TEXTURE_HEIGHT_NUMBER "SDL.texture.height" +#define SDL_PROP_TEXTURE_SDR_WHITE_POINT_FLOAT "SDL.texture.SDR_white_point" +#define SDL_PROP_TEXTURE_HDR_HEADROOM_FLOAT "SDL.texture.HDR_headroom" +#define SDL_PROP_TEXTURE_D3D11_TEXTURE_POINTER "SDL.texture.d3d11.texture" +#define SDL_PROP_TEXTURE_D3D11_TEXTURE_U_POINTER "SDL.texture.d3d11.texture_u" +#define SDL_PROP_TEXTURE_D3D11_TEXTURE_V_POINTER "SDL.texture.d3d11.texture_v" +#define SDL_PROP_TEXTURE_D3D12_TEXTURE_POINTER "SDL.texture.d3d12.texture" +#define SDL_PROP_TEXTURE_D3D12_TEXTURE_U_POINTER "SDL.texture.d3d12.texture_u" +#define SDL_PROP_TEXTURE_D3D12_TEXTURE_V_POINTER "SDL.texture.d3d12.texture_v" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_NUMBER "SDL.texture.opengl.texture" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_UV_NUMBER "SDL.texture.opengl.texture_uv" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_U_NUMBER "SDL.texture.opengl.texture_u" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_V_NUMBER "SDL.texture.opengl.texture_v" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_TARGET_NUMBER "SDL.texture.opengl.target" +#define SDL_PROP_TEXTURE_OPENGL_TEX_W_FLOAT "SDL.texture.opengl.tex_w" +#define SDL_PROP_TEXTURE_OPENGL_TEX_H_FLOAT "SDL.texture.opengl.tex_h" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_NUMBER "SDL.texture.opengles2.texture" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_UV_NUMBER "SDL.texture.opengles2.texture_uv" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_U_NUMBER "SDL.texture.opengles2.texture_u" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_V_NUMBER "SDL.texture.opengles2.texture_v" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_TARGET_NUMBER "SDL.texture.opengles2.target" +#define SDL_PROP_TEXTURE_VULKAN_TEXTURE_NUMBER "SDL.texture.vulkan.texture" + +/** + * Get the renderer that created an SDL_Texture. + * + * \param texture the texture to query. + * \returns a pointer to the SDL_Renderer that created the texture, or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_GetRendererFromTexture(SDL_Texture *texture); + +/** + * Get the size of a texture, as floating point values. + * + * \param texture the texture to query. + * \param w a pointer filled in with the width of the texture in pixels. This + * argument can be NULL if you don't need this information. + * \param h a pointer filled in with the height of the texture in pixels. This + * argument can be NULL if you don't need this information. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureSize(SDL_Texture *texture, float *w, float *h); + +/** + * Set an additional color value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation each source color + * channel is modulated by the appropriate color value according to the + * following formula: + * + * `srcC = srcC * (color / 255)` + * + * Color modulation is not always supported by the renderer; it will return + * false if color modulation is not supported. + * + * \param texture the texture to update. + * \param r the red color value multiplied into copy operations. + * \param g the green color value multiplied into copy operations. + * \param b the blue color value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureColorMod + * \sa SDL_SetTextureAlphaMod + * \sa SDL_SetTextureColorModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureColorMod(SDL_Texture *texture, Uint8 r, Uint8 g, Uint8 b); + + +/** + * Set an additional color value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation each source color + * channel is modulated by the appropriate color value according to the + * following formula: + * + * `srcC = srcC * color` + * + * Color modulation is not always supported by the renderer; it will return + * false if color modulation is not supported. + * + * \param texture the texture to update. + * \param r the red color value multiplied into copy operations. + * \param g the green color value multiplied into copy operations. + * \param b the blue color value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureColorModFloat + * \sa SDL_SetTextureAlphaModFloat + * \sa SDL_SetTextureColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureColorModFloat(SDL_Texture *texture, float r, float g, float b); + + +/** + * Get the additional color value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param r a pointer filled in with the current red color value. + * \param g a pointer filled in with the current green color value. + * \param b a pointer filled in with the current blue color value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaMod + * \sa SDL_GetTextureColorModFloat + * \sa SDL_SetTextureColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureColorMod(SDL_Texture *texture, Uint8 *r, Uint8 *g, Uint8 *b); + +/** + * Get the additional color value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param r a pointer filled in with the current red color value. + * \param g a pointer filled in with the current green color value. + * \param b a pointer filled in with the current blue color value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaModFloat + * \sa SDL_GetTextureColorMod + * \sa SDL_SetTextureColorModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureColorModFloat(SDL_Texture *texture, float *r, float *g, float *b); + +/** + * Set an additional alpha value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation the source alpha + * value is modulated by this alpha value according to the following formula: + * + * `srcA = srcA * (alpha / 255)` + * + * Alpha modulation is not always supported by the renderer; it will return + * false if alpha modulation is not supported. + * + * \param texture the texture to update. + * \param alpha the source alpha value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaMod + * \sa SDL_SetTextureAlphaModFloat + * \sa SDL_SetTextureColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureAlphaMod(SDL_Texture *texture, Uint8 alpha); + +/** + * Set an additional alpha value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation the source alpha + * value is modulated by this alpha value according to the following formula: + * + * `srcA = srcA * alpha` + * + * Alpha modulation is not always supported by the renderer; it will return + * false if alpha modulation is not supported. + * + * \param texture the texture to update. + * \param alpha the source alpha value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaModFloat + * \sa SDL_SetTextureAlphaMod + * \sa SDL_SetTextureColorModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureAlphaModFloat(SDL_Texture *texture, float alpha); + +/** + * Get the additional alpha value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param alpha a pointer filled in with the current alpha value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaModFloat + * \sa SDL_GetTextureColorMod + * \sa SDL_SetTextureAlphaMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureAlphaMod(SDL_Texture *texture, Uint8 *alpha); + +/** + * Get the additional alpha value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param alpha a pointer filled in with the current alpha value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaMod + * \sa SDL_GetTextureColorModFloat + * \sa SDL_SetTextureAlphaModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureAlphaModFloat(SDL_Texture *texture, float *alpha); + +/** + * Set the blend mode for a texture, used by SDL_RenderTexture(). + * + * If the blend mode is not supported, the closest supported mode is chosen + * and this function returns false. + * + * \param texture the texture to update. + * \param blendMode the SDL_BlendMode to use for texture blending. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureBlendMode(SDL_Texture *texture, SDL_BlendMode blendMode); + +/** + * Get the blend mode used for texture copy operations. + * + * \param texture the texture to query. + * \param blendMode a pointer filled in with the current SDL_BlendMode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextureBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureBlendMode(SDL_Texture *texture, SDL_BlendMode *blendMode); + +/** + * Set the scale mode used for texture scale operations. + * + * The default texture scale mode is SDL_SCALEMODE_LINEAR. + * + * If the scale mode is not supported, the closest supported mode is chosen. + * + * \param texture the texture to update. + * \param scaleMode the SDL_ScaleMode to use for texture scaling. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureScaleMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureScaleMode(SDL_Texture *texture, SDL_ScaleMode scaleMode); + +/** + * Get the scale mode used for texture scale operations. + * + * \param texture the texture to query. + * \param scaleMode a pointer filled in with the current scale mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextureScaleMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureScaleMode(SDL_Texture *texture, SDL_ScaleMode *scaleMode); + +/** + * Update the given texture rectangle with new pixel data. + * + * The pixel data must be in the pixel format of the texture, which can be + * queried using the SDL_PROP_TEXTURE_FORMAT_NUMBER property. + * + * This is a fairly slow function, intended for use with static textures that + * do not change often. + * + * If the texture is intended to be updated often, it is preferred to create + * the texture as streaming and use the locking functions referenced below. + * While this function will work with streaming textures, for optimization + * reasons you may not get the pixels back if you lock the texture afterward. + * + * \param texture the texture to update. + * \param rect an SDL_Rect structure representing the area to update, or NULL + * to update the entire texture. + * \param pixels the raw pixel data in the format of the texture. + * \param pitch the number of bytes in a row of pixel data, including padding + * between lines. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTexture + * \sa SDL_UnlockTexture + * \sa SDL_UpdateNVTexture + * \sa SDL_UpdateYUVTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateTexture(SDL_Texture *texture, const SDL_Rect *rect, const void *pixels, int pitch); + +/** + * Update a rectangle within a planar YV12 or IYUV texture with new pixel + * data. + * + * You can use SDL_UpdateTexture() as long as your pixel data is a contiguous + * block of Y and U/V planes in the proper order, but this function is + * available if your pixel data is not contiguous. + * + * \param texture the texture to update. + * \param rect a pointer to the rectangle of pixels to update, or NULL to + * update the entire texture. + * \param Yplane the raw pixel data for the Y plane. + * \param Ypitch the number of bytes between rows of pixel data for the Y + * plane. + * \param Uplane the raw pixel data for the U plane. + * \param Upitch the number of bytes between rows of pixel data for the U + * plane. + * \param Vplane the raw pixel data for the V plane. + * \param Vpitch the number of bytes between rows of pixel data for the V + * plane. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UpdateNVTexture + * \sa SDL_UpdateTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateYUVTexture(SDL_Texture *texture, + const SDL_Rect *rect, + const Uint8 *Yplane, int Ypitch, + const Uint8 *Uplane, int Upitch, + const Uint8 *Vplane, int Vpitch); + +/** + * Update a rectangle within a planar NV12 or NV21 texture with new pixels. + * + * You can use SDL_UpdateTexture() as long as your pixel data is a contiguous + * block of NV12/21 planes in the proper order, but this function is available + * if your pixel data is not contiguous. + * + * \param texture the texture to update. + * \param rect a pointer to the rectangle of pixels to update, or NULL to + * update the entire texture. + * \param Yplane the raw pixel data for the Y plane. + * \param Ypitch the number of bytes between rows of pixel data for the Y + * plane. + * \param UVplane the raw pixel data for the UV plane. + * \param UVpitch the number of bytes between rows of pixel data for the UV + * plane. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UpdateTexture + * \sa SDL_UpdateYUVTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateNVTexture(SDL_Texture *texture, + const SDL_Rect *rect, + const Uint8 *Yplane, int Ypitch, + const Uint8 *UVplane, int UVpitch); + +/** + * Lock a portion of the texture for **write-only** pixel access. + * + * As an optimization, the pixels made available for editing don't necessarily + * contain the old texture data. This is a write-only operation, and if you + * need to keep a copy of the texture data you should do that at the + * application level. + * + * You must use SDL_UnlockTexture() to unlock the pixels and apply any + * changes. + * + * \param texture the texture to lock for access, which was created with + * `SDL_TEXTUREACCESS_STREAMING`. + * \param rect an SDL_Rect structure representing the area to lock for access; + * NULL to lock the entire texture. + * \param pixels this is filled in with a pointer to the locked pixels, + * appropriately offset by the locked area. + * \param pitch this is filled in with the pitch of the locked pixels; the + * pitch is the length of one row in bytes. + * \returns true on success or false if the texture is not valid or was not + * created with `SDL_TEXTUREACCESS_STREAMING`; call SDL_GetError() + * for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTextureToSurface + * \sa SDL_UnlockTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockTexture(SDL_Texture *texture, + const SDL_Rect *rect, + void **pixels, int *pitch); + +/** + * Lock a portion of the texture for **write-only** pixel access, and expose + * it as a SDL surface. + * + * Besides providing an SDL_Surface instead of raw pixel data, this function + * operates like SDL_LockTexture. + * + * As an optimization, the pixels made available for editing don't necessarily + * contain the old texture data. This is a write-only operation, and if you + * need to keep a copy of the texture data you should do that at the + * application level. + * + * You must use SDL_UnlockTexture() to unlock the pixels and apply any + * changes. + * + * The returned surface is freed internally after calling SDL_UnlockTexture() + * or SDL_DestroyTexture(). The caller should not free it. + * + * \param texture the texture to lock for access, which must be created with + * `SDL_TEXTUREACCESS_STREAMING`. + * \param rect a pointer to the rectangle to lock for access. If the rect is + * NULL, the entire texture will be locked. + * \param surface a pointer to an SDL surface of size **rect**. Don't assume + * any specific pixel content. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTexture + * \sa SDL_UnlockTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockTextureToSurface(SDL_Texture *texture, const SDL_Rect *rect, SDL_Surface **surface); + +/** + * Unlock a texture, uploading the changes to video memory, if needed. + * + * **Warning**: Please note that SDL_LockTexture() is intended to be + * write-only; it will not guarantee the previous contents of the texture will + * be provided. You must fully initialize any area of a texture that you lock + * before unlocking it, as the pixels might otherwise be uninitialized memory. + * + * Which is to say: locking and immediately unlocking a texture can result in + * corrupted textures, depending on the renderer in use. + * + * \param texture a texture locked by SDL_LockTexture(). + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTexture + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockTexture(SDL_Texture *texture); + +/** + * Set a texture as the current rendering target. + * + * The default render target is the window for which the renderer was created. + * To stop rendering to a texture and render to the window again, call this + * function with a NULL `texture`. + * + * Viewport, cliprect, scale, and logical presentation are unique to each + * render target. Get and set functions for these states apply to the current + * render target set by this function, and those states persist on each target + * when the current render target changes. + * + * \param renderer the rendering context. + * \param texture the targeted texture, which must be created with the + * `SDL_TEXTUREACCESS_TARGET` flag, or NULL to render to the + * window instead of a texture. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderTarget + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderTarget(SDL_Renderer *renderer, SDL_Texture *texture); + +/** + * Get the current render target. + * + * The default render target is the window for which the renderer was created, + * and is reported a NULL here. + * + * \param renderer the rendering context. + * \returns the current render target or NULL for the default render target. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderTarget + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_GetRenderTarget(SDL_Renderer *renderer); + +/** + * Set a device-independent resolution and presentation mode for rendering. + * + * This function sets the width and height of the logical rendering output. + * The renderer will act as if the current render target is always the + * requested dimensions, scaling to the actual resolution as necessary. + * + * This can be useful for games that expect a fixed size, but would like to + * scale the output to whatever is available, regardless of how a user resizes + * a window, or if the display is high DPI. + * + * Logical presentation can be used with both render target textures and the + * renderer's window; the state is unique to each render target, and this + * function sets the state for the current render target. It might be useful + * to draw to a texture that matches the window dimensions with logical + * presentation enabled, and then draw that texture across the entire window + * with logical presentation disabled. Be careful not to render both with + * logical presentation enabled, however, as this could produce + * double-letterboxing, etc. + * + * You can disable logical coordinates by setting the mode to + * SDL_LOGICAL_PRESENTATION_DISABLED, and in that case you get the full pixel + * resolution of the render target; it is safe to toggle logical presentation + * during the rendering of a frame: perhaps most of the rendering is done to + * specific dimensions but to make fonts look sharp, the app turns off logical + * presentation while drawing text, for example. + * + * For the renderer's window, letterboxing is drawn into the framebuffer if + * logical presentation is enabled during SDL_RenderPresent; be sure to + * reenable it before presenting if you were toggling it, otherwise the + * letterbox areas might have artifacts from previous frames (or artifacts + * from external overlays, etc). Letterboxing is never drawn into texture + * render targets; be sure to call SDL_RenderClear() before drawing into the + * texture so the letterboxing areas are cleared, if appropriate. + * + * You can convert coordinates in an event into rendering coordinates using + * SDL_ConvertEventToRenderCoordinates(). + * + * \param renderer the rendering context. + * \param w the width of the logical resolution. + * \param h the height of the logical resolution. + * \param mode the presentation mode used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertEventToRenderCoordinates + * \sa SDL_GetRenderLogicalPresentation + * \sa SDL_GetRenderLogicalPresentationRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderLogicalPresentation(SDL_Renderer *renderer, int w, int h, SDL_RendererLogicalPresentation mode); + +/** + * Get device independent resolution and presentation mode for rendering. + * + * This function gets the width and height of the logical rendering output, or + * the output size in pixels if a logical resolution is not enabled. + * + * Each render target has its own logical presentation state. This function + * gets the state for the current render target. + * + * \param renderer the rendering context. + * \param w an int to be filled with the width. + * \param h an int to be filled with the height. + * \param mode the presentation mode used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderLogicalPresentation(SDL_Renderer *renderer, int *w, int *h, SDL_RendererLogicalPresentation *mode); + +/** + * Get the final presentation rectangle for rendering. + * + * This function returns the calculated rectangle used for logical + * presentation, based on the presentation mode and output size. If logical + * presentation is disabled, it will fill the rectangle with the output size, + * in pixels. + * + * Each render target has its own logical presentation state. This function + * gets the rectangle for the current render target. + * + * \param renderer the rendering context. + * \param rect a pointer filled in with the final presentation rectangle, may + * be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderLogicalPresentationRect(SDL_Renderer *renderer, SDL_FRect *rect); + +/** + * Get a point in render coordinates when given a point in window coordinates. + * + * This takes into account several states: + * + * - The window dimensions. + * - The logical presentation settings (SDL_SetRenderLogicalPresentation) + * - The scale (SDL_SetRenderScale) + * - The viewport (SDL_SetRenderViewport) + * + * \param renderer the rendering context. + * \param window_x the x coordinate in window coordinates. + * \param window_y the y coordinate in window coordinates. + * \param x a pointer filled with the x coordinate in render coordinates. + * \param y a pointer filled with the y coordinate in render coordinates. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + * \sa SDL_SetRenderScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderCoordinatesFromWindow(SDL_Renderer *renderer, float window_x, float window_y, float *x, float *y); + +/** + * Get a point in window coordinates when given a point in render coordinates. + * + * This takes into account several states: + * + * - The window dimensions. + * - The logical presentation settings (SDL_SetRenderLogicalPresentation) + * - The scale (SDL_SetRenderScale) + * - The viewport (SDL_SetRenderViewport) + * + * \param renderer the rendering context. + * \param x the x coordinate in render coordinates. + * \param y the y coordinate in render coordinates. + * \param window_x a pointer filled with the x coordinate in window + * coordinates. + * \param window_y a pointer filled with the y coordinate in window + * coordinates. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + * \sa SDL_SetRenderScale + * \sa SDL_SetRenderViewport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderCoordinatesToWindow(SDL_Renderer *renderer, float x, float y, float *window_x, float *window_y); + +/** + * Convert the coordinates in an event to render coordinates. + * + * This takes into account several states: + * + * - The window dimensions. + * - The logical presentation settings (SDL_SetRenderLogicalPresentation) + * - The scale (SDL_SetRenderScale) + * - The viewport (SDL_SetRenderViewport) + * + * Various event types are converted with this function: mouse, touch, pen, + * etc. + * + * Touch coordinates are converted from normalized coordinates in the window + * to non-normalized rendering coordinates. + * + * Relative mouse coordinates (xrel and yrel event fields) are _also_ + * converted. Applications that do not want these fields converted should use + * SDL_RenderCoordinatesFromWindow() on the specific event fields instead of + * converting the entire event structure. + * + * Once converted, coordinates may be outside the rendering area. + * + * \param renderer the rendering context. + * \param event the event to modify. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderCoordinatesFromWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertEventToRenderCoordinates(SDL_Renderer *renderer, SDL_Event *event); + +/** + * Set the drawing area for rendering on the current target. + * + * Drawing will clip to this area (separately from any clipping done with + * SDL_SetRenderClipRect), and the top left of the area will become coordinate + * (0, 0) for future drawing commands. + * + * The area's width and height must be >= 0. + * + * Each render target has its own viewport. This function sets the viewport + * for the current render target. + * + * \param renderer the rendering context. + * \param rect the SDL_Rect structure representing the drawing area, or NULL + * to set the viewport to the entire target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderViewport + * \sa SDL_RenderViewportSet + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderViewport(SDL_Renderer *renderer, const SDL_Rect *rect); + +/** + * Get the drawing area for the current target. + * + * Each render target has its own viewport. This function gets the viewport + * for the current render target. + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure filled in with the current drawing area. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderViewportSet + * \sa SDL_SetRenderViewport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderViewport(SDL_Renderer *renderer, SDL_Rect *rect); + +/** + * Return whether an explicit rectangle was set as the viewport. + * + * This is useful if you're saving and restoring the viewport and want to know + * whether you should restore a specific rectangle or NULL. + * + * Each render target has its own viewport. This function checks the viewport + * for the current render target. + * + * \param renderer the rendering context. + * \returns true if the viewport was set to a specific rectangle, or false if + * it was set to NULL (the entire target). + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderViewport + * \sa SDL_SetRenderViewport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderViewportSet(SDL_Renderer *renderer); + +/** + * Get the safe area for rendering within the current viewport. + * + * Some devices have portions of the screen which are partially obscured or + * not interactive, possibly due to on-screen controls, curved edges, camera + * notches, TV overscan, etc. This function provides the area of the current + * viewport which is safe to have interactible content. You should continue + * rendering into the rest of the render target, but it should not contain + * visually important or interactible content. + * + * \param renderer the rendering context. + * \param rect a pointer filled in with the area that is safe for interactive + * content. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderSafeArea(SDL_Renderer *renderer, SDL_Rect *rect); + +/** + * Set the clip rectangle for rendering on the specified target. + * + * Each render target has its own clip rectangle. This function sets the + * cliprect for the current render target. + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure representing the clip area, relative to + * the viewport, or NULL to disable clipping. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderClipRect + * \sa SDL_RenderClipEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderClipRect(SDL_Renderer *renderer, const SDL_Rect *rect); + +/** + * Get the clip rectangle for the current target. + * + * Each render target has its own clip rectangle. This function gets the + * cliprect for the current render target. + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure filled in with the current clipping area + * or an empty rectangle if clipping is disabled. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderClipEnabled + * \sa SDL_SetRenderClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderClipRect(SDL_Renderer *renderer, SDL_Rect *rect); + +/** + * Get whether clipping is enabled on the given render target. + * + * Each render target has its own clip rectangle. This function checks the + * cliprect for the current render target. + * + * \param renderer the rendering context. + * \returns true if clipping is enabled or false if not; call SDL_GetError() + * for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderClipRect + * \sa SDL_SetRenderClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderClipEnabled(SDL_Renderer *renderer); + +/** + * Set the drawing scale for rendering on the current target. + * + * The drawing coordinates are scaled by the x/y scaling factors before they + * are used by the renderer. This allows resolution independent drawing with a + * single coordinate system. + * + * If this results in scaling or subpixel drawing by the rendering backend, it + * will be handled using the appropriate quality hints. For best results use + * integer scaling factors. + * + * Each render target has its own scale. This function sets the scale for the + * current render target. + * + * \param renderer the rendering context. + * \param scaleX the horizontal scaling factor. + * \param scaleY the vertical scaling factor. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderScale(SDL_Renderer *renderer, float scaleX, float scaleY); + +/** + * Get the drawing scale for the current target. + * + * Each render target has its own scale. This function gets the scale for the + * current render target. + * + * \param renderer the rendering context. + * \param scaleX a pointer filled in with the horizontal scaling factor. + * \param scaleY a pointer filled in with the vertical scaling factor. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderScale(SDL_Renderer *renderer, float *scaleX, float *scaleY); + +/** + * Set the color used for drawing operations. + * + * Set the color for drawing or filling rectangles, lines, and points, and for + * SDL_RenderClear(). + * + * \param renderer the rendering context. + * \param r the red value used to draw on the rendering target. + * \param g the green value used to draw on the rendering target. + * \param b the blue value used to draw on the rendering target. + * \param a the alpha value used to draw on the rendering target; usually + * `SDL_ALPHA_OPAQUE` (255). Use SDL_SetRenderDrawBlendMode to + * specify how the alpha channel is used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawColor + * \sa SDL_SetRenderDrawColorFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderDrawColor(SDL_Renderer *renderer, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Set the color used for drawing operations (Rect, Line and Clear). + * + * Set the color for drawing or filling rectangles, lines, and points, and for + * SDL_RenderClear(). + * + * \param renderer the rendering context. + * \param r the red value used to draw on the rendering target. + * \param g the green value used to draw on the rendering target. + * \param b the blue value used to draw on the rendering target. + * \param a the alpha value used to draw on the rendering target. Use + * SDL_SetRenderDrawBlendMode to specify how the alpha channel is + * used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawColorFloat + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderDrawColorFloat(SDL_Renderer *renderer, float r, float g, float b, float a); + +/** + * Get the color used for drawing operations (Rect, Line and Clear). + * + * \param renderer the rendering context. + * \param r a pointer filled in with the red value used to draw on the + * rendering target. + * \param g a pointer filled in with the green value used to draw on the + * rendering target. + * \param b a pointer filled in with the blue value used to draw on the + * rendering target. + * \param a a pointer filled in with the alpha value used to draw on the + * rendering target; usually `SDL_ALPHA_OPAQUE` (255). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawColorFloat + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderDrawColor(SDL_Renderer *renderer, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); + +/** + * Get the color used for drawing operations (Rect, Line and Clear). + * + * \param renderer the rendering context. + * \param r a pointer filled in with the red value used to draw on the + * rendering target. + * \param g a pointer filled in with the green value used to draw on the + * rendering target. + * \param b a pointer filled in with the blue value used to draw on the + * rendering target. + * \param a a pointer filled in with the alpha value used to draw on the + * rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawColorFloat + * \sa SDL_GetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderDrawColorFloat(SDL_Renderer *renderer, float *r, float *g, float *b, float *a); + +/** + * Set the color scale used for render operations. + * + * The color scale is an additional scale multiplied into the pixel color + * value while rendering. This can be used to adjust the brightness of colors + * during HDR rendering, or changing HDR video brightness when playing on an + * SDR display. + * + * The color scale does not affect the alpha channel, only the color + * brightness. + * + * \param renderer the rendering context. + * \param scale the color scale value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderColorScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderColorScale(SDL_Renderer *renderer, float scale); + +/** + * Get the color scale used for render operations. + * + * \param renderer the rendering context. + * \param scale a pointer filled in with the current color scale value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderColorScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderColorScale(SDL_Renderer *renderer, float *scale); + +/** + * Set the blend mode used for drawing operations (Fill and Line). + * + * If the blend mode is not supported, the closest supported mode is chosen. + * + * \param renderer the rendering context. + * \param blendMode the SDL_BlendMode to use for blending. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderDrawBlendMode(SDL_Renderer *renderer, SDL_BlendMode blendMode); + +/** + * Get the blend mode used for drawing operations. + * + * \param renderer the rendering context. + * \param blendMode a pointer filled in with the current SDL_BlendMode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderDrawBlendMode(SDL_Renderer *renderer, SDL_BlendMode *blendMode); + +/** + * Clear the current rendering target with the drawing color. + * + * This function clears the entire rendering target, ignoring the viewport and + * the clip rectangle. Note, that clearing will also set/fill all pixels of + * the rendering target to current renderer draw color, so make sure to invoke + * SDL_SetRenderDrawColor() when needed. + * + * \param renderer the rendering context. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderClear(SDL_Renderer *renderer); + +/** + * Draw a point on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw a point. + * \param x the x coordinate of the point. + * \param y the y coordinate of the point. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderPoints + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderPoint(SDL_Renderer *renderer, float x, float y); + +/** + * Draw multiple points on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw multiple points. + * \param points the points to draw. + * \param count the number of points to draw. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderPoint + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderPoints(SDL_Renderer *renderer, const SDL_FPoint *points, int count); + +/** + * Draw a line on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw a line. + * \param x1 the x coordinate of the start point. + * \param y1 the y coordinate of the start point. + * \param x2 the x coordinate of the end point. + * \param y2 the y coordinate of the end point. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderLines + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderLine(SDL_Renderer *renderer, float x1, float y1, float x2, float y2); + +/** + * Draw a series of connected lines on the current rendering target at + * subpixel precision. + * + * \param renderer the renderer which should draw multiple lines. + * \param points the points along the lines. + * \param count the number of points, drawing count-1 lines. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderLine + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderLines(SDL_Renderer *renderer, const SDL_FPoint *points, int count); + +/** + * Draw a rectangle on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw a rectangle. + * \param rect a pointer to the destination rectangle, or NULL to outline the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderRect(SDL_Renderer *renderer, const SDL_FRect *rect); + +/** + * Draw some number of rectangles on the current rendering target at subpixel + * precision. + * + * \param renderer the renderer which should draw multiple rectangles. + * \param rects a pointer to an array of destination rectangles. + * \param count the number of rectangles. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderRects(SDL_Renderer *renderer, const SDL_FRect *rects, int count); + +/** + * Fill a rectangle on the current rendering target with the drawing color at + * subpixel precision. + * + * \param renderer the renderer which should fill a rectangle. + * \param rect a pointer to the destination rectangle, or NULL for the entire + * rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderFillRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderFillRect(SDL_Renderer *renderer, const SDL_FRect *rect); + +/** + * Fill some number of rectangles on the current rendering target with the + * drawing color at subpixel precision. + * + * \param renderer the renderer which should fill multiple rectangles. + * \param rects a pointer to an array of destination rectangles. + * \param count the number of rectangles. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderFillRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderFillRects(SDL_Renderer *renderer, const SDL_FRect *rects, int count); + +/** + * Copy a portion of the texture to the current rendering target at subpixel + * precision. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTextureRotated + * \sa SDL_RenderTextureTiled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTexture(SDL_Renderer *renderer, SDL_Texture *texture, const SDL_FRect *srcrect, const SDL_FRect *dstrect); + +/** + * Copy a portion of the source texture to the current rendering target, with + * rotation and flipping, at subpixel precision. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \param angle an angle in degrees that indicates the rotation that will be + * applied to dstrect, rotating it in a clockwise direction. + * \param center a pointer to a point indicating the point around which + * dstrect will be rotated (if NULL, rotation will be done + * around dstrect.w/2, dstrect.h/2). + * \param flip an SDL_FlipMode value stating which flipping actions should be + * performed on the texture. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTextureRotated(SDL_Renderer *renderer, SDL_Texture *texture, + const SDL_FRect *srcrect, const SDL_FRect *dstrect, + double angle, const SDL_FPoint *center, + SDL_FlipMode flip); + +/** + * Copy a portion of the source texture to the current rendering target, with + * affine transform, at subpixel precision. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param origin a pointer to a point indicating where the top-left corner of + * srcrect should be mapped to, or NULL for the rendering + * target's origin. + * \param right a pointer to a point indicating where the top-right corner of + * srcrect should be mapped to, or NULL for the rendering + * target's top-right corner. + * \param down a pointer to a point indicating where the bottom-left corner of + * srcrect should be mapped to, or NULL for the rendering target's + * bottom-left corner. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety You may only call this function from the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTextureAffine(SDL_Renderer *renderer, SDL_Texture *texture, + const SDL_FRect *srcrect, const SDL_FPoint *origin, + const SDL_FPoint *right, const SDL_FPoint *down); + +/** + * Tile a portion of the texture to the current rendering target at subpixel + * precision. + * + * The pixels in `srcrect` will be repeated as many times as needed to + * completely fill `dstrect`. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param scale the scale used to transform srcrect into the destination + * rectangle, e.g. a 32x32 texture with a scale of 2 would fill + * 64x64 tiles. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTextureTiled(SDL_Renderer *renderer, SDL_Texture *texture, const SDL_FRect *srcrect, float scale, const SDL_FRect *dstrect); + +/** + * Perform a scaled copy using the 9-grid algorithm to the current rendering + * target at subpixel precision. + * + * The pixels in the texture are split into a 3x3 grid, using the different + * corner sizes for each corner, and the sides and center making up the + * remaining pixels. The corners are then scaled using `scale` and fit into + * the corners of the destination rectangle. The sides and center are then + * stretched into place to cover the remaining destination rectangle. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect the SDL_Rect structure representing the rectangle to be used + * for the 9-grid, or NULL to use the entire texture. + * \param left_width the width, in pixels, of the left corners in `srcrect`. + * \param right_width the width, in pixels, of the right corners in `srcrect`. + * \param top_height the height, in pixels, of the top corners in `srcrect`. + * \param bottom_height the height, in pixels, of the bottom corners in + * `srcrect`. + * \param scale the scale used to transform the corner of `srcrect` into the + * corner of `dstrect`, or 0.0f for an unscaled copy. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTexture9Grid(SDL_Renderer *renderer, SDL_Texture *texture, const SDL_FRect *srcrect, float left_width, float right_width, float top_height, float bottom_height, float scale, const SDL_FRect *dstrect); + +/** + * Render a list of triangles, optionally using a texture and indices into the + * vertex array Color and alpha modulation is done per vertex + * (SDL_SetTextureColorMod and SDL_SetTextureAlphaMod are ignored). + * + * \param renderer the rendering context. + * \param texture (optional) The SDL texture to use. + * \param vertices vertices. + * \param num_vertices number of vertices. + * \param indices (optional) An array of integer indices into the 'vertices' + * array, if NULL all vertices will be rendered in sequential + * order. + * \param num_indices number of indices. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderGeometryRaw + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderGeometry(SDL_Renderer *renderer, + SDL_Texture *texture, + const SDL_Vertex *vertices, int num_vertices, + const int *indices, int num_indices); + +/** + * Render a list of triangles, optionally using a texture and indices into the + * vertex arrays Color and alpha modulation is done per vertex + * (SDL_SetTextureColorMod and SDL_SetTextureAlphaMod are ignored). + * + * \param renderer the rendering context. + * \param texture (optional) The SDL texture to use. + * \param xy vertex positions. + * \param xy_stride byte size to move from one element to the next element. + * \param color vertex colors (as SDL_FColor). + * \param color_stride byte size to move from one element to the next element. + * \param uv vertex normalized texture coordinates. + * \param uv_stride byte size to move from one element to the next element. + * \param num_vertices number of vertices. + * \param indices (optional) An array of indices into the 'vertices' arrays, + * if NULL all vertices will be rendered in sequential order. + * \param num_indices number of indices. + * \param size_indices index size: 1 (byte), 2 (short), 4 (int). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderGeometry + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderGeometryRaw(SDL_Renderer *renderer, + SDL_Texture *texture, + const float *xy, int xy_stride, + const SDL_FColor *color, int color_stride, + const float *uv, int uv_stride, + int num_vertices, + const void *indices, int num_indices, int size_indices); + +/** + * Read pixels from the current rendering target. + * + * The returned surface contains pixels inside the desired area clipped to the + * current viewport, and should be freed with SDL_DestroySurface(). + * + * Note that this returns the actual pixels on the screen, so if you are using + * logical presentation you should use SDL_GetRenderLogicalPresentationRect() + * to get the area containing your content. + * + * **WARNING**: This is a very slow operation, and should not be used + * frequently. If you're using this on the main rendering target, it should be + * called after rendering and before SDL_RenderPresent(). + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure representing the area to read, which will + * be clipped to the current viewport, or NULL for the entire + * viewport. + * \returns a new SDL_Surface on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_RenderReadPixels(SDL_Renderer *renderer, const SDL_Rect *rect); + +/** + * Update the screen with any rendering performed since the previous call. + * + * SDL's rendering functions operate on a backbuffer; that is, calling a + * rendering function such as SDL_RenderLine() does not directly put a line on + * the screen, but rather updates the backbuffer. As such, you compose your + * entire scene and *present* the composed backbuffer to the screen as a + * complete picture. + * + * Therefore, when using SDL's rendering API, one does all drawing intended + * for the frame, and then calls this function once per frame to present the + * final drawing to the user. + * + * The backbuffer should be considered invalidated after each present; do not + * assume that previous contents will exist between frames. You are strongly + * encouraged to call SDL_RenderClear() to initialize the backbuffer before + * starting each new frame's drawing, even if you plan to overwrite every + * pixel. + * + * Please note, that in case of rendering to a texture - there is **no need** + * to call `SDL_RenderPresent` after drawing needed objects to a texture, and + * should not be done; you are only required to change back the rendering + * target to default via `SDL_SetRenderTarget(renderer, NULL)` afterwards, as + * textures by themselves do not have a concept of backbuffers. Calling + * SDL_RenderPresent while rendering to a texture will still update the screen + * with any current drawing that has been done _to the window itself_. + * + * \param renderer the rendering context. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_RenderClear + * \sa SDL_RenderFillRect + * \sa SDL_RenderFillRects + * \sa SDL_RenderLine + * \sa SDL_RenderLines + * \sa SDL_RenderPoint + * \sa SDL_RenderPoints + * \sa SDL_RenderRect + * \sa SDL_RenderRects + * \sa SDL_SetRenderDrawBlendMode + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderPresent(SDL_Renderer *renderer); + +/** + * Destroy the specified texture. + * + * Passing NULL or an otherwise invalid texture will set the SDL error message + * to "Invalid texture". + * + * \param texture the texture to destroy. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureFromSurface + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyTexture(SDL_Texture *texture); + +/** + * Destroy the rendering context for a window and free all associated + * textures. + * + * This should be called before destroying the associated window. + * + * \param renderer the rendering context. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyRenderer(SDL_Renderer *renderer); + +/** + * Force the rendering context to flush any pending commands and state. + * + * You do not need to (and in fact, shouldn't) call this function unless you + * are planning to call into OpenGL/Direct3D/Metal/whatever directly, in + * addition to using an SDL_Renderer. + * + * This is for a very-specific case: if you are using SDL's render API, and + * you plan to make OpenGL/D3D/whatever calls in addition to SDL render API + * calls. If this applies, you should call this function between calls to + * SDL's render API and the low-level API you're using in cooperation. + * + * In all other cases, you can ignore this function. + * + * This call makes SDL flush any pending rendering work it was queueing up to + * do later in a single batch, and marks any internal cached state as invalid, + * so it'll prepare all its state again later, from scratch. + * + * This means you do not need to save state in your rendering code to protect + * the SDL renderer. However, there lots of arbitrary pieces of Direct3D and + * OpenGL state that can confuse things; you should use your best judgment and + * be prepared to make changes if specific state needs to be protected. + * + * \param renderer the rendering context. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlushRenderer(SDL_Renderer *renderer); + +/** + * Get the CAMetalLayer associated with the given Metal renderer. + * + * This function returns `void *`, so SDL doesn't have to include Metal's + * headers, but it can be safely cast to a `CAMetalLayer *`. + * + * \param renderer the renderer to query. + * \returns a `CAMetalLayer *` on success, or NULL if the renderer isn't a + * Metal renderer. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderMetalCommandEncoder + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetRenderMetalLayer(SDL_Renderer *renderer); + +/** + * Get the Metal command encoder for the current frame. + * + * This function returns `void *`, so SDL doesn't have to include Metal's + * headers, but it can be safely cast to an `id`. + * + * This will return NULL if Metal refuses to give SDL a drawable to render to, + * which might happen if the window is hidden/minimized/offscreen. This + * doesn't apply to command encoders for render targets, just the window's + * backbuffer. Check your return values! + * + * \param renderer the renderer to query. + * \returns an `id` on success, or NULL if the + * renderer isn't a Metal renderer or there was an error. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderMetalLayer + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetRenderMetalCommandEncoder(SDL_Renderer *renderer); + + +/** + * Add a set of synchronization semaphores for the current frame. + * + * The Vulkan renderer will wait for `wait_semaphore` before submitting + * rendering commands and signal `signal_semaphore` after rendering commands + * are complete for this frame. + * + * This should be called each frame that you want semaphore synchronization. + * The Vulkan renderer may have multiple frames in flight on the GPU, so you + * should have multiple semaphores that are used for synchronization. Querying + * SDL_PROP_RENDERER_VULKAN_SWAPCHAIN_IMAGE_COUNT_NUMBER will give you the + * maximum number of semaphores you'll need. + * + * \param renderer the rendering context. + * \param wait_stage_mask the VkPipelineStageFlags for the wait. + * \param wait_semaphore a VkSempahore to wait on before rendering the current + * frame, or 0 if not needed. + * \param signal_semaphore a VkSempahore that SDL will signal when rendering + * for the current frame is complete, or 0 if not + * needed. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is **NOT** safe to call this function from two threads at + * once. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddVulkanRenderSemaphores(SDL_Renderer *renderer, Uint32 wait_stage_mask, Sint64 wait_semaphore, Sint64 signal_semaphore); + +/** + * Toggle VSync of the given renderer. + * + * When a renderer is created, vsync defaults to SDL_RENDERER_VSYNC_DISABLED. + * + * The `vsync` parameter can be 1 to synchronize present with every vertical + * refresh, 2 to synchronize present with every second vertical refresh, etc., + * SDL_RENDERER_VSYNC_ADAPTIVE for late swap tearing (adaptive vsync), or + * SDL_RENDERER_VSYNC_DISABLED to disable. Not every value is supported by + * every driver, so you should check the return value to see whether the + * requested setting is supported. + * + * \param renderer the renderer to toggle. + * \param vsync the vertical refresh sync interval. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderVSync(SDL_Renderer *renderer, int vsync); + +#define SDL_RENDERER_VSYNC_DISABLED 0 +#define SDL_RENDERER_VSYNC_ADAPTIVE (-1) + +/** + * Get VSync of the given renderer. + * + * \param renderer the renderer to toggle. + * \param vsync an int filled with the current vertical refresh sync interval. + * See SDL_SetRenderVSync() for the meaning of the value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderVSync(SDL_Renderer *renderer, int *vsync); + +/** + * The size, in pixels, of a single SDL_RenderDebugText() character. + * + * The font is monospaced and square, so this applies to all characters. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_RenderDebugText + */ +#define SDL_DEBUG_TEXT_FONT_CHARACTER_SIZE 8 + +/** + * Draw debug text to an SDL_Renderer. + * + * This function will render a string of text to an SDL_Renderer. Note that + * this is a convenience function for debugging, with severe limitations, and + * not intended to be used for production apps and games. + * + * Among these limitations: + * + * - It accepts UTF-8 strings, but will only renders ASCII characters. + * - It has a single, tiny size (8x8 pixels). One can use logical presentation + * or scaling to adjust it, but it will be blurry. + * - It uses a simple, hardcoded bitmap font. It does not allow different font + * selections and it does not support truetype, for proper scaling. + * - It does no word-wrapping and does not treat newline characters as a line + * break. If the text goes out of the window, it's gone. + * + * For serious text rendering, there are several good options, such as + * SDL_ttf, stb_truetype, or other external libraries. + * + * On first use, this will create an internal texture for rendering glyphs. + * This texture will live until the renderer is destroyed. + * + * The text is drawn in the color specified by SDL_SetRenderDrawColor(). + * + * \param renderer the renderer which should draw a line of text. + * \param x the x coordinate where the top-left corner of the text will draw. + * \param y the y coordinate where the top-left corner of the text will draw. + * \param str the string to render. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderDebugTextFormat + * \sa SDL_DEBUG_TEXT_FONT_CHARACTER_SIZE + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderDebugText(SDL_Renderer *renderer, float x, float y, const char *str); + +/** + * Draw debug text to an SDL_Renderer. + * + * This function will render a printf()-style format string to a renderer. + * Note that this is a convinence function for debugging, with severe + * limitations, and is not intended to be used for production apps and games. + * + * For the full list of limitations and other useful information, see + * SDL_RenderDebugText. + * + * \param renderer the renderer which should draw the text. + * \param x the x coordinate where the top-left corner of the text will draw. + * \param y the y coordinate where the top-left corner of the text will draw. + * \param fmt the format string to draw. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderDebugText + * \sa SDL_DEBUG_TEXT_FONT_CHARACTER_SIZE + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderDebugTextFormat(SDL_Renderer *renderer, float x, float y, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(4); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_render_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_revision.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_revision.h new file mode 100644 index 0000000..bcccca1 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_revision.h @@ -0,0 +1,56 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Version */ + +/* + * SDL_revision.h contains the SDL revision, which might be defined on the + * compiler command line, or generated right into the header itself by the + * build system. + */ + +#ifndef SDL_revision_h_ +#define SDL_revision_h_ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * This macro is a string describing the source at a particular point in + * development. + * + * This string is often generated from revision control's state at build time. + * + * This string can be quite complex and does not follow any standard. For + * example, it might be something like "SDL-prerelease-3.1.1-47-gf687e0732". + * It might also be user-defined at build time, so it's best to treat it as a + * clue in debugging forensics and not something the app will parse in any + * way. + * + * \since This macro is available since SDL 3.0.0. + */ +#define SDL_REVISION "Some arbitrary string decided at SDL build time" +#elif defined(SDL_VENDOR_INFO) +#define SDL_REVISION "release-3.2.20-0-g96292a5b4 (" SDL_VENDOR_INFO ")" +#else +#define SDL_REVISION "release-3.2.20-0-g96292a5b4" +#endif + +#endif /* SDL_revision_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_scancode.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_scancode.h new file mode 100644 index 0000000..6e9be47 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_scancode.h @@ -0,0 +1,429 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryScancode + * + * Defines keyboard scancodes. + * + * Please refer to the Best Keyboard Practices document for details on what + * this information means and how best to use it. + * + * https://wiki.libsdl.org/SDL3/BestKeyboardPractices + */ + +#ifndef SDL_scancode_h_ +#define SDL_scancode_h_ + +#include + +/** + * The SDL keyboard scancode representation. + * + * An SDL scancode is the physical representation of a key on the keyboard, + * independent of language and keyboard mapping. + * + * Values of this type are used to represent keyboard keys, among other places + * in the `scancode` field of the SDL_KeyboardEvent structure. + * + * The values in this enumeration are based on the USB usage page standard: + * https://usb.org/sites/default/files/hut1_5.pdf + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_Scancode +{ + SDL_SCANCODE_UNKNOWN = 0, + + /** + * \name Usage page 0x07 + * + * These values are from usage page 0x07 (USB keyboard page). + */ + /* @{ */ + + SDL_SCANCODE_A = 4, + SDL_SCANCODE_B = 5, + SDL_SCANCODE_C = 6, + SDL_SCANCODE_D = 7, + SDL_SCANCODE_E = 8, + SDL_SCANCODE_F = 9, + SDL_SCANCODE_G = 10, + SDL_SCANCODE_H = 11, + SDL_SCANCODE_I = 12, + SDL_SCANCODE_J = 13, + SDL_SCANCODE_K = 14, + SDL_SCANCODE_L = 15, + SDL_SCANCODE_M = 16, + SDL_SCANCODE_N = 17, + SDL_SCANCODE_O = 18, + SDL_SCANCODE_P = 19, + SDL_SCANCODE_Q = 20, + SDL_SCANCODE_R = 21, + SDL_SCANCODE_S = 22, + SDL_SCANCODE_T = 23, + SDL_SCANCODE_U = 24, + SDL_SCANCODE_V = 25, + SDL_SCANCODE_W = 26, + SDL_SCANCODE_X = 27, + SDL_SCANCODE_Y = 28, + SDL_SCANCODE_Z = 29, + + SDL_SCANCODE_1 = 30, + SDL_SCANCODE_2 = 31, + SDL_SCANCODE_3 = 32, + SDL_SCANCODE_4 = 33, + SDL_SCANCODE_5 = 34, + SDL_SCANCODE_6 = 35, + SDL_SCANCODE_7 = 36, + SDL_SCANCODE_8 = 37, + SDL_SCANCODE_9 = 38, + SDL_SCANCODE_0 = 39, + + SDL_SCANCODE_RETURN = 40, + SDL_SCANCODE_ESCAPE = 41, + SDL_SCANCODE_BACKSPACE = 42, + SDL_SCANCODE_TAB = 43, + SDL_SCANCODE_SPACE = 44, + + SDL_SCANCODE_MINUS = 45, + SDL_SCANCODE_EQUALS = 46, + SDL_SCANCODE_LEFTBRACKET = 47, + SDL_SCANCODE_RIGHTBRACKET = 48, + SDL_SCANCODE_BACKSLASH = 49, /**< Located at the lower left of the return + * key on ISO keyboards and at the right end + * of the QWERTY row on ANSI keyboards. + * Produces REVERSE SOLIDUS (backslash) and + * VERTICAL LINE in a US layout, REVERSE + * SOLIDUS and VERTICAL LINE in a UK Mac + * layout, NUMBER SIGN and TILDE in a UK + * Windows layout, DOLLAR SIGN and POUND SIGN + * in a Swiss German layout, NUMBER SIGN and + * APOSTROPHE in a German layout, GRAVE + * ACCENT and POUND SIGN in a French Mac + * layout, and ASTERISK and MICRO SIGN in a + * French Windows layout. + */ + SDL_SCANCODE_NONUSHASH = 50, /**< ISO USB keyboards actually use this code + * instead of 49 for the same key, but all + * OSes I've seen treat the two codes + * identically. So, as an implementor, unless + * your keyboard generates both of those + * codes and your OS treats them differently, + * you should generate SDL_SCANCODE_BACKSLASH + * instead of this code. As a user, you + * should not rely on this code because SDL + * will never generate it with most (all?) + * keyboards. + */ + SDL_SCANCODE_SEMICOLON = 51, + SDL_SCANCODE_APOSTROPHE = 52, + SDL_SCANCODE_GRAVE = 53, /**< Located in the top left corner (on both ANSI + * and ISO keyboards). Produces GRAVE ACCENT and + * TILDE in a US Windows layout and in US and UK + * Mac layouts on ANSI keyboards, GRAVE ACCENT + * and NOT SIGN in a UK Windows layout, SECTION + * SIGN and PLUS-MINUS SIGN in US and UK Mac + * layouts on ISO keyboards, SECTION SIGN and + * DEGREE SIGN in a Swiss German layout (Mac: + * only on ISO keyboards), CIRCUMFLEX ACCENT and + * DEGREE SIGN in a German layout (Mac: only on + * ISO keyboards), SUPERSCRIPT TWO and TILDE in a + * French Windows layout, COMMERCIAL AT and + * NUMBER SIGN in a French Mac layout on ISO + * keyboards, and LESS-THAN SIGN and GREATER-THAN + * SIGN in a Swiss German, German, or French Mac + * layout on ANSI keyboards. + */ + SDL_SCANCODE_COMMA = 54, + SDL_SCANCODE_PERIOD = 55, + SDL_SCANCODE_SLASH = 56, + + SDL_SCANCODE_CAPSLOCK = 57, + + SDL_SCANCODE_F1 = 58, + SDL_SCANCODE_F2 = 59, + SDL_SCANCODE_F3 = 60, + SDL_SCANCODE_F4 = 61, + SDL_SCANCODE_F5 = 62, + SDL_SCANCODE_F6 = 63, + SDL_SCANCODE_F7 = 64, + SDL_SCANCODE_F8 = 65, + SDL_SCANCODE_F9 = 66, + SDL_SCANCODE_F10 = 67, + SDL_SCANCODE_F11 = 68, + SDL_SCANCODE_F12 = 69, + + SDL_SCANCODE_PRINTSCREEN = 70, + SDL_SCANCODE_SCROLLLOCK = 71, + SDL_SCANCODE_PAUSE = 72, + SDL_SCANCODE_INSERT = 73, /**< insert on PC, help on some Mac keyboards (but + does send code 73, not 117) */ + SDL_SCANCODE_HOME = 74, + SDL_SCANCODE_PAGEUP = 75, + SDL_SCANCODE_DELETE = 76, + SDL_SCANCODE_END = 77, + SDL_SCANCODE_PAGEDOWN = 78, + SDL_SCANCODE_RIGHT = 79, + SDL_SCANCODE_LEFT = 80, + SDL_SCANCODE_DOWN = 81, + SDL_SCANCODE_UP = 82, + + SDL_SCANCODE_NUMLOCKCLEAR = 83, /**< num lock on PC, clear on Mac keyboards + */ + SDL_SCANCODE_KP_DIVIDE = 84, + SDL_SCANCODE_KP_MULTIPLY = 85, + SDL_SCANCODE_KP_MINUS = 86, + SDL_SCANCODE_KP_PLUS = 87, + SDL_SCANCODE_KP_ENTER = 88, + SDL_SCANCODE_KP_1 = 89, + SDL_SCANCODE_KP_2 = 90, + SDL_SCANCODE_KP_3 = 91, + SDL_SCANCODE_KP_4 = 92, + SDL_SCANCODE_KP_5 = 93, + SDL_SCANCODE_KP_6 = 94, + SDL_SCANCODE_KP_7 = 95, + SDL_SCANCODE_KP_8 = 96, + SDL_SCANCODE_KP_9 = 97, + SDL_SCANCODE_KP_0 = 98, + SDL_SCANCODE_KP_PERIOD = 99, + + SDL_SCANCODE_NONUSBACKSLASH = 100, /**< This is the additional key that ISO + * keyboards have over ANSI ones, + * located between left shift and Z. + * Produces GRAVE ACCENT and TILDE in a + * US or UK Mac layout, REVERSE SOLIDUS + * (backslash) and VERTICAL LINE in a + * US or UK Windows layout, and + * LESS-THAN SIGN and GREATER-THAN SIGN + * in a Swiss German, German, or French + * layout. */ + SDL_SCANCODE_APPLICATION = 101, /**< windows contextual menu, compose */ + SDL_SCANCODE_POWER = 102, /**< The USB document says this is a status flag, + * not a physical key - but some Mac keyboards + * do have a power key. */ + SDL_SCANCODE_KP_EQUALS = 103, + SDL_SCANCODE_F13 = 104, + SDL_SCANCODE_F14 = 105, + SDL_SCANCODE_F15 = 106, + SDL_SCANCODE_F16 = 107, + SDL_SCANCODE_F17 = 108, + SDL_SCANCODE_F18 = 109, + SDL_SCANCODE_F19 = 110, + SDL_SCANCODE_F20 = 111, + SDL_SCANCODE_F21 = 112, + SDL_SCANCODE_F22 = 113, + SDL_SCANCODE_F23 = 114, + SDL_SCANCODE_F24 = 115, + SDL_SCANCODE_EXECUTE = 116, + SDL_SCANCODE_HELP = 117, /**< AL Integrated Help Center */ + SDL_SCANCODE_MENU = 118, /**< Menu (show menu) */ + SDL_SCANCODE_SELECT = 119, + SDL_SCANCODE_STOP = 120, /**< AC Stop */ + SDL_SCANCODE_AGAIN = 121, /**< AC Redo/Repeat */ + SDL_SCANCODE_UNDO = 122, /**< AC Undo */ + SDL_SCANCODE_CUT = 123, /**< AC Cut */ + SDL_SCANCODE_COPY = 124, /**< AC Copy */ + SDL_SCANCODE_PASTE = 125, /**< AC Paste */ + SDL_SCANCODE_FIND = 126, /**< AC Find */ + SDL_SCANCODE_MUTE = 127, + SDL_SCANCODE_VOLUMEUP = 128, + SDL_SCANCODE_VOLUMEDOWN = 129, +/* not sure whether there's a reason to enable these */ +/* SDL_SCANCODE_LOCKINGCAPSLOCK = 130, */ +/* SDL_SCANCODE_LOCKINGNUMLOCK = 131, */ +/* SDL_SCANCODE_LOCKINGSCROLLLOCK = 132, */ + SDL_SCANCODE_KP_COMMA = 133, + SDL_SCANCODE_KP_EQUALSAS400 = 134, + + SDL_SCANCODE_INTERNATIONAL1 = 135, /**< used on Asian keyboards, see + footnotes in USB doc */ + SDL_SCANCODE_INTERNATIONAL2 = 136, + SDL_SCANCODE_INTERNATIONAL3 = 137, /**< Yen */ + SDL_SCANCODE_INTERNATIONAL4 = 138, + SDL_SCANCODE_INTERNATIONAL5 = 139, + SDL_SCANCODE_INTERNATIONAL6 = 140, + SDL_SCANCODE_INTERNATIONAL7 = 141, + SDL_SCANCODE_INTERNATIONAL8 = 142, + SDL_SCANCODE_INTERNATIONAL9 = 143, + SDL_SCANCODE_LANG1 = 144, /**< Hangul/English toggle */ + SDL_SCANCODE_LANG2 = 145, /**< Hanja conversion */ + SDL_SCANCODE_LANG3 = 146, /**< Katakana */ + SDL_SCANCODE_LANG4 = 147, /**< Hiragana */ + SDL_SCANCODE_LANG5 = 148, /**< Zenkaku/Hankaku */ + SDL_SCANCODE_LANG6 = 149, /**< reserved */ + SDL_SCANCODE_LANG7 = 150, /**< reserved */ + SDL_SCANCODE_LANG8 = 151, /**< reserved */ + SDL_SCANCODE_LANG9 = 152, /**< reserved */ + + SDL_SCANCODE_ALTERASE = 153, /**< Erase-Eaze */ + SDL_SCANCODE_SYSREQ = 154, + SDL_SCANCODE_CANCEL = 155, /**< AC Cancel */ + SDL_SCANCODE_CLEAR = 156, + SDL_SCANCODE_PRIOR = 157, + SDL_SCANCODE_RETURN2 = 158, + SDL_SCANCODE_SEPARATOR = 159, + SDL_SCANCODE_OUT = 160, + SDL_SCANCODE_OPER = 161, + SDL_SCANCODE_CLEARAGAIN = 162, + SDL_SCANCODE_CRSEL = 163, + SDL_SCANCODE_EXSEL = 164, + + SDL_SCANCODE_KP_00 = 176, + SDL_SCANCODE_KP_000 = 177, + SDL_SCANCODE_THOUSANDSSEPARATOR = 178, + SDL_SCANCODE_DECIMALSEPARATOR = 179, + SDL_SCANCODE_CURRENCYUNIT = 180, + SDL_SCANCODE_CURRENCYSUBUNIT = 181, + SDL_SCANCODE_KP_LEFTPAREN = 182, + SDL_SCANCODE_KP_RIGHTPAREN = 183, + SDL_SCANCODE_KP_LEFTBRACE = 184, + SDL_SCANCODE_KP_RIGHTBRACE = 185, + SDL_SCANCODE_KP_TAB = 186, + SDL_SCANCODE_KP_BACKSPACE = 187, + SDL_SCANCODE_KP_A = 188, + SDL_SCANCODE_KP_B = 189, + SDL_SCANCODE_KP_C = 190, + SDL_SCANCODE_KP_D = 191, + SDL_SCANCODE_KP_E = 192, + SDL_SCANCODE_KP_F = 193, + SDL_SCANCODE_KP_XOR = 194, + SDL_SCANCODE_KP_POWER = 195, + SDL_SCANCODE_KP_PERCENT = 196, + SDL_SCANCODE_KP_LESS = 197, + SDL_SCANCODE_KP_GREATER = 198, + SDL_SCANCODE_KP_AMPERSAND = 199, + SDL_SCANCODE_KP_DBLAMPERSAND = 200, + SDL_SCANCODE_KP_VERTICALBAR = 201, + SDL_SCANCODE_KP_DBLVERTICALBAR = 202, + SDL_SCANCODE_KP_COLON = 203, + SDL_SCANCODE_KP_HASH = 204, + SDL_SCANCODE_KP_SPACE = 205, + SDL_SCANCODE_KP_AT = 206, + SDL_SCANCODE_KP_EXCLAM = 207, + SDL_SCANCODE_KP_MEMSTORE = 208, + SDL_SCANCODE_KP_MEMRECALL = 209, + SDL_SCANCODE_KP_MEMCLEAR = 210, + SDL_SCANCODE_KP_MEMADD = 211, + SDL_SCANCODE_KP_MEMSUBTRACT = 212, + SDL_SCANCODE_KP_MEMMULTIPLY = 213, + SDL_SCANCODE_KP_MEMDIVIDE = 214, + SDL_SCANCODE_KP_PLUSMINUS = 215, + SDL_SCANCODE_KP_CLEAR = 216, + SDL_SCANCODE_KP_CLEARENTRY = 217, + SDL_SCANCODE_KP_BINARY = 218, + SDL_SCANCODE_KP_OCTAL = 219, + SDL_SCANCODE_KP_DECIMAL = 220, + SDL_SCANCODE_KP_HEXADECIMAL = 221, + + SDL_SCANCODE_LCTRL = 224, + SDL_SCANCODE_LSHIFT = 225, + SDL_SCANCODE_LALT = 226, /**< alt, option */ + SDL_SCANCODE_LGUI = 227, /**< windows, command (apple), meta */ + SDL_SCANCODE_RCTRL = 228, + SDL_SCANCODE_RSHIFT = 229, + SDL_SCANCODE_RALT = 230, /**< alt gr, option */ + SDL_SCANCODE_RGUI = 231, /**< windows, command (apple), meta */ + + SDL_SCANCODE_MODE = 257, /**< I'm not sure if this is really not covered + * by any of the above, but since there's a + * special SDL_KMOD_MODE for it I'm adding it here + */ + + /* @} *//* Usage page 0x07 */ + + /** + * \name Usage page 0x0C + * + * These values are mapped from usage page 0x0C (USB consumer page). + * + * There are way more keys in the spec than we can represent in the + * current scancode range, so pick the ones that commonly come up in + * real world usage. + */ + /* @{ */ + + SDL_SCANCODE_SLEEP = 258, /**< Sleep */ + SDL_SCANCODE_WAKE = 259, /**< Wake */ + + SDL_SCANCODE_CHANNEL_INCREMENT = 260, /**< Channel Increment */ + SDL_SCANCODE_CHANNEL_DECREMENT = 261, /**< Channel Decrement */ + + SDL_SCANCODE_MEDIA_PLAY = 262, /**< Play */ + SDL_SCANCODE_MEDIA_PAUSE = 263, /**< Pause */ + SDL_SCANCODE_MEDIA_RECORD = 264, /**< Record */ + SDL_SCANCODE_MEDIA_FAST_FORWARD = 265, /**< Fast Forward */ + SDL_SCANCODE_MEDIA_REWIND = 266, /**< Rewind */ + SDL_SCANCODE_MEDIA_NEXT_TRACK = 267, /**< Next Track */ + SDL_SCANCODE_MEDIA_PREVIOUS_TRACK = 268, /**< Previous Track */ + SDL_SCANCODE_MEDIA_STOP = 269, /**< Stop */ + SDL_SCANCODE_MEDIA_EJECT = 270, /**< Eject */ + SDL_SCANCODE_MEDIA_PLAY_PAUSE = 271, /**< Play / Pause */ + SDL_SCANCODE_MEDIA_SELECT = 272, /* Media Select */ + + SDL_SCANCODE_AC_NEW = 273, /**< AC New */ + SDL_SCANCODE_AC_OPEN = 274, /**< AC Open */ + SDL_SCANCODE_AC_CLOSE = 275, /**< AC Close */ + SDL_SCANCODE_AC_EXIT = 276, /**< AC Exit */ + SDL_SCANCODE_AC_SAVE = 277, /**< AC Save */ + SDL_SCANCODE_AC_PRINT = 278, /**< AC Print */ + SDL_SCANCODE_AC_PROPERTIES = 279, /**< AC Properties */ + + SDL_SCANCODE_AC_SEARCH = 280, /**< AC Search */ + SDL_SCANCODE_AC_HOME = 281, /**< AC Home */ + SDL_SCANCODE_AC_BACK = 282, /**< AC Back */ + SDL_SCANCODE_AC_FORWARD = 283, /**< AC Forward */ + SDL_SCANCODE_AC_STOP = 284, /**< AC Stop */ + SDL_SCANCODE_AC_REFRESH = 285, /**< AC Refresh */ + SDL_SCANCODE_AC_BOOKMARKS = 286, /**< AC Bookmarks */ + + /* @} *//* Usage page 0x0C */ + + + /** + * \name Mobile keys + * + * These are values that are often used on mobile phones. + */ + /* @{ */ + + SDL_SCANCODE_SOFTLEFT = 287, /**< Usually situated below the display on phones and + used as a multi-function feature key for selecting + a software defined function shown on the bottom left + of the display. */ + SDL_SCANCODE_SOFTRIGHT = 288, /**< Usually situated below the display on phones and + used as a multi-function feature key for selecting + a software defined function shown on the bottom right + of the display. */ + SDL_SCANCODE_CALL = 289, /**< Used for accepting phone calls. */ + SDL_SCANCODE_ENDCALL = 290, /**< Used for rejecting phone calls. */ + + /* @} *//* Mobile keys */ + + /* Add any other keys here. */ + + SDL_SCANCODE_RESERVED = 400, /**< 400-500 reserved for dynamic keycodes */ + + SDL_SCANCODE_COUNT = 512 /**< not a key, just marks the number of scancodes for array bounds */ + +} SDL_Scancode; + +#endif /* SDL_scancode_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_sensor.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_sensor.h new file mode 100644 index 0000000..b220f05 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_sensor.h @@ -0,0 +1,320 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategorySensor + * + * SDL sensor management. + * + * These APIs grant access to gyros and accelerometers on various platforms. + * + * In order to use these functions, SDL_Init() must have been called with the + * SDL_INIT_SENSOR flag. This causes SDL to scan the system for sensors, and + * load appropriate drivers. + */ + +#ifndef SDL_sensor_h_ +#define SDL_sensor_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +extern "C" { +/* *INDENT-ON* */ +#endif + +/** + * The opaque structure used to identify an opened SDL sensor. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Sensor SDL_Sensor; + +/** + * This is a unique ID for a sensor for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_SensorID; + +/** + * A constant to represent standard gravity for accelerometer sensors. + * + * The accelerometer returns the current acceleration in SI meters per second + * squared. This measurement includes the force of gravity, so a device at + * rest will have an value of SDL_STANDARD_GRAVITY away from the center of the + * earth, which is a positive Y value. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_STANDARD_GRAVITY 9.80665f + +/** + * The different sensors defined by SDL. + * + * Additional sensors may be available, using platform dependent semantics. + * + * Here are the additional Android sensors: + * + * https://developer.android.com/reference/android/hardware/SensorEvent.html#values + * + * Accelerometer sensor notes: + * + * The accelerometer returns the current acceleration in SI meters per second + * squared. This measurement includes the force of gravity, so a device at + * rest will have an value of SDL_STANDARD_GRAVITY away from the center of the + * earth, which is a positive Y value. + * + * - `values[0]`: Acceleration on the x axis + * - `values[1]`: Acceleration on the y axis + * - `values[2]`: Acceleration on the z axis + * + * For phones and tablets held in natural orientation and game controllers + * held in front of you, the axes are defined as follows: + * + * - -X ... +X : left ... right + * - -Y ... +Y : bottom ... top + * - -Z ... +Z : farther ... closer + * + * The accelerometer axis data is not changed when the device is rotated. + * + * Gyroscope sensor notes: + * + * The gyroscope returns the current rate of rotation in radians per second. + * The rotation is positive in the counter-clockwise direction. That is, an + * observer looking from a positive location on one of the axes would see + * positive rotation on that axis when it appeared to be rotating + * counter-clockwise. + * + * - `values[0]`: Angular speed around the x axis (pitch) + * - `values[1]`: Angular speed around the y axis (yaw) + * - `values[2]`: Angular speed around the z axis (roll) + * + * For phones and tablets held in natural orientation and game controllers + * held in front of you, the axes are defined as follows: + * + * - -X ... +X : left ... right + * - -Y ... +Y : bottom ... top + * - -Z ... +Z : farther ... closer + * + * The gyroscope axis data is not changed when the device is rotated. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentDisplayOrientation + */ +typedef enum SDL_SensorType +{ + SDL_SENSOR_INVALID = -1, /**< Returned for an invalid sensor */ + SDL_SENSOR_UNKNOWN, /**< Unknown sensor type */ + SDL_SENSOR_ACCEL, /**< Accelerometer */ + SDL_SENSOR_GYRO, /**< Gyroscope */ + SDL_SENSOR_ACCEL_L, /**< Accelerometer for left Joy-Con controller and Wii nunchuk */ + SDL_SENSOR_GYRO_L, /**< Gyroscope for left Joy-Con controller */ + SDL_SENSOR_ACCEL_R, /**< Accelerometer for right Joy-Con controller */ + SDL_SENSOR_GYRO_R /**< Gyroscope for right Joy-Con controller */ +} SDL_SensorType; + + +/* Function prototypes */ + +/** + * Get a list of currently connected sensors. + * + * \param count a pointer filled in with the number of sensors returned, may + * be NULL. + * \returns a 0 terminated array of sensor instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorID * SDLCALL SDL_GetSensors(int *count); + +/** + * Get the implementation dependent name of a sensor. + * + * This can be called before any sensors are opened. + * + * \param instance_id the sensor instance ID. + * \returns the sensor name, or NULL if `instance_id` is not valid. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetSensorNameForID(SDL_SensorID instance_id); + +/** + * Get the type of a sensor. + * + * This can be called before any sensors are opened. + * + * \param instance_id the sensor instance ID. + * \returns the SDL_SensorType, or `SDL_SENSOR_INVALID` if `instance_id` is + * not valid. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorType SDLCALL SDL_GetSensorTypeForID(SDL_SensorID instance_id); + +/** + * Get the platform dependent type of a sensor. + * + * This can be called before any sensors are opened. + * + * \param instance_id the sensor instance ID. + * \returns the sensor platform dependent type, or -1 if `instance_id` is not + * valid. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSensorNonPortableTypeForID(SDL_SensorID instance_id); + +/** + * Open a sensor for use. + * + * \param instance_id the sensor instance ID. + * \returns an SDL_Sensor object or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Sensor * SDLCALL SDL_OpenSensor(SDL_SensorID instance_id); + +/** + * Return the SDL_Sensor associated with an instance ID. + * + * \param instance_id the sensor instance ID. + * \returns an SDL_Sensor object or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Sensor * SDLCALL SDL_GetSensorFromID(SDL_SensorID instance_id); + +/** + * Get the properties associated with a sensor. + * + * \param sensor the SDL_Sensor object. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetSensorProperties(SDL_Sensor *sensor); + +/** + * Get the implementation dependent name of a sensor. + * + * \param sensor the SDL_Sensor object. + * \returns the sensor name or NULL on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetSensorName(SDL_Sensor *sensor); + +/** + * Get the type of a sensor. + * + * \param sensor the SDL_Sensor object to inspect. + * \returns the SDL_SensorType type, or `SDL_SENSOR_INVALID` if `sensor` is + * NULL. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorType SDLCALL SDL_GetSensorType(SDL_Sensor *sensor); + +/** + * Get the platform dependent type of a sensor. + * + * \param sensor the SDL_Sensor object to inspect. + * \returns the sensor platform dependent type, or -1 if `sensor` is NULL. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSensorNonPortableType(SDL_Sensor *sensor); + +/** + * Get the instance ID of a sensor. + * + * \param sensor the SDL_Sensor object to inspect. + * \returns the sensor instance ID, or 0 on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorID SDLCALL SDL_GetSensorID(SDL_Sensor *sensor); + +/** + * Get the current state of an opened sensor. + * + * The number of values and interpretation of the data is sensor dependent. + * + * \param sensor the SDL_Sensor object to query. + * \param data a pointer filled with the current sensor state. + * \param num_values the number of values to write to data. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSensorData(SDL_Sensor *sensor, float *data, int num_values); + +/** + * Close a sensor previously opened with SDL_OpenSensor(). + * + * \param sensor the SDL_Sensor object to close. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseSensor(SDL_Sensor *sensor); + +/** + * Update the current state of the open sensors. + * + * This is called automatically by the event loop if sensor events are + * enabled. + * + * This needs to be called from the thread that initialized the sensor + * subsystem. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateSensors(void); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +} +/* *INDENT-ON* */ +#endif +#include + +#endif /* SDL_sensor_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_stdinc.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_stdinc.h new file mode 100644 index 0000000..7df253f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_stdinc.h @@ -0,0 +1,6137 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryStdinc + * + * SDL provides its own implementation of some of the most important C runtime + * functions. + * + * Using these functions allows an app to have access to common C + * functionality without depending on a specific C runtime (or a C runtime at + * all). More importantly, the SDL implementations work identically across + * platforms, so apps can avoid surprises like snprintf() behaving differently + * between Windows and Linux builds, or itoa() only existing on some + * platforms. + * + * For many of the most common functions, like SDL_memcpy, SDL might just call + * through to the usual C runtime behind the scenes, if it makes sense to do + * so (if it's faster and always available/reliable on a given platform), + * reducing library size and offering the most optimized option. + * + * SDL also offers other C-runtime-adjacent functionality in this header that + * either isn't, strictly speaking, part of any C runtime standards, like + * SDL_crc32() and SDL_reinterpret_cast, etc. It also offers a few better + * options, like SDL_strlcpy(), which functions as a safer form of strcpy(). + */ + +#ifndef SDL_stdinc_h_ +#define SDL_stdinc_h_ + +#include + +#include +#include +#include +#include + +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ + defined(SDL_INCLUDE_INTTYPES_H) +#include +#endif + +#ifndef __cplusplus +#if defined(__has_include) && !defined(SDL_INCLUDE_STDBOOL_H) +#if __has_include() +#define SDL_INCLUDE_STDBOOL_H +#endif +#endif +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ + (defined(_MSC_VER) && (_MSC_VER >= 1910 /* Visual Studio 2017 */)) || \ + defined(SDL_INCLUDE_STDBOOL_H) +#include +#elif !defined(__bool_true_false_are_defined) && !defined(bool) +#define bool unsigned char +#define false 0 +#define true 1 +#define __bool_true_false_are_defined 1 +#endif +#endif /* !__cplusplus */ + +#ifndef SDL_DISABLE_ALLOCA +# ifndef alloca +# ifdef HAVE_ALLOCA_H +# include +# elif defined(SDL_PLATFORM_NETBSD) +# if defined(__STRICT_ANSI__) +# define SDL_DISABLE_ALLOCA +# else +# include +# endif +# elif defined(__GNUC__) +# define alloca __builtin_alloca +# elif defined(_MSC_VER) +# include +# define alloca _alloca +# elif defined(__WATCOMC__) +# include +# elif defined(__BORLANDC__) +# include +# elif defined(__DMC__) +# include +# elif defined(SDL_PLATFORM_AIX) +# pragma alloca +# elif defined(__MRC__) +void *alloca(unsigned); +# else +void *alloca(size_t); +# endif +# endif +#endif + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Don't let SDL use "long long" C types. + * + * SDL will define this if it believes the compiler doesn't understand the + * "long long" syntax for C datatypes. This can happen on older compilers. + * + * If _your_ compiler doesn't support "long long" but SDL doesn't know it, it + * is safe to define this yourself to build against the SDL headers. + * + * If this is defined, it will remove access to some C runtime support + * functions, like SDL_ulltoa and SDL_strtoll that refer to this datatype + * explicitly. The rest of SDL will still be available. + * + * SDL's own source code cannot be built with a compiler that has this + * defined, for various technical reasons. + */ +#define SDL_NOLONGLONG 1 + +#elif defined(_MSC_VER) && (_MSC_VER < 1310) /* long long introduced in Visual Studio.NET 2003 */ +# define SDL_NOLONGLONG 1 +#endif + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * The largest value that a `size_t` can hold for the target platform. + * + * `size_t` is generally the same size as a pointer in modern times, but this + * can get weird on very old and very esoteric machines. For example, on a + * 16-bit Intel 286, you might have a 32-bit "far" pointer (16-bit segment + * plus 16-bit offset), but `size_t` is 16 bits, because it can only deal with + * the offset into an individual segment. + * + * In modern times, it's generally expected to cover an entire linear address + * space. But be careful! + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SIZE_MAX SIZE_MAX + +#elif defined(SIZE_MAX) +# define SDL_SIZE_MAX SIZE_MAX +#else +# define SDL_SIZE_MAX ((size_t) -1) +#endif + +#ifndef SDL_COMPILE_TIME_ASSERT +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A compile-time assertion. + * + * This can check constant values _known to the compiler at build time_ for + * correctness, and end the compile with the error if they fail. + * + * Often times these are used to verify basic truths, like the size of a + * datatype is what is expected: + * + * ```c + * SDL_COMPILE_TIME_ASSERT(uint32_size, sizeof(Uint32) == 4); + * ``` + * + * The `name` parameter must be a valid C symbol, and must be unique across + * all compile-time asserts in the same compilation unit (one run of the + * compiler), or the build might fail with cryptic errors on some targets. + * This is used with a C language trick that works on older compilers that + * don't support better assertion techniques. + * + * If you need an assertion that operates at runtime, on variable data, you + * should try SDL_assert instead. + * + * \param name a unique identifier for this assertion. + * \param x the value to test. Must be a boolean value. + * + * \threadsafety This macro doesn't generate any code to run. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_assert + */ +#define SDL_COMPILE_TIME_ASSERT(name, x) FailToCompileIf_x_IsFalse(x) +#elif defined(__cplusplus) +/* Keep C++ case alone: Some versions of gcc will define __STDC_VERSION__ even when compiling in C++ mode. */ +#if (__cplusplus >= 201103L) +#define SDL_COMPILE_TIME_ASSERT(name, x) static_assert(x, #x) +#endif +#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 202311L) +#define SDL_COMPILE_TIME_ASSERT(name, x) static_assert(x, #x) +#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) +#define SDL_COMPILE_TIME_ASSERT(name, x) _Static_assert(x, #x) +#endif +#endif /* !SDL_COMPILE_TIME_ASSERT */ + +#ifndef SDL_COMPILE_TIME_ASSERT +/* universal, but may trigger -Wunused-local-typedefs */ +#define SDL_COMPILE_TIME_ASSERT(name, x) \ + typedef int SDL_compile_time_assert_ ## name[(x) * 2 - 1] +#endif + +/** + * The number of elements in a static array. + * + * This will compile but return incorrect results for a pointer to an array; + * it has to be an array the compiler knows the size of. + * + * This macro looks like it double-evaluates the argument, but it does so + * inside of `sizeof`, so there are no side-effects here, as expressions do + * not actually run any code in these cases. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_arraysize(array) (sizeof(array)/sizeof(array[0])) + +/** + * Macro useful for building other macros with strings in them. + * + * For example: + * + * ```c + * #define LOG_ERROR(X) OutputDebugString(SDL_STRINGIFY_ARG(__FUNCTION__) ": " X "\n")` + * ``` + * + * \param arg the text to turn into a string literal. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_STRINGIFY_ARG(arg) #arg + +/** + * \name Cast operators + * + * Use proper C++ casts when compiled as C++ to be compatible with the option + * -Wold-style-cast of GCC (and -Werror=old-style-cast in GCC 4.2 and above). + */ +/* @{ */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Handle a Reinterpret Cast properly whether using C or C++. + * + * If compiled as C++, this macro offers a proper C++ reinterpret_cast<>. + * + * If compiled as C, this macro does a normal C-style cast. + * + * This is helpful to avoid compiler warnings in C++. + * + * \param type the type to cast the expression to. + * \param expression the expression to cast to a different type. + * \returns `expression`, cast to `type`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_static_cast + * \sa SDL_const_cast + */ +#define SDL_reinterpret_cast(type, expression) reinterpret_cast(expression) /* or `((type)(expression))` in C */ + +/** + * Handle a Static Cast properly whether using C or C++. + * + * If compiled as C++, this macro offers a proper C++ static_cast<>. + * + * If compiled as C, this macro does a normal C-style cast. + * + * This is helpful to avoid compiler warnings in C++. + * + * \param type the type to cast the expression to. + * \param expression the expression to cast to a different type. + * \returns `expression`, cast to `type`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_reinterpret_cast + * \sa SDL_const_cast + */ +#define SDL_static_cast(type, expression) static_cast(expression) /* or `((type)(expression))` in C */ + +/** + * Handle a Const Cast properly whether using C or C++. + * + * If compiled as C++, this macro offers a proper C++ const_cast<>. + * + * If compiled as C, this macro does a normal C-style cast. + * + * This is helpful to avoid compiler warnings in C++. + * + * \param type the type to cast the expression to. + * \param expression the expression to cast to a different type. + * \returns `expression`, cast to `type`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_reinterpret_cast + * \sa SDL_static_cast + */ +#define SDL_const_cast(type, expression) const_cast(expression) /* or `((type)(expression))` in C */ + +#elif defined(__cplusplus) +#define SDL_reinterpret_cast(type, expression) reinterpret_cast(expression) +#define SDL_static_cast(type, expression) static_cast(expression) +#define SDL_const_cast(type, expression) const_cast(expression) +#else +#define SDL_reinterpret_cast(type, expression) ((type)(expression)) +#define SDL_static_cast(type, expression) ((type)(expression)) +#define SDL_const_cast(type, expression) ((type)(expression)) +#endif + +/* @} *//* Cast operators */ + +/** + * Define a four character code as a Uint32. + * + * \param A the first ASCII character. + * \param B the second ASCII character. + * \param C the third ASCII character. + * \param D the fourth ASCII character. + * \returns the four characters converted into a Uint32, one character + * per-byte. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FOURCC(A, B, C, D) \ + ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24)) + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Append the 64 bit integer suffix to a signed integer literal. + * + * This helps compilers that might believe a integer literal larger than + * 0xFFFFFFFF is overflowing a 32-bit value. Use `SDL_SINT64_C(0xFFFFFFFF1)` + * instead of `0xFFFFFFFF1` by itself. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_UINT64_C + */ +#define SDL_SINT64_C(c) c ## LL /* or whatever the current compiler uses. */ + +/** + * Append the 64 bit integer suffix to an unsigned integer literal. + * + * This helps compilers that might believe a integer literal larger than + * 0xFFFFFFFF is overflowing a 32-bit value. Use `SDL_UINT64_C(0xFFFFFFFF1)` + * instead of `0xFFFFFFFF1` by itself. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SINT64_C + */ +#define SDL_UINT64_C(c) c ## ULL /* or whatever the current compiler uses. */ + +#else /* !SDL_WIKI_DOCUMENTATION_SECTION */ + +#ifndef SDL_SINT64_C +#if defined(INT64_C) +#define SDL_SINT64_C(c) INT64_C(c) +#elif defined(_MSC_VER) +#define SDL_SINT64_C(c) c ## i64 +#elif defined(__LP64__) || defined(_LP64) +#define SDL_SINT64_C(c) c ## L +#else +#define SDL_SINT64_C(c) c ## LL +#endif +#endif /* !SDL_SINT64_C */ + +#ifndef SDL_UINT64_C +#if defined(UINT64_C) +#define SDL_UINT64_C(c) UINT64_C(c) +#elif defined(_MSC_VER) +#define SDL_UINT64_C(c) c ## ui64 +#elif defined(__LP64__) || defined(_LP64) +#define SDL_UINT64_C(c) c ## UL +#else +#define SDL_UINT64_C(c) c ## ULL +#endif +#endif /* !SDL_UINT64_C */ + +#endif /* !SDL_WIKI_DOCUMENTATION_SECTION */ + +/** + * \name Basic data types + */ +/* @{ */ + +/** + * A signed 8-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef int8_t Sint8; +#define SDL_MAX_SINT8 ((Sint8)0x7F) /* 127 */ +#define SDL_MIN_SINT8 ((Sint8)(~0x7F)) /* -128 */ + +/** + * An unsigned 8-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef uint8_t Uint8; +#define SDL_MAX_UINT8 ((Uint8)0xFF) /* 255 */ +#define SDL_MIN_UINT8 ((Uint8)0x00) /* 0 */ + +/** + * A signed 16-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef int16_t Sint16; +#define SDL_MAX_SINT16 ((Sint16)0x7FFF) /* 32767 */ +#define SDL_MIN_SINT16 ((Sint16)(~0x7FFF)) /* -32768 */ + +/** + * An unsigned 16-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef uint16_t Uint16; +#define SDL_MAX_UINT16 ((Uint16)0xFFFF) /* 65535 */ +#define SDL_MIN_UINT16 ((Uint16)0x0000) /* 0 */ + +/** + * A signed 32-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef int32_t Sint32; +#define SDL_MAX_SINT32 ((Sint32)0x7FFFFFFF) /* 2147483647 */ +#define SDL_MIN_SINT32 ((Sint32)(~0x7FFFFFFF)) /* -2147483648 */ + +/** + * An unsigned 32-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef uint32_t Uint32; +#define SDL_MAX_UINT32 ((Uint32)0xFFFFFFFFu) /* 4294967295 */ +#define SDL_MIN_UINT32 ((Uint32)0x00000000) /* 0 */ + +/** + * A signed 64-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SINT64_C + */ +typedef int64_t Sint64; +#define SDL_MAX_SINT64 SDL_SINT64_C(0x7FFFFFFFFFFFFFFF) /* 9223372036854775807 */ +#define SDL_MIN_SINT64 ~SDL_SINT64_C(0x7FFFFFFFFFFFFFFF) /* -9223372036854775808 */ + +/** + * An unsigned 64-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_UINT64_C + */ +typedef uint64_t Uint64; +#define SDL_MAX_UINT64 SDL_UINT64_C(0xFFFFFFFFFFFFFFFF) /* 18446744073709551615 */ +#define SDL_MIN_UINT64 SDL_UINT64_C(0x0000000000000000) /* 0 */ + +/** + * SDL times are signed, 64-bit integers representing nanoseconds since the + * Unix epoch (Jan 1, 1970). + * + * They can be converted between POSIX time_t values with SDL_NS_TO_SECONDS() + * and SDL_SECONDS_TO_NS(), and between Windows FILETIME values with + * SDL_TimeToWindows() and SDL_TimeFromWindows(). + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_MAX_SINT64 + * \sa SDL_MIN_SINT64 + */ +typedef Sint64 SDL_Time; +#define SDL_MAX_TIME SDL_MAX_SINT64 +#define SDL_MIN_TIME SDL_MIN_SINT64 + +/* @} *//* Basic data types */ + +/** + * \name Floating-point constants + */ +/* @{ */ + +#ifdef FLT_EPSILON +#define SDL_FLT_EPSILON FLT_EPSILON +#else + +/** + * Epsilon constant, used for comparing floating-point numbers. + * + * Equals by default to platform-defined `FLT_EPSILON`, or + * `1.1920928955078125e-07F` if that's not available. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FLT_EPSILON 1.1920928955078125e-07F /* 0x0.000002p0 */ +#endif + +/* @} *//* Floating-point constants */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A printf-formatting string for an Sint64 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIs64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIs64 "lld" + +/** + * A printf-formatting string for a Uint64 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIu64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIu64 "llu" + +/** + * A printf-formatting string for a Uint64 value as lower-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIx64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIx64 "llx" + +/** + * A printf-formatting string for a Uint64 value as upper-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIX64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIX64 "llX" + +/** + * A printf-formatting string for an Sint32 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIs32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIs32 "d" + +/** + * A printf-formatting string for a Uint32 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIu32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIu32 "u" + +/** + * A printf-formatting string for a Uint32 value as lower-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIx32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIx32 "x" + +/** + * A printf-formatting string for a Uint32 value as upper-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIX32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIX32 "X" + +/** + * A printf-formatting string prefix for a `long long` value. + * + * This is just the prefix! You probably actually want SDL_PRILLd, SDL_PRILLu, + * SDL_PRILLx, or SDL_PRILLX instead. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILL_PREFIX "d bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILL_PREFIX "ll" + +/** + * A printf-formatting string for a `long long` value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLd " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLd SDL_PRILL_PREFIX "d" + +/** + * A printf-formatting string for a `unsigned long long` value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLu " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLu SDL_PRILL_PREFIX "u" + +/** + * A printf-formatting string for an `unsigned long long` value as lower-case + * hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLx " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLx SDL_PRILL_PREFIX "x" + +/** + * A printf-formatting string for an `unsigned long long` value as upper-case + * hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLX " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLX SDL_PRILL_PREFIX "X" +#endif /* SDL_WIKI_DOCUMENTATION_SECTION */ + +/* Make sure we have macros for printing width-based integers. + * should define these but this is not true all platforms. + * (for example win32) */ +#ifndef SDL_PRIs64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIs64 "I64d" +#elif defined(PRId64) +#define SDL_PRIs64 PRId64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) && !defined(__EMSCRIPTEN__) +#define SDL_PRIs64 "ld" +#else +#define SDL_PRIs64 "lld" +#endif +#endif +#ifndef SDL_PRIu64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIu64 "I64u" +#elif defined(PRIu64) +#define SDL_PRIu64 PRIu64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) && !defined(__EMSCRIPTEN__) +#define SDL_PRIu64 "lu" +#else +#define SDL_PRIu64 "llu" +#endif +#endif +#ifndef SDL_PRIx64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIx64 "I64x" +#elif defined(PRIx64) +#define SDL_PRIx64 PRIx64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) +#define SDL_PRIx64 "lx" +#else +#define SDL_PRIx64 "llx" +#endif +#endif +#ifndef SDL_PRIX64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIX64 "I64X" +#elif defined(PRIX64) +#define SDL_PRIX64 PRIX64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) +#define SDL_PRIX64 "lX" +#else +#define SDL_PRIX64 "llX" +#endif +#endif +#ifndef SDL_PRIs32 +#ifdef PRId32 +#define SDL_PRIs32 PRId32 +#else +#define SDL_PRIs32 "d" +#endif +#endif +#ifndef SDL_PRIu32 +#ifdef PRIu32 +#define SDL_PRIu32 PRIu32 +#else +#define SDL_PRIu32 "u" +#endif +#endif +#ifndef SDL_PRIx32 +#ifdef PRIx32 +#define SDL_PRIx32 PRIx32 +#else +#define SDL_PRIx32 "x" +#endif +#endif +#ifndef SDL_PRIX32 +#ifdef PRIX32 +#define SDL_PRIX32 PRIX32 +#else +#define SDL_PRIX32 "X" +#endif +#endif +/* Specifically for the `long long` -- SDL-specific. */ +#ifdef SDL_PLATFORM_WINDOWS +#ifndef SDL_NOLONGLONG +SDL_COMPILE_TIME_ASSERT(longlong_size64, sizeof(long long) == 8); /* using I64 for windows - make sure `long long` is 64 bits. */ +#endif +#define SDL_PRILL_PREFIX "I64" +#else +#define SDL_PRILL_PREFIX "ll" +#endif +#ifndef SDL_PRILLd +#define SDL_PRILLd SDL_PRILL_PREFIX "d" +#endif +#ifndef SDL_PRILLu +#define SDL_PRILLu SDL_PRILL_PREFIX "u" +#endif +#ifndef SDL_PRILLx +#define SDL_PRILLx SDL_PRILL_PREFIX "x" +#endif +#ifndef SDL_PRILLX +#define SDL_PRILLX SDL_PRILL_PREFIX "X" +#endif + +/* Annotations to help code analysis tools */ +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Macro that annotates function params with input buffer size. + * + * If we were to annotate `memcpy`: + * + * ```c + * void *memcpy(void *dst, SDL_IN_BYTECAP(len) const void *src, size_t len); + * ``` + * + * This notes that `src` should be `len` bytes in size and is only read by the + * function. The compiler or other analysis tools can warn when this doesn't + * appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_IN_BYTECAP(x) _In_bytecount_(x) + +/** + * Macro that annotates function params with input/output string buffer size. + * + * If we were to annotate `strlcat`: + * + * ```c + * size_t strlcat(SDL_INOUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen); + * ``` + * + * This notes that `dst` is a null-terminated C string, should be `maxlen` + * bytes in size, and is both read from and written to by the function. The + * compiler or other analysis tools can warn when this doesn't appear to be + * the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_INOUT_Z_CAP(x) _Inout_z_cap_(x) + +/** + * Macro that annotates function params with output string buffer size. + * + * If we were to annotate `snprintf`: + * + * ```c + * int snprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, const char *fmt, ...); + * ``` + * + * This notes that `text` is a null-terminated C string, should be `maxlen` + * bytes in size, and is only written to by the function. The compiler or + * other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_Z_CAP(x) _Out_z_cap_(x) + +/** + * Macro that annotates function params with output buffer size. + * + * If we were to annotate `wcsncpy`: + * + * ```c + * char *wcscpy(SDL_OUT_CAP(bufsize) wchar_t *dst, const wchar_t *src, size_t bufsize); + * ``` + * + * This notes that `dst` should have a capacity of `bufsize` wchar_t in size, + * and is only written to by the function. The compiler or other analysis + * tools can warn when this doesn't appear to be the case. + * + * This operates on counts of objects, not bytes. Use SDL_OUT_BYTECAP for + * bytes. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_CAP(x) _Out_cap_(x) + +/** + * Macro that annotates function params with output buffer size. + * + * If we were to annotate `memcpy`: + * + * ```c + * void *memcpy(SDL_OUT_BYTECAP(bufsize) void *dst, const void *src, size_t bufsize); + * ``` + * + * This notes that `dst` should have a capacity of `bufsize` bytes in size, + * and is only written to by the function. The compiler or other analysis + * tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_BYTECAP(x) _Out_bytecap_(x) + +/** + * Macro that annotates function params with output buffer string size. + * + * If we were to annotate `strcpy`: + * + * ```c + * char *strcpy(SDL_OUT_Z_BYTECAP(bufsize) char *dst, const char *src, size_t bufsize); + * ``` + * + * This notes that `dst` should have a capacity of `bufsize` bytes in size, + * and a zero-terminated string is written to it by the function. The compiler + * or other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_Z_BYTECAP(x) _Out_z_bytecap_(x) + +/** + * Macro that annotates function params as printf-style format strings. + * + * If we were to annotate `fprintf`: + * + * ```c + * int fprintf(FILE *f, SDL_PRINTF_FORMAT_STRING const char *fmt, ...); + * ``` + * + * This notes that `fmt` should be a printf-style format string. The compiler + * or other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRINTF_FORMAT_STRING _Printf_format_string_ + +/** + * Macro that annotates function params as scanf-style format strings. + * + * If we were to annotate `fscanf`: + * + * ```c + * int fscanf(FILE *f, SDL_SCANF_FORMAT_STRING const char *fmt, ...); + * ``` + * + * This notes that `fmt` should be a scanf-style format string. The compiler + * or other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCANF_FORMAT_STRING _Scanf_format_string_impl_ + +/** + * Macro that annotates a vararg function that operates like printf. + * + * If we were to annotate `fprintf`: + * + * ```c + * int fprintf(FILE *f, const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + * ``` + * + * This notes that the second parameter should be a printf-style format + * string, followed by `...`. The compiler or other analysis tools can warn + * when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __printf__, fmtargnumber, fmtargnumber+1 ))) + +/** + * Macro that annotates a va_list function that operates like printf. + * + * If we were to annotate `vfprintf`: + * + * ```c + * int vfprintf(FILE *f, const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + * ``` + * + * This notes that the second parameter should be a printf-style format + * string, followed by a va_list. The compiler or other analysis tools can + * warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __printf__, fmtargnumber, 0 ))) + +/** + * Macro that annotates a vararg function that operates like scanf. + * + * If we were to annotate `fscanf`: + * + * ```c + * int fscanf(FILE *f, const char *fmt, ...) SDL_PRINTF_VARARG_FUNCV(2); + * ``` + * + * This notes that the second parameter should be a scanf-style format string, + * followed by `...`. The compiler or other analysis tools can warn when this + * doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_SCANF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __scanf__, fmtargnumber, fmtargnumber+1 ))) + +/** + * Macro that annotates a va_list function that operates like scanf. + * + * If we were to annotate `vfscanf`: + * + * ```c + * int vfscanf(FILE *f, const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + * ``` + * + * This notes that the second parameter should be a scanf-style format string, + * followed by a va_list. The compiler or other analysis tools can warn when + * this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_SCANF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __scanf__, fmtargnumber, 0 ))) + +/** + * Macro that annotates a vararg function that operates like wprintf. + * + * If we were to annotate `fwprintf`: + * + * ```c + * int fwprintf(FILE *f, const wchar_t *fmt, ...) SDL_WPRINTF_VARARG_FUNC(2); + * ``` + * + * This notes that the second parameter should be a wprintf-style format wide + * string, followed by `...`. The compiler or other analysis tools can warn + * when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, fmtargnumber+1 ))) */ + +/** + * Macro that annotates a va_list function that operates like wprintf. + * + * If we were to annotate `vfwprintf`: + * + * ```c + * int vfwprintf(FILE *f, const wchar_t *fmt, va_list ap) SDL_WPRINTF_VARARG_FUNC(2); + * ``` + * + * This notes that the second parameter should be a wprintf-style format wide + * string, followed by a va_list. The compiler or other analysis tools can + * warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, 0 ))) */ + +#elif defined(SDL_DISABLE_ANALYZE_MACROS) +#define SDL_IN_BYTECAP(x) +#define SDL_INOUT_Z_CAP(x) +#define SDL_OUT_Z_CAP(x) +#define SDL_OUT_CAP(x) +#define SDL_OUT_BYTECAP(x) +#define SDL_OUT_Z_BYTECAP(x) +#define SDL_PRINTF_FORMAT_STRING +#define SDL_SCANF_FORMAT_STRING +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) +#else +#if defined(_MSC_VER) && (_MSC_VER >= 1600) /* VS 2010 and above */ +#include + +#define SDL_IN_BYTECAP(x) _In_bytecount_(x) +#define SDL_INOUT_Z_CAP(x) _Inout_z_cap_(x) +#define SDL_OUT_Z_CAP(x) _Out_z_cap_(x) +#define SDL_OUT_CAP(x) _Out_cap_(x) +#define SDL_OUT_BYTECAP(x) _Out_bytecap_(x) +#define SDL_OUT_Z_BYTECAP(x) _Out_z_bytecap_(x) + +#define SDL_PRINTF_FORMAT_STRING _Printf_format_string_ +#define SDL_SCANF_FORMAT_STRING _Scanf_format_string_impl_ +#else +#define SDL_IN_BYTECAP(x) +#define SDL_INOUT_Z_CAP(x) +#define SDL_OUT_Z_CAP(x) +#define SDL_OUT_CAP(x) +#define SDL_OUT_BYTECAP(x) +#define SDL_OUT_Z_BYTECAP(x) +#define SDL_PRINTF_FORMAT_STRING +#define SDL_SCANF_FORMAT_STRING +#endif +#if defined(__GNUC__) || defined(__clang__) +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __printf__, fmtargnumber, fmtargnumber+1 ))) +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __printf__, fmtargnumber, 0 ))) +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __scanf__, fmtargnumber, fmtargnumber+1 ))) +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __scanf__, fmtargnumber, 0 ))) +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, fmtargnumber+1 ))) */ +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, 0 ))) */ +#else +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) +#endif +#endif /* SDL_DISABLE_ANALYZE_MACROS */ + +/** \cond */ +#ifndef DOXYGEN_SHOULD_IGNORE_THIS +SDL_COMPILE_TIME_ASSERT(bool_size, sizeof(bool) == 1); +SDL_COMPILE_TIME_ASSERT(uint8_size, sizeof(Uint8) == 1); +SDL_COMPILE_TIME_ASSERT(sint8_size, sizeof(Sint8) == 1); +SDL_COMPILE_TIME_ASSERT(uint16_size, sizeof(Uint16) == 2); +SDL_COMPILE_TIME_ASSERT(sint16_size, sizeof(Sint16) == 2); +SDL_COMPILE_TIME_ASSERT(uint32_size, sizeof(Uint32) == 4); +SDL_COMPILE_TIME_ASSERT(sint32_size, sizeof(Sint32) == 4); +SDL_COMPILE_TIME_ASSERT(uint64_size, sizeof(Uint64) == 8); +SDL_COMPILE_TIME_ASSERT(sint64_size, sizeof(Sint64) == 8); +#ifndef SDL_NOLONGLONG +SDL_COMPILE_TIME_ASSERT(uint64_longlong, sizeof(Uint64) <= sizeof(unsigned long long)); +SDL_COMPILE_TIME_ASSERT(size_t_longlong, sizeof(size_t) <= sizeof(unsigned long long)); +#endif +typedef struct SDL_alignment_test +{ + Uint8 a; + void *b; +} SDL_alignment_test; +SDL_COMPILE_TIME_ASSERT(struct_alignment, sizeof(SDL_alignment_test) == (2 * sizeof(void *))); +SDL_COMPILE_TIME_ASSERT(two_s_complement, (int)~(int)0 == (int)(-1)); +#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ +/** \endcond */ + +/* Check to make sure enums are the size of ints, for structure packing. + For both Watcom C/C++ and Borland C/C++ the compiler option that makes + enums having the size of an int must be enabled. + This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11). +*/ + +/** \cond */ +#ifndef DOXYGEN_SHOULD_IGNORE_THIS +#if !defined(SDL_PLATFORM_VITA) && !defined(SDL_PLATFORM_3DS) +/* TODO: include/SDL_stdinc.h:390: error: size of array 'SDL_dummy_enum' is negative */ +typedef enum SDL_DUMMY_ENUM +{ + DUMMY_ENUM_VALUE +} SDL_DUMMY_ENUM; + +SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int)); +#endif +#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ +/** \endcond */ + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A macro to initialize an SDL interface. + * + * This macro will initialize an SDL interface structure and should be called + * before you fill out the fields with your implementation. + * + * You can use it like this: + * + * ```c + * SDL_IOStreamInterface iface; + * + * SDL_INIT_INTERFACE(&iface); + * + * // Fill in the interface function pointers with your implementation + * iface.seek = ... + * + * stream = SDL_OpenIO(&iface, NULL); + * ``` + * + * If you are using designated initializers, you can use the size of the + * interface as the version, e.g. + * + * ```c + * SDL_IOStreamInterface iface = { + * .version = sizeof(iface), + * .seek = ... + * }; + * stream = SDL_OpenIO(&iface, NULL); + * ``` + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_IOStreamInterface + * \sa SDL_StorageInterface + * \sa SDL_VirtualJoystickDesc + */ +#define SDL_INIT_INTERFACE(iface) \ + do { \ + SDL_zerop(iface); \ + (iface)->version = sizeof(*(iface)); \ + } while (0) + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Allocate memory on the stack (maybe). + * + * If SDL knows how to access alloca() on the current platform, it will use it + * to stack-allocate memory here. If it doesn't, it will use SDL_malloc() to + * heap-allocate memory. + * + * Since this might not be stack memory at all, it's important that you check + * the returned pointer for NULL, and that you call SDL_stack_free on the + * memory when done with it. Since this might be stack memory, it's important + * that you don't allocate large amounts of it, or allocate in a loop without + * returning from the function, so the stack doesn't overflow. + * + * \param type the datatype of the memory to allocate. + * \param count the number of `type` objects to allocate. + * \returns newly-allocated memory, or NULL on failure. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_stack_free + */ +#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count)) + +/** + * Free memory previously allocated with SDL_stack_alloc. + * + * If SDL used alloca() to allocate this memory, this macro does nothing and + * the allocated memory will be automatically released when the function that + * called SDL_stack_alloc() returns. If SDL used SDL_malloc(), it will + * SDL_free the memory immediately. + * + * \param data the pointer, from SDL_stack_alloc(), to free. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_stack_alloc + */ +#define SDL_stack_free(data) +#elif !defined(SDL_DISABLE_ALLOCA) +#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count)) +#define SDL_stack_free(data) +#else +#define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count)) +#define SDL_stack_free(data) SDL_free(data) +#endif + +/** + * Allocate uninitialized memory. + * + * The allocated memory returned by this function must be freed with + * SDL_free(). + * + * If `size` is 0, it will be set to 1. + * + * If the allocation is successful, the returned pointer is guaranteed to be + * aligned to either the *fundamental alignment* (`alignof(max_align_t)` in + * C11 and later) or `2 * sizeof(void *)`, whichever is smaller. Use + * SDL_aligned_alloc() if you need to allocate memory aligned to an alignment + * greater than this guarantee. + * + * \param size the size to allocate. + * \returns a pointer to the allocated memory, or NULL if allocation failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_calloc + * \sa SDL_realloc + * \sa SDL_aligned_alloc + */ +extern SDL_DECLSPEC SDL_MALLOC void * SDLCALL SDL_malloc(size_t size); + +/** + * Allocate a zero-initialized array. + * + * The memory returned by this function must be freed with SDL_free(). + * + * If either of `nmemb` or `size` is 0, they will both be set to 1. + * + * If the allocation is successful, the returned pointer is guaranteed to be + * aligned to either the *fundamental alignment* (`alignof(max_align_t)` in + * C11 and later) or `2 * sizeof(void *)`, whichever is smaller. + * + * \param nmemb the number of elements in the array. + * \param size the size of each element of the array. + * \returns a pointer to the allocated array, or NULL if allocation failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_malloc + * \sa SDL_realloc + */ +extern SDL_DECLSPEC SDL_MALLOC SDL_ALLOC_SIZE2(1, 2) void * SDLCALL SDL_calloc(size_t nmemb, size_t size); + +/** + * Change the size of allocated memory. + * + * The memory returned by this function must be freed with SDL_free(). + * + * If `size` is 0, it will be set to 1. Note that this is unlike some other C + * runtime `realloc` implementations, which may treat `realloc(mem, 0)` the + * same way as `free(mem)`. + * + * If `mem` is NULL, the behavior of this function is equivalent to + * SDL_malloc(). Otherwise, the function can have one of three possible + * outcomes: + * + * - If it returns the same pointer as `mem`, it means that `mem` was resized + * in place without freeing. + * - If it returns a different non-NULL pointer, it means that `mem` was freed + * and cannot be dereferenced anymore. + * - If it returns NULL (indicating failure), then `mem` will remain valid and + * must still be freed with SDL_free(). + * + * If the allocation is successfully resized, the returned pointer is + * guaranteed to be aligned to either the *fundamental alignment* + * (`alignof(max_align_t)` in C11 and later) or `2 * sizeof(void *)`, + * whichever is smaller. + * + * \param mem a pointer to allocated memory to reallocate, or NULL. + * \param size the new size of the memory. + * \returns a pointer to the newly allocated memory, or NULL if allocation + * failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_malloc + * \sa SDL_calloc + */ +extern SDL_DECLSPEC SDL_ALLOC_SIZE(2) void * SDLCALL SDL_realloc(void *mem, size_t size); + +/** + * Free allocated memory. + * + * The pointer is no longer valid after this call and cannot be dereferenced + * anymore. + * + * If `mem` is NULL, this function does nothing. + * + * \param mem a pointer to allocated memory, or NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_malloc + * \sa SDL_calloc + * \sa SDL_realloc + */ +extern SDL_DECLSPEC void SDLCALL SDL_free(void *mem); + +/** + * A callback used to implement SDL_malloc(). + * + * SDL will always ensure that the passed `size` is greater than 0. + * + * \param size the size to allocate. + * \returns a pointer to the allocated memory, or NULL if allocation failed. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_malloc + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void *(SDLCALL *SDL_malloc_func)(size_t size); + +/** + * A callback used to implement SDL_calloc(). + * + * SDL will always ensure that the passed `nmemb` and `size` are both greater + * than 0. + * + * \param nmemb the number of elements in the array. + * \param size the size of each element of the array. + * \returns a pointer to the allocated array, or NULL if allocation failed. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_calloc + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void *(SDLCALL *SDL_calloc_func)(size_t nmemb, size_t size); + +/** + * A callback used to implement SDL_realloc(). + * + * SDL will always ensure that the passed `size` is greater than 0. + * + * \param mem a pointer to allocated memory to reallocate, or NULL. + * \param size the new size of the memory. + * \returns a pointer to the newly allocated memory, or NULL if allocation + * failed. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_realloc + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void *(SDLCALL *SDL_realloc_func)(void *mem, size_t size); + +/** + * A callback used to implement SDL_free(). + * + * SDL will always ensure that the passed `mem` is a non-NULL pointer. + * + * \param mem a pointer to allocated memory. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void (SDLCALL *SDL_free_func)(void *mem); + +/** + * Get the original set of SDL memory functions. + * + * This is what SDL_malloc and friends will use by default, if there has been + * no call to SDL_SetMemoryFunctions. This is not necessarily using the C + * runtime's `malloc` functions behind the scenes! Different platforms and + * build configurations might do any number of unexpected things. + * + * \param malloc_func filled with malloc function. + * \param calloc_func filled with calloc function. + * \param realloc_func filled with realloc function. + * \param free_func filled with free function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetOriginalMemoryFunctions(SDL_malloc_func *malloc_func, + SDL_calloc_func *calloc_func, + SDL_realloc_func *realloc_func, + SDL_free_func *free_func); + +/** + * Get the current set of SDL memory functions. + * + * \param malloc_func filled with malloc function. + * \param calloc_func filled with calloc function. + * \param realloc_func filled with realloc function. + * \param free_func filled with free function. + * + * \threadsafety This does not hold a lock, so do not call this in the + * unlikely event of a background thread calling + * SDL_SetMemoryFunctions simultaneously. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetMemoryFunctions + * \sa SDL_GetOriginalMemoryFunctions + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetMemoryFunctions(SDL_malloc_func *malloc_func, + SDL_calloc_func *calloc_func, + SDL_realloc_func *realloc_func, + SDL_free_func *free_func); + +/** + * Replace SDL's memory allocation functions with a custom set. + * + * It is not safe to call this function once any allocations have been made, + * as future calls to SDL_free will use the new allocator, even if they came + * from an SDL_malloc made with the old one! + * + * If used, usually this needs to be the first call made into the SDL library, + * if not the very first thing done at program startup time. + * + * \param malloc_func custom malloc function. + * \param calloc_func custom calloc function. + * \param realloc_func custom realloc function. + * \param free_func custom free function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, but one + * should not replace the memory functions once any allocations + * are made! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMemoryFunctions + * \sa SDL_GetOriginalMemoryFunctions + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetMemoryFunctions(SDL_malloc_func malloc_func, + SDL_calloc_func calloc_func, + SDL_realloc_func realloc_func, + SDL_free_func free_func); + +/** + * Allocate memory aligned to a specific alignment. + * + * The memory returned by this function must be freed with SDL_aligned_free(), + * _not_ SDL_free(). + * + * If `alignment` is less than the size of `void *`, it will be increased to + * match that. + * + * The returned memory address will be a multiple of the alignment value, and + * the size of the memory allocated will be a multiple of the alignment value. + * + * \param alignment the alignment of the memory. + * \param size the size to allocate. + * \returns a pointer to the aligned memory, or NULL if allocation failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_aligned_free + */ +extern SDL_DECLSPEC SDL_MALLOC void * SDLCALL SDL_aligned_alloc(size_t alignment, size_t size); + +/** + * Free memory allocated by SDL_aligned_alloc(). + * + * The pointer is no longer valid after this call and cannot be dereferenced + * anymore. + * + * If `mem` is NULL, this function does nothing. + * + * \param mem a pointer previously returned by SDL_aligned_alloc(), or NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_aligned_alloc + */ +extern SDL_DECLSPEC void SDLCALL SDL_aligned_free(void *mem); + +/** + * Get the number of outstanding (unfreed) allocations. + * + * \returns the number of allocations or -1 if allocation counting is + * disabled. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumAllocations(void); + +/** + * A thread-safe set of environment variables + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + * \sa SDL_DestroyEnvironment + */ +typedef struct SDL_Environment SDL_Environment; + +/** + * Get the process environment. + * + * This is initialized at application start and is not affected by setenv() + * and unsetenv() calls after that point. Use SDL_SetEnvironmentVariable() and + * SDL_UnsetEnvironmentVariable() if you want to modify this environment, or + * SDL_setenv_unsafe() or SDL_unsetenv_unsafe() if you want changes to persist + * in the C runtime environment after SDL_Quit(). + * + * \returns a pointer to the environment for the process or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC SDL_Environment * SDLCALL SDL_GetEnvironment(void); + +/** + * Create a set of environment variables + * + * \param populated true to initialize it from the C runtime environment, + * false to create an empty environment. + * \returns a pointer to the new environment or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety If `populated` is false, it is safe to call this function + * from any thread, otherwise it is safe if no other threads are + * calling setenv() or unsetenv() + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + * \sa SDL_DestroyEnvironment + */ +extern SDL_DECLSPEC SDL_Environment * SDLCALL SDL_CreateEnvironment(bool populated); + +/** + * Get the value of a variable in the environment. + * + * \param env the environment to query. + * \param name the name of the variable to get. + * \returns a pointer to the value of the variable or NULL if it can't be + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetEnvironmentVariable(SDL_Environment *env, const char *name); + +/** + * Get all variables in the environment. + * + * \param env the environment to query. + * \returns a NULL terminated array of pointers to environment variables in + * the form "variable=value" or NULL on failure; call SDL_GetError() + * for more information. This is a single allocation that should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GetEnvironmentVariables(SDL_Environment *env); + +/** + * Set the value of a variable in the environment. + * + * \param env the environment to modify. + * \param name the name of the variable to set. + * \param value the value of the variable to set. + * \param overwrite true to overwrite the variable if it exists, false to + * return success without setting the variable if it already + * exists. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetEnvironmentVariable(SDL_Environment *env, const char *name, const char *value, bool overwrite); + +/** + * Clear a variable from the environment. + * + * \param env the environment to modify. + * \param name the name of the variable to unset. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UnsetEnvironmentVariable(SDL_Environment *env, const char *name); + +/** + * Destroy a set of environment variables. + * + * \param env the environment to destroy. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the environment is no longer in use. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateEnvironment + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyEnvironment(SDL_Environment *env); + +/** + * Get the value of a variable in the environment. + * + * This function uses SDL's cached copy of the environment and is thread-safe. + * + * \param name the name of the variable to get. + * \returns a pointer to the value of the variable or NULL if it can't be + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_getenv(const char *name); + +/** + * Get the value of a variable in the environment. + * + * This function bypasses SDL's cached copy of the environment and is not + * thread-safe. + * + * \param name the name of the variable to get. + * \returns a pointer to the value of the variable or NULL if it can't be + * found. + * + * \threadsafety This function is not thread safe, consider using SDL_getenv() + * instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_getenv + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_getenv_unsafe(const char *name); + +/** + * Set the value of a variable in the environment. + * + * \param name the name of the variable to set. + * \param value the value of the variable to set. + * \param overwrite 1 to overwrite the variable if it exists, 0 to return + * success without setting the variable if it already exists. + * \returns 0 on success, -1 on error. + * + * \threadsafety This function is not thread safe, consider using + * SDL_SetEnvironmentVariable() instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetEnvironmentVariable + */ +extern SDL_DECLSPEC int SDLCALL SDL_setenv_unsafe(const char *name, const char *value, int overwrite); + +/** + * Clear a variable from the environment. + * + * \param name the name of the variable to unset. + * \returns 0 on success, -1 on error. + * + * \threadsafety This function is not thread safe, consider using + * SDL_UnsetEnvironmentVariable() instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC int SDLCALL SDL_unsetenv_unsafe(const char *name); + +/** + * A callback used with SDL sorting and binary search functions. + * + * \param a a pointer to the first element being compared. + * \param b a pointer to the second element being compared. + * \returns -1 if `a` should be sorted before `b`, 1 if `b` should be sorted + * before `a`, 0 if they are equal. If two elements are equal, their + * order in the sorted array is undefined. + * + * \since This callback is available since SDL 3.2.0. + * + * \sa SDL_bsearch + * \sa SDL_qsort + */ +typedef int (SDLCALL *SDL_CompareCallback)(const void *a, const void *b); + +/** + * Sort an array. + * + * For example: + * + * ```c + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *a, const void *b) + * { + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->n < B->n) { + * return -1; + * } else if (B->n < A->n) { + * return 1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 3, "third" }, { 1, "first" }, { 2, "second" } + * }; + * + * SDL_qsort(values, SDL_arraysize(values), sizeof(values[0]), compare); + * ``` + * + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch + * \sa SDL_qsort_r + */ +extern SDL_DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size, SDL_CompareCallback compare); + +/** + * Perform a binary search on a previously sorted array. + * + * For example: + * + * ```c + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *a, const void *b) + * { + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->n < B->n) { + * return -1; + * } else if (B->n < A->n) { + * return 1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 1, "first" }, { 2, "second" }, { 3, "third" } + * }; + * data key = { 2, NULL }; + * + * data *result = SDL_bsearch(&key, values, SDL_arraysize(values), sizeof(values[0]), compare); + * ``` + * + * \param key a pointer to a key equal to the element being searched for. + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * \returns a pointer to the matching element in the array, or NULL if not + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch_r + * \sa SDL_qsort + */ +extern SDL_DECLSPEC void * SDLCALL SDL_bsearch(const void *key, const void *base, size_t nmemb, size_t size, SDL_CompareCallback compare); + +/** + * A callback used with SDL sorting and binary search functions. + * + * \param userdata the `userdata` pointer passed to the sort function. + * \param a a pointer to the first element being compared. + * \param b a pointer to the second element being compared. + * \returns -1 if `a` should be sorted before `b`, 1 if `b` should be sorted + * before `a`, 0 if they are equal. If two elements are equal, their + * order in the sorted array is undefined. + * + * \since This callback is available since SDL 3.2.0. + * + * \sa SDL_qsort_r + * \sa SDL_bsearch_r + */ +typedef int (SDLCALL *SDL_CompareCallback_r)(void *userdata, const void *a, const void *b); + +/** + * Sort an array, passing a userdata pointer to the compare function. + * + * For example: + * + * ```c + * typedef enum { + * sort_increasing, + * sort_decreasing, + * } sort_method; + * + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *userdata, const void *a, const void *b) + * { + * sort_method method = (sort_method)(uintptr_t)userdata; + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->key < B->key) { + * return (method == sort_increasing) ? -1 : 1; + * } else if (B->key < A->key) { + * return (method == sort_increasing) ? 1 : -1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 3, "third" }, { 1, "first" }, { 2, "second" } + * }; + * + * SDL_qsort_r(values, SDL_arraysize(values), sizeof(values[0]), compare, (const void *)(uintptr_t)sort_increasing); + * ``` + * + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * \param userdata a pointer to pass to the compare function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch_r + * \sa SDL_qsort + */ +extern SDL_DECLSPEC void SDLCALL SDL_qsort_r(void *base, size_t nmemb, size_t size, SDL_CompareCallback_r compare, void *userdata); + +/** + * Perform a binary search on a previously sorted array, passing a userdata + * pointer to the compare function. + * + * For example: + * + * ```c + * typedef enum { + * sort_increasing, + * sort_decreasing, + * } sort_method; + * + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *userdata, const void *a, const void *b) + * { + * sort_method method = (sort_method)(uintptr_t)userdata; + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->key < B->key) { + * return (method == sort_increasing) ? -1 : 1; + * } else if (B->key < A->key) { + * return (method == sort_increasing) ? 1 : -1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 1, "first" }, { 2, "second" }, { 3, "third" } + * }; + * data key = { 2, NULL }; + * + * data *result = SDL_bsearch_r(&key, values, SDL_arraysize(values), sizeof(values[0]), compare, (const void *)(uintptr_t)sort_increasing); + * ``` + * + * \param key a pointer to a key equal to the element being searched for. + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * \param userdata a pointer to pass to the compare function. + * \returns a pointer to the matching element in the array, or NULL if not + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch + * \sa SDL_qsort_r + */ +extern SDL_DECLSPEC void * SDLCALL SDL_bsearch_r(const void *key, const void *base, size_t nmemb, size_t size, SDL_CompareCallback_r compare, void *userdata); + +/** + * Compute the absolute value of `x`. + * + * \param x an integer value. + * \returns the absolute value of x. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_abs(int x); + +/** + * Return the lesser of two values. + * + * This is a helper macro that might be more clear than writing out the + * comparisons directly, and works with any type that can be compared with the + * `<` operator. However, it double-evaluates both its parameters, so do not + * use expressions with side-effects here. + * + * \param x the first value to compare. + * \param y the second value to compare. + * \returns the lesser of `x` and `y`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_min(x, y) (((x) < (y)) ? (x) : (y)) + +/** + * Return the greater of two values. + * + * This is a helper macro that might be more clear than writing out the + * comparisons directly, and works with any type that can be compared with the + * `>` operator. However, it double-evaluates both its parameters, so do not + * use expressions with side-effects here. + * + * \param x the first value to compare. + * \param y the second value to compare. + * \returns the lesser of `x` and `y`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_max(x, y) (((x) > (y)) ? (x) : (y)) + +/** + * Return a value clamped to a range. + * + * If `x` is outside the range a values between `a` and `b`, the returned + * value will be `a` or `b` as appropriate. Otherwise, `x` is returned. + * + * This macro will produce incorrect results if `b` is less than `a`. + * + * This is a helper macro that might be more clear than writing out the + * comparisons directly, and works with any type that can be compared with the + * `<` and `>` operators. However, it double-evaluates all its parameters, so + * do not use expressions with side-effects here. + * + * \param x the value to compare. + * \param a the low end value. + * \param b the high end value. + * \returns x, clamped between a and b. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_clamp(x, a, b) (((x) < (a)) ? (a) : (((x) > (b)) ? (b) : (x))) + +/** + * Query if a character is alphabetic (a letter). + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * for English 'a-z' and 'A-Z' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isalpha(int x); + +/** + * Query if a character is alphabetic (a letter) or a number. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * for English 'a-z', 'A-Z', and '0-9' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isalnum(int x); + +/** + * Report if a character is blank (a space or tab). + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 0x20 (space) or 0x9 (tab) as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isblank(int x); + +/** + * Report if a character is a control character. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 0 through 0x1F, and 0x7F, as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_iscntrl(int x); + +/** + * Report if a character is a numeric digit. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * '0' (0x30) through '9' (0x39), as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isdigit(int x); + +/** + * Report if a character is a hexadecimal digit. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 'A' through 'F', 'a' through 'f', and '0' through '9', as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isxdigit(int x); + +/** + * Report if a character is a punctuation mark. + * + * **WARNING**: Regardless of system locale, this is equivalent to + * `((SDL_isgraph(x)) && (!SDL_isalnum(x)))`. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isgraph + * \sa SDL_isalnum + */ +extern SDL_DECLSPEC int SDLCALL SDL_ispunct(int x); + +/** + * Report if a character is whitespace. + * + * **WARNING**: Regardless of system locale, this will only treat the + * following ASCII values as true: + * + * - space (0x20) + * - tab (0x09) + * - newline (0x0A) + * - vertical tab (0x0B) + * - form feed (0x0C) + * - return (0x0D) + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isspace(int x); + +/** + * Report if a character is upper case. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 'A' through 'Z' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isupper(int x); + +/** + * Report if a character is lower case. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 'a' through 'z' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_islower(int x); + +/** + * Report if a character is "printable". + * + * Be advised that "printable" has a definition that goes back to text + * terminals from the dawn of computing, making this a sort of special case + * function that is not suitable for Unicode (or most any) text management. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * ' ' (0x20) through '~' (0x7E) as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isprint(int x); + +/** + * Report if a character is any "printable" except space. + * + * Be advised that "printable" has a definition that goes back to text + * terminals from the dawn of computing, making this a sort of special case + * function that is not suitable for Unicode (or most any) text management. + * + * **WARNING**: Regardless of system locale, this is equivalent to + * `(SDL_isprint(x)) && ((x) != ' ')`. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isprint + */ +extern SDL_DECLSPEC int SDLCALL SDL_isgraph(int x); + +/** + * Convert low-ASCII English letters to uppercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'a' through 'z' to uppercase. + * + * This function returns the uppercase equivalent of `x`. If a character + * cannot be converted, or is already uppercase, this function returns `x`. + * + * \param x character value to check. + * \returns capitalized version of x, or x if no conversion available. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_toupper(int x); + +/** + * Convert low-ASCII English letters to lowercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'A' through 'Z' to lowercase. + * + * This function returns the lowercase equivalent of `x`. If a character + * cannot be converted, or is already lowercase, this function returns `x`. + * + * \param x character value to check. + * \returns lowercase version of x, or x if no conversion available. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_tolower(int x); + +/** + * Calculate a CRC-16 value. + * + * https://en.wikipedia.org/wiki/Cyclic_redundancy_check + * + * This function can be called multiple times, to stream data to be + * checksummed in blocks. Each call must provide the previous CRC-16 return + * value to be updated with the next block. The first call to this function + * for a set of blocks should pass in a zero CRC value. + * + * \param crc the current checksum for this data set, or 0 for a new data set. + * \param data a new block of data to add to the checksum. + * \param len the size, in bytes, of the new block of data. + * \returns a CRC-16 checksum value of all blocks in the data set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_crc16(Uint16 crc, const void *data, size_t len); + +/** + * Calculate a CRC-32 value. + * + * https://en.wikipedia.org/wiki/Cyclic_redundancy_check + * + * This function can be called multiple times, to stream data to be + * checksummed in blocks. Each call must provide the previous CRC-32 return + * value to be updated with the next block. The first call to this function + * for a set of blocks should pass in a zero CRC value. + * + * \param crc the current checksum for this data set, or 0 for a new data set. + * \param data a new block of data to add to the checksum. + * \param len the size, in bytes, of the new block of data. + * \returns a CRC-32 checksum value of all blocks in the data set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_crc32(Uint32 crc, const void *data, size_t len); + +/** + * Calculate a 32-bit MurmurHash3 value for a block of data. + * + * https://en.wikipedia.org/wiki/MurmurHash + * + * A seed may be specified, which changes the final results consistently, but + * this does not work like SDL_crc16 and SDL_crc32: you can't feed a previous + * result from this function back into itself as the next seed value to + * calculate a hash in chunks; it won't produce the same hash as it would if + * the same data was provided in a single call. + * + * If you aren't sure what to provide for a seed, zero is fine. Murmur3 is not + * cryptographically secure, so it shouldn't be used for hashing top-secret + * data. + * + * \param data the data to be hashed. + * \param len the size of data, in bytes. + * \param seed a value that alters the final hash value. + * \returns a Murmur3 32-bit hash value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_murmur3_32(const void *data, size_t len, Uint32 seed); + +/** + * Copy non-overlapping memory. + * + * The memory regions must not overlap. If they do, use SDL_memmove() instead. + * + * \param dst The destination memory region. Must not be NULL, and must not + * overlap with `src`. + * \param src The source memory region. Must not be NULL, and must not overlap + * with `dst`. + * \param len The length in bytes of both `dst` and `src`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_memmove + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memcpy(SDL_OUT_BYTECAP(len) void *dst, SDL_IN_BYTECAP(len) const void *src, size_t len); + +/* Take advantage of compiler optimizations for memcpy */ +#ifndef SDL_SLOW_MEMCPY +#ifdef SDL_memcpy +#undef SDL_memcpy +#endif +#define SDL_memcpy memcpy +#endif + + +/** + * A macro to copy memory between objects, with basic type checking. + * + * SDL_memcpy and SDL_memmove do not care where you copy memory to and from, + * which can lead to bugs. This macro aims to avoid most of those bugs by + * making sure that the source and destination are both pointers to objects + * that are the same size. It does not check that the objects are the same + * _type_, just that the copy will not overflow either object. + * + * The size check happens at compile time, and the compiler will throw an + * error if the objects are different sizes. + * + * Generally this is intended to copy a single object, not an array. + * + * This macro looks like it double-evaluates its parameters, but the extras + * them are in `sizeof` sections, which generate no code nor side-effects. + * + * \param dst a pointer to the destination object. Must not be NULL. + * \param src a pointer to the source object. Must not be NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +#define SDL_copyp(dst, src) \ + { SDL_COMPILE_TIME_ASSERT(SDL_copyp, sizeof (*(dst)) == sizeof (*(src))); } \ + SDL_memcpy((dst), (src), sizeof(*(src))) + +/** + * Copy memory ranges that might overlap. + * + * It is okay for the memory regions to overlap. If you are confident that the + * regions never overlap, using SDL_memcpy() may improve performance. + * + * \param dst The destination memory region. Must not be NULL. + * \param src The source memory region. Must not be NULL. + * \param len The length in bytes of both `dst` and `src`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_memcpy + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memmove(SDL_OUT_BYTECAP(len) void *dst, SDL_IN_BYTECAP(len) const void *src, size_t len); + +/* Take advantage of compiler optimizations for memmove */ +#ifndef SDL_SLOW_MEMMOVE +#ifdef SDL_memmove +#undef SDL_memmove +#endif +#define SDL_memmove memmove +#endif + +/** + * Initialize all bytes of buffer of memory to a specific value. + * + * This function will set `len` bytes, pointed to by `dst`, to the value + * specified in `c`. + * + * Despite `c` being an `int` instead of a `char`, this only operates on + * bytes; `c` must be a value between 0 and 255, inclusive. + * + * \param dst the destination memory region. Must not be NULL. + * \param c the byte value to set. + * \param len the length, in bytes, to set in `dst`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memset(SDL_OUT_BYTECAP(len) void *dst, int c, size_t len); + +/** + * Initialize all 32-bit words of buffer of memory to a specific value. + * + * This function will set a buffer of `dwords` Uint32 values, pointed to by + * `dst`, to the value specified in `val`. + * + * Unlike SDL_memset, this sets 32-bit values, not bytes, so it's not limited + * to a range of 0-255. + * + * \param dst the destination memory region. Must not be NULL. + * \param val the Uint32 value to set. + * \param dwords the number of Uint32 values to set in `dst`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memset4(void *dst, Uint32 val, size_t dwords); + +/* Take advantage of compiler optimizations for memset */ +#ifndef SDL_SLOW_MEMSET +#ifdef SDL_memset +#undef SDL_memset +#endif +#define SDL_memset memset +#endif + +/** + * Clear an object's memory to zero. + * + * This is wrapper over SDL_memset that handles calculating the object size, + * so there's no chance of copy/paste errors, and the code is cleaner. + * + * This requires an object, not a pointer to an object, nor an array. + * + * \param x the object to clear. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_zerop + * \sa SDL_zeroa + */ +#define SDL_zero(x) SDL_memset(&(x), 0, sizeof((x))) + +/** + * Clear an object's memory to zero, using a pointer. + * + * This is wrapper over SDL_memset that handles calculating the object size, + * so there's no chance of copy/paste errors, and the code is cleaner. + * + * This requires a pointer to an object, not an object itself, nor an array. + * + * \param x a pointer to the object to clear. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_zero + * \sa SDL_zeroa + */ +#define SDL_zerop(x) SDL_memset((x), 0, sizeof(*(x))) + +/** + * Clear an array's memory to zero. + * + * This is wrapper over SDL_memset that handles calculating the array size, so + * there's no chance of copy/paste errors, and the code is cleaner. + * + * This requires an array, not an object, nor a pointer to an object. + * + * \param x an array to clear. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_zero + * \sa SDL_zeroa + */ +#define SDL_zeroa(x) SDL_memset((x), 0, sizeof((x))) + + +/** + * Compare two buffers of memory. + * + * \param s1 the first buffer to compare. NULL is not permitted! + * \param s2 the second buffer to compare. NULL is not permitted! + * \param len the number of bytes to compare between the buffers. + * \returns less than zero if s1 is "less than" s2, greater than zero if s1 is + * "greater than" s2, and zero if the buffers match exactly for `len` + * bytes. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_memcmp(const void *s1, const void *s2, size_t len); + +/** + * This works exactly like wcslen() but doesn't require access to a C runtime. + * + * Counts the number of wchar_t values in `wstr`, excluding the null + * terminator. + * + * Like SDL_strlen only counts bytes and not codepoints in a UTF-8 string, + * this counts wchar_t values in a string, even if the string's encoding is of + * variable width, like UTF-16. + * + * Also be aware that wchar_t is different sizes on different platforms (4 + * bytes on Linux, 2 on Windows, etc). + * + * \param wstr The null-terminated wide string to read. Must not be NULL. + * \returns the length (in wchar_t values, excluding the null terminator) of + * `wstr`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcsnlen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t *wstr); + +/** + * This works exactly like wcsnlen() but doesn't require access to a C + * runtime. + * + * Counts up to a maximum of `maxlen` wchar_t values in `wstr`, excluding the + * null terminator. + * + * Like SDL_strnlen only counts bytes and not codepoints in a UTF-8 string, + * this counts wchar_t values in a string, even if the string's encoding is of + * variable width, like UTF-16. + * + * Also be aware that wchar_t is different sizes on different platforms (4 + * bytes on Linux, 2 on Windows, etc). + * + * Also, `maxlen` is a count of wide characters, not bytes! + * + * \param wstr The null-terminated wide string to read. Must not be NULL. + * \param maxlen The maximum amount of wide characters to count. + * \returns the length (in wide characters, excluding the null terminator) of + * `wstr` but never more than `maxlen`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcslen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcsnlen(const wchar_t *wstr, size_t maxlen); + +/** + * Copy a wide string. + * + * This function copies `maxlen` - 1 wide characters from `src` to `dst`, then + * appends a null terminator. + * + * `src` and `dst` must not overlap. + * + * If `maxlen` is 0, no wide characters are copied and no null terminator is + * written. + * + * \param dst The destination buffer. Must not be NULL, and must not overlap + * with `src`. + * \param src The null-terminated wide string to copy. Must not be NULL, and + * must not overlap with `dst`. + * \param maxlen The length (in wide characters) of the destination buffer. + * \returns the length (in wide characters, excluding the null terminator) of + * `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcslcat + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcslcpy(SDL_OUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src, size_t maxlen); + +/** + * Concatenate wide strings. + * + * This function appends up to `maxlen` - SDL_wcslen(dst) - 1 wide characters + * from `src` to the end of the wide string in `dst`, then appends a null + * terminator. + * + * `src` and `dst` must not overlap. + * + * If `maxlen` - SDL_wcslen(dst) - 1 is less than or equal to 0, then `dst` is + * unmodified. + * + * \param dst The destination buffer already containing the first + * null-terminated wide string. Must not be NULL and must not + * overlap with `src`. + * \param src The second null-terminated wide string. Must not be NULL, and + * must not overlap with `dst`. + * \param maxlen The length (in wide characters) of the destination buffer. + * \returns the length (in wide characters, excluding the null terminator) of + * the string in `dst` plus the length of `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcslcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcslcat(SDL_INOUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src, size_t maxlen); + +/** + * Allocate a copy of a wide string. + * + * This allocates enough space for a null-terminated copy of `wstr`, using + * SDL_malloc, and then makes a copy of the string into this space. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param wstr the string to copy. + * \returns a pointer to the newly-allocated wide string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC wchar_t * SDLCALL SDL_wcsdup(const wchar_t *wstr); + +/** + * Search a wide string for the first instance of a specific substring. + * + * The search ends once it finds the requested substring, or a null terminator + * byte to end the string. + * + * Note that this looks for strings of _wide characters_, not _codepoints_, so + * it's legal to search for malformed and incomplete UTF-16 sequences. + * + * \param haystack the wide string to search. Must not be NULL. + * \param needle the wide string to search for. Must not be NULL. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC wchar_t * SDLCALL SDL_wcsstr(const wchar_t *haystack, const wchar_t *needle); + +/** + * Search a wide string, up to n wide chars, for the first instance of a + * specific substring. + * + * The search ends once it finds the requested substring, or a null terminator + * value to end the string, or `maxlen` wide character have been examined. It + * is possible to use this function on a wide string without a null + * terminator. + * + * Note that this looks for strings of _wide characters_, not _codepoints_, so + * it's legal to search for malformed and incomplete UTF-16 sequences. + * + * \param haystack the wide string to search. Must not be NULL. + * \param needle the wide string to search for. Must not be NULL. + * \param maxlen the maximum number of wide characters to search in + * `haystack`. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC wchar_t * SDLCALL SDL_wcsnstr(const wchar_t *haystack, const wchar_t *needle, size_t maxlen); + +/** + * Compare two null-terminated wide strings. + * + * This only compares wchar_t values until it hits a null-terminating + * character; it does not care if the string is well-formed UTF-16 (or UTF-32, + * depending on your platform's wchar_t size), or uses valid Unicode values. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcscmp(const wchar_t *str1, const wchar_t *str2); + +/** + * Compare two wide strings up to a number of wchar_t values. + * + * This only compares wchar_t values; it does not care if the string is + * well-formed UTF-16 (or UTF-32, depending on your platform's wchar_t size), + * or uses valid Unicode values. + * + * Note that while this function is intended to be used with UTF-16 (or + * UTF-32, depending on your platform's definition of wchar_t), it is + * comparing raw wchar_t values and not Unicode codepoints: `maxlen` specifies + * a wchar_t limit! If the limit lands in the middle of a multi-wchar UTF-16 + * sequence, it will only compare a portion of the final character. + * + * `maxlen` specifies a maximum number of wchar_t to compare; if the strings + * match to this number of wide chars (or both have matched to a + * null-terminator character before this count), they will be considered + * equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of wchar_t to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcsncmp(const wchar_t *str1, const wchar_t *str2, size_t maxlen); + +/** + * Compare two null-terminated wide strings, case-insensitively. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Depending on your platform, "wchar_t" might be 2 bytes, and expected to be + * UTF-16 encoded (like Windows), or 4 bytes in UTF-32 format. Since this + * handles Unicode, it expects the string to be well-formed and not a + * null-terminated string of arbitrary bytes. Characters that are not valid + * UTF-16 (or UTF-32) are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcscasecmp(const wchar_t *str1, const wchar_t *str2); + +/** + * Compare two wide strings, case-insensitively, up to a number of wchar_t. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Depending on your platform, "wchar_t" might be 2 bytes, and expected to be + * UTF-16 encoded (like Windows), or 4 bytes in UTF-32 format. Since this + * handles Unicode, it expects the string to be well-formed and not a + * null-terminated string of arbitrary bytes. Characters that are not valid + * UTF-16 (or UTF-32) are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * Note that while this function might deal with variable-sized characters, + * `maxlen` specifies a _wchar_ limit! If the limit lands in the middle of a + * multi-byte UTF-16 sequence, it may convert a portion of the final character + * to one or more Unicode character U+FFFD (REPLACEMENT CHARACTER) so as not + * to overflow a buffer. + * + * `maxlen` specifies a maximum number of wchar_t values to compare; if the + * strings match to this number of wchar_t (or both have matched to a + * null-terminator character before this number of bytes), they will be + * considered equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of wchar_t values to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcsncasecmp(const wchar_t *str1, const wchar_t *str2, size_t maxlen); + +/** + * Parse a `long` from a wide string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside a `long`, the result is clamped to + * the minimum and maximum representable `long` values. + * + * \param str The null-terminated wide string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid wide character + * (i.e. the next character after the parsed number) will be + * written to this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strtol + */ +extern SDL_DECLSPEC long SDLCALL SDL_wcstol(const wchar_t *str, wchar_t **endp, int base); + +/** + * This works exactly like strlen() but doesn't require access to a C runtime. + * + * Counts the bytes in `str`, excluding the null terminator. + * + * If you need the length of a UTF-8 string, consider using SDL_utf8strlen(). + * + * \param str The null-terminated string to read. Must not be NULL. + * \returns the length (in bytes, excluding the null terminator) of `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strnlen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strlen(const char *str); + +/** + * This works exactly like strnlen() but doesn't require access to a C + * runtime. + * + * Counts up to a maximum of `maxlen` bytes in `str`, excluding the null + * terminator. + * + * If you need the length of a UTF-8 string, consider using SDL_utf8strnlen(). + * + * \param str The null-terminated string to read. Must not be NULL. + * \param maxlen The maximum amount of bytes to count. + * \returns the length (in bytes, excluding the null terminator) of `src` but + * never more than `maxlen`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strnlen(const char *str, size_t maxlen); + +/** + * Copy a string. + * + * This function copies up to `maxlen` - 1 characters from `src` to `dst`, + * then appends a null terminator. + * + * If `maxlen` is 0, no characters are copied and no null terminator is + * written. + * + * If you want to copy an UTF-8 string but need to ensure that multi-byte + * sequences are not truncated, consider using SDL_utf8strlcpy(). + * + * \param dst The destination buffer. Must not be NULL, and must not overlap + * with `src`. + * \param src The null-terminated string to copy. Must not be NULL, and must + * not overlap with `dst`. + * \param maxlen The length (in characters) of the destination buffer. + * \returns the length (in characters, excluding the null terminator) of + * `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlcat + * \sa SDL_utf8strlcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strlcpy(SDL_OUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen); + +/** + * Copy an UTF-8 string. + * + * This function copies up to `dst_bytes` - 1 bytes from `src` to `dst` while + * also ensuring that the string written to `dst` does not end in a truncated + * multi-byte sequence. Finally, it appends a null terminator. + * + * `src` and `dst` must not overlap. + * + * Note that unlike SDL_strlcpy(), this function returns the number of bytes + * written, not the length of `src`. + * + * \param dst The destination buffer. Must not be NULL, and must not overlap + * with `src`. + * \param src The null-terminated UTF-8 string to copy. Must not be NULL, and + * must not overlap with `dst`. + * \param dst_bytes The length (in bytes) of the destination buffer. Must not + * be 0. + * \returns the number of bytes written, excluding the null terminator. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_utf8strlcpy(SDL_OUT_Z_CAP(dst_bytes) char *dst, const char *src, size_t dst_bytes); + +/** + * Concatenate strings. + * + * This function appends up to `maxlen` - SDL_strlen(dst) - 1 characters from + * `src` to the end of the string in `dst`, then appends a null terminator. + * + * `src` and `dst` must not overlap. + * + * If `maxlen` - SDL_strlen(dst) - 1 is less than or equal to 0, then `dst` is + * unmodified. + * + * \param dst The destination buffer already containing the first + * null-terminated string. Must not be NULL and must not overlap + * with `src`. + * \param src The second null-terminated string. Must not be NULL, and must + * not overlap with `dst`. + * \param maxlen The length (in characters) of the destination buffer. + * \returns the length (in characters, excluding the null terminator) of the + * string in `dst` plus the length of `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strlcat(SDL_INOUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen); + +/** + * Allocate a copy of a string. + * + * This allocates enough space for a null-terminated copy of `str`, using + * SDL_malloc, and then makes a copy of the string into this space. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param str the string to copy. + * \returns a pointer to the newly-allocated string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_MALLOC char * SDLCALL SDL_strdup(const char *str); + +/** + * Allocate a copy of a string, up to n characters. + * + * This allocates enough space for a null-terminated copy of `str`, up to + * `maxlen` bytes, using SDL_malloc, and then makes a copy of the string into + * this space. + * + * If the string is longer than `maxlen` bytes, the returned string will be + * `maxlen` bytes long, plus a null-terminator character that isn't included + * in the count. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param str the string to copy. + * \param maxlen the maximum length of the copied string, not counting the + * null-terminator character. + * \returns a pointer to the newly-allocated string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_MALLOC char * SDLCALL SDL_strndup(const char *str, size_t maxlen); + +/** + * Reverse a string's contents. + * + * This reverses a null-terminated string in-place. Only the content of the + * string is reversed; the null-terminator character remains at the end of the + * reversed string. + * + * **WARNING**: This function reverses the _bytes_ of the string, not the + * codepoints. If `str` is a UTF-8 string with Unicode codepoints > 127, this + * will ruin the string data. You should only use this function on strings + * that are completely comprised of low ASCII characters. + * + * \param str the string to reverse. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strrev(char *str); + +/** + * Convert a string to uppercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'A' through 'Z' to uppercase. + * + * This function operates on a null-terminated string of bytes--even if it is + * malformed UTF-8!--and converts ASCII characters 'a' through 'z' to their + * uppercase equivalents in-place, returning the original `str` pointer. + * + * \param str the string to convert in-place. Can not be NULL. + * \returns the `str` pointer passed into this function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlwr + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strupr(char *str); + +/** + * Convert a string to lowercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'A' through 'Z' to lowercase. + * + * This function operates on a null-terminated string of bytes--even if it is + * malformed UTF-8!--and converts ASCII characters 'A' through 'Z' to their + * lowercase equivalents in-place, returning the original `str` pointer. + * + * \param str the string to convert in-place. Can not be NULL. + * \returns the `str` pointer passed into this function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strupr + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strlwr(char *str); + +/** + * Search a string for the first instance of a specific byte. + * + * The search ends once it finds the requested byte value, or a null + * terminator byte to end the string. + * + * Note that this looks for _bytes_, not _characters_, so you cannot match + * against a Unicode codepoint > 255, regardless of character encoding. + * + * \param str the string to search. Must not be NULL. + * \param c the byte value to search for. + * \returns a pointer to the first instance of `c` in the string, or NULL if + * not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strchr(const char *str, int c); + +/** + * Search a string for the last instance of a specific byte. + * + * The search must go until it finds a null terminator byte to end the string. + * + * Note that this looks for _bytes_, not _characters_, so you cannot match + * against a Unicode codepoint > 255, regardless of character encoding. + * + * \param str the string to search. Must not be NULL. + * \param c the byte value to search for. + * \returns a pointer to the last instance of `c` in the string, or NULL if + * not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strrchr(const char *str, int c); + +/** + * Search a string for the first instance of a specific substring. + * + * The search ends once it finds the requested substring, or a null terminator + * byte to end the string. + * + * Note that this looks for strings of _bytes_, not _characters_, so it's + * legal to search for malformed and incomplete UTF-8 sequences. + * + * \param haystack the string to search. Must not be NULL. + * \param needle the string to search for. Must not be NULL. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strstr(const char *haystack, const char *needle); + +/** + * Search a string, up to n bytes, for the first instance of a specific + * substring. + * + * The search ends once it finds the requested substring, or a null terminator + * byte to end the string, or `maxlen` bytes have been examined. It is + * possible to use this function on a string without a null terminator. + * + * Note that this looks for strings of _bytes_, not _characters_, so it's + * legal to search for malformed and incomplete UTF-8 sequences. + * + * \param haystack the string to search. Must not be NULL. + * \param needle the string to search for. Must not be NULL. + * \param maxlen the maximum number of bytes to search in `haystack`. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strnstr(const char *haystack, const char *needle, size_t maxlen); + +/** + * Search a UTF-8 string for the first instance of a specific substring, + * case-insensitively. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Since this handles Unicode, it expects the strings to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * \param haystack the string to search. Must not be NULL. + * \param needle the string to search for. Must not be NULL. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strcasestr(const char *haystack, const char *needle); + +/** + * This works exactly like strtok_r() but doesn't require access to a C + * runtime. + * + * Break a string up into a series of tokens. + * + * To start tokenizing a new string, `str` should be the non-NULL address of + * the string to start tokenizing. Future calls to get the next token from the + * same string should specify a NULL. + * + * Note that this function will overwrite pieces of `str` with null chars to + * split it into tokens. This function cannot be used with const/read-only + * strings! + * + * `saveptr` just needs to point to a `char *` that can be overwritten; SDL + * will use this to save tokenizing state between calls. It is initialized if + * `str` is non-NULL, and used to resume tokenizing when `str` is NULL. + * + * \param str the string to tokenize, or NULL to continue tokenizing. + * \param delim the delimiter string that separates tokens. + * \param saveptr pointer to a char *, used for ongoing state. + * \returns A pointer to the next token, or NULL if no tokens remain. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strtok_r(char *str, const char *delim, char **saveptr); + +/** + * Count the number of codepoints in a UTF-8 string. + * + * Counts the _codepoints_, not _bytes_, in `str`, excluding the null + * terminator. + * + * If you need to count the bytes in a string instead, consider using + * SDL_strlen(). + * + * Since this handles Unicode, it expects the strings to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), so a malformed or incomplete UTF-8 sequence might increase the + * count by several replacement characters. + * + * \param str The null-terminated UTF-8 string to read. Must not be NULL. + * \returns The length (in codepoints, excluding the null terminator) of + * `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_utf8strnlen + * \sa SDL_strlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_utf8strlen(const char *str); + +/** + * Count the number of codepoints in a UTF-8 string, up to n bytes. + * + * Counts the _codepoints_, not _bytes_, in `str`, excluding the null + * terminator. + * + * If you need to count the bytes in a string instead, consider using + * SDL_strnlen(). + * + * The counting stops at `bytes` bytes (not codepoints!). This seems + * counterintuitive, but makes it easy to express the total size of the + * string's buffer. + * + * Since this handles Unicode, it expects the strings to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), so a malformed or incomplete UTF-8 sequence might increase the + * count by several replacement characters. + * + * \param str The null-terminated UTF-8 string to read. Must not be NULL. + * \param bytes The maximum amount of bytes to count. + * \returns The length (in codepoints, excluding the null terminator) of `src` + * but never more than `maxlen`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_utf8strlen + * \sa SDL_strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_utf8strnlen(const char *str, size_t bytes); + +/** + * Convert an integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget possible negative + * signs, null terminator bytes, etc). + * + * \param value the integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_uitoa + * \sa SDL_ltoa + * \sa SDL_lltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_itoa(int value, char *str, int radix); + +/** + * Convert an unsigned integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget null terminator + * bytes, etc). + * + * \param value the unsigned integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_itoa + * \sa SDL_ultoa + * \sa SDL_ulltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_uitoa(unsigned int value, char *str, int radix); + +/** + * Convert a long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget possible negative + * signs, null terminator bytes, etc). + * + * \param value the long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ultoa + * \sa SDL_itoa + * \sa SDL_lltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_ltoa(long value, char *str, int radix); + +/** + * Convert an unsigned long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget null terminator + * bytes, etc). + * + * \param value the unsigned long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ltoa + * \sa SDL_uitoa + * \sa SDL_ulltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_ultoa(unsigned long value, char *str, int radix); + +#ifndef SDL_NOLONGLONG + +/** + * Convert a long long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget possible negative + * signs, null terminator bytes, etc). + * + * \param value the long long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ulltoa + * \sa SDL_itoa + * \sa SDL_ltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_lltoa(long long value, char *str, int radix); + +/** + * Convert an unsigned long long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget null terminator + * bytes, etc). + * + * \param value the unsigned long long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_lltoa + * \sa SDL_uitoa + * \sa SDL_ultoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_ulltoa(unsigned long long value, char *str, int radix); +#endif + +/** + * Parse an `int` from a string. + * + * The result of calling `SDL_atoi(str)` is equivalent to + * `(int)SDL_strtol(str, NULL, 10)`. + * + * \param str The null-terminated string to read. Must not be NULL. + * \returns the parsed `int`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoul + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_itoa + */ +extern SDL_DECLSPEC int SDLCALL SDL_atoi(const char *str); + +/** + * Parse a `double` from a string. + * + * The result of calling `SDL_atof(str)` is equivalent to `SDL_strtod(str, + * NULL)`. + * + * \param str The null-terminated string to read. Must not be NULL. + * \returns the parsed `double`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_strtol + * \sa SDL_strtoul + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + */ +extern SDL_DECLSPEC double SDLCALL SDL_atof(const char *str); + +/** + * Parse a `long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside a `long`, the result is clamped to + * the minimum and maximum representable `long` values. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtoul + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_ltoa + * \sa SDL_wcstol + */ +extern SDL_DECLSPEC long SDLCALL SDL_strtol(const char *str, char **endp, int base); + +/** + * Parse an `unsigned long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside an `unsigned long`, the result is + * clamped to the maximum representable `unsigned long` value. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `unsigned long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_ultoa + */ +extern SDL_DECLSPEC unsigned long SDLCALL SDL_strtoul(const char *str, char **endp, int base); + +#ifndef SDL_NOLONGLONG + +/** + * Parse a `long long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside a `long long`, the result is + * clamped to the minimum and maximum representable `long long` values. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `long long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoul + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_lltoa + */ +extern SDL_DECLSPEC long long SDLCALL SDL_strtoll(const char *str, char **endp, int base); + +/** + * Parse an `unsigned long long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside an `unsigned long long`, the + * result is clamped to the maximum representable `unsigned long long` value. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `unsigned long long`, or 0 if no number could be + * parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoll + * \sa SDL_strtoul + * \sa SDL_strtod + * \sa SDL_ulltoa + */ +extern SDL_DECLSPEC unsigned long long SDLCALL SDL_strtoull(const char *str, char **endp, int base); +#endif + +/** + * Parse a `double` from a string. + * + * This function makes fewer guarantees than the C runtime `strtod`: + * + * - Only decimal notation is guaranteed to be supported. The handling of + * scientific and hexadecimal notation is unspecified. + * - Whether or not INF and NAN can be parsed is unspecified. + * - The precision of the result is unspecified. + * + * \param str the null-terminated string to read. Must not be NULL. + * \param endp if not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \returns the parsed `double`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoll + * \sa SDL_strtoul + * \sa SDL_strtoull + */ +extern SDL_DECLSPEC double SDLCALL SDL_strtod(const char *str, char **endp); + +/** + * Compare two null-terminated UTF-8 strings. + * + * Due to the nature of UTF-8 encoding, this will work with Unicode strings, + * since effectively this function just compares bytes until it hits a + * null-terminating character. Also due to the nature of UTF-8, this can be + * used with SDL_qsort() to put strings in (roughly) alphabetical order. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2); + +/** + * Compare two UTF-8 strings up to a number of bytes. + * + * Due to the nature of UTF-8 encoding, this will work with Unicode strings, + * since effectively this function just compares bytes until it hits a + * null-terminating character. Also due to the nature of UTF-8, this can be + * used with SDL_qsort() to put strings in (roughly) alphabetical order. + * + * Note that while this function is intended to be used with UTF-8, it is + * doing a bytewise comparison, and `maxlen` specifies a _byte_ limit! If the + * limit lands in the middle of a multi-byte UTF-8 sequence, it will only + * compare a portion of the final character. + * + * `maxlen` specifies a maximum number of bytes to compare; if the strings + * match to this number of bytes (or both have matched to a null-terminator + * character before this number of bytes), they will be considered equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of _bytes_ to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen); + +/** + * Compare two null-terminated UTF-8 strings, case-insensitively. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Since this handles Unicode, it expects the string to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2); + + +/** + * Compare two UTF-8 strings, case-insensitively, up to a number of bytes. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Since this handles Unicode, it expects the string to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * Note that while this function is intended to be used with UTF-8, `maxlen` + * specifies a _byte_ limit! If the limit lands in the middle of a multi-byte + * UTF-8 sequence, it may convert a portion of the final character to one or + * more Unicode character U+FFFD (REPLACEMENT CHARACTER) so as not to overflow + * a buffer. + * + * `maxlen` specifies a maximum number of bytes to compare; if the strings + * match to this number of bytes (or both have matched to a null-terminator + * character before this number of bytes), they will be considered equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of bytes to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t maxlen); + +/** + * Searches a string for the first occurence of any character contained in a + * breakset, and returns a pointer from the string to that character. + * + * \param str The null-terminated string to be searched. Must not be NULL, and + * must not overlap with `breakset`. + * \param breakset A null-terminated string containing the list of characters + * to look for. Must not be NULL, and must not overlap with + * `str`. + * \returns A pointer to the location, in str, of the first occurence of a + * character present in the breakset, or NULL if none is found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strpbrk(const char *str, const char *breakset); + +/** + * The Unicode REPLACEMENT CHARACTER codepoint. + * + * SDL_StepUTF8() and SDL_StepBackUTF8() report this codepoint when they + * encounter a UTF-8 string with encoding errors. + * + * This tends to render as something like a question mark in most places. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_StepBackUTF8 + * \sa SDL_StepUTF8 + */ +#define SDL_INVALID_UNICODE_CODEPOINT 0xFFFD + +/** + * Decode a UTF-8 string, one Unicode codepoint at a time. + * + * This will return the first Unicode codepoint in the UTF-8 encoded string in + * `*pstr`, and then advance `*pstr` past any consumed bytes before returning. + * + * It will not access more than `*pslen` bytes from the string. `*pslen` will + * be adjusted, as well, subtracting the number of bytes consumed. + * + * `pslen` is allowed to be NULL, in which case the string _must_ be + * NULL-terminated, as the function will blindly read until it sees the NULL + * char. + * + * if `*pslen` is zero, it assumes the end of string is reached and returns a + * zero codepoint regardless of the contents of the string buffer. + * + * If the resulting codepoint is zero (a NULL terminator), or `*pslen` is + * zero, it will not advance `*pstr` or `*pslen` at all. + * + * Generally this function is called in a loop until it returns zero, + * adjusting its parameters each iteration. + * + * If an invalid UTF-8 sequence is encountered, this function returns + * SDL_INVALID_UNICODE_CODEPOINT and advances the string/length by one byte + * (which is to say, a multibyte sequence might produce several + * SDL_INVALID_UNICODE_CODEPOINT returns before it syncs to the next valid + * UTF-8 sequence). + * + * Several things can generate invalid UTF-8 sequences, including overlong + * encodings, the use of UTF-16 surrogate values, and truncated data. Please + * refer to + * [RFC3629](https://www.ietf.org/rfc/rfc3629.txt) + * for details. + * + * \param pstr a pointer to a UTF-8 string pointer to be read and adjusted. + * \param pslen a pointer to the number of bytes in the string, to be read and + * adjusted. NULL is allowed. + * \returns the first Unicode codepoint in the string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_StepUTF8(const char **pstr, size_t *pslen); + +/** + * Decode a UTF-8 string in reverse, one Unicode codepoint at a time. + * + * This will go to the start of the previous Unicode codepoint in the string, + * move `*pstr` to that location and return that codepoint. + * + * If `*pstr` is already at the start of the string), it will not advance + * `*pstr` at all. + * + * Generally this function is called in a loop until it returns zero, + * adjusting its parameter each iteration. + * + * If an invalid UTF-8 sequence is encountered, this function returns + * SDL_INVALID_UNICODE_CODEPOINT. + * + * Several things can generate invalid UTF-8 sequences, including overlong + * encodings, the use of UTF-16 surrogate values, and truncated data. Please + * refer to + * [RFC3629](https://www.ietf.org/rfc/rfc3629.txt) + * for details. + * + * \param start a pointer to the beginning of the UTF-8 string. + * \param pstr a pointer to a UTF-8 string pointer to be read and adjusted. + * \returns the previous Unicode codepoint in the string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_StepBackUTF8(const char *start, const char **pstr); + +/** + * Convert a single Unicode codepoint to UTF-8. + * + * The buffer pointed to by `dst` must be at least 4 bytes long, as this + * function may generate between 1 and 4 bytes of output. + * + * This function returns the first byte _after_ the newly-written UTF-8 + * sequence, which is useful for encoding multiple codepoints in a loop, or + * knowing where to write a NULL-terminator character to end the string (in + * either case, plan to have a buffer of _more_ than 4 bytes!). + * + * If `codepoint` is an invalid value (outside the Unicode range, or a UTF-16 + * surrogate value, etc), this will use U+FFFD (REPLACEMENT CHARACTER) for the + * codepoint instead, and not set an error. + * + * If `dst` is NULL, this returns NULL immediately without writing to the + * pointer and without setting an error. + * + * \param codepoint a Unicode codepoint to convert to UTF-8. + * \param dst the location to write the encoded UTF-8. Must point to at least + * 4 bytes! + * \returns the first byte past the newly-written UTF-8 sequence. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_UCS4ToUTF8(Uint32 codepoint, char *dst); + +/** + * This works exactly like sscanf() but doesn't require access to a C runtime. + * + * Scan a string, matching a format string, converting each '%' item and + * storing it to pointers provided through variable arguments. + * + * \param text the string to scan. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of pointers to values to be filled in with scanned items. + * \returns the number of items that matched the format string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_sscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, ...) SDL_SCANF_VARARG_FUNC(2); + +/** + * This works exactly like vsscanf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_sscanf(), except it takes a `va_list` instead + * of using `...` variable arguments. + * + * \param text the string to scan. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ap a `va_list` of pointers to values to be filled in with scanned + * items. + * \returns the number of items that matched the format string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vsscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, va_list ap) SDL_SCANF_VARARG_FUNCV(2); + +/** + * This works exactly like snprintf() but doesn't require access to a C + * runtime. + * + * Format a string of up to `maxlen`-1 bytes, converting each '%' item with + * values provided through variable arguments. + * + * While some C runtimes differ on how to deal with too-large strings, this + * function null-terminates the output, by treating the null-terminator as + * part of the `maxlen` count. Note that if `maxlen` is zero, however, no + * bytes will be written at all. + * + * This function returns the number of _bytes_ (not _characters_) that should + * be written, excluding the null-terminator character. If this returns a + * number >= `maxlen`, it means the output string was truncated. A negative + * return value means an error occurred. + * + * Referencing the output string's pointer with a format item is undefined + * behavior. + * + * \param text the buffer to write the string into. Must not be NULL. + * \param maxlen the maximum bytes to write, including the null-terminator. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of values to be used with the format string. + * \returns the number of bytes that should be written, not counting the + * null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_snprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(3); + +/** + * This works exactly like swprintf() but doesn't require access to a C + * runtime. + * + * Format a wide string of up to `maxlen`-1 wchar_t values, converting each + * '%' item with values provided through variable arguments. + * + * While some C runtimes differ on how to deal with too-large strings, this + * function null-terminates the output, by treating the null-terminator as + * part of the `maxlen` count. Note that if `maxlen` is zero, however, no wide + * characters will be written at all. + * + * This function returns the number of _wide characters_ (not _codepoints_) + * that should be written, excluding the null-terminator character. If this + * returns a number >= `maxlen`, it means the output string was truncated. A + * negative return value means an error occurred. + * + * Referencing the output string's pointer with a format item is undefined + * behavior. + * + * \param text the buffer to write the wide string into. Must not be NULL. + * \param maxlen the maximum wchar_t values to write, including the + * null-terminator. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of values to be used with the format string. + * \returns the number of wide characters that should be written, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_swprintf(SDL_OUT_Z_CAP(maxlen) wchar_t *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const wchar_t *fmt, ...) SDL_WPRINTF_VARARG_FUNC(3); + +/** + * This works exactly like vsnprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_snprintf(), except it takes a `va_list` + * instead of using `...` variable arguments. + * + * \param text the buffer to write the string into. Must not be NULL. + * \param maxlen the maximum bytes to write, including the null-terminator. + * \param fmt a printf-style format string. Must not be NULL. + * \param ap a `va_list` values to be used with the format string. + * \returns the number of bytes that should be written, not counting the + * null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vsnprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(3); + +/** + * This works exactly like vswprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_swprintf(), except it takes a `va_list` + * instead of using `...` variable arguments. + * + * \param text the buffer to write the string into. Must not be NULL. + * \param maxlen the maximum wide characters to write, including the + * null-terminator. + * \param fmt a printf-style format wide string. Must not be NULL. + * \param ap a `va_list` values to be used with the format string. + * \returns the number of wide characters that should be written, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vswprintf(SDL_OUT_Z_CAP(maxlen) wchar_t *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const wchar_t *fmt, va_list ap) SDL_WPRINTF_VARARG_FUNCV(3); + +/** + * This works exactly like asprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_snprintf(), except it allocates a buffer large + * enough to hold the output string on behalf of the caller. + * + * On success, this function returns the number of bytes (not characters) + * comprising the output string, not counting the null-terminator character, + * and sets `*strp` to the newly-allocated string. + * + * On error, this function returns a negative number, and the value of `*strp` + * is undefined. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param strp on output, is set to the new string. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of values to be used with the format string. + * \returns the number of bytes in the newly-allocated string, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_asprintf(char **strp, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * This works exactly like vasprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_asprintf(), except it takes a `va_list` + * instead of using `...` variable arguments. + * + * \param strp on output, is set to the new string. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ap a `va_list` values to be used with the format string. + * \returns the number of bytes in the newly-allocated string, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vasprintf(char **strp, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + +/** + * Seeds the pseudo-random number generator. + * + * Reusing the seed number will cause SDL_rand() to repeat the same stream of + * 'random' numbers. + * + * \param seed the value to use as a random number seed, or 0 to use + * SDL_GetPerformanceCounter(). + * + * \threadsafety This should be called on the same thread that calls + * SDL_rand() + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand + * \sa SDL_rand_bits + * \sa SDL_randf + */ +extern SDL_DECLSPEC void SDLCALL SDL_srand(Uint64 seed); + +/** + * Generate a pseudo-random number less than n for positive n + * + * The method used is faster and of better quality than `rand() % n`. Odds are + * roughly 99.9% even for n = 1 million. Evenness is better for smaller n, and + * much worse as n gets bigger. + * + * Example: to simulate a d6 use `SDL_rand(6) + 1` The +1 converts 0..5 to + * 1..6 + * + * If you want to generate a pseudo-random number in the full range of Sint32, + * you should use: (Sint32)SDL_rand_bits() + * + * If you want reproducible output, be sure to initialize with SDL_srand() + * first. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param n the number of possible outcomes. n must be positive. + * \returns a random value in the range of [0 .. n-1]. + * + * \threadsafety All calls should be made from a single thread + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_srand + * \sa SDL_randf + */ +extern SDL_DECLSPEC Sint32 SDLCALL SDL_rand(Sint32 n); + +/** + * Generate a uniform pseudo-random floating point number less than 1.0 + * + * If you want reproducible output, be sure to initialize with SDL_srand() + * first. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \returns a random value in the range of [0.0, 1.0). + * + * \threadsafety All calls should be made from a single thread + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_srand + * \sa SDL_rand + */ +extern SDL_DECLSPEC float SDLCALL SDL_randf(void); + +/** + * Generate 32 pseudo-random bits. + * + * You likely want to use SDL_rand() to get a psuedo-random number instead. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \returns a random value in the range of [0-SDL_MAX_UINT32]. + * + * \threadsafety All calls should be made from a single thread + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand + * \sa SDL_randf + * \sa SDL_srand + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_rand_bits(void); + +/** + * Generate a pseudo-random number less than n for positive n + * + * The method used is faster and of better quality than `rand() % n`. Odds are + * roughly 99.9% even for n = 1 million. Evenness is better for smaller n, and + * much worse as n gets bigger. + * + * Example: to simulate a d6 use `SDL_rand_r(state, 6) + 1` The +1 converts + * 0..5 to 1..6 + * + * If you want to generate a pseudo-random number in the full range of Sint32, + * you should use: (Sint32)SDL_rand_bits_r(state) + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param state a pointer to the current random number state, this may not be + * NULL. + * \param n the number of possible outcomes. n must be positive. + * \returns a random value in the range of [0 .. n-1]. + * + * \threadsafety This function is thread-safe, as long as the state pointer + * isn't shared between threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand + * \sa SDL_rand_bits_r + * \sa SDL_randf_r + */ +extern SDL_DECLSPEC Sint32 SDLCALL SDL_rand_r(Uint64 *state, Sint32 n); + +/** + * Generate a uniform pseudo-random floating point number less than 1.0 + * + * If you want reproducible output, be sure to initialize with SDL_srand() + * first. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param state a pointer to the current random number state, this may not be + * NULL. + * \returns a random value in the range of [0.0, 1.0). + * + * \threadsafety This function is thread-safe, as long as the state pointer + * isn't shared between threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand_bits_r + * \sa SDL_rand_r + * \sa SDL_randf + */ +extern SDL_DECLSPEC float SDLCALL SDL_randf_r(Uint64 *state); + +/** + * Generate 32 pseudo-random bits. + * + * You likely want to use SDL_rand_r() to get a psuedo-random number instead. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param state a pointer to the current random number state, this may not be + * NULL. + * \returns a random value in the range of [0-SDL_MAX_UINT32]. + * + * \threadsafety This function is thread-safe, as long as the state pointer + * isn't shared between threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand_r + * \sa SDL_randf_r + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_rand_bits_r(Uint64 *state); + +#ifndef SDL_PI_D + +/** + * The value of Pi, as a double-precision floating point literal. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PI_F + */ +#define SDL_PI_D 3.141592653589793238462643383279502884 /**< pi (double) */ +#endif + +#ifndef SDL_PI_F + +/** + * The value of Pi, as a single-precision floating point literal. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PI_D + */ +#define SDL_PI_F 3.141592653589793238462643383279502884F /**< pi (float) */ +#endif + +/** + * Compute the arc cosine of `x`. + * + * The definition of `y = acos(x)` is `x = cos(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `0 <= y <= Pi` + * + * This function operates on double-precision floating point values, use + * SDL_acosf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc cosine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_acosf + * \sa SDL_asin + * \sa SDL_cos + */ +extern SDL_DECLSPEC double SDLCALL SDL_acos(double x); + +/** + * Compute the arc cosine of `x`. + * + * The definition of `y = acos(x)` is `x = cos(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `0 <= y <= Pi` + * + * This function operates on single-precision floating point values, use + * SDL_acos for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc cosine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_acos + * \sa SDL_asinf + * \sa SDL_cosf + */ +extern SDL_DECLSPEC float SDLCALL SDL_acosf(float x); + +/** + * Compute the arc sine of `x`. + * + * The definition of `y = asin(x)` is `x = sin(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on double-precision floating point values, use + * SDL_asinf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc sine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_asinf + * \sa SDL_acos + * \sa SDL_sin + */ +extern SDL_DECLSPEC double SDLCALL SDL_asin(double x); + +/** + * Compute the arc sine of `x`. + * + * The definition of `y = asin(x)` is `x = sin(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on single-precision floating point values, use + * SDL_asin for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc sine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_asin + * \sa SDL_acosf + * \sa SDL_sinf + */ +extern SDL_DECLSPEC float SDLCALL SDL_asinf(float x); + +/** + * Compute the arc tangent of `x`. + * + * The definition of `y = atan(x)` is `x = tan(y)`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on double-precision floating point values, use + * SDL_atanf for single-precision floats. + * + * To calculate the arc tangent of y / x, use SDL_atan2. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc tangent of of `x` in radians, or 0 if `x = 0`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atanf + * \sa SDL_atan2 + * \sa SDL_tan + */ +extern SDL_DECLSPEC double SDLCALL SDL_atan(double x); + +/** + * Compute the arc tangent of `x`. + * + * The definition of `y = atan(x)` is `x = tan(y)`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on single-precision floating point values, use + * SDL_atan for dboule-precision floats. + * + * To calculate the arc tangent of y / x, use SDL_atan2f. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc tangent of of `x` in radians, or 0 if `x = 0`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atan + * \sa SDL_atan2f + * \sa SDL_tanf + */ +extern SDL_DECLSPEC float SDLCALL SDL_atanf(float x); + +/** + * Compute the arc tangent of `y / x`, using the signs of x and y to adjust + * the result's quadrant. + * + * The definition of `z = atan2(x, y)` is `y = x tan(z)`, where the quadrant + * of z is determined based on the signs of x and y. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-Pi <= y <= Pi` + * + * This function operates on double-precision floating point values, use + * SDL_atan2f for single-precision floats. + * + * To calculate the arc tangent of a single value, use SDL_atan. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param y floating point value of the numerator (y coordinate). + * \param x floating point value of the denominator (x coordinate). + * \returns arc tangent of of `y / x` in radians, or, if `x = 0`, either + * `-Pi/2`, `0`, or `Pi/2`, depending on the value of `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atan2f + * \sa SDL_atan + * \sa SDL_tan + */ +extern SDL_DECLSPEC double SDLCALL SDL_atan2(double y, double x); + +/** + * Compute the arc tangent of `y / x`, using the signs of x and y to adjust + * the result's quadrant. + * + * The definition of `z = atan2(x, y)` is `y = x tan(z)`, where the quadrant + * of z is determined based on the signs of x and y. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-Pi <= y <= Pi` + * + * This function operates on single-precision floating point values, use + * SDL_atan2 for double-precision floats. + * + * To calculate the arc tangent of a single value, use SDL_atanf. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param y floating point value of the numerator (y coordinate). + * \param x floating point value of the denominator (x coordinate). + * \returns arc tangent of of `y / x` in radians, or, if `x = 0`, either + * `-Pi/2`, `0`, or `Pi/2`, depending on the value of `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atan2 + * \sa SDL_atan + * \sa SDL_tan + */ +extern SDL_DECLSPEC float SDLCALL SDL_atan2f(float y, float x); + +/** + * Compute the ceiling of `x`. + * + * The ceiling of `x` is the smallest integer `y` such that `y > x`, i.e `x` + * rounded up to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_ceilf for single-precision floats. + * + * \param x floating point value. + * \returns the ceiling of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ceilf + * \sa SDL_floor + * \sa SDL_trunc + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_ceil(double x); + +/** + * Compute the ceiling of `x`. + * + * The ceiling of `x` is the smallest integer `y` such that `y > x`, i.e `x` + * rounded up to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_ceil for double-precision floats. + * + * \param x floating point value. + * \returns the ceiling of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ceil + * \sa SDL_floorf + * \sa SDL_truncf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_ceilf(float x); + +/** + * Copy the sign of one floating-point value to another. + * + * The definition of copysign is that ``copysign(x, y) = abs(x) * sign(y)``. + * + * Domain: `-INF <= x <= INF`, ``-INF <= y <= f`` + * + * Range: `-INF <= z <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_copysignf for single-precision floats. + * + * \param x floating point value to use as the magnitude. + * \param y floating point value to use as the sign. + * \returns the floating point value with the sign of y and the magnitude of + * x. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_copysignf + * \sa SDL_fabs + */ +extern SDL_DECLSPEC double SDLCALL SDL_copysign(double x, double y); + +/** + * Copy the sign of one floating-point value to another. + * + * The definition of copysign is that ``copysign(x, y) = abs(x) * sign(y)``. + * + * Domain: `-INF <= x <= INF`, ``-INF <= y <= f`` + * + * Range: `-INF <= z <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_copysign for double-precision floats. + * + * \param x floating point value to use as the magnitude. + * \param y floating point value to use as the sign. + * \returns the floating point value with the sign of y and the magnitude of + * x. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_copysign + * \sa SDL_fabsf + */ +extern SDL_DECLSPEC float SDLCALL SDL_copysignf(float x, float y); + +/** + * Compute the cosine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on double-precision floating point values, use + * SDL_cosf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns cosine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_cosf + * \sa SDL_acos + * \sa SDL_sin + */ +extern SDL_DECLSPEC double SDLCALL SDL_cos(double x); + +/** + * Compute the cosine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on single-precision floating point values, use + * SDL_cos for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns cosine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_cos + * \sa SDL_acosf + * \sa SDL_sinf + */ +extern SDL_DECLSPEC float SDLCALL SDL_cosf(float x); + +/** + * Compute the exponential of `x`. + * + * The definition of `y = exp(x)` is `y = e^x`, where `e` is the base of the + * natural logarithm. The inverse is the natural logarithm, SDL_log. + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * The output will overflow if `exp(x)` is too large to be represented. + * + * This function operates on double-precision floating point values, use + * SDL_expf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns value of `e^x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_expf + * \sa SDL_log + */ +extern SDL_DECLSPEC double SDLCALL SDL_exp(double x); + +/** + * Compute the exponential of `x`. + * + * The definition of `y = exp(x)` is `y = e^x`, where `e` is the base of the + * natural logarithm. The inverse is the natural logarithm, SDL_logf. + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * The output will overflow if `exp(x)` is too large to be represented. + * + * This function operates on single-precision floating point values, use + * SDL_exp for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns value of `e^x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_exp + * \sa SDL_logf + */ +extern SDL_DECLSPEC float SDLCALL SDL_expf(float x); + +/** + * Compute the absolute value of `x` + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_fabsf for single-precision floats. + * + * \param x floating point value to use as the magnitude. + * \returns the absolute value of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fabsf + */ +extern SDL_DECLSPEC double SDLCALL SDL_fabs(double x); + +/** + * Compute the absolute value of `x` + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_fabs for double-precision floats. + * + * \param x floating point value to use as the magnitude. + * \returns the absolute value of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fabs + */ +extern SDL_DECLSPEC float SDLCALL SDL_fabsf(float x); + +/** + * Compute the floor of `x`. + * + * The floor of `x` is the largest integer `y` such that `y > x`, i.e `x` + * rounded down to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_floorf for single-precision floats. + * + * \param x floating point value. + * \returns the floor of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_floorf + * \sa SDL_ceil + * \sa SDL_trunc + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_floor(double x); + +/** + * Compute the floor of `x`. + * + * The floor of `x` is the largest integer `y` such that `y > x`, i.e `x` + * rounded down to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_floor for double-precision floats. + * + * \param x floating point value. + * \returns the floor of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_floor + * \sa SDL_ceilf + * \sa SDL_truncf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_floorf(float x); + +/** + * Truncate `x` to an integer. + * + * Rounds `x` to the next closest integer to 0. This is equivalent to removing + * the fractional part of `x`, leaving only the integer part. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_truncf for single-precision floats. + * + * \param x floating point value. + * \returns `x` truncated to an integer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_truncf + * \sa SDL_fmod + * \sa SDL_ceil + * \sa SDL_floor + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_trunc(double x); + +/** + * Truncate `x` to an integer. + * + * Rounds `x` to the next closest integer to 0. This is equivalent to removing + * the fractional part of `x`, leaving only the integer part. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_trunc for double-precision floats. + * + * \param x floating point value. + * \returns `x` truncated to an integer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_trunc + * \sa SDL_fmodf + * \sa SDL_ceilf + * \sa SDL_floorf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_truncf(float x); + +/** + * Return the floating-point remainder of `x / y` + * + * Divides `x` by `y`, and returns the remainder. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF`, `y != 0` + * + * Range: `-y <= z <= y` + * + * This function operates on double-precision floating point values, use + * SDL_fmodf for single-precision floats. + * + * \param x the numerator. + * \param y the denominator. Must not be 0. + * \returns the remainder of `x / y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fmodf + * \sa SDL_modf + * \sa SDL_trunc + * \sa SDL_ceil + * \sa SDL_floor + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_fmod(double x, double y); + +/** + * Return the floating-point remainder of `x / y` + * + * Divides `x` by `y`, and returns the remainder. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF`, `y != 0` + * + * Range: `-y <= z <= y` + * + * This function operates on single-precision floating point values, use + * SDL_fmod for double-precision floats. + * + * \param x the numerator. + * \param y the denominator. Must not be 0. + * \returns the remainder of `x / y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fmod + * \sa SDL_truncf + * \sa SDL_modff + * \sa SDL_ceilf + * \sa SDL_floorf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_fmodf(float x, float y); + +/** + * Return whether the value is infinity. + * + * \param x double-precision floating point value. + * \returns non-zero if the value is infinity, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isinff + */ +extern SDL_DECLSPEC int SDLCALL SDL_isinf(double x); + +/** + * Return whether the value is infinity. + * + * \param x floating point value. + * \returns non-zero if the value is infinity, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isinf + */ +extern SDL_DECLSPEC int SDLCALL SDL_isinff(float x); + +/** + * Return whether the value is NaN. + * + * \param x double-precision floating point value. + * \returns non-zero if the value is NaN, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isnanf + */ +extern SDL_DECLSPEC int SDLCALL SDL_isnan(double x); + +/** + * Return whether the value is NaN. + * + * \param x floating point value. + * \returns non-zero if the value is NaN, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isnan + */ +extern SDL_DECLSPEC int SDLCALL SDL_isnanf(float x); + +/** + * Compute the natural logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on double-precision floating point values, use + * SDL_logf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the natural logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_logf + * \sa SDL_log10 + * \sa SDL_exp + */ +extern SDL_DECLSPEC double SDLCALL SDL_log(double x); + +/** + * Compute the natural logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on single-precision floating point values, use + * SDL_log for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the natural logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_log + * \sa SDL_expf + */ +extern SDL_DECLSPEC float SDLCALL SDL_logf(float x); + +/** + * Compute the base-10 logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on double-precision floating point values, use + * SDL_log10f for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_log10f + * \sa SDL_log + * \sa SDL_pow + */ +extern SDL_DECLSPEC double SDLCALL SDL_log10(double x); + +/** + * Compute the base-10 logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on single-precision floating point values, use + * SDL_log10 for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_log10 + * \sa SDL_logf + * \sa SDL_powf + */ +extern SDL_DECLSPEC float SDLCALL SDL_log10f(float x); + +/** + * Split `x` into integer and fractional parts + * + * This function operates on double-precision floating point values, use + * SDL_modff for single-precision floats. + * + * \param x floating point value. + * \param y output pointer to store the integer part of `x`. + * \returns the fractional part of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_modff + * \sa SDL_trunc + * \sa SDL_fmod + */ +extern SDL_DECLSPEC double SDLCALL SDL_modf(double x, double *y); + +/** + * Split `x` into integer and fractional parts + * + * This function operates on single-precision floating point values, use + * SDL_modf for double-precision floats. + * + * \param x floating point value. + * \param y output pointer to store the integer part of `x`. + * \returns the fractional part of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_modf + * \sa SDL_truncf + * \sa SDL_fmodf + */ +extern SDL_DECLSPEC float SDLCALL SDL_modff(float x, float *y); + +/** + * Raise `x` to the power `y` + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-INF <= z <= INF` + * + * If `y` is the base of the natural logarithm (e), consider using SDL_exp + * instead. + * + * This function operates on double-precision floating point values, use + * SDL_powf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x the base. + * \param y the exponent. + * \returns `x` raised to the power `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_powf + * \sa SDL_exp + * \sa SDL_log + */ +extern SDL_DECLSPEC double SDLCALL SDL_pow(double x, double y); + +/** + * Raise `x` to the power `y` + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-INF <= z <= INF` + * + * If `y` is the base of the natural logarithm (e), consider using SDL_exp + * instead. + * + * This function operates on single-precision floating point values, use + * SDL_pow for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x the base. + * \param y the exponent. + * \returns `x` raised to the power `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_pow + * \sa SDL_expf + * \sa SDL_logf + */ +extern SDL_DECLSPEC float SDLCALL SDL_powf(float x, float y); + +/** + * Round `x` to the nearest integer. + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_roundf for single-precision floats. To get the result as an integer + * type, use SDL_lround. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_roundf + * \sa SDL_lround + * \sa SDL_floor + * \sa SDL_ceil + * \sa SDL_trunc + */ +extern SDL_DECLSPEC double SDLCALL SDL_round(double x); + +/** + * Round `x` to the nearest integer. + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_round for double-precision floats. To get the result as an integer + * type, use SDL_lroundf. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_round + * \sa SDL_lroundf + * \sa SDL_floorf + * \sa SDL_ceilf + * \sa SDL_truncf + */ +extern SDL_DECLSPEC float SDLCALL SDL_roundf(float x); + +/** + * Round `x` to the nearest integer representable as a long + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `MIN_LONG <= y <= MAX_LONG` + * + * This function operates on double-precision floating point values, use + * SDL_lroundf for single-precision floats. To get the result as a + * floating-point type, use SDL_round. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_lroundf + * \sa SDL_round + * \sa SDL_floor + * \sa SDL_ceil + * \sa SDL_trunc + */ +extern SDL_DECLSPEC long SDLCALL SDL_lround(double x); + +/** + * Round `x` to the nearest integer representable as a long + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `MIN_LONG <= y <= MAX_LONG` + * + * This function operates on single-precision floating point values, use + * SDL_lround for double-precision floats. To get the result as a + * floating-point type, use SDL_roundf. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_lround + * \sa SDL_roundf + * \sa SDL_floorf + * \sa SDL_ceilf + * \sa SDL_truncf + */ +extern SDL_DECLSPEC long SDLCALL SDL_lroundf(float x); + +/** + * Scale `x` by an integer power of two. + * + * Multiplies `x` by the `n`th power of the floating point radix (always 2). + * + * Domain: `-INF <= x <= INF`, `n` integer + * + * Range: `-INF <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_scalbnf for single-precision floats. + * + * \param x floating point value to be scaled. + * \param n integer exponent. + * \returns `x * 2^n`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_scalbnf + * \sa SDL_pow + */ +extern SDL_DECLSPEC double SDLCALL SDL_scalbn(double x, int n); + +/** + * Scale `x` by an integer power of two. + * + * Multiplies `x` by the `n`th power of the floating point radix (always 2). + * + * Domain: `-INF <= x <= INF`, `n` integer + * + * Range: `-INF <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_scalbn for double-precision floats. + * + * \param x floating point value to be scaled. + * \param n integer exponent. + * \returns `x * 2^n`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_scalbn + * \sa SDL_powf + */ +extern SDL_DECLSPEC float SDLCALL SDL_scalbnf(float x, int n); + +/** + * Compute the sine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on double-precision floating point values, use + * SDL_sinf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns sine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sinf + * \sa SDL_asin + * \sa SDL_cos + */ +extern SDL_DECLSPEC double SDLCALL SDL_sin(double x); + +/** + * Compute the sine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on single-precision floating point values, use + * SDL_sin for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns sine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sin + * \sa SDL_asinf + * \sa SDL_cosf + */ +extern SDL_DECLSPEC float SDLCALL SDL_sinf(float x); + +/** + * Compute the square root of `x`. + * + * Domain: `0 <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_sqrtf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than or equal to 0. + * \returns square root of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sqrtf + */ +extern SDL_DECLSPEC double SDLCALL SDL_sqrt(double x); + +/** + * Compute the square root of `x`. + * + * Domain: `0 <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_sqrt for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than or equal to 0. + * \returns square root of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sqrt + */ +extern SDL_DECLSPEC float SDLCALL SDL_sqrtf(float x); + +/** + * Compute the tangent of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_tanf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns tangent of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_tanf + * \sa SDL_sin + * \sa SDL_cos + * \sa SDL_atan + * \sa SDL_atan2 + */ +extern SDL_DECLSPEC double SDLCALL SDL_tan(double x); + +/** + * Compute the tangent of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_tan for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns tangent of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_tan + * \sa SDL_sinf + * \sa SDL_cosf + * \sa SDL_atanf + * \sa SDL_atan2f + */ +extern SDL_DECLSPEC float SDLCALL SDL_tanf(float x); + +/** + * An opaque handle representing string encoding conversion state. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_iconv_open + */ +typedef struct SDL_iconv_data_t *SDL_iconv_t; + +/** + * This function allocates a context for the specified character set + * conversion. + * + * \param tocode The target character encoding, must not be NULL. + * \param fromcode The source character encoding, must not be NULL. + * \returns a handle that must be freed with SDL_iconv_close, or + * SDL_ICONV_ERROR on failure. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv + * \sa SDL_iconv_close + * \sa SDL_iconv_string + */ +extern SDL_DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode, + const char *fromcode); + +/** + * This function frees a context used for character set conversion. + * + * \param cd The character set conversion handle. + * \returns 0 on success, or -1 on failure. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv + * \sa SDL_iconv_open + * \sa SDL_iconv_string + */ +extern SDL_DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd); + +/** + * This function converts text between encodings, reading from and writing to + * a buffer. + * + * It returns the number of succesful conversions on success. On error, + * SDL_ICONV_E2BIG is returned when the output buffer is too small, or + * SDL_ICONV_EILSEQ is returned when an invalid input sequence is encountered, + * or SDL_ICONV_EINVAL is returned when an incomplete input sequence is + * encountered. + * + * On exit: + * + * - inbuf will point to the beginning of the next multibyte sequence. On + * error, this is the location of the problematic input sequence. On + * success, this is the end of the input sequence. + * - inbytesleft will be set to the number of bytes left to convert, which + * will be 0 on success. + * - outbuf will point to the location where to store the next output byte. + * - outbytesleft will be set to the number of bytes left in the output + * buffer. + * + * \param cd The character set conversion context, created in + * SDL_iconv_open(). + * \param inbuf Address of variable that points to the first character of the + * input sequence. + * \param inbytesleft The number of bytes in the input buffer. + * \param outbuf Address of variable that points to the output buffer. + * \param outbytesleft The number of bytes in the output buffer. + * \returns the number of conversions on success, or a negative error code. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv_open + * \sa SDL_iconv_close + * \sa SDL_iconv_string + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, const char **inbuf, + size_t *inbytesleft, char **outbuf, + size_t *outbytesleft); + +#define SDL_ICONV_ERROR (size_t)-1 /**< Generic error. Check SDL_GetError()? */ +#define SDL_ICONV_E2BIG (size_t)-2 /**< Output buffer was too small. */ +#define SDL_ICONV_EILSEQ (size_t)-3 /**< Invalid input sequence was encountered. */ +#define SDL_ICONV_EINVAL (size_t)-4 /**< Incomplete input sequence was encountered. */ + + +/** + * Helper function to convert a string's encoding in one call. + * + * This function converts a buffer or string between encodings in one pass. + * + * The string does not need to be NULL-terminated; this function operates on + * the number of bytes specified in `inbytesleft` whether there is a NULL + * character anywhere in the buffer. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param tocode the character encoding of the output string. Examples are + * "UTF-8", "UCS-4", etc. + * \param fromcode the character encoding of data in `inbuf`. + * \param inbuf the string to convert to a different encoding. + * \param inbytesleft the size of the input string _in bytes_. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv_open + * \sa SDL_iconv_close + * \sa SDL_iconv + */ +extern SDL_DECLSPEC char * SDLCALL SDL_iconv_string(const char *tocode, + const char *fromcode, + const char *inbuf, + size_t inbytesleft); + +/* Some helper macros for common SDL_iconv_string cases... */ + +/** + * Convert a UTF-8 string to the current locale's character encoding. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_utf8_locale(S) SDL_iconv_string("", "UTF-8", S, SDL_strlen(S)+1) + +/** + * Convert a UTF-8 string to UCS-2. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2", "UTF-8", S, SDL_strlen(S)+1) + +/** + * Convert a UTF-8 string to UCS-4. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_utf8_ucs4(S) (Uint32 *)SDL_iconv_string("UCS-4", "UTF-8", S, SDL_strlen(S)+1) + +/** + * Convert a wchar_t string to UTF-8. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_wchar_utf8(S) SDL_iconv_string("UTF-8", "WCHAR_T", (char *)S, (SDL_wcslen(S)+1)*sizeof(wchar_t)) + + +/* force builds using Clang's static analysis tools to use literal C runtime + here, since there are possibly tests that are ineffective otherwise. */ +#if defined(__clang_analyzer__) && !defined(SDL_DISABLE_ANALYZE_MACROS) + +/* The analyzer knows about strlcpy even when the system doesn't provide it */ +#if !defined(HAVE_STRLCPY) && !defined(strlcpy) +size_t strlcpy(char *dst, const char *src, size_t size); +#endif + +/* The analyzer knows about strlcat even when the system doesn't provide it */ +#if !defined(HAVE_STRLCAT) && !defined(strlcat) +size_t strlcat(char *dst, const char *src, size_t size); +#endif + +#if !defined(HAVE_WCSLCPY) && !defined(wcslcpy) +size_t wcslcpy(wchar_t *dst, const wchar_t *src, size_t size); +#endif + +#if !defined(HAVE_WCSLCAT) && !defined(wcslcat) +size_t wcslcat(wchar_t *dst, const wchar_t *src, size_t size); +#endif + +#ifndef _WIN32 +/* strdup is not ANSI but POSIX, and its prototype might be hidden... */ +/* not for windows: might conflict with string.h where strdup may have + * dllimport attribute: https://github.com/libsdl-org/SDL/issues/12948 */ +char *strdup(const char *str); +#endif + +/* Starting LLVM 16, the analyser errors out if these functions do not have + their prototype defined (clang-diagnostic-implicit-function-declaration) */ +#include +#include + +#define SDL_malloc malloc +#define SDL_calloc calloc +#define SDL_realloc realloc +#define SDL_free free +#ifndef SDL_memcpy +#define SDL_memcpy memcpy +#endif +#ifndef SDL_memmove +#define SDL_memmove memmove +#endif +#ifndef SDL_memset +#define SDL_memset memset +#endif +#define SDL_memcmp memcmp +#define SDL_strlcpy strlcpy +#define SDL_strlcat strlcat +#define SDL_strlen strlen +#define SDL_wcslen wcslen +#define SDL_wcslcpy wcslcpy +#define SDL_wcslcat wcslcat +#define SDL_strdup strdup +#define SDL_wcsdup wcsdup +#define SDL_strchr strchr +#define SDL_strrchr strrchr +#define SDL_strstr strstr +#define SDL_wcsstr wcsstr +#define SDL_strtok_r strtok_r +#define SDL_strcmp strcmp +#define SDL_wcscmp wcscmp +#define SDL_strncmp strncmp +#define SDL_wcsncmp wcsncmp +#define SDL_strcasecmp strcasecmp +#define SDL_strncasecmp strncasecmp +#define SDL_strpbrk strpbrk +#define SDL_sscanf sscanf +#define SDL_vsscanf vsscanf +#define SDL_snprintf snprintf +#define SDL_vsnprintf vsnprintf +#endif + +/** + * Multiply two integers, checking for overflow. + * + * If `a * b` would overflow, return false. + * + * Otherwise store `a * b` via ret and return true. + * + * \param a the multiplicand. + * \param b the multiplier. + * \param ret on non-overflow output, stores the multiplication result, may + * not be NULL. + * \returns false on overflow, true if result is multiplied without overflow. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_size_mul_check_overflow(size_t a, size_t b, size_t *ret) +{ + if (a != 0 && b > SDL_SIZE_MAX / a) { + return false; + } + *ret = a * b; + return true; +} + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if SDL_HAS_BUILTIN(__builtin_mul_overflow) +/* This needs to be wrapped in an inline rather than being a direct #define, + * because __builtin_mul_overflow() is type-generic, but we want to be + * consistent about interpreting a and b as size_t. */ +SDL_FORCE_INLINE bool SDL_size_mul_check_overflow_builtin(size_t a, size_t b, size_t *ret) +{ + return (__builtin_mul_overflow(a, b, ret) == 0); +} +#define SDL_size_mul_check_overflow(a, b, ret) SDL_size_mul_check_overflow_builtin(a, b, ret) +#endif +#endif + +/** + * Add two integers, checking for overflow. + * + * If `a + b` would overflow, return false. + * + * Otherwise store `a + b` via ret and return true. + * + * \param a the first addend. + * \param b the second addend. + * \param ret on non-overflow output, stores the addition result, may not be + * NULL. + * \returns false on overflow, true if result is added without overflow. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_size_add_check_overflow(size_t a, size_t b, size_t *ret) +{ + if (b > SDL_SIZE_MAX - a) { + return false; + } + *ret = a + b; + return true; +} + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if SDL_HAS_BUILTIN(__builtin_add_overflow) +/* This needs to be wrapped in an inline rather than being a direct #define, + * the same as the call to __builtin_mul_overflow() above. */ +SDL_FORCE_INLINE bool SDL_size_add_check_overflow_builtin(size_t a, size_t b, size_t *ret) +{ + return (__builtin_add_overflow(a, b, ret) == 0); +} +#define SDL_size_add_check_overflow(a, b, ret) SDL_size_add_check_overflow_builtin(a, b, ret) +#endif +#endif + +/* This is a generic function pointer which should be cast to the type you expect */ +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A generic function pointer. + * + * In theory, generic function pointers should use this, instead of `void *`, + * since some platforms could treat code addresses differently than data + * addresses. Although in current times no popular platforms make this + * distinction, it is more correct and portable to use the correct type for a + * generic pointer. + * + * If for some reason you need to force this typedef to be an actual `void *`, + * perhaps to work around a compiler or existing code, you can define + * `SDL_FUNCTION_POINTER_IS_VOID_POINTER` before including any SDL headers. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void (*SDL_FunctionPointer)(void); +#elif defined(SDL_FUNCTION_POINTER_IS_VOID_POINTER) +typedef void *SDL_FunctionPointer; +#else +typedef void (*SDL_FunctionPointer)(void); +#endif + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_stdinc_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_storage.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_storage.h new file mode 100644 index 0000000..6837eba --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_storage.h @@ -0,0 +1,682 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryStorage + * + * The storage API is a high-level API designed to abstract away the + * portability issues that come up when using something lower-level (in SDL's + * case, this sits on top of the [Filesystem](CategoryFilesystem) and + * [IOStream](CategoryIOStream) subsystems). It is significantly more + * restrictive than a typical filesystem API, for a number of reasons: + * + * 1. **What to Access:** A common pitfall with existing filesystem APIs is + * the assumption that all storage is monolithic. However, many other + * platforms (game consoles in particular) are more strict about what _type_ + * of filesystem is being accessed; for example, game content and user data + * are usually two separate storage devices with entirely different + * characteristics (and possibly different low-level APIs altogether!). + * + * 2. **How to Access:** Another common mistake is applications assuming that + * all storage is universally writeable - again, many platforms treat game + * content and user data as two separate storage devices, and only user data + * is writeable while game content is read-only. + * + * 3. **When to Access:** The most common portability issue with filesystem + * access is _timing_ - you cannot always assume that the storage device is + * always accessible all of the time, nor can you assume that there are no + * limits to how long you have access to a particular device. + * + * Consider the following example: + * + * ```c + * void ReadGameData(void) + * { + * extern char** fileNames; + * extern size_t numFiles; + * for (size_t i = 0; i < numFiles; i += 1) { + * FILE *data = fopen(fileNames[i], "rwb"); + * if (data == NULL) { + * // Something bad happened! + * } else { + * // A bunch of stuff happens here + * fclose(data); + * } + * } + * } + * + * void ReadSave(void) + * { + * FILE *save = fopen("saves/save0.sav", "rb"); + * if (save == NULL) { + * // Something bad happened! + * } else { + * // A bunch of stuff happens here + * fclose(save); + * } + * } + * + * void WriteSave(void) + * { + * FILE *save = fopen("saves/save0.sav", "wb"); + * if (save == NULL) { + * // Something bad happened! + * } else { + * // A bunch of stuff happens here + * fclose(save); + * } + * } + * ``` + * + * Going over the bullet points again: + * + * 1. **What to Access:** This code accesses a global filesystem; game data + * and saves are all presumed to be in the current working directory (which + * may or may not be the game's installation folder!). + * + * 2. **How to Access:** This code assumes that content paths are writeable, + * and that save data is also writeable despite being in the same location as + * the game data. + * + * 3. **When to Access:** This code assumes that they can be called at any + * time, since the filesystem is always accessible and has no limits on how + * long the filesystem is being accessed. + * + * Due to these assumptions, the filesystem code is not portable and will fail + * under these common scenarios: + * + * - The game is installed on a device that is read-only, both content loading + * and game saves will fail or crash outright + * - Game/User storage is not implicitly mounted, so no files will be found + * for either scenario when a platform requires explicitly mounting + * filesystems + * - Save data may not be safe since the I/O is not being flushed or + * validated, so an error occurring elsewhere in the program may result in + * missing/corrupted save data + * + * When using SDL_Storage, these types of problems are virtually impossible to + * trip over: + * + * ```c + * void ReadGameData(void) + * { + * extern char** fileNames; + * extern size_t numFiles; + * + * SDL_Storage *title = SDL_OpenTitleStorage(NULL, 0); + * if (title == NULL) { + * // Something bad happened! + * } + * while (!SDL_StorageReady(title)) { + * SDL_Delay(1); + * } + * + * for (size_t i = 0; i < numFiles; i += 1) { + * void* dst; + * Uint64 dstLen = 0; + * + * if (SDL_GetStorageFileSize(title, fileNames[i], &dstLen) && dstLen > 0) { + * dst = SDL_malloc(dstLen); + * if (SDL_ReadStorageFile(title, fileNames[i], dst, dstLen)) { + * // A bunch of stuff happens here + * } else { + * // Something bad happened! + * } + * SDL_free(dst); + * } else { + * // Something bad happened! + * } + * } + * + * SDL_CloseStorage(title); + * } + * + * void ReadSave(void) + * { + * SDL_Storage *user = SDL_OpenUserStorage("libsdl", "Storage Example", 0); + * if (user == NULL) { + * // Something bad happened! + * } + * while (!SDL_StorageReady(user)) { + * SDL_Delay(1); + * } + * + * Uint64 saveLen = 0; + * if (SDL_GetStorageFileSize(user, "save0.sav", &saveLen) && saveLen > 0) { + * void* dst = SDL_malloc(saveLen); + * if (SDL_ReadStorageFile(user, "save0.sav", dst, saveLen)) { + * // A bunch of stuff happens here + * } else { + * // Something bad happened! + * } + * SDL_free(dst); + * } else { + * // Something bad happened! + * } + * + * SDL_CloseStorage(user); + * } + * + * void WriteSave(void) + * { + * SDL_Storage *user = SDL_OpenUserStorage("libsdl", "Storage Example", 0); + * if (user == NULL) { + * // Something bad happened! + * } + * while (!SDL_StorageReady(user)) { + * SDL_Delay(1); + * } + * + * extern void *saveData; // A bunch of stuff happened here... + * extern Uint64 saveLen; + * if (!SDL_WriteStorageFile(user, "save0.sav", saveData, saveLen)) { + * // Something bad happened! + * } + * + * SDL_CloseStorage(user); + * } + * ``` + * + * Note the improvements that SDL_Storage makes: + * + * 1. **What to Access:** This code explicitly reads from a title or user + * storage device based on the context of the function. + * + * 2. **How to Access:** This code explicitly uses either a read or write + * function based on the context of the function. + * + * 3. **When to Access:** This code explicitly opens the device when it needs + * to, and closes it when it is finished working with the filesystem. + * + * The result is an application that is significantly more robust against the + * increasing demands of platforms and their filesystems! + * + * A publicly available example of an SDL_Storage backend is the + * [Steam Cloud](https://partner.steamgames.com/doc/features/cloud) + * backend - you can initialize Steamworks when starting the program, and then + * SDL will recognize that Steamworks is initialized and automatically use + * ISteamRemoteStorage when the application opens user storage. More + * importantly, when you _open_ storage it knows to begin a "batch" of + * filesystem operations, and when you _close_ storage it knows to end and + * flush the batch. This is used by Steam to support + * [Dynamic Cloud Sync](https://steamcommunity.com/groups/steamworks/announcements/detail/3142949576401813670) + * ; users can save data on one PC, put the device to sleep, and then continue + * playing on another PC (and vice versa) with the save data fully + * synchronized across all devices, allowing for a seamless experience without + * having to do full restarts of the program. + * + * ## Notes on valid paths + * + * All paths in the Storage API use Unix-style path separators ('/'). Using a + * different path separator will not work, even if the underlying platform + * would otherwise accept it. This is to keep code using the Storage API + * portable between platforms and Storage implementations and simplify app + * code. + * + * Paths with relative directories ("." and "..") are forbidden by the Storage + * API. + * + * All valid UTF-8 strings (discounting the NULL terminator character and the + * '/' path separator) are usable for filenames, however, an underlying + * Storage implementation may not support particularly strange sequences and + * refuse to create files with those names, etc. + */ + +#ifndef SDL_storage_h_ +#define SDL_storage_h_ + +#include +#include +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Function interface for SDL_Storage. + * + * Apps that want to supply a custom implementation of SDL_Storage will fill + * in all the functions in this struct, and then pass it to SDL_OpenStorage to + * create a custom SDL_Storage object. + * + * It is not usually necessary to do this; SDL provides standard + * implementations for many things you might expect to do with an SDL_Storage. + * + * This structure should be initialized using SDL_INIT_INTERFACE() + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_INIT_INTERFACE + */ +typedef struct SDL_StorageInterface +{ + /* The version of this interface */ + Uint32 version; + + /* Called when the storage is closed */ + bool (SDLCALL *close)(void *userdata); + + /* Optional, returns whether the storage is currently ready for access */ + bool (SDLCALL *ready)(void *userdata); + + /* Enumerate a directory, optional for write-only storage */ + bool (SDLCALL *enumerate)(void *userdata, const char *path, SDL_EnumerateDirectoryCallback callback, void *callback_userdata); + + /* Get path information, optional for write-only storage */ + bool (SDLCALL *info)(void *userdata, const char *path, SDL_PathInfo *info); + + /* Read a file from storage, optional for write-only storage */ + bool (SDLCALL *read_file)(void *userdata, const char *path, void *destination, Uint64 length); + + /* Write a file to storage, optional for read-only storage */ + bool (SDLCALL *write_file)(void *userdata, const char *path, const void *source, Uint64 length); + + /* Create a directory, optional for read-only storage */ + bool (SDLCALL *mkdir)(void *userdata, const char *path); + + /* Remove a file or empty directory, optional for read-only storage */ + bool (SDLCALL *remove)(void *userdata, const char *path); + + /* Rename a path, optional for read-only storage */ + bool (SDLCALL *rename)(void *userdata, const char *oldpath, const char *newpath); + + /* Copy a file, optional for read-only storage */ + bool (SDLCALL *copy)(void *userdata, const char *oldpath, const char *newpath); + + /* Get the space remaining, optional for read-only storage */ + Uint64 (SDLCALL *space_remaining)(void *userdata); +} SDL_StorageInterface; + +/* Check the size of SDL_StorageInterface + * + * If this assert fails, either the compiler is padding to an unexpected size, + * or the interface has been updated and this should be updated to match and + * the code using this interface should be updated to handle the old version. + */ +SDL_COMPILE_TIME_ASSERT(SDL_StorageInterface_SIZE, + (sizeof(void *) == 4 && sizeof(SDL_StorageInterface) == 48) || + (sizeof(void *) == 8 && sizeof(SDL_StorageInterface) == 96)); + +/** + * An abstract interface for filesystem access. + * + * This is an opaque datatype. One can create this object using standard SDL + * functions like SDL_OpenTitleStorage or SDL_OpenUserStorage, etc, or create + * an object with a custom implementation using SDL_OpenStorage. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Storage SDL_Storage; + +/** + * Opens up a read-only container for the application's filesystem. + * + * \param override a path to override the backend's default title root. + * \param props a property list that may contain backend-specific information. + * \returns a title storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_OpenUserStorage + * \sa SDL_ReadStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenTitleStorage(const char *override, SDL_PropertiesID props); + +/** + * Opens up a container for a user's unique read/write filesystem. + * + * While title storage can generally be kept open throughout runtime, user + * storage should only be opened when the client is ready to read/write files. + * This allows the backend to properly batch file operations and flush them + * when the container has been closed; ensuring safe and optimal save I/O. + * + * \param org the name of your organization. + * \param app the name of your application. + * \param props a property list that may contain backend-specific information. + * \returns a user storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_OpenTitleStorage + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenUserStorage(const char *org, const char *app, SDL_PropertiesID props); + +/** + * Opens up a container for local filesystem storage. + * + * This is provided for development and tools. Portable applications should + * use SDL_OpenTitleStorage() for access to game data and + * SDL_OpenUserStorage() for access to user data. + * + * \param path the base path prepended to all storage paths, or NULL for no + * base path. + * \returns a filesystem storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_OpenTitleStorage + * \sa SDL_OpenUserStorage + * \sa SDL_ReadStorageFile + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenFileStorage(const char *path); + +/** + * Opens up a container using a client-provided storage interface. + * + * Applications do not need to use this function unless they are providing + * their own SDL_Storage implementation. If you just need an SDL_Storage, you + * should use the built-in implementations in SDL, like SDL_OpenTitleStorage() + * or SDL_OpenUserStorage(). + * + * This function makes a copy of `iface` and the caller does not need to keep + * it around after this call. + * + * \param iface the interface that implements this storage, initialized using + * SDL_INIT_INTERFACE(). + * \param userdata the pointer that will be passed to the interface functions. + * \returns a storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_INIT_INTERFACE + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenStorage(const SDL_StorageInterface *iface, void *userdata); + +/** + * Closes and frees a storage container. + * + * \param storage a storage container to close. + * \returns true if the container was freed with no errors, false otherwise; + * call SDL_GetError() for more information. Even if the function + * returns an error, the container data will be freed; the error is + * only for informational purposes. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenFileStorage + * \sa SDL_OpenStorage + * \sa SDL_OpenTitleStorage + * \sa SDL_OpenUserStorage + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CloseStorage(SDL_Storage *storage); + +/** + * Checks if the storage container is ready to use. + * + * This function should be called in regular intervals until it returns true - + * however, it is not recommended to spinwait on this call, as the backend may + * depend on a synchronous message loop. You might instead poll this in your + * game's main loop while processing events and drawing a loading screen. + * + * \param storage a storage container to query. + * \returns true if the container is ready, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StorageReady(SDL_Storage *storage); + +/** + * Query the size of a file within a storage container. + * + * \param storage a storage container to query. + * \param path the relative path of the file to query. + * \param length a pointer to be filled with the file's length. + * \returns true if the file could be queried or false on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetStorageFileSize(SDL_Storage *storage, const char *path, Uint64 *length); + +/** + * Synchronously read a file from a storage container into a client-provided + * buffer. + * + * The value of `length` must match the length of the file exactly; call + * SDL_GetStorageFileSize() to get this value. This behavior may be relaxed in + * a future release. + * + * \param storage a storage container to read from. + * \param path the relative path of the file to read. + * \param destination a client-provided buffer to read the file into. + * \param length the length of the destination buffer. + * \returns true if the file was read or false on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetStorageFileSize + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadStorageFile(SDL_Storage *storage, const char *path, void *destination, Uint64 length); + +/** + * Synchronously write a file from client memory into a storage container. + * + * \param storage a storage container to write to. + * \param path the relative path of the file to write. + * \param source a client-provided buffer to write from. + * \param length the length of the source buffer. + * \returns true if the file was written or false on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteStorageFile(SDL_Storage *storage, const char *path, const void *source, Uint64 length); + +/** + * Create a directory in a writable storage container. + * + * \param storage a storage container. + * \param path the path of the directory to create. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CreateStorageDirectory(SDL_Storage *storage, const char *path); + +/** + * Enumerate a directory in a storage container through a callback function. + * + * This function provides every directory entry through an app-provided + * callback, called once for each directory entry, until all results have been + * provided or the callback returns either SDL_ENUM_SUCCESS or + * SDL_ENUM_FAILURE. + * + * This will return false if there was a system problem in general, or if a + * callback returns SDL_ENUM_FAILURE. A successful return means a callback + * returned SDL_ENUM_SUCCESS to halt enumeration, or all directory entries + * were enumerated. + * + * If `path` is NULL, this is treated as a request to enumerate the root of + * the storage container's tree. An empty string also works for this. + * + * \param storage a storage container. + * \param path the path of the directory to enumerate, or NULL for the root. + * \param callback a function that is called for each entry in the directory. + * \param userdata a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnumerateStorageDirectory(SDL_Storage *storage, const char *path, SDL_EnumerateDirectoryCallback callback, void *userdata); + +/** + * Remove a file or an empty directory in a writable storage container. + * + * \param storage a storage container. + * \param path the path of the directory to enumerate. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RemoveStoragePath(SDL_Storage *storage, const char *path); + +/** + * Rename a file or directory in a writable storage container. + * + * \param storage a storage container. + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenameStoragePath(SDL_Storage *storage, const char *oldpath, const char *newpath); + +/** + * Copy a file in a writable storage container. + * + * \param storage a storage container. + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CopyStorageFile(SDL_Storage *storage, const char *oldpath, const char *newpath); + +/** + * Get information about a filesystem path in a storage container. + * + * \param storage a storage container. + * \param path the path to query. + * \param info a pointer filled in with information about the path, or NULL to + * check for the existence of a file. + * \returns true on success or false if the file doesn't exist, or another + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetStoragePathInfo(SDL_Storage *storage, const char *path, SDL_PathInfo *info); + +/** + * Queries the remaining space in a storage container. + * + * \param storage a storage container to query. + * \returns the amount of remaining space, in bytes. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetStorageSpaceRemaining(SDL_Storage *storage); + +/** + * Enumerate a directory tree, filtered by pattern, and return a list. + * + * Files are filtered out if they don't match the string in `pattern`, which + * may contain wildcard characters `*` (match everything) and `?` (match one + * character). If pattern is NULL, no filtering is done and all results are + * returned. Subdirectories are permitted, and are specified with a path + * separator of '/'. Wildcard characters `*` and `?` never match a path + * separator. + * + * `flags` may be set to SDL_GLOB_CASEINSENSITIVE to make the pattern matching + * case-insensitive. + * + * The returned array is always NULL-terminated, for your iterating + * convenience, but if `count` is non-NULL, on return it will contain the + * number of items in the array, not counting the NULL terminator. + * + * If `path` is NULL, this is treated as a request to enumerate the root of + * the storage container's tree. An empty string also works for this. + * + * \param storage a storage container. + * \param path the path of the directory to enumerate, or NULL for the root. + * \param pattern the pattern that files in the directory must match. Can be + * NULL. + * \param flags `SDL_GLOB_*` bitflags that affect this search. + * \param count on return, will be set to the number of items in the returned + * array. Can be NULL. + * \returns an array of strings on success or NULL on failure; call + * SDL_GetError() for more information. The caller should pass the + * returned pointer to SDL_free when done with it. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \threadsafety It is safe to call this function from any thread, assuming + * the `storage` object is thread-safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GlobStorageDirectory(SDL_Storage *storage, const char *path, const char *pattern, SDL_GlobFlags flags, int *count); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_storage_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_surface.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_surface.h new file mode 100644 index 0000000..15fce04 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_surface.h @@ -0,0 +1,1563 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategorySurface + * + * SDL surfaces are buffers of pixels in system RAM. These are useful for + * passing around and manipulating images that are not stored in GPU memory. + * + * SDL_Surface makes serious efforts to manage images in various formats, and + * provides a reasonable toolbox for transforming the data, including copying + * between surfaces, filling rectangles in the image data, etc. + * + * There is also a simple .bmp loader, SDL_LoadBMP(). SDL itself does not + * provide loaders for various other file formats, but there are several + * excellent external libraries that do, including its own satellite library, + * SDL_image: + * + * https://github.com/libsdl-org/SDL_image + */ + +#ifndef SDL_surface_h_ +#define SDL_surface_h_ + +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The flags on an SDL_Surface. + * + * These are generally considered read-only. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_SurfaceFlags; + +#define SDL_SURFACE_PREALLOCATED 0x00000001u /**< Surface uses preallocated pixel memory */ +#define SDL_SURFACE_LOCK_NEEDED 0x00000002u /**< Surface needs to be locked to access pixels */ +#define SDL_SURFACE_LOCKED 0x00000004u /**< Surface is currently locked */ +#define SDL_SURFACE_SIMD_ALIGNED 0x00000008u /**< Surface uses pixel memory allocated with SDL_aligned_alloc() */ + +/** + * Evaluates to true if the surface needs to be locked before access. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MUSTLOCK(S) (((S)->flags & SDL_SURFACE_LOCK_NEEDED) == SDL_SURFACE_LOCK_NEEDED) + +/** + * The scaling mode. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ScaleMode +{ + SDL_SCALEMODE_INVALID = -1, + SDL_SCALEMODE_NEAREST, /**< nearest pixel sampling */ + SDL_SCALEMODE_LINEAR /**< linear filtering */ +} SDL_ScaleMode; + +/** + * The flip mode. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_FlipMode +{ + SDL_FLIP_NONE, /**< Do not flip */ + SDL_FLIP_HORIZONTAL, /**< flip horizontally */ + SDL_FLIP_VERTICAL /**< flip vertically */ +} SDL_FlipMode; + +#ifndef SDL_INTERNAL + +/** + * A collection of pixels used in software blitting. + * + * Pixels are arranged in memory in rows, with the top row first. Each row + * occupies an amount of memory given by the pitch (sometimes known as the row + * stride in non-SDL APIs). + * + * Within each row, pixels are arranged from left to right until the width is + * reached. Each pixel occupies a number of bits appropriate for its format, + * with most formats representing each pixel as one or more whole bytes (in + * some indexed formats, instead multiple pixels are packed into each byte), + * and a byte order given by the format. After encoding all pixels, any + * remaining bytes to reach the pitch are used as padding to reach a desired + * alignment, and have undefined contents. + * + * When a surface holds YUV format data, the planes are assumed to be + * contiguous without padding between them, e.g. a 32x32 surface in NV12 + * format with a pitch of 32 would consist of 32x32 bytes of Y plane followed + * by 32x16 bytes of UV plane. + * + * When a surface holds MJPG format data, pixels points at the compressed JPEG + * image and pitch is the length of that data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateSurface + * \sa SDL_DestroySurface + */ +struct SDL_Surface +{ + SDL_SurfaceFlags flags; /**< The flags of the surface, read-only */ + SDL_PixelFormat format; /**< The format of the surface, read-only */ + int w; /**< The width of the surface, read-only. */ + int h; /**< The height of the surface, read-only. */ + int pitch; /**< The distance in bytes between rows of pixels, read-only */ + void *pixels; /**< A pointer to the pixels of the surface, the pixels are writeable if non-NULL */ + + int refcount; /**< Application reference count, used when freeing surface */ + + void *reserved; /**< Reserved for internal use */ +}; +#endif /* !SDL_INTERNAL */ + +typedef struct SDL_Surface SDL_Surface; + +/** + * Allocate a new surface with a specific pixel format. + * + * The pixels of the new surface are initialized to zero. + * + * \param width the width of the surface. + * \param height the height of the surface. + * \param format the SDL_PixelFormat for the new surface's pixel format. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSurfaceFrom + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_CreateSurface(int width, int height, SDL_PixelFormat format); + +/** + * Allocate a new surface with a specific pixel format and existing pixel + * data. + * + * No copy is made of the pixel data. Pixel data is not managed automatically; + * you must free the surface before you free the pixel data. + * + * Pitch is the offset in bytes from one row of pixels to the next, e.g. + * `width*4` for `SDL_PIXELFORMAT_RGBA8888`. + * + * You may pass NULL for pixels and 0 for pitch to create a surface that you + * will fill in with valid values later. + * + * \param width the width of the surface. + * \param height the height of the surface. + * \param format the SDL_PixelFormat for the new surface's pixel format. + * \param pixels a pointer to existing pixel data. + * \param pitch the number of bytes between each row, including padding. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSurface + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_CreateSurfaceFrom(int width, int height, SDL_PixelFormat format, void *pixels, int pitch); + +/** + * Free a surface. + * + * It is safe to pass NULL to this function. + * + * \param surface the SDL_Surface to free. + * + * \threadsafety No other thread should be using the surface when it is freed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSurface + * \sa SDL_CreateSurfaceFrom + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroySurface(SDL_Surface *surface); + +/** + * Get the properties associated with a surface. + * + * The following properties are understood by SDL: + * + * - `SDL_PROP_SURFACE_SDR_WHITE_POINT_FLOAT`: for HDR10 and floating point + * surfaces, this defines the value of 100% diffuse white, with higher + * values being displayed in the High Dynamic Range headroom. This defaults + * to 203 for HDR10 surfaces and 1.0 for floating point surfaces. + * - `SDL_PROP_SURFACE_HDR_HEADROOM_FLOAT`: for HDR10 and floating point + * surfaces, this defines the maximum dynamic range used by the content, in + * terms of the SDR white point. This defaults to 0.0, which disables tone + * mapping. + * - `SDL_PROP_SURFACE_TONEMAP_OPERATOR_STRING`: the tone mapping operator + * used when compressing from a surface with high dynamic range to another + * with lower dynamic range. Currently this supports "chrome", which uses + * the same tone mapping that Chrome uses for HDR content, the form "*=N", + * where N is a floating point scale factor applied in linear space, and + * "none", which disables tone mapping. This defaults to "chrome". + * - `SDL_PROP_SURFACE_HOTSPOT_X_NUMBER`: the hotspot pixel offset from the + * left edge of the image, if this surface is being used as a cursor. + * - `SDL_PROP_SURFACE_HOTSPOT_Y_NUMBER`: the hotspot pixel offset from the + * top edge of the image, if this surface is being used as a cursor. + * + * \param surface the SDL_Surface structure to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetSurfaceProperties(SDL_Surface *surface); + +#define SDL_PROP_SURFACE_SDR_WHITE_POINT_FLOAT "SDL.surface.SDR_white_point" +#define SDL_PROP_SURFACE_HDR_HEADROOM_FLOAT "SDL.surface.HDR_headroom" +#define SDL_PROP_SURFACE_TONEMAP_OPERATOR_STRING "SDL.surface.tonemap" +#define SDL_PROP_SURFACE_HOTSPOT_X_NUMBER "SDL.surface.hotspot.x" +#define SDL_PROP_SURFACE_HOTSPOT_Y_NUMBER "SDL.surface.hotspot.y" + +/** + * Set the colorspace used by a surface. + * + * Setting the colorspace doesn't change the pixels, only how they are + * interpreted in color operations. + * + * \param surface the SDL_Surface structure to update. + * \param colorspace an SDL_Colorspace value describing the surface + * colorspace. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorspace + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceColorspace(SDL_Surface *surface, SDL_Colorspace colorspace); + +/** + * Get the colorspace used by a surface. + * + * The colorspace defaults to SDL_COLORSPACE_SRGB_LINEAR for floating point + * formats, SDL_COLORSPACE_HDR10 for 10-bit formats, SDL_COLORSPACE_SRGB for + * other RGB surfaces and SDL_COLORSPACE_BT709_FULL for YUV textures. + * + * \param surface the SDL_Surface structure to query. + * \returns the colorspace used by the surface, or SDL_COLORSPACE_UNKNOWN if + * the surface is NULL. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceColorspace + */ +extern SDL_DECLSPEC SDL_Colorspace SDLCALL SDL_GetSurfaceColorspace(SDL_Surface *surface); + +/** + * Create a palette and associate it with a surface. + * + * This function creates a palette compatible with the provided surface. The + * palette is then returned for you to modify, and the surface will + * automatically use the new palette in future operations. You do not need to + * destroy the returned palette, it will be freed when the reference count + * reaches 0, usually when the surface is destroyed. + * + * Bitmap surfaces (with format SDL_PIXELFORMAT_INDEX1LSB or + * SDL_PIXELFORMAT_INDEX1MSB) will have the palette initialized with 0 as + * white and 1 as black. Other surfaces will get a palette initialized with + * white in every entry. + * + * If this function is called for a surface that already has a palette, a new + * palette will be created to replace it. + * + * \param surface the SDL_Surface structure to update. + * \returns a new SDL_Palette structure on success or NULL on failure (e.g. if + * the surface didn't have an index format); call SDL_GetError() for + * more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetPaletteColors + */ +extern SDL_DECLSPEC SDL_Palette * SDLCALL SDL_CreateSurfacePalette(SDL_Surface *surface); + +/** + * Set the palette used by a surface. + * + * A single palette can be shared with many surfaces. + * + * \param surface the SDL_Surface structure to update. + * \param palette the SDL_Palette structure to use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePalette + * \sa SDL_GetSurfacePalette + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfacePalette(SDL_Surface *surface, SDL_Palette *palette); + +/** + * Get the palette used by a surface. + * + * \param surface the SDL_Surface structure to query. + * \returns a pointer to the palette used by the surface, or NULL if there is + * no palette used. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfacePalette + */ +extern SDL_DECLSPEC SDL_Palette * SDLCALL SDL_GetSurfacePalette(SDL_Surface *surface); + +/** + * Add an alternate version of a surface. + * + * This function adds an alternate version of this surface, usually used for + * content with high DPI representations like cursors or icons. The size, + * format, and content do not need to match the original surface, and these + * alternate versions will not be updated when the original surface changes. + * + * This function adds a reference to the alternate version, so you should call + * SDL_DestroySurface() on the image after this call. + * + * \param surface the SDL_Surface structure to update. + * \param image a pointer to an alternate SDL_Surface to associate with this + * surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveSurfaceAlternateImages + * \sa SDL_GetSurfaceImages + * \sa SDL_SurfaceHasAlternateImages + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddSurfaceAlternateImage(SDL_Surface *surface, SDL_Surface *image); + +/** + * Return whether a surface has alternate versions available. + * + * \param surface the SDL_Surface structure to query. + * \returns true if alternate versions are available or false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddSurfaceAlternateImage + * \sa SDL_RemoveSurfaceAlternateImages + * \sa SDL_GetSurfaceImages + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SurfaceHasAlternateImages(SDL_Surface *surface); + +/** + * Get an array including all versions of a surface. + * + * This returns all versions of a surface, with the surface being queried as + * the first element in the returned array. + * + * Freeing the array of surfaces does not affect the surfaces in the array. + * They are still referenced by the surface being queried and will be cleaned + * up normally. + * + * \param surface the SDL_Surface structure to query. + * \param count a pointer filled in with the number of surface pointers + * returned, may be NULL. + * \returns a NULL terminated array of SDL_Surface pointers or NULL on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddSurfaceAlternateImage + * \sa SDL_RemoveSurfaceAlternateImages + * \sa SDL_SurfaceHasAlternateImages + */ +extern SDL_DECLSPEC SDL_Surface ** SDLCALL SDL_GetSurfaceImages(SDL_Surface *surface, int *count); + +/** + * Remove all alternate versions of a surface. + * + * This function removes a reference from all the alternative versions, + * destroying them if this is the last reference to them. + * + * \param surface the SDL_Surface structure to update. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddSurfaceAlternateImage + * \sa SDL_GetSurfaceImages + * \sa SDL_SurfaceHasAlternateImages + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveSurfaceAlternateImages(SDL_Surface *surface); + +/** + * Set up a surface for directly accessing the pixels. + * + * Between calls to SDL_LockSurface() / SDL_UnlockSurface(), you can write to + * and read from `surface->pixels`, using the pixel format stored in + * `surface->format`. Once you are done accessing the surface, you should use + * SDL_UnlockSurface() to release it. + * + * Not all surfaces require locking. If `SDL_MUSTLOCK(surface)` evaluates to + * 0, then you can read and write to the surface at any time, and the pixel + * format of the surface will not change. + * + * \param surface the SDL_Surface structure to be locked. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. The locking referred to by + * this function is making the pixels available for direct + * access, not thread-safe locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MUSTLOCK + * \sa SDL_UnlockSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockSurface(SDL_Surface *surface); + +/** + * Release a surface after directly accessing the pixels. + * + * \param surface the SDL_Surface structure to be unlocked. + * + * \threadsafety This function is not thread safe. The locking referred to by + * this function is making the pixels available for direct + * access, not thread-safe locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockSurface + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockSurface(SDL_Surface *surface); + +/** + * Load a BMP image from a seekable SDL data stream. + * + * The new surface should be freed with SDL_DestroySurface(). Not doing so + * will result in a memory leak. + * + * \param src the data stream for the surface. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns a pointer to a new SDL_Surface structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + * \sa SDL_LoadBMP + * \sa SDL_SaveBMP_IO + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_LoadBMP_IO(SDL_IOStream *src, bool closeio); + +/** + * Load a BMP image from a file. + * + * The new surface should be freed with SDL_DestroySurface(). Not doing so + * will result in a memory leak. + * + * \param file the BMP file to load. + * \returns a pointer to a new SDL_Surface structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + * \sa SDL_LoadBMP_IO + * \sa SDL_SaveBMP + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_LoadBMP(const char *file); + +/** + * Save a surface to a seekable SDL data stream in BMP format. + * + * Surfaces with a 24-bit, 32-bit and paletted 8-bit format get saved in the + * BMP directly. Other RGB formats with 8-bit or higher get converted to a + * 24-bit surface or, if they have an alpha mask or a colorkey, to a 32-bit + * surface before they are saved. YUV and paletted 1-bit and 4-bit formats are + * not supported. + * + * \param surface the SDL_Surface structure containing the image to be saved. + * \param dst a data stream to save to. + * \param closeio if true, calls SDL_CloseIO() on `dst` before returning, even + * in the case of an error. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadBMP_IO + * \sa SDL_SaveBMP + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveBMP_IO(SDL_Surface *surface, SDL_IOStream *dst, bool closeio); + +/** + * Save a surface to a file. + * + * Surfaces with a 24-bit, 32-bit and paletted 8-bit format get saved in the + * BMP directly. Other RGB formats with 8-bit or higher get converted to a + * 24-bit surface or, if they have an alpha mask or a colorkey, to a 32-bit + * surface before they are saved. YUV and paletted 1-bit and 4-bit formats are + * not supported. + * + * \param surface the SDL_Surface structure containing the image to be saved. + * \param file a file to save to. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadBMP + * \sa SDL_SaveBMP_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveBMP(SDL_Surface *surface, const char *file); + +/** + * Set the RLE acceleration hint for a surface. + * + * If RLE is enabled, color key and alpha blending blits are much faster, but + * the surface must be locked before directly accessing the pixels. + * + * \param surface the SDL_Surface structure to optimize. + * \param enabled true to enable RLE acceleration, false to disable it. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + * \sa SDL_LockSurface + * \sa SDL_UnlockSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceRLE(SDL_Surface *surface, bool enabled); + +/** + * Returns whether the surface is RLE enabled. + * + * It is safe to pass a NULL `surface` here; it will return false. + * + * \param surface the SDL_Surface structure to query. + * \returns true if the surface is RLE enabled, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceRLE + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SurfaceHasRLE(SDL_Surface *surface); + +/** + * Set the color key (transparent pixel) in a surface. + * + * The color key defines a pixel value that will be treated as transparent in + * a blit. For example, one can use this to specify that cyan pixels should be + * considered transparent, and therefore not rendered. + * + * It is a pixel of the format used by the surface, as generated by + * SDL_MapRGB(). + * + * \param surface the SDL_Surface structure to update. + * \param enabled true to enable color key, false to disable color key. + * \param key the transparent pixel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorKey + * \sa SDL_SetSurfaceRLE + * \sa SDL_SurfaceHasColorKey + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceColorKey(SDL_Surface *surface, bool enabled, Uint32 key); + +/** + * Returns whether the surface has a color key. + * + * It is safe to pass a NULL `surface` here; it will return false. + * + * \param surface the SDL_Surface structure to query. + * \returns true if the surface has a color key, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceColorKey + * \sa SDL_GetSurfaceColorKey + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SurfaceHasColorKey(SDL_Surface *surface); + +/** + * Get the color key (transparent pixel) for a surface. + * + * The color key is a pixel of the format used by the surface, as generated by + * SDL_MapRGB(). + * + * If the surface doesn't have color key enabled this function returns false. + * + * \param surface the SDL_Surface structure to query. + * \param key a pointer filled in with the transparent pixel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceColorKey + * \sa SDL_SurfaceHasColorKey + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceColorKey(SDL_Surface *surface, Uint32 *key); + +/** + * Set an additional color value multiplied into blit operations. + * + * When this surface is blitted, during the blit operation each source color + * channel is modulated by the appropriate color value according to the + * following formula: + * + * `srcC = srcC * (color / 255)` + * + * \param surface the SDL_Surface structure to update. + * \param r the red color value multiplied into blit operations. + * \param g the green color value multiplied into blit operations. + * \param b the blue color value multiplied into blit operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorMod + * \sa SDL_SetSurfaceAlphaMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceColorMod(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b); + + +/** + * Get the additional color value multiplied into blit operations. + * + * \param surface the SDL_Surface structure to query. + * \param r a pointer filled in with the current red color value. + * \param g a pointer filled in with the current green color value. + * \param b a pointer filled in with the current blue color value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceAlphaMod + * \sa SDL_SetSurfaceColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceColorMod(SDL_Surface *surface, Uint8 *r, Uint8 *g, Uint8 *b); + +/** + * Set an additional alpha value used in blit operations. + * + * When this surface is blitted, during the blit operation the source alpha + * value is modulated by this alpha value according to the following formula: + * + * `srcA = srcA * (alpha / 255)` + * + * \param surface the SDL_Surface structure to update. + * \param alpha the alpha value multiplied into blit operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceAlphaMod + * \sa SDL_SetSurfaceColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceAlphaMod(SDL_Surface *surface, Uint8 alpha); + +/** + * Get the additional alpha value used in blit operations. + * + * \param surface the SDL_Surface structure to query. + * \param alpha a pointer filled in with the current alpha value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorMod + * \sa SDL_SetSurfaceAlphaMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceAlphaMod(SDL_Surface *surface, Uint8 *alpha); + +/** + * Set the blend mode used for blit operations. + * + * To copy a surface to another surface (or texture) without blending with the + * existing data, the blendmode of the SOURCE surface should be set to + * `SDL_BLENDMODE_NONE`. + * + * \param surface the SDL_Surface structure to update. + * \param blendMode the SDL_BlendMode to use for blit blending. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode blendMode); + +/** + * Get the blend mode used for blit operations. + * + * \param surface the SDL_Surface structure to query. + * \param blendMode a pointer filled in with the current SDL_BlendMode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode *blendMode); + +/** + * Set the clipping rectangle for a surface. + * + * When `surface` is the destination of a blit, only the area within the clip + * rectangle is drawn into. + * + * Note that blits are automatically clipped to the edges of the source and + * destination surfaces. + * + * \param surface the SDL_Surface structure to be clipped. + * \param rect the SDL_Rect structure representing the clipping rectangle, or + * NULL to disable clipping. + * \returns true if the rectangle intersects the surface, otherwise false and + * blits will be completely clipped. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceClipRect(SDL_Surface *surface, const SDL_Rect *rect); + +/** + * Get the clipping rectangle for a surface. + * + * When `surface` is the destination of a blit, only the area within the clip + * rectangle is drawn into. + * + * \param surface the SDL_Surface structure representing the surface to be + * clipped. + * \param rect an SDL_Rect structure filled in with the clipping rectangle for + * the surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceClipRect(SDL_Surface *surface, SDL_Rect *rect); + +/** + * Flip a surface vertically or horizontally. + * + * \param surface the surface to flip. + * \param flip the direction to flip. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlipSurface(SDL_Surface *surface, SDL_FlipMode flip); + +/** + * Creates a new surface identical to the existing surface. + * + * If the original surface has alternate images, the new surface will have a + * reference to them as well. + * + * The returned surface should be freed with SDL_DestroySurface(). + * + * \param surface the surface to duplicate. + * \returns a copy of the surface or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_DuplicateSurface(SDL_Surface *surface); + +/** + * Creates a new surface identical to the existing surface, scaled to the + * desired size. + * + * The returned surface should be freed with SDL_DestroySurface(). + * + * \param surface the surface to duplicate and scale. + * \param width the width of the new surface. + * \param height the height of the new surface. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns a copy of the surface or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_ScaleSurface(SDL_Surface *surface, int width, int height, SDL_ScaleMode scaleMode); + +/** + * Copy an existing surface to a new surface of the specified format. + * + * This function is used to optimize images for faster *repeat* blitting. This + * is accomplished by converting the original and storing the result as a new + * surface. The new, optimized surface can then be used as the source for + * future blits, making them faster. + * + * If you are converting to an indexed surface and want to map colors to a + * palette, you can use SDL_ConvertSurfaceAndColorspace() instead. + * + * If the original surface has alternate images, the new surface will have a + * reference to them as well. + * + * \param surface the existing SDL_Surface structure to convert. + * \param format the new pixel format. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertSurfaceAndColorspace + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_ConvertSurface(SDL_Surface *surface, SDL_PixelFormat format); + +/** + * Copy an existing surface to a new surface of the specified format and + * colorspace. + * + * This function converts an existing surface to a new format and colorspace + * and returns the new surface. This will perform any pixel format and + * colorspace conversion needed. + * + * If the original surface has alternate images, the new surface will have a + * reference to them as well. + * + * \param surface the existing SDL_Surface structure to convert. + * \param format the new pixel format. + * \param palette an optional palette to use for indexed formats, may be NULL. + * \param colorspace the new colorspace. + * \param props an SDL_PropertiesID with additional color properties, or 0. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertSurface + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_ConvertSurfaceAndColorspace(SDL_Surface *surface, SDL_PixelFormat format, SDL_Palette *palette, SDL_Colorspace colorspace, SDL_PropertiesID props); + +/** + * Copy a block of pixels of one format to another format. + * + * \param width the width of the block to copy, in pixels. + * \param height the height of the block to copy, in pixels. + * \param src_format an SDL_PixelFormat value of the `src` pixels format. + * \param src a pointer to the source pixels. + * \param src_pitch the pitch of the source pixels, in bytes. + * \param dst_format an SDL_PixelFormat value of the `dst` pixels format. + * \param dst a pointer to be filled in with new pixel data. + * \param dst_pitch the pitch of the destination pixels, in bytes. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety The same destination pixels should not be used from two + * threads at once. It is safe to use the same source pixels + * from multiple threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertPixelsAndColorspace + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertPixels(int width, int height, SDL_PixelFormat src_format, const void *src, int src_pitch, SDL_PixelFormat dst_format, void *dst, int dst_pitch); + +/** + * Copy a block of pixels of one format and colorspace to another format and + * colorspace. + * + * \param width the width of the block to copy, in pixels. + * \param height the height of the block to copy, in pixels. + * \param src_format an SDL_PixelFormat value of the `src` pixels format. + * \param src_colorspace an SDL_Colorspace value describing the colorspace of + * the `src` pixels. + * \param src_properties an SDL_PropertiesID with additional source color + * properties, or 0. + * \param src a pointer to the source pixels. + * \param src_pitch the pitch of the source pixels, in bytes. + * \param dst_format an SDL_PixelFormat value of the `dst` pixels format. + * \param dst_colorspace an SDL_Colorspace value describing the colorspace of + * the `dst` pixels. + * \param dst_properties an SDL_PropertiesID with additional destination color + * properties, or 0. + * \param dst a pointer to be filled in with new pixel data. + * \param dst_pitch the pitch of the destination pixels, in bytes. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety The same destination pixels should not be used from two + * threads at once. It is safe to use the same source pixels + * from multiple threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertPixels + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertPixelsAndColorspace(int width, int height, SDL_PixelFormat src_format, SDL_Colorspace src_colorspace, SDL_PropertiesID src_properties, const void *src, int src_pitch, SDL_PixelFormat dst_format, SDL_Colorspace dst_colorspace, SDL_PropertiesID dst_properties, void *dst, int dst_pitch); + +/** + * Premultiply the alpha on a block of pixels. + * + * This is safe to use with src == dst, but not for other overlapping areas. + * + * \param width the width of the block to convert, in pixels. + * \param height the height of the block to convert, in pixels. + * \param src_format an SDL_PixelFormat value of the `src` pixels format. + * \param src a pointer to the source pixels. + * \param src_pitch the pitch of the source pixels, in bytes. + * \param dst_format an SDL_PixelFormat value of the `dst` pixels format. + * \param dst a pointer to be filled in with premultiplied pixel data. + * \param dst_pitch the pitch of the destination pixels, in bytes. + * \param linear true to convert from sRGB to linear space for the alpha + * multiplication, false to do multiplication in sRGB space. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety The same destination pixels should not be used from two + * threads at once. It is safe to use the same source pixels + * from multiple threads. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PremultiplyAlpha(int width, int height, SDL_PixelFormat src_format, const void *src, int src_pitch, SDL_PixelFormat dst_format, void *dst, int dst_pitch, bool linear); + +/** + * Premultiply the alpha in a surface. + * + * This is safe to use with src == dst, but not for other overlapping areas. + * + * \param surface the surface to modify. + * \param linear true to convert from sRGB to linear space for the alpha + * multiplication, false to do multiplication in sRGB space. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PremultiplySurfaceAlpha(SDL_Surface *surface, bool linear); + +/** + * Clear a surface with a specific color, with floating point precision. + * + * This function handles all surface formats, and ignores any clip rectangle. + * + * If the surface is YUV, the color is assumed to be in the sRGB colorspace, + * otherwise the color is assumed to be in the colorspace of the suface. + * + * \param surface the SDL_Surface to clear. + * \param r the red component of the pixel, normally in the range 0-1. + * \param g the green component of the pixel, normally in the range 0-1. + * \param b the blue component of the pixel, normally in the range 0-1. + * \param a the alpha component of the pixel, normally in the range 0-1. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearSurface(SDL_Surface *surface, float r, float g, float b, float a); + +/** + * Perform a fast fill of a rectangle with a specific color. + * + * `color` should be a pixel of the format used by the surface, and can be + * generated by SDL_MapRGB() or SDL_MapRGBA(). If the color value contains an + * alpha component then the destination is simply filled with that alpha + * information, no blending takes place. + * + * If there is a clip rectangle set on the destination (set via + * SDL_SetSurfaceClipRect()), then this function will fill based on the + * intersection of the clip rectangle and `rect`. + * + * \param dst the SDL_Surface structure that is the drawing target. + * \param rect the SDL_Rect structure representing the rectangle to fill, or + * NULL to fill the entire surface. + * \param color the color to fill with. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FillSurfaceRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FillSurfaceRect(SDL_Surface *dst, const SDL_Rect *rect, Uint32 color); + +/** + * Perform a fast fill of a set of rectangles with a specific color. + * + * `color` should be a pixel of the format used by the surface, and can be + * generated by SDL_MapRGB() or SDL_MapRGBA(). If the color value contains an + * alpha component then the destination is simply filled with that alpha + * information, no blending takes place. + * + * If there is a clip rectangle set on the destination (set via + * SDL_SetSurfaceClipRect()), then this function will fill based on the + * intersection of the clip rectangle and `rect`. + * + * \param dst the SDL_Surface structure that is the drawing target. + * \param rects an array of SDL_Rects representing the rectangles to fill. + * \param count the number of rectangles in the array. + * \param color the color to fill with. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FillSurfaceRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FillSurfaceRects(SDL_Surface *dst, const SDL_Rect *rects, int count, Uint32 color); + +/** + * Performs a fast blit from the source surface to the destination surface + * with clipping. + * + * If either `srcrect` or `dstrect` are NULL, the entire surface (`src` or + * `dst`) is copied while ensuring clipping to `dst->clip_rect`. + * + * The blit function should not be called on a locked surface. + * + * The blit semantics for surfaces with and without blending and colorkey are + * defined as follows: + * + * ``` + * RGBA->RGB: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source alpha-channel and per-surface alpha) + * SDL_SRCCOLORKEY ignored. + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy RGB. + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * RGB values of the source color key, ignoring alpha in the + * comparison. + * + * RGB->RGBA: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source per-surface alpha) + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy RGB, set destination alpha to source per-surface alpha value. + * both: + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * source color key. + * + * RGBA->RGBA: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source alpha-channel and per-surface alpha) + * SDL_SRCCOLORKEY ignored. + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy all of RGBA to the destination. + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * RGB values of the source color key, ignoring alpha in the + * comparison. + * + * RGB->RGB: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source per-surface alpha) + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy RGB. + * both: + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * source color key. + * ``` + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the x and y position in + * the destination surface, or NULL for (0,0). The width and + * height are ignored, and are copied from `srcrect`. If you + * want a specific width and height, you should use + * SDL_BlitSurfaceScaled(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurfaceScaled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurface(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform low-level surface blitting only. + * + * This is a semi-private blit function and it performs low-level surface + * blitting, assuming the input rectangles have already been clipped. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, may not be NULL. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, may not be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceUnchecked(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform a scaled blit to a destination surface, which may be of a different + * format. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire + * destination surface. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceScaled(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect, SDL_ScaleMode scaleMode); + +/** + * Perform low-level surface scaled blitting only. + * + * This is a semi-private function and it performs low-level surface blitting, + * assuming the input rectangles have already been clipped. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, may not be NULL. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, may not be NULL. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurfaceScaled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceUncheckedScaled(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect, SDL_ScaleMode scaleMode); + +/** + * Perform a stretched pixel copy from one surface to another. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire + * destination surface. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.4.0. + * + * \sa SDL_BlitSurfaceScaled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StretchSurface(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect, SDL_ScaleMode scaleMode); + +/** + * Perform a tiled blit to a destination surface, which may be of a different + * format. + * + * The pixels in `srcrect` will be repeated as many times as needed to + * completely fill `dstrect`. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceTiled(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform a scaled and tiled blit to a destination surface, which may be of a + * different format. + * + * The pixels in `srcrect` will be scaled and repeated as many times as needed + * to completely fill `dstrect`. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param scale the scale used to transform srcrect into the destination + * rectangle, e.g. a 32x32 texture with a scale of 2 would fill + * 64x64 tiles. + * \param scaleMode scale algorithm to be used. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceTiledWithScale(SDL_Surface *src, const SDL_Rect *srcrect, float scale, SDL_ScaleMode scaleMode, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform a scaled blit using the 9-grid algorithm to a destination surface, + * which may be of a different format. + * + * The pixels in the source surface are split into a 3x3 grid, using the + * different corner sizes for each corner, and the sides and center making up + * the remaining pixels. The corners are then scaled using `scale` and fit + * into the corners of the destination rectangle. The sides and center are + * then stretched into place to cover the remaining destination rectangle. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be used + * for the 9-grid, or NULL to use the entire surface. + * \param left_width the width, in pixels, of the left corners in `srcrect`. + * \param right_width the width, in pixels, of the right corners in `srcrect`. + * \param top_height the height, in pixels, of the top corners in `srcrect`. + * \param bottom_height the height, in pixels, of the bottom corners in + * `srcrect`. + * \param scale the scale used to transform the corner of `srcrect` into the + * corner of `dstrect`, or 0.0f for an unscaled blit. + * \param scaleMode scale algorithm to be used. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurface9Grid(SDL_Surface *src, const SDL_Rect *srcrect, int left_width, int right_width, int top_height, int bottom_height, float scale, SDL_ScaleMode scaleMode, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Map an RGB triple to an opaque pixel value for a surface. + * + * This function maps the RGB color value to the specified pixel format and + * returns the pixel value best approximating the given RGB color value for + * the given pixel format. + * + * If the surface has a palette, the index of the closest matching color in + * the palette will be returned. + * + * If the surface pixel format has an alpha component it will be returned as + * all 1 bits (fully opaque). + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param surface the surface to use for the pixel format and palette. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MapSurfaceRGBA + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapSurfaceRGB(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b); + +/** + * Map an RGBA quadruple to a pixel value for a surface. + * + * This function maps the RGBA color value to the specified pixel format and + * returns the pixel value best approximating the given RGBA color value for + * the given pixel format. + * + * If the surface pixel format has no alpha component the alpha value will be + * ignored (as it will be in formats with a palette). + * + * If the surface has a palette, the index of the closest matching color in + * the palette will be returned. + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param surface the surface to use for the pixel format and palette. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \param a the alpha component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MapSurfaceRGB + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapSurfaceRGBA(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Retrieves a single pixel from a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * Like SDL_GetRGBA, this uses the entire 0..255 range when converting color + * components from pixel formats with less than 8 bits per RGB component. + * + * \param surface the surface to read. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r a pointer filled in with the red channel, 0-255, or NULL to ignore + * this channel. + * \param g a pointer filled in with the green channel, 0-255, or NULL to + * ignore this channel. + * \param b a pointer filled in with the blue channel, 0-255, or NULL to + * ignore this channel. + * \param a a pointer filled in with the alpha channel, 0-255, or NULL to + * ignore this channel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadSurfacePixel(SDL_Surface *surface, int x, int y, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); + +/** + * Retrieves a single pixel from a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * \param surface the surface to read. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r a pointer filled in with the red channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \param g a pointer filled in with the green channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \param b a pointer filled in with the blue channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \param a a pointer filled in with the alpha channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadSurfacePixelFloat(SDL_Surface *surface, int x, int y, float *r, float *g, float *b, float *a); + +/** + * Writes a single pixel to a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * Like SDL_MapRGBA, this uses the entire 0..255 range when converting color + * components from pixel formats with less than 8 bits per RGB component. + * + * \param surface the surface to write. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r the red channel value, 0-255. + * \param g the green channel value, 0-255. + * \param b the blue channel value, 0-255. + * \param a the alpha channel value, 0-255. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteSurfacePixel(SDL_Surface *surface, int x, int y, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Writes a single pixel to a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * \param surface the surface to write. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r the red channel value, normally in the range 0-1. + * \param g the green channel value, normally in the range 0-1. + * \param b the blue channel value, normally in the range 0-1. + * \param a the alpha channel value, normally in the range 0-1. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteSurfacePixelFloat(SDL_Surface *surface, int x, int y, float r, float g, float b, float a); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_surface_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_system.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_system.h new file mode 100644 index 0000000..294089f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_system.h @@ -0,0 +1,818 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategorySystem + * + * Platform-specific SDL API functions. These are functions that deal with + * needs of specific operating systems, that didn't make sense to offer as + * platform-independent, generic APIs. + * + * Most apps can make do without these functions, but they can be useful for + * integrating with other parts of a specific system, adding platform-specific + * polish to an app, or solving problems that only affect one target. + */ + +#ifndef SDL_system_h_ +#define SDL_system_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + + +/* + * Platform specific functions for Windows + */ +#if defined(SDL_PLATFORM_WINDOWS) + +typedef struct tagMSG MSG; + +/** + * A callback to be used with SDL_SetWindowsMessageHook. + * + * This callback may modify the message, and should return true if the message + * should continue to be processed, or false to prevent further processing. + * + * As this is processing a message directly from the Windows event loop, this + * callback should do the minimum required work and return quickly. + * + * \param userdata the app-defined pointer provided to + * SDL_SetWindowsMessageHook. + * \param msg a pointer to a Win32 event structure to process. + * \returns true to let event continue on, false to drop it. + * + * \threadsafety This may only be called (by SDL) from the thread handling the + * Windows event loop. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetWindowsMessageHook + * \sa SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP + */ +typedef bool (SDLCALL *SDL_WindowsMessageHook)(void *userdata, MSG *msg); + +/** + * Set a callback for every Windows message, run before TranslateMessage(). + * + * The callback may modify the message, and should return true if the message + * should continue to be processed, or false to prevent further processing. + * + * \param callback the SDL_WindowsMessageHook function to call. + * \param userdata a pointer to pass to every iteration of `callback`. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WindowsMessageHook + * \sa SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetWindowsMessageHook(SDL_WindowsMessageHook callback, void *userdata); + +#endif /* defined(SDL_PLATFORM_WINDOWS) */ + +#if defined(SDL_PLATFORM_WIN32) || defined(SDL_PLATFORM_WINGDK) + +/** + * Get the D3D9 adapter index that matches the specified display. + * + * The returned adapter index can be passed to `IDirect3D9::CreateDevice` and + * controls on which monitor a full screen application will appear. + * + * \param displayID the instance of the display to query. + * \returns the D3D9 adapter index on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDirect3D9AdapterIndex(SDL_DisplayID displayID); + +/** + * Get the DXGI Adapter and Output indices for the specified display. + * + * The DXGI Adapter and Output indices can be passed to `EnumAdapters` and + * `EnumOutputs` respectively to get the objects required to create a DX10 or + * DX11 device and swap chain. + * + * \param displayID the instance of the display to query. + * \param adapterIndex a pointer to be filled in with the adapter index. + * \param outputIndex a pointer to be filled in with the output index. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDXGIOutputInfo(SDL_DisplayID displayID, int *adapterIndex, int *outputIndex); + +#endif /* defined(SDL_PLATFORM_WIN32) || defined(SDL_PLATFORM_WINGDK) */ + + +/* + * Platform specific functions for UNIX + */ + +/* this is defined in Xlib's headers, just need a simple declaration here. */ +typedef union _XEvent XEvent; + +/** + * A callback to be used with SDL_SetX11EventHook. + * + * This callback may modify the event, and should return true if the event + * should continue to be processed, or false to prevent further processing. + * + * As this is processing an event directly from the X11 event loop, this + * callback should do the minimum required work and return quickly. + * + * \param userdata the app-defined pointer provided to SDL_SetX11EventHook. + * \param xevent a pointer to an Xlib XEvent union to process. + * \returns true to let event continue on, false to drop it. + * + * \threadsafety This may only be called (by SDL) from the thread handling the + * X11 event loop. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetX11EventHook + */ +typedef bool (SDLCALL *SDL_X11EventHook)(void *userdata, XEvent *xevent); + +/** + * Set a callback for every X11 event. + * + * The callback may modify the event, and should return true if the event + * should continue to be processed, or false to prevent further processing. + * + * \param callback the SDL_X11EventHook function to call. + * \param userdata a pointer to pass to every iteration of `callback`. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetX11EventHook(SDL_X11EventHook callback, void *userdata); + +/* Platform specific functions for Linux*/ +#ifdef SDL_PLATFORM_LINUX + +/** + * Sets the UNIX nice value for a thread. + * + * This uses setpriority() if possible, and RealtimeKit if available. + * + * \param threadID the Unix thread ID to change priority of. + * \param priority the new, Unix-specific, priority value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetLinuxThreadPriority(Sint64 threadID, int priority); + +/** + * Sets the priority (not nice level) and scheduling policy for a thread. + * + * This uses setpriority() if possible, and RealtimeKit if available. + * + * \param threadID the Unix thread ID to change priority of. + * \param sdlPriority the new SDL_ThreadPriority value. + * \param schedPolicy the new scheduling policy (SCHED_FIFO, SCHED_RR, + * SCHED_OTHER, etc...). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetLinuxThreadPriorityAndPolicy(Sint64 threadID, int sdlPriority, int schedPolicy); + +#endif /* SDL_PLATFORM_LINUX */ + +/* + * Platform specific functions for iOS + */ +#ifdef SDL_PLATFORM_IOS + +/** + * The prototype for an Apple iOS animation callback. + * + * This datatype is only useful on Apple iOS. + * + * After passing a function pointer of this type to + * SDL_SetiOSAnimationCallback, the system will call that function pointer at + * a regular interval. + * + * \param userdata what was passed as `callbackParam` to + * SDL_SetiOSAnimationCallback as `callbackParam`. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetiOSAnimationCallback + */ +typedef void (SDLCALL *SDL_iOSAnimationCallback)(void *userdata); + +/** + * Use this function to set the animation callback on Apple iOS. + * + * The function prototype for `callback` is: + * + * ```c + * void callback(void *callbackParam); + * ``` + * + * Where its parameter, `callbackParam`, is what was passed as `callbackParam` + * to SDL_SetiOSAnimationCallback(). + * + * This function is only available on Apple iOS. + * + * For more information see: + * + * https://wiki.libsdl.org/SDL3/README/ios + * + * Note that if you use the "main callbacks" instead of a standard C `main` + * function, you don't have to use this API, as SDL will manage this for you. + * + * Details on main callbacks are here: + * + * https://wiki.libsdl.org/SDL3/README/main-functions + * + * \param window the window for which the animation callback should be set. + * \param interval the number of frames after which **callback** will be + * called. + * \param callback the function to call for every frame. + * \param callbackParam a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetiOSEventPump + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetiOSAnimationCallback(SDL_Window *window, int interval, SDL_iOSAnimationCallback callback, void *callbackParam); + +/** + * Use this function to enable or disable the SDL event pump on Apple iOS. + * + * This function is only available on Apple iOS. + * + * \param enabled true to enable the event pump, false to disable it. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetiOSAnimationCallback + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetiOSEventPump(bool enabled); + +#endif /* SDL_PLATFORM_IOS */ + + +/* + * Platform specific functions for Android + */ +#ifdef SDL_PLATFORM_ANDROID + +/** + * Get the Android Java Native Interface Environment of the current thread. + * + * This is the JNIEnv one needs to access the Java virtual machine from native + * code, and is needed for many Android APIs to be usable from C. + * + * The prototype of the function in SDL's code actually declare a void* return + * type, even if the implementation returns a pointer to a JNIEnv. The + * rationale being that the SDL headers can avoid including jni.h. + * + * \returns a pointer to Java native interface object (JNIEnv) to which the + * current thread is attached, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidActivity + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetAndroidJNIEnv(void); + +/** + * Retrieve the Java instance of the Android activity class. + * + * The prototype of the function in SDL's code actually declares a void* + * return type, even if the implementation returns a jobject. The rationale + * being that the SDL headers can avoid including jni.h. + * + * The jobject returned by the function is a local reference and must be + * released by the caller. See the PushLocalFrame() and PopLocalFrame() or + * DeleteLocalRef() functions of the Java native interface: + * + * https://docs.oracle.com/javase/1.5.0/docs/guide/jni/spec/functions.html + * + * \returns the jobject representing the instance of the Activity class of the + * Android application, or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidJNIEnv + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetAndroidActivity(void); + +/** + * Query Android API level of the current device. + * + * - API level 35: Android 15 (VANILLA_ICE_CREAM) + * - API level 34: Android 14 (UPSIDE_DOWN_CAKE) + * - API level 33: Android 13 (TIRAMISU) + * - API level 32: Android 12L (S_V2) + * - API level 31: Android 12 (S) + * - API level 30: Android 11 (R) + * - API level 29: Android 10 (Q) + * - API level 28: Android 9 (P) + * - API level 27: Android 8.1 (O_MR1) + * - API level 26: Android 8.0 (O) + * - API level 25: Android 7.1 (N_MR1) + * - API level 24: Android 7.0 (N) + * - API level 23: Android 6.0 (M) + * - API level 22: Android 5.1 (LOLLIPOP_MR1) + * - API level 21: Android 5.0 (LOLLIPOP, L) + * - API level 20: Android 4.4W (KITKAT_WATCH) + * - API level 19: Android 4.4 (KITKAT) + * - API level 18: Android 4.3 (JELLY_BEAN_MR2) + * - API level 17: Android 4.2 (JELLY_BEAN_MR1) + * - API level 16: Android 4.1 (JELLY_BEAN) + * - API level 15: Android 4.0.3 (ICE_CREAM_SANDWICH_MR1) + * - API level 14: Android 4.0 (ICE_CREAM_SANDWICH) + * - API level 13: Android 3.2 (HONEYCOMB_MR2) + * - API level 12: Android 3.1 (HONEYCOMB_MR1) + * - API level 11: Android 3.0 (HONEYCOMB) + * - API level 10: Android 2.3.3 (GINGERBREAD_MR1) + * + * \returns the Android API level. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAndroidSDKVersion(void); + +/** + * Query if the application is running on a Chromebook. + * + * \returns true if this is a Chromebook, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsChromebook(void); + +/** + * Query if the application is running on a Samsung DeX docking station. + * + * \returns true if this is a DeX docking station, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsDeXMode(void); + +/** + * Trigger the Android system back button behavior. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SendAndroidBackButton(void); + +/** + * See the official Android developer guide for more information: + * http://developer.android.com/guide/topics/data/data-storage.html + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ANDROID_EXTERNAL_STORAGE_READ 0x01 + +/** + * See the official Android developer guide for more information: + * http://developer.android.com/guide/topics/data/data-storage.html + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ANDROID_EXTERNAL_STORAGE_WRITE 0x02 + +/** + * Get the path used for internal storage for this Android application. + * + * This path is unique to your application and cannot be written to by other + * applications. + * + * Your internal storage path is typically: + * `/data/data/your.app.package/files`. + * + * This is a C wrapper over `android.content.Context.getFilesDir()`: + * + * https://developer.android.com/reference/android/content/Context#getFilesDir() + * + * \returns the path used for internal storage or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidExternalStoragePath + * \sa SDL_GetAndroidCachePath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAndroidInternalStoragePath(void); + +/** + * Get the current state of external storage for this Android application. + * + * The current state of external storage, a bitmask of these values: + * `SDL_ANDROID_EXTERNAL_STORAGE_READ`, `SDL_ANDROID_EXTERNAL_STORAGE_WRITE`. + * + * If external storage is currently unavailable, this will return 0. + * + * \returns the current state of external storage, or 0 if external storage is + * currently unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidExternalStoragePath + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetAndroidExternalStorageState(void); + +/** + * Get the path used for external storage for this Android application. + * + * This path is unique to your application, but is public and can be written + * to by other applications. + * + * Your external storage path is typically: + * `/storage/sdcard0/Android/data/your.app.package/files`. + * + * This is a C wrapper over `android.content.Context.getExternalFilesDir()`: + * + * https://developer.android.com/reference/android/content/Context#getExternalFilesDir() + * + * \returns the path used for external storage for this application on success + * or NULL on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidExternalStorageState + * \sa SDL_GetAndroidInternalStoragePath + * \sa SDL_GetAndroidCachePath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAndroidExternalStoragePath(void); + +/** + * Get the path used for caching data for this Android application. + * + * This path is unique to your application, but is public and can be written + * to by other applications. + * + * Your cache path is typically: `/data/data/your.app.package/cache/`. + * + * This is a C wrapper over `android.content.Context.getCacheDir()`: + * + * https://developer.android.com/reference/android/content/Context#getCacheDir() + * + * \returns the path used for caches for this application on success or NULL + * on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidInternalStoragePath + * \sa SDL_GetAndroidExternalStoragePath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAndroidCachePath(void); + +/** + * Callback that presents a response from a SDL_RequestAndroidPermission call. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \param permission the Android-specific permission name that was requested. + * \param granted true if permission is granted, false if denied. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_RequestAndroidPermission + */ +typedef void (SDLCALL *SDL_RequestAndroidPermissionCallback)(void *userdata, const char *permission, bool granted); + +/** + * Request permissions at runtime, asynchronously. + * + * You do not need to call this for built-in functionality of SDL; recording + * from a microphone or reading images from a camera, using standard SDL APIs, + * will manage permission requests for you. + * + * This function never blocks. Instead, the app-supplied callback will be + * called when a decision has been made. This callback may happen on a + * different thread, and possibly much later, as it might wait on a user to + * respond to a system dialog. If permission has already been granted for a + * specific entitlement, the callback will still fire, probably on the current + * thread and before this function returns. + * + * If the request submission fails, this function returns -1 and the callback + * will NOT be called, but this should only happen in catastrophic conditions, + * like memory running out. Normally there will be a yes or no to the request + * through the callback. + * + * For the `permission` parameter, choose a value from here: + * + * https://developer.android.com/reference/android/Manifest.permission + * + * \param permission the permission to request. + * \param cb the callback to trigger when the request has a response. + * \param userdata an app-controlled pointer that is passed to the callback. + * \returns true if the request was submitted, false if there was an error + * submitting. The result of the request is only ever reported + * through the callback, not this return value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RequestAndroidPermission(const char *permission, SDL_RequestAndroidPermissionCallback cb, void *userdata); + +/** + * Shows an Android toast notification. + * + * Toasts are a sort of lightweight notification that are unique to Android. + * + * https://developer.android.com/guide/topics/ui/notifiers/toasts + * + * Shows toast in UI thread. + * + * For the `gravity` parameter, choose a value from here, or -1 if you don't + * have a preference: + * + * https://developer.android.com/reference/android/view/Gravity + * + * \param message text message to be shown. + * \param duration 0=short, 1=long. + * \param gravity where the notification should appear on the screen. + * \param xoffset set this parameter only when gravity >=0. + * \param yoffset set this parameter only when gravity >=0. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowAndroidToast(const char *message, int duration, int gravity, int xoffset, int yoffset); + +/** + * Send a user command to SDLActivity. + * + * Override "boolean onUnhandledMessage(Message msg)" to handle the message. + * + * \param command user command that must be greater or equal to 0x8000. + * \param param user parameter. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendAndroidMessage(Uint32 command, int param); + +#endif /* SDL_PLATFORM_ANDROID */ + +/** + * Query if the current device is a tablet. + * + * If SDL can't determine this, it will return false. + * + * \returns true if the device is a tablet, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsTablet(void); + +/** + * Query if the current device is a TV. + * + * If SDL can't determine this, it will return false. + * + * \returns true if the device is a TV, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsTV(void); + +/** + * Application sandbox environment. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_Sandbox +{ + SDL_SANDBOX_NONE = 0, + SDL_SANDBOX_UNKNOWN_CONTAINER, + SDL_SANDBOX_FLATPAK, + SDL_SANDBOX_SNAP, + SDL_SANDBOX_MACOS +} SDL_Sandbox; + +/** + * Get the application sandbox environment, if any. + * + * \returns the application sandbox environment or SDL_SANDBOX_NONE if the + * application is not running in a sandbox environment. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Sandbox SDLCALL SDL_GetSandbox(void); + + +/* Functions used by iOS app delegates to notify SDL about state changes. */ + +/** + * Let iOS apps with external event handling report + * onApplicationWillTerminate. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationWillTerminate(void); + +/** + * Let iOS apps with external event handling report + * onApplicationDidReceiveMemoryWarning. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidReceiveMemoryWarning(void); + +/** + * Let iOS apps with external event handling report + * onApplicationWillResignActive. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationWillEnterBackground(void); + +/** + * Let iOS apps with external event handling report + * onApplicationDidEnterBackground. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidEnterBackground(void); + +/** + * Let iOS apps with external event handling report + * onApplicationWillEnterForeground. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationWillEnterForeground(void); + +/** + * Let iOS apps with external event handling report + * onApplicationDidBecomeActive. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidEnterForeground(void); + +#ifdef SDL_PLATFORM_IOS + +/** + * Let iOS apps with external event handling report + * onApplicationDidChangeStatusBarOrientation. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidChangeStatusBarOrientation(void); +#endif + +/* + * Functions used only by GDK + */ +#ifdef SDL_PLATFORM_GDK +typedef struct XTaskQueueObject *XTaskQueueHandle; +typedef struct XUser *XUserHandle; + +/** + * Gets a reference to the global async task queue handle for GDK, + * initializing if needed. + * + * Once you are done with the task queue, you should call + * XTaskQueueCloseHandle to reduce the reference count to avoid a resource + * leak. + * + * \param outTaskQueue a pointer to be filled in with task queue handle. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGDKTaskQueue(XTaskQueueHandle *outTaskQueue); + +/** + * Gets a reference to the default user handle for GDK. + * + * This is effectively a synchronous version of XUserAddAsync, which always + * prefers the default user and allows a sign-in UI. + * + * \param outUserHandle a pointer to be filled in with the default user + * handle. + * \returns true if success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGDKDefaultUser(XUserHandle *outUserHandle); + +#endif + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_system_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_thread.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_thread.h new file mode 100644 index 0000000..e981b54 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_thread.h @@ -0,0 +1,578 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_thread_h_ +#define SDL_thread_h_ + +/** + * # CategoryThread + * + * SDL offers cross-platform thread management functions. These are mostly + * concerned with starting threads, setting their priority, and dealing with + * their termination. + * + * In addition, there is support for Thread Local Storage (data that is unique + * to each thread, but accessed from a single key). + * + * On platforms without thread support (such as Emscripten when built without + * pthreads), these functions still exist, but things like SDL_CreateThread() + * will report failure without doing anything. + * + * If you're going to work with threads, you almost certainly need to have a + * good understanding of [CategoryMutex](CategoryMutex) as well. + */ + +#include +#include +#include + +/* Thread synchronization primitives */ +#include + +#if defined(SDL_PLATFORM_WINDOWS) +#include /* _beginthreadex() and _endthreadex() */ +#endif + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The SDL thread object. + * + * These are opaque data. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_WaitThread + */ +typedef struct SDL_Thread SDL_Thread; + +/** + * A unique numeric ID that identifies a thread. + * + * These are different from SDL_Thread objects, which are generally what an + * application will operate on, but having a way to uniquely identify a thread + * can be useful at times. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetThreadID + * \sa SDL_GetCurrentThreadID + */ +typedef Uint64 SDL_ThreadID; + +/** + * Thread local storage ID. + * + * 0 is the invalid ID. An app can create these and then set data for these + * IDs that is unique to each thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetTLS + * \sa SDL_SetTLS + */ +typedef SDL_AtomicInt SDL_TLSID; + +/** + * The SDL thread priority. + * + * SDL will make system changes as necessary in order to apply the thread + * priority. Code which attempts to control thread state related to priority + * should be aware that calling SDL_SetCurrentThreadPriority may alter such + * state. SDL_HINT_THREAD_PRIORITY_POLICY can be used to control aspects of + * this behavior. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ThreadPriority { + SDL_THREAD_PRIORITY_LOW, + SDL_THREAD_PRIORITY_NORMAL, + SDL_THREAD_PRIORITY_HIGH, + SDL_THREAD_PRIORITY_TIME_CRITICAL +} SDL_ThreadPriority; + +/** + * The SDL thread state. + * + * The current state of a thread can be checked by calling SDL_GetThreadState. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetThreadState + */ +typedef enum SDL_ThreadState +{ + SDL_THREAD_UNKNOWN, /**< The thread is not valid */ + SDL_THREAD_ALIVE, /**< The thread is currently running */ + SDL_THREAD_DETACHED, /**< The thread is detached and can't be waited on */ + SDL_THREAD_COMPLETE /**< The thread has finished and should be cleaned up with SDL_WaitThread() */ +} SDL_ThreadState; + +/** + * The function passed to SDL_CreateThread() as the new thread's entry point. + * + * \param data what was passed as `data` to SDL_CreateThread(). + * \returns a value that can be reported through SDL_WaitThread(). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef int (SDLCALL *SDL_ThreadFunction) (void *data); + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/* + * Note that these aren't the correct function signatures in this block, but + * this is what the API reference manual should look like for all intents and + * purposes. + * + * Technical details, not for the wiki (hello, header readers!)... + * + * On Windows (and maybe other platforms), a program might use a different + * C runtime than its libraries. Or, in SDL's case, it might use a C runtime + * while SDL uses none at all. + * + * C runtimes expect to initialize thread-specific details when a new thread + * is created, but to do this in SDL_CreateThread would require SDL to know + * intimate details about the caller's C runtime, which is not possible. + * + * So SDL_CreateThread has two extra parameters, which are + * hidden at compile time by macros: the C runtime's `_beginthreadex` and + * `_endthreadex` entry points. If these are not NULL, they are used to spin + * and terminate the new thread; otherwise the standard Win32 `CreateThread` + * function is used. When `SDL_CreateThread` is called from a compiler that + * needs this C runtime thread init function, macros insert the appropriate + * function pointers for SDL_CreateThread's caller (which might be a different + * compiler with a different runtime in different calls to SDL_CreateThread!). + * + * SDL_BeginThreadFunction defaults to `_beginthreadex` on Windows (and NULL + * everywhere else), but apps that have extremely specific special needs can + * define this to something else and the SDL headers will use it, passing the + * app-defined value to SDL_CreateThread calls. Redefine this with caution! + * + * Platforms that don't need _beginthread stuff (most everything) will fail + * SDL_CreateThread with an error if these pointers _aren't_ NULL. + * + * Unless you are doing something extremely complicated, like perhaps a + * language binding, **you should never deal with this directly**. Let SDL's + * macros handle this platform-specific detail transparently! + */ + +/** + * Create a new thread with a default stack size. + * + * This is a convenience function, equivalent to calling + * SDL_CreateThreadWithProperties with the following properties set: + * + * - `SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER`: `fn` + * - `SDL_PROP_THREAD_CREATE_NAME_STRING`: `name` + * - `SDL_PROP_THREAD_CREATE_USERDATA_POINTER`: `data` + * + * Note that this "function" is actually a macro that calls an internal + * function with two extra parameters not listed here; they are hidden through + * preprocessor macros and are needed to support various C runtimes at the + * point of the function call. Language bindings that aren't using the C + * headers will need to deal with this. + * + * Usually, apps should just call this function the same way on every platform + * and let the macros hide the details. + * + * \param fn the SDL_ThreadFunction function to call in the new thread. + * \param name the name of the thread. + * \param data a pointer that is passed to `fn`. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThreadWithProperties + * \sa SDL_WaitThread + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data); + +/** + * Create a new thread with with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER`: an SDL_ThreadFunction + * value that will be called at the start of the new thread's life. + * Required. + * - `SDL_PROP_THREAD_CREATE_NAME_STRING`: the name of the new thread, which + * might be available to debuggers. Optional, defaults to NULL. + * - `SDL_PROP_THREAD_CREATE_USERDATA_POINTER`: an arbitrary app-defined + * pointer, which is passed to the entry function on the new thread, as its + * only parameter. Optional, defaults to NULL. + * - `SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER`: the size, in bytes, of the new + * thread's stack. Optional, defaults to 0 (system-defined default). + * + * SDL makes an attempt to report `SDL_PROP_THREAD_CREATE_NAME_STRING` to the + * system, so that debuggers can display it. Not all platforms support this. + * + * Thread naming is a little complicated: Most systems have very small limits + * for the string length (Haiku has 32 bytes, Linux currently has 16, Visual + * C++ 6.0 has _nine_!), and possibly other arbitrary rules. You'll have to + * see what happens with your system's debugger. The name should be UTF-8 (but + * using the naming limits of C identifiers is a better bet). There are no + * requirements for thread naming conventions, so long as the string is + * null-terminated UTF-8, but these guidelines are helpful in choosing a name: + * + * https://stackoverflow.com/questions/149932/naming-conventions-for-threads + * + * If a system imposes requirements, SDL will try to munge the string for it + * (truncate, etc), but the original string contents will be available from + * SDL_GetThreadName(). + * + * The size (in bytes) of the new stack can be specified with + * `SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER`. Zero means "use the system + * default" which might be wildly different between platforms. x86 Linux + * generally defaults to eight megabytes, an embedded device might be a few + * kilobytes instead. You generally need to specify a stack that is a multiple + * of the system's page size (in many cases, this is 4 kilobytes, but check + * your system documentation). + * + * Note that this "function" is actually a macro that calls an internal + * function with two extra parameters not listed here; they are hidden through + * preprocessor macros and are needed to support various C runtimes at the + * point of the function call. Language bindings that aren't using the C + * headers will need to deal with this. + * + * The actual symbol in SDL is `SDL_CreateThreadWithPropertiesRuntime`, so + * there is no symbol clash, but trying to load an SDL shared library and look + * for "SDL_CreateThreadWithProperties" will fail. + * + * Usually, apps should just call this function the same way on every platform + * and let the macros hide the details. + * + * \param props the properties to use. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_WaitThread + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThreadWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER "SDL.thread.create.entry_function" +#define SDL_PROP_THREAD_CREATE_NAME_STRING "SDL.thread.create.name" +#define SDL_PROP_THREAD_CREATE_USERDATA_POINTER "SDL.thread.create.userdata" +#define SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER "SDL.thread.create.stacksize" + +/* end wiki documentation for macros that are meant to look like functions. */ +#endif + + +/* The real implementation, hidden from the wiki, so it can show this as real functions that don't have macro magic. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +# if defined(SDL_PLATFORM_WINDOWS) +# ifndef SDL_BeginThreadFunction +# define SDL_BeginThreadFunction _beginthreadex +# endif +# ifndef SDL_EndThreadFunction +# define SDL_EndThreadFunction _endthreadex +# endif +# endif +#endif + +/* currently no other platforms than Windows use _beginthreadex/_endthreadex things. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +# ifndef SDL_BeginThreadFunction +# define SDL_BeginThreadFunction NULL +# endif +#endif + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +# ifndef SDL_EndThreadFunction +# define SDL_EndThreadFunction NULL +# endif +#endif + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +/* These are the actual functions exported from SDL! Don't use them directly! Use the SDL_CreateThread and SDL_CreateThreadWithProperties macros! */ +/** + * The actual entry point for SDL_CreateThread. + * + * \param fn the SDL_ThreadFunction function to call in the new thread + * \param name the name of the thread + * \param data a pointer that is passed to `fn` + * \param pfnBeginThread the C runtime's _beginthreadex (or whatnot). Can be NULL. + * \param pfnEndThread the C runtime's _endthreadex (or whatnot). Can be NULL. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThreadRuntime(SDL_ThreadFunction fn, const char *name, void *data, SDL_FunctionPointer pfnBeginThread, SDL_FunctionPointer pfnEndThread); + +/** + * The actual entry point for SDL_CreateThreadWithProperties. + * + * \param props the properties to use + * \param pfnBeginThread the C runtime's _beginthreadex (or whatnot). Can be NULL. + * \param pfnEndThread the C runtime's _endthreadex (or whatnot). Can be NULL. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThreadWithPropertiesRuntime(SDL_PropertiesID props, SDL_FunctionPointer pfnBeginThread, SDL_FunctionPointer pfnEndThread); + +#define SDL_CreateThread(fn, name, data) SDL_CreateThreadRuntime((fn), (name), (data), (SDL_FunctionPointer) (SDL_BeginThreadFunction), (SDL_FunctionPointer) (SDL_EndThreadFunction)) +#define SDL_CreateThreadWithProperties(props) SDL_CreateThreadWithPropertiesRuntime((props), (SDL_FunctionPointer) (SDL_BeginThreadFunction), (SDL_FunctionPointer) (SDL_EndThreadFunction)) +#define SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER "SDL.thread.create.entry_function" +#define SDL_PROP_THREAD_CREATE_NAME_STRING "SDL.thread.create.name" +#define SDL_PROP_THREAD_CREATE_USERDATA_POINTER "SDL.thread.create.userdata" +#define SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER "SDL.thread.create.stacksize" +#endif + + +/** + * Get the thread name as it was specified in SDL_CreateThread(). + * + * \param thread the thread to query. + * \returns a pointer to a UTF-8 string that names the specified thread, or + * NULL if it doesn't have a name. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetThreadName(SDL_Thread *thread); + +/** + * Get the thread identifier for the current thread. + * + * This thread identifier is as reported by the underlying operating system. + * If SDL is running on a platform that does not support threads the return + * value will always be zero. + * + * This function also returns a valid thread ID when called from the main + * thread. + * + * \returns the ID of the current thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetThreadID + */ +extern SDL_DECLSPEC SDL_ThreadID SDLCALL SDL_GetCurrentThreadID(void); + +/** + * Get the thread identifier for the specified thread. + * + * This thread identifier is as reported by the underlying operating system. + * If SDL is running on a platform that does not support threads the return + * value will always be zero. + * + * \param thread the thread to query. + * \returns the ID of the specified thread, or the ID of the current thread if + * `thread` is NULL. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentThreadID + */ +extern SDL_DECLSPEC SDL_ThreadID SDLCALL SDL_GetThreadID(SDL_Thread *thread); + +/** + * Set the priority for the current thread. + * + * Note that some platforms will not let you alter the priority (or at least, + * promote the thread to a higher priority) at all, and some require you to be + * an administrator account. Be prepared for this to fail. + * + * \param priority the SDL_ThreadPriority to set. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetCurrentThreadPriority(SDL_ThreadPriority priority); + +/** + * Wait for a thread to finish. + * + * Threads that haven't been detached will remain until this function cleans + * them up. Not doing so is a resource leak. + * + * Once a thread has been cleaned up through this function, the SDL_Thread + * that references it becomes invalid and should not be referenced again. As + * such, only one thread may call SDL_WaitThread() on another. + * + * The return code from the thread function is placed in the area pointed to + * by `status`, if `status` is not NULL. + * + * You may not wait on a thread that has been used in a call to + * SDL_DetachThread(). Use either that function or this one, but not both, or + * behavior is undefined. + * + * It is safe to pass a NULL thread to this function; it is a no-op. + * + * Note that the thread pointer is freed by this function and is not valid + * afterward. + * + * \param thread the SDL_Thread pointer that was returned from the + * SDL_CreateThread() call that started this thread. + * \param status a pointer filled in with the value returned from the thread + * function by its 'return', or -1 if the thread has been + * detached or isn't valid, may be NULL. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_DetachThread + */ +extern SDL_DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread *thread, int *status); + +/** + * Get the current state of a thread. + * + * \param thread the thread to query. + * \returns the current state of a thread, or SDL_THREAD_UNKNOWN if the thread + * isn't valid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ThreadState + */ +extern SDL_DECLSPEC SDL_ThreadState SDLCALL SDL_GetThreadState(SDL_Thread *thread); + +/** + * Let a thread clean up on exit without intervention. + * + * A thread may be "detached" to signify that it should not remain until + * another thread has called SDL_WaitThread() on it. Detaching a thread is + * useful for long-running threads that nothing needs to synchronize with or + * further manage. When a detached thread is done, it simply goes away. + * + * There is no way to recover the return code of a detached thread. If you + * need this, don't detach the thread and instead use SDL_WaitThread(). + * + * Once a thread is detached, you should usually assume the SDL_Thread isn't + * safe to reference again, as it will become invalid immediately upon the + * detached thread's exit, instead of remaining until someone has called + * SDL_WaitThread() to finally clean it up. As such, don't detach the same + * thread more than once. + * + * If a thread has already exited when passed to SDL_DetachThread(), it will + * stop waiting for a call to SDL_WaitThread() and clean up immediately. It is + * not safe to detach a thread that might be used with SDL_WaitThread(). + * + * You may not call SDL_WaitThread() on a thread that has been detached. Use + * either that function or this one, but not both, or behavior is undefined. + * + * It is safe to pass NULL to this function; it is a no-op. + * + * \param thread the SDL_Thread pointer that was returned from the + * SDL_CreateThread() call that started this thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_WaitThread + */ +extern SDL_DECLSPEC void SDLCALL SDL_DetachThread(SDL_Thread *thread); + +/** + * Get the current thread's value associated with a thread local storage ID. + * + * \param id a pointer to the thread local storage ID, may not be NULL. + * \returns the value associated with the ID for the current thread or NULL if + * no value has been set; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTLS + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetTLS(SDL_TLSID *id); + +/** + * The callback used to cleanup data passed to SDL_SetTLS. + * + * This is called when a thread exits, to allow an app to free any resources. + * + * \param value a pointer previously handed to SDL_SetTLS. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetTLS + */ +typedef void (SDLCALL *SDL_TLSDestructorCallback)(void *value); + +/** + * Set the current thread's value associated with a thread local storage ID. + * + * If the thread local storage ID is not initialized (the value is 0), a new + * ID will be created in a thread-safe way, so all calls using a pointer to + * the same ID will refer to the same local storage. + * + * Note that replacing a value from a previous call to this function on the + * same thread does _not_ call the previous value's destructor! + * + * `destructor` can be NULL; it is assumed that `value` does not need to be + * cleaned up if so. + * + * \param id a pointer to the thread local storage ID, may not be NULL. + * \param value the value to associate with the ID for the current thread. + * \param destructor a function called when the thread exits, to free the + * value, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTLS + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTLS(SDL_TLSID *id, const void *value, SDL_TLSDestructorCallback destructor); + +/** + * Cleanup all TLS data for this thread. + * + * If you are creating your threads outside of SDL and then calling SDL + * functions, you should call this function before your thread exits, to + * properly clean up SDL memory. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CleanupTLS(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_thread_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_time.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_time.h new file mode 100644 index 0000000..b6d3f6d --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_time.h @@ -0,0 +1,231 @@ +/* +Simple DirectMedia Layer +Copyright (C) 1997-2025 Sam Lantinga + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_time_h_ +#define SDL_time_h_ + +/** + * # CategoryTime + * + * SDL realtime clock and date/time routines. + * + * There are two data types that are used in this category: SDL_Time, which + * represents the nanoseconds since a specific moment (an "epoch"), and + * SDL_DateTime, which breaks time down into human-understandable components: + * years, months, days, hours, etc. + * + * Much of the functionality is involved in converting those two types to + * other useful forms. + */ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A structure holding a calendar date and time broken down into its + * components. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_DateTime +{ + int year; /**< Year */ + int month; /**< Month [01-12] */ + int day; /**< Day of the month [01-31] */ + int hour; /**< Hour [0-23] */ + int minute; /**< Minute [0-59] */ + int second; /**< Seconds [0-60] */ + int nanosecond; /**< Nanoseconds [0-999999999] */ + int day_of_week; /**< Day of the week [0-6] (0 being Sunday) */ + int utc_offset; /**< Seconds east of UTC */ +} SDL_DateTime; + +/** + * The preferred date format of the current system locale. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetDateTimeLocalePreferences + */ +typedef enum SDL_DateFormat +{ + SDL_DATE_FORMAT_YYYYMMDD = 0, /**< Year/Month/Day */ + SDL_DATE_FORMAT_DDMMYYYY = 1, /**< Day/Month/Year */ + SDL_DATE_FORMAT_MMDDYYYY = 2 /**< Month/Day/Year */ +} SDL_DateFormat; + +/** + * The preferred time format of the current system locale. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetDateTimeLocalePreferences + */ +typedef enum SDL_TimeFormat +{ + SDL_TIME_FORMAT_24HR = 0, /**< 24 hour time */ + SDL_TIME_FORMAT_12HR = 1 /**< 12 hour time */ +} SDL_TimeFormat; + +/** + * Gets the current preferred date and time format for the system locale. + * + * This might be a "slow" call that has to query the operating system. It's + * best to ask for this once and save the results. However, the preferred + * formats can change, usually because the user has changed a system + * preference outside of your program. + * + * \param dateFormat a pointer to the SDL_DateFormat to hold the returned date + * format, may be NULL. + * \param timeFormat a pointer to the SDL_TimeFormat to hold the returned time + * format, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDateTimeLocalePreferences(SDL_DateFormat *dateFormat, SDL_TimeFormat *timeFormat); + +/** + * Gets the current value of the system realtime clock in nanoseconds since + * Jan 1, 1970 in Universal Coordinated Time (UTC). + * + * \param ticks the SDL_Time to hold the returned tick count. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetCurrentTime(SDL_Time *ticks); + +/** + * Converts an SDL_Time in nanoseconds since the epoch to a calendar time in + * the SDL_DateTime format. + * + * \param ticks the SDL_Time to be converted. + * \param dt the resulting SDL_DateTime. + * \param localTime the resulting SDL_DateTime will be expressed in local time + * if true, otherwise it will be in Universal Coordinated + * Time (UTC). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TimeToDateTime(SDL_Time ticks, SDL_DateTime *dt, bool localTime); + +/** + * Converts a calendar time to an SDL_Time in nanoseconds since the epoch. + * + * This function ignores the day_of_week member of the SDL_DateTime struct, so + * it may remain unset. + * + * \param dt the source SDL_DateTime. + * \param ticks the resulting SDL_Time. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DateTimeToTime(const SDL_DateTime *dt, SDL_Time *ticks); + +/** + * Converts an SDL time into a Windows FILETIME (100-nanosecond intervals + * since January 1, 1601). + * + * This function fills in the two 32-bit values of the FILETIME structure. + * + * \param ticks the time to convert. + * \param dwLowDateTime a pointer filled in with the low portion of the + * Windows FILETIME value. + * \param dwHighDateTime a pointer filled in with the high portion of the + * Windows FILETIME value. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_TimeToWindows(SDL_Time ticks, Uint32 *dwLowDateTime, Uint32 *dwHighDateTime); + +/** + * Converts a Windows FILETIME (100-nanosecond intervals since January 1, + * 1601) to an SDL time. + * + * This function takes the two 32-bit values of the FILETIME structure as + * parameters. + * + * \param dwLowDateTime the low portion of the Windows FILETIME value. + * \param dwHighDateTime the high portion of the Windows FILETIME value. + * \returns the converted SDL time. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Time SDLCALL SDL_TimeFromWindows(Uint32 dwLowDateTime, Uint32 dwHighDateTime); + +/** + * Get the number of days in a month for a given year. + * + * \param year the year. + * \param month the month [1-12]. + * \returns the number of days in the requested month or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDaysInMonth(int year, int month); + +/** + * Get the day of year for a calendar date. + * + * \param year the year component of the date. + * \param month the month component of the date. + * \param day the day component of the date. + * \returns the day of year [0-365] if the date is valid or -1 on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDayOfYear(int year, int month, int day); + +/** + * Get the day of week for a calendar date. + * + * \param year the year component of the date. + * \param month the month component of the date. + * \param day the day component of the date. + * \returns a value between 0 and 6 (0 being Sunday) if the date is valid or + * -1 on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDayOfWeek(int year, int month, int day); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_time_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_timer.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_timer.h new file mode 100644 index 0000000..cf94881 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_timer.h @@ -0,0 +1,450 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_timer_h_ +#define SDL_timer_h_ + +/** + * # CategoryTimer + * + * SDL provides time management functionality. It is useful for dealing with + * (usually) small durations of time. + * + * This is not to be confused with _calendar time_ management, which is + * provided by [CategoryTime](CategoryTime). + * + * This category covers measuring time elapsed (SDL_GetTicks(), + * SDL_GetPerformanceCounter()), putting a thread to sleep for a certain + * amount of time (SDL_Delay(), SDL_DelayNS(), SDL_DelayPrecise()), and firing + * a callback function after a certain amount of time has elasped + * (SDL_AddTimer(), etc). + * + * There are also useful macros to convert between time units, like + * SDL_SECONDS_TO_NS() and such. + */ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* SDL time constants */ + +/** + * Number of milliseconds in a second. + * + * This is always 1000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MS_PER_SECOND 1000 + +/** + * Number of microseconds in a second. + * + * This is always 1000000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_US_PER_SECOND 1000000 + +/** + * Number of nanoseconds in a second. + * + * This is always 1000000000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_PER_SECOND 1000000000LL + +/** + * Number of nanoseconds in a millisecond. + * + * This is always 1000000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_PER_MS 1000000 + +/** + * Number of nanoseconds in a microsecond. + * + * This is always 1000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_PER_US 1000 + +/** + * Convert seconds to nanoseconds. + * + * This only converts whole numbers, not fractional seconds. + * + * \param S the number of seconds to convert. + * \returns S, expressed in nanoseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SECONDS_TO_NS(S) (((Uint64)(S)) * SDL_NS_PER_SECOND) + +/** + * Convert nanoseconds to seconds. + * + * This performs a division, so the results can be dramatically different if + * `NS` is an integer or floating point value. + * + * \param NS the number of nanoseconds to convert. + * \returns NS, expressed in seconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_TO_SECONDS(NS) ((NS) / SDL_NS_PER_SECOND) + +/** + * Convert milliseconds to nanoseconds. + * + * This only converts whole numbers, not fractional milliseconds. + * + * \param MS the number of milliseconds to convert. + * \returns MS, expressed in nanoseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MS_TO_NS(MS) (((Uint64)(MS)) * SDL_NS_PER_MS) + +/** + * Convert nanoseconds to milliseconds. + * + * This performs a division, so the results can be dramatically different if + * `NS` is an integer or floating point value. + * + * \param NS the number of nanoseconds to convert. + * \returns NS, expressed in milliseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_TO_MS(NS) ((NS) / SDL_NS_PER_MS) + +/** + * Convert microseconds to nanoseconds. + * + * This only converts whole numbers, not fractional microseconds. + * + * \param US the number of microseconds to convert. + * \returns US, expressed in nanoseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_US_TO_NS(US) (((Uint64)(US)) * SDL_NS_PER_US) + +/** + * Convert nanoseconds to microseconds. + * + * This performs a division, so the results can be dramatically different if + * `NS` is an integer or floating point value. + * + * \param NS the number of nanoseconds to convert. + * \returns NS, expressed in microseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_TO_US(NS) ((NS) / SDL_NS_PER_US) + +/** + * Get the number of milliseconds since SDL library initialization. + * + * \returns an unsigned 64-bit value representing the number of milliseconds + * since the SDL library initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetTicks(void); + +/** + * Get the number of nanoseconds since SDL library initialization. + * + * \returns an unsigned 64-bit value representing the number of nanoseconds + * since the SDL library initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetTicksNS(void); + +/** + * Get the current value of the high resolution counter. + * + * This function is typically used for profiling. + * + * The counter values are only meaningful relative to each other. Differences + * between values can be converted to times by using + * SDL_GetPerformanceFrequency(). + * + * \returns the current counter value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPerformanceFrequency + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetPerformanceCounter(void); + +/** + * Get the count per second of the high resolution counter. + * + * \returns a platform-specific count per second. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPerformanceCounter + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetPerformanceFrequency(void); + +/** + * Wait a specified number of milliseconds before returning. + * + * This function waits a specified number of milliseconds before returning. It + * waits at least the specified time, but possibly longer due to OS + * scheduling. + * + * \param ms the number of milliseconds to delay. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DelayNS + * \sa SDL_DelayPrecise + */ +extern SDL_DECLSPEC void SDLCALL SDL_Delay(Uint32 ms); + +/** + * Wait a specified number of nanoseconds before returning. + * + * This function waits a specified number of nanoseconds before returning. It + * waits at least the specified time, but possibly longer due to OS + * scheduling. + * + * \param ns the number of nanoseconds to delay. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Delay + * \sa SDL_DelayPrecise + */ +extern SDL_DECLSPEC void SDLCALL SDL_DelayNS(Uint64 ns); + +/** + * Wait a specified number of nanoseconds before returning. + * + * This function waits a specified number of nanoseconds before returning. It + * will attempt to wait as close to the requested time as possible, busy + * waiting if necessary, but could return later due to OS scheduling. + * + * \param ns the number of nanoseconds to delay. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Delay + * \sa SDL_DelayNS + */ +extern SDL_DECLSPEC void SDLCALL SDL_DelayPrecise(Uint64 ns); + +/** + * Definition of the timer ID type. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_TimerID; + +/** + * Function prototype for the millisecond timer callback function. + * + * The callback function is passed the current timer interval and returns the + * next timer interval, in milliseconds. If the returned value is the same as + * the one passed in, the periodic alarm continues, otherwise a new alarm is + * scheduled. If the callback returns 0, the periodic alarm is canceled and + * will be removed. + * + * \param userdata an arbitrary pointer provided by the app through + * SDL_AddTimer, for its own use. + * \param timerID the current timer being processed. + * \param interval the current callback time interval. + * \returns the new callback time interval, or 0 to disable further runs of + * the callback. + * + * \threadsafety SDL may call this callback at any time from a background + * thread; the application is responsible for locking resources + * the callback touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_AddTimer + */ +typedef Uint32 (SDLCALL *SDL_TimerCallback)(void *userdata, SDL_TimerID timerID, Uint32 interval); + +/** + * Call a callback function at a future time. + * + * The callback function is passed the current timer interval and the user + * supplied parameter from the SDL_AddTimer() call and should return the next + * timer interval. If the value returned from the callback is 0, the timer is + * canceled and will be removed. + * + * The callback is run on a separate thread, and for short timeouts can + * potentially be called before this function returns. + * + * Timers take into account the amount of time it took to execute the + * callback. For example, if the callback took 250 ms to execute and returned + * 1000 (ms), the timer would only wait another 750 ms before its next + * iteration. + * + * Timing may be inexact due to OS scheduling. Be sure to note the current + * time with SDL_GetTicksNS() or SDL_GetPerformanceCounter() in case your + * callback needs to adjust for variances. + * + * \param interval the timer delay, in milliseconds, passed to `callback`. + * \param callback the SDL_TimerCallback function to call when the specified + * `interval` elapses. + * \param userdata a pointer that is passed to `callback`. + * \returns a timer ID or 0 on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddTimerNS + * \sa SDL_RemoveTimer + */ +extern SDL_DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_TimerCallback callback, void *userdata); + +/** + * Function prototype for the nanosecond timer callback function. + * + * The callback function is passed the current timer interval and returns the + * next timer interval, in nanoseconds. If the returned value is the same as + * the one passed in, the periodic alarm continues, otherwise a new alarm is + * scheduled. If the callback returns 0, the periodic alarm is canceled and + * will be removed. + * + * \param userdata an arbitrary pointer provided by the app through + * SDL_AddTimer, for its own use. + * \param timerID the current timer being processed. + * \param interval the current callback time interval. + * \returns the new callback time interval, or 0 to disable further runs of + * the callback. + * + * \threadsafety SDL may call this callback at any time from a background + * thread; the application is responsible for locking resources + * the callback touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_AddTimerNS + */ +typedef Uint64 (SDLCALL *SDL_NSTimerCallback)(void *userdata, SDL_TimerID timerID, Uint64 interval); + +/** + * Call a callback function at a future time. + * + * The callback function is passed the current timer interval and the user + * supplied parameter from the SDL_AddTimerNS() call and should return the + * next timer interval. If the value returned from the callback is 0, the + * timer is canceled and will be removed. + * + * The callback is run on a separate thread, and for short timeouts can + * potentially be called before this function returns. + * + * Timers take into account the amount of time it took to execute the + * callback. For example, if the callback took 250 ns to execute and returned + * 1000 (ns), the timer would only wait another 750 ns before its next + * iteration. + * + * Timing may be inexact due to OS scheduling. Be sure to note the current + * time with SDL_GetTicksNS() or SDL_GetPerformanceCounter() in case your + * callback needs to adjust for variances. + * + * \param interval the timer delay, in nanoseconds, passed to `callback`. + * \param callback the SDL_TimerCallback function to call when the specified + * `interval` elapses. + * \param userdata a pointer that is passed to `callback`. + * \returns a timer ID or 0 on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddTimer + * \sa SDL_RemoveTimer + */ +extern SDL_DECLSPEC SDL_TimerID SDLCALL SDL_AddTimerNS(Uint64 interval, SDL_NSTimerCallback callback, void *userdata); + +/** + * Remove a timer created with SDL_AddTimer(). + * + * \param id the ID of the timer to remove. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddTimer + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RemoveTimer(SDL_TimerID id); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_timer_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_touch.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_touch.h new file mode 100644 index 0000000..64845a1 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_touch.h @@ -0,0 +1,184 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryTouch + * + * SDL offers touch input, on platforms that support it. It can manage + * multiple touch devices and track multiple fingers on those devices. + * + * Touches are mostly dealt with through the event system, in the + * SDL_EVENT_FINGER_DOWN, SDL_EVENT_FINGER_MOTION, and SDL_EVENT_FINGER_UP + * events, but there are also functions to query for hardware details, etc. + * + * The touch system, by default, will also send virtual mouse events; this can + * be useful for making a some desktop apps work on a phone without + * significant changes. For apps that care about mouse and touch input + * separately, they should ignore mouse events that have a `which` field of + * SDL_TOUCH_MOUSEID. + */ + +#ifndef SDL_touch_h_ +#define SDL_touch_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A unique ID for a touch device. + * + * This ID is valid for the time the device is connected to the system, and is + * never reused for the lifetime of the application. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint64 SDL_TouchID; + +/** + * A unique ID for a single finger on a touch device. + * + * This ID is valid for the time the finger (stylus, etc) is touching and will + * be unique for all fingers currently in contact, so this ID tracks the + * lifetime of a single continuous touch. This value may represent an index, a + * pointer, or some other unique ID, depending on the platform. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint64 SDL_FingerID; + +/** + * An enum that describes the type of a touch device. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_TouchDeviceType +{ + SDL_TOUCH_DEVICE_INVALID = -1, + SDL_TOUCH_DEVICE_DIRECT, /**< touch screen with window-relative coordinates */ + SDL_TOUCH_DEVICE_INDIRECT_ABSOLUTE, /**< trackpad with absolute device coordinates */ + SDL_TOUCH_DEVICE_INDIRECT_RELATIVE /**< trackpad with screen cursor-relative coordinates */ +} SDL_TouchDeviceType; + +/** + * Data about a single finger in a multitouch event. + * + * Each touch event is a collection of fingers that are simultaneously in + * contact with the touch device (so a "touch" can be a "multitouch," in + * reality), and this struct reports details of the specific fingers. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetTouchFingers + */ +typedef struct SDL_Finger +{ + SDL_FingerID id; /**< the finger ID */ + float x; /**< the x-axis location of the touch event, normalized (0...1) */ + float y; /**< the y-axis location of the touch event, normalized (0...1) */ + float pressure; /**< the quantity of pressure applied, normalized (0...1) */ +} SDL_Finger; + +/** + * The SDL_MouseID for mouse events simulated with touch input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TOUCH_MOUSEID ((SDL_MouseID)-1) + +/** + * The SDL_TouchID for touch events simulated with mouse input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MOUSE_TOUCHID ((SDL_TouchID)-1) + + +/** + * Get a list of registered touch devices. + * + * On some platforms SDL first sees the touch device if it was actually used. + * Therefore the returned list might be empty, although devices are available. + * After using all devices at least once the number will be correct. + * + * \param count a pointer filled in with the number of devices returned, may + * be NULL. + * \returns a 0 terminated array of touch device IDs or NULL on failure; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_TouchID * SDLCALL SDL_GetTouchDevices(int *count); + +/** + * Get the touch device name as reported from the driver. + * + * \param touchID the touch device instance ID. + * \returns touch device name, or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetTouchDeviceName(SDL_TouchID touchID); + +/** + * Get the type of the given touch device. + * + * \param touchID the ID of a touch device. + * \returns touch device type. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_TouchDeviceType SDLCALL SDL_GetTouchDeviceType(SDL_TouchID touchID); + +/** + * Get a list of active fingers for a given touch device. + * + * \param touchID the ID of a touch device. + * \param count a pointer filled in with the number of fingers returned, can + * be NULL. + * \returns a NULL terminated array of SDL_Finger pointers or NULL on failure; + * call SDL_GetError() for more information. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Finger ** SDLCALL SDL_GetTouchFingers(SDL_TouchID touchID, int *count); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_touch_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_tray.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_tray.h new file mode 100644 index 0000000..1780b0b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_tray.h @@ -0,0 +1,544 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryTray + * + * SDL offers a way to add items to the "system tray" (more correctly called + * the "notification area" on Windows). On platforms that offer this concept, + * an SDL app can add a tray icon, submenus, checkboxes, and clickable + * entries, and register a callback that is fired when the user clicks on + * these pieces. + */ + +#ifndef SDL_tray_h_ +#define SDL_tray_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque handle representing a toplevel system tray object. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Tray SDL_Tray; + +/** + * An opaque handle representing a menu/submenu on a system tray object. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TrayMenu SDL_TrayMenu; + +/** + * An opaque handle representing an entry on a system tray object. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TrayEntry SDL_TrayEntry; + +/** + * Flags that control the creation of system tray entries. + * + * Some of these flags are required; exactly one of them must be specified at + * the time a tray entry is created. Other flags are optional; zero or more of + * those can be OR'ed together with the required flag. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + */ +typedef Uint32 SDL_TrayEntryFlags; + +#define SDL_TRAYENTRY_BUTTON 0x00000001u /**< Make the entry a simple button. Required. */ +#define SDL_TRAYENTRY_CHECKBOX 0x00000002u /**< Make the entry a checkbox. Required. */ +#define SDL_TRAYENTRY_SUBMENU 0x00000004u /**< Prepare the entry to have a submenu. Required */ +#define SDL_TRAYENTRY_DISABLED 0x80000000u /**< Make the entry disabled. Optional. */ +#define SDL_TRAYENTRY_CHECKED 0x40000000u /**< Make the entry checked. This is valid only for checkboxes. Optional. */ + +/** + * A callback that is invoked when a tray entry is selected. + * + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param entry the tray entry that was selected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetTrayEntryCallback + */ +typedef void (SDLCALL *SDL_TrayCallback)(void *userdata, SDL_TrayEntry *entry); + +/** + * Create an icon to be placed in the operating system's tray, or equivalent. + * + * Many platforms advise not using a system tray unless persistence is a + * necessary feature. Avoid needlessly creating a tray icon, as the user may + * feel like it clutters their interface. + * + * Using tray icons require the video subsystem. + * + * \param icon a surface to be used as icon. May be NULL. + * \param tooltip a tooltip to be displayed when the mouse hovers the icon in + * UTF-8 encoding. Not supported on all platforms. May be NULL. + * \returns The newly created system tray icon. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTrayMenu + * \sa SDL_GetTrayMenu + * \sa SDL_DestroyTray + */ +extern SDL_DECLSPEC SDL_Tray * SDLCALL SDL_CreateTray(SDL_Surface *icon, const char *tooltip); + +/** + * Updates the system tray icon's icon. + * + * \param tray the tray icon to be updated. + * \param icon the new icon. May be NULL. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayIcon(SDL_Tray *tray, SDL_Surface *icon); + +/** + * Updates the system tray icon's tooltip. + * + * \param tray the tray icon to be updated. + * \param tooltip the new tooltip in UTF-8 encoding. May be NULL. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayTooltip(SDL_Tray *tray, const char *tooltip); + +/** + * Create a menu for a system tray. + * + * This should be called at most once per tray icon. + * + * This function does the same thing as SDL_CreateTraySubmenu(), except that + * it takes a SDL_Tray instead of a SDL_TrayEntry. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param tray the tray to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + * \sa SDL_GetTrayMenu + * \sa SDL_GetTrayMenuParentTray + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_CreateTrayMenu(SDL_Tray *tray); + +/** + * Create a submenu for a system tray entry. + * + * This should be called at most once per tray entry. + * + * This function does the same thing as SDL_CreateTrayMenu, except that it + * takes a SDL_TrayEntry instead of a SDL_Tray. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param entry the tray entry to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTraySubmenu + * \sa SDL_GetTrayMenuParentEntry + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_CreateTraySubmenu(SDL_TrayEntry *entry); + +/** + * Gets a previously created tray menu. + * + * You should have called SDL_CreateTrayMenu() on the tray object. This + * function allows you to fetch it again later. + * + * This function does the same thing as SDL_GetTraySubmenu(), except that it + * takes a SDL_Tray instead of a SDL_TrayEntry. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param tray the tray entry to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + * \sa SDL_CreateTrayMenu + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_GetTrayMenu(SDL_Tray *tray); + +/** + * Gets a previously created tray entry submenu. + * + * You should have called SDL_CreateTraySubmenu() on the entry object. This + * function allows you to fetch it again later. + * + * This function does the same thing as SDL_GetTrayMenu(), except that it + * takes a SDL_TrayEntry instead of a SDL_Tray. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param entry the tray entry to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + * \sa SDL_CreateTraySubmenu + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_GetTraySubmenu(SDL_TrayEntry *entry); + +/** + * Returns a list of entries in the menu, in order. + * + * \param menu The menu to get entries from. + * \param count An optional pointer to obtain the number of entries in the + * menu. + * \returns a NULL-terminated list of entries within the given menu. The + * pointer becomes invalid when any function that inserts or deletes + * entries in the menu is called. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveTrayEntry + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC const SDL_TrayEntry ** SDLCALL SDL_GetTrayEntries(SDL_TrayMenu *menu, int *count); + +/** + * Removes a tray entry. + * + * \param entry The entry to be deleted. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveTrayEntry(SDL_TrayEntry *entry); + +/** + * Insert a tray entry at a given position. + * + * If label is NULL, the entry will be a separator. Many functions won't work + * for an entry that is a separator. + * + * An entry does not need to be destroyed; it will be destroyed with the tray. + * + * \param menu the menu to append the entry to. + * \param pos the desired position for the new entry. Entries at or following + * this place will be moved. If pos is -1, the entry is appended. + * \param label the text to be displayed on the entry, in UTF-8 encoding, or + * NULL for a separator. + * \param flags a combination of flags, some of which are mandatory. + * \returns the newly created entry, or NULL if pos is out of bounds. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TrayEntryFlags + * \sa SDL_GetTrayEntries + * \sa SDL_RemoveTrayEntry + * \sa SDL_GetTrayEntryParent + */ +extern SDL_DECLSPEC SDL_TrayEntry * SDLCALL SDL_InsertTrayEntryAt(SDL_TrayMenu *menu, int pos, const char *label, SDL_TrayEntryFlags flags); + +/** + * Sets the label of an entry. + * + * An entry cannot change between a separator and an ordinary entry; that is, + * it is not possible to set a non-NULL label on an entry that has a NULL + * label (separators), or to set a NULL label to an entry that has a non-NULL + * label. The function will silently fail if that happens. + * + * \param entry the entry to be updated. + * \param label the new label for the entry in UTF-8 encoding. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTrayEntryLabel + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryLabel(SDL_TrayEntry *entry, const char *label); + +/** + * Gets the label of an entry. + * + * If the returned value is NULL, the entry is a separator. + * + * \param entry the entry to be read. + * \returns the label of the entry in UTF-8 encoding. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_SetTrayEntryLabel + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetTrayEntryLabel(SDL_TrayEntry *entry); + +/** + * Sets whether or not an entry is checked. + * + * The entry must have been created with the SDL_TRAYENTRY_CHECKBOX flag. + * + * \param entry the entry to be updated. + * \param checked true if the entry should be checked; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTrayEntryChecked + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryChecked(SDL_TrayEntry *entry, bool checked); + +/** + * Gets whether or not an entry is checked. + * + * The entry must have been created with the SDL_TRAYENTRY_CHECKBOX flag. + * + * \param entry the entry to be read. + * \returns true if the entry is checked; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_SetTrayEntryChecked + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTrayEntryChecked(SDL_TrayEntry *entry); + +/** + * Sets whether or not an entry is enabled. + * + * \param entry the entry to be updated. + * \param enabled true if the entry should be enabled; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTrayEntryEnabled + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryEnabled(SDL_TrayEntry *entry, bool enabled); + +/** + * Gets whether or not an entry is enabled. + * + * \param entry the entry to be read. + * \returns true if the entry is enabled; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_SetTrayEntryEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTrayEntryEnabled(SDL_TrayEntry *entry); + +/** + * Sets a callback to be invoked when the entry is selected. + * + * \param entry the entry to be updated. + * \param callback a callback to be invoked when the entry is selected. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryCallback(SDL_TrayEntry *entry, SDL_TrayCallback callback, void *userdata); + +/** + * Simulate a click on a tray entry. + * + * \param entry The entry to activate. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ClickTrayEntry(SDL_TrayEntry *entry); + +/** + * Destroys a tray object. + * + * This also destroys all associated menus and entries. + * + * \param tray the tray icon to be destroyed. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyTray(SDL_Tray *tray); + +/** + * Gets the menu containing a certain tray entry. + * + * \param entry the entry for which to get the parent menu. + * \returns the parent menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_GetTrayEntryParent(SDL_TrayEntry *entry); + +/** + * Gets the entry for which the menu is a submenu, if the current menu is a + * submenu. + * + * Either this function or SDL_GetTrayMenuParentTray() will return non-NULL + * for any given menu. + * + * \param menu the menu for which to get the parent entry. + * \returns the parent entry, or NULL if this menu is not a submenu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTraySubmenu + * \sa SDL_GetTrayMenuParentTray + */ +extern SDL_DECLSPEC SDL_TrayEntry * SDLCALL SDL_GetTrayMenuParentEntry(SDL_TrayMenu *menu); + +/** + * Gets the tray for which this menu is the first-level menu, if the current + * menu isn't a submenu. + * + * Either this function or SDL_GetTrayMenuParentEntry() will return non-NULL + * for any given menu. + * + * \param menu the menu for which to get the parent enttrayry. + * \returns the parent tray, or NULL if this menu is a submenu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTrayMenu + * \sa SDL_GetTrayMenuParentEntry + */ +extern SDL_DECLSPEC SDL_Tray * SDLCALL SDL_GetTrayMenuParentTray(SDL_TrayMenu *menu); + +/** + * Update the trays. + * + * This is called automatically by the event loop and is only needed if you're + * using trays but aren't handling SDL events. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateTrays(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_tray_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_version.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_version.h new file mode 100644 index 0000000..7443d52 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_version.h @@ -0,0 +1,183 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryVersion + * + * Functionality to query the current SDL version, both as headers the app was + * compiled against, and a library the app is linked to. + */ + +#ifndef SDL_version_h_ +#define SDL_version_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The current major version of SDL headers. + * + * If this were SDL version 3.2.1, this value would be 3. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MAJOR_VERSION 3 + +/** + * The current minor version of the SDL headers. + * + * If this were SDL version 3.2.1, this value would be 2. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MINOR_VERSION 2 + +/** + * The current micro (or patchlevel) version of the SDL headers. + * + * If this were SDL version 3.2.1, this value would be 1. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MICRO_VERSION 20 + +/** + * This macro turns the version numbers into a numeric value. + * + * (1,2,3) becomes 1002003. + * + * \param major the major version number. + * \param minor the minorversion number. + * \param patch the patch version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM(major, minor, patch) \ + ((major) * 1000000 + (minor) * 1000 + (patch)) + +/** + * This macro extracts the major version from a version number + * + * 1002003 becomes 1. + * + * \param version the version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM_MAJOR(version) ((version) / 1000000) + +/** + * This macro extracts the minor version from a version number + * + * 1002003 becomes 2. + * + * \param version the version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM_MINOR(version) (((version) / 1000) % 1000) + +/** + * This macro extracts the micro version from a version number + * + * 1002003 becomes 3. + * + * \param version the version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM_MICRO(version) ((version) % 1000) + +/** + * This is the version number macro for the current SDL version. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_GetVersion + */ +#define SDL_VERSION \ + SDL_VERSIONNUM(SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_MICRO_VERSION) + +/** + * This macro will evaluate to true if compiled with SDL at least X.Y.Z. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSION_ATLEAST(X, Y, Z) \ + (SDL_VERSION >= SDL_VERSIONNUM(X, Y, Z)) + +/** + * Get the version of SDL that is linked against your program. + * + * If you are linking to SDL dynamically, then it is possible that the current + * version will be different than the version you compiled against. This + * function returns the current version, while SDL_VERSION is the version you + * compiled with. + * + * This function may be called safely at any time, even before SDL_Init(). + * + * \returns the version of the linked library. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRevision + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetVersion(void); + +/** + * Get the code revision of SDL that is linked against your program. + * + * This value is the revision of the code you are linked with and may be + * different from the code you are compiling with, which is found in the + * constant SDL_REVISION. + * + * The revision is arbitrary string (a hash value) uniquely identifying the + * exact revision of the SDL library in use, and is only useful in comparing + * against other revisions. It is NOT an incrementing number. + * + * If SDL wasn't built from a git repository with the appropriate tools, this + * will return an empty string. + * + * You shouldn't use this function for anything but logging it for debugging + * purposes. The string is not intended to be reliable in any way. + * + * \returns an arbitrary string, uniquely identifying the exact revision of + * the SDL library in use. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetVersion + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetRevision(void); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_version_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_video.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_video.h new file mode 100644 index 0000000..3b3676d --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_video.h @@ -0,0 +1,3311 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryVideo + * + * SDL's video subsystem is largely interested in abstracting window + * management from the underlying operating system. You can create windows, + * manage them in various ways, set them fullscreen, and get events when + * interesting things happen with them, such as the mouse or keyboard + * interacting with a window. + * + * The video subsystem is also interested in abstracting away some + * platform-specific differences in OpenGL: context creation, swapping + * buffers, etc. This may be crucial to your app, but also you are not + * required to use OpenGL at all. In fact, SDL can provide rendering to those + * windows as well, either with an easy-to-use + * [2D API](https://wiki.libsdl.org/SDL3/CategoryRender) + * or with a more-powerful + * [GPU API](https://wiki.libsdl.org/SDL3/CategoryGPU) + * . Of course, it can simply get out of your way and give you the window + * handles you need to use Vulkan, Direct3D, Metal, or whatever else you like + * directly, too. + * + * The video subsystem covers a lot of functionality, out of necessity, so it + * is worth perusing the list of functions just to see what's available, but + * most apps can get by with simply creating a window and listening for + * events, so start with SDL_CreateWindow() and SDL_PollEvent(). + */ + +#ifndef SDL_video_h_ +#define SDL_video_h_ + +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a display for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the display is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_DisplayID; + +/** + * This is a unique ID for a window. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_WindowID; + +/* Global video properties... */ + +/** + * The pointer to the global `wl_display` object used by the Wayland video + * backend. + * + * Can be set before the video subsystem is initialized to import an external + * `wl_display` object from an application or toolkit for use in SDL, or read + * after initialization to export the `wl_display` used by the Wayland video + * backend. Setting this property after the video subsystem has been + * initialized has no effect, and reading it when the video subsystem is + * uninitialized will either return the user provided value, if one was set + * prior to initialization, or NULL. See docs/README-wayland.md for more + * information. + */ +#define SDL_PROP_GLOBAL_VIDEO_WAYLAND_WL_DISPLAY_POINTER "SDL.video.wayland.wl_display" + +/** + * System theme. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_SystemTheme +{ + SDL_SYSTEM_THEME_UNKNOWN, /**< Unknown system theme */ + SDL_SYSTEM_THEME_LIGHT, /**< Light colored system theme */ + SDL_SYSTEM_THEME_DARK /**< Dark colored system theme */ +} SDL_SystemTheme; + +/** + * Internal display mode data. + * + * This lives as a field in SDL_DisplayMode, as opaque data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DisplayMode + */ +typedef struct SDL_DisplayModeData SDL_DisplayModeData; + +/** + * The structure that defines a display mode. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetFullscreenDisplayModes + * \sa SDL_GetDesktopDisplayMode + * \sa SDL_GetCurrentDisplayMode + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_GetWindowFullscreenMode + */ +typedef struct SDL_DisplayMode +{ + SDL_DisplayID displayID; /**< the display this mode is associated with */ + SDL_PixelFormat format; /**< pixel format */ + int w; /**< width */ + int h; /**< height */ + float pixel_density; /**< scale converting size to pixels (e.g. a 1920x1080 mode with 2.0 scale would have 3840x2160 pixels) */ + float refresh_rate; /**< refresh rate (or 0.0f for unspecified) */ + int refresh_rate_numerator; /**< precise refresh rate numerator (or 0 for unspecified) */ + int refresh_rate_denominator; /**< precise refresh rate denominator */ + + SDL_DisplayModeData *internal; /**< Private */ + +} SDL_DisplayMode; + +/** + * Display orientation values; the way a display is rotated. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_DisplayOrientation +{ + SDL_ORIENTATION_UNKNOWN, /**< The display orientation can't be determined */ + SDL_ORIENTATION_LANDSCAPE, /**< The display is in landscape mode, with the right side up, relative to portrait mode */ + SDL_ORIENTATION_LANDSCAPE_FLIPPED, /**< The display is in landscape mode, with the left side up, relative to portrait mode */ + SDL_ORIENTATION_PORTRAIT, /**< The display is in portrait mode */ + SDL_ORIENTATION_PORTRAIT_FLIPPED /**< The display is in portrait mode, upside down */ +} SDL_DisplayOrientation; + +/** + * The struct used as an opaque handle to a window. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + */ +typedef struct SDL_Window SDL_Window; + +/** + * The flags on a window. + * + * These cover a lot of true/false, or on/off, window state. Some of it is + * immutable after being set through SDL_CreateWindow(), some of it can be + * changed on existing windows by the app, and some of it might be altered by + * the user or system outside of the app's control. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +typedef Uint64 SDL_WindowFlags; + +#define SDL_WINDOW_FULLSCREEN SDL_UINT64_C(0x0000000000000001) /**< window is in fullscreen mode */ +#define SDL_WINDOW_OPENGL SDL_UINT64_C(0x0000000000000002) /**< window usable with OpenGL context */ +#define SDL_WINDOW_OCCLUDED SDL_UINT64_C(0x0000000000000004) /**< window is occluded */ +#define SDL_WINDOW_HIDDEN SDL_UINT64_C(0x0000000000000008) /**< window is neither mapped onto the desktop nor shown in the taskbar/dock/window list; SDL_ShowWindow() is required for it to become visible */ +#define SDL_WINDOW_BORDERLESS SDL_UINT64_C(0x0000000000000010) /**< no window decoration */ +#define SDL_WINDOW_RESIZABLE SDL_UINT64_C(0x0000000000000020) /**< window can be resized */ +#define SDL_WINDOW_MINIMIZED SDL_UINT64_C(0x0000000000000040) /**< window is minimized */ +#define SDL_WINDOW_MAXIMIZED SDL_UINT64_C(0x0000000000000080) /**< window is maximized */ +#define SDL_WINDOW_MOUSE_GRABBED SDL_UINT64_C(0x0000000000000100) /**< window has grabbed mouse input */ +#define SDL_WINDOW_INPUT_FOCUS SDL_UINT64_C(0x0000000000000200) /**< window has input focus */ +#define SDL_WINDOW_MOUSE_FOCUS SDL_UINT64_C(0x0000000000000400) /**< window has mouse focus */ +#define SDL_WINDOW_EXTERNAL SDL_UINT64_C(0x0000000000000800) /**< window not created by SDL */ +#define SDL_WINDOW_MODAL SDL_UINT64_C(0x0000000000001000) /**< window is modal */ +#define SDL_WINDOW_HIGH_PIXEL_DENSITY SDL_UINT64_C(0x0000000000002000) /**< window uses high pixel density back buffer if possible */ +#define SDL_WINDOW_MOUSE_CAPTURE SDL_UINT64_C(0x0000000000004000) /**< window has mouse captured (unrelated to MOUSE_GRABBED) */ +#define SDL_WINDOW_MOUSE_RELATIVE_MODE SDL_UINT64_C(0x0000000000008000) /**< window has relative mode enabled */ +#define SDL_WINDOW_ALWAYS_ON_TOP SDL_UINT64_C(0x0000000000010000) /**< window should always be above others */ +#define SDL_WINDOW_UTILITY SDL_UINT64_C(0x0000000000020000) /**< window should be treated as a utility window, not showing in the task bar and window list */ +#define SDL_WINDOW_TOOLTIP SDL_UINT64_C(0x0000000000040000) /**< window should be treated as a tooltip and does not get mouse or keyboard focus, requires a parent window */ +#define SDL_WINDOW_POPUP_MENU SDL_UINT64_C(0x0000000000080000) /**< window should be treated as a popup menu, requires a parent window */ +#define SDL_WINDOW_KEYBOARD_GRABBED SDL_UINT64_C(0x0000000000100000) /**< window has grabbed keyboard input */ +#define SDL_WINDOW_VULKAN SDL_UINT64_C(0x0000000010000000) /**< window usable for Vulkan surface */ +#define SDL_WINDOW_METAL SDL_UINT64_C(0x0000000020000000) /**< window usable for Metal view */ +#define SDL_WINDOW_TRANSPARENT SDL_UINT64_C(0x0000000040000000) /**< window with transparent buffer */ +#define SDL_WINDOW_NOT_FOCUSABLE SDL_UINT64_C(0x0000000080000000) /**< window should not be focusable */ + + +/** + * A magic value used with SDL_WINDOWPOS_UNDEFINED. + * + * Generally this macro isn't used directly, but rather through + * SDL_WINDOWPOS_UNDEFINED or SDL_WINDOWPOS_UNDEFINED_DISPLAY. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_UNDEFINED_MASK 0x1FFF0000u + +/** + * Used to indicate that you don't care what the window position is. + * + * If you _really_ don't care, SDL_WINDOWPOS_UNDEFINED is the same, but always + * uses the primary display instead of specifying one. + * + * \param X the SDL_DisplayID of the display to use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_UNDEFINED_DISPLAY(X) (SDL_WINDOWPOS_UNDEFINED_MASK|(X)) + +/** + * Used to indicate that you don't care what the window position/display is. + * + * This always uses the primary display. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_UNDEFINED SDL_WINDOWPOS_UNDEFINED_DISPLAY(0) + +/** + * A macro to test if the window position is marked as "undefined." + * + * \param X the window position value. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_ISUNDEFINED(X) (((X)&0xFFFF0000) == SDL_WINDOWPOS_UNDEFINED_MASK) + +/** + * A magic value used with SDL_WINDOWPOS_CENTERED. + * + * Generally this macro isn't used directly, but rather through + * SDL_WINDOWPOS_CENTERED or SDL_WINDOWPOS_CENTERED_DISPLAY. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_CENTERED_MASK 0x2FFF0000u + +/** + * Used to indicate that the window position should be centered. + * + * SDL_WINDOWPOS_CENTERED is the same, but always uses the primary display + * instead of specifying one. + * + * \param X the SDL_DisplayID of the display to use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_CENTERED_DISPLAY(X) (SDL_WINDOWPOS_CENTERED_MASK|(X)) + +/** + * Used to indicate that the window position should be centered. + * + * This always uses the primary display. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_CENTERED SDL_WINDOWPOS_CENTERED_DISPLAY(0) + +/** + * A macro to test if the window position is marked as "centered." + * + * \param X the window position value. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_ISCENTERED(X) \ + (((X)&0xFFFF0000) == SDL_WINDOWPOS_CENTERED_MASK) + + +/** + * Window flash operation. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_FlashOperation +{ + SDL_FLASH_CANCEL, /**< Cancel any window flash state */ + SDL_FLASH_BRIEFLY, /**< Flash the window briefly to get attention */ + SDL_FLASH_UNTIL_FOCUSED /**< Flash the window until it gets focus */ +} SDL_FlashOperation; + +/** + * An opaque handle to an OpenGL context. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GL_CreateContext + */ +typedef struct SDL_GLContextState *SDL_GLContext; + +/** + * Opaque type for an EGL display. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_EGLDisplay; + +/** + * Opaque type for an EGL config. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_EGLConfig; + +/** + * Opaque type for an EGL surface. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_EGLSurface; + +/** + * An EGL attribute, used when creating an EGL context. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef intptr_t SDL_EGLAttrib; + +/** + * An EGL integer attribute, used when creating an EGL surface. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef int SDL_EGLint; + +/** + * EGL platform attribute initialization callback. + * + * This is called when SDL is attempting to create an EGL context, to let the + * app add extra attributes to its eglGetPlatformDisplay() call. + * + * The callback should return a pointer to an EGL attribute array terminated + * with `EGL_NONE`. If this function returns NULL, the SDL_CreateWindow + * process will fail gracefully. + * + * The returned pointer should be allocated with SDL_malloc() and will be + * passed to SDL_free(). + * + * The arrays returned by each callback will be appended to the existing + * attribute arrays defined by SDL. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \returns a newly-allocated array of attributes, terminated with `EGL_NONE`. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EGL_SetAttributeCallbacks + */ +typedef SDL_EGLAttrib *(SDLCALL *SDL_EGLAttribArrayCallback)(void *userdata); + +/** + * EGL surface/context attribute initialization callback types. + * + * This is called when SDL is attempting to create an EGL surface, to let the + * app add extra attributes to its eglCreateWindowSurface() or + * eglCreateContext calls. + * + * For convenience, the EGLDisplay and EGLConfig to use are provided to the + * callback. + * + * The callback should return a pointer to an EGL attribute array terminated + * with `EGL_NONE`. If this function returns NULL, the SDL_CreateWindow + * process will fail gracefully. + * + * The returned pointer should be allocated with SDL_malloc() and will be + * passed to SDL_free(). + * + * The arrays returned by each callback will be appended to the existing + * attribute arrays defined by SDL. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \param display the EGL display to be used. + * \param config the EGL config to be used. + * \returns a newly-allocated array of attributes, terminated with `EGL_NONE`. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EGL_SetAttributeCallbacks + */ +typedef SDL_EGLint *(SDLCALL *SDL_EGLIntArrayCallback)(void *userdata, SDL_EGLDisplay display, SDL_EGLConfig config); + +/** + * An enumeration of OpenGL configuration attributes. + * + * While you can set most OpenGL attributes normally, the attributes listed + * above must be known before SDL creates the window that will be used with + * the OpenGL context. These attributes are set and read with + * SDL_GL_SetAttribute() and SDL_GL_GetAttribute(). + * + * In some cases, these attributes are minimum requests; the GL does not + * promise to give you exactly what you asked for. It's possible to ask for a + * 16-bit depth buffer and get a 24-bit one instead, for example, or to ask + * for no stencil buffer and still have one available. Context creation should + * fail if the GL can't provide your requested attributes at a minimum, but + * you should check to see exactly what you got. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GLAttr +{ + SDL_GL_RED_SIZE, /**< the minimum number of bits for the red channel of the color buffer; defaults to 8. */ + SDL_GL_GREEN_SIZE, /**< the minimum number of bits for the green channel of the color buffer; defaults to 8. */ + SDL_GL_BLUE_SIZE, /**< the minimum number of bits for the blue channel of the color buffer; defaults to 8. */ + SDL_GL_ALPHA_SIZE, /**< the minimum number of bits for the alpha channel of the color buffer; defaults to 8. */ + SDL_GL_BUFFER_SIZE, /**< the minimum number of bits for frame buffer size; defaults to 0. */ + SDL_GL_DOUBLEBUFFER, /**< whether the output is single or double buffered; defaults to double buffering on. */ + SDL_GL_DEPTH_SIZE, /**< the minimum number of bits in the depth buffer; defaults to 16. */ + SDL_GL_STENCIL_SIZE, /**< the minimum number of bits in the stencil buffer; defaults to 0. */ + SDL_GL_ACCUM_RED_SIZE, /**< the minimum number of bits for the red channel of the accumulation buffer; defaults to 0. */ + SDL_GL_ACCUM_GREEN_SIZE, /**< the minimum number of bits for the green channel of the accumulation buffer; defaults to 0. */ + SDL_GL_ACCUM_BLUE_SIZE, /**< the minimum number of bits for the blue channel of the accumulation buffer; defaults to 0. */ + SDL_GL_ACCUM_ALPHA_SIZE, /**< the minimum number of bits for the alpha channel of the accumulation buffer; defaults to 0. */ + SDL_GL_STEREO, /**< whether the output is stereo 3D; defaults to off. */ + SDL_GL_MULTISAMPLEBUFFERS, /**< the number of buffers used for multisample anti-aliasing; defaults to 0. */ + SDL_GL_MULTISAMPLESAMPLES, /**< the number of samples used around the current pixel used for multisample anti-aliasing. */ + SDL_GL_ACCELERATED_VISUAL, /**< set to 1 to require hardware acceleration, set to 0 to force software rendering; defaults to allow either. */ + SDL_GL_RETAINED_BACKING, /**< not used (deprecated). */ + SDL_GL_CONTEXT_MAJOR_VERSION, /**< OpenGL context major version. */ + SDL_GL_CONTEXT_MINOR_VERSION, /**< OpenGL context minor version. */ + SDL_GL_CONTEXT_FLAGS, /**< some combination of 0 or more of elements of the SDL_GLContextFlag enumeration; defaults to 0. */ + SDL_GL_CONTEXT_PROFILE_MASK, /**< type of GL context (Core, Compatibility, ES). See SDL_GLProfile; default value depends on platform. */ + SDL_GL_SHARE_WITH_CURRENT_CONTEXT, /**< OpenGL context sharing; defaults to 0. */ + SDL_GL_FRAMEBUFFER_SRGB_CAPABLE, /**< requests sRGB capable visual; defaults to 0. */ + SDL_GL_CONTEXT_RELEASE_BEHAVIOR, /**< sets context the release behavior. See SDL_GLContextReleaseFlag; defaults to FLUSH. */ + SDL_GL_CONTEXT_RESET_NOTIFICATION, /**< set context reset notification. See SDL_GLContextResetNotification; defaults to NO_NOTIFICATION. */ + SDL_GL_CONTEXT_NO_ERROR, + SDL_GL_FLOATBUFFERS, + SDL_GL_EGL_PLATFORM +} SDL_GLAttr; + +/** + * Possible values to be set for the SDL_GL_CONTEXT_PROFILE_MASK attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLProfile; + +#define SDL_GL_CONTEXT_PROFILE_CORE 0x0001 /**< OpenGL Core Profile context */ +#define SDL_GL_CONTEXT_PROFILE_COMPATIBILITY 0x0002 /**< OpenGL Compatibility Profile context */ +#define SDL_GL_CONTEXT_PROFILE_ES 0x0004 /**< GLX_CONTEXT_ES2_PROFILE_BIT_EXT */ + + +/** + * Possible flags to be set for the SDL_GL_CONTEXT_FLAGS attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLContextFlag; + +#define SDL_GL_CONTEXT_DEBUG_FLAG 0x0001 +#define SDL_GL_CONTEXT_FORWARD_COMPATIBLE_FLAG 0x0002 +#define SDL_GL_CONTEXT_ROBUST_ACCESS_FLAG 0x0004 +#define SDL_GL_CONTEXT_RESET_ISOLATION_FLAG 0x0008 + + +/** + * Possible values to be set for the SDL_GL_CONTEXT_RELEASE_BEHAVIOR + * attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLContextReleaseFlag; + +#define SDL_GL_CONTEXT_RELEASE_BEHAVIOR_NONE 0x0000 +#define SDL_GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH 0x0001 + + +/** + * Possible values to be set SDL_GL_CONTEXT_RESET_NOTIFICATION attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLContextResetNotification; + +#define SDL_GL_CONTEXT_RESET_NO_NOTIFICATION 0x0000 +#define SDL_GL_CONTEXT_RESET_LOSE_CONTEXT 0x0001 + + +/* Function prototypes */ + +/** + * Get the number of video drivers compiled into SDL. + * + * \returns the number of built in video drivers. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetVideoDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumVideoDrivers(void); + +/** + * Get the name of a built in video driver. + * + * The video drivers are presented in the order in which they are normally + * checked during initialization. + * + * The names of drivers are all simple, low-ASCII identifiers, like "cocoa", + * "x11" or "windows". These never have Unicode characters, and are not meant + * to be proper names. + * + * \param index the index of a video driver. + * \returns the name of the video driver with the given **index**. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumVideoDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetVideoDriver(int index); + +/** + * Get the name of the currently initialized video driver. + * + * The names of drivers are all simple, low-ASCII identifiers, like "cocoa", + * "x11" or "windows". These never have Unicode characters, and are not meant + * to be proper names. + * + * \returns the name of the current video driver or NULL if no driver has been + * initialized. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumVideoDrivers + * \sa SDL_GetVideoDriver + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCurrentVideoDriver(void); + +/** + * Get the current system theme. + * + * \returns the current system theme, light, dark, or unknown. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SystemTheme SDLCALL SDL_GetSystemTheme(void); + +/** + * Get a list of currently connected displays. + * + * \param count a pointer filled in with the number of displays returned, may + * be NULL. + * \returns a 0 terminated array of display instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_DisplayID * SDLCALL SDL_GetDisplays(int *count); + +/** + * Return the primary display. + * + * \returns the instance ID of the primary display on success or 0 on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetPrimaryDisplay(void); + +/** + * Get the properties associated with a display. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_DISPLAY_HDR_ENABLED_BOOLEAN`: true if the display has HDR + * headroom above the SDR white point. This is for informational and + * diagnostic purposes only, as not all platforms provide this information + * at the display level. + * + * On KMS/DRM: + * + * - `SDL_PROP_DISPLAY_KMSDRM_PANEL_ORIENTATION_NUMBER`: the "panel + * orientation" property for the display in degrees of clockwise rotation. + * Note that this is provided only as a hint, and the application is + * responsible for any coordinate transformations needed to conform to the + * requested display orientation. + * + * \param displayID the instance ID of the display to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetDisplayProperties(SDL_DisplayID displayID); + +#define SDL_PROP_DISPLAY_HDR_ENABLED_BOOLEAN "SDL.display.HDR_enabled" +#define SDL_PROP_DISPLAY_KMSDRM_PANEL_ORIENTATION_NUMBER "SDL.display.KMSDRM.panel_orientation" + +/** + * Get the name of a display in UTF-8 encoding. + * + * \param displayID the instance ID of the display to query. + * \returns the name of a display or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetDisplayName(SDL_DisplayID displayID); + +/** + * Get the desktop area represented by a display. + * + * The primary display is often located at (0,0), but may be placed at a + * different location depending on monitor layout. + * + * \param displayID the instance ID of the display to query. + * \param rect the SDL_Rect structure filled in with the display bounds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayUsableBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDisplayBounds(SDL_DisplayID displayID, SDL_Rect *rect); + +/** + * Get the usable desktop area represented by a display, in screen + * coordinates. + * + * This is the same area as SDL_GetDisplayBounds() reports, but with portions + * reserved by the system removed. For example, on Apple's macOS, this + * subtracts the area occupied by the menu bar and dock. + * + * Setting a window to be fullscreen generally bypasses these unusable areas, + * so these are good guidelines for the maximum space available to a + * non-fullscreen window. + * + * \param displayID the instance ID of the display to query. + * \param rect the SDL_Rect structure filled in with the display bounds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDisplayUsableBounds(SDL_DisplayID displayID, SDL_Rect *rect); + +/** + * Get the orientation of a display when it is unrotated. + * + * \param displayID the instance ID of the display to query. + * \returns the SDL_DisplayOrientation enum value of the display, or + * `SDL_ORIENTATION_UNKNOWN` if it isn't available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayOrientation SDLCALL SDL_GetNaturalDisplayOrientation(SDL_DisplayID displayID); + +/** + * Get the orientation of a display. + * + * \param displayID the instance ID of the display to query. + * \returns the SDL_DisplayOrientation enum value of the display, or + * `SDL_ORIENTATION_UNKNOWN` if it isn't available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayOrientation SDLCALL SDL_GetCurrentDisplayOrientation(SDL_DisplayID displayID); + +/** + * Get the content scale of a display. + * + * The content scale is the expected scale for content based on the DPI + * settings of the display. For example, a 4K display might have a 2.0 (200%) + * display scale, which means that the user expects UI elements to be twice as + * big on this display, to aid in readability. + * + * After window creation, SDL_GetWindowDisplayScale() should be used to query + * the content scale factor for individual windows instead of querying the + * display for a window and calling this function, as the per-window content + * scale factor may differ from the base value of the display it is on, + * particularly on high-DPI and/or multi-monitor desktop configurations. + * + * \param displayID the instance ID of the display to query. + * \returns the content scale of the display, or 0.0f on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowDisplayScale + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetDisplayContentScale(SDL_DisplayID displayID); + +/** + * Get a list of fullscreen display modes available on a display. + * + * The display modes are sorted in this priority: + * + * - w -> largest to smallest + * - h -> largest to smallest + * - bits per pixel -> more colors to fewer colors + * - packed pixel layout -> largest to smallest + * - refresh rate -> highest to lowest + * - pixel density -> lowest to highest + * + * \param displayID the instance ID of the display to query. + * \param count a pointer filled in with the number of display modes returned, + * may be NULL. + * \returns a NULL terminated array of display mode pointers or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayMode ** SDLCALL SDL_GetFullscreenDisplayModes(SDL_DisplayID displayID, int *count); + +/** + * Get the closest match to the requested display mode. + * + * The available display modes are scanned and `closest` is filled in with the + * closest mode matching the requested mode and returned. The mode format and + * refresh rate default to the desktop mode if they are set to 0. The modes + * are scanned with size being first priority, format being second priority, + * and finally checking the refresh rate. If all the available modes are too + * small, then false is returned. + * + * \param displayID the instance ID of the display to query. + * \param w the width in pixels of the desired display mode. + * \param h the height in pixels of the desired display mode. + * \param refresh_rate the refresh rate of the desired display mode, or 0.0f + * for the desktop refresh rate. + * \param include_high_density_modes boolean to include high density modes in + * the search. + * \param closest a pointer filled in with the closest display mode equal to + * or larger than the desired mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + * \sa SDL_GetFullscreenDisplayModes + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetClosestFullscreenDisplayMode(SDL_DisplayID displayID, int w, int h, float refresh_rate, bool include_high_density_modes, SDL_DisplayMode *closest); + +/** + * Get information about the desktop's display mode. + * + * There's a difference between this function and SDL_GetCurrentDisplayMode() + * when SDL runs fullscreen and has changed the resolution. In that case this + * function will return the previous native display mode, and not the current + * display mode. + * + * \param displayID the instance ID of the display to query. + * \returns a pointer to the desktop display mode or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentDisplayMode + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC const SDL_DisplayMode * SDLCALL SDL_GetDesktopDisplayMode(SDL_DisplayID displayID); + +/** + * Get information about the current display mode. + * + * There's a difference between this function and SDL_GetDesktopDisplayMode() + * when SDL runs fullscreen and has changed the resolution. In that case this + * function will return the current display mode, and not the previous native + * display mode. + * + * \param displayID the instance ID of the display to query. + * \returns a pointer to the desktop display mode or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDesktopDisplayMode + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC const SDL_DisplayMode * SDLCALL SDL_GetCurrentDisplayMode(SDL_DisplayID displayID); + +/** + * Get the display containing a point. + * + * \param point the point to query. + * \returns the instance ID of the display containing the point or 0 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetDisplayForPoint(const SDL_Point *point); + +/** + * Get the display primarily containing a rect. + * + * \param rect the rect to query. + * \returns the instance ID of the display entirely containing the rect or + * closest to the center of the rect on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetDisplayForRect(const SDL_Rect *rect); + +/** + * Get the display associated with a window. + * + * \param window the window to query. + * \returns the instance ID of the display containing the center of the window + * on success or 0 on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetDisplayForWindow(SDL_Window *window); + +/** + * Get the pixel density of a window. + * + * This is a ratio of pixel size to window size. For example, if the window is + * 1920x1080 and it has a high density back buffer of 3840x2160 pixels, it + * would have a pixel density of 2.0. + * + * \param window the window to query. + * \returns the pixel density or 0.0f on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowDisplayScale + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetWindowPixelDensity(SDL_Window *window); + +/** + * Get the content display scale relative to a window's pixel size. + * + * This is a combination of the window pixel density and the display content + * scale, and is the expected scale for displaying content in this window. For + * example, if a 3840x2160 window had a display scale of 2.0, the user expects + * the content to take twice as many pixels and be the same physical size as + * if it were being displayed in a 1920x1080 window with a display scale of + * 1.0. + * + * Conceptually this value corresponds to the scale display setting, and is + * updated when that setting is changed, or the window moves to a display with + * a different scale setting. + * + * \param window the window to query. + * \returns the display scale, or 0.0f on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetWindowDisplayScale(SDL_Window *window); + +/** + * Set the display mode to use when a window is visible and fullscreen. + * + * This only affects the display mode used when the window is fullscreen. To + * change the window size when the window is not fullscreen, use + * SDL_SetWindowSize(). + * + * If the window is currently in the fullscreen state, this request is + * asynchronous on some windowing systems and the new mode dimensions may not + * be applied immediately upon the return of this function. If an immediate + * change is required, call SDL_SyncWindow() to block until the changes have + * taken effect. + * + * When the new mode takes effect, an SDL_EVENT_WINDOW_RESIZED and/or an + * SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED event will be emitted with the new mode + * dimensions. + * + * \param window the window to affect. + * \param mode a pointer to the display mode to use, which can be NULL for + * borderless fullscreen desktop mode, or one of the fullscreen + * modes returned by SDL_GetFullscreenDisplayModes() to set an + * exclusive fullscreen mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFullscreenMode + * \sa SDL_SetWindowFullscreen + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowFullscreenMode(SDL_Window *window, const SDL_DisplayMode *mode); + +/** + * Query the display mode to use when a window is visible at fullscreen. + * + * \param window the window to query. + * \returns a pointer to the exclusive fullscreen mode to use or NULL for + * borderless fullscreen desktop mode. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_SetWindowFullscreen + */ +extern SDL_DECLSPEC const SDL_DisplayMode * SDLCALL SDL_GetWindowFullscreenMode(SDL_Window *window); + +/** + * Get the raw ICC profile data for the screen the window is currently on. + * + * \param window the window to query. + * \param size the size of the ICC profile. + * \returns the raw ICC profile data on success or NULL on failure; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetWindowICCProfile(SDL_Window *window, size_t *size); + +/** + * Get the pixel format associated with the window. + * + * \param window the window to query. + * \returns the pixel format of the window on success or + * SDL_PIXELFORMAT_UNKNOWN on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PixelFormat SDLCALL SDL_GetWindowPixelFormat(SDL_Window *window); + +/** + * Get a list of valid windows. + * + * \param count a pointer filled in with the number of windows returned, may + * be NULL. + * \returns a NULL terminated array of SDL_Window pointers or NULL on failure; + * call SDL_GetError() for more information. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window ** SDLCALL SDL_GetWindows(int *count); + +/** + * Create a window with the specified dimensions and flags. + * + * The window size is a request and may be different than expected based on + * the desktop layout and window manager policies. Your application should be + * prepared to handle a window of any size. + * + * `flags` may be any of the following OR'd together: + * + * - `SDL_WINDOW_FULLSCREEN`: fullscreen window at desktop resolution + * - `SDL_WINDOW_OPENGL`: window usable with an OpenGL context + * - `SDL_WINDOW_OCCLUDED`: window partially or completely obscured by another + * window + * - `SDL_WINDOW_HIDDEN`: window is not visible + * - `SDL_WINDOW_BORDERLESS`: no window decoration + * - `SDL_WINDOW_RESIZABLE`: window can be resized + * - `SDL_WINDOW_MINIMIZED`: window is minimized + * - `SDL_WINDOW_MAXIMIZED`: window is maximized + * - `SDL_WINDOW_MOUSE_GRABBED`: window has grabbed mouse focus + * - `SDL_WINDOW_INPUT_FOCUS`: window has input focus + * - `SDL_WINDOW_MOUSE_FOCUS`: window has mouse focus + * - `SDL_WINDOW_EXTERNAL`: window not created by SDL + * - `SDL_WINDOW_MODAL`: window is modal + * - `SDL_WINDOW_HIGH_PIXEL_DENSITY`: window uses high pixel density back + * buffer if possible + * - `SDL_WINDOW_MOUSE_CAPTURE`: window has mouse captured (unrelated to + * MOUSE_GRABBED) + * - `SDL_WINDOW_ALWAYS_ON_TOP`: window should always be above others + * - `SDL_WINDOW_UTILITY`: window should be treated as a utility window, not + * showing in the task bar and window list + * - `SDL_WINDOW_TOOLTIP`: window should be treated as a tooltip and does not + * get mouse or keyboard focus, requires a parent window + * - `SDL_WINDOW_POPUP_MENU`: window should be treated as a popup menu, + * requires a parent window + * - `SDL_WINDOW_KEYBOARD_GRABBED`: window has grabbed keyboard input + * - `SDL_WINDOW_VULKAN`: window usable with a Vulkan instance + * - `SDL_WINDOW_METAL`: window usable with a Metal instance + * - `SDL_WINDOW_TRANSPARENT`: window with transparent buffer + * - `SDL_WINDOW_NOT_FOCUSABLE`: window should not be focusable + * + * The SDL_Window is implicitly shown if SDL_WINDOW_HIDDEN is not set. + * + * On Apple's macOS, you **must** set the NSHighResolutionCapable Info.plist + * property to YES, otherwise you will not receive a High-DPI OpenGL canvas. + * + * The window pixel size may differ from its window coordinate size if the + * window is on a high pixel density display. Use SDL_GetWindowSize() to query + * the client area's size in window coordinates, and + * SDL_GetWindowSizeInPixels() or SDL_GetRenderOutputSize() to query the + * drawable size in pixels. Note that the drawable size can vary after the + * window is created and should be queried again if you get an + * SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED event. + * + * If the window is created with any of the SDL_WINDOW_OPENGL or + * SDL_WINDOW_VULKAN flags, then the corresponding LoadLibrary function + * (SDL_GL_LoadLibrary or SDL_Vulkan_LoadLibrary) is called and the + * corresponding UnloadLibrary function is called by SDL_DestroyWindow(). + * + * If SDL_WINDOW_VULKAN is specified and there isn't a working Vulkan driver, + * SDL_CreateWindow() will fail, because SDL_Vulkan_LoadLibrary() will fail. + * + * If SDL_WINDOW_METAL is specified on an OS that does not support Metal, + * SDL_CreateWindow() will fail. + * + * If you intend to use this window with an SDL_Renderer, you should use + * SDL_CreateWindowAndRenderer() instead of this function, to avoid window + * flicker. + * + * On non-Apple devices, SDL requires you to either not link to the Vulkan + * loader or link to a dynamic library version. This limitation may be removed + * in a future version of SDL. + * + * \param title the title of the window, in UTF-8 encoding. + * \param w the width of the window. + * \param h the height of the window. + * \param flags 0, or one or more SDL_WindowFlags OR'd together. + * \returns the window that was created or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindowAndRenderer + * \sa SDL_CreatePopupWindow + * \sa SDL_CreateWindowWithProperties + * \sa SDL_DestroyWindow + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_CreateWindow(const char *title, int w, int h, SDL_WindowFlags flags); + +/** + * Create a child popup window of the specified parent window. + * + * The window size is a request and may be different than expected based on + * the desktop layout and window manager policies. Your application should be + * prepared to handle a window of any size. + * + * The flags parameter **must** contain at least one of the following: + * + * - `SDL_WINDOW_TOOLTIP`: The popup window is a tooltip and will not pass any + * input events. + * - `SDL_WINDOW_POPUP_MENU`: The popup window is a popup menu. The topmost + * popup menu will implicitly gain the keyboard focus. + * + * The following flags are not relevant to popup window creation and will be + * ignored: + * + * - `SDL_WINDOW_MINIMIZED` + * - `SDL_WINDOW_MAXIMIZED` + * - `SDL_WINDOW_FULLSCREEN` + * - `SDL_WINDOW_BORDERLESS` + * + * The following flags are incompatible with popup window creation and will + * cause it to fail: + * + * - `SDL_WINDOW_UTILITY` + * - `SDL_WINDOW_MODAL` + * + * The parent parameter **must** be non-null and a valid window. The parent of + * a popup window can be either a regular, toplevel window, or another popup + * window. + * + * Popup windows cannot be minimized, maximized, made fullscreen, raised, + * flash, be made a modal window, be the parent of a toplevel window, or grab + * the mouse and/or keyboard. Attempts to do so will fail. + * + * Popup windows implicitly do not have a border/decorations and do not appear + * on the taskbar/dock or in lists of windows such as alt-tab menus. + * + * By default, popup window positions will automatically be constrained to keep + * the entire window within display bounds. This can be overridden with the + * `SDL_PROP_WINDOW_CREATE_CONSTRAIN_POPUP_BOOLEAN` property. + * + * By default, popup menus will automatically grab keyboard focus from the parent + * when shown. This behavior can be overridden by setting the `SDL_WINDOW_NOT_FOCUSABLE` + * flag, setting the `SDL_PROP_WINDOW_CREATE_FOCUSABLE_BOOLEAN` property to false, or + * toggling it after creation via the `SDL_SetWindowFocusable()` function. + * + * If a parent window is hidden or destroyed, any child popup windows will be + * recursively hidden or destroyed as well. Child popup windows not explicitly + * hidden will be restored when the parent is shown. + * + * \param parent the parent of the window, must not be NULL. + * \param offset_x the x position of the popup window relative to the origin + * of the parent. + * \param offset_y the y position of the popup window relative to the origin + * of the parent window. + * \param w the width of the window. + * \param h the height of the window. + * \param flags SDL_WINDOW_TOOLTIP or SDL_WINDOW_POPUP_MENU, and zero or more + * additional SDL_WindowFlags OR'd together. + * \returns the window that was created or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + * \sa SDL_CreateWindowWithProperties + * \sa SDL_DestroyWindow + * \sa SDL_GetWindowParent + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_CreatePopupWindow(SDL_Window *parent, int offset_x, int offset_y, int w, int h, SDL_WindowFlags flags); + +/** + * Create a window with the specified properties. + * + * The window size is a request and may be different than expected based on + * the desktop layout and window manager policies. Your application should be + * prepared to handle a window of any size. + * + * These are the supported properties: + * + * - `SDL_PROP_WINDOW_CREATE_ALWAYS_ON_TOP_BOOLEAN`: true if the window should + * be always on top + * - `SDL_PROP_WINDOW_CREATE_BORDERLESS_BOOLEAN`: true if the window has no + * window decoration + * - `SDL_PROP_WINDOW_CREATE_CONSTRAIN_POPUP_BOOLEAN`: true if the "tooltip" and + * "menu" window types should be automatically constrained to be entirely within + * display bounds (default), false if no constraints on the position are desired. + * - `SDL_PROP_WINDOW_CREATE_EXTERNAL_GRAPHICS_CONTEXT_BOOLEAN`: true if the + * window will be used with an externally managed graphics context. + * - `SDL_PROP_WINDOW_CREATE_FOCUSABLE_BOOLEAN`: true if the window should + * accept keyboard input (defaults true) + * - `SDL_PROP_WINDOW_CREATE_FULLSCREEN_BOOLEAN`: true if the window should + * start in fullscreen mode at desktop resolution + * - `SDL_PROP_WINDOW_CREATE_HEIGHT_NUMBER`: the height of the window + * - `SDL_PROP_WINDOW_CREATE_HIDDEN_BOOLEAN`: true if the window should start + * hidden + * - `SDL_PROP_WINDOW_CREATE_HIGH_PIXEL_DENSITY_BOOLEAN`: true if the window + * uses a high pixel density buffer if possible + * - `SDL_PROP_WINDOW_CREATE_MAXIMIZED_BOOLEAN`: true if the window should + * start maximized + * - `SDL_PROP_WINDOW_CREATE_MENU_BOOLEAN`: true if the window is a popup menu + * - `SDL_PROP_WINDOW_CREATE_METAL_BOOLEAN`: true if the window will be used + * with Metal rendering + * - `SDL_PROP_WINDOW_CREATE_MINIMIZED_BOOLEAN`: true if the window should + * start minimized + * - `SDL_PROP_WINDOW_CREATE_MODAL_BOOLEAN`: true if the window is modal to + * its parent + * - `SDL_PROP_WINDOW_CREATE_MOUSE_GRABBED_BOOLEAN`: true if the window starts + * with grabbed mouse focus + * - `SDL_PROP_WINDOW_CREATE_OPENGL_BOOLEAN`: true if the window will be used + * with OpenGL rendering + * - `SDL_PROP_WINDOW_CREATE_PARENT_POINTER`: an SDL_Window that will be the + * parent of this window, required for windows with the "tooltip", "menu", + * and "modal" properties + * - `SDL_PROP_WINDOW_CREATE_RESIZABLE_BOOLEAN`: true if the window should be + * resizable + * - `SDL_PROP_WINDOW_CREATE_TITLE_STRING`: the title of the window, in UTF-8 + * encoding + * - `SDL_PROP_WINDOW_CREATE_TRANSPARENT_BOOLEAN`: true if the window show + * transparent in the areas with alpha of 0 + * - `SDL_PROP_WINDOW_CREATE_TOOLTIP_BOOLEAN`: true if the window is a tooltip + * - `SDL_PROP_WINDOW_CREATE_UTILITY_BOOLEAN`: true if the window is a utility + * window, not showing in the task bar and window list + * - `SDL_PROP_WINDOW_CREATE_VULKAN_BOOLEAN`: true if the window will be used + * with Vulkan rendering + * - `SDL_PROP_WINDOW_CREATE_WIDTH_NUMBER`: the width of the window + * - `SDL_PROP_WINDOW_CREATE_X_NUMBER`: the x position of the window, or + * `SDL_WINDOWPOS_CENTERED`, defaults to `SDL_WINDOWPOS_UNDEFINED`. This is + * relative to the parent for windows with the "tooltip" or "menu" property + * set. + * - `SDL_PROP_WINDOW_CREATE_Y_NUMBER`: the y position of the window, or + * `SDL_WINDOWPOS_CENTERED`, defaults to `SDL_WINDOWPOS_UNDEFINED`. This is + * relative to the parent for windows with the "tooltip" or "menu" property + * set. + * + * These are additional supported properties on macOS: + * + * - `SDL_PROP_WINDOW_CREATE_COCOA_WINDOW_POINTER`: the + * `(__unsafe_unretained)` NSWindow associated with the window, if you want + * to wrap an existing window. + * - `SDL_PROP_WINDOW_CREATE_COCOA_VIEW_POINTER`: the `(__unsafe_unretained)` + * NSView associated with the window, defaults to `[window contentView]` + * + * These are additional supported properties on Wayland: + * + * - `SDL_PROP_WINDOW_CREATE_WAYLAND_SURFACE_ROLE_CUSTOM_BOOLEAN` - true if + * the application wants to use the Wayland surface for a custom role and + * does not want it attached to an XDG toplevel window. See + * [README/wayland](README/wayland) for more information on using custom + * surfaces. + * - `SDL_PROP_WINDOW_CREATE_WAYLAND_CREATE_EGL_WINDOW_BOOLEAN` - true if the + * application wants an associated `wl_egl_window` object to be created and + * attached to the window, even if the window does not have the OpenGL + * property or `SDL_WINDOW_OPENGL` flag set. + * - `SDL_PROP_WINDOW_CREATE_WAYLAND_WL_SURFACE_POINTER` - the wl_surface + * associated with the window, if you want to wrap an existing window. See + * [README/wayland](README/wayland) for more information. + * + * These are additional supported properties on Windows: + * + * - `SDL_PROP_WINDOW_CREATE_WIN32_HWND_POINTER`: the HWND associated with the + * window, if you want to wrap an existing window. + * - `SDL_PROP_WINDOW_CREATE_WIN32_PIXEL_FORMAT_HWND_POINTER`: optional, + * another window to share pixel format with, useful for OpenGL windows + * + * These are additional supported properties with X11: + * + * - `SDL_PROP_WINDOW_CREATE_X11_WINDOW_NUMBER`: the X11 Window associated + * with the window, if you want to wrap an existing window. + * + * The window is implicitly shown if the "hidden" property is not set. + * + * Windows with the "tooltip" and "menu" properties are popup windows and have + * the behaviors and guidelines outlined in SDL_CreatePopupWindow(). + * + * If this window is being created to be used with an SDL_Renderer, you should + * not add a graphics API specific property + * (`SDL_PROP_WINDOW_CREATE_OPENGL_BOOLEAN`, etc), as SDL will handle that + * internally when it chooses a renderer. However, SDL might need to recreate + * your window at that point, which may cause the window to appear briefly, + * and then flicker as it is recreated. The correct approach to this is to + * create the window with the `SDL_PROP_WINDOW_CREATE_HIDDEN_BOOLEAN` property + * set to true, then create the renderer, then show the window with + * SDL_ShowWindow(). + * + * \param props the properties to use. + * \returns the window that was created or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + * \sa SDL_CreateWindow + * \sa SDL_DestroyWindow + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_CreateWindowWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_WINDOW_CREATE_ALWAYS_ON_TOP_BOOLEAN "SDL.window.create.always_on_top" +#define SDL_PROP_WINDOW_CREATE_BORDERLESS_BOOLEAN "SDL.window.create.borderless" +#define SDL_PROP_WINDOW_CREATE_CONSTRAIN_POPUP_BOOLEAN "SDL.window.create.constrain_popup" +#define SDL_PROP_WINDOW_CREATE_FOCUSABLE_BOOLEAN "SDL.window.create.focusable" +#define SDL_PROP_WINDOW_CREATE_EXTERNAL_GRAPHICS_CONTEXT_BOOLEAN "SDL.window.create.external_graphics_context" +#define SDL_PROP_WINDOW_CREATE_FLAGS_NUMBER "SDL.window.create.flags" +#define SDL_PROP_WINDOW_CREATE_FULLSCREEN_BOOLEAN "SDL.window.create.fullscreen" +#define SDL_PROP_WINDOW_CREATE_HEIGHT_NUMBER "SDL.window.create.height" +#define SDL_PROP_WINDOW_CREATE_HIDDEN_BOOLEAN "SDL.window.create.hidden" +#define SDL_PROP_WINDOW_CREATE_HIGH_PIXEL_DENSITY_BOOLEAN "SDL.window.create.high_pixel_density" +#define SDL_PROP_WINDOW_CREATE_MAXIMIZED_BOOLEAN "SDL.window.create.maximized" +#define SDL_PROP_WINDOW_CREATE_MENU_BOOLEAN "SDL.window.create.menu" +#define SDL_PROP_WINDOW_CREATE_METAL_BOOLEAN "SDL.window.create.metal" +#define SDL_PROP_WINDOW_CREATE_MINIMIZED_BOOLEAN "SDL.window.create.minimized" +#define SDL_PROP_WINDOW_CREATE_MODAL_BOOLEAN "SDL.window.create.modal" +#define SDL_PROP_WINDOW_CREATE_MOUSE_GRABBED_BOOLEAN "SDL.window.create.mouse_grabbed" +#define SDL_PROP_WINDOW_CREATE_OPENGL_BOOLEAN "SDL.window.create.opengl" +#define SDL_PROP_WINDOW_CREATE_PARENT_POINTER "SDL.window.create.parent" +#define SDL_PROP_WINDOW_CREATE_RESIZABLE_BOOLEAN "SDL.window.create.resizable" +#define SDL_PROP_WINDOW_CREATE_TITLE_STRING "SDL.window.create.title" +#define SDL_PROP_WINDOW_CREATE_TRANSPARENT_BOOLEAN "SDL.window.create.transparent" +#define SDL_PROP_WINDOW_CREATE_TOOLTIP_BOOLEAN "SDL.window.create.tooltip" +#define SDL_PROP_WINDOW_CREATE_UTILITY_BOOLEAN "SDL.window.create.utility" +#define SDL_PROP_WINDOW_CREATE_VULKAN_BOOLEAN "SDL.window.create.vulkan" +#define SDL_PROP_WINDOW_CREATE_WIDTH_NUMBER "SDL.window.create.width" +#define SDL_PROP_WINDOW_CREATE_X_NUMBER "SDL.window.create.x" +#define SDL_PROP_WINDOW_CREATE_Y_NUMBER "SDL.window.create.y" +#define SDL_PROP_WINDOW_CREATE_COCOA_WINDOW_POINTER "SDL.window.create.cocoa.window" +#define SDL_PROP_WINDOW_CREATE_COCOA_VIEW_POINTER "SDL.window.create.cocoa.view" +#define SDL_PROP_WINDOW_CREATE_WAYLAND_SURFACE_ROLE_CUSTOM_BOOLEAN "SDL.window.create.wayland.surface_role_custom" +#define SDL_PROP_WINDOW_CREATE_WAYLAND_CREATE_EGL_WINDOW_BOOLEAN "SDL.window.create.wayland.create_egl_window" +#define SDL_PROP_WINDOW_CREATE_WAYLAND_WL_SURFACE_POINTER "SDL.window.create.wayland.wl_surface" +#define SDL_PROP_WINDOW_CREATE_WIN32_HWND_POINTER "SDL.window.create.win32.hwnd" +#define SDL_PROP_WINDOW_CREATE_WIN32_PIXEL_FORMAT_HWND_POINTER "SDL.window.create.win32.pixel_format_hwnd" +#define SDL_PROP_WINDOW_CREATE_X11_WINDOW_NUMBER "SDL.window.create.x11.window" + +/** + * Get the numeric ID of a window. + * + * The numeric ID is what SDL_WindowEvent references, and is necessary to map + * these events to specific SDL_Window objects. + * + * \param window the window to query. + * \returns the ID of the window on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFromID + */ +extern SDL_DECLSPEC SDL_WindowID SDLCALL SDL_GetWindowID(SDL_Window *window); + +/** + * Get a window from a stored ID. + * + * The numeric ID is what SDL_WindowEvent references, and is necessary to map + * these events to specific SDL_Window objects. + * + * \param id the ID of the window. + * \returns the window associated with `id` or NULL if it doesn't exist; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowID + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetWindowFromID(SDL_WindowID id); + +/** + * Get parent of a window. + * + * \param window the window to query. + * \returns the parent of the window on success or NULL if the window has no + * parent. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePopupWindow + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetWindowParent(SDL_Window *window); + +/** + * Get the properties associated with a window. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_WINDOW_SHAPE_POINTER`: the surface associated with a shaped + * window + * - `SDL_PROP_WINDOW_HDR_ENABLED_BOOLEAN`: true if the window has HDR + * headroom above the SDR white point. This property can change dynamically + * when SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_WINDOW_SDR_WHITE_LEVEL_FLOAT`: the value of SDR white in the + * SDL_COLORSPACE_SRGB_LINEAR colorspace. On Windows this corresponds to the + * SDR white level in scRGB colorspace, and on Apple platforms this is + * always 1.0 for EDR content. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_WINDOW_HDR_HEADROOM_FLOAT`: the additional high dynamic range + * that can be displayed, in terms of the SDR white point. When HDR is not + * enabled, this will be 1.0. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * + * On Android: + * + * - `SDL_PROP_WINDOW_ANDROID_WINDOW_POINTER`: the ANativeWindow associated + * with the window + * - `SDL_PROP_WINDOW_ANDROID_SURFACE_POINTER`: the EGLSurface associated with + * the window + * + * On iOS: + * + * - `SDL_PROP_WINDOW_UIKIT_WINDOW_POINTER`: the `(__unsafe_unretained)` + * UIWindow associated with the window + * - `SDL_PROP_WINDOW_UIKIT_METAL_VIEW_TAG_NUMBER`: the NSInteger tag + * associated with metal views on the window + * - `SDL_PROP_WINDOW_UIKIT_OPENGL_FRAMEBUFFER_NUMBER`: the OpenGL view's + * framebuffer object. It must be bound when rendering to the screen using + * OpenGL. + * - `SDL_PROP_WINDOW_UIKIT_OPENGL_RENDERBUFFER_NUMBER`: the OpenGL view's + * renderbuffer object. It must be bound when SDL_GL_SwapWindow is called. + * - `SDL_PROP_WINDOW_UIKIT_OPENGL_RESOLVE_FRAMEBUFFER_NUMBER`: the OpenGL + * view's resolve framebuffer, when MSAA is used. + * + * On KMS/DRM: + * + * - `SDL_PROP_WINDOW_KMSDRM_DEVICE_INDEX_NUMBER`: the device index associated + * with the window (e.g. the X in /dev/dri/cardX) + * - `SDL_PROP_WINDOW_KMSDRM_DRM_FD_NUMBER`: the DRM FD associated with the + * window + * - `SDL_PROP_WINDOW_KMSDRM_GBM_DEVICE_POINTER`: the GBM device associated + * with the window + * + * On macOS: + * + * - `SDL_PROP_WINDOW_COCOA_WINDOW_POINTER`: the `(__unsafe_unretained)` + * NSWindow associated with the window + * - `SDL_PROP_WINDOW_COCOA_METAL_VIEW_TAG_NUMBER`: the NSInteger tag + * assocated with metal views on the window + * + * On OpenVR: + * + * - `SDL_PROP_WINDOW_OPENVR_OVERLAY_ID`: the OpenVR Overlay Handle ID for the + * associated overlay window. + * + * On Vivante: + * + * - `SDL_PROP_WINDOW_VIVANTE_DISPLAY_POINTER`: the EGLNativeDisplayType + * associated with the window + * - `SDL_PROP_WINDOW_VIVANTE_WINDOW_POINTER`: the EGLNativeWindowType + * associated with the window + * - `SDL_PROP_WINDOW_VIVANTE_SURFACE_POINTER`: the EGLSurface associated with + * the window + * + * On Windows: + * + * - `SDL_PROP_WINDOW_WIN32_HWND_POINTER`: the HWND associated with the window + * - `SDL_PROP_WINDOW_WIN32_HDC_POINTER`: the HDC associated with the window + * - `SDL_PROP_WINDOW_WIN32_INSTANCE_POINTER`: the HINSTANCE associated with + * the window + * + * On Wayland: + * + * Note: The `xdg_*` window objects do not internally persist across window + * show/hide calls. They will be null if the window is hidden and must be + * queried each time it is shown. + * + * - `SDL_PROP_WINDOW_WAYLAND_DISPLAY_POINTER`: the wl_display associated with + * the window + * - `SDL_PROP_WINDOW_WAYLAND_SURFACE_POINTER`: the wl_surface associated with + * the window + * - `SDL_PROP_WINDOW_WAYLAND_VIEWPORT_POINTER`: the wp_viewport associated + * with the window + * - `SDL_PROP_WINDOW_WAYLAND_EGL_WINDOW_POINTER`: the wl_egl_window + * associated with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_SURFACE_POINTER`: the xdg_surface associated + * with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_POINTER`: the xdg_toplevel role + * associated with the window + * - 'SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_EXPORT_HANDLE_STRING': the export + * handle associated with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_POPUP_POINTER`: the xdg_popup role + * associated with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_POSITIONER_POINTER`: the xdg_positioner + * associated with the window, in popup mode + * + * On X11: + * + * - `SDL_PROP_WINDOW_X11_DISPLAY_POINTER`: the X11 Display associated with + * the window + * - `SDL_PROP_WINDOW_X11_SCREEN_NUMBER`: the screen number associated with + * the window + * - `SDL_PROP_WINDOW_X11_WINDOW_NUMBER`: the X11 Window associated with the + * window + * + * \param window the window to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetWindowProperties(SDL_Window *window); + +#define SDL_PROP_WINDOW_SHAPE_POINTER "SDL.window.shape" +#define SDL_PROP_WINDOW_HDR_ENABLED_BOOLEAN "SDL.window.HDR_enabled" +#define SDL_PROP_WINDOW_SDR_WHITE_LEVEL_FLOAT "SDL.window.SDR_white_level" +#define SDL_PROP_WINDOW_HDR_HEADROOM_FLOAT "SDL.window.HDR_headroom" +#define SDL_PROP_WINDOW_ANDROID_WINDOW_POINTER "SDL.window.android.window" +#define SDL_PROP_WINDOW_ANDROID_SURFACE_POINTER "SDL.window.android.surface" +#define SDL_PROP_WINDOW_UIKIT_WINDOW_POINTER "SDL.window.uikit.window" +#define SDL_PROP_WINDOW_UIKIT_METAL_VIEW_TAG_NUMBER "SDL.window.uikit.metal_view_tag" +#define SDL_PROP_WINDOW_UIKIT_OPENGL_FRAMEBUFFER_NUMBER "SDL.window.uikit.opengl.framebuffer" +#define SDL_PROP_WINDOW_UIKIT_OPENGL_RENDERBUFFER_NUMBER "SDL.window.uikit.opengl.renderbuffer" +#define SDL_PROP_WINDOW_UIKIT_OPENGL_RESOLVE_FRAMEBUFFER_NUMBER "SDL.window.uikit.opengl.resolve_framebuffer" +#define SDL_PROP_WINDOW_KMSDRM_DEVICE_INDEX_NUMBER "SDL.window.kmsdrm.dev_index" +#define SDL_PROP_WINDOW_KMSDRM_DRM_FD_NUMBER "SDL.window.kmsdrm.drm_fd" +#define SDL_PROP_WINDOW_KMSDRM_GBM_DEVICE_POINTER "SDL.window.kmsdrm.gbm_dev" +#define SDL_PROP_WINDOW_COCOA_WINDOW_POINTER "SDL.window.cocoa.window" +#define SDL_PROP_WINDOW_COCOA_METAL_VIEW_TAG_NUMBER "SDL.window.cocoa.metal_view_tag" +#define SDL_PROP_WINDOW_OPENVR_OVERLAY_ID "SDL.window.openvr.overlay_id" +#define SDL_PROP_WINDOW_VIVANTE_DISPLAY_POINTER "SDL.window.vivante.display" +#define SDL_PROP_WINDOW_VIVANTE_WINDOW_POINTER "SDL.window.vivante.window" +#define SDL_PROP_WINDOW_VIVANTE_SURFACE_POINTER "SDL.window.vivante.surface" +#define SDL_PROP_WINDOW_WIN32_HWND_POINTER "SDL.window.win32.hwnd" +#define SDL_PROP_WINDOW_WIN32_HDC_POINTER "SDL.window.win32.hdc" +#define SDL_PROP_WINDOW_WIN32_INSTANCE_POINTER "SDL.window.win32.instance" +#define SDL_PROP_WINDOW_WAYLAND_DISPLAY_POINTER "SDL.window.wayland.display" +#define SDL_PROP_WINDOW_WAYLAND_SURFACE_POINTER "SDL.window.wayland.surface" +#define SDL_PROP_WINDOW_WAYLAND_VIEWPORT_POINTER "SDL.window.wayland.viewport" +#define SDL_PROP_WINDOW_WAYLAND_EGL_WINDOW_POINTER "SDL.window.wayland.egl_window" +#define SDL_PROP_WINDOW_WAYLAND_XDG_SURFACE_POINTER "SDL.window.wayland.xdg_surface" +#define SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_POINTER "SDL.window.wayland.xdg_toplevel" +#define SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_EXPORT_HANDLE_STRING "SDL.window.wayland.xdg_toplevel_export_handle" +#define SDL_PROP_WINDOW_WAYLAND_XDG_POPUP_POINTER "SDL.window.wayland.xdg_popup" +#define SDL_PROP_WINDOW_WAYLAND_XDG_POSITIONER_POINTER "SDL.window.wayland.xdg_positioner" +#define SDL_PROP_WINDOW_X11_DISPLAY_POINTER "SDL.window.x11.display" +#define SDL_PROP_WINDOW_X11_SCREEN_NUMBER "SDL.window.x11.screen" +#define SDL_PROP_WINDOW_X11_WINDOW_NUMBER "SDL.window.x11.window" + +/** + * Get the window flags. + * + * \param window the window to query. + * \returns a mask of the SDL_WindowFlags associated with `window`. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + * \sa SDL_HideWindow + * \sa SDL_MaximizeWindow + * \sa SDL_MinimizeWindow + * \sa SDL_SetWindowFullscreen + * \sa SDL_SetWindowMouseGrab + * \sa SDL_ShowWindow + */ +extern SDL_DECLSPEC SDL_WindowFlags SDLCALL SDL_GetWindowFlags(SDL_Window *window); + +/** + * Set the title of a window. + * + * This string is expected to be in UTF-8 encoding. + * + * \param window the window to change. + * \param title the desired window title in UTF-8 format. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowTitle + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowTitle(SDL_Window *window, const char *title); + +/** + * Get the title of a window. + * + * \param window the window to query. + * \returns the title of the window in UTF-8 format or "" if there is no + * title. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowTitle + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetWindowTitle(SDL_Window *window); + +/** + * Set the icon for a window. + * + * If this function is passed a surface with alternate representations, the + * surface will be interpreted as the content to be used for 100% display + * scale, and the alternate representations will be used for high DPI + * situations. For example, if the original surface is 32x32, then on a 2x + * macOS display or 200% display scale on Windows, a 64x64 version of the + * image will be used, if available. If a matching version of the image isn't + * available, the closest larger size image will be downscaled to the + * appropriate size and be used instead, if available. Otherwise, the closest + * smaller image will be upscaled and be used instead. + * + * \param window the window to change. + * \param icon an SDL_Surface structure containing the icon for the window. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowIcon(SDL_Window *window, SDL_Surface *icon); + +/** + * Request that the window's position be set. + * + * If the window is in an exclusive fullscreen or maximized state, this + * request has no effect. + * + * This can be used to reposition fullscreen-desktop windows onto a different + * display, however, as exclusive fullscreen windows are locked to a specific + * display, they can only be repositioned programmatically via + * SDL_SetWindowFullscreenMode(). + * + * On some windowing systems this request is asynchronous and the new + * coordinates may not have have been applied immediately upon the return of + * this function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window position changes, an SDL_EVENT_WINDOW_MOVED event will be + * emitted with the window's new coordinates. Note that the new coordinates + * may not match the exact coordinates requested, as some windowing systems + * can restrict the position of the window in certain scenarios (e.g. + * constraining the position so the window is always within desktop bounds). + * Additionally, as this is just a request, it can be denied by the windowing + * system. + * + * \param window the window to reposition. + * \param x the x coordinate of the window, or `SDL_WINDOWPOS_CENTERED` or + * `SDL_WINDOWPOS_UNDEFINED`. + * \param y the y coordinate of the window, or `SDL_WINDOWPOS_CENTERED` or + * `SDL_WINDOWPOS_UNDEFINED`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowPosition + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowPosition(SDL_Window *window, int x, int y); + +/** + * Get the position of a window. + * + * This is the current position of the window as last reported by the + * windowing system. + * + * If you do not need the value for one of the positions a NULL may be passed + * in the `x` or `y` parameter. + * + * \param window the window to query. + * \param x a pointer filled in with the x position of the window, may be + * NULL. + * \param y a pointer filled in with the y position of the window, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowPosition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowPosition(SDL_Window *window, int *x, int *y); + +/** + * Request that the size of a window's client area be set. + * + * If the window is in a fullscreen or maximized state, this request has no + * effect. + * + * To change the exclusive fullscreen mode of a window, use + * SDL_SetWindowFullscreenMode(). + * + * On some windowing systems, this request is asynchronous and the new window + * size may not have have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window size changes, an SDL_EVENT_WINDOW_RESIZED event will be + * emitted with the new window dimensions. Note that the new dimensions may + * not match the exact size requested, as some windowing systems can restrict + * the window size in certain scenarios (e.g. constraining the size of the + * content area to remain within the usable desktop bounds). Additionally, as + * this is just a request, it can be denied by the windowing system. + * + * \param window the window to change. + * \param w the width of the window, must be > 0. + * \param h the height of the window, must be > 0. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSize + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowSize(SDL_Window *window, int w, int h); + +/** + * Get the size of a window's client area. + * + * The window pixel size may differ from its window coordinate size if the + * window is on a high pixel density display. Use SDL_GetWindowSizeInPixels() + * or SDL_GetRenderOutputSize() to get the real client area size in pixels. + * + * \param window the window to query the width and height from. + * \param w a pointer filled in with the width of the window, may be NULL. + * \param h a pointer filled in with the height of the window, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderOutputSize + * \sa SDL_GetWindowSizeInPixels + * \sa SDL_SetWindowSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSize(SDL_Window *window, int *w, int *h); + +/** + * Get the safe area for this window. + * + * Some devices have portions of the screen which are partially obscured or + * not interactive, possibly due to on-screen controls, curved edges, camera + * notches, TV overscan, etc. This function provides the area of the window + * which is safe to have interactable content. You should continue rendering + * into the rest of the window, but it should not contain visually important + * or interactible content. + * + * \param window the window to query. + * \param rect a pointer filled in with the client area that is safe for + * interactive content. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSafeArea(SDL_Window *window, SDL_Rect *rect); + +/** + * Request that the aspect ratio of a window's client area be set. + * + * The aspect ratio is the ratio of width divided by height, e.g. 2560x1600 + * would be 1.6. Larger aspect ratios are wider and smaller aspect ratios are + * narrower. + * + * If, at the time of this request, the window in a fixed-size state, such as + * maximized or fullscreen, the request will be deferred until the window + * exits this state and becomes resizable again. + * + * On some windowing systems, this request is asynchronous and the new window + * aspect ratio may not have have been applied immediately upon the return of + * this function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window size changes, an SDL_EVENT_WINDOW_RESIZED event will be + * emitted with the new window dimensions. Note that the new dimensions may + * not match the exact aspect ratio requested, as some windowing systems can + * restrict the window size in certain scenarios (e.g. constraining the size + * of the content area to remain within the usable desktop bounds). + * Additionally, as this is just a request, it can be denied by the windowing + * system. + * + * \param window the window to change. + * \param min_aspect the minimum aspect ratio of the window, or 0.0f for no + * limit. + * \param max_aspect the maximum aspect ratio of the window, or 0.0f for no + * limit. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowAspectRatio + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowAspectRatio(SDL_Window *window, float min_aspect, float max_aspect); + +/** + * Get the size of a window's client area. + * + * \param window the window to query the width and height from. + * \param min_aspect a pointer filled in with the minimum aspect ratio of the + * window, may be NULL. + * \param max_aspect a pointer filled in with the maximum aspect ratio of the + * window, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowAspectRatio + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowAspectRatio(SDL_Window *window, float *min_aspect, float *max_aspect); + +/** + * Get the size of a window's borders (decorations) around the client area. + * + * Note: If this function fails (returns false), the size values will be + * initialized to 0, 0, 0, 0 (if a non-NULL pointer is provided), as if the + * window in question was borderless. + * + * Note: This function may fail on systems where the window has not yet been + * decorated by the display server (for example, immediately after calling + * SDL_CreateWindow). It is recommended that you wait at least until the + * window has been presented and composited, so that the window system has a + * chance to decorate the window and provide the border dimensions to SDL. + * + * This function also returns false if getting the information is not + * supported. + * + * \param window the window to query the size values of the border + * (decorations) from. + * \param top pointer to variable for storing the size of the top border; NULL + * is permitted. + * \param left pointer to variable for storing the size of the left border; + * NULL is permitted. + * \param bottom pointer to variable for storing the size of the bottom + * border; NULL is permitted. + * \param right pointer to variable for storing the size of the right border; + * NULL is permitted. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowBordersSize(SDL_Window *window, int *top, int *left, int *bottom, int *right); + +/** + * Get the size of a window's client area, in pixels. + * + * \param window the window from which the drawable size should be queried. + * \param w a pointer to variable for storing the width in pixels, may be + * NULL. + * \param h a pointer to variable for storing the height in pixels, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + * \sa SDL_GetWindowSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSizeInPixels(SDL_Window *window, int *w, int *h); + +/** + * Set the minimum size of a window's client area. + * + * \param window the window to change. + * \param min_w the minimum width of the window, or 0 for no limit. + * \param min_h the minimum height of the window, or 0 for no limit. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMinimumSize + * \sa SDL_SetWindowMaximumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMinimumSize(SDL_Window *window, int min_w, int min_h); + +/** + * Get the minimum size of a window's client area. + * + * \param window the window to query. + * \param w a pointer filled in with the minimum width of the window, may be + * NULL. + * \param h a pointer filled in with the minimum height of the window, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMaximumSize + * \sa SDL_SetWindowMinimumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowMinimumSize(SDL_Window *window, int *w, int *h); + +/** + * Set the maximum size of a window's client area. + * + * \param window the window to change. + * \param max_w the maximum width of the window, or 0 for no limit. + * \param max_h the maximum height of the window, or 0 for no limit. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMaximumSize + * \sa SDL_SetWindowMinimumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMaximumSize(SDL_Window *window, int max_w, int max_h); + +/** + * Get the maximum size of a window's client area. + * + * \param window the window to query. + * \param w a pointer filled in with the maximum width of the window, may be + * NULL. + * \param h a pointer filled in with the maximum height of the window, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMinimumSize + * \sa SDL_SetWindowMaximumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowMaximumSize(SDL_Window *window, int *w, int *h); + +/** + * Set the border state of a window. + * + * This will add or remove the window's `SDL_WINDOW_BORDERLESS` flag and add + * or remove the border from the actual window. This is a no-op if the + * window's border already matches the requested state. + * + * You can't change the border state of a fullscreen window. + * + * \param window the window of which to change the border state. + * \param bordered false to remove border, true to add border. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowBordered(SDL_Window *window, bool bordered); + +/** + * Set the user-resizable state of a window. + * + * This will add or remove the window's `SDL_WINDOW_RESIZABLE` flag and + * allow/disallow user resizing of the window. This is a no-op if the window's + * resizable state already matches the requested state. + * + * You can't change the resizable state of a fullscreen window. + * + * \param window the window of which to change the resizable state. + * \param resizable true to allow resizing, false to disallow. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowResizable(SDL_Window *window, bool resizable); + +/** + * Set the window to always be above the others. + * + * This will add or remove the window's `SDL_WINDOW_ALWAYS_ON_TOP` flag. This + * will bring the window to the front and keep the window above the rest. + * + * \param window the window of which to change the always on top state. + * \param on_top true to set the window always on top, false to disable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowAlwaysOnTop(SDL_Window *window, bool on_top); + +/** + * Show a window. + * + * \param window the window to show. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HideWindow + * \sa SDL_RaiseWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowWindow(SDL_Window *window); + +/** + * Hide a window. + * + * \param window the window to hide. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShowWindow + * \sa SDL_WINDOW_HIDDEN + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HideWindow(SDL_Window *window); + +/** + * Request that a window be raised above other windows and gain the input + * focus. + * + * The result of this request is subject to desktop window manager policy, + * particularly if raising the requested window would result in stealing focus + * from another application. If the window is successfully raised and gains + * input focus, an SDL_EVENT_WINDOW_FOCUS_GAINED event will be emitted, and + * the window will have the SDL_WINDOW_INPUT_FOCUS flag set. + * + * \param window the window to raise. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RaiseWindow(SDL_Window *window); + +/** + * Request that the window be made as large as possible. + * + * Non-resizable windows can't be maximized. The window must have the + * SDL_WINDOW_RESIZABLE flag set, or this will have no effect. + * + * On some windowing systems this request is asynchronous and the new window + * state may not have have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_MAXIMIZED event will be + * emitted. Note that, as this is just a request, the windowing system can + * deny the state change. + * + * When maximizing a window, whether the constraints set via + * SDL_SetWindowMaximumSize() are honored depends on the policy of the window + * manager. Win32 and macOS enforce the constraints when maximizing, while X11 + * and Wayland window managers may vary. + * + * \param window the window to maximize. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MinimizeWindow + * \sa SDL_RestoreWindow + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_MaximizeWindow(SDL_Window *window); + +/** + * Request that the window be minimized to an iconic representation. + * + * If the window is in a fullscreen state, this request has no direct effect. + * It may alter the state the window is returned to when leaving fullscreen. + * + * On some windowing systems this request is asynchronous and the new window + * state may not have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_MINIMIZED event will be + * emitted. Note that, as this is just a request, the windowing system can + * deny the state change. + * + * \param window the window to minimize. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MaximizeWindow + * \sa SDL_RestoreWindow + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_MinimizeWindow(SDL_Window *window); + +/** + * Request that the size and position of a minimized or maximized window be + * restored. + * + * If the window is in a fullscreen state, this request has no direct effect. + * It may alter the state the window is returned to when leaving fullscreen. + * + * On some windowing systems this request is asynchronous and the new window + * state may not have have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_RESTORED event will be + * emitted. Note that, as this is just a request, the windowing system can + * deny the state change. + * + * \param window the window to restore. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MaximizeWindow + * \sa SDL_MinimizeWindow + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RestoreWindow(SDL_Window *window); + +/** + * Request that the window's fullscreen state be changed. + * + * By default a window in fullscreen state uses borderless fullscreen desktop + * mode, but a specific exclusive display mode can be set using + * SDL_SetWindowFullscreenMode(). + * + * On some windowing systems this request is asynchronous and the new + * fullscreen state may not have have been applied immediately upon the return + * of this function. If an immediate change is required, call SDL_SyncWindow() + * to block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_ENTER_FULLSCREEN or + * SDL_EVENT_WINDOW_LEAVE_FULLSCREEN event will be emitted. Note that, as this + * is just a request, it can be denied by the windowing system. + * + * \param window the window to change. + * \param fullscreen true for fullscreen mode, false for windowed mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFullscreenMode + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_SyncWindow + * \sa SDL_WINDOW_FULLSCREEN + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowFullscreen(SDL_Window *window, bool fullscreen); + +/** + * Block until any pending window state is finalized. + * + * On asynchronous windowing systems, this acts as a synchronization barrier + * for pending window state. It will attempt to wait until any pending window + * state has been applied and is guaranteed to return within finite time. Note + * that for how long it can potentially block depends on the underlying window + * system, as window state changes may involve somewhat lengthy animations + * that must complete before the window is in its final requested state. + * + * On windowing systems where changes are immediate, this does nothing. + * + * \param window the window for which to wait for the pending state to be + * applied. + * \returns true on success or false if the operation timed out before the + * window was in the requested state. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowSize + * \sa SDL_SetWindowPosition + * \sa SDL_SetWindowFullscreen + * \sa SDL_MinimizeWindow + * \sa SDL_MaximizeWindow + * \sa SDL_RestoreWindow + * \sa SDL_HINT_VIDEO_SYNC_WINDOW_OPERATIONS + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SyncWindow(SDL_Window *window); + +/** + * Return whether the window has a surface associated with it. + * + * \param window the window to query. + * \returns true if there is a surface associated with the window, or false + * otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WindowHasSurface(SDL_Window *window); + +/** + * Get the SDL surface associated with the window. + * + * A new surface will be created with the optimal format for the window, if + * necessary. This surface will be freed when the window is destroyed. Do not + * free this surface. + * + * This surface will be invalidated if the window is resized. After resizing a + * window this function must be called again to return a valid surface. + * + * You may not combine this with 3D or the rendering API on this window. + * + * This function is affected by `SDL_HINT_FRAMEBUFFER_ACCELERATION`. + * + * \param window the window to query. + * \returns the surface associated with the window, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyWindowSurface + * \sa SDL_WindowHasSurface + * \sa SDL_UpdateWindowSurface + * \sa SDL_UpdateWindowSurfaceRects + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_GetWindowSurface(SDL_Window *window); + +/** + * Toggle VSync for the window surface. + * + * When a window surface is created, vsync defaults to + * SDL_WINDOW_SURFACE_VSYNC_DISABLED. + * + * The `vsync` parameter can be 1 to synchronize present with every vertical + * refresh, 2 to synchronize present with every second vertical refresh, etc., + * SDL_WINDOW_SURFACE_VSYNC_ADAPTIVE for late swap tearing (adaptive vsync), + * or SDL_WINDOW_SURFACE_VSYNC_DISABLED to disable. Not every value is + * supported by every driver, so you should check the return value to see + * whether the requested setting is supported. + * + * \param window the window. + * \param vsync the vertical refresh sync interval. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurfaceVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowSurfaceVSync(SDL_Window *window, int vsync); + +#define SDL_WINDOW_SURFACE_VSYNC_DISABLED 0 +#define SDL_WINDOW_SURFACE_VSYNC_ADAPTIVE (-1) + +/** + * Get VSync for the window surface. + * + * \param window the window to query. + * \param vsync an int filled with the current vertical refresh sync interval. + * See SDL_SetWindowSurfaceVSync() for the meaning of the value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowSurfaceVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSurfaceVSync(SDL_Window *window, int *vsync); + +/** + * Copy the window surface to the screen. + * + * This is the function you use to reflect any changes to the surface on the + * screen. + * + * This function is equivalent to the SDL 1.2 API SDL_Flip(). + * + * \param window the window to update. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + * \sa SDL_UpdateWindowSurfaceRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateWindowSurface(SDL_Window *window); + +/** + * Copy areas of the window surface to the screen. + * + * This is the function you use to reflect changes to portions of the surface + * on the screen. + * + * This function is equivalent to the SDL 1.2 API SDL_UpdateRects(). + * + * Note that this function will update _at least_ the rectangles specified, + * but this is only intended as an optimization; in practice, this might + * update more of the screen (or all of the screen!), depending on what method + * SDL uses to send pixels to the system. + * + * \param window the window to update. + * \param rects an array of SDL_Rect structures representing areas of the + * surface to copy, in pixels. + * \param numrects the number of rectangles. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + * \sa SDL_UpdateWindowSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateWindowSurfaceRects(SDL_Window *window, const SDL_Rect *rects, int numrects); + +/** + * Destroy the surface associated with the window. + * + * \param window the window to update. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + * \sa SDL_WindowHasSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DestroyWindowSurface(SDL_Window *window); + +/** + * Set a window's keyboard grab mode. + * + * Keyboard grab enables capture of system keyboard shortcuts like Alt+Tab or + * the Meta/Super key. Note that not all system keyboard shortcuts can be + * captured by applications (one example is Ctrl+Alt+Del on Windows). + * + * This is primarily intended for specialized applications such as VNC clients + * or VM frontends. Normal games should not use keyboard grab. + * + * When keyboard grab is enabled, SDL will continue to handle Alt+Tab when the + * window is full-screen to ensure the user is not trapped in your + * application. If you have a custom keyboard shortcut to exit fullscreen + * mode, you may suppress this behavior with + * `SDL_HINT_ALLOW_ALT_TAB_WHILE_GRABBED`. + * + * If the caller enables a grab while another window is currently grabbed, the + * other window loses its grab in favor of the caller's window. + * + * \param window the window for which the keyboard grab mode should be set. + * \param grabbed this is true to grab keyboard, and false to release. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowKeyboardGrab + * \sa SDL_SetWindowMouseGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowKeyboardGrab(SDL_Window *window, bool grabbed); + +/** + * Set a window's mouse grab mode. + * + * Mouse grab confines the mouse cursor to the window. + * + * \param window the window for which the mouse grab mode should be set. + * \param grabbed this is true to grab mouse, and false to release. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMouseRect + * \sa SDL_SetWindowMouseRect + * \sa SDL_SetWindowMouseGrab + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMouseGrab(SDL_Window *window, bool grabbed); + +/** + * Get a window's keyboard grab mode. + * + * \param window the window to query. + * \returns true if keyboard is grabbed, and false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowKeyboardGrab(SDL_Window *window); + +/** + * Get a window's mouse grab mode. + * + * \param window the window to query. + * \returns true if mouse is grabbed, and false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMouseRect + * \sa SDL_SetWindowMouseRect + * \sa SDL_SetWindowMouseGrab + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowMouseGrab(SDL_Window *window); + +/** + * Get the window that currently has an input grab enabled. + * + * \returns the window if input is grabbed or NULL otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowMouseGrab + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetGrabbedWindow(void); + +/** + * Confines the cursor to the specified area of a window. + * + * Note that this does NOT grab the cursor, it only defines the area a cursor + * is restricted to when the window has mouse focus. + * + * \param window the window that will be associated with the barrier. + * \param rect a rectangle area in window-relative coordinates. If NULL the + * barrier for the specified window will be destroyed. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMouseRect + * \sa SDL_GetWindowMouseGrab + * \sa SDL_SetWindowMouseGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMouseRect(SDL_Window *window, const SDL_Rect *rect); + +/** + * Get the mouse confinement rectangle of a window. + * + * \param window the window to query. + * \returns a pointer to the mouse confinement rectangle of a window, or NULL + * if there isn't one. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowMouseRect + * \sa SDL_GetWindowMouseGrab + * \sa SDL_SetWindowMouseGrab + */ +extern SDL_DECLSPEC const SDL_Rect * SDLCALL SDL_GetWindowMouseRect(SDL_Window *window); + +/** + * Set the opacity for a window. + * + * The parameter `opacity` will be clamped internally between 0.0f + * (transparent) and 1.0f (opaque). + * + * This function also returns false if setting the opacity isn't supported. + * + * \param window the window which will be made transparent or opaque. + * \param opacity the opacity value (0.0f - transparent, 1.0f - opaque). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowOpacity + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowOpacity(SDL_Window *window, float opacity); + +/** + * Get the opacity of a window. + * + * If transparency isn't supported on this platform, opacity will be returned + * as 1.0f without error. + * + * \param window the window to get the current opacity value from. + * \returns the opacity, (0.0f - transparent, 1.0f - opaque), or -1.0f on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowOpacity + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetWindowOpacity(SDL_Window *window); + +/** + * Set the window as a child of a parent window. + * + * If the window is already the child of an existing window, it will be + * reparented to the new owner. Setting the parent window to NULL unparents + * the window and removes child window status. + * + * If a parent window is hidden or destroyed, the operation will be + * recursively applied to child windows. Child windows hidden with the parent + * that did not have their hidden status explicitly set will be restored when + * the parent is shown. + * + * Attempting to set the parent of a window that is currently in the modal + * state will fail. Use SDL_SetWindowModal() to cancel the modal status before + * attempting to change the parent. + * + * Popup windows cannot change parents and attempts to do so will fail. + * + * Setting a parent window that is currently the sibling or descendent of the + * child window results in undefined behavior. + * + * \param window the window that should become the child of a parent. + * \param parent the new parent window for the child window. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowModal + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowParent(SDL_Window *window, SDL_Window *parent); + +/** + * Toggle the state of the window as modal. + * + * To enable modal status on a window, the window must currently be the child + * window of a parent, or toggling modal status on will fail. + * + * \param window the window on which to set the modal state. + * \param modal true to toggle modal status on, false to toggle it off. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowParent + * \sa SDL_WINDOW_MODAL + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowModal(SDL_Window *window, bool modal); + +/** + * Set whether the window may have input focus. + * + * \param window the window to set focusable state. + * \param focusable true to allow input focus, false to not allow input focus. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowFocusable(SDL_Window *window, bool focusable); + + +/** + * Display the system-level window menu. + * + * This default window menu is provided by the system and on some platforms + * provides functionality for setting or changing privileged state on the + * window, such as moving it between workspaces or displays, or toggling the + * always-on-top property. + * + * On platforms or desktops where this is unsupported, this function does + * nothing. + * + * \param window the window for which the menu will be displayed. + * \param x the x coordinate of the menu, relative to the origin (top-left) of + * the client area. + * \param y the y coordinate of the menu, relative to the origin (top-left) of + * the client area. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowWindowSystemMenu(SDL_Window *window, int x, int y); + +/** + * Possible return values from the SDL_HitTest callback. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_HitTest + */ +typedef enum SDL_HitTestResult +{ + SDL_HITTEST_NORMAL, /**< Region is normal. No special properties. */ + SDL_HITTEST_DRAGGABLE, /**< Region can drag entire window. */ + SDL_HITTEST_RESIZE_TOPLEFT, /**< Region is the resizable top-left corner border. */ + SDL_HITTEST_RESIZE_TOP, /**< Region is the resizable top border. */ + SDL_HITTEST_RESIZE_TOPRIGHT, /**< Region is the resizable top-right corner border. */ + SDL_HITTEST_RESIZE_RIGHT, /**< Region is the resizable right border. */ + SDL_HITTEST_RESIZE_BOTTOMRIGHT, /**< Region is the resizable bottom-right corner border. */ + SDL_HITTEST_RESIZE_BOTTOM, /**< Region is the resizable bottom border. */ + SDL_HITTEST_RESIZE_BOTTOMLEFT, /**< Region is the resizable bottom-left corner border. */ + SDL_HITTEST_RESIZE_LEFT /**< Region is the resizable left border. */ +} SDL_HitTestResult; + +/** + * Callback used for hit-testing. + * + * \param win the SDL_Window where hit-testing was set on. + * \param area an SDL_Point which should be hit-tested. + * \param data what was passed as `callback_data` to SDL_SetWindowHitTest(). + * \returns an SDL_HitTestResult value. + * + * \sa SDL_SetWindowHitTest + */ +typedef SDL_HitTestResult (SDLCALL *SDL_HitTest)(SDL_Window *win, + const SDL_Point *area, + void *data); + +/** + * Provide a callback that decides if a window region has special properties. + * + * Normally windows are dragged and resized by decorations provided by the + * system window manager (a title bar, borders, etc), but for some apps, it + * makes sense to drag them from somewhere else inside the window itself; for + * example, one might have a borderless window that wants to be draggable from + * any part, or simulate its own title bar, etc. + * + * This function lets the app provide a callback that designates pieces of a + * given window as special. This callback is run during event processing if we + * need to tell the OS to treat a region of the window specially; the use of + * this callback is known as "hit testing." + * + * Mouse input may not be delivered to your application if it is within a + * special area; the OS will often apply that input to moving the window or + * resizing the window and not deliver it to the application. + * + * Specifying NULL for a callback disables hit-testing. Hit-testing is + * disabled by default. + * + * Platforms that don't support this functionality will return false + * unconditionally, even if you're attempting to disable hit-testing. + * + * Your callback may fire at any time, and its firing does not indicate any + * specific behavior (for example, on Windows, this certainly might fire when + * the OS is deciding whether to drag your window, but it fires for lots of + * other reasons, too, some unrelated to anything you probably care about _and + * when the mouse isn't actually at the location it is testing_). Since this + * can fire at any time, you should try to keep your callback efficient, + * devoid of allocations, etc. + * + * \param window the window to set hit-testing on. + * \param callback the function to call when doing a hit-test. + * \param callback_data an app-defined void pointer passed to **callback**. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowHitTest(SDL_Window *window, SDL_HitTest callback, void *callback_data); + +/** + * Set the shape of a transparent window. + * + * This sets the alpha channel of a transparent window and any fully + * transparent areas are also transparent to mouse clicks. If you are using + * something besides the SDL render API, then you are responsible for drawing + * the alpha channel of the window to match the shape alpha channel to get + * consistent cross-platform results. + * + * The shape is copied inside this function, so you can free it afterwards. If + * your shape surface changes, you should call SDL_SetWindowShape() again to + * update the window. This is an expensive operation, so should be done + * sparingly. + * + * The window must have been created with the SDL_WINDOW_TRANSPARENT flag. + * + * \param window the window. + * \param shape the surface representing the shape of the window, or NULL to + * remove any current shape. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowShape(SDL_Window *window, SDL_Surface *shape); + +/** + * Request a window to demand attention from the user. + * + * \param window the window to be flashed. + * \param operation the operation to perform. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlashWindow(SDL_Window *window, SDL_FlashOperation operation); + +/** + * Destroy a window. + * + * Any child windows owned by the window will be recursively destroyed as + * well. + * + * Note that on some platforms, the visible window may not actually be removed + * from the screen until the SDL event loop is pumped again, even though the + * SDL_Window is no longer valid after this call. + * + * \param window the window to destroy. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePopupWindow + * \sa SDL_CreateWindow + * \sa SDL_CreateWindowWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyWindow(SDL_Window *window); + + +/** + * Check whether the screensaver is currently enabled. + * + * The screensaver is disabled by default. + * + * The default can also be changed using `SDL_HINT_VIDEO_ALLOW_SCREENSAVER`. + * + * \returns true if the screensaver is enabled, false if it is disabled. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DisableScreenSaver + * \sa SDL_EnableScreenSaver + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ScreenSaverEnabled(void); + +/** + * Allow the screen to be blanked by a screen saver. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DisableScreenSaver + * \sa SDL_ScreenSaverEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnableScreenSaver(void); + +/** + * Prevent the screen from being blanked by a screen saver. + * + * If you disable the screensaver, it is automatically re-enabled when SDL + * quits. + * + * The screensaver is disabled by default, but this may by changed by + * SDL_HINT_VIDEO_ALLOW_SCREENSAVER. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EnableScreenSaver + * \sa SDL_ScreenSaverEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DisableScreenSaver(void); + + +/** + * \name OpenGL support functions + */ +/* @{ */ + +/** + * Dynamically load an OpenGL library. + * + * This should be done after initializing the video driver, but before + * creating any OpenGL windows. If no OpenGL library is loaded, the default + * library will be loaded upon creation of the first OpenGL window. + * + * If you do this, you need to retrieve all of the GL functions used in your + * program from the dynamic library using SDL_GL_GetProcAddress(). + * + * \param path the platform dependent OpenGL library name, or NULL to open the + * default OpenGL library. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetProcAddress + * \sa SDL_GL_UnloadLibrary + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_LoadLibrary(const char *path); + +/** + * Get an OpenGL function by name. + * + * If the GL library is loaded at runtime with SDL_GL_LoadLibrary(), then all + * GL functions must be retrieved this way. Usually this is used to retrieve + * function pointers to OpenGL extensions. + * + * There are some quirks to looking up OpenGL functions that require some + * extra care from the application. If you code carefully, you can handle + * these quirks without any platform-specific code, though: + * + * - On Windows, function pointers are specific to the current GL context; + * this means you need to have created a GL context and made it current + * before calling SDL_GL_GetProcAddress(). If you recreate your context or + * create a second context, you should assume that any existing function + * pointers aren't valid to use with it. This is (currently) a + * Windows-specific limitation, and in practice lots of drivers don't suffer + * this limitation, but it is still the way the wgl API is documented to + * work and you should expect crashes if you don't respect it. Store a copy + * of the function pointers that comes and goes with context lifespan. + * - On X11, function pointers returned by this function are valid for any + * context, and can even be looked up before a context is created at all. + * This means that, for at least some common OpenGL implementations, if you + * look up a function that doesn't exist, you'll get a non-NULL result that + * is _NOT_ safe to call. You must always make sure the function is actually + * available for a given GL context before calling it, by checking for the + * existence of the appropriate extension with SDL_GL_ExtensionSupported(), + * or verifying that the version of OpenGL you're using offers the function + * as core functionality. + * - Some OpenGL drivers, on all platforms, *will* return NULL if a function + * isn't supported, but you can't count on this behavior. Check for + * extensions you use, and if you get a NULL anyway, act as if that + * extension wasn't available. This is probably a bug in the driver, but you + * can code defensively for this scenario anyhow. + * - Just because you're on Linux/Unix, don't assume you'll be using X11. + * Next-gen display servers are waiting to replace it, and may or may not + * make the same promises about function pointers. + * - OpenGL function pointers must be declared `APIENTRY` as in the example + * code. This will ensure the proper calling convention is followed on + * platforms where this matters (Win32) thereby avoiding stack corruption. + * + * \param proc the name of an OpenGL function. + * \returns a pointer to the named OpenGL function. The returned pointer + * should be cast to the appropriate function signature. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_ExtensionSupported + * \sa SDL_GL_LoadLibrary + * \sa SDL_GL_UnloadLibrary + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_GL_GetProcAddress(const char *proc); + +/** + * Get an EGL library function by name. + * + * If an EGL library is loaded, this function allows applications to get entry + * points for EGL functions. This is useful to provide to an EGL API and + * extension loader. + * + * \param proc the name of an EGL function. + * \returns a pointer to the named EGL function. The returned pointer should + * be cast to the appropriate function signature. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EGL_GetCurrentDisplay + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_EGL_GetProcAddress(const char *proc); + +/** + * Unload the OpenGL library previously loaded by SDL_GL_LoadLibrary(). + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_LoadLibrary + */ +extern SDL_DECLSPEC void SDLCALL SDL_GL_UnloadLibrary(void); + +/** + * Check if an OpenGL extension is supported for the current context. + * + * This function operates on the current GL context; you must have created a + * context and it must be current before calling this function. Do not assume + * that all contexts you create will have the same set of extensions + * available, or that recreating an existing context will offer the same + * extensions again. + * + * While it's probably not a massive overhead, this function is not an O(1) + * operation. Check the extensions you care about after creating the GL + * context and save that information somewhere instead of calling the function + * every time you need to know. + * + * \param extension the name of the extension to check. + * \returns true if the extension is supported, false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_ExtensionSupported(const char *extension); + +/** + * Reset all previously set OpenGL context attributes to their default values. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetAttribute + * \sa SDL_GL_SetAttribute + */ +extern SDL_DECLSPEC void SDLCALL SDL_GL_ResetAttributes(void); + +/** + * Set an OpenGL window attribute before window creation. + * + * This function sets the OpenGL attribute `attr` to `value`. The requested + * attributes should be set before creating an OpenGL window. You should use + * SDL_GL_GetAttribute() to check the values after creating the OpenGL + * context, since the values obtained can differ from the requested ones. + * + * \param attr an SDL_GLAttr enum value specifying the OpenGL attribute to + * set. + * \param value the desired value for the attribute. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetAttribute + * \sa SDL_GL_ResetAttributes + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_SetAttribute(SDL_GLAttr attr, int value); + +/** + * Get the actual value for an attribute from the current context. + * + * \param attr an SDL_GLAttr enum value specifying the OpenGL attribute to + * get. + * \param value a pointer filled in with the current value of `attr`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_ResetAttributes + * \sa SDL_GL_SetAttribute + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_GetAttribute(SDL_GLAttr attr, int *value); + +/** + * Create an OpenGL context for an OpenGL window, and make it current. + * + * Windows users new to OpenGL should note that, for historical reasons, GL + * functions added after OpenGL version 1.1 are not available by default. + * Those functions must be loaded at run-time, either with an OpenGL + * extension-handling library or with SDL_GL_GetProcAddress() and its related + * functions. + * + * SDL_GLContext is opaque to the application. + * + * \param window the window to associate with the context. + * \returns the OpenGL context associated with `window` or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_DestroyContext + * \sa SDL_GL_MakeCurrent + */ +extern SDL_DECLSPEC SDL_GLContext SDLCALL SDL_GL_CreateContext(SDL_Window *window); + +/** + * Set up an OpenGL context for rendering into an OpenGL window. + * + * The context must have been created with a compatible window. + * + * \param window the window to associate with the context. + * \param context the OpenGL context to associate with the window. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_CreateContext + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_MakeCurrent(SDL_Window *window, SDL_GLContext context); + +/** + * Get the currently active OpenGL window. + * + * \returns the currently active OpenGL window on success or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GL_GetCurrentWindow(void); + +/** + * Get the currently active OpenGL context. + * + * \returns the currently active OpenGL context or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_MakeCurrent + */ +extern SDL_DECLSPEC SDL_GLContext SDLCALL SDL_GL_GetCurrentContext(void); + +/** + * Get the currently active EGL display. + * + * \returns the currently active EGL display or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_EGLDisplay SDLCALL SDL_EGL_GetCurrentDisplay(void); + +/** + * Get the currently active EGL config. + * + * \returns the currently active EGL config or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_EGLConfig SDLCALL SDL_EGL_GetCurrentConfig(void); + +/** + * Get the EGL surface associated with the window. + * + * \param window the window to query. + * \returns the EGLSurface pointer associated with the window, or NULL on + * failure. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_EGLSurface SDLCALL SDL_EGL_GetWindowSurface(SDL_Window *window); + +/** + * Sets the callbacks for defining custom EGLAttrib arrays for EGL + * initialization. + * + * Callbacks that aren't needed can be set to NULL. + * + * NOTE: These callback pointers will be reset after SDL_GL_ResetAttributes. + * + * \param platformAttribCallback callback for attributes to pass to + * eglGetPlatformDisplay. May be NULL. + * \param surfaceAttribCallback callback for attributes to pass to + * eglCreateSurface. May be NULL. + * \param contextAttribCallback callback for attributes to pass to + * eglCreateContext. May be NULL. + * \param userdata a pointer that is passed to the callbacks. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EGL_SetAttributeCallbacks(SDL_EGLAttribArrayCallback platformAttribCallback, + SDL_EGLIntArrayCallback surfaceAttribCallback, + SDL_EGLIntArrayCallback contextAttribCallback, void *userdata); + +/** + * Set the swap interval for the current OpenGL context. + * + * Some systems allow specifying -1 for the interval, to enable adaptive + * vsync. Adaptive vsync works the same as vsync, but if you've already missed + * the vertical retrace for a given frame, it swaps buffers immediately, which + * might be less jarring for the user during occasional framerate drops. If an + * application requests adaptive vsync and the system does not support it, + * this function will fail and return false. In such a case, you should + * probably retry the call with 1 for the interval. + * + * Adaptive vsync is implemented for some glX drivers with + * GLX_EXT_swap_control_tear, and for some Windows drivers with + * WGL_EXT_swap_control_tear. + * + * Read more on the Khronos wiki: + * https://www.khronos.org/opengl/wiki/Swap_Interval#Adaptive_Vsync + * + * \param interval 0 for immediate updates, 1 for updates synchronized with + * the vertical retrace, -1 for adaptive vsync. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetSwapInterval + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_SetSwapInterval(int interval); + +/** + * Get the swap interval for the current OpenGL context. + * + * If the system can't determine the swap interval, or there isn't a valid + * current context, this function will set *interval to 0 as a safe default. + * + * \param interval output interval value. 0 if there is no vertical retrace + * synchronization, 1 if the buffer swap is synchronized with + * the vertical retrace, and -1 if late swaps happen + * immediately instead of waiting for the next retrace. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_SetSwapInterval + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_GetSwapInterval(int *interval); + +/** + * Update a window with OpenGL rendering. + * + * This is used with double-buffered OpenGL contexts, which are the default. + * + * On macOS, make sure you bind 0 to the draw framebuffer before swapping the + * window, otherwise nothing will happen. If you aren't using + * glBindFramebuffer(), this is the default and you won't have to do anything + * extra. + * + * \param window the window to change. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_SwapWindow(SDL_Window *window); + +/** + * Delete an OpenGL context. + * + * \param context the OpenGL context to be deleted. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_CreateContext + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_DestroyContext(SDL_GLContext context); + +/* @} *//* OpenGL support functions */ + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_video_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_vulkan.h b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_vulkan.h new file mode 100644 index 0000000..e91e148 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Headers/SDL_vulkan.h @@ -0,0 +1,287 @@ +/* + Simple DirectMedia Layer + Copyright (C) 2017, Mark Callow + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryVulkan + * + * Functions for creating Vulkan surfaces on SDL windows. + * + * For the most part, Vulkan operates independent of SDL, but it benefits from + * a little support during setup. + * + * Use SDL_Vulkan_GetInstanceExtensions() to get platform-specific bits for + * creating a VkInstance, then SDL_Vulkan_GetVkGetInstanceProcAddr() to get + * the appropriate function for querying Vulkan entry points. Then + * SDL_Vulkan_CreateSurface() will get you the final pieces you need to + * prepare for rendering into an SDL_Window with Vulkan. + * + * Unlike OpenGL, most of the details of "context" creation and window buffer + * swapping are handled by the Vulkan API directly, so SDL doesn't provide + * Vulkan equivalents of SDL_GL_SwapWindow(), etc; they aren't necessary. + */ + +#ifndef SDL_vulkan_h_ +#define SDL_vulkan_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Avoid including vulkan_core.h, don't define VkInstance if it's already included */ +#ifdef VULKAN_CORE_H_ +#define NO_SDL_VULKAN_TYPEDEFS +#endif +#ifndef NO_SDL_VULKAN_TYPEDEFS +#define VK_DEFINE_HANDLE(object) typedef struct object##_T* object; + +#if defined(__LP64__) || defined(_WIN64) || (defined(__x86_64__) && !defined(__ILP32__)) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__) || (defined(__riscv) && __riscv_xlen == 64) +#define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef struct object##_T *object; +#else +#define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef uint64_t object; +#endif + +VK_DEFINE_HANDLE(VkInstance) +VK_DEFINE_HANDLE(VkPhysicalDevice) +VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkSurfaceKHR) +struct VkAllocationCallbacks; + +/* Make sure to undef to avoid issues in case of later vulkan include */ +#undef VK_DEFINE_HANDLE +#undef VK_DEFINE_NON_DISPATCHABLE_HANDLE + +#endif /* !NO_SDL_VULKAN_TYPEDEFS */ + +/** + * \name Vulkan support functions + */ +/* @{ */ + +/** + * Dynamically load the Vulkan loader library. + * + * This should be called after initializing the video driver, but before + * creating any Vulkan windows. If no Vulkan loader library is loaded, the + * default library will be loaded upon creation of the first Vulkan window. + * + * SDL keeps a counter of how many times this function has been successfully + * called, so it is safe to call this function multiple times, so long as it + * is eventually paired with an equivalent number of calls to + * SDL_Vulkan_UnloadLibrary. The `path` argument is ignored unless there is no + * library currently loaded, and and the library isn't actually unloaded until + * there have been an equivalent number of calls to SDL_Vulkan_UnloadLibrary. + * + * It is fairly common for Vulkan applications to link with libvulkan instead + * of explicitly loading it at run time. This will work with SDL provided the + * application links to a dynamic library and both it and SDL use the same + * search path. + * + * If you specify a non-NULL `path`, an application should retrieve all of the + * Vulkan functions it uses from the dynamic library using + * SDL_Vulkan_GetVkGetInstanceProcAddr unless you can guarantee `path` points + * to the same vulkan loader library the application linked to. + * + * On Apple devices, if `path` is NULL, SDL will attempt to find the + * `vkGetInstanceProcAddr` address within all the Mach-O images of the current + * process. This is because it is fairly common for Vulkan applications to + * link with libvulkan (and historically MoltenVK was provided as a static + * library). If it is not found, on macOS, SDL will attempt to load + * `vulkan.framework/vulkan`, `libvulkan.1.dylib`, + * `MoltenVK.framework/MoltenVK`, and `libMoltenVK.dylib`, in that order. On + * iOS, SDL will attempt to load `libMoltenVK.dylib`. Applications using a + * dynamic framework or .dylib must ensure it is included in its application + * bundle. + * + * On non-Apple devices, application linking with a static libvulkan is not + * supported. Either do not link to the Vulkan loader or link to a dynamic + * library version. + * + * \param path the platform dependent Vulkan loader library name or NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetVkGetInstanceProcAddr + * \sa SDL_Vulkan_UnloadLibrary + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Vulkan_LoadLibrary(const char *path); + +/** + * Get the address of the `vkGetInstanceProcAddr` function. + * + * This should be called after either calling SDL_Vulkan_LoadLibrary() or + * creating an SDL_Window with the `SDL_WINDOW_VULKAN` flag. + * + * The actual type of the returned function pointer is + * PFN_vkGetInstanceProcAddr, but that isn't available because the Vulkan + * headers are not included here. You should cast the return value of this + * function to that type, e.g. + * + * `vkGetInstanceProcAddr = + * (PFN_vkGetInstanceProcAddr)SDL_Vulkan_GetVkGetInstanceProcAddr();` + * + * \returns the function pointer for `vkGetInstanceProcAddr` or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_Vulkan_GetVkGetInstanceProcAddr(void); + +/** + * Unload the Vulkan library previously loaded by SDL_Vulkan_LoadLibrary(). + * + * SDL keeps a counter of how many times this function has been called, so it + * is safe to call this function multiple times, so long as it is paired with + * an equivalent number of calls to SDL_Vulkan_LoadLibrary. The library isn't + * actually unloaded until there have been an equivalent number of calls to + * SDL_Vulkan_UnloadLibrary. + * + * Once the library has actually been unloaded, if any Vulkan instances + * remain, they will likely crash the program. Clean up any existing Vulkan + * resources, and destroy appropriate windows, renderers and GPU devices + * before calling this function. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_LoadLibrary + */ +extern SDL_DECLSPEC void SDLCALL SDL_Vulkan_UnloadLibrary(void); + +/** + * Get the Vulkan instance extensions needed for vkCreateInstance. + * + * This should be called after either calling SDL_Vulkan_LoadLibrary() or + * creating an SDL_Window with the `SDL_WINDOW_VULKAN` flag. + * + * On return, the variable pointed to by `count` will be set to the number of + * elements returned, suitable for using with + * VkInstanceCreateInfo::enabledExtensionCount, and the returned array can be + * used with VkInstanceCreateInfo::ppEnabledExtensionNames, for calling + * Vulkan's vkCreateInstance API. + * + * You should not free the returned array; it is owned by SDL. + * + * \param count a pointer filled in with the number of extensions returned. + * \returns an array of extension name strings on success, NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_CreateSurface + */ +extern SDL_DECLSPEC char const * const * SDLCALL SDL_Vulkan_GetInstanceExtensions(Uint32 *count); + +/** + * Create a Vulkan rendering surface for a window. + * + * The `window` must have been created with the `SDL_WINDOW_VULKAN` flag and + * `instance` must have been created with extensions returned by + * SDL_Vulkan_GetInstanceExtensions() enabled. + * + * If `allocator` is NULL, Vulkan will use the system default allocator. This + * argument is passed directly to Vulkan and isn't used by SDL itself. + * + * \param window the window to which to attach the Vulkan surface. + * \param instance the Vulkan instance handle. + * \param allocator a VkAllocationCallbacks struct, which lets the app set the + * allocator that creates the surface. Can be NULL. + * \param surface a pointer to a VkSurfaceKHR handle to output the newly + * created surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetInstanceExtensions + * \sa SDL_Vulkan_DestroySurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Vulkan_CreateSurface(SDL_Window *window, + VkInstance instance, + const struct VkAllocationCallbacks *allocator, + VkSurfaceKHR *surface); + +/** + * Destroy the Vulkan rendering surface of a window. + * + * This should be called before SDL_DestroyWindow, if SDL_Vulkan_CreateSurface + * was called after SDL_CreateWindow. + * + * The `instance` must have been created with extensions returned by + * SDL_Vulkan_GetInstanceExtensions() enabled and `surface` must have been + * created successfully by an SDL_Vulkan_CreateSurface() call. + * + * If `allocator` is NULL, Vulkan will use the system default allocator. This + * argument is passed directly to Vulkan and isn't used by SDL itself. + * + * \param instance the Vulkan instance handle. + * \param surface vkSurfaceKHR handle to destroy. + * \param allocator a VkAllocationCallbacks struct, which lets the app set the + * allocator that destroys the surface. Can be NULL. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetInstanceExtensions + * \sa SDL_Vulkan_CreateSurface + */ +extern SDL_DECLSPEC void SDLCALL SDL_Vulkan_DestroySurface(VkInstance instance, + VkSurfaceKHR surface, + const struct VkAllocationCallbacks *allocator); + +/** + * Query support for presentation via a given physical device and queue + * family. + * + * The `instance` must have been created with extensions returned by + * SDL_Vulkan_GetInstanceExtensions() enabled. + * + * \param instance the Vulkan instance handle. + * \param physicalDevice a valid Vulkan physical device handle. + * \param queueFamilyIndex a valid queue family index for the given physical + * device. + * \returns true if supported, false if unsupported or an error occurred. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetInstanceExtensions + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Vulkan_GetPresentationSupport(VkInstance instance, + VkPhysicalDevice physicalDevice, + Uint32 queueFamilyIndex); + +/* @} *//* Vulkan support functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_vulkan_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/INSTALL.md b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/INSTALL.md new file mode 100644 index 0000000..97e4ab6 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/INSTALL.md @@ -0,0 +1,41 @@ + +# Using this package + +This package contains SDL built for Xcode. + +To use this package in Xcode, drag `SDL3.framework` into your project. + +# Documentation + +An API reference, tutorials, and additional documentation is available at: + +https://wiki.libsdl.org/SDL3 + +# Example code + +There are simple example programs available at: + +https://examples.libsdl.org/SDL3 + +# Discussions + +## Discord + +You can join the official Discord server at: + +https://discord.com/invite/BwpFGBWsv8 + +## Forums/mailing lists + +You can join SDL development discussions at: + +https://discourse.libsdl.org/ + +Once you sign up, you can use the forum through the website or as a mailing list from your email client. + +## Announcement list + +You can sign up for the low traffic announcement list at: + +https://www.libsdl.org/mailing-list.php + diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Info.plist b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/Info.plist new file mode 100644 index 0000000000000000000000000000000000000000..41a032e5c6ac0232543c38495e4a253fb30086b6 GIT binary patch literal 855 zcmY*XO;6N7819T;h~gFy`4DtL5kE`2%Pzr04{TZ8z{-YpmsOEwwjFjSOh0U=;3gjY z2_7{b3Mcc$S{5-?f*DGma7?D&b3 zr@BsepE=ueE+zK%^`9TOFgP?ka&dI*(&hB{MEdIFwW-PLH*Vg#Eg53}d`PHOMrMmR zcvT;C21F_jqNMo(0|;MyLc(P>kvo=7{}SwF&uC+s~U zj{KUs*ik=Lb)H7TRaLK>u7%g)7_V9^6NlKLy{yIN^=gT4otU_YY(m?HI9e^O;O8On zv2|D|AP+SNC5+&pmdQTMXY#8HPLscZ79X~h<=4?-%)2{1y}i9HQPK!3D!D$tjuihV zM5NU6l5B`W8nHc!(<&cfvNE;^N-v={_Vr?Ub+ML}GEzp4I@fou)Jdh~MlZz>CrsCt zkjI@8&pO)*Buckz$)w0>N{S&@GfHuGwobgr;|97iE9KS_6aihy&B!$+SIjDwt|*ec zb4LU_(^cf#`5B>0m=l(TP2rXBM%Wehh3~>I&;!Q7eNX{Ufel`Q*Wexa0CvG1*attr zZwO&GOu;EQ2k*f;d + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/README.md b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/README.md new file mode 100644 index 0000000..68b0923 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/README.md @@ -0,0 +1,17 @@ + +Simple DirectMedia Layer (SDL for short) is a cross-platform library +designed to make it easy to write multi-media software, such as games +and emulators. + +You can find the latest release and additional information at: +https://www.libsdl.org/ + +Installation instructions and a quick introduction is available in +[INSTALL.md](INSTALL.md) + +This library is distributed under the terms of the zlib license, +available in [LICENSE.txt](LICENSE.txt). + +Enjoy! + +Sam Lantinga (slouken@libsdl.org) diff --git a/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/SDL3 b/release/frameworks/SDL3.xcframework/ios-arm64/SDL3.framework/SDL3 new file mode 100644 index 0000000000000000000000000000000000000000..fffd68c2a9a3cb7b454be89d8cc5ac803a2667fe GIT binary patch literal 1651920 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%0A|{F@$mU{lnsk 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

x?Q2z;MiG;%+Q&;qk|I*y+f-W}yAohjP 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≻qWioBk8}^Id5AVdy%EZ=m`DU#PC& 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

Ryp0 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%0Djn64gIG^>bi}}j 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�) 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%0A!A3jSg^mT+UeNGd?3|v&OZAc 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�Q_`* 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�B=Nsc%jY9(+(xr+ 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

e0S3vaiC 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 literal 0 HcmV?d00001 diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL.h new file mode 100644 index 0000000..587b541 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL.h @@ -0,0 +1,90 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * Main include header for the SDL library, version 3.2.20 + * + * It is almost always best to include just this one header instead of + * picking out individual headers included here. There are exceptions to + * this rule--SDL_main.h is special and not included here--but usually + * letting SDL.h include the kitchen sink for you is the correct approach. + */ + +#ifndef SDL_h_ +#define SDL_h_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#endif /* SDL_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_assert.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_assert.h new file mode 100644 index 0000000..053af13 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_assert.h @@ -0,0 +1,662 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryAssert + * + * A helpful assertion macro! + * + * SDL assertions operate like your usual `assert` macro, but with some added + * features: + * + * - It uses a trick with the `sizeof` operator, so disabled assertions + * vaporize out of the compiled code, but variables only referenced in the + * assertion won't trigger compiler warnings about being unused. + * - It is safe to use with a dangling-else: `if (x) SDL_assert(y); else + * do_something();` + * - It works the same everywhere, instead of counting on various platforms' + * compiler and C runtime to behave. + * - It provides multiple levels of assertion (SDL_assert, SDL_assert_release, + * SDL_assert_paranoid) instead of a single all-or-nothing option. + * - It offers a variety of responses when an assertion fails (retry, trigger + * the debugger, abort the program, ignore the failure once, ignore it for + * the rest of the program's run). + * - It tries to show the user a dialog by default, if possible, but the app + * can provide a callback to handle assertion failures however they like. + * - It lets failed assertions be retried. Perhaps you had a network failure + * and just want to retry the test after plugging your network cable back + * in? You can. + * - It lets the user ignore an assertion failure, if there's a harmless + * problem that one can continue past. + * - It lets the user mark an assertion as ignored for the rest of the + * program's run; if there's a harmless problem that keeps popping up. + * - It provides statistics and data on all failed assertions to the app. + * - It allows the default assertion handler to be controlled with environment + * variables, in case an automated script needs to control it. + * - It can be used as an aid to Clang's static analysis; it will treat SDL + * assertions as universally true (under the assumption that you are serious + * about the asserted claims and that your debug builds will detect when + * these claims were wrong). This can help the analyzer avoid false + * positives. + * + * To use it: compile a debug build and just sprinkle around tests to check + * your code! + */ + +#ifndef SDL_assert_h_ +#define SDL_assert_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * The level of assertion aggressiveness. + * + * This value changes depending on compiler options and other preprocessor + * defines. + * + * It is currently one of the following values, but future SDL releases might + * add more: + * + * - 0: All SDL assertion macros are disabled. + * - 1: Release settings: SDL_assert disabled, SDL_assert_release enabled. + * - 2: Debug settings: SDL_assert and SDL_assert_release enabled. + * - 3: Paranoid settings: All SDL assertion macros enabled, including + * SDL_assert_paranoid. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ASSERT_LEVEL SomeNumberBasedOnVariousFactors + +#elif !defined(SDL_ASSERT_LEVEL) +#ifdef SDL_DEFAULT_ASSERT_LEVEL +#define SDL_ASSERT_LEVEL SDL_DEFAULT_ASSERT_LEVEL +#elif defined(_DEBUG) || defined(DEBUG) || \ + (defined(__GNUC__) && !defined(__OPTIMIZE__)) +#define SDL_ASSERT_LEVEL 2 +#else +#define SDL_ASSERT_LEVEL 1 +#endif +#endif + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Attempt to tell an attached debugger to pause. + * + * This allows an app to programmatically halt ("break") the debugger as if it + * had hit a breakpoint, allowing the developer to examine program state, etc. + * + * This is a macro--not a function--so that the debugger breaks on the source + * code line that used SDL_TriggerBreakpoint and not in some random guts of + * SDL. SDL_assert uses this macro for the same reason. + * + * If the program is not running under a debugger, SDL_TriggerBreakpoint will + * likely terminate the app, possibly without warning. If the current platform + * isn't supported, this macro is left undefined. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TriggerBreakpoint() TriggerABreakpointInAPlatformSpecificManner + +#elif defined(_MSC_VER) && _MSC_VER >= 1310 + /* Don't include intrin.h here because it contains C++ code */ + extern void __cdecl __debugbreak(void); + #define SDL_TriggerBreakpoint() __debugbreak() +#elif defined(_MSC_VER) && defined(_M_IX86) + #define SDL_TriggerBreakpoint() { _asm { int 0x03 } } +#elif defined(ANDROID) + #include + #define SDL_TriggerBreakpoint() assert(0) +#elif SDL_HAS_BUILTIN(__builtin_debugtrap) + #define SDL_TriggerBreakpoint() __builtin_debugtrap() +#elif SDL_HAS_BUILTIN(__builtin_trap) + #define SDL_TriggerBreakpoint() __builtin_trap() +#elif (defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__)) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "int $3\n\t" ) +#elif (defined(__GNUC__) || defined(__clang__)) && defined(__riscv) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "ebreak\n\t" ) +#elif ( defined(SDL_PLATFORM_APPLE) && (defined(__arm64__) || defined(__aarch64__)) ) /* this might work on other ARM targets, but this is a known quantity... */ + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "brk #22\n\t" ) +#elif defined(SDL_PLATFORM_APPLE) && defined(__arm__) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "bkpt #22\n\t" ) +#elif defined(_WIN32) && ((defined(__GNUC__) || defined(__clang__)) && (defined(__arm64__) || defined(__aarch64__)) ) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "brk #0xF000\n\t" ) +#elif defined(__GNUC__) || defined(__clang__) + #define SDL_TriggerBreakpoint() __builtin_trap() /* older gcc may not support SDL_HAS_BUILTIN(__builtin_trap) above */ +#elif defined(__386__) && defined(__WATCOMC__) + #define SDL_TriggerBreakpoint() { _asm { int 0x03 } } +#elif defined(HAVE_SIGNAL_H) && !defined(__WATCOMC__) + #include + #define SDL_TriggerBreakpoint() raise(SIGTRAP) +#else + /* SDL_TriggerBreakpoint is intentionally left undefined on unknown platforms. */ +#endif + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro that reports the current function being compiled. + * + * If SDL can't figure how the compiler reports this, it will use "???". + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FUNCTION __FUNCTION__ + +#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 supports __func__ as a standard. */ +# define SDL_FUNCTION __func__ +#elif ((defined(__GNUC__) && (__GNUC__ >= 2)) || defined(_MSC_VER) || defined (__WATCOMC__)) +# define SDL_FUNCTION __FUNCTION__ +#else +# define SDL_FUNCTION "???" +#endif + +/** + * A macro that reports the current file being compiled. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FILE __FILE__ + +/** + * A macro that reports the current line number of the file being compiled. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_LINE __LINE__ + +/* +sizeof (x) makes the compiler still parse the expression even without +assertions enabled, so the code is always checked at compile time, but +doesn't actually generate code for it, so there are no side effects or +expensive checks at run time, just the constant size of what x WOULD be, +which presumably gets optimized out as unused. +This also solves the problem of... + + int somevalue = blah(); + SDL_assert(somevalue == 1); + +...which would cause compiles to complain that somevalue is unused if we +disable assertions. +*/ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro for wrapping code in `do {} while (0);` without compiler warnings. + * + * Visual Studio with really aggressive warnings enabled needs this to avoid + * compiler complaints. + * + * the `do {} while (0);` trick is useful for wrapping code in a macro that + * may or may not be a single statement, to avoid various C language + * accidents. + * + * To use: + * + * ```c + * do { SomethingOnce(); } while (SDL_NULL_WHILE_LOOP_CONDITION (0)); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NULL_WHILE_LOOP_CONDITION (0) + +#elif defined(_MSC_VER) /* Avoid /W4 warnings. */ +/* "while (0,0)" fools Microsoft's compiler's /W4 warning level into thinking + this condition isn't constant. And looks like an owl's face! */ +#define SDL_NULL_WHILE_LOOP_CONDITION (0,0) +#else +#define SDL_NULL_WHILE_LOOP_CONDITION (0) +#endif + +/** + * The macro used when an assertion is disabled. + * + * This isn't for direct use by apps, but this is the code that is inserted + * when an SDL_assert is disabled (perhaps in a release build). + * + * The code does nothing, but wraps `condition` in a sizeof operator, which + * generates no code and has no side effects, but avoid compiler warnings + * about unused variables. + * + * \param condition the condition to assert (but not actually run here). + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_disabled_assert(condition) \ + do { (void) sizeof ((condition)); } while (SDL_NULL_WHILE_LOOP_CONDITION) + +/** + * Possible outcomes from a triggered assertion. + * + * When an enabled assertion triggers, it may call the assertion handler + * (possibly one provided by the app via SDL_SetAssertionHandler), which will + * return one of these values, possibly after asking the user. + * + * Then SDL will respond based on this outcome (loop around to retry the + * condition, try to break in a debugger, kill the program, or ignore the + * problem). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AssertState +{ + SDL_ASSERTION_RETRY, /**< Retry the assert immediately. */ + SDL_ASSERTION_BREAK, /**< Make the debugger trigger a breakpoint. */ + SDL_ASSERTION_ABORT, /**< Terminate the program. */ + SDL_ASSERTION_IGNORE, /**< Ignore the assert. */ + SDL_ASSERTION_ALWAYS_IGNORE /**< Ignore the assert from now on. */ +} SDL_AssertState; + +/** + * Information about an assertion failure. + * + * This structure is filled in with information about a triggered assertion, + * used by the assertion handler, then added to the assertion report. This is + * returned as a linked list from SDL_GetAssertionReport(). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_AssertData +{ + bool always_ignore; /**< true if app should always continue when assertion is triggered. */ + unsigned int trigger_count; /**< Number of times this assertion has been triggered. */ + const char *condition; /**< A string of this assert's test code. */ + const char *filename; /**< The source file where this assert lives. */ + int linenum; /**< The line in `filename` where this assert lives. */ + const char *function; /**< The name of the function where this assert lives. */ + const struct SDL_AssertData *next; /**< next item in the linked list. */ +} SDL_AssertData; + +/** + * Never call this directly. + * + * Use the SDL_assert macros instead. + * + * \param data assert data structure. + * \param func function name. + * \param file file name. + * \param line line number. + * \returns assert state. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_AssertState SDLCALL SDL_ReportAssertion(SDL_AssertData *data, + const char *func, + const char *file, int line) SDL_ANALYZER_NORETURN; + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * The macro used when an assertion triggers a breakpoint. + * + * This isn't for direct use by apps; use SDL_assert or SDL_TriggerBreakpoint + * instead. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AssertBreakpoint() SDL_TriggerBreakpoint() + +#elif !defined(SDL_AssertBreakpoint) +# if defined(ANDROID) && defined(assert) + /* Define this as empty in case assert() is defined as SDL_assert */ +# define SDL_AssertBreakpoint() +# else +# define SDL_AssertBreakpoint() SDL_TriggerBreakpoint() +# endif +#endif /* !SDL_AssertBreakpoint */ + +/** + * The macro used when an assertion is enabled. + * + * This isn't for direct use by apps, but this is the code that is inserted + * when an SDL_assert is enabled. + * + * The `do {} while(0)` avoids dangling else problems: + * + * ```c + * if (x) SDL_assert(y); else blah(); + * ``` + * + * ... without the do/while, the "else" could attach to this macro's "if". We + * try to handle just the minimum we need here in a macro...the loop, the + * static vars, and break points. The heavy lifting is handled in + * SDL_ReportAssertion(). + * + * \param condition the condition to assert. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_enabled_assert(condition) \ + do { \ + while ( !(condition) ) { \ + static struct SDL_AssertData sdl_assert_data = { false, 0, #condition, NULL, 0, NULL, NULL }; \ + const SDL_AssertState sdl_assert_state = SDL_ReportAssertion(&sdl_assert_data, SDL_FUNCTION, SDL_FILE, SDL_LINE); \ + if (sdl_assert_state == SDL_ASSERTION_RETRY) { \ + continue; /* go again. */ \ + } else if (sdl_assert_state == SDL_ASSERTION_BREAK) { \ + SDL_AssertBreakpoint(); \ + } \ + break; /* not retrying. */ \ + } \ + } while (SDL_NULL_WHILE_LOOP_CONDITION) + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * An assertion test that is normally performed only in debug builds. + * + * This macro is enabled when the SDL_ASSERT_LEVEL is >= 2, otherwise it is + * disabled. This is meant to only do these tests in debug builds, so they can + * tend to be more expensive, and they are meant to bring everything to a halt + * when they fail, with the programmer there to assess the problem. + * + * In short: you can sprinkle these around liberally and assume they will + * evaporate out of the build when building for end-users. + * + * When assertions are disabled, this wraps `condition` in a `sizeof` + * operator, which means any function calls and side effects will not run, but + * the compiler will not complain about any otherwise-unused variables that + * are only referenced in the assertion. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert(condition) if (assertion_enabled && (condition)) { trigger_assertion; } + +/** + * An assertion test that is performed even in release builds. + * + * This macro is enabled when the SDL_ASSERT_LEVEL is >= 1, otherwise it is + * disabled. This is meant to be for tests that are cheap to make and + * extremely unlikely to fail; generally it is frowned upon to have an + * assertion failure in a release build, so these assertions generally need to + * be of more than life-and-death importance if there's a chance they might + * trigger. You should almost always consider handling these cases more + * gracefully than an assert allows. + * + * When assertions are disabled, this wraps `condition` in a `sizeof` + * operator, which means any function calls and side effects will not run, but + * the compiler will not complain about any otherwise-unused variables that + * are only referenced in the assertion. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * * + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert_release(condition) SDL_disabled_assert(condition) + +/** + * An assertion test that is performed only when built with paranoid settings. + * + * This macro is enabled when the SDL_ASSERT_LEVEL is >= 3, otherwise it is + * disabled. This is a higher level than both release and debug, so these + * tests are meant to be expensive and only run when specifically looking for + * extremely unexpected failure cases in a special build. + * + * When assertions are disabled, this wraps `condition` in a `sizeof` + * operator, which means any function calls and side effects will not run, but + * the compiler will not complain about any otherwise-unused variables that + * are only referenced in the assertion. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) + +/* Enable various levels of assertions. */ +#elif SDL_ASSERT_LEVEL == 0 /* assertions disabled */ +# define SDL_assert(condition) SDL_disabled_assert(condition) +# define SDL_assert_release(condition) SDL_disabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 1 /* release settings. */ +# define SDL_assert(condition) SDL_disabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 2 /* debug settings. */ +# define SDL_assert(condition) SDL_enabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 3 /* paranoid settings. */ +# define SDL_assert(condition) SDL_enabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_enabled_assert(condition) +#else +# error Unknown assertion level. +#endif + +/** + * An assertion test that is always performed. + * + * This macro is always enabled no matter what SDL_ASSERT_LEVEL is set to. You + * almost never want to use this, as it could trigger on an end-user's system, + * crashing your program. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert_always(condition) SDL_enabled_assert(condition) + + +/** + * A callback that fires when an SDL assertion fails. + * + * \param data a pointer to the SDL_AssertData structure corresponding to the + * current assertion. + * \param userdata what was passed as `userdata` to SDL_SetAssertionHandler(). + * \returns an SDL_AssertState value indicating how to handle the failure. + * + * \threadsafety This callback may be called from any thread that triggers an + * assert at any time. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AssertState (SDLCALL *SDL_AssertionHandler)( + const SDL_AssertData *data, void *userdata); + +/** + * Set an application-defined assertion handler. + * + * This function allows an application to show its own assertion UI and/or + * force the response to an assertion failure. If the application doesn't + * provide this, SDL will try to do the right thing, popping up a + * system-specific GUI dialog, and probably minimizing any fullscreen windows. + * + * This callback may fire from any thread, but it runs wrapped in a mutex, so + * it will only fire from one thread at a time. + * + * This callback is NOT reset to SDL's internal handler upon SDL_Quit()! + * + * \param handler the SDL_AssertionHandler function to call when an assertion + * fails or NULL for the default handler. + * \param userdata a pointer that is passed to `handler`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAssertionHandler + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetAssertionHandler( + SDL_AssertionHandler handler, + void *userdata); + +/** + * Get the default assertion handler. + * + * This returns the function pointer that is called by default when an + * assertion is triggered. This is an internal function provided by SDL, that + * is used for assertions when SDL_SetAssertionHandler() hasn't been used to + * provide a different function. + * + * \returns the default SDL_AssertionHandler that is called when an assert + * triggers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAssertionHandler + */ +extern SDL_DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetDefaultAssertionHandler(void); + +/** + * Get the current assertion handler. + * + * This returns the function pointer that is called when an assertion is + * triggered. This is either the value last passed to + * SDL_SetAssertionHandler(), or if no application-specified function is set, + * is equivalent to calling SDL_GetDefaultAssertionHandler(). + * + * The parameter `puserdata` is a pointer to a void*, which will store the + * "userdata" pointer that was passed to SDL_SetAssertionHandler(). This value + * will always be NULL for the default handler. If you don't care about this + * data, it is safe to pass a NULL pointer to this function to ignore it. + * + * \param puserdata pointer which is filled with the "userdata" pointer that + * was passed to SDL_SetAssertionHandler(). + * \returns the SDL_AssertionHandler that is called when an assert triggers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAssertionHandler + */ +extern SDL_DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetAssertionHandler(void **puserdata); + +/** + * Get a list of all assertion failures. + * + * This function gets all assertions triggered since the last call to + * SDL_ResetAssertionReport(), or the start of the program. + * + * The proper way to examine this data looks something like this: + * + * ```c + * const SDL_AssertData *item = SDL_GetAssertionReport(); + * while (item) { + * printf("'%s', %s (%s:%d), triggered %u times, always ignore: %s.\\n", + * item->condition, item->function, item->filename, + * item->linenum, item->trigger_count, + * item->always_ignore ? "yes" : "no"); + * item = item->next; + * } + * ``` + * + * \returns a list of all failed assertions or NULL if the list is empty. This + * memory should not be modified or freed by the application. This + * pointer remains valid until the next call to SDL_Quit() or + * SDL_ResetAssertionReport(). + * + * \threadsafety This function is not thread safe. Other threads calling + * SDL_ResetAssertionReport() simultaneously, may render the + * returned pointer invalid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResetAssertionReport + */ +extern SDL_DECLSPEC const SDL_AssertData * SDLCALL SDL_GetAssertionReport(void); + +/** + * Clear the list of all assertion failures. + * + * This function will clear the list of all assertions triggered up to that + * point. Immediately following this call, SDL_GetAssertionReport will return + * no items. In addition, any previously-triggered assertions will be reset to + * a trigger_count of zero, and their always_ignore state will be false. + * + * \threadsafety This function is not thread safe. Other threads triggering an + * assertion, or simultaneously calling this function may cause + * memory leaks or crashes. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAssertionReport + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetAssertionReport(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_assert_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_asyncio.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_asyncio.h new file mode 100644 index 0000000..b36cb07 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_asyncio.h @@ -0,0 +1,546 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: AsyncIO */ + +/** + * # CategoryAsyncIO + * + * SDL offers a way to perform I/O asynchronously. This allows an app to read + * or write files without waiting for data to actually transfer; the functions + * that request I/O never block while the request is fulfilled. + * + * Instead, the data moves in the background and the app can check for results + * at their leisure. + * + * This is more complicated than just reading and writing files in a + * synchronous way, but it can allow for more efficiency, and never having + * framerate drops as the hard drive catches up, etc. + * + * The general usage pattern for async I/O is: + * + * - Create one or more SDL_AsyncIOQueue objects. + * - Open files with SDL_AsyncIOFromFile. + * - Start I/O tasks to the files with SDL_ReadAsyncIO or SDL_WriteAsyncIO, + * putting those tasks into one of the queues. + * - Later on, use SDL_GetAsyncIOResult on a queue to see if any task is + * finished without blocking. Tasks might finish in any order with success + * or failure. + * - When all your tasks are done, close the file with SDL_CloseAsyncIO. This + * also generates a task, since it might flush data to disk! + * + * This all works, without blocking, in a single thread, but one can also wait + * on a queue in a background thread, sleeping until new results have arrived: + * + * - Call SDL_WaitAsyncIOResult from one or more threads to efficiently block + * until new tasks complete. + * - When shutting down, call SDL_SignalAsyncIOQueue to unblock any sleeping + * threads despite there being no new tasks completed. + * + * And, of course, to match the synchronous SDL_LoadFile, we offer + * SDL_LoadFileAsync as a convenience function. This will handle allocating a + * buffer, slurping in the file data, and null-terminating it; you still check + * for results later. + * + * Behind the scenes, SDL will use newer, efficient APIs on platforms that + * support them: Linux's io_uring and Windows 11's IoRing, for example. If + * those technologies aren't available, SDL will offload the work to a thread + * pool that will manage otherwise-synchronous loads without blocking the app. + * + * ## Best Practices + * + * Simple non-blocking I/O--for an app that just wants to pick up data + * whenever it's ready without losing framerate waiting on disks to spin--can + * use whatever pattern works well for the program. In this case, simply call + * SDL_ReadAsyncIO, or maybe SDL_LoadFileAsync, as needed. Once a frame, call + * SDL_GetAsyncIOResult to check for any completed tasks and deal with the + * data as it arrives. + * + * If two separate pieces of the same program need their own I/O, it is legal + * for each to create their own queue. This will prevent either piece from + * accidentally consuming the other's completed tasks. Each queue does require + * some amount of resources, but it is not an overwhelming cost. Do not make a + * queue for each task, however. It is better to put many tasks into a single + * queue. They will be reported in order of completion, not in the order they + * were submitted, so it doesn't generally matter what order tasks are + * started. + * + * One async I/O queue can be shared by multiple threads, or one thread can + * have more than one queue, but the most efficient way--if ruthless + * efficiency is the goal--is to have one queue per thread, with multiple + * threads working in parallel, and attempt to keep each queue loaded with + * tasks that are both started by and consumed by the same thread. On modern + * platforms that can use newer interfaces, this can keep data flowing as + * efficiently as possible all the way from storage hardware to the app, with + * no contention between threads for access to the same queue. + * + * Written data is not guaranteed to make it to physical media by the time a + * closing task is completed, unless SDL_CloseAsyncIO is called with its + * `flush` parameter set to true, which is to say that a successful result + * here can still result in lost data during an unfortunately-timed power + * outage if not flushed. However, flushing will take longer and may be + * unnecessary, depending on the app's needs. + */ + +#ifndef SDL_asyncio_h_ +#define SDL_asyncio_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The asynchronous I/O operation structure. + * + * This operates as an opaque handle. One can then request read or write + * operations on it. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AsyncIOFromFile + */ +typedef struct SDL_AsyncIO SDL_AsyncIO; + +/** + * Types of asynchronous I/O tasks. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AsyncIOTaskType +{ + SDL_ASYNCIO_TASK_READ, /**< A read operation. */ + SDL_ASYNCIO_TASK_WRITE, /**< A write operation. */ + SDL_ASYNCIO_TASK_CLOSE /**< A close operation. */ +} SDL_AsyncIOTaskType; + +/** + * Possible outcomes of an asynchronous I/O task. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AsyncIOResult +{ + SDL_ASYNCIO_COMPLETE, /**< request was completed without error */ + SDL_ASYNCIO_FAILURE, /**< request failed for some reason; check SDL_GetError()! */ + SDL_ASYNCIO_CANCELED /**< request was canceled before completing. */ +} SDL_AsyncIOResult; + +/** + * Information about a completed asynchronous I/O request. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_AsyncIOOutcome +{ + SDL_AsyncIO *asyncio; /**< what generated this task. This pointer will be invalid if it was closed! */ + SDL_AsyncIOTaskType type; /**< What sort of task was this? Read, write, etc? */ + SDL_AsyncIOResult result; /**< the result of the work (success, failure, cancellation). */ + void *buffer; /**< buffer where data was read/written. */ + Uint64 offset; /**< offset in the SDL_AsyncIO where data was read/written. */ + Uint64 bytes_requested; /**< number of bytes the task was to read/write. */ + Uint64 bytes_transferred; /**< actual number of bytes that were read/written. */ + void *userdata; /**< pointer provided by the app when starting the task */ +} SDL_AsyncIOOutcome; + +/** + * A queue of completed asynchronous I/O tasks. + * + * When starting an asynchronous operation, you specify a queue for the new + * task. A queue can be asked later if any tasks in it have completed, + * allowing an app to manage multiple pending tasks in one place, in whatever + * order they complete. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateAsyncIOQueue + * \sa SDL_ReadAsyncIO + * \sa SDL_WriteAsyncIO + * \sa SDL_GetAsyncIOResult + * \sa SDL_WaitAsyncIOResult + */ +typedef struct SDL_AsyncIOQueue SDL_AsyncIOQueue; + +/** + * Use this function to create a new SDL_AsyncIO object for reading from + * and/or writing to a named file. + * + * The `mode` string understands the following values: + * + * - "r": Open a file for reading only. It must exist. + * - "w": Open a file for writing only. It will create missing files or + * truncate existing ones. + * - "r+": Open a file for update both reading and writing. The file must + * exist. + * - "w+": Create an empty file for both reading and writing. If a file with + * the same name already exists its content is erased and the file is + * treated as a new empty file. + * + * There is no "b" mode, as there is only "binary" style I/O, and no "a" mode + * for appending, since you specify the position when starting a task. + * + * This function supports Unicode filenames, but they must be encoded in UTF-8 + * format, regardless of the underlying operating system. + * + * This call is _not_ asynchronous; it will open the file before returning, + * under the assumption that doing so is generally a fast operation. Future + * reads and writes to the opened file will be async, however. + * + * \param file a UTF-8 string representing the filename to open. + * \param mode an ASCII string representing the mode to be used for opening + * the file. + * \returns a pointer to the SDL_AsyncIO structure that is created or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseAsyncIO + * \sa SDL_ReadAsyncIO + * \sa SDL_WriteAsyncIO + */ +extern SDL_DECLSPEC SDL_AsyncIO * SDLCALL SDL_AsyncIOFromFile(const char *file, const char *mode); + +/** + * Use this function to get the size of the data stream in an SDL_AsyncIO. + * + * This call is _not_ asynchronous; it assumes that obtaining this info is a + * non-blocking operation in most reasonable cases. + * + * \param asyncio the SDL_AsyncIO to get the size of the data stream from. + * \returns the size of the data stream in the SDL_IOStream on success or a + * negative error code on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_GetAsyncIOSize(SDL_AsyncIO *asyncio); + +/** + * Start an async read. + * + * This function reads up to `size` bytes from `offset` position in the data + * source to the area pointed at by `ptr`. This function may read less bytes + * than requested. + * + * This function returns as quickly as possible; it does not wait for the read + * to complete. On a successful return, this work will continue in the + * background. If the work begins, even failure is asynchronous: a failing + * return value from this function only means the work couldn't start at all. + * + * `ptr` must remain available until the work is done, and may be accessed by + * the system at any time until then. Do not allocate it on the stack, as this + * might take longer than the life of the calling function to complete! + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param asyncio a pointer to an SDL_AsyncIO structure. + * \param ptr a pointer to a buffer to read data into. + * \param offset the position to start reading in the data source. + * \param size the number of bytes to read from the data source. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WriteAsyncIO + * \sa SDL_CreateAsyncIOQueue + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadAsyncIO(SDL_AsyncIO *asyncio, void *ptr, Uint64 offset, Uint64 size, SDL_AsyncIOQueue *queue, void *userdata); + +/** + * Start an async write. + * + * This function writes `size` bytes from `offset` position in the data source + * to the area pointed at by `ptr`. + * + * This function returns as quickly as possible; it does not wait for the + * write to complete. On a successful return, this work will continue in the + * background. If the work begins, even failure is asynchronous: a failing + * return value from this function only means the work couldn't start at all. + * + * `ptr` must remain available until the work is done, and may be accessed by + * the system at any time until then. Do not allocate it on the stack, as this + * might take longer than the life of the calling function to complete! + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param asyncio a pointer to an SDL_AsyncIO structure. + * \param ptr a pointer to a buffer to write data from. + * \param offset the position to start writing to the data source. + * \param size the number of bytes to write to the data source. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ReadAsyncIO + * \sa SDL_CreateAsyncIOQueue + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteAsyncIO(SDL_AsyncIO *asyncio, void *ptr, Uint64 offset, Uint64 size, SDL_AsyncIOQueue *queue, void *userdata); + +/** + * Close and free any allocated resources for an async I/O object. + * + * Closing a file is _also_ an asynchronous task! If a write failure were to + * happen during the closing process, for example, the task results will + * report it as usual. + * + * Closing a file that has been written to does not guarantee the data has + * made it to physical media; it may remain in the operating system's file + * cache, for later writing to disk. This means that a successfully-closed + * file can be lost if the system crashes or loses power in this small window. + * To prevent this, call this function with the `flush` parameter set to true. + * This will make the operation take longer, and perhaps increase system load + * in general, but a successful result guarantees that the data has made it to + * physical storage. Don't use this for temporary files, caches, and + * unimportant data, and definitely use it for crucial irreplaceable files, + * like game saves. + * + * This function guarantees that the close will happen after any other pending + * tasks to `asyncio`, so it's safe to open a file, start several operations, + * close the file immediately, then check for all results later. This function + * will not block until the tasks have completed. + * + * Once this function returns true, `asyncio` is no longer valid, regardless + * of any future outcomes. Any completed tasks might still contain this + * pointer in their SDL_AsyncIOOutcome data, in case the app was using this + * value to track information, but it should not be used again. + * + * If this function returns false, the close wasn't started at all, and it's + * safe to attempt to close again later. + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param asyncio a pointer to an SDL_AsyncIO structure to close. + * \param flush true if data should sync to disk before the task completes. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, but two + * threads should not attempt to close the same object. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CloseAsyncIO(SDL_AsyncIO *asyncio, bool flush, SDL_AsyncIOQueue *queue, void *userdata); + +/** + * Create a task queue for tracking multiple I/O operations. + * + * Async I/O operations are assigned to a queue when started. The queue can be + * checked for completed tasks thereafter. + * + * \returns a new task queue object or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyAsyncIOQueue + * \sa SDL_GetAsyncIOResult + * \sa SDL_WaitAsyncIOResult + */ +extern SDL_DECLSPEC SDL_AsyncIOQueue * SDLCALL SDL_CreateAsyncIOQueue(void); + +/** + * Destroy a previously-created async I/O task queue. + * + * If there are still tasks pending for this queue, this call will block until + * those tasks are finished. All those tasks will be deallocated. Their + * results will be lost to the app. + * + * Any pending reads from SDL_LoadFileAsync() that are still in this queue + * will have their buffers deallocated by this function, to prevent a memory + * leak. + * + * Once this function is called, the queue is no longer valid and should not + * be used, including by other threads that might access it while destruction + * is blocking on pending tasks. + * + * Do not destroy a queue that still has threads waiting on it through + * SDL_WaitAsyncIOResult(). You can call SDL_SignalAsyncIOQueue() first to + * unblock those threads, and take measures (such as SDL_WaitThread()) to make + * sure they have finished their wait and won't wait on the queue again. + * + * \param queue the task queue to destroy. + * + * \threadsafety It is safe to call this function from any thread, so long as + * no other thread is waiting on the queue with + * SDL_WaitAsyncIOResult. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyAsyncIOQueue(SDL_AsyncIOQueue *queue); + +/** + * Query an async I/O task queue for completed tasks. + * + * If a task assigned to this queue has finished, this will return true and + * fill in `outcome` with the details of the task. If no task in the queue has + * finished, this function will return false. This function does not block. + * + * If a task has completed, this function will free its resources and the task + * pointer will no longer be valid. The task will be removed from the queue. + * + * It is safe for multiple threads to call this function on the same queue at + * once; a completed task will only go to one of the threads. + * + * \param queue the async I/O task queue to query. + * \param outcome details of a finished task will be written here. May not be + * NULL. + * \returns true if a task has completed, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAsyncIOResult + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetAsyncIOResult(SDL_AsyncIOQueue *queue, SDL_AsyncIOOutcome *outcome); + +/** + * Block until an async I/O task queue has a completed task. + * + * This function puts the calling thread to sleep until there a task assigned + * to the queue that has finished. + * + * If a task assigned to the queue has finished, this will return true and + * fill in `outcome` with the details of the task. If no task in the queue has + * finished, this function will return false. + * + * If a task has completed, this function will free its resources and the task + * pointer will no longer be valid. The task will be removed from the queue. + * + * It is safe for multiple threads to call this function on the same queue at + * once; a completed task will only go to one of the threads. + * + * Note that by the nature of various platforms, more than one waiting thread + * may wake to handle a single task, but only one will obtain it, so + * `timeoutMS` is a _maximum_ wait time, and this function may return false + * sooner. + * + * This function may return false if there was a system error, the OS + * inadvertently awoke multiple threads, or if SDL_SignalAsyncIOQueue() was + * called to wake up all waiting threads without a finished task. + * + * A timeout can be used to specify a maximum wait time, but rather than + * polling, it is possible to have a timeout of -1 to wait forever, and use + * SDL_SignalAsyncIOQueue() to wake up the waiting threads later. + * + * \param queue the async I/O task queue to wait on. + * \param outcome details of a finished task will be written here. May not be + * NULL. + * \param timeoutMS the maximum time to wait, in milliseconds, or -1 to wait + * indefinitely. + * \returns true if task has completed, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalAsyncIOQueue + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitAsyncIOResult(SDL_AsyncIOQueue *queue, SDL_AsyncIOOutcome *outcome, Sint32 timeoutMS); + +/** + * Wake up any threads that are blocking in SDL_WaitAsyncIOResult(). + * + * This will unblock any threads that are sleeping in a call to + * SDL_WaitAsyncIOResult for the specified queue, and cause them to return + * from that function. + * + * This can be useful when destroying a queue to make sure nothing is touching + * it indefinitely. In this case, once this call completes, the caller should + * take measures to make sure any previously-blocked threads have returned + * from their wait and will not touch the queue again (perhaps by setting a + * flag to tell the threads to terminate and then using SDL_WaitThread() to + * make sure they've done so). + * + * \param queue the async I/O task queue to signal. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAsyncIOResult + */ +extern SDL_DECLSPEC void SDLCALL SDL_SignalAsyncIOQueue(SDL_AsyncIOQueue *queue); + +/** + * Load all the data from a file path, asynchronously. + * + * This function returns as quickly as possible; it does not wait for the read + * to complete. On a successful return, this work will continue in the + * background. If the work begins, even failure is asynchronous: a failing + * return value from this function only means the work couldn't start at all. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in SDL_AsyncIOOutcome's + * bytes_transferred value. + * + * This function will allocate the buffer to contain the file. It must be + * deallocated by calling SDL_free() on SDL_AsyncIOOutcome's buffer field + * after completion. + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param file the path to read all available data from. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFile_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LoadFileAsync(const char *file, SDL_AsyncIOQueue *queue, void *userdata); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_asyncio_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_atomic.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_atomic.h new file mode 100644 index 0000000..78b5e0f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_atomic.h @@ -0,0 +1,664 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryAtomic + * + * Atomic operations. + * + * IMPORTANT: If you are not an expert in concurrent lockless programming, you + * should not be using any functions in this file. You should be protecting + * your data structures with full mutexes instead. + * + * ***Seriously, here be dragons!*** + * + * You can find out a little more about lockless programming and the subtle + * issues that can arise here: + * https://learn.microsoft.com/en-us/windows/win32/dxtecharts/lockless-programming + * + * There's also lots of good information here: + * + * - https://www.1024cores.net/home/lock-free-algorithms + * - https://preshing.com/ + * + * These operations may or may not actually be implemented using processor + * specific atomic operations. When possible they are implemented as true + * processor specific atomic operations. When that is not possible the are + * implemented using locks that *do* use the available atomic operations. + * + * All of the atomic operations that modify memory are full memory barriers. + */ + +#ifndef SDL_atomic_h_ +#define SDL_atomic_h_ + +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An atomic spinlock. + * + * The atomic locks are efficient spinlocks using CPU instructions, but are + * vulnerable to starvation and can spin forever if a thread holding a lock + * has been terminated. For this reason you should minimize the code executed + * inside an atomic lock and never do expensive things like API or system + * calls while holding them. + * + * They are also vulnerable to starvation if the thread holding the lock is + * lower priority than other threads and doesn't get scheduled. In general you + * should use mutexes instead, since they have better performance and + * contention behavior. + * + * The atomic locks are not safe to lock recursively. + * + * Porting Note: The spin lock functions and type are required and can not be + * emulated because they are used in the atomic emulation code. + */ +typedef int SDL_SpinLock; + +/** + * Try to lock a spin lock by setting it to a non-zero value. + * + * ***Please note that spinlocks are dangerous if you don't know what you're + * doing. Please be careful using any sort of spinlock!*** + * + * \param lock a pointer to a lock variable. + * \returns true if the lock succeeded, false if the lock is already held. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockSpinlock + * \sa SDL_UnlockSpinlock + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockSpinlock(SDL_SpinLock *lock); + +/** + * Lock a spin lock by setting it to a non-zero value. + * + * ***Please note that spinlocks are dangerous if you don't know what you're + * doing. Please be careful using any sort of spinlock!*** + * + * \param lock a pointer to a lock variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TryLockSpinlock + * \sa SDL_UnlockSpinlock + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockSpinlock(SDL_SpinLock *lock); + +/** + * Unlock a spin lock by setting it to 0. + * + * Always returns immediately. + * + * ***Please note that spinlocks are dangerous if you don't know what you're + * doing. Please be careful using any sort of spinlock!*** + * + * \param lock a pointer to a lock variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockSpinlock + * \sa SDL_TryLockSpinlock + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockSpinlock(SDL_SpinLock *lock); + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Mark a compiler barrier. + * + * A compiler barrier prevents the compiler from reordering reads and writes + * to globally visible variables across the call. + * + * This macro only prevents the compiler from reordering reads and writes, it + * does not prevent the CPU from reordering reads and writes. However, all of + * the atomic operations that modify memory are full memory barriers. + * + * \threadsafety Obviously this macro is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CompilerBarrier() DoCompilerSpecificReadWriteBarrier() + +#elif defined(_MSC_VER) && (_MSC_VER > 1200) && !defined(__clang__) +void _ReadWriteBarrier(void); +#pragma intrinsic(_ReadWriteBarrier) +#define SDL_CompilerBarrier() _ReadWriteBarrier() +#elif (defined(__GNUC__) && !defined(SDL_PLATFORM_EMSCRIPTEN)) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x5120)) +/* This is correct for all CPUs when using GCC or Solaris Studio 12.1+. */ +#define SDL_CompilerBarrier() __asm__ __volatile__ ("" : : : "memory") +#elif defined(__WATCOMC__) +extern __inline void SDL_CompilerBarrier(void); +#pragma aux SDL_CompilerBarrier = "" parm [] modify exact []; +#else +#define SDL_CompilerBarrier() \ +{ SDL_SpinLock _tmp = 0; SDL_LockSpinlock(&_tmp); SDL_UnlockSpinlock(&_tmp); } +#endif + +/** + * Insert a memory release barrier (function version). + * + * Please refer to SDL_MemoryBarrierRelease for details. This is a function + * version, which might be useful if you need to use this functionality from a + * scripting language, etc. Also, some of the macro versions call this + * function behind the scenes, where more heavy lifting can happen inside of + * SDL. Generally, though, an app written in C/C++/etc should use the macro + * version, as it will be more efficient. + * + * \threadsafety Obviously this function is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierRelease + */ +extern SDL_DECLSPEC void SDLCALL SDL_MemoryBarrierReleaseFunction(void); + +/** + * Insert a memory acquire barrier (function version). + * + * Please refer to SDL_MemoryBarrierRelease for details. This is a function + * version, which might be useful if you need to use this functionality from a + * scripting language, etc. Also, some of the macro versions call this + * function behind the scenes, where more heavy lifting can happen inside of + * SDL. Generally, though, an app written in C/C++/etc should use the macro + * version, as it will be more efficient. + * + * \threadsafety Obviously this function is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierAcquire + */ +extern SDL_DECLSPEC void SDLCALL SDL_MemoryBarrierAcquireFunction(void); + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Insert a memory release barrier (macro version). + * + * Memory barriers are designed to prevent reads and writes from being + * reordered by the compiler and being seen out of order on multi-core CPUs. + * + * A typical pattern would be for thread A to write some data and a flag, and + * for thread B to read the flag and get the data. In this case you would + * insert a release barrier between writing the data and the flag, + * guaranteeing that the data write completes no later than the flag is + * written, and you would insert an acquire barrier between reading the flag + * and reading the data, to ensure that all the reads associated with the flag + * have completed. + * + * In this pattern you should always see a release barrier paired with an + * acquire barrier and you should gate the data reads/writes with a single + * flag variable. + * + * For more information on these semantics, take a look at the blog post: + * http://preshing.com/20120913/acquire-and-release-semantics + * + * This is the macro version of this functionality; if possible, SDL will use + * compiler intrinsics or inline assembly, but some platforms might need to + * call the function version of this, SDL_MemoryBarrierReleaseFunction to do + * the heavy lifting. Apps that can use the macro should favor it over the + * function. + * + * \threadsafety Obviously this macro is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierAcquire + * \sa SDL_MemoryBarrierReleaseFunction + */ +#define SDL_MemoryBarrierRelease() SDL_MemoryBarrierReleaseFunction() + +/** + * Insert a memory acquire barrier (macro version). + * + * Please see SDL_MemoryBarrierRelease for the details on what memory barriers + * are and when to use them. + * + * This is the macro version of this functionality; if possible, SDL will use + * compiler intrinsics or inline assembly, but some platforms might need to + * call the function version of this, SDL_MemoryBarrierAcquireFunction, to do + * the heavy lifting. Apps that can use the macro should favor it over the + * function. + * + * \threadsafety Obviously this macro is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierRelease + * \sa SDL_MemoryBarrierAcquireFunction + */ +#define SDL_MemoryBarrierAcquire() SDL_MemoryBarrierAcquireFunction() + +#elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__)) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("lwsync" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("lwsync" : : : "memory") +#elif defined(__GNUC__) && defined(__aarch64__) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory") +#elif defined(__GNUC__) && defined(__arm__) +#if 0 /* defined(SDL_PLATFORM_LINUX) || defined(SDL_PLATFORM_ANDROID) */ +/* Information from: + https://chromium.googlesource.com/chromium/chromium/+/trunk/base/atomicops_internals_arm_gcc.h#19 + + The Linux kernel provides a helper function which provides the right code for a memory barrier, + hard-coded at address 0xffff0fa0 +*/ +typedef void (*SDL_KernelMemoryBarrierFunc)(); +#define SDL_MemoryBarrierRelease() ((SDL_KernelMemoryBarrierFunc)0xffff0fa0)() +#define SDL_MemoryBarrierAcquire() ((SDL_KernelMemoryBarrierFunc)0xffff0fa0)() +#else +#if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7EM__) || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7S__) || defined(__ARM_ARCH_8A__) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory") +#elif defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6T2__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) +#ifdef __thumb__ +/* The mcr instruction isn't available in thumb mode, use real functions */ +#define SDL_MEMORY_BARRIER_USES_FUNCTION +#define SDL_MemoryBarrierRelease() SDL_MemoryBarrierReleaseFunction() +#define SDL_MemoryBarrierAcquire() SDL_MemoryBarrierAcquireFunction() +#else +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory") +#endif /* __thumb__ */ +#else +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("" : : : "memory") +#endif /* SDL_PLATFORM_LINUX || SDL_PLATFORM_ANDROID */ +#endif /* __GNUC__ && __arm__ */ +#else +#if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x5120)) +/* This is correct for all CPUs on Solaris when using Solaris Studio 12.1+. */ +#include +#define SDL_MemoryBarrierRelease() __machine_rel_barrier() +#define SDL_MemoryBarrierAcquire() __machine_acq_barrier() +#else +/* This is correct for the x86 and x64 CPUs, and we'll expand this over time. */ +#define SDL_MemoryBarrierRelease() SDL_CompilerBarrier() +#define SDL_MemoryBarrierAcquire() SDL_CompilerBarrier() +#endif +#endif + +/* "REP NOP" is PAUSE, coded for tools that don't know it by that name. */ +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to insert a CPU-specific "pause" instruction into the program. + * + * This can be useful in busy-wait loops, as it serves as a hint to the CPU as + * to the program's intent; some CPUs can use this to do more efficient + * processing. On some platforms, this doesn't do anything, so using this + * macro might just be a harmless no-op. + * + * Note that if you are busy-waiting, there are often more-efficient + * approaches with other synchronization primitives: mutexes, semaphores, + * condition variables, etc. + * + * \threadsafety This macro is safe to use from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CPUPauseInstruction() DoACPUPauseInACompilerAndArchitectureSpecificWay + +#elif (defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__)) + #define SDL_CPUPauseInstruction() __asm__ __volatile__("pause\n") /* Some assemblers can't do REP NOP, so go with PAUSE. */ +#elif (defined(__arm__) && defined(__ARM_ARCH) && __ARM_ARCH >= 7) || defined(__aarch64__) + #define SDL_CPUPauseInstruction() __asm__ __volatile__("yield" ::: "memory") +#elif (defined(__powerpc__) || defined(__powerpc64__)) + #define SDL_CPUPauseInstruction() __asm__ __volatile__("or 27,27,27"); +#elif (defined(__riscv) && __riscv_xlen == 64) + #define SDL_CPUPauseInstruction() __asm__ __volatile__(".insn i 0x0F, 0, x0, x0, 0x010"); +#elif defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64)) + #define SDL_CPUPauseInstruction() _mm_pause() /* this is actually "rep nop" and not a SIMD instruction. No inline asm in MSVC x86-64! */ +#elif defined(_MSC_VER) && (defined(_M_ARM) || defined(_M_ARM64)) + #define SDL_CPUPauseInstruction() __yield() +#elif defined(__WATCOMC__) && defined(__386__) + extern __inline void SDL_CPUPauseInstruction(void); + #pragma aux SDL_CPUPauseInstruction = ".686p" ".xmm2" "pause" +#else + #define SDL_CPUPauseInstruction() +#endif + + +/** + * A type representing an atomic integer value. + * + * This can be used to manage a value that is synchronized across multiple + * CPUs without a race condition; when an app sets a value with + * SDL_SetAtomicInt all other threads, regardless of the CPU it is running on, + * will see that value when retrieved with SDL_GetAtomicInt, regardless of CPU + * caches, etc. + * + * This is also useful for atomic compare-and-swap operations: a thread can + * change the value as long as its current value matches expectations. When + * done in a loop, one can guarantee data consistency across threads without a + * lock (but the usual warnings apply: if you don't know what you're doing, or + * you don't do it carefully, you can confidently cause any number of + * disasters with this, so in most cases, you _should_ use a mutex instead of + * this!). + * + * This is a struct so people don't accidentally use numeric operations on it + * directly. You have to use SDL atomic functions. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicInt + * \sa SDL_GetAtomicInt + * \sa SDL_SetAtomicInt + * \sa SDL_AddAtomicInt + */ +typedef struct SDL_AtomicInt { int value; } SDL_AtomicInt; + +/** + * Set an atomic variable to a new value if it is currently an old value. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable to be modified. + * \param oldval the old value. + * \param newval the new value. + * \returns true if the atomic variable was set, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicInt + * \sa SDL_SetAtomicInt + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CompareAndSwapAtomicInt(SDL_AtomicInt *a, int oldval, int newval); + +/** + * Set an atomic variable to a value. + * + * This function also acts as a full memory barrier. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable to be modified. + * \param v the desired value. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicInt + */ +extern SDL_DECLSPEC int SDLCALL SDL_SetAtomicInt(SDL_AtomicInt *a, int v); + +/** + * Get the value of an atomic variable. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable. + * \returns the current value of an atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAtomicInt + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAtomicInt(SDL_AtomicInt *a); + +/** + * Add to an atomic variable. + * + * This function also acts as a full memory barrier. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable to be modified. + * \param v the desired value to add. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AtomicDecRef + * \sa SDL_AtomicIncRef + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddAtomicInt(SDL_AtomicInt *a, int v); + +#ifndef SDL_AtomicIncRef + +/** + * Increment an atomic variable used as a reference count. + * + * ***Note: If you don't know what this macro is for, you shouldn't use it!*** + * + * \param a a pointer to an SDL_AtomicInt to increment. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AtomicDecRef + */ +#define SDL_AtomicIncRef(a) SDL_AddAtomicInt(a, 1) +#endif + +#ifndef SDL_AtomicDecRef + +/** + * Decrement an atomic variable used as a reference count. + * + * ***Note: If you don't know what this macro is for, you shouldn't use it!*** + * + * \param a a pointer to an SDL_AtomicInt to decrement. + * \returns true if the variable reached zero after decrementing, false + * otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AtomicIncRef + */ +#define SDL_AtomicDecRef(a) (SDL_AddAtomicInt(a, -1) == 1) +#endif + +/** + * A type representing an atomic unsigned 32-bit value. + * + * This can be used to manage a value that is synchronized across multiple + * CPUs without a race condition; when an app sets a value with + * SDL_SetAtomicU32 all other threads, regardless of the CPU it is running on, + * will see that value when retrieved with SDL_GetAtomicU32, regardless of CPU + * caches, etc. + * + * This is also useful for atomic compare-and-swap operations: a thread can + * change the value as long as its current value matches expectations. When + * done in a loop, one can guarantee data consistency across threads without a + * lock (but the usual warnings apply: if you don't know what you're doing, or + * you don't do it carefully, you can confidently cause any number of + * disasters with this, so in most cases, you _should_ use a mutex instead of + * this!). + * + * This is a struct so people don't accidentally use numeric operations on it + * directly. You have to use SDL atomic functions. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicU32 + * \sa SDL_GetAtomicU32 + * \sa SDL_SetAtomicU32 + */ +typedef struct SDL_AtomicU32 { Uint32 value; } SDL_AtomicU32; + +/** + * Set an atomic variable to a new value if it is currently an old value. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicU32 variable to be modified. + * \param oldval the old value. + * \param newval the new value. + * \returns true if the atomic variable was set, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicU32 + * \sa SDL_SetAtomicU32 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CompareAndSwapAtomicU32(SDL_AtomicU32 *a, Uint32 oldval, Uint32 newval); + +/** + * Set an atomic variable to a value. + * + * This function also acts as a full memory barrier. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicU32 variable to be modified. + * \param v the desired value. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicU32 + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_SetAtomicU32(SDL_AtomicU32 *a, Uint32 v); + +/** + * Get the value of an atomic variable. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicU32 variable. + * \returns the current value of an atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAtomicU32 + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetAtomicU32(SDL_AtomicU32 *a); + +/** + * Set a pointer to a new value if it is currently an old value. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to a pointer. + * \param oldval the old pointer value. + * \param newval the new pointer value. + * \returns true if the pointer was set, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicInt + * \sa SDL_GetAtomicPointer + * \sa SDL_SetAtomicPointer + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CompareAndSwapAtomicPointer(void **a, void *oldval, void *newval); + +/** + * Set a pointer to a value atomically. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to a pointer. + * \param v the desired pointer value. + * \returns the previous value of the pointer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicPointer + * \sa SDL_GetAtomicPointer + */ +extern SDL_DECLSPEC void * SDLCALL SDL_SetAtomicPointer(void **a, void *v); + +/** + * Get the value of a pointer atomically. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to a pointer. + * \returns the current value of a pointer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicPointer + * \sa SDL_SetAtomicPointer + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetAtomicPointer(void **a); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif + +#include + +#endif /* SDL_atomic_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_audio.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_audio.h new file mode 100644 index 0000000..51af40e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_audio.h @@ -0,0 +1,2203 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryAudio + * + * Audio functionality for the SDL library. + * + * All audio in SDL3 revolves around SDL_AudioStream. Whether you want to play + * or record audio, convert it, stream it, buffer it, or mix it, you're going + * to be passing it through an audio stream. + * + * Audio streams are quite flexible; they can accept any amount of data at a + * time, in any supported format, and output it as needed in any other format, + * even if the data format changes on either side halfway through. + * + * An app opens an audio device and binds any number of audio streams to it, + * feeding more data to the streams as available. When the device needs more + * data, it will pull it from all bound streams and mix them together for + * playback. + * + * Audio streams can also use an app-provided callback to supply data + * on-demand, which maps pretty closely to the SDL2 audio model. + * + * SDL also provides a simple .WAV loader in SDL_LoadWAV (and SDL_LoadWAV_IO + * if you aren't reading from a file) as a basic means to load sound data into + * your program. + * + * ## Logical audio devices + * + * In SDL3, opening a physical device (like a SoundBlaster 16 Pro) gives you a + * logical device ID that you can bind audio streams to. In almost all cases, + * logical devices can be used anywhere in the API that a physical device is + * normally used. However, since each device opening generates a new logical + * device, different parts of the program (say, a VoIP library, or + * text-to-speech framework, or maybe some other sort of mixer on top of SDL) + * can have their own device opens that do not interfere with each other; each + * logical device will mix its separate audio down to a single buffer, fed to + * the physical device, behind the scenes. As many logical devices as you like + * can come and go; SDL will only have to open the physical device at the OS + * level once, and will manage all the logical devices on top of it + * internally. + * + * One other benefit of logical devices: if you don't open a specific physical + * device, instead opting for the default, SDL can automatically migrate those + * logical devices to different hardware as circumstances change: a user + * plugged in headphones? The system default changed? SDL can transparently + * migrate the logical devices to the correct physical device seamlessly and + * keep playing; the app doesn't even have to know it happened if it doesn't + * want to. + * + * ## Simplified audio + * + * As a simplified model for when a single source of audio is all that's + * needed, an app can use SDL_OpenAudioDeviceStream, which is a single + * function to open an audio device, create an audio stream, bind that stream + * to the newly-opened device, and (optionally) provide a callback for + * obtaining audio data. When using this function, the primary interface is + * the SDL_AudioStream and the device handle is mostly hidden away; destroying + * a stream created through this function will also close the device, stream + * bindings cannot be changed, etc. One other quirk of this is that the device + * is started in a _paused_ state and must be explicitly resumed; this is + * partially to offer a clean migration for SDL2 apps and partially because + * the app might have to do more setup before playback begins; in the + * non-simplified form, nothing will play until a stream is bound to a device, + * so they start _unpaused_. + * + * ## Channel layouts + * + * Audio data passing through SDL is uncompressed PCM data, interleaved. One + * can provide their own decompression through an MP3, etc, decoder, but SDL + * does not provide this directly. Each interleaved channel of data is meant + * to be in a specific order. + * + * Abbreviations: + * + * - FRONT = single mono speaker + * - FL = front left speaker + * - FR = front right speaker + * - FC = front center speaker + * - BL = back left speaker + * - BR = back right speaker + * - SR = surround right speaker + * - SL = surround left speaker + * - BC = back center speaker + * - LFE = low-frequency speaker + * + * These are listed in the order they are laid out in memory, so "FL, FR" + * means "the front left speaker is laid out in memory first, then the front + * right, then it repeats for the next audio frame". + * + * - 1 channel (mono) layout: FRONT + * - 2 channels (stereo) layout: FL, FR + * - 3 channels (2.1) layout: FL, FR, LFE + * - 4 channels (quad) layout: FL, FR, BL, BR + * - 5 channels (4.1) layout: FL, FR, LFE, BL, BR + * - 6 channels (5.1) layout: FL, FR, FC, LFE, BL, BR (last two can also be + * SL, SR) + * - 7 channels (6.1) layout: FL, FR, FC, LFE, BC, SL, SR + * - 8 channels (7.1) layout: FL, FR, FC, LFE, BL, BR, SL, SR + * + * This is the same order as DirectSound expects, but applied to all + * platforms; SDL will swizzle the channels as necessary if a platform expects + * something different. + * + * SDL_AudioStream can also be provided channel maps to change this ordering + * to whatever is necessary, in other audio processing scenarios. + */ + +#ifndef SDL_audio_h_ +#define SDL_audio_h_ + +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Mask of bits in an SDL_AudioFormat that contains the format bit size. + * + * Generally one should use SDL_AUDIO_BITSIZE instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_BITSIZE (0xFFu) + +/** + * Mask of bits in an SDL_AudioFormat that contain the floating point flag. + * + * Generally one should use SDL_AUDIO_ISFLOAT instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_FLOAT (1u<<8) + +/** + * Mask of bits in an SDL_AudioFormat that contain the bigendian flag. + * + * Generally one should use SDL_AUDIO_ISBIGENDIAN or SDL_AUDIO_ISLITTLEENDIAN + * instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_BIG_ENDIAN (1u<<12) + +/** + * Mask of bits in an SDL_AudioFormat that contain the signed data flag. + * + * Generally one should use SDL_AUDIO_ISSIGNED instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_SIGNED (1u<<15) + +/** + * Define an SDL_AudioFormat value. + * + * SDL does not support custom audio formats, so this macro is not of much use + * externally, but it can be illustrative as to what the various bits of an + * SDL_AudioFormat mean. + * + * For example, SDL_AUDIO_S32LE looks like this: + * + * ```c + * SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 32) + * ``` + * + * \param signed 1 for signed data, 0 for unsigned data. + * \param bigendian 1 for bigendian data, 0 for littleendian data. + * \param flt 1 for floating point data, 0 for integer data. + * \param size number of bits per sample. + * \returns a format value in the style of SDL_AudioFormat. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_AUDIO_FORMAT(signed, bigendian, flt, size) \ + (((Uint16)(signed) << 15) | ((Uint16)(bigendian) << 12) | ((Uint16)(flt) << 8) | ((size) & SDL_AUDIO_MASK_BITSIZE)) + +/** + * Audio format. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_AUDIO_BITSIZE + * \sa SDL_AUDIO_BYTESIZE + * \sa SDL_AUDIO_ISINT + * \sa SDL_AUDIO_ISFLOAT + * \sa SDL_AUDIO_ISBIGENDIAN + * \sa SDL_AUDIO_ISLITTLEENDIAN + * \sa SDL_AUDIO_ISSIGNED + * \sa SDL_AUDIO_ISUNSIGNED + */ +typedef enum SDL_AudioFormat +{ + SDL_AUDIO_UNKNOWN = 0x0000u, /**< Unspecified audio format */ + SDL_AUDIO_U8 = 0x0008u, /**< Unsigned 8-bit samples */ + /* SDL_DEFINE_AUDIO_FORMAT(0, 0, 0, 8), */ + SDL_AUDIO_S8 = 0x8008u, /**< Signed 8-bit samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 8), */ + SDL_AUDIO_S16LE = 0x8010u, /**< Signed 16-bit samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 16), */ + SDL_AUDIO_S16BE = 0x9010u, /**< As above, but big-endian byte order */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 0, 16), */ + SDL_AUDIO_S32LE = 0x8020u, /**< 32-bit integer samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 32), */ + SDL_AUDIO_S32BE = 0x9020u, /**< As above, but big-endian byte order */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 0, 32), */ + SDL_AUDIO_F32LE = 0x8120u, /**< 32-bit floating point samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 1, 32), */ + SDL_AUDIO_F32BE = 0x9120u, /**< As above, but big-endian byte order */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 1, 32), */ + + /* These represent the current system's byteorder. */ + #if SDL_BYTEORDER == SDL_LIL_ENDIAN + SDL_AUDIO_S16 = SDL_AUDIO_S16LE, + SDL_AUDIO_S32 = SDL_AUDIO_S32LE, + SDL_AUDIO_F32 = SDL_AUDIO_F32LE + #else + SDL_AUDIO_S16 = SDL_AUDIO_S16BE, + SDL_AUDIO_S32 = SDL_AUDIO_S32BE, + SDL_AUDIO_F32 = SDL_AUDIO_F32BE + #endif +} SDL_AudioFormat; + + +/** + * Retrieve the size, in bits, from an SDL_AudioFormat. + * + * For example, `SDL_AUDIO_BITSIZE(SDL_AUDIO_S16)` returns 16. + * + * \param x an SDL_AudioFormat value. + * \returns data size in bits. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_BITSIZE(x) ((x) & SDL_AUDIO_MASK_BITSIZE) + +/** + * Retrieve the size, in bytes, from an SDL_AudioFormat. + * + * For example, `SDL_AUDIO_BYTESIZE(SDL_AUDIO_S16)` returns 2. + * + * \param x an SDL_AudioFormat value. + * \returns data size in bytes. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_BYTESIZE(x) (SDL_AUDIO_BITSIZE(x) / 8) + +/** + * Determine if an SDL_AudioFormat represents floating point data. + * + * For example, `SDL_AUDIO_ISFLOAT(SDL_AUDIO_S16)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is floating point, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISFLOAT(x) ((x) & SDL_AUDIO_MASK_FLOAT) + +/** + * Determine if an SDL_AudioFormat represents bigendian data. + * + * For example, `SDL_AUDIO_ISBIGENDIAN(SDL_AUDIO_S16LE)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is bigendian, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISBIGENDIAN(x) ((x) & SDL_AUDIO_MASK_BIG_ENDIAN) + +/** + * Determine if an SDL_AudioFormat represents littleendian data. + * + * For example, `SDL_AUDIO_ISLITTLEENDIAN(SDL_AUDIO_S16BE)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is littleendian, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISLITTLEENDIAN(x) (!SDL_AUDIO_ISBIGENDIAN(x)) + +/** + * Determine if an SDL_AudioFormat represents signed data. + * + * For example, `SDL_AUDIO_ISSIGNED(SDL_AUDIO_U8)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is signed, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISSIGNED(x) ((x) & SDL_AUDIO_MASK_SIGNED) + +/** + * Determine if an SDL_AudioFormat represents integer data. + * + * For example, `SDL_AUDIO_ISINT(SDL_AUDIO_F32)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is integer, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISINT(x) (!SDL_AUDIO_ISFLOAT(x)) + +/** + * Determine if an SDL_AudioFormat represents unsigned data. + * + * For example, `SDL_AUDIO_ISUNSIGNED(SDL_AUDIO_S16)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is unsigned, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISUNSIGNED(x) (!SDL_AUDIO_ISSIGNED(x)) + + +/** + * SDL Audio Device instance IDs. + * + * Zero is used to signify an invalid/null device. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_AudioDeviceID; + +/** + * A value used to request a default playback audio device. + * + * Several functions that require an SDL_AudioDeviceID will accept this value + * to signify the app just wants the system to choose a default device instead + * of the app providing a specific one. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK ((SDL_AudioDeviceID) 0xFFFFFFFFu) + +/** + * A value used to request a default recording audio device. + * + * Several functions that require an SDL_AudioDeviceID will accept this value + * to signify the app just wants the system to choose a default device instead + * of the app providing a specific one. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_DEVICE_DEFAULT_RECORDING ((SDL_AudioDeviceID) 0xFFFFFFFEu) + +/** + * Format specifier for audio data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AudioFormat + */ +typedef struct SDL_AudioSpec +{ + SDL_AudioFormat format; /**< Audio data format */ + int channels; /**< Number of channels: 1 mono, 2 stereo, etc */ + int freq; /**< sample rate: sample frames per second */ +} SDL_AudioSpec; + +/** + * Calculate the size of each audio frame (in bytes) from an SDL_AudioSpec. + * + * This reports on the size of an audio sample frame: stereo Sint16 data (2 + * channels of 2 bytes each) would be 4 bytes per frame, for example. + * + * \param x an SDL_AudioSpec to query. + * \returns the number of bytes used per sample frame. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_FRAMESIZE(x) (SDL_AUDIO_BYTESIZE((x).format) * (x).channels) + +/** + * The opaque handle that represents an audio stream. + * + * SDL_AudioStream is an audio conversion interface. + * + * - It can handle resampling data in chunks without generating artifacts, + * when it doesn't have the complete buffer available. + * - It can handle incoming data in any variable size. + * - It can handle input/output format changes on the fly. + * - It can remap audio channels between inputs and outputs. + * - You push data as you have it, and pull it when you need it + * - It can also function as a basic audio data queue even if you just have + * sound that needs to pass from one place to another. + * - You can hook callbacks up to them when more data is added or requested, + * to manage data on-the-fly. + * + * Audio streams are the core of the SDL3 audio interface. You create one or + * more of them, bind them to an opened audio device, and feed data to them + * (or for recording, consume data from them). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateAudioStream + */ +typedef struct SDL_AudioStream SDL_AudioStream; + + +/* Function prototypes */ + +/** + * Use this function to get the number of built-in audio drivers. + * + * This function returns a hardcoded number. This never returns a negative + * value; if there are no drivers compiled into this build of SDL, this + * function returns zero. The presence of a driver in this list does not mean + * it will function, it just means SDL is capable of interacting with that + * interface. For example, a build of SDL might have esound support, but if + * there's no esound server available, SDL's esound driver would fail if used. + * + * By default, SDL tries all drivers, in its preferred order, until one is + * found to be usable. + * + * \returns the number of built-in audio drivers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumAudioDrivers(void); + +/** + * Use this function to get the name of a built in audio driver. + * + * The list of audio drivers is given in the order that they are normally + * initialized by default; the drivers that seem more reasonable to choose + * first (as far as the SDL developers believe) are earlier in the list. + * + * The names of drivers are all simple, low-ASCII identifiers, like "alsa", + * "coreaudio" or "wasapi". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of the audio driver; the value ranges from 0 to + * SDL_GetNumAudioDrivers() - 1. + * \returns the name of the audio driver at the requested index, or NULL if an + * invalid index was specified. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumAudioDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioDriver(int index); + +/** + * Get the name of the current audio driver. + * + * The names of drivers are all simple, low-ASCII identifiers, like "alsa", + * "coreaudio" or "wasapi". These never have Unicode characters, and are not + * meant to be proper names. + * + * \returns the name of the current audio driver or NULL if no driver has been + * initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCurrentAudioDriver(void); + +/** + * Get a list of currently-connected audio playback devices. + * + * This returns of list of available devices that play sound, perhaps to + * speakers or headphones ("playback" devices). If you want devices that + * record audio, like a microphone ("recording" devices), use + * SDL_GetAudioRecordingDevices() instead. + * + * This only returns a list of physical devices; it will not have any device + * IDs returned by SDL_OpenAudioDevice(). + * + * If this function returns NULL, to signify an error, `*count` will be set to + * zero. + * + * \param count a pointer filled in with the number of devices returned, may + * be NULL. + * \returns a 0 terminated array of device instance IDs or NULL on error; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenAudioDevice + * \sa SDL_GetAudioRecordingDevices + */ +extern SDL_DECLSPEC SDL_AudioDeviceID * SDLCALL SDL_GetAudioPlaybackDevices(int *count); + +/** + * Get a list of currently-connected audio recording devices. + * + * This returns of list of available devices that record audio, like a + * microphone ("recording" devices). If you want devices that play sound, + * perhaps to speakers or headphones ("playback" devices), use + * SDL_GetAudioPlaybackDevices() instead. + * + * This only returns a list of physical devices; it will not have any device + * IDs returned by SDL_OpenAudioDevice(). + * + * If this function returns NULL, to signify an error, `*count` will be set to + * zero. + * + * \param count a pointer filled in with the number of devices returned, may + * be NULL. + * \returns a 0 terminated array of device instance IDs, or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenAudioDevice + * \sa SDL_GetAudioPlaybackDevices + */ +extern SDL_DECLSPEC SDL_AudioDeviceID * SDLCALL SDL_GetAudioRecordingDevices(int *count); + +/** + * Get the human-readable name of a specific audio device. + * + * \param devid the instance ID of the device to query. + * \returns the name of the audio device, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioPlaybackDevices + * \sa SDL_GetAudioRecordingDevices + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioDeviceName(SDL_AudioDeviceID devid); + +/** + * Get the current audio format of a specific audio device. + * + * For an opened device, this will report the format the device is currently + * using. If the device isn't yet opened, this will report the device's + * preferred format (or a reasonable default if this can't be determined). + * + * You may also specify SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK or + * SDL_AUDIO_DEVICE_DEFAULT_RECORDING here, which is useful for getting a + * reasonable recommendation before opening the system-recommended default + * device. + * + * You can also use this to request the current device buffer size. This is + * specified in sample frames and represents the amount of data SDL will feed + * to the physical hardware in each chunk. This can be converted to + * milliseconds of audio with the following equation: + * + * `ms = (int) ((((Sint64) frames) * 1000) / spec.freq);` + * + * Buffer size is only important if you need low-level control over the audio + * playback timing. Most apps do not need this. + * + * \param devid the instance ID of the device to query. + * \param spec on return, will be filled with device details. + * \param sample_frames pointer to store device buffer size, in sample frames. + * Can be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetAudioDeviceFormat(SDL_AudioDeviceID devid, SDL_AudioSpec *spec, int *sample_frames); + +/** + * Get the current channel map of an audio device. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * Audio devices usually have no remapping applied. This is represented by + * returning NULL, and does not signify an error. + * + * \param devid the instance ID of the device to query. + * \param count On output, set to number of channels in the map. Can be NULL. + * \returns an array of the current channel mapping, with as many elements as + * the current output spec's channels, or NULL if default. This + * should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioDeviceChannelMap(SDL_AudioDeviceID devid, int *count); + +/** + * Open a specific audio device. + * + * You can open both playback and recording devices through this function. + * Playback devices will take data from bound audio streams, mix it, and send + * it to the hardware. Recording devices will feed any bound audio streams + * with a copy of any incoming data. + * + * An opened audio device starts out with no audio streams bound. To start + * audio playing, bind a stream and supply audio data to it. Unlike SDL2, + * there is no audio callback; you only bind audio streams and make sure they + * have data flowing into them (however, you can simulate SDL2's semantics + * fairly closely by using SDL_OpenAudioDeviceStream instead of this + * function). + * + * If you don't care about opening a specific device, pass a `devid` of either + * `SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK` or + * `SDL_AUDIO_DEVICE_DEFAULT_RECORDING`. In this case, SDL will try to pick + * the most reasonable default, and may also switch between physical devices + * seamlessly later, if the most reasonable default changes during the + * lifetime of this opened device (user changed the default in the OS's system + * preferences, the default got unplugged so the system jumped to a new + * default, the user plugged in headphones on a mobile device, etc). Unless + * you have a good reason to choose a specific device, this is probably what + * you want. + * + * You may request a specific format for the audio device, but there is no + * promise the device will honor that request for several reasons. As such, + * it's only meant to be a hint as to what data your app will provide. Audio + * streams will accept data in whatever format you specify and manage + * conversion for you as appropriate. SDL_GetAudioDeviceFormat can tell you + * the preferred format for the device before opening and the actual format + * the device is using after opening. + * + * It's legal to open the same device ID more than once; each successful open + * will generate a new logical SDL_AudioDeviceID that is managed separately + * from others on the same physical device. This allows libraries to open a + * device separately from the main app and bind its own streams without + * conflicting. + * + * It is also legal to open a device ID returned by a previous call to this + * function; doing so just creates another logical device on the same physical + * device. This may be useful for making logical groupings of audio streams. + * + * This function returns the opened device ID on success. This is a new, + * unique SDL_AudioDeviceID that represents a logical device. + * + * Some backends might offer arbitrary devices (for example, a networked audio + * protocol that can connect to an arbitrary server). For these, as a change + * from SDL2, you should open a default device ID and use an SDL hint to + * specify the target if you care, or otherwise let the backend figure out a + * reasonable default. Most backends don't offer anything like this, and often + * this would be an end user setting an environment variable for their custom + * need, and not something an application should specifically manage. + * + * When done with an audio device, possibly at the end of the app's life, one + * should call SDL_CloseAudioDevice() on the returned device id. + * + * \param devid the device instance id to open, or + * SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK or + * SDL_AUDIO_DEVICE_DEFAULT_RECORDING for the most reasonable + * default device. + * \param spec the requested device configuration. Can be NULL to use + * reasonable defaults. + * \returns the device ID on success or 0 on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseAudioDevice + * \sa SDL_GetAudioDeviceFormat + */ +extern SDL_DECLSPEC SDL_AudioDeviceID SDLCALL SDL_OpenAudioDevice(SDL_AudioDeviceID devid, const SDL_AudioSpec *spec); + +/** + * Determine if an audio device is physical (instead of logical). + * + * An SDL_AudioDeviceID that represents physical hardware is a physical + * device; there is one for each piece of hardware that SDL can see. Logical + * devices are created by calling SDL_OpenAudioDevice or + * SDL_OpenAudioDeviceStream, and while each is associated with a physical + * device, there can be any number of logical devices on one physical device. + * + * For the most part, logical and physical IDs are interchangeable--if you try + * to open a logical device, SDL understands to assign that effort to the + * underlying physical device, etc. However, it might be useful to know if an + * arbitrary device ID is physical or logical. This function reports which. + * + * This function may return either true or false for invalid device IDs. + * + * \param devid the device ID to query. + * \returns true if devid is a physical device, false if it is logical. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsAudioDevicePhysical(SDL_AudioDeviceID devid); + +/** + * Determine if an audio device is a playback device (instead of recording). + * + * This function may return either true or false for invalid device IDs. + * + * \param devid the device ID to query. + * \returns true if devid is a playback device, false if it is recording. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsAudioDevicePlayback(SDL_AudioDeviceID devid); + +/** + * Use this function to pause audio playback on a specified device. + * + * This function pauses audio processing for a given device. Any bound audio + * streams will not progress, and no audio will be generated. Pausing one + * device does not prevent other unpaused devices from running. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. Pausing a paused device is + * a legal no-op. + * + * Pausing a device can be useful to halt all audio without unbinding all the + * audio streams. This might be useful while a game is paused, or a level is + * loading, etc. + * + * Physical devices can not be paused or unpaused, only logical devices + * created through SDL_OpenAudioDevice() can be. + * + * \param devid a device opened by SDL_OpenAudioDevice(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResumeAudioDevice + * \sa SDL_AudioDevicePaused + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PauseAudioDevice(SDL_AudioDeviceID devid); + +/** + * Use this function to unpause audio playback on a specified device. + * + * This function unpauses audio processing for a given device that has + * previously been paused with SDL_PauseAudioDevice(). Once unpaused, any + * bound audio streams will begin to progress again, and audio can be + * generated. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. Unpausing an unpaused + * device is a legal no-op. + * + * Physical devices can not be paused or unpaused, only logical devices + * created through SDL_OpenAudioDevice() can be. + * + * \param devid a device opened by SDL_OpenAudioDevice(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AudioDevicePaused + * \sa SDL_PauseAudioDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResumeAudioDevice(SDL_AudioDeviceID devid); + +/** + * Use this function to query if an audio device is paused. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. + * + * Physical devices can not be paused or unpaused, only logical devices + * created through SDL_OpenAudioDevice() can be. Physical and invalid device + * IDs will report themselves as unpaused here. + * + * \param devid a device opened by SDL_OpenAudioDevice(). + * \returns true if device is valid and paused, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseAudioDevice + * \sa SDL_ResumeAudioDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AudioDevicePaused(SDL_AudioDeviceID devid); + +/** + * Get the gain of an audio device. + * + * The gain of a device is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio devices default to a gain of 1.0f (no change in output). + * + * Physical devices may not have their gain changed, only logical devices, and + * this function will always return -1.0f when used on physical devices. + * + * \param devid the audio device to query. + * \returns the gain of the device or -1.0f on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioDeviceGain + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetAudioDeviceGain(SDL_AudioDeviceID devid); + +/** + * Change the gain of an audio device. + * + * The gain of a device is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio devices default to a gain of 1.0f (no change in output). + * + * Physical devices may not have their gain changed, only logical devices, and + * this function will always return false when used on physical devices. While + * it might seem attractive to adjust several logical devices at once in this + * way, it would allow an app or library to interfere with another portion of + * the program's otherwise-isolated devices. + * + * This is applied, along with any per-audiostream gain, during playback to + * the hardware, and can be continuously changed to create various effects. On + * recording devices, this will adjust the gain before passing the data into + * an audiostream; that recording audiostream can then adjust its gain further + * when outputting the data elsewhere, if it likes, but that second gain is + * not applied until the data leaves the audiostream again. + * + * \param devid the audio device on which to change gain. + * \param gain the gain. 1.0f is no change, 0.0f is silence. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioDeviceGain + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioDeviceGain(SDL_AudioDeviceID devid, float gain); + +/** + * Close a previously-opened audio device. + * + * The application should close open audio devices once they are no longer + * needed. + * + * This function may block briefly while pending audio data is played by the + * hardware, so that applications don't drop the last buffer of data they + * supplied if terminating immediately afterwards. + * + * \param devid an audio device id previously returned by + * SDL_OpenAudioDevice(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenAudioDevice + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseAudioDevice(SDL_AudioDeviceID devid); + +/** + * Bind a list of audio streams to an audio device. + * + * Audio data will flow through any bound streams. For a playback device, data + * for all bound streams will be mixed together and fed to the device. For a + * recording device, a copy of recorded data will be provided to each bound + * stream. + * + * Audio streams can only be bound to an open device. This operation is + * atomic--all streams bound in the same call will start processing at the + * same time, so they can stay in sync. Also: either all streams will be bound + * or none of them will be. + * + * It is an error to bind an already-bound stream; it must be explicitly + * unbound first. + * + * Binding a stream to a device will set its output format for playback + * devices, and its input format for recording devices, so they match the + * device's settings. The caller is welcome to change the other end of the + * stream's format at any time with SDL_SetAudioStreamFormat(). If the other + * end of the stream's format has never been set (the audio stream was created + * with a NULL audio spec), this function will set it to match the device + * end's format. + * + * \param devid an audio device to bind a stream to. + * \param streams an array of audio streams to bind. + * \param num_streams number streams listed in the `streams` array. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStreams + * \sa SDL_UnbindAudioStream + * \sa SDL_GetAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BindAudioStreams(SDL_AudioDeviceID devid, SDL_AudioStream * const *streams, int num_streams); + +/** + * Bind a single audio stream to an audio device. + * + * This is a convenience function, equivalent to calling + * `SDL_BindAudioStreams(devid, &stream, 1)`. + * + * \param devid an audio device to bind a stream to. + * \param stream an audio stream to bind to a device. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStreams + * \sa SDL_UnbindAudioStream + * \sa SDL_GetAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BindAudioStream(SDL_AudioDeviceID devid, SDL_AudioStream *stream); + +/** + * Unbind a list of audio streams from their audio devices. + * + * The streams being unbound do not all have to be on the same device. All + * streams on the same device will be unbound atomically (data will stop + * flowing through all unbound streams on the same device at the same time). + * + * Unbinding a stream that isn't bound to a device is a legal no-op. + * + * \param streams an array of audio streams to unbind. Can be NULL or contain + * NULL. + * \param num_streams number streams listed in the `streams` array. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStreams + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnbindAudioStreams(SDL_AudioStream * const *streams, int num_streams); + +/** + * Unbind a single audio stream from its audio device. + * + * This is a convenience function, equivalent to calling + * `SDL_UnbindAudioStreams(&stream, 1)`. + * + * \param stream an audio stream to unbind from a device. Can be NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStream + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnbindAudioStream(SDL_AudioStream *stream); + +/** + * Query an audio stream for its currently-bound device. + * + * This reports the logical audio device that an audio stream is currently bound to. + * + * If not bound, or invalid, this returns zero, which is not a valid device + * ID. + * + * \param stream the audio stream to query. + * \returns the bound audio device, or 0 if not bound or invalid. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStream + * \sa SDL_BindAudioStreams + */ +extern SDL_DECLSPEC SDL_AudioDeviceID SDLCALL SDL_GetAudioStreamDevice(SDL_AudioStream *stream); + +/** + * Create a new audio stream. + * + * \param src_spec the format details of the input audio. + * \param dst_spec the format details of the output audio. + * \returns a new audio stream on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PutAudioStreamData + * \sa SDL_GetAudioStreamData + * \sa SDL_GetAudioStreamAvailable + * \sa SDL_FlushAudioStream + * \sa SDL_ClearAudioStream + * \sa SDL_SetAudioStreamFormat + * \sa SDL_DestroyAudioStream + */ +extern SDL_DECLSPEC SDL_AudioStream * SDLCALL SDL_CreateAudioStream(const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec); + +/** + * Get the properties associated with an audio stream. + * + * \param stream the SDL_AudioStream to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetAudioStreamProperties(SDL_AudioStream *stream); + +/** + * Query the current format of an audio stream. + * + * \param stream the SDL_AudioStream to query. + * \param src_spec where to store the input audio format; ignored if NULL. + * \param dst_spec where to store the output audio format; ignored if NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamFormat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetAudioStreamFormat(SDL_AudioStream *stream, SDL_AudioSpec *src_spec, SDL_AudioSpec *dst_spec); + +/** + * Change the input and output formats of an audio stream. + * + * Future calls to and SDL_GetAudioStreamAvailable and SDL_GetAudioStreamData + * will reflect the new format, and future calls to SDL_PutAudioStreamData + * must provide data in the new input formats. + * + * Data that was previously queued in the stream will still be operated on in + * the format that was current when it was added, which is to say you can put + * the end of a sound file in one format to a stream, change formats for the + * next sound file, and start putting that new data while the previous sound + * file is still queued, and everything will still play back correctly. + * + * If a stream is bound to a device, then the format of the side of the stream + * bound to a device cannot be changed (src_spec for recording devices, + * dst_spec for playback devices). Attempts to make a change to this side will + * be ignored, but this will not report an error. The other side's format can + * be changed. + * + * \param stream the stream the format is being changed. + * \param src_spec the new format of the audio input; if NULL, it is not + * changed. + * \param dst_spec the new format of the audio output; if NULL, it is not + * changed. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamFormat + * \sa SDL_SetAudioStreamFrequencyRatio + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamFormat(SDL_AudioStream *stream, const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec); + +/** + * Get the frequency ratio of an audio stream. + * + * \param stream the SDL_AudioStream to query. + * \returns the frequency ratio of the stream or 0.0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamFrequencyRatio + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetAudioStreamFrequencyRatio(SDL_AudioStream *stream); + +/** + * Change the frequency ratio of an audio stream. + * + * The frequency ratio is used to adjust the rate at which input data is + * consumed. Changing this effectively modifies the speed and pitch of the + * audio. A value greater than 1.0 will play the audio faster, and at a higher + * pitch. A value less than 1.0 will play the audio slower, and at a lower + * pitch. + * + * This is applied during SDL_GetAudioStreamData, and can be continuously + * changed to create various effects. + * + * \param stream the stream the frequency ratio is being changed. + * \param ratio the frequency ratio. 1.0 is normal speed. Must be between 0.01 + * and 100. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamFrequencyRatio + * \sa SDL_SetAudioStreamFormat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamFrequencyRatio(SDL_AudioStream *stream, float ratio); + +/** + * Get the gain of an audio stream. + * + * The gain of a stream is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio streams default to a gain of 1.0f (no change in output). + * + * \param stream the SDL_AudioStream to query. + * \returns the gain of the stream or -1.0f on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamGain + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetAudioStreamGain(SDL_AudioStream *stream); + +/** + * Change the gain of an audio stream. + * + * The gain of a stream is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio streams default to a gain of 1.0f (no change in output). + * + * This is applied during SDL_GetAudioStreamData, and can be continuously + * changed to create various effects. + * + * \param stream the stream on which the gain is being changed. + * \param gain the gain. 1.0f is no change, 0.0f is silence. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamGain + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamGain(SDL_AudioStream *stream, float gain); + +/** + * Get the current input channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * Audio streams default to no remapping applied. This is represented by + * returning NULL, and does not signify an error. + * + * \param stream the SDL_AudioStream to query. + * \param count On output, set to number of channels in the map. Can be NULL. + * \returns an array of the current channel mapping, with as many elements as + * the current output spec's channels, or NULL if default. This + * should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioStreamInputChannelMap(SDL_AudioStream *stream, int *count); + +/** + * Get the current output channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * Audio streams default to no remapping applied. This is represented by + * returning NULL, and does not signify an error. + * + * \param stream the SDL_AudioStream to query. + * \param count On output, set to number of channels in the map. Can be NULL. + * \returns an array of the current channel mapping, with as many elements as + * the current output spec's channels, or NULL if default. This + * should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioStreamOutputChannelMap(SDL_AudioStream *stream, int *count); + +/** + * Set the current input channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * The input channel map reorders data that is added to a stream via + * SDL_PutAudioStreamData. Future calls to SDL_PutAudioStreamData must provide + * data in the new channel order. + * + * Each item in the array represents an input channel, and its value is the + * channel that it should be remapped to. To reverse a stereo signal's left + * and right values, you'd have an array of `{ 1, 0 }`. It is legal to remap + * multiple channels to the same thing, so `{ 1, 1 }` would duplicate the + * right channel to both channels of a stereo signal. An element in the + * channel map set to -1 instead of a valid channel will mute that channel, + * setting it to a silence value. + * + * You cannot change the number of channels through a channel map, just + * reorder/mute them. + * + * Data that was previously queued in the stream will still be operated on in + * the order that was current when it was added, which is to say you can put + * the end of a sound file in one order to a stream, change orders for the + * next sound file, and start putting that new data while the previous sound + * file is still queued, and everything will still play back correctly. + * + * Audio streams default to no remapping applied. Passing a NULL channel map + * is legal, and turns off remapping. + * + * SDL will copy the channel map; the caller does not have to save this array + * after this call. + * + * If `count` is not equal to the current number of channels in the audio + * stream's format, this will fail. This is a safety measure to make sure a + * race condition hasn't changed the format while this call is setting the + * channel map. + * + * Unlike attempting to change the stream's format, the input channel map on a + * stream bound to a recording device is permitted to change at any time; any + * data added to the stream from the device after this call will have the new + * mapping, but previously-added data will still have the prior mapping. + * + * \param stream the SDL_AudioStream to change. + * \param chmap the new channel map, NULL to reset to default. + * \param count The number of channels in the map. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. Don't change the + * stream's format to have a different number of channels from a + * a different thread at the same time, though! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamInputChannelMap(SDL_AudioStream *stream, const int *chmap, int count); + +/** + * Set the current output channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * The output channel map reorders data that leaving a stream via + * SDL_GetAudioStreamData. + * + * Each item in the array represents an input channel, and its value is the + * channel that it should be remapped to. To reverse a stereo signal's left + * and right values, you'd have an array of `{ 1, 0 }`. It is legal to remap + * multiple channels to the same thing, so `{ 1, 1 }` would duplicate the + * right channel to both channels of a stereo signal. An element in the + * channel map set to -1 instead of a valid channel will mute that channel, + * setting it to a silence value. + * + * You cannot change the number of channels through a channel map, just + * reorder/mute them. + * + * The output channel map can be changed at any time, as output remapping is + * applied during SDL_GetAudioStreamData. + * + * Audio streams default to no remapping applied. Passing a NULL channel map + * is legal, and turns off remapping. + * + * SDL will copy the channel map; the caller does not have to save this array + * after this call. + * + * If `count` is not equal to the current number of channels in the audio + * stream's format, this will fail. This is a safety measure to make sure a + * race condition hasn't changed the format while this call is setting the + * channel map. + * + * Unlike attempting to change the stream's format, the output channel map on + * a stream bound to a recording device is permitted to change at any time; + * any data added to the stream after this call will have the new mapping, but + * previously-added data will still have the prior mapping. When the channel + * map doesn't match the hardware's channel layout, SDL will convert the data + * before feeding it to the device for playback. + * + * \param stream the SDL_AudioStream to change. + * \param chmap the new channel map, NULL to reset to default. + * \param count The number of channels in the map. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. Don't change the + * stream's format to have a different number of channels from a + * a different thread at the same time, though! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamOutputChannelMap(SDL_AudioStream *stream, const int *chmap, int count); + +/** + * Add data to the stream. + * + * This data must match the format/channels/samplerate specified in the latest + * call to SDL_SetAudioStreamFormat, or the format specified when creating the + * stream if it hasn't been changed. + * + * Note that this call simply copies the unconverted data for later. This is + * different than SDL2, where data was converted during the Put call and the + * Get call would just dequeue the previously-converted data. + * + * \param stream the stream the audio data is being added to. + * \param buf a pointer to the audio data to add. + * \param len the number of bytes to write to the stream. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, but if the + * stream has a callback set, the caller might need to manage + * extra locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearAudioStream + * \sa SDL_FlushAudioStream + * \sa SDL_GetAudioStreamData + * \sa SDL_GetAudioStreamQueued + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PutAudioStreamData(SDL_AudioStream *stream, const void *buf, int len); + +/** + * Get converted/resampled data from the stream. + * + * The input/output data format/channels/samplerate is specified when creating + * the stream, and can be changed after creation by calling + * SDL_SetAudioStreamFormat. + * + * Note that any conversion and resampling necessary is done during this call, + * and SDL_PutAudioStreamData simply queues unconverted data for later. This + * is different than SDL2, where that work was done while inputting new data + * to the stream and requesting the output just copied the converted data. + * + * \param stream the stream the audio is being requested from. + * \param buf a buffer to fill with audio data. + * \param len the maximum number of bytes to fill. + * \returns the number of bytes read from the stream or -1 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread, but if the + * stream has a callback set, the caller might need to manage + * extra locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearAudioStream + * \sa SDL_GetAudioStreamAvailable + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamData(SDL_AudioStream *stream, void *buf, int len); + +/** + * Get the number of converted/resampled bytes available. + * + * The stream may be buffering data behind the scenes until it has enough to + * resample correctly, so this number might be lower than what you expect, or + * even be zero. Add more data or flush the stream if you need the data now. + * + * If the stream has so much data that it would overflow an int, the return + * value is clamped to a maximum value, but no queued data is lost; if there + * are gigabytes of data queued, the app might need to read some of it with + * SDL_GetAudioStreamData before this function's return value is no longer + * clamped. + * + * \param stream the audio stream to query. + * \returns the number of converted/resampled bytes available or -1 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamData + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamAvailable(SDL_AudioStream *stream); + + +/** + * Get the number of bytes currently queued. + * + * This is the number of bytes put into a stream as input, not the number that + * can be retrieved as output. Because of several details, it's not possible + * to calculate one number directly from the other. If you need to know how + * much usable data can be retrieved right now, you should use + * SDL_GetAudioStreamAvailable() and not this function. + * + * Note that audio streams can change their input format at any time, even if + * there is still data queued in a different format, so the returned byte + * count will not necessarily match the number of _sample frames_ available. + * Users of this API should be aware of format changes they make when feeding + * a stream and plan accordingly. + * + * Queued data is not converted until it is consumed by + * SDL_GetAudioStreamData, so this value should be representative of the exact + * data that was put into the stream. + * + * If the stream has so much data that it would overflow an int, the return + * value is clamped to a maximum value, but no queued data is lost; if there + * are gigabytes of data queued, the app might need to read some of it with + * SDL_GetAudioStreamData before this function's return value is no longer + * clamped. + * + * \param stream the audio stream to query. + * \returns the number of bytes queued or -1 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PutAudioStreamData + * \sa SDL_ClearAudioStream + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamQueued(SDL_AudioStream *stream); + + +/** + * Tell the stream that you're done sending data, and anything being buffered + * should be converted/resampled and made available immediately. + * + * It is legal to add more data to a stream after flushing, but there may be + * audio gaps in the output. Generally this is intended to signal the end of + * input, so the complete output becomes available. + * + * \param stream the audio stream to flush. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlushAudioStream(SDL_AudioStream *stream); + +/** + * Clear any pending data in the stream. + * + * This drops any queued data, so there will be nothing to read from the + * stream until more is added. + * + * \param stream the audio stream to clear. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamAvailable + * \sa SDL_GetAudioStreamData + * \sa SDL_GetAudioStreamQueued + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearAudioStream(SDL_AudioStream *stream); + +/** + * Use this function to pause audio playback on the audio device associated + * with an audio stream. + * + * This function pauses audio processing for a given device. Any bound audio + * streams will not progress, and no audio will be generated. Pausing one + * device does not prevent other unpaused devices from running. + * + * Pausing a device can be useful to halt all audio without unbinding all the + * audio streams. This might be useful while a game is paused, or a level is + * loading, etc. + * + * \param stream the audio stream associated with the audio device to pause. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResumeAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PauseAudioStreamDevice(SDL_AudioStream *stream); + +/** + * Use this function to unpause audio playback on the audio device associated + * with an audio stream. + * + * This function unpauses audio processing for a given device that has + * previously been paused. Once unpaused, any bound audio streams will begin + * to progress again, and audio can be generated. + * + * Remember, SDL_OpenAudioDeviceStream opens device in a paused state, so this + * function call is required for audio playback to begin on such device. + * + * \param stream the audio stream associated with the audio device to resume. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResumeAudioStreamDevice(SDL_AudioStream *stream); + +/** + * Use this function to query if an audio device associated with a stream is + * paused. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. + * + * \param stream the audio stream associated with the audio device to query. + * \returns true if device is valid and paused, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseAudioStreamDevice + * \sa SDL_ResumeAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AudioStreamDevicePaused(SDL_AudioStream *stream); + + +/** + * Lock an audio stream for serialized access. + * + * Each SDL_AudioStream has an internal mutex it uses to protect its data + * structures from threading conflicts. This function allows an app to lock + * that mutex, which could be useful if registering callbacks on this stream. + * + * One does not need to lock a stream to use in it most cases, as the stream + * manages this lock internally. However, this lock is held during callbacks, + * which may run from arbitrary threads at any time, so if an app needs to + * protect shared data during those callbacks, locking the stream guarantees + * that the callback is not running while the lock is held. + * + * As this is just a wrapper over SDL_LockMutex for an internal lock; it has + * all the same attributes (recursive locks are allowed, etc). + * + * \param stream the audio stream to lock. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UnlockAudioStream + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockAudioStream(SDL_AudioStream *stream); + + +/** + * Unlock an audio stream for serialized access. + * + * This unlocks an audio stream after a call to SDL_LockAudioStream. + * + * \param stream the audio stream to unlock. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety You should only call this from the same thread that + * previously called SDL_LockAudioStream. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockAudioStream + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UnlockAudioStream(SDL_AudioStream *stream); + +/** + * A callback that fires when data passes through an SDL_AudioStream. + * + * Apps can (optionally) register a callback with an audio stream that is + * called when data is added with SDL_PutAudioStreamData, or requested with + * SDL_GetAudioStreamData. + * + * Two values are offered here: one is the amount of additional data needed to + * satisfy the immediate request (which might be zero if the stream already + * has enough data queued) and the other is the total amount being requested. + * In a Get call triggering a Put callback, these values can be different. In + * a Put call triggering a Get callback, these values are always the same. + * + * Byte counts might be slightly overestimated due to buffering or resampling, + * and may change from call to call. + * + * This callback is not required to do anything. Generally this is useful for + * adding/reading data on demand, and the app will often put/get data as + * appropriate, but the system goes on with the data currently available to it + * if this callback does nothing. + * + * \param stream the SDL audio stream associated with this callback. + * \param additional_amount the amount of data, in bytes, that is needed right + * now. + * \param total_amount the total amount of data requested, in bytes, that is + * requested or available. + * \param userdata an opaque pointer provided by the app for their personal + * use. + * + * \threadsafety This callbacks may run from any thread, so if you need to + * protect shared data, you should use SDL_LockAudioStream to + * serialize access; this lock will be held before your callback + * is called, so your callback does not need to manage the lock + * explicitly. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamGetCallback + * \sa SDL_SetAudioStreamPutCallback + */ +typedef void (SDLCALL *SDL_AudioStreamCallback)(void *userdata, SDL_AudioStream *stream, int additional_amount, int total_amount); + +/** + * Set a callback that runs when data is requested from an audio stream. + * + * This callback is called _before_ data is obtained from the stream, giving + * the callback the chance to add more on-demand. + * + * The callback can (optionally) call SDL_PutAudioStreamData() to add more + * audio to the stream during this call; if needed, the request that triggered + * this callback will obtain the new data immediately. + * + * The callback's `additional_amount` argument is roughly how many bytes of + * _unconverted_ data (in the stream's input format) is needed by the caller, + * although this may overestimate a little for safety. This takes into account + * how much is already in the stream and only asks for any extra necessary to + * resolve the request, which means the callback may be asked for zero bytes, + * and a different amount on each call. + * + * The callback is not required to supply exact amounts; it is allowed to + * supply too much or too little or none at all. The caller will get what's + * available, up to the amount they requested, regardless of this callback's + * outcome. + * + * Clearing or flushing an audio stream does not call this callback. + * + * This function obtains the stream's lock, which means any existing callback + * (get or put) in progress will finish running before setting the new + * callback. + * + * Setting a NULL function turns off the callback. + * + * \param stream the audio stream to set the new callback on. + * \param callback the new callback function to call when data is requested + * from the stream. + * \param userdata an opaque pointer provided to the callback for its own + * personal use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. This only fails if `stream` is NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamPutCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamGetCallback(SDL_AudioStream *stream, SDL_AudioStreamCallback callback, void *userdata); + +/** + * Set a callback that runs when data is added to an audio stream. + * + * This callback is called _after_ the data is added to the stream, giving the + * callback the chance to obtain it immediately. + * + * The callback can (optionally) call SDL_GetAudioStreamData() to obtain audio + * from the stream during this call. + * + * The callback's `additional_amount` argument is how many bytes of + * _converted_ data (in the stream's output format) was provided by the + * caller, although this may underestimate a little for safety. This value + * might be less than what is currently available in the stream, if data was + * already there, and might be less than the caller provided if the stream + * needs to keep a buffer to aid in resampling. Which means the callback may + * be provided with zero bytes, and a different amount on each call. + * + * The callback may call SDL_GetAudioStreamAvailable to see the total amount + * currently available to read from the stream, instead of the total provided + * by the current call. + * + * The callback is not required to obtain all data. It is allowed to read less + * or none at all. Anything not read now simply remains in the stream for + * later access. + * + * Clearing or flushing an audio stream does not call this callback. + * + * This function obtains the stream's lock, which means any existing callback + * (get or put) in progress will finish running before setting the new + * callback. + * + * Setting a NULL function turns off the callback. + * + * \param stream the audio stream to set the new callback on. + * \param callback the new callback function to call when data is added to the + * stream. + * \param userdata an opaque pointer provided to the callback for its own + * personal use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. This only fails if `stream` is NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamGetCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamPutCallback(SDL_AudioStream *stream, SDL_AudioStreamCallback callback, void *userdata); + + +/** + * Free an audio stream. + * + * This will release all allocated data, including any audio that is still + * queued. You do not need to manually clear the stream first. + * + * If this stream was bound to an audio device, it is unbound during this + * call. If this stream was created with SDL_OpenAudioDeviceStream, the audio + * device that was opened alongside this stream's creation will be closed, + * too. + * + * \param stream the audio stream to destroy. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateAudioStream + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyAudioStream(SDL_AudioStream *stream); + + +/** + * Convenience function for straightforward audio init for the common case. + * + * If all your app intends to do is provide a single source of PCM audio, this + * function allows you to do all your audio setup in a single call. + * + * This is also intended to be a clean means to migrate apps from SDL2. + * + * This function will open an audio device, create a stream and bind it. + * Unlike other methods of setup, the audio device will be closed when this + * stream is destroyed, so the app can treat the returned SDL_AudioStream as + * the only object needed to manage audio playback. + * + * Also unlike other functions, the audio device begins paused. This is to map + * more closely to SDL2-style behavior, since there is no extra step here to + * bind a stream to begin audio flowing. The audio device should be resumed + * with `SDL_ResumeAudioStreamDevice(stream);` + * + * This function works with both playback and recording devices. + * + * The `spec` parameter represents the app's side of the audio stream. That + * is, for recording audio, this will be the output format, and for playing + * audio, this will be the input format. If spec is NULL, the system will + * choose the format, and the app can use SDL_GetAudioStreamFormat() to obtain + * this information later. + * + * If you don't care about opening a specific audio device, you can (and + * probably _should_), use SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK for playback and + * SDL_AUDIO_DEVICE_DEFAULT_RECORDING for recording. + * + * One can optionally provide a callback function; if NULL, the app is + * expected to queue audio data for playback (or unqueue audio data if + * capturing). Otherwise, the callback will begin to fire once the device is + * unpaused. + * + * Destroying the returned stream with SDL_DestroyAudioStream will also close + * the audio device associated with this stream. + * + * \param devid an audio device to open, or SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK + * or SDL_AUDIO_DEVICE_DEFAULT_RECORDING. + * \param spec the audio stream's data format. Can be NULL. + * \param callback a callback where the app will provide new data for + * playback, or receive new data for recording. Can be NULL, + * in which case the app will need to call + * SDL_PutAudioStreamData or SDL_GetAudioStreamData as + * necessary. + * \param userdata app-controlled pointer passed to callback. Can be NULL. + * Ignored if callback is NULL. + * \returns an audio stream on success, ready to use, or NULL on failure; call + * SDL_GetError() for more information. When done with this stream, + * call SDL_DestroyAudioStream to free resources and close the + * device. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamDevice + * \sa SDL_ResumeAudioStreamDevice + */ +extern SDL_DECLSPEC SDL_AudioStream * SDLCALL SDL_OpenAudioDeviceStream(SDL_AudioDeviceID devid, const SDL_AudioSpec *spec, SDL_AudioStreamCallback callback, void *userdata); + +/** + * A callback that fires when data is about to be fed to an audio device. + * + * This is useful for accessing the final mix, perhaps for writing a + * visualizer or applying a final effect to the audio data before playback. + * + * This callback should run as quickly as possible and not block for any + * significant time, as this callback delays submission of data to the audio + * device, which can cause audio playback problems. + * + * The postmix callback _must_ be able to handle any audio data format + * specified in `spec`, which can change between callbacks if the audio device + * changed. However, this only covers frequency and channel count; data is + * always provided here in SDL_AUDIO_F32 format. + * + * The postmix callback runs _after_ logical device gain and audiostream gain + * have been applied, which is to say you can make the output data louder at + * this point than the gain settings would suggest. + * + * \param userdata a pointer provided by the app through + * SDL_SetAudioPostmixCallback, for its own use. + * \param spec the current format of audio that is to be submitted to the + * audio device. + * \param buffer the buffer of audio samples to be submitted. The callback can + * inspect and/or modify this data. + * \param buflen the size of `buffer` in bytes. + * + * \threadsafety This will run from a background thread owned by SDL. The + * application is responsible for locking resources the callback + * touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetAudioPostmixCallback + */ +typedef void (SDLCALL *SDL_AudioPostmixCallback)(void *userdata, const SDL_AudioSpec *spec, float *buffer, int buflen); + +/** + * Set a callback that fires when data is about to be fed to an audio device. + * + * This is useful for accessing the final mix, perhaps for writing a + * visualizer or applying a final effect to the audio data before playback. + * + * The buffer is the final mix of all bound audio streams on an opened device; + * this callback will fire regularly for any device that is both opened and + * unpaused. If there is no new data to mix, either because no streams are + * bound to the device or all the streams are empty, this callback will still + * fire with the entire buffer set to silence. + * + * This callback is allowed to make changes to the data; the contents of the + * buffer after this call is what is ultimately passed along to the hardware. + * + * The callback is always provided the data in float format (values from -1.0f + * to 1.0f), but the number of channels or sample rate may be different than + * the format the app requested when opening the device; SDL might have had to + * manage a conversion behind the scenes, or the playback might have jumped to + * new physical hardware when a system default changed, etc. These details may + * change between calls. Accordingly, the size of the buffer might change + * between calls as well. + * + * This callback can run at any time, and from any thread; if you need to + * serialize access to your app's data, you should provide and use a mutex or + * other synchronization device. + * + * All of this to say: there are specific needs this callback can fulfill, but + * it is not the simplest interface. Apps should generally provide audio in + * their preferred format through an SDL_AudioStream and let SDL handle the + * difference. + * + * This function is extremely time-sensitive; the callback should do the least + * amount of work possible and return as quickly as it can. The longer the + * callback runs, the higher the risk of audio dropouts or other problems. + * + * This function will block until the audio device is in between iterations, + * so any existing callback that might be running will finish before this + * function sets the new callback and returns. + * + * Setting a NULL callback function disables any previously-set callback. + * + * \param devid the ID of an opened audio device. + * \param callback a callback function to be called. Can be NULL. + * \param userdata app-controlled pointer passed to callback. Can be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioPostmixCallback(SDL_AudioDeviceID devid, SDL_AudioPostmixCallback callback, void *userdata); + + +/** + * Load the audio data of a WAVE file into memory. + * + * Loading a WAVE file requires `src`, `spec`, `audio_buf` and `audio_len` to + * be valid pointers. The entire data portion of the file is then loaded into + * memory and decoded if necessary. + * + * Supported formats are RIFF WAVE files with the formats PCM (8, 16, 24, and + * 32 bits), IEEE Float (32 bits), Microsoft ADPCM and IMA ADPCM (4 bits), and + * A-law and mu-law (8 bits). Other formats are currently unsupported and + * cause an error. + * + * If this function succeeds, the return value is zero and the pointer to the + * audio data allocated by the function is written to `audio_buf` and its + * length in bytes to `audio_len`. The SDL_AudioSpec members `freq`, + * `channels`, and `format` are set to the values of the audio data in the + * buffer. + * + * It's necessary to use SDL_free() to free the audio data returned in + * `audio_buf` when it is no longer used. + * + * Because of the underspecification of the .WAV format, there are many + * problematic files in the wild that cause issues with strict decoders. To + * provide compatibility with these files, this decoder is lenient in regards + * to the truncation of the file, the fact chunk, and the size of the RIFF + * chunk. The hints `SDL_HINT_WAVE_RIFF_CHUNK_SIZE`, + * `SDL_HINT_WAVE_TRUNCATION`, and `SDL_HINT_WAVE_FACT_CHUNK` can be used to + * tune the behavior of the loading process. + * + * Any file that is invalid (due to truncation, corruption, or wrong values in + * the headers), too big, or unsupported causes an error. Additionally, any + * critical I/O error from the data source will terminate the loading process + * with an error. The function returns NULL on error and in all cases (with + * the exception of `src` being NULL), an appropriate error message will be + * set. + * + * It is required that the data source supports seeking. + * + * Example: + * + * ```c + * SDL_LoadWAV_IO(SDL_IOFromFile("sample.wav", "rb"), true, &spec, &buf, &len); + * ``` + * + * Note that the SDL_LoadWAV function does this same thing for you, but in a + * less messy way: + * + * ```c + * SDL_LoadWAV("sample.wav", &spec, &buf, &len); + * ``` + * + * \param src the data source for the WAVE data. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \param spec a pointer to an SDL_AudioSpec that will be set to the WAVE + * data's format details on successful return. + * \param audio_buf a pointer filled with the audio data, allocated by the + * function. + * \param audio_len a pointer filled with the length of the audio data buffer + * in bytes. + * \returns true on success. `audio_buf` will be filled with a pointer to an + * allocated buffer containing the audio data, and `audio_len` is + * filled with the length of that audio buffer in bytes. + * + * This function returns false if the .WAV file cannot be opened, + * uses an unknown data format, or is corrupt; call SDL_GetError() + * for more information. + * + * When the application is done with the data returned in + * `audio_buf`, it should call SDL_free() to dispose of it. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_LoadWAV + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LoadWAV_IO(SDL_IOStream *src, bool closeio, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); + +/** + * Loads a WAV from a file path. + * + * This is a convenience function that is effectively the same as: + * + * ```c + * SDL_LoadWAV_IO(SDL_IOFromFile(path, "rb"), true, spec, audio_buf, audio_len); + * ``` + * + * \param path the file path of the WAV file to open. + * \param spec a pointer to an SDL_AudioSpec that will be set to the WAVE + * data's format details on successful return. + * \param audio_buf a pointer filled with the audio data, allocated by the + * function. + * \param audio_len a pointer filled with the length of the audio data buffer + * in bytes. + * \returns true on success. `audio_buf` will be filled with a pointer to an + * allocated buffer containing the audio data, and `audio_len` is + * filled with the length of that audio buffer in bytes. + * + * This function returns false if the .WAV file cannot be opened, + * uses an unknown data format, or is corrupt; call SDL_GetError() + * for more information. + * + * When the application is done with the data returned in + * `audio_buf`, it should call SDL_free() to dispose of it. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_LoadWAV_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LoadWAV(const char *path, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); + +/** + * Mix audio data in a specified format. + * + * This takes an audio buffer `src` of `len` bytes of `format` data and mixes + * it into `dst`, performing addition, volume adjustment, and overflow + * clipping. The buffer pointed to by `dst` must also be `len` bytes of + * `format` data. + * + * This is provided for convenience -- you can mix your own audio data. + * + * Do not use this function for mixing together more than two streams of + * sample data. The output from repeated application of this function may be + * distorted by clipping, because there is no accumulator with greater range + * than the input (not to mention this being an inefficient way of doing it). + * + * It is a common misconception that this function is required to write audio + * data to an output stream in an audio callback. While you can do that, + * SDL_MixAudio() is really only needed when you're mixing a single audio + * stream with a volume adjustment. + * + * \param dst the destination for the mixed audio. + * \param src the source audio buffer to be mixed. + * \param format the SDL_AudioFormat structure representing the desired audio + * format. + * \param len the length of the audio buffer in bytes. + * \param volume ranges from 0.0 - 1.0, and should be set to 1.0 for full + * audio volume. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_MixAudio(Uint8 *dst, const Uint8 *src, SDL_AudioFormat format, Uint32 len, float volume); + +/** + * Convert some audio data of one format to another format. + * + * Please note that this function is for convenience, but should not be used + * to resample audio in blocks, as it will introduce audio artifacts on the + * boundaries. You should only use this function if you are converting audio + * data in its entirety in one call. If you want to convert audio in smaller + * chunks, use an SDL_AudioStream, which is designed for this situation. + * + * Internally, this function creates and destroys an SDL_AudioStream on each + * use, so it's also less efficient than using one directly, if you need to + * convert multiple times. + * + * \param src_spec the format details of the input audio. + * \param src_data the audio data to be converted. + * \param src_len the len of src_data. + * \param dst_spec the format details of the output audio. + * \param dst_data will be filled with a pointer to converted audio data, + * which should be freed with SDL_free(). On error, it will be + * NULL. + * \param dst_len will be filled with the len of dst_data. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertAudioSamples(const SDL_AudioSpec *src_spec, const Uint8 *src_data, int src_len, const SDL_AudioSpec *dst_spec, Uint8 **dst_data, int *dst_len); + +/** + * Get the human readable name of an audio format. + * + * \param format the audio format to query. + * \returns the human readable name of the specified audio format or + * "SDL_AUDIO_UNKNOWN" if the format isn't recognized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioFormatName(SDL_AudioFormat format); + +/** + * Get the appropriate memset value for silencing an audio format. + * + * The value returned by this function can be used as the second argument to + * memset (or SDL_memset) to set an audio buffer in a specific format to + * silence. + * + * \param format the audio data format to query. + * \returns a byte value that can be passed to memset. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSilenceValueForFormat(SDL_AudioFormat format); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_audio_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_begin_code.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_begin_code.h new file mode 100644 index 0000000..a6b47cf --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_begin_code.h @@ -0,0 +1,486 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: BeginCode */ + +/** + * # CategoryBeginCode + * + * `SDL_begin_code.h` sets things up for C dynamic library function + * definitions, static inlined functions, and structures aligned at 4-byte + * alignment. If you don't like ugly C preprocessor code, don't look at this + * file. :) + * + * SDL's headers use this; applications generally should not include this + * header directly. + */ + +/* This shouldn't be nested -- included it around code only. */ +#ifdef SDL_begin_code_h +#error Nested inclusion of SDL_begin_code.h +#endif +#define SDL_begin_code_h + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to tag a symbol as deprecated. + * + * A function is marked deprecated by adding this macro to its declaration: + * + * ```c + * extern SDL_DEPRECATED int ThisFunctionWasABadIdea(void); + * ``` + * + * Compilers with deprecation support can give a warning when a deprecated + * function is used. This symbol may be used in SDL's headers, but apps are + * welcome to use it for their own interfaces as well. + * + * SDL, on occasion, might deprecate a function for various reasons. However, + * SDL never removes symbols before major versions, so deprecated interfaces + * in SDL3 will remain available until SDL4, where it would be expected an app + * would have to take steps to migrate anyhow. + * + * On compilers without a deprecation mechanism, this is defined to nothing, + * and using a deprecated function will not generate a warning. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEPRECATED __attribute__((deprecated)) + +/** + * A macro to tag a symbol as a public API. + * + * SDL uses this macro for all its public functions. On some targets, it is + * used to signal to the compiler that this function needs to be exported from + * a shared library, but it might have other side effects. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DECLSPEC __attribute__ ((visibility("default"))) + +/** + * A macro to set a function's calling conventions. + * + * SDL uses this macro for all its public functions, and any callbacks it + * defines. This macro guarantees that calling conventions match between SDL + * and the app, even if the two were built with different compilers or + * optimization settings. + * + * When writing a callback function, it is very important for it to be + * correctly tagged with SDLCALL, as mismatched calling conventions can cause + * strange behaviors and can be difficult to diagnose. Plus, on many + * platforms, SDLCALL is defined to nothing, so compilers won't be able to + * warn that the tag is missing. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDLCALL __cdecl + +/** + * A macro to request a function be inlined. + * + * This is a hint to the compiler to inline a function. The compiler is free + * to ignore this request. On compilers without inline support, this is + * defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_INLINE __inline + +/** + * A macro to demand a function be inlined. + * + * This is a command to the compiler to inline a function. SDL uses this macro + * in its public headers for a handful of simple functions. On compilers + * without forceinline support, this is defined to `static SDL_INLINE`, which + * is often good enough. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FORCE_INLINE __forceinline + +/** + * A macro to tag a function as never-returning. + * + * This is a hint to the compiler that a function does not return. An example + * of a function like this is the C runtime's exit() function. + * + * This hint can lead to code optimizations, and help analyzers understand + * code flow better. On compilers without noreturn support, this is defined to + * nothing. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NORETURN __attribute__((noreturn)) + +/** + * A macro to tag a function as never-returning (for analysis purposes). + * + * This is almost identical to SDL_NORETURN, except functions marked with this + * _can_ actually return. The difference is that this isn't used for code + * generation, but rather static analyzers use this information to assume + * truths about program state and available code paths. Specifically, this tag + * is useful for writing an assertion mechanism. Indeed, SDL_assert uses this + * tag behind the scenes. Generally, apps that don't understand the specific + * use-case for this tag should avoid using it directly. + * + * On compilers without analyzer_noreturn support, this is defined to nothing. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ANALYZER_NORETURN __attribute__((analyzer_noreturn)) + + +/** + * A macro to signal that a case statement without a `break` is intentional. + * + * C compilers have gotten more aggressive about warning when a switch's + * `case` block does not end with a `break` or other flow control statement, + * flowing into the next case's code, as this is a common accident that leads + * to strange bugs. But sometimes falling through to the next case is the + * correct and desired behavior. This symbol lets an app communicate this + * intention to the compiler, so it doesn't generate a warning. + * + * It is used like this: + * + * ```c + * switch (x) { + * case 1: + * DoSomethingOnlyForOne(); + * SDL_FALLTHROUGH; // tell the compiler this was intentional. + * case 2: + * DoSomethingForOneAndTwo(); + * break; + * } + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FALLTHROUGH [[fallthrough]] + +/** + * A macro to tag a function's return value as critical. + * + * This is a hint to the compiler that a function's return value should not be + * ignored. + * + * If an NODISCARD function's return value is thrown away (the function is + * called as if it returns `void`), the compiler will issue a warning. + * + * While it's generally good practice to check return values for errors, often + * times legitimate programs do not for good reasons. Be careful about what + * functions are tagged as NODISCARD. It operates best when used on a function + * that's failure is surprising and catastrophic; a good example would be a + * program that checks the return values of all its file write function calls + * but not the call to close the file, which it assumes incorrectly never + * fails. + * + * Function callers that want to throw away a NODISCARD return value can call + * the function with a `(void)` cast, which informs the compiler the act is + * intentional. + * + * On compilers without nodiscard support, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NODISCARD [[nodiscard]] + +/** + * A macro to tag a function as an allocator. + * + * This is a hint to the compiler that a function is an allocator, like + * malloc(), with certain rules. A description of how GCC treats this hint is + * here: + * + * https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-malloc-function-attribute + * + * On compilers without allocator tag support, this is defined to nothing. + * + * Most apps don't need to, and should not, use this directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MALLOC __declspec(allocator) __desclspec(restrict) + +/** + * A macro to tag a function as returning a certain allocation. + * + * This is a hint to the compiler that a function allocates and returns a + * specific amount of memory based on one of its arguments. For example, the C + * runtime's malloc() function could use this macro with an argument of 1 + * (first argument to malloc is the size of the allocation). + * + * On compilers without alloc_size support, this is defined to nothing. + * + * Most apps don't need to, and should not, use this directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ALLOC_SIZE(p) __attribute__((alloc_size(p))) + +/** + * A macro to tag a pointer variable, to help with pointer aliasing. + * + * A good explanation of the restrict keyword is here: + * + * https://en.wikipedia.org/wiki/Restrict + * + * On compilers without restrict support, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RESTRICT __restrict__ + +/** + * Check if the compiler supports a given builtin functionality. + * + * This allows preprocessor checks for things that otherwise might fail to + * compile. + * + * Supported by virtually all clang versions and more-recent GCCs. Use this + * instead of checking the clang version if possible. + * + * On compilers without has_builtin support, this is defined to 0 (always + * false). + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAS_BUILTIN(x) __has_builtin(x) + +/* end of wiki documentation section. */ +#endif + +#ifndef SDL_HAS_BUILTIN +#ifdef __has_builtin +#define SDL_HAS_BUILTIN(x) __has_builtin(x) +#else +#define SDL_HAS_BUILTIN(x) 0 +#endif +#endif + +#ifndef SDL_DEPRECATED +# if defined(__GNUC__) && (__GNUC__ >= 4) /* technically, this arrived in gcc 3.1, but oh well. */ +# define SDL_DEPRECATED __attribute__((deprecated)) +# elif defined(_MSC_VER) +# define SDL_DEPRECATED __declspec(deprecated) +# else +# define SDL_DEPRECATED +# endif +#endif + +#ifndef SDL_UNUSED +# ifdef __GNUC__ +# define SDL_UNUSED __attribute__((unused)) +# else +# define SDL_UNUSED +# endif +#endif + +/* Some compilers use a special export keyword */ +#ifndef SDL_DECLSPEC +# if defined(SDL_PLATFORM_WINDOWS) +# ifdef DLL_EXPORT +# define SDL_DECLSPEC __declspec(dllexport) +# else +# define SDL_DECLSPEC +# endif +# else +# if defined(__GNUC__) && __GNUC__ >= 4 +# define SDL_DECLSPEC __attribute__ ((visibility("default"))) +# else +# define SDL_DECLSPEC +# endif +# endif +#endif + +/* By default SDL uses the C calling convention */ +#ifndef SDLCALL +#if defined(SDL_PLATFORM_WINDOWS) && !defined(__GNUC__) +#define SDLCALL __cdecl +#else +#define SDLCALL +#endif +#endif /* SDLCALL */ + +/* Force structure packing at 4 byte alignment. + This is necessary if the header is included in code which has structure + packing set to an alternate value, say for loading structures from disk. + The packing is reset to the previous value in SDL_close_code.h + */ +#if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__) +#ifdef _MSC_VER +#pragma warning(disable: 4103) +#endif +#ifdef __clang__ +#pragma clang diagnostic ignored "-Wpragma-pack" +#endif +#ifdef __BORLANDC__ +#pragma nopackwarning +#endif +#ifdef _WIN64 +/* Use 8-byte alignment on 64-bit architectures, so pointers are aligned */ +#pragma pack(push,8) +#else +#pragma pack(push,4) +#endif +#endif /* Compiler needs structure packing set */ + +#ifndef SDL_INLINE +#ifdef __GNUC__ +#define SDL_INLINE __inline__ +#elif defined(_MSC_VER) || defined(__BORLANDC__) || \ + defined(__DMC__) || defined(__SC__) || \ + defined(__WATCOMC__) || defined(__LCC__) || \ + defined(__DECC) || defined(__CC_ARM) +#define SDL_INLINE __inline +#ifndef __inline__ +#define __inline__ __inline +#endif +#else +#define SDL_INLINE inline +#ifndef __inline__ +#define __inline__ inline +#endif +#endif +#endif /* SDL_INLINE not defined */ + +#ifndef SDL_FORCE_INLINE +#ifdef _MSC_VER +#define SDL_FORCE_INLINE __forceinline +#elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) ) +#define SDL_FORCE_INLINE __attribute__((always_inline)) static __inline__ +#else +#define SDL_FORCE_INLINE static SDL_INLINE +#endif +#endif /* SDL_FORCE_INLINE not defined */ + +#ifndef SDL_NORETURN +#ifdef __GNUC__ +#define SDL_NORETURN __attribute__((noreturn)) +#elif defined(_MSC_VER) +#define SDL_NORETURN __declspec(noreturn) +#else +#define SDL_NORETURN +#endif +#endif /* SDL_NORETURN not defined */ + +#ifdef __clang__ +#if __has_feature(attribute_analyzer_noreturn) +#define SDL_ANALYZER_NORETURN __attribute__((analyzer_noreturn)) +#endif +#endif + +#ifndef SDL_ANALYZER_NORETURN +#define SDL_ANALYZER_NORETURN +#endif + +/* Apparently this is needed by several Windows compilers */ +#ifndef __MACH__ +#ifndef NULL +#ifdef __cplusplus +#define NULL 0 +#else +#define NULL ((void *)0) +#endif +#endif /* NULL */ +#endif /* ! macOS - breaks precompiled headers */ + +#ifndef SDL_FALLTHROUGH +#if (defined(__cplusplus) && __cplusplus >= 201703L) || \ + (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202000L) +#define SDL_FALLTHROUGH [[fallthrough]] +#else +#if defined(__has_attribute) && !defined(__SUNPRO_C) && !defined(__SUNPRO_CC) +#define SDL_HAS_FALLTHROUGH __has_attribute(__fallthrough__) +#else +#define SDL_HAS_FALLTHROUGH 0 +#endif /* __has_attribute */ +#if SDL_HAS_FALLTHROUGH && \ + ((defined(__GNUC__) && __GNUC__ >= 7) || \ + (defined(__clang_major__) && __clang_major__ >= 10)) +#define SDL_FALLTHROUGH __attribute__((__fallthrough__)) +#else +#define SDL_FALLTHROUGH do {} while (0) /* fallthrough */ +#endif /* SDL_HAS_FALLTHROUGH */ +#undef SDL_HAS_FALLTHROUGH +#endif /* C++17 or C2x */ +#endif /* SDL_FALLTHROUGH not defined */ + +#ifndef SDL_NODISCARD +#if (defined(__cplusplus) && __cplusplus >= 201703L) || \ + (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) +#define SDL_NODISCARD [[nodiscard]] +#elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) ) +#define SDL_NODISCARD __attribute__((warn_unused_result)) +#elif defined(_MSC_VER) && (_MSC_VER >= 1700) +#define SDL_NODISCARD _Check_return_ +#else +#define SDL_NODISCARD +#endif /* C++17 or C23 */ +#endif /* SDL_NODISCARD not defined */ + +#ifndef SDL_MALLOC +#if defined(__GNUC__) && (__GNUC__ >= 3) +#define SDL_MALLOC __attribute__((malloc)) +/** FIXME +#elif defined(_MSC_VER) +#define SDL_MALLOC __declspec(allocator) __desclspec(restrict) +**/ +#else +#define SDL_MALLOC +#endif +#endif /* SDL_MALLOC not defined */ + +#ifndef SDL_ALLOC_SIZE +#if (defined(__clang__) && __clang_major__ >= 4) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) +#define SDL_ALLOC_SIZE(p) __attribute__((alloc_size(p))) +#elif defined(_MSC_VER) +#define SDL_ALLOC_SIZE(p) +#else +#define SDL_ALLOC_SIZE(p) +#endif +#endif /* SDL_ALLOC_SIZE not defined */ + +#ifndef SDL_ALLOC_SIZE2 +#if (defined(__clang__) && __clang_major__ >= 4) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) +#define SDL_ALLOC_SIZE2(p1, p2) __attribute__((alloc_size(p1, p2))) +#elif defined(_MSC_VER) +#define SDL_ALLOC_SIZE2(p1, p2) +#else +#define SDL_ALLOC_SIZE2(p1, p2) +#endif +#endif /* SDL_ALLOC_SIZE2 not defined */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_bits.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_bits.h new file mode 100644 index 0000000..7435ce6 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_bits.h @@ -0,0 +1,147 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryBits + * + * Functions for fiddling with bits and bitmasks. + */ + +#ifndef SDL_bits_h_ +#define SDL_bits_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#if defined(__WATCOMC__) && defined(__386__) +extern __inline int _SDL_bsr_watcom(Uint32); +#pragma aux _SDL_bsr_watcom = \ + "bsr eax, eax" \ + parm [eax] nomemory \ + value [eax] \ + modify exact [eax] nomemory; +#endif + +/** + * Get the index of the most significant (set) bit in a 32-bit number. + * + * Result is undefined when called with 0. This operation can also be stated + * as "count leading zeroes" and "log base 2". + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the 32-bit value to examine. + * \returns the index of the most significant bit, or -1 if the value is 0. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE int SDL_MostSignificantBitIndex32(Uint32 x) +{ +#if defined(__GNUC__) && (__GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) + /* Count Leading Zeroes builtin in GCC. + * http://gcc.gnu.org/onlinedocs/gcc-4.3.4/gcc/Other-Builtins.html + */ + if (x == 0) { + return -1; + } + return 31 - __builtin_clz(x); +#elif defined(__WATCOMC__) && defined(__386__) + if (x == 0) { + return -1; + } + return _SDL_bsr_watcom(x); +#elif defined(_MSC_VER) && _MSC_VER >= 1400 + unsigned long index; + if (_BitScanReverse(&index, x)) { + return (int)index; + } + return -1; +#else + /* Based off of Bit Twiddling Hacks by Sean Eron Anderson + * , released in the public domain. + * http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog + */ + const Uint32 b[] = {0x2, 0xC, 0xF0, 0xFF00, 0xFFFF0000}; + const int S[] = {1, 2, 4, 8, 16}; + + int msbIndex = 0; + int i; + + if (x == 0) { + return -1; + } + + for (i = 4; i >= 0; i--) + { + if (x & b[i]) + { + x >>= S[i]; + msbIndex |= S[i]; + } + } + + return msbIndex; +#endif +} + +/** + * Determine if a unsigned 32-bit value has exactly one bit set. + * + * If there are no bits set (`x` is zero), or more than one bit set, this + * returns false. If any one bit is exclusively set, this returns true. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the 32-bit value to examine. + * \returns true if exactly one bit is set in `x`, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_HasExactlyOneBitSet32(Uint32 x) +{ + if (x && !(x & (x - 1))) { + return true; + } + return false; +} + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_bits_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_blendmode.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_blendmode.h new file mode 100644 index 0000000..8f00cbc --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_blendmode.h @@ -0,0 +1,202 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryBlendmode + * + * Blend modes decide how two colors will mix together. There are both + * standard modes for basic needs and a means to create custom modes, + * dictating what sort of math to do on what color components. + */ + +#ifndef SDL_blendmode_h_ +#define SDL_blendmode_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A set of blend modes used in drawing operations. + * + * These predefined blend modes are supported everywhere. + * + * Additional values may be obtained from SDL_ComposeCustomBlendMode. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_ComposeCustomBlendMode + */ +typedef Uint32 SDL_BlendMode; + +#define SDL_BLENDMODE_NONE 0x00000000u /**< no blending: dstRGBA = srcRGBA */ +#define SDL_BLENDMODE_BLEND 0x00000001u /**< alpha blending: dstRGB = (srcRGB * srcA) + (dstRGB * (1-srcA)), dstA = srcA + (dstA * (1-srcA)) */ +#define SDL_BLENDMODE_BLEND_PREMULTIPLIED 0x00000010u /**< pre-multiplied alpha blending: dstRGBA = srcRGBA + (dstRGBA * (1-srcA)) */ +#define SDL_BLENDMODE_ADD 0x00000002u /**< additive blending: dstRGB = (srcRGB * srcA) + dstRGB, dstA = dstA */ +#define SDL_BLENDMODE_ADD_PREMULTIPLIED 0x00000020u /**< pre-multiplied additive blending: dstRGB = srcRGB + dstRGB, dstA = dstA */ +#define SDL_BLENDMODE_MOD 0x00000004u /**< color modulate: dstRGB = srcRGB * dstRGB, dstA = dstA */ +#define SDL_BLENDMODE_MUL 0x00000008u /**< color multiply: dstRGB = (srcRGB * dstRGB) + (dstRGB * (1-srcA)), dstA = dstA */ +#define SDL_BLENDMODE_INVALID 0x7FFFFFFFu + +/** + * The blend operation used when combining source and destination pixel + * components. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_BlendOperation +{ + SDL_BLENDOPERATION_ADD = 0x1, /**< dst + src: supported by all renderers */ + SDL_BLENDOPERATION_SUBTRACT = 0x2, /**< src - dst : supported by D3D, OpenGL, OpenGLES, and Vulkan */ + SDL_BLENDOPERATION_REV_SUBTRACT = 0x3, /**< dst - src : supported by D3D, OpenGL, OpenGLES, and Vulkan */ + SDL_BLENDOPERATION_MINIMUM = 0x4, /**< min(dst, src) : supported by D3D, OpenGL, OpenGLES, and Vulkan */ + SDL_BLENDOPERATION_MAXIMUM = 0x5 /**< max(dst, src) : supported by D3D, OpenGL, OpenGLES, and Vulkan */ +} SDL_BlendOperation; + +/** + * The normalized factor used to multiply pixel components. + * + * The blend factors are multiplied with the pixels from a drawing operation + * (src) and the pixels from the render target (dst) before the blend + * operation. The comma-separated factors listed above are always applied in + * the component order red, green, blue, and alpha. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_BlendFactor +{ + SDL_BLENDFACTOR_ZERO = 0x1, /**< 0, 0, 0, 0 */ + SDL_BLENDFACTOR_ONE = 0x2, /**< 1, 1, 1, 1 */ + SDL_BLENDFACTOR_SRC_COLOR = 0x3, /**< srcR, srcG, srcB, srcA */ + SDL_BLENDFACTOR_ONE_MINUS_SRC_COLOR = 0x4, /**< 1-srcR, 1-srcG, 1-srcB, 1-srcA */ + SDL_BLENDFACTOR_SRC_ALPHA = 0x5, /**< srcA, srcA, srcA, srcA */ + SDL_BLENDFACTOR_ONE_MINUS_SRC_ALPHA = 0x6, /**< 1-srcA, 1-srcA, 1-srcA, 1-srcA */ + SDL_BLENDFACTOR_DST_COLOR = 0x7, /**< dstR, dstG, dstB, dstA */ + SDL_BLENDFACTOR_ONE_MINUS_DST_COLOR = 0x8, /**< 1-dstR, 1-dstG, 1-dstB, 1-dstA */ + SDL_BLENDFACTOR_DST_ALPHA = 0x9, /**< dstA, dstA, dstA, dstA */ + SDL_BLENDFACTOR_ONE_MINUS_DST_ALPHA = 0xA /**< 1-dstA, 1-dstA, 1-dstA, 1-dstA */ +} SDL_BlendFactor; + +/** + * Compose a custom blend mode for renderers. + * + * The functions SDL_SetRenderDrawBlendMode and SDL_SetTextureBlendMode accept + * the SDL_BlendMode returned by this function if the renderer supports it. + * + * A blend mode controls how the pixels from a drawing operation (source) get + * combined with the pixels from the render target (destination). First, the + * components of the source and destination pixels get multiplied with their + * blend factors. Then, the blend operation takes the two products and + * calculates the result that will get stored in the render target. + * + * Expressed in pseudocode, it would look like this: + * + * ```c + * dstRGB = colorOperation(srcRGB * srcColorFactor, dstRGB * dstColorFactor); + * dstA = alphaOperation(srcA * srcAlphaFactor, dstA * dstAlphaFactor); + * ``` + * + * Where the functions `colorOperation(src, dst)` and `alphaOperation(src, + * dst)` can return one of the following: + * + * - `src + dst` + * - `src - dst` + * - `dst - src` + * - `min(src, dst)` + * - `max(src, dst)` + * + * The red, green, and blue components are always multiplied with the first, + * second, and third components of the SDL_BlendFactor, respectively. The + * fourth component is not used. + * + * The alpha component is always multiplied with the fourth component of the + * SDL_BlendFactor. The other components are not used in the alpha + * calculation. + * + * Support for these blend modes varies for each renderer. To check if a + * specific SDL_BlendMode is supported, create a renderer and pass it to + * either SDL_SetRenderDrawBlendMode or SDL_SetTextureBlendMode. They will + * return with an error if the blend mode is not supported. + * + * This list describes the support of custom blend modes for each renderer. + * All renderers support the four blend modes listed in the SDL_BlendMode + * enumeration. + * + * - **direct3d**: Supports all operations with all factors. However, some + * factors produce unexpected results with `SDL_BLENDOPERATION_MINIMUM` and + * `SDL_BLENDOPERATION_MAXIMUM`. + * - **direct3d11**: Same as Direct3D 9. + * - **opengl**: Supports the `SDL_BLENDOPERATION_ADD` operation with all + * factors. OpenGL versions 1.1, 1.2, and 1.3 do not work correctly here. + * - **opengles2**: Supports the `SDL_BLENDOPERATION_ADD`, + * `SDL_BLENDOPERATION_SUBTRACT`, `SDL_BLENDOPERATION_REV_SUBTRACT` + * operations with all factors. + * - **psp**: No custom blend mode support. + * - **software**: No custom blend mode support. + * + * Some renderers do not provide an alpha component for the default render + * target. The `SDL_BLENDFACTOR_DST_ALPHA` and + * `SDL_BLENDFACTOR_ONE_MINUS_DST_ALPHA` factors do not have an effect in this + * case. + * + * \param srcColorFactor the SDL_BlendFactor applied to the red, green, and + * blue components of the source pixels. + * \param dstColorFactor the SDL_BlendFactor applied to the red, green, and + * blue components of the destination pixels. + * \param colorOperation the SDL_BlendOperation used to combine the red, + * green, and blue components of the source and + * destination pixels. + * \param srcAlphaFactor the SDL_BlendFactor applied to the alpha component of + * the source pixels. + * \param dstAlphaFactor the SDL_BlendFactor applied to the alpha component of + * the destination pixels. + * \param alphaOperation the SDL_BlendOperation used to combine the alpha + * component of the source and destination pixels. + * \returns an SDL_BlendMode that represents the chosen factors and + * operations. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawBlendMode + * \sa SDL_GetRenderDrawBlendMode + * \sa SDL_SetTextureBlendMode + * \sa SDL_GetTextureBlendMode + */ +extern SDL_DECLSPEC SDL_BlendMode SDLCALL SDL_ComposeCustomBlendMode(SDL_BlendFactor srcColorFactor, + SDL_BlendFactor dstColorFactor, + SDL_BlendOperation colorOperation, + SDL_BlendFactor srcAlphaFactor, + SDL_BlendFactor dstAlphaFactor, + SDL_BlendOperation alphaOperation); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_blendmode_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_camera.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_camera.h new file mode 100644 index 0000000..5f3911f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_camera.h @@ -0,0 +1,519 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryCamera + * + * Video capture for the SDL library. + * + * This API lets apps read input from video sources, like webcams. Camera + * devices can be enumerated, queried, and opened. Once opened, it will + * provide SDL_Surface objects as new frames of video come in. These surfaces + * can be uploaded to an SDL_Texture or processed as pixels in memory. + * + * Several platforms will alert the user if an app tries to access a camera, + * and some will present a UI asking the user if your application should be + * allowed to obtain images at all, which they can deny. A successfully opened + * camera will not provide images until permission is granted. Applications, + * after opening a camera device, can see if they were granted access by + * either polling with the SDL_GetCameraPermissionState() function, or waiting + * for an SDL_EVENT_CAMERA_DEVICE_APPROVED or SDL_EVENT_CAMERA_DEVICE_DENIED + * event. Platforms that don't have any user approval process will report + * approval immediately. + * + * Note that SDL cameras only provide video as individual frames; they will + * not provide full-motion video encoded in a movie file format, although an + * app is free to encode the acquired frames into any format it likes. It also + * does not provide audio from the camera hardware through this API; not only + * do many webcams not have microphones at all, many people--from streamers to + * people on Zoom calls--will want to use a separate microphone regardless of + * the camera. In any case, recorded audio will be available through SDL's + * audio API no matter what hardware provides the microphone. + * + * ## Camera gotchas + * + * Consumer-level camera hardware tends to take a little while to warm up, + * once the device has been opened. Generally most camera apps have some sort + * of UI to take a picture (a button to snap a pic while a preview is showing, + * some sort of multi-second countdown for the user to pose, like a photo + * booth), which puts control in the users' hands, or they are intended to + * stay on for long times (Pokemon Go, etc). + * + * It's not uncommon that a newly-opened camera will provide a couple of + * completely black frames, maybe followed by some under-exposed images. If + * taking a single frame automatically, or recording video from a camera's + * input without the user initiating it from a preview, it could be wise to + * drop the first several frames (if not the first several _seconds_ worth of + * frames!) before using images from a camera. + */ + +#ifndef SDL_camera_h_ +#define SDL_camera_h_ + +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a camera device for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the device is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + */ +typedef Uint32 SDL_CameraID; + +/** + * The opaque structure used to identify an opened SDL camera. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Camera SDL_Camera; + +/** + * The details of an output format for a camera device. + * + * Cameras often support multiple formats; each one will be encapsulated in + * this struct. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetCameraSupportedFormats + * \sa SDL_GetCameraFormat + */ +typedef struct SDL_CameraSpec +{ + SDL_PixelFormat format; /**< Frame format */ + SDL_Colorspace colorspace; /**< Frame colorspace */ + int width; /**< Frame width */ + int height; /**< Frame height */ + int framerate_numerator; /**< Frame rate numerator ((num / denom) == FPS, (denom / num) == duration in seconds) */ + int framerate_denominator; /**< Frame rate demoninator ((num / denom) == FPS, (denom / num) == duration in seconds) */ +} SDL_CameraSpec; + +/** + * The position of camera in relation to system device. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetCameraPosition + */ +typedef enum SDL_CameraPosition +{ + SDL_CAMERA_POSITION_UNKNOWN, + SDL_CAMERA_POSITION_FRONT_FACING, + SDL_CAMERA_POSITION_BACK_FACING +} SDL_CameraPosition; + + +/** + * Use this function to get the number of built-in camera drivers. + * + * This function returns a hardcoded number. This never returns a negative + * value; if there are no drivers compiled into this build of SDL, this + * function returns zero. The presence of a driver in this list does not mean + * it will function, it just means SDL is capable of interacting with that + * interface. For example, a build of SDL might have v4l2 support, but if + * there's no kernel support available, SDL's v4l2 driver would fail if used. + * + * By default, SDL tries all drivers, in its preferred order, until one is + * found to be usable. + * + * \returns the number of built-in camera drivers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameraDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumCameraDrivers(void); + +/** + * Use this function to get the name of a built in camera driver. + * + * The list of camera drivers is given in the order that they are normally + * initialized by default; the drivers that seem more reasonable to choose + * first (as far as the SDL developers believe) are earlier in the list. + * + * The names of drivers are all simple, low-ASCII identifiers, like "v4l2", + * "coremedia" or "android". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of the camera driver; the value ranges from 0 to + * SDL_GetNumCameraDrivers() - 1. + * \returns the name of the camera driver at the requested index, or NULL if + * an invalid index was specified. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumCameraDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCameraDriver(int index); + +/** + * Get the name of the current camera driver. + * + * The names of drivers are all simple, low-ASCII identifiers, like "v4l2", + * "coremedia" or "android". These never have Unicode characters, and are not + * meant to be proper names. + * + * \returns the name of the current camera driver or NULL if no driver has + * been initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCurrentCameraDriver(void); + +/** + * Get a list of currently connected camera devices. + * + * \param count a pointer filled in with the number of cameras returned, may + * be NULL. + * \returns a 0 terminated array of camera instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC SDL_CameraID * SDLCALL SDL_GetCameras(int *count); + +/** + * Get the list of native formats/sizes a camera supports. + * + * This returns a list of all formats and frame sizes that a specific camera + * can offer. This is useful if your app can accept a variety of image formats + * and sizes and so want to find the optimal spec that doesn't require + * conversion. + * + * This function isn't strictly required; if you call SDL_OpenCamera with a + * NULL spec, SDL will choose a native format for you, and if you instead + * specify a desired format, it will transparently convert to the requested + * format on your behalf. + * + * If `count` is not NULL, it will be filled with the number of elements in + * the returned array. + * + * Note that it's legal for a camera to supply an empty list. This is what + * will happen on Emscripten builds, since that platform won't tell _anything_ + * about available cameras until you've opened one, and won't even tell if + * there _is_ a camera until the user has given you permission to check + * through a scary warning popup. + * + * \param instance_id the camera device instance ID. + * \param count a pointer filled in with the number of elements in the list, + * may be NULL. + * \returns a NULL terminated array of pointers to SDL_CameraSpec or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC SDL_CameraSpec ** SDLCALL SDL_GetCameraSupportedFormats(SDL_CameraID instance_id, int *count); + +/** + * Get the human-readable device name for a camera. + * + * \param instance_id the camera device instance ID. + * \returns a human-readable device name or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCameraName(SDL_CameraID instance_id); + +/** + * Get the position of the camera in relation to the system. + * + * Most platforms will report UNKNOWN, but mobile devices, like phones, can + * often make a distinction between cameras on the front of the device (that + * points towards the user, for taking "selfies") and cameras on the back (for + * filming in the direction the user is facing). + * + * \param instance_id the camera device instance ID. + * \returns the position of the camera on the system hardware. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + */ +extern SDL_DECLSPEC SDL_CameraPosition SDLCALL SDL_GetCameraPosition(SDL_CameraID instance_id); + +/** + * Open a video recording device (a "camera"). + * + * You can open the device with any reasonable spec, and if the hardware can't + * directly support it, it will convert data seamlessly to the requested + * format. This might incur overhead, including scaling of image data. + * + * If you would rather accept whatever format the device offers, you can pass + * a NULL spec here and it will choose one for you (and you can use + * SDL_Surface's conversion/scaling functions directly if necessary). + * + * You can call SDL_GetCameraFormat() to get the actual data format if passing + * a NULL spec here. You can see the exact specs a device can support without + * conversion with SDL_GetCameraSupportedFormats(). + * + * SDL will not attempt to emulate framerate; it will try to set the hardware + * to the rate closest to the requested speed, but it won't attempt to limit + * or duplicate frames artificially; call SDL_GetCameraFormat() to see the + * actual framerate of the opened the device, and check your timestamps if + * this is crucial to your app! + * + * Note that the camera is not usable until the user approves its use! On some + * platforms, the operating system will prompt the user to permit access to + * the camera, and they can choose Yes or No at that point. Until they do, the + * camera will not be usable. The app should either wait for an + * SDL_EVENT_CAMERA_DEVICE_APPROVED (or SDL_EVENT_CAMERA_DEVICE_DENIED) event, + * or poll SDL_GetCameraPermissionState() occasionally until it returns + * non-zero. On platforms that don't require explicit user approval (and + * perhaps in places where the user previously permitted access), the approval + * event might come immediately, but it might come seconds, minutes, or hours + * later! + * + * \param instance_id the camera device instance ID. + * \param spec the desired format for data the device will provide. Can be + * NULL. + * \returns an SDL_Camera object or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + * \sa SDL_GetCameraFormat + */ +extern SDL_DECLSPEC SDL_Camera * SDLCALL SDL_OpenCamera(SDL_CameraID instance_id, const SDL_CameraSpec *spec); + +/** + * Query if camera access has been approved by the user. + * + * Cameras will not function between when the device is opened by the app and + * when the user permits access to the hardware. On some platforms, this + * presents as a popup dialog where the user has to explicitly approve access; + * on others the approval might be implicit and not alert the user at all. + * + * This function can be used to check the status of that approval. It will + * return 0 if still waiting for user response, 1 if the camera is approved + * for use, and -1 if the user denied access. + * + * Instead of polling with this function, you can wait for a + * SDL_EVENT_CAMERA_DEVICE_APPROVED (or SDL_EVENT_CAMERA_DEVICE_DENIED) event + * in the standard SDL event loop, which is guaranteed to be sent once when + * permission to use the camera is decided. + * + * If a camera is declined, there's nothing to be done but call + * SDL_CloseCamera() to dispose of it. + * + * \param camera the opened camera device to query. + * \returns -1 if user denied access to the camera, 1 if user approved access, + * 0 if no decision has been made yet. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + * \sa SDL_CloseCamera + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetCameraPermissionState(SDL_Camera *camera); + +/** + * Get the instance ID of an opened camera. + * + * \param camera an SDL_Camera to query. + * \returns the instance ID of the specified camera on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC SDL_CameraID SDLCALL SDL_GetCameraID(SDL_Camera *camera); + +/** + * Get the properties associated with an opened camera. + * + * \param camera the SDL_Camera obtained from SDL_OpenCamera(). + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetCameraProperties(SDL_Camera *camera); + +/** + * Get the spec that a camera is using when generating images. + * + * Note that this might not be the native format of the hardware, as SDL might + * be converting to this format behind the scenes. + * + * If the system is waiting for the user to approve access to the camera, as + * some platforms require, this will return false, but this isn't necessarily + * a fatal error; you should either wait for an + * SDL_EVENT_CAMERA_DEVICE_APPROVED (or SDL_EVENT_CAMERA_DEVICE_DENIED) event, + * or poll SDL_GetCameraPermissionState() occasionally until it returns + * non-zero. + * + * \param camera opened camera device. + * \param spec the SDL_CameraSpec to be initialized by this function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetCameraFormat(SDL_Camera *camera, SDL_CameraSpec *spec); + +/** + * Acquire a frame. + * + * The frame is a memory pointer to the image data, whose size and format are + * given by the spec requested when opening the device. + * + * This is a non blocking API. If there is a frame available, a non-NULL + * surface is returned, and timestampNS will be filled with a non-zero value. + * + * Note that an error case can also return NULL, but a NULL by itself is + * normal and just signifies that a new frame is not yet available. Note that + * even if a camera device fails outright (a USB camera is unplugged while in + * use, etc), SDL will send an event separately to notify the app, but + * continue to provide blank frames at ongoing intervals until + * SDL_CloseCamera() is called, so real failure here is almost always an out + * of memory condition. + * + * After use, the frame should be released with SDL_ReleaseCameraFrame(). If + * you don't do this, the system may stop providing more video! + * + * Do not call SDL_DestroySurface() on the returned surface! It must be given + * back to the camera subsystem with SDL_ReleaseCameraFrame! + * + * If the system is waiting for the user to approve access to the camera, as + * some platforms require, this will return NULL (no frames available); you + * should either wait for an SDL_EVENT_CAMERA_DEVICE_APPROVED (or + * SDL_EVENT_CAMERA_DEVICE_DENIED) event, or poll + * SDL_GetCameraPermissionState() occasionally until it returns non-zero. + * + * \param camera opened camera device. + * \param timestampNS a pointer filled in with the frame's timestamp, or 0 on + * error. Can be NULL. + * \returns a new frame of video on success, NULL if none is currently + * available. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ReleaseCameraFrame + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_AcquireCameraFrame(SDL_Camera *camera, Uint64 *timestampNS); + +/** + * Release a frame of video acquired from a camera. + * + * Let the back-end re-use the internal buffer for camera. + * + * This function _must_ be called only on surface objects returned by + * SDL_AcquireCameraFrame(). This function should be called as quickly as + * possible after acquisition, as SDL keeps a small FIFO queue of surfaces for + * video frames; if surfaces aren't released in a timely manner, SDL may drop + * upcoming video frames from the camera. + * + * If the app needs to keep the surface for a significant time, they should + * make a copy of it and release the original. + * + * The app should not use the surface again after calling this function; + * assume the surface is freed and the pointer is invalid. + * + * \param camera opened camera device. + * \param frame the video frame surface to release. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireCameraFrame + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseCameraFrame(SDL_Camera *camera, SDL_Surface *frame); + +/** + * Use this function to shut down camera processing and close the camera + * device. + * + * \param camera opened camera device. + * + * \threadsafety It is safe to call this function from any thread, but no + * thread may reference `device` once this function is called. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseCamera(SDL_Camera *camera); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_camera_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_clipboard.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_clipboard.h new file mode 100644 index 0000000..3ca56a4 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_clipboard.h @@ -0,0 +1,331 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryClipboard + * + * SDL provides access to the system clipboard, both for reading information + * from other processes and publishing information of its own. + * + * This is not just text! SDL apps can access and publish data by mimetype. + * + * ## Basic use (text) + * + * Obtaining and publishing simple text to the system clipboard is as easy as + * calling SDL_GetClipboardText() and SDL_SetClipboardText(), respectively. + * These deal with C strings in UTF-8 encoding. Data transmission and encoding + * conversion is completely managed by SDL. + * + * ## Clipboard callbacks (data other than text) + * + * Things get more complicated when the clipboard contains something other + * than text. Not only can the system clipboard contain data of any type, in + * some cases it can contain the same data in different formats! For example, + * an image painting app might let the user copy a graphic to the clipboard, + * and offers it in .BMP, .JPG, or .PNG format for other apps to consume. + * + * Obtaining clipboard data ("pasting") like this is a matter of calling + * SDL_GetClipboardData() and telling it the mimetype of the data you want. + * But how does one know if that format is available? SDL_HasClipboardData() + * can report if a specific mimetype is offered, and + * SDL_GetClipboardMimeTypes() can provide the entire list of mimetypes + * available, so the app can decide what to do with the data and what formats + * it can support. + * + * Setting the clipboard ("copying") to arbitrary data is done with + * SDL_SetClipboardData. The app does not provide the data in this call, but + * rather the mimetypes it is willing to provide and a callback function. + * During the callback, the app will generate the data. This allows massive + * data sets to be provided to the clipboard, without any data being copied + * before it is explicitly requested. More specifically, it allows an app to + * offer data in multiple formats without providing a copy of all of them + * upfront. If the app has an image that it could provide in PNG or JPG + * format, it doesn't have to encode it to either of those unless and until + * something tries to paste it. + * + * ## Primary Selection + * + * The X11 and Wayland video targets have a concept of the "primary selection" + * in addition to the usual clipboard. This is generally highlighted (but not + * explicitly copied) text from various apps. SDL offers APIs for this through + * SDL_GetPrimarySelectionText() and SDL_SetPrimarySelectionText(). SDL offers + * these APIs on platforms without this concept, too, but only so far that it + * will keep a copy of a string that the app sets for later retrieval; the + * operating system will not ever attempt to change the string externally if + * it doesn't support a primary selection. + */ + +#ifndef SDL_clipboard_h_ +#define SDL_clipboard_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Function prototypes */ + +/** + * Put UTF-8 text into the clipboard. + * + * \param text the text to store in the clipboard. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetClipboardText + * \sa SDL_HasClipboardText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetClipboardText(const char *text); + +/** + * Get UTF-8 text from the clipboard. + * + * This function returns an empty string if there is not enough memory left + * for a copy of the clipboard's content. + * + * \returns the clipboard text on success or an empty string on failure; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasClipboardText + * \sa SDL_SetClipboardText + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetClipboardText(void); + +/** + * Query whether the clipboard exists and contains a non-empty text string. + * + * \returns true if the clipboard has text, or false if it does not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetClipboardText + * \sa SDL_SetClipboardText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasClipboardText(void); + +/** + * Put UTF-8 text into the primary selection. + * + * \param text the text to store in the primary selection. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPrimarySelectionText + * \sa SDL_HasPrimarySelectionText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPrimarySelectionText(const char *text); + +/** + * Get UTF-8 text from the primary selection. + * + * This function returns an empty string if there is not enough memory left + * for a copy of the primary selection's content. + * + * \returns the primary selection text on success or an empty string on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasPrimarySelectionText + * \sa SDL_SetPrimarySelectionText + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetPrimarySelectionText(void); + +/** + * Query whether the primary selection exists and contains a non-empty text + * string. + * + * \returns true if the primary selection has text, or false if it does not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPrimarySelectionText + * \sa SDL_SetPrimarySelectionText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasPrimarySelectionText(void); + +/** + * Callback function that will be called when data for the specified mime-type + * is requested by the OS. + * + * The callback function is called with NULL as the mime_type when the + * clipboard is cleared or new data is set. The clipboard is automatically + * cleared in SDL_Quit(). + * + * \param userdata a pointer to the provided user data. + * \param mime_type the requested mime-type. + * \param size a pointer filled in with the length of the returned data. + * \returns a pointer to the data for the provided mime-type. Returning NULL + * or setting the length to 0 will cause no data to be sent to the + * "receiver". It is up to the receiver to handle this. Essentially + * returning no data is more or less undefined behavior and may cause + * breakage in receiving applications. The returned data will not be + * freed, so it needs to be retained and dealt with internally. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +typedef const void *(SDLCALL *SDL_ClipboardDataCallback)(void *userdata, const char *mime_type, size_t *size); + +/** + * Callback function that will be called when the clipboard is cleared, or when new + * data is set. + * + * \param userdata a pointer to the provided user data. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +typedef void (SDLCALL *SDL_ClipboardCleanupCallback)(void *userdata); + +/** + * Offer clipboard data to the OS. + * + * Tell the operating system that the application is offering clipboard data + * for each of the provided mime-types. Once another application requests the + * data the callback function will be called, allowing it to generate and + * respond with the data for the requested mime-type. + * + * The size of text data does not include any terminator, and the text does + * not need to be null-terminated (e.g., you can directly copy a portion of a + * document). + * + * \param callback a function pointer to the function that provides the + * clipboard data. + * \param cleanup a function pointer to the function that cleans up the + * clipboard data. + * \param userdata an opaque pointer that will be forwarded to the callbacks. + * \param mime_types a list of mime-types that are being offered. SDL copies the given list. + * \param num_mime_types the number of mime-types in the mime_types list. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearClipboardData + * \sa SDL_GetClipboardData + * \sa SDL_HasClipboardData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetClipboardData(SDL_ClipboardDataCallback callback, SDL_ClipboardCleanupCallback cleanup, void *userdata, const char **mime_types, size_t num_mime_types); + +/** + * Clear the clipboard data. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearClipboardData(void); + +/** + * Get the data from the clipboard for a given mime type. + * + * The size of text data does not include the terminator, but the text is + * guaranteed to be null-terminated. + * + * \param mime_type the mime type to read from the clipboard. + * \param size a pointer filled in with the length of the returned data. + * \returns the retrieved data buffer or NULL on failure; call SDL_GetError() + * for more information. This should be freed with SDL_free() when it + * is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasClipboardData + * \sa SDL_SetClipboardData + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetClipboardData(const char *mime_type, size_t *size); + +/** + * Query whether there is data in the clipboard for the provided mime type. + * + * \param mime_type the mime type to check for data. + * \returns true if data exists in the clipboard for the provided mime type, + * false if it does not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + * \sa SDL_GetClipboardData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasClipboardData(const char *mime_type); + +/** + * Retrieve the list of mime types available in the clipboard. + * + * \param num_mime_types a pointer filled with the number of mime types, may + * be NULL. + * \returns a null-terminated array of strings with mime types, or NULL on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GetClipboardMimeTypes(size_t *num_mime_types); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_clipboard_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_close_code.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_close_code.h new file mode 100644 index 0000000..da1dea7 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_close_code.h @@ -0,0 +1,41 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This file reverses the effects of SDL_begin_code.h and should be included + * after you finish any function and structure declarations in your headers. + * + * SDL's headers use this; applications generally should not include this + * header directly. + */ + +#ifndef SDL_begin_code_h +#error SDL_close_code.h included without matching SDL_begin_code.h +#endif +#undef SDL_begin_code_h + +/* Reset structure packing at previous byte alignment */ +#if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__) +#ifdef __BORLANDC__ +#pragma nopackwarning +#endif +#pragma pack(pop) +#endif /* Compiler needs structure packing set */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_copying.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_copying.h new file mode 100644 index 0000000..747bd35 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_copying.h @@ -0,0 +1,22 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* Header file containing SDL's license. */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_cpuinfo.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_cpuinfo.h new file mode 100644 index 0000000..1745bd9 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_cpuinfo.h @@ -0,0 +1,353 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: CPUInfo */ + +/** + * # CategoryCPUInfo + * + * CPU feature detection for SDL. + * + * These functions are largely concerned with reporting if the system has + * access to various SIMD instruction sets, but also has other important info + * to share, such as system RAM size and number of logical CPU cores. + * + * CPU instruction set checks, like SDL_HasSSE() and SDL_HasNEON(), are + * available on all platforms, even if they don't make sense (an ARM processor + * will never have SSE and an x86 processor will never have NEON, for example, + * but these functions still exist and will simply return false in these + * cases). + */ + +#ifndef SDL_cpuinfo_h_ +#define SDL_cpuinfo_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A guess for the cacheline size used for padding. + * + * Most x86 processors have a 64 byte cache line. The 64-bit PowerPC + * processors have a 128 byte cache line. We use the larger value to be + * generally safe. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CACHELINE_SIZE 128 + +/** + * Get the number of logical CPU cores available. + * + * \returns the total number of logical CPU cores. On CPUs that include + * technologies such as hyperthreading, the number of logical cores + * may be more than the number of physical cores. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumLogicalCPUCores(void); + +/** + * Determine the L1 cache line size of the CPU. + * + * This is useful for determining multi-threaded structure padding or SIMD + * prefetch sizes. + * + * \returns the L1 cache line size of the CPU, in bytes. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetCPUCacheLineSize(void); + +/** + * Determine whether the CPU has AltiVec features. + * + * This always returns false on CPUs that aren't using PowerPC instruction + * sets. + * + * \returns true if the CPU has AltiVec features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAltiVec(void); + +/** + * Determine whether the CPU has MMX features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has MMX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasMMX(void); + +/** + * Determine whether the CPU has SSE features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE41 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE(void); + +/** + * Determine whether the CPU has SSE2 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE2 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE41 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE2(void); + +/** + * Determine whether the CPU has SSE3 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE3 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE41 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE3(void); + +/** + * Determine whether the CPU has SSE4.1 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE4.1 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE41(void); + +/** + * Determine whether the CPU has SSE4.2 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE4.2 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE41 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE42(void); + +/** + * Determine whether the CPU has AVX features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has AVX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasAVX2 + * \sa SDL_HasAVX512F + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAVX(void); + +/** + * Determine whether the CPU has AVX2 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has AVX2 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasAVX + * \sa SDL_HasAVX512F + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAVX2(void); + +/** + * Determine whether the CPU has AVX-512F (foundation) features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has AVX-512F features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasAVX + * \sa SDL_HasAVX2 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAVX512F(void); + +/** + * Determine whether the CPU has ARM SIMD (ARMv6) features. + * + * This is different from ARM NEON, which is a different instruction set. + * + * This always returns false on CPUs that aren't using ARM instruction sets. + * + * \returns true if the CPU has ARM SIMD features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasNEON + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasARMSIMD(void); + +/** + * Determine whether the CPU has NEON (ARM SIMD) features. + * + * This always returns false on CPUs that aren't using ARM instruction sets. + * + * \returns true if the CPU has ARM NEON features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasNEON(void); + +/** + * Determine whether the CPU has LSX (LOONGARCH SIMD) features. + * + * This always returns false on CPUs that aren't using LOONGARCH instruction + * sets. + * + * \returns true if the CPU has LOONGARCH LSX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasLSX(void); + +/** + * Determine whether the CPU has LASX (LOONGARCH SIMD) features. + * + * This always returns false on CPUs that aren't using LOONGARCH instruction + * sets. + * + * \returns true if the CPU has LOONGARCH LASX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasLASX(void); + +/** + * Get the amount of RAM configured in the system. + * + * \returns the amount of RAM configured in the system in MiB. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSystemRAM(void); + +/** + * Report the alignment this system needs for SIMD allocations. + * + * This will return the minimum number of bytes to which a pointer must be + * aligned to be compatible with SIMD instructions on the current machine. For + * example, if the machine supports SSE only, it will return 16, but if it + * supports AVX-512F, it'll return 64 (etc). This only reports values for + * instruction sets SDL knows about, so if your SDL build doesn't have + * SDL_HasAVX512F(), then it might return 16 for the SSE support it sees and + * not 64 for the AVX-512 instructions that exist but SDL doesn't know about. + * Plan accordingly. + * + * \returns the alignment in bytes needed for available, known SIMD + * instructions. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_aligned_alloc + * \sa SDL_aligned_free + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_GetSIMDAlignment(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_cpuinfo_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_dialog.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_dialog.h new file mode 100644 index 0000000..ddb9e24 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_dialog.h @@ -0,0 +1,341 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryDialog + * + * File dialog support. + * + * SDL offers file dialogs, to let users select files with native GUI + * interfaces. There are "open" dialogs, "save" dialogs, and folder selection + * dialogs. The app can control some details, such as filtering to specific + * files, or whether multiple files can be selected by the user. + * + * Note that launching a file dialog is a non-blocking operation; control + * returns to the app immediately, and a callback is called later (possibly in + * another thread) when the user makes a choice. + */ + +#ifndef SDL_dialog_h_ +#define SDL_dialog_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An entry for filters for file dialogs. + * + * `name` is a user-readable label for the filter (for example, "Office + * document"). + * + * `pattern` is a semicolon-separated list of file extensions (for example, + * "doc;docx"). File extensions may only contain alphanumeric characters, + * hyphens, underscores and periods. Alternatively, the whole string can be a + * single asterisk ("*"), which serves as an "All files" filter. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +typedef struct SDL_DialogFileFilter +{ + const char *name; + const char *pattern; +} SDL_DialogFileFilter; + +/** + * Callback used by file dialog functions. + * + * The specific usage is described in each function. + * + * If `filelist` is: + * + * - NULL, an error occurred. Details can be obtained with SDL_GetError(). + * - A pointer to NULL, the user either didn't choose any file or canceled the + * dialog. + * - A pointer to non-`NULL`, the user chose one or more files. The argument + * is a null-terminated array of pointers to UTF-8 encoded strings, each + * containing a path. + * + * The filelist argument should not be freed; it will automatically be freed + * when the callback returns. + * + * The filter argument is the index of the filter that was selected, or -1 if + * no filter was selected or if the platform or method doesn't support + * fetching the selected filter. + * + * In Android, the `filelist` are `content://` URIs. They should be opened + * using SDL_IOFromFile() with appropriate modes. This applies both to open + * and save file dialog. + * + * \param userdata an app-provided pointer, for the callback's use. + * \param filelist the file(s) chosen by the user. + * \param filter index of the selected filter. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_DialogFileFilter + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +typedef void (SDLCALL *SDL_DialogFileCallback)(void *userdata, const char * const *filelist, int filter); + +/** + * Displays a dialog that lets the user select a file on their filesystem. + * + * This is an asynchronous function; it will return immediately, and the + * result will be passed to the callback. + * + * The callback will be invoked with a null-terminated list of files the user + * chose. The list will be empty if the user canceled the dialog, and it will + * be NULL if an error occurred. + * + * Note that the callback may be called from a different thread than the one + * the function was invoked on. + * + * Depending on the platform, the user may be allowed to input paths that + * don't yet exist. + * + * On Linux, dialogs may require XDG Portals, which requires DBus, which + * requires an event-handling loop. Apps that do not use SDL to handle events + * should add a call to SDL_PumpEvents in their main loop. + * + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param window the window that the dialog should be modal for, may be NULL. + * Not all platforms support this option. + * \param filters a list of filters, may be NULL. Not all platforms support + * this option, and platforms that do support it may allow the + * user to ignore the filters. If non-NULL, it must remain + * valid at least until the callback is invoked. + * \param nfilters the number of filters. Ignored if filters is NULL. + * \param default_location the default folder or file to start the dialog at, + * may be NULL. Not all platforms support this option. + * \param allow_many if non-zero, the user will be allowed to select multiple + * entries. Not all platforms support this option. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_DialogFileFilter + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowOpenFileDialog(SDL_DialogFileCallback callback, void *userdata, SDL_Window *window, const SDL_DialogFileFilter *filters, int nfilters, const char *default_location, bool allow_many); + +/** + * Displays a dialog that lets the user choose a new or existing file on their + * filesystem. + * + * This is an asynchronous function; it will return immediately, and the + * result will be passed to the callback. + * + * The callback will be invoked with a null-terminated list of files the user + * chose. The list will be empty if the user canceled the dialog, and it will + * be NULL if an error occurred. + * + * Note that the callback may be called from a different thread than the one + * the function was invoked on. + * + * The chosen file may or may not already exist. + * + * On Linux, dialogs may require XDG Portals, which requires DBus, which + * requires an event-handling loop. Apps that do not use SDL to handle events + * should add a call to SDL_PumpEvents in their main loop. + * + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param window the window that the dialog should be modal for, may be NULL. + * Not all platforms support this option. + * \param filters a list of filters, may be NULL. Not all platforms support + * this option, and platforms that do support it may allow the + * user to ignore the filters. If non-NULL, it must remain + * valid at least until the callback is invoked. + * \param nfilters the number of filters. Ignored if filters is NULL. + * \param default_location the default folder or file to start the dialog at, + * may be NULL. Not all platforms support this option. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_DialogFileFilter + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowSaveFileDialog(SDL_DialogFileCallback callback, void *userdata, SDL_Window *window, const SDL_DialogFileFilter *filters, int nfilters, const char *default_location); + +/** + * Displays a dialog that lets the user select a folder on their filesystem. + * + * This is an asynchronous function; it will return immediately, and the + * result will be passed to the callback. + * + * The callback will be invoked with a null-terminated list of files the user + * chose. The list will be empty if the user canceled the dialog, and it will + * be NULL if an error occurred. + * + * Note that the callback may be called from a different thread than the one + * the function was invoked on. + * + * Depending on the platform, the user may be allowed to input paths that + * don't yet exist. + * + * On Linux, dialogs may require XDG Portals, which requires DBus, which + * requires an event-handling loop. Apps that do not use SDL to handle events + * should add a call to SDL_PumpEvents in their main loop. + * + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param window the window that the dialog should be modal for, may be NULL. + * Not all platforms support this option. + * \param default_location the default folder or file to start the dialog at, + * may be NULL. Not all platforms support this option. + * \param allow_many if non-zero, the user will be allowed to select multiple + * entries. Not all platforms support this option. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowFileDialogWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowOpenFolderDialog(SDL_DialogFileCallback callback, void *userdata, SDL_Window *window, const char *default_location, bool allow_many); + +/** + * Various types of file dialogs. + * + * This is used by SDL_ShowFileDialogWithProperties() to decide what kind of + * dialog to present to the user. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_ShowFileDialogWithProperties + */ +typedef enum SDL_FileDialogType +{ + SDL_FILEDIALOG_OPENFILE, + SDL_FILEDIALOG_SAVEFILE, + SDL_FILEDIALOG_OPENFOLDER +} SDL_FileDialogType; + +/** + * Create and launch a file dialog with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_FILE_DIALOG_FILTERS_POINTER`: a pointer to a list of + * SDL_DialogFileFilter structs, which will be used as filters for + * file-based selections. Ignored if the dialog is an "Open Folder" dialog. + * If non-NULL, the array of filters must remain valid at least until the + * callback is invoked. + * - `SDL_PROP_FILE_DIALOG_NFILTERS_NUMBER`: the number of filters in the + * array of filters, if it exists. + * - `SDL_PROP_FILE_DIALOG_WINDOW_POINTER`: the window that the dialog should + * be modal for. + * - `SDL_PROP_FILE_DIALOG_LOCATION_STRING`: the default folder or file to + * start the dialog at. + * - `SDL_PROP_FILE_DIALOG_MANY_BOOLEAN`: true to allow the user to select + * more than one entry. + * - `SDL_PROP_FILE_DIALOG_TITLE_STRING`: the title for the dialog. + * - `SDL_PROP_FILE_DIALOG_ACCEPT_STRING`: the label that the accept button + * should have. + * - `SDL_PROP_FILE_DIALOG_CANCEL_STRING`: the label that the cancel button + * should have. + * + * Note that each platform may or may not support any of the properties. + * + * \param type the type of file dialog. + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param props the properties to use. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FileDialogType + * \sa SDL_DialogFileCallback + * \sa SDL_DialogFileFilter + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowFileDialogWithProperties(SDL_FileDialogType type, SDL_DialogFileCallback callback, void *userdata, SDL_PropertiesID props); + +#define SDL_PROP_FILE_DIALOG_FILTERS_POINTER "SDL.filedialog.filters" +#define SDL_PROP_FILE_DIALOG_NFILTERS_NUMBER "SDL.filedialog.nfilters" +#define SDL_PROP_FILE_DIALOG_WINDOW_POINTER "SDL.filedialog.window" +#define SDL_PROP_FILE_DIALOG_LOCATION_STRING "SDL.filedialog.location" +#define SDL_PROP_FILE_DIALOG_MANY_BOOLEAN "SDL.filedialog.many" +#define SDL_PROP_FILE_DIALOG_TITLE_STRING "SDL.filedialog.title" +#define SDL_PROP_FILE_DIALOG_ACCEPT_STRING "SDL.filedialog.accept" +#define SDL_PROP_FILE_DIALOG_CANCEL_STRING "SDL.filedialog.cancel" + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_dialog_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_egl.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_egl.h new file mode 100644 index 0000000..65d4e96 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_egl.h @@ -0,0 +1,2355 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the EGL API headers. + */ + +#include + +#if !defined(_MSC_VER) && !defined(SDL_PLATFORM_ANDROID) && !defined(SDL_USE_BUILTIN_OPENGL_DEFINITIONS) + +#if defined(SDL_PLATFORM_VITA) +#include +#include +#include +#endif + +#include +#include + +#else /* _MSC_VER */ + +/* EGL headers for Visual Studio */ + +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ + + +#ifndef __eglplatform_h_ +#define __eglplatform_h_ + +/* +** Copyright 2007-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +*/ + +/* Platform-specific types and definitions for egl.h + * + * Adopters may modify khrplatform.h and this file to suit their platform. + * You are encouraged to submit all modifications to the Khronos group so that + * they can be included in future versions of this file. Please submit changes + * by filing an issue or pull request on the public Khronos EGL Registry, at + * https://www.github.com/KhronosGroup/EGL-Registry/ + */ + +/*#include */ + +/* Macros used in EGL function prototype declarations. + * + * EGL functions should be prototyped as: + * + * EGLAPI return-type EGLAPIENTRY eglFunction(arguments); + * typedef return-type (EXPAPIENTRYP PFNEGLFUNCTIONPROC) (arguments); + * + * KHRONOS_APICALL and KHRONOS_APIENTRY are defined in KHR/khrplatform.h + */ + +#ifndef EGLAPI +#define EGLAPI KHRONOS_APICALL +#endif + +#ifndef EGLAPIENTRY +#define EGLAPIENTRY KHRONOS_APIENTRY +#endif +#define EGLAPIENTRYP EGLAPIENTRY* + +/* The types NativeDisplayType, NativeWindowType, and NativePixmapType + * are aliases of window-system-dependent types, such as X Display * or + * Windows Device Context. They must be defined in platform-specific + * code below. The EGL-prefixed versions of Native*Type are the same + * types, renamed in EGL 1.3 so all types in the API start with "EGL". + * + * Khronos STRONGLY RECOMMENDS that you use the default definitions + * provided below, since these changes affect both binary and source + * portability of applications using EGL running on different EGL + * implementations. + */ + +#if defined(EGL_NO_PLATFORM_SPECIFIC_TYPES) + +typedef void *EGLNativeDisplayType; +typedef void *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(_WIN32) || defined(__VC32__) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) /* Win32 and WinCE */ +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN 1 +#endif +#include + +typedef HDC EGLNativeDisplayType; +typedef HBITMAP EGLNativePixmapType; +typedef HWND EGLNativeWindowType; + +#elif defined(SDL_PLATFORM_EMSCRIPTEN) + +typedef int EGLNativeDisplayType; +typedef int EGLNativePixmapType; +typedef int EGLNativeWindowType; + +#elif defined(__WINSCW__) || defined(__SYMBIAN32__) /* Symbian */ + +typedef int EGLNativeDisplayType; +typedef void *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(WL_EGL_PLATFORM) + +typedef struct wl_display *EGLNativeDisplayType; +typedef struct wl_egl_pixmap *EGLNativePixmapType; +typedef struct wl_egl_window *EGLNativeWindowType; + +#elif defined(__GBM__) + +typedef struct gbm_device *EGLNativeDisplayType; +typedef struct gbm_bo *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(__ANDROID__) || defined(ANDROID) + +struct ANativeWindow; +struct egl_native_pixmap_t; + +typedef void* EGLNativeDisplayType; +typedef struct egl_native_pixmap_t* EGLNativePixmapType; +typedef struct ANativeWindow* EGLNativeWindowType; + +#elif defined(USE_OZONE) + +typedef intptr_t EGLNativeDisplayType; +typedef intptr_t EGLNativePixmapType; +typedef intptr_t EGLNativeWindowType; + +#elif defined(USE_X11) + +/* X11 (tentative) */ +#include +#include + +typedef Display *EGLNativeDisplayType; +typedef Pixmap EGLNativePixmapType; +typedef Window EGLNativeWindowType; + +#elif defined(__unix__) + +typedef void *EGLNativeDisplayType; +typedef khronos_uintptr_t EGLNativePixmapType; +typedef khronos_uintptr_t EGLNativeWindowType; + +#elif defined(__APPLE__) + +typedef int EGLNativeDisplayType; +typedef void *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(__HAIKU__) + +#include + +typedef void *EGLNativeDisplayType; +typedef khronos_uintptr_t EGLNativePixmapType; +typedef khronos_uintptr_t EGLNativeWindowType; + +#elif defined(__Fuchsia__) + +typedef void *EGLNativeDisplayType; +typedef khronos_uintptr_t EGLNativePixmapType; +typedef khronos_uintptr_t EGLNativeWindowType; + +#else +#error "Platform not recognized" +#endif + +/* EGL 1.2 types, renamed for consistency in EGL 1.3 */ +typedef EGLNativeDisplayType NativeDisplayType; +typedef EGLNativePixmapType NativePixmapType; +typedef EGLNativeWindowType NativeWindowType; + + +/* Define EGLint. This must be a signed integral type large enough to contain + * all legal attribute names and values passed into and out of EGL, whether + * their type is boolean, bitmask, enumerant (symbolic constant), integer, + * handle, or other. While in general a 32-bit integer will suffice, if + * handles are 64 bit types, then EGLint should be defined as a signed 64-bit + * integer type. + */ +typedef khronos_int32_t EGLint; + + +/* C++ / C typecast macros for special EGL handle values */ +#if defined(__cplusplus) +#define EGL_CAST(type, value) (static_cast(value)) +#else +#define EGL_CAST(type, value) ((type) (value)) +#endif + +#endif /* __eglplatform_h */ + + +#ifndef __egl_h_ +#define __egl_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +** +** This header is generated from the Khronos EGL XML API Registry. +** The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** http://www.khronos.org/registry/egl +** +** Khronos $Git commit SHA1: 6fb1daea15 $ on $Git commit date: 2022-05-25 09:41:13 -0600 $ +*/ + +/*#include */ + +#ifndef EGL_EGL_PROTOTYPES +#define EGL_EGL_PROTOTYPES 1 +#endif + +/* Generated on date 20220525 */ + +/* Generated C header for: + * API: egl + * Versions considered: .* + * Versions emitted: .* + * Default extensions included: None + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef EGL_VERSION_1_0 +#define EGL_VERSION_1_0 1 +typedef unsigned int EGLBoolean; +typedef void *EGLDisplay; +/*#include */ +/*#include */ +typedef void *EGLConfig; +typedef void *EGLSurface; +typedef void *EGLContext; +typedef void (*__eglMustCastToProperFunctionPointerType)(void); +#define EGL_ALPHA_SIZE 0x3021 +#define EGL_BAD_ACCESS 0x3002 +#define EGL_BAD_ALLOC 0x3003 +#define EGL_BAD_ATTRIBUTE 0x3004 +#define EGL_BAD_CONFIG 0x3005 +#define EGL_BAD_CONTEXT 0x3006 +#define EGL_BAD_CURRENT_SURFACE 0x3007 +#define EGL_BAD_DISPLAY 0x3008 +#define EGL_BAD_MATCH 0x3009 +#define EGL_BAD_NATIVE_PIXMAP 0x300A +#define EGL_BAD_NATIVE_WINDOW 0x300B +#define EGL_BAD_PARAMETER 0x300C +#define EGL_BAD_SURFACE 0x300D +#define EGL_BLUE_SIZE 0x3022 +#define EGL_BUFFER_SIZE 0x3020 +#define EGL_CONFIG_CAVEAT 0x3027 +#define EGL_CONFIG_ID 0x3028 +#define EGL_CORE_NATIVE_ENGINE 0x305B +#define EGL_DEPTH_SIZE 0x3025 +#define EGL_DONT_CARE EGL_CAST(EGLint,-1) +#define EGL_DRAW 0x3059 +#define EGL_EXTENSIONS 0x3055 +#define EGL_FALSE 0 +#define EGL_GREEN_SIZE 0x3023 +#define EGL_HEIGHT 0x3056 +#define EGL_LARGEST_PBUFFER 0x3058 +#define EGL_LEVEL 0x3029 +#define EGL_MAX_PBUFFER_HEIGHT 0x302A +#define EGL_MAX_PBUFFER_PIXELS 0x302B +#define EGL_MAX_PBUFFER_WIDTH 0x302C +#define EGL_NATIVE_RENDERABLE 0x302D +#define EGL_NATIVE_VISUAL_ID 0x302E +#define EGL_NATIVE_VISUAL_TYPE 0x302F +#define EGL_NONE 0x3038 +#define EGL_NON_CONFORMANT_CONFIG 0x3051 +#define EGL_NOT_INITIALIZED 0x3001 +#define EGL_NO_CONTEXT EGL_CAST(EGLContext,0) +#define EGL_NO_DISPLAY EGL_CAST(EGLDisplay,0) +#define EGL_NO_SURFACE EGL_CAST(EGLSurface,0) +#define EGL_PBUFFER_BIT 0x0001 +#define EGL_PIXMAP_BIT 0x0002 +#define EGL_READ 0x305A +#define EGL_RED_SIZE 0x3024 +#define EGL_SAMPLES 0x3031 +#define EGL_SAMPLE_BUFFERS 0x3032 +#define EGL_SLOW_CONFIG 0x3050 +#define EGL_STENCIL_SIZE 0x3026 +#define EGL_SUCCESS 0x3000 +#define EGL_SURFACE_TYPE 0x3033 +#define EGL_TRANSPARENT_BLUE_VALUE 0x3035 +#define EGL_TRANSPARENT_GREEN_VALUE 0x3036 +#define EGL_TRANSPARENT_RED_VALUE 0x3037 +#define EGL_TRANSPARENT_RGB 0x3052 +#define EGL_TRANSPARENT_TYPE 0x3034 +#define EGL_TRUE 1 +#define EGL_VENDOR 0x3053 +#define EGL_VERSION 0x3054 +#define EGL_WIDTH 0x3057 +#define EGL_WINDOW_BIT 0x0004 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCHOOSECONFIGPROC) (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOPYBUFFERSPROC) (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target); +typedef EGLContext (EGLAPIENTRYP PFNEGLCREATECONTEXTPROC) (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPBUFFERSURFACEPROC) (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPIXMAPSURFACEPROC) (EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEWINDOWSURFACEPROC) (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSURFACEPROC) (EGLDisplay dpy, EGLSurface surface); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCONFIGATTRIBPROC) (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCONFIGSPROC) (EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config); +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETCURRENTDISPLAYPROC) (void); +typedef EGLSurface (EGLAPIENTRYP PFNEGLGETCURRENTSURFACEPROC) (EGLint readdraw); +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETDISPLAYPROC) (EGLNativeDisplayType display_id); +typedef EGLint (EGLAPIENTRYP PFNEGLGETERRORPROC) (void); +typedef __eglMustCastToProperFunctionPointerType (EGLAPIENTRYP PFNEGLGETPROCADDRESSPROC) (const char *procname); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLINITIALIZEPROC) (EGLDisplay dpy, EGLint *major, EGLint *minor); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLMAKECURRENTPROC) (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYSTRINGPROC) (EGLDisplay dpy, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSPROC) (EGLDisplay dpy, EGLSurface surface); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLTERMINATEPROC) (EGLDisplay dpy); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITGLPROC) (void); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITNATIVEPROC) (EGLint engine); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config); +EGLAPI EGLBoolean EGLAPIENTRY eglCopyBuffers (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target); +EGLAPI EGLContext EGLAPIENTRY eglCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurface (EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface (EGLDisplay dpy, EGLSurface surface); +EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigAttrib (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value); +EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigs (EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config); +EGLAPI EGLDisplay EGLAPIENTRY eglGetCurrentDisplay (void); +EGLAPI EGLSurface EGLAPIENTRY eglGetCurrentSurface (EGLint readdraw); +EGLAPI EGLDisplay EGLAPIENTRY eglGetDisplay (EGLNativeDisplayType display_id); +EGLAPI EGLint EGLAPIENTRY eglGetError (void); +EGLAPI __eglMustCastToProperFunctionPointerType EGLAPIENTRY eglGetProcAddress (const char *procname); +EGLAPI EGLBoolean EGLAPIENTRY eglInitialize (EGLDisplay dpy, EGLint *major, EGLint *minor); +EGLAPI EGLBoolean EGLAPIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value); +EGLAPI const char *EGLAPIENTRY eglQueryString (EGLDisplay dpy, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value); +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffers (EGLDisplay dpy, EGLSurface surface); +EGLAPI EGLBoolean EGLAPIENTRY eglTerminate (EGLDisplay dpy); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitGL (void); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitNative (EGLint engine); +#endif +#endif /* EGL_VERSION_1_0 */ + +#ifndef EGL_VERSION_1_1 +#define EGL_VERSION_1_1 1 +#define EGL_BACK_BUFFER 0x3084 +#define EGL_BIND_TO_TEXTURE_RGB 0x3039 +#define EGL_BIND_TO_TEXTURE_RGBA 0x303A +#define EGL_CONTEXT_LOST 0x300E +#define EGL_MIN_SWAP_INTERVAL 0x303B +#define EGL_MAX_SWAP_INTERVAL 0x303C +#define EGL_MIPMAP_TEXTURE 0x3082 +#define EGL_MIPMAP_LEVEL 0x3083 +#define EGL_NO_TEXTURE 0x305C +#define EGL_TEXTURE_2D 0x305F +#define EGL_TEXTURE_FORMAT 0x3080 +#define EGL_TEXTURE_RGB 0x305D +#define EGL_TEXTURE_RGBA 0x305E +#define EGL_TEXTURE_TARGET 0x3081 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDTEXIMAGEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLRELEASETEXIMAGEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSURFACEATTRIBPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPINTERVALPROC) (EGLDisplay dpy, EGLint interval); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +EGLAPI EGLBoolean EGLAPIENTRY eglReleaseTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +EGLAPI EGLBoolean EGLAPIENTRY eglSurfaceAttrib (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value); +EGLAPI EGLBoolean EGLAPIENTRY eglSwapInterval (EGLDisplay dpy, EGLint interval); +#endif +#endif /* EGL_VERSION_1_1 */ + +#ifndef EGL_VERSION_1_2 +#define EGL_VERSION_1_2 1 +typedef unsigned int EGLenum; +typedef void *EGLClientBuffer; +#define EGL_ALPHA_FORMAT 0x3088 +#define EGL_ALPHA_FORMAT_NONPRE 0x308B +#define EGL_ALPHA_FORMAT_PRE 0x308C +#define EGL_ALPHA_MASK_SIZE 0x303E +#define EGL_BUFFER_PRESERVED 0x3094 +#define EGL_BUFFER_DESTROYED 0x3095 +#define EGL_CLIENT_APIS 0x308D +#define EGL_COLORSPACE 0x3087 +#define EGL_COLORSPACE_sRGB 0x3089 +#define EGL_COLORSPACE_LINEAR 0x308A +#define EGL_COLOR_BUFFER_TYPE 0x303F +#define EGL_CONTEXT_CLIENT_TYPE 0x3097 +#define EGL_DISPLAY_SCALING 10000 +#define EGL_HORIZONTAL_RESOLUTION 0x3090 +#define EGL_LUMINANCE_BUFFER 0x308F +#define EGL_LUMINANCE_SIZE 0x303D +#define EGL_OPENGL_ES_BIT 0x0001 +#define EGL_OPENVG_BIT 0x0002 +#define EGL_OPENGL_ES_API 0x30A0 +#define EGL_OPENVG_API 0x30A1 +#define EGL_OPENVG_IMAGE 0x3096 +#define EGL_PIXEL_ASPECT_RATIO 0x3092 +#define EGL_RENDERABLE_TYPE 0x3040 +#define EGL_RENDER_BUFFER 0x3086 +#define EGL_RGB_BUFFER 0x308E +#define EGL_SINGLE_BUFFER 0x3085 +#define EGL_SWAP_BEHAVIOR 0x3093 +#define EGL_UNKNOWN EGL_CAST(EGLint,-1) +#define EGL_VERTICAL_RESOLUTION 0x3091 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDAPIPROC) (EGLenum api); +typedef EGLenum (EGLAPIENTRYP PFNEGLQUERYAPIPROC) (void); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPBUFFERFROMCLIENTBUFFERPROC) (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLRELEASETHREADPROC) (void); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITCLIENTPROC) (void); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglBindAPI (EGLenum api); +EGLAPI EGLenum EGLAPIENTRY eglQueryAPI (void); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferFromClientBuffer (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglReleaseThread (void); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitClient (void); +#endif +#endif /* EGL_VERSION_1_2 */ + +#ifndef EGL_VERSION_1_3 +#define EGL_VERSION_1_3 1 +#define EGL_CONFORMANT 0x3042 +#define EGL_CONTEXT_CLIENT_VERSION 0x3098 +#define EGL_MATCH_NATIVE_PIXMAP 0x3041 +#define EGL_OPENGL_ES2_BIT 0x0004 +#define EGL_VG_ALPHA_FORMAT 0x3088 +#define EGL_VG_ALPHA_FORMAT_NONPRE 0x308B +#define EGL_VG_ALPHA_FORMAT_PRE 0x308C +#define EGL_VG_ALPHA_FORMAT_PRE_BIT 0x0040 +#define EGL_VG_COLORSPACE 0x3087 +#define EGL_VG_COLORSPACE_sRGB 0x3089 +#define EGL_VG_COLORSPACE_LINEAR 0x308A +#define EGL_VG_COLORSPACE_LINEAR_BIT 0x0020 +#endif /* EGL_VERSION_1_3 */ + +#ifndef EGL_VERSION_1_4 +#define EGL_VERSION_1_4 1 +#define EGL_DEFAULT_DISPLAY EGL_CAST(EGLNativeDisplayType,0) +#define EGL_MULTISAMPLE_RESOLVE_BOX_BIT 0x0200 +#define EGL_MULTISAMPLE_RESOLVE 0x3099 +#define EGL_MULTISAMPLE_RESOLVE_DEFAULT 0x309A +#define EGL_MULTISAMPLE_RESOLVE_BOX 0x309B +#define EGL_OPENGL_API 0x30A2 +#define EGL_OPENGL_BIT 0x0008 +#define EGL_SWAP_BEHAVIOR_PRESERVED_BIT 0x0400 +typedef EGLContext (EGLAPIENTRYP PFNEGLGETCURRENTCONTEXTPROC) (void); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLContext EGLAPIENTRY eglGetCurrentContext (void); +#endif +#endif /* EGL_VERSION_1_4 */ + +#ifndef EGL_VERSION_1_5 +#define EGL_VERSION_1_5 1 +typedef void *EGLSync; +typedef intptr_t EGLAttrib; +typedef khronos_utime_nanoseconds_t EGLTime; +typedef void *EGLImage; +#define EGL_CONTEXT_MAJOR_VERSION 0x3098 +#define EGL_CONTEXT_MINOR_VERSION 0x30FB +#define EGL_CONTEXT_OPENGL_PROFILE_MASK 0x30FD +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY 0x31BD +#define EGL_NO_RESET_NOTIFICATION 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET 0x31BF +#define EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT 0x00000001 +#define EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT 0x00000002 +#define EGL_CONTEXT_OPENGL_DEBUG 0x31B0 +#define EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE 0x31B1 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS 0x31B2 +#define EGL_OPENGL_ES3_BIT 0x00000040 +#define EGL_CL_EVENT_HANDLE 0x309C +#define EGL_SYNC_CL_EVENT 0x30FE +#define EGL_SYNC_CL_EVENT_COMPLETE 0x30FF +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE 0x30F0 +#define EGL_SYNC_TYPE 0x30F7 +#define EGL_SYNC_STATUS 0x30F1 +#define EGL_SYNC_CONDITION 0x30F8 +#define EGL_SIGNALED 0x30F2 +#define EGL_UNSIGNALED 0x30F3 +#define EGL_SYNC_FLUSH_COMMANDS_BIT 0x0001 +#define EGL_FOREVER 0xFFFFFFFFFFFFFFFFull +#define EGL_TIMEOUT_EXPIRED 0x30F5 +#define EGL_CONDITION_SATISFIED 0x30F6 +#define EGL_NO_SYNC EGL_CAST(EGLSync,0) +#define EGL_SYNC_FENCE 0x30F9 +#define EGL_GL_COLORSPACE 0x309D +#define EGL_GL_COLORSPACE_SRGB 0x3089 +#define EGL_GL_COLORSPACE_LINEAR 0x308A +#define EGL_GL_RENDERBUFFER 0x30B9 +#define EGL_GL_TEXTURE_2D 0x30B1 +#define EGL_GL_TEXTURE_LEVEL 0x30BC +#define EGL_GL_TEXTURE_3D 0x30B2 +#define EGL_GL_TEXTURE_ZOFFSET 0x30BD +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x30B3 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x30B4 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x30B5 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x30B6 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x30B7 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x30B8 +#define EGL_IMAGE_PRESERVED 0x30D2 +#define EGL_NO_IMAGE EGL_CAST(EGLImage,0) +typedef EGLSync (EGLAPIENTRYP PFNEGLCREATESYNCPROC) (EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCPROC) (EGLDisplay dpy, EGLSync sync); +typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCPROC) (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBPROC) (EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value); +typedef EGLImage (EGLAPIENTRYP PFNEGLCREATEIMAGEPROC) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYIMAGEPROC) (EGLDisplay dpy, EGLImage image); +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETPLATFORMDISPLAYPROC) (EGLenum platform, void *native_display, const EGLAttrib *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMWINDOWSURFACEPROC) (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLAttrib *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMPIXMAPSURFACEPROC) (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITSYNCPROC) (EGLDisplay dpy, EGLSync sync, EGLint flags); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLSync EGLAPIENTRY eglCreateSync (EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySync (EGLDisplay dpy, EGLSync sync); +EGLAPI EGLint EGLAPIENTRY eglClientWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout); +EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttrib (EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value); +EGLAPI EGLImage EGLAPIENTRY eglCreateImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImage (EGLDisplay dpy, EGLImage image); +EGLAPI EGLDisplay EGLAPIENTRY eglGetPlatformDisplay (EGLenum platform, void *native_display, const EGLAttrib *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformWindowSurface (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLAttrib *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformPixmapSurface (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags); +#endif +#endif /* EGL_VERSION_1_5 */ + +#ifdef __cplusplus +} +#endif + +#endif /* __egl_h_ */ + + +#ifndef __eglext_h_ +#define __eglext_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +** +** This header is generated from the Khronos EGL XML API Registry. +** The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** http://www.khronos.org/registry/egl +** +** Khronos $Git commit SHA1: 6fb1daea15 $ on $Git commit date: 2022-05-25 09:41:13 -0600 $ +*/ + +/*#include */ + +#define EGL_EGLEXT_VERSION 20220525 + +/* Generated C header for: + * API: egl + * Versions considered: .* + * Versions emitted: _nomatch_^ + * Default extensions included: egl + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef EGL_KHR_cl_event +#define EGL_KHR_cl_event 1 +#define EGL_CL_EVENT_HANDLE_KHR 0x309C +#define EGL_SYNC_CL_EVENT_KHR 0x30FE +#define EGL_SYNC_CL_EVENT_COMPLETE_KHR 0x30FF +#endif /* EGL_KHR_cl_event */ + +#ifndef EGL_KHR_cl_event2 +#define EGL_KHR_cl_event2 1 +typedef void *EGLSyncKHR; +typedef intptr_t EGLAttribKHR; +typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNC64KHRPROC) (EGLDisplay dpy, EGLenum type, const EGLAttribKHR *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSync64KHR (EGLDisplay dpy, EGLenum type, const EGLAttribKHR *attrib_list); +#endif +#endif /* EGL_KHR_cl_event2 */ + +#ifndef EGL_KHR_client_get_all_proc_addresses +#define EGL_KHR_client_get_all_proc_addresses 1 +#endif /* EGL_KHR_client_get_all_proc_addresses */ + +#ifndef EGL_KHR_config_attribs +#define EGL_KHR_config_attribs 1 +#define EGL_CONFORMANT_KHR 0x3042 +#define EGL_VG_COLORSPACE_LINEAR_BIT_KHR 0x0020 +#define EGL_VG_ALPHA_FORMAT_PRE_BIT_KHR 0x0040 +#endif /* EGL_KHR_config_attribs */ + +#ifndef EGL_KHR_context_flush_control +#define EGL_KHR_context_flush_control 1 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_NONE_KHR 0 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_KHR 0x2097 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_KHR 0x2098 +#endif /* EGL_KHR_context_flush_control */ + +#ifndef EGL_KHR_create_context +#define EGL_KHR_create_context 1 +#define EGL_CONTEXT_MAJOR_VERSION_KHR 0x3098 +#define EGL_CONTEXT_MINOR_VERSION_KHR 0x30FB +#define EGL_CONTEXT_FLAGS_KHR 0x30FC +#define EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR 0x30FD +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_KHR 0x31BD +#define EGL_NO_RESET_NOTIFICATION_KHR 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET_KHR 0x31BF +#define EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR 0x00000001 +#define EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR 0x00000002 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR 0x00000004 +#define EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR 0x00000001 +#define EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT_KHR 0x00000002 +#define EGL_OPENGL_ES3_BIT_KHR 0x00000040 +#endif /* EGL_KHR_create_context */ + +#ifndef EGL_KHR_create_context_no_error +#define EGL_KHR_create_context_no_error 1 +#define EGL_CONTEXT_OPENGL_NO_ERROR_KHR 0x31B3 +#endif /* EGL_KHR_create_context_no_error */ + +#ifndef EGL_KHR_debug +#define EGL_KHR_debug 1 +typedef void *EGLLabelKHR; +typedef void *EGLObjectKHR; +typedef void (EGLAPIENTRY *EGLDEBUGPROCKHR)(EGLenum error,const char *command,EGLint messageType,EGLLabelKHR threadLabel,EGLLabelKHR objectLabel,const char* message); +#define EGL_OBJECT_THREAD_KHR 0x33B0 +#define EGL_OBJECT_DISPLAY_KHR 0x33B1 +#define EGL_OBJECT_CONTEXT_KHR 0x33B2 +#define EGL_OBJECT_SURFACE_KHR 0x33B3 +#define EGL_OBJECT_IMAGE_KHR 0x33B4 +#define EGL_OBJECT_SYNC_KHR 0x33B5 +#define EGL_OBJECT_STREAM_KHR 0x33B6 +#define EGL_DEBUG_MSG_CRITICAL_KHR 0x33B9 +#define EGL_DEBUG_MSG_ERROR_KHR 0x33BA +#define EGL_DEBUG_MSG_WARN_KHR 0x33BB +#define EGL_DEBUG_MSG_INFO_KHR 0x33BC +#define EGL_DEBUG_CALLBACK_KHR 0x33B8 +typedef EGLint (EGLAPIENTRYP PFNEGLDEBUGMESSAGECONTROLKHRPROC) (EGLDEBUGPROCKHR callback, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEBUGKHRPROC) (EGLint attribute, EGLAttrib *value); +typedef EGLint (EGLAPIENTRYP PFNEGLLABELOBJECTKHRPROC) (EGLDisplay display, EGLenum objectType, EGLObjectKHR object, EGLLabelKHR label); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLint EGLAPIENTRY eglDebugMessageControlKHR (EGLDEBUGPROCKHR callback, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDebugKHR (EGLint attribute, EGLAttrib *value); +EGLAPI EGLint EGLAPIENTRY eglLabelObjectKHR (EGLDisplay display, EGLenum objectType, EGLObjectKHR object, EGLLabelKHR label); +#endif +#endif /* EGL_KHR_debug */ + +#ifndef EGL_KHR_display_reference +#define EGL_KHR_display_reference 1 +#define EGL_TRACK_REFERENCES_KHR 0x3352 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBKHRPROC) (EGLDisplay dpy, EGLint name, EGLAttrib *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribKHR (EGLDisplay dpy, EGLint name, EGLAttrib *value); +#endif +#endif /* EGL_KHR_display_reference */ + +#ifndef EGL_KHR_fence_sync +#define EGL_KHR_fence_sync 1 +typedef khronos_utime_nanoseconds_t EGLTimeKHR; +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE_KHR 0x30F0 +#define EGL_SYNC_CONDITION_KHR 0x30F8 +#define EGL_SYNC_FENCE_KHR 0x30F9 +typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNCKHRPROC) (EGLDisplay dpy, EGLenum type, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync); +typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSyncKHR (EGLDisplay dpy, EGLenum type, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR (EGLDisplay dpy, EGLSyncKHR sync); +EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout); +EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_fence_sync */ + +#ifndef EGL_KHR_get_all_proc_addresses +#define EGL_KHR_get_all_proc_addresses 1 +#endif /* EGL_KHR_get_all_proc_addresses */ + +#ifndef EGL_KHR_gl_colorspace +#define EGL_KHR_gl_colorspace 1 +#define EGL_GL_COLORSPACE_KHR 0x309D +#define EGL_GL_COLORSPACE_SRGB_KHR 0x3089 +#define EGL_GL_COLORSPACE_LINEAR_KHR 0x308A +#endif /* EGL_KHR_gl_colorspace */ + +#ifndef EGL_KHR_gl_renderbuffer_image +#define EGL_KHR_gl_renderbuffer_image 1 +#define EGL_GL_RENDERBUFFER_KHR 0x30B9 +#endif /* EGL_KHR_gl_renderbuffer_image */ + +#ifndef EGL_KHR_gl_texture_2D_image +#define EGL_KHR_gl_texture_2D_image 1 +#define EGL_GL_TEXTURE_2D_KHR 0x30B1 +#define EGL_GL_TEXTURE_LEVEL_KHR 0x30BC +#endif /* EGL_KHR_gl_texture_2D_image */ + +#ifndef EGL_KHR_gl_texture_3D_image +#define EGL_KHR_gl_texture_3D_image 1 +#define EGL_GL_TEXTURE_3D_KHR 0x30B2 +#define EGL_GL_TEXTURE_ZOFFSET_KHR 0x30BD +#endif /* EGL_KHR_gl_texture_3D_image */ + +#ifndef EGL_KHR_gl_texture_cubemap_image +#define EGL_KHR_gl_texture_cubemap_image 1 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR 0x30B3 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X_KHR 0x30B4 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y_KHR 0x30B5 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_KHR 0x30B6 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z_KHR 0x30B7 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_KHR 0x30B8 +#endif /* EGL_KHR_gl_texture_cubemap_image */ + +#ifndef EGL_KHR_image +#define EGL_KHR_image 1 +typedef void *EGLImageKHR; +#define EGL_NATIVE_PIXMAP_KHR 0x30B0 +#define EGL_NO_IMAGE_KHR EGL_CAST(EGLImageKHR,0) +typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEIMAGEKHRPROC) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYIMAGEKHRPROC) (EGLDisplay dpy, EGLImageKHR image); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImageKHR (EGLDisplay dpy, EGLImageKHR image); +#endif +#endif /* EGL_KHR_image */ + +#ifndef EGL_KHR_image_base +#define EGL_KHR_image_base 1 +#define EGL_IMAGE_PRESERVED_KHR 0x30D2 +#endif /* EGL_KHR_image_base */ + +#ifndef EGL_KHR_image_pixmap +#define EGL_KHR_image_pixmap 1 +#endif /* EGL_KHR_image_pixmap */ + +#ifndef EGL_KHR_lock_surface +#define EGL_KHR_lock_surface 1 +#define EGL_READ_SURFACE_BIT_KHR 0x0001 +#define EGL_WRITE_SURFACE_BIT_KHR 0x0002 +#define EGL_LOCK_SURFACE_BIT_KHR 0x0080 +#define EGL_OPTIMAL_FORMAT_BIT_KHR 0x0100 +#define EGL_MATCH_FORMAT_KHR 0x3043 +#define EGL_FORMAT_RGB_565_EXACT_KHR 0x30C0 +#define EGL_FORMAT_RGB_565_KHR 0x30C1 +#define EGL_FORMAT_RGBA_8888_EXACT_KHR 0x30C2 +#define EGL_FORMAT_RGBA_8888_KHR 0x30C3 +#define EGL_MAP_PRESERVE_PIXELS_KHR 0x30C4 +#define EGL_LOCK_USAGE_HINT_KHR 0x30C5 +#define EGL_BITMAP_POINTER_KHR 0x30C6 +#define EGL_BITMAP_PITCH_KHR 0x30C7 +#define EGL_BITMAP_ORIGIN_KHR 0x30C8 +#define EGL_BITMAP_PIXEL_RED_OFFSET_KHR 0x30C9 +#define EGL_BITMAP_PIXEL_GREEN_OFFSET_KHR 0x30CA +#define EGL_BITMAP_PIXEL_BLUE_OFFSET_KHR 0x30CB +#define EGL_BITMAP_PIXEL_ALPHA_OFFSET_KHR 0x30CC +#define EGL_BITMAP_PIXEL_LUMINANCE_OFFSET_KHR 0x30CD +#define EGL_LOWER_LEFT_KHR 0x30CE +#define EGL_UPPER_LEFT_KHR 0x30CF +typedef EGLBoolean (EGLAPIENTRYP PFNEGLLOCKSURFACEKHRPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNLOCKSURFACEKHRPROC) (EGLDisplay dpy, EGLSurface surface); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglLockSurfaceKHR (EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglUnlockSurfaceKHR (EGLDisplay dpy, EGLSurface surface); +#endif +#endif /* EGL_KHR_lock_surface */ + +#ifndef EGL_KHR_lock_surface2 +#define EGL_KHR_lock_surface2 1 +#define EGL_BITMAP_PIXEL_SIZE_KHR 0x3110 +#endif /* EGL_KHR_lock_surface2 */ + +#ifndef EGL_KHR_lock_surface3 +#define EGL_KHR_lock_surface3 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACE64KHRPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLAttribKHR *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface64KHR (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLAttribKHR *value); +#endif +#endif /* EGL_KHR_lock_surface3 */ + +#ifndef EGL_KHR_mutable_render_buffer +#define EGL_KHR_mutable_render_buffer 1 +#define EGL_MUTABLE_RENDER_BUFFER_BIT_KHR 0x1000 +#endif /* EGL_KHR_mutable_render_buffer */ + +#ifndef EGL_KHR_no_config_context +#define EGL_KHR_no_config_context 1 +#define EGL_NO_CONFIG_KHR EGL_CAST(EGLConfig,0) +#endif /* EGL_KHR_no_config_context */ + +#ifndef EGL_KHR_partial_update +#define EGL_KHR_partial_update 1 +#define EGL_BUFFER_AGE_KHR 0x313D +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETDAMAGEREGIONKHRPROC) (EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSetDamageRegionKHR (EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects); +#endif +#endif /* EGL_KHR_partial_update */ + +#ifndef EGL_KHR_platform_android +#define EGL_KHR_platform_android 1 +#define EGL_PLATFORM_ANDROID_KHR 0x3141 +#endif /* EGL_KHR_platform_android */ + +#ifndef EGL_KHR_platform_gbm +#define EGL_KHR_platform_gbm 1 +#define EGL_PLATFORM_GBM_KHR 0x31D7 +#endif /* EGL_KHR_platform_gbm */ + +#ifndef EGL_KHR_platform_wayland +#define EGL_KHR_platform_wayland 1 +#define EGL_PLATFORM_WAYLAND_KHR 0x31D8 +#endif /* EGL_KHR_platform_wayland */ + +#ifndef EGL_KHR_platform_x11 +#define EGL_KHR_platform_x11 1 +#define EGL_PLATFORM_X11_KHR 0x31D5 +#define EGL_PLATFORM_X11_SCREEN_KHR 0x31D6 +#endif /* EGL_KHR_platform_x11 */ + +#ifndef EGL_KHR_reusable_sync +#define EGL_KHR_reusable_sync 1 +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_SYNC_STATUS_KHR 0x30F1 +#define EGL_SIGNALED_KHR 0x30F2 +#define EGL_UNSIGNALED_KHR 0x30F3 +#define EGL_TIMEOUT_EXPIRED_KHR 0x30F5 +#define EGL_CONDITION_SATISFIED_KHR 0x30F6 +#define EGL_SYNC_TYPE_KHR 0x30F7 +#define EGL_SYNC_REUSABLE_KHR 0x30FA +#define EGL_SYNC_FLUSH_COMMANDS_BIT_KHR 0x0001 +#define EGL_FOREVER_KHR 0xFFFFFFFFFFFFFFFFull +#define EGL_NO_SYNC_KHR EGL_CAST(EGLSyncKHR,0) +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSIGNALSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_reusable_sync */ + +#ifndef EGL_KHR_stream +#define EGL_KHR_stream 1 +typedef void *EGLStreamKHR; +typedef khronos_uint64_t EGLuint64KHR; +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_NO_STREAM_KHR EGL_CAST(EGLStreamKHR,0) +#define EGL_CONSUMER_LATENCY_USEC_KHR 0x3210 +#define EGL_PRODUCER_FRAME_KHR 0x3212 +#define EGL_CONSUMER_FRAME_KHR 0x3213 +#define EGL_STREAM_STATE_KHR 0x3214 +#define EGL_STREAM_STATE_CREATED_KHR 0x3215 +#define EGL_STREAM_STATE_CONNECTING_KHR 0x3216 +#define EGL_STREAM_STATE_EMPTY_KHR 0x3217 +#define EGL_STREAM_STATE_NEW_FRAME_AVAILABLE_KHR 0x3218 +#define EGL_STREAM_STATE_OLD_FRAME_AVAILABLE_KHR 0x3219 +#define EGL_STREAM_STATE_DISCONNECTED_KHR 0x321A +#define EGL_BAD_STREAM_KHR 0x321B +#define EGL_BAD_STATE_KHR 0x321C +typedef EGLStreamKHR (EGLAPIENTRYP PFNEGLCREATESTREAMKHRPROC) (EGLDisplay dpy, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSTREAMKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMU64KHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLuint64KHR *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLStreamKHR EGLAPIENTRY eglCreateStreamKHR (EGLDisplay dpy, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyStreamKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint *value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamu64KHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLuint64KHR *value); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_stream */ + +#ifndef EGL_KHR_stream_attrib +#define EGL_KHR_stream_attrib 1 +#ifdef KHRONOS_SUPPORT_INT64 +typedef EGLStreamKHR (EGLAPIENTRYP PFNEGLCREATESTREAMATTRIBKHRPROC) (EGLDisplay dpy, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERACQUIREATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERRELEASEATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLStreamKHR EGLAPIENTRY eglCreateStreamAttribKHR (EGLDisplay dpy, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglSetStreamAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib *value); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerAcquireAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerReleaseAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_stream_attrib */ + +#ifndef EGL_KHR_stream_consumer_gltexture +#define EGL_KHR_stream_consumer_gltexture 1 +#ifdef EGL_KHR_stream +#define EGL_CONSUMER_ACQUIRE_TIMEOUT_USEC_KHR 0x321E +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERGLTEXTUREEXTERNALKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERACQUIREKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERRELEASEKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerGLTextureExternalKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerAcquireKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerReleaseKHR (EGLDisplay dpy, EGLStreamKHR stream); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_consumer_gltexture */ + +#ifndef EGL_KHR_stream_cross_process_fd +#define EGL_KHR_stream_cross_process_fd 1 +typedef int EGLNativeFileDescriptorKHR; +#ifdef EGL_KHR_stream +#define EGL_NO_FILE_DESCRIPTOR_KHR EGL_CAST(EGLNativeFileDescriptorKHR,-1) +typedef EGLNativeFileDescriptorKHR (EGLAPIENTRYP PFNEGLGETSTREAMFILEDESCRIPTORKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLStreamKHR (EGLAPIENTRYP PFNEGLCREATESTREAMFROMFILEDESCRIPTORKHRPROC) (EGLDisplay dpy, EGLNativeFileDescriptorKHR file_descriptor); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLNativeFileDescriptorKHR EGLAPIENTRY eglGetStreamFileDescriptorKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLStreamKHR EGLAPIENTRY eglCreateStreamFromFileDescriptorKHR (EGLDisplay dpy, EGLNativeFileDescriptorKHR file_descriptor); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_cross_process_fd */ + +#ifndef EGL_KHR_stream_fifo +#define EGL_KHR_stream_fifo 1 +#ifdef EGL_KHR_stream +#define EGL_STREAM_FIFO_LENGTH_KHR 0x31FC +#define EGL_STREAM_TIME_NOW_KHR 0x31FD +#define EGL_STREAM_TIME_CONSUMER_KHR 0x31FE +#define EGL_STREAM_TIME_PRODUCER_KHR 0x31FF +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMTIMEKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLTimeKHR *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamTimeKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLTimeKHR *value); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_fifo */ + +#ifndef EGL_KHR_stream_producer_aldatalocator +#define EGL_KHR_stream_producer_aldatalocator 1 +#ifdef EGL_KHR_stream +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_producer_aldatalocator */ + +#ifndef EGL_KHR_stream_producer_eglsurface +#define EGL_KHR_stream_producer_eglsurface 1 +#ifdef EGL_KHR_stream +#define EGL_STREAM_BIT_KHR 0x0800 +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATESTREAMPRODUCERSURFACEKHRPROC) (EGLDisplay dpy, EGLConfig config, EGLStreamKHR stream, const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSurface EGLAPIENTRY eglCreateStreamProducerSurfaceKHR (EGLDisplay dpy, EGLConfig config, EGLStreamKHR stream, const EGLint *attrib_list); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_producer_eglsurface */ + +#ifndef EGL_KHR_surfaceless_context +#define EGL_KHR_surfaceless_context 1 +#endif /* EGL_KHR_surfaceless_context */ + +#ifndef EGL_KHR_swap_buffers_with_damage +#define EGL_KHR_swap_buffers_with_damage 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSWITHDAMAGEKHRPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersWithDamageKHR (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#endif +#endif /* EGL_KHR_swap_buffers_with_damage */ + +#ifndef EGL_KHR_vg_parent_image +#define EGL_KHR_vg_parent_image 1 +#define EGL_VG_PARENT_IMAGE_KHR 0x30BA +#endif /* EGL_KHR_vg_parent_image */ + +#ifndef EGL_KHR_wait_sync +#define EGL_KHR_wait_sync 1 +typedef EGLint (EGLAPIENTRYP PFNEGLWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLint EGLAPIENTRY eglWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags); +#endif +#endif /* EGL_KHR_wait_sync */ + +#ifndef EGL_ANDROID_GLES_layers +#define EGL_ANDROID_GLES_layers 1 +#endif /* EGL_ANDROID_GLES_layers */ + +#ifndef EGL_ANDROID_blob_cache +#define EGL_ANDROID_blob_cache 1 +typedef khronos_ssize_t EGLsizeiANDROID; +typedef void (*EGLSetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, const void *value, EGLsizeiANDROID valueSize); +typedef EGLsizeiANDROID (*EGLGetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, void *value, EGLsizeiANDROID valueSize); +typedef void (EGLAPIENTRYP PFNEGLSETBLOBCACHEFUNCSANDROIDPROC) (EGLDisplay dpy, EGLSetBlobFuncANDROID set, EGLGetBlobFuncANDROID get); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI void EGLAPIENTRY eglSetBlobCacheFuncsANDROID (EGLDisplay dpy, EGLSetBlobFuncANDROID set, EGLGetBlobFuncANDROID get); +#endif +#endif /* EGL_ANDROID_blob_cache */ + +#ifndef EGL_ANDROID_create_native_client_buffer +#define EGL_ANDROID_create_native_client_buffer 1 +#define EGL_NATIVE_BUFFER_USAGE_ANDROID 0x3143 +#define EGL_NATIVE_BUFFER_USAGE_PROTECTED_BIT_ANDROID 0x00000001 +#define EGL_NATIVE_BUFFER_USAGE_RENDERBUFFER_BIT_ANDROID 0x00000002 +#define EGL_NATIVE_BUFFER_USAGE_TEXTURE_BIT_ANDROID 0x00000004 +typedef EGLClientBuffer (EGLAPIENTRYP PFNEGLCREATENATIVECLIENTBUFFERANDROIDPROC) (const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLClientBuffer EGLAPIENTRY eglCreateNativeClientBufferANDROID (const EGLint *attrib_list); +#endif +#endif /* EGL_ANDROID_create_native_client_buffer */ + +#ifndef EGL_ANDROID_framebuffer_target +#define EGL_ANDROID_framebuffer_target 1 +#define EGL_FRAMEBUFFER_TARGET_ANDROID 0x3147 +#endif /* EGL_ANDROID_framebuffer_target */ + +#ifndef EGL_ANDROID_front_buffer_auto_refresh +#define EGL_ANDROID_front_buffer_auto_refresh 1 +#define EGL_FRONT_BUFFER_AUTO_REFRESH_ANDROID 0x314C +#endif /* EGL_ANDROID_front_buffer_auto_refresh */ + +#ifndef EGL_ANDROID_get_frame_timestamps +#define EGL_ANDROID_get_frame_timestamps 1 +typedef khronos_stime_nanoseconds_t EGLnsecsANDROID; +#define EGL_TIMESTAMP_PENDING_ANDROID EGL_CAST(EGLnsecsANDROID,-2) +#define EGL_TIMESTAMP_INVALID_ANDROID EGL_CAST(EGLnsecsANDROID,-1) +#define EGL_TIMESTAMPS_ANDROID 0x3430 +#define EGL_COMPOSITE_DEADLINE_ANDROID 0x3431 +#define EGL_COMPOSITE_INTERVAL_ANDROID 0x3432 +#define EGL_COMPOSITE_TO_PRESENT_LATENCY_ANDROID 0x3433 +#define EGL_REQUESTED_PRESENT_TIME_ANDROID 0x3434 +#define EGL_RENDERING_COMPLETE_TIME_ANDROID 0x3435 +#define EGL_COMPOSITION_LATCH_TIME_ANDROID 0x3436 +#define EGL_FIRST_COMPOSITION_START_TIME_ANDROID 0x3437 +#define EGL_LAST_COMPOSITION_START_TIME_ANDROID 0x3438 +#define EGL_FIRST_COMPOSITION_GPU_FINISHED_TIME_ANDROID 0x3439 +#define EGL_DISPLAY_PRESENT_TIME_ANDROID 0x343A +#define EGL_DEQUEUE_READY_TIME_ANDROID 0x343B +#define EGL_READS_DONE_TIME_ANDROID 0x343C +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCOMPOSITORTIMINGSUPPORTEDANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCOMPOSITORTIMINGANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETNEXTFRAMEIDANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR *frameId); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETFRAMETIMESTAMPSUPPORTEDANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint timestamp); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETFRAMETIMESTAMPSANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglGetCompositorTimingSupportedANDROID (EGLDisplay dpy, EGLSurface surface, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglGetCompositorTimingANDROID (EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values); +EGLAPI EGLBoolean EGLAPIENTRY eglGetNextFrameIdANDROID (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR *frameId); +EGLAPI EGLBoolean EGLAPIENTRY eglGetFrameTimestampSupportedANDROID (EGLDisplay dpy, EGLSurface surface, EGLint timestamp); +EGLAPI EGLBoolean EGLAPIENTRY eglGetFrameTimestampsANDROID (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values); +#endif +#endif /* EGL_ANDROID_get_frame_timestamps */ + +#ifndef EGL_ANDROID_get_native_client_buffer +#define EGL_ANDROID_get_native_client_buffer 1 +struct AHardwareBuffer; +typedef EGLClientBuffer (EGLAPIENTRYP PFNEGLGETNATIVECLIENTBUFFERANDROIDPROC) (const struct AHardwareBuffer *buffer); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLClientBuffer EGLAPIENTRY eglGetNativeClientBufferANDROID (const struct AHardwareBuffer *buffer); +#endif +#endif /* EGL_ANDROID_get_native_client_buffer */ + +#ifndef EGL_ANDROID_image_native_buffer +#define EGL_ANDROID_image_native_buffer 1 +#define EGL_NATIVE_BUFFER_ANDROID 0x3140 +#endif /* EGL_ANDROID_image_native_buffer */ + +#ifndef EGL_ANDROID_native_fence_sync +#define EGL_ANDROID_native_fence_sync 1 +#define EGL_SYNC_NATIVE_FENCE_ANDROID 0x3144 +#define EGL_SYNC_NATIVE_FENCE_FD_ANDROID 0x3145 +#define EGL_SYNC_NATIVE_FENCE_SIGNALED_ANDROID 0x3146 +#define EGL_NO_NATIVE_FENCE_FD_ANDROID -1 +typedef EGLint (EGLAPIENTRYP PFNEGLDUPNATIVEFENCEFDANDROIDPROC) (EGLDisplay dpy, EGLSyncKHR sync); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLint EGLAPIENTRY eglDupNativeFenceFDANDROID (EGLDisplay dpy, EGLSyncKHR sync); +#endif +#endif /* EGL_ANDROID_native_fence_sync */ + +#ifndef EGL_ANDROID_presentation_time +#define EGL_ANDROID_presentation_time 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLPRESENTATIONTIMEANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLnsecsANDROID time); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglPresentationTimeANDROID (EGLDisplay dpy, EGLSurface surface, EGLnsecsANDROID time); +#endif +#endif /* EGL_ANDROID_presentation_time */ + +#ifndef EGL_ANDROID_recordable +#define EGL_ANDROID_recordable 1 +#define EGL_RECORDABLE_ANDROID 0x3142 +#endif /* EGL_ANDROID_recordable */ + +#ifndef EGL_ANGLE_d3d_share_handle_client_buffer +#define EGL_ANGLE_d3d_share_handle_client_buffer 1 +#define EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE 0x3200 +#endif /* EGL_ANGLE_d3d_share_handle_client_buffer */ + +#ifndef EGL_ANGLE_device_d3d +#define EGL_ANGLE_device_d3d 1 +#define EGL_D3D9_DEVICE_ANGLE 0x33A0 +#define EGL_D3D11_DEVICE_ANGLE 0x33A1 +#endif /* EGL_ANGLE_device_d3d */ + +#ifndef EGL_ANGLE_query_surface_pointer +#define EGL_ANGLE_query_surface_pointer 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACEPOINTERANGLEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, void **value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurfacePointerANGLE (EGLDisplay dpy, EGLSurface surface, EGLint attribute, void **value); +#endif +#endif /* EGL_ANGLE_query_surface_pointer */ + +#ifndef EGL_ANGLE_surface_d3d_texture_2d_share_handle +#define EGL_ANGLE_surface_d3d_texture_2d_share_handle 1 +#endif /* EGL_ANGLE_surface_d3d_texture_2d_share_handle */ + +#ifndef EGL_ANGLE_sync_control_rate +#define EGL_ANGLE_sync_control_rate 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETMSCRATEANGLEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint *numerator, EGLint *denominator); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglGetMscRateANGLE (EGLDisplay dpy, EGLSurface surface, EGLint *numerator, EGLint *denominator); +#endif +#endif /* EGL_ANGLE_sync_control_rate */ + +#ifndef EGL_ANGLE_window_fixed_size +#define EGL_ANGLE_window_fixed_size 1 +#define EGL_FIXED_SIZE_ANGLE 0x3201 +#endif /* EGL_ANGLE_window_fixed_size */ + +#ifndef EGL_ARM_image_format +#define EGL_ARM_image_format 1 +#define EGL_COLOR_COMPONENT_TYPE_UNSIGNED_INTEGER_ARM 0x3287 +#define EGL_COLOR_COMPONENT_TYPE_INTEGER_ARM 0x3288 +#endif /* EGL_ARM_image_format */ + +#ifndef EGL_ARM_implicit_external_sync +#define EGL_ARM_implicit_external_sync 1 +#define EGL_SYNC_PRIOR_COMMANDS_IMPLICIT_EXTERNAL_ARM 0x328A +#endif /* EGL_ARM_implicit_external_sync */ + +#ifndef EGL_ARM_pixmap_multisample_discard +#define EGL_ARM_pixmap_multisample_discard 1 +#define EGL_DISCARD_SAMPLES_ARM 0x3286 +#endif /* EGL_ARM_pixmap_multisample_discard */ + +#ifndef EGL_EXT_bind_to_front +#define EGL_EXT_bind_to_front 1 +#define EGL_FRONT_BUFFER_EXT 0x3464 +#endif /* EGL_EXT_bind_to_front */ + +#ifndef EGL_EXT_buffer_age +#define EGL_EXT_buffer_age 1 +#define EGL_BUFFER_AGE_EXT 0x313D +#endif /* EGL_EXT_buffer_age */ + +#ifndef EGL_EXT_client_extensions +#define EGL_EXT_client_extensions 1 +#endif /* EGL_EXT_client_extensions */ + +#ifndef EGL_EXT_client_sync +#define EGL_EXT_client_sync 1 +#define EGL_SYNC_CLIENT_EXT 0x3364 +#define EGL_SYNC_CLIENT_SIGNAL_EXT 0x3365 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCLIENTSIGNALSYNCEXTPROC) (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglClientSignalSyncEXT (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#endif +#endif /* EGL_EXT_client_sync */ + +#ifndef EGL_EXT_compositor +#define EGL_EXT_compositor 1 +#define EGL_PRIMARY_COMPOSITOR_CONTEXT_EXT 0x3460 +#define EGL_EXTERNAL_REF_ID_EXT 0x3461 +#define EGL_COMPOSITOR_DROP_NEWEST_FRAME_EXT 0x3462 +#define EGL_COMPOSITOR_KEEP_NEWEST_FRAME_EXT 0x3463 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETCONTEXTLISTEXTPROC) (const EGLint *external_ref_ids, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETCONTEXTATTRIBUTESEXTPROC) (EGLint external_ref_id, const EGLint *context_attributes, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETWINDOWLISTEXTPROC) (EGLint external_ref_id, const EGLint *external_win_ids, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETWINDOWATTRIBUTESEXTPROC) (EGLint external_win_id, const EGLint *window_attributes, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORBINDTEXWINDOWEXTPROC) (EGLint external_win_id); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETSIZEEXTPROC) (EGLint external_win_id, EGLint width, EGLint height); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSWAPPOLICYEXTPROC) (EGLint external_win_id, EGLint policy); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetContextListEXT (const EGLint *external_ref_ids, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetContextAttributesEXT (EGLint external_ref_id, const EGLint *context_attributes, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetWindowListEXT (EGLint external_ref_id, const EGLint *external_win_ids, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetWindowAttributesEXT (EGLint external_win_id, const EGLint *window_attributes, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorBindTexWindowEXT (EGLint external_win_id); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetSizeEXT (EGLint external_win_id, EGLint width, EGLint height); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSwapPolicyEXT (EGLint external_win_id, EGLint policy); +#endif +#endif /* EGL_EXT_compositor */ + +#ifndef EGL_EXT_config_select_group +#define EGL_EXT_config_select_group 1 +#define EGL_CONFIG_SELECT_GROUP_EXT 0x34C0 +#endif /* EGL_EXT_config_select_group */ + +#ifndef EGL_EXT_create_context_robustness +#define EGL_EXT_create_context_robustness 1 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS_EXT 0x30BF +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_EXT 0x3138 +#define EGL_NO_RESET_NOTIFICATION_EXT 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET_EXT 0x31BF +#endif /* EGL_EXT_create_context_robustness */ + +#ifndef EGL_EXT_device_base +#define EGL_EXT_device_base 1 +typedef void *EGLDeviceEXT; +#define EGL_NO_DEVICE_EXT EGL_CAST(EGLDeviceEXT,0) +#define EGL_BAD_DEVICE_EXT 0x322B +#define EGL_DEVICE_EXT 0x322C +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEVICEATTRIBEXTPROC) (EGLDeviceEXT device, EGLint attribute, EGLAttrib *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYDEVICESTRINGEXTPROC) (EGLDeviceEXT device, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEVICESEXTPROC) (EGLint max_devices, EGLDeviceEXT *devices, EGLint *num_devices); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBEXTPROC) (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDeviceAttribEXT (EGLDeviceEXT device, EGLint attribute, EGLAttrib *value); +EGLAPI const char *EGLAPIENTRY eglQueryDeviceStringEXT (EGLDeviceEXT device, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDevicesEXT (EGLint max_devices, EGLDeviceEXT *devices, EGLint *num_devices); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribEXT (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +#endif +#endif /* EGL_EXT_device_base */ + +#ifndef EGL_EXT_device_drm +#define EGL_EXT_device_drm 1 +#define EGL_DRM_DEVICE_FILE_EXT 0x3233 +#define EGL_DRM_MASTER_FD_EXT 0x333C +#endif /* EGL_EXT_device_drm */ + +#ifndef EGL_EXT_device_drm_render_node +#define EGL_EXT_device_drm_render_node 1 +#define EGL_DRM_RENDER_NODE_FILE_EXT 0x3377 +#endif /* EGL_EXT_device_drm_render_node */ + +#ifndef EGL_EXT_device_enumeration +#define EGL_EXT_device_enumeration 1 +#endif /* EGL_EXT_device_enumeration */ + +#ifndef EGL_EXT_device_openwf +#define EGL_EXT_device_openwf 1 +#define EGL_OPENWF_DEVICE_ID_EXT 0x3237 +#define EGL_OPENWF_DEVICE_EXT 0x333D +#endif /* EGL_EXT_device_openwf */ + +#ifndef EGL_EXT_device_persistent_id +#define EGL_EXT_device_persistent_id 1 +#define EGL_DEVICE_UUID_EXT 0x335C +#define EGL_DRIVER_UUID_EXT 0x335D +#define EGL_DRIVER_NAME_EXT 0x335E +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEVICEBINARYEXTPROC) (EGLDeviceEXT device, EGLint name, EGLint max_size, void *value, EGLint *size); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDeviceBinaryEXT (EGLDeviceEXT device, EGLint name, EGLint max_size, void *value, EGLint *size); +#endif +#endif /* EGL_EXT_device_persistent_id */ + +#ifndef EGL_EXT_device_query +#define EGL_EXT_device_query 1 +#endif /* EGL_EXT_device_query */ + +#ifndef EGL_EXT_device_query_name +#define EGL_EXT_device_query_name 1 +#define EGL_RENDERER_EXT 0x335F +#endif /* EGL_EXT_device_query_name */ + +#ifndef EGL_EXT_explicit_device +#define EGL_EXT_explicit_device 1 +#endif /* EGL_EXT_explicit_device */ + +#ifndef EGL_EXT_gl_colorspace_bt2020_linear +#define EGL_EXT_gl_colorspace_bt2020_linear 1 +#define EGL_GL_COLORSPACE_BT2020_LINEAR_EXT 0x333F +#endif /* EGL_EXT_gl_colorspace_bt2020_linear */ + +#ifndef EGL_EXT_gl_colorspace_bt2020_pq +#define EGL_EXT_gl_colorspace_bt2020_pq 1 +#define EGL_GL_COLORSPACE_BT2020_PQ_EXT 0x3340 +#endif /* EGL_EXT_gl_colorspace_bt2020_pq */ + +#ifndef EGL_EXT_gl_colorspace_display_p3 +#define EGL_EXT_gl_colorspace_display_p3 1 +#define EGL_GL_COLORSPACE_DISPLAY_P3_EXT 0x3363 +#endif /* EGL_EXT_gl_colorspace_display_p3 */ + +#ifndef EGL_EXT_gl_colorspace_display_p3_linear +#define EGL_EXT_gl_colorspace_display_p3_linear 1 +#define EGL_GL_COLORSPACE_DISPLAY_P3_LINEAR_EXT 0x3362 +#endif /* EGL_EXT_gl_colorspace_display_p3_linear */ + +#ifndef EGL_EXT_gl_colorspace_display_p3_passthrough +#define EGL_EXT_gl_colorspace_display_p3_passthrough 1 +#define EGL_GL_COLORSPACE_DISPLAY_P3_PASSTHROUGH_EXT 0x3490 +#endif /* EGL_EXT_gl_colorspace_display_p3_passthrough */ + +#ifndef EGL_EXT_gl_colorspace_scrgb +#define EGL_EXT_gl_colorspace_scrgb 1 +#define EGL_GL_COLORSPACE_SCRGB_EXT 0x3351 +#endif /* EGL_EXT_gl_colorspace_scrgb */ + +#ifndef EGL_EXT_gl_colorspace_scrgb_linear +#define EGL_EXT_gl_colorspace_scrgb_linear 1 +#define EGL_GL_COLORSPACE_SCRGB_LINEAR_EXT 0x3350 +#endif /* EGL_EXT_gl_colorspace_scrgb_linear */ + +#ifndef EGL_EXT_image_dma_buf_import +#define EGL_EXT_image_dma_buf_import 1 +#define EGL_LINUX_DMA_BUF_EXT 0x3270 +#define EGL_LINUX_DRM_FOURCC_EXT 0x3271 +#define EGL_DMA_BUF_PLANE0_FD_EXT 0x3272 +#define EGL_DMA_BUF_PLANE0_OFFSET_EXT 0x3273 +#define EGL_DMA_BUF_PLANE0_PITCH_EXT 0x3274 +#define EGL_DMA_BUF_PLANE1_FD_EXT 0x3275 +#define EGL_DMA_BUF_PLANE1_OFFSET_EXT 0x3276 +#define EGL_DMA_BUF_PLANE1_PITCH_EXT 0x3277 +#define EGL_DMA_BUF_PLANE2_FD_EXT 0x3278 +#define EGL_DMA_BUF_PLANE2_OFFSET_EXT 0x3279 +#define EGL_DMA_BUF_PLANE2_PITCH_EXT 0x327A +#define EGL_YUV_COLOR_SPACE_HINT_EXT 0x327B +#define EGL_SAMPLE_RANGE_HINT_EXT 0x327C +#define EGL_YUV_CHROMA_HORIZONTAL_SITING_HINT_EXT 0x327D +#define EGL_YUV_CHROMA_VERTICAL_SITING_HINT_EXT 0x327E +#define EGL_ITU_REC601_EXT 0x327F +#define EGL_ITU_REC709_EXT 0x3280 +#define EGL_ITU_REC2020_EXT 0x3281 +#define EGL_YUV_FULL_RANGE_EXT 0x3282 +#define EGL_YUV_NARROW_RANGE_EXT 0x3283 +#define EGL_YUV_CHROMA_SITING_0_EXT 0x3284 +#define EGL_YUV_CHROMA_SITING_0_5_EXT 0x3285 +#endif /* EGL_EXT_image_dma_buf_import */ + +#ifndef EGL_EXT_image_dma_buf_import_modifiers +#define EGL_EXT_image_dma_buf_import_modifiers 1 +#define EGL_DMA_BUF_PLANE3_FD_EXT 0x3440 +#define EGL_DMA_BUF_PLANE3_OFFSET_EXT 0x3441 +#define EGL_DMA_BUF_PLANE3_PITCH_EXT 0x3442 +#define EGL_DMA_BUF_PLANE0_MODIFIER_LO_EXT 0x3443 +#define EGL_DMA_BUF_PLANE0_MODIFIER_HI_EXT 0x3444 +#define EGL_DMA_BUF_PLANE1_MODIFIER_LO_EXT 0x3445 +#define EGL_DMA_BUF_PLANE1_MODIFIER_HI_EXT 0x3446 +#define EGL_DMA_BUF_PLANE2_MODIFIER_LO_EXT 0x3447 +#define EGL_DMA_BUF_PLANE2_MODIFIER_HI_EXT 0x3448 +#define EGL_DMA_BUF_PLANE3_MODIFIER_LO_EXT 0x3449 +#define EGL_DMA_BUF_PLANE3_MODIFIER_HI_EXT 0x344A +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDMABUFFORMATSEXTPROC) (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDMABUFMODIFIERSEXTPROC) (EGLDisplay dpy, EGLint format, EGLint max_modifiers, EGLuint64KHR *modifiers, EGLBoolean *external_only, EGLint *num_modifiers); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDmaBufFormatsEXT (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDmaBufModifiersEXT (EGLDisplay dpy, EGLint format, EGLint max_modifiers, EGLuint64KHR *modifiers, EGLBoolean *external_only, EGLint *num_modifiers); +#endif +#endif /* EGL_EXT_image_dma_buf_import_modifiers */ + +#ifndef EGL_EXT_image_gl_colorspace +#define EGL_EXT_image_gl_colorspace 1 +#define EGL_GL_COLORSPACE_DEFAULT_EXT 0x314D +#endif /* EGL_EXT_image_gl_colorspace */ + +#ifndef EGL_EXT_image_implicit_sync_control +#define EGL_EXT_image_implicit_sync_control 1 +#define EGL_IMPORT_SYNC_TYPE_EXT 0x3470 +#define EGL_IMPORT_IMPLICIT_SYNC_EXT 0x3471 +#define EGL_IMPORT_EXPLICIT_SYNC_EXT 0x3472 +#endif /* EGL_EXT_image_implicit_sync_control */ + +#ifndef EGL_EXT_multiview_window +#define EGL_EXT_multiview_window 1 +#define EGL_MULTIVIEW_VIEW_COUNT_EXT 0x3134 +#endif /* EGL_EXT_multiview_window */ + +#ifndef EGL_EXT_output_base +#define EGL_EXT_output_base 1 +typedef void *EGLOutputLayerEXT; +typedef void *EGLOutputPortEXT; +#define EGL_NO_OUTPUT_LAYER_EXT EGL_CAST(EGLOutputLayerEXT,0) +#define EGL_NO_OUTPUT_PORT_EXT EGL_CAST(EGLOutputPortEXT,0) +#define EGL_BAD_OUTPUT_LAYER_EXT 0x322D +#define EGL_BAD_OUTPUT_PORT_EXT 0x322E +#define EGL_SWAP_INTERVAL_EXT 0x322F +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETOUTPUTLAYERSEXTPROC) (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputLayerEXT *layers, EGLint max_layers, EGLint *num_layers); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETOUTPUTPORTSEXTPROC) (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputPortEXT *ports, EGLint max_ports, EGLint *num_ports); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLOUTPUTLAYERATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYOUTPUTLAYERATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYOUTPUTLAYERSTRINGEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLOUTPUTPORTATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYOUTPUTPORTATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYOUTPUTPORTSTRINGEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint name); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglGetOutputLayersEXT (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputLayerEXT *layers, EGLint max_layers, EGLint *num_layers); +EGLAPI EGLBoolean EGLAPIENTRY eglGetOutputPortsEXT (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputPortEXT *ports, EGLint max_ports, EGLint *num_ports); +EGLAPI EGLBoolean EGLAPIENTRY eglOutputLayerAttribEXT (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryOutputLayerAttribEXT (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib *value); +EGLAPI const char *EGLAPIENTRY eglQueryOutputLayerStringEXT (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglOutputPortAttribEXT (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryOutputPortAttribEXT (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib *value); +EGLAPI const char *EGLAPIENTRY eglQueryOutputPortStringEXT (EGLDisplay dpy, EGLOutputPortEXT port, EGLint name); +#endif +#endif /* EGL_EXT_output_base */ + +#ifndef EGL_EXT_output_drm +#define EGL_EXT_output_drm 1 +#define EGL_DRM_CRTC_EXT 0x3234 +#define EGL_DRM_PLANE_EXT 0x3235 +#define EGL_DRM_CONNECTOR_EXT 0x3236 +#endif /* EGL_EXT_output_drm */ + +#ifndef EGL_EXT_output_openwf +#define EGL_EXT_output_openwf 1 +#define EGL_OPENWF_PIPELINE_ID_EXT 0x3238 +#define EGL_OPENWF_PORT_ID_EXT 0x3239 +#endif /* EGL_EXT_output_openwf */ + +#ifndef EGL_EXT_pixel_format_float +#define EGL_EXT_pixel_format_float 1 +#define EGL_COLOR_COMPONENT_TYPE_EXT 0x3339 +#define EGL_COLOR_COMPONENT_TYPE_FIXED_EXT 0x333A +#define EGL_COLOR_COMPONENT_TYPE_FLOAT_EXT 0x333B +#endif /* EGL_EXT_pixel_format_float */ + +#ifndef EGL_EXT_platform_base +#define EGL_EXT_platform_base 1 +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETPLATFORMDISPLAYEXTPROC) (EGLenum platform, void *native_display, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMWINDOWSURFACEEXTPROC) (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMPIXMAPSURFACEEXTPROC) (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLDisplay EGLAPIENTRY eglGetPlatformDisplayEXT (EGLenum platform, void *native_display, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformWindowSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformPixmapSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint *attrib_list); +#endif +#endif /* EGL_EXT_platform_base */ + +#ifndef EGL_EXT_platform_device +#define EGL_EXT_platform_device 1 +#define EGL_PLATFORM_DEVICE_EXT 0x313F +#endif /* EGL_EXT_platform_device */ + +#ifndef EGL_EXT_platform_wayland +#define EGL_EXT_platform_wayland 1 +#define EGL_PLATFORM_WAYLAND_EXT 0x31D8 +#endif /* EGL_EXT_platform_wayland */ + +#ifndef EGL_EXT_platform_x11 +#define EGL_EXT_platform_x11 1 +#define EGL_PLATFORM_X11_EXT 0x31D5 +#define EGL_PLATFORM_X11_SCREEN_EXT 0x31D6 +#endif /* EGL_EXT_platform_x11 */ + +#ifndef EGL_EXT_platform_xcb +#define EGL_EXT_platform_xcb 1 +#define EGL_PLATFORM_XCB_EXT 0x31DC +#define EGL_PLATFORM_XCB_SCREEN_EXT 0x31DE +#endif /* EGL_EXT_platform_xcb */ + +#ifndef EGL_EXT_present_opaque +#define EGL_EXT_present_opaque 1 +#define EGL_PRESENT_OPAQUE_EXT 0x31DF +#endif /* EGL_EXT_present_opaque */ + +#ifndef EGL_EXT_protected_content +#define EGL_EXT_protected_content 1 +#define EGL_PROTECTED_CONTENT_EXT 0x32C0 +#endif /* EGL_EXT_protected_content */ + +#ifndef EGL_EXT_protected_surface +#define EGL_EXT_protected_surface 1 +#endif /* EGL_EXT_protected_surface */ + +#ifndef EGL_EXT_stream_consumer_egloutput +#define EGL_EXT_stream_consumer_egloutput 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMEROUTPUTEXTPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLOutputLayerEXT layer); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerOutputEXT (EGLDisplay dpy, EGLStreamKHR stream, EGLOutputLayerEXT layer); +#endif +#endif /* EGL_EXT_stream_consumer_egloutput */ + +#ifndef EGL_EXT_surface_CTA861_3_metadata +#define EGL_EXT_surface_CTA861_3_metadata 1 +#define EGL_CTA861_3_MAX_CONTENT_LIGHT_LEVEL_EXT 0x3360 +#define EGL_CTA861_3_MAX_FRAME_AVERAGE_LEVEL_EXT 0x3361 +#endif /* EGL_EXT_surface_CTA861_3_metadata */ + +#ifndef EGL_EXT_surface_SMPTE2086_metadata +#define EGL_EXT_surface_SMPTE2086_metadata 1 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_RX_EXT 0x3341 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_RY_EXT 0x3342 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_GX_EXT 0x3343 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_GY_EXT 0x3344 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_BX_EXT 0x3345 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_BY_EXT 0x3346 +#define EGL_SMPTE2086_WHITE_POINT_X_EXT 0x3347 +#define EGL_SMPTE2086_WHITE_POINT_Y_EXT 0x3348 +#define EGL_SMPTE2086_MAX_LUMINANCE_EXT 0x3349 +#define EGL_SMPTE2086_MIN_LUMINANCE_EXT 0x334A +#define EGL_METADATA_SCALING_EXT 50000 +#endif /* EGL_EXT_surface_SMPTE2086_metadata */ + +#ifndef EGL_EXT_surface_compression +#define EGL_EXT_surface_compression 1 +#define EGL_SURFACE_COMPRESSION_EXT 0x34B0 +#define EGL_SURFACE_COMPRESSION_PLANE1_EXT 0x328E +#define EGL_SURFACE_COMPRESSION_PLANE2_EXT 0x328F +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_NONE_EXT 0x34B1 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_DEFAULT_EXT 0x34B2 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_1BPC_EXT 0x34B4 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_2BPC_EXT 0x34B5 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_3BPC_EXT 0x34B6 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_4BPC_EXT 0x34B7 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_5BPC_EXT 0x34B8 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_6BPC_EXT 0x34B9 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_7BPC_EXT 0x34BA +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_8BPC_EXT 0x34BB +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_9BPC_EXT 0x34BC +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_10BPC_EXT 0x34BD +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_11BPC_EXT 0x34BE +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_12BPC_EXT 0x34BF +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSUPPORTEDCOMPRESSIONRATESEXTPROC) (EGLDisplay dpy, EGLConfig config, const EGLAttrib *attrib_list, EGLint *rates, EGLint rate_size, EGLint *num_rates); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySupportedCompressionRatesEXT (EGLDisplay dpy, EGLConfig config, const EGLAttrib *attrib_list, EGLint *rates, EGLint rate_size, EGLint *num_rates); +#endif +#endif /* EGL_EXT_surface_compression */ + +#ifndef EGL_EXT_swap_buffers_with_damage +#define EGL_EXT_swap_buffers_with_damage 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSWITHDAMAGEEXTPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersWithDamageEXT (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#endif +#endif /* EGL_EXT_swap_buffers_with_damage */ + +#ifndef EGL_EXT_sync_reuse +#define EGL_EXT_sync_reuse 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNSIGNALSYNCEXTPROC) (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglUnsignalSyncEXT (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#endif +#endif /* EGL_EXT_sync_reuse */ + +#ifndef EGL_EXT_yuv_surface +#define EGL_EXT_yuv_surface 1 +#define EGL_YUV_ORDER_EXT 0x3301 +#define EGL_YUV_NUMBER_OF_PLANES_EXT 0x3311 +#define EGL_YUV_SUBSAMPLE_EXT 0x3312 +#define EGL_YUV_DEPTH_RANGE_EXT 0x3317 +#define EGL_YUV_CSC_STANDARD_EXT 0x330A +#define EGL_YUV_PLANE_BPP_EXT 0x331A +#define EGL_YUV_BUFFER_EXT 0x3300 +#define EGL_YUV_ORDER_YUV_EXT 0x3302 +#define EGL_YUV_ORDER_YVU_EXT 0x3303 +#define EGL_YUV_ORDER_YUYV_EXT 0x3304 +#define EGL_YUV_ORDER_UYVY_EXT 0x3305 +#define EGL_YUV_ORDER_YVYU_EXT 0x3306 +#define EGL_YUV_ORDER_VYUY_EXT 0x3307 +#define EGL_YUV_ORDER_AYUV_EXT 0x3308 +#define EGL_YUV_SUBSAMPLE_4_2_0_EXT 0x3313 +#define EGL_YUV_SUBSAMPLE_4_2_2_EXT 0x3314 +#define EGL_YUV_SUBSAMPLE_4_4_4_EXT 0x3315 +#define EGL_YUV_DEPTH_RANGE_LIMITED_EXT 0x3318 +#define EGL_YUV_DEPTH_RANGE_FULL_EXT 0x3319 +#define EGL_YUV_CSC_STANDARD_601_EXT 0x330B +#define EGL_YUV_CSC_STANDARD_709_EXT 0x330C +#define EGL_YUV_CSC_STANDARD_2020_EXT 0x330D +#define EGL_YUV_PLANE_BPP_0_EXT 0x331B +#define EGL_YUV_PLANE_BPP_8_EXT 0x331C +#define EGL_YUV_PLANE_BPP_10_EXT 0x331D +#endif /* EGL_EXT_yuv_surface */ + +#ifndef EGL_HI_clientpixmap +#define EGL_HI_clientpixmap 1 +struct EGLClientPixmapHI { + void *pData; + EGLint iWidth; + EGLint iHeight; + EGLint iStride; +}; +#define EGL_CLIENT_PIXMAP_POINTER_HI 0x8F74 +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPIXMAPSURFACEHIPROC) (EGLDisplay dpy, EGLConfig config, struct EGLClientPixmapHI *pixmap); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurfaceHI (EGLDisplay dpy, EGLConfig config, struct EGLClientPixmapHI *pixmap); +#endif +#endif /* EGL_HI_clientpixmap */ + +#ifndef EGL_HI_colorformats +#define EGL_HI_colorformats 1 +#define EGL_COLOR_FORMAT_HI 0x8F70 +#define EGL_COLOR_RGB_HI 0x8F71 +#define EGL_COLOR_RGBA_HI 0x8F72 +#define EGL_COLOR_ARGB_HI 0x8F73 +#endif /* EGL_HI_colorformats */ + +#ifndef EGL_IMG_context_priority +#define EGL_IMG_context_priority 1 +#define EGL_CONTEXT_PRIORITY_LEVEL_IMG 0x3100 +#define EGL_CONTEXT_PRIORITY_HIGH_IMG 0x3101 +#define EGL_CONTEXT_PRIORITY_MEDIUM_IMG 0x3102 +#define EGL_CONTEXT_PRIORITY_LOW_IMG 0x3103 +#endif /* EGL_IMG_context_priority */ + +#ifndef EGL_IMG_image_plane_attribs +#define EGL_IMG_image_plane_attribs 1 +#define EGL_NATIVE_BUFFER_MULTIPLANE_SEPARATE_IMG 0x3105 +#define EGL_NATIVE_BUFFER_PLANE_OFFSET_IMG 0x3106 +#endif /* EGL_IMG_image_plane_attribs */ + +#ifndef EGL_MESA_drm_image +#define EGL_MESA_drm_image 1 +#define EGL_DRM_BUFFER_FORMAT_MESA 0x31D0 +#define EGL_DRM_BUFFER_USE_MESA 0x31D1 +#define EGL_DRM_BUFFER_FORMAT_ARGB32_MESA 0x31D2 +#define EGL_DRM_BUFFER_MESA 0x31D3 +#define EGL_DRM_BUFFER_STRIDE_MESA 0x31D4 +#define EGL_DRM_BUFFER_USE_SCANOUT_MESA 0x00000001 +#define EGL_DRM_BUFFER_USE_SHARE_MESA 0x00000002 +#define EGL_DRM_BUFFER_USE_CURSOR_MESA 0x00000004 +typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEDRMIMAGEMESAPROC) (EGLDisplay dpy, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDRMIMAGEMESAPROC) (EGLDisplay dpy, EGLImageKHR image, EGLint *name, EGLint *handle, EGLint *stride); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLImageKHR EGLAPIENTRY eglCreateDRMImageMESA (EGLDisplay dpy, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglExportDRMImageMESA (EGLDisplay dpy, EGLImageKHR image, EGLint *name, EGLint *handle, EGLint *stride); +#endif +#endif /* EGL_MESA_drm_image */ + +#ifndef EGL_MESA_image_dma_buf_export +#define EGL_MESA_image_dma_buf_export 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDMABUFIMAGEQUERYMESAPROC) (EGLDisplay dpy, EGLImageKHR image, int *fourcc, int *num_planes, EGLuint64KHR *modifiers); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDMABUFIMAGEMESAPROC) (EGLDisplay dpy, EGLImageKHR image, int *fds, EGLint *strides, EGLint *offsets); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglExportDMABUFImageQueryMESA (EGLDisplay dpy, EGLImageKHR image, int *fourcc, int *num_planes, EGLuint64KHR *modifiers); +EGLAPI EGLBoolean EGLAPIENTRY eglExportDMABUFImageMESA (EGLDisplay dpy, EGLImageKHR image, int *fds, EGLint *strides, EGLint *offsets); +#endif +#endif /* EGL_MESA_image_dma_buf_export */ + +#ifndef EGL_MESA_platform_gbm +#define EGL_MESA_platform_gbm 1 +#define EGL_PLATFORM_GBM_MESA 0x31D7 +#endif /* EGL_MESA_platform_gbm */ + +#ifndef EGL_MESA_platform_surfaceless +#define EGL_MESA_platform_surfaceless 1 +#define EGL_PLATFORM_SURFACELESS_MESA 0x31DD +#endif /* EGL_MESA_platform_surfaceless */ + +#ifndef EGL_MESA_query_driver +#define EGL_MESA_query_driver 1 +typedef char *(EGLAPIENTRYP PFNEGLGETDISPLAYDRIVERCONFIGPROC) (EGLDisplay dpy); +typedef const char *(EGLAPIENTRYP PFNEGLGETDISPLAYDRIVERNAMEPROC) (EGLDisplay dpy); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI char *EGLAPIENTRY eglGetDisplayDriverConfig (EGLDisplay dpy); +EGLAPI const char *EGLAPIENTRY eglGetDisplayDriverName (EGLDisplay dpy); +#endif +#endif /* EGL_MESA_query_driver */ + +#ifndef EGL_NOK_swap_region +#define EGL_NOK_swap_region 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSREGIONNOKPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersRegionNOK (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#endif +#endif /* EGL_NOK_swap_region */ + +#ifndef EGL_NOK_swap_region2 +#define EGL_NOK_swap_region2 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSREGION2NOKPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersRegion2NOK (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#endif +#endif /* EGL_NOK_swap_region2 */ + +#ifndef EGL_NOK_texture_from_pixmap +#define EGL_NOK_texture_from_pixmap 1 +#define EGL_Y_INVERTED_NOK 0x307F +#endif /* EGL_NOK_texture_from_pixmap */ + +#ifndef EGL_NV_3dvision_surface +#define EGL_NV_3dvision_surface 1 +#define EGL_AUTO_STEREO_NV 0x3136 +#endif /* EGL_NV_3dvision_surface */ + +#ifndef EGL_NV_context_priority_realtime +#define EGL_NV_context_priority_realtime 1 +#define EGL_CONTEXT_PRIORITY_REALTIME_NV 0x3357 +#endif /* EGL_NV_context_priority_realtime */ + +#ifndef EGL_NV_coverage_sample +#define EGL_NV_coverage_sample 1 +#define EGL_COVERAGE_BUFFERS_NV 0x30E0 +#define EGL_COVERAGE_SAMPLES_NV 0x30E1 +#endif /* EGL_NV_coverage_sample */ + +#ifndef EGL_NV_coverage_sample_resolve +#define EGL_NV_coverage_sample_resolve 1 +#define EGL_COVERAGE_SAMPLE_RESOLVE_NV 0x3131 +#define EGL_COVERAGE_SAMPLE_RESOLVE_DEFAULT_NV 0x3132 +#define EGL_COVERAGE_SAMPLE_RESOLVE_NONE_NV 0x3133 +#endif /* EGL_NV_coverage_sample_resolve */ + +#ifndef EGL_NV_cuda_event +#define EGL_NV_cuda_event 1 +#define EGL_CUDA_EVENT_HANDLE_NV 0x323B +#define EGL_SYNC_CUDA_EVENT_NV 0x323C +#define EGL_SYNC_CUDA_EVENT_COMPLETE_NV 0x323D +#endif /* EGL_NV_cuda_event */ + +#ifndef EGL_NV_depth_nonlinear +#define EGL_NV_depth_nonlinear 1 +#define EGL_DEPTH_ENCODING_NV 0x30E2 +#define EGL_DEPTH_ENCODING_NONE_NV 0 +#define EGL_DEPTH_ENCODING_NONLINEAR_NV 0x30E3 +#endif /* EGL_NV_depth_nonlinear */ + +#ifndef EGL_NV_device_cuda +#define EGL_NV_device_cuda 1 +#define EGL_CUDA_DEVICE_NV 0x323A +#endif /* EGL_NV_device_cuda */ + +#ifndef EGL_NV_native_query +#define EGL_NV_native_query 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEDISPLAYNVPROC) (EGLDisplay dpy, EGLNativeDisplayType *display_id); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEWINDOWNVPROC) (EGLDisplay dpy, EGLSurface surf, EGLNativeWindowType *window); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEPIXMAPNVPROC) (EGLDisplay dpy, EGLSurface surf, EGLNativePixmapType *pixmap); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativeDisplayNV (EGLDisplay dpy, EGLNativeDisplayType *display_id); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativeWindowNV (EGLDisplay dpy, EGLSurface surf, EGLNativeWindowType *window); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativePixmapNV (EGLDisplay dpy, EGLSurface surf, EGLNativePixmapType *pixmap); +#endif +#endif /* EGL_NV_native_query */ + +#ifndef EGL_NV_post_convert_rounding +#define EGL_NV_post_convert_rounding 1 +#endif /* EGL_NV_post_convert_rounding */ + +#ifndef EGL_NV_post_sub_buffer +#define EGL_NV_post_sub_buffer 1 +#define EGL_POST_SUB_BUFFER_SUPPORTED_NV 0x30BE +typedef EGLBoolean (EGLAPIENTRYP PFNEGLPOSTSUBBUFFERNVPROC) (EGLDisplay dpy, EGLSurface surface, EGLint x, EGLint y, EGLint width, EGLint height); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglPostSubBufferNV (EGLDisplay dpy, EGLSurface surface, EGLint x, EGLint y, EGLint width, EGLint height); +#endif +#endif /* EGL_NV_post_sub_buffer */ + +#ifndef EGL_NV_quadruple_buffer +#define EGL_NV_quadruple_buffer 1 +#define EGL_QUADRUPLE_BUFFER_NV 0x3231 +#endif /* EGL_NV_quadruple_buffer */ + +#ifndef EGL_NV_robustness_video_memory_purge +#define EGL_NV_robustness_video_memory_purge 1 +#define EGL_GENERATE_RESET_ON_VIDEO_MEMORY_PURGE_NV 0x334C +#endif /* EGL_NV_robustness_video_memory_purge */ + +#ifndef EGL_NV_stream_consumer_eglimage +#define EGL_NV_stream_consumer_eglimage 1 +#define EGL_STREAM_CONSUMER_IMAGE_NV 0x3373 +#define EGL_STREAM_IMAGE_ADD_NV 0x3374 +#define EGL_STREAM_IMAGE_REMOVE_NV 0x3375 +#define EGL_STREAM_IMAGE_AVAILABLE_NV 0x3376 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMIMAGECONSUMERCONNECTNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLint num_modifiers, const EGLuint64KHR *modifiers, const EGLAttrib *attrib_list); +typedef EGLint (EGLAPIENTRYP PFNEGLQUERYSTREAMCONSUMEREVENTNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLTime timeout, EGLenum *event, EGLAttrib *aux); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMACQUIREIMAGENVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLImage *pImage, EGLSync sync); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMRELEASEIMAGENVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLImage image, EGLSync sync); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamImageConsumerConnectNV (EGLDisplay dpy, EGLStreamKHR stream, EGLint num_modifiers, const EGLuint64KHR *modifiers, const EGLAttrib *attrib_list); +EGLAPI EGLint EGLAPIENTRY eglQueryStreamConsumerEventNV (EGLDisplay dpy, EGLStreamKHR stream, EGLTime timeout, EGLenum *event, EGLAttrib *aux); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamAcquireImageNV (EGLDisplay dpy, EGLStreamKHR stream, EGLImage *pImage, EGLSync sync); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamReleaseImageNV (EGLDisplay dpy, EGLStreamKHR stream, EGLImage image, EGLSync sync); +#endif +#endif /* EGL_NV_stream_consumer_eglimage */ + +#ifndef EGL_NV_stream_consumer_gltexture_yuv +#define EGL_NV_stream_consumer_gltexture_yuv 1 +#define EGL_YUV_PLANE0_TEXTURE_UNIT_NV 0x332C +#define EGL_YUV_PLANE1_TEXTURE_UNIT_NV 0x332D +#define EGL_YUV_PLANE2_TEXTURE_UNIT_NV 0x332E +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERGLTEXTUREEXTERNALATTRIBSNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerGLTextureExternalAttribsNV (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#endif +#endif /* EGL_NV_stream_consumer_gltexture_yuv */ + +#ifndef EGL_NV_stream_cross_display +#define EGL_NV_stream_cross_display 1 +#define EGL_STREAM_CROSS_DISPLAY_NV 0x334E +#endif /* EGL_NV_stream_cross_display */ + +#ifndef EGL_NV_stream_cross_object +#define EGL_NV_stream_cross_object 1 +#define EGL_STREAM_CROSS_OBJECT_NV 0x334D +#endif /* EGL_NV_stream_cross_object */ + +#ifndef EGL_NV_stream_cross_partition +#define EGL_NV_stream_cross_partition 1 +#define EGL_STREAM_CROSS_PARTITION_NV 0x323F +#endif /* EGL_NV_stream_cross_partition */ + +#ifndef EGL_NV_stream_cross_process +#define EGL_NV_stream_cross_process 1 +#define EGL_STREAM_CROSS_PROCESS_NV 0x3245 +#endif /* EGL_NV_stream_cross_process */ + +#ifndef EGL_NV_stream_cross_system +#define EGL_NV_stream_cross_system 1 +#define EGL_STREAM_CROSS_SYSTEM_NV 0x334F +#endif /* EGL_NV_stream_cross_system */ + +#ifndef EGL_NV_stream_dma +#define EGL_NV_stream_dma 1 +#define EGL_STREAM_DMA_NV 0x3371 +#define EGL_STREAM_DMA_SERVER_NV 0x3372 +#endif /* EGL_NV_stream_dma */ + +#ifndef EGL_NV_stream_fifo_next +#define EGL_NV_stream_fifo_next 1 +#define EGL_PENDING_FRAME_NV 0x3329 +#define EGL_STREAM_TIME_PENDING_NV 0x332A +#endif /* EGL_NV_stream_fifo_next */ + +#ifndef EGL_NV_stream_fifo_synchronous +#define EGL_NV_stream_fifo_synchronous 1 +#define EGL_STREAM_FIFO_SYNCHRONOUS_NV 0x3336 +#endif /* EGL_NV_stream_fifo_synchronous */ + +#ifndef EGL_NV_stream_flush +#define EGL_NV_stream_flush 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMFLUSHNVPROC) (EGLDisplay dpy, EGLStreamKHR stream); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamFlushNV (EGLDisplay dpy, EGLStreamKHR stream); +#endif +#endif /* EGL_NV_stream_flush */ + +#ifndef EGL_NV_stream_frame_limits +#define EGL_NV_stream_frame_limits 1 +#define EGL_PRODUCER_MAX_FRAME_HINT_NV 0x3337 +#define EGL_CONSUMER_MAX_FRAME_HINT_NV 0x3338 +#endif /* EGL_NV_stream_frame_limits */ + +#ifndef EGL_NV_stream_metadata +#define EGL_NV_stream_metadata 1 +#define EGL_MAX_STREAM_METADATA_BLOCKS_NV 0x3250 +#define EGL_MAX_STREAM_METADATA_BLOCK_SIZE_NV 0x3251 +#define EGL_MAX_STREAM_METADATA_TOTAL_SIZE_NV 0x3252 +#define EGL_PRODUCER_METADATA_NV 0x3253 +#define EGL_CONSUMER_METADATA_NV 0x3254 +#define EGL_PENDING_METADATA_NV 0x3328 +#define EGL_METADATA0_SIZE_NV 0x3255 +#define EGL_METADATA1_SIZE_NV 0x3256 +#define EGL_METADATA2_SIZE_NV 0x3257 +#define EGL_METADATA3_SIZE_NV 0x3258 +#define EGL_METADATA0_TYPE_NV 0x3259 +#define EGL_METADATA1_TYPE_NV 0x325A +#define EGL_METADATA2_TYPE_NV 0x325B +#define EGL_METADATA3_TYPE_NV 0x325C +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBNVPROC) (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETSTREAMMETADATANVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLint n, EGLint offset, EGLint size, const void *data); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMMETADATANVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum name, EGLint n, EGLint offset, EGLint size, void *data); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribNV (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +EGLAPI EGLBoolean EGLAPIENTRY eglSetStreamMetadataNV (EGLDisplay dpy, EGLStreamKHR stream, EGLint n, EGLint offset, EGLint size, const void *data); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamMetadataNV (EGLDisplay dpy, EGLStreamKHR stream, EGLenum name, EGLint n, EGLint offset, EGLint size, void *data); +#endif +#endif /* EGL_NV_stream_metadata */ + +#ifndef EGL_NV_stream_origin +#define EGL_NV_stream_origin 1 +#define EGL_STREAM_FRAME_ORIGIN_X_NV 0x3366 +#define EGL_STREAM_FRAME_ORIGIN_Y_NV 0x3367 +#define EGL_STREAM_FRAME_MAJOR_AXIS_NV 0x3368 +#define EGL_CONSUMER_AUTO_ORIENTATION_NV 0x3369 +#define EGL_PRODUCER_AUTO_ORIENTATION_NV 0x336A +#define EGL_LEFT_NV 0x336B +#define EGL_RIGHT_NV 0x336C +#define EGL_TOP_NV 0x336D +#define EGL_BOTTOM_NV 0x336E +#define EGL_X_AXIS_NV 0x336F +#define EGL_Y_AXIS_NV 0x3370 +#endif /* EGL_NV_stream_origin */ + +#ifndef EGL_NV_stream_remote +#define EGL_NV_stream_remote 1 +#define EGL_STREAM_STATE_INITIALIZING_NV 0x3240 +#define EGL_STREAM_TYPE_NV 0x3241 +#define EGL_STREAM_PROTOCOL_NV 0x3242 +#define EGL_STREAM_ENDPOINT_NV 0x3243 +#define EGL_STREAM_LOCAL_NV 0x3244 +#define EGL_STREAM_PRODUCER_NV 0x3247 +#define EGL_STREAM_CONSUMER_NV 0x3248 +#define EGL_STREAM_PROTOCOL_FD_NV 0x3246 +#endif /* EGL_NV_stream_remote */ + +#ifndef EGL_NV_stream_reset +#define EGL_NV_stream_reset 1 +#define EGL_SUPPORT_RESET_NV 0x3334 +#define EGL_SUPPORT_REUSE_NV 0x3335 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLRESETSTREAMNVPROC) (EGLDisplay dpy, EGLStreamKHR stream); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglResetStreamNV (EGLDisplay dpy, EGLStreamKHR stream); +#endif +#endif /* EGL_NV_stream_reset */ + +#ifndef EGL_NV_stream_socket +#define EGL_NV_stream_socket 1 +#define EGL_STREAM_PROTOCOL_SOCKET_NV 0x324B +#define EGL_SOCKET_HANDLE_NV 0x324C +#define EGL_SOCKET_TYPE_NV 0x324D +#endif /* EGL_NV_stream_socket */ + +#ifndef EGL_NV_stream_socket_inet +#define EGL_NV_stream_socket_inet 1 +#define EGL_SOCKET_TYPE_INET_NV 0x324F +#endif /* EGL_NV_stream_socket_inet */ + +#ifndef EGL_NV_stream_socket_unix +#define EGL_NV_stream_socket_unix 1 +#define EGL_SOCKET_TYPE_UNIX_NV 0x324E +#endif /* EGL_NV_stream_socket_unix */ + +#ifndef EGL_NV_stream_sync +#define EGL_NV_stream_sync 1 +#define EGL_SYNC_NEW_FRAME_NV 0x321F +typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESTREAMSYNCNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum type, const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateStreamSyncNV (EGLDisplay dpy, EGLStreamKHR stream, EGLenum type, const EGLint *attrib_list); +#endif +#endif /* EGL_NV_stream_sync */ + +#ifndef EGL_NV_sync +#define EGL_NV_sync 1 +typedef void *EGLSyncNV; +typedef khronos_utime_nanoseconds_t EGLTimeNV; +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE_NV 0x30E6 +#define EGL_SYNC_STATUS_NV 0x30E7 +#define EGL_SIGNALED_NV 0x30E8 +#define EGL_UNSIGNALED_NV 0x30E9 +#define EGL_SYNC_FLUSH_COMMANDS_BIT_NV 0x0001 +#define EGL_FOREVER_NV 0xFFFFFFFFFFFFFFFFull +#define EGL_ALREADY_SIGNALED_NV 0x30EA +#define EGL_TIMEOUT_EXPIRED_NV 0x30EB +#define EGL_CONDITION_SATISFIED_NV 0x30EC +#define EGL_SYNC_TYPE_NV 0x30ED +#define EGL_SYNC_CONDITION_NV 0x30EE +#define EGL_SYNC_FENCE_NV 0x30EF +#define EGL_NO_SYNC_NV EGL_CAST(EGLSyncNV,0) +typedef EGLSyncNV (EGLAPIENTRYP PFNEGLCREATEFENCESYNCNVPROC) (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCNVPROC) (EGLSyncNV sync); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLFENCENVPROC) (EGLSyncNV sync); +typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCNVPROC) (EGLSyncNV sync, EGLint flags, EGLTimeNV timeout); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSIGNALSYNCNVPROC) (EGLSyncNV sync, EGLenum mode); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBNVPROC) (EGLSyncNV sync, EGLint attribute, EGLint *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncNV EGLAPIENTRY eglCreateFenceSyncNV (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncNV (EGLSyncNV sync); +EGLAPI EGLBoolean EGLAPIENTRY eglFenceNV (EGLSyncNV sync); +EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncNV (EGLSyncNV sync, EGLint flags, EGLTimeNV timeout); +EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncNV (EGLSyncNV sync, EGLenum mode); +EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribNV (EGLSyncNV sync, EGLint attribute, EGLint *value); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_NV_sync */ + +#ifndef EGL_NV_system_time +#define EGL_NV_system_time 1 +typedef khronos_utime_nanoseconds_t EGLuint64NV; +#ifdef KHRONOS_SUPPORT_INT64 +typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMEFREQUENCYNVPROC) (void); +typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMENVPROC) (void); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeFrequencyNV (void); +EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeNV (void); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_NV_system_time */ + +#ifndef EGL_NV_triple_buffer +#define EGL_NV_triple_buffer 1 +#define EGL_TRIPLE_BUFFER_NV 0x3230 +#endif /* EGL_NV_triple_buffer */ + +#ifndef EGL_TIZEN_image_native_buffer +#define EGL_TIZEN_image_native_buffer 1 +#define EGL_NATIVE_BUFFER_TIZEN 0x32A0 +#endif /* EGL_TIZEN_image_native_buffer */ + +#ifndef EGL_TIZEN_image_native_surface +#define EGL_TIZEN_image_native_surface 1 +#define EGL_NATIVE_SURFACE_TIZEN 0x32A1 +#endif /* EGL_TIZEN_image_native_surface */ + +#ifndef EGL_WL_bind_wayland_display +#define EGL_WL_bind_wayland_display 1 +#define PFNEGLBINDWAYLANDDISPLAYWL PFNEGLBINDWAYLANDDISPLAYWLPROC +#define PFNEGLUNBINDWAYLANDDISPLAYWL PFNEGLUNBINDWAYLANDDISPLAYWLPROC +#define PFNEGLQUERYWAYLANDBUFFERWL PFNEGLQUERYWAYLANDBUFFERWLPROC +struct wl_display; +struct wl_resource; +#define EGL_WAYLAND_BUFFER_WL 0x31D5 +#define EGL_WAYLAND_PLANE_WL 0x31D6 +#define EGL_TEXTURE_Y_U_V_WL 0x31D7 +#define EGL_TEXTURE_Y_UV_WL 0x31D8 +#define EGL_TEXTURE_Y_XUXV_WL 0x31D9 +#define EGL_TEXTURE_EXTERNAL_WL 0x31DA +#define EGL_WAYLAND_Y_INVERTED_WL 0x31DB +typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDWAYLANDDISPLAYWLPROC) (EGLDisplay dpy, struct wl_display *display); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNBINDWAYLANDDISPLAYWLPROC) (EGLDisplay dpy, struct wl_display *display); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYWAYLANDBUFFERWLPROC) (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglBindWaylandDisplayWL (EGLDisplay dpy, struct wl_display *display); +EGLAPI EGLBoolean EGLAPIENTRY eglUnbindWaylandDisplayWL (EGLDisplay dpy, struct wl_display *display); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryWaylandBufferWL (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value); +#endif +#endif /* EGL_WL_bind_wayland_display */ + +#ifndef EGL_WL_create_wayland_buffer_from_image +#define EGL_WL_create_wayland_buffer_from_image 1 +#define PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWL PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWLPROC +struct wl_buffer; +typedef struct wl_buffer *(EGLAPIENTRYP PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWLPROC) (EGLDisplay dpy, EGLImageKHR image); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI struct wl_buffer *EGLAPIENTRY eglCreateWaylandBufferFromImageWL (EGLDisplay dpy, EGLImageKHR image); +#endif +#endif /* EGL_WL_create_wayland_buffer_from_image */ + +#ifdef __cplusplus +} +#endif + +#endif /* __eglext_h_ */ + +#endif /* _MSC_VER */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_endian.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_endian.h new file mode 100644 index 0000000..2a9b8a3 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_endian.h @@ -0,0 +1,645 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryEndian + * + * Functions converting endian-specific values to different byte orders. + * + * These functions either unconditionally swap byte order (SDL_Swap16, + * SDL_Swap32, SDL_Swap64, SDL_SwapFloat), or they swap to/from the system's + * native byte order (SDL_Swap16LE, SDL_Swap16BE, SDL_Swap32LE, SDL_Swap32BE, + * SDL_Swap32LE, SDL_Swap32BE, SDL_SwapFloatLE, SDL_SwapFloatBE). In the + * latter case, the functionality is provided by macros that become no-ops if + * a swap isn't necessary: on an x86 (littleendian) processor, SDL_Swap32LE + * does nothing, but SDL_Swap32BE reverses the bytes of the data. On a PowerPC + * processor (bigendian), the macros behavior is reversed. + * + * The swap routines are inline functions, and attempt to use compiler + * intrinsics, inline assembly, and other magic to make byteswapping + * efficient. + */ + +#ifndef SDL_endian_h_ +#define SDL_endian_h_ + +#include + +#if defined(_MSC_VER) && (_MSC_VER >= 1400) +/* As of Clang 11, '_m_prefetchw' is conflicting with the winnt.h's version, + so we define the needed '_m_prefetch' here as a pseudo-header, until the issue is fixed. */ +#ifdef __clang__ +#ifndef __PRFCHWINTRIN_H +#define __PRFCHWINTRIN_H +static __inline__ void __attribute__((__always_inline__, __nodebug__)) +_m_prefetch(void *__P) +{ + __builtin_prefetch(__P, 0, 3 /* _MM_HINT_T0 */); +} +#endif /* __PRFCHWINTRIN_H */ +#endif /* __clang__ */ + +#include +#endif + +/** + * \name The two types of endianness + */ +/* @{ */ + + +/** + * A value to represent littleendian byteorder. + * + * This is used with the preprocessor macro SDL_BYTEORDER, to determine a + * platform's byte ordering: + * + * ```c + * #if SDL_BYTEORDER == SDL_LIL_ENDIAN + * SDL_Log("This system is littleendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BYTEORDER + * \sa SDL_BIG_ENDIAN + */ +#define SDL_LIL_ENDIAN 1234 + +/** + * A value to represent bigendian byteorder. + * + * This is used with the preprocessor macro SDL_BYTEORDER, to determine a + * platform's byte ordering: + * + * ```c + * #if SDL_BYTEORDER == SDL_BIG_ENDIAN + * SDL_Log("This system is bigendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BYTEORDER + * \sa SDL_LIL_ENDIAN + */ +#define SDL_BIG_ENDIAN 4321 + +/* @} */ + +#ifndef SDL_BYTEORDER +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro that reports the target system's byte order. + * + * This is set to either SDL_LIL_ENDIAN or SDL_BIG_ENDIAN (and maybe other + * values in the future, if something else becomes popular). This can be + * tested with the preprocessor, so decisions can be made at compile time. + * + * ```c + * #if SDL_BYTEORDER == SDL_BIG_ENDIAN + * SDL_Log("This system is bigendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LIL_ENDIAN + * \sa SDL_BIG_ENDIAN + */ +#define SDL_BYTEORDER SDL_LIL_ENDIAN___or_maybe___SDL_BIG_ENDIAN +#elif defined(SDL_PLATFORM_LINUX) +#include +#define SDL_BYTEORDER __BYTE_ORDER +#elif defined(SDL_PLATFORM_SOLARIS) +#include +#if defined(_LITTLE_ENDIAN) +#define SDL_BYTEORDER SDL_LIL_ENDIAN +#elif defined(_BIG_ENDIAN) +#define SDL_BYTEORDER SDL_BIG_ENDIAN +#else +#error Unsupported endianness +#endif +#elif defined(SDL_PLATFORM_OPENBSD) || defined(__DragonFly__) +#include +#define SDL_BYTEORDER BYTE_ORDER +#elif defined(SDL_PLATFORM_FREEBSD) || defined(SDL_PLATFORM_NETBSD) +#include +#define SDL_BYTEORDER BYTE_ORDER +/* predefs from newer gcc and clang versions: */ +#elif defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__) && defined(__BYTE_ORDER__) +#if (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) +#define SDL_BYTEORDER SDL_LIL_ENDIAN +#elif (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__) +#define SDL_BYTEORDER SDL_BIG_ENDIAN +#else +#error Unsupported endianness +#endif /**/ +#else +#if defined(__hppa__) || \ + defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \ + (defined(__MIPS__) && defined(__MIPSEB__)) || \ + defined(__ppc__) || defined(__POWERPC__) || defined(__powerpc__) || defined(__PPC__) || \ + defined(__sparc__) || defined(__sparc) +#define SDL_BYTEORDER SDL_BIG_ENDIAN +#else +#define SDL_BYTEORDER SDL_LIL_ENDIAN +#endif +#endif /* SDL_PLATFORM_LINUX */ +#endif /* !SDL_BYTEORDER */ + +#ifndef SDL_FLOATWORDORDER +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro that reports the target system's floating point word order. + * + * This is set to either SDL_LIL_ENDIAN or SDL_BIG_ENDIAN (and maybe other + * values in the future, if something else becomes popular). This can be + * tested with the preprocessor, so decisions can be made at compile time. + * + * ```c + * #if SDL_FLOATWORDORDER == SDL_BIG_ENDIAN + * SDL_Log("This system's floats are bigendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LIL_ENDIAN + * \sa SDL_BIG_ENDIAN + */ +#define SDL_FLOATWORDORDER SDL_LIL_ENDIAN___or_maybe___SDL_BIG_ENDIAN +/* predefs from newer gcc versions: */ +#elif defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__) && defined(__FLOAT_WORD_ORDER__) +#if (__FLOAT_WORD_ORDER__ == __ORDER_LITTLE_ENDIAN__) +#define SDL_FLOATWORDORDER SDL_LIL_ENDIAN +#elif (__FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__) +#define SDL_FLOATWORDORDER SDL_BIG_ENDIAN +#else +#error Unsupported endianness +#endif /**/ +#elif defined(__MAVERICK__) +/* For Maverick, float words are always little-endian. */ +#define SDL_FLOATWORDORDER SDL_LIL_ENDIAN +#elif (defined(__arm__) || defined(__thumb__)) && !defined(__VFP_FP__) && !defined(__ARM_EABI__) +/* For FPA, float words are always big-endian. */ +#define SDL_FLOATWORDORDER SDL_BIG_ENDIAN +#else +/* By default, assume that floats words follow the memory system mode. */ +#define SDL_FLOATWORDORDER SDL_BYTEORDER +#endif /* __FLOAT_WORD_ORDER__ */ +#endif /* !SDL_FLOATWORDORDER */ + + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* various modern compilers may have builtin swap */ +#if defined(__GNUC__) || defined(__clang__) +# define HAS_BUILTIN_BSWAP16 (SDL_HAS_BUILTIN(__builtin_bswap16)) || \ + (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)) +# define HAS_BUILTIN_BSWAP32 (SDL_HAS_BUILTIN(__builtin_bswap32)) || \ + (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) +# define HAS_BUILTIN_BSWAP64 (SDL_HAS_BUILTIN(__builtin_bswap64)) || \ + (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) + + /* this one is broken */ +# define HAS_BROKEN_BSWAP (__GNUC__ == 2 && __GNUC_MINOR__ <= 95) +#else +# define HAS_BUILTIN_BSWAP16 0 +# define HAS_BUILTIN_BSWAP32 0 +# define HAS_BUILTIN_BSWAP64 0 +# define HAS_BROKEN_BSWAP 0 +#endif + +/* Byte swap 16-bit integer. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if HAS_BUILTIN_BSWAP16 +#define SDL_Swap16(x) __builtin_bswap16(x) +#elif (defined(_MSC_VER) && (_MSC_VER >= 1400)) && !defined(__ICL) +#pragma intrinsic(_byteswap_ushort) +#define SDL_Swap16(x) _byteswap_ushort(x) +#elif defined(__i386__) && !HAS_BROKEN_BSWAP +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + __asm__("xchgb %b0,%h0": "=q"(x):"0"(x)); + return x; +} +#elif defined(__x86_64__) +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + __asm__("xchgb %b0,%h0": "=Q"(x):"0"(x)); + return x; +} +#elif (defined(__powerpc__) || defined(__ppc__)) +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + int result; + + __asm__("rlwimi %0,%2,8,16,23": "=&r"(result):"0"(x >> 8), "r"(x)); + return (Uint16)result; +} +#elif (defined(__m68k__) && !defined(__mcoldfire__)) +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + __asm__("rorw #8,%0": "=d"(x): "0"(x):"cc"); + return x; +} +#elif defined(__WATCOMC__) && defined(__386__) +extern __inline Uint16 SDL_Swap16(Uint16); +#pragma aux SDL_Swap16 = \ + "xchg al, ah" \ + parm [ax] \ + modify [ax]; +#else +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + return SDL_static_cast(Uint16, ((x << 8) | (x >> 8))); +} +#endif +#endif + +/* Byte swap 32-bit integer. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if HAS_BUILTIN_BSWAP32 +#define SDL_Swap32(x) __builtin_bswap32(x) +#elif (defined(_MSC_VER) && (_MSC_VER >= 1400)) && !defined(__ICL) +#pragma intrinsic(_byteswap_ulong) +#define SDL_Swap32(x) _byteswap_ulong(x) +#elif defined(__i386__) && !HAS_BROKEN_BSWAP +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + __asm__("bswap %0": "=r"(x):"0"(x)); + return x; +} +#elif defined(__x86_64__) +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + __asm__("bswapl %0": "=r"(x):"0"(x)); + return x; +} +#elif (defined(__powerpc__) || defined(__ppc__)) +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + Uint32 result; + + __asm__("rlwimi %0,%2,24,16,23": "=&r"(result): "0" (x>>24), "r"(x)); + __asm__("rlwimi %0,%2,8,8,15" : "=&r"(result): "0" (result), "r"(x)); + __asm__("rlwimi %0,%2,24,0,7" : "=&r"(result): "0" (result), "r"(x)); + return result; +} +#elif (defined(__m68k__) && !defined(__mcoldfire__)) +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + __asm__("rorw #8,%0\n\tswap %0\n\trorw #8,%0": "=d"(x): "0"(x):"cc"); + return x; +} +#elif defined(__WATCOMC__) && defined(__386__) +extern __inline Uint32 SDL_Swap32(Uint32); +#pragma aux SDL_Swap32 = \ + "bswap eax" \ + parm [eax] \ + modify [eax]; +#else +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + return SDL_static_cast(Uint32, ((x << 24) | ((x << 8) & 0x00FF0000) | + ((x >> 8) & 0x0000FF00) | (x >> 24))); +} +#endif +#endif + +/* Byte swap 64-bit integer. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if HAS_BUILTIN_BSWAP64 +#define SDL_Swap64(x) __builtin_bswap64(x) +#elif (defined(_MSC_VER) && (_MSC_VER >= 1400)) && !defined(__ICL) +#pragma intrinsic(_byteswap_uint64) +#define SDL_Swap64(x) _byteswap_uint64(x) +#elif defined(__i386__) && !HAS_BROKEN_BSWAP +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) +{ + union { + struct { + Uint32 a, b; + } s; + Uint64 u; + } v; + v.u = x; + __asm__("bswapl %0 ; bswapl %1 ; xchgl %0,%1" + : "=r"(v.s.a), "=r"(v.s.b) + : "0" (v.s.a), "1"(v.s.b)); + return v.u; +} +#elif defined(__x86_64__) +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) +{ + __asm__("bswapq %0": "=r"(x):"0"(x)); + return x; +} +#elif defined(__WATCOMC__) && defined(__386__) +extern __inline Uint64 SDL_Swap64(Uint64); +#pragma aux SDL_Swap64 = \ + "bswap eax" \ + "bswap edx" \ + "xchg eax,edx" \ + parm [eax edx] \ + modify [eax edx]; +#else +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) +{ + Uint32 hi, lo; + + /* Separate into high and low 32-bit values and swap them */ + lo = SDL_static_cast(Uint32, x & 0xFFFFFFFF); + x >>= 32; + hi = SDL_static_cast(Uint32, x & 0xFFFFFFFF); + x = SDL_Swap32(lo); + x <<= 32; + x |= SDL_Swap32(hi); + return (x); +} +#endif +#endif + +/** + * Byte-swap a floating point number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_SwapFloatLE or + * SDL_SwapFloatBE instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns x, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE float SDL_SwapFloat(float x) +{ + union { + float f; + Uint32 ui32; + } swapper; + swapper.f = x; + swapper.ui32 = SDL_Swap32(swapper.ui32); + return swapper.f; +} + +/* remove extra macros */ +#undef HAS_BROKEN_BSWAP +#undef HAS_BUILTIN_BSWAP16 +#undef HAS_BUILTIN_BSWAP32 +#undef HAS_BUILTIN_BSWAP64 + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Byte-swap an unsigned 16-bit number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_Swap16LE or SDL_Swap16BE + * instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns `x`, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) { return x_but_byteswapped; } + +/** + * Byte-swap an unsigned 32-bit number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_Swap32LE or SDL_Swap32BE + * instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns `x`, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) { return x_but_byteswapped; } + +/** + * Byte-swap an unsigned 64-bit number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_Swap64LE or SDL_Swap64BE + * instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns `x`, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) { return x_but_byteswapped; } + +/** + * Swap a 16-bit value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap16LE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 32-bit value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap32LE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 64-bit value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap64LE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a floating point value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SwapFloatLE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 16-bit value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap16BE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 32-bit value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap32BE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 64-bit value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap64BE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a floating point value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SwapFloatBE(x) SwapOnlyIfNecessary(x) + +#elif SDL_BYTEORDER == SDL_LIL_ENDIAN +#define SDL_Swap16LE(x) (x) +#define SDL_Swap32LE(x) (x) +#define SDL_Swap64LE(x) (x) +#define SDL_SwapFloatLE(x) (x) +#define SDL_Swap16BE(x) SDL_Swap16(x) +#define SDL_Swap32BE(x) SDL_Swap32(x) +#define SDL_Swap64BE(x) SDL_Swap64(x) +#define SDL_SwapFloatBE(x) SDL_SwapFloat(x) +#else +#define SDL_Swap16LE(x) SDL_Swap16(x) +#define SDL_Swap32LE(x) SDL_Swap32(x) +#define SDL_Swap64LE(x) SDL_Swap64(x) +#define SDL_SwapFloatLE(x) SDL_SwapFloat(x) +#define SDL_Swap16BE(x) (x) +#define SDL_Swap32BE(x) (x) +#define SDL_Swap64BE(x) (x) +#define SDL_SwapFloatBE(x) (x) +#endif + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_endian_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_error.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_error.h new file mode 100644 index 0000000..934967c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_error.h @@ -0,0 +1,226 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryError + * + * Simple error message routines for SDL. + * + * Most apps will interface with these APIs in exactly one function: when + * almost any SDL function call reports failure, you can get a human-readable + * string of the problem from SDL_GetError(). + * + * These strings are maintained per-thread, and apps are welcome to set their + * own errors, which is popular when building libraries on top of SDL for + * other apps to consume. These strings are set by calling SDL_SetError(). + * + * A common usage pattern is to have a function that returns true for success + * and false for failure, and do this when something fails: + * + * ```c + * if (something_went_wrong) { + * return SDL_SetError("The thing broke in this specific way: %d", errcode); + * } + * ``` + * + * It's also common to just return `false` in this case if the failing thing + * is known to call SDL_SetError(), so errors simply propagate through. + */ + +#ifndef SDL_error_h_ +#define SDL_error_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Public functions */ + + +/** + * Set the SDL error message for the current thread. + * + * Calling this function will replace any previous error message that was set. + * + * This function always returns false, since SDL frequently uses false to + * signify a failing result, leading to this idiom: + * + * ```c + * if (error_code) { + * return SDL_SetError("This operation has failed: %d", error_code); + * } + * ``` + * + * \param fmt a printf()-style message format string. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * \returns false. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearError + * \sa SDL_GetError + * \sa SDL_SetErrorV + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetError(SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(1); + +/** + * Set the SDL error message for the current thread. + * + * Calling this function will replace any previous error message that was set. + * + * \param fmt a printf()-style message format string. + * \param ap a variable argument list. + * \returns false. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearError + * \sa SDL_GetError + * \sa SDL_SetError + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetErrorV(SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(1); + +/** + * Set an error indicating that memory allocation failed. + * + * This function does not do any memory allocation. + * + * \returns false. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_OutOfMemory(void); + +/** + * Retrieve a message about the last error that occurred on the current + * thread. + * + * It is possible for multiple errors to occur before calling SDL_GetError(). + * Only the last error is returned. + * + * The message is only applicable when an SDL function has signaled an error. + * You must check the return values of SDL function calls to determine when to + * appropriately call SDL_GetError(). You should *not* use the results of + * SDL_GetError() to decide if an error has occurred! Sometimes SDL will set + * an error string even when reporting success. + * + * SDL will *not* clear the error string for successful API calls. You *must* + * check return values for failure cases before you can assume the error + * string applies. + * + * Error strings are set per-thread, so an error set in a different thread + * will not interfere with the current thread's operation. + * + * The returned value is a thread-local string which will remain valid until + * the current thread's error string is changed. The caller should make a copy + * if the value is needed after the next SDL API call. + * + * \returns a message with information about the specific error that occurred, + * or an empty string if there hasn't been an error message set since + * the last call to SDL_ClearError(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearError + * \sa SDL_SetError + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetError(void); + +/** + * Clear any previous error message for this thread. + * + * \returns true. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetError + * \sa SDL_SetError + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearError(void); + +/** + * \name Internal error functions + * + * \internal + * Private error reporting function - used internally. + */ +/* @{ */ + +/** + * A macro to standardize error reporting on unsupported operations. + * + * This simply calls SDL_SetError() with a standardized error string, for + * convenience, consistency, and clarity. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Unsupported() SDL_SetError("That operation is not supported") + +/** + * A macro to standardize error reporting on unsupported operations. + * + * This simply calls SDL_SetError() with a standardized error string, for + * convenience, consistency, and clarity. + * + * A common usage pattern inside SDL is this: + * + * ```c + * bool MyFunction(const char *str) { + * if (!str) { + * return SDL_InvalidParamError("str"); // returns false. + * } + * DoSomething(str); + * return true; + * } + * ``` + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_InvalidParamError(param) SDL_SetError("Parameter '%s' is invalid", (param)) + +/* @} *//* Internal error functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_error_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_events.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_events.h new file mode 100644 index 0000000..d267f05 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_events.h @@ -0,0 +1,1576 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryEvents + * + * Event queue management. + * + * It's extremely common--often required--that an app deal with SDL's event + * queue. Almost all useful information about interactions with the real world + * flow through here: the user interacting with the computer and app, hardware + * coming and going, the system changing in some way, etc. + * + * An app generally takes a moment, perhaps at the start of a new frame, to + * examine any events that have occured since the last time and process or + * ignore them. This is generally done by calling SDL_PollEvent() in a loop + * until it returns false (or, if using the main callbacks, events are + * provided one at a time in calls to SDL_AppEvent() before the next call to + * SDL_AppIterate(); in this scenario, the app does not call SDL_PollEvent() + * at all). + * + * There is other forms of control, too: SDL_PeepEvents() has more + * functionality at the cost of more complexity, and SDL_WaitEvent() can block + * the process until something interesting happens, which might be beneficial + * for certain types of programs on low-power hardware. One may also call + * SDL_AddEventWatch() to set a callback when new events arrive. + * + * The app is free to generate their own events, too: SDL_PushEvent allows the + * app to put events onto the queue for later retrieval; SDL_RegisterEvents + * can guarantee that these events have a type that isn't in use by other + * parts of the system. + */ + +#ifndef SDL_events_h_ +#define SDL_events_h_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* General keyboard/mouse/pen state definitions */ + +/** + * The types of events that can be delivered. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_EventType +{ + SDL_EVENT_FIRST = 0, /**< Unused (do not remove) */ + + /* Application events */ + SDL_EVENT_QUIT = 0x100, /**< User-requested quit */ + + /* These application events have special meaning on iOS and Android, see README-ios.md and README-android.md for details */ + SDL_EVENT_TERMINATING, /**< The application is being terminated by the OS. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationWillTerminate() + Called on Android in onDestroy() + */ + SDL_EVENT_LOW_MEMORY, /**< The application is low on memory, free memory if possible. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationDidReceiveMemoryWarning() + Called on Android in onTrimMemory() + */ + SDL_EVENT_WILL_ENTER_BACKGROUND, /**< The application is about to enter the background. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationWillResignActive() + Called on Android in onPause() + */ + SDL_EVENT_DID_ENTER_BACKGROUND, /**< The application did enter the background and may not get CPU for some time. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationDidEnterBackground() + Called on Android in onPause() + */ + SDL_EVENT_WILL_ENTER_FOREGROUND, /**< The application is about to enter the foreground. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationWillEnterForeground() + Called on Android in onResume() + */ + SDL_EVENT_DID_ENTER_FOREGROUND, /**< The application is now interactive. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationDidBecomeActive() + Called on Android in onResume() + */ + + SDL_EVENT_LOCALE_CHANGED, /**< The user's locale preferences have changed. */ + + SDL_EVENT_SYSTEM_THEME_CHANGED, /**< The system theme changed */ + + /* Display events */ + /* 0x150 was SDL_DISPLAYEVENT, reserve the number for sdl2-compat */ + SDL_EVENT_DISPLAY_ORIENTATION = 0x151, /**< Display orientation has changed to data1 */ + SDL_EVENT_DISPLAY_ADDED, /**< Display has been added to the system */ + SDL_EVENT_DISPLAY_REMOVED, /**< Display has been removed from the system */ + SDL_EVENT_DISPLAY_MOVED, /**< Display has changed position */ + SDL_EVENT_DISPLAY_DESKTOP_MODE_CHANGED, /**< Display has changed desktop mode */ + SDL_EVENT_DISPLAY_CURRENT_MODE_CHANGED, /**< Display has changed current mode */ + SDL_EVENT_DISPLAY_CONTENT_SCALE_CHANGED, /**< Display has changed content scale */ + SDL_EVENT_DISPLAY_FIRST = SDL_EVENT_DISPLAY_ORIENTATION, + SDL_EVENT_DISPLAY_LAST = SDL_EVENT_DISPLAY_CONTENT_SCALE_CHANGED, + + /* Window events */ + /* 0x200 was SDL_WINDOWEVENT, reserve the number for sdl2-compat */ + /* 0x201 was SDL_SYSWMEVENT, reserve the number for sdl2-compat */ + SDL_EVENT_WINDOW_SHOWN = 0x202, /**< Window has been shown */ + SDL_EVENT_WINDOW_HIDDEN, /**< Window has been hidden */ + SDL_EVENT_WINDOW_EXPOSED, /**< Window has been exposed and should be redrawn, and can be redrawn directly from event watchers for this event */ + SDL_EVENT_WINDOW_MOVED, /**< Window has been moved to data1, data2 */ + SDL_EVENT_WINDOW_RESIZED, /**< Window has been resized to data1xdata2 */ + SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED,/**< The pixel size of the window has changed to data1xdata2 */ + SDL_EVENT_WINDOW_METAL_VIEW_RESIZED,/**< The pixel size of a Metal view associated with the window has changed */ + SDL_EVENT_WINDOW_MINIMIZED, /**< Window has been minimized */ + SDL_EVENT_WINDOW_MAXIMIZED, /**< Window has been maximized */ + SDL_EVENT_WINDOW_RESTORED, /**< Window has been restored to normal size and position */ + SDL_EVENT_WINDOW_MOUSE_ENTER, /**< Window has gained mouse focus */ + SDL_EVENT_WINDOW_MOUSE_LEAVE, /**< Window has lost mouse focus */ + SDL_EVENT_WINDOW_FOCUS_GAINED, /**< Window has gained keyboard focus */ + SDL_EVENT_WINDOW_FOCUS_LOST, /**< Window has lost keyboard focus */ + SDL_EVENT_WINDOW_CLOSE_REQUESTED, /**< The window manager requests that the window be closed */ + SDL_EVENT_WINDOW_HIT_TEST, /**< Window had a hit test that wasn't SDL_HITTEST_NORMAL */ + SDL_EVENT_WINDOW_ICCPROF_CHANGED, /**< The ICC profile of the window's display has changed */ + SDL_EVENT_WINDOW_DISPLAY_CHANGED, /**< Window has been moved to display data1 */ + SDL_EVENT_WINDOW_DISPLAY_SCALE_CHANGED, /**< Window display scale has been changed */ + SDL_EVENT_WINDOW_SAFE_AREA_CHANGED, /**< The window safe area has been changed */ + SDL_EVENT_WINDOW_OCCLUDED, /**< The window has been occluded */ + SDL_EVENT_WINDOW_ENTER_FULLSCREEN, /**< The window has entered fullscreen mode */ + SDL_EVENT_WINDOW_LEAVE_FULLSCREEN, /**< The window has left fullscreen mode */ + SDL_EVENT_WINDOW_DESTROYED, /**< The window with the associated ID is being or has been destroyed. If this message is being handled + in an event watcher, the window handle is still valid and can still be used to retrieve any properties + associated with the window. Otherwise, the handle has already been destroyed and all resources + associated with it are invalid */ + SDL_EVENT_WINDOW_HDR_STATE_CHANGED, /**< Window HDR properties have changed */ + SDL_EVENT_WINDOW_FIRST = SDL_EVENT_WINDOW_SHOWN, + SDL_EVENT_WINDOW_LAST = SDL_EVENT_WINDOW_HDR_STATE_CHANGED, + + /* Keyboard events */ + SDL_EVENT_KEY_DOWN = 0x300, /**< Key pressed */ + SDL_EVENT_KEY_UP, /**< Key released */ + SDL_EVENT_TEXT_EDITING, /**< Keyboard text editing (composition) */ + SDL_EVENT_TEXT_INPUT, /**< Keyboard text input */ + SDL_EVENT_KEYMAP_CHANGED, /**< Keymap changed due to a system event such as an + input language or keyboard layout change. */ + SDL_EVENT_KEYBOARD_ADDED, /**< A new keyboard has been inserted into the system */ + SDL_EVENT_KEYBOARD_REMOVED, /**< A keyboard has been removed */ + SDL_EVENT_TEXT_EDITING_CANDIDATES, /**< Keyboard text editing candidates */ + + /* Mouse events */ + SDL_EVENT_MOUSE_MOTION = 0x400, /**< Mouse moved */ + SDL_EVENT_MOUSE_BUTTON_DOWN, /**< Mouse button pressed */ + SDL_EVENT_MOUSE_BUTTON_UP, /**< Mouse button released */ + SDL_EVENT_MOUSE_WHEEL, /**< Mouse wheel motion */ + SDL_EVENT_MOUSE_ADDED, /**< A new mouse has been inserted into the system */ + SDL_EVENT_MOUSE_REMOVED, /**< A mouse has been removed */ + + /* Joystick events */ + SDL_EVENT_JOYSTICK_AXIS_MOTION = 0x600, /**< Joystick axis motion */ + SDL_EVENT_JOYSTICK_BALL_MOTION, /**< Joystick trackball motion */ + SDL_EVENT_JOYSTICK_HAT_MOTION, /**< Joystick hat position change */ + SDL_EVENT_JOYSTICK_BUTTON_DOWN, /**< Joystick button pressed */ + SDL_EVENT_JOYSTICK_BUTTON_UP, /**< Joystick button released */ + SDL_EVENT_JOYSTICK_ADDED, /**< A new joystick has been inserted into the system */ + SDL_EVENT_JOYSTICK_REMOVED, /**< An opened joystick has been removed */ + SDL_EVENT_JOYSTICK_BATTERY_UPDATED, /**< Joystick battery level change */ + SDL_EVENT_JOYSTICK_UPDATE_COMPLETE, /**< Joystick update is complete */ + + /* Gamepad events */ + SDL_EVENT_GAMEPAD_AXIS_MOTION = 0x650, /**< Gamepad axis motion */ + SDL_EVENT_GAMEPAD_BUTTON_DOWN, /**< Gamepad button pressed */ + SDL_EVENT_GAMEPAD_BUTTON_UP, /**< Gamepad button released */ + SDL_EVENT_GAMEPAD_ADDED, /**< A new gamepad has been inserted into the system */ + SDL_EVENT_GAMEPAD_REMOVED, /**< A gamepad has been removed */ + SDL_EVENT_GAMEPAD_REMAPPED, /**< The gamepad mapping was updated */ + SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN, /**< Gamepad touchpad was touched */ + SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION, /**< Gamepad touchpad finger was moved */ + SDL_EVENT_GAMEPAD_TOUCHPAD_UP, /**< Gamepad touchpad finger was lifted */ + SDL_EVENT_GAMEPAD_SENSOR_UPDATE, /**< Gamepad sensor was updated */ + SDL_EVENT_GAMEPAD_UPDATE_COMPLETE, /**< Gamepad update is complete */ + SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED, /**< Gamepad Steam handle has changed */ + + /* Touch events */ + SDL_EVENT_FINGER_DOWN = 0x700, + SDL_EVENT_FINGER_UP, + SDL_EVENT_FINGER_MOTION, + SDL_EVENT_FINGER_CANCELED, + + /* 0x800, 0x801, and 0x802 were the Gesture events from SDL2. Do not reuse these values! sdl2-compat needs them! */ + + /* Clipboard events */ + SDL_EVENT_CLIPBOARD_UPDATE = 0x900, /**< The clipboard or primary selection changed */ + + /* Drag and drop events */ + SDL_EVENT_DROP_FILE = 0x1000, /**< The system requests a file open */ + SDL_EVENT_DROP_TEXT, /**< text/plain drag-and-drop event */ + SDL_EVENT_DROP_BEGIN, /**< A new set of drops is beginning (NULL filename) */ + SDL_EVENT_DROP_COMPLETE, /**< Current set of drops is now complete (NULL filename) */ + SDL_EVENT_DROP_POSITION, /**< Position while moving over the window */ + + /* Audio hotplug events */ + SDL_EVENT_AUDIO_DEVICE_ADDED = 0x1100, /**< A new audio device is available */ + SDL_EVENT_AUDIO_DEVICE_REMOVED, /**< An audio device has been removed. */ + SDL_EVENT_AUDIO_DEVICE_FORMAT_CHANGED, /**< An audio device's format has been changed by the system. */ + + /* Sensor events */ + SDL_EVENT_SENSOR_UPDATE = 0x1200, /**< A sensor was updated */ + + /* Pressure-sensitive pen events */ + SDL_EVENT_PEN_PROXIMITY_IN = 0x1300, /**< Pressure-sensitive pen has become available */ + SDL_EVENT_PEN_PROXIMITY_OUT, /**< Pressure-sensitive pen has become unavailable */ + SDL_EVENT_PEN_DOWN, /**< Pressure-sensitive pen touched drawing surface */ + SDL_EVENT_PEN_UP, /**< Pressure-sensitive pen stopped touching drawing surface */ + SDL_EVENT_PEN_BUTTON_DOWN, /**< Pressure-sensitive pen button pressed */ + SDL_EVENT_PEN_BUTTON_UP, /**< Pressure-sensitive pen button released */ + SDL_EVENT_PEN_MOTION, /**< Pressure-sensitive pen is moving on the tablet */ + SDL_EVENT_PEN_AXIS, /**< Pressure-sensitive pen angle/pressure/etc changed */ + + /* Camera hotplug events */ + SDL_EVENT_CAMERA_DEVICE_ADDED = 0x1400, /**< A new camera device is available */ + SDL_EVENT_CAMERA_DEVICE_REMOVED, /**< A camera device has been removed. */ + SDL_EVENT_CAMERA_DEVICE_APPROVED, /**< A camera device has been approved for use by the user. */ + SDL_EVENT_CAMERA_DEVICE_DENIED, /**< A camera device has been denied for use by the user. */ + + /* Render events */ + SDL_EVENT_RENDER_TARGETS_RESET = 0x2000, /**< The render targets have been reset and their contents need to be updated */ + SDL_EVENT_RENDER_DEVICE_RESET, /**< The device has been reset and all textures need to be recreated */ + SDL_EVENT_RENDER_DEVICE_LOST, /**< The device has been lost and can't be recovered. */ + + /* Reserved events for private platforms */ + SDL_EVENT_PRIVATE0 = 0x4000, + SDL_EVENT_PRIVATE1, + SDL_EVENT_PRIVATE2, + SDL_EVENT_PRIVATE3, + + /* Internal events */ + SDL_EVENT_POLL_SENTINEL = 0x7F00, /**< Signals the end of an event poll cycle */ + + /** Events SDL_EVENT_USER through SDL_EVENT_LAST are for your use, + * and should be allocated with SDL_RegisterEvents() + */ + SDL_EVENT_USER = 0x8000, + + /** + * This last event is only for bounding internal arrays + */ + SDL_EVENT_LAST = 0xFFFF, + + /* This just makes sure the enum is the size of Uint32 */ + SDL_EVENT_ENUM_PADDING = 0x7FFFFFFF + +} SDL_EventType; + +/** + * Fields shared by every event + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_CommonEvent +{ + Uint32 type; /**< Event type, shared with all events, Uint32 to cover user events which are not in the SDL_EventType enumeration */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ +} SDL_CommonEvent; + +/** + * Display state change event data (event.display.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_DisplayEvent +{ + SDL_EventType type; /**< SDL_DISPLAYEVENT_* */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_DisplayID displayID;/**< The associated display */ + Sint32 data1; /**< event dependent data */ + Sint32 data2; /**< event dependent data */ +} SDL_DisplayEvent; + +/** + * Window state change event data (event.window.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_WindowEvent +{ + SDL_EventType type; /**< SDL_EVENT_WINDOW_* */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The associated window */ + Sint32 data1; /**< event dependent data */ + Sint32 data2; /**< event dependent data */ +} SDL_WindowEvent; + +/** + * Keyboard device event structure (event.kdevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_KeyboardDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_KEYBOARD_ADDED or SDL_EVENT_KEYBOARD_REMOVED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_KeyboardID which; /**< The keyboard instance id */ +} SDL_KeyboardDeviceEvent; + +/** + * Keyboard button event structure (event.key.*) + * + * The `key` is the base SDL_Keycode generated by pressing the `scancode` + * using the current keyboard layout, applying any options specified in + * SDL_HINT_KEYCODE_OPTIONS. You can get the SDL_Keycode corresponding to the + * event scancode and modifiers directly from the keyboard layout, bypassing + * SDL_HINT_KEYCODE_OPTIONS, by calling SDL_GetKeyFromScancode(). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromScancode + * \sa SDL_HINT_KEYCODE_OPTIONS + */ +typedef struct SDL_KeyboardEvent +{ + SDL_EventType type; /**< SDL_EVENT_KEY_DOWN or SDL_EVENT_KEY_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + SDL_KeyboardID which; /**< The keyboard instance id, or 0 if unknown or virtual */ + SDL_Scancode scancode; /**< SDL physical key code */ + SDL_Keycode key; /**< SDL virtual key code */ + SDL_Keymod mod; /**< current key modifiers */ + Uint16 raw; /**< The platform dependent scancode for this event */ + bool down; /**< true if the key is pressed */ + bool repeat; /**< true if this is a key repeat */ +} SDL_KeyboardEvent; + +/** + * Keyboard text editing event structure (event.edit.*) + * + * The start cursor is the position, in UTF-8 characters, where new typing + * will be inserted into the editing text. The length is the number of UTF-8 + * characters that will be replaced by new typing. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TextEditingEvent +{ + SDL_EventType type; /**< SDL_EVENT_TEXT_EDITING */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + const char *text; /**< The editing text */ + Sint32 start; /**< The start cursor of selected editing text, or -1 if not set */ + Sint32 length; /**< The length of selected editing text, or -1 if not set */ +} SDL_TextEditingEvent; + +/** + * Keyboard IME candidates event structure (event.edit_candidates.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TextEditingCandidatesEvent +{ + SDL_EventType type; /**< SDL_EVENT_TEXT_EDITING_CANDIDATES */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + const char * const *candidates; /**< The list of candidates, or NULL if there are no candidates available */ + Sint32 num_candidates; /**< The number of strings in `candidates` */ + Sint32 selected_candidate; /**< The index of the selected candidate, or -1 if no candidate is selected */ + bool horizontal; /**< true if the list is horizontal, false if it's vertical */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_TextEditingCandidatesEvent; + +/** + * Keyboard text input event structure (event.text.*) + * + * This event will never be delivered unless text input is enabled by calling + * SDL_StartTextInput(). Text input is disabled by default! + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + * \sa SDL_StopTextInput + */ +typedef struct SDL_TextInputEvent +{ + SDL_EventType type; /**< SDL_EVENT_TEXT_INPUT */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + const char *text; /**< The input text, UTF-8 encoded */ +} SDL_TextInputEvent; + +/** + * Mouse device event structure (event.mdevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_ADDED or SDL_EVENT_MOUSE_REMOVED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_MouseID which; /**< The mouse instance id */ +} SDL_MouseDeviceEvent; + +/** + * Mouse motion event structure (event.motion.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseMotionEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_MouseID which; /**< The mouse instance id in relative mode, SDL_TOUCH_MOUSEID for touch events, or 0 */ + SDL_MouseButtonFlags state; /**< The current button state */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + float xrel; /**< The relative motion in the X direction */ + float yrel; /**< The relative motion in the Y direction */ +} SDL_MouseMotionEvent; + +/** + * Mouse button event structure (event.button.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_BUTTON_DOWN or SDL_EVENT_MOUSE_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_MouseID which; /**< The mouse instance id in relative mode, SDL_TOUCH_MOUSEID for touch events, or 0 */ + Uint8 button; /**< The mouse button index */ + bool down; /**< true if the button is pressed */ + Uint8 clicks; /**< 1 for single-click, 2 for double-click, etc. */ + Uint8 padding; + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ +} SDL_MouseButtonEvent; + +/** + * Mouse wheel event structure (event.wheel.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseWheelEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_WHEEL */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_MouseID which; /**< The mouse instance id in relative mode or 0 */ + float x; /**< The amount scrolled horizontally, positive to the right and negative to the left */ + float y; /**< The amount scrolled vertically, positive away from the user and negative toward the user */ + SDL_MouseWheelDirection direction; /**< Set to one of the SDL_MOUSEWHEEL_* defines. When FLIPPED the values in X and Y will be opposite. Multiply by -1 to change them back */ + float mouse_x; /**< X coordinate, relative to window */ + float mouse_y; /**< Y coordinate, relative to window */ + Sint32 integer_x; /**< The amount scrolled horizontally, accumulated to whole scroll "ticks" (added in 3.2.12) */ + Sint32 integer_y; /**< The amount scrolled vertically, accumulated to whole scroll "ticks" (added in 3.2.12) */ +} SDL_MouseWheelEvent; + +/** + * Joystick axis motion event structure (event.jaxis.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyAxisEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_AXIS_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 axis; /**< The joystick axis index */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 value; /**< The axis value (range: -32768 to 32767) */ + Uint16 padding4; +} SDL_JoyAxisEvent; + +/** + * Joystick trackball motion event structure (event.jball.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyBallEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_BALL_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 ball; /**< The joystick trackball index */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 xrel; /**< The relative motion in the X direction */ + Sint16 yrel; /**< The relative motion in the Y direction */ +} SDL_JoyBallEvent; + +/** + * Joystick hat position change event structure (event.jhat.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyHatEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_HAT_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 hat; /**< The joystick hat index */ + Uint8 value; /**< The hat position value. + * \sa SDL_HAT_LEFTUP SDL_HAT_UP SDL_HAT_RIGHTUP + * \sa SDL_HAT_LEFT SDL_HAT_CENTERED SDL_HAT_RIGHT + * \sa SDL_HAT_LEFTDOWN SDL_HAT_DOWN SDL_HAT_RIGHTDOWN + * + * Note that zero means the POV is centered. + */ + Uint8 padding1; + Uint8 padding2; +} SDL_JoyHatEvent; + +/** + * Joystick button event structure (event.jbutton.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_BUTTON_DOWN or SDL_EVENT_JOYSTICK_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 button; /**< The joystick button index */ + bool down; /**< true if the button is pressed */ + Uint8 padding1; + Uint8 padding2; +} SDL_JoyButtonEvent; + +/** + * Joystick device event structure (event.jdevice.*) + * + * SDL will send JOYSTICK_ADDED events for devices that are already plugged in + * during SDL_Init. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GamepadDeviceEvent + */ +typedef struct SDL_JoyDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_ADDED or SDL_EVENT_JOYSTICK_REMOVED or SDL_EVENT_JOYSTICK_UPDATE_COMPLETE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ +} SDL_JoyDeviceEvent; + +/** + * Joystick battery level change event structure (event.jbattery.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyBatteryEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_BATTERY_UPDATED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + SDL_PowerState state; /**< The joystick battery state */ + int percent; /**< The joystick battery percent charge remaining */ +} SDL_JoyBatteryEvent; + +/** + * Gamepad axis motion event structure (event.gaxis.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadAxisEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_AXIS_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 axis; /**< The gamepad axis (SDL_GamepadAxis) */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 value; /**< The axis value (range: -32768 to 32767) */ + Uint16 padding4; +} SDL_GamepadAxisEvent; + + +/** + * Gamepad button event structure (event.gbutton.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_BUTTON_DOWN or SDL_EVENT_GAMEPAD_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 button; /**< The gamepad button (SDL_GamepadButton) */ + bool down; /**< true if the button is pressed */ + Uint8 padding1; + Uint8 padding2; +} SDL_GamepadButtonEvent; + + +/** + * Gamepad device event structure (event.gdevice.*) + * + * Joysticks that are supported gamepads receive both an SDL_JoyDeviceEvent + * and an SDL_GamepadDeviceEvent. + * + * SDL will send GAMEPAD_ADDED events for joysticks that are already plugged + * in during SDL_Init() and are recognized as gamepads. It will also send + * events for joysticks that get gamepad mappings at runtime. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_JoyDeviceEvent + */ +typedef struct SDL_GamepadDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_ADDED, SDL_EVENT_GAMEPAD_REMOVED, or SDL_EVENT_GAMEPAD_REMAPPED, SDL_EVENT_GAMEPAD_UPDATE_COMPLETE or SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ +} SDL_GamepadDeviceEvent; + +/** + * Gamepad touchpad event structure (event.gtouchpad.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadTouchpadEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN or SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION or SDL_EVENT_GAMEPAD_TOUCHPAD_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Sint32 touchpad; /**< The index of the touchpad */ + Sint32 finger; /**< The index of the finger on the touchpad */ + float x; /**< Normalized in the range 0...1 with 0 being on the left */ + float y; /**< Normalized in the range 0...1 with 0 being at the top */ + float pressure; /**< Normalized in the range 0...1 */ +} SDL_GamepadTouchpadEvent; + +/** + * Gamepad sensor event structure (event.gsensor.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadSensorEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_SENSOR_UPDATE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Sint32 sensor; /**< The type of the sensor, one of the values of SDL_SensorType */ + float data[3]; /**< Up to 3 values from the sensor, as defined in SDL_sensor.h */ + Uint64 sensor_timestamp; /**< The timestamp of the sensor reading in nanoseconds, not necessarily synchronized with the system clock */ +} SDL_GamepadSensorEvent; + +/** + * Audio device event structure (event.adevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_AudioDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_AUDIO_DEVICE_ADDED, or SDL_EVENT_AUDIO_DEVICE_REMOVED, or SDL_EVENT_AUDIO_DEVICE_FORMAT_CHANGED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_AudioDeviceID which; /**< SDL_AudioDeviceID for the device being added or removed or changing */ + bool recording; /**< false if a playback device, true if a recording device. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_AudioDeviceEvent; + +/** + * Camera device event structure (event.cdevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_CameraDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_CAMERA_DEVICE_ADDED, SDL_EVENT_CAMERA_DEVICE_REMOVED, SDL_EVENT_CAMERA_DEVICE_APPROVED, SDL_EVENT_CAMERA_DEVICE_DENIED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_CameraID which; /**< SDL_CameraID for the device being added or removed or changing */ +} SDL_CameraDeviceEvent; + + +/** + * Renderer event structure (event.render.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_RenderEvent +{ + SDL_EventType type; /**< SDL_EVENT_RENDER_TARGETS_RESET, SDL_EVENT_RENDER_DEVICE_RESET, SDL_EVENT_RENDER_DEVICE_LOST */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window containing the renderer in question. */ +} SDL_RenderEvent; + + +/** + * Touch finger event structure (event.tfinger.*) + * + * Coordinates in this event are normalized. `x` and `y` are normalized to a + * range between 0.0f and 1.0f, relative to the window, so (0,0) is the top + * left and (1,1) is the bottom right. Delta coordinates `dx` and `dy` are + * normalized in the ranges of -1.0f (traversed all the way from the bottom or + * right to all the way up or left) to 1.0f (traversed all the way from the + * top or left to all the way down or right). + * + * Note that while the coordinates are _normalized_, they are not _clamped_, + * which means in some circumstances you can get a value outside of this + * range. For example, a renderer using logical presentation might give a + * negative value when the touch is in the letterboxing. Some platforms might + * report a touch outside of the window, which will also be outside of the + * range. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TouchFingerEvent +{ + SDL_EventType type; /**< SDL_EVENT_FINGER_DOWN, SDL_EVENT_FINGER_UP, SDL_EVENT_FINGER_MOTION, or SDL_EVENT_FINGER_CANCELED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_TouchID touchID; /**< The touch device id */ + SDL_FingerID fingerID; + float x; /**< Normalized in the range 0...1 */ + float y; /**< Normalized in the range 0...1 */ + float dx; /**< Normalized in the range -1...1 */ + float dy; /**< Normalized in the range -1...1 */ + float pressure; /**< Normalized in the range 0...1 */ + SDL_WindowID windowID; /**< The window underneath the finger, if any */ +} SDL_TouchFingerEvent; + +/** + * Pressure-sensitive pen proximity event structure (event.pmotion.*) + * + * When a pen becomes visible to the system (it is close enough to a tablet, + * etc), SDL will send an SDL_EVENT_PEN_PROXIMITY_IN event with the new pen's + * ID. This ID is valid until the pen leaves proximity again (has been removed + * from the tablet's area, the tablet has been unplugged, etc). If the same + * pen reenters proximity again, it will be given a new ID. + * + * Note that "proximity" means "close enough for the tablet to know the tool + * is there." The pen touching and lifting off from the tablet while not + * leaving the area are handled by SDL_EVENT_PEN_DOWN and SDL_EVENT_PEN_UP. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenProximityEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_PROXIMITY_IN or SDL_EVENT_PEN_PROXIMITY_OUT */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ +} SDL_PenProximityEvent; + +/** + * Pressure-sensitive pen motion event structure (event.pmotion.*) + * + * Depending on the hardware, you may get motion events when the pen is not + * touching a tablet, for tracking a pen even when it isn't drawing. You + * should listen for SDL_EVENT_PEN_DOWN and SDL_EVENT_PEN_UP events, or check + * `pen_state & SDL_PEN_INPUT_DOWN` to decide if a pen is "drawing" when + * dealing with pen motion. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenMotionEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ +} SDL_PenMotionEvent; + +/** + * Pressure-sensitive pen touched event structure (event.ptouch.*) + * + * These events come when a pen touches a surface (a tablet, etc), or lifts + * off from one. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenTouchEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_DOWN or SDL_EVENT_PEN_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + bool eraser; /**< true if eraser end is used (not all pens support this). */ + bool down; /**< true if the pen is touching or false if the pen is lifted off */ +} SDL_PenTouchEvent; + +/** + * Pressure-sensitive pen button event structure (event.pbutton.*) + * + * This is for buttons on the pen itself that the user might click. The pen + * itself pressing down to draw triggers a SDL_EVENT_PEN_DOWN event instead. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_BUTTON_DOWN or SDL_EVENT_PEN_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + Uint8 button; /**< The pen button index (first button is 1). */ + bool down; /**< true if the button is pressed */ +} SDL_PenButtonEvent; + +/** + * Pressure-sensitive pen pressure / angle event structure (event.paxis.*) + * + * You might get some of these events even if the pen isn't touching the + * tablet. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenAxisEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_AXIS */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + SDL_PenAxis axis; /**< Axis that has changed */ + float value; /**< New value of axis */ +} SDL_PenAxisEvent; + +/** + * An event used to drop text or request a file open by the system + * (event.drop.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_DropEvent +{ + SDL_EventType type; /**< SDL_EVENT_DROP_BEGIN or SDL_EVENT_DROP_FILE or SDL_EVENT_DROP_TEXT or SDL_EVENT_DROP_COMPLETE or SDL_EVENT_DROP_POSITION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window that was dropped on, if any */ + float x; /**< X coordinate, relative to window (not on begin) */ + float y; /**< Y coordinate, relative to window (not on begin) */ + const char *source; /**< The source app that sent this drop event, or NULL if that isn't available */ + const char *data; /**< The text for SDL_EVENT_DROP_TEXT and the file name for SDL_EVENT_DROP_FILE, NULL for other events */ +} SDL_DropEvent; + +/** + * An event triggered when the clipboard contents have changed + * (event.clipboard.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_ClipboardEvent +{ + SDL_EventType type; /**< SDL_EVENT_CLIPBOARD_UPDATE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + bool owner; /**< are we owning the clipboard (internal update) */ + Sint32 num_mime_types; /**< number of mime types */ + const char **mime_types; /**< current mime types */ +} SDL_ClipboardEvent; + +/** + * Sensor event structure (event.sensor.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_SensorEvent +{ + SDL_EventType type; /**< SDL_EVENT_SENSOR_UPDATE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_SensorID which; /**< The instance ID of the sensor */ + float data[6]; /**< Up to 6 values from the sensor - additional values can be queried using SDL_GetSensorData() */ + Uint64 sensor_timestamp; /**< The timestamp of the sensor reading in nanoseconds, not necessarily synchronized with the system clock */ +} SDL_SensorEvent; + +/** + * The "quit requested" event + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_QuitEvent +{ + SDL_EventType type; /**< SDL_EVENT_QUIT */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ +} SDL_QuitEvent; + +/** + * A user-defined event type (event.user.*) + * + * This event is unique; it is never created by SDL, but only by the + * application. The event can be pushed onto the event queue using + * SDL_PushEvent(). The contents of the structure members are completely up to + * the programmer; the only requirement is that '''type''' is a value obtained + * from SDL_RegisterEvents(). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_UserEvent +{ + Uint32 type; /**< SDL_EVENT_USER through SDL_EVENT_LAST-1, Uint32 because these are not in the SDL_EventType enumeration */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The associated window if any */ + Sint32 code; /**< User defined event code */ + void *data1; /**< User defined data pointer */ + void *data2; /**< User defined data pointer */ +} SDL_UserEvent; + + +/** + * The structure for all events in SDL. + * + * The SDL_Event structure is the core of all event handling in SDL. SDL_Event + * is a union of all event structures used in SDL. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef union SDL_Event +{ + Uint32 type; /**< Event type, shared with all events, Uint32 to cover user events which are not in the SDL_EventType enumeration */ + SDL_CommonEvent common; /**< Common event data */ + SDL_DisplayEvent display; /**< Display event data */ + SDL_WindowEvent window; /**< Window event data */ + SDL_KeyboardDeviceEvent kdevice; /**< Keyboard device change event data */ + SDL_KeyboardEvent key; /**< Keyboard event data */ + SDL_TextEditingEvent edit; /**< Text editing event data */ + SDL_TextEditingCandidatesEvent edit_candidates; /**< Text editing candidates event data */ + SDL_TextInputEvent text; /**< Text input event data */ + SDL_MouseDeviceEvent mdevice; /**< Mouse device change event data */ + SDL_MouseMotionEvent motion; /**< Mouse motion event data */ + SDL_MouseButtonEvent button; /**< Mouse button event data */ + SDL_MouseWheelEvent wheel; /**< Mouse wheel event data */ + SDL_JoyDeviceEvent jdevice; /**< Joystick device change event data */ + SDL_JoyAxisEvent jaxis; /**< Joystick axis event data */ + SDL_JoyBallEvent jball; /**< Joystick ball event data */ + SDL_JoyHatEvent jhat; /**< Joystick hat event data */ + SDL_JoyButtonEvent jbutton; /**< Joystick button event data */ + SDL_JoyBatteryEvent jbattery; /**< Joystick battery event data */ + SDL_GamepadDeviceEvent gdevice; /**< Gamepad device event data */ + SDL_GamepadAxisEvent gaxis; /**< Gamepad axis event data */ + SDL_GamepadButtonEvent gbutton; /**< Gamepad button event data */ + SDL_GamepadTouchpadEvent gtouchpad; /**< Gamepad touchpad event data */ + SDL_GamepadSensorEvent gsensor; /**< Gamepad sensor event data */ + SDL_AudioDeviceEvent adevice; /**< Audio device event data */ + SDL_CameraDeviceEvent cdevice; /**< Camera device event data */ + SDL_SensorEvent sensor; /**< Sensor event data */ + SDL_QuitEvent quit; /**< Quit request event data */ + SDL_UserEvent user; /**< Custom event data */ + SDL_TouchFingerEvent tfinger; /**< Touch finger event data */ + SDL_PenProximityEvent pproximity; /**< Pen proximity event data */ + SDL_PenTouchEvent ptouch; /**< Pen tip touching event data */ + SDL_PenMotionEvent pmotion; /**< Pen motion event data */ + SDL_PenButtonEvent pbutton; /**< Pen button event data */ + SDL_PenAxisEvent paxis; /**< Pen axis event data */ + SDL_RenderEvent render; /**< Render event data */ + SDL_DropEvent drop; /**< Drag and drop event data */ + SDL_ClipboardEvent clipboard; /**< Clipboard event data */ + + /* This is necessary for ABI compatibility between Visual C++ and GCC. + Visual C++ will respect the push pack pragma and use 52 bytes (size of + SDL_TextEditingEvent, the largest structure for 32-bit and 64-bit + architectures) for this union, and GCC will use the alignment of the + largest datatype within the union, which is 8 bytes on 64-bit + architectures. + + So... we'll add padding to force the size to be the same for both. + + On architectures where pointers are 16 bytes, this needs rounding up to + the next multiple of 16, 64, and on architectures where pointers are + even larger the size of SDL_UserEvent will dominate as being 3 pointers. + */ + Uint8 padding[128]; +} SDL_Event; + +/* Make sure we haven't broken binary compatibility */ +SDL_COMPILE_TIME_ASSERT(SDL_Event, sizeof(SDL_Event) == sizeof(((SDL_Event *)NULL)->padding)); + + +/* Function prototypes */ + +/** + * Pump the event loop, gathering events from the input devices. + * + * This function updates the event queue and internal input device state. + * + * SDL_PumpEvents() gathers all the pending input information from devices and + * places it in the event queue. Without calls to SDL_PumpEvents() no events + * would ever be placed on the queue. Often the need for calls to + * SDL_PumpEvents() is hidden from the user since SDL_PollEvent() and + * SDL_WaitEvent() implicitly call SDL_PumpEvents(). However, if you are not + * polling or waiting for events (e.g. you are filtering them), then you must + * call SDL_PumpEvents() to force an event queue update. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_WaitEvent + */ +extern SDL_DECLSPEC void SDLCALL SDL_PumpEvents(void); + +/* @{ */ + +/** + * The type of action to request from SDL_PeepEvents(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_EventAction +{ + SDL_ADDEVENT, /**< Add events to the back of the queue. */ + SDL_PEEKEVENT, /**< Check but don't remove events from the queue front. */ + SDL_GETEVENT /**< Retrieve/remove events from the front of the queue. */ +} SDL_EventAction; + +/** + * Check the event queue for messages and optionally return them. + * + * `action` may be any of the following: + * + * - `SDL_ADDEVENT`: up to `numevents` events will be added to the back of the + * event queue. + * - `SDL_PEEKEVENT`: `numevents` events at the front of the event queue, + * within the specified minimum and maximum type, will be returned to the + * caller and will _not_ be removed from the queue. If you pass NULL for + * `events`, then `numevents` is ignored and the total number of matching + * events will be returned. + * - `SDL_GETEVENT`: up to `numevents` events at the front of the event queue, + * within the specified minimum and maximum type, will be returned to the + * caller and will be removed from the queue. + * + * You may have to call SDL_PumpEvents() before calling this function. + * Otherwise, the events may not be ready to be filtered when you call + * SDL_PeepEvents(). + * + * \param events destination buffer for the retrieved events, may be NULL to + * leave the events in the queue and return the number of events + * that would have been stored. + * \param numevents if action is SDL_ADDEVENT, the number of events to add + * back to the event queue; if action is SDL_PEEKEVENT or + * SDL_GETEVENT, the maximum number of events to retrieve. + * \param action action to take; see [Remarks](#remarks) for details. + * \param minType minimum value of the event type to be considered; + * SDL_EVENT_FIRST is a safe choice. + * \param maxType maximum value of the event type to be considered; + * SDL_EVENT_LAST is a safe choice. + * \returns the number of events actually stored or -1 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_PumpEvents + * \sa SDL_PushEvent + */ +extern SDL_DECLSPEC int SDLCALL SDL_PeepEvents(SDL_Event *events, int numevents, SDL_EventAction action, Uint32 minType, Uint32 maxType); +/* @} */ + +/** + * Check for the existence of a certain event type in the event queue. + * + * If you need to check for a range of event types, use SDL_HasEvents() + * instead. + * + * \param type the type of event to be queried; see SDL_EventType for details. + * \returns true if events matching `type` are present, or false if events + * matching `type` are not present. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasEvents + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasEvent(Uint32 type); + + +/** + * Check for the existence of certain event types in the event queue. + * + * If you need to check for a single event type, use SDL_HasEvent() instead. + * + * \param minType the low end of event type to be queried, inclusive; see + * SDL_EventType for details. + * \param maxType the high end of event type to be queried, inclusive; see + * SDL_EventType for details. + * \returns true if events with type >= `minType` and <= `maxType` are + * present, or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasEvents + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasEvents(Uint32 minType, Uint32 maxType); + +/** + * Clear events of a specific type from the event queue. + * + * This will unconditionally remove any events from the queue that match + * `type`. If you need to remove a range of event types, use SDL_FlushEvents() + * instead. + * + * It's also normal to just ignore events you don't care about in your event + * loop without calling this function. + * + * This function only affects currently queued events. If you want to make + * sure that all pending OS events are flushed, you can call SDL_PumpEvents() + * on the main thread immediately before the flush call. + * + * If you have user events with custom data that needs to be freed, you should + * use SDL_PeepEvents() to remove and clean up those events before calling + * this function. + * + * \param type the type of event to be cleared; see SDL_EventType for details. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FlushEvents + */ +extern SDL_DECLSPEC void SDLCALL SDL_FlushEvent(Uint32 type); + +/** + * Clear events of a range of types from the event queue. + * + * This will unconditionally remove any events from the queue that are in the + * range of `minType` to `maxType`, inclusive. If you need to remove a single + * event type, use SDL_FlushEvent() instead. + * + * It's also normal to just ignore events you don't care about in your event + * loop without calling this function. + * + * This function only affects currently queued events. If you want to make + * sure that all pending OS events are flushed, you can call SDL_PumpEvents() + * on the main thread immediately before the flush call. + * + * \param minType the low end of event type to be cleared, inclusive; see + * SDL_EventType for details. + * \param maxType the high end of event type to be cleared, inclusive; see + * SDL_EventType for details. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FlushEvent + */ +extern SDL_DECLSPEC void SDLCALL SDL_FlushEvents(Uint32 minType, Uint32 maxType); + +/** + * Poll for currently pending events. + * + * If `event` is not NULL, the next event is removed from the queue and stored + * in the SDL_Event structure pointed to by `event`. The 1 returned refers to + * this event, immediately stored in the SDL Event structure -- not an event + * to follow. + * + * If `event` is NULL, it simply returns 1 if there is an event in the queue, + * but will not remove it from the queue. + * + * As this function may implicitly call SDL_PumpEvents(), you can only call + * this function in the thread that set the video mode. + * + * SDL_PollEvent() is the favored way of receiving system events since it can + * be done from the main loop and does not suspend the main loop while waiting + * on an event to be posted. + * + * The common practice is to fully process the event queue once every frame, + * usually as a first step before updating the game's state: + * + * ```c + * while (game_is_still_running) { + * SDL_Event event; + * while (SDL_PollEvent(&event)) { // poll until all events are handled! + * // decide what to do with this event. + * } + * + * // update game state, draw the current frame + * } + * ``` + * + * \param event the SDL_Event structure to be filled with the next event from + * the queue, or NULL. + * \returns true if this got an event or false if there are none available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PushEvent + * \sa SDL_WaitEvent + * \sa SDL_WaitEventTimeout + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PollEvent(SDL_Event *event); + +/** + * Wait indefinitely for the next available event. + * + * If `event` is not NULL, the next event is removed from the queue and stored + * in the SDL_Event structure pointed to by `event`. + * + * As this function may implicitly call SDL_PumpEvents(), you can only call + * this function in the thread that initialized the video subsystem. + * + * \param event the SDL_Event structure to be filled in with the next event + * from the queue, or NULL. + * \returns true on success or false if there was an error while waiting for + * events; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_PushEvent + * \sa SDL_WaitEventTimeout + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitEvent(SDL_Event *event); + +/** + * Wait until the specified timeout (in milliseconds) for the next available + * event. + * + * If `event` is not NULL, the next event is removed from the queue and stored + * in the SDL_Event structure pointed to by `event`. + * + * As this function may implicitly call SDL_PumpEvents(), you can only call + * this function in the thread that initialized the video subsystem. + * + * The timeout is not guaranteed, the actual wait time could be longer due to + * system scheduling. + * + * \param event the SDL_Event structure to be filled in with the next event + * from the queue, or NULL. + * \param timeoutMS the maximum number of milliseconds to wait for the next + * available event. + * \returns true if this got an event or false if the timeout elapsed without + * any events available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_PushEvent + * \sa SDL_WaitEvent + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitEventTimeout(SDL_Event *event, Sint32 timeoutMS); + +/** + * Add an event to the event queue. + * + * The event queue can actually be used as a two way communication channel. + * Not only can events be read from the queue, but the user can also push + * their own events onto it. `event` is a pointer to the event structure you + * wish to push onto the queue. The event is copied into the queue, and the + * caller may dispose of the memory pointed to after SDL_PushEvent() returns. + * + * Note: Pushing device input events onto the queue doesn't modify the state + * of the device within SDL. + * + * Note: Events pushed onto the queue with SDL_PushEvent() get passed through + * the event filter but events added with SDL_PeepEvents() do not. + * + * For pushing application-specific events, please use SDL_RegisterEvents() to + * get an event type that does not conflict with other code that also wants + * its own custom event types. + * + * \param event the SDL_Event to be added to the queue. + * \returns true on success, false if the event was filtered or on failure; + * call SDL_GetError() for more information. A common reason for + * error is the event queue being full. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PeepEvents + * \sa SDL_PollEvent + * \sa SDL_RegisterEvents + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PushEvent(SDL_Event *event); + +/** + * A function pointer used for callbacks that watch the event queue. + * + * \param userdata what was passed as `userdata` to SDL_SetEventFilter() or + * SDL_AddEventWatch, etc. + * \param event the event that triggered the callback. + * \returns true to permit event to be added to the queue, and false to + * disallow it. When used with SDL_AddEventWatch, the return value is + * ignored. + * + * \threadsafety SDL may call this callback at any time from any thread; the + * application is responsible for locking resources the callback + * touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetEventFilter + * \sa SDL_AddEventWatch + */ +typedef bool (SDLCALL *SDL_EventFilter)(void *userdata, SDL_Event *event); + +/** + * Set up a filter to process all events before they are added to the internal + * event queue. + * + * If you just want to see events without modifying them or preventing them + * from being queued, you should use SDL_AddEventWatch() instead. + * + * If the filter function returns true when called, then the event will be + * added to the internal queue. If it returns false, then the event will be + * dropped from the queue, but the internal state will still be updated. This + * allows selective filtering of dynamically arriving events. + * + * **WARNING**: Be very careful of what you do in the event filter function, + * as it may run in a different thread! + * + * On platforms that support it, if the quit event is generated by an + * interrupt signal (e.g. pressing Ctrl-C), it will be delivered to the + * application at the next event poll. + * + * Note: Disabled events never make it to the event filter function; see + * SDL_SetEventEnabled(). + * + * Note: Events pushed onto the queue with SDL_PushEvent() get passed through + * the event filter, but events pushed onto the queue with SDL_PeepEvents() do + * not. + * + * \param filter an SDL_EventFilter function to call when an event happens. + * \param userdata a pointer that is passed to `filter`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + * \sa SDL_SetEventEnabled + * \sa SDL_GetEventFilter + * \sa SDL_PeepEvents + * \sa SDL_PushEvent + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetEventFilter(SDL_EventFilter filter, void *userdata); + +/** + * Query the current event filter. + * + * This function can be used to "chain" filters, by saving the existing filter + * before replacing it with a function that will call that saved filter. + * + * \param filter the current callback function will be stored here. + * \param userdata the pointer that is passed to the current event filter will + * be stored here. + * \returns true on success or false if there is no event filter set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetEventFilter + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetEventFilter(SDL_EventFilter *filter, void **userdata); + +/** + * Add a callback to be triggered when an event is added to the event queue. + * + * `filter` will be called when an event happens, and its return value is + * ignored. + * + * **WARNING**: Be very careful of what you do in the event filter function, + * as it may run in a different thread! + * + * If the quit event is generated by a signal (e.g. SIGINT), it will bypass + * the internal queue and be delivered to the watch callback immediately, and + * arrive at the next event poll. + * + * Note: the callback is called for events posted by the user through + * SDL_PushEvent(), but not for disabled events, nor for events by a filter + * callback set with SDL_SetEventFilter(), nor for events posted by the user + * through SDL_PeepEvents(). + * + * \param filter an SDL_EventFilter function to call when an event happens. + * \param userdata a pointer that is passed to `filter`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveEventWatch + * \sa SDL_SetEventFilter + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddEventWatch(SDL_EventFilter filter, void *userdata); + +/** + * Remove an event watch callback added with SDL_AddEventWatch(). + * + * This function takes the same input as SDL_AddEventWatch() to identify and + * delete the corresponding callback. + * + * \param filter the function originally passed to SDL_AddEventWatch(). + * \param userdata the pointer originally passed to SDL_AddEventWatch(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveEventWatch(SDL_EventFilter filter, void *userdata); + +/** + * Run a specific filter function on the current event queue, removing any + * events for which the filter returns false. + * + * See SDL_SetEventFilter() for more information. Unlike SDL_SetEventFilter(), + * this function does not change the filter permanently, it only uses the + * supplied filter until this function returns. + * + * \param filter the SDL_EventFilter function to call when an event happens. + * \param userdata a pointer that is passed to `filter`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEventFilter + * \sa SDL_SetEventFilter + */ +extern SDL_DECLSPEC void SDLCALL SDL_FilterEvents(SDL_EventFilter filter, void *userdata); + +/** + * Set the state of processing events by type. + * + * \param type the type of event; see SDL_EventType for details. + * \param enabled whether to process the event or not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EventEnabled + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetEventEnabled(Uint32 type, bool enabled); + +/** + * Query the state of processing events by type. + * + * \param type the type of event; see SDL_EventType for details. + * \returns true if the event is being processed, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetEventEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EventEnabled(Uint32 type); + +/** + * Allocate a set of user-defined events, and return the beginning event + * number for that set of events. + * + * \param numevents the number of events to be allocated. + * \returns the beginning event number, or 0 if numevents is invalid or if + * there are not enough user-defined events left. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PushEvent + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_RegisterEvents(int numevents); + +/** + * Get window associated with an event. + * + * \param event an event containing a `windowID`. + * \returns the associated window on success or NULL if there is none. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_WaitEvent + * \sa SDL_WaitEventTimeout + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetWindowFromEvent(const SDL_Event *event); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_events_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_filesystem.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_filesystem.h new file mode 100644 index 0000000..af3ca27 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_filesystem.h @@ -0,0 +1,503 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryFilesystem + * + * SDL offers an API for examining and manipulating the system's filesystem. + * This covers most things one would need to do with directories, except for + * actual file I/O (which is covered by [CategoryIOStream](CategoryIOStream) + * and [CategoryAsyncIO](CategoryAsyncIO) instead). + * + * There are functions to answer necessary path questions: + * + * - Where is my app's data? SDL_GetBasePath(). + * - Where can I safely write files? SDL_GetPrefPath(). + * - Where are paths like Downloads, Desktop, Music? SDL_GetUserFolder(). + * - What is this thing at this location? SDL_GetPathInfo(). + * - What items live in this folder? SDL_EnumerateDirectory(). + * - What items live in this folder by wildcard? SDL_GlobDirectory(). + * - What is my current working directory? SDL_GetCurrentDirectory(). + * + * SDL also offers functions to manipulate the directory tree: renaming, + * removing, copying files. + */ + +#ifndef SDL_filesystem_h_ +#define SDL_filesystem_h_ + +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Get the directory where the application was run from. + * + * SDL caches the result of this call internally, but the first call to this + * function is not necessarily fast, so plan accordingly. + * + * **macOS and iOS Specific Functionality**: If the application is in a ".app" + * bundle, this function returns the Resource directory (e.g. + * MyApp.app/Contents/Resources/). This behaviour can be overridden by adding + * a property to the Info.plist file. Adding a string key with the name + * SDL_FILESYSTEM_BASE_DIR_TYPE with a supported value will change the + * behaviour. + * + * Supported values for the SDL_FILESYSTEM_BASE_DIR_TYPE property (Given an + * application in /Applications/SDLApp/MyApp.app): + * + * - `resource`: bundle resource directory (the default). For example: + * `/Applications/SDLApp/MyApp.app/Contents/Resources` + * - `bundle`: the Bundle directory. For example: + * `/Applications/SDLApp/MyApp.app/` + * - `parent`: the containing directory of the bundle. For example: + * `/Applications/SDLApp/` + * + * **Nintendo 3DS Specific Functionality**: This function returns "romfs" + * directory of the application as it is uncommon to store resources outside + * the executable. As such it is not a writable directory. + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * \returns an absolute path in UTF-8 encoding to the application data + * directory. NULL will be returned on error or when the platform + * doesn't implement this functionality, call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPrefPath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetBasePath(void); + +/** + * Get the user-and-app-specific path where files can be written. + * + * Get the "pref dir". This is meant to be where users can write personal + * files (preferences and save games, etc) that are specific to your + * application. This directory is unique per user, per application. + * + * This function will decide the appropriate location in the native + * filesystem, create the directory if necessary, and return a string of the + * absolute path to the directory in UTF-8 encoding. + * + * On Windows, the string might look like: + * + * `C:\\Users\\bob\\AppData\\Roaming\\My Company\\My Program Name\\` + * + * On Linux, the string might look like: + * + * `/home/bob/.local/share/My Program Name/` + * + * On macOS, the string might look like: + * + * `/Users/bob/Library/Application Support/My Program Name/` + * + * You should assume the path returned by this function is the only safe place + * to write files (and that SDL_GetBasePath(), while it might be writable, or + * even the parent of the returned path, isn't where you should be writing + * things). + * + * Both the org and app strings may become part of a directory name, so please + * follow these rules: + * + * - Try to use the same org string (_including case-sensitivity_) for all + * your applications that use this function. + * - Always use a unique app string for each one, and make sure it never + * changes for an app once you've decided on it. + * - Unicode characters are legal, as long as they are UTF-8 encoded, but... + * - ...only use letters, numbers, and spaces. Avoid punctuation like "Game + * Name 2: Bad Guy's Revenge!" ... "Game Name 2" is sufficient. + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * \param org the name of your organization. + * \param app the name of your application. + * \returns a UTF-8 string of the user directory in platform-dependent + * notation. NULL if there's a problem (creating directory failed, + * etc.). This should be freed with SDL_free() when it is no longer + * needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetBasePath + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetPrefPath(const char *org, const char *app); + +/** + * The type of the OS-provided default folder for a specific purpose. + * + * Note that the Trash folder isn't included here, because trashing files + * usually involves extra OS-specific functionality to remember the file's + * original location. + * + * The folders supported per platform are: + * + * | | Windows | macOS/iOS | tvOS | Unix (XDG) | Haiku | Emscripten | + * | ----------- | ------- | --------- | ---- | ---------- | ----- | ---------- | + * | HOME | X | X | | X | X | X | + * | DESKTOP | X | X | | X | X | | + * | DOCUMENTS | X | X | | X | | | + * | DOWNLOADS | Vista+ | X | | X | | | + * | MUSIC | X | X | | X | | | + * | PICTURES | X | X | | X | | | + * | PUBLICSHARE | | X | | X | | | + * | SAVEDGAMES | Vista+ | | | | | | + * | SCREENSHOTS | Vista+ | | | | | | + * | TEMPLATES | X | X | | X | | | + * | VIDEOS | X | X* | | X | | | + * + * Note that on macOS/iOS, the Videos folder is called "Movies". + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetUserFolder + */ +typedef enum SDL_Folder +{ + SDL_FOLDER_HOME, /**< The folder which contains all of the current user's data, preferences, and documents. It usually contains most of the other folders. If a requested folder does not exist, the home folder can be considered a safe fallback to store a user's documents. */ + SDL_FOLDER_DESKTOP, /**< The folder of files that are displayed on the desktop. Note that the existence of a desktop folder does not guarantee that the system does show icons on its desktop; certain GNU/Linux distros with a graphical environment may not have desktop icons. */ + SDL_FOLDER_DOCUMENTS, /**< User document files, possibly application-specific. This is a good place to save a user's projects. */ + SDL_FOLDER_DOWNLOADS, /**< Standard folder for user files downloaded from the internet. */ + SDL_FOLDER_MUSIC, /**< Music files that can be played using a standard music player (mp3, ogg...). */ + SDL_FOLDER_PICTURES, /**< Image files that can be displayed using a standard viewer (png, jpg...). */ + SDL_FOLDER_PUBLICSHARE, /**< Files that are meant to be shared with other users on the same computer. */ + SDL_FOLDER_SAVEDGAMES, /**< Save files for games. */ + SDL_FOLDER_SCREENSHOTS, /**< Application screenshots. */ + SDL_FOLDER_TEMPLATES, /**< Template files to be used when the user requests the desktop environment to create a new file in a certain folder, such as "New Text File.txt". Any file in the Templates folder can be used as a starting point for a new file. */ + SDL_FOLDER_VIDEOS, /**< Video files that can be played using a standard video player (mp4, webm...). */ + SDL_FOLDER_COUNT /**< Total number of types in this enum, not a folder type by itself. */ +} SDL_Folder; + +/** + * Finds the most suitable user folder for a specific purpose. + * + * Many OSes provide certain standard folders for certain purposes, such as + * storing pictures, music or videos for a certain user. This function gives + * the path for many of those special locations. + * + * This function is specifically for _user_ folders, which are meant for the + * user to access and manage. For application-specific folders, meant to hold + * data for the application to manage, see SDL_GetBasePath() and + * SDL_GetPrefPath(). + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * If NULL is returned, the error may be obtained with SDL_GetError(). + * + * \param folder the type of folder to find. + * \returns either a null-terminated C string containing the full path to the + * folder, or NULL if an error happened. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetUserFolder(SDL_Folder folder); + + +/* Abstract filesystem interface */ + +/** + * Types of filesystem entries. + * + * Note that there may be other sorts of items on a filesystem: devices, + * symlinks, named pipes, etc. They are currently reported as + * SDL_PATHTYPE_OTHER. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_PathInfo + */ +typedef enum SDL_PathType +{ + SDL_PATHTYPE_NONE, /**< path does not exist */ + SDL_PATHTYPE_FILE, /**< a normal file */ + SDL_PATHTYPE_DIRECTORY, /**< a directory */ + SDL_PATHTYPE_OTHER /**< something completely different like a device node (not a symlink, those are always followed) */ +} SDL_PathType; + +/** + * Information about a path on the filesystem. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetPathInfo + * \sa SDL_GetStoragePathInfo + */ +typedef struct SDL_PathInfo +{ + SDL_PathType type; /**< the path type */ + Uint64 size; /**< the file size in bytes */ + SDL_Time create_time; /**< the time when the path was created */ + SDL_Time modify_time; /**< the last time the path was modified */ + SDL_Time access_time; /**< the last time the path was read */ +} SDL_PathInfo; + +/** + * Flags for path matching. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GlobDirectory + * \sa SDL_GlobStorageDirectory + */ +typedef Uint32 SDL_GlobFlags; + +#define SDL_GLOB_CASEINSENSITIVE (1u << 0) + +/** + * Create a directory, and any missing parent directories. + * + * This reports success if `path` already exists as a directory. + * + * If parent directories are missing, it will also create them. Note that if + * this fails, it will not remove any parent directories it already made. + * + * \param path the path of the directory to create. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CreateDirectory(const char *path); + +/** + * Possible results from an enumeration callback. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_EnumerateDirectoryCallback + */ +typedef enum SDL_EnumerationResult +{ + SDL_ENUM_CONTINUE, /**< Value that requests that enumeration continue. */ + SDL_ENUM_SUCCESS, /**< Value that requests that enumeration stop, successfully. */ + SDL_ENUM_FAILURE /**< Value that requests that enumeration stop, as a failure. */ +} SDL_EnumerationResult; + +/** + * Callback for directory enumeration. + * + * Enumeration of directory entries will continue until either all entries + * have been provided to the callback, or the callback has requested a stop + * through its return value. + * + * Returning SDL_ENUM_CONTINUE will let enumeration proceed, calling the + * callback with further entries. SDL_ENUM_SUCCESS and SDL_ENUM_FAILURE will + * terminate the enumeration early, and dictate the return value of the + * enumeration function itself. + * + * `dirname` is guaranteed to end with a path separator ('\\' on Windows, '/' + * on most other platforms). + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \param dirname the directory that is being enumerated. + * \param fname the next entry in the enumeration. + * \returns how the enumeration should proceed. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EnumerateDirectory + */ +typedef SDL_EnumerationResult (SDLCALL *SDL_EnumerateDirectoryCallback)(void *userdata, const char *dirname, const char *fname); + +/** + * Enumerate a directory through a callback function. + * + * This function provides every directory entry through an app-provided + * callback, called once for each directory entry, until all results have been + * provided or the callback returns either SDL_ENUM_SUCCESS or + * SDL_ENUM_FAILURE. + * + * This will return false if there was a system problem in general, or if a + * callback returns SDL_ENUM_FAILURE. A successful return means a callback + * returned SDL_ENUM_SUCCESS to halt enumeration, or all directory entries + * were enumerated. + * + * \param path the path of the directory to enumerate. + * \param callback a function that is called for each entry in the directory. + * \param userdata a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnumerateDirectory(const char *path, SDL_EnumerateDirectoryCallback callback, void *userdata); + +/** + * Remove a file or an empty directory. + * + * Directories that are not empty will fail; this function will not recursely + * delete directory trees. + * + * \param path the path to remove from the filesystem. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RemovePath(const char *path); + +/** + * Rename a file or directory. + * + * If the file at `newpath` already exists, it will replaced. + * + * Note that this will not copy files across filesystems/drives/volumes, as + * that is a much more complicated (and possibly time-consuming) operation. + * + * Which is to say, if this function fails, SDL_CopyFile() to a temporary file + * in the same directory as `newpath`, then SDL_RenamePath() from the + * temporary file to `newpath` and SDL_RemovePath() on `oldpath` might work + * for files. Renaming a non-empty directory across filesystems is + * dramatically more complex, however. + * + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenamePath(const char *oldpath, const char *newpath); + +/** + * Copy a file. + * + * If the file at `newpath` already exists, it will be overwritten with the + * contents of the file at `oldpath`. + * + * This function will block until the copy is complete, which might be a + * significant time for large files on slow disks. On some platforms, the copy + * can be handed off to the OS itself, but on others SDL might just open both + * paths, and read from one and write to the other. + * + * Note that this is not an atomic operation! If something tries to read from + * `newpath` while the copy is in progress, it will see an incomplete copy of + * the data, and if the calling thread terminates (or the power goes out) + * during the copy, `newpath`'s previous contents will be gone, replaced with + * an incomplete copy of the data. To avoid this risk, it is recommended that + * the app copy to a temporary file in the same directory as `newpath`, and if + * the copy is successful, use SDL_RenamePath() to replace `newpath` with the + * temporary file. This will ensure that reads of `newpath` will either see a + * complete copy of the data, or it will see the pre-copy state of `newpath`. + * + * This function attempts to synchronize the newly-copied data to disk before + * returning, if the platform allows it, so that the renaming trick will not + * have a problem in a system crash or power failure, where the file could be + * renamed but the contents never made it from the system file cache to the + * physical disk. + * + * If the copy fails for any reason, the state of `newpath` is undefined. It + * might be half a copy, it might be the untouched data of what was already + * there, or it might be a zero-byte file, etc. + * + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CopyFile(const char *oldpath, const char *newpath); + +/** + * Get information about a filesystem path. + * + * \param path the path to query. + * \param info a pointer filled in with information about the path, or NULL to + * check for the existence of a file. + * \returns true on success or false if the file doesn't exist, or another + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetPathInfo(const char *path, SDL_PathInfo *info); + +/** + * Enumerate a directory tree, filtered by pattern, and return a list. + * + * Files are filtered out if they don't match the string in `pattern`, which + * may contain wildcard characters '\*' (match everything) and '?' (match one + * character). If pattern is NULL, no filtering is done and all results are + * returned. Subdirectories are permitted, and are specified with a path + * separator of '/'. Wildcard characters '\*' and '?' never match a path + * separator. + * + * `flags` may be set to SDL_GLOB_CASEINSENSITIVE to make the pattern matching + * case-insensitive. + * + * The returned array is always NULL-terminated, for your iterating + * convenience, but if `count` is non-NULL, on return it will contain the + * number of items in the array, not counting the NULL terminator. + * + * \param path the path of the directory to enumerate. + * \param pattern the pattern that files in the directory must match. Can be + * NULL. + * \param flags `SDL_GLOB_*` bitflags that affect this search. + * \param count on return, will be set to the number of items in the returned + * array. Can be NULL. + * \returns an array of strings on success or NULL on failure; call + * SDL_GetError() for more information. This is a single allocation + * that should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GlobDirectory(const char *path, const char *pattern, SDL_GlobFlags flags, int *count); + +/** + * Get what the system believes is the "current working directory." + * + * For systems without a concept of a current working directory, this will + * still attempt to provide something reasonable. + * + * SDL does not provide a means to _change_ the current working directory; for + * platforms without this concept, this would cause surprises with file access + * outside of SDL. + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * \returns a UTF-8 string of the current working directory in + * platform-dependent notation. NULL if there's a problem. This + * should be freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetCurrentDirectory(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_filesystem_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_gamepad.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_gamepad.h new file mode 100644 index 0000000..99f8b65 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_gamepad.h @@ -0,0 +1,1509 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryGamepad + * + * SDL provides a low-level joystick API, which just treats joysticks as an + * arbitrary pile of buttons, axes, and hat switches. If you're planning to + * write your own control configuration screen, this can give you a lot of + * flexibility, but that's a lot of work, and most things that we consider + * "joysticks" now are actually console-style gamepads. So SDL provides the + * gamepad API on top of the lower-level joystick functionality. + * + * The difference between a joystick and a gamepad is that a gamepad tells you + * _where_ a button or axis is on the device. You don't speak to gamepads in + * terms of arbitrary numbers like "button 3" or "axis 2" but in standard + * locations: the d-pad, the shoulder buttons, triggers, A/B/X/Y (or + * X/O/Square/Triangle, if you will). + * + * One turns a joystick into a gamepad by providing a magic configuration + * string, which tells SDL the details of a specific device: when you see this + * specific hardware, if button 2 gets pressed, this is actually D-Pad Up, + * etc. + * + * SDL has many popular controllers configured out of the box, and users can + * add their own controller details through an environment variable if it's + * otherwise unknown to SDL. + * + * In order to use these functions, SDL_Init() must have been called with the + * SDL_INIT_GAMEPAD flag. This causes SDL to scan the system for gamepads, and + * load appropriate drivers. + * + * If you would like to receive gamepad updates while the application is in + * the background, you should set the following hint before calling + * SDL_Init(): SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS + * + * Gamepads support various optional features such as rumble, color LEDs, + * touchpad, gyro, etc. The support for these features varies depending on the + * controller and OS support available. You can check for LED and rumble + * capabilities at runtime by calling SDL_GetGamepadProperties() and checking + * the various capability properties. You can check for touchpad by calling + * SDL_GetNumGamepadTouchpads() and check for gyro and accelerometer by + * calling SDL_GamepadHasSensor(). + * + * By default SDL will try to use the most capable driver available, but you + * can tune which OS drivers to use with the various joystick hints in + * SDL_hints.h. + * + * Your application should always support gamepad hotplugging. On some + * platforms like Xbox, Steam Deck, etc., this is a requirement for + * certification. On other platforms, like macOS and Windows when using + * Windows.Gaming.Input, controllers may not be available at startup and will + * come in at some point after you've started processing events. + */ + +#ifndef SDL_gamepad_h_ +#define SDL_gamepad_h_ + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The structure used to identify an SDL gamepad + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Gamepad SDL_Gamepad; + +/** + * Standard gamepad types. + * + * This type does not necessarily map to first-party controllers from + * Microsoft/Sony/Nintendo; in many cases, third-party controllers can report + * as these, either because they were designed for a specific console, or they + * simply most closely match that console's controllers (does it have A/B/X/Y + * buttons or X/O/Square/Triangle? Does it have a touchpad? etc). + */ +typedef enum SDL_GamepadType +{ + SDL_GAMEPAD_TYPE_UNKNOWN = 0, + SDL_GAMEPAD_TYPE_STANDARD, + SDL_GAMEPAD_TYPE_XBOX360, + SDL_GAMEPAD_TYPE_XBOXONE, + SDL_GAMEPAD_TYPE_PS3, + SDL_GAMEPAD_TYPE_PS4, + SDL_GAMEPAD_TYPE_PS5, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_PRO, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_LEFT, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_PAIR, + SDL_GAMEPAD_TYPE_COUNT +} SDL_GamepadType; + +/** + * The list of buttons available on a gamepad + * + * For controllers that use a diamond pattern for the face buttons, the + * south/east/west/north buttons below correspond to the locations in the + * diamond pattern. For Xbox controllers, this would be A/B/X/Y, for Nintendo + * Switch controllers, this would be B/A/Y/X, for PlayStation controllers this + * would be Cross/Circle/Square/Triangle. + * + * For controllers that don't use a diamond pattern for the face buttons, the + * south/east/west/north buttons indicate the buttons labeled A, B, C, D, or + * 1, 2, 3, 4, or for controllers that aren't labeled, they are the primary, + * secondary, etc. buttons. + * + * The activate action is often the south button and the cancel action is + * often the east button, but in some regions this is reversed, so your game + * should allow remapping actions based on user preferences. + * + * You can query the labels for the face buttons using + * SDL_GetGamepadButtonLabel() + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadButton +{ + SDL_GAMEPAD_BUTTON_INVALID = -1, + SDL_GAMEPAD_BUTTON_SOUTH, /**< Bottom face button (e.g. Xbox A button) */ + SDL_GAMEPAD_BUTTON_EAST, /**< Right face button (e.g. Xbox B button) */ + SDL_GAMEPAD_BUTTON_WEST, /**< Left face button (e.g. Xbox X button) */ + SDL_GAMEPAD_BUTTON_NORTH, /**< Top face button (e.g. Xbox Y button) */ + SDL_GAMEPAD_BUTTON_BACK, + SDL_GAMEPAD_BUTTON_GUIDE, + SDL_GAMEPAD_BUTTON_START, + SDL_GAMEPAD_BUTTON_LEFT_STICK, + SDL_GAMEPAD_BUTTON_RIGHT_STICK, + SDL_GAMEPAD_BUTTON_LEFT_SHOULDER, + SDL_GAMEPAD_BUTTON_RIGHT_SHOULDER, + SDL_GAMEPAD_BUTTON_DPAD_UP, + SDL_GAMEPAD_BUTTON_DPAD_DOWN, + SDL_GAMEPAD_BUTTON_DPAD_LEFT, + SDL_GAMEPAD_BUTTON_DPAD_RIGHT, + SDL_GAMEPAD_BUTTON_MISC1, /**< Additional button (e.g. Xbox Series X share button, PS5 microphone button, Nintendo Switch Pro capture button, Amazon Luna microphone button, Google Stadia capture button) */ + SDL_GAMEPAD_BUTTON_RIGHT_PADDLE1, /**< Upper or primary paddle, under your right hand (e.g. Xbox Elite paddle P1) */ + SDL_GAMEPAD_BUTTON_LEFT_PADDLE1, /**< Upper or primary paddle, under your left hand (e.g. Xbox Elite paddle P3) */ + SDL_GAMEPAD_BUTTON_RIGHT_PADDLE2, /**< Lower or secondary paddle, under your right hand (e.g. Xbox Elite paddle P2) */ + SDL_GAMEPAD_BUTTON_LEFT_PADDLE2, /**< Lower or secondary paddle, under your left hand (e.g. Xbox Elite paddle P4) */ + SDL_GAMEPAD_BUTTON_TOUCHPAD, /**< PS4/PS5 touchpad button */ + SDL_GAMEPAD_BUTTON_MISC2, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC3, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC4, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC5, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC6, /**< Additional button */ + SDL_GAMEPAD_BUTTON_COUNT +} SDL_GamepadButton; + +/** + * The set of gamepad button labels + * + * This isn't a complete set, just the face buttons to make it easy to show + * button prompts. + * + * For a complete set, you should look at the button and gamepad type and have + * a set of symbols that work well with your art style. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadButtonLabel +{ + SDL_GAMEPAD_BUTTON_LABEL_UNKNOWN, + SDL_GAMEPAD_BUTTON_LABEL_A, + SDL_GAMEPAD_BUTTON_LABEL_B, + SDL_GAMEPAD_BUTTON_LABEL_X, + SDL_GAMEPAD_BUTTON_LABEL_Y, + SDL_GAMEPAD_BUTTON_LABEL_CROSS, + SDL_GAMEPAD_BUTTON_LABEL_CIRCLE, + SDL_GAMEPAD_BUTTON_LABEL_SQUARE, + SDL_GAMEPAD_BUTTON_LABEL_TRIANGLE +} SDL_GamepadButtonLabel; + +/** + * The list of axes available on a gamepad + * + * Thumbstick axis values range from SDL_JOYSTICK_AXIS_MIN to + * SDL_JOYSTICK_AXIS_MAX, and are centered within ~8000 of zero, though + * advanced UI will allow users to set or autodetect the dead zone, which + * varies between gamepads. + * + * Trigger axis values range from 0 (released) to SDL_JOYSTICK_AXIS_MAX (fully + * pressed) when reported by SDL_GetGamepadAxis(). Note that this is not the + * same range that will be reported by the lower-level SDL_GetJoystickAxis(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadAxis +{ + SDL_GAMEPAD_AXIS_INVALID = -1, + SDL_GAMEPAD_AXIS_LEFTX, + SDL_GAMEPAD_AXIS_LEFTY, + SDL_GAMEPAD_AXIS_RIGHTX, + SDL_GAMEPAD_AXIS_RIGHTY, + SDL_GAMEPAD_AXIS_LEFT_TRIGGER, + SDL_GAMEPAD_AXIS_RIGHT_TRIGGER, + SDL_GAMEPAD_AXIS_COUNT +} SDL_GamepadAxis; + +/** + * Types of gamepad control bindings. + * + * A gamepad is a collection of bindings that map arbitrary joystick buttons, + * axes and hat switches to specific positions on a generic console-style + * gamepad. This enum is used as part of SDL_GamepadBinding to specify those + * mappings. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadBindingType +{ + SDL_GAMEPAD_BINDTYPE_NONE = 0, + SDL_GAMEPAD_BINDTYPE_BUTTON, + SDL_GAMEPAD_BINDTYPE_AXIS, + SDL_GAMEPAD_BINDTYPE_HAT +} SDL_GamepadBindingType; + +/** + * A mapping between one joystick input to a gamepad control. + * + * A gamepad has a collection of several bindings, to say, for example, when + * joystick button number 5 is pressed, that should be treated like the + * gamepad's "start" button. + * + * SDL has these bindings built-in for many popular controllers, and can add + * more with a simple text string. Those strings are parsed into a collection + * of these structs to make it easier to operate on the data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadBindings + */ +typedef struct SDL_GamepadBinding +{ + SDL_GamepadBindingType input_type; + union + { + int button; + + struct + { + int axis; + int axis_min; + int axis_max; + } axis; + + struct + { + int hat; + int hat_mask; + } hat; + + } input; + + SDL_GamepadBindingType output_type; + union + { + SDL_GamepadButton button; + + struct + { + SDL_GamepadAxis axis; + int axis_min; + int axis_max; + } axis; + + } output; +} SDL_GamepadBinding; + + +/** + * Add support for gamepads that SDL is unaware of or change the binding of an + * existing gamepad. + * + * The mapping string has the format "GUID,name,mapping", where GUID is the + * string value from SDL_GUIDToString(), name is the human readable string for + * the device and mappings are gamepad mappings to joystick ones. Under + * Windows there is a reserved GUID of "xinput" that covers all XInput + * devices. The mapping format for joystick is: + * + * - `bX`: a joystick button, index X + * - `hX.Y`: hat X with value Y + * - `aX`: axis X of the joystick + * + * Buttons can be used as a gamepad axes and vice versa. + * + * If a device with this GUID is already plugged in, SDL will generate an + * SDL_EVENT_GAMEPAD_ADDED event. + * + * This string shows an example of a valid mapping for a gamepad: + * + * ```c + * "341a3608000000000000504944564944,Afterglow PS3 Controller,a:b1,b:b2,y:b3,x:b0,start:b9,guide:b12,back:b8,dpup:h0.1,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,leftshoulder:b4,rightshoulder:b5,leftstick:b10,rightstick:b11,leftx:a0,lefty:a1,rightx:a2,righty:a3,lefttrigger:b6,righttrigger:b7" + * ``` + * + * \param mapping the mapping string. + * \returns 1 if a new mapping is added, 0 if an existing mapping is updated, + * -1 on failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMappingsFromFile + * \sa SDL_AddGamepadMappingsFromIO + * \sa SDL_GetGamepadMapping + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_HINT_GAMECONTROLLERCONFIG + * \sa SDL_HINT_GAMECONTROLLERCONFIG_FILE + * \sa SDL_EVENT_GAMEPAD_ADDED + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddGamepadMapping(const char *mapping); + +/** + * Load a set of gamepad mappings from an SDL_IOStream. + * + * You can call this function several times, if needed, to load different + * database files. + * + * If a new mapping is loaded for an already known gamepad GUID, the later + * version will overwrite the one currently loaded. + * + * Any new mappings for already plugged in controllers will generate + * SDL_EVENT_GAMEPAD_ADDED events. + * + * Mappings not belonging to the current platform or with no platform field + * specified will be ignored (i.e. mappings for Linux will be ignored in + * Windows, etc). + * + * This function will load the text database entirely in memory before + * processing it, so take this into consideration if you are in a memory + * constrained environment. + * + * \param src the data stream for the mappings to be added. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns the number of mappings added or -1 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_AddGamepadMappingsFromFile + * \sa SDL_GetGamepadMapping + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_HINT_GAMECONTROLLERCONFIG + * \sa SDL_HINT_GAMECONTROLLERCONFIG_FILE + * \sa SDL_EVENT_GAMEPAD_ADDED + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddGamepadMappingsFromIO(SDL_IOStream *src, bool closeio); + +/** + * Load a set of gamepad mappings from a file. + * + * You can call this function several times, if needed, to load different + * database files. + * + * If a new mapping is loaded for an already known gamepad GUID, the later + * version will overwrite the one currently loaded. + * + * Any new mappings for already plugged in controllers will generate + * SDL_EVENT_GAMEPAD_ADDED events. + * + * Mappings not belonging to the current platform or with no platform field + * specified will be ignored (i.e. mappings for Linux will be ignored in + * Windows, etc). + * + * \param file the mappings file to load. + * \returns the number of mappings added or -1 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_AddGamepadMappingsFromIO + * \sa SDL_GetGamepadMapping + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_HINT_GAMECONTROLLERCONFIG + * \sa SDL_HINT_GAMECONTROLLERCONFIG_FILE + * \sa SDL_EVENT_GAMEPAD_ADDED + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddGamepadMappingsFromFile(const char *file); + +/** + * Reinitialize the SDL mapping database to its initial state. + * + * This will generate gamepad events as needed if device mappings change. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReloadGamepadMappings(void); + +/** + * Get the current gamepad mappings. + * + * \param count a pointer filled in with the number of mappings returned, can + * be NULL. + * \returns an array of the mapping strings, NULL-terminated, or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GetGamepadMappings(int *count); + +/** + * Get the gamepad mapping string for a given GUID. + * + * \param guid a structure containing the GUID for which a mapping is desired. + * \returns a mapping string or NULL on failure; call SDL_GetError() for more + * information. This should be freed with SDL_free() when it is no + * longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUIDForID + * \sa SDL_GetJoystickGUID + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetGamepadMappingForGUID(SDL_GUID guid); + +/** + * Get the current mapping of a gamepad. + * + * Details about mappings are discussed with SDL_AddGamepadMapping(). + * + * \param gamepad the gamepad you want to get the current mapping for. + * \returns a string that has the gamepad's mapping or NULL if no mapping is + * available; call SDL_GetError() for more information. This should + * be freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_GetGamepadMappingForID + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_SetGamepadMapping + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetGamepadMapping(SDL_Gamepad *gamepad); + +/** + * Set the current mapping of a joystick or gamepad. + * + * Details about mappings are discussed with SDL_AddGamepadMapping(). + * + * \param instance_id the joystick instance ID. + * \param mapping the mapping to use for this device, or NULL to clear the + * mapping. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_GetGamepadMapping + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadMapping(SDL_JoystickID instance_id, const char *mapping); + +/** + * Return whether a gamepad is currently connected. + * + * \returns true if a gamepad is connected, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasGamepad(void); + +/** + * Get a list of currently connected gamepads. + * + * \param count a pointer filled in with the number of gamepads returned, may + * be NULL. + * \returns a 0 terminated array of joystick instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasGamepad + * \sa SDL_OpenGamepad + */ +extern SDL_DECLSPEC SDL_JoystickID * SDLCALL SDL_GetGamepads(int *count); + +/** + * Check if the given joystick is supported by the gamepad interface. + * + * \param instance_id the joystick instance ID. + * \returns true if the given joystick is supported by the gamepad interface, + * false if it isn't or it's an invalid index. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoysticks + * \sa SDL_OpenGamepad + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsGamepad(SDL_JoystickID instance_id); + +/** + * Get the implementation dependent name of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the name of the selected gamepad. If no name can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadName + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadNameForID(SDL_JoystickID instance_id); + +/** + * Get the implementation dependent path of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the path of the selected gamepad. If no path can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPath + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadPathForID(SDL_JoystickID instance_id); + +/** + * Get the player index of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the player index of a gamepad, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPlayerIndex + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetGamepadPlayerIndexForID(SDL_JoystickID instance_id); + +/** + * Get the implementation-dependent GUID of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the GUID of the selected gamepad. If called on an invalid index, + * this function returns a zero GUID. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GUIDToString + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_GetGamepadGUIDForID(SDL_JoystickID instance_id); + +/** + * Get the USB vendor ID of a gamepad, if available. + * + * This can be called before any gamepads are opened. If the vendor ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB vendor ID of the selected gamepad. If called on an invalid + * index, this function returns zero. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadVendor + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadVendorForID(SDL_JoystickID instance_id); + +/** + * Get the USB product ID of a gamepad, if available. + * + * This can be called before any gamepads are opened. If the product ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB product ID of the selected gamepad. If called on an + * invalid index, this function returns zero. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProduct + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProductForID(SDL_JoystickID instance_id); + +/** + * Get the product version of a gamepad, if available. + * + * This can be called before any gamepads are opened. If the product version + * isn't available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the product version of the selected gamepad. If called on an + * invalid index, this function returns zero. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProductVersion + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProductVersionForID(SDL_JoystickID instance_id); + +/** + * Get the type of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the gamepad type. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadType + * \sa SDL_GetGamepads + * \sa SDL_GetRealGamepadTypeForID + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadTypeForID(SDL_JoystickID instance_id); + +/** + * Get the type of a gamepad, ignoring any mapping override. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the gamepad type. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTypeForID + * \sa SDL_GetGamepads + * \sa SDL_GetRealGamepadType + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetRealGamepadTypeForID(SDL_JoystickID instance_id); + +/** + * Get the mapping of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the mapping string. Returns NULL if no mapping is available. This + * should be freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepads + * \sa SDL_GetGamepadMapping + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetGamepadMappingForID(SDL_JoystickID instance_id); + +/** + * Open a gamepad for use. + * + * \param instance_id the joystick instance ID. + * \returns a gamepad identifier or NULL if an error occurred; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseGamepad + * \sa SDL_IsGamepad + */ +extern SDL_DECLSPEC SDL_Gamepad * SDLCALL SDL_OpenGamepad(SDL_JoystickID instance_id); + +/** + * Get the SDL_Gamepad associated with a joystick instance ID, if it has been + * opened. + * + * \param instance_id the joystick instance ID of the gamepad. + * \returns an SDL_Gamepad on success or NULL on failure or if it hasn't been + * opened yet; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Gamepad * SDLCALL SDL_GetGamepadFromID(SDL_JoystickID instance_id); + +/** + * Get the SDL_Gamepad associated with a player index. + * + * \param player_index the player index, which different from the instance ID. + * \returns the SDL_Gamepad associated with a player index. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPlayerIndex + * \sa SDL_SetGamepadPlayerIndex + */ +extern SDL_DECLSPEC SDL_Gamepad * SDLCALL SDL_GetGamepadFromPlayerIndex(int player_index); + +/** + * Get the properties associated with an opened gamepad. + * + * These properties are shared with the underlying joystick object. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_GAMEPAD_CAP_MONO_LED_BOOLEAN`: true if this gamepad has an LED + * that has adjustable brightness + * - `SDL_PROP_GAMEPAD_CAP_RGB_LED_BOOLEAN`: true if this gamepad has an LED + * that has adjustable color + * - `SDL_PROP_GAMEPAD_CAP_PLAYER_LED_BOOLEAN`: true if this gamepad has a + * player LED + * - `SDL_PROP_GAMEPAD_CAP_RUMBLE_BOOLEAN`: true if this gamepad has + * left/right rumble + * - `SDL_PROP_GAMEPAD_CAP_TRIGGER_RUMBLE_BOOLEAN`: true if this gamepad has + * simple trigger rumble + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetGamepadProperties(SDL_Gamepad *gamepad); + +#define SDL_PROP_GAMEPAD_CAP_MONO_LED_BOOLEAN SDL_PROP_JOYSTICK_CAP_MONO_LED_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_RGB_LED_BOOLEAN SDL_PROP_JOYSTICK_CAP_RGB_LED_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_PLAYER_LED_BOOLEAN SDL_PROP_JOYSTICK_CAP_PLAYER_LED_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_RUMBLE_BOOLEAN SDL_PROP_JOYSTICK_CAP_RUMBLE_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_TRIGGER_RUMBLE_BOOLEAN SDL_PROP_JOYSTICK_CAP_TRIGGER_RUMBLE_BOOLEAN + +/** + * Get the instance ID of an opened gamepad. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns the instance ID of the specified gamepad on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickID SDLCALL SDL_GetGamepadID(SDL_Gamepad *gamepad); + +/** + * Get the implementation-dependent name for an opened gamepad. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns the implementation dependent name for the gamepad, or NULL if + * there is no name or the identifier passed is invalid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadNameForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadName(SDL_Gamepad *gamepad); + +/** + * Get the implementation-dependent path for an opened gamepad. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns the implementation dependent path for the gamepad, or NULL if + * there is no path or the identifier passed is invalid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPathForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadPath(SDL_Gamepad *gamepad); + +/** + * Get the type of an opened gamepad. + * + * \param gamepad the gamepad object to query. + * \returns the gamepad type, or SDL_GAMEPAD_TYPE_UNKNOWN if it's not + * available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTypeForID + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadType(SDL_Gamepad *gamepad); + +/** + * Get the type of an opened gamepad, ignoring any mapping override. + * + * \param gamepad the gamepad object to query. + * \returns the gamepad type, or SDL_GAMEPAD_TYPE_UNKNOWN if it's not + * available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRealGamepadTypeForID + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetRealGamepadType(SDL_Gamepad *gamepad); + +/** + * Get the player index of an opened gamepad. + * + * For XInput gamepads this returns the XInput user index. + * + * \param gamepad the gamepad object to query. + * \returns the player index for gamepad, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetGamepadPlayerIndex + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetGamepadPlayerIndex(SDL_Gamepad *gamepad); + +/** + * Set the player index of an opened gamepad. + * + * \param gamepad the gamepad object to adjust. + * \param player_index player index to assign to this gamepad, or -1 to clear + * the player index and turn off player LEDs. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPlayerIndex + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadPlayerIndex(SDL_Gamepad *gamepad, int player_index); + +/** + * Get the USB vendor ID of an opened gamepad, if available. + * + * If the vendor ID isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the USB vendor ID, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadVendorForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadVendor(SDL_Gamepad *gamepad); + +/** + * Get the USB product ID of an opened gamepad, if available. + * + * If the product ID isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the USB product ID, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProductForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProduct(SDL_Gamepad *gamepad); + +/** + * Get the product version of an opened gamepad, if available. + * + * If the product version isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the USB product version, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProductVersionForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProductVersion(SDL_Gamepad *gamepad); + +/** + * Get the firmware version of an opened gamepad, if available. + * + * If the firmware version isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the gamepad firmware version, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadFirmwareVersion(SDL_Gamepad *gamepad); + +/** + * Get the serial number of an opened gamepad, if available. + * + * Returns the serial number of the gamepad, or NULL if it is not available. + * + * \param gamepad the gamepad object to query. + * \returns the serial number, or NULL if unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadSerial(SDL_Gamepad *gamepad); + +/** + * Get the Steam Input handle of an opened gamepad, if available. + * + * Returns an InputHandle_t for the gamepad that can be used with Steam Input + * API: https://partner.steamgames.com/doc/api/ISteamInput + * + * \param gamepad the gamepad object to query. + * \returns the gamepad handle, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetGamepadSteamHandle(SDL_Gamepad *gamepad); + +/** + * Get the connection state of a gamepad. + * + * \param gamepad the gamepad object to query. + * \returns the connection state on success or + * `SDL_JOYSTICK_CONNECTION_INVALID` on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickConnectionState SDLCALL SDL_GetGamepadConnectionState(SDL_Gamepad *gamepad); + +/** + * Get the battery state of a gamepad. + * + * You should never take a battery status as absolute truth. Batteries + * (especially failing batteries) are delicate hardware, and the values + * reported here are best estimates based on what that hardware reports. It's + * not uncommon for older batteries to lose stored power much faster than it + * reports, or completely drain when reporting it has 20 percent left, etc. + * + * \param gamepad the gamepad object to query. + * \param percent a pointer filled in with the percentage of battery life + * left, between 0 and 100, or NULL to ignore. This will be + * filled in with -1 we can't determine a value or there is no + * battery. + * \returns the current battery state. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PowerState SDLCALL SDL_GetGamepadPowerInfo(SDL_Gamepad *gamepad, int *percent); + +/** + * Check if a gamepad has been opened and is currently connected. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns true if the gamepad has been opened and is currently connected, or + * false if not. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadConnected(SDL_Gamepad *gamepad); + +/** + * Get the underlying joystick from a gamepad. + * + * This function will give you a SDL_Joystick object, which allows you to use + * the SDL_Joystick functions with a SDL_Gamepad object. This would be useful + * for getting a joystick's position at any given time, even if it hasn't + * moved (moving it would produce an event, which would have the axis' value). + * + * The pointer returned is owned by the SDL_Gamepad. You should not call + * SDL_CloseJoystick() on it, for example, since doing so will likely cause + * SDL to crash. + * + * \param gamepad the gamepad object that you want to get a joystick from. + * \returns an SDL_Joystick object, or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_GetGamepadJoystick(SDL_Gamepad *gamepad); + +/** + * Set the state of gamepad event processing. + * + * If gamepad events are disabled, you must call SDL_UpdateGamepads() yourself + * and check the state of the gamepad when you want gamepad information. + * + * \param enabled whether to process gamepad events or not. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadEventsEnabled + * \sa SDL_UpdateGamepads + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGamepadEventsEnabled(bool enabled); + +/** + * Query the state of gamepad event processing. + * + * If gamepad events are disabled, you must call SDL_UpdateGamepads() yourself + * and check the state of the gamepad when you want gamepad information. + * + * \returns true if gamepad events are being processed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetGamepadEventsEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadEventsEnabled(void); + +/** + * Get the SDL joystick layer bindings for a gamepad. + * + * \param gamepad a gamepad. + * \param count a pointer filled in with the number of bindings returned. + * \returns a NULL terminated array of pointers to bindings or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GamepadBinding ** SDLCALL SDL_GetGamepadBindings(SDL_Gamepad *gamepad, int *count); + +/** + * Manually pump gamepad updates if not using the loop. + * + * This function is called automatically by the event loop if events are + * enabled. Under such circumstances, it will not be necessary to call this + * function. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateGamepads(void); + +/** + * Convert a string into SDL_GamepadType enum. + * + * This function is called internally to translate SDL_Gamepad mapping strings + * for the underlying joystick device into the consistent SDL_Gamepad mapping. + * You do not normally need to call this function unless you are parsing + * SDL_Gamepad mappings in your own code. + * + * \param str string representing a SDL_GamepadType type. + * \returns the SDL_GamepadType enum corresponding to the input string, or + * `SDL_GAMEPAD_TYPE_UNKNOWN` if no match was found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadStringForType + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadTypeFromString(const char *str); + +/** + * Convert from an SDL_GamepadType enum to a string. + * + * \param type an enum value for a given SDL_GamepadType. + * \returns a string for the given type, or NULL if an invalid type is + * specified. The string returned is of the format used by + * SDL_Gamepad mapping strings. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTypeFromString + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadStringForType(SDL_GamepadType type); + +/** + * Convert a string into SDL_GamepadAxis enum. + * + * This function is called internally to translate SDL_Gamepad mapping strings + * for the underlying joystick device into the consistent SDL_Gamepad mapping. + * You do not normally need to call this function unless you are parsing + * SDL_Gamepad mappings in your own code. + * + * Note specially that "righttrigger" and "lefttrigger" map to + * `SDL_GAMEPAD_AXIS_RIGHT_TRIGGER` and `SDL_GAMEPAD_AXIS_LEFT_TRIGGER`, + * respectively. + * + * \param str string representing a SDL_Gamepad axis. + * \returns the SDL_GamepadAxis enum corresponding to the input string, or + * `SDL_GAMEPAD_AXIS_INVALID` if no match was found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadStringForAxis + */ +extern SDL_DECLSPEC SDL_GamepadAxis SDLCALL SDL_GetGamepadAxisFromString(const char *str); + +/** + * Convert from an SDL_GamepadAxis enum to a string. + * + * \param axis an enum value for a given SDL_GamepadAxis. + * \returns a string for the given axis, or NULL if an invalid axis is + * specified. The string returned is of the format used by + * SDL_Gamepad mapping strings. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadAxisFromString + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadStringForAxis(SDL_GamepadAxis axis); + +/** + * Query whether a gamepad has a given axis. + * + * This merely reports whether the gamepad's mapping defined this axis, as + * that is all the information SDL has about the physical device. + * + * \param gamepad a gamepad. + * \param axis an axis enum value (an SDL_GamepadAxis value). + * \returns true if the gamepad has this axis, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasButton + * \sa SDL_GetGamepadAxis + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadHasAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis); + +/** + * Get the current state of an axis control on a gamepad. + * + * The axis indices start at index 0. + * + * For thumbsticks, the state is a value ranging from -32768 (up/left) to + * 32767 (down/right). + * + * Triggers range from 0 when released to 32767 when fully pressed, and never + * return a negative value. Note that this differs from the value reported by + * the lower-level SDL_GetJoystickAxis(), which normally uses the full range. + * + * \param gamepad a gamepad. + * \param axis an axis index (one of the SDL_GamepadAxis values). + * \returns axis state (including 0) on success or 0 (also) on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasAxis + * \sa SDL_GetGamepadButton + */ +extern SDL_DECLSPEC Sint16 SDLCALL SDL_GetGamepadAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis); + +/** + * Convert a string into an SDL_GamepadButton enum. + * + * This function is called internally to translate SDL_Gamepad mapping strings + * for the underlying joystick device into the consistent SDL_Gamepad mapping. + * You do not normally need to call this function unless you are parsing + * SDL_Gamepad mappings in your own code. + * + * \param str string representing a SDL_Gamepad axis. + * \returns the SDL_GamepadButton enum corresponding to the input string, or + * `SDL_GAMEPAD_BUTTON_INVALID` if no match was found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadStringForButton + */ +extern SDL_DECLSPEC SDL_GamepadButton SDLCALL SDL_GetGamepadButtonFromString(const char *str); + +/** + * Convert from an SDL_GamepadButton enum to a string. + * + * \param button an enum value for a given SDL_GamepadButton. + * \returns a string for the given button, or NULL if an invalid button is + * specified. The string returned is of the format used by + * SDL_Gamepad mapping strings. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadButtonFromString + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadStringForButton(SDL_GamepadButton button); + +/** + * Query whether a gamepad has a given button. + * + * This merely reports whether the gamepad's mapping defined this button, as + * that is all the information SDL has about the physical device. + * + * \param gamepad a gamepad. + * \param button a button enum value (an SDL_GamepadButton value). + * \returns true if the gamepad has this button, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasAxis + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadHasButton(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Get the current state of a button on a gamepad. + * + * \param gamepad a gamepad. + * \param button a button index (one of the SDL_GamepadButton values). + * \returns true if the button is pressed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasButton + * \sa SDL_GetGamepadAxis + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGamepadButton(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Get the label of a button on a gamepad. + * + * \param type the type of gamepad to check. + * \param button a button index (one of the SDL_GamepadButton values). + * \returns the SDL_GamepadButtonLabel enum corresponding to the button label. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadButtonLabel + */ +extern SDL_DECLSPEC SDL_GamepadButtonLabel SDLCALL SDL_GetGamepadButtonLabelForType(SDL_GamepadType type, SDL_GamepadButton button); + +/** + * Get the label of a button on a gamepad. + * + * \param gamepad a gamepad. + * \param button a button index (one of the SDL_GamepadButton values). + * \returns the SDL_GamepadButtonLabel enum corresponding to the button label. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadButtonLabelForType + */ +extern SDL_DECLSPEC SDL_GamepadButtonLabel SDLCALL SDL_GetGamepadButtonLabel(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Get the number of touchpads on a gamepad. + * + * \param gamepad a gamepad. + * \returns number of touchpads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumGamepadTouchpadFingers + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumGamepadTouchpads(SDL_Gamepad *gamepad); + +/** + * Get the number of supported simultaneous fingers on a touchpad on a game + * gamepad. + * + * \param gamepad a gamepad. + * \param touchpad a touchpad. + * \returns number of supported simultaneous fingers. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTouchpadFinger + * \sa SDL_GetNumGamepadTouchpads + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumGamepadTouchpadFingers(SDL_Gamepad *gamepad, int touchpad); + +/** + * Get the current state of a finger on a touchpad on a gamepad. + * + * \param gamepad a gamepad. + * \param touchpad a touchpad. + * \param finger a finger. + * \param down a pointer filled with true if the finger is down, false + * otherwise, may be NULL. + * \param x a pointer filled with the x position, normalized 0 to 1, with the + * origin in the upper left, may be NULL. + * \param y a pointer filled with the y position, normalized 0 to 1, with the + * origin in the upper left, may be NULL. + * \param pressure a pointer filled with pressure value, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumGamepadTouchpadFingers + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGamepadTouchpadFinger(SDL_Gamepad *gamepad, int touchpad, int finger, bool *down, float *x, float *y, float *pressure); + +/** + * Return whether a gamepad has a particular sensor. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \returns true if the sensor exists, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadSensorData + * \sa SDL_GetGamepadSensorDataRate + * \sa SDL_SetGamepadSensorEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadHasSensor(SDL_Gamepad *gamepad, SDL_SensorType type); + +/** + * Set whether data reporting for a gamepad sensor is enabled. + * + * \param gamepad the gamepad to update. + * \param type the type of sensor to enable/disable. + * \param enabled whether data reporting should be enabled. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasSensor + * \sa SDL_GamepadSensorEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadSensorEnabled(SDL_Gamepad *gamepad, SDL_SensorType type, bool enabled); + +/** + * Query whether sensor data reporting is enabled for a gamepad. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \returns true if the sensor is enabled, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetGamepadSensorEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadSensorEnabled(SDL_Gamepad *gamepad, SDL_SensorType type); + +/** + * Get the data rate (number of events per second) of a gamepad sensor. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \returns the data rate, or 0.0f if the data rate is not available. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetGamepadSensorDataRate(SDL_Gamepad *gamepad, SDL_SensorType type); + +/** + * Get the current state of a gamepad sensor. + * + * The number of values and interpretation of the data is sensor dependent. + * See SDL_sensor.h for the details for each type of sensor. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \param data a pointer filled with the current sensor state. + * \param num_values the number of values to write to data. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGamepadSensorData(SDL_Gamepad *gamepad, SDL_SensorType type, float *data, int num_values); + +/** + * Start a rumble effect on a gamepad. + * + * Each call to this function cancels any previous rumble effect, and calling + * it with 0 intensity stops any rumbling. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param gamepad the gamepad to vibrate. + * \param low_frequency_rumble the intensity of the low frequency (left) + * rumble motor, from 0 to 0xFFFF. + * \param high_frequency_rumble the intensity of the high frequency (right) + * rumble motor, from 0 to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleGamepad(SDL_Gamepad *gamepad, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble, Uint32 duration_ms); + +/** + * Start a rumble effect in the gamepad's triggers. + * + * Each call to this function cancels any previous trigger rumble effect, and + * calling it with 0 intensity stops any rumbling. + * + * Note that this is rumbling of the _triggers_ and not the gamepad as a + * whole. This is currently only supported on Xbox One gamepads. If you want + * the (more common) whole-gamepad rumble, use SDL_RumbleGamepad() instead. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param gamepad the gamepad to vibrate. + * \param left_rumble the intensity of the left trigger rumble motor, from 0 + * to 0xFFFF. + * \param right_rumble the intensity of the right trigger rumble motor, from 0 + * to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RumbleGamepad + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleGamepadTriggers(SDL_Gamepad *gamepad, Uint16 left_rumble, Uint16 right_rumble, Uint32 duration_ms); + +/** + * Update a gamepad's LED color. + * + * An example of a joystick LED is the light on the back of a PlayStation 4's + * DualShock 4 controller. + * + * For gamepads with a single color LED, the maximum of the RGB values will be + * used as the LED brightness. + * + * \param gamepad the gamepad to update. + * \param red the intensity of the red LED. + * \param green the intensity of the green LED. + * \param blue the intensity of the blue LED. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadLED(SDL_Gamepad *gamepad, Uint8 red, Uint8 green, Uint8 blue); + +/** + * Send a gamepad specific effect packet. + * + * \param gamepad the gamepad to affect. + * \param data the data to send to the gamepad. + * \param size the size of the data to send to the gamepad. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendGamepadEffect(SDL_Gamepad *gamepad, const void *data, int size); + +/** + * Close a gamepad previously opened with SDL_OpenGamepad(). + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenGamepad + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseGamepad(SDL_Gamepad *gamepad); + +/** + * Return the sfSymbolsName for a given button on a gamepad on Apple + * platforms. + * + * \param gamepad the gamepad to query. + * \param button a button on the gamepad. + * \returns the sfSymbolsName or NULL if the name can't be found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadAppleSFSymbolsNameForAxis + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadAppleSFSymbolsNameForButton(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Return the sfSymbolsName for a given axis on a gamepad on Apple platforms. + * + * \param gamepad the gamepad to query. + * \param axis an axis on the gamepad. + * \returns the sfSymbolsName or NULL if the name can't be found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadAppleSFSymbolsNameForButton + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadAppleSFSymbolsNameForAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_gamepad_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_gpu.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_gpu.h new file mode 100644 index 0000000..4a5e32f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_gpu.h @@ -0,0 +1,4213 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: GPU */ + +/** + * # CategoryGPU + * + * The GPU API offers a cross-platform way for apps to talk to modern graphics + * hardware. It offers both 3D graphics and compute support, in the style of + * Metal, Vulkan, and Direct3D 12. + * + * A basic workflow might be something like this: + * + * The app creates a GPU device with SDL_CreateGPUDevice(), and assigns it to + * a window with SDL_ClaimWindowForGPUDevice()--although strictly speaking you + * can render offscreen entirely, perhaps for image processing, and not use a + * window at all. + * + * Next, the app prepares static data (things that are created once and used + * over and over). For example: + * + * - Shaders (programs that run on the GPU): use SDL_CreateGPUShader(). + * - Vertex buffers (arrays of geometry data) and other rendering data: use + * SDL_CreateGPUBuffer() and SDL_UploadToGPUBuffer(). + * - Textures (images): use SDL_CreateGPUTexture() and + * SDL_UploadToGPUTexture(). + * - Samplers (how textures should be read from): use SDL_CreateGPUSampler(). + * - Render pipelines (precalculated rendering state): use + * SDL_CreateGPUGraphicsPipeline() + * + * To render, the app creates one or more command buffers, with + * SDL_AcquireGPUCommandBuffer(). Command buffers collect rendering + * instructions that will be submitted to the GPU in batch. Complex scenes can + * use multiple command buffers, maybe configured across multiple threads in + * parallel, as long as they are submitted in the correct order, but many apps + * will just need one command buffer per frame. + * + * Rendering can happen to a texture (what other APIs call a "render target") + * or it can happen to the swapchain texture (which is just a special texture + * that represents a window's contents). The app can use + * SDL_WaitAndAcquireGPUSwapchainTexture() to render to the window. + * + * Rendering actually happens in a Render Pass, which is encoded into a + * command buffer. One can encode multiple render passes (or alternate between + * render and compute passes) in a single command buffer, but many apps might + * simply need a single render pass in a single command buffer. Render Passes + * can render to up to four color textures and one depth texture + * simultaneously. If the set of textures being rendered to needs to change, + * the Render Pass must be ended and a new one must be begun. + * + * The app calls SDL_BeginGPURenderPass(). Then it sets states it needs for + * each draw: + * + * - SDL_BindGPUGraphicsPipeline() + * - SDL_SetGPUViewport() + * - SDL_BindGPUVertexBuffers() + * - SDL_BindGPUVertexSamplers() + * - etc + * + * Then, make the actual draw commands with these states: + * + * - SDL_DrawGPUPrimitives() + * - SDL_DrawGPUPrimitivesIndirect() + * - SDL_DrawGPUIndexedPrimitivesIndirect() + * - etc + * + * After all the drawing commands for a pass are complete, the app should call + * SDL_EndGPURenderPass(). Once a render pass ends all render-related state is + * reset. + * + * The app can begin new Render Passes and make new draws in the same command + * buffer until the entire scene is rendered. + * + * Once all of the render commands for the scene are complete, the app calls + * SDL_SubmitGPUCommandBuffer() to send it to the GPU for processing. + * + * If the app needs to read back data from texture or buffers, the API has an + * efficient way of doing this, provided that the app is willing to tolerate + * some latency. When the app uses SDL_DownloadFromGPUTexture() or + * SDL_DownloadFromGPUBuffer(), submitting the command buffer with + * SDL_SubmitGPUCommandBufferAndAcquireFence() will return a fence handle that + * the app can poll or wait on in a thread. Once the fence indicates that the + * command buffer is done processing, it is safe to read the downloaded data. + * Make sure to call SDL_ReleaseGPUFence() when done with the fence. + * + * The API also has "compute" support. The app calls SDL_BeginGPUComputePass() + * with compute-writeable textures and/or buffers, which can be written to in + * a compute shader. Then it sets states it needs for the compute dispatches: + * + * - SDL_BindGPUComputePipeline() + * - SDL_BindGPUComputeStorageBuffers() + * - SDL_BindGPUComputeStorageTextures() + * + * Then, dispatch compute work: + * + * - SDL_DispatchGPUCompute() + * + * For advanced users, this opens up powerful GPU-driven workflows. + * + * Graphics and compute pipelines require the use of shaders, which as + * mentioned above are small programs executed on the GPU. Each backend + * (Vulkan, Metal, D3D12) requires a different shader format. When the app + * creates the GPU device, the app lets the device know which shader formats + * the app can provide. It will then select the appropriate backend depending + * on the available shader formats and the backends available on the platform. + * When creating shaders, the app must provide the correct shader format for + * the selected backend. If you would like to learn more about why the API + * works this way, there is a detailed + * [blog post](https://moonside.games/posts/layers-all-the-way-down/) + * explaining this situation. + * + * It is optimal for apps to pre-compile the shader formats they might use, + * but for ease of use SDL provides a separate project, + * [SDL_shadercross](https://github.com/libsdl-org/SDL_shadercross) + * , for performing runtime shader cross-compilation. It also has a CLI + * interface for offline precompilation as well. + * + * This is an extremely quick overview that leaves out several important + * details. Already, though, one can see that GPU programming can be quite + * complex! If you just need simple 2D graphics, the + * [Render API](https://wiki.libsdl.org/SDL3/CategoryRender) + * is much easier to use but still hardware-accelerated. That said, even for + * 2D applications the performance benefits and expressiveness of the GPU API + * are significant. + * + * The GPU API targets a feature set with a wide range of hardware support and + * ease of portability. It is designed so that the app won't have to branch + * itself by querying feature support. If you need cutting-edge features with + * limited hardware support, this API is probably not for you. + * + * Examples demonstrating proper usage of this API can be found + * [here](https://github.com/TheSpydog/SDL_gpu_examples) + * . + * + * ## Performance considerations + * + * Here are some basic tips for maximizing your rendering performance. + * + * - Beginning a new render pass is relatively expensive. Use as few render + * passes as you can. + * - Minimize the amount of state changes. For example, binding a pipeline is + * relatively cheap, but doing it hundreds of times when you don't need to + * will slow the performance significantly. + * - Perform your data uploads as early as possible in the frame. + * - Don't churn resources. Creating and releasing resources is expensive. + * It's better to create what you need up front and cache it. + * - Don't use uniform buffers for large amounts of data (more than a matrix + * or so). Use a storage buffer instead. + * - Use cycling correctly. There is a detailed explanation of cycling further + * below. + * - Use culling techniques to minimize pixel writes. The less writing the GPU + * has to do the better. Culling can be a very advanced topic but even + * simple culling techniques can boost performance significantly. + * + * In general try to remember the golden rule of performance: doing things is + * more expensive than not doing things. Don't Touch The Driver! + * + * ## FAQ + * + * **Question: When are you adding more advanced features, like ray tracing or + * mesh shaders?** + * + * Answer: We don't have immediate plans to add more bleeding-edge features, + * but we certainly might in the future, when these features prove worthwhile, + * and reasonable to implement across several platforms and underlying APIs. + * So while these things are not in the "never" category, they are definitely + * not "near future" items either. + * + * **Question: Why is my shader not working?** + * + * Answer: A common oversight when using shaders is not properly laying out + * the shader resources/registers correctly. The GPU API is very strict with + * how it wants resources to be laid out and it's difficult for the API to + * automatically validate shaders to see if they have a compatible layout. See + * the documentation for SDL_CreateGPUShader() and + * SDL_CreateGPUComputePipeline() for information on the expected layout. + * + * Another common issue is not setting the correct number of samplers, + * textures, and buffers in SDL_GPUShaderCreateInfo. If possible use shader + * reflection to extract the required information from the shader + * automatically instead of manually filling in the struct's values. + * + * **Question: My application isn't performing very well. Is this the GPU + * API's fault?** + * + * Answer: No. Long answer: The GPU API is a relatively thin layer over the + * underlying graphics API. While it's possible that we have done something + * inefficiently, it's very unlikely especially if you are relatively + * inexperienced with GPU rendering. Please see the performance tips above and + * make sure you are following them. Additionally, tools like RenderDoc can be + * very helpful for diagnosing incorrect behavior and performance issues. + * + * ## System Requirements + * + * **Vulkan:** Supported on Windows, Linux, Nintendo Switch, and certain + * Android devices. Requires Vulkan 1.0 with the following extensions and + * device features: + * + * - `VK_KHR_swapchain` + * - `VK_KHR_maintenance1` + * - `independentBlend` + * - `imageCubeArray` + * - `depthClamp` + * - `shaderClipDistance` + * - `drawIndirectFirstInstance` + * + * **D3D12:** Supported on Windows 10 or newer, Xbox One (GDK), and Xbox + * Series X|S (GDK). Requires a GPU that supports DirectX 12 Feature Level + * 11_1. + * + * **Metal:** Supported on macOS 10.14+ and iOS/tvOS 13.0+. Hardware + * requirements vary by operating system: + * + * - macOS requires an Apple Silicon or + * [Intel Mac2 family](https://developer.apple.com/documentation/metal/mtlfeatureset/mtlfeatureset_macos_gpufamily2_v1?language=objc) + * GPU + * - iOS/tvOS requires an A9 GPU or newer + * - iOS Simulator and tvOS Simulator are unsupported + * + * ## Uniform Data + * + * Uniforms are for passing data to shaders. The uniform data will be constant + * across all executions of the shader. + * + * There are 4 available uniform slots per shader stage (where the stages are + * vertex, fragment, and compute). Uniform data pushed to a slot on a stage + * keeps its value throughout the command buffer until you call the relevant + * Push function on that slot again. + * + * For example, you could write your vertex shaders to read a camera matrix + * from uniform binding slot 0, push the camera matrix at the start of the + * command buffer, and that data will be used for every subsequent draw call. + * + * It is valid to push uniform data during a render or compute pass. + * + * Uniforms are best for pushing small amounts of data. If you are pushing + * more than a matrix or two per call you should consider using a storage + * buffer instead. + * + * ## A Note On Cycling + * + * When using a command buffer, operations do not occur immediately - they + * occur some time after the command buffer is submitted. + * + * When a resource is used in a pending or active command buffer, it is + * considered to be "bound". When a resource is no longer used in any pending + * or active command buffers, it is considered to be "unbound". + * + * If data resources are bound, it is unspecified when that data will be + * unbound unless you acquire a fence when submitting the command buffer and + * wait on it. However, this doesn't mean you need to track resource usage + * manually. + * + * All of the functions and structs that involve writing to a resource have a + * "cycle" bool. SDL_GPUTransferBuffer, SDL_GPUBuffer, and SDL_GPUTexture all + * effectively function as ring buffers on internal resources. When cycle is + * true, if the resource is bound, the cycle rotates to the next unbound + * internal resource, or if none are available, a new one is created. This + * means you don't have to worry about complex state tracking and + * synchronization as long as cycling is correctly employed. + * + * For example: you can call SDL_MapGPUTransferBuffer(), write texture data, + * SDL_UnmapGPUTransferBuffer(), and then SDL_UploadToGPUTexture(). The next + * time you write texture data to the transfer buffer, if you set the cycle + * param to true, you don't have to worry about overwriting any data that is + * not yet uploaded. + * + * Another example: If you are using a texture in a render pass every frame, + * this can cause a data dependency between frames. If you set cycle to true + * in the SDL_GPUColorTargetInfo struct, you can prevent this data dependency. + * + * Cycling will never undefine already bound data. When cycling, all data in + * the resource is considered to be undefined for subsequent commands until + * that data is written again. You must take care not to read undefined data. + * + * Note that when cycling a texture, the entire texture will be cycled, even + * if only part of the texture is used in the call, so you must consider the + * entire texture to contain undefined data after cycling. + * + * You must also take care not to overwrite a section of data that has been + * referenced in a command without cycling first. It is OK to overwrite + * unreferenced data in a bound resource without cycling, but overwriting a + * section of data that has already been referenced will produce unexpected + * results. + */ + +#ifndef SDL_gpu_h_ +#define SDL_gpu_h_ + +#include +#include +#include +#include +#include +#include + +#include +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/* Type Declarations */ + +/** + * An opaque handle representing the SDL_GPU context. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GPUDevice SDL_GPUDevice; + +/** + * An opaque handle representing a buffer. + * + * Used for vertices, indices, indirect draw commands, and general compute + * data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_CopyGPUBufferToBuffer + * \sa SDL_BindGPUVertexBuffers + * \sa SDL_BindGPUIndexBuffer + * \sa SDL_BindGPUVertexStorageBuffers + * \sa SDL_BindGPUFragmentStorageBuffers + * \sa SDL_DrawGPUPrimitivesIndirect + * \sa SDL_DrawGPUIndexedPrimitivesIndirect + * \sa SDL_BindGPUComputeStorageBuffers + * \sa SDL_DispatchGPUComputeIndirect + * \sa SDL_ReleaseGPUBuffer + */ +typedef struct SDL_GPUBuffer SDL_GPUBuffer; + +/** + * An opaque handle representing a transfer buffer. + * + * Used for transferring data to and from the device. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTransferBuffer + * \sa SDL_MapGPUTransferBuffer + * \sa SDL_UnmapGPUTransferBuffer + * \sa SDL_UploadToGPUBuffer + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_ReleaseGPUTransferBuffer + */ +typedef struct SDL_GPUTransferBuffer SDL_GPUTransferBuffer; + +/** + * An opaque handle representing a texture. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_CopyGPUTextureToTexture + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUVertexStorageTextures + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_BindGPUFragmentStorageTextures + * \sa SDL_BindGPUComputeStorageTextures + * \sa SDL_GenerateMipmapsForGPUTexture + * \sa SDL_BlitGPUTexture + * \sa SDL_ReleaseGPUTexture + */ +typedef struct SDL_GPUTexture SDL_GPUTexture; + +/** + * An opaque handle representing a sampler. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_ReleaseGPUSampler + */ +typedef struct SDL_GPUSampler SDL_GPUSampler; + +/** + * An opaque handle representing a compiled shader object. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_ReleaseGPUShader + */ +typedef struct SDL_GPUShader SDL_GPUShader; + +/** + * An opaque handle representing a compute pipeline. + * + * Used during compute passes. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUComputePipeline + * \sa SDL_BindGPUComputePipeline + * \sa SDL_ReleaseGPUComputePipeline + */ +typedef struct SDL_GPUComputePipeline SDL_GPUComputePipeline; + +/** + * An opaque handle representing a graphics pipeline. + * + * Used during render passes. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_BindGPUGraphicsPipeline + * \sa SDL_ReleaseGPUGraphicsPipeline + */ +typedef struct SDL_GPUGraphicsPipeline SDL_GPUGraphicsPipeline; + +/** + * An opaque handle representing a command buffer. + * + * Most state is managed via command buffers. When setting state using a + * command buffer, that state is local to the command buffer. + * + * Commands only begin execution on the GPU once SDL_SubmitGPUCommandBuffer is + * called. Once the command buffer is submitted, it is no longer valid to use + * it. + * + * Command buffers are executed in submission order. If you submit command + * buffer A and then command buffer B all commands in A will begin executing + * before any command in B begins executing. + * + * In multi-threading scenarios, you should only access a command buffer on + * the thread you acquired it from. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +typedef struct SDL_GPUCommandBuffer SDL_GPUCommandBuffer; + +/** + * An opaque handle representing a render pass. + * + * This handle is transient and should not be held or referenced after + * SDL_EndGPURenderPass is called. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + * \sa SDL_EndGPURenderPass + */ +typedef struct SDL_GPURenderPass SDL_GPURenderPass; + +/** + * An opaque handle representing a compute pass. + * + * This handle is transient and should not be held or referenced after + * SDL_EndGPUComputePass is called. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUComputePass + * \sa SDL_EndGPUComputePass + */ +typedef struct SDL_GPUComputePass SDL_GPUComputePass; + +/** + * An opaque handle representing a copy pass. + * + * This handle is transient and should not be held or referenced after + * SDL_EndGPUCopyPass is called. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUCopyPass + * \sa SDL_EndGPUCopyPass + */ +typedef struct SDL_GPUCopyPass SDL_GPUCopyPass; + +/** + * An opaque handle representing a fence. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_QueryGPUFence + * \sa SDL_WaitForGPUFences + * \sa SDL_ReleaseGPUFence + */ +typedef struct SDL_GPUFence SDL_GPUFence; + +/** + * Specifies the primitive topology of a graphics pipeline. + * + * If you are using POINTLIST you must include a point size output in the + * vertex shader. + * + * - For HLSL compiling to SPIRV you must decorate a float output with + * [[vk::builtin("PointSize")]]. + * - For GLSL you must set the gl_PointSize builtin. + * - For MSL you must include a float output with the [[point_size]] + * decorator. + * + * Note that sized point topology is totally unsupported on D3D12. Any size + * other than 1 will be ignored. In general, you should avoid using point + * topology for both compatibility and performance reasons. You WILL regret + * using it. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUPrimitiveType +{ + SDL_GPU_PRIMITIVETYPE_TRIANGLELIST, /**< A series of separate triangles. */ + SDL_GPU_PRIMITIVETYPE_TRIANGLESTRIP, /**< A series of connected triangles. */ + SDL_GPU_PRIMITIVETYPE_LINELIST, /**< A series of separate lines. */ + SDL_GPU_PRIMITIVETYPE_LINESTRIP, /**< A series of connected lines. */ + SDL_GPU_PRIMITIVETYPE_POINTLIST /**< A series of separate points. */ +} SDL_GPUPrimitiveType; + +/** + * Specifies how the contents of a texture attached to a render pass are + * treated at the beginning of the render pass. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef enum SDL_GPULoadOp +{ + SDL_GPU_LOADOP_LOAD, /**< The previous contents of the texture will be preserved. */ + SDL_GPU_LOADOP_CLEAR, /**< The contents of the texture will be cleared to a color. */ + SDL_GPU_LOADOP_DONT_CARE /**< The previous contents of the texture need not be preserved. The contents will be undefined. */ +} SDL_GPULoadOp; + +/** + * Specifies how the contents of a texture attached to a render pass are + * treated at the end of the render pass. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef enum SDL_GPUStoreOp +{ + SDL_GPU_STOREOP_STORE, /**< The contents generated during the render pass will be written to memory. */ + SDL_GPU_STOREOP_DONT_CARE, /**< The contents generated during the render pass are not needed and may be discarded. The contents will be undefined. */ + SDL_GPU_STOREOP_RESOLVE, /**< The multisample contents generated during the render pass will be resolved to a non-multisample texture. The contents in the multisample texture may then be discarded and will be undefined. */ + SDL_GPU_STOREOP_RESOLVE_AND_STORE /**< The multisample contents generated during the render pass will be resolved to a non-multisample texture. The contents in the multisample texture will be written to memory. */ +} SDL_GPUStoreOp; + +/** + * Specifies the size of elements in an index buffer. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUIndexElementSize +{ + SDL_GPU_INDEXELEMENTSIZE_16BIT, /**< The index elements are 16-bit. */ + SDL_GPU_INDEXELEMENTSIZE_32BIT /**< The index elements are 32-bit. */ +} SDL_GPUIndexElementSize; + +/** + * Specifies the pixel format of a texture. + * + * Texture format support varies depending on driver, hardware, and usage + * flags. In general, you should use SDL_GPUTextureSupportsFormat to query if + * a format is supported before using it. However, there are a few guaranteed + * formats. + * + * FIXME: Check universal support for 32-bit component formats FIXME: Check + * universal support for SIMULTANEOUS_READ_WRITE + * + * For SAMPLER usage, the following formats are universally supported: + * + * - R8G8B8A8_UNORM + * - B8G8R8A8_UNORM + * - R8_UNORM + * - R8_SNORM + * - R8G8_UNORM + * - R8G8_SNORM + * - R8G8B8A8_SNORM + * - R16_FLOAT + * - R16G16_FLOAT + * - R16G16B16A16_FLOAT + * - R32_FLOAT + * - R32G32_FLOAT + * - R32G32B32A32_FLOAT + * - R11G11B10_UFLOAT + * - R8G8B8A8_UNORM_SRGB + * - B8G8R8A8_UNORM_SRGB + * - D16_UNORM + * + * For COLOR_TARGET usage, the following formats are universally supported: + * + * - R8G8B8A8_UNORM + * - B8G8R8A8_UNORM + * - R8_UNORM + * - R16_FLOAT + * - R16G16_FLOAT + * - R16G16B16A16_FLOAT + * - R32_FLOAT + * - R32G32_FLOAT + * - R32G32B32A32_FLOAT + * - R8_UINT + * - R8G8_UINT + * - R8G8B8A8_UINT + * - R16_UINT + * - R16G16_UINT + * - R16G16B16A16_UINT + * - R8_INT + * - R8G8_INT + * - R8G8B8A8_INT + * - R16_INT + * - R16G16_INT + * - R16G16B16A16_INT + * - R8G8B8A8_UNORM_SRGB + * - B8G8R8A8_UNORM_SRGB + * + * For STORAGE usages, the following formats are universally supported: + * + * - R8G8B8A8_UNORM + * - R8G8B8A8_SNORM + * - R16G16B16A16_FLOAT + * - R32_FLOAT + * - R32G32_FLOAT + * - R32G32B32A32_FLOAT + * - R8G8B8A8_UINT + * - R16G16B16A16_UINT + * - R8G8B8A8_INT + * - R16G16B16A16_INT + * + * For DEPTH_STENCIL_TARGET usage, the following formats are universally + * supported: + * + * - D16_UNORM + * - Either (but not necessarily both!) D24_UNORM or D32_FLOAT + * - Either (but not necessarily both!) D24_UNORM_S8_UINT or D32_FLOAT_S8_UINT + * + * Unless D16_UNORM is sufficient for your purposes, always check which of + * D24/D32 is supported before creating a depth-stencil texture! + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_GPUTextureSupportsFormat + */ +typedef enum SDL_GPUTextureFormat +{ + SDL_GPU_TEXTUREFORMAT_INVALID, + + /* Unsigned Normalized Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_A8_UNORM, + SDL_GPU_TEXTUREFORMAT_R8_UNORM, + SDL_GPU_TEXTUREFORMAT_R8G8_UNORM, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UNORM, + SDL_GPU_TEXTUREFORMAT_R16_UNORM, + SDL_GPU_TEXTUREFORMAT_R16G16_UNORM, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_UNORM, + SDL_GPU_TEXTUREFORMAT_R10G10B10A2_UNORM, + SDL_GPU_TEXTUREFORMAT_B5G6R5_UNORM, + SDL_GPU_TEXTUREFORMAT_B5G5R5A1_UNORM, + SDL_GPU_TEXTUREFORMAT_B4G4R4A4_UNORM, + SDL_GPU_TEXTUREFORMAT_B8G8R8A8_UNORM, + /* Compressed Unsigned Normalized Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC1_RGBA_UNORM, + SDL_GPU_TEXTUREFORMAT_BC2_RGBA_UNORM, + SDL_GPU_TEXTUREFORMAT_BC3_RGBA_UNORM, + SDL_GPU_TEXTUREFORMAT_BC4_R_UNORM, + SDL_GPU_TEXTUREFORMAT_BC5_RG_UNORM, + SDL_GPU_TEXTUREFORMAT_BC7_RGBA_UNORM, + /* Compressed Signed Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC6H_RGB_FLOAT, + /* Compressed Unsigned Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC6H_RGB_UFLOAT, + /* Signed Normalized Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8_SNORM, + SDL_GPU_TEXTUREFORMAT_R8G8_SNORM, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_SNORM, + SDL_GPU_TEXTUREFORMAT_R16_SNORM, + SDL_GPU_TEXTUREFORMAT_R16G16_SNORM, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_SNORM, + /* Signed Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_R16_FLOAT, + SDL_GPU_TEXTUREFORMAT_R16G16_FLOAT, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_FLOAT, + SDL_GPU_TEXTUREFORMAT_R32_FLOAT, + SDL_GPU_TEXTUREFORMAT_R32G32_FLOAT, + SDL_GPU_TEXTUREFORMAT_R32G32B32A32_FLOAT, + /* Unsigned Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_R11G11B10_UFLOAT, + /* Unsigned Integer Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8_UINT, + SDL_GPU_TEXTUREFORMAT_R8G8_UINT, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UINT, + SDL_GPU_TEXTUREFORMAT_R16_UINT, + SDL_GPU_TEXTUREFORMAT_R16G16_UINT, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_UINT, + SDL_GPU_TEXTUREFORMAT_R32_UINT, + SDL_GPU_TEXTUREFORMAT_R32G32_UINT, + SDL_GPU_TEXTUREFORMAT_R32G32B32A32_UINT, + /* Signed Integer Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8_INT, + SDL_GPU_TEXTUREFORMAT_R8G8_INT, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_INT, + SDL_GPU_TEXTUREFORMAT_R16_INT, + SDL_GPU_TEXTUREFORMAT_R16G16_INT, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_INT, + SDL_GPU_TEXTUREFORMAT_R32_INT, + SDL_GPU_TEXTUREFORMAT_R32G32_INT, + SDL_GPU_TEXTUREFORMAT_R32G32B32A32_INT, + /* SRGB Unsigned Normalized Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_B8G8R8A8_UNORM_SRGB, + /* Compressed SRGB Unsigned Normalized Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC1_RGBA_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_BC2_RGBA_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_BC3_RGBA_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_BC7_RGBA_UNORM_SRGB, + /* Depth Formats */ + SDL_GPU_TEXTUREFORMAT_D16_UNORM, + SDL_GPU_TEXTUREFORMAT_D24_UNORM, + SDL_GPU_TEXTUREFORMAT_D32_FLOAT, + SDL_GPU_TEXTUREFORMAT_D24_UNORM_S8_UINT, + SDL_GPU_TEXTUREFORMAT_D32_FLOAT_S8_UINT, + /* Compressed ASTC Normalized Float Color Formats*/ + SDL_GPU_TEXTUREFORMAT_ASTC_4x4_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_5x4_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_5x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_6x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_6x6_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_8x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_8x6_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_8x8_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x6_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x8_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x10_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_12x10_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_12x12_UNORM, + /* Compressed SRGB ASTC Normalized Float Color Formats*/ + SDL_GPU_TEXTUREFORMAT_ASTC_4x4_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_5x4_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_5x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_6x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_6x6_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_8x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_8x6_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_8x8_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x6_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x8_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x10_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_12x10_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_12x12_UNORM_SRGB, + /* Compressed ASTC Signed Float Color Formats*/ + SDL_GPU_TEXTUREFORMAT_ASTC_4x4_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_5x4_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_5x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_6x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_6x6_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_8x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_8x6_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_8x8_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x6_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x8_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x10_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_12x10_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_12x12_FLOAT +} SDL_GPUTextureFormat; + +/** + * Specifies how a texture is intended to be used by the client. + * + * A texture must have at least one usage flag. Note that some usage flag + * combinations are invalid. + * + * With regards to compute storage usage, READ | WRITE means that you can have + * shader A that only writes into the texture and shader B that only reads + * from the texture and bind the same texture to either shader respectively. + * SIMULTANEOUS means that you can do reads and writes within the same shader + * or compute pass. It also implies that atomic ops can be used, since those + * are read-modify-write operations. If you use SIMULTANEOUS, you are + * responsible for avoiding data races, as there is no data synchronization + * within a compute pass. Note that SIMULTANEOUS usage is only supported by a + * limited number of texture formats. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + */ +typedef Uint32 SDL_GPUTextureUsageFlags; + +#define SDL_GPU_TEXTUREUSAGE_SAMPLER (1u << 0) /**< Texture supports sampling. */ +#define SDL_GPU_TEXTUREUSAGE_COLOR_TARGET (1u << 1) /**< Texture is a color render target. */ +#define SDL_GPU_TEXTUREUSAGE_DEPTH_STENCIL_TARGET (1u << 2) /**< Texture is a depth stencil target. */ +#define SDL_GPU_TEXTUREUSAGE_GRAPHICS_STORAGE_READ (1u << 3) /**< Texture supports storage reads in graphics stages. */ +#define SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_READ (1u << 4) /**< Texture supports storage reads in the compute stage. */ +#define SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_WRITE (1u << 5) /**< Texture supports storage writes in the compute stage. */ +#define SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE (1u << 6) /**< Texture supports reads and writes in the same compute shader. This is NOT equivalent to READ | WRITE. */ + +/** + * Specifies the type of a texture. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + */ +typedef enum SDL_GPUTextureType +{ + SDL_GPU_TEXTURETYPE_2D, /**< The texture is a 2-dimensional image. */ + SDL_GPU_TEXTURETYPE_2D_ARRAY, /**< The texture is a 2-dimensional array image. */ + SDL_GPU_TEXTURETYPE_3D, /**< The texture is a 3-dimensional image. */ + SDL_GPU_TEXTURETYPE_CUBE, /**< The texture is a cube image. */ + SDL_GPU_TEXTURETYPE_CUBE_ARRAY /**< The texture is a cube array image. */ +} SDL_GPUTextureType; + +/** + * Specifies the sample count of a texture. + * + * Used in multisampling. Note that this value only applies when the texture + * is used as a render target. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_GPUTextureSupportsSampleCount + */ +typedef enum SDL_GPUSampleCount +{ + SDL_GPU_SAMPLECOUNT_1, /**< No multisampling. */ + SDL_GPU_SAMPLECOUNT_2, /**< MSAA 2x */ + SDL_GPU_SAMPLECOUNT_4, /**< MSAA 4x */ + SDL_GPU_SAMPLECOUNT_8 /**< MSAA 8x */ +} SDL_GPUSampleCount; + + +/** + * Specifies the face of a cube map. + * + * Can be passed in as the layer field in texture-related structs. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GPUCubeMapFace +{ + SDL_GPU_CUBEMAPFACE_POSITIVEX, + SDL_GPU_CUBEMAPFACE_NEGATIVEX, + SDL_GPU_CUBEMAPFACE_POSITIVEY, + SDL_GPU_CUBEMAPFACE_NEGATIVEY, + SDL_GPU_CUBEMAPFACE_POSITIVEZ, + SDL_GPU_CUBEMAPFACE_NEGATIVEZ +} SDL_GPUCubeMapFace; + +/** + * Specifies how a buffer is intended to be used by the client. + * + * A buffer must have at least one usage flag. Note that some usage flag + * combinations are invalid. + * + * Unlike textures, READ | WRITE can be used for simultaneous read-write + * usage. The same data synchronization concerns as textures apply. + * + * If you use a STORAGE flag, the data in the buffer must respect std140 + * layout conventions. In practical terms this means you must ensure that vec3 + * and vec4 fields are 16-byte aligned. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + */ +typedef Uint32 SDL_GPUBufferUsageFlags; + +#define SDL_GPU_BUFFERUSAGE_VERTEX (1u << 0) /**< Buffer is a vertex buffer. */ +#define SDL_GPU_BUFFERUSAGE_INDEX (1u << 1) /**< Buffer is an index buffer. */ +#define SDL_GPU_BUFFERUSAGE_INDIRECT (1u << 2) /**< Buffer is an indirect buffer. */ +#define SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ (1u << 3) /**< Buffer supports storage reads in graphics stages. */ +#define SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_READ (1u << 4) /**< Buffer supports storage reads in the compute stage. */ +#define SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_WRITE (1u << 5) /**< Buffer supports storage writes in the compute stage. */ + +/** + * Specifies how a transfer buffer is intended to be used by the client. + * + * Note that mapping and copying FROM an upload transfer buffer or TO a + * download transfer buffer is undefined behavior. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTransferBuffer + */ +typedef enum SDL_GPUTransferBufferUsage +{ + SDL_GPU_TRANSFERBUFFERUSAGE_UPLOAD, + SDL_GPU_TRANSFERBUFFERUSAGE_DOWNLOAD +} SDL_GPUTransferBufferUsage; + +/** + * Specifies which stage a shader program corresponds to. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +typedef enum SDL_GPUShaderStage +{ + SDL_GPU_SHADERSTAGE_VERTEX, + SDL_GPU_SHADERSTAGE_FRAGMENT +} SDL_GPUShaderStage; + +/** + * Specifies the format of shader code. + * + * Each format corresponds to a specific backend that accepts it. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +typedef Uint32 SDL_GPUShaderFormat; + +#define SDL_GPU_SHADERFORMAT_INVALID 0 +#define SDL_GPU_SHADERFORMAT_PRIVATE (1u << 0) /**< Shaders for NDA'd platforms. */ +#define SDL_GPU_SHADERFORMAT_SPIRV (1u << 1) /**< SPIR-V shaders for Vulkan. */ +#define SDL_GPU_SHADERFORMAT_DXBC (1u << 2) /**< DXBC SM5_1 shaders for D3D12. */ +#define SDL_GPU_SHADERFORMAT_DXIL (1u << 3) /**< DXIL SM6_0 shaders for D3D12. */ +#define SDL_GPU_SHADERFORMAT_MSL (1u << 4) /**< MSL shaders for Metal. */ +#define SDL_GPU_SHADERFORMAT_METALLIB (1u << 5) /**< Precompiled metallib shaders for Metal. */ + +/** + * Specifies the format of a vertex attribute. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUVertexElementFormat +{ + SDL_GPU_VERTEXELEMENTFORMAT_INVALID, + + /* 32-bit Signed Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_INT, + SDL_GPU_VERTEXELEMENTFORMAT_INT2, + SDL_GPU_VERTEXELEMENTFORMAT_INT3, + SDL_GPU_VERTEXELEMENTFORMAT_INT4, + + /* 32-bit Unsigned Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_UINT, + SDL_GPU_VERTEXELEMENTFORMAT_UINT2, + SDL_GPU_VERTEXELEMENTFORMAT_UINT3, + SDL_GPU_VERTEXELEMENTFORMAT_UINT4, + + /* 32-bit Floats */ + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT, + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT2, + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT3, + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT4, + + /* 8-bit Signed Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_BYTE2, + SDL_GPU_VERTEXELEMENTFORMAT_BYTE4, + + /* 8-bit Unsigned Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE2, + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE4, + + /* 8-bit Signed Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_BYTE2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_BYTE4_NORM, + + /* 8-bit Unsigned Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE4_NORM, + + /* 16-bit Signed Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_SHORT2, + SDL_GPU_VERTEXELEMENTFORMAT_SHORT4, + + /* 16-bit Unsigned Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_USHORT2, + SDL_GPU_VERTEXELEMENTFORMAT_USHORT4, + + /* 16-bit Signed Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_SHORT2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_SHORT4_NORM, + + /* 16-bit Unsigned Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_USHORT2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_USHORT4_NORM, + + /* 16-bit Floats */ + SDL_GPU_VERTEXELEMENTFORMAT_HALF2, + SDL_GPU_VERTEXELEMENTFORMAT_HALF4 +} SDL_GPUVertexElementFormat; + +/** + * Specifies the rate at which vertex attributes are pulled from buffers. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUVertexInputRate +{ + SDL_GPU_VERTEXINPUTRATE_VERTEX, /**< Attribute addressing is a function of the vertex index. */ + SDL_GPU_VERTEXINPUTRATE_INSTANCE /**< Attribute addressing is a function of the instance index. */ +} SDL_GPUVertexInputRate; + +/** + * Specifies the fill mode of the graphics pipeline. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUFillMode +{ + SDL_GPU_FILLMODE_FILL, /**< Polygons will be rendered via rasterization. */ + SDL_GPU_FILLMODE_LINE /**< Polygon edges will be drawn as line segments. */ +} SDL_GPUFillMode; + +/** + * Specifies the facing direction in which triangle faces will be culled. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUCullMode +{ + SDL_GPU_CULLMODE_NONE, /**< No triangles are culled. */ + SDL_GPU_CULLMODE_FRONT, /**< Front-facing triangles are culled. */ + SDL_GPU_CULLMODE_BACK /**< Back-facing triangles are culled. */ +} SDL_GPUCullMode; + +/** + * Specifies the vertex winding that will cause a triangle to be determined to + * be front-facing. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUFrontFace +{ + SDL_GPU_FRONTFACE_COUNTER_CLOCKWISE, /**< A triangle with counter-clockwise vertex winding will be considered front-facing. */ + SDL_GPU_FRONTFACE_CLOCKWISE /**< A triangle with clockwise vertex winding will be considered front-facing. */ +} SDL_GPUFrontFace; + +/** + * Specifies a comparison operator for depth, stencil and sampler operations. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUCompareOp +{ + SDL_GPU_COMPAREOP_INVALID, + SDL_GPU_COMPAREOP_NEVER, /**< The comparison always evaluates false. */ + SDL_GPU_COMPAREOP_LESS, /**< The comparison evaluates reference < test. */ + SDL_GPU_COMPAREOP_EQUAL, /**< The comparison evaluates reference == test. */ + SDL_GPU_COMPAREOP_LESS_OR_EQUAL, /**< The comparison evaluates reference <= test. */ + SDL_GPU_COMPAREOP_GREATER, /**< The comparison evaluates reference > test. */ + SDL_GPU_COMPAREOP_NOT_EQUAL, /**< The comparison evaluates reference != test. */ + SDL_GPU_COMPAREOP_GREATER_OR_EQUAL, /**< The comparison evalutes reference >= test. */ + SDL_GPU_COMPAREOP_ALWAYS /**< The comparison always evaluates true. */ +} SDL_GPUCompareOp; + +/** + * Specifies what happens to a stored stencil value if stencil tests fail or + * pass. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUStencilOp +{ + SDL_GPU_STENCILOP_INVALID, + SDL_GPU_STENCILOP_KEEP, /**< Keeps the current value. */ + SDL_GPU_STENCILOP_ZERO, /**< Sets the value to 0. */ + SDL_GPU_STENCILOP_REPLACE, /**< Sets the value to reference. */ + SDL_GPU_STENCILOP_INCREMENT_AND_CLAMP, /**< Increments the current value and clamps to the maximum value. */ + SDL_GPU_STENCILOP_DECREMENT_AND_CLAMP, /**< Decrements the current value and clamps to 0. */ + SDL_GPU_STENCILOP_INVERT, /**< Bitwise-inverts the current value. */ + SDL_GPU_STENCILOP_INCREMENT_AND_WRAP, /**< Increments the current value and wraps back to 0. */ + SDL_GPU_STENCILOP_DECREMENT_AND_WRAP /**< Decrements the current value and wraps to the maximum value. */ +} SDL_GPUStencilOp; + +/** + * Specifies the operator to be used when pixels in a render target are + * blended with existing pixels in the texture. + * + * The source color is the value written by the fragment shader. The + * destination color is the value currently existing in the texture. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUBlendOp +{ + SDL_GPU_BLENDOP_INVALID, + SDL_GPU_BLENDOP_ADD, /**< (source * source_factor) + (destination * destination_factor) */ + SDL_GPU_BLENDOP_SUBTRACT, /**< (source * source_factor) - (destination * destination_factor) */ + SDL_GPU_BLENDOP_REVERSE_SUBTRACT, /**< (destination * destination_factor) - (source * source_factor) */ + SDL_GPU_BLENDOP_MIN, /**< min(source, destination) */ + SDL_GPU_BLENDOP_MAX /**< max(source, destination) */ +} SDL_GPUBlendOp; + +/** + * Specifies a blending factor to be used when pixels in a render target are + * blended with existing pixels in the texture. + * + * The source color is the value written by the fragment shader. The + * destination color is the value currently existing in the texture. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUBlendFactor +{ + SDL_GPU_BLENDFACTOR_INVALID, + SDL_GPU_BLENDFACTOR_ZERO, /**< 0 */ + SDL_GPU_BLENDFACTOR_ONE, /**< 1 */ + SDL_GPU_BLENDFACTOR_SRC_COLOR, /**< source color */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_SRC_COLOR, /**< 1 - source color */ + SDL_GPU_BLENDFACTOR_DST_COLOR, /**< destination color */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_DST_COLOR, /**< 1 - destination color */ + SDL_GPU_BLENDFACTOR_SRC_ALPHA, /**< source alpha */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_SRC_ALPHA, /**< 1 - source alpha */ + SDL_GPU_BLENDFACTOR_DST_ALPHA, /**< destination alpha */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_DST_ALPHA, /**< 1 - destination alpha */ + SDL_GPU_BLENDFACTOR_CONSTANT_COLOR, /**< blend constant */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_CONSTANT_COLOR, /**< 1 - blend constant */ + SDL_GPU_BLENDFACTOR_SRC_ALPHA_SATURATE /**< min(source alpha, 1 - destination alpha) */ +} SDL_GPUBlendFactor; + +/** + * Specifies which color components are written in a graphics pipeline. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef Uint8 SDL_GPUColorComponentFlags; + +#define SDL_GPU_COLORCOMPONENT_R (1u << 0) /**< the red component */ +#define SDL_GPU_COLORCOMPONENT_G (1u << 1) /**< the green component */ +#define SDL_GPU_COLORCOMPONENT_B (1u << 2) /**< the blue component */ +#define SDL_GPU_COLORCOMPONENT_A (1u << 3) /**< the alpha component */ + +/** + * Specifies a filter operation used by a sampler. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + */ +typedef enum SDL_GPUFilter +{ + SDL_GPU_FILTER_NEAREST, /**< Point filtering. */ + SDL_GPU_FILTER_LINEAR /**< Linear filtering. */ +} SDL_GPUFilter; + +/** + * Specifies a mipmap mode used by a sampler. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + */ +typedef enum SDL_GPUSamplerMipmapMode +{ + SDL_GPU_SAMPLERMIPMAPMODE_NEAREST, /**< Point filtering. */ + SDL_GPU_SAMPLERMIPMAPMODE_LINEAR /**< Linear filtering. */ +} SDL_GPUSamplerMipmapMode; + +/** + * Specifies behavior of texture sampling when the coordinates exceed the 0-1 + * range. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + */ +typedef enum SDL_GPUSamplerAddressMode +{ + SDL_GPU_SAMPLERADDRESSMODE_REPEAT, /**< Specifies that the coordinates will wrap around. */ + SDL_GPU_SAMPLERADDRESSMODE_MIRRORED_REPEAT, /**< Specifies that the coordinates will wrap around mirrored. */ + SDL_GPU_SAMPLERADDRESSMODE_CLAMP_TO_EDGE /**< Specifies that the coordinates will clamp to the 0-1 range. */ +} SDL_GPUSamplerAddressMode; + +/** + * Specifies the timing that will be used to present swapchain textures to the + * OS. + * + * VSYNC mode will always be supported. IMMEDIATE and MAILBOX modes may not be + * supported on certain systems. + * + * It is recommended to query SDL_WindowSupportsGPUPresentMode after claiming + * the window if you wish to change the present mode to IMMEDIATE or MAILBOX. + * + * - VSYNC: Waits for vblank before presenting. No tearing is possible. If + * there is a pending image to present, the new image is enqueued for + * presentation. Disallows tearing at the cost of visual latency. + * - IMMEDIATE: Immediately presents. Lowest latency option, but tearing may + * occur. + * - MAILBOX: Waits for vblank before presenting. No tearing is possible. If + * there is a pending image to present, the pending image is replaced by the + * new image. Similar to VSYNC, but with reduced visual latency. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_SetGPUSwapchainParameters + * \sa SDL_WindowSupportsGPUPresentMode + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + */ +typedef enum SDL_GPUPresentMode +{ + SDL_GPU_PRESENTMODE_VSYNC, + SDL_GPU_PRESENTMODE_IMMEDIATE, + SDL_GPU_PRESENTMODE_MAILBOX +} SDL_GPUPresentMode; + +/** + * Specifies the texture format and colorspace of the swapchain textures. + * + * SDR will always be supported. Other compositions may not be supported on + * certain systems. + * + * It is recommended to query SDL_WindowSupportsGPUSwapchainComposition after + * claiming the window if you wish to change the swapchain composition from + * SDR. + * + * - SDR: B8G8R8A8 or R8G8B8A8 swapchain. Pixel values are in sRGB encoding. + * - SDR_LINEAR: B8G8R8A8_SRGB or R8G8B8A8_SRGB swapchain. Pixel values are + * stored in memory in sRGB encoding but accessed in shaders in "linear + * sRGB" encoding which is sRGB but with a linear transfer function. + * - HDR_EXTENDED_LINEAR: R16G16B16A16_FLOAT swapchain. Pixel values are in + * extended linear sRGB encoding and permits values outside of the [0, 1] + * range. + * - HDR10_ST2084: A2R10G10B10 or A2B10G10R10 swapchain. Pixel values are in + * BT.2020 ST2084 (PQ) encoding. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_SetGPUSwapchainParameters + * \sa SDL_WindowSupportsGPUSwapchainComposition + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + */ +typedef enum SDL_GPUSwapchainComposition +{ + SDL_GPU_SWAPCHAINCOMPOSITION_SDR, + SDL_GPU_SWAPCHAINCOMPOSITION_SDR_LINEAR, + SDL_GPU_SWAPCHAINCOMPOSITION_HDR_EXTENDED_LINEAR, + SDL_GPU_SWAPCHAINCOMPOSITION_HDR10_ST2084 +} SDL_GPUSwapchainComposition; + +/* Structures */ + +/** + * A structure specifying a viewport. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_SetGPUViewport + */ +typedef struct SDL_GPUViewport +{ + float x; /**< The left offset of the viewport. */ + float y; /**< The top offset of the viewport. */ + float w; /**< The width of the viewport. */ + float h; /**< The height of the viewport. */ + float min_depth; /**< The minimum depth of the viewport. */ + float max_depth; /**< The maximum depth of the viewport. */ +} SDL_GPUViewport; + +/** + * A structure specifying parameters related to transferring data to or from a + * texture. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + */ +typedef struct SDL_GPUTextureTransferInfo +{ + SDL_GPUTransferBuffer *transfer_buffer; /**< The transfer buffer used in the transfer operation. */ + Uint32 offset; /**< The starting byte of the image data in the transfer buffer. */ + Uint32 pixels_per_row; /**< The number of pixels from one row to the next. */ + Uint32 rows_per_layer; /**< The number of rows from one layer/depth-slice to the next. */ +} SDL_GPUTextureTransferInfo; + +/** + * A structure specifying a location in a transfer buffer. + * + * Used when transferring buffer data to or from a transfer buffer. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + */ +typedef struct SDL_GPUTransferBufferLocation +{ + SDL_GPUTransferBuffer *transfer_buffer; /**< The transfer buffer used in the transfer operation. */ + Uint32 offset; /**< The starting byte of the buffer data in the transfer buffer. */ +} SDL_GPUTransferBufferLocation; + +/** + * A structure specifying a location in a texture. + * + * Used when copying data from one texture to another. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CopyGPUTextureToTexture + */ +typedef struct SDL_GPUTextureLocation +{ + SDL_GPUTexture *texture; /**< The texture used in the copy operation. */ + Uint32 mip_level; /**< The mip level index of the location. */ + Uint32 layer; /**< The layer index of the location. */ + Uint32 x; /**< The left offset of the location. */ + Uint32 y; /**< The top offset of the location. */ + Uint32 z; /**< The front offset of the location. */ +} SDL_GPUTextureLocation; + +/** + * A structure specifying a region of a texture. + * + * Used when transferring data to or from a texture. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_CreateGPUTexture + */ +typedef struct SDL_GPUTextureRegion +{ + SDL_GPUTexture *texture; /**< The texture used in the copy operation. */ + Uint32 mip_level; /**< The mip level index to transfer. */ + Uint32 layer; /**< The layer index to transfer. */ + Uint32 x; /**< The left offset of the region. */ + Uint32 y; /**< The top offset of the region. */ + Uint32 z; /**< The front offset of the region. */ + Uint32 w; /**< The width of the region. */ + Uint32 h; /**< The height of the region. */ + Uint32 d; /**< The depth of the region. */ +} SDL_GPUTextureRegion; + +/** + * A structure specifying a region of a texture used in the blit operation. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BlitGPUTexture + */ +typedef struct SDL_GPUBlitRegion +{ + SDL_GPUTexture *texture; /**< The texture. */ + Uint32 mip_level; /**< The mip level index of the region. */ + Uint32 layer_or_depth_plane; /**< The layer index or depth plane of the region. This value is treated as a layer index on 2D array and cube textures, and as a depth plane on 3D textures. */ + Uint32 x; /**< The left offset of the region. */ + Uint32 y; /**< The top offset of the region. */ + Uint32 w; /**< The width of the region. */ + Uint32 h; /**< The height of the region. */ +} SDL_GPUBlitRegion; + +/** + * A structure specifying a location in a buffer. + * + * Used when copying data between buffers. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CopyGPUBufferToBuffer + */ +typedef struct SDL_GPUBufferLocation +{ + SDL_GPUBuffer *buffer; /**< The buffer. */ + Uint32 offset; /**< The starting byte within the buffer. */ +} SDL_GPUBufferLocation; + +/** + * A structure specifying a region of a buffer. + * + * Used when transferring data to or from buffers. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + */ +typedef struct SDL_GPUBufferRegion +{ + SDL_GPUBuffer *buffer; /**< The buffer. */ + Uint32 offset; /**< The starting byte within the buffer. */ + Uint32 size; /**< The size in bytes of the region. */ +} SDL_GPUBufferRegion; + +/** + * A structure specifying the parameters of an indirect draw command. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DrawGPUPrimitivesIndirect + */ +typedef struct SDL_GPUIndirectDrawCommand +{ + Uint32 num_vertices; /**< The number of vertices to draw. */ + Uint32 num_instances; /**< The number of instances to draw. */ + Uint32 first_vertex; /**< The index of the first vertex to draw. */ + Uint32 first_instance; /**< The ID of the first instance to draw. */ +} SDL_GPUIndirectDrawCommand; + +/** + * A structure specifying the parameters of an indexed indirect draw command. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DrawGPUIndexedPrimitivesIndirect + */ +typedef struct SDL_GPUIndexedIndirectDrawCommand +{ + Uint32 num_indices; /**< The number of indices to draw per instance. */ + Uint32 num_instances; /**< The number of instances to draw. */ + Uint32 first_index; /**< The base index within the index buffer. */ + Sint32 vertex_offset; /**< The value added to the vertex index before indexing into the vertex buffer. */ + Uint32 first_instance; /**< The ID of the first instance to draw. */ +} SDL_GPUIndexedIndirectDrawCommand; + +/** + * A structure specifying the parameters of an indexed dispatch command. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DispatchGPUComputeIndirect + */ +typedef struct SDL_GPUIndirectDispatchCommand +{ + Uint32 groupcount_x; /**< The number of local workgroups to dispatch in the X dimension. */ + Uint32 groupcount_y; /**< The number of local workgroups to dispatch in the Y dimension. */ + Uint32 groupcount_z; /**< The number of local workgroups to dispatch in the Z dimension. */ +} SDL_GPUIndirectDispatchCommand; + +/* State structures */ + +/** + * A structure specifying the parameters of a sampler. + * + * Note that mip_lod_bias is a no-op for the Metal driver. For Metal, LOD bias + * must be applied via shader instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + * \sa SDL_GPUFilter + * \sa SDL_GPUSamplerMipmapMode + * \sa SDL_GPUSamplerAddressMode + * \sa SDL_GPUCompareOp + */ +typedef struct SDL_GPUSamplerCreateInfo +{ + SDL_GPUFilter min_filter; /**< The minification filter to apply to lookups. */ + SDL_GPUFilter mag_filter; /**< The magnification filter to apply to lookups. */ + SDL_GPUSamplerMipmapMode mipmap_mode; /**< The mipmap filter to apply to lookups. */ + SDL_GPUSamplerAddressMode address_mode_u; /**< The addressing mode for U coordinates outside [0, 1). */ + SDL_GPUSamplerAddressMode address_mode_v; /**< The addressing mode for V coordinates outside [0, 1). */ + SDL_GPUSamplerAddressMode address_mode_w; /**< The addressing mode for W coordinates outside [0, 1). */ + float mip_lod_bias; /**< The bias to be added to mipmap LOD calculation. */ + float max_anisotropy; /**< The anisotropy value clamp used by the sampler. If enable_anisotropy is false, this is ignored. */ + SDL_GPUCompareOp compare_op; /**< The comparison operator to apply to fetched data before filtering. */ + float min_lod; /**< Clamps the minimum of the computed LOD value. */ + float max_lod; /**< Clamps the maximum of the computed LOD value. */ + bool enable_anisotropy; /**< true to enable anisotropic filtering. */ + bool enable_compare; /**< true to enable comparison against a reference value during lookups. */ + Uint8 padding1; + Uint8 padding2; + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUSamplerCreateInfo; + +/** + * A structure specifying the parameters of vertex buffers used in a graphics + * pipeline. + * + * When you call SDL_BindGPUVertexBuffers, you specify the binding slots of + * the vertex buffers. For example if you called SDL_BindGPUVertexBuffers with + * a first_slot of 2 and num_bindings of 3, the binding slots 2, 3, 4 would be + * used by the vertex buffers you pass in. + * + * Vertex attributes are linked to buffers via the buffer_slot field of + * SDL_GPUVertexAttribute. For example, if an attribute has a buffer_slot of + * 0, then that attribute belongs to the vertex buffer bound at slot 0. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUVertexAttribute + * \sa SDL_GPUVertexInputRate + */ +typedef struct SDL_GPUVertexBufferDescription +{ + Uint32 slot; /**< The binding slot of the vertex buffer. */ + Uint32 pitch; /**< The size of a single element + the offset between elements. */ + SDL_GPUVertexInputRate input_rate; /**< Whether attribute addressing is a function of the vertex index or instance index. */ + Uint32 instance_step_rate; /**< Reserved for future use. Must be set to 0. */ +} SDL_GPUVertexBufferDescription; + +/** + * A structure specifying a vertex attribute. + * + * All vertex attribute locations provided to an SDL_GPUVertexInputState must + * be unique. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUVertexBufferDescription + * \sa SDL_GPUVertexInputState + * \sa SDL_GPUVertexElementFormat + */ +typedef struct SDL_GPUVertexAttribute +{ + Uint32 location; /**< The shader input location index. */ + Uint32 buffer_slot; /**< The binding slot of the associated vertex buffer. */ + SDL_GPUVertexElementFormat format; /**< The size and type of the attribute data. */ + Uint32 offset; /**< The byte offset of this attribute relative to the start of the vertex element. */ +} SDL_GPUVertexAttribute; + +/** + * A structure specifying the parameters of a graphics pipeline vertex input + * state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + * \sa SDL_GPUVertexBufferDescription + * \sa SDL_GPUVertexAttribute + */ +typedef struct SDL_GPUVertexInputState +{ + const SDL_GPUVertexBufferDescription *vertex_buffer_descriptions; /**< A pointer to an array of vertex buffer descriptions. */ + Uint32 num_vertex_buffers; /**< The number of vertex buffer descriptions in the above array. */ + const SDL_GPUVertexAttribute *vertex_attributes; /**< A pointer to an array of vertex attribute descriptions. */ + Uint32 num_vertex_attributes; /**< The number of vertex attribute descriptions in the above array. */ +} SDL_GPUVertexInputState; + +/** + * A structure specifying the stencil operation state of a graphics pipeline. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUDepthStencilState + */ +typedef struct SDL_GPUStencilOpState +{ + SDL_GPUStencilOp fail_op; /**< The action performed on samples that fail the stencil test. */ + SDL_GPUStencilOp pass_op; /**< The action performed on samples that pass the depth and stencil tests. */ + SDL_GPUStencilOp depth_fail_op; /**< The action performed on samples that pass the stencil test and fail the depth test. */ + SDL_GPUCompareOp compare_op; /**< The comparison operator used in the stencil test. */ +} SDL_GPUStencilOpState; + +/** + * A structure specifying the blend state of a color target. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUColorTargetDescription + */ +typedef struct SDL_GPUColorTargetBlendState +{ + SDL_GPUBlendFactor src_color_blendfactor; /**< The value to be multiplied by the source RGB value. */ + SDL_GPUBlendFactor dst_color_blendfactor; /**< The value to be multiplied by the destination RGB value. */ + SDL_GPUBlendOp color_blend_op; /**< The blend operation for the RGB components. */ + SDL_GPUBlendFactor src_alpha_blendfactor; /**< The value to be multiplied by the source alpha. */ + SDL_GPUBlendFactor dst_alpha_blendfactor; /**< The value to be multiplied by the destination alpha. */ + SDL_GPUBlendOp alpha_blend_op; /**< The blend operation for the alpha component. */ + SDL_GPUColorComponentFlags color_write_mask; /**< A bitmask specifying which of the RGBA components are enabled for writing. Writes to all channels if enable_color_write_mask is false. */ + bool enable_blend; /**< Whether blending is enabled for the color target. */ + bool enable_color_write_mask; /**< Whether the color write mask is enabled. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPUColorTargetBlendState; + + +/** + * A structure specifying code and metadata for creating a shader object. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +typedef struct SDL_GPUShaderCreateInfo +{ + size_t code_size; /**< The size in bytes of the code pointed to. */ + const Uint8 *code; /**< A pointer to shader code. */ + const char *entrypoint; /**< A pointer to a null-terminated UTF-8 string specifying the entry point function name for the shader. */ + SDL_GPUShaderFormat format; /**< The format of the shader code. */ + SDL_GPUShaderStage stage; /**< The stage the shader program corresponds to. */ + Uint32 num_samplers; /**< The number of samplers defined in the shader. */ + Uint32 num_storage_textures; /**< The number of storage textures defined in the shader. */ + Uint32 num_storage_buffers; /**< The number of storage buffers defined in the shader. */ + Uint32 num_uniform_buffers; /**< The number of uniform buffers defined in the shader. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUShaderCreateInfo; + +/** + * A structure specifying the parameters of a texture. + * + * Usage flags can be bitwise OR'd together for combinations of usages. Note + * that certain usage combinations are invalid, for example SAMPLER and + * GRAPHICS_STORAGE. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_GPUTextureType + * \sa SDL_GPUTextureFormat + * \sa SDL_GPUTextureUsageFlags + * \sa SDL_GPUSampleCount + */ +typedef struct SDL_GPUTextureCreateInfo +{ + SDL_GPUTextureType type; /**< The base dimensionality of the texture. */ + SDL_GPUTextureFormat format; /**< The pixel format of the texture. */ + SDL_GPUTextureUsageFlags usage; /**< How the texture is intended to be used by the client. */ + Uint32 width; /**< The width of the texture. */ + Uint32 height; /**< The height of the texture. */ + Uint32 layer_count_or_depth; /**< The layer count or depth of the texture. This value is treated as a layer count on 2D array textures, and as a depth value on 3D textures. */ + Uint32 num_levels; /**< The number of mip levels in the texture. */ + SDL_GPUSampleCount sample_count; /**< The number of samples per texel. Only applies if the texture is used as a render target. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUTextureCreateInfo; + +/** + * A structure specifying the parameters of a buffer. + * + * Usage flags can be bitwise OR'd together for combinations of usages. Note + * that certain combinations are invalid, for example VERTEX and INDEX. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + * \sa SDL_GPUBufferUsageFlags + */ +typedef struct SDL_GPUBufferCreateInfo +{ + SDL_GPUBufferUsageFlags usage; /**< How the buffer is intended to be used by the client. */ + Uint32 size; /**< The size in bytes of the buffer. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUBufferCreateInfo; + +/** + * A structure specifying the parameters of a transfer buffer. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTransferBuffer + */ +typedef struct SDL_GPUTransferBufferCreateInfo +{ + SDL_GPUTransferBufferUsage usage; /**< How the transfer buffer is intended to be used by the client. */ + Uint32 size; /**< The size in bytes of the transfer buffer. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUTransferBufferCreateInfo; + +/* Pipeline state structures */ + +/** + * A structure specifying the parameters of the graphics pipeline rasterizer + * state. + * + * Note that SDL_GPU_FILLMODE_LINE is not supported on many Android devices. + * For those devices, the fill mode will automatically fall back to FILL. + * + * Also note that the D3D12 driver will enable depth clamping even if + * enable_depth_clip is true. If you need this clamp+clip behavior, consider + * enabling depth clip and then manually clamping depth in your fragment + * shaders on Metal and Vulkan. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + */ +typedef struct SDL_GPURasterizerState +{ + SDL_GPUFillMode fill_mode; /**< Whether polygons will be filled in or drawn as lines. */ + SDL_GPUCullMode cull_mode; /**< The facing direction in which triangles will be culled. */ + SDL_GPUFrontFace front_face; /**< The vertex winding that will cause a triangle to be determined as front-facing. */ + float depth_bias_constant_factor; /**< A scalar factor controlling the depth value added to each fragment. */ + float depth_bias_clamp; /**< The maximum depth bias of a fragment. */ + float depth_bias_slope_factor; /**< A scalar factor applied to a fragment's slope in depth calculations. */ + bool enable_depth_bias; /**< true to bias fragment depth values. */ + bool enable_depth_clip; /**< true to enable depth clip, false to enable depth clamp. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPURasterizerState; + +/** + * A structure specifying the parameters of the graphics pipeline multisample + * state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + */ +typedef struct SDL_GPUMultisampleState +{ + SDL_GPUSampleCount sample_count; /**< The number of samples to be used in rasterization. */ + Uint32 sample_mask; /**< Reserved for future use. Must be set to 0. */ + bool enable_mask; /**< Reserved for future use. Must be set to false. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUMultisampleState; + +/** + * A structure specifying the parameters of the graphics pipeline depth + * stencil state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + */ +typedef struct SDL_GPUDepthStencilState +{ + SDL_GPUCompareOp compare_op; /**< The comparison operator used for depth testing. */ + SDL_GPUStencilOpState back_stencil_state; /**< The stencil op state for back-facing triangles. */ + SDL_GPUStencilOpState front_stencil_state; /**< The stencil op state for front-facing triangles. */ + Uint8 compare_mask; /**< Selects the bits of the stencil values participating in the stencil test. */ + Uint8 write_mask; /**< Selects the bits of the stencil values updated by the stencil test. */ + bool enable_depth_test; /**< true enables the depth test. */ + bool enable_depth_write; /**< true enables depth writes. Depth writes are always disabled when enable_depth_test is false. */ + bool enable_stencil_test; /**< true enables the stencil test. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUDepthStencilState; + +/** + * A structure specifying the parameters of color targets used in a graphics + * pipeline. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineTargetInfo + */ +typedef struct SDL_GPUColorTargetDescription +{ + SDL_GPUTextureFormat format; /**< The pixel format of the texture to be used as a color target. */ + SDL_GPUColorTargetBlendState blend_state; /**< The blend state to be used for the color target. */ +} SDL_GPUColorTargetDescription; + +/** + * A structure specifying the descriptions of render targets used in a + * graphics pipeline. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + * \sa SDL_GPUColorTargetDescription + * \sa SDL_GPUTextureFormat + */ +typedef struct SDL_GPUGraphicsPipelineTargetInfo +{ + const SDL_GPUColorTargetDescription *color_target_descriptions; /**< A pointer to an array of color target descriptions. */ + Uint32 num_color_targets; /**< The number of color target descriptions in the above array. */ + SDL_GPUTextureFormat depth_stencil_format; /**< The pixel format of the depth-stencil target. Ignored if has_depth_stencil_target is false. */ + bool has_depth_stencil_target; /**< true specifies that the pipeline uses a depth-stencil target. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUGraphicsPipelineTargetInfo; + +/** + * A structure specifying the parameters of a graphics pipeline state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_GPUShader + * \sa SDL_GPUVertexInputState + * \sa SDL_GPUPrimitiveType + * \sa SDL_GPURasterizerState + * \sa SDL_GPUMultisampleState + * \sa SDL_GPUDepthStencilState + * \sa SDL_GPUGraphicsPipelineTargetInfo + */ +typedef struct SDL_GPUGraphicsPipelineCreateInfo +{ + SDL_GPUShader *vertex_shader; /**< The vertex shader used by the graphics pipeline. */ + SDL_GPUShader *fragment_shader; /**< The fragment shader used by the graphics pipeline. */ + SDL_GPUVertexInputState vertex_input_state; /**< The vertex layout of the graphics pipeline. */ + SDL_GPUPrimitiveType primitive_type; /**< The primitive topology of the graphics pipeline. */ + SDL_GPURasterizerState rasterizer_state; /**< The rasterizer state of the graphics pipeline. */ + SDL_GPUMultisampleState multisample_state; /**< The multisample state of the graphics pipeline. */ + SDL_GPUDepthStencilState depth_stencil_state; /**< The depth-stencil state of the graphics pipeline. */ + SDL_GPUGraphicsPipelineTargetInfo target_info; /**< Formats and blend modes for the render targets of the graphics pipeline. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUGraphicsPipelineCreateInfo; + +/** + * A structure specifying the parameters of a compute pipeline state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUComputePipeline + * \sa SDL_GPUShaderFormat + */ +typedef struct SDL_GPUComputePipelineCreateInfo +{ + size_t code_size; /**< The size in bytes of the compute shader code pointed to. */ + const Uint8 *code; /**< A pointer to compute shader code. */ + const char *entrypoint; /**< A pointer to a null-terminated UTF-8 string specifying the entry point function name for the shader. */ + SDL_GPUShaderFormat format; /**< The format of the compute shader code. */ + Uint32 num_samplers; /**< The number of samplers defined in the shader. */ + Uint32 num_readonly_storage_textures; /**< The number of readonly storage textures defined in the shader. */ + Uint32 num_readonly_storage_buffers; /**< The number of readonly storage buffers defined in the shader. */ + Uint32 num_readwrite_storage_textures; /**< The number of read-write storage textures defined in the shader. */ + Uint32 num_readwrite_storage_buffers; /**< The number of read-write storage buffers defined in the shader. */ + Uint32 num_uniform_buffers; /**< The number of uniform buffers defined in the shader. */ + Uint32 threadcount_x; /**< The number of threads in the X dimension. This should match the value in the shader. */ + Uint32 threadcount_y; /**< The number of threads in the Y dimension. This should match the value in the shader. */ + Uint32 threadcount_z; /**< The number of threads in the Z dimension. This should match the value in the shader. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUComputePipelineCreateInfo; + +/** + * A structure specifying the parameters of a color target used by a render + * pass. + * + * The load_op field determines what is done with the texture at the beginning + * of the render pass. + * + * - LOAD: Loads the data currently in the texture. Not recommended for + * multisample textures as it requires significant memory bandwidth. + * - CLEAR: Clears the texture to a single color. + * - DONT_CARE: The driver will do whatever it wants with the texture memory. + * This is a good option if you know that every single pixel will be touched + * in the render pass. + * + * The store_op field determines what is done with the color results of the + * render pass. + * + * - STORE: Stores the results of the render pass in the texture. Not + * recommended for multisample textures as it requires significant memory + * bandwidth. + * - DONT_CARE: The driver will do whatever it wants with the texture memory. + * This is often a good option for depth/stencil textures. + * - RESOLVE: Resolves a multisample texture into resolve_texture, which must + * have a sample count of 1. Then the driver may discard the multisample + * texture memory. This is the most performant method of resolving a + * multisample target. + * - RESOLVE_AND_STORE: Resolves a multisample texture into the + * resolve_texture, which must have a sample count of 1. Then the driver + * stores the multisample texture's contents. Not recommended as it requires + * significant memory bandwidth. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef struct SDL_GPUColorTargetInfo +{ + SDL_GPUTexture *texture; /**< The texture that will be used as a color target by a render pass. */ + Uint32 mip_level; /**< The mip level to use as a color target. */ + Uint32 layer_or_depth_plane; /**< The layer index or depth plane to use as a color target. This value is treated as a layer index on 2D array and cube textures, and as a depth plane on 3D textures. */ + SDL_FColor clear_color; /**< The color to clear the color target to at the start of the render pass. Ignored if SDL_GPU_LOADOP_CLEAR is not used. */ + SDL_GPULoadOp load_op; /**< What is done with the contents of the color target at the beginning of the render pass. */ + SDL_GPUStoreOp store_op; /**< What is done with the results of the render pass. */ + SDL_GPUTexture *resolve_texture; /**< The texture that will receive the results of a multisample resolve operation. Ignored if a RESOLVE* store_op is not used. */ + Uint32 resolve_mip_level; /**< The mip level of the resolve texture to use for the resolve operation. Ignored if a RESOLVE* store_op is not used. */ + Uint32 resolve_layer; /**< The layer index of the resolve texture to use for the resolve operation. Ignored if a RESOLVE* store_op is not used. */ + bool cycle; /**< true cycles the texture if the texture is bound and load_op is not LOAD */ + bool cycle_resolve_texture; /**< true cycles the resolve texture if the resolve texture is bound. Ignored if a RESOLVE* store_op is not used. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPUColorTargetInfo; + +/** + * A structure specifying the parameters of a depth-stencil target used by a + * render pass. + * + * The load_op field determines what is done with the depth contents of the + * texture at the beginning of the render pass. + * + * - LOAD: Loads the depth values currently in the texture. + * - CLEAR: Clears the texture to a single depth. + * - DONT_CARE: The driver will do whatever it wants with the memory. This is + * a good option if you know that every single pixel will be touched in the + * render pass. + * + * The store_op field determines what is done with the depth results of the + * render pass. + * + * - STORE: Stores the depth results in the texture. + * - DONT_CARE: The driver will do whatever it wants with the depth results. + * This is often a good option for depth/stencil textures that don't need to + * be reused again. + * + * The stencil_load_op field determines what is done with the stencil contents + * of the texture at the beginning of the render pass. + * + * - LOAD: Loads the stencil values currently in the texture. + * - CLEAR: Clears the stencil values to a single value. + * - DONT_CARE: The driver will do whatever it wants with the memory. This is + * a good option if you know that every single pixel will be touched in the + * render pass. + * + * The stencil_store_op field determines what is done with the stencil results + * of the render pass. + * + * - STORE: Stores the stencil results in the texture. + * - DONT_CARE: The driver will do whatever it wants with the stencil results. + * This is often a good option for depth/stencil textures that don't need to + * be reused again. + * + * Note that depth/stencil targets do not support multisample resolves. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef struct SDL_GPUDepthStencilTargetInfo +{ + SDL_GPUTexture *texture; /**< The texture that will be used as the depth stencil target by the render pass. */ + float clear_depth; /**< The value to clear the depth component to at the beginning of the render pass. Ignored if SDL_GPU_LOADOP_CLEAR is not used. */ + SDL_GPULoadOp load_op; /**< What is done with the depth contents at the beginning of the render pass. */ + SDL_GPUStoreOp store_op; /**< What is done with the depth results of the render pass. */ + SDL_GPULoadOp stencil_load_op; /**< What is done with the stencil contents at the beginning of the render pass. */ + SDL_GPUStoreOp stencil_store_op; /**< What is done with the stencil results of the render pass. */ + bool cycle; /**< true cycles the texture if the texture is bound and any load ops are not LOAD */ + Uint8 clear_stencil; /**< The value to clear the stencil component to at the beginning of the render pass. Ignored if SDL_GPU_LOADOP_CLEAR is not used. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPUDepthStencilTargetInfo; + +/** + * A structure containing parameters for a blit command. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BlitGPUTexture + */ +typedef struct SDL_GPUBlitInfo { + SDL_GPUBlitRegion source; /**< The source region for the blit. */ + SDL_GPUBlitRegion destination; /**< The destination region for the blit. */ + SDL_GPULoadOp load_op; /**< What is done with the contents of the destination before the blit. */ + SDL_FColor clear_color; /**< The color to clear the destination region to before the blit. Ignored if load_op is not SDL_GPU_LOADOP_CLEAR. */ + SDL_FlipMode flip_mode; /**< The flip mode for the source region. */ + SDL_GPUFilter filter; /**< The filter mode used when blitting. */ + bool cycle; /**< true cycles the destination texture if it is already bound. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUBlitInfo; + +/* Binding structs */ + +/** + * A structure specifying parameters in a buffer binding call. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BindGPUVertexBuffers + * \sa SDL_BindGPUIndexBuffer + */ +typedef struct SDL_GPUBufferBinding +{ + SDL_GPUBuffer *buffer; /**< The buffer to bind. Must have been created with SDL_GPU_BUFFERUSAGE_VERTEX for SDL_BindGPUVertexBuffers, or SDL_GPU_BUFFERUSAGE_INDEX for SDL_BindGPUIndexBuffer. */ + Uint32 offset; /**< The starting byte of the data to bind in the buffer. */ +} SDL_GPUBufferBinding; + +/** + * A structure specifying parameters in a sampler binding call. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUFragmentSamplers + */ +typedef struct SDL_GPUTextureSamplerBinding +{ + SDL_GPUTexture *texture; /**< The texture to bind. Must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. */ + SDL_GPUSampler *sampler; /**< The sampler to bind. */ +} SDL_GPUTextureSamplerBinding; + +/** + * A structure specifying parameters related to binding buffers in a compute + * pass. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUComputePass + */ +typedef struct SDL_GPUStorageBufferReadWriteBinding +{ + SDL_GPUBuffer *buffer; /**< The buffer to bind. Must have been created with SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_WRITE. */ + bool cycle; /**< true cycles the buffer if it is already bound. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUStorageBufferReadWriteBinding; + +/** + * A structure specifying parameters related to binding textures in a compute + * pass. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUComputePass + */ +typedef struct SDL_GPUStorageTextureReadWriteBinding +{ + SDL_GPUTexture *texture; /**< The texture to bind. Must have been created with SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_WRITE or SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE. */ + Uint32 mip_level; /**< The mip level index to bind. */ + Uint32 layer; /**< The layer index to bind. */ + bool cycle; /**< true cycles the texture if it is already bound. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUStorageTextureReadWriteBinding; + +/* Functions */ + +/* Device */ + +/** + * Checks for GPU runtime support. + * + * \param format_flags a bitflag indicating which shader formats the app is + * able to provide. + * \param name the preferred GPU driver, or NULL to let SDL pick the optimal + * driver. + * \returns true if supported, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUSupportsShaderFormats( + SDL_GPUShaderFormat format_flags, + const char *name); + +/** + * Checks for GPU runtime support. + * + * \param props the properties to use. + * \returns true if supported, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUDeviceWithProperties + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUSupportsProperties( + SDL_PropertiesID props); + +/** + * Creates a GPU context. + * + * \param format_flags a bitflag indicating which shader formats the app is + * able to provide. + * \param debug_mode enable debug mode properties and validations. + * \param name the preferred GPU driver, or NULL to let SDL pick the optimal + * driver. + * \returns a GPU context on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGPUShaderFormats + * \sa SDL_GetGPUDeviceDriver + * \sa SDL_DestroyGPUDevice + * \sa SDL_GPUSupportsShaderFormats + */ +extern SDL_DECLSPEC SDL_GPUDevice * SDLCALL SDL_CreateGPUDevice( + SDL_GPUShaderFormat format_flags, + bool debug_mode, + const char *name); + +/** + * Creates a GPU context. + * + * These are the supported properties: + * + * - `SDL_PROP_GPU_DEVICE_CREATE_DEBUGMODE_BOOLEAN`: enable debug mode + * properties and validations, defaults to true. + * - `SDL_PROP_GPU_DEVICE_CREATE_PREFERLOWPOWER_BOOLEAN`: enable to prefer + * energy efficiency over maximum GPU performance, defaults to false. + * - `SDL_PROP_GPU_DEVICE_CREATE_NAME_STRING`: the name of the GPU driver to + * use, if a specific one is desired. + * + * These are the current shader format properties: + * + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_PRIVATE_BOOLEAN`: The app is able to + * provide shaders for an NDA platform. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_SPIRV_BOOLEAN`: The app is able to + * provide SPIR-V shaders if applicable. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXBC_BOOLEAN`: The app is able to + * provide DXBC shaders if applicable + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXIL_BOOLEAN`: The app is able to + * provide DXIL shaders if applicable. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_MSL_BOOLEAN`: The app is able to + * provide MSL shaders if applicable. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_METALLIB_BOOLEAN`: The app is able to + * provide Metal shader libraries if applicable. + * + * With the D3D12 renderer: + * + * - `SDL_PROP_GPU_DEVICE_CREATE_D3D12_SEMANTIC_NAME_STRING`: the prefix to + * use for all vertex semantics, default is "TEXCOORD". + * + * \param props the properties to use. + * \returns a GPU context on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGPUShaderFormats + * \sa SDL_GetGPUDeviceDriver + * \sa SDL_DestroyGPUDevice + * \sa SDL_GPUSupportsProperties + */ +extern SDL_DECLSPEC SDL_GPUDevice * SDLCALL SDL_CreateGPUDeviceWithProperties( + SDL_PropertiesID props); + +#define SDL_PROP_GPU_DEVICE_CREATE_DEBUGMODE_BOOLEAN "SDL.gpu.device.create.debugmode" +#define SDL_PROP_GPU_DEVICE_CREATE_PREFERLOWPOWER_BOOLEAN "SDL.gpu.device.create.preferlowpower" +#define SDL_PROP_GPU_DEVICE_CREATE_NAME_STRING "SDL.gpu.device.create.name" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_PRIVATE_BOOLEAN "SDL.gpu.device.create.shaders.private" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_SPIRV_BOOLEAN "SDL.gpu.device.create.shaders.spirv" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXBC_BOOLEAN "SDL.gpu.device.create.shaders.dxbc" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXIL_BOOLEAN "SDL.gpu.device.create.shaders.dxil" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_MSL_BOOLEAN "SDL.gpu.device.create.shaders.msl" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_METALLIB_BOOLEAN "SDL.gpu.device.create.shaders.metallib" +#define SDL_PROP_GPU_DEVICE_CREATE_D3D12_SEMANTIC_NAME_STRING "SDL.gpu.device.create.d3d12.semantic" + +/** + * Destroys a GPU context previously returned by SDL_CreateGPUDevice. + * + * \param device a GPU Context to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUDevice + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyGPUDevice(SDL_GPUDevice *device); + +/** + * Get the number of GPU drivers compiled into SDL. + * + * \returns the number of built in GPU drivers. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGPUDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumGPUDrivers(void); + +/** + * Get the name of a built in GPU driver. + * + * The GPU drivers are presented in the order in which they are normally + * checked during initialization. + * + * The names of drivers are all simple, low-ASCII identifiers, like "vulkan", + * "metal" or "direct3d12". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of a GPU driver. + * \returns the name of the GPU driver with the given **index**. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumGPUDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGPUDriver(int index); + +/** + * Returns the name of the backend used to create this GPU context. + * + * \param device a GPU context to query. + * \returns the name of the device's driver, or NULL on error. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGPUDeviceDriver(SDL_GPUDevice *device); + +/** + * Returns the supported shader formats for this GPU context. + * + * \param device a GPU context to query. + * \returns a bitflag indicating which shader formats the driver is able to + * consume. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GPUShaderFormat SDLCALL SDL_GetGPUShaderFormats(SDL_GPUDevice *device); + +/* State Creation */ + +/** + * Creates a pipeline object to be used in a compute workflow. + * + * Shader resource bindings must be authored to follow a particular order + * depending on the shader format. + * + * For SPIR-V shaders, use the following resource sets: + * + * - 0: Sampled textures, followed by read-only storage textures, followed by + * read-only storage buffers + * - 1: Read-write storage textures, followed by read-write storage buffers + * - 2: Uniform buffers + * + * For DXBC and DXIL shaders, use the following register order: + * + * - (t[n], space0): Sampled textures, followed by read-only storage textures, + * followed by read-only storage buffers + * - (u[n], space1): Read-write storage textures, followed by read-write + * storage buffers + * - (b[n], space2): Uniform buffers + * + * For MSL/metallib, use the following order: + * + * - [[buffer]]: Uniform buffers, followed by read-only storage buffers, + * followed by read-write storage buffers + * - [[texture]]: Sampled textures, followed by read-only storage textures, + * followed by read-write storage textures + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_COMPUTEPIPELINE_CREATE_NAME_STRING`: a name that can be + * displayed in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the compute pipeline to + * create. + * \returns a compute pipeline object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindGPUComputePipeline + * \sa SDL_ReleaseGPUComputePipeline + */ +extern SDL_DECLSPEC SDL_GPUComputePipeline * SDLCALL SDL_CreateGPUComputePipeline( + SDL_GPUDevice *device, + const SDL_GPUComputePipelineCreateInfo *createinfo); + +#define SDL_PROP_GPU_COMPUTEPIPELINE_CREATE_NAME_STRING "SDL.gpu.computepipeline.create.name" + +/** + * Creates a pipeline object to be used in a graphics workflow. + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_GRAPHICSPIPELINE_CREATE_NAME_STRING`: a name that can be + * displayed in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the graphics pipeline to + * create. + * \returns a graphics pipeline object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + * \sa SDL_BindGPUGraphicsPipeline + * \sa SDL_ReleaseGPUGraphicsPipeline + */ +extern SDL_DECLSPEC SDL_GPUGraphicsPipeline * SDLCALL SDL_CreateGPUGraphicsPipeline( + SDL_GPUDevice *device, + const SDL_GPUGraphicsPipelineCreateInfo *createinfo); + +#define SDL_PROP_GPU_GRAPHICSPIPELINE_CREATE_NAME_STRING "SDL.gpu.graphicspipeline.create.name" + +/** + * Creates a sampler object to be used when binding textures in a graphics + * workflow. + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_SAMPLER_CREATE_NAME_STRING`: a name that can be displayed + * in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the sampler to create. + * \returns a sampler object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_ReleaseGPUSampler + */ +extern SDL_DECLSPEC SDL_GPUSampler * SDLCALL SDL_CreateGPUSampler( + SDL_GPUDevice *device, + const SDL_GPUSamplerCreateInfo *createinfo); + +#define SDL_PROP_GPU_SAMPLER_CREATE_NAME_STRING "SDL.gpu.sampler.create.name" + +/** + * Creates a shader to be used when creating a graphics pipeline. + * + * Shader resource bindings must be authored to follow a particular order + * depending on the shader format. + * + * For SPIR-V shaders, use the following resource sets: + * + * For vertex shaders: + * + * - 0: Sampled textures, followed by storage textures, followed by storage + * buffers + * - 1: Uniform buffers + * + * For fragment shaders: + * + * - 2: Sampled textures, followed by storage textures, followed by storage + * buffers + * - 3: Uniform buffers + * + * For DXBC and DXIL shaders, use the following register order: + * + * For vertex shaders: + * + * - (t[n], space0): Sampled textures, followed by storage textures, followed + * by storage buffers + * - (s[n], space0): Samplers with indices corresponding to the sampled + * textures + * - (b[n], space1): Uniform buffers + * + * For pixel shaders: + * + * - (t[n], space2): Sampled textures, followed by storage textures, followed + * by storage buffers + * - (s[n], space2): Samplers with indices corresponding to the sampled + * textures + * - (b[n], space3): Uniform buffers + * + * For MSL/metallib, use the following order: + * + * - [[texture]]: Sampled textures, followed by storage textures + * - [[sampler]]: Samplers with indices corresponding to the sampled textures + * - [[buffer]]: Uniform buffers, followed by storage buffers. Vertex buffer 0 + * is bound at [[buffer(14)]], vertex buffer 1 at [[buffer(15)]], and so on. + * Rather than manually authoring vertex buffer indices, use the + * [[stage_in]] attribute which will automatically use the vertex input + * information from the SDL_GPUGraphicsPipeline. + * + * Shader semantics other than system-value semantics do not matter in D3D12 + * and for ease of use the SDL implementation assumes that non system-value + * semantics will all be TEXCOORD. If you are using HLSL as the shader source + * language, your vertex semantics should start at TEXCOORD0 and increment + * like so: TEXCOORD1, TEXCOORD2, etc. If you wish to change the semantic + * prefix to something other than TEXCOORD you can use + * SDL_PROP_GPU_DEVICE_CREATE_D3D12_SEMANTIC_NAME_STRING with + * SDL_CreateGPUDeviceWithProperties(). + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_SHADER_CREATE_NAME_STRING`: a name that can be displayed in + * debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the shader to create. + * \returns a shader object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_ReleaseGPUShader + */ +extern SDL_DECLSPEC SDL_GPUShader * SDLCALL SDL_CreateGPUShader( + SDL_GPUDevice *device, + const SDL_GPUShaderCreateInfo *createinfo); + +#define SDL_PROP_GPU_SHADER_CREATE_NAME_STRING "SDL.gpu.shader.create.name" + +/** + * Creates a texture object to be used in graphics or compute workflows. + * + * The contents of this texture are undefined until data is written to the + * texture. + * + * Note that certain combinations of usage flags are invalid. For example, a + * texture cannot have both the SAMPLER and GRAPHICS_STORAGE_READ flags. + * + * If you request a sample count higher than the hardware supports, the + * implementation will automatically fall back to the highest available sample + * count. + * + * There are optional properties that can be provided through + * SDL_GPUTextureCreateInfo's `props`. These are the supported properties: + * + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_R_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this red intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_G_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this green intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_B_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this blue intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_A_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this alpha intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_DEPTH_FLOAT`: (Direct3D 12 only) + * if the texture usage is SDL_GPU_TEXTUREUSAGE_DEPTH_STENCIL_TARGET, clear + * the texture to a depth of this value. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_STENCIL_NUMBER`: (Direct3D 12 + * only) if the texture usage is SDL_GPU_TEXTUREUSAGE_DEPTH_STENCIL_TARGET, + * clear the texture to a stencil of this Uint8 value. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_NAME_STRING`: a name that can be displayed + * in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the texture to create. + * \returns a texture object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUVertexStorageTextures + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_BindGPUFragmentStorageTextures + * \sa SDL_BindGPUComputeStorageTextures + * \sa SDL_BlitGPUTexture + * \sa SDL_ReleaseGPUTexture + * \sa SDL_GPUTextureSupportsFormat + */ +extern SDL_DECLSPEC SDL_GPUTexture * SDLCALL SDL_CreateGPUTexture( + SDL_GPUDevice *device, + const SDL_GPUTextureCreateInfo *createinfo); + +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_R_FLOAT "SDL.gpu.texture.create.d3d12.clear.r" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_G_FLOAT "SDL.gpu.texture.create.d3d12.clear.g" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_B_FLOAT "SDL.gpu.texture.create.d3d12.clear.b" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_A_FLOAT "SDL.gpu.texture.create.d3d12.clear.a" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_DEPTH_FLOAT "SDL.gpu.texture.create.d3d12.clear.depth" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_STENCIL_NUMBER "SDL.gpu.texture.create.d3d12.clear.stencil" +#define SDL_PROP_GPU_TEXTURE_CREATE_NAME_STRING "SDL.gpu.texture.create.name" + +/** + * Creates a buffer object to be used in graphics or compute workflows. + * + * The contents of this buffer are undefined until data is written to the + * buffer. + * + * Note that certain combinations of usage flags are invalid. For example, a + * buffer cannot have both the VERTEX and INDEX flags. + * + * If you use a STORAGE flag, the data in the buffer must respect std140 + * layout conventions. In practical terms this means you must ensure that vec3 + * and vec4 fields are 16-byte aligned. + * + * For better understanding of underlying concepts and memory management with + * SDL GPU API, you may refer + * [this blog post](https://moonside.games/posts/sdl-gpu-concepts-cycling/) + * . + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_BUFFER_CREATE_NAME_STRING`: a name that can be displayed in + * debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the buffer to create. + * \returns a buffer object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_CopyGPUBufferToBuffer + * \sa SDL_BindGPUVertexBuffers + * \sa SDL_BindGPUIndexBuffer + * \sa SDL_BindGPUVertexStorageBuffers + * \sa SDL_BindGPUFragmentStorageBuffers + * \sa SDL_DrawGPUPrimitivesIndirect + * \sa SDL_DrawGPUIndexedPrimitivesIndirect + * \sa SDL_BindGPUComputeStorageBuffers + * \sa SDL_DispatchGPUComputeIndirect + * \sa SDL_ReleaseGPUBuffer + */ +extern SDL_DECLSPEC SDL_GPUBuffer * SDLCALL SDL_CreateGPUBuffer( + SDL_GPUDevice *device, + const SDL_GPUBufferCreateInfo *createinfo); + +#define SDL_PROP_GPU_BUFFER_CREATE_NAME_STRING "SDL.gpu.buffer.create.name" + +/** + * Creates a transfer buffer to be used when uploading to or downloading from + * graphics resources. + * + * Download buffers can be particularly expensive to create, so it is good + * practice to reuse them if data will be downloaded regularly. + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_TRANSFERBUFFER_CREATE_NAME_STRING`: a name that can be + * displayed in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the transfer buffer to + * create. + * \returns a transfer buffer on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_ReleaseGPUTransferBuffer + */ +extern SDL_DECLSPEC SDL_GPUTransferBuffer * SDLCALL SDL_CreateGPUTransferBuffer( + SDL_GPUDevice *device, + const SDL_GPUTransferBufferCreateInfo *createinfo); + +#define SDL_PROP_GPU_TRANSFERBUFFER_CREATE_NAME_STRING "SDL.gpu.transferbuffer.create.name" + +/* Debug Naming */ + +/** + * Sets an arbitrary string constant to label a buffer. + * + * You should use SDL_PROP_GPU_BUFFER_CREATE_NAME_STRING with + * SDL_CreateGPUBuffer instead of this function to avoid thread safety issues. + * + * \param device a GPU Context. + * \param buffer a buffer to attach the name to. + * \param text a UTF-8 string constant to mark as the name of the buffer. + * + * \threadsafety This function is not thread safe, you must make sure the + * buffer is not simultaneously used by any other thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUBufferName( + SDL_GPUDevice *device, + SDL_GPUBuffer *buffer, + const char *text); + +/** + * Sets an arbitrary string constant to label a texture. + * + * You should use SDL_PROP_GPU_TEXTURE_CREATE_NAME_STRING with + * SDL_CreateGPUTexture instead of this function to avoid thread safety + * issues. + * + * \param device a GPU Context. + * \param texture a texture to attach the name to. + * \param text a UTF-8 string constant to mark as the name of the texture. + * + * \threadsafety This function is not thread safe, you must make sure the + * texture is not simultaneously used by any other thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUTextureName( + SDL_GPUDevice *device, + SDL_GPUTexture *texture, + const char *text); + +/** + * Inserts an arbitrary string label into the command buffer callstream. + * + * Useful for debugging. + * + * \param command_buffer a command buffer. + * \param text a UTF-8 string constant to insert as the label. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_InsertGPUDebugLabel( + SDL_GPUCommandBuffer *command_buffer, + const char *text); + +/** + * Begins a debug group with an arbitary name. + * + * Used for denoting groups of calls when viewing the command buffer + * callstream in a graphics debugging tool. + * + * Each call to SDL_PushGPUDebugGroup must have a corresponding call to + * SDL_PopGPUDebugGroup. + * + * On some backends (e.g. Metal), pushing a debug group during a + * render/blit/compute pass will create a group that is scoped to the native + * pass rather than the command buffer. For best results, if you push a debug + * group during a pass, always pop it in the same pass. + * + * \param command_buffer a command buffer. + * \param name a UTF-8 string constant that names the group. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PopGPUDebugGroup + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUDebugGroup( + SDL_GPUCommandBuffer *command_buffer, + const char *name); + +/** + * Ends the most-recently pushed debug group. + * + * \param command_buffer a command buffer. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PushGPUDebugGroup + */ +extern SDL_DECLSPEC void SDLCALL SDL_PopGPUDebugGroup( + SDL_GPUCommandBuffer *command_buffer); + +/* Disposal */ + +/** + * Frees the given texture as soon as it is safe to do so. + * + * You must not reference the texture after calling this function. + * + * \param device a GPU context. + * \param texture a texture to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUTexture( + SDL_GPUDevice *device, + SDL_GPUTexture *texture); + +/** + * Frees the given sampler as soon as it is safe to do so. + * + * You must not reference the sampler after calling this function. + * + * \param device a GPU context. + * \param sampler a sampler to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUSampler( + SDL_GPUDevice *device, + SDL_GPUSampler *sampler); + +/** + * Frees the given buffer as soon as it is safe to do so. + * + * You must not reference the buffer after calling this function. + * + * \param device a GPU context. + * \param buffer a buffer to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUBuffer( + SDL_GPUDevice *device, + SDL_GPUBuffer *buffer); + +/** + * Frees the given transfer buffer as soon as it is safe to do so. + * + * You must not reference the transfer buffer after calling this function. + * + * \param device a GPU context. + * \param transfer_buffer a transfer buffer to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUTransferBuffer( + SDL_GPUDevice *device, + SDL_GPUTransferBuffer *transfer_buffer); + +/** + * Frees the given compute pipeline as soon as it is safe to do so. + * + * You must not reference the compute pipeline after calling this function. + * + * \param device a GPU context. + * \param compute_pipeline a compute pipeline to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUComputePipeline( + SDL_GPUDevice *device, + SDL_GPUComputePipeline *compute_pipeline); + +/** + * Frees the given shader as soon as it is safe to do so. + * + * You must not reference the shader after calling this function. + * + * \param device a GPU context. + * \param shader a shader to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUShader( + SDL_GPUDevice *device, + SDL_GPUShader *shader); + +/** + * Frees the given graphics pipeline as soon as it is safe to do so. + * + * You must not reference the graphics pipeline after calling this function. + * + * \param device a GPU context. + * \param graphics_pipeline a graphics pipeline to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUGraphicsPipeline( + SDL_GPUDevice *device, + SDL_GPUGraphicsPipeline *graphics_pipeline); + +/** + * Acquire a command buffer. + * + * This command buffer is managed by the implementation and should not be + * freed by the user. The command buffer may only be used on the thread it was + * acquired on. The command buffer should be submitted on the thread it was + * acquired on. + * + * It is valid to acquire multiple command buffers on the same thread at once. + * In fact a common design pattern is to acquire two command buffers per frame + * where one is dedicated to render and compute passes and the other is + * dedicated to copy passes and other preparatory work such as generating + * mipmaps. Interleaving commands between the two command buffers reduces the + * total amount of passes overall which improves rendering performance. + * + * \param device a GPU context. + * \returns a command buffer, or NULL on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC SDL_GPUCommandBuffer * SDLCALL SDL_AcquireGPUCommandBuffer( + SDL_GPUDevice *device); + +/* Uniform Data */ + +/** + * Pushes data to a vertex uniform slot on the command buffer. + * + * Subsequent draw calls will use this uniform data. + * + * The data being pushed must respect std140 layout conventions. In practical + * terms this means you must ensure that vec3 and vec4 fields are 16-byte + * aligned. + * + * \param command_buffer a command buffer. + * \param slot_index the vertex uniform slot to push data to. + * \param data client data to write. + * \param length the length of the data to write. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUVertexUniformData( + SDL_GPUCommandBuffer *command_buffer, + Uint32 slot_index, + const void *data, + Uint32 length); + +/** + * Pushes data to a fragment uniform slot on the command buffer. + * + * Subsequent draw calls will use this uniform data. + * + * The data being pushed must respect std140 layout conventions. In practical + * terms this means you must ensure that vec3 and vec4 fields are 16-byte + * aligned. + * + * \param command_buffer a command buffer. + * \param slot_index the fragment uniform slot to push data to. + * \param data client data to write. + * \param length the length of the data to write. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUFragmentUniformData( + SDL_GPUCommandBuffer *command_buffer, + Uint32 slot_index, + const void *data, + Uint32 length); + +/** + * Pushes data to a uniform slot on the command buffer. + * + * Subsequent draw calls will use this uniform data. + * + * The data being pushed must respect std140 layout conventions. In practical + * terms this means you must ensure that vec3 and vec4 fields are 16-byte + * aligned. + * + * \param command_buffer a command buffer. + * \param slot_index the uniform slot to push data to. + * \param data client data to write. + * \param length the length of the data to write. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUComputeUniformData( + SDL_GPUCommandBuffer *command_buffer, + Uint32 slot_index, + const void *data, + Uint32 length); + +/* Graphics State */ + +/** + * Begins a render pass on a command buffer. + * + * A render pass consists of a set of texture subresources (or depth slices in + * the 3D texture case) which will be rendered to during the render pass, + * along with corresponding clear values and load/store operations. All + * operations related to graphics pipelines must take place inside of a render + * pass. A default viewport and scissor state are automatically set when this + * is called. You cannot begin another render pass, or begin a compute pass or + * copy pass until you have ended the render pass. + * + * \param command_buffer a command buffer. + * \param color_target_infos an array of texture subresources with + * corresponding clear values and load/store ops. + * \param num_color_targets the number of color targets in the + * color_target_infos array. + * \param depth_stencil_target_info a texture subresource with corresponding + * clear value and load/store ops, may be + * NULL. + * \returns a render pass handle. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EndGPURenderPass + */ +extern SDL_DECLSPEC SDL_GPURenderPass * SDLCALL SDL_BeginGPURenderPass( + SDL_GPUCommandBuffer *command_buffer, + const SDL_GPUColorTargetInfo *color_target_infos, + Uint32 num_color_targets, + const SDL_GPUDepthStencilTargetInfo *depth_stencil_target_info); + +/** + * Binds a graphics pipeline on a render pass to be used in rendering. + * + * A graphics pipeline must be bound before making any draw calls. + * + * \param render_pass a render pass handle. + * \param graphics_pipeline the graphics pipeline to bind. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUGraphicsPipeline( + SDL_GPURenderPass *render_pass, + SDL_GPUGraphicsPipeline *graphics_pipeline); + +/** + * Sets the current viewport state on a command buffer. + * + * \param render_pass a render pass handle. + * \param viewport the viewport to set. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUViewport( + SDL_GPURenderPass *render_pass, + const SDL_GPUViewport *viewport); + +/** + * Sets the current scissor state on a command buffer. + * + * \param render_pass a render pass handle. + * \param scissor the scissor area to set. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUScissor( + SDL_GPURenderPass *render_pass, + const SDL_Rect *scissor); + +/** + * Sets the current blend constants on a command buffer. + * + * \param render_pass a render pass handle. + * \param blend_constants the blend constant color. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GPU_BLENDFACTOR_CONSTANT_COLOR + * \sa SDL_GPU_BLENDFACTOR_ONE_MINUS_CONSTANT_COLOR + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUBlendConstants( + SDL_GPURenderPass *render_pass, + SDL_FColor blend_constants); + +/** + * Sets the current stencil reference value on a command buffer. + * + * \param render_pass a render pass handle. + * \param reference the stencil reference value to set. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUStencilReference( + SDL_GPURenderPass *render_pass, + Uint8 reference); + +/** + * Binds vertex buffers on a command buffer for use with subsequent draw + * calls. + * + * \param render_pass a render pass handle. + * \param first_slot the vertex buffer slot to begin binding from. + * \param bindings an array of SDL_GPUBufferBinding structs containing vertex + * buffers and offset values. + * \param num_bindings the number of bindings in the bindings array. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexBuffers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + const SDL_GPUBufferBinding *bindings, + Uint32 num_bindings); + +/** + * Binds an index buffer on a command buffer for use with subsequent draw + * calls. + * + * \param render_pass a render pass handle. + * \param binding a pointer to a struct containing an index buffer and offset. + * \param index_element_size whether the index values in the buffer are 16- or + * 32-bit. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUIndexBuffer( + SDL_GPURenderPass *render_pass, + const SDL_GPUBufferBinding *binding, + SDL_GPUIndexElementSize index_element_size); + +/** + * Binds texture-sampler pairs for use on the vertex shader. + * + * The textures must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the vertex sampler slot to begin binding from. + * \param texture_sampler_bindings an array of texture-sampler binding + * structs. + * \param num_bindings the number of texture-sampler pairs to bind from the + * array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexSamplers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + const SDL_GPUTextureSamplerBinding *texture_sampler_bindings, + Uint32 num_bindings); + +/** + * Binds storage textures for use on the vertex shader. + * + * These textures must have been created with + * SDL_GPU_TEXTUREUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the vertex storage texture slot to begin binding from. + * \param storage_textures an array of storage textures. + * \param num_bindings the number of storage texture to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexStorageTextures( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUTexture *const *storage_textures, + Uint32 num_bindings); + +/** + * Binds storage buffers for use on the vertex shader. + * + * These buffers must have been created with + * SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the vertex storage buffer slot to begin binding from. + * \param storage_buffers an array of buffers. + * \param num_bindings the number of buffers to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexStorageBuffers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUBuffer *const *storage_buffers, + Uint32 num_bindings); + +/** + * Binds texture-sampler pairs for use on the fragment shader. + * + * The textures must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the fragment sampler slot to begin binding from. + * \param texture_sampler_bindings an array of texture-sampler binding + * structs. + * \param num_bindings the number of texture-sampler pairs to bind from the + * array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUFragmentSamplers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + const SDL_GPUTextureSamplerBinding *texture_sampler_bindings, + Uint32 num_bindings); + +/** + * Binds storage textures for use on the fragment shader. + * + * These textures must have been created with + * SDL_GPU_TEXTUREUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the fragment storage texture slot to begin binding from. + * \param storage_textures an array of storage textures. + * \param num_bindings the number of storage textures to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUFragmentStorageTextures( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUTexture *const *storage_textures, + Uint32 num_bindings); + +/** + * Binds storage buffers for use on the fragment shader. + * + * These buffers must have been created with + * SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the fragment storage buffer slot to begin binding from. + * \param storage_buffers an array of storage buffers. + * \param num_bindings the number of storage buffers to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUFragmentStorageBuffers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUBuffer *const *storage_buffers, + Uint32 num_bindings); + +/* Drawing */ + +/** + * Draws data using bound graphics state with an index buffer and instancing + * enabled. + * + * You must not call this function before binding a graphics pipeline. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \param render_pass a render pass handle. + * \param num_indices the number of indices to draw per instance. + * \param num_instances the number of instances to draw. + * \param first_index the starting index within the index buffer. + * \param vertex_offset value added to vertex index before indexing into the + * vertex buffer. + * \param first_instance the ID of the first instance to draw. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUIndexedPrimitives( + SDL_GPURenderPass *render_pass, + Uint32 num_indices, + Uint32 num_instances, + Uint32 first_index, + Sint32 vertex_offset, + Uint32 first_instance); + +/** + * Draws data using bound graphics state. + * + * You must not call this function before binding a graphics pipeline. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \param render_pass a render pass handle. + * \param num_vertices the number of vertices to draw. + * \param num_instances the number of instances that will be drawn. + * \param first_vertex the index of the first vertex to draw. + * \param first_instance the ID of the first instance to draw. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUPrimitives( + SDL_GPURenderPass *render_pass, + Uint32 num_vertices, + Uint32 num_instances, + Uint32 first_vertex, + Uint32 first_instance); + +/** + * Draws data using bound graphics state and with draw parameters set from a + * buffer. + * + * The buffer must consist of tightly-packed draw parameter sets that each + * match the layout of SDL_GPUIndirectDrawCommand. You must not call this + * function before binding a graphics pipeline. + * + * \param render_pass a render pass handle. + * \param buffer a buffer containing draw parameters. + * \param offset the offset to start reading from the draw buffer. + * \param draw_count the number of draw parameter sets that should be read + * from the draw buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUPrimitivesIndirect( + SDL_GPURenderPass *render_pass, + SDL_GPUBuffer *buffer, + Uint32 offset, + Uint32 draw_count); + +/** + * Draws data using bound graphics state with an index buffer enabled and with + * draw parameters set from a buffer. + * + * The buffer must consist of tightly-packed draw parameter sets that each + * match the layout of SDL_GPUIndexedIndirectDrawCommand. You must not call + * this function before binding a graphics pipeline. + * + * \param render_pass a render pass handle. + * \param buffer a buffer containing draw parameters. + * \param offset the offset to start reading from the draw buffer. + * \param draw_count the number of draw parameter sets that should be read + * from the draw buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUIndexedPrimitivesIndirect( + SDL_GPURenderPass *render_pass, + SDL_GPUBuffer *buffer, + Uint32 offset, + Uint32 draw_count); + +/** + * Ends the given render pass. + * + * All bound graphics state on the render pass command buffer is unset. The + * render pass handle is now invalid. + * + * \param render_pass a render pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EndGPURenderPass( + SDL_GPURenderPass *render_pass); + +/* Compute Pass */ + +/** + * Begins a compute pass on a command buffer. + * + * A compute pass is defined by a set of texture subresources and buffers that + * may be written to by compute pipelines. These textures and buffers must + * have been created with the COMPUTE_STORAGE_WRITE bit or the + * COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE bit. If you do not create a texture + * with COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE, you must not read from the + * texture in the compute pass. All operations related to compute pipelines + * must take place inside of a compute pass. You must not begin another + * compute pass, or a render pass or copy pass before ending the compute pass. + * + * A VERY IMPORTANT NOTE - Reads and writes in compute passes are NOT + * implicitly synchronized. This means you may cause data races by both + * reading and writing a resource region in a compute pass, or by writing + * multiple times to a resource region. If your compute work depends on + * reading the completed output from a previous dispatch, you MUST end the + * current compute pass and begin a new one before you can safely access the + * data. Otherwise you will receive unexpected results. Reading and writing a + * texture in the same compute pass is only supported by specific texture + * formats. Make sure you check the format support! + * + * \param command_buffer a command buffer. + * \param storage_texture_bindings an array of writeable storage texture + * binding structs. + * \param num_storage_texture_bindings the number of storage textures to bind + * from the array. + * \param storage_buffer_bindings an array of writeable storage buffer binding + * structs. + * \param num_storage_buffer_bindings the number of storage buffers to bind + * from the array. + * \returns a compute pass handle. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EndGPUComputePass + */ +extern SDL_DECLSPEC SDL_GPUComputePass * SDLCALL SDL_BeginGPUComputePass( + SDL_GPUCommandBuffer *command_buffer, + const SDL_GPUStorageTextureReadWriteBinding *storage_texture_bindings, + Uint32 num_storage_texture_bindings, + const SDL_GPUStorageBufferReadWriteBinding *storage_buffer_bindings, + Uint32 num_storage_buffer_bindings); + +/** + * Binds a compute pipeline on a command buffer for use in compute dispatch. + * + * \param compute_pass a compute pass handle. + * \param compute_pipeline a compute pipeline to bind. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputePipeline( + SDL_GPUComputePass *compute_pass, + SDL_GPUComputePipeline *compute_pipeline); + +/** + * Binds texture-sampler pairs for use on the compute shader. + * + * The textures must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param compute_pass a compute pass handle. + * \param first_slot the compute sampler slot to begin binding from. + * \param texture_sampler_bindings an array of texture-sampler binding + * structs. + * \param num_bindings the number of texture-sampler bindings to bind from the + * array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputeSamplers( + SDL_GPUComputePass *compute_pass, + Uint32 first_slot, + const SDL_GPUTextureSamplerBinding *texture_sampler_bindings, + Uint32 num_bindings); + +/** + * Binds storage textures as readonly for use on the compute pipeline. + * + * These textures must have been created with + * SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param compute_pass a compute pass handle. + * \param first_slot the compute storage texture slot to begin binding from. + * \param storage_textures an array of storage textures. + * \param num_bindings the number of storage textures to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputeStorageTextures( + SDL_GPUComputePass *compute_pass, + Uint32 first_slot, + SDL_GPUTexture *const *storage_textures, + Uint32 num_bindings); + +/** + * Binds storage buffers as readonly for use on the compute pipeline. + * + * These buffers must have been created with + * SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param compute_pass a compute pass handle. + * \param first_slot the compute storage buffer slot to begin binding from. + * \param storage_buffers an array of storage buffer binding structs. + * \param num_bindings the number of storage buffers to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputeStorageBuffers( + SDL_GPUComputePass *compute_pass, + Uint32 first_slot, + SDL_GPUBuffer *const *storage_buffers, + Uint32 num_bindings); + +/** + * Dispatches compute work. + * + * You must not call this function before binding a compute pipeline. + * + * A VERY IMPORTANT NOTE If you dispatch multiple times in a compute pass, and + * the dispatches write to the same resource region as each other, there is no + * guarantee of which order the writes will occur. If the write order matters, + * you MUST end the compute pass and begin another one. + * + * \param compute_pass a compute pass handle. + * \param groupcount_x number of local workgroups to dispatch in the X + * dimension. + * \param groupcount_y number of local workgroups to dispatch in the Y + * dimension. + * \param groupcount_z number of local workgroups to dispatch in the Z + * dimension. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DispatchGPUCompute( + SDL_GPUComputePass *compute_pass, + Uint32 groupcount_x, + Uint32 groupcount_y, + Uint32 groupcount_z); + +/** + * Dispatches compute work with parameters set from a buffer. + * + * The buffer layout should match the layout of + * SDL_GPUIndirectDispatchCommand. You must not call this function before + * binding a compute pipeline. + * + * A VERY IMPORTANT NOTE If you dispatch multiple times in a compute pass, and + * the dispatches write to the same resource region as each other, there is no + * guarantee of which order the writes will occur. If the write order matters, + * you MUST end the compute pass and begin another one. + * + * \param compute_pass a compute pass handle. + * \param buffer a buffer containing dispatch parameters. + * \param offset the offset to start reading from the dispatch buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DispatchGPUComputeIndirect( + SDL_GPUComputePass *compute_pass, + SDL_GPUBuffer *buffer, + Uint32 offset); + +/** + * Ends the current compute pass. + * + * All bound compute state on the command buffer is unset. The compute pass + * handle is now invalid. + * + * \param compute_pass a compute pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EndGPUComputePass( + SDL_GPUComputePass *compute_pass); + +/* TransferBuffer Data */ + +/** + * Maps a transfer buffer into application address space. + * + * You must unmap the transfer buffer before encoding upload commands. The + * memory is owned by the graphics driver - do NOT call SDL_free() on the + * returned pointer. + * + * \param device a GPU context. + * \param transfer_buffer a transfer buffer. + * \param cycle if true, cycles the transfer buffer if it is already bound. + * \returns the address of the mapped transfer buffer memory, or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_MapGPUTransferBuffer( + SDL_GPUDevice *device, + SDL_GPUTransferBuffer *transfer_buffer, + bool cycle); + +/** + * Unmaps a previously mapped transfer buffer. + * + * \param device a GPU context. + * \param transfer_buffer a previously mapped transfer buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnmapGPUTransferBuffer( + SDL_GPUDevice *device, + SDL_GPUTransferBuffer *transfer_buffer); + +/* Copy Pass */ + +/** + * Begins a copy pass on a command buffer. + * + * All operations related to copying to or from buffers or textures take place + * inside a copy pass. You must not begin another copy pass, or a render pass + * or compute pass before ending the copy pass. + * + * \param command_buffer a command buffer. + * \returns a copy pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GPUCopyPass * SDLCALL SDL_BeginGPUCopyPass( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Uploads data from a transfer buffer to a texture. + * + * The upload occurs on the GPU timeline. You may assume that the upload has + * finished in subsequent commands. + * + * You must align the data in the transfer buffer to a multiple of the texel + * size of the texture format. + * + * \param copy_pass a copy pass handle. + * \param source the source transfer buffer with image layout information. + * \param destination the destination texture region. + * \param cycle if true, cycles the texture if the texture is bound, otherwise + * overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UploadToGPUTexture( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTextureTransferInfo *source, + const SDL_GPUTextureRegion *destination, + bool cycle); + +/** + * Uploads data from a transfer buffer to a buffer. + * + * The upload occurs on the GPU timeline. You may assume that the upload has + * finished in subsequent commands. + * + * \param copy_pass a copy pass handle. + * \param source the source transfer buffer with offset. + * \param destination the destination buffer with offset and size. + * \param cycle if true, cycles the buffer if it is already bound, otherwise + * overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UploadToGPUBuffer( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTransferBufferLocation *source, + const SDL_GPUBufferRegion *destination, + bool cycle); + +/** + * Performs a texture-to-texture copy. + * + * This copy occurs on the GPU timeline. You may assume the copy has finished + * in subsequent commands. + * + * \param copy_pass a copy pass handle. + * \param source a source texture region. + * \param destination a destination texture region. + * \param w the width of the region to copy. + * \param h the height of the region to copy. + * \param d the depth of the region to copy. + * \param cycle if true, cycles the destination texture if the destination + * texture is bound, otherwise overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CopyGPUTextureToTexture( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTextureLocation *source, + const SDL_GPUTextureLocation *destination, + Uint32 w, + Uint32 h, + Uint32 d, + bool cycle); + +/** + * Performs a buffer-to-buffer copy. + * + * This copy occurs on the GPU timeline. You may assume the copy has finished + * in subsequent commands. + * + * \param copy_pass a copy pass handle. + * \param source the buffer and offset to copy from. + * \param destination the buffer and offset to copy to. + * \param size the length of the buffer to copy. + * \param cycle if true, cycles the destination buffer if it is already bound, + * otherwise overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CopyGPUBufferToBuffer( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUBufferLocation *source, + const SDL_GPUBufferLocation *destination, + Uint32 size, + bool cycle); + +/** + * Copies data from a texture to a transfer buffer on the GPU timeline. + * + * This data is not guaranteed to be copied until the command buffer fence is + * signaled. + * + * \param copy_pass a copy pass handle. + * \param source the source texture region. + * \param destination the destination transfer buffer with image layout + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DownloadFromGPUTexture( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTextureRegion *source, + const SDL_GPUTextureTransferInfo *destination); + +/** + * Copies data from a buffer to a transfer buffer on the GPU timeline. + * + * This data is not guaranteed to be copied until the command buffer fence is + * signaled. + * + * \param copy_pass a copy pass handle. + * \param source the source buffer with offset and size. + * \param destination the destination transfer buffer with offset. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DownloadFromGPUBuffer( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUBufferRegion *source, + const SDL_GPUTransferBufferLocation *destination); + +/** + * Ends the current copy pass. + * + * \param copy_pass a copy pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EndGPUCopyPass( + SDL_GPUCopyPass *copy_pass); + +/** + * Generates mipmaps for the given texture. + * + * This function must not be called inside of any pass. + * + * \param command_buffer a command_buffer. + * \param texture a texture with more than 1 mip level. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_GenerateMipmapsForGPUTexture( + SDL_GPUCommandBuffer *command_buffer, + SDL_GPUTexture *texture); + +/** + * Blits from a source texture region to a destination texture region. + * + * This function must not be called inside of any pass. + * + * \param command_buffer a command buffer. + * \param info the blit info struct containing the blit parameters. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BlitGPUTexture( + SDL_GPUCommandBuffer *command_buffer, + const SDL_GPUBlitInfo *info); + +/* Submission/Presentation */ + +/** + * Determines whether a swapchain composition is supported by the window. + * + * The window must be claimed before calling this function. + * + * \param device a GPU context. + * \param window an SDL_Window. + * \param swapchain_composition the swapchain composition to check. + * \returns true if supported, false if unsupported. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WindowSupportsGPUSwapchainComposition( + SDL_GPUDevice *device, + SDL_Window *window, + SDL_GPUSwapchainComposition swapchain_composition); + +/** + * Determines whether a presentation mode is supported by the window. + * + * The window must be claimed before calling this function. + * + * \param device a GPU context. + * \param window an SDL_Window. + * \param present_mode the presentation mode to check. + * \returns true if supported, false if unsupported. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WindowSupportsGPUPresentMode( + SDL_GPUDevice *device, + SDL_Window *window, + SDL_GPUPresentMode present_mode); + +/** + * Claims a window, creating a swapchain structure for it. + * + * This must be called before SDL_AcquireGPUSwapchainTexture is called using + * the window. You should only call this function from the thread that created + * the window. + * + * The swapchain will be created with SDL_GPU_SWAPCHAINCOMPOSITION_SDR and + * SDL_GPU_PRESENTMODE_VSYNC. If you want to have different swapchain + * parameters, you must call SDL_SetGPUSwapchainParameters after claiming the + * window. + * + * \param device a GPU context. + * \param window an SDL_Window. + * \returns true on success, or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_ReleaseWindowFromGPUDevice + * \sa SDL_WindowSupportsGPUPresentMode + * \sa SDL_WindowSupportsGPUSwapchainComposition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClaimWindowForGPUDevice( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Unclaims a window, destroying its swapchain structure. + * + * \param device a GPU context. + * \param window an SDL_Window that has been claimed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseWindowFromGPUDevice( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Changes the swapchain parameters for the given claimed window. + * + * This function will fail if the requested present mode or swapchain + * composition are unsupported by the device. Check if the parameters are + * supported via SDL_WindowSupportsGPUPresentMode / + * SDL_WindowSupportsGPUSwapchainComposition prior to calling this function. + * + * SDL_GPU_PRESENTMODE_VSYNC with SDL_GPU_SWAPCHAINCOMPOSITION_SDR are always + * supported. + * + * \param device a GPU context. + * \param window an SDL_Window that has been claimed. + * \param swapchain_composition the desired composition of the swapchain. + * \param present_mode the desired present mode for the swapchain. + * \returns true if successful, false on error; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WindowSupportsGPUPresentMode + * \sa SDL_WindowSupportsGPUSwapchainComposition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGPUSwapchainParameters( + SDL_GPUDevice *device, + SDL_Window *window, + SDL_GPUSwapchainComposition swapchain_composition, + SDL_GPUPresentMode present_mode); + +/** + * Configures the maximum allowed number of frames in flight. + * + * The default value when the device is created is 2. This means that after + * you have submitted 2 frames for presentation, if the GPU has not finished + * working on the first frame, SDL_AcquireGPUSwapchainTexture() will fill the + * swapchain texture pointer with NULL, and + * SDL_WaitAndAcquireGPUSwapchainTexture() will block. + * + * Higher values increase throughput at the expense of visual latency. Lower + * values decrease visual latency at the expense of throughput. + * + * Note that calling this function will stall and flush the command queue to + * prevent synchronization issues. + * + * The minimum value of allowed frames in flight is 1, and the maximum is 3. + * + * \param device a GPU context. + * \param allowed_frames_in_flight the maximum number of frames that can be + * pending on the GPU. + * \returns true if successful, false on error; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGPUAllowedFramesInFlight( + SDL_GPUDevice *device, + Uint32 allowed_frames_in_flight); + +/** + * Obtains the texture format of the swapchain for the given window. + * + * Note that this format can change if the swapchain parameters change. + * + * \param device a GPU context. + * \param window an SDL_Window that has been claimed. + * \returns the texture format of the swapchain. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GPUTextureFormat SDLCALL SDL_GetGPUSwapchainTextureFormat( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Acquire a texture to use in presentation. + * + * When a swapchain texture is acquired on a command buffer, it will + * automatically be submitted for presentation when the command buffer is + * submitted. The swapchain texture should only be referenced by the command + * buffer used to acquire it. + * + * This function will fill the swapchain texture handle with NULL if too many + * frames are in flight. This is not an error. + * + * If you use this function, it is possible to create a situation where many + * command buffers are allocated while the rendering context waits for the GPU + * to catch up, which will cause memory usage to grow. You should use + * SDL_WaitAndAcquireGPUSwapchainTexture() unless you know what you are doing + * with timing. + * + * The swapchain texture is managed by the implementation and must not be + * freed by the user. You MUST NOT call this function from any thread other + * than the one that created the window. + * + * \param command_buffer a command buffer. + * \param window a window that has been claimed. + * \param swapchain_texture a pointer filled in with a swapchain texture + * handle. + * \param swapchain_texture_width a pointer filled in with the swapchain + * texture width, may be NULL. + * \param swapchain_texture_height a pointer filled in with the swapchain + * texture height, may be NULL. + * \returns true on success, false on error; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_CancelGPUCommandBuffer + * \sa SDL_GetWindowSizeInPixels + * \sa SDL_WaitForGPUSwapchain + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_SetGPUAllowedFramesInFlight + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AcquireGPUSwapchainTexture( + SDL_GPUCommandBuffer *command_buffer, + SDL_Window *window, + SDL_GPUTexture **swapchain_texture, + Uint32 *swapchain_texture_width, + Uint32 *swapchain_texture_height); + +/** + * Blocks the thread until a swapchain texture is available to be acquired. + * + * \param device a GPU context. + * \param window a window that has been claimed. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUSwapchainTexture + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_SetGPUAllowedFramesInFlight + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitForGPUSwapchain( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Blocks the thread until a swapchain texture is available to be acquired, + * and then acquires it. + * + * When a swapchain texture is acquired on a command buffer, it will + * automatically be submitted for presentation when the command buffer is + * submitted. The swapchain texture should only be referenced by the command + * buffer used to acquire it. It is an error to call + * SDL_CancelGPUCommandBuffer() after a swapchain texture is acquired. + * + * This function can fill the swapchain texture handle with NULL in certain + * cases, for example if the window is minimized. This is not an error. You + * should always make sure to check whether the pointer is NULL before + * actually using it. + * + * The swapchain texture is managed by the implementation and must not be + * freed by the user. You MUST NOT call this function from any thread other + * than the one that created the window. + * + * The swapchain texture is write-only and cannot be used as a sampler or for + * another reading operation. + * + * \param command_buffer a command buffer. + * \param window a window that has been claimed. + * \param swapchain_texture a pointer filled in with a swapchain texture + * handle. + * \param swapchain_texture_width a pointer filled in with the swapchain + * texture width, may be NULL. + * \param swapchain_texture_height a pointer filled in with the swapchain + * texture height, may be NULL. + * \returns true on success, false on error; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_AcquireGPUSwapchainTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitAndAcquireGPUSwapchainTexture( + SDL_GPUCommandBuffer *command_buffer, + SDL_Window *window, + SDL_GPUTexture **swapchain_texture, + Uint32 *swapchain_texture_width, + Uint32 *swapchain_texture_height); + +/** + * Submits a command buffer so its commands can be processed on the GPU. + * + * It is invalid to use the command buffer after this is called. + * + * This must be called from the thread the command buffer was acquired on. + * + * All commands in the submission are guaranteed to begin executing before any + * command in a subsequent submission begins executing. + * + * \param command_buffer a command buffer. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_AcquireGPUSwapchainTexture + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SubmitGPUCommandBuffer( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Submits a command buffer so its commands can be processed on the GPU, and + * acquires a fence associated with the command buffer. + * + * You must release this fence when it is no longer needed or it will cause a + * leak. It is invalid to use the command buffer after this is called. + * + * This must be called from the thread the command buffer was acquired on. + * + * All commands in the submission are guaranteed to begin executing before any + * command in a subsequent submission begins executing. + * + * \param command_buffer a command buffer. + * \returns a fence associated with the command buffer, or NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_AcquireGPUSwapchainTexture + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_ReleaseGPUFence + */ +extern SDL_DECLSPEC SDL_GPUFence * SDLCALL SDL_SubmitGPUCommandBufferAndAcquireFence( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Cancels a command buffer. + * + * None of the enqueued commands are executed. + * + * It is an error to call this function after a swapchain texture has been + * acquired. + * + * This must be called from the thread the command buffer was acquired on. + * + * You must not reference the command buffer after calling this function. + * + * \param command_buffer a command buffer. + * \returns true on success, false on error; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_AcquireGPUSwapchainTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CancelGPUCommandBuffer( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Blocks the thread until the GPU is completely idle. + * + * \param device a GPU context. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitForGPUFences + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitForGPUIdle( + SDL_GPUDevice *device); + +/** + * Blocks the thread until the given fences are signaled. + * + * \param device a GPU context. + * \param wait_all if 0, wait for any fence to be signaled, if 1, wait for all + * fences to be signaled. + * \param fences an array of fences to wait on. + * \param num_fences the number of fences in the fences array. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_WaitForGPUIdle + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitForGPUFences( + SDL_GPUDevice *device, + bool wait_all, + SDL_GPUFence *const *fences, + Uint32 num_fences); + +/** + * Checks the status of a fence. + * + * \param device a GPU context. + * \param fence a fence. + * \returns true if the fence is signaled, false if it is not. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC bool SDLCALL SDL_QueryGPUFence( + SDL_GPUDevice *device, + SDL_GPUFence *fence); + +/** + * Releases a fence obtained from SDL_SubmitGPUCommandBufferAndAcquireFence. + * + * You must not reference the fence after calling this function. + * + * \param device a GPU context. + * \param fence a fence. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUFence( + SDL_GPUDevice *device, + SDL_GPUFence *fence); + +/* Format Info */ + +/** + * Obtains the texel block size for a texture format. + * + * \param format the texture format you want to know the texel size of. + * \returns the texel block size of the texture format. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GPUTextureFormatTexelBlockSize( + SDL_GPUTextureFormat format); + +/** + * Determines whether a texture format is supported for a given type and + * usage. + * + * \param device a GPU context. + * \param format the texture format to check. + * \param type the type of texture (2D, 3D, Cube). + * \param usage a bitmask of all usage scenarios to check. + * \returns whether the texture format is supported for this type and usage. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUTextureSupportsFormat( + SDL_GPUDevice *device, + SDL_GPUTextureFormat format, + SDL_GPUTextureType type, + SDL_GPUTextureUsageFlags usage); + +/** + * Determines if a sample count for a texture format is supported. + * + * \param device a GPU context. + * \param format the texture format to check. + * \param sample_count the sample count to check. + * \returns whether the sample count is supported for this texture format. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUTextureSupportsSampleCount( + SDL_GPUDevice *device, + SDL_GPUTextureFormat format, + SDL_GPUSampleCount sample_count); + +/** + * Calculate the size in bytes of a texture format with dimensions. + * + * \param format a texture format. + * \param width width in pixels. + * \param height height in pixels. + * \param depth_or_layer_count depth for 3D textures or layer count otherwise. + * \returns the size of a texture with this format and dimensions. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_CalculateGPUTextureFormatSize( + SDL_GPUTextureFormat format, + Uint32 width, + Uint32 height, + Uint32 depth_or_layer_count); + +#ifdef SDL_PLATFORM_GDK + +/** + * Call this to suspend GPU operation on Xbox when you receive the + * SDL_EVENT_DID_ENTER_BACKGROUND event. + * + * Do NOT call any SDL_GPU functions after calling this function! This must + * also be called before calling SDL_GDKSuspendComplete. + * + * \param device a GPU context. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + */ +extern SDL_DECLSPEC void SDLCALL SDL_GDKSuspendGPU(SDL_GPUDevice *device); + +/** + * Call this to resume GPU operation on Xbox when you receive the + * SDL_EVENT_WILL_ENTER_FOREGROUND event. + * + * When resuming, this function MUST be called before calling any other + * SDL_GPU functions. + * + * \param device a GPU context. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + */ +extern SDL_DECLSPEC void SDLCALL SDL_GDKResumeGPU(SDL_GPUDevice *device); + +#endif /* SDL_PLATFORM_GDK */ + +#ifdef __cplusplus +} +#endif /* __cplusplus */ +#include + +#endif /* SDL_gpu_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_guid.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_guid.h new file mode 100644 index 0000000..312c42c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_guid.h @@ -0,0 +1,106 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: GUID */ + +/** + * # CategoryGUID + * + * A GUID is a 128-bit value that represents something that is uniquely + * identifiable by this value: "globally unique." + * + * SDL provides functions to convert a GUID to/from a string. + */ + +#ifndef SDL_guid_h_ +#define SDL_guid_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An SDL_GUID is a 128-bit identifier for an input device that identifies + * that device across runs of SDL programs on the same platform. + * + * If the device is detached and then re-attached to a different port, or if + * the base system is rebooted, the device should still report the same GUID. + * + * GUIDs are as precise as possible but are not guaranteed to distinguish + * physically distinct but equivalent devices. For example, two game + * controllers from the same vendor with the same product ID and revision may + * have the same GUID. + * + * GUIDs may be platform-dependent (i.e., the same device may report different + * GUIDs on different operating systems). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GUID { + Uint8 data[16]; +} SDL_GUID; + +/* Function prototypes */ + +/** + * Get an ASCII string representation for a given SDL_GUID. + * + * \param guid the SDL_GUID you wish to convert to string. + * \param pszGUID buffer in which to write the ASCII string. + * \param cbGUID the size of pszGUID, should be at least 33 bytes. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StringToGUID + */ +extern SDL_DECLSPEC void SDLCALL SDL_GUIDToString(SDL_GUID guid, char *pszGUID, int cbGUID); + +/** + * Convert a GUID string into a SDL_GUID structure. + * + * Performs no error checking. If this function is given a string containing + * an invalid GUID, the function will silently succeed, but the GUID generated + * will not be useful. + * + * \param pchGUID string containing an ASCII representation of a GUID. + * \returns a SDL_GUID structure. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GUIDToString + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_StringToGUID(const char *pchGUID); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_guid_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_haptic.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_haptic.h new file mode 100644 index 0000000..a45335b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_haptic.h @@ -0,0 +1,1441 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryHaptic + * + * The SDL haptic subsystem manages haptic (force feedback) devices. + * + * The basic usage is as follows: + * + * - Initialize the subsystem (SDL_INIT_HAPTIC). + * - Open a haptic device. + * - SDL_OpenHaptic() to open from index. + * - SDL_OpenHapticFromJoystick() to open from an existing joystick. + * - Create an effect (SDL_HapticEffect). + * - Upload the effect with SDL_CreateHapticEffect(). + * - Run the effect with SDL_RunHapticEffect(). + * - (optional) Free the effect with SDL_DestroyHapticEffect(). + * - Close the haptic device with SDL_CloseHaptic(). + * + * Simple rumble example: + * + * ```c + * SDL_Haptic *haptic = NULL; + * + * // Open the device + * SDL_HapticID *haptics = SDL_GetHaptics(NULL); + * if (haptics) { + * haptic = SDL_OpenHaptic(haptics[0]); + * SDL_free(haptics); + * } + * if (haptic == NULL) + * return; + * + * // Initialize simple rumble + * if (!SDL_InitHapticRumble(haptic)) + * return; + * + * // Play effect at 50% strength for 2 seconds + * if (!SDL_PlayHapticRumble(haptic, 0.5, 2000)) + * return; + * SDL_Delay(2000); + * + * // Clean up + * SDL_CloseHaptic(haptic); + * ``` + * + * Complete example: + * + * ```c + * bool test_haptic(SDL_Joystick *joystick) + * { + * SDL_Haptic *haptic; + * SDL_HapticEffect effect; + * int effect_id; + * + * // Open the device + * haptic = SDL_OpenHapticFromJoystick(joystick); + * if (haptic == NULL) return false; // Most likely joystick isn't haptic + * + * // See if it can do sine waves + * if ((SDL_GetHapticFeatures(haptic) & SDL_HAPTIC_SINE)==0) { + * SDL_CloseHaptic(haptic); // No sine effect + * return false; + * } + * + * // Create the effect + * SDL_memset(&effect, 0, sizeof(SDL_HapticEffect)); // 0 is safe default + * effect.type = SDL_HAPTIC_SINE; + * effect.periodic.direction.type = SDL_HAPTIC_POLAR; // Polar coordinates + * effect.periodic.direction.dir[0] = 18000; // Force comes from south + * effect.periodic.period = 1000; // 1000 ms + * effect.periodic.magnitude = 20000; // 20000/32767 strength + * effect.periodic.length = 5000; // 5 seconds long + * effect.periodic.attack_length = 1000; // Takes 1 second to get max strength + * effect.periodic.fade_length = 1000; // Takes 1 second to fade away + * + * // Upload the effect + * effect_id = SDL_CreateHapticEffect(haptic, &effect); + * + * // Test the effect + * SDL_RunHapticEffect(haptic, effect_id, 1); + * SDL_Delay(5000); // Wait for the effect to finish + * + * // We destroy the effect, although closing the device also does this + * SDL_DestroyHapticEffect(haptic, effect_id); + * + * // Close the device + * SDL_CloseHaptic(haptic); + * + * return true; // Success + * } + * ``` + * + * Note that the SDL haptic subsystem is not thread-safe. + */ + + +#ifndef SDL_haptic_h_ +#define SDL_haptic_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/* FIXME: + * + * At the moment the magnitude variables are mixed between signed/unsigned, and + * it is also not made clear that ALL of those variables expect a max of 0x7FFF. + * + * Some platforms may have higher precision than that (Linux FF, Windows XInput) + * so we should fix the inconsistency in favor of higher possible precision, + * adjusting for platforms that use different scales. + * -flibit + */ + +/** + * The haptic structure used to identify an SDL haptic. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_OpenHaptic + * \sa SDL_OpenHapticFromJoystick + * \sa SDL_CloseHaptic + */ +typedef struct SDL_Haptic SDL_Haptic; + + +/** + * \name Haptic features + * + * Different haptic features a device can have. + */ +/* @{ */ + +/** + * \name Haptic effects + */ +/* @{ */ + +/** + * Constant effect supported. + * + * Constant haptic effect. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_CONSTANT (1u<<0) + +/** + * Sine wave effect supported. + * + * Periodic haptic effect that simulates sine waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SINE (1u<<1) + +/** + * Square wave effect supported. + * + * Periodic haptic effect that simulates square waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SQUARE (1u<<2) + +/** + * Triangle wave effect supported. + * + * Periodic haptic effect that simulates triangular waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_TRIANGLE (1u<<3) + +/** + * Sawtoothup wave effect supported. + * + * Periodic haptic effect that simulates saw tooth up waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SAWTOOTHUP (1u<<4) + +/** + * Sawtoothdown wave effect supported. + * + * Periodic haptic effect that simulates saw tooth down waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SAWTOOTHDOWN (1u<<5) + +/** + * Ramp effect supported. + * + * Ramp haptic effect. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticRamp + */ +#define SDL_HAPTIC_RAMP (1u<<6) + +/** + * Spring effect supported - uses axes position. + * + * Condition haptic effect that simulates a spring. Effect is based on the + * axes position. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_SPRING (1u<<7) + +/** + * Damper effect supported - uses axes velocity. + * + * Condition haptic effect that simulates dampening. Effect is based on the + * axes velocity. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_DAMPER (1u<<8) + +/** + * Inertia effect supported - uses axes acceleration. + * + * Condition haptic effect that simulates inertia. Effect is based on the axes + * acceleration. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_INERTIA (1u<<9) + +/** + * Friction effect supported - uses axes movement. + * + * Condition haptic effect that simulates friction. Effect is based on the + * axes movement. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_FRICTION (1u<<10) + +/** + * Left/Right effect supported. + * + * Haptic effect for direct control over high/low frequency motors. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticLeftRight + */ +#define SDL_HAPTIC_LEFTRIGHT (1u<<11) + +/** + * Reserved for future use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_RESERVED1 (1u<<12) + +/** + * Reserved for future use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_RESERVED2 (1u<<13) + +/** + * Reserved for future use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_RESERVED3 (1u<<14) + +/** + * Custom effect is supported. + * + * User defined custom haptic effect. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_CUSTOM (1u<<15) + +/* @} *//* Haptic effects */ + +/* These last few are features the device has, not effects */ + +/** + * Device can set global gain. + * + * Device supports setting the global gain. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SetHapticGain + */ +#define SDL_HAPTIC_GAIN (1u<<16) + +/** + * Device can set autocenter. + * + * Device supports setting autocenter. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SetHapticAutocenter + */ +#define SDL_HAPTIC_AUTOCENTER (1u<<17) + +/** + * Device can be queried for effect status. + * + * Device supports querying effect status. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_GetHapticEffectStatus + */ +#define SDL_HAPTIC_STATUS (1u<<18) + +/** + * Device can be paused. + * + * Devices supports being paused. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PauseHaptic + * \sa SDL_ResumeHaptic + */ +#define SDL_HAPTIC_PAUSE (1u<<19) + + +/** + * \name Direction encodings + */ +/* @{ */ + +/** + * Uses polar coordinates for the direction. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_POLAR 0 + +/** + * Uses cartesian coordinates for the direction. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_CARTESIAN 1 + +/** + * Uses spherical coordinates for the direction. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_SPHERICAL 2 + +/** + * Use this value to play an effect on the steering wheel axis. + * + * This provides better compatibility across platforms and devices as SDL will + * guess the correct axis. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_STEERING_AXIS 3 + +/* @} *//* Direction encodings */ + +/* @} *//* Haptic features */ + +/* + * Misc defines. + */ + +/** + * Used to play a device an infinite number of times. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_RunHapticEffect + */ +#define SDL_HAPTIC_INFINITY 4294967295U + + +/** + * Structure that represents a haptic direction. + * + * This is the direction where the force comes from, instead of the direction + * in which the force is exerted. + * + * Directions can be specified by: + * + * - SDL_HAPTIC_POLAR : Specified by polar coordinates. + * - SDL_HAPTIC_CARTESIAN : Specified by cartesian coordinates. + * - SDL_HAPTIC_SPHERICAL : Specified by spherical coordinates. + * + * Cardinal directions of the haptic device are relative to the positioning of + * the device. North is considered to be away from the user. + * + * The following diagram represents the cardinal directions: + * + * ``` + * .--. + * |__| .-------. + * |=.| |.-----.| + * |--| || || + * | | |'-----'| + * |__|~')_____(' + * [ COMPUTER ] + * + * + * North (0,-1) + * ^ + * | + * | + * (-1,0) West <----[ HAPTIC ]----> East (1,0) + * | + * | + * v + * South (0,1) + * + * + * [ USER ] + * \|||/ + * (o o) + * ---ooO-(_)-Ooo--- + * ``` + * + * If type is SDL_HAPTIC_POLAR, direction is encoded by hundredths of a degree + * starting north and turning clockwise. SDL_HAPTIC_POLAR only uses the first + * `dir` parameter. The cardinal directions would be: + * + * - North: 0 (0 degrees) + * - East: 9000 (90 degrees) + * - South: 18000 (180 degrees) + * - West: 27000 (270 degrees) + * + * If type is SDL_HAPTIC_CARTESIAN, direction is encoded by three positions (X + * axis, Y axis and Z axis (with 3 axes)). SDL_HAPTIC_CARTESIAN uses the first + * three `dir` parameters. The cardinal directions would be: + * + * - North: 0,-1, 0 + * - East: 1, 0, 0 + * - South: 0, 1, 0 + * - West: -1, 0, 0 + * + * The Z axis represents the height of the effect if supported, otherwise it's + * unused. In cartesian encoding (1, 2) would be the same as (2, 4), you can + * use any multiple you want, only the direction matters. + * + * If type is SDL_HAPTIC_SPHERICAL, direction is encoded by two rotations. The + * first two `dir` parameters are used. The `dir` parameters are as follows + * (all values are in hundredths of degrees): + * + * - Degrees from (1, 0) rotated towards (0, 1). + * - Degrees towards (0, 0, 1) (device needs at least 3 axes). + * + * Example of force coming from the south with all encodings (force coming + * from the south means the user will have to pull the stick to counteract): + * + * ```c + * SDL_HapticDirection direction; + * + * // Cartesian directions + * direction.type = SDL_HAPTIC_CARTESIAN; // Using cartesian direction encoding. + * direction.dir[0] = 0; // X position + * direction.dir[1] = 1; // Y position + * // Assuming the device has 2 axes, we don't need to specify third parameter. + * + * // Polar directions + * direction.type = SDL_HAPTIC_POLAR; // We'll be using polar direction encoding. + * direction.dir[0] = 18000; // Polar only uses first parameter + * + * // Spherical coordinates + * direction.type = SDL_HAPTIC_SPHERICAL; // Spherical encoding + * direction.dir[0] = 9000; // Since we only have two axes we don't need more parameters. + * ``` + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_POLAR + * \sa SDL_HAPTIC_CARTESIAN + * \sa SDL_HAPTIC_SPHERICAL + * \sa SDL_HAPTIC_STEERING_AXIS + * \sa SDL_HapticEffect + * \sa SDL_GetNumHapticAxes + */ +typedef struct SDL_HapticDirection +{ + Uint8 type; /**< The type of encoding. */ + Sint32 dir[3]; /**< The encoded direction. */ +} SDL_HapticDirection; + + +/** + * A structure containing a template for a Constant effect. + * + * This struct is exclusively for the SDL_HAPTIC_CONSTANT effect. + * + * A constant effect applies a constant force in the specified direction to + * the joystick. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_CONSTANT + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticConstant +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_CONSTANT */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Constant */ + Sint16 level; /**< Strength of the constant effect. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticConstant; + +/** + * A structure containing a template for a Periodic effect. + * + * The struct handles the following effects: + * + * - SDL_HAPTIC_SINE + * - SDL_HAPTIC_SQUARE + * - SDL_HAPTIC_TRIANGLE + * - SDL_HAPTIC_SAWTOOTHUP + * - SDL_HAPTIC_SAWTOOTHDOWN + * + * A periodic effect consists in a wave-shaped effect that repeats itself over + * time. The type determines the shape of the wave and the parameters + * determine the dimensions of the wave. + * + * Phase is given by hundredth of a degree meaning that giving the phase a + * value of 9000 will displace it 25% of its period. Here are sample values: + * + * - 0: No phase displacement. + * - 9000: Displaced 25% of its period. + * - 18000: Displaced 50% of its period. + * - 27000: Displaced 75% of its period. + * - 36000: Displaced 100% of its period, same as 0, but 0 is preferred. + * + * Examples: + * + * ``` + * SDL_HAPTIC_SINE + * __ __ __ __ + * / \ / \ / \ / + * / \__/ \__/ \__/ + * + * SDL_HAPTIC_SQUARE + * __ __ __ __ __ + * | | | | | | | | | | + * | |__| |__| |__| |__| | + * + * SDL_HAPTIC_TRIANGLE + * /\ /\ /\ /\ /\ + * / \ / \ / \ / \ / + * / \/ \/ \/ \/ + * + * SDL_HAPTIC_SAWTOOTHUP + * /| /| /| /| /| /| /| + * / | / | / | / | / | / | / | + * / |/ |/ |/ |/ |/ |/ | + * + * SDL_HAPTIC_SAWTOOTHDOWN + * \ |\ |\ |\ |\ |\ |\ | + * \ | \ | \ | \ | \ | \ | \ | + * \| \| \| \| \| \| \| + * ``` + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_SINE + * \sa SDL_HAPTIC_SQUARE + * \sa SDL_HAPTIC_TRIANGLE + * \sa SDL_HAPTIC_SAWTOOTHUP + * \sa SDL_HAPTIC_SAWTOOTHDOWN + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticPeriodic +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_SINE, SDL_HAPTIC_SQUARE + SDL_HAPTIC_TRIANGLE, SDL_HAPTIC_SAWTOOTHUP or + SDL_HAPTIC_SAWTOOTHDOWN */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Periodic */ + Uint16 period; /**< Period of the wave. */ + Sint16 magnitude; /**< Peak value; if negative, equivalent to 180 degrees extra phase shift. */ + Sint16 offset; /**< Mean value of the wave. */ + Uint16 phase; /**< Positive phase shift given by hundredth of a degree. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticPeriodic; + +/** + * A structure containing a template for a Condition effect. + * + * The struct handles the following effects: + * + * - SDL_HAPTIC_SPRING: Effect based on axes position. + * - SDL_HAPTIC_DAMPER: Effect based on axes velocity. + * - SDL_HAPTIC_INERTIA: Effect based on axes acceleration. + * - SDL_HAPTIC_FRICTION: Effect based on axes movement. + * + * Direction is handled by condition internals instead of a direction member. + * The condition effect specific members have three parameters. The first + * refers to the X axis, the second refers to the Y axis and the third refers + * to the Z axis. The right terms refer to the positive side of the axis and + * the left terms refer to the negative side of the axis. Please refer to the + * SDL_HapticDirection diagram for which side is positive and which is + * negative. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + * \sa SDL_HAPTIC_SPRING + * \sa SDL_HAPTIC_DAMPER + * \sa SDL_HAPTIC_INERTIA + * \sa SDL_HAPTIC_FRICTION + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticCondition +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_SPRING, SDL_HAPTIC_DAMPER, + SDL_HAPTIC_INERTIA or SDL_HAPTIC_FRICTION */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Condition */ + Uint16 right_sat[3]; /**< Level when joystick is to the positive side; max 0xFFFF. */ + Uint16 left_sat[3]; /**< Level when joystick is to the negative side; max 0xFFFF. */ + Sint16 right_coeff[3]; /**< How fast to increase the force towards the positive side. */ + Sint16 left_coeff[3]; /**< How fast to increase the force towards the negative side. */ + Uint16 deadband[3]; /**< Size of the dead zone; max 0xFFFF: whole axis-range when 0-centered. */ + Sint16 center[3]; /**< Position of the dead zone. */ +} SDL_HapticCondition; + +/** + * A structure containing a template for a Ramp effect. + * + * This struct is exclusively for the SDL_HAPTIC_RAMP effect. + * + * The ramp effect starts at start strength and ends at end strength. It + * augments in linear fashion. If you use attack and fade with a ramp the + * effects get added to the ramp effect making the effect become quadratic + * instead of linear. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_RAMP + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticRamp +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_RAMP */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Ramp */ + Sint16 start; /**< Beginning strength level. */ + Sint16 end; /**< Ending strength level. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticRamp; + +/** + * A structure containing a template for a Left/Right effect. + * + * This struct is exclusively for the SDL_HAPTIC_LEFTRIGHT effect. + * + * The Left/Right effect is used to explicitly control the large and small + * motors, commonly found in modern game controllers. The small (right) motor + * is high frequency, and the large (left) motor is low frequency. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_LEFTRIGHT + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticLeftRight +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_LEFTRIGHT */ + + /* Replay */ + Uint32 length; /**< Duration of the effect in milliseconds. */ + + /* Rumble */ + Uint16 large_magnitude; /**< Control of the large controller motor. */ + Uint16 small_magnitude; /**< Control of the small controller motor. */ +} SDL_HapticLeftRight; + +/** + * A structure containing a template for the SDL_HAPTIC_CUSTOM effect. + * + * This struct is exclusively for the SDL_HAPTIC_CUSTOM effect. + * + * A custom force feedback effect is much like a periodic effect, where the + * application can define its exact shape. You will have to allocate the data + * yourself. Data should consist of channels * samples Uint16 samples. + * + * If channels is one, the effect is rotated using the defined direction. + * Otherwise it uses the samples in data for the different axes. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_CUSTOM + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticCustom +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_CUSTOM */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Custom */ + Uint8 channels; /**< Axes to use, minimum of one. */ + Uint16 period; /**< Sample periods. */ + Uint16 samples; /**< Amount of samples. */ + Uint16 *data; /**< Should contain channels*samples items. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticCustom; + +/** + * The generic template for any haptic effect. + * + * All values max at 32767 (0x7FFF). Signed values also can be negative. Time + * values unless specified otherwise are in milliseconds. + * + * You can also pass SDL_HAPTIC_INFINITY to length instead of a 0-32767 value. + * Neither delay, interval, attack_length nor fade_length support + * SDL_HAPTIC_INFINITY. Fade will also not be used since effect never ends. + * + * Additionally, the SDL_HAPTIC_RAMP effect does not support a duration of + * SDL_HAPTIC_INFINITY. + * + * Button triggers may not be supported on all devices, it is advised to not + * use them if possible. Buttons start at index 1 instead of index 0 like the + * joystick. + * + * If both attack_length and fade_level are 0, the envelope is not used, + * otherwise both values are used. + * + * Common parts: + * + * ```c + * // Replay - All effects have this + * Uint32 length; // Duration of effect (ms). + * Uint16 delay; // Delay before starting effect. + * + * // Trigger - All effects have this + * Uint16 button; // Button that triggers effect. + * Uint16 interval; // How soon before effect can be triggered again. + * + * // Envelope - All effects except condition effects have this + * Uint16 attack_length; // Duration of the attack (ms). + * Uint16 attack_level; // Level at the start of the attack. + * Uint16 fade_length; // Duration of the fade out (ms). + * Uint16 fade_level; // Level at the end of the fade. + * ``` + * + * Here we have an example of a constant effect evolution in time: + * + * ``` + * Strength + * ^ + * | + * | effect level --> _________________ + * | / \ + * | / \ + * | / \ + * | / \ + * | attack_level --> | \ + * | | | <--- fade_level + * | + * +--------------------------------------------------> Time + * [--] [---] + * attack_length fade_length + * + * [------------------][-----------------------] + * delay length + * ``` + * + * Note either the attack_level or the fade_level may be above the actual + * effect level. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HapticConstant + * \sa SDL_HapticPeriodic + * \sa SDL_HapticCondition + * \sa SDL_HapticRamp + * \sa SDL_HapticLeftRight + * \sa SDL_HapticCustom + */ +typedef union SDL_HapticEffect +{ + /* Common for all force feedback effects */ + Uint16 type; /**< Effect type. */ + SDL_HapticConstant constant; /**< Constant effect. */ + SDL_HapticPeriodic periodic; /**< Periodic effect. */ + SDL_HapticCondition condition; /**< Condition effect. */ + SDL_HapticRamp ramp; /**< Ramp effect. */ + SDL_HapticLeftRight leftright; /**< Left/Right effect. */ + SDL_HapticCustom custom; /**< Custom effect. */ +} SDL_HapticEffect; + +/** + * This is a unique ID for a haptic device for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the haptic device is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_HapticID; + + +/* Function prototypes */ + +/** + * Get a list of currently connected haptic devices. + * + * \param count a pointer filled in with the number of haptic devices + * returned, may be NULL. + * \returns a 0 terminated array of haptic device instance IDs or NULL on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHaptic + */ +extern SDL_DECLSPEC SDL_HapticID * SDLCALL SDL_GetHaptics(int *count); + +/** + * Get the implementation dependent name of a haptic device. + * + * This can be called before any haptic devices are opened. + * + * \param instance_id the haptic device instance ID. + * \returns the name of the selected haptic device. If no name can be found, + * this function returns NULL; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticName + * \sa SDL_OpenHaptic + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetHapticNameForID(SDL_HapticID instance_id); + +/** + * Open a haptic device for use. + * + * The index passed as an argument refers to the N'th haptic device on this + * system. + * + * When opening a haptic device, its gain will be set to maximum and + * autocenter will be disabled. To modify these values use SDL_SetHapticGain() + * and SDL_SetHapticAutocenter(). + * + * \param instance_id the haptic device instance ID. + * \returns the device identifier or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseHaptic + * \sa SDL_GetHaptics + * \sa SDL_OpenHapticFromJoystick + * \sa SDL_OpenHapticFromMouse + * \sa SDL_SetHapticAutocenter + * \sa SDL_SetHapticGain + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_OpenHaptic(SDL_HapticID instance_id); + + +/** + * Get the SDL_Haptic associated with an instance ID, if it has been opened. + * + * \param instance_id the instance ID to get the SDL_Haptic for. + * \returns an SDL_Haptic on success or NULL on failure or if it hasn't been + * opened yet; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_GetHapticFromID(SDL_HapticID instance_id); + +/** + * Get the instance ID of an opened haptic device. + * + * \param haptic the SDL_Haptic device to query. + * \returns the instance ID of the specified haptic device on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_HapticID SDLCALL SDL_GetHapticID(SDL_Haptic *haptic); + +/** + * Get the implementation dependent name of a haptic device. + * + * \param haptic the SDL_Haptic obtained from SDL_OpenJoystick(). + * \returns the name of the selected haptic device. If no name can be found, + * this function returns NULL; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticNameForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetHapticName(SDL_Haptic *haptic); + +/** + * Query whether or not the current mouse has haptic capabilities. + * + * \returns true if the mouse is haptic or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHapticFromMouse + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsMouseHaptic(void); + +/** + * Try to open a haptic device from the current mouse. + * + * \returns the haptic device identifier or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseHaptic + * \sa SDL_IsMouseHaptic + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_OpenHapticFromMouse(void); + +/** + * Query if a joystick has haptic features. + * + * \param joystick the SDL_Joystick to test for haptic capabilities. + * \returns true if the joystick is haptic or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHapticFromJoystick + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsJoystickHaptic(SDL_Joystick *joystick); + +/** + * Open a haptic device for use from a joystick device. + * + * You must still close the haptic device separately. It will not be closed + * with the joystick. + * + * When opened from a joystick you should first close the haptic device before + * closing the joystick device. If not, on some implementations the haptic + * device will also get unallocated and you'll be unable to use force feedback + * on that device. + * + * \param joystick the SDL_Joystick to create a haptic device from. + * \returns a valid haptic device identifier on success or NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseHaptic + * \sa SDL_IsJoystickHaptic + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_OpenHapticFromJoystick(SDL_Joystick *joystick); + +/** + * Close a haptic device previously opened with SDL_OpenHaptic(). + * + * \param haptic the SDL_Haptic device to close. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHaptic + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseHaptic(SDL_Haptic *haptic); + +/** + * Get the number of effects a haptic device can store. + * + * On some platforms this isn't fully supported, and therefore is an + * approximation. Always check to see if your created effect was actually + * created and do not rely solely on SDL_GetMaxHapticEffects(). + * + * \param haptic the SDL_Haptic device to query. + * \returns the number of effects the haptic device can store or a negative + * error code on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMaxHapticEffectsPlaying + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetMaxHapticEffects(SDL_Haptic *haptic); + +/** + * Get the number of effects a haptic device can play at the same time. + * + * This is not supported on all platforms, but will always return a value. + * + * \param haptic the SDL_Haptic device to query maximum playing effects. + * \returns the number of effects the haptic device can play at the same time + * or -1 on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMaxHapticEffects + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetMaxHapticEffectsPlaying(SDL_Haptic *haptic); + +/** + * Get the haptic device's supported features in bitwise manner. + * + * \param haptic the SDL_Haptic device to query. + * \returns a list of supported haptic features in bitwise manner (OR'd), or 0 + * on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HapticEffectSupported + * \sa SDL_GetMaxHapticEffects + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetHapticFeatures(SDL_Haptic *haptic); + +/** + * Get the number of haptic axes the device has. + * + * The number of haptic axes might be useful if working with the + * SDL_HapticDirection effect. + * + * \param haptic the SDL_Haptic device to query. + * \returns the number of axes on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumHapticAxes(SDL_Haptic *haptic); + +/** + * Check to see if an effect is supported by a haptic device. + * + * \param haptic the SDL_Haptic device to query. + * \param effect the desired effect to query. + * \returns true if the effect is supported or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateHapticEffect + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HapticEffectSupported(SDL_Haptic *haptic, const SDL_HapticEffect *effect); + +/** + * Create a new haptic effect on a specified device. + * + * \param haptic an SDL_Haptic device to create the effect on. + * \param effect an SDL_HapticEffect structure containing the properties of + * the effect to create. + * \returns the ID of the effect on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyHapticEffect + * \sa SDL_RunHapticEffect + * \sa SDL_UpdateHapticEffect + */ +extern SDL_DECLSPEC int SDLCALL SDL_CreateHapticEffect(SDL_Haptic *haptic, const SDL_HapticEffect *effect); + +/** + * Update the properties of an effect. + * + * Can be used dynamically, although behavior when dynamically changing + * direction may be strange. Specifically the effect may re-upload itself and + * start playing from the start. You also cannot change the type either when + * running SDL_UpdateHapticEffect(). + * + * \param haptic the SDL_Haptic device that has the effect. + * \param effect the identifier of the effect to update. + * \param data an SDL_HapticEffect structure containing the new effect + * properties to use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateHapticEffect + * \sa SDL_RunHapticEffect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateHapticEffect(SDL_Haptic *haptic, int effect, const SDL_HapticEffect *data); + +/** + * Run the haptic effect on its associated haptic device. + * + * To repeat the effect over and over indefinitely, set `iterations` to + * `SDL_HAPTIC_INFINITY`. (Repeats the envelope - attack and fade.) To make + * one instance of the effect last indefinitely (so the effect does not fade), + * set the effect's `length` in its structure/union to `SDL_HAPTIC_INFINITY` + * instead. + * + * \param haptic the SDL_Haptic device to run the effect on. + * \param effect the ID of the haptic effect to run. + * \param iterations the number of iterations to run the effect; use + * `SDL_HAPTIC_INFINITY` to repeat forever. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticEffectStatus + * \sa SDL_StopHapticEffect + * \sa SDL_StopHapticEffects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RunHapticEffect(SDL_Haptic *haptic, int effect, Uint32 iterations); + +/** + * Stop the haptic effect on its associated haptic device. + * + * \param haptic the SDL_Haptic device to stop the effect on. + * \param effect the ID of the haptic effect to stop. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RunHapticEffect + * \sa SDL_StopHapticEffects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopHapticEffect(SDL_Haptic *haptic, int effect); + +/** + * Destroy a haptic effect on the device. + * + * This will stop the effect if it's running. Effects are automatically + * destroyed when the device is closed. + * + * \param haptic the SDL_Haptic device to destroy the effect on. + * \param effect the ID of the haptic effect to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateHapticEffect + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyHapticEffect(SDL_Haptic *haptic, int effect); + +/** + * Get the status of the current effect on the specified haptic device. + * + * Device must support the SDL_HAPTIC_STATUS feature. + * + * \param haptic the SDL_Haptic device to query for the effect status on. + * \param effect the ID of the haptic effect to query its status. + * \returns true if it is playing, false if it isn't playing or haptic status + * isn't supported. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetHapticEffectStatus(SDL_Haptic *haptic, int effect); + +/** + * Set the global gain of the specified haptic device. + * + * Device must support the SDL_HAPTIC_GAIN feature. + * + * The user may specify the maximum gain by setting the environment variable + * `SDL_HAPTIC_GAIN_MAX` which should be between 0 and 100. All calls to + * SDL_SetHapticGain() will scale linearly using `SDL_HAPTIC_GAIN_MAX` as the + * maximum. + * + * \param haptic the SDL_Haptic device to set the gain on. + * \param gain value to set the gain to, should be between 0 and 100 (0 - + * 100). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHapticGain(SDL_Haptic *haptic, int gain); + +/** + * Set the global autocenter of the device. + * + * Autocenter should be between 0 and 100. Setting it to 0 will disable + * autocentering. + * + * Device must support the SDL_HAPTIC_AUTOCENTER feature. + * + * \param haptic the SDL_Haptic device to set autocentering on. + * \param autocenter value to set autocenter to (0-100). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHapticAutocenter(SDL_Haptic *haptic, int autocenter); + +/** + * Pause a haptic device. + * + * Device must support the `SDL_HAPTIC_PAUSE` feature. Call SDL_ResumeHaptic() + * to resume playback. + * + * Do not modify the effects nor add new ones while the device is paused. That + * can cause all sorts of weird errors. + * + * \param haptic the SDL_Haptic device to pause. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResumeHaptic + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PauseHaptic(SDL_Haptic *haptic); + +/** + * Resume a haptic device. + * + * Call to unpause after SDL_PauseHaptic(). + * + * \param haptic the SDL_Haptic device to unpause. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseHaptic + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResumeHaptic(SDL_Haptic *haptic); + +/** + * Stop all the currently playing effects on a haptic device. + * + * \param haptic the SDL_Haptic device to stop. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RunHapticEffect + * \sa SDL_StopHapticEffects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopHapticEffects(SDL_Haptic *haptic); + +/** + * Check whether rumble is supported on a haptic device. + * + * \param haptic haptic device to check for rumble support. + * \returns true if the effect is supported or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InitHapticRumble + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HapticRumbleSupported(SDL_Haptic *haptic); + +/** + * Initialize a haptic device for simple rumble playback. + * + * \param haptic the haptic device to initialize for simple rumble playback. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PlayHapticRumble + * \sa SDL_StopHapticRumble + * \sa SDL_HapticRumbleSupported + */ +extern SDL_DECLSPEC bool SDLCALL SDL_InitHapticRumble(SDL_Haptic *haptic); + +/** + * Run a simple rumble effect on a haptic device. + * + * \param haptic the haptic device to play the rumble effect on. + * \param strength strength of the rumble to play as a 0-1 float value. + * \param length length of the rumble to play in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InitHapticRumble + * \sa SDL_StopHapticRumble + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PlayHapticRumble(SDL_Haptic *haptic, float strength, Uint32 length); + +/** + * Stop the simple rumble on a haptic device. + * + * \param haptic the haptic device to stop the rumble effect on. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PlayHapticRumble + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopHapticRumble(SDL_Haptic *haptic); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_haptic_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_hidapi.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_hidapi.h new file mode 100644 index 0000000..131b037 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_hidapi.h @@ -0,0 +1,552 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: HIDAPI */ + +/** + * # CategoryHIDAPI + * + * Header file for SDL HIDAPI functions. + * + * This is an adaptation of the original HIDAPI interface by Alan Ott, and + * includes source code licensed under the following license: + * + * ``` + * HIDAPI - Multi-Platform library for + * communication with HID devices. + * + * Copyright 2009, Alan Ott, Signal 11 Software. + * All Rights Reserved. + * + * This software may be used by anyone for any reason so + * long as the copyright notice in the source files + * remains intact. + * ``` + * + * (Note that this license is the same as item three of SDL's zlib license, so + * it adds no new requirements on the user.) + * + * If you would like a version of SDL without this code, you can build SDL + * with SDL_HIDAPI_DISABLED defined to 1. You might want to do this for + * example on iOS or tvOS to avoid a dependency on the CoreBluetooth + * framework. + */ + +#ifndef SDL_hidapi_h_ +#define SDL_hidapi_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque handle representing an open HID device. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_hid_device SDL_hid_device; + +/** + * HID underlying bus types. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_hid_bus_type { + /** Unknown bus type */ + SDL_HID_API_BUS_UNKNOWN = 0x00, + + /** USB bus + Specifications: + https://usb.org/hid */ + SDL_HID_API_BUS_USB = 0x01, + + /** Bluetooth or Bluetooth LE bus + Specifications: + https://www.bluetooth.com/specifications/specs/human-interface-device-profile-1-1-1/ + https://www.bluetooth.com/specifications/specs/hid-service-1-0/ + https://www.bluetooth.com/specifications/specs/hid-over-gatt-profile-1-0/ */ + SDL_HID_API_BUS_BLUETOOTH = 0x02, + + /** I2C bus + Specifications: + https://docs.microsoft.com/previous-versions/windows/hardware/design/dn642101(v=vs.85) */ + SDL_HID_API_BUS_I2C = 0x03, + + /** SPI bus + Specifications: + https://www.microsoft.com/download/details.aspx?id=103325 */ + SDL_HID_API_BUS_SPI = 0x04 + +} SDL_hid_bus_type; + +/** hidapi info structure */ + +/** + * Information about a connected HID device + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_hid_device_info +{ + /** Platform-specific device path */ + char *path; + /** Device Vendor ID */ + unsigned short vendor_id; + /** Device Product ID */ + unsigned short product_id; + /** Serial Number */ + wchar_t *serial_number; + /** Device Release Number in binary-coded decimal, + also known as Device Version Number */ + unsigned short release_number; + /** Manufacturer String */ + wchar_t *manufacturer_string; + /** Product string */ + wchar_t *product_string; + /** Usage Page for this Device/Interface + (Windows/Mac/hidraw only) */ + unsigned short usage_page; + /** Usage for this Device/Interface + (Windows/Mac/hidraw only) */ + unsigned short usage; + /** The USB interface which this logical device + represents. + + Valid only if the device is a USB HID device. + Set to -1 in all other cases. + */ + int interface_number; + + /** Additional information about the USB interface. + Valid on libusb and Android implementations. */ + int interface_class; + int interface_subclass; + int interface_protocol; + + /** Underlying bus type */ + SDL_hid_bus_type bus_type; + + /** Pointer to the next device */ + struct SDL_hid_device_info *next; + +} SDL_hid_device_info; + + +/** + * Initialize the HIDAPI library. + * + * This function initializes the HIDAPI library. Calling it is not strictly + * necessary, as it will be called automatically by SDL_hid_enumerate() and + * any of the SDL_hid_open_*() functions if it is needed. This function should + * be called at the beginning of execution however, if there is a chance of + * HIDAPI handles being opened by different threads simultaneously. + * + * Each call to this function should have a matching call to SDL_hid_exit() + * + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_exit + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_init(void); + +/** + * Finalize the HIDAPI library. + * + * This function frees all of the static data associated with HIDAPI. It + * should be called at the end of execution to avoid memory leaks. + * + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_init + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_exit(void); + +/** + * Check to see if devices may have been added or removed. + * + * Enumerating the HID devices is an expensive operation, so you can call this + * to see if there have been any system device changes since the last call to + * this function. A change in the counter returned doesn't necessarily mean + * that anything has changed, but you can call SDL_hid_enumerate() to get an + * updated device list. + * + * Calling this function for the first time may cause a thread or other system + * resource to be allocated to track device change notifications. + * + * \returns a change counter that is incremented with each potential device + * change, or 0 if device change detection isn't available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_enumerate + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_hid_device_change_count(void); + +/** + * Enumerate the HID Devices. + * + * This function returns a linked list of all the HID devices attached to the + * system which match vendor_id and product_id. If `vendor_id` is set to 0 + * then any vendor matches. If `product_id` is set to 0 then any product + * matches. If `vendor_id` and `product_id` are both set to 0, then all HID + * devices will be returned. + * + * By default SDL will only enumerate controllers, to reduce risk of hanging + * or crashing on bad drivers, but SDL_HINT_HIDAPI_ENUMERATE_ONLY_CONTROLLERS + * can be set to "0" to enumerate all HID devices. + * + * \param vendor_id the Vendor ID (VID) of the types of device to open, or 0 + * to match any vendor. + * \param product_id the Product ID (PID) of the types of device to open, or 0 + * to match any product. + * \returns a pointer to a linked list of type SDL_hid_device_info, containing + * information about the HID devices attached to the system, or NULL + * in the case of failure. Free this linked list by calling + * SDL_hid_free_enumeration(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_device_change_count + */ +extern SDL_DECLSPEC SDL_hid_device_info * SDLCALL SDL_hid_enumerate(unsigned short vendor_id, unsigned short product_id); + +/** + * Free an enumeration linked list. + * + * This function frees a linked list created by SDL_hid_enumerate(). + * + * \param devs pointer to a list of struct_device returned from + * SDL_hid_enumerate(). + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_hid_free_enumeration(SDL_hid_device_info *devs); + +/** + * Open a HID device using a Vendor ID (VID), Product ID (PID) and optionally + * a serial number. + * + * If `serial_number` is NULL, the first device with the specified VID and PID + * is opened. + * + * \param vendor_id the Vendor ID (VID) of the device to open. + * \param product_id the Product ID (PID) of the device to open. + * \param serial_number the Serial Number of the device to open (Optionally + * NULL). + * \returns a pointer to a SDL_hid_device object on success or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_hid_device * SDLCALL SDL_hid_open(unsigned short vendor_id, unsigned short product_id, const wchar_t *serial_number); + +/** + * Open a HID device by its path name. + * + * The path name be determined by calling SDL_hid_enumerate(), or a + * platform-specific path name can be used (eg: /dev/hidraw0 on Linux). + * + * \param path the path name of the device to open. + * \returns a pointer to a SDL_hid_device object on success or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_hid_device * SDLCALL SDL_hid_open_path(const char *path); + +/** + * Write an Output report to a HID device. + * + * The first byte of `data` must contain the Report ID. For devices which only + * support a single report, this must be set to 0x0. The remaining bytes + * contain the report data. Since the Report ID is mandatory, calls to + * SDL_hid_write() will always contain one more byte than the report contains. + * For example, if a hid report is 16 bytes long, 17 bytes must be passed to + * SDL_hid_write(), the Report ID (or 0x0, for devices with a single report), + * followed by the report data (16 bytes). In this example, the length passed + * in would be 17. + * + * SDL_hid_write() will send the data on the first OUT endpoint, if one + * exists. If it does not, it will send the data through the Control Endpoint + * (Endpoint 0). + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data the data to send, including the report number as the first + * byte. + * \param length the length in bytes of the data to send. + * \returns the actual number of bytes written and -1 on on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_write(SDL_hid_device *dev, const unsigned char *data, size_t length); + +/** + * Read an Input report from a HID device with timeout. + * + * Input reports are returned to the host through the INTERRUPT IN endpoint. + * The first byte will contain the Report number if the device uses numbered + * reports. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into. + * \param length the number of bytes to read. For devices with multiple + * reports, make sure to read an extra byte for the report + * number. + * \param milliseconds timeout in milliseconds or -1 for blocking wait. + * \returns the actual number of bytes read and -1 on on failure; call + * SDL_GetError() for more information. If no packet was available to + * be read within the timeout period, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_read_timeout(SDL_hid_device *dev, unsigned char *data, size_t length, int milliseconds); + +/** + * Read an Input report from a HID device. + * + * Input reports are returned to the host through the INTERRUPT IN endpoint. + * The first byte will contain the Report number if the device uses numbered + * reports. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into. + * \param length the number of bytes to read. For devices with multiple + * reports, make sure to read an extra byte for the report + * number. + * \returns the actual number of bytes read and -1 on failure; call + * SDL_GetError() for more information. If no packet was available to + * be read and the handle is in non-blocking mode, this function + * returns 0. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_read(SDL_hid_device *dev, unsigned char *data, size_t length); + +/** + * Set the device handle to be non-blocking. + * + * In non-blocking mode calls to SDL_hid_read() will return immediately with a + * value of 0 if there is no data to be read. In blocking mode, SDL_hid_read() + * will wait (block) until there is data to read before returning. + * + * Nonblocking can be turned on and off at any time. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param nonblock enable or not the nonblocking reads - 1 to enable + * nonblocking - 0 to disable nonblocking. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_set_nonblocking(SDL_hid_device *dev, int nonblock); + +/** + * Send a Feature report to the device. + * + * Feature reports are sent over the Control endpoint as a Set_Report + * transfer. The first byte of `data` must contain the Report ID. For devices + * which only support a single report, this must be set to 0x0. The remaining + * bytes contain the report data. Since the Report ID is mandatory, calls to + * SDL_hid_send_feature_report() will always contain one more byte than the + * report contains. For example, if a hid report is 16 bytes long, 17 bytes + * must be passed to SDL_hid_send_feature_report(): the Report ID (or 0x0, for + * devices which do not use numbered reports), followed by the report data (16 + * bytes). In this example, the length passed in would be 17. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data the data to send, including the report number as the first + * byte. + * \param length the length in bytes of the data to send, including the report + * number. + * \returns the actual number of bytes written and -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_send_feature_report(SDL_hid_device *dev, const unsigned char *data, size_t length); + +/** + * Get a feature report from a HID device. + * + * Set the first byte of `data` to the Report ID of the report to be read. + * Make sure to allow space for this extra byte in `data`. Upon return, the + * first byte will still contain the Report ID, and the report data will start + * in data[1]. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into, including the Report ID. + * Set the first byte of `data` to the Report ID of the report to + * be read, or set it to zero if your device does not use numbered + * reports. + * \param length the number of bytes to read, including an extra byte for the + * report ID. The buffer can be longer than the actual report. + * \returns the number of bytes read plus one for the report ID (which is + * still in the first byte), or -1 on on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_feature_report(SDL_hid_device *dev, unsigned char *data, size_t length); + +/** + * Get an input report from a HID device. + * + * Set the first byte of `data` to the Report ID of the report to be read. + * Make sure to allow space for this extra byte in `data`. Upon return, the + * first byte will still contain the Report ID, and the report data will start + * in data[1]. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into, including the Report ID. + * Set the first byte of `data` to the Report ID of the report to + * be read, or set it to zero if your device does not use numbered + * reports. + * \param length the number of bytes to read, including an extra byte for the + * report ID. The buffer can be longer than the actual report. + * \returns the number of bytes read plus one for the report ID (which is + * still in the first byte), or -1 on on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_input_report(SDL_hid_device *dev, unsigned char *data, size_t length); + +/** + * Close a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_close(SDL_hid_device *dev); + +/** + * Get The Manufacturer String from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_manufacturer_string(SDL_hid_device *dev, wchar_t *string, size_t maxlen); + +/** + * Get The Product String from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_product_string(SDL_hid_device *dev, wchar_t *string, size_t maxlen); + +/** + * Get The Serial Number String from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_serial_number_string(SDL_hid_device *dev, wchar_t *string, size_t maxlen); + +/** + * Get a string from a HID device, based on its string index. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string_index the index of the string to get. + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_indexed_string(SDL_hid_device *dev, int string_index, wchar_t *string, size_t maxlen); + +/** + * Get the device info from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \returns a pointer to the SDL_hid_device_info for this hid_device or NULL + * on failure; call SDL_GetError() for more information. This struct + * is valid until the device is closed with SDL_hid_close(). + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_hid_device_info * SDLCALL SDL_hid_get_device_info(SDL_hid_device *dev); + +/** + * Get a report descriptor from a HID device. + * + * User has to provide a preallocated buffer where descriptor will be copied + * to. The recommended size for a preallocated buffer is 4096 bytes. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param buf the buffer to copy descriptor into. + * \param buf_size the size of the buffer in bytes. + * \returns the number of bytes actually copied or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_report_descriptor(SDL_hid_device *dev, unsigned char *buf, size_t buf_size); + +/** + * Start or stop a BLE scan on iOS and tvOS to pair Steam Controllers. + * + * \param active true to start the scan, false to stop the scan. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_hid_ble_scan(bool active); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_hidapi_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_hints.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_hints.h new file mode 100644 index 0000000..a081535 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_hints.h @@ -0,0 +1,4486 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryHints + * + * This file contains functions to set and get configuration hints, as well as + * listing each of them alphabetically. + * + * The convention for naming hints is SDL_HINT_X, where "SDL_X" is the + * environment variable that can be used to override the default. + * + * In general these hints are just that - they may or may not be supported or + * applicable on any given platform, but they provide a way for an application + * or user to give the library a hint as to how they would like the library to + * work. + */ + +#ifndef SDL_hints_h_ +#define SDL_hints_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Specify the behavior of Alt+Tab while the keyboard is grabbed. + * + * By default, SDL emulates Alt+Tab functionality while the keyboard is + * grabbed and your window is full-screen. This prevents the user from getting + * stuck in your application if you've enabled keyboard grab. + * + * The variable can be set to the following values: + * + * - "0": SDL will not handle Alt+Tab. Your application is responsible for + * handling Alt+Tab while the keyboard is grabbed. + * - "1": SDL will minimize your window when Alt+Tab is pressed (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ALLOW_ALT_TAB_WHILE_GRABBED "SDL_ALLOW_ALT_TAB_WHILE_GRABBED" + +/** + * A variable to control whether the SDL activity is allowed to be re-created. + * + * If this hint is true, the activity can be recreated on demand by the OS, + * and Java static data and C++ static data remain with their current values. + * If this hint is false, then SDL will call exit() when you return from your + * main function and the application will be terminated and then started fresh + * each time. + * + * The variable can be set to the following values: + * + * - "0": The application starts fresh at each launch. (default) + * - "1": The application activity can be recreated by the OS. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_ALLOW_RECREATE_ACTIVITY "SDL_ANDROID_ALLOW_RECREATE_ACTIVITY" + +/** + * A variable to control whether the event loop will block itself when the app + * is paused. + * + * The variable can be set to the following values: + * + * - "0": Non blocking. + * - "1": Blocking. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_BLOCK_ON_PAUSE "SDL_ANDROID_BLOCK_ON_PAUSE" + +/** + * A variable to control whether low latency audio should be enabled. + * + * Some devices have poor quality output when this is enabled, but this is + * usually an improvement in audio latency. + * + * The variable can be set to the following values: + * + * - "0": Low latency audio is not enabled. + * - "1": Low latency audio is enabled. (default) + * + * This hint should be set before SDL audio is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_LOW_LATENCY_AUDIO "SDL_ANDROID_LOW_LATENCY_AUDIO" + +/** + * A variable to control whether we trap the Android back button to handle it + * manually. + * + * This is necessary for the right mouse button to work on some Android + * devices, or to be able to trap the back button for use in your code + * reliably. If this hint is true, the back button will show up as an + * SDL_EVENT_KEY_DOWN / SDL_EVENT_KEY_UP pair with a keycode of + * SDL_SCANCODE_AC_BACK. + * + * The variable can be set to the following values: + * + * - "0": Back button will be handled as usual for system. (default) + * - "1": Back button will be trapped, allowing you to handle the key press + * manually. (This will also let right mouse click work on systems where the + * right mouse button functions as back.) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_TRAP_BACK_BUTTON "SDL_ANDROID_TRAP_BACK_BUTTON" + +/** + * A variable setting the app ID string. + * + * This string is used by desktop compositors to identify and group windows + * together, as well as match applications with associated desktop settings + * and icons. + * + * This will override SDL_PROP_APP_METADATA_IDENTIFIER_STRING, if set by the + * application. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APP_ID "SDL_APP_ID" + +/** + * A variable setting the application name. + * + * This hint lets you specify the application name sent to the OS when + * required. For example, this will often appear in volume control applets for + * audio streams, and in lists of applications which are inhibiting the + * screensaver. You should use a string that describes your program ("My Game + * 2: The Revenge") + * + * This will override SDL_PROP_APP_METADATA_NAME_STRING, if set by the + * application. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APP_NAME "SDL_APP_NAME" + +/** + * A variable controlling whether controllers used with the Apple TV generate + * UI events. + * + * When UI events are generated by controller input, the app will be + * backgrounded when the Apple TV remote's menu button is pressed, and when + * the pause or B buttons on gamepads are pressed. + * + * More information about properly making use of controllers for the Apple TV + * can be found here: + * https://developer.apple.com/tvos/human-interface-guidelines/remote-and-controllers/ + * + * The variable can be set to the following values: + * + * - "0": Controller input does not generate UI events. (default) + * - "1": Controller input generates UI events. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APPLE_TV_CONTROLLER_UI_EVENTS "SDL_APPLE_TV_CONTROLLER_UI_EVENTS" + +/** + * A variable controlling whether the Apple TV remote's joystick axes will + * automatically match the rotation of the remote. + * + * The variable can be set to the following values: + * + * - "0": Remote orientation does not affect joystick axes. (default) + * - "1": Joystick axes are based on the orientation of the remote. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APPLE_TV_REMOTE_ALLOW_ROTATION "SDL_APPLE_TV_REMOTE_ALLOW_ROTATION" + +/** + * Specify the default ALSA audio device name. + * + * This variable is a specific audio device to open when the "default" audio + * device is used. + * + * This hint will be ignored when opening the default playback device if + * SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE is set, or when opening the + * default recording device if SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE is + * set. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE + */ +#define SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE "SDL_AUDIO_ALSA_DEFAULT_DEVICE" + +/** + * Specify the default ALSA audio playback device name. + * + * This variable is a specific audio device to open for playback, when the + * "default" audio device is used. + * + * If this hint isn't set, SDL will check SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + * before choosing a reasonable default. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + */ +#define SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE "SDL_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE" + +/** + * Specify the default ALSA audio recording device name. + * + * This variable is a specific audio device to open for recording, when the + * "default" audio device is used. + * + * If this hint isn't set, SDL will check SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + * before choosing a reasonable default. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + */ +#define SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE "SDL_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE" + +/** + * A variable controlling the audio category on iOS and macOS. + * + * The variable can be set to the following values: + * + * - "ambient": Use the AVAudioSessionCategoryAmbient audio category, will be + * muted by the phone mute switch (default) + * - "playback": Use the AVAudioSessionCategoryPlayback category. + * + * For more information, see Apple's documentation: + * https://developer.apple.com/library/content/documentation/Audio/Conceptual/AudioSessionProgrammingGuide/AudioSessionCategoriesandModes/AudioSessionCategoriesandModes.html + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_CATEGORY "SDL_AUDIO_CATEGORY" + +/** + * A variable controlling the default audio channel count. + * + * If the application doesn't specify the audio channel count when opening the + * device, this hint can be used to specify a default channel count that will + * be used. This defaults to "1" for recording and "2" for playback devices. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_CHANNELS "SDL_AUDIO_CHANNELS" + +/** + * Specify an application icon name for an audio device. + * + * Some audio backends (such as Pulseaudio and Pipewire) allow you to set an + * XDG icon name for your application. Among other things, this icon might + * show up in a system control panel that lets the user adjust the volume on + * specific audio streams instead of using one giant master volume slider. + * Note that this is unrelated to the icon used by the windowing system, which + * may be set with SDL_SetWindowIcon (or via desktop file on Wayland). + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default, "applications-games", which is likely to be installed. See + * https://specifications.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html + * and + * https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html + * for the relevant XDG icon specs. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_APP_ICON_NAME "SDL_AUDIO_DEVICE_APP_ICON_NAME" + +/** + * A variable controlling device buffer size. + * + * This hint is an integer > 0, that represents the size of the device's + * buffer in sample frames (stereo audio data in 16-bit format is 4 bytes per + * sample frame, for example). + * + * SDL3 generally decides this value on behalf of the app, but if for some + * reason the app needs to dictate this (because they want either lower + * latency or higher throughput AND ARE WILLING TO DEAL WITH what that might + * require of the app), they can specify it. + * + * SDL will try to accommodate this value, but there is no promise you'll get + * the buffer size requested. Many platforms won't honor this request at all, + * or might adjust it. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_SAMPLE_FRAMES "SDL_AUDIO_DEVICE_SAMPLE_FRAMES" + +/** + * Specify an audio stream name for an audio device. + * + * Some audio backends (such as PulseAudio) allow you to describe your audio + * stream. Among other things, this description might show up in a system + * control panel that lets the user adjust the volume on specific audio + * streams instead of using one giant master volume slider. + * + * This hints lets you transmit that information to the OS. The contents of + * this hint are used while opening an audio device. You should use a string + * that describes your what your program is playing ("audio stream" is + * probably sufficient in many cases, but this could be useful for something + * like "team chat" if you have a headset playing VoIP audio separately). + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default: "audio stream" or something similar. + * + * Note that while this talks about audio streams, this is an OS-level + * concept, so it applies to a physical audio device in this case, and not an + * SDL_AudioStream, nor an SDL logical audio device. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_STREAM_NAME "SDL_AUDIO_DEVICE_STREAM_NAME" + +/** + * Specify an application role for an audio device. + * + * Some audio backends (such as Pipewire) allow you to describe the role of + * your audio stream. Among other things, this description might show up in a + * system control panel or software for displaying and manipulating media + * playback/recording graphs. + * + * This hints lets you transmit that information to the OS. The contents of + * this hint are used while opening an audio device. You should use a string + * that describes your what your program is playing (Game, Music, Movie, + * etc...). + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default: "Game" or something similar. + * + * Note that while this talks about audio streams, this is an OS-level + * concept, so it applies to a physical audio device in this case, and not an + * SDL_AudioStream, nor an SDL logical audio device. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_STREAM_ROLE "SDL_AUDIO_DEVICE_STREAM_ROLE" + +/** + * Specify the input file when recording audio using the disk audio driver. + * + * This defaults to "sdlaudio-in.raw" + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DISK_INPUT_FILE "SDL_AUDIO_DISK_INPUT_FILE" + +/** + * Specify the output file when playing audio using the disk audio driver. + * + * This defaults to "sdlaudio.raw" + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DISK_OUTPUT_FILE "SDL_AUDIO_DISK_OUTPUT_FILE" + +/** + * A variable controlling the audio rate when using the disk audio driver. + * + * The disk audio driver normally simulates real-time for the audio rate that + * was specified, but you can use this variable to adjust this rate higher or + * lower down to 0. The default value is "1.0". + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DISK_TIMESCALE "SDL_AUDIO_DISK_TIMESCALE" + +/** + * A variable that specifies an audio backend to use. + * + * By default, SDL will try all available audio backends in a reasonable order + * until it finds one that can work, but this hint allows the app or user to + * force a specific driver, such as "pipewire" if, say, you are on PulseAudio + * but want to try talking to the lower level instead. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DRIVER "SDL_AUDIO_DRIVER" + +/** + * A variable controlling the audio rate when using the dummy audio driver. + * + * The dummy audio driver normally simulates real-time for the audio rate that + * was specified, but you can use this variable to adjust this rate higher or + * lower down to 0. The default value is "1.0". + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DUMMY_TIMESCALE "SDL_AUDIO_DUMMY_TIMESCALE" + +/** + * A variable controlling the default audio format. + * + * If the application doesn't specify the audio format when opening the + * device, this hint can be used to specify a default format that will be + * used. + * + * The variable can be set to the following values: + * + * - "U8": Unsigned 8-bit audio + * - "S8": Signed 8-bit audio + * - "S16LE": Signed 16-bit little-endian audio + * - "S16BE": Signed 16-bit big-endian audio + * - "S16": Signed 16-bit native-endian audio (default) + * - "S32LE": Signed 32-bit little-endian audio + * - "S32BE": Signed 32-bit big-endian audio + * - "S32": Signed 32-bit native-endian audio + * - "F32LE": Floating point little-endian audio + * - "F32BE": Floating point big-endian audio + * - "F32": Floating point native-endian audio + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_FORMAT "SDL_AUDIO_FORMAT" + +/** + * A variable controlling the default audio frequency. + * + * If the application doesn't specify the audio frequency when opening the + * device, this hint can be used to specify a default frequency that will be + * used. This defaults to "44100". + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_FREQUENCY "SDL_AUDIO_FREQUENCY" + +/** + * A variable that causes SDL to not ignore audio "monitors". + * + * This is currently only used by the PulseAudio driver. + * + * By default, SDL ignores audio devices that aren't associated with physical + * hardware. Changing this hint to "1" will expose anything SDL sees that + * appears to be an audio source or sink. This will add "devices" to the list + * that the user probably doesn't want or need, but it can be useful in + * scenarios where you want to hook up SDL to some sort of virtual device, + * etc. + * + * The variable can be set to the following values: + * + * - "0": Audio monitor devices will be ignored. (default) + * - "1": Audio monitor devices will show up in the device list. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_INCLUDE_MONITORS "SDL_AUDIO_INCLUDE_MONITORS" + +/** + * A variable controlling whether SDL updates joystick state when getting + * input events. + * + * The variable can be set to the following values: + * + * - "0": You'll call SDL_UpdateJoysticks() manually. + * - "1": SDL will automatically call SDL_UpdateJoysticks(). (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUTO_UPDATE_JOYSTICKS "SDL_AUTO_UPDATE_JOYSTICKS" + +/** + * A variable controlling whether SDL updates sensor state when getting input + * events. + * + * The variable can be set to the following values: + * + * - "0": You'll call SDL_UpdateSensors() manually. + * - "1": SDL will automatically call SDL_UpdateSensors(). (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUTO_UPDATE_SENSORS "SDL_AUTO_UPDATE_SENSORS" + +/** + * Prevent SDL from using version 4 of the bitmap header when saving BMPs. + * + * The bitmap header version 4 is required for proper alpha channel support + * and SDL will use it when required. Should this not be desired, this hint + * can force the use of the 40 byte header version which is supported + * everywhere. + * + * The variable can be set to the following values: + * + * - "0": Surfaces with a colorkey or an alpha channel are saved to a 32-bit + * BMP file with an alpha mask. SDL will use the bitmap header version 4 and + * set the alpha mask accordingly. (default) + * - "1": Surfaces with a colorkey or an alpha channel are saved to a 32-bit + * BMP file without an alpha mask. The alpha channel data will be in the + * file, but applications are going to ignore it. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_BMP_SAVE_LEGACY_FORMAT "SDL_BMP_SAVE_LEGACY_FORMAT" + +/** + * A variable that decides what camera backend to use. + * + * By default, SDL will try all available camera backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target, such as "directshow" if, say, you are on + * Windows Media Foundations but want to try DirectShow instead. + * + * The default value is unset, in which case SDL will try to figure out the + * best camera backend on your behalf. This hint needs to be set before + * SDL_Init() is called to be useful. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_CAMERA_DRIVER "SDL_CAMERA_DRIVER" + +/** + * A variable that limits what CPU features are available. + * + * By default, SDL marks all features the current CPU supports as available. + * This hint allows to limit these to a subset. + * + * When the hint is unset, or empty, SDL will enable all detected CPU + * features. + * + * The variable can be set to a comma separated list containing the following + * items: + * + * - "all" + * - "altivec" + * - "sse" + * - "sse2" + * - "sse3" + * - "sse41" + * - "sse42" + * - "avx" + * - "avx2" + * - "avx512f" + * - "arm-simd" + * - "neon" + * - "lsx" + * - "lasx" + * + * The items can be prefixed by '+'/'-' to add/remove features. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_CPU_FEATURE_MASK "SDL_CPU_FEATURE_MASK" + +/** + * A variable controlling whether DirectInput should be used for controllers. + * + * The variable can be set to the following values: + * + * - "0": Disable DirectInput detection. + * - "1": Enable DirectInput detection. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_DIRECTINPUT "SDL_JOYSTICK_DIRECTINPUT" + +/** + * A variable that specifies a dialog backend to use. + * + * By default, SDL will try all available dialog backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target. + * + * If the specified target does not exist or is not available, the + * dialog-related function calls will fail. + * + * This hint currently only applies to platforms using the generic "Unix" + * dialog implementation, but may be extended to more platforms in the future. + * Note that some Unix and Unix-like platforms have their own implementation, + * such as macOS and Haiku. + * + * The variable can be set to the following values: + * + * - NULL: Select automatically (default, all platforms) + * - "portal": Use XDG Portals through DBus (Unix only) + * - "zenity": Use the Zenity program (Unix only) + * + * More options may be added in the future. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_FILE_DIALOG_DRIVER "SDL_FILE_DIALOG_DRIVER" + +/** + * Override for SDL_GetDisplayUsableBounds(). + * + * If set, this hint will override the expected results for + * SDL_GetDisplayUsableBounds() for display index 0. Generally you don't want + * to do this, but this allows an embedded system to request that some of the + * screen be reserved for other uses when paired with a well-behaved + * application. + * + * The contents of this hint must be 4 comma-separated integers, the first is + * the bounds x, then y, width and height, in that order. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_DISPLAY_USABLE_BOUNDS "SDL_DISPLAY_USABLE_BOUNDS" + +/** + * Disable giving back control to the browser automatically when running with + * asyncify. + * + * With -s ASYNCIFY, SDL calls emscripten_sleep during operations such as + * refreshing the screen or polling events. + * + * This hint only applies to the emscripten platform. + * + * The variable can be set to the following values: + * + * - "0": Disable emscripten_sleep calls (if you give back browser control + * manually or use asyncify for other purposes). + * - "1": Enable emscripten_sleep calls. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EMSCRIPTEN_ASYNCIFY "SDL_EMSCRIPTEN_ASYNCIFY" + +/** + * Specify the CSS selector used for the "default" window/canvas. + * + * This hint only applies to the emscripten platform. + * + * The default value is "#canvas" + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EMSCRIPTEN_CANVAS_SELECTOR "SDL_EMSCRIPTEN_CANVAS_SELECTOR" + +/** + * Override the binding element for keyboard inputs for Emscripten builds. + * + * This hint only applies to the emscripten platform. + * + * The variable can be one of: + * + * - "#window": the javascript window object (default) + * - "#document": the javascript document object + * - "#screen": the javascript window.screen object + * - "#canvas": the WebGL canvas element + * - "#none": Don't bind anything at all + * - any other string without a leading # sign applies to the element on the + * page with that ID. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EMSCRIPTEN_KEYBOARD_ELEMENT "SDL_EMSCRIPTEN_KEYBOARD_ELEMENT" + +/** + * A variable that controls whether the on-screen keyboard should be shown + * when text input is active. + * + * The variable can be set to the following values: + * + * - "auto": The on-screen keyboard will be shown if there is no physical + * keyboard attached. (default) + * - "0": Do not show the on-screen keyboard. + * - "1": Show the on-screen keyboard, if available. + * + * This hint must be set before SDL_StartTextInput() is called + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ENABLE_SCREEN_KEYBOARD "SDL_ENABLE_SCREEN_KEYBOARD" + +/** + * A variable containing a list of evdev devices to use if udev is not + * available. + * + * The list of devices is in the form: + * + * deviceclass:path[,deviceclass:path[,...]] + * + * where device class is an integer representing the SDL_UDEV_deviceclass and + * path is the full path to the event device. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EVDEV_DEVICES "SDL_EVDEV_DEVICES" + +/** + * A variable controlling verbosity of the logging of SDL events pushed onto + * the internal queue. + * + * The variable can be set to the following values, from least to most + * verbose: + * + * - "0": Don't log any events. (default) + * - "1": Log most events (other than the really spammy ones). + * - "2": Include mouse and finger motion events. + * + * This is generally meant to be used to debug SDL itself, but can be useful + * for application developers that need better visibility into what is going + * on in the event queue. Logged events are sent through SDL_Log(), which + * means by default they appear on stdout on most platforms or maybe + * OutputDebugString() on Windows, and can be funneled by the app with + * SDL_SetLogOutputFunction(), etc. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EVENT_LOGGING "SDL_EVENT_LOGGING" + +/** + * A variable controlling whether raising the window should be done more + * forcefully. + * + * The variable can be set to the following values: + * + * - "0": Honor the OS policy for raising windows. (default) + * - "1": Force the window to be raised, overriding any OS policy. + * + * At present, this is only an issue under MS Windows, which makes it nearly + * impossible to programmatically move a window to the foreground, for + * "security" reasons. See http://stackoverflow.com/a/34414846 for a + * discussion. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_FORCE_RAISEWINDOW "SDL_FORCE_RAISEWINDOW" + +/** + * A variable controlling how 3D acceleration is used to accelerate the SDL + * screen surface. + * + * SDL can try to accelerate the SDL screen surface by using streaming + * textures with a 3D rendering engine. This variable controls whether and how + * this is done. + * + * The variable can be set to the following values: + * + * - "0": Disable 3D acceleration + * - "1": Enable 3D acceleration, using the default renderer. (default) + * - "X": Enable 3D acceleration, using X where X is one of the valid + * rendering drivers. (e.g. "direct3d", "opengl", etc.) + * + * This hint should be set before calling SDL_GetWindowSurface() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_FRAMEBUFFER_ACCELERATION "SDL_FRAMEBUFFER_ACCELERATION" + +/** + * A variable that lets you manually hint extra gamecontroller db entries. + * + * The variable should be newline delimited rows of gamecontroller config + * data, see SDL_gamepad.h + * + * You can update mappings after SDL is initialized with + * SDL_GetGamepadMappingForGUID() and SDL_AddGamepadMapping() + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLERCONFIG "SDL_GAMECONTROLLERCONFIG" + +/** + * A variable that lets you provide a file with extra gamecontroller db + * entries. + * + * The file should contain lines of gamecontroller config data, see + * SDL_gamepad.h + * + * You can update mappings after SDL is initialized with + * SDL_GetGamepadMappingForGUID() and SDL_AddGamepadMapping() + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLERCONFIG_FILE "SDL_GAMECONTROLLERCONFIG_FILE" + +/** + * A variable that overrides the automatic controller type detection. + * + * The variable should be comma separated entries, in the form: VID/PID=type + * + * The VID and PID should be hexadecimal with exactly 4 digits, e.g. 0x00fd + * + * This hint affects what low level protocol is used with the HIDAPI driver. + * + * The variable can be set to the following values: + * + * - "Xbox360" + * - "XboxOne" + * - "PS3" + * - "PS4" + * - "PS5" + * - "SwitchPro" + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLERTYPE "SDL_GAMECONTROLLERTYPE" + +/** + * A variable containing a list of devices to skip when scanning for game + * controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * 0xAAAA/0xBBBB,0xCCCC/0xDDDD + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLER_IGNORE_DEVICES "SDL_GAMECONTROLLER_IGNORE_DEVICES" + +/** + * If set, all devices will be skipped when scanning for game controllers + * except for the ones listed in this variable. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * 0xAAAA/0xBBBB,0xCCCC/0xDDDD + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLER_IGNORE_DEVICES_EXCEPT "SDL_GAMECONTROLLER_IGNORE_DEVICES_EXCEPT" + +/** + * A variable that controls whether the device's built-in accelerometer and + * gyro should be used as sensors for gamepads. + * + * The variable can be set to the following values: + * + * - "0": Sensor fusion is disabled + * - "1": Sensor fusion is enabled for all controllers that lack sensors + * + * Or the variable can be a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * 0xAAAA/0xBBBB,0xCCCC/0xDDDD + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before a gamepad is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLER_SENSOR_FUSION "SDL_GAMECONTROLLER_SENSOR_FUSION" + +/** + * This variable sets the default text of the TextInput window on GDK + * platforms. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_DEFAULT_TEXT "SDL_GDK_TEXTINPUT_DEFAULT_TEXT" + +/** + * This variable sets the description of the TextInput window on GDK + * platforms. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_DESCRIPTION "SDL_GDK_TEXTINPUT_DESCRIPTION" + +/** + * This variable sets the maximum input length of the TextInput window on GDK + * platforms. + * + * The value must be a stringified integer, for example "10" to allow for up + * to 10 characters of text input. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_MAX_LENGTH "SDL_GDK_TEXTINPUT_MAX_LENGTH" + +/** + * This variable sets the input scope of the TextInput window on GDK + * platforms. + * + * Set this hint to change the XGameUiTextEntryInputScope value that will be + * passed to the window creation function. The value must be a stringified + * integer, for example "0" for XGameUiTextEntryInputScope::Default. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_SCOPE "SDL_GDK_TEXTINPUT_SCOPE" + +/** + * This variable sets the title of the TextInput window on GDK platforms. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_TITLE "SDL_GDK_TEXTINPUT_TITLE" + +/** + * A variable to control whether HIDAPI uses libusb for device access. + * + * By default libusb will only be used for a few devices that require direct + * USB access, and this can be controlled with + * SDL_HINT_HIDAPI_LIBUSB_WHITELIST. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI will not use libusb for device access. + * - "1": HIDAPI will use libusb for device access if available. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_LIBUSB "SDL_HIDAPI_LIBUSB" + +/** + * A variable to control whether HIDAPI uses libusb only for whitelisted + * devices. + * + * By default libusb will only be used for a few devices that require direct + * USB access. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI will use libusb for all device access. + * - "1": HIDAPI will use libusb only for whitelisted devices. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_LIBUSB_WHITELIST "SDL_HIDAPI_LIBUSB_WHITELIST" + +/** + * A variable to control whether HIDAPI uses udev for device detection. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI will poll for device changes. + * - "1": HIDAPI will use udev for device detection. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_UDEV "SDL_HIDAPI_UDEV" + +/** + * A variable that specifies a GPU backend to use. + * + * By default, SDL will try all available GPU backends in a reasonable order + * until it finds one that can work, but this hint allows the app or user to + * force a specific target, such as "direct3d12" if, say, your hardware + * supports Vulkan but you want to try using D3D12 instead. + * + * This hint should be set before any GPU functions are called. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GPU_DRIVER "SDL_GPU_DRIVER" + +/** + * A variable to control whether SDL_hid_enumerate() enumerates all HID + * devices or only controllers. + * + * The variable can be set to the following values: + * + * - "0": SDL_hid_enumerate() will enumerate all HID devices. + * - "1": SDL_hid_enumerate() will only enumerate controllers. (default) + * + * By default SDL will only enumerate controllers, to reduce risk of hanging + * or crashing on devices with bad drivers and avoiding macOS keyboard capture + * permission prompts. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_ENUMERATE_ONLY_CONTROLLERS "SDL_HIDAPI_ENUMERATE_ONLY_CONTROLLERS" + +/** + * A variable containing a list of devices to ignore in SDL_hid_enumerate(). + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * For example, to ignore the Shanwan DS3 controller and any Valve controller, + * you might use the string "0x2563/0x0523,0x28de/0x0000" + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_IGNORE_DEVICES "SDL_HIDAPI_IGNORE_DEVICES" + +/** + * A variable describing what IME UI elements the application can display. + * + * By default IME UI is handled using native components by the OS where + * possible, however this can interfere with or not be visible when exclusive + * fullscreen mode is used. + * + * The variable can be set to a comma separated list containing the following + * items: + * + * - "none" or "0": The application can't render any IME elements, and native + * UI should be used. (default) + * - "composition": The application handles SDL_EVENT_TEXT_EDITING events and + * can render the composition text. + * - "candidates": The application handles SDL_EVENT_TEXT_EDITING_CANDIDATES + * and can render the candidate list. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_IME_IMPLEMENTED_UI "SDL_IME_IMPLEMENTED_UI" + +/** + * A variable controlling whether the home indicator bar on iPhone X should be + * hidden. + * + * The variable can be set to the following values: + * + * - "0": The indicator bar is not hidden. (default for windowed applications) + * - "1": The indicator bar is hidden and is shown when the screen is touched + * (useful for movie playback applications). + * - "2": The indicator bar is dim and the first swipe makes it visible and + * the second swipe performs the "home" action. (default for fullscreen + * applications) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_IOS_HIDE_HOME_INDICATOR "SDL_IOS_HIDE_HOME_INDICATOR" + +/** + * A variable that lets you enable joystick (and gamecontroller) events even + * when your app is in the background. + * + * The variable can be set to the following values: + * + * - "0": Disable joystick & gamecontroller input events when the application + * is in the background. (default) + * - "1": Enable joystick & gamecontroller input events when the application + * is in the background. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS "SDL_JOYSTICK_ALLOW_BACKGROUND_EVENTS" + +/** + * A variable containing a list of arcade stick style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ARCADESTICK_DEVICES "SDL_JOYSTICK_ARCADESTICK_DEVICES" + +/** + * A variable containing a list of devices that are not arcade stick style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_ARCADESTICK_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ARCADESTICK_DEVICES_EXCLUDED "SDL_JOYSTICK_ARCADESTICK_DEVICES_EXCLUDED" + +/** + * A variable containing a list of devices that should not be considered + * joysticks. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_BLACKLIST_DEVICES "SDL_JOYSTICK_BLACKLIST_DEVICES" + +/** + * A variable containing a list of devices that should be considered + * joysticks. + * + * This will override SDL_HINT_JOYSTICK_BLACKLIST_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_BLACKLIST_DEVICES_EXCLUDED "SDL_JOYSTICK_BLACKLIST_DEVICES_EXCLUDED" + +/** + * A variable containing a comma separated list of devices to open as + * joysticks. + * + * This variable is currently only used by the Linux joystick driver. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_DEVICE "SDL_JOYSTICK_DEVICE" + +/** + * A variable controlling whether enhanced reports should be used for + * controllers when using the HIDAPI driver. + * + * Enhanced reports allow rumble and effects on Bluetooth PlayStation + * controllers and gyro on Nintendo Switch controllers, but break Windows + * DirectInput for other applications that don't use SDL. + * + * Once enhanced reports are enabled, they can't be disabled on PlayStation + * controllers without power cycling the controller. + * + * The variable can be set to the following values: + * + * - "0": enhanced reports are not enabled. + * - "1": enhanced reports are enabled. (default) + * - "auto": enhanced features are advertised to the application, but SDL + * doesn't change the controller report mode unless the application uses + * them. + * + * This hint can be enabled anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ENHANCED_REPORTS "SDL_JOYSTICK_ENHANCED_REPORTS" + +/** + * A variable containing a list of flightstick style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of @file, in which case the named file + * will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_FLIGHTSTICK_DEVICES "SDL_JOYSTICK_FLIGHTSTICK_DEVICES" + +/** + * A variable containing a list of devices that are not flightstick style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_FLIGHTSTICK_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_FLIGHTSTICK_DEVICES_EXCLUDED "SDL_JOYSTICK_FLIGHTSTICK_DEVICES_EXCLUDED" + +/** + * A variable controlling whether GameInput should be used for controller + * handling on Windows. + * + * The variable can be set to the following values: + * + * - "0": GameInput is not used. + * - "1": GameInput is used. + * + * The default is "1" on GDK platforms, and "0" otherwise. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_GAMEINPUT "SDL_JOYSTICK_GAMEINPUT" + +/** + * A variable containing a list of devices known to have a GameCube form + * factor. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_GAMECUBE_DEVICES "SDL_JOYSTICK_GAMECUBE_DEVICES" + +/** + * A variable containing a list of devices known not to have a GameCube form + * factor. + * + * This will override SDL_HINT_JOYSTICK_GAMECUBE_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_GAMECUBE_DEVICES_EXCLUDED "SDL_JOYSTICK_GAMECUBE_DEVICES_EXCLUDED" + +/** + * A variable controlling whether the HIDAPI joystick drivers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI drivers are not used. + * - "1": HIDAPI drivers are used. (default) + * + * This variable is the default for all drivers, but can be overridden by the + * hints for specific drivers below. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI "SDL_JOYSTICK_HIDAPI" + +/** + * A variable controlling whether Nintendo Switch Joy-Con controllers will be + * combined into a single Pro-like controller when using the HIDAPI driver. + * + * The variable can be set to the following values: + * + * - "0": Left and right Joy-Con controllers will not be combined and each + * will be a mini-gamepad. + * - "1": Left and right Joy-Con controllers will be combined into a single + * controller. (default) + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_COMBINE_JOY_CONS "SDL_JOYSTICK_HIDAPI_COMBINE_JOY_CONS" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo GameCube + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE "SDL_JOYSTICK_HIDAPI_GAMECUBE" + +/** + * A variable controlling whether rumble is used to implement the GameCube + * controller's 3 rumble modes, Stop(0), Rumble(1), and StopHard(2). + * + * This is useful for applications that need full compatibility for things + * like ADSR envelopes. - Stop is implemented by setting low_frequency_rumble + * to 0 and high_frequency_rumble >0 - Rumble is both at any arbitrary value - + * StopHard is implemented by setting both low_frequency_rumble and + * high_frequency_rumble to 0 + * + * The variable can be set to the following values: + * + * - "0": Normal rumble behavior is behavior is used. (default) + * - "1": Proper GameCube controller rumble behavior is used. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE "SDL_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Switch + * Joy-Cons should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_JOY_CONS "SDL_JOYSTICK_HIDAPI_JOY_CONS" + +/** + * A variable controlling whether the Home button LED should be turned on when + * a Nintendo Switch Joy-Con controller is opened. + * + * The variable can be set to the following values: + * + * - "0": home button LED is turned off + * - "1": home button LED is turned on + * + * By default the Home button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Home button LED. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_JOYCON_HOME_LED "SDL_JOYSTICK_HIDAPI_JOYCON_HOME_LED" + +/** + * A variable controlling whether the HIDAPI driver for Amazon Luna + * controllers connected via Bluetooth should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_LUNA "SDL_JOYSTICK_HIDAPI_LUNA" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Online + * classic controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_NINTENDO_CLASSIC "SDL_JOYSTICK_HIDAPI_NINTENDO_CLASSIC" + +/** + * A variable controlling whether the HIDAPI driver for PS3 controllers should + * be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI on macOS, and "0" on + * other platforms. + * + * For official Sony driver (sixaxis.sys) use + * SDL_HINT_JOYSTICK_HIDAPI_PS3_SIXAXIS_DRIVER. See + * https://github.com/ViGEm/DsHidMini for an alternative driver on Windows. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS3 "SDL_JOYSTICK_HIDAPI_PS3" + +/** + * A variable controlling whether the Sony driver (sixaxis.sys) for PS3 + * controllers (Sixaxis/DualShock 3) should be used. + * + * The variable can be set to the following values: + * + * - "0": Sony driver (sixaxis.sys) is not used. + * - "1": Sony driver (sixaxis.sys) is used. + * + * The default value is 0. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS3_SIXAXIS_DRIVER "SDL_JOYSTICK_HIDAPI_PS3_SIXAXIS_DRIVER" + +/** + * A variable controlling whether the HIDAPI driver for PS4 controllers should + * be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS4 "SDL_JOYSTICK_HIDAPI_PS4" + +/** + * A variable controlling the update rate of the PS4 controller over Bluetooth + * when using the HIDAPI driver. + * + * This defaults to 4 ms, to match the behavior over USB, and to be more + * friendly to other Bluetooth devices and older Bluetooth hardware on the + * computer. It can be set to "1" (1000Hz), "2" (500Hz) and "4" (250Hz) + * + * This hint can be set anytime, but only takes effect when extended input + * reports are enabled. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS4_REPORT_INTERVAL "SDL_JOYSTICK_HIDAPI_PS4_REPORT_INTERVAL" + +/** + * A variable controlling whether the HIDAPI driver for PS5 controllers should + * be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS5 "SDL_JOYSTICK_HIDAPI_PS5" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with a PS5 controller. + * + * The variable can be set to the following values: + * + * - "0": player LEDs are not enabled. + * - "1": player LEDs are enabled. (default) + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS5_PLAYER_LED "SDL_JOYSTICK_HIDAPI_PS5_PLAYER_LED" + +/** + * A variable controlling whether the HIDAPI driver for NVIDIA SHIELD + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SHIELD "SDL_JOYSTICK_HIDAPI_SHIELD" + +/** + * A variable controlling whether the HIDAPI driver for Google Stadia + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STADIA "SDL_JOYSTICK_HIDAPI_STADIA" + +/** + * A variable controlling whether the HIDAPI driver for Bluetooth Steam + * Controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. (default) + * - "1": HIDAPI driver is used for Steam Controllers, which requires + * Bluetooth access and may prompt the user for permission on iOS and + * Android. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAM "SDL_JOYSTICK_HIDAPI_STEAM" + +/** + * A variable controlling whether the Steam button LED should be turned on + * when a Steam controller is opened. + * + * The variable can be set to the following values: + * + * - "0": Steam button LED is turned off. + * - "1": Steam button LED is turned on. + * + * By default the Steam button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Steam button LED. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAM_HOME_LED "SDL_JOYSTICK_HIDAPI_STEAM_HOME_LED" + +/** + * A variable controlling whether the HIDAPI driver for the Steam Deck builtin + * controller should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAMDECK "SDL_JOYSTICK_HIDAPI_STEAMDECK" + +/** + * A variable controlling whether the HIDAPI driver for HORI licensed Steam + * controllers should be used. + * + * This variable can be set to the following values: "0" - HIDAPI driver is + * not used "1" - HIDAPI driver is used + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAM_HORI "SDL_JOYSTICK_HIDAPI_STEAM_HORI" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Switch + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SWITCH "SDL_JOYSTICK_HIDAPI_SWITCH" + +/** + * A variable controlling whether the Home button LED should be turned on when + * a Nintendo Switch Pro controller is opened. + * + * The variable can be set to the following values: + * + * - "0": Home button LED is turned off. + * - "1": Home button LED is turned on. + * + * By default the Home button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Home button LED. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SWITCH_HOME_LED "SDL_JOYSTICK_HIDAPI_SWITCH_HOME_LED" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with a Nintendo Switch controller. + * + * The variable can be set to the following values: + * + * - "0": Player LEDs are not enabled. + * - "1": Player LEDs are enabled. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SWITCH_PLAYER_LED "SDL_JOYSTICK_HIDAPI_SWITCH_PLAYER_LED" + +/** + * A variable controlling whether Nintendo Switch Joy-Con controllers will be + * in vertical mode when using the HIDAPI driver. + * + * The variable can be set to the following values: + * + * - "0": Left and right Joy-Con controllers will not be in vertical mode. + * (default) + * - "1": Left and right Joy-Con controllers will be in vertical mode. + * + * This hint should be set before opening a Joy-Con controller. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_VERTICAL_JOY_CONS "SDL_JOYSTICK_HIDAPI_VERTICAL_JOY_CONS" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Wii and Wii U + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * This driver doesn't work with the dolphinbar, so the default is false for + * now. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_WII "SDL_JOYSTICK_HIDAPI_WII" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with a Wii controller. + * + * The variable can be set to the following values: + * + * - "0": Player LEDs are not enabled. + * - "1": Player LEDs are enabled. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_WII_PLAYER_LED "SDL_JOYSTICK_HIDAPI_WII_PLAYER_LED" + +/** + * A variable controlling whether the HIDAPI driver for XBox controllers + * should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is "0" on Windows, otherwise the value of + * SDL_HINT_JOYSTICK_HIDAPI + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX "SDL_JOYSTICK_HIDAPI_XBOX" + +/** + * A variable controlling whether the HIDAPI driver for XBox 360 controllers + * should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360 "SDL_JOYSTICK_HIDAPI_XBOX_360" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with an Xbox 360 controller. + * + * The variable can be set to the following values: + * + * - "0": Player LEDs are not enabled. + * - "1": Player LEDs are enabled. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360_PLAYER_LED "SDL_JOYSTICK_HIDAPI_XBOX_360_PLAYER_LED" + +/** + * A variable controlling whether the HIDAPI driver for XBox 360 wireless + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX_360 + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360_WIRELESS "SDL_JOYSTICK_HIDAPI_XBOX_360_WIRELESS" + +/** + * A variable controlling whether the HIDAPI driver for XBox One controllers + * should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_ONE "SDL_JOYSTICK_HIDAPI_XBOX_ONE" + +/** + * A variable controlling whether the Home button LED should be turned on when + * an Xbox One controller is opened. + * + * The variable can be set to the following values: + * + * - "0": Home button LED is turned off. + * - "1": Home button LED is turned on. + * + * By default the Home button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Home button LED. The default brightness is 0.4. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_ONE_HOME_LED "SDL_JOYSTICK_HIDAPI_XBOX_ONE_HOME_LED" + +/** + * A variable controlling whether IOKit should be used for controller + * handling. + * + * The variable can be set to the following values: + * + * - "0": IOKit is not used. + * - "1": IOKit is used. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_IOKIT "SDL_JOYSTICK_IOKIT" + +/** + * A variable controlling whether to use the classic /dev/input/js* joystick + * interface or the newer /dev/input/event* joystick interface on Linux. + * + * The variable can be set to the following values: + * + * - "0": Use /dev/input/event* (default) + * - "1": Use /dev/input/js* + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_CLASSIC "SDL_JOYSTICK_LINUX_CLASSIC" + +/** + * A variable controlling whether joysticks on Linux adhere to their + * HID-defined deadzones or return unfiltered values. + * + * The variable can be set to the following values: + * + * - "0": Return unfiltered joystick axis values. (default) + * - "1": Return axis values with deadzones taken into account. + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_DEADZONES "SDL_JOYSTICK_LINUX_DEADZONES" + +/** + * A variable controlling whether joysticks on Linux will always treat 'hat' + * axis inputs (ABS_HAT0X - ABS_HAT3Y) as 8-way digital hats without checking + * whether they may be analog. + * + * The variable can be set to the following values: + * + * - "0": Only map hat axis inputs to digital hat outputs if the input axes + * appear to actually be digital. (default) + * - "1": Always handle the input axes numbered ABS_HAT0X to ABS_HAT3Y as + * digital hats. + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_DIGITAL_HATS "SDL_JOYSTICK_LINUX_DIGITAL_HATS" + +/** + * A variable controlling whether digital hats on Linux will apply deadzones + * to their underlying input axes or use unfiltered values. + * + * The variable can be set to the following values: + * + * - "0": Return digital hat values based on unfiltered input axis values. + * - "1": Return digital hat values with deadzones on the input axes taken + * into account. (default) + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_HAT_DEADZONES "SDL_JOYSTICK_LINUX_HAT_DEADZONES" + +/** + * A variable controlling whether GCController should be used for controller + * handling. + * + * The variable can be set to the following values: + * + * - "0": GCController is not used. + * - "1": GCController is used. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_MFI "SDL_JOYSTICK_MFI" + +/** + * A variable controlling whether the RAWINPUT joystick drivers should be used + * for better handling XInput-capable devices. + * + * The variable can be set to the following values: + * + * - "0": RAWINPUT drivers are not used. (default) + * - "1": RAWINPUT drivers are used. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_RAWINPUT "SDL_JOYSTICK_RAWINPUT" + +/** + * A variable controlling whether the RAWINPUT driver should pull correlated + * data from XInput. + * + * The variable can be set to the following values: + * + * - "0": RAWINPUT driver will only use data from raw input APIs. + * - "1": RAWINPUT driver will also pull data from XInput and + * Windows.Gaming.Input, providing better trigger axes, guide button + * presses, and rumble support for Xbox controllers. (default) + * + * This hint should be set before a gamepad is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_RAWINPUT_CORRELATE_XINPUT "SDL_JOYSTICK_RAWINPUT_CORRELATE_XINPUT" + +/** + * A variable controlling whether the ROG Chakram mice should show up as + * joysticks. + * + * The variable can be set to the following values: + * + * - "0": ROG Chakram mice do not show up as joysticks. (default) + * - "1": ROG Chakram mice show up as joysticks. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ROG_CHAKRAM "SDL_JOYSTICK_ROG_CHAKRAM" + +/** + * A variable controlling whether a separate thread should be used for + * handling joystick detection and raw input messages on Windows. + * + * The variable can be set to the following values: + * + * - "0": A separate thread is not used. + * - "1": A separate thread is used for handling raw input messages. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_THREAD "SDL_JOYSTICK_THREAD" + +/** + * A variable containing a list of throttle style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_THROTTLE_DEVICES "SDL_JOYSTICK_THROTTLE_DEVICES" + +/** + * A variable containing a list of devices that are not throttle style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_THROTTLE_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_THROTTLE_DEVICES_EXCLUDED "SDL_JOYSTICK_THROTTLE_DEVICES_EXCLUDED" + +/** + * A variable controlling whether Windows.Gaming.Input should be used for + * controller handling. + * + * The variable can be set to the following values: + * + * - "0": WGI is not used. + * - "1": WGI is used. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_WGI "SDL_JOYSTICK_WGI" + +/** + * A variable containing a list of wheel style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_WHEEL_DEVICES "SDL_JOYSTICK_WHEEL_DEVICES" + +/** + * A variable containing a list of devices that are not wheel style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_WHEEL_DEVICES and the built in device + * list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_WHEEL_DEVICES_EXCLUDED "SDL_JOYSTICK_WHEEL_DEVICES_EXCLUDED" + +/** + * A variable containing a list of devices known to have all axes centered at + * zero. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ZERO_CENTERED_DEVICES "SDL_JOYSTICK_ZERO_CENTERED_DEVICES" + +/** + * A variable containing a list of devices and their desired number of haptic + * (force feedback) enabled axis. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form plus the number of desired axes, e.g. + * + * `0xAAAA/0xBBBB/1,0xCCCC/0xDDDD/3` + * + * This hint supports a "wildcard" device that will set the number of haptic + * axes on all initialized haptic devices which were not defined explicitly in + * this hint. + * + * `0xFFFF/0xFFFF/1` + * + * This hint should be set before a controller is opened. The number of haptic + * axes won't exceed the number of real axes found on the device. + * + * \since This hint is available since SDL 3.2.5. + */ +#define SDL_HINT_JOYSTICK_HAPTIC_AXES "SDL_JOYSTICK_HAPTIC_AXES" + +/** + * A variable that controls keycode representation in keyboard events. + * + * This variable is a comma separated set of options for translating keycodes + * in events: + * + * - "none": Keycode options are cleared, this overrides other options. + * - "hide_numpad": The numpad keysyms will be translated into their + * non-numpad versions based on the current NumLock state. For example, + * SDLK_KP_4 would become SDLK_4 if SDL_KMOD_NUM is set in the event + * modifiers, and SDLK_LEFT if it is unset. + * - "french_numbers": The number row on French keyboards is inverted, so + * pressing the 1 key would yield the keycode SDLK_1, or '1', instead of + * SDLK_AMPERSAND, or '&' + * - "latin_letters": For keyboards using non-Latin letters, such as Russian + * or Thai, the letter keys generate keycodes as though it had an en_US + * layout. e.g. pressing the key associated with SDL_SCANCODE_A on a Russian + * keyboard would yield 'a' instead of a Cyrillic letter. + * + * The default value for this hint is "french_numbers,latin_letters" + * + * Some platforms like Emscripten only provide modified keycodes and the + * options are not used. + * + * These options do not affect the return value of SDL_GetKeyFromScancode() or + * SDL_GetScancodeFromKey(), they just apply to the keycode included in key + * events. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_KEYCODE_OPTIONS "SDL_KEYCODE_OPTIONS" + +/** + * A variable that controls what KMSDRM device to use. + * + * SDL might open something like "/dev/dri/cardNN" to access KMSDRM + * functionality, where "NN" is a device index number. SDL makes a guess at + * the best index to use (usually zero), but the app or user can set this hint + * to a number between 0 and 99 to force selection. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_KMSDRM_DEVICE_INDEX "SDL_KMSDRM_DEVICE_INDEX" + +/** + * A variable that controls whether SDL requires DRM master access in order to + * initialize the KMSDRM video backend. + * + * The DRM subsystem has a concept of a "DRM master" which is a DRM client + * that has the ability to set planes, set cursor, etc. When SDL is DRM + * master, it can draw to the screen using the SDL rendering APIs. Without DRM + * master, SDL is still able to process input and query attributes of attached + * displays, but it cannot change display state or draw to the screen + * directly. + * + * In some cases, it can be useful to have the KMSDRM backend even if it + * cannot be used for rendering. An app may want to use SDL for input + * processing while using another rendering API (such as an MMAL overlay on + * Raspberry Pi) or using its own code to render to DRM overlays that SDL + * doesn't support. + * + * The variable can be set to the following values: + * + * - "0": SDL will allow usage of the KMSDRM backend without DRM master. + * - "1": SDL Will require DRM master to use the KMSDRM backend. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_KMSDRM_REQUIRE_DRM_MASTER "SDL_KMSDRM_REQUIRE_DRM_MASTER" + +/** + * A variable controlling the default SDL log levels. + * + * This variable is a comma separated set of category=level tokens that define + * the default logging levels for SDL applications. + * + * The category can be a numeric category, one of "app", "error", "assert", + * "system", "audio", "video", "render", "input", "test", or `*` for any + * unspecified category. + * + * The level can be a numeric level, one of "verbose", "debug", "info", + * "warn", "error", "critical", or "quiet" to disable that category. + * + * You can omit the category if you want to set the logging level for all + * categories. + * + * If this hint isn't set, the default log levels are equivalent to: + * + * `app=info,assert=warn,test=verbose,*=error` + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_LOGGING "SDL_LOGGING" + +/** + * A variable controlling whether to force the application to become the + * foreground process when launched on macOS. + * + * The variable can be set to the following values: + * + * - "0": The application is brought to the foreground when launched. + * (default) + * - "1": The application may remain in the background when launched. + * + * This hint needs to be set before SDL_Init(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_BACKGROUND_APP "SDL_MAC_BACKGROUND_APP" + +/** + * A variable that determines whether Ctrl+Click should generate a right-click + * event on macOS. + * + * The variable can be set to the following values: + * + * - "0": Ctrl+Click does not generate a right mouse button click event. + * (default) + * - "1": Ctrl+Click generated a right mouse button click event. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK "SDL_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK" + +/** + * A variable controlling whether dispatching OpenGL context updates should + * block the dispatching thread until the main thread finishes processing on + * macOS. + * + * The variable can be set to the following values: + * + * - "0": Dispatching OpenGL context updates will block the dispatching thread + * until the main thread finishes processing. (default) + * - "1": Dispatching OpenGL context updates will allow the dispatching thread + * to continue execution. + * + * Generally you want the default, but if you have OpenGL code in a background + * thread on a Mac, and the main thread hangs because it's waiting for that + * background thread, but that background thread is also hanging because it's + * waiting for the main thread to do an update, this might fix your issue. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_OPENGL_ASYNC_DISPATCH "SDL_MAC_OPENGL_ASYNC_DISPATCH" + +/** + * A variable controlling whether the Option key on macOS should be remapped + * to act as the Alt key. + * + * The variable can be set to the following values: + * + * - "none": The Option key is not remapped to Alt. (default) + * - "only_left": Only the left Option key is remapped to Alt. + * - "only_right": Only the right Option key is remapped to Alt. + * - "both": Both Option keys are remapped to Alt. + * + * This will prevent the triggering of key compositions that rely on the + * Option key, but will still send the Alt modifier for keyboard events. In + * the case that both Alt and Option are pressed, the Option key will be + * ignored. This is particularly useful for applications like terminal + * emulators and graphical user interfaces (GUIs) that rely on Alt key + * functionality for shortcuts or navigation. This does not apply to + * SDL_GetKeyFromScancode and only has an effect if IME is enabled. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_OPTION_AS_ALT "SDL_MAC_OPTION_AS_ALT" + +/** + * A variable controlling whether SDL_EVENT_MOUSE_WHEEL event values will have + * momentum on macOS. + * + * The variable can be set to the following values: + * + * - "0": The mouse wheel events will have no momentum. (default) + * - "1": The mouse wheel events will have momentum. + * + * This hint needs to be set before SDL_Init(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_SCROLL_MOMENTUM "SDL_MAC_SCROLL_MOMENTUM" + +/** + * Request SDL_AppIterate() be called at a specific rate. + * + * If this is set to a number, it represents Hz, so "60" means try to iterate + * 60 times per second. "0" means to iterate as fast as possible. Negative + * values are illegal, but reserved, in case they are useful in a future + * revision of SDL. + * + * There are other strings that have special meaning. If set to "waitevent", + * SDL_AppIterate will not be called until new event(s) have arrived (and been + * processed by SDL_AppEvent). This can be useful for apps that are completely + * idle except in response to input. + * + * On some platforms, or if you are using SDL_main instead of SDL_AppIterate, + * this hint is ignored. When the hint can be used, it is allowed to be + * changed at any time. + * + * This defaults to 0, and specifying NULL for the hint's value will restore + * the default. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAIN_CALLBACK_RATE "SDL_MAIN_CALLBACK_RATE" + +/** + * A variable controlling whether the mouse is captured while mouse buttons + * are pressed. + * + * The variable can be set to the following values: + * + * - "0": The mouse is not captured while mouse buttons are pressed. + * - "1": The mouse is captured while mouse buttons are pressed. + * + * By default the mouse is captured while mouse buttons are pressed so if the + * mouse is dragged outside the window, the application continues to receive + * mouse events until the button is released. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_AUTO_CAPTURE "SDL_MOUSE_AUTO_CAPTURE" + +/** + * A variable setting the double click radius, in pixels. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_DOUBLE_CLICK_RADIUS "SDL_MOUSE_DOUBLE_CLICK_RADIUS" + +/** + * A variable setting the double click time, in milliseconds. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_DOUBLE_CLICK_TIME "SDL_MOUSE_DOUBLE_CLICK_TIME" + +/** + * A variable setting which system cursor to use as the default cursor. + * + * This should be an integer corresponding to the SDL_SystemCursor enum. The + * default value is zero (SDL_SYSTEM_CURSOR_DEFAULT). + * + * This hint needs to be set before SDL_Init(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_DEFAULT_SYSTEM_CURSOR "SDL_MOUSE_DEFAULT_SYSTEM_CURSOR" + +/** + * A variable controlling whether warping a hidden mouse cursor will activate + * relative mouse mode. + * + * When this hint is set, the mouse cursor is hidden, and multiple warps to + * the window center occur within a short time period, SDL will emulate mouse + * warps using relative mouse mode. This can provide smoother and more + * reliable mouse motion for some older games, which continuously calculate + * the distance travelled by the mouse pointer and warp it back to the center + * of the window, rather than using relative mouse motion. + * + * Note that relative mouse mode may have different mouse acceleration + * behavior than pointer warps. + * + * If your application needs to repeatedly warp the hidden mouse cursor at a + * high-frequency for other purposes, it should disable this hint. + * + * The variable can be set to the following values: + * + * - "0": Attempts to warp the mouse will always be made. + * - "1": Some mouse warps will be emulated by forcing relative mouse mode. + * (default) + * + * If not set, this is automatically enabled unless an application uses + * relative mouse mode directly. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_EMULATE_WARP_WITH_RELATIVE "SDL_MOUSE_EMULATE_WARP_WITH_RELATIVE" + +/** + * Allow mouse click events when clicking to focus an SDL window. + * + * The variable can be set to the following values: + * + * - "0": Ignore mouse clicks that activate a window. (default) + * - "1": Generate events for mouse clicks that activate a window. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH "SDL_MOUSE_FOCUS_CLICKTHROUGH" + +/** + * A variable setting the speed scale for mouse motion, in floating point, + * when the mouse is not in relative mode. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_NORMAL_SPEED_SCALE "SDL_MOUSE_NORMAL_SPEED_SCALE" + +/** + * A variable controlling whether relative mouse mode constrains the mouse to + * the center of the window. + * + * Constraining to the center of the window works better for FPS games and + * when the application is running over RDP. Constraining to the whole window + * works better for 2D games and increases the chance that the mouse will be + * in the correct position when using high DPI mice. + * + * The variable can be set to the following values: + * + * - "0": Relative mouse mode constrains the mouse to the window. + * - "1": Relative mouse mode constrains the mouse to the center of the + * window. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_MODE_CENTER "SDL_MOUSE_RELATIVE_MODE_CENTER" + +/** + * A variable setting the scale for mouse motion, in floating point, when the + * mouse is in relative mode. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_SPEED_SCALE "SDL_MOUSE_RELATIVE_SPEED_SCALE" + +/** + * A variable controlling whether the system mouse acceleration curve is used + * for relative mouse motion. + * + * The variable can be set to the following values: + * + * - "0": Relative mouse motion will be unscaled. (default) + * - "1": Relative mouse motion will be scaled using the system mouse + * acceleration curve. + * + * If SDL_HINT_MOUSE_RELATIVE_SPEED_SCALE is set, that will be applied after + * system speed scale. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_SYSTEM_SCALE "SDL_MOUSE_RELATIVE_SYSTEM_SCALE" + +/** + * A variable controlling whether a motion event should be generated for mouse + * warping in relative mode. + * + * The variable can be set to the following values: + * + * - "0": Warping the mouse will not generate a motion event in relative mode + * - "1": Warping the mouse will generate a motion event in relative mode + * + * By default warping the mouse will not generate motion events in relative + * mode. This avoids the application having to filter out large relative + * motion due to warping. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_WARP_MOTION "SDL_MOUSE_RELATIVE_WARP_MOTION" + +/** + * A variable controlling whether the hardware cursor stays visible when + * relative mode is active. + * + * This variable can be set to the following values: + * + * - "0": The cursor will be hidden while relative mode is active (default) + * - "1": The cursor will remain visible while relative mode is active + * + * Note that for systems without raw hardware inputs, relative mode is + * implemented using warping, so the hardware cursor will visibly warp between + * frames if this is enabled on those systems. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_CURSOR_VISIBLE "SDL_MOUSE_RELATIVE_CURSOR_VISIBLE" + +/** + * A variable controlling whether mouse events should generate synthetic touch + * events. + * + * The variable can be set to the following values: + * + * - "0": Mouse events will not generate touch events. (default for desktop + * platforms) + * - "1": Mouse events will generate touch events. (default for mobile + * platforms, such as Android and iOS) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_TOUCH_EVENTS "SDL_MOUSE_TOUCH_EVENTS" + +/** + * A variable controlling whether the keyboard should be muted on the console. + * + * Normally the keyboard is muted while SDL applications are running so that + * keyboard input doesn't show up as key strokes on the console. This hint + * allows you to turn that off for debugging purposes. + * + * The variable can be set to the following values: + * + * - "0": Allow keystrokes to go through to the console. + * - "1": Mute keyboard input so it doesn't show up on the console. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MUTE_CONSOLE_KEYBOARD "SDL_MUTE_CONSOLE_KEYBOARD" + +/** + * Tell SDL not to catch the SIGINT or SIGTERM signals on POSIX platforms. + * + * The variable can be set to the following values: + * + * - "0": SDL will install a SIGINT and SIGTERM handler, and when it catches a + * signal, convert it into an SDL_EVENT_QUIT event. (default) + * - "1": SDL will not install a signal handler at all. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_NO_SIGNAL_HANDLERS "SDL_NO_SIGNAL_HANDLERS" + +/** + * Specify the OpenGL library to load. + * + * This hint should be set before creating an OpenGL window or creating an + * OpenGL context. If this hint isn't set, SDL will choose a reasonable + * default. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_OPENGL_LIBRARY "SDL_OPENGL_LIBRARY" + +/** + * Specify the EGL library to load. + * + * This hint should be set before creating an OpenGL window or creating an + * OpenGL context. This hint is only considered if SDL is using EGL to manage + * OpenGL contexts. If this hint isn't set, SDL will choose a reasonable + * default. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EGL_LIBRARY "SDL_EGL_LIBRARY" + +/** + * A variable controlling what driver to use for OpenGL ES contexts. + * + * On some platforms, currently Windows and X11, OpenGL drivers may support + * creating contexts with an OpenGL ES profile. By default SDL uses these + * profiles, when available, otherwise it attempts to load an OpenGL ES + * library, e.g. that provided by the ANGLE project. This variable controls + * whether SDL follows this default behaviour or will always load an OpenGL ES + * library. + * + * Circumstances where this is useful include - Testing an app with a + * particular OpenGL ES implementation, e.g ANGLE, or emulator, e.g. those + * from ARM, Imagination or Qualcomm. - Resolving OpenGL ES function addresses + * at link time by linking with the OpenGL ES library instead of querying them + * at run time with SDL_GL_GetProcAddress(). + * + * Caution: for an application to work with the default behaviour across + * different OpenGL drivers it must query the OpenGL ES function addresses at + * run time using SDL_GL_GetProcAddress(). + * + * This variable is ignored on most platforms because OpenGL ES is native or + * not supported. + * + * The variable can be set to the following values: + * + * - "0": Use ES profile of OpenGL, if available. (default) + * - "1": Load OpenGL ES library using the default library names. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_OPENGL_ES_DRIVER "SDL_OPENGL_ES_DRIVER" + +/** + * Mechanism to specify openvr_api library location + * + * By default, when using the OpenVR driver, it will search for the API + * library in the current folder. But, if you wish to use a system API you can + * specify that by using this hint. This should be the full or relative path + * to a .dll on Windows or .so on Linux. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_OPENVR_LIBRARY "SDL_OPENVR_LIBRARY" + +/** + * A variable controlling which orientations are allowed on iOS/Android. + * + * In some circumstances it is necessary to be able to explicitly control + * which UI orientations are allowed. + * + * This variable is a space delimited list of the following values: + * + * - "LandscapeLeft" + * - "LandscapeRight" + * - "Portrait" + * - "PortraitUpsideDown" + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ORIENTATIONS "SDL_ORIENTATIONS" + +/** + * A variable controlling the use of a sentinel event when polling the event + * queue. + * + * When polling for events, SDL_PumpEvents is used to gather new events from + * devices. If a device keeps producing new events between calls to + * SDL_PumpEvents, a poll loop will become stuck until the new events stop. + * This is most noticeable when moving a high frequency mouse. + * + * The variable can be set to the following values: + * + * - "0": Disable poll sentinels. + * - "1": Enable poll sentinels. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_POLL_SENTINEL "SDL_POLL_SENTINEL" + +/** + * Override for SDL_GetPreferredLocales(). + * + * If set, this will be favored over anything the OS might report for the + * user's preferred locales. Changing this hint at runtime will not generate a + * SDL_EVENT_LOCALE_CHANGED event (but if you can change the hint, you can + * push your own event, if you want). + * + * The format of this hint is a comma-separated list of language and locale, + * combined with an underscore, as is a common format: "en_GB". Locale is + * optional: "en". So you might have a list like this: "en_GB,jp,es_PT" + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_PREFERRED_LOCALES "SDL_PREFERRED_LOCALES" + +/** + * A variable that decides whether to send SDL_EVENT_QUIT when closing the + * last window. + * + * The variable can be set to the following values: + * + * - "0": SDL will not send an SDL_EVENT_QUIT event when the last window is + * requesting to close. Note that in this case, there are still other + * legitimate reasons one might get an SDL_EVENT_QUIT event: choosing "Quit" + * from the macOS menu bar, sending a SIGINT (ctrl-c) on Unix, etc. + * - "1": SDL will send a quit event when the last window is requesting to + * close. (default) + * + * If there is at least one active system tray icon, SDL_EVENT_QUIT will + * instead be sent when both the last window will be closed and the last tray + * icon will be destroyed. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_QUIT_ON_LAST_WINDOW_CLOSE "SDL_QUIT_ON_LAST_WINDOW_CLOSE" + +/** + * A variable controlling whether the Direct3D device is initialized for + * thread-safe operations. + * + * The variable can be set to the following values: + * + * - "0": Thread-safety is not enabled. (default) + * - "1": Thread-safety is enabled. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_DIRECT3D_THREADSAFE "SDL_RENDER_DIRECT3D_THREADSAFE" + +/** + * A variable controlling whether to enable Direct3D 11+'s Debug Layer. + * + * This variable does not have any effect on the Direct3D 9 based renderer. + * + * The variable can be set to the following values: + * + * - "0": Disable Debug Layer use. (default) + * - "1": Enable Debug Layer use. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_DIRECT3D11_DEBUG "SDL_RENDER_DIRECT3D11_DEBUG" + +/** + * A variable controlling whether to enable Vulkan Validation Layers. + * + * This variable can be set to the following values: + * + * - "0": Disable Validation Layer use + * - "1": Enable Validation Layer use + * + * By default, SDL does not use Vulkan Validation Layers. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_VULKAN_DEBUG "SDL_RENDER_VULKAN_DEBUG" + +/** + * A variable controlling whether to create the GPU device in debug mode. + * + * This variable can be set to the following values: + * + * - "0": Disable debug mode use (default) + * - "1": Enable debug mode use + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_GPU_DEBUG "SDL_RENDER_GPU_DEBUG" + +/** + * A variable controlling whether to prefer a low-power GPU on multi-GPU + * systems. + * + * This variable can be set to the following values: + * + * - "0": Prefer high-performance GPU (default) + * - "1": Prefer low-power GPU + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_GPU_LOW_POWER "SDL_RENDER_GPU_LOW_POWER" + +/** + * A variable specifying which render driver to use. + * + * If the application doesn't pick a specific renderer to use, this variable + * specifies the name of the preferred renderer. If the preferred renderer + * can't be initialized, creating a renderer will fail. + * + * This variable is case insensitive and can be set to the following values: + * + * - "direct3d" + * - "direct3d11" + * - "direct3d12" + * - "opengl" + * - "opengles2" + * - "opengles" + * - "metal" + * - "vulkan" + * - "gpu" + * - "software" + * + * This hint accepts a comma-separated list of driver names, and each will be + * tried in the order listed when creating a renderer until one succeeds or + * all of them fail. + * + * The default varies by platform, but it's the first one in the list that is + * available on the current platform. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_DRIVER "SDL_RENDER_DRIVER" + +/** + * A variable controlling how the 2D render API renders lines. + * + * The variable can be set to the following values: + * + * - "0": Use the default line drawing method (Bresenham's line algorithm) + * - "1": Use the driver point API using Bresenham's line algorithm (correct, + * draws many points) + * - "2": Use the driver line API (occasionally misses line endpoints based on + * hardware driver quirks + * - "3": Use the driver geometry API (correct, draws thicker diagonal lines) + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_LINE_METHOD "SDL_RENDER_LINE_METHOD" + +/** + * A variable controlling whether the Metal render driver select low power + * device over default one. + * + * The variable can be set to the following values: + * + * - "0": Use the preferred OS device. (default) + * - "1": Select a low power device. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_METAL_PREFER_LOW_POWER_DEVICE "SDL_RENDER_METAL_PREFER_LOW_POWER_DEVICE" + +/** + * A variable controlling whether updates to the SDL screen surface should be + * synchronized with the vertical refresh, to avoid tearing. + * + * This hint overrides the application preference when creating a renderer. + * + * The variable can be set to the following values: + * + * - "0": Disable vsync. (default) + * - "1": Enable vsync. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_VSYNC "SDL_RENDER_VSYNC" + +/** + * A variable to control whether the return key on the soft keyboard should + * hide the soft keyboard on Android and iOS. + * + * This hint sets the default value of SDL_PROP_TEXTINPUT_MULTILINE_BOOLEAN. + * + * The variable can be set to the following values: + * + * - "0": The return key will be handled as a key event. (default) + * - "1": The return key will hide the keyboard. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RETURN_KEY_HIDES_IME "SDL_RETURN_KEY_HIDES_IME" + +/** + * A variable containing a list of ROG gamepad capable mice. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_ROG_GAMEPAD_MICE_EXCLUDED + */ +#define SDL_HINT_ROG_GAMEPAD_MICE "SDL_ROG_GAMEPAD_MICE" + +/** + * A variable containing a list of devices that are not ROG gamepad capable + * mice. + * + * This will override SDL_HINT_ROG_GAMEPAD_MICE and the built in device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ROG_GAMEPAD_MICE_EXCLUDED "SDL_ROG_GAMEPAD_MICE_EXCLUDED" + +/** + * A variable controlling which Dispmanx layer to use on a Raspberry PI. + * + * Also known as Z-order. The variable can take a negative or positive value. + * The default is 10000. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RPI_VIDEO_LAYER "SDL_RPI_VIDEO_LAYER" + +/** + * Specify an "activity name" for screensaver inhibition. + * + * Some platforms, notably Linux desktops, list the applications which are + * inhibiting the screensaver or other power-saving features. + * + * This hint lets you specify the "activity name" sent to the OS when + * SDL_DisableScreenSaver() is used (or the screensaver is automatically + * disabled). The contents of this hint are used when the screensaver is + * disabled. You should use a string that describes what your program is doing + * (and, therefore, why the screensaver is disabled). For example, "Playing a + * game" or "Watching a video". + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default: "Playing a game" or something similar. + * + * This hint should be set before calling SDL_DisableScreenSaver() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_SCREENSAVER_INHIBIT_ACTIVITY_NAME "SDL_SCREENSAVER_INHIBIT_ACTIVITY_NAME" + +/** + * A variable controlling whether SDL calls dbus_shutdown() on quit. + * + * This is useful as a debug tool to validate memory leaks, but shouldn't ever + * be set in production applications, as other libraries used by the + * application might use dbus under the hood and this can cause crashes if + * they continue after SDL_Quit(). + * + * The variable can be set to the following values: + * + * - "0": SDL will not call dbus_shutdown() on quit. (default) + * - "1": SDL will call dbus_shutdown() on quit. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_SHUTDOWN_DBUS_ON_QUIT "SDL_SHUTDOWN_DBUS_ON_QUIT" + +/** + * A variable that specifies a backend to use for title storage. + * + * By default, SDL will try all available storage backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target, such as "pc" if, say, you are on Steam but + * want to avoid SteamRemoteStorage for title data. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_STORAGE_TITLE_DRIVER "SDL_STORAGE_TITLE_DRIVER" + +/** + * A variable that specifies a backend to use for user storage. + * + * By default, SDL will try all available storage backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target, such as "pc" if, say, you are on Steam but + * want to avoid SteamRemoteStorage for user data. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_STORAGE_USER_DRIVER "SDL_STORAGE_USER_DRIVER" + +/** + * Specifies whether SDL_THREAD_PRIORITY_TIME_CRITICAL should be treated as + * realtime. + * + * On some platforms, like Linux, a realtime priority thread may be subject to + * restrictions that require special handling by the application. This hint + * exists to let SDL know that the app is prepared to handle said + * restrictions. + * + * On Linux, SDL will apply the following configuration to any thread that + * becomes realtime: + * + * - The SCHED_RESET_ON_FORK bit will be set on the scheduling policy, + * - An RLIMIT_RTTIME budget will be configured to the rtkit specified limit. + * - Exceeding this limit will result in the kernel sending SIGKILL to the + * app, refer to the man pages for more information. + * + * The variable can be set to the following values: + * + * - "0": default platform specific behaviour + * - "1": Force SDL_THREAD_PRIORITY_TIME_CRITICAL to a realtime scheduling + * policy + * + * This hint should be set before calling SDL_SetCurrentThreadPriority() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_THREAD_FORCE_REALTIME_TIME_CRITICAL "SDL_THREAD_FORCE_REALTIME_TIME_CRITICAL" + +/** + * A string specifying additional information to use with + * SDL_SetCurrentThreadPriority. + * + * By default SDL_SetCurrentThreadPriority will make appropriate system + * changes in order to apply a thread priority. For example on systems using + * pthreads the scheduler policy is changed automatically to a policy that + * works well with a given priority. Code which has specific requirements can + * override SDL's default behavior with this hint. + * + * pthread hint values are "current", "other", "fifo" and "rr". Currently no + * other platform hint values are defined but may be in the future. + * + * On Linux, the kernel may send SIGKILL to realtime tasks which exceed the + * distro configured execution budget for rtkit. This budget can be queried + * through RLIMIT_RTTIME after calling SDL_SetCurrentThreadPriority(). + * + * This hint should be set before calling SDL_SetCurrentThreadPriority() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_THREAD_PRIORITY_POLICY "SDL_THREAD_PRIORITY_POLICY" + +/** + * A variable that controls the timer resolution, in milliseconds. + * + * The higher resolution the timer, the more frequently the CPU services timer + * interrupts, and the more precise delays are, but this takes up power and + * CPU time. This hint is only used on Windows. + * + * See this blog post for more information: + * http://randomascii.wordpress.com/2013/07/08/windows-timer-resolution-megawatts-wasted/ + * + * The default value is "1". + * + * If this variable is set to "0", the system timer resolution is not set. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TIMER_RESOLUTION "SDL_TIMER_RESOLUTION" + +/** + * A variable controlling whether touch events should generate synthetic mouse + * events. + * + * The variable can be set to the following values: + * + * - "0": Touch events will not generate mouse events. + * - "1": Touch events will generate mouse events. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TOUCH_MOUSE_EVENTS "SDL_TOUCH_MOUSE_EVENTS" + +/** + * A variable controlling whether trackpads should be treated as touch + * devices. + * + * On macOS (and possibly other platforms in the future), SDL will report + * touches on a trackpad as mouse input, which is generally what users expect + * from this device; however, these are often actually full multitouch-capable + * touch devices, so it might be preferable to some apps to treat them as + * such. + * + * The variable can be set to the following values: + * + * - "0": Trackpad will send mouse events. (default) + * - "1": Trackpad will send touch events. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TRACKPAD_IS_TOUCH_ONLY "SDL_TRACKPAD_IS_TOUCH_ONLY" + +/** + * A variable controlling whether the Android / tvOS remotes should be listed + * as joystick devices, instead of sending keyboard events. + * + * The variable can be set to the following values: + * + * - "0": Remotes send enter/escape/arrow key events. + * - "1": Remotes are available as 2 axis, 2 button joysticks. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TV_REMOTE_AS_JOYSTICK "SDL_TV_REMOTE_AS_JOYSTICK" + +/** + * A variable controlling whether the screensaver is enabled. + * + * The variable can be set to the following values: + * + * - "0": Disable screensaver. (default) + * - "1": Enable screensaver. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_ALLOW_SCREENSAVER "SDL_VIDEO_ALLOW_SCREENSAVER" + +/** + * A comma separated list containing the names of the displays that SDL should + * sort to the front of the display list. + * + * When this hint is set, displays with matching name strings will be + * prioritized in the list of displays, as exposed by calling + * SDL_GetDisplays(), with the first listed becoming the primary display. The + * naming convention can vary depending on the environment, but it is usually + * a connector name (e.g. 'DP-1', 'DP-2', 'HDMI-A-1',etc...). + * + * On Wayland and X11 desktops, the connector names associated with displays + * can typically be found by using the `xrandr` utility. + * + * This hint is currently supported on the following drivers: + * + * - KMSDRM (kmsdrm) + * - Wayland (wayland) + * - X11 (x11) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DISPLAY_PRIORITY "SDL_VIDEO_DISPLAY_PRIORITY" + +/** + * Tell the video driver that we only want a double buffer. + * + * By default, most lowlevel 2D APIs will use a triple buffer scheme that + * wastes no CPU time on waiting for vsync after issuing a flip, but + * introduces a frame of latency. On the other hand, using a double buffer + * scheme instead is recommended for cases where low latency is an important + * factor because we save a whole frame of latency. + * + * We do so by waiting for vsync immediately after issuing a flip, usually + * just after eglSwapBuffers call in the backend's *_SwapWindow function. + * + * This hint is currently supported on the following drivers: + * + * - Raspberry Pi (raspberrypi) + * - Wayland (wayland) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DOUBLE_BUFFER "SDL_VIDEO_DOUBLE_BUFFER" + +/** + * A variable that specifies a video backend to use. + * + * By default, SDL will try all available video backends in a reasonable order + * until it finds one that can work, but this hint allows the app or user to + * force a specific target, such as "x11" if, say, you are on Wayland but want + * to try talking to the X server instead. + * + * This hint accepts a comma-separated list of driver names, and each will be + * tried in the order listed during init, until one succeeds or all of them + * fail. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DRIVER "SDL_VIDEO_DRIVER" + +/** + * A variable controlling whether the dummy video driver saves output frames. + * + * - "0": Video frames are not saved to disk. (default) + * - "1": Video frames are saved to files in the format "SDL_windowX-Y.bmp", + * where X is the window ID, and Y is the frame number. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DUMMY_SAVE_FRAMES "SDL_VIDEO_DUMMY_SAVE_FRAMES" + +/** + * If eglGetPlatformDisplay fails, fall back to calling eglGetDisplay. + * + * The variable can be set to one of the following values: + * + * - "0": Do not fall back to eglGetDisplay. + * - "1": Fall back to eglGetDisplay if eglGetPlatformDisplay fails. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_EGL_ALLOW_GETDISPLAY_FALLBACK "SDL_VIDEO_EGL_ALLOW_GETDISPLAY_FALLBACK" + +/** + * A variable controlling whether the OpenGL context should be created with + * EGL. + * + * The variable can be set to the following values: + * + * - "0": Use platform-specific GL context creation API (GLX, WGL, CGL, etc). + * (default) + * - "1": Use EGL + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_FORCE_EGL "SDL_VIDEO_FORCE_EGL" + +/** + * A variable that specifies the policy for fullscreen Spaces on macOS. + * + * The variable can be set to the following values: + * + * - "0": Disable Spaces support (FULLSCREEN_DESKTOP won't use them and + * SDL_WINDOW_RESIZABLE windows won't offer the "fullscreen" button on their + * titlebars). + * - "1": Enable Spaces support (FULLSCREEN_DESKTOP will use them and + * SDL_WINDOW_RESIZABLE windows will offer the "fullscreen" button on their + * titlebars). (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_MAC_FULLSCREEN_SPACES "SDL_VIDEO_MAC_FULLSCREEN_SPACES" + +/** + * A variable that specifies the menu visibility when a window is fullscreen + * in Spaces on macOS. + * + * The variable can be set to the following values: + * + * - "0": The menu will be hidden when the window is in a fullscreen space, + * and not accessible by moving the mouse to the top of the screen. + * - "1": The menu will be accessible when the window is in a fullscreen + * space. + * - "auto": The menu will be hidden if fullscreen mode was toggled on + * programmatically via `SDL_SetWindowFullscreen()`, and accessible if + * fullscreen was entered via the "fullscreen" button on the window title + * bar. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_MAC_FULLSCREEN_MENU_VISIBILITY "SDL_VIDEO_MAC_FULLSCREEN_MENU_VISIBILITY" + +/** + * A variable controlling whether fullscreen windows are minimized when they + * lose focus. + * + * The variable can be set to the following values: + * + * - "0": Fullscreen windows will not be minimized when they lose focus. + * (default) + * - "1": Fullscreen windows are minimized when they lose focus. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS "SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS" + +/** + * A variable controlling whether the offscreen video driver saves output + * frames. + * + * This only saves frames that are generated using software rendering, not + * accelerated OpenGL rendering. + * + * - "0": Video frames are not saved to disk. (default) + * - "1": Video frames are saved to files in the format "SDL_windowX-Y.bmp", + * where X is the window ID, and Y is the frame number. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_OFFSCREEN_SAVE_FRAMES "SDL_VIDEO_OFFSCREEN_SAVE_FRAMES" + +/** + * A variable controlling whether all window operations will block until + * complete. + * + * Window systems that run asynchronously may not have the results of window + * operations that resize or move the window applied immediately upon the + * return of the requesting function. Setting this hint will cause such + * operations to block after every call until the pending operation has + * completed. Setting this to '1' is the equivalent of calling + * SDL_SyncWindow() after every function call. + * + * Be aware that amount of time spent blocking while waiting for window + * operations to complete can be quite lengthy, as animations may have to + * complete, which can take upwards of multiple seconds in some cases. + * + * The variable can be set to the following values: + * + * - "0": Window operations are non-blocking. (default) + * - "1": Window operations will block until completed. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_SYNC_WINDOW_OPERATIONS "SDL_VIDEO_SYNC_WINDOW_OPERATIONS" + +/** + * A variable controlling whether the libdecor Wayland backend is allowed to + * be used. + * + * libdecor is used over xdg-shell when xdg-decoration protocol is + * unavailable. + * + * The variable can be set to the following values: + * + * - "0": libdecor use is disabled. + * - "1": libdecor use is enabled. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_ALLOW_LIBDECOR "SDL_VIDEO_WAYLAND_ALLOW_LIBDECOR" + +/** + * A variable controlling whether video mode emulation is enabled under + * Wayland. + * + * When this hint is set, a standard set of emulated CVT video modes will be + * exposed for use by the application. If it is disabled, the only modes + * exposed will be the logical desktop size and, in the case of a scaled + * desktop, the native display resolution. + * + * The variable can be set to the following values: + * + * - "0": Video mode emulation is disabled. + * - "1": Video mode emulation is enabled. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_MODE_EMULATION "SDL_VIDEO_WAYLAND_MODE_EMULATION" + +/** + * A variable controlling how modes with a non-native aspect ratio are + * displayed under Wayland. + * + * When this hint is set, the requested scaling will be used when displaying + * fullscreen video modes that don't match the display's native aspect ratio. + * This is contingent on compositor viewport support. + * + * The variable can be set to the following values: + * + * - "aspect" - Video modes will be displayed scaled, in their proper aspect + * ratio, with black bars. + * - "stretch" - Video modes will be scaled to fill the entire display. + * (default) + * - "none" - Video modes will be displayed as 1:1 with no scaling. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_MODE_SCALING "SDL_VIDEO_WAYLAND_MODE_SCALING" + +/** + * A variable controlling whether the libdecor Wayland backend is preferred + * over native decorations. + * + * When this hint is set, libdecor will be used to provide window decorations, + * even if xdg-decoration is available. (Note that, by default, libdecor will + * use xdg-decoration itself if available). + * + * The variable can be set to the following values: + * + * - "0": libdecor is enabled only if server-side decorations are unavailable. + * (default) + * - "1": libdecor is always enabled if available. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_PREFER_LIBDECOR "SDL_VIDEO_WAYLAND_PREFER_LIBDECOR" + +/** + * A variable forcing non-DPI-aware Wayland windows to output at 1:1 scaling. + * + * This must be set before initializing the video subsystem. + * + * When this hint is set, Wayland windows that are not flagged as being + * DPI-aware will be output with scaling designed to force 1:1 pixel mapping. + * + * This is intended to allow legacy applications to be displayed without + * desktop scaling being applied, and has issues with certain display + * configurations, as this forces the window to behave in a way that Wayland + * desktops were not designed to accommodate: + * + * - Rounding errors can result with odd window sizes and/or desktop scales, + * which can cause the window contents to appear slightly blurry. + * - Positioning the window may be imprecise due to unit conversions and + * rounding. + * - The window may be unusably small on scaled desktops. + * - The window may jump in size when moving between displays of different + * scale factors. + * - Displays may appear to overlap when using a multi-monitor setup with + * scaling enabled. + * - Possible loss of cursor precision due to the logical size of the window + * being reduced. + * + * New applications should be designed with proper DPI awareness handling + * instead of enabling this. + * + * The variable can be set to the following values: + * + * - "0": Windows will be scaled normally. + * - "1": Windows will be forced to scale to achieve 1:1 output. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_SCALE_TO_DISPLAY "SDL_VIDEO_WAYLAND_SCALE_TO_DISPLAY" + +/** + * A variable specifying which shader compiler to preload when using the + * Chrome ANGLE binaries. + * + * SDL has EGL and OpenGL ES2 support on Windows via the ANGLE project. It can + * use two different sets of binaries, those compiled by the user from source + * or those provided by the Chrome browser. In the later case, these binaries + * require that SDL loads a DLL providing the shader compiler. + * + * The variable can be set to the following values: + * + * - "d3dcompiler_46.dll" - best for Vista or later. (default) + * - "d3dcompiler_43.dll" - for XP support. + * - "none" - do not load any library, useful if you compiled ANGLE from + * source and included the compiler in your binaries. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WIN_D3DCOMPILER "SDL_VIDEO_WIN_D3DCOMPILER" + +/** + * A variable controlling whether SDL should call XSelectInput() to enable + * input events on X11 windows wrapped by SDL windows. + * + * The variable can be set to the following values: + * + * - "0": Don't call XSelectInput(), assuming the native window code has done + * it already. + * - "1": Call XSelectInput() to enable input events. (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.10. + */ +#define SDL_HINT_VIDEO_X11_EXTERNAL_WINDOW_INPUT "SDL_VIDEO_X11_EXTERNAL_WINDOW_INPUT" + +/** + * A variable controlling whether the X11 _NET_WM_BYPASS_COMPOSITOR hint + * should be used. + * + * The variable can be set to the following values: + * + * - "0": Disable _NET_WM_BYPASS_COMPOSITOR. + * - "1": Enable _NET_WM_BYPASS_COMPOSITOR. (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR "SDL_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR" + +/** + * A variable controlling whether the X11 _NET_WM_PING protocol should be + * supported. + * + * By default SDL will use _NET_WM_PING, but for applications that know they + * will not always be able to respond to ping requests in a timely manner they + * can turn it off to avoid the window manager thinking the app is hung. + * + * The variable can be set to the following values: + * + * - "0": Disable _NET_WM_PING. + * - "1": Enable _NET_WM_PING. (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_NET_WM_PING "SDL_VIDEO_X11_NET_WM_PING" + +/** + * A variable controlling whether SDL uses DirectColor visuals. + * + * The variable can be set to the following values: + * + * - "0": Disable DirectColor visuals. + * - "1": Enable DirectColor visuals. (default) + * + * This hint should be set before initializing the video subsystem. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_NODIRECTCOLOR "SDL_VIDEO_X11_NODIRECTCOLOR" + +/** + * A variable forcing the content scaling factor for X11 displays. + * + * The variable can be set to a floating point value in the range 1.0-10.0f + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_SCALING_FACTOR "SDL_VIDEO_X11_SCALING_FACTOR" + +/** + * A variable forcing the visual ID used for X11 display modes. + * + * This hint should be set before initializing the video subsystem. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_VISUALID "SDL_VIDEO_X11_VISUALID" + +/** + * A variable forcing the visual ID chosen for new X11 windows. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_WINDOW_VISUALID "SDL_VIDEO_X11_WINDOW_VISUALID" + +/** + * A variable controlling whether the X11 XRandR extension should be used. + * + * The variable can be set to the following values: + * + * - "0": Disable XRandR. + * - "1": Enable XRandR. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_XRANDR "SDL_VIDEO_X11_XRANDR" + +/** + * A variable controlling whether touch should be enabled on the back panel of + * the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "0": Disable touch on the back panel. + * - "1": Enable touch on the back panel. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_ENABLE_BACK_TOUCH "SDL_VITA_ENABLE_BACK_TOUCH" + +/** + * A variable controlling whether touch should be enabled on the front panel + * of the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "0": Disable touch on the front panel. + * - "1": Enable touch on the front panel. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_ENABLE_FRONT_TOUCH "SDL_VITA_ENABLE_FRONT_TOUCH" + +/** + * A variable controlling the module path on the PlayStation Vita. + * + * This hint defaults to "app0:module" + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_MODULE_PATH "SDL_VITA_MODULE_PATH" + +/** + * A variable controlling whether to perform PVR initialization on the + * PlayStation Vita. + * + * - "0": Skip PVR initialization. + * - "1": Perform the normal PVR initialization. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_PVR_INIT "SDL_VITA_PVR_INIT" + +/** + * A variable overriding the resolution reported on the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "544": 544p (default) + * - "720": 725p for PSTV + * - "1080": 1088i for PSTV + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_RESOLUTION "SDL_VITA_RESOLUTION" + +/** + * A variable controlling whether OpenGL should be used instead of OpenGL ES + * on the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "0": Use OpenGL ES. (default) + * - "1": Use OpenGL. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_PVR_OPENGL "SDL_VITA_PVR_OPENGL" + +/** + * A variable controlling which touchpad should generate synthetic mouse + * events. + * + * The variable can be set to the following values: + * + * - "0": Only front touchpad should generate mouse events. (default) + * - "1": Only back touchpad should generate mouse events. + * - "2": Both touchpads should generate mouse events. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_TOUCH_MOUSE_DEVICE "SDL_VITA_TOUCH_MOUSE_DEVICE" + +/** + * A variable overriding the display index used in SDL_Vulkan_CreateSurface() + * + * The display index starts at 0, which is the default. + * + * This hint should be set before calling SDL_Vulkan_CreateSurface() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VULKAN_DISPLAY "SDL_VULKAN_DISPLAY" + +/** + * Specify the Vulkan library to load. + * + * This hint should be set before creating a Vulkan window or calling + * SDL_Vulkan_LoadLibrary(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VULKAN_LIBRARY "SDL_VULKAN_LIBRARY" + +/** + * A variable controlling how the fact chunk affects the loading of a WAVE + * file. + * + * The fact chunk stores information about the number of samples of a WAVE + * file. The Standards Update from Microsoft notes that this value can be used + * to 'determine the length of the data in seconds'. This is especially useful + * for compressed formats (for which this is a mandatory chunk) if they + * produce multiple sample frames per block and truncating the block is not + * allowed. The fact chunk can exactly specify how many sample frames there + * should be in this case. + * + * Unfortunately, most application seem to ignore the fact chunk and so SDL + * ignores it by default as well. + * + * The variable can be set to the following values: + * + * - "truncate" - Use the number of samples to truncate the wave data if the + * fact chunk is present and valid. + * - "strict" - Like "truncate", but raise an error if the fact chunk is + * invalid, not present for non-PCM formats, or if the data chunk doesn't + * have that many samples. + * - "ignorezero" - Like "truncate", but ignore fact chunk if the number of + * samples is zero. + * - "ignore" - Ignore fact chunk entirely. (default) + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_FACT_CHUNK "SDL_WAVE_FACT_CHUNK" + +/** + * A variable controlling the maximum number of chunks in a WAVE file. + * + * This sets an upper bound on the number of chunks in a WAVE file to avoid + * wasting time on malformed or corrupt WAVE files. This defaults to "10000". + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_CHUNK_LIMIT "SDL_WAVE_CHUNK_LIMIT" + +/** + * A variable controlling how the size of the RIFF chunk affects the loading + * of a WAVE file. + * + * The size of the RIFF chunk (which includes all the sub-chunks of the WAVE + * file) is not always reliable. In case the size is wrong, it's possible to + * just ignore it and step through the chunks until a fixed limit is reached. + * + * Note that files that have trailing data unrelated to the WAVE file or + * corrupt files may slow down the loading process without a reliable + * boundary. By default, SDL stops after 10000 chunks to prevent wasting time. + * Use SDL_HINT_WAVE_CHUNK_LIMIT to adjust this value. + * + * The variable can be set to the following values: + * + * - "force" - Always use the RIFF chunk size as a boundary for the chunk + * search. + * - "ignorezero" - Like "force", but a zero size searches up to 4 GiB. + * (default) + * - "ignore" - Ignore the RIFF chunk size and always search up to 4 GiB. + * - "maximum" - Search for chunks until the end of file. (not recommended) + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_RIFF_CHUNK_SIZE "SDL_WAVE_RIFF_CHUNK_SIZE" + +/** + * A variable controlling how a truncated WAVE file is handled. + * + * A WAVE file is considered truncated if any of the chunks are incomplete or + * the data chunk size is not a multiple of the block size. By default, SDL + * decodes until the first incomplete block, as most applications seem to do. + * + * The variable can be set to the following values: + * + * - "verystrict" - Raise an error if the file is truncated. + * - "strict" - Like "verystrict", but the size of the RIFF chunk is ignored. + * - "dropframe" - Decode until the first incomplete sample frame. + * - "dropblock" - Decode until the first incomplete block. (default) + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_TRUNCATION "SDL_WAVE_TRUNCATION" + +/** + * A variable controlling whether the window is activated when the + * SDL_RaiseWindow function is called. + * + * The variable can be set to the following values: + * + * - "0": The window is not activated when the SDL_RaiseWindow function is + * called. + * - "1": The window is activated when the SDL_RaiseWindow function is called. + * (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_ACTIVATE_WHEN_RAISED "SDL_WINDOW_ACTIVATE_WHEN_RAISED" + +/** + * A variable controlling whether the window is activated when the + * SDL_ShowWindow function is called. + * + * The variable can be set to the following values: + * + * - "0": The window is not activated when the SDL_ShowWindow function is + * called. + * - "1": The window is activated when the SDL_ShowWindow function is called. + * (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_ACTIVATE_WHEN_SHOWN "SDL_WINDOW_ACTIVATE_WHEN_SHOWN" + +/** + * If set to "0" then never set the top-most flag on an SDL Window even if the + * application requests it. + * + * This is a debugging aid for developers and not expected to be used by end + * users. + * + * The variable can be set to the following values: + * + * - "0": don't allow topmost + * - "1": allow topmost (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_ALLOW_TOPMOST "SDL_WINDOW_ALLOW_TOPMOST" + +/** + * A variable controlling whether the window frame and title bar are + * interactive when the cursor is hidden. + * + * The variable can be set to the following values: + * + * - "0": The window frame is not interactive when the cursor is hidden (no + * move, resize, etc). + * - "1": The window frame is interactive when the cursor is hidden. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN "SDL_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN" + +/** + * A variable controlling whether SDL generates window-close events for Alt+F4 + * on Windows. + * + * The variable can be set to the following values: + * + * - "0": SDL will only do normal key handling for Alt+F4. + * - "1": SDL will generate a window-close event when it sees Alt+F4. + * (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_CLOSE_ON_ALT_F4 "SDL_WINDOWS_CLOSE_ON_ALT_F4" + +/** + * A variable controlling whether menus can be opened with their keyboard + * shortcut (Alt+mnemonic). + * + * If the mnemonics are enabled, then menus can be opened by pressing the Alt + * key and the corresponding mnemonic (for example, Alt+F opens the File + * menu). However, in case an invalid mnemonic is pressed, Windows makes an + * audible beep to convey that nothing happened. This is true even if the + * window has no menu at all! + * + * Because most SDL applications don't have menus, and some want to use the + * Alt key for other purposes, SDL disables mnemonics (and the beeping) by + * default. + * + * Note: This also affects keyboard events: with mnemonics enabled, when a + * menu is opened from the keyboard, you will not receive a KEYUP event for + * the mnemonic key, and *might* not receive one for Alt. + * + * The variable can be set to the following values: + * + * - "0": Alt+mnemonic does nothing, no beeping. (default) + * - "1": Alt+mnemonic opens menus, invalid mnemonics produce a beep. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_ENABLE_MENU_MNEMONICS "SDL_WINDOWS_ENABLE_MENU_MNEMONICS" + +/** + * A variable controlling whether the windows message loop is processed by + * SDL. + * + * The variable can be set to the following values: + * + * - "0": The window message loop is not run. + * - "1": The window message loop is processed in SDL_PumpEvents(). (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP "SDL_WINDOWS_ENABLE_MESSAGELOOP" + +/** + * A variable controlling whether GameInput is used for raw keyboard and mouse + * on Windows. + * + * The variable can be set to the following values: + * + * - "0": GameInput is not used for raw keyboard and mouse events. + * - "1": GameInput is used for raw keyboard and mouse events, if available. + * (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_GAMEINPUT "SDL_WINDOWS_GAMEINPUT" + +/** + * A variable controlling whether raw keyboard events are used on Windows. + * + * The variable can be set to the following values: + * + * - "0": The Windows message loop is used for keyboard events. (default) + * - "1": Low latency raw keyboard events are used. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_RAW_KEYBOARD "SDL_WINDOWS_RAW_KEYBOARD" + +/** + * A variable controlling whether SDL uses Kernel Semaphores on Windows. + * + * Kernel Semaphores are inter-process and require a context switch on every + * interaction. On Windows 8 and newer, the WaitOnAddress API is available. + * Using that and atomics to implement semaphores increases performance. SDL + * will fall back to Kernel Objects on older OS versions or if forced to by + * this hint. + * + * The variable can be set to the following values: + * + * - "0": Use Atomics and WaitOnAddress API when available, otherwise fall + * back to Kernel Objects. (default) + * - "1": Force the use of Kernel Objects in all cases. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_FORCE_SEMAPHORE_KERNEL "SDL_WINDOWS_FORCE_SEMAPHORE_KERNEL" + +/** + * A variable to specify custom icon resource id from RC file on Windows + * platform. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_INTRESOURCE_ICON "SDL_WINDOWS_INTRESOURCE_ICON" + +/** + * A variable to specify custom icon resource id from RC file on Windows + * platform. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_INTRESOURCE_ICON_SMALL "SDL_WINDOWS_INTRESOURCE_ICON_SMALL" + +/** + * A variable controlling whether SDL uses the D3D9Ex API introduced in + * Windows Vista, instead of normal D3D9. + * + * Direct3D 9Ex contains changes to state management that can eliminate device + * loss errors during scenarios like Alt+Tab or UAC prompts. D3D9Ex may + * require some changes to your application to cope with the new behavior, so + * this is disabled by default. + * + * For more information on Direct3D 9Ex, see: + * + * - https://docs.microsoft.com/en-us/windows/win32/direct3darticles/graphics-apis-in-windows-vista#direct3d-9ex + * - https://docs.microsoft.com/en-us/windows/win32/direct3darticles/direct3d-9ex-improvements + * + * The variable can be set to the following values: + * + * - "0": Use the original Direct3D 9 API. (default) + * - "1": Use the Direct3D 9Ex API on Vista and later (and fall back if D3D9Ex + * is unavailable) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_USE_D3D9EX "SDL_WINDOWS_USE_D3D9EX" + +/** + * A variable controlling whether SDL will clear the window contents when the + * WM_ERASEBKGND message is received. + * + * The variable can be set to the following values: + * + * - "0"/"never": Never clear the window. + * - "1"/"initial": Clear the window when the first WM_ERASEBKGND event fires. + * (default) + * - "2"/"always": Clear the window on every WM_ERASEBKGND event. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_ERASE_BACKGROUND_MODE "SDL_WINDOWS_ERASE_BACKGROUND_MODE" + +/** + * A variable controlling whether X11 windows are marked as override-redirect. + * + * If set, this _might_ increase framerate at the expense of the desktop not + * working as expected. Override-redirect windows aren't noticed by the window + * manager at all. + * + * You should probably only use this for fullscreen windows, and you probably + * shouldn't even use it for that. But it's here if you want to try! + * + * The variable can be set to the following values: + * + * - "0": Do not mark the window as override-redirect. (default) + * - "1": Mark the window as override-redirect. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_X11_FORCE_OVERRIDE_REDIRECT "SDL_X11_FORCE_OVERRIDE_REDIRECT" + +/** + * A variable specifying the type of an X11 window. + * + * During SDL_CreateWindow, SDL uses the _NET_WM_WINDOW_TYPE X11 property to + * report to the window manager the type of window it wants to create. This + * might be set to various things if SDL_WINDOW_TOOLTIP or + * SDL_WINDOW_POPUP_MENU, etc, were specified. For "normal" windows that + * haven't set a specific type, this hint can be used to specify a custom + * type. For example, a dock window might set this to + * "_NET_WM_WINDOW_TYPE_DOCK". + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_X11_WINDOW_TYPE "SDL_X11_WINDOW_TYPE" + +/** + * Specify the XCB library to load for the X11 driver. + * + * The default is platform-specific, often "libX11-xcb.so.1". + * + * This hint should be set before initializing the video subsystem. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_X11_XCB_LIBRARY "SDL_X11_XCB_LIBRARY" + +/** + * A variable controlling whether XInput should be used for controller + * handling. + * + * The variable can be set to the following values: + * + * - "0": XInput is not enabled. + * - "1": XInput is enabled. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_XINPUT_ENABLED "SDL_XINPUT_ENABLED" + +/** + * A variable controlling response to SDL_assert failures. + * + * The variable can be set to the following case-sensitive values: + * + * - "abort": Program terminates immediately. + * - "break": Program triggers a debugger breakpoint. + * - "retry": Program reruns the SDL_assert's test again. + * - "ignore": Program continues on, ignoring this assertion failure this + * time. + * - "always_ignore": Program continues on, ignoring this assertion failure + * for the rest of the run. + * + * Note that SDL_SetAssertionHandler offers a programmatic means to deal with + * assertion failures through a callback, and this hint is largely intended to + * be used via environment variables by end users and automated tools. + * + * This hint should be set before an assertion failure is triggered and can be + * changed at any time. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ASSERT "SDL_ASSERT" + +/** + * A variable controlling whether pen events should generate synthetic mouse + * events. + * + * The variable can be set to the following values: + * + * - "0": Pen events will not generate mouse events. + * - "1": Pen events will generate mouse events. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_PEN_MOUSE_EVENTS "SDL_PEN_MOUSE_EVENTS" + +/** + * A variable controlling whether pen events should generate synthetic touch + * events. + * + * The variable can be set to the following values: + * + * - "0": Pen events will not generate touch events. + * - "1": Pen events will generate touch events. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_PEN_TOUCH_EVENTS "SDL_PEN_TOUCH_EVENTS" + + +/** + * An enumeration of hint priorities. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_HintPriority +{ + SDL_HINT_DEFAULT, + SDL_HINT_NORMAL, + SDL_HINT_OVERRIDE +} SDL_HintPriority; + +/** + * Set a hint with a specific priority. + * + * The priority controls the behavior when setting a hint that already has a + * value. Hints will replace existing hints of their priority and lower. + * Environment variables are considered to have override priority. + * + * \param name the hint to set. + * \param value the value of the hint variable. + * \param priority the SDL_HintPriority level for the hint. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHint + * \sa SDL_ResetHint + * \sa SDL_SetHint + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHintWithPriority(const char *name, const char *value, SDL_HintPriority priority); + +/** + * Set a hint with normal priority. + * + * Hints will not be set if there is an existing override hint or environment + * variable that takes precedence. You can use SDL_SetHintWithPriority() to + * set the hint with override priority instead. + * + * \param name the hint to set. + * \param value the value of the hint variable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHint + * \sa SDL_ResetHint + * \sa SDL_SetHintWithPriority + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHint(const char *name, const char *value); + +/** + * Reset a hint to the default value. + * + * This will reset a hint to the value of the environment variable, or NULL if + * the environment isn't set. Callbacks will be called normally with this + * change. + * + * \param name the hint to set. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetHint + * \sa SDL_ResetHints + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResetHint(const char *name); + +/** + * Reset all hints to the default values. + * + * This will reset all hints to the value of the associated environment + * variable, or NULL if the environment isn't set. Callbacks will be called + * normally with this change. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResetHint + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetHints(void); + +/** + * Get the value of a hint. + * + * \param name the hint to query. + * \returns the string value of a hint or NULL if the hint isn't set. + * + * \threadsafety It is safe to call this function from any thread, however the + * return value only remains valid until the hint is changed; if + * another thread might do so, the app should supply locks + * and/or make a copy of the string. Note that using a hint + * callback instead is always thread-safe, as SDL holds a lock + * on the thread subsystem during the callback. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetHint + * \sa SDL_SetHintWithPriority + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetHint(const char *name); + +/** + * Get the boolean value of a hint variable. + * + * \param name the name of the hint to get the boolean value from. + * \param default_value the value to return if the hint does not exist. + * \returns the boolean value of a hint or the provided default value if the + * hint does not exist. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHint + * \sa SDL_SetHint + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetHintBoolean(const char *name, bool default_value); + +/** + * A callback used to send notifications of hint value changes. + * + * This is called an initial time during SDL_AddHintCallback with the hint's + * current value, and then again each time the hint's value changes. + * + * \param userdata what was passed as `userdata` to SDL_AddHintCallback(). + * \param name what was passed as `name` to SDL_AddHintCallback(). + * \param oldValue the previous hint value. + * \param newValue the new value hint is to be set to. + * + * \threadsafety This callback is fired from whatever thread is setting a new + * hint value. SDL holds a lock on the hint subsystem when + * calling this callback. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_AddHintCallback + */ +typedef void(SDLCALL *SDL_HintCallback)(void *userdata, const char *name, const char *oldValue, const char *newValue); + +/** + * Add a function to watch a particular hint. + * + * The callback function is called _during_ this function, to provide it an + * initial value, and again each time the hint's value changes. + * + * \param name the hint to watch. + * \param callback An SDL_HintCallback function that will be called when the + * hint value changes. + * \param userdata a pointer to pass to the callback function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveHintCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddHintCallback(const char *name, SDL_HintCallback callback, void *userdata); + +/** + * Remove a function watching a particular hint. + * + * \param name the hint being watched. + * \param callback an SDL_HintCallback function that will be called when the + * hint value changes. + * \param userdata a pointer being passed to the callback function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddHintCallback + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveHintCallback(const char *name, + SDL_HintCallback callback, + void *userdata); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_hints_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_init.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_init.h new file mode 100644 index 0000000..27ebe4b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_init.h @@ -0,0 +1,497 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryInit + * + * All SDL programs need to initialize the library before starting to work + * with it. + * + * Almost everything can simply call SDL_Init() near startup, with a handful + * of flags to specify subsystems to touch. These are here to make sure SDL + * does not even attempt to touch low-level pieces of the operating system + * that you don't intend to use. For example, you might be using SDL for video + * and input but chose an external library for audio, and in this case you + * would just need to leave off the `SDL_INIT_AUDIO` flag to make sure that + * external library has complete control. + * + * Most apps, when terminating, should call SDL_Quit(). This will clean up + * (nearly) everything that SDL might have allocated, and crucially, it'll + * make sure that the display's resolution is back to what the user expects if + * you had previously changed it for your game. + * + * SDL3 apps are strongly encouraged to call SDL_SetAppMetadata() at startup + * to fill in details about the program. This is completely optional, but it + * helps in small ways (we can provide an About dialog box for the macOS menu, + * we can name the app in the system's audio mixer, etc). Those that want to + * provide a _lot_ of information should look at the more-detailed + * SDL_SetAppMetadataProperty(). + */ + +#ifndef SDL_init_h_ +#define SDL_init_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* As of version 0.5, SDL is loaded dynamically into the application */ + +/** + * Initialization flags for SDL_Init and/or SDL_InitSubSystem + * + * These are the flags which may be passed to SDL_Init(). You should specify + * the subsystems which you will be using in your application. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_Quit + * \sa SDL_InitSubSystem + * \sa SDL_QuitSubSystem + * \sa SDL_WasInit + */ +typedef Uint32 SDL_InitFlags; + +#define SDL_INIT_AUDIO 0x00000010u /**< `SDL_INIT_AUDIO` implies `SDL_INIT_EVENTS` */ +#define SDL_INIT_VIDEO 0x00000020u /**< `SDL_INIT_VIDEO` implies `SDL_INIT_EVENTS`, should be initialized on the main thread */ +#define SDL_INIT_JOYSTICK 0x00000200u /**< `SDL_INIT_JOYSTICK` implies `SDL_INIT_EVENTS` */ +#define SDL_INIT_HAPTIC 0x00001000u +#define SDL_INIT_GAMEPAD 0x00002000u /**< `SDL_INIT_GAMEPAD` implies `SDL_INIT_JOYSTICK` */ +#define SDL_INIT_EVENTS 0x00004000u +#define SDL_INIT_SENSOR 0x00008000u /**< `SDL_INIT_SENSOR` implies `SDL_INIT_EVENTS` */ +#define SDL_INIT_CAMERA 0x00010000u /**< `SDL_INIT_CAMERA` implies `SDL_INIT_EVENTS` */ + +/** + * Return values for optional main callbacks. + * + * Returning SDL_APP_SUCCESS or SDL_APP_FAILURE from SDL_AppInit, + * SDL_AppEvent, or SDL_AppIterate will terminate the program and report + * success/failure to the operating system. What that means is + * platform-dependent. On Unix, for example, on success, the process error + * code will be zero, and on failure it will be 1. This interface doesn't + * allow you to return specific exit codes, just whether there was an error + * generally or not. + * + * Returning SDL_APP_CONTINUE from these functions will let the app continue + * to run. + * + * See + * [Main callbacks in SDL3](https://wiki.libsdl.org/SDL3/README/main-functions#main-callbacks-in-sdl3) + * for complete details. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AppResult +{ + SDL_APP_CONTINUE, /**< Value that requests that the app continue from the main callbacks. */ + SDL_APP_SUCCESS, /**< Value that requests termination with success from the main callbacks. */ + SDL_APP_FAILURE /**< Value that requests termination with error from the main callbacks. */ +} SDL_AppResult; + +/** + * Function pointer typedef for SDL_AppInit. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppInit directly. + * + * \param appstate a place where the app can optionally store a pointer for + * future use. + * \param argc the standard ANSI C main's argc; number of elements in `argv`. + * \param argv the standard ANSI C main's argv; array of command line + * arguments. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AppResult (SDLCALL *SDL_AppInit_func)(void **appstate, int argc, char *argv[]); + +/** + * Function pointer typedef for SDL_AppIterate. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppIterate directly. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AppResult (SDLCALL *SDL_AppIterate_func)(void *appstate); + +/** + * Function pointer typedef for SDL_AppEvent. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppEvent directly. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param event the new event for the app to examine. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AppResult (SDLCALL *SDL_AppEvent_func)(void *appstate, SDL_Event *event); + +/** + * Function pointer typedef for SDL_AppQuit. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppEvent directly. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param result the result code that terminated the app (success or failure). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void (SDLCALL *SDL_AppQuit_func)(void *appstate, SDL_AppResult result); + + +/** + * Initialize the SDL library. + * + * SDL_Init() simply forwards to calling SDL_InitSubSystem(). Therefore, the + * two may be used interchangeably. Though for readability of your code + * SDL_InitSubSystem() might be preferred. + * + * The file I/O (for example: SDL_IOFromFile) and threading (SDL_CreateThread) + * subsystems are initialized by default. Message boxes + * (SDL_ShowSimpleMessageBox) also attempt to work without initializing the + * video subsystem, in hopes of being useful in showing an error dialog when + * SDL_Init fails. You must specifically initialize other subsystems if you + * use them in your application. + * + * Logging (such as SDL_Log) works without initialization, too. + * + * `flags` may be any of the following OR'd together: + * + * - `SDL_INIT_AUDIO`: audio subsystem; automatically initializes the events + * subsystem + * - `SDL_INIT_VIDEO`: video subsystem; automatically initializes the events + * subsystem, should be initialized on the main thread. + * - `SDL_INIT_JOYSTICK`: joystick subsystem; automatically initializes the + * events subsystem + * - `SDL_INIT_HAPTIC`: haptic (force feedback) subsystem + * - `SDL_INIT_GAMEPAD`: gamepad subsystem; automatically initializes the + * joystick subsystem + * - `SDL_INIT_EVENTS`: events subsystem + * - `SDL_INIT_SENSOR`: sensor subsystem; automatically initializes the events + * subsystem + * - `SDL_INIT_CAMERA`: camera subsystem; automatically initializes the events + * subsystem + * + * Subsystem initialization is ref-counted, you must call SDL_QuitSubSystem() + * for each SDL_InitSubSystem() to correctly shutdown a subsystem manually (or + * call SDL_Quit() to force shutdown). If a subsystem is already loaded then + * this call will increase the ref-count and return. + * + * Consider reporting some basic metadata about your application before + * calling SDL_Init, using either SDL_SetAppMetadata() or + * SDL_SetAppMetadataProperty(). + * + * \param flags subsystem initialization flags. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAppMetadata + * \sa SDL_SetAppMetadataProperty + * \sa SDL_InitSubSystem + * \sa SDL_Quit + * \sa SDL_SetMainReady + * \sa SDL_WasInit + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Init(SDL_InitFlags flags); + +/** + * Compatibility function to initialize the SDL library. + * + * This function and SDL_Init() are interchangeable. + * + * \param flags any of the flags used by SDL_Init(); see SDL_Init for details. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_Quit + * \sa SDL_QuitSubSystem + */ +extern SDL_DECLSPEC bool SDLCALL SDL_InitSubSystem(SDL_InitFlags flags); + +/** + * Shut down specific SDL subsystems. + * + * You still need to call SDL_Quit() even if you close all open subsystems + * with SDL_QuitSubSystem(). + * + * \param flags any of the flags used by SDL_Init(); see SDL_Init for details. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InitSubSystem + * \sa SDL_Quit + */ +extern SDL_DECLSPEC void SDLCALL SDL_QuitSubSystem(SDL_InitFlags flags); + +/** + * Get a mask of the specified subsystems which are currently initialized. + * + * \param flags any of the flags used by SDL_Init(); see SDL_Init for details. + * \returns a mask of all initialized subsystems if `flags` is 0, otherwise it + * returns the initialization status of the specified subsystems. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_InitSubSystem + */ +extern SDL_DECLSPEC SDL_InitFlags SDLCALL SDL_WasInit(SDL_InitFlags flags); + +/** + * Clean up all initialized subsystems. + * + * You should call this function even if you have already shutdown each + * initialized subsystem with SDL_QuitSubSystem(). It is safe to call this + * function even in the case of errors in initialization. + * + * You can use this function with atexit() to ensure that it is run when your + * application is shutdown, but it is not wise to do this from a library or + * other dynamically loaded code. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_QuitSubSystem + */ +extern SDL_DECLSPEC void SDLCALL SDL_Quit(void); + +/** + * Return whether this is the main thread. + * + * On Apple platforms, the main thread is the thread that runs your program's + * main() entry point. On other platforms, the main thread is the one that + * calls SDL_Init(SDL_INIT_VIDEO), which should usually be the one that runs + * your program's main() entry point. If you are using the main callbacks, + * SDL_AppInit(), SDL_AppIterate(), and SDL_AppQuit() are all called on the + * main thread. + * + * \returns true if this thread is the main thread, or false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RunOnMainThread + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsMainThread(void); + +/** + * Callback run on the main thread. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_RunOnMainThread + */ +typedef void (SDLCALL *SDL_MainThreadCallback)(void *userdata); + +/** + * Call a function on the main thread during event processing. + * + * If this is called on the main thread, the callback is executed immediately. + * If this is called on another thread, this callback is queued for execution + * on the main thread during event processing. + * + * Be careful of deadlocks when using this functionality. You should not have + * the main thread wait for the current thread while this function is being + * called with `wait_complete` true. + * + * \param callback the callback to call on the main thread. + * \param userdata a pointer that is passed to `callback`. + * \param wait_complete true to wait for the callback to complete, false to + * return immediately. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IsMainThread + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RunOnMainThread(SDL_MainThreadCallback callback, void *userdata, bool wait_complete); + +/** + * Specify basic metadata about your app. + * + * You can optionally provide metadata about your app to SDL. This is not + * required, but strongly encouraged. + * + * There are several locations where SDL can make use of metadata (an "About" + * box in the macOS menu bar, the name of the app can be shown on some audio + * mixers, etc). Any piece of metadata can be left as NULL, if a specific + * detail doesn't make sense for the app. + * + * This function should be called as early as possible, before SDL_Init. + * Multiple calls to this function are allowed, but various state might not + * change once it has been set up with a previous call to this function. + * + * Passing a NULL removes any previous metadata. + * + * This is a simplified interface for the most important information. You can + * supply significantly more detailed metadata with + * SDL_SetAppMetadataProperty(). + * + * \param appname The name of the application ("My Game 2: Bad Guy's + * Revenge!"). + * \param appversion The version of the application ("1.0.0beta5" or a git + * hash, or whatever makes sense). + * \param appidentifier A unique string in reverse-domain format that + * identifies this app ("com.example.mygame2"). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAppMetadataProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAppMetadata(const char *appname, const char *appversion, const char *appidentifier); + +/** + * Specify metadata about your app through a set of properties. + * + * You can optionally provide metadata about your app to SDL. This is not + * required, but strongly encouraged. + * + * There are several locations where SDL can make use of metadata (an "About" + * box in the macOS menu bar, the name of the app can be shown on some audio + * mixers, etc). Any piece of metadata can be left out, if a specific detail + * doesn't make sense for the app. + * + * This function should be called as early as possible, before SDL_Init. + * Multiple calls to this function are allowed, but various state might not + * change once it has been set up with a previous call to this function. + * + * Once set, this metadata can be read using SDL_GetAppMetadataProperty(). + * + * These are the supported properties: + * + * - `SDL_PROP_APP_METADATA_NAME_STRING`: The human-readable name of the + * application, like "My Game 2: Bad Guy's Revenge!". This will show up + * anywhere the OS shows the name of the application separately from window + * titles, such as volume control applets, etc. This defaults to "SDL + * Application". + * - `SDL_PROP_APP_METADATA_VERSION_STRING`: The version of the app that is + * running; there are no rules on format, so "1.0.3beta2" and "April 22nd, + * 2024" and a git hash are all valid options. This has no default. + * - `SDL_PROP_APP_METADATA_IDENTIFIER_STRING`: A unique string that + * identifies this app. This must be in reverse-domain format, like + * "com.example.mygame2". This string is used by desktop compositors to + * identify and group windows together, as well as match applications with + * associated desktop settings and icons. If you plan to package your + * application in a container such as Flatpak, the app ID should match the + * name of your Flatpak container as well. This has no default. + * - `SDL_PROP_APP_METADATA_CREATOR_STRING`: The human-readable name of the + * creator/developer/maker of this app, like "MojoWorkshop, LLC" + * - `SDL_PROP_APP_METADATA_COPYRIGHT_STRING`: The human-readable copyright + * notice, like "Copyright (c) 2024 MojoWorkshop, LLC" or whatnot. Keep this + * to one line, don't paste a copy of a whole software license in here. This + * has no default. + * - `SDL_PROP_APP_METADATA_URL_STRING`: A URL to the app on the web. Maybe a + * product page, or a storefront, or even a GitHub repository, for user's + * further information This has no default. + * - `SDL_PROP_APP_METADATA_TYPE_STRING`: The type of application this is. + * Currently this string can be "game" for a video game, "mediaplayer" for a + * media player, or generically "application" if nothing else applies. + * Future versions of SDL might add new types. This defaults to + * "application". + * + * \param name the name of the metadata property to set. + * \param value the value of the property, or NULL to remove that property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAppMetadataProperty + * \sa SDL_SetAppMetadata + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAppMetadataProperty(const char *name, const char *value); + +#define SDL_PROP_APP_METADATA_NAME_STRING "SDL.app.metadata.name" +#define SDL_PROP_APP_METADATA_VERSION_STRING "SDL.app.metadata.version" +#define SDL_PROP_APP_METADATA_IDENTIFIER_STRING "SDL.app.metadata.identifier" +#define SDL_PROP_APP_METADATA_CREATOR_STRING "SDL.app.metadata.creator" +#define SDL_PROP_APP_METADATA_COPYRIGHT_STRING "SDL.app.metadata.copyright" +#define SDL_PROP_APP_METADATA_URL_STRING "SDL.app.metadata.url" +#define SDL_PROP_APP_METADATA_TYPE_STRING "SDL.app.metadata.type" + +/** + * Get metadata about your app. + * + * This returns metadata previously set using SDL_SetAppMetadata() or + * SDL_SetAppMetadataProperty(). See SDL_SetAppMetadataProperty() for the list + * of available properties and their meanings. + * + * \param name the name of the metadata property to get. + * \returns the current value of the metadata property, or the default if it + * is not set, NULL for properties with no default. + * + * \threadsafety It is safe to call this function from any thread, although + * the string returned is not protected and could potentially be + * freed if you call SDL_SetAppMetadataProperty() to set that + * property from another thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAppMetadata + * \sa SDL_SetAppMetadataProperty + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAppMetadataProperty(const char *name); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_init_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_intrin.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_intrin.h new file mode 100644 index 0000000..bac6d7a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_intrin.h @@ -0,0 +1,407 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Intrinsics */ + +/** + * # CategoryIntrinsics + * + * SDL does some preprocessor gymnastics to determine if any CPU-specific + * compiler intrinsics are available, as this is not necessarily an easy thing + * to calculate, and sometimes depends on quirks of a system, versions of + * build tools, and other external forces. + * + * Apps including SDL's headers will be able to check consistent preprocessor + * definitions to decide if it's safe to use compiler intrinsics for a + * specific CPU architecture. This check only tells you that the compiler is + * capable of using those intrinsics; at runtime, you should still check if + * they are available on the current system with the + * [CPU info functions](https://wiki.libsdl.org/SDL3/CategoryCPUInfo) + * , such as SDL_HasSSE() or SDL_HasNEON(). Otherwise, the process might crash + * for using an unsupported CPU instruction. + * + * SDL only sets preprocessor defines for CPU intrinsics if they are + * supported, so apps should check with `#ifdef` and not `#if`. + * + * SDL will also include the appropriate instruction-set-specific support + * headers, so if SDL decides to define SDL_SSE2_INTRINSICS, it will also + * `#include ` as well. + */ + +#ifndef SDL_intrin_h_ +#define SDL_intrin_h_ + +#include + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Defined if (and only if) the compiler supports Loongarch LSX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LASX_INTRINSICS + */ +#define SDL_LSX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Loongarch LSX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LASX_INTRINSICS + */ +#define SDL_LASX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports ARM NEON intrinsics. + * + * If this macro is defined, SDL will have already included `` + * ``, ``, and ``, as appropriate. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NEON_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports PowerPC Altivec intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ALTIVEC_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel MMX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + */ +#define SDL_MMX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE2 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE2_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE3 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE3_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE4.1 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE4_1_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE4.2 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + */ +#define SDL_SSE4_2_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel AVX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AVX2_INTRINSICS + * \sa SDL_AVX512F_INTRINSICS + */ +#define SDL_AVX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel AVX2 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AVX_INTRINSICS + * \sa SDL_AVX512F_INTRINSICS + */ +#define SDL_AVX2_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel AVX-512F intrinsics. + * + * AVX-512F is also sometimes referred to as "AVX-512 Foundation." + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AVX_INTRINSICS + * \sa SDL_AVX2_INTRINSICS + */ +#define SDL_AVX512F_INTRINSICS 1 +#endif + +/* Need to do this here because intrin.h has C++ code in it */ +/* Visual Studio 2005 has a bug where intrin.h conflicts with winnt.h */ +#if defined(_MSC_VER) && (_MSC_VER >= 1500) && (defined(_M_IX86) || defined(_M_X64)) +#ifdef __clang__ +/* As of Clang 11, '_m_prefetchw' is conflicting with the winnt.h's version, + so we define the needed '_m_prefetch' here as a pseudo-header, until the issue is fixed. */ +#ifndef __PRFCHWINTRIN_H +#define __PRFCHWINTRIN_H +static __inline__ void __attribute__((__always_inline__, __nodebug__)) +_m_prefetch(void *__P) +{ + __builtin_prefetch (__P, 0, 3 /* _MM_HINT_T0 */); +} +#endif /* __PRFCHWINTRIN_H */ +#endif /* __clang__ */ +#include + +#elif defined(__MINGW64_VERSION_MAJOR) +#include +#if defined(__ARM_NEON) && !defined(SDL_DISABLE_NEON) +# define SDL_NEON_INTRINSICS 1 +# include +#endif + +#else +/* altivec.h redefining bool causes a number of problems, see bugs 3993 and 4392, so you need to explicitly define SDL_ENABLE_ALTIVEC to have it included. */ +#if defined(__ALTIVEC__) && defined(SDL_ENABLE_ALTIVEC) +#define SDL_ALTIVEC_INTRINSICS 1 +#include +#endif +#ifndef SDL_DISABLE_NEON +# ifdef __ARM_NEON +# define SDL_NEON_INTRINSICS 1 +# include +# elif defined(SDL_PLATFORM_WINDOWS) +/* Visual Studio doesn't define __ARM_ARCH, but _M_ARM (if set, always 7), and _M_ARM64 (if set, always 1). */ +# ifdef _M_ARM +# define SDL_NEON_INTRINSICS 1 +# include +# include +# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */ +# endif +# if defined (_M_ARM64) +# define SDL_NEON_INTRINSICS 1 +# include +# include +# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */ +# define __ARM_ARCH 8 +# endif +# endif +#endif +#endif /* compiler version */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION +/** + * A macro to decide if the compiler supports `__attribute__((target))`. + * + * Even though this is defined in SDL's public headers, it is generally not + * used directly by apps. Apps should probably just use SDL_TARGETING + * directly, instead. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_TARGETING + */ +#define SDL_HAS_TARGET_ATTRIBS + +#elif defined(__clang__) && defined(__has_attribute) +# if __has_attribute(target) +# define SDL_HAS_TARGET_ATTRIBS +# endif +#elif defined(__GNUC__) && (__GNUC__ + (__GNUC_MINOR__ >= 9) > 4) /* gcc >= 4.9 */ +# define SDL_HAS_TARGET_ATTRIBS +#elif defined(__ICC) && __ICC >= 1600 +# define SDL_HAS_TARGET_ATTRIBS +#endif + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to tag a function as targeting a specific CPU architecture. + * + * This is a hint to the compiler that a function should be built with support + * for a CPU instruction set that might be different than the rest of the + * program. + * + * The particulars of this are explained in the GCC documentation: + * + * https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-target-function-attribute + * + * An example of using this feature is to turn on SSE2 support for a specific + * function, even if the rest of the source code is not compiled to use SSE2 + * code: + * + * ```c + * #ifdef SDL_SSE2_INTRINSICS + * static void SDL_TARGETING("sse2") DoSomethingWithSSE2(char *x) { + * ...use SSE2 intrinsic functions, etc... + * } + * #endif + * + * // later... + * #ifdef SDL_SSE2_INTRINSICS + * if (SDL_HasSSE2()) { + * DoSomethingWithSSE2(str); + * } + * #endif + * ``` + * + * The application is, on a whole, built without SSE2 instructions, so it will + * run on Intel machines that don't support SSE2. But then at runtime, it + * checks if the system supports the instructions, and then calls into a + * function that uses SSE2 opcodes. The ifdefs make sure that this code isn't + * used on platforms that don't have SSE2 at all. + * + * On compilers without target support, this is defined to nothing. + * + * This symbol is used by SDL internally, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TARGETING(x) __attribute__((target(x))) + +#elif defined(SDL_HAS_TARGET_ATTRIBS) +# define SDL_TARGETING(x) __attribute__((target(x))) +#else +# define SDL_TARGETING(x) +#endif + +#ifdef __loongarch64 +# ifndef SDL_DISABLE_LSX +# define SDL_LSX_INTRINSICS 1 +# include +# endif +# ifndef SDL_DISABLE_LASX +# define SDL_LASX_INTRINSICS 1 +# include +# endif +#endif + +#if defined(__x86_64__) || defined(_M_X64) || defined(__i386__) || defined(_M_IX86) +# if ((defined(_MSC_VER) && !defined(_M_X64)) || defined(__MMX__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_MMX) +# define SDL_MMX_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE) +# define SDL_SSE_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE2__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE2) +# define SDL_SSE2_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE3__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE3) +# define SDL_SSE3_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE4_1__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE4_1) +# define SDL_SSE4_1_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE4_2__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE4_2) +# define SDL_SSE4_2_INTRINSICS 1 +# include +# endif +# if defined(__clang__) && (defined(_MSC_VER) || defined(__SCE__)) && !defined(__AVX__) && !defined(SDL_DISABLE_AVX) +# define SDL_DISABLE_AVX /* see https://reviews.llvm.org/D20291 and https://reviews.llvm.org/D79194 */ +# endif +# if (defined(_MSC_VER) || defined(__AVX__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(_M_ARM64EC) && !defined(SDL_DISABLE_AVX) +# define SDL_AVX_INTRINSICS 1 +# include +# endif +# if defined(__clang__) && (defined(_MSC_VER) || defined(__SCE__)) && !defined(__AVX2__) && !defined(SDL_DISABLE_AVX2) +# define SDL_DISABLE_AVX2 /* see https://reviews.llvm.org/D20291 and https://reviews.llvm.org/D79194 */ +# endif +# if (defined(_MSC_VER) || defined(__AVX2__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(_M_ARM64EC) && !defined(SDL_DISABLE_AVX2) +# define SDL_AVX2_INTRINSICS 1 +# include +# endif +# if defined(__clang__) && (defined(_MSC_VER) || defined(__SCE__)) && !defined(__AVX512F__) && !defined(SDL_DISABLE_AVX512F) +# define SDL_DISABLE_AVX512F /* see https://reviews.llvm.org/D20291 and https://reviews.llvm.org/D79194 */ +# endif +# if (defined(_MSC_VER) || defined(__AVX512F__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(_M_ARM64EC) && !defined(SDL_DISABLE_AVX512F) +# define SDL_AVX512F_INTRINSICS 1 +# include +# endif +#endif /* defined(__x86_64__) || defined(_M_X64) || defined(__i386__) || defined(_M_IX86) */ + +#endif /* SDL_intrin_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_iostream.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_iostream.h new file mode 100644 index 0000000..4ca1609 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_iostream.h @@ -0,0 +1,1354 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: IOStream */ + +/** + * # CategoryIOStream + * + * SDL provides an abstract interface for reading and writing data streams. It + * offers implementations for files, memory, etc, and the app can provide + * their own implementations, too. + * + * SDL_IOStream is not related to the standard C++ iostream class, other than + * both are abstract interfaces to read/write data. + */ + +#ifndef SDL_iostream_h_ +#define SDL_iostream_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SDL_IOStream status, set by a read or write operation. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_IOStatus +{ + SDL_IO_STATUS_READY, /**< Everything is ready (no errors and not EOF). */ + SDL_IO_STATUS_ERROR, /**< Read or write I/O error */ + SDL_IO_STATUS_EOF, /**< End of file */ + SDL_IO_STATUS_NOT_READY, /**< Non blocking I/O, not ready */ + SDL_IO_STATUS_READONLY, /**< Tried to write a read-only buffer */ + SDL_IO_STATUS_WRITEONLY /**< Tried to read a write-only buffer */ +} SDL_IOStatus; + +/** + * Possible `whence` values for SDL_IOStream seeking. + * + * These map to the same "whence" concept that `fseek` or `lseek` use in the + * standard C runtime. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_IOWhence +{ + SDL_IO_SEEK_SET, /**< Seek from the beginning of data */ + SDL_IO_SEEK_CUR, /**< Seek relative to current read point */ + SDL_IO_SEEK_END /**< Seek relative to the end of data */ +} SDL_IOWhence; + +/** + * The function pointers that drive an SDL_IOStream. + * + * Applications can provide this struct to SDL_OpenIO() to create their own + * implementation of SDL_IOStream. This is not necessarily required, as SDL + * already offers several common types of I/O streams, via functions like + * SDL_IOFromFile() and SDL_IOFromMem(). + * + * This structure should be initialized using SDL_INIT_INTERFACE() + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_INIT_INTERFACE + */ +typedef struct SDL_IOStreamInterface +{ + /* The version of this interface */ + Uint32 version; + + /** + * Return the number of bytes in this SDL_IOStream + * + * \return the total size of the data stream, or -1 on error. + */ + Sint64 (SDLCALL *size)(void *userdata); + + /** + * Seek to `offset` relative to `whence`, one of stdio's whence values: + * SDL_IO_SEEK_SET, SDL_IO_SEEK_CUR, SDL_IO_SEEK_END + * + * \return the final offset in the data stream, or -1 on error. + */ + Sint64 (SDLCALL *seek)(void *userdata, Sint64 offset, SDL_IOWhence whence); + + /** + * Read up to `size` bytes from the data stream to the area pointed + * at by `ptr`. + * + * On an incomplete read, you should set `*status` to a value from the + * SDL_IOStatus enum. You do not have to explicitly set this on + * a complete, successful read. + * + * \return the number of bytes read + */ + size_t (SDLCALL *read)(void *userdata, void *ptr, size_t size, SDL_IOStatus *status); + + /** + * Write exactly `size` bytes from the area pointed at by `ptr` + * to data stream. + * + * On an incomplete write, you should set `*status` to a value from the + * SDL_IOStatus enum. You do not have to explicitly set this on + * a complete, successful write. + * + * \return the number of bytes written + */ + size_t (SDLCALL *write)(void *userdata, const void *ptr, size_t size, SDL_IOStatus *status); + + /** + * If the stream is buffering, make sure the data is written out. + * + * On failure, you should set `*status` to a value from the + * SDL_IOStatus enum. You do not have to explicitly set this on + * a successful flush. + * + * \return true if successful or false on write error when flushing data. + */ + bool (SDLCALL *flush)(void *userdata, SDL_IOStatus *status); + + /** + * Close and free any allocated resources. + * + * This does not guarantee file writes will sync to physical media; they + * can be in the system's file cache, waiting to go to disk. + * + * The SDL_IOStream is still destroyed even if this fails, so clean up anything + * even if flushing buffers, etc, returns an error. + * + * \return true if successful or false on write error when flushing data. + */ + bool (SDLCALL *close)(void *userdata); + +} SDL_IOStreamInterface; + +/* Check the size of SDL_IOStreamInterface + * + * If this assert fails, either the compiler is padding to an unexpected size, + * or the interface has been updated and this should be updated to match and + * the code using this interface should be updated to handle the old version. + */ +SDL_COMPILE_TIME_ASSERT(SDL_IOStreamInterface_SIZE, + (sizeof(void *) == 4 && sizeof(SDL_IOStreamInterface) == 28) || + (sizeof(void *) == 8 && sizeof(SDL_IOStreamInterface) == 56)); + +/** + * The read/write operation structure. + * + * This operates as an opaque handle. There are several APIs to create various + * types of I/O streams, or an app can supply an SDL_IOStreamInterface to + * SDL_OpenIO() to provide their own stream implementation behind this + * struct's abstract interface. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_IOStream SDL_IOStream; + + +/** + * \name IOFrom functions + * + * Functions to create SDL_IOStream structures from various data streams. + */ +/* @{ */ + +/** + * Use this function to create a new SDL_IOStream structure for reading from + * and/or writing to a named file. + * + * The `mode` string is treated roughly the same as in a call to the C + * library's fopen(), even if SDL doesn't happen to use fopen() behind the + * scenes. + * + * Available `mode` strings: + * + * - "r": Open a file for reading. The file must exist. + * - "w": Create an empty file for writing. If a file with the same name + * already exists its content is erased and the file is treated as a new + * empty file. + * - "a": Append to a file. Writing operations append data at the end of the + * file. The file is created if it does not exist. + * - "r+": Open a file for update both reading and writing. The file must + * exist. + * - "w+": Create an empty file for both reading and writing. If a file with + * the same name already exists its content is erased and the file is + * treated as a new empty file. + * - "a+": Open a file for reading and appending. All writing operations are + * performed at the end of the file, protecting the previous content to be + * overwritten. You can reposition (fseek, rewind) the internal pointer to + * anywhere in the file for reading, but writing operations will move it + * back to the end of file. The file is created if it does not exist. + * + * **NOTE**: In order to open a file as a binary file, a "b" character has to + * be included in the `mode` string. This additional "b" character can either + * be appended at the end of the string (thus making the following compound + * modes: "rb", "wb", "ab", "r+b", "w+b", "a+b") or be inserted between the + * letter and the "+" sign for the mixed modes ("rb+", "wb+", "ab+"). + * Additional characters may follow the sequence, although they should have no + * effect. For example, "t" is sometimes appended to make explicit the file is + * a text file. + * + * This function supports Unicode filenames, but they must be encoded in UTF-8 + * format, regardless of the underlying operating system. + * + * In Android, SDL_IOFromFile() can be used to open content:// URIs. As a + * fallback, SDL_IOFromFile() will transparently open a matching filename in + * the app's `assets`. + * + * Closing the SDL_IOStream will close SDL's internal file handle. + * + * The following properties may be set at creation time by SDL: + * + * - `SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER`: a pointer, that can be cast + * to a win32 `HANDLE`, that this SDL_IOStream is using to access the + * filesystem. If the program isn't running on Windows, or SDL used some + * other method to access the filesystem, this property will not be set. + * - `SDL_PROP_IOSTREAM_STDIO_FILE_POINTER`: a pointer, that can be cast to a + * stdio `FILE *`, that this SDL_IOStream is using to access the filesystem. + * If SDL used some other method to access the filesystem, this property + * will not be set. PLEASE NOTE that if SDL is using a different C runtime + * than your app, trying to use this pointer will almost certainly result in + * a crash! This is mostly a problem on Windows; make sure you build SDL and + * your app with the same compiler and settings to avoid it. + * - `SDL_PROP_IOSTREAM_FILE_DESCRIPTOR_NUMBER`: a file descriptor that this + * SDL_IOStream is using to access the filesystem. + * - `SDL_PROP_IOSTREAM_ANDROID_AASSET_POINTER`: a pointer, that can be cast + * to an Android NDK `AAsset *`, that this SDL_IOStream is using to access + * the filesystem. If SDL used some other method to access the filesystem, + * this property will not be set. + * + * \param file a UTF-8 string representing the filename to open. + * \param mode an ASCII string representing the mode to be used for opening + * the file. + * \returns a pointer to the SDL_IOStream structure that is created or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseIO + * \sa SDL_FlushIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromFile(const char *file, const char *mode); + +#define SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER "SDL.iostream.windows.handle" +#define SDL_PROP_IOSTREAM_STDIO_FILE_POINTER "SDL.iostream.stdio.file" +#define SDL_PROP_IOSTREAM_FILE_DESCRIPTOR_NUMBER "SDL.iostream.file_descriptor" +#define SDL_PROP_IOSTREAM_ANDROID_AASSET_POINTER "SDL.iostream.android.aasset" + +/** + * Use this function to prepare a read-write memory buffer for use with + * SDL_IOStream. + * + * This function sets up an SDL_IOStream struct based on a memory area of a + * certain size, for both read and write access. + * + * This memory buffer is not copied by the SDL_IOStream; the pointer you + * provide must remain valid until you close the stream. Closing the stream + * will not free the original buffer. + * + * If you need to make sure the SDL_IOStream never writes to the memory + * buffer, you should use SDL_IOFromConstMem() with a read-only buffer of + * memory instead. + * + * The following properties will be set at creation time by SDL: + * + * - `SDL_PROP_IOSTREAM_MEMORY_POINTER`: this will be the `mem` parameter that + * was passed to this function. + * - `SDL_PROP_IOSTREAM_MEMORY_SIZE_NUMBER`: this will be the `size` parameter + * that was passed to this function. + * + * \param mem a pointer to a buffer to feed an SDL_IOStream stream. + * \param size the buffer size, in bytes. + * \returns a pointer to a new SDL_IOStream structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOFromConstMem + * \sa SDL_CloseIO + * \sa SDL_FlushIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromMem(void *mem, size_t size); + +#define SDL_PROP_IOSTREAM_MEMORY_POINTER "SDL.iostream.memory.base" +#define SDL_PROP_IOSTREAM_MEMORY_SIZE_NUMBER "SDL.iostream.memory.size" + +/** + * Use this function to prepare a read-only memory buffer for use with + * SDL_IOStream. + * + * This function sets up an SDL_IOStream struct based on a memory area of a + * certain size. It assumes the memory area is not writable. + * + * Attempting to write to this SDL_IOStream stream will report an error + * without writing to the memory buffer. + * + * This memory buffer is not copied by the SDL_IOStream; the pointer you + * provide must remain valid until you close the stream. Closing the stream + * will not free the original buffer. + * + * If you need to write to a memory buffer, you should use SDL_IOFromMem() + * with a writable buffer of memory instead. + * + * The following properties will be set at creation time by SDL: + * + * - `SDL_PROP_IOSTREAM_MEMORY_POINTER`: this will be the `mem` parameter that + * was passed to this function. + * - `SDL_PROP_IOSTREAM_MEMORY_SIZE_NUMBER`: this will be the `size` parameter + * that was passed to this function. + * + * \param mem a pointer to a read-only buffer to feed an SDL_IOStream stream. + * \param size the buffer size, in bytes. + * \returns a pointer to a new SDL_IOStream structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOFromMem + * \sa SDL_CloseIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromConstMem(const void *mem, size_t size); + +/** + * Use this function to create an SDL_IOStream that is backed by dynamically + * allocated memory. + * + * This supports the following properties to provide access to the memory and + * control over allocations: + * + * - `SDL_PROP_IOSTREAM_DYNAMIC_MEMORY_POINTER`: a pointer to the internal + * memory of the stream. This can be set to NULL to transfer ownership of + * the memory to the application, which should free the memory with + * SDL_free(). If this is done, the next operation on the stream must be + * SDL_CloseIO(). + * - `SDL_PROP_IOSTREAM_DYNAMIC_CHUNKSIZE_NUMBER`: memory will be allocated in + * multiples of this size, defaulting to 1024. + * + * \returns a pointer to a new SDL_IOStream structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromDynamicMem(void); + +#define SDL_PROP_IOSTREAM_DYNAMIC_MEMORY_POINTER "SDL.iostream.dynamic.memory" +#define SDL_PROP_IOSTREAM_DYNAMIC_CHUNKSIZE_NUMBER "SDL.iostream.dynamic.chunksize" + +/* @} *//* IOFrom functions */ + + +/** + * Create a custom SDL_IOStream. + * + * Applications do not need to use this function unless they are providing + * their own SDL_IOStream implementation. If you just need an SDL_IOStream to + * read/write a common data source, you should use the built-in + * implementations in SDL, like SDL_IOFromFile() or SDL_IOFromMem(), etc. + * + * This function makes a copy of `iface` and the caller does not need to keep + * it around after this call. + * + * \param iface the interface that implements this SDL_IOStream, initialized + * using SDL_INIT_INTERFACE(). + * \param userdata the pointer that will be passed to the interface functions. + * \returns a pointer to the allocated memory on success or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseIO + * \sa SDL_INIT_INTERFACE + * \sa SDL_IOFromConstMem + * \sa SDL_IOFromFile + * \sa SDL_IOFromMem + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_OpenIO(const SDL_IOStreamInterface *iface, void *userdata); + +/** + * Close and free an allocated SDL_IOStream structure. + * + * SDL_CloseIO() closes and cleans up the SDL_IOStream stream. It releases any + * resources used by the stream and frees the SDL_IOStream itself. This + * returns true on success, or false if the stream failed to flush to its + * output (e.g. to disk). + * + * Note that if this fails to flush the stream for any reason, this function + * reports an error, but the SDL_IOStream is still invalid once this function + * returns. + * + * This call flushes any buffered writes to the operating system, but there + * are no guarantees that those writes have gone to physical media; they might + * be in the OS's file cache, waiting to go to disk later. If it's absolutely + * crucial that writes go to disk immediately, so they are definitely stored + * even if the power fails before the file cache would have caught up, one + * should call SDL_FlushIO() before closing. Note that flushing takes time and + * makes the system and your app operate less efficiently, so do so sparingly. + * + * \param context SDL_IOStream structure to close. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenIO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CloseIO(SDL_IOStream *context); + +/** + * Get the properties associated with an SDL_IOStream. + * + * \param context a pointer to an SDL_IOStream structure. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetIOProperties(SDL_IOStream *context); + +/** + * Query the stream status of an SDL_IOStream. + * + * This information can be useful to decide if a short read or write was due + * to an error, an EOF, or a non-blocking operation that isn't yet ready to + * complete. + * + * An SDL_IOStream's status is only expected to change after a SDL_ReadIO or + * SDL_WriteIO call; don't expect it to change if you just call this query + * function in a tight loop. + * + * \param context the SDL_IOStream to query. + * \returns an SDL_IOStatus enum with the current state. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_IOStatus SDLCALL SDL_GetIOStatus(SDL_IOStream *context); + +/** + * Use this function to get the size of the data stream in an SDL_IOStream. + * + * \param context the SDL_IOStream to get the size of the data stream from. + * \returns the size of the data stream in the SDL_IOStream on success or a + * negative error code on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_GetIOSize(SDL_IOStream *context); + +/** + * Seek within an SDL_IOStream data stream. + * + * This function seeks to byte `offset`, relative to `whence`. + * + * `whence` may be any of the following values: + * + * - `SDL_IO_SEEK_SET`: seek from the beginning of data + * - `SDL_IO_SEEK_CUR`: seek relative to current read point + * - `SDL_IO_SEEK_END`: seek relative to the end of data + * + * If this stream can not seek, it will return -1. + * + * \param context a pointer to an SDL_IOStream structure. + * \param offset an offset in bytes, relative to `whence` location; can be + * negative. + * \param whence any of `SDL_IO_SEEK_SET`, `SDL_IO_SEEK_CUR`, + * `SDL_IO_SEEK_END`. + * \returns the final offset in the data stream after the seek or -1 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TellIO + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_SeekIO(SDL_IOStream *context, Sint64 offset, SDL_IOWhence whence); + +/** + * Determine the current read/write offset in an SDL_IOStream data stream. + * + * SDL_TellIO is actually a wrapper function that calls the SDL_IOStream's + * `seek` method, with an offset of 0 bytes from `SDL_IO_SEEK_CUR`, to + * simplify application development. + * + * \param context an SDL_IOStream data stream object from which to get the + * current offset. + * \returns the current offset in the stream, or -1 if the information can not + * be determined. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SeekIO + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_TellIO(SDL_IOStream *context); + +/** + * Read from a data source. + * + * This function reads up `size` bytes from the data source to the area + * pointed at by `ptr`. This function may read less bytes than requested. + * + * This function will return zero when the data stream is completely read, and + * SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If zero is returned and + * the stream is not at EOF, SDL_GetIOStatus() will return a different error + * value and SDL_GetError() will offer a human-readable message. + * + * \param context a pointer to an SDL_IOStream structure. + * \param ptr a pointer to a buffer to read data into. + * \param size the number of bytes to read from the data source. + * \returns the number of bytes read, or 0 on end of file or other failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WriteIO + * \sa SDL_GetIOStatus + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_ReadIO(SDL_IOStream *context, void *ptr, size_t size); + +/** + * Write to an SDL_IOStream data stream. + * + * This function writes exactly `size` bytes from the area pointed at by `ptr` + * to the stream. If this fails for any reason, it'll return less than `size` + * to demonstrate how far the write progressed. On success, it returns `size`. + * + * On error, this function still attempts to write as much as possible, so it + * might return a positive value less than the requested write size. + * + * The caller can use SDL_GetIOStatus() to determine if the problem is + * recoverable, such as a non-blocking write that can simply be retried later, + * or a fatal error. + * + * \param context a pointer to an SDL_IOStream structure. + * \param ptr a pointer to a buffer containing data to write. + * \param size the number of bytes to write. + * \returns the number of bytes written, which will be less than `size` on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOprintf + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_FlushIO + * \sa SDL_GetIOStatus + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_WriteIO(SDL_IOStream *context, const void *ptr, size_t size); + +/** + * Print to an SDL_IOStream data stream. + * + * This function does formatted printing to the stream. + * + * \param context a pointer to an SDL_IOStream structure. + * \param fmt a printf() style format string. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * \returns the number of bytes written or 0 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOvprintf + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_IOprintf(SDL_IOStream *context, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Print to an SDL_IOStream data stream. + * + * This function does formatted printing to the stream. + * + * \param context a pointer to an SDL_IOStream structure. + * \param fmt a printf() style format string. + * \param ap a variable argument list. + * \returns the number of bytes written or 0 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOprintf + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_IOvprintf(SDL_IOStream *context, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + +/** + * Flush any buffered data in the stream. + * + * This function makes sure that any buffered data is written to the stream. + * Normally this isn't necessary but if the stream is a pipe or socket it + * guarantees that any pending data is sent. + * + * \param context SDL_IOStream structure to flush. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlushIO(SDL_IOStream *context); + +/** + * Load all the data from an SDL data stream. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in the value reported via + * `datasize`. + * + * The data should be freed with SDL_free(). + * + * \param src the SDL_IOStream to read all available data from. + * \param datasize a pointer filled in with the number of bytes read, may be + * NULL. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns the data or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFile + * \sa SDL_SaveFile_IO + */ +extern SDL_DECLSPEC void * SDLCALL SDL_LoadFile_IO(SDL_IOStream *src, size_t *datasize, bool closeio); + +/** + * Load all the data from a file path. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in the value reported via + * `datasize`. + * + * The data should be freed with SDL_free(). + * + * \param file the path to read all available data from. + * \param datasize if not NULL, will store the number of bytes read. + * \returns the data or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFile_IO + * \sa SDL_SaveFile + */ +extern SDL_DECLSPEC void * SDLCALL SDL_LoadFile(const char *file, size_t *datasize); + +/** + * Save all the data into an SDL data stream. + * + * \param src the SDL_IOStream to write all data to. + * \param data the data to be written. If datasize is 0, may be NULL or a + * invalid pointer. + * \param datasize the number of bytes to be written. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SaveFile + * \sa SDL_LoadFile_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveFile_IO(SDL_IOStream *src, const void *data, size_t datasize, bool closeio); + +/** + * Save all the data into a file path. + * + * \param file the path to write all available data into. + * \param data the data to be written. If datasize is 0, may be NULL or a + * invalid pointer. + * \param datasize the number of bytes to be written. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SaveFile_IO + * \sa SDL_LoadFile + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveFile(const char *file, const void *data, size_t datasize); + +/** + * \name Read endian functions + * + * Read an item of the specified endianness and return in native format. + */ +/* @{ */ + +/** + * Use this function to read a byte from an SDL_IOStream. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the SDL_IOStream to read from. + * \param value a pointer filled in with the data read. + * \returns true on success or false on failure or EOF; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU8(SDL_IOStream *src, Uint8 *value); + +/** + * Use this function to read a signed byte from an SDL_IOStream. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the SDL_IOStream to read from. + * \param value a pointer filled in with the data read. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS8(SDL_IOStream *src, Sint8 *value); + +/** + * Use this function to read 16 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU16LE(SDL_IOStream *src, Uint16 *value); + +/** + * Use this function to read 16 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS16LE(SDL_IOStream *src, Sint16 *value); + +/** + * Use this function to read 16 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU16BE(SDL_IOStream *src, Uint16 *value); + +/** + * Use this function to read 16 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS16BE(SDL_IOStream *src, Sint16 *value); + +/** + * Use this function to read 32 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU32LE(SDL_IOStream *src, Uint32 *value); + +/** + * Use this function to read 32 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS32LE(SDL_IOStream *src, Sint32 *value); + +/** + * Use this function to read 32 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU32BE(SDL_IOStream *src, Uint32 *value); + +/** + * Use this function to read 32 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS32BE(SDL_IOStream *src, Sint32 *value); + +/** + * Use this function to read 64 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU64LE(SDL_IOStream *src, Uint64 *value); + +/** + * Use this function to read 64 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS64LE(SDL_IOStream *src, Sint64 *value); + +/** + * Use this function to read 64 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU64BE(SDL_IOStream *src, Uint64 *value); + +/** + * Use this function to read 64 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS64BE(SDL_IOStream *src, Sint64 *value); +/* @} *//* Read endian functions */ + +/** + * \name Write endian functions + * + * Write an item of native format to the specified endianness. + */ +/* @{ */ + +/** + * Use this function to write a byte to an SDL_IOStream. + * + * \param dst the SDL_IOStream to write to. + * \param value the byte value to write. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU8(SDL_IOStream *dst, Uint8 value); + +/** + * Use this function to write a signed byte to an SDL_IOStream. + * + * \param dst the SDL_IOStream to write to. + * \param value the byte value to write. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS8(SDL_IOStream *dst, Sint8 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU16LE(SDL_IOStream *dst, Uint16 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS16LE(SDL_IOStream *dst, Sint16 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU16BE(SDL_IOStream *dst, Uint16 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS16BE(SDL_IOStream *dst, Sint16 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU32LE(SDL_IOStream *dst, Uint32 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS32LE(SDL_IOStream *dst, Sint32 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU32BE(SDL_IOStream *dst, Uint32 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS32BE(SDL_IOStream *dst, Sint32 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU64LE(SDL_IOStream *dst, Uint64 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS64LE(SDL_IOStream *dst, Sint64 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU64BE(SDL_IOStream *dst, Uint64 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS64BE(SDL_IOStream *dst, Sint64 value); + +/* @} *//* Write endian functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_iostream_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_joystick.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_joystick.h new file mode 100644 index 0000000..d15668b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_joystick.h @@ -0,0 +1,1202 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryJoystick + * + * SDL joystick support. + * + * This is the lower-level joystick handling. If you want the simpler option, + * where what each button does is well-defined, you should use the gamepad API + * instead. + * + * The term "instance_id" is the current instantiation of a joystick device in + * the system, if the joystick is removed and then re-inserted then it will + * get a new instance_id, instance_id's are monotonically increasing + * identifiers of a joystick plugged in. + * + * The term "player_index" is the number assigned to a player on a specific + * controller. For XInput controllers this returns the XInput user index. Many + * joysticks will not be able to supply this information. + * + * SDL_GUID is used as a stable 128-bit identifier for a joystick device that + * does not change over time. It identifies class of the device (a X360 wired + * controller for example). This identifier is platform dependent. + * + * In order to use these functions, SDL_Init() must have been called with the + * SDL_INIT_JOYSTICK flag. This causes SDL to scan the system for joysticks, + * and load appropriate drivers. + * + * If you would like to receive joystick updates while the application is in + * the background, you should set the following hint before calling + * SDL_Init(): SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS + */ + +#ifndef SDL_joystick_h_ +#define SDL_joystick_h_ + +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef SDL_THREAD_SAFETY_ANALYSIS +/* + * This is not an exported symbol from SDL, this is only in the headers to + * help Clang's thread safety analysis tools to function. Do not attempt + * to access this symbol from your app, it will not work! + */ +extern SDL_Mutex *SDL_joystick_lock; +#endif + +/** + * The joystick structure used to identify an SDL joystick. + * + * This is opaque data. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Joystick SDL_Joystick; + +/** + * This is a unique ID for a joystick for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the joystick is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_JoystickID; + +/** + * An enum of some common joystick types. + * + * In some cases, SDL can identify a low-level joystick as being a certain + * type of device, and will report it through SDL_GetJoystickType (or + * SDL_GetJoystickTypeForID). + * + * This is by no means a complete list of everything that can be plugged into + * a computer. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_JoystickType +{ + SDL_JOYSTICK_TYPE_UNKNOWN, + SDL_JOYSTICK_TYPE_GAMEPAD, + SDL_JOYSTICK_TYPE_WHEEL, + SDL_JOYSTICK_TYPE_ARCADE_STICK, + SDL_JOYSTICK_TYPE_FLIGHT_STICK, + SDL_JOYSTICK_TYPE_DANCE_PAD, + SDL_JOYSTICK_TYPE_GUITAR, + SDL_JOYSTICK_TYPE_DRUM_KIT, + SDL_JOYSTICK_TYPE_ARCADE_PAD, + SDL_JOYSTICK_TYPE_THROTTLE, + SDL_JOYSTICK_TYPE_COUNT +} SDL_JoystickType; + +/** + * Possible connection states for a joystick device. + * + * This is used by SDL_GetJoystickConnectionState to report how a device is + * connected to the system. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_JoystickConnectionState +{ + SDL_JOYSTICK_CONNECTION_INVALID = -1, + SDL_JOYSTICK_CONNECTION_UNKNOWN, + SDL_JOYSTICK_CONNECTION_WIRED, + SDL_JOYSTICK_CONNECTION_WIRELESS +} SDL_JoystickConnectionState; + +/** + * The largest value an SDL_Joystick's axis can report. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_JOYSTICK_AXIS_MIN + */ +#define SDL_JOYSTICK_AXIS_MAX 32767 + +/** + * The smallest value an SDL_Joystick's axis can report. + * + * This is a negative number! + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_JOYSTICK_AXIS_MAX + */ +#define SDL_JOYSTICK_AXIS_MIN -32768 + + +/* Function prototypes */ + +/** + * Locking for atomic access to the joystick API. + * + * The SDL joystick functions are thread-safe, however you can lock the + * joysticks while processing to guarantee that the joystick list won't change + * and joystick and gamepad events will not be delivered. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockJoysticks(void) SDL_ACQUIRE(SDL_joystick_lock); + +/** + * Unlocking for atomic access to the joystick API. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockJoysticks(void) SDL_RELEASE(SDL_joystick_lock); + +/** + * Return whether a joystick is currently connected. + * + * \returns true if a joystick is connected, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasJoystick(void); + +/** + * Get a list of currently connected joysticks. + * + * \param count a pointer filled in with the number of joysticks returned, may + * be NULL. + * \returns a 0 terminated array of joystick instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasJoystick + * \sa SDL_OpenJoystick + */ +extern SDL_DECLSPEC SDL_JoystickID * SDLCALL SDL_GetJoysticks(int *count); + +/** + * Get the implementation dependent name of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the name of the selected joystick. If no name can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickName + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickNameForID(SDL_JoystickID instance_id); + +/** + * Get the implementation dependent path of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the path of the selected joystick. If no path can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPath + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickPathForID(SDL_JoystickID instance_id); + +/** + * Get the player index of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the player index of a joystick, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPlayerIndex + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetJoystickPlayerIndexForID(SDL_JoystickID instance_id); + +/** + * Get the implementation-dependent GUID of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the GUID of the selected joystick. If called with an invalid + * instance_id, this function returns a zero GUID. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUID + * \sa SDL_GUIDToString + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_GetJoystickGUIDForID(SDL_JoystickID instance_id); + +/** + * Get the USB vendor ID of a joystick, if available. + * + * This can be called before any joysticks are opened. If the vendor ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB vendor ID of the selected joystick. If called with an + * invalid instance_id, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickVendor + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickVendorForID(SDL_JoystickID instance_id); + +/** + * Get the USB product ID of a joystick, if available. + * + * This can be called before any joysticks are opened. If the product ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB product ID of the selected joystick. If called with an + * invalid instance_id, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProduct + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProductForID(SDL_JoystickID instance_id); + +/** + * Get the product version of a joystick, if available. + * + * This can be called before any joysticks are opened. If the product version + * isn't available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the product version of the selected joystick. If called with an + * invalid instance_id, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProductVersion + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProductVersionForID(SDL_JoystickID instance_id); + +/** + * Get the type of a joystick, if available. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the SDL_JoystickType of the selected joystick. If called with an + * invalid instance_id, this function returns + * `SDL_JOYSTICK_TYPE_UNKNOWN`. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickType + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC SDL_JoystickType SDLCALL SDL_GetJoystickTypeForID(SDL_JoystickID instance_id); + +/** + * Open a joystick for use. + * + * The joystick subsystem must be initialized before a joystick can be opened + * for use. + * + * \param instance_id the joystick instance ID. + * \returns a joystick identifier or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseJoystick + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_OpenJoystick(SDL_JoystickID instance_id); + +/** + * Get the SDL_Joystick associated with an instance ID, if it has been opened. + * + * \param instance_id the instance ID to get the SDL_Joystick for. + * \returns an SDL_Joystick on success or NULL on failure or if it hasn't been + * opened yet; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_GetJoystickFromID(SDL_JoystickID instance_id); + +/** + * Get the SDL_Joystick associated with a player index. + * + * \param player_index the player index to get the SDL_Joystick for. + * \returns an SDL_Joystick on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPlayerIndex + * \sa SDL_SetJoystickPlayerIndex + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_GetJoystickFromPlayerIndex(int player_index); + +/** + * The structure that describes a virtual joystick touchpad. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_VirtualJoystickDesc + */ +typedef struct SDL_VirtualJoystickTouchpadDesc +{ + Uint16 nfingers; /**< the number of simultaneous fingers on this touchpad */ + Uint16 padding[3]; +} SDL_VirtualJoystickTouchpadDesc; + +/** + * The structure that describes a virtual joystick sensor. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_VirtualJoystickDesc + */ +typedef struct SDL_VirtualJoystickSensorDesc +{ + SDL_SensorType type; /**< the type of this sensor */ + float rate; /**< the update frequency of this sensor, may be 0.0f */ +} SDL_VirtualJoystickSensorDesc; + +/** + * The structure that describes a virtual joystick. + * + * This structure should be initialized using SDL_INIT_INTERFACE(). All + * elements of this structure are optional. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AttachVirtualJoystick + * \sa SDL_INIT_INTERFACE + * \sa SDL_VirtualJoystickSensorDesc + * \sa SDL_VirtualJoystickTouchpadDesc + */ +typedef struct SDL_VirtualJoystickDesc +{ + Uint32 version; /**< the version of this interface */ + Uint16 type; /**< `SDL_JoystickType` */ + Uint16 padding; /**< unused */ + Uint16 vendor_id; /**< the USB vendor ID of this joystick */ + Uint16 product_id; /**< the USB product ID of this joystick */ + Uint16 naxes; /**< the number of axes on this joystick */ + Uint16 nbuttons; /**< the number of buttons on this joystick */ + Uint16 nballs; /**< the number of balls on this joystick */ + Uint16 nhats; /**< the number of hats on this joystick */ + Uint16 ntouchpads; /**< the number of touchpads on this joystick, requires `touchpads` to point at valid descriptions */ + Uint16 nsensors; /**< the number of sensors on this joystick, requires `sensors` to point at valid descriptions */ + Uint16 padding2[2]; /**< unused */ + Uint32 button_mask; /**< A mask of which buttons are valid for this controller + e.g. (1 << SDL_GAMEPAD_BUTTON_SOUTH) */ + Uint32 axis_mask; /**< A mask of which axes are valid for this controller + e.g. (1 << SDL_GAMEPAD_AXIS_LEFTX) */ + const char *name; /**< the name of the joystick */ + const SDL_VirtualJoystickTouchpadDesc *touchpads; /**< A pointer to an array of touchpad descriptions, required if `ntouchpads` is > 0 */ + const SDL_VirtualJoystickSensorDesc *sensors; /**< A pointer to an array of sensor descriptions, required if `nsensors` is > 0 */ + + void *userdata; /**< User data pointer passed to callbacks */ + void (SDLCALL *Update)(void *userdata); /**< Called when the joystick state should be updated */ + void (SDLCALL *SetPlayerIndex)(void *userdata, int player_index); /**< Called when the player index is set */ + bool (SDLCALL *Rumble)(void *userdata, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble); /**< Implements SDL_RumbleJoystick() */ + bool (SDLCALL *RumbleTriggers)(void *userdata, Uint16 left_rumble, Uint16 right_rumble); /**< Implements SDL_RumbleJoystickTriggers() */ + bool (SDLCALL *SetLED)(void *userdata, Uint8 red, Uint8 green, Uint8 blue); /**< Implements SDL_SetJoystickLED() */ + bool (SDLCALL *SendEffect)(void *userdata, const void *data, int size); /**< Implements SDL_SendJoystickEffect() */ + bool (SDLCALL *SetSensorsEnabled)(void *userdata, bool enabled); /**< Implements SDL_SetGamepadSensorEnabled() */ + void (SDLCALL *Cleanup)(void *userdata); /**< Cleans up the userdata when the joystick is detached */ +} SDL_VirtualJoystickDesc; + +/* Check the size of SDL_VirtualJoystickDesc + * + * If this assert fails, either the compiler is padding to an unexpected size, + * or the interface has been updated and this should be updated to match and + * the code using this interface should be updated to handle the old version. + */ +SDL_COMPILE_TIME_ASSERT(SDL_VirtualJoystickDesc_SIZE, + (sizeof(void *) == 4 && sizeof(SDL_VirtualJoystickDesc) == 84) || + (sizeof(void *) == 8 && sizeof(SDL_VirtualJoystickDesc) == 136)); + +/** + * Attach a new virtual joystick. + * + * \param desc joystick description, initialized using SDL_INIT_INTERFACE(). + * \returns the joystick instance ID, or 0 on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DetachVirtualJoystick + */ +extern SDL_DECLSPEC SDL_JoystickID SDLCALL SDL_AttachVirtualJoystick(const SDL_VirtualJoystickDesc *desc); + +/** + * Detach a virtual joystick. + * + * \param instance_id the joystick instance ID, previously returned from + * SDL_AttachVirtualJoystick(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AttachVirtualJoystick + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DetachVirtualJoystick(SDL_JoystickID instance_id); + +/** + * Query whether or not a joystick is virtual. + * + * \param instance_id the joystick instance ID. + * \returns true if the joystick is virtual, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsJoystickVirtual(SDL_JoystickID instance_id); + +/** + * Set the state of an axis on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * Note that when sending trigger axes, you should scale the value to the full + * range of Sint16. For example, a trigger at rest would have the value of + * `SDL_JOYSTICK_AXIS_MIN`. + * + * \param joystick the virtual joystick on which to set state. + * \param axis the index of the axis on the virtual joystick to update. + * \param value the new value for the specified axis. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualAxis(SDL_Joystick *joystick, int axis, Sint16 value); + +/** + * Generate ball motion on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param ball the index of the ball on the virtual joystick to update. + * \param xrel the relative motion on the X axis. + * \param yrel the relative motion on the Y axis. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualBall(SDL_Joystick *joystick, int ball, Sint16 xrel, Sint16 yrel); + +/** + * Set the state of a button on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param button the index of the button on the virtual joystick to update. + * \param down true if the button is pressed, false otherwise. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualButton(SDL_Joystick *joystick, int button, bool down); + +/** + * Set the state of a hat on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param hat the index of the hat on the virtual joystick to update. + * \param value the new value for the specified hat. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualHat(SDL_Joystick *joystick, int hat, Uint8 value); + +/** + * Set touchpad finger state on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param touchpad the index of the touchpad on the virtual joystick to + * update. + * \param finger the index of the finger on the touchpad to set. + * \param down true if the finger is pressed, false if the finger is released. + * \param x the x coordinate of the finger on the touchpad, normalized 0 to 1, + * with the origin in the upper left. + * \param y the y coordinate of the finger on the touchpad, normalized 0 to 1, + * with the origin in the upper left. + * \param pressure the pressure of the finger. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualTouchpad(SDL_Joystick *joystick, int touchpad, int finger, bool down, float x, float y, float pressure); + +/** + * Send a sensor update for an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param type the type of the sensor on the virtual joystick to update. + * \param sensor_timestamp a 64-bit timestamp in nanoseconds associated with + * the sensor reading. + * \param data the data associated with the sensor reading. + * \param num_values the number of values pointed to by `data`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendJoystickVirtualSensorData(SDL_Joystick *joystick, SDL_SensorType type, Uint64 sensor_timestamp, const float *data, int num_values); + +/** + * Get the properties associated with a joystick. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_JOYSTICK_CAP_MONO_LED_BOOLEAN`: true if this joystick has an + * LED that has adjustable brightness + * - `SDL_PROP_JOYSTICK_CAP_RGB_LED_BOOLEAN`: true if this joystick has an LED + * that has adjustable color + * - `SDL_PROP_JOYSTICK_CAP_PLAYER_LED_BOOLEAN`: true if this joystick has a + * player LED + * - `SDL_PROP_JOYSTICK_CAP_RUMBLE_BOOLEAN`: true if this joystick has + * left/right rumble + * - `SDL_PROP_JOYSTICK_CAP_TRIGGER_RUMBLE_BOOLEAN`: true if this joystick has + * simple trigger rumble + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetJoystickProperties(SDL_Joystick *joystick); + +#define SDL_PROP_JOYSTICK_CAP_MONO_LED_BOOLEAN "SDL.joystick.cap.mono_led" +#define SDL_PROP_JOYSTICK_CAP_RGB_LED_BOOLEAN "SDL.joystick.cap.rgb_led" +#define SDL_PROP_JOYSTICK_CAP_PLAYER_LED_BOOLEAN "SDL.joystick.cap.player_led" +#define SDL_PROP_JOYSTICK_CAP_RUMBLE_BOOLEAN "SDL.joystick.cap.rumble" +#define SDL_PROP_JOYSTICK_CAP_TRIGGER_RUMBLE_BOOLEAN "SDL.joystick.cap.trigger_rumble" + +/** + * Get the implementation dependent name of a joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the name of the selected joystick. If no name can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickNameForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickName(SDL_Joystick *joystick); + +/** + * Get the implementation dependent path of a joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the path of the selected joystick. If no path can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPathForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickPath(SDL_Joystick *joystick); + +/** + * Get the player index of an opened joystick. + * + * For XInput controllers this returns the XInput user index. Many joysticks + * will not be able to supply this information. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the player index, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetJoystickPlayerIndex + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetJoystickPlayerIndex(SDL_Joystick *joystick); + +/** + * Set the player index of an opened joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \param player_index player index to assign to this joystick, or -1 to clear + * the player index and turn off player LEDs. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPlayerIndex + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickPlayerIndex(SDL_Joystick *joystick, int player_index); + +/** + * Get the implementation-dependent GUID for the joystick. + * + * This function requires an open joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the GUID of the given joystick. If called on an invalid index, + * this function returns a zero GUID; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUIDForID + * \sa SDL_GUIDToString + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_GetJoystickGUID(SDL_Joystick *joystick); + +/** + * Get the USB vendor ID of an opened joystick, if available. + * + * If the vendor ID isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the USB vendor ID of the selected joystick, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickVendorForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickVendor(SDL_Joystick *joystick); + +/** + * Get the USB product ID of an opened joystick, if available. + * + * If the product ID isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the USB product ID of the selected joystick, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProductForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProduct(SDL_Joystick *joystick); + +/** + * Get the product version of an opened joystick, if available. + * + * If the product version isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the product version of the selected joystick, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProductVersionForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProductVersion(SDL_Joystick *joystick); + +/** + * Get the firmware version of an opened joystick, if available. + * + * If the firmware version isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the firmware version of the selected joystick, or 0 if + * unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickFirmwareVersion(SDL_Joystick *joystick); + +/** + * Get the serial number of an opened joystick, if available. + * + * Returns the serial number of the joystick, or NULL if it is not available. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the serial number of the selected joystick, or NULL if + * unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickSerial(SDL_Joystick *joystick); + +/** + * Get the type of an opened joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the SDL_JoystickType of the selected joystick. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickTypeForID + */ +extern SDL_DECLSPEC SDL_JoystickType SDLCALL SDL_GetJoystickType(SDL_Joystick *joystick); + +/** + * Get the device information encoded in a SDL_GUID structure. + * + * \param guid the SDL_GUID you wish to get info about. + * \param vendor a pointer filled in with the device VID, or 0 if not + * available. + * \param product a pointer filled in with the device PID, or 0 if not + * available. + * \param version a pointer filled in with the device version, or 0 if not + * available. + * \param crc16 a pointer filled in with a CRC used to distinguish different + * products with the same VID/PID, or 0 if not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUIDForID + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetJoystickGUIDInfo(SDL_GUID guid, Uint16 *vendor, Uint16 *product, Uint16 *version, Uint16 *crc16); + +/** + * Get the status of a specified joystick. + * + * \param joystick the joystick to query. + * \returns true if the joystick has been opened, false if it has not; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_JoystickConnected(SDL_Joystick *joystick); + +/** + * Get the instance ID of an opened joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the instance ID of the specified joystick on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickID SDLCALL SDL_GetJoystickID(SDL_Joystick *joystick); + +/** + * Get the number of general axis controls on a joystick. + * + * Often, the directional pad on a game controller will either look like 4 + * separate buttons or a POV hat, and not axes, but all of this is up to the + * device and platform. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of axis controls/number of axes on success or -1 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickAxis + * \sa SDL_GetNumJoystickBalls + * \sa SDL_GetNumJoystickButtons + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickAxes(SDL_Joystick *joystick); + +/** + * Get the number of trackballs on a joystick. + * + * Joystick trackballs have only relative motion events associated with them + * and their state cannot be polled. + * + * Most joysticks do not have trackballs. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of trackballs on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickBall + * \sa SDL_GetNumJoystickAxes + * \sa SDL_GetNumJoystickButtons + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickBalls(SDL_Joystick *joystick); + +/** + * Get the number of POV hats on a joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of POV hats on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickHat + * \sa SDL_GetNumJoystickAxes + * \sa SDL_GetNumJoystickBalls + * \sa SDL_GetNumJoystickButtons + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickHats(SDL_Joystick *joystick); + +/** + * Get the number of buttons on a joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of buttons on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickButton + * \sa SDL_GetNumJoystickAxes + * \sa SDL_GetNumJoystickBalls + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickButtons(SDL_Joystick *joystick); + +/** + * Set the state of joystick event processing. + * + * If joystick events are disabled, you must call SDL_UpdateJoysticks() + * yourself and check the state of the joystick when you want joystick + * information. + * + * \param enabled whether to process joystick events or not. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_JoystickEventsEnabled + * \sa SDL_UpdateJoysticks + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetJoystickEventsEnabled(bool enabled); + +/** + * Query the state of joystick event processing. + * + * If joystick events are disabled, you must call SDL_UpdateJoysticks() + * yourself and check the state of the joystick when you want joystick + * information. + * + * \returns true if joystick events are being processed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetJoystickEventsEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_JoystickEventsEnabled(void); + +/** + * Update the current state of the open joysticks. + * + * This is called automatically by the event loop if any joystick events are + * enabled. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateJoysticks(void); + +/** + * Get the current state of an axis control on a joystick. + * + * SDL makes no promises about what part of the joystick any given axis refers + * to. Your game should have some sort of configuration UI to let users + * specify what each axis should be bound to. Alternately, SDL's higher-level + * Game Controller API makes a great effort to apply order to this lower-level + * interface, so you know that a specific axis is the "left thumb stick," etc. + * + * The value returned by SDL_GetJoystickAxis() is a signed integer (-32768 to + * 32767) representing the current position of the axis. It may be necessary + * to impose certain tolerances on these values to account for jitter. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param axis the axis to query; the axis indices start at index 0. + * \returns a 16-bit signed integer representing the current position of the + * axis or 0 on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickAxes + */ +extern SDL_DECLSPEC Sint16 SDLCALL SDL_GetJoystickAxis(SDL_Joystick *joystick, int axis); + +/** + * Get the initial state of an axis control on a joystick. + * + * The state is a value ranging from -32768 to 32767. + * + * The axis indices start at index 0. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param axis the axis to query; the axis indices start at index 0. + * \param state upon return, the initial value is supplied here. + * \returns true if this axis has any initial value, or false if not. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetJoystickAxisInitialState(SDL_Joystick *joystick, int axis, Sint16 *state); + +/** + * Get the ball axis change since the last poll. + * + * Trackballs can only return relative motion since the last call to + * SDL_GetJoystickBall(), these motion deltas are placed into `dx` and `dy`. + * + * Most joysticks do not have trackballs. + * + * \param joystick the SDL_Joystick to query. + * \param ball the ball index to query; ball indices start at index 0. + * \param dx stores the difference in the x axis position since the last poll. + * \param dy stores the difference in the y axis position since the last poll. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickBalls + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetJoystickBall(SDL_Joystick *joystick, int ball, int *dx, int *dy); + +/** + * Get the current state of a POV hat on a joystick. + * + * The returned value will be one of the `SDL_HAT_*` values. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param hat the hat index to get the state from; indices start at index 0. + * \returns the current hat position. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC Uint8 SDLCALL SDL_GetJoystickHat(SDL_Joystick *joystick, int hat); + +#define SDL_HAT_CENTERED 0x00u +#define SDL_HAT_UP 0x01u +#define SDL_HAT_RIGHT 0x02u +#define SDL_HAT_DOWN 0x04u +#define SDL_HAT_LEFT 0x08u +#define SDL_HAT_RIGHTUP (SDL_HAT_RIGHT|SDL_HAT_UP) +#define SDL_HAT_RIGHTDOWN (SDL_HAT_RIGHT|SDL_HAT_DOWN) +#define SDL_HAT_LEFTUP (SDL_HAT_LEFT|SDL_HAT_UP) +#define SDL_HAT_LEFTDOWN (SDL_HAT_LEFT|SDL_HAT_DOWN) + +/** + * Get the current state of a button on a joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param button the button index to get the state from; indices start at + * index 0. + * \returns true if the button is pressed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickButtons + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetJoystickButton(SDL_Joystick *joystick, int button); + +/** + * Start a rumble effect. + * + * Each call to this function cancels any previous rumble effect, and calling + * it with 0 intensity stops any rumbling. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param joystick the joystick to vibrate. + * \param low_frequency_rumble the intensity of the low frequency (left) + * rumble motor, from 0 to 0xFFFF. + * \param high_frequency_rumble the intensity of the high frequency (right) + * rumble motor, from 0 to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true, or false if rumble isn't supported on this joystick. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleJoystick(SDL_Joystick *joystick, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble, Uint32 duration_ms); + +/** + * Start a rumble effect in the joystick's triggers. + * + * Each call to this function cancels any previous trigger rumble effect, and + * calling it with 0 intensity stops any rumbling. + * + * Note that this is rumbling of the _triggers_ and not the game controller as + * a whole. This is currently only supported on Xbox One controllers. If you + * want the (more common) whole-controller rumble, use SDL_RumbleJoystick() + * instead. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param joystick the joystick to vibrate. + * \param left_rumble the intensity of the left trigger rumble motor, from 0 + * to 0xFFFF. + * \param right_rumble the intensity of the right trigger rumble motor, from 0 + * to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RumbleJoystick + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleJoystickTriggers(SDL_Joystick *joystick, Uint16 left_rumble, Uint16 right_rumble, Uint32 duration_ms); + +/** + * Update a joystick's LED color. + * + * An example of a joystick LED is the light on the back of a PlayStation 4's + * DualShock 4 controller. + * + * For joysticks with a single color LED, the maximum of the RGB values will + * be used as the LED brightness. + * + * \param joystick the joystick to update. + * \param red the intensity of the red LED. + * \param green the intensity of the green LED. + * \param blue the intensity of the blue LED. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickLED(SDL_Joystick *joystick, Uint8 red, Uint8 green, Uint8 blue); + +/** + * Send a joystick specific effect packet. + * + * \param joystick the joystick to affect. + * \param data the data to send to the joystick. + * \param size the size of the data to send to the joystick. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendJoystickEffect(SDL_Joystick *joystick, const void *data, int size); + +/** + * Close a joystick previously opened with SDL_OpenJoystick(). + * + * \param joystick the joystick device to close. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenJoystick + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseJoystick(SDL_Joystick *joystick); + +/** + * Get the connection state of a joystick. + * + * \param joystick the joystick to query. + * \returns the connection state on success or + * `SDL_JOYSTICK_CONNECTION_INVALID` on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickConnectionState SDLCALL SDL_GetJoystickConnectionState(SDL_Joystick *joystick); + +/** + * Get the battery state of a joystick. + * + * You should never take a battery status as absolute truth. Batteries + * (especially failing batteries) are delicate hardware, and the values + * reported here are best estimates based on what that hardware reports. It's + * not uncommon for older batteries to lose stored power much faster than it + * reports, or completely drain when reporting it has 20 percent left, etc. + * + * \param joystick the joystick to query. + * \param percent a pointer filled in with the percentage of battery life + * left, between 0 and 100, or NULL to ignore. This will be + * filled in with -1 we can't determine a value or there is no + * battery. + * \returns the current battery state or `SDL_POWERSTATE_ERROR` on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PowerState SDLCALL SDL_GetJoystickPowerInfo(SDL_Joystick *joystick, int *percent); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_joystick_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_keyboard.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_keyboard.h new file mode 100644 index 0000000..afa77b6 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_keyboard.h @@ -0,0 +1,609 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryKeyboard + * + * SDL keyboard management. + * + * Please refer to the Best Keyboard Practices document for details on how + * best to accept keyboard input in various types of programs: + * + * https://wiki.libsdl.org/SDL3/BestKeyboardPractices + */ + +#ifndef SDL_keyboard_h_ +#define SDL_keyboard_h_ + +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a keyboard for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the keyboard is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_KeyboardID; + +/* Function prototypes */ + +/** + * Return whether a keyboard is currently connected. + * + * \returns true if a keyboard is connected, false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboards + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasKeyboard(void); + +/** + * Get a list of currently connected keyboards. + * + * Note that this will include any device or virtual driver that includes + * keyboard functionality, including some mice, KVM switches, motherboard + * power buttons, etc. You should wait for input from a device before you + * consider it actively in use. + * + * \param count a pointer filled in with the number of keyboards returned, may + * be NULL. + * \returns a 0 terminated array of keyboards instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboardNameForID + * \sa SDL_HasKeyboard + */ +extern SDL_DECLSPEC SDL_KeyboardID * SDLCALL SDL_GetKeyboards(int *count); + +/** + * Get the name of a keyboard. + * + * This function returns "" if the keyboard doesn't have a name. + * + * \param instance_id the keyboard instance ID. + * \returns the name of the selected keyboard or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboards + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetKeyboardNameForID(SDL_KeyboardID instance_id); + +/** + * Query the window which currently has keyboard focus. + * + * \returns the window with keyboard focus. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetKeyboardFocus(void); + +/** + * Get a snapshot of the current state of the keyboard. + * + * The pointer returned is a pointer to an internal SDL array. It will be + * valid for the whole lifetime of the application and should not be freed by + * the caller. + * + * A array element with a value of true means that the key is pressed and a + * value of false means that it is not. Indexes into this array are obtained + * by using SDL_Scancode values. + * + * Use SDL_PumpEvents() to update the state array. + * + * This function gives you the current state after all events have been + * processed, so if a key or button has been pressed and released before you + * process events, then the pressed state will never show up in the + * SDL_GetKeyboardState() calls. + * + * Note: This function doesn't take into account whether shift has been + * pressed or not. + * + * \param numkeys if non-NULL, receives the length of the returned array. + * \returns a pointer to an array of key states. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PumpEvents + * \sa SDL_ResetKeyboard + */ +extern SDL_DECLSPEC const bool * SDLCALL SDL_GetKeyboardState(int *numkeys); + +/** + * Clear the state of the keyboard. + * + * This function will generate key up events for all pressed keys. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboardState + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetKeyboard(void); + +/** + * Get the current key modifier state for the keyboard. + * + * \returns an OR'd combination of the modifier keys for the keyboard. See + * SDL_Keymod for details. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboardState + * \sa SDL_SetModState + */ +extern SDL_DECLSPEC SDL_Keymod SDLCALL SDL_GetModState(void); + +/** + * Set the current key modifier state for the keyboard. + * + * The inverse of SDL_GetModState(), SDL_SetModState() allows you to impose + * modifier key states on your application. Simply pass your desired modifier + * states into `modstate`. This value may be a bitwise, OR'd combination of + * SDL_Keymod values. + * + * This does not change the keyboard state, only the key modifier flags that + * SDL reports. + * + * \param modstate the desired SDL_Keymod for the keyboard. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetModState + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetModState(SDL_Keymod modstate); + +/** + * Get the key code corresponding to the given scancode according to the + * current keyboard layout. + * + * If you want to get the keycode as it would be delivered in key events, + * including options specified in SDL_HINT_KEYCODE_OPTIONS, then you should + * pass `key_event` as true. Otherwise this function simply translates the + * scancode based on the given modifier state. + * + * \param scancode the desired SDL_Scancode to query. + * \param modstate the modifier state to use when translating the scancode to + * a keycode. + * \param key_event true if the keycode will be used in key events. + * \returns the SDL_Keycode that corresponds to the given SDL_Scancode. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyName + * \sa SDL_GetScancodeFromKey + */ +extern SDL_DECLSPEC SDL_Keycode SDLCALL SDL_GetKeyFromScancode(SDL_Scancode scancode, SDL_Keymod modstate, bool key_event); + +/** + * Get the scancode corresponding to the given key code according to the + * current keyboard layout. + * + * Note that there may be multiple scancode+modifier states that can generate + * this keycode, this will just return the first one found. + * + * \param key the desired SDL_Keycode to query. + * \param modstate a pointer to the modifier state that would be used when the + * scancode generates this key, may be NULL. + * \returns the SDL_Scancode that corresponds to the given SDL_Keycode. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromScancode + * \sa SDL_GetScancodeName + */ +extern SDL_DECLSPEC SDL_Scancode SDLCALL SDL_GetScancodeFromKey(SDL_Keycode key, SDL_Keymod *modstate); + +/** + * Set a human-readable name for a scancode. + * + * \param scancode the desired SDL_Scancode. + * \param name the name to use for the scancode, encoded as UTF-8. The string + * is not copied, so the pointer given to this function must stay + * valid while SDL is being used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetScancodeName + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetScancodeName(SDL_Scancode scancode, const char *name); + +/** + * Get a human-readable name for a scancode. + * + * **Warning**: The returned name is by design not stable across platforms, + * e.g. the name for `SDL_SCANCODE_LGUI` is "Left GUI" under Linux but "Left + * Windows" under Microsoft Windows, and some scancodes like + * `SDL_SCANCODE_NONUSBACKSLASH` don't have any name at all. There are even + * scancodes that share names, e.g. `SDL_SCANCODE_RETURN` and + * `SDL_SCANCODE_RETURN2` (both called "Return"). This function is therefore + * unsuitable for creating a stable cross-platform two-way mapping between + * strings and scancodes. + * + * \param scancode the desired SDL_Scancode to query. + * \returns a pointer to the name for the scancode. If the scancode doesn't + * have a name this function returns an empty string (""). + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetScancodeFromKey + * \sa SDL_GetScancodeFromName + * \sa SDL_SetScancodeName + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetScancodeName(SDL_Scancode scancode); + +/** + * Get a scancode from a human-readable name. + * + * \param name the human-readable scancode name. + * \returns the SDL_Scancode, or `SDL_SCANCODE_UNKNOWN` if the name wasn't + * recognized; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromName + * \sa SDL_GetScancodeFromKey + * \sa SDL_GetScancodeName + */ +extern SDL_DECLSPEC SDL_Scancode SDLCALL SDL_GetScancodeFromName(const char *name); + +/** + * Get a human-readable name for a key. + * + * If the key doesn't have a name, this function returns an empty string (""). + * + * Letters will be presented in their uppercase form, if applicable. + * + * \param key the desired SDL_Keycode to query. + * \returns a UTF-8 encoded string of the key name. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromName + * \sa SDL_GetKeyFromScancode + * \sa SDL_GetScancodeFromKey + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetKeyName(SDL_Keycode key); + +/** + * Get a key code from a human-readable name. + * + * \param name the human-readable key name. + * \returns key code, or `SDLK_UNKNOWN` if the name wasn't recognized; call + * SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromScancode + * \sa SDL_GetKeyName + * \sa SDL_GetScancodeFromName + */ +extern SDL_DECLSPEC SDL_Keycode SDLCALL SDL_GetKeyFromName(const char *name); + +/** + * Start accepting Unicode text input events in a window. + * + * This function will enable text input (SDL_EVENT_TEXT_INPUT and + * SDL_EVENT_TEXT_EDITING events) in the specified window. Please use this + * function paired with SDL_StopTextInput(). + * + * Text input events are not received by default. + * + * On some platforms using this function shows the screen keyboard and/or + * activates an IME, which can prevent some key press events from being passed + * through. + * + * \param window the window to enable text input. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextInputArea + * \sa SDL_StartTextInputWithProperties + * \sa SDL_StopTextInput + * \sa SDL_TextInputActive + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StartTextInput(SDL_Window *window); + +/** + * Text input type. + * + * These are the valid values for SDL_PROP_TEXTINPUT_TYPE_NUMBER. Not every + * value is valid on every platform, but where a value isn't supported, a + * reasonable fallback will be used. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_StartTextInputWithProperties + */ +typedef enum SDL_TextInputType +{ + SDL_TEXTINPUT_TYPE_TEXT, /**< The input is text */ + SDL_TEXTINPUT_TYPE_TEXT_NAME, /**< The input is a person's name */ + SDL_TEXTINPUT_TYPE_TEXT_EMAIL, /**< The input is an e-mail address */ + SDL_TEXTINPUT_TYPE_TEXT_USERNAME, /**< The input is a username */ + SDL_TEXTINPUT_TYPE_TEXT_PASSWORD_HIDDEN, /**< The input is a secure password that is hidden */ + SDL_TEXTINPUT_TYPE_TEXT_PASSWORD_VISIBLE, /**< The input is a secure password that is visible */ + SDL_TEXTINPUT_TYPE_NUMBER, /**< The input is a number */ + SDL_TEXTINPUT_TYPE_NUMBER_PASSWORD_HIDDEN, /**< The input is a secure PIN that is hidden */ + SDL_TEXTINPUT_TYPE_NUMBER_PASSWORD_VISIBLE /**< The input is a secure PIN that is visible */ +} SDL_TextInputType; + +/** + * Auto capitalization type. + * + * These are the valid values for SDL_PROP_TEXTINPUT_CAPITALIZATION_NUMBER. + * Not every value is valid on every platform, but where a value isn't + * supported, a reasonable fallback will be used. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_StartTextInputWithProperties + */ +typedef enum SDL_Capitalization +{ + SDL_CAPITALIZE_NONE, /**< No auto-capitalization will be done */ + SDL_CAPITALIZE_SENTENCES, /**< The first letter of sentences will be capitalized */ + SDL_CAPITALIZE_WORDS, /**< The first letter of words will be capitalized */ + SDL_CAPITALIZE_LETTERS /**< All letters will be capitalized */ +} SDL_Capitalization; + +/** + * Start accepting Unicode text input events in a window, with properties + * describing the input. + * + * This function will enable text input (SDL_EVENT_TEXT_INPUT and + * SDL_EVENT_TEXT_EDITING events) in the specified window. Please use this + * function paired with SDL_StopTextInput(). + * + * Text input events are not received by default. + * + * On some platforms using this function shows the screen keyboard and/or + * activates an IME, which can prevent some key press events from being passed + * through. + * + * These are the supported properties: + * + * - `SDL_PROP_TEXTINPUT_TYPE_NUMBER` - an SDL_TextInputType value that + * describes text being input, defaults to SDL_TEXTINPUT_TYPE_TEXT. + * - `SDL_PROP_TEXTINPUT_CAPITALIZATION_NUMBER` - an SDL_Capitalization value + * that describes how text should be capitalized, defaults to + * SDL_CAPITALIZE_SENTENCES for normal text entry, SDL_CAPITALIZE_WORDS for + * SDL_TEXTINPUT_TYPE_TEXT_NAME, and SDL_CAPITALIZE_NONE for e-mail + * addresses, usernames, and passwords. + * - `SDL_PROP_TEXTINPUT_AUTOCORRECT_BOOLEAN` - true to enable auto completion + * and auto correction, defaults to true. + * - `SDL_PROP_TEXTINPUT_MULTILINE_BOOLEAN` - true if multiple lines of text + * are allowed. This defaults to true if SDL_HINT_RETURN_KEY_HIDES_IME is + * "0" or is not set, and defaults to false if SDL_HINT_RETURN_KEY_HIDES_IME + * is "1". + * + * On Android you can directly specify the input type: + * + * - `SDL_PROP_TEXTINPUT_ANDROID_INPUTTYPE_NUMBER` - the text input type to + * use, overriding other properties. This is documented at + * https://developer.android.com/reference/android/text/InputType + * + * \param window the window to enable text input. + * \param props the properties to use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextInputArea + * \sa SDL_StartTextInput + * \sa SDL_StopTextInput + * \sa SDL_TextInputActive + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StartTextInputWithProperties(SDL_Window *window, SDL_PropertiesID props); + +#define SDL_PROP_TEXTINPUT_TYPE_NUMBER "SDL.textinput.type" +#define SDL_PROP_TEXTINPUT_CAPITALIZATION_NUMBER "SDL.textinput.capitalization" +#define SDL_PROP_TEXTINPUT_AUTOCORRECT_BOOLEAN "SDL.textinput.autocorrect" +#define SDL_PROP_TEXTINPUT_MULTILINE_BOOLEAN "SDL.textinput.multiline" +#define SDL_PROP_TEXTINPUT_ANDROID_INPUTTYPE_NUMBER "SDL.textinput.android.inputtype" + +/** + * Check whether or not Unicode text input events are enabled for a window. + * + * \param window the window to check. + * \returns true if text input events are enabled else false. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TextInputActive(SDL_Window *window); + +/** + * Stop receiving any text input events in a window. + * + * If SDL_StartTextInput() showed the screen keyboard, this function will hide + * it. + * + * \param window the window to disable text input. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopTextInput(SDL_Window *window); + +/** + * Dismiss the composition window/IME without disabling the subsystem. + * + * \param window the window to affect. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + * \sa SDL_StopTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearComposition(SDL_Window *window); + +/** + * Set the area used to type Unicode text input. + * + * Native input methods may place a window with word suggestions near the + * cursor, without covering the text being entered. + * + * \param window the window for which to set the text input area. + * \param rect the SDL_Rect representing the text input area, in window + * coordinates, or NULL to clear it. + * \param cursor the offset of the current cursor location relative to + * `rect->x`, in window coordinates. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextInputArea + * \sa SDL_StartTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextInputArea(SDL_Window *window, const SDL_Rect *rect, int cursor); + +/** + * Get the area used to type Unicode text input. + * + * This returns the values previously set by SDL_SetTextInputArea(). + * + * \param window the window for which to query the text input area. + * \param rect a pointer to an SDL_Rect filled in with the text input area, + * may be NULL. + * \param cursor a pointer to the offset of the current cursor location + * relative to `rect->x`, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextInputArea + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextInputArea(SDL_Window *window, SDL_Rect *rect, int *cursor); + +/** + * Check whether the platform has screen keyboard support. + * + * \returns true if the platform has some screen keyboard support or false if + * not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + * \sa SDL_ScreenKeyboardShown + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasScreenKeyboardSupport(void); + +/** + * Check whether the screen keyboard is shown for given window. + * + * \param window the window for which screen keyboard should be queried. + * \returns true if screen keyboard is shown or false if not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasScreenKeyboardSupport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ScreenKeyboardShown(SDL_Window *window); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_keyboard_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_keycode.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_keycode.h new file mode 100644 index 0000000..61b68e7 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_keycode.h @@ -0,0 +1,343 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryKeycode + * + * Defines constants which identify keyboard keys and modifiers. + * + * Please refer to the Best Keyboard Practices document for details on what + * this information means and how best to use it. + * + * https://wiki.libsdl.org/SDL3/BestKeyboardPractices + */ + +#ifndef SDL_keycode_h_ +#define SDL_keycode_h_ + +#include +#include + +/** + * The SDL virtual key representation. + * + * Values of this type are used to represent keyboard keys using the current + * layout of the keyboard. These values include Unicode values representing + * the unmodified character that would be generated by pressing the key, or an + * `SDLK_*` constant for those keys that do not generate characters. + * + * A special exception is the number keys at the top of the keyboard which map + * to SDLK_0...SDLK_9 on AZERTY layouts. + * + * Keys with the `SDLK_EXTENDED_MASK` bit set do not map to a scancode or + * unicode code point. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_Keycode; + +#define SDLK_EXTENDED_MASK (1u << 29) +#define SDLK_SCANCODE_MASK (1u << 30) +#define SDL_SCANCODE_TO_KEYCODE(X) (X | SDLK_SCANCODE_MASK) +#define SDLK_UNKNOWN 0x00000000u /**< 0 */ +#define SDLK_RETURN 0x0000000du /**< '\r' */ +#define SDLK_ESCAPE 0x0000001bu /**< '\x1B' */ +#define SDLK_BACKSPACE 0x00000008u /**< '\b' */ +#define SDLK_TAB 0x00000009u /**< '\t' */ +#define SDLK_SPACE 0x00000020u /**< ' ' */ +#define SDLK_EXCLAIM 0x00000021u /**< '!' */ +#define SDLK_DBLAPOSTROPHE 0x00000022u /**< '"' */ +#define SDLK_HASH 0x00000023u /**< '#' */ +#define SDLK_DOLLAR 0x00000024u /**< '$' */ +#define SDLK_PERCENT 0x00000025u /**< '%' */ +#define SDLK_AMPERSAND 0x00000026u /**< '&' */ +#define SDLK_APOSTROPHE 0x00000027u /**< '\'' */ +#define SDLK_LEFTPAREN 0x00000028u /**< '(' */ +#define SDLK_RIGHTPAREN 0x00000029u /**< ')' */ +#define SDLK_ASTERISK 0x0000002au /**< '*' */ +#define SDLK_PLUS 0x0000002bu /**< '+' */ +#define SDLK_COMMA 0x0000002cu /**< ',' */ +#define SDLK_MINUS 0x0000002du /**< '-' */ +#define SDLK_PERIOD 0x0000002eu /**< '.' */ +#define SDLK_SLASH 0x0000002fu /**< '/' */ +#define SDLK_0 0x00000030u /**< '0' */ +#define SDLK_1 0x00000031u /**< '1' */ +#define SDLK_2 0x00000032u /**< '2' */ +#define SDLK_3 0x00000033u /**< '3' */ +#define SDLK_4 0x00000034u /**< '4' */ +#define SDLK_5 0x00000035u /**< '5' */ +#define SDLK_6 0x00000036u /**< '6' */ +#define SDLK_7 0x00000037u /**< '7' */ +#define SDLK_8 0x00000038u /**< '8' */ +#define SDLK_9 0x00000039u /**< '9' */ +#define SDLK_COLON 0x0000003au /**< ':' */ +#define SDLK_SEMICOLON 0x0000003bu /**< ';' */ +#define SDLK_LESS 0x0000003cu /**< '<' */ +#define SDLK_EQUALS 0x0000003du /**< '=' */ +#define SDLK_GREATER 0x0000003eu /**< '>' */ +#define SDLK_QUESTION 0x0000003fu /**< '?' */ +#define SDLK_AT 0x00000040u /**< '@' */ +#define SDLK_LEFTBRACKET 0x0000005bu /**< '[' */ +#define SDLK_BACKSLASH 0x0000005cu /**< '\\' */ +#define SDLK_RIGHTBRACKET 0x0000005du /**< ']' */ +#define SDLK_CARET 0x0000005eu /**< '^' */ +#define SDLK_UNDERSCORE 0x0000005fu /**< '_' */ +#define SDLK_GRAVE 0x00000060u /**< '`' */ +#define SDLK_A 0x00000061u /**< 'a' */ +#define SDLK_B 0x00000062u /**< 'b' */ +#define SDLK_C 0x00000063u /**< 'c' */ +#define SDLK_D 0x00000064u /**< 'd' */ +#define SDLK_E 0x00000065u /**< 'e' */ +#define SDLK_F 0x00000066u /**< 'f' */ +#define SDLK_G 0x00000067u /**< 'g' */ +#define SDLK_H 0x00000068u /**< 'h' */ +#define SDLK_I 0x00000069u /**< 'i' */ +#define SDLK_J 0x0000006au /**< 'j' */ +#define SDLK_K 0x0000006bu /**< 'k' */ +#define SDLK_L 0x0000006cu /**< 'l' */ +#define SDLK_M 0x0000006du /**< 'm' */ +#define SDLK_N 0x0000006eu /**< 'n' */ +#define SDLK_O 0x0000006fu /**< 'o' */ +#define SDLK_P 0x00000070u /**< 'p' */ +#define SDLK_Q 0x00000071u /**< 'q' */ +#define SDLK_R 0x00000072u /**< 'r' */ +#define SDLK_S 0x00000073u /**< 's' */ +#define SDLK_T 0x00000074u /**< 't' */ +#define SDLK_U 0x00000075u /**< 'u' */ +#define SDLK_V 0x00000076u /**< 'v' */ +#define SDLK_W 0x00000077u /**< 'w' */ +#define SDLK_X 0x00000078u /**< 'x' */ +#define SDLK_Y 0x00000079u /**< 'y' */ +#define SDLK_Z 0x0000007au /**< 'z' */ +#define SDLK_LEFTBRACE 0x0000007bu /**< '{' */ +#define SDLK_PIPE 0x0000007cu /**< '|' */ +#define SDLK_RIGHTBRACE 0x0000007du /**< '}' */ +#define SDLK_TILDE 0x0000007eu /**< '~' */ +#define SDLK_DELETE 0x0000007fu /**< '\x7F' */ +#define SDLK_PLUSMINUS 0x000000b1u /**< '\xB1' */ +#define SDLK_CAPSLOCK 0x40000039u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CAPSLOCK) */ +#define SDLK_F1 0x4000003au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F1) */ +#define SDLK_F2 0x4000003bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F2) */ +#define SDLK_F3 0x4000003cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F3) */ +#define SDLK_F4 0x4000003du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F4) */ +#define SDLK_F5 0x4000003eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F5) */ +#define SDLK_F6 0x4000003fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F6) */ +#define SDLK_F7 0x40000040u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F7) */ +#define SDLK_F8 0x40000041u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F8) */ +#define SDLK_F9 0x40000042u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F9) */ +#define SDLK_F10 0x40000043u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F10) */ +#define SDLK_F11 0x40000044u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F11) */ +#define SDLK_F12 0x40000045u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F12) */ +#define SDLK_PRINTSCREEN 0x40000046u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PRINTSCREEN) */ +#define SDLK_SCROLLLOCK 0x40000047u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SCROLLLOCK) */ +#define SDLK_PAUSE 0x40000048u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAUSE) */ +#define SDLK_INSERT 0x40000049u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_INSERT) */ +#define SDLK_HOME 0x4000004au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_HOME) */ +#define SDLK_PAGEUP 0x4000004bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAGEUP) */ +#define SDLK_END 0x4000004du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_END) */ +#define SDLK_PAGEDOWN 0x4000004eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAGEDOWN) */ +#define SDLK_RIGHT 0x4000004fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RIGHT) */ +#define SDLK_LEFT 0x40000050u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LEFT) */ +#define SDLK_DOWN 0x40000051u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_DOWN) */ +#define SDLK_UP 0x40000052u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_UP) */ +#define SDLK_NUMLOCKCLEAR 0x40000053u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_NUMLOCKCLEAR) */ +#define SDLK_KP_DIVIDE 0x40000054u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DIVIDE) */ +#define SDLK_KP_MULTIPLY 0x40000055u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MULTIPLY) */ +#define SDLK_KP_MINUS 0x40000056u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MINUS) */ +#define SDLK_KP_PLUS 0x40000057u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PLUS) */ +#define SDLK_KP_ENTER 0x40000058u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_ENTER) */ +#define SDLK_KP_1 0x40000059u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_1) */ +#define SDLK_KP_2 0x4000005au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_2) */ +#define SDLK_KP_3 0x4000005bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_3) */ +#define SDLK_KP_4 0x4000005cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_4) */ +#define SDLK_KP_5 0x4000005du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_5) */ +#define SDLK_KP_6 0x4000005eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_6) */ +#define SDLK_KP_7 0x4000005fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_7) */ +#define SDLK_KP_8 0x40000060u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_8) */ +#define SDLK_KP_9 0x40000061u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_9) */ +#define SDLK_KP_0 0x40000062u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_0) */ +#define SDLK_KP_PERIOD 0x40000063u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PERIOD) */ +#define SDLK_APPLICATION 0x40000065u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_APPLICATION) */ +#define SDLK_POWER 0x40000066u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_POWER) */ +#define SDLK_KP_EQUALS 0x40000067u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EQUALS) */ +#define SDLK_F13 0x40000068u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F13) */ +#define SDLK_F14 0x40000069u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F14) */ +#define SDLK_F15 0x4000006au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F15) */ +#define SDLK_F16 0x4000006bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F16) */ +#define SDLK_F17 0x4000006cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F17) */ +#define SDLK_F18 0x4000006du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F18) */ +#define SDLK_F19 0x4000006eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F19) */ +#define SDLK_F20 0x4000006fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F20) */ +#define SDLK_F21 0x40000070u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F21) */ +#define SDLK_F22 0x40000071u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F22) */ +#define SDLK_F23 0x40000072u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F23) */ +#define SDLK_F24 0x40000073u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F24) */ +#define SDLK_EXECUTE 0x40000074u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_EXECUTE) */ +#define SDLK_HELP 0x40000075u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_HELP) */ +#define SDLK_MENU 0x40000076u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MENU) */ +#define SDLK_SELECT 0x40000077u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SELECT) */ +#define SDLK_STOP 0x40000078u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_STOP) */ +#define SDLK_AGAIN 0x40000079u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AGAIN) */ +#define SDLK_UNDO 0x4000007au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_UNDO) */ +#define SDLK_CUT 0x4000007bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CUT) */ +#define SDLK_COPY 0x4000007cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_COPY) */ +#define SDLK_PASTE 0x4000007du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PASTE) */ +#define SDLK_FIND 0x4000007eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_FIND) */ +#define SDLK_MUTE 0x4000007fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MUTE) */ +#define SDLK_VOLUMEUP 0x40000080u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_VOLUMEUP) */ +#define SDLK_VOLUMEDOWN 0x40000081u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_VOLUMEDOWN) */ +#define SDLK_KP_COMMA 0x40000085u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_COMMA) */ +#define SDLK_KP_EQUALSAS400 0x40000086u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EQUALSAS400) */ +#define SDLK_ALTERASE 0x40000099u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_ALTERASE) */ +#define SDLK_SYSREQ 0x4000009au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SYSREQ) */ +#define SDLK_CANCEL 0x4000009bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CANCEL) */ +#define SDLK_CLEAR 0x4000009cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CLEAR) */ +#define SDLK_PRIOR 0x4000009du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PRIOR) */ +#define SDLK_RETURN2 0x4000009eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RETURN2) */ +#define SDLK_SEPARATOR 0x4000009fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SEPARATOR) */ +#define SDLK_OUT 0x400000a0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_OUT) */ +#define SDLK_OPER 0x400000a1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_OPER) */ +#define SDLK_CLEARAGAIN 0x400000a2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CLEARAGAIN) */ +#define SDLK_CRSEL 0x400000a3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CRSEL) */ +#define SDLK_EXSEL 0x400000a4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_EXSEL) */ +#define SDLK_KP_00 0x400000b0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_00) */ +#define SDLK_KP_000 0x400000b1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_000) */ +#define SDLK_THOUSANDSSEPARATOR 0x400000b2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_THOUSANDSSEPARATOR) */ +#define SDLK_DECIMALSEPARATOR 0x400000b3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_DECIMALSEPARATOR) */ +#define SDLK_CURRENCYUNIT 0x400000b4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CURRENCYUNIT) */ +#define SDLK_CURRENCYSUBUNIT 0x400000b5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CURRENCYSUBUNIT) */ +#define SDLK_KP_LEFTPAREN 0x400000b6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LEFTPAREN) */ +#define SDLK_KP_RIGHTPAREN 0x400000b7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_RIGHTPAREN) */ +#define SDLK_KP_LEFTBRACE 0x400000b8u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LEFTBRACE) */ +#define SDLK_KP_RIGHTBRACE 0x400000b9u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_RIGHTBRACE) */ +#define SDLK_KP_TAB 0x400000bau /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_TAB) */ +#define SDLK_KP_BACKSPACE 0x400000bbu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_BACKSPACE) */ +#define SDLK_KP_A 0x400000bcu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_A) */ +#define SDLK_KP_B 0x400000bdu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_B) */ +#define SDLK_KP_C 0x400000beu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_C) */ +#define SDLK_KP_D 0x400000bfu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_D) */ +#define SDLK_KP_E 0x400000c0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_E) */ +#define SDLK_KP_F 0x400000c1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_F) */ +#define SDLK_KP_XOR 0x400000c2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_XOR) */ +#define SDLK_KP_POWER 0x400000c3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_POWER) */ +#define SDLK_KP_PERCENT 0x400000c4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PERCENT) */ +#define SDLK_KP_LESS 0x400000c5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LESS) */ +#define SDLK_KP_GREATER 0x400000c6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_GREATER) */ +#define SDLK_KP_AMPERSAND 0x400000c7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_AMPERSAND) */ +#define SDLK_KP_DBLAMPERSAND 0x400000c8u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DBLAMPERSAND) */ +#define SDLK_KP_VERTICALBAR 0x400000c9u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_VERTICALBAR) */ +#define SDLK_KP_DBLVERTICALBAR 0x400000cau /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DBLVERTICALBAR) */ +#define SDLK_KP_COLON 0x400000cbu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_COLON) */ +#define SDLK_KP_HASH 0x400000ccu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_HASH) */ +#define SDLK_KP_SPACE 0x400000cdu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_SPACE) */ +#define SDLK_KP_AT 0x400000ceu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_AT) */ +#define SDLK_KP_EXCLAM 0x400000cfu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EXCLAM) */ +#define SDLK_KP_MEMSTORE 0x400000d0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMSTORE) */ +#define SDLK_KP_MEMRECALL 0x400000d1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMRECALL) */ +#define SDLK_KP_MEMCLEAR 0x400000d2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMCLEAR) */ +#define SDLK_KP_MEMADD 0x400000d3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMADD) */ +#define SDLK_KP_MEMSUBTRACT 0x400000d4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMSUBTRACT) */ +#define SDLK_KP_MEMMULTIPLY 0x400000d5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMMULTIPLY) */ +#define SDLK_KP_MEMDIVIDE 0x400000d6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMDIVIDE) */ +#define SDLK_KP_PLUSMINUS 0x400000d7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PLUSMINUS) */ +#define SDLK_KP_CLEAR 0x400000d8u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_CLEAR) */ +#define SDLK_KP_CLEARENTRY 0x400000d9u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_CLEARENTRY) */ +#define SDLK_KP_BINARY 0x400000dau /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_BINARY) */ +#define SDLK_KP_OCTAL 0x400000dbu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_OCTAL) */ +#define SDLK_KP_DECIMAL 0x400000dcu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DECIMAL) */ +#define SDLK_KP_HEXADECIMAL 0x400000ddu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_HEXADECIMAL) */ +#define SDLK_LCTRL 0x400000e0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LCTRL) */ +#define SDLK_LSHIFT 0x400000e1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LSHIFT) */ +#define SDLK_LALT 0x400000e2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LALT) */ +#define SDLK_LGUI 0x400000e3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LGUI) */ +#define SDLK_RCTRL 0x400000e4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RCTRL) */ +#define SDLK_RSHIFT 0x400000e5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RSHIFT) */ +#define SDLK_RALT 0x400000e6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RALT) */ +#define SDLK_RGUI 0x400000e7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RGUI) */ +#define SDLK_MODE 0x40000101u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MODE) */ +#define SDLK_SLEEP 0x40000102u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SLEEP) */ +#define SDLK_WAKE 0x40000103u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_WAKE) */ +#define SDLK_CHANNEL_INCREMENT 0x40000104u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CHANNEL_INCREMENT) */ +#define SDLK_CHANNEL_DECREMENT 0x40000105u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CHANNEL_DECREMENT) */ +#define SDLK_MEDIA_PLAY 0x40000106u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PLAY) */ +#define SDLK_MEDIA_PAUSE 0x40000107u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PAUSE) */ +#define SDLK_MEDIA_RECORD 0x40000108u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_RECORD) */ +#define SDLK_MEDIA_FAST_FORWARD 0x40000109u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_FAST_FORWARD) */ +#define SDLK_MEDIA_REWIND 0x4000010au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_REWIND) */ +#define SDLK_MEDIA_NEXT_TRACK 0x4000010bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_NEXT_TRACK) */ +#define SDLK_MEDIA_PREVIOUS_TRACK 0x4000010cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PREVIOUS_TRACK) */ +#define SDLK_MEDIA_STOP 0x4000010du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_STOP) */ +#define SDLK_MEDIA_EJECT 0x4000010eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_EJECT) */ +#define SDLK_MEDIA_PLAY_PAUSE 0x4000010fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PLAY_PAUSE) */ +#define SDLK_MEDIA_SELECT 0x40000110u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_SELECT) */ +#define SDLK_AC_NEW 0x40000111u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_NEW) */ +#define SDLK_AC_OPEN 0x40000112u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_OPEN) */ +#define SDLK_AC_CLOSE 0x40000113u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_CLOSE) */ +#define SDLK_AC_EXIT 0x40000114u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_EXIT) */ +#define SDLK_AC_SAVE 0x40000115u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_SAVE) */ +#define SDLK_AC_PRINT 0x40000116u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_PRINT) */ +#define SDLK_AC_PROPERTIES 0x40000117u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_PROPERTIES) */ +#define SDLK_AC_SEARCH 0x40000118u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_SEARCH) */ +#define SDLK_AC_HOME 0x40000119u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_HOME) */ +#define SDLK_AC_BACK 0x4000011au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_BACK) */ +#define SDLK_AC_FORWARD 0x4000011bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_FORWARD) */ +#define SDLK_AC_STOP 0x4000011cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_STOP) */ +#define SDLK_AC_REFRESH 0x4000011du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_REFRESH) */ +#define SDLK_AC_BOOKMARKS 0x4000011eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_BOOKMARKS) */ +#define SDLK_SOFTLEFT 0x4000011fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SOFTLEFT) */ +#define SDLK_SOFTRIGHT 0x40000120u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SOFTRIGHT) */ +#define SDLK_CALL 0x40000121u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CALL) */ +#define SDLK_ENDCALL 0x40000122u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_ENDCALL) */ +#define SDLK_LEFT_TAB 0x20000001u /**< Extended key Left Tab */ +#define SDLK_LEVEL5_SHIFT 0x20000002u /**< Extended key Level 5 Shift */ +#define SDLK_MULTI_KEY_COMPOSE 0x20000003u /**< Extended key Multi-key Compose */ +#define SDLK_LMETA 0x20000004u /**< Extended key Left Meta */ +#define SDLK_RMETA 0x20000005u /**< Extended key Right Meta */ +#define SDLK_LHYPER 0x20000006u /**< Extended key Left Hyper */ +#define SDLK_RHYPER 0x20000007u /**< Extended key Right Hyper */ + +/** + * Valid key modifiers (possibly OR'd together). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint16 SDL_Keymod; + +#define SDL_KMOD_NONE 0x0000u /**< no modifier is applicable. */ +#define SDL_KMOD_LSHIFT 0x0001u /**< the left Shift key is down. */ +#define SDL_KMOD_RSHIFT 0x0002u /**< the right Shift key is down. */ +#define SDL_KMOD_LEVEL5 0x0004u /**< the Level 5 Shift key is down. */ +#define SDL_KMOD_LCTRL 0x0040u /**< the left Ctrl (Control) key is down. */ +#define SDL_KMOD_RCTRL 0x0080u /**< the right Ctrl (Control) key is down. */ +#define SDL_KMOD_LALT 0x0100u /**< the left Alt key is down. */ +#define SDL_KMOD_RALT 0x0200u /**< the right Alt key is down. */ +#define SDL_KMOD_LGUI 0x0400u /**< the left GUI key (often the Windows key) is down. */ +#define SDL_KMOD_RGUI 0x0800u /**< the right GUI key (often the Windows key) is down. */ +#define SDL_KMOD_NUM 0x1000u /**< the Num Lock key (may be located on an extended keypad) is down. */ +#define SDL_KMOD_CAPS 0x2000u /**< the Caps Lock key is down. */ +#define SDL_KMOD_MODE 0x4000u /**< the !AltGr key is down. */ +#define SDL_KMOD_SCROLL 0x8000u /**< the Scroll Lock key is down. */ +#define SDL_KMOD_CTRL (SDL_KMOD_LCTRL | SDL_KMOD_RCTRL) /**< Any Ctrl key is down. */ +#define SDL_KMOD_SHIFT (SDL_KMOD_LSHIFT | SDL_KMOD_RSHIFT) /**< Any Shift key is down. */ +#define SDL_KMOD_ALT (SDL_KMOD_LALT | SDL_KMOD_RALT) /**< Any Alt key is down. */ +#define SDL_KMOD_GUI (SDL_KMOD_LGUI | SDL_KMOD_RGUI) /**< Any GUI key is down. */ + +#endif /* SDL_keycode_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_loadso.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_loadso.h new file mode 100644 index 0000000..f8649d7 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_loadso.h @@ -0,0 +1,145 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: SharedObject */ + +/** + * # CategorySharedObject + * + * System-dependent library loading routines. + * + * Shared objects are code that is programmatically loadable at runtime. + * Windows calls these "DLLs", Linux calls them "shared libraries", etc. + * + * To use them, build such a library, then call SDL_LoadObject() on it. Once + * loaded, you can use SDL_LoadFunction() on that object to find the address + * of its exported symbols. When done with the object, call SDL_UnloadObject() + * to dispose of it. + * + * Some things to keep in mind: + * + * - These functions only work on C function names. Other languages may have + * name mangling and intrinsic language support that varies from compiler to + * compiler. + * - Make sure you declare your function pointers with the same calling + * convention as the actual library function. Your code will crash + * mysteriously if you do not do this. + * - Avoid namespace collisions. If you load a symbol from the library, it is + * not defined whether or not it goes into the global symbol namespace for + * the application. If it does and it conflicts with symbols in your code or + * other shared libraries, you will not get the results you expect. :) + * - Once a library is unloaded, all pointers into it obtained through + * SDL_LoadFunction() become invalid, even if the library is later reloaded. + * Don't unload a library if you plan to use these pointers in the future. + * Notably: beware of giving one of these pointers to atexit(), since it may + * call that pointer after the library unloads. + */ + +#ifndef SDL_loadso_h_ +#define SDL_loadso_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque datatype that represents a loaded shared object. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_LoadObject + * \sa SDL_LoadFunction + * \sa SDL_UnloadObject + */ +typedef struct SDL_SharedObject SDL_SharedObject; + +/** + * Dynamically load a shared object. + * + * \param sofile a system-dependent name of the object file. + * \returns an opaque pointer to the object handle or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFunction + * \sa SDL_UnloadObject + */ +extern SDL_DECLSPEC SDL_SharedObject * SDLCALL SDL_LoadObject(const char *sofile); + +/** + * Look up the address of the named function in a shared object. + * + * This function pointer is no longer valid after calling SDL_UnloadObject(). + * + * This function can only look up C function names. Other languages may have + * name mangling and intrinsic language support that varies from compiler to + * compiler. + * + * Make sure you declare your function pointers with the same calling + * convention as the actual library function. Your code will crash + * mysteriously if you do not do this. + * + * If the requested function doesn't exist, NULL is returned. + * + * \param handle a valid shared object handle returned by SDL_LoadObject(). + * \param name the name of the function to look up. + * \returns a pointer to the function or NULL on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadObject + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_LoadFunction(SDL_SharedObject *handle, const char *name); + +/** + * Unload a shared object from memory. + * + * Note that any pointers from this object looked up through + * SDL_LoadFunction() will no longer be valid. + * + * \param handle a valid shared object handle returned by SDL_LoadObject(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadObject + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnloadObject(SDL_SharedObject *handle); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_loadso_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_locale.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_locale.h new file mode 100644 index 0000000..902843e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_locale.h @@ -0,0 +1,117 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryLocale + * + * SDL locale services. + * + * This provides a way to get a list of preferred locales (language plus + * country) for the user. There is exactly one function: + * SDL_GetPreferredLocales(), which handles all the heavy lifting, and offers + * documentation on all the strange ways humans might have configured their + * language settings. + */ + +#ifndef SDL_locale_h +#define SDL_locale_h + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +extern "C" { +/* *INDENT-ON* */ +#endif + +/** + * A struct to provide locale data. + * + * Locale data is split into a spoken language, like English, and an optional + * country, like Canada. The language will be in ISO-639 format (so English + * would be "en"), and the country, if not NULL, will be an ISO-3166 country + * code (so Canada would be "CA"). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPreferredLocales + */ +typedef struct SDL_Locale +{ + const char *language; /**< A language name, like "en" for English. */ + const char *country; /**< A country, like "US" for America. Can be NULL. */ +} SDL_Locale; + +/** + * Report the user's preferred locale. + * + * Returned language strings are in the format xx, where 'xx' is an ISO-639 + * language specifier (such as "en" for English, "de" for German, etc). + * Country strings are in the format YY, where "YY" is an ISO-3166 country + * code (such as "US" for the United States, "CA" for Canada, etc). Country + * might be NULL if there's no specific guidance on them (so you might get { + * "en", "US" } for American English, but { "en", NULL } means "English + * language, generically"). Language strings are never NULL, except to + * terminate the array. + * + * Please note that not all of these strings are 2 characters; some are three + * or more. + * + * The returned list of locales are in the order of the user's preference. For + * example, a German citizen that is fluent in US English and knows enough + * Japanese to navigate around Tokyo might have a list like: { "de", "en_US", + * "jp", NULL }. Someone from England might prefer British English (where + * "color" is spelled "colour", etc), but will settle for anything like it: { + * "en_GB", "en", NULL }. + * + * This function returns NULL on error, including when the platform does not + * supply this information at all. + * + * This might be a "slow" call that has to query the operating system. It's + * best to ask for this once and save the results. However, this list can + * change, usually because the user has changed a system preference outside of + * your program; SDL will send an SDL_EVENT_LOCALE_CHANGED event in this case, + * if possible, and you can call this function again to get an updated copy of + * preferred locales. + * + * \param count a pointer filled in with the number of locales returned, may + * be NULL. + * \returns a NULL terminated array of locale pointers, or NULL on failure; + * call SDL_GetError() for more information. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Locale ** SDLCALL SDL_GetPreferredLocales(int *count); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +} +/* *INDENT-ON* */ +#endif +#include + +#endif /* SDL_locale_h */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_log.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_log.h new file mode 100644 index 0000000..3fd7ec2 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_log.h @@ -0,0 +1,538 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryLog + * + * Simple log messages with priorities and categories. A message's + * SDL_LogPriority signifies how important the message is. A message's + * SDL_LogCategory signifies from what domain it belongs to. Every category + * has a minimum priority specified: when a message belongs to that category, + * it will only be sent out if it has that minimum priority or higher. + * + * SDL's own logs are sent below the default priority threshold, so they are + * quiet by default. + * + * You can change the log verbosity programmatically using + * SDL_SetLogPriority() or with SDL_SetHint(SDL_HINT_LOGGING, ...), or with + * the "SDL_LOGGING" environment variable. This variable is a comma separated + * set of category=level tokens that define the default logging levels for SDL + * applications. + * + * The category can be a numeric category, one of "app", "error", "assert", + * "system", "audio", "video", "render", "input", "test", or `*` for any + * unspecified category. + * + * The level can be a numeric level, one of "trace", "verbose", "debug", + * "info", "warn", "error", "critical", or "quiet" to disable that category. + * + * You can omit the category if you want to set the logging level for all + * categories. + * + * If this hint isn't set, the default log levels are equivalent to: + * + * `app=info,assert=warn,test=verbose,*=error` + * + * Here's where the messages go on different platforms: + * + * - Windows: debug output stream + * - Android: log output + * - Others: standard error output (stderr) + * + * You don't need to have a newline (`\n`) on the end of messages, the + * functions will do that for you. For consistent behavior cross-platform, you + * shouldn't have any newlines in messages, such as to log multiple lines in + * one call; unusual platform-specific behavior can be observed in such usage. + * Do one log call per line instead, with no newlines in messages. + * + * Each log call is atomic, so you won't see log messages cut off one another + * when logging from multiple threads. + */ + +#ifndef SDL_log_h_ +#define SDL_log_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The predefined log categories + * + * By default the application and gpu categories are enabled at the INFO + * level, the assert category is enabled at the WARN level, test is enabled at + * the VERBOSE level and all other categories are enabled at the ERROR level. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_LogCategory +{ + SDL_LOG_CATEGORY_APPLICATION, + SDL_LOG_CATEGORY_ERROR, + SDL_LOG_CATEGORY_ASSERT, + SDL_LOG_CATEGORY_SYSTEM, + SDL_LOG_CATEGORY_AUDIO, + SDL_LOG_CATEGORY_VIDEO, + SDL_LOG_CATEGORY_RENDER, + SDL_LOG_CATEGORY_INPUT, + SDL_LOG_CATEGORY_TEST, + SDL_LOG_CATEGORY_GPU, + + /* Reserved for future SDL library use */ + SDL_LOG_CATEGORY_RESERVED2, + SDL_LOG_CATEGORY_RESERVED3, + SDL_LOG_CATEGORY_RESERVED4, + SDL_LOG_CATEGORY_RESERVED5, + SDL_LOG_CATEGORY_RESERVED6, + SDL_LOG_CATEGORY_RESERVED7, + SDL_LOG_CATEGORY_RESERVED8, + SDL_LOG_CATEGORY_RESERVED9, + SDL_LOG_CATEGORY_RESERVED10, + + /* Beyond this point is reserved for application use, e.g. + enum { + MYAPP_CATEGORY_AWESOME1 = SDL_LOG_CATEGORY_CUSTOM, + MYAPP_CATEGORY_AWESOME2, + MYAPP_CATEGORY_AWESOME3, + ... + }; + */ + SDL_LOG_CATEGORY_CUSTOM +} SDL_LogCategory; + +/** + * The predefined log priorities + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_LogPriority +{ + SDL_LOG_PRIORITY_INVALID, + SDL_LOG_PRIORITY_TRACE, + SDL_LOG_PRIORITY_VERBOSE, + SDL_LOG_PRIORITY_DEBUG, + SDL_LOG_PRIORITY_INFO, + SDL_LOG_PRIORITY_WARN, + SDL_LOG_PRIORITY_ERROR, + SDL_LOG_PRIORITY_CRITICAL, + SDL_LOG_PRIORITY_COUNT +} SDL_LogPriority; + + +/** + * Set the priority of all log categories. + * + * \param priority the SDL_LogPriority to assign. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResetLogPriorities + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetLogPriorities(SDL_LogPriority priority); + +/** + * Set the priority of a particular log category. + * + * \param category the category to assign a priority to. + * \param priority the SDL_LogPriority to assign. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetLogPriority + * \sa SDL_ResetLogPriorities + * \sa SDL_SetLogPriorities + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetLogPriority(int category, SDL_LogPriority priority); + +/** + * Get the priority of a particular log category. + * + * \param category the category to query. + * \returns the SDL_LogPriority for the requested category. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC SDL_LogPriority SDLCALL SDL_GetLogPriority(int category); + +/** + * Reset all priorities to default. + * + * This is called by SDL_Quit(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogPriorities + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetLogPriorities(void); + +/** + * Set the text prepended to log messages of a given priority. + * + * By default SDL_LOG_PRIORITY_INFO and below have no prefix, and + * SDL_LOG_PRIORITY_WARN and higher have a prefix showing their priority, e.g. + * "WARNING: ". + * + * \param priority the SDL_LogPriority to modify. + * \param prefix the prefix to use for that log priority, or NULL to use no + * prefix. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogPriorities + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetLogPriorityPrefix(SDL_LogPriority priority, const char *prefix); + +/** + * Log a message with SDL_LOG_CATEGORY_APPLICATION and SDL_LOG_PRIORITY_INFO. + * + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_Log(SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(1); + +/** + * Log a message with SDL_LOG_PRIORITY_TRACE. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogTrace(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_VERBOSE. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogVerbose(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_DEBUG. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogDebug(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_INFO. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogInfo(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_WARN. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogWarn(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_ERROR. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogError(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_CRITICAL. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogCritical(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with the specified category and priority. + * + * \param category the category of the message. + * \param priority the priority of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogMessage(int category, + SDL_LogPriority priority, + SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(3); + +/** + * Log a message with the specified category and priority. + * + * \param category the category of the message. + * \param priority the priority of the message. + * \param fmt a printf() style message format string. + * \param ap a variable argument list. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogMessageV(int category, + SDL_LogPriority priority, + SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(3); + +/** + * The prototype for the log output callback function. + * + * This function is called by SDL when there is new text to be logged. A mutex + * is held so that this function is never called by more than one thread at + * once. + * + * \param userdata what was passed as `userdata` to + * SDL_SetLogOutputFunction(). + * \param category the category of the message. + * \param priority the priority of the message. + * \param message the message being output. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void (SDLCALL *SDL_LogOutputFunction)(void *userdata, int category, SDL_LogPriority priority, const char *message); + +/** + * Get the default log output function. + * + * \returns the default log output callback. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogOutputFunction + * \sa SDL_GetLogOutputFunction + */ +extern SDL_DECLSPEC SDL_LogOutputFunction SDLCALL SDL_GetDefaultLogOutputFunction(void); + +/** + * Get the current log output function. + * + * \param callback an SDL_LogOutputFunction filled in with the current log + * callback. + * \param userdata a pointer filled in with the pointer that is passed to + * `callback`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDefaultLogOutputFunction + * \sa SDL_SetLogOutputFunction + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetLogOutputFunction(SDL_LogOutputFunction *callback, void **userdata); + +/** + * Replace the default log output function with one of your own. + * + * \param callback an SDL_LogOutputFunction to call instead of the default. + * \param userdata a pointer that is passed to `callback`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDefaultLogOutputFunction + * \sa SDL_GetLogOutputFunction + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetLogOutputFunction(SDL_LogOutputFunction callback, void *userdata); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_log_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_main.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_main.h new file mode 100644 index 0000000..905d78e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_main.h @@ -0,0 +1,675 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMain + * + * Redefine main() if necessary so that it is called by SDL. + * + * In order to make this consistent on all platforms, the application's main() + * should look like this: + * + * ```c + * #include + * #include + * + * int main(int argc, char *argv[]) + * { + * } + * ``` + * + * SDL will take care of platform specific details on how it gets called. + * + * This is also where an app can be configured to use the main callbacks, via + * the SDL_MAIN_USE_CALLBACKS macro. + * + * SDL_main.h is a "single-header library," which is to say that including + * this header inserts code into your program, and you should only include it + * once in most cases. SDL.h does not include this header automatically. + * + * For more information, see: + * + * https://wiki.libsdl.org/SDL3/README/main-functions + */ + +#ifndef SDL_main_h_ +#define SDL_main_h_ + +#include +#include +#include +#include + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Inform SDL that the app is providing an entry point instead of SDL. + * + * SDL does not define this macro, but will check if it is defined when + * including `SDL_main.h`. If defined, SDL will expect the app to provide the + * proper entry point for the platform, and all the other magic details + * needed, like manually calling SDL_SetMainReady. + * + * Please see [README/main-functions](README/main-functions), (or + * docs/README-main-functions.md in the source tree) for a more detailed + * explanation. + * + * \since This macro is used by the headers since SDL 3.2.0. + */ +#define SDL_MAIN_HANDLED 1 + +/** + * Inform SDL to use the main callbacks instead of main. + * + * SDL does not define this macro, but will check if it is defined when + * including `SDL_main.h`. If defined, SDL will expect the app to provide + * several functions: SDL_AppInit, SDL_AppEvent, SDL_AppIterate, and + * SDL_AppQuit. The app should not provide a `main` function in this case, and + * doing so will likely cause the build to fail. + * + * Please see [README/main-functions](README/main-functions), (or + * docs/README-main-functions.md in the source tree) for a more detailed + * explanation. + * + * \since This macro is used by the headers since SDL 3.2.0. + * + * \sa SDL_AppInit + * \sa SDL_AppEvent + * \sa SDL_AppIterate + * \sa SDL_AppQuit + */ +#define SDL_MAIN_USE_CALLBACKS 1 + +/** + * Defined if the target platform offers a special mainline through SDL. + * + * This won't be defined otherwise. If defined, SDL's headers will redefine + * `main` to `SDL_main`. + * + * This macro is defined by `SDL_main.h`, which is not automatically included + * by `SDL.h`. + * + * Even if available, an app can define SDL_MAIN_HANDLED and provide their + * own, if they know what they're doing. + * + * This macro is used internally by SDL, and apps probably shouldn't rely on it. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MAIN_AVAILABLE + +/** + * Defined if the target platform _requires_ a special mainline through SDL. + * + * This won't be defined otherwise. If defined, SDL's headers will redefine + * `main` to `SDL_main`. + * + * This macro is defined by `SDL_main.h`, which is not automatically included + * by `SDL.h`. + * + * Even if required, an app can define SDL_MAIN_HANDLED and provide their + * own, if they know what they're doing. + * + * This macro is used internally by SDL, and apps probably shouldn't rely on it. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MAIN_NEEDED + +#endif + +#if defined(__has_include) + #if __has_include("SDL_main_private.h") && __has_include("SDL_main_impl_private.h") + #define SDL_PLATFORM_PRIVATE_MAIN + #endif +#endif + +#ifndef SDL_MAIN_HANDLED + #if defined(SDL_PLATFORM_PRIVATE_MAIN) + /* Private platforms may have their own ideas about entry points. */ + #include "SDL_main_private.h" + + #elif defined(SDL_PLATFORM_WIN32) + /* On Windows SDL provides WinMain(), which parses the command line and passes + the arguments to your main function. + + If you provide your own WinMain(), you may define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #elif defined(SDL_PLATFORM_GDK) + /* On GDK, SDL provides a main function that initializes the game runtime. + + If you prefer to write your own WinMain-function instead of having SDL + provide one that calls your main() function, + #define SDL_MAIN_HANDLED before #include'ing SDL_main.h + and call the SDL_RunApp function from your entry point. + */ + #define SDL_MAIN_NEEDED + + #elif defined(SDL_PLATFORM_IOS) + /* On iOS SDL provides a main function that creates an application delegate + and starts the iOS application run loop. + + To use it, just #include SDL_main.h in the source file that contains your + main() function. + + See src/video/uikit/SDL_uikitappdelegate.m for more details. + */ + #define SDL_MAIN_NEEDED + + #elif defined(SDL_PLATFORM_ANDROID) + /* On Android SDL provides a Java class in SDLActivity.java that is the + main activity entry point. + + See docs/README-android.md for more details on extending that class. + */ + #define SDL_MAIN_NEEDED + + /* As this is launched from Java, the real entry point (main() function) + is outside of the the binary built from this code. + This define makes sure that, unlike on other platforms, SDL_main.h + and SDL_main_impl.h export an `SDL_main()` function (to be called + from Java), but don't implement a native `int main(int argc, char* argv[])` + or similar. + */ + #define SDL_MAIN_EXPORTED + + #elif defined(SDL_PLATFORM_EMSCRIPTEN) + /* On Emscripten, SDL provides a main function that converts URL + parameters that start with "SDL_" to environment variables, so + they can be used as SDL hints, etc. + + This is 100% optional, so if you don't want this to happen, you may + define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #elif defined(SDL_PLATFORM_PSP) + /* On PSP SDL provides a main function that sets the module info, + activates the GPU and starts the thread required to be able to exit + the software. + + If you provide this yourself, you may define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #elif defined(SDL_PLATFORM_PS2) + #define SDL_MAIN_AVAILABLE + + #define SDL_PS2_SKIP_IOP_RESET() \ + void reset_IOP(); \ + void reset_IOP() {} + + #elif defined(SDL_PLATFORM_3DS) + /* + On N3DS, SDL provides a main function that sets up the screens + and storage. + + If you provide this yourself, you may define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #endif +#endif /* SDL_MAIN_HANDLED */ + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to tag a main entry point function as exported. + * + * Most platforms don't need this, and the macro will be defined to nothing. + * Some, like Android, keep the entry points in a shared library and need to + * explicitly export the symbols. + * + * External code rarely needs this, and if it needs something, it's almost + * always SDL_DECLSPEC instead. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_DECLSPEC + */ +#define SDLMAIN_DECLSPEC + +#elif defined(SDL_MAIN_EXPORTED) +/* We need to export SDL_main so it can be launched from external code, + like SDLActivity.java on Android */ +#define SDLMAIN_DECLSPEC SDL_DECLSPEC +#else +/* usually this is empty */ +#define SDLMAIN_DECLSPEC +#endif /* SDL_MAIN_EXPORTED */ + +#if defined(SDL_MAIN_NEEDED) || defined(SDL_MAIN_AVAILABLE) || defined(SDL_MAIN_USE_CALLBACKS) +#define main SDL_main +#endif + +#include +#include +#ifdef __cplusplus +extern "C" { +#endif + +/* + * You can (optionally!) define SDL_MAIN_USE_CALLBACKS before including + * SDL_main.h, and then your application will _not_ have a standard + * "main" entry point. Instead, it will operate as a collection of + * functions that are called as necessary by the system. On some + * platforms, this is just a layer where SDL drives your program + * instead of your program driving SDL, on other platforms this might + * hook into the OS to manage the lifecycle. Programs on most platforms + * can use whichever approach they prefer, but the decision boils down + * to: + * + * - Using a standard "main" function: this works like it always has for + * the past 50+ years in C programming, and your app is in control. + * - Using the callback functions: this might clean up some code, + * avoid some #ifdef blocks in your program for some platforms, be more + * resource-friendly to the system, and possibly be the primary way to + * access some future platforms (but none require this at the moment). + * + * This is up to the app; both approaches are considered valid and supported + * ways to write SDL apps. + * + * If using the callbacks, don't define a "main" function. Instead, implement + * the functions listed below in your program. + */ +#ifdef SDL_MAIN_USE_CALLBACKS + +/** + * App-implemented initial entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called by SDL once, at startup. The function should + * initialize whatever is necessary, possibly create windows and open audio + * devices, etc. The `argc` and `argv` parameters work like they would with a + * standard "main" function. + * + * This function should not go into an infinite mainloop; it should do any + * one-time setup it requires and then return. + * + * The app may optionally assign a pointer to `*appstate`. This pointer will + * be provided on every future call to the other entry points, to allow + * application state to be preserved between functions without the app needing + * to use a global variable. If this isn't set, the pointer will be NULL in + * future entry points. + * + * If this function returns SDL_APP_CONTINUE, the app will proceed to normal + * operation, and will begin receiving repeated calls to SDL_AppIterate and + * SDL_AppEvent for the life of the program. If this function returns + * SDL_APP_FAILURE, SDL will call SDL_AppQuit and terminate the process with + * an exit code that reports an error to the platform. If it returns + * SDL_APP_SUCCESS, SDL calls SDL_AppQuit and terminates with an exit code + * that reports success to the platform. + * + * This function is called by SDL on the main thread. + * + * \param appstate a place where the app can optionally store a pointer for + * future use. + * \param argc the standard ANSI C main's argc; number of elements in `argv`. + * \param argv the standard ANSI C main's argv; array of command line + * arguments. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppIterate + * \sa SDL_AppEvent + * \sa SDL_AppQuit + */ +extern SDLMAIN_DECLSPEC SDL_AppResult SDLCALL SDL_AppInit(void **appstate, int argc, char *argv[]); + +/** + * App-implemented iteration entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called repeatedly by SDL after SDL_AppInit returns 0. The + * function should operate as a single iteration the program's primary loop; + * it should update whatever state it needs and draw a new frame of video, + * usually. + * + * On some platforms, this function will be called at the refresh rate of the + * display (which might change during the life of your app!). There are no + * promises made about what frequency this function might run at. You should + * use SDL's timer functions if you need to see how much time has passed since + * the last iteration. + * + * There is no need to process the SDL event queue during this function; SDL + * will send events as they arrive in SDL_AppEvent, and in most cases the + * event queue will be empty when this function runs anyhow. + * + * This function should not go into an infinite mainloop; it should do one + * iteration of whatever the program does and return. + * + * The `appstate` parameter is an optional pointer provided by the app during + * SDL_AppInit(). If the app never provided a pointer, this will be NULL. + * + * If this function returns SDL_APP_CONTINUE, the app will continue normal + * operation, receiving repeated calls to SDL_AppIterate and SDL_AppEvent for + * the life of the program. If this function returns SDL_APP_FAILURE, SDL will + * call SDL_AppQuit and terminate the process with an exit code that reports + * an error to the platform. If it returns SDL_APP_SUCCESS, SDL calls + * SDL_AppQuit and terminates with an exit code that reports success to the + * platform. + * + * This function is called by SDL on the main thread. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \threadsafety This function may get called concurrently with SDL_AppEvent() + * for events not pushed on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppInit + * \sa SDL_AppEvent + */ +extern SDLMAIN_DECLSPEC SDL_AppResult SDLCALL SDL_AppIterate(void *appstate); + +/** + * App-implemented event entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called as needed by SDL after SDL_AppInit returns + * SDL_APP_CONTINUE. It is called once for each new event. + * + * There is (currently) no guarantee about what thread this will be called + * from; whatever thread pushes an event onto SDL's queue will trigger this + * function. SDL is responsible for pumping the event queue between each call + * to SDL_AppIterate, so in normal operation one should only get events in a + * serial fashion, but be careful if you have a thread that explicitly calls + * SDL_PushEvent. SDL itself will push events to the queue on the main thread. + * + * Events sent to this function are not owned by the app; if you need to save + * the data, you should copy it. + * + * This function should not go into an infinite mainloop; it should handle the + * provided event appropriately and return. + * + * The `appstate` parameter is an optional pointer provided by the app during + * SDL_AppInit(). If the app never provided a pointer, this will be NULL. + * + * If this function returns SDL_APP_CONTINUE, the app will continue normal + * operation, receiving repeated calls to SDL_AppIterate and SDL_AppEvent for + * the life of the program. If this function returns SDL_APP_FAILURE, SDL will + * call SDL_AppQuit and terminate the process with an exit code that reports + * an error to the platform. If it returns SDL_APP_SUCCESS, SDL calls + * SDL_AppQuit and terminates with an exit code that reports success to the + * platform. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param event the new event for the app to examine. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \threadsafety This function may get called concurrently with + * SDL_AppIterate() or SDL_AppQuit() for events not pushed from + * the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppInit + * \sa SDL_AppIterate + */ +extern SDLMAIN_DECLSPEC SDL_AppResult SDLCALL SDL_AppEvent(void *appstate, SDL_Event *event); + +/** + * App-implemented deinit entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called once by SDL before terminating the program. + * + * This function will be called no matter what, even if SDL_AppInit requests + * termination. + * + * This function should not go into an infinite mainloop; it should + * deinitialize any resources necessary, perform whatever shutdown activities, + * and return. + * + * You do not need to call SDL_Quit() in this function, as SDL will call it + * after this function returns and before the process terminates, but it is + * safe to do so. + * + * The `appstate` parameter is an optional pointer provided by the app during + * SDL_AppInit(). If the app never provided a pointer, this will be NULL. This + * function call is the last time this pointer will be provided, so any + * resources to it should be cleaned up here. + * + * This function is called by SDL on the main thread. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param result the result code that terminated the app (success or failure). + * + * \threadsafety SDL_AppEvent() may get called concurrently with this function + * if other threads that push events are still active. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppInit + */ +extern SDLMAIN_DECLSPEC void SDLCALL SDL_AppQuit(void *appstate, SDL_AppResult result); + +#endif /* SDL_MAIN_USE_CALLBACKS */ + + +/** + * The prototype for the application's main() function + * + * \param argc an ANSI-C style main function's argc. + * \param argv an ANSI-C style main function's argv. + * \returns an ANSI-C main return code; generally 0 is considered successful + * program completion, and small non-zero values are considered + * errors. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef int (SDLCALL *SDL_main_func)(int argc, char *argv[]); + +/** + * An app-supplied function for program entry. + * + * Apps do not directly create this function; they should create a standard + * ANSI-C `main` function instead. If SDL needs to insert some startup code + * before `main` runs, or the platform doesn't actually _use_ a function + * called "main", SDL will do some macro magic to redefine `main` to + * `SDL_main` and provide its own `main`. + * + * Apps should include `SDL_main.h` in the same file as their `main` function, + * and they should not use that symbol for anything else in that file, as it + * might get redefined. + * + * This function is only provided by the app if it isn't using + * SDL_MAIN_USE_CALLBACKS. + * + * Program startup is a surprisingly complex topic. Please see + * [README/main-functions](README/main-functions), (or + * docs/README-main-functions.md in the source tree) for a more detailed + * explanation. + * + * \param argc an ANSI-C style main function's argc. + * \param argv an ANSI-C style main function's argv. + * \returns an ANSI-C main return code; generally 0 is considered successful + * program completion, and small non-zero values are considered + * errors. + * + * \threadsafety This is the program entry point. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDLMAIN_DECLSPEC int SDLCALL SDL_main(int argc, char *argv[]); + +/** + * Circumvent failure of SDL_Init() when not using SDL_main() as an entry + * point. + * + * This function is defined in SDL_main.h, along with the preprocessor rule to + * redefine main() as SDL_main(). Thus to ensure that your main() function + * will not be changed it is necessary to define SDL_MAIN_HANDLED before + * including SDL.h. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetMainReady(void); + +/** + * Initializes and launches an SDL application, by doing platform-specific + * initialization before calling your mainFunction and cleanups after it + * returns, if that is needed for a specific platform, otherwise it just calls + * mainFunction. + * + * You can use this if you want to use your own main() implementation without + * using SDL_main (like when using SDL_MAIN_HANDLED). When using this, you do + * *not* need SDL_SetMainReady(). + * + * \param argc the argc parameter from the application's main() function, or 0 + * if the platform's main-equivalent has no argc. + * \param argv the argv parameter from the application's main() function, or + * NULL if the platform's main-equivalent has no argv. + * \param mainFunction your SDL app's C-style main(). NOT the function you're + * calling this from! Its name doesn't matter; it doesn't + * literally have to be `main`. + * \param reserved should be NULL (reserved for future use, will probably be + * platform-specific then). + * \returns the return value from mainFunction: 0 on success, otherwise + * failure; SDL_GetError() might have more information on the + * failure. + * + * \threadsafety Generally this is called once, near startup, from the + * process's initial thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_RunApp(int argc, char *argv[], SDL_main_func mainFunction, void *reserved); + +/** + * An entry point for SDL's use in SDL_MAIN_USE_CALLBACKS. + * + * Generally, you should not call this function directly. This only exists to + * hand off work into SDL as soon as possible, where it has a lot more control + * and functionality available, and make the inline code in SDL_main.h as + * small as possible. + * + * Not all platforms use this, it's actual use is hidden in a magic + * header-only library, and you should not call this directly unless you + * _really_ know what you're doing. + * + * \param argc standard Unix main argc. + * \param argv standard Unix main argv. + * \param appinit the application's SDL_AppInit function. + * \param appiter the application's SDL_AppIterate function. + * \param appevent the application's SDL_AppEvent function. + * \param appquit the application's SDL_AppQuit function. + * \returns standard Unix main return value. + * + * \threadsafety It is not safe to call this anywhere except as the only + * function call in SDL_main. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_EnterAppMainCallbacks(int argc, char *argv[], SDL_AppInit_func appinit, SDL_AppIterate_func appiter, SDL_AppEvent_func appevent, SDL_AppQuit_func appquit); + + +#if defined(SDL_PLATFORM_WINDOWS) + +/** + * Register a win32 window class for SDL's use. + * + * This can be called to set the application window class at startup. It is + * safe to call this multiple times, as long as every call is eventually + * paired with a call to SDL_UnregisterApp, but a second registration attempt + * while a previous registration is still active will be ignored, other than + * to increment a counter. + * + * Most applications do not need to, and should not, call this directly; SDL + * will call it when initializing the video subsystem. + * + * \param name the window class name, in UTF-8 encoding. If NULL, SDL + * currently uses "SDL_app" but this isn't guaranteed. + * \param style the value to use in WNDCLASSEX::style. If `name` is NULL, SDL + * currently uses `(CS_BYTEALIGNCLIENT | CS_OWNDC)` regardless of + * what is specified here. + * \param hInst the HINSTANCE to use in WNDCLASSEX::hInstance. If zero, SDL + * will use `GetModuleHandle(NULL)` instead. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RegisterApp(const char *name, Uint32 style, void *hInst); + +/** + * Deregister the win32 window class from an SDL_RegisterApp call. + * + * This can be called to undo the effects of SDL_RegisterApp. + * + * Most applications do not need to, and should not, call this directly; SDL + * will call it when deinitializing the video subsystem. + * + * It is safe to call this multiple times, as long as every call is eventually + * paired with a prior call to SDL_RegisterApp. The window class will only be + * deregistered when the registration counter in SDL_RegisterApp decrements to + * zero through calls to this function. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnregisterApp(void); + +#endif /* defined(SDL_PLATFORM_WINDOWS) */ + +/** + * Callback from the application to let the suspend continue. + * + * This function is only needed for Xbox GDK support; all other platforms will + * do nothing and set an "unsupported" error message. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_GDKSuspendComplete(void); + +#ifdef __cplusplus +} +#endif + +#include + +#if !defined(SDL_MAIN_HANDLED) && !defined(SDL_MAIN_NOIMPL) + /* include header-only SDL_main implementations */ + #if defined(SDL_MAIN_USE_CALLBACKS) || defined(SDL_MAIN_NEEDED) || defined(SDL_MAIN_AVAILABLE) + /* platforms which main (-equivalent) can be implemented in plain C */ + #include + #endif +#endif + +#endif /* SDL_main_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_main_impl.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_main_impl.h new file mode 100644 index 0000000..14ebb42 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_main_impl.h @@ -0,0 +1,151 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Main */ + +#ifndef SDL_main_impl_h_ +#define SDL_main_impl_h_ + +#ifndef SDL_main_h_ +#error "This header should not be included directly, but only via SDL_main.h!" +#endif + +/* if someone wants to include SDL_main.h but doesn't want the main handing magic, + (maybe to call SDL_RegisterApp()) they can #define SDL_MAIN_HANDLED first. + SDL_MAIN_NOIMPL is for SDL-internal usage (only affects implementation, + not definition of SDL_MAIN_AVAILABLE etc in SDL_main.h) and if the user wants + to have the SDL_main implementation (from this header) in another source file + than their main() function, for example if SDL_main requires C++ + and main() is implemented in plain C */ +#if !defined(SDL_MAIN_HANDLED) && !defined(SDL_MAIN_NOIMPL) + + /* the implementations below must be able to use the implement real main(), nothing renamed + (the user's main() will be renamed to SDL_main so it can be called from here) */ + #ifdef main + #undef main + #endif + + #ifdef SDL_MAIN_USE_CALLBACKS + + #if 0 + /* currently there are no platforms that _need_ a magic entry point here + for callbacks, but if one shows up, implement it here. */ + + #else /* use a standard SDL_main, which the app SHOULD NOT ALSO SUPPLY. */ + + /* this define makes the normal SDL_main entry point stuff work...we just provide SDL_main() instead of the app. */ + #define SDL_MAIN_CALLBACK_STANDARD 1 + + int SDL_main(int argc, char **argv) + { + return SDL_EnterAppMainCallbacks(argc, argv, SDL_AppInit, SDL_AppIterate, SDL_AppEvent, SDL_AppQuit); + } + + #endif /* platform-specific tests */ + + #endif /* SDL_MAIN_USE_CALLBACKS */ + + + /* set up the usual SDL_main stuff if we're not using callbacks or if we are but need the normal entry point, + unless the real entry point needs to be somewhere else entirely, like Android where it's in Java code */ + #if (!defined(SDL_MAIN_USE_CALLBACKS) || defined(SDL_MAIN_CALLBACK_STANDARD)) && !defined(SDL_MAIN_EXPORTED) + + #if defined(SDL_PLATFORM_PRIVATE_MAIN) + /* Private platforms may have their own ideas about entry points. */ + #include "SDL_main_impl_private.h" + + #elif defined(SDL_PLATFORM_WINDOWS) + + /* these defines/typedefs are needed for the WinMain() definition */ + #ifndef WINAPI + #define WINAPI __stdcall + #endif + + typedef struct HINSTANCE__ * HINSTANCE; + typedef char *LPSTR; + typedef wchar_t *PWSTR; + + /* The VC++ compiler needs main/wmain defined, but not for GDK */ + #if defined(_MSC_VER) && !defined(SDL_PLATFORM_GDK) + + /* This is where execution begins [console apps] */ + #if defined(UNICODE) && UNICODE + int wmain(int argc, wchar_t *wargv[], wchar_t *wenvp) + { + (void)argc; + (void)wargv; + (void)wenvp; + return SDL_RunApp(0, NULL, SDL_main, NULL); + } + #else /* ANSI */ + int main(int argc, char *argv[]) + { + (void)argc; + (void)argv; + return SDL_RunApp(0, NULL, SDL_main, NULL); + } + #endif /* UNICODE */ + + #endif /* _MSC_VER && ! SDL_PLATFORM_GDK */ + + /* This is where execution begins [windowed apps and GDK] */ + + #ifdef __cplusplus + extern "C" { + #endif + + #if defined(UNICODE) && UNICODE + int WINAPI wWinMain(HINSTANCE hInst, HINSTANCE hPrev, PWSTR szCmdLine, int sw) + #else /* ANSI */ + int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR szCmdLine, int sw) + #endif + { + (void)hInst; + (void)hPrev; + (void)szCmdLine; + (void)sw; + return SDL_RunApp(0, NULL, SDL_main, NULL); + } + + #ifdef __cplusplus + } /* extern "C" */ + #endif + + /* end of SDL_PLATFORM_WINDOWS impls */ + + #else /* platforms that use a standard main() and just call SDL_RunApp(), like iOS and 3DS */ + int main(int argc, char *argv[]) + { + return SDL_RunApp(argc, argv, SDL_main, NULL); + } + + /* end of impls for standard-conforming platforms */ + + #endif /* SDL_PLATFORM_WIN32 etc */ + + #endif /* !defined(SDL_MAIN_USE_CALLBACKS) || defined(SDL_MAIN_CALLBACK_STANDARD) */ + + /* rename users main() function to SDL_main() so it can be called from the wrappers above */ + #define main SDL_main + +#endif /* SDL_MAIN_HANDLED */ + +#endif /* SDL_main_impl_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_messagebox.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_messagebox.h new file mode 100644 index 0000000..365ae36 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_messagebox.h @@ -0,0 +1,226 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMessagebox + * + * SDL offers a simple message box API, which is useful for simple alerts, + * such as informing the user when something fatal happens at startup without + * the need to build a UI for it (or informing the user _before_ your UI is + * ready). + * + * These message boxes are native system dialogs where possible. + * + * There is both a customizable function (SDL_ShowMessageBox()) that offers + * lots of options for what to display and reports on what choice the user + * made, and also a much-simplified version (SDL_ShowSimpleMessageBox()), + * merely takes a text message and title, and waits until the user presses a + * single "OK" UI button. Often, this is all that is necessary. + */ + +#ifndef SDL_messagebox_h_ +#define SDL_messagebox_h_ + +#include +#include +#include /* For SDL_Window */ + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Message box flags. + * + * If supported will display warning icon, etc. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_MessageBoxFlags; + +#define SDL_MESSAGEBOX_ERROR 0x00000010u /**< error dialog */ +#define SDL_MESSAGEBOX_WARNING 0x00000020u /**< warning dialog */ +#define SDL_MESSAGEBOX_INFORMATION 0x00000040u /**< informational dialog */ +#define SDL_MESSAGEBOX_BUTTONS_LEFT_TO_RIGHT 0x00000080u /**< buttons placed left to right */ +#define SDL_MESSAGEBOX_BUTTONS_RIGHT_TO_LEFT 0x00000100u /**< buttons placed right to left */ + +/** + * SDL_MessageBoxButtonData flags. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_MessageBoxButtonFlags; + +#define SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT 0x00000001u /**< Marks the default button when return is hit */ +#define SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT 0x00000002u /**< Marks the default button when escape is hit */ + +/** + * Individual button data. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxButtonData +{ + SDL_MessageBoxButtonFlags flags; + int buttonID; /**< User defined button id (value returned via SDL_ShowMessageBox) */ + const char *text; /**< The UTF-8 button text */ +} SDL_MessageBoxButtonData; + +/** + * RGB value used in a message box color scheme + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxColor +{ + Uint8 r, g, b; +} SDL_MessageBoxColor; + +/** + * An enumeration of indices inside the colors array of + * SDL_MessageBoxColorScheme. + */ +typedef enum SDL_MessageBoxColorType +{ + SDL_MESSAGEBOX_COLOR_BACKGROUND, + SDL_MESSAGEBOX_COLOR_TEXT, + SDL_MESSAGEBOX_COLOR_BUTTON_BORDER, + SDL_MESSAGEBOX_COLOR_BUTTON_BACKGROUND, + SDL_MESSAGEBOX_COLOR_BUTTON_SELECTED, + SDL_MESSAGEBOX_COLOR_COUNT /**< Size of the colors array of SDL_MessageBoxColorScheme. */ +} SDL_MessageBoxColorType; + +/** + * A set of colors to use for message box dialogs + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxColorScheme +{ + SDL_MessageBoxColor colors[SDL_MESSAGEBOX_COLOR_COUNT]; +} SDL_MessageBoxColorScheme; + +/** + * MessageBox structure containing title, text, window, etc. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxData +{ + SDL_MessageBoxFlags flags; + SDL_Window *window; /**< Parent window, can be NULL */ + const char *title; /**< UTF-8 title */ + const char *message; /**< UTF-8 message text */ + + int numbuttons; + const SDL_MessageBoxButtonData *buttons; + + const SDL_MessageBoxColorScheme *colorScheme; /**< SDL_MessageBoxColorScheme, can be NULL to use system settings */ +} SDL_MessageBoxData; + +/** + * Create a modal message box. + * + * If your needs aren't complex, it might be easier to use + * SDL_ShowSimpleMessageBox. + * + * This function should be called on the thread that created the parent + * window, or on the main thread if the messagebox has no parent. It will + * block execution of that thread until the user clicks a button or closes the + * messagebox. + * + * This function may be called at any time, even before SDL_Init(). This makes + * it useful for reporting errors like a failure to create a renderer or + * OpenGL context. + * + * On X11, SDL rolls its own dialog box with X11 primitives instead of a + * formal toolkit like GTK+ or Qt. + * + * Note that if SDL_Init() would fail because there isn't any available video + * target, this function is likely to fail for the same reasons. If this is a + * concern, check the return value from this function and fall back to writing + * to stderr if you can. + * + * \param messageboxdata the SDL_MessageBoxData structure with title, text and + * other options. + * \param buttonid the pointer to which user id of hit button should be + * copied. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShowSimpleMessageBox + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid); + +/** + * Display a simple modal message box. + * + * If your needs aren't complex, this function is preferred over + * SDL_ShowMessageBox. + * + * `flags` may be any of the following: + * + * - `SDL_MESSAGEBOX_ERROR`: error dialog + * - `SDL_MESSAGEBOX_WARNING`: warning dialog + * - `SDL_MESSAGEBOX_INFORMATION`: informational dialog + * + * This function should be called on the thread that created the parent + * window, or on the main thread if the messagebox has no parent. It will + * block execution of that thread until the user clicks a button or closes the + * messagebox. + * + * This function may be called at any time, even before SDL_Init(). This makes + * it useful for reporting errors like a failure to create a renderer or + * OpenGL context. + * + * On X11, SDL rolls its own dialog box with X11 primitives instead of a + * formal toolkit like GTK+ or Qt. + * + * Note that if SDL_Init() would fail because there isn't any available video + * target, this function is likely to fail for the same reasons. If this is a + * concern, check the return value from this function and fall back to writing + * to stderr if you can. + * + * \param flags an SDL_MessageBoxFlags value. + * \param title UTF-8 title text. + * \param message UTF-8 message text. + * \param window the parent window, or NULL for no parent. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShowMessageBox + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowSimpleMessageBox(SDL_MessageBoxFlags flags, const char *title, const char *message, SDL_Window *window); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_messagebox_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_metal.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_metal.h new file mode 100644 index 0000000..14b1bc8 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_metal.h @@ -0,0 +1,107 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMetal + * + * Functions to creating Metal layers and views on SDL windows. + * + * This provides some platform-specific glue for Apple platforms. Most macOS + * and iOS apps can use SDL without these functions, but this API they can be + * useful for specific OS-level integration tasks. + */ + +#ifndef SDL_metal_h_ +#define SDL_metal_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A handle to a CAMetalLayer-backed NSView (macOS) or UIView (iOS/tvOS). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_MetalView; + +/** + * \name Metal support functions + */ +/* @{ */ + +/** + * Create a CAMetalLayer-backed NSView/UIView and attach it to the specified + * window. + * + * On macOS, this does *not* associate a MTLDevice with the CAMetalLayer on + * its own. It is up to user code to do that. + * + * The returned handle can be casted directly to a NSView or UIView. To access + * the backing CAMetalLayer, call SDL_Metal_GetLayer(). + * + * \param window the window. + * \returns handle NSView or UIView. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Metal_DestroyView + * \sa SDL_Metal_GetLayer + */ +extern SDL_DECLSPEC SDL_MetalView SDLCALL SDL_Metal_CreateView(SDL_Window *window); + +/** + * Destroy an existing SDL_MetalView object. + * + * This should be called before SDL_DestroyWindow, if SDL_Metal_CreateView was + * called after SDL_CreateWindow. + * + * \param view the SDL_MetalView object. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Metal_CreateView + */ +extern SDL_DECLSPEC void SDLCALL SDL_Metal_DestroyView(SDL_MetalView view); + +/** + * Get a pointer to the backing CAMetalLayer for the given view. + * + * \param view the SDL_MetalView object. + * \returns a pointer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_Metal_GetLayer(SDL_MetalView view); + +/* @} *//* Metal support functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_metal_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_misc.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_misc.h new file mode 100644 index 0000000..3dd6fcd --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_misc.h @@ -0,0 +1,78 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMisc + * + * SDL API functions that don't fit elsewhere. + */ + +#ifndef SDL_misc_h_ +#define SDL_misc_h_ + +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Open a URL/URI in the browser or other appropriate external application. + * + * Open a URL in a separate, system-provided application. How this works will + * vary wildly depending on the platform. This will likely launch what makes + * sense to handle a specific URL's protocol (a web browser for `http://`, + * etc), but it might also be able to launch file managers for directories and + * other things. + * + * What happens when you open a URL varies wildly as well: your game window + * may lose focus (and may or may not lose focus if your game was fullscreen + * or grabbing input at the time). On mobile devices, your app will likely + * move to the background or your process might be paused. Any given platform + * may or may not handle a given URL. + * + * If this is unimplemented (or simply unavailable) for a platform, this will + * fail with an error. A successful result does not mean the URL loaded, just + * that we launched _something_ to handle it (or at least believe we did). + * + * All this to say: this function can be useful, but you should definitely + * test it on every platform you target. + * + * \param url a valid URL/URI to open. Use `file:///full/path/to/file` for + * local files, if supported. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_OpenURL(const char *url); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_misc_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_mouse.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_mouse.h new file mode 100644 index 0000000..864135d --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_mouse.h @@ -0,0 +1,689 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMouse + * + * Any GUI application has to deal with the mouse, and SDL provides functions + * to manage mouse input and the displayed cursor. + * + * Most interactions with the mouse will come through the event subsystem. + * Moving a mouse generates an SDL_EVENT_MOUSE_MOTION event, pushing a button + * generates SDL_EVENT_MOUSE_BUTTON_DOWN, etc, but one can also query the + * current state of the mouse at any time with SDL_GetMouseState(). + * + * For certain games, it's useful to disassociate the mouse cursor from mouse + * input. An FPS, for example, would not want the player's motion to stop as + * the mouse hits the edge of the window. For these scenarios, use + * SDL_SetWindowRelativeMouseMode(), which hides the cursor, grabs mouse input + * to the window, and reads mouse input no matter how far it moves. + * + * Games that want the system to track the mouse but want to draw their own + * cursor can use SDL_HideCursor() and SDL_ShowCursor(). It might be more + * efficient to let the system manage the cursor, if possible, using + * SDL_SetCursor() with a custom image made through SDL_CreateColorCursor(), + * or perhaps just a specific system cursor from SDL_CreateSystemCursor(). + * + * SDL can, on many platforms, differentiate between multiple connected mice, + * allowing for interesting input scenarios and multiplayer games. They can be + * enumerated with SDL_GetMice(), and SDL will send SDL_EVENT_MOUSE_ADDED and + * SDL_EVENT_MOUSE_REMOVED events as they are connected and unplugged. + * + * Since many apps only care about basic mouse input, SDL offers a virtual + * mouse device for touch and pen input, which often can make a desktop + * application work on a touchscreen phone without any code changes. Apps that + * care about touch/pen separately from mouse input should filter out events + * with a `which` field of SDL_TOUCH_MOUSEID/SDL_PEN_MOUSEID. + */ + +#ifndef SDL_mouse_h_ +#define SDL_mouse_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a mouse for the time it is connected to the system, + * and is never reused for the lifetime of the application. + * + * If the mouse is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_MouseID; + +/** + * The structure used to identify an SDL cursor. + * + * This is opaque data. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Cursor SDL_Cursor; + +/** + * Cursor types for SDL_CreateSystemCursor(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_SystemCursor +{ + SDL_SYSTEM_CURSOR_DEFAULT, /**< Default cursor. Usually an arrow. */ + SDL_SYSTEM_CURSOR_TEXT, /**< Text selection. Usually an I-beam. */ + SDL_SYSTEM_CURSOR_WAIT, /**< Wait. Usually an hourglass or watch or spinning ball. */ + SDL_SYSTEM_CURSOR_CROSSHAIR, /**< Crosshair. */ + SDL_SYSTEM_CURSOR_PROGRESS, /**< Program is busy but still interactive. Usually it's WAIT with an arrow. */ + SDL_SYSTEM_CURSOR_NWSE_RESIZE, /**< Double arrow pointing northwest and southeast. */ + SDL_SYSTEM_CURSOR_NESW_RESIZE, /**< Double arrow pointing northeast and southwest. */ + SDL_SYSTEM_CURSOR_EW_RESIZE, /**< Double arrow pointing west and east. */ + SDL_SYSTEM_CURSOR_NS_RESIZE, /**< Double arrow pointing north and south. */ + SDL_SYSTEM_CURSOR_MOVE, /**< Four pointed arrow pointing north, south, east, and west. */ + SDL_SYSTEM_CURSOR_NOT_ALLOWED, /**< Not permitted. Usually a slashed circle or crossbones. */ + SDL_SYSTEM_CURSOR_POINTER, /**< Pointer that indicates a link. Usually a pointing hand. */ + SDL_SYSTEM_CURSOR_NW_RESIZE, /**< Window resize top-left. This may be a single arrow or a double arrow like NWSE_RESIZE. */ + SDL_SYSTEM_CURSOR_N_RESIZE, /**< Window resize top. May be NS_RESIZE. */ + SDL_SYSTEM_CURSOR_NE_RESIZE, /**< Window resize top-right. May be NESW_RESIZE. */ + SDL_SYSTEM_CURSOR_E_RESIZE, /**< Window resize right. May be EW_RESIZE. */ + SDL_SYSTEM_CURSOR_SE_RESIZE, /**< Window resize bottom-right. May be NWSE_RESIZE. */ + SDL_SYSTEM_CURSOR_S_RESIZE, /**< Window resize bottom. May be NS_RESIZE. */ + SDL_SYSTEM_CURSOR_SW_RESIZE, /**< Window resize bottom-left. May be NESW_RESIZE. */ + SDL_SYSTEM_CURSOR_W_RESIZE, /**< Window resize left. May be EW_RESIZE. */ + SDL_SYSTEM_CURSOR_COUNT +} SDL_SystemCursor; + +/** + * Scroll direction types for the Scroll event + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_MouseWheelDirection +{ + SDL_MOUSEWHEEL_NORMAL, /**< The scroll direction is normal */ + SDL_MOUSEWHEEL_FLIPPED /**< The scroll direction is flipped / natural */ +} SDL_MouseWheelDirection; + +/** + * A bitmask of pressed mouse buttons, as reported by SDL_GetMouseState, etc. + * + * - Button 1: Left mouse button + * - Button 2: Middle mouse button + * - Button 3: Right mouse button + * - Button 4: Side mouse button 1 + * - Button 5: Side mouse button 2 + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetMouseState + * \sa SDL_GetGlobalMouseState + * \sa SDL_GetRelativeMouseState + */ +typedef Uint32 SDL_MouseButtonFlags; + +#define SDL_BUTTON_LEFT 1 +#define SDL_BUTTON_MIDDLE 2 +#define SDL_BUTTON_RIGHT 3 +#define SDL_BUTTON_X1 4 +#define SDL_BUTTON_X2 5 + +#define SDL_BUTTON_MASK(X) (1u << ((X)-1)) +#define SDL_BUTTON_LMASK SDL_BUTTON_MASK(SDL_BUTTON_LEFT) +#define SDL_BUTTON_MMASK SDL_BUTTON_MASK(SDL_BUTTON_MIDDLE) +#define SDL_BUTTON_RMASK SDL_BUTTON_MASK(SDL_BUTTON_RIGHT) +#define SDL_BUTTON_X1MASK SDL_BUTTON_MASK(SDL_BUTTON_X1) +#define SDL_BUTTON_X2MASK SDL_BUTTON_MASK(SDL_BUTTON_X2) + + +/* Function prototypes */ + +/** + * Return whether a mouse is currently connected. + * + * \returns true if a mouse is connected, false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasMouse(void); + +/** + * Get a list of currently connected mice. + * + * Note that this will include any device or virtual driver that includes + * mouse functionality, including some game controllers, KVM switches, etc. + * You should wait for input from a device before you consider it actively in + * use. + * + * \param count a pointer filled in with the number of mice returned, may be + * NULL. + * \returns a 0 terminated array of mouse instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMouseNameForID + * \sa SDL_HasMouse + */ +extern SDL_DECLSPEC SDL_MouseID * SDLCALL SDL_GetMice(int *count); + +/** + * Get the name of a mouse. + * + * This function returns "" if the mouse doesn't have a name. + * + * \param instance_id the mouse instance ID. + * \returns the name of the selected mouse, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMice + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetMouseNameForID(SDL_MouseID instance_id); + +/** + * Get the window which currently has mouse focus. + * + * \returns the window with mouse focus. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetMouseFocus(void); + +/** + * Query SDL's cache for the synchronous mouse button state and the + * window-relative SDL-cursor position. + * + * This function returns the cached synchronous state as SDL understands it + * from the last pump of the event queue. + * + * To query the platform for immediate asynchronous state, use + * SDL_GetGlobalMouseState. + * + * Passing non-NULL pointers to `x` or `y` will write the destination with + * respective x or y coordinates relative to the focused window. + * + * In Relative Mode, the SDL-cursor's position usually contradicts the + * platform-cursor's position as manually calculated from + * SDL_GetGlobalMouseState() and SDL_GetWindowPosition. + * + * \param x a pointer to receive the SDL-cursor's x-position from the focused + * window's top left corner, can be NULL if unused. + * \param y a pointer to receive the SDL-cursor's y-position from the focused + * window's top left corner, can be NULL if unused. + * \returns a 32-bit bitmask of the button state that can be bitwise-compared + * against the SDL_BUTTON_MASK(X) macro. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGlobalMouseState + * \sa SDL_GetRelativeMouseState + */ +extern SDL_DECLSPEC SDL_MouseButtonFlags SDLCALL SDL_GetMouseState(float *x, float *y); + +/** + * Query the platform for the asynchronous mouse button state and the + * desktop-relative platform-cursor position. + * + * This function immediately queries the platform for the most recent + * asynchronous state, more costly than retrieving SDL's cached state in + * SDL_GetMouseState(). + * + * Passing non-NULL pointers to `x` or `y` will write the destination with + * respective x or y coordinates relative to the desktop. + * + * In Relative Mode, the platform-cursor's position usually contradicts the + * SDL-cursor's position as manually calculated from SDL_GetMouseState() and + * SDL_GetWindowPosition. + * + * This function can be useful if you need to track the mouse outside of a + * specific window and SDL_CaptureMouse() doesn't fit your needs. For example, + * it could be useful if you need to track the mouse while dragging a window, + * where coordinates relative to a window might not be in sync at all times. + * + * \param x a pointer to receive the platform-cursor's x-position from the + * desktop's top left corner, can be NULL if unused. + * \param y a pointer to receive the platform-cursor's y-position from the + * desktop's top left corner, can be NULL if unused. + * \returns a 32-bit bitmask of the button state that can be bitwise-compared + * against the SDL_BUTTON_MASK(X) macro. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CaptureMouse + * \sa SDL_GetMouseState + * \sa SDL_GetGlobalMouseState + */ +extern SDL_DECLSPEC SDL_MouseButtonFlags SDLCALL SDL_GetGlobalMouseState(float *x, float *y); + +/** + * Query SDL's cache for the synchronous mouse button state and accumulated + * mouse delta since last call. + * + * This function returns the cached synchronous state as SDL understands it + * from the last pump of the event queue. + * + * To query the platform for immediate asynchronous state, use + * SDL_GetGlobalMouseState. + * + * Passing non-NULL pointers to `x` or `y` will write the destination with + * respective x or y deltas accumulated since the last call to this function + * (or since event initialization). + * + * This function is useful for reducing overhead by processing relative mouse + * inputs in one go per-frame instead of individually per-event, at the + * expense of losing the order between events within the frame (e.g. quickly + * pressing and releasing a button within the same frame). + * + * \param x a pointer to receive the x mouse delta accumulated since last + * call, can be NULL if unused. + * \param y a pointer to receive the y mouse delta accumulated since last + * call, can be NULL if unused. + * \returns a 32-bit bitmask of the button state that can be bitwise-compared + * against the SDL_BUTTON_MASK(X) macro. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMouseState + * \sa SDL_GetGlobalMouseState + */ +extern SDL_DECLSPEC SDL_MouseButtonFlags SDLCALL SDL_GetRelativeMouseState(float *x, float *y); + +/** + * Move the mouse cursor to the given position within the window. + * + * This function generates a mouse motion event if relative mode is not + * enabled. If relative mode is enabled, you can force mouse events for the + * warp by setting the SDL_HINT_MOUSE_RELATIVE_WARP_MOTION hint. + * + * Note that this function will appear to succeed, but not actually move the + * mouse when used over Microsoft Remote Desktop. + * + * \param window the window to move the mouse into, or NULL for the current + * mouse focus. + * \param x the x coordinate within the window. + * \param y the y coordinate within the window. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WarpMouseGlobal + */ +extern SDL_DECLSPEC void SDLCALL SDL_WarpMouseInWindow(SDL_Window *window, + float x, float y); + +/** + * Move the mouse to the given position in global screen space. + * + * This function generates a mouse motion event. + * + * A failure of this function usually means that it is unsupported by a + * platform. + * + * Note that this function will appear to succeed, but not actually move the + * mouse when used over Microsoft Remote Desktop. + * + * \param x the x coordinate. + * \param y the y coordinate. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WarpMouseInWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WarpMouseGlobal(float x, float y); + +/** + * Set relative mouse mode for a window. + * + * While the window has focus and relative mouse mode is enabled, the cursor + * is hidden, the mouse position is constrained to the window, and SDL will + * report continuous relative mouse motion even if the mouse is at the edge of + * the window. + * + * If you'd like to keep the mouse position fixed while in relative mode you + * can use SDL_SetWindowMouseRect(). If you'd like the cursor to be at a + * specific location when relative mode ends, you should use + * SDL_WarpMouseInWindow() before disabling relative mode. + * + * This function will flush any pending mouse motion for this window. + * + * \param window the window to change. + * \param enabled true to enable relative mode, false to disable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowRelativeMouseMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowRelativeMouseMode(SDL_Window *window, bool enabled); + +/** + * Query whether relative mouse mode is enabled for a window. + * + * \param window the window to query. + * \returns true if relative mode is enabled for a window or false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowRelativeMouseMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowRelativeMouseMode(SDL_Window *window); + +/** + * Capture the mouse and to track input outside an SDL window. + * + * Capturing enables your app to obtain mouse events globally, instead of just + * within your window. Not all video targets support this function. When + * capturing is enabled, the current window will get all mouse events, but + * unlike relative mode, no change is made to the cursor and it is not + * restrained to your window. + * + * This function may also deny mouse input to other windows--both those in + * your application and others on the system--so you should use this function + * sparingly, and in small bursts. For example, you might want to track the + * mouse while the user is dragging something, until the user releases a mouse + * button. It is not recommended that you capture the mouse for long periods + * of time, such as the entire time your app is running. For that, you should + * probably use SDL_SetWindowRelativeMouseMode() or SDL_SetWindowMouseGrab(), + * depending on your goals. + * + * While captured, mouse events still report coordinates relative to the + * current (foreground) window, but those coordinates may be outside the + * bounds of the window (including negative values). Capturing is only allowed + * for the foreground window. If the window loses focus while capturing, the + * capture will be disabled automatically. + * + * While capturing is enabled, the current window will have the + * `SDL_WINDOW_MOUSE_CAPTURE` flag set. + * + * Please note that SDL will attempt to "auto capture" the mouse while the + * user is pressing a button; this is to try and make mouse behavior more + * consistent between platforms, and deal with the common case of a user + * dragging the mouse outside of the window. This means that if you are + * calling SDL_CaptureMouse() only to deal with this situation, you do not + * have to (although it is safe to do so). If this causes problems for your + * app, you can disable auto capture by setting the + * `SDL_HINT_MOUSE_AUTO_CAPTURE` hint to zero. + * + * \param enabled true to enable capturing, false to disable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGlobalMouseState + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CaptureMouse(bool enabled); + +/** + * Create a cursor using the specified bitmap data and mask (in MSB format). + * + * `mask` has to be in MSB (Most Significant Bit) format. + * + * The cursor width (`w`) must be a multiple of 8 bits. + * + * The cursor is created in black and white according to the following: + * + * - data=0, mask=1: white + * - data=1, mask=1: black + * - data=0, mask=0: transparent + * - data=1, mask=0: inverted color if possible, black if not. + * + * Cursors created with this function must be freed with SDL_DestroyCursor(). + * + * If you want to have a color cursor, or create your cursor from an + * SDL_Surface, you should use SDL_CreateColorCursor(). Alternately, you can + * hide the cursor and draw your own as part of your game's rendering, but it + * will be bound to the framerate. + * + * Also, SDL_CreateSystemCursor() is available, which provides several + * readily-available system cursors to pick from. + * + * \param data the color value for each pixel of the cursor. + * \param mask the mask value for each pixel of the cursor. + * \param w the width of the cursor. + * \param h the height of the cursor. + * \param hot_x the x-axis offset from the left of the cursor image to the + * mouse x position, in the range of 0 to `w` - 1. + * \param hot_y the y-axis offset from the top of the cursor image to the + * mouse y position, in the range of 0 to `h` - 1. + * \returns a new cursor with the specified parameters on success or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateColorCursor + * \sa SDL_CreateSystemCursor + * \sa SDL_DestroyCursor + * \sa SDL_SetCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_CreateCursor(const Uint8 *data, + const Uint8 *mask, + int w, int h, int hot_x, + int hot_y); + +/** + * Create a color cursor. + * + * If this function is passed a surface with alternate representations, the + * surface will be interpreted as the content to be used for 100% display + * scale, and the alternate representations will be used for high DPI + * situations. For example, if the original surface is 32x32, then on a 2x + * macOS display or 200% display scale on Windows, a 64x64 version of the + * image will be used, if available. If a matching version of the image isn't + * available, the closest larger size image will be downscaled to the + * appropriate size and be used instead, if available. Otherwise, the closest + * smaller image will be upscaled and be used instead. + * + * \param surface an SDL_Surface structure representing the cursor image. + * \param hot_x the x position of the cursor hot spot. + * \param hot_y the y position of the cursor hot spot. + * \returns the new cursor on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateCursor + * \sa SDL_CreateSystemCursor + * \sa SDL_DestroyCursor + * \sa SDL_SetCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_CreateColorCursor(SDL_Surface *surface, + int hot_x, + int hot_y); + +/** + * Create a system cursor. + * + * \param id an SDL_SystemCursor enum value. + * \returns a cursor on success or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_CreateSystemCursor(SDL_SystemCursor id); + +/** + * Set the active cursor. + * + * This function sets the currently active cursor to the specified one. If the + * cursor is currently visible, the change will be immediately represented on + * the display. SDL_SetCursor(NULL) can be used to force cursor redraw, if + * this is desired for any reason. + * + * \param cursor a cursor to make active. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetCursor(SDL_Cursor *cursor); + +/** + * Get the active cursor. + * + * This function returns a pointer to the current cursor which is owned by the + * library. It is not necessary to free the cursor with SDL_DestroyCursor(). + * + * \returns the active cursor or NULL if there is no mouse. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_GetCursor(void); + +/** + * Get the default cursor. + * + * You do not have to call SDL_DestroyCursor() on the return value, but it is + * safe to do so. + * + * \returns the default cursor on success or NULL on failuree; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_GetDefaultCursor(void); + +/** + * Free a previously-created cursor. + * + * Use this function to free cursor resources created with SDL_CreateCursor(), + * SDL_CreateColorCursor() or SDL_CreateSystemCursor(). + * + * \param cursor the cursor to free. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateColorCursor + * \sa SDL_CreateCursor + * \sa SDL_CreateSystemCursor + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyCursor(SDL_Cursor *cursor); + +/** + * Show the cursor. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CursorVisible + * \sa SDL_HideCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowCursor(void); + +/** + * Hide the cursor. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CursorVisible + * \sa SDL_ShowCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HideCursor(void); + +/** + * Return whether the cursor is currently being shown. + * + * \returns `true` if the cursor is being shown, or `false` if the cursor is + * hidden. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HideCursor + * \sa SDL_ShowCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CursorVisible(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_mouse_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_mutex.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_mutex.h new file mode 100644 index 0000000..c88ec15 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_mutex.h @@ -0,0 +1,1073 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_mutex_h_ +#define SDL_mutex_h_ + +/** + * # CategoryMutex + * + * SDL offers several thread synchronization primitives. This document can't + * cover the complicated topic of thread safety, but reading up on what each + * of these primitives are, why they are useful, and how to correctly use them + * is vital to writing correct and safe multithreaded programs. + * + * - Mutexes: SDL_CreateMutex() + * - Read/Write locks: SDL_CreateRWLock() + * - Semaphores: SDL_CreateSemaphore() + * - Condition variables: SDL_CreateCondition() + * + * SDL also offers a datatype, SDL_InitState, which can be used to make sure + * only one thread initializes/deinitializes some resource that several + * threads might try to use for the first time simultaneously. + */ + +#include +#include +#include +#include + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Enable thread safety attributes, only with clang. + * + * The attributes can be safely erased when compiling with other compilers. + * + * To enable analysis, set these environment variables before running cmake: + * + * ```bash + * export CC=clang + * export CFLAGS="-DSDL_THREAD_SAFETY_ANALYSIS -Wthread-safety" + * ``` + */ +#define SDL_THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) + +#elif defined(SDL_THREAD_SAFETY_ANALYSIS) && defined(__clang__) && (!defined(SWIG)) +#define SDL_THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) +#else +#define SDL_THREAD_ANNOTATION_ATTRIBUTE__(x) /* no-op */ +#endif + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCOPED_CAPABILITY \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(scoped_lockable) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_GUARDED_BY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PT_GUARDED_BY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(pt_guarded_by(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRED_BEFORE(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquired_before(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRED_AFTER(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquired_after(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_REQUIRES(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(requires_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_REQUIRES_SHARED(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(requires_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRE(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquire_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRE_SHARED(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquire_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RELEASE(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(release_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RELEASE_SHARED(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(release_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RELEASE_GENERIC(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(release_generic_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TRY_ACQUIRE(x, y) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_capability(x, y)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TRY_ACQUIRE_SHARED(x, y) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_shared_capability(x, y)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_EXCLUDES(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(locks_excluded(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ASSERT_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(assert_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ASSERT_SHARED_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(assert_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RETURN_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(lock_returned(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NO_THREAD_SAFETY_ANALYSIS \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(no_thread_safety_analysis) + +/******************************************************************************/ + + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \name Mutex functions + */ +/* @{ */ + +/** + * A means to serialize access to a resource between threads. + * + * Mutexes (short for "mutual exclusion") are a synchronization primitive that + * allows exactly one thread to proceed at a time. + * + * Wikipedia has a thorough explanation of the concept: + * + * https://en.wikipedia.org/wiki/Mutex + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Mutex SDL_Mutex; + +/** + * Create a new mutex. + * + * All newly-created mutexes begin in the _unlocked_ state. + * + * Calls to SDL_LockMutex() will not return while the mutex is locked by + * another thread. See SDL_TryLockMutex() to attempt to lock without blocking. + * + * SDL mutexes are reentrant. + * + * \returns the initialized and unlocked mutex or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyMutex + * \sa SDL_LockMutex + * \sa SDL_TryLockMutex + * \sa SDL_UnlockMutex + */ +extern SDL_DECLSPEC SDL_Mutex * SDLCALL SDL_CreateMutex(void); + +/** + * Lock the mutex. + * + * This will block until the mutex is available, which is to say it is in the + * unlocked state and the OS has chosen the caller as the next thread to lock + * it. Of all threads waiting to lock the mutex, only one may do so at a time. + * + * It is legal for the owning thread to lock an already-locked mutex. It must + * unlock it the same number of times before it is actually made available for + * other threads in the system (this is known as a "recursive mutex"). + * + * This function does not fail; if mutex is NULL, it will return immediately + * having locked nothing. If the mutex is valid, this function will always + * block until it can lock the mutex, and return with it locked. + * + * \param mutex the mutex to lock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TryLockMutex + * \sa SDL_UnlockMutex + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockMutex(SDL_Mutex *mutex) SDL_ACQUIRE(mutex); + +/** + * Try to lock a mutex without blocking. + * + * This works just like SDL_LockMutex(), but if the mutex is not available, + * this function returns false immediately. + * + * This technique is useful if you need exclusive access to a resource but + * don't want to wait for it, and will return to it to try again later. + * + * This function returns true if passed a NULL mutex. + * + * \param mutex the mutex to try to lock. + * \returns true on success, false if the mutex would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockMutex + * \sa SDL_UnlockMutex + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockMutex(SDL_Mutex *mutex) SDL_TRY_ACQUIRE(0, mutex); + +/** + * Unlock the mutex. + * + * It is legal for the owning thread to lock an already-locked mutex. It must + * unlock it the same number of times before it is actually made available for + * other threads in the system (this is known as a "recursive mutex"). + * + * It is illegal to unlock a mutex that has not been locked by the current + * thread, and doing so results in undefined behavior. + * + * \param mutex the mutex to unlock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockMutex + * \sa SDL_TryLockMutex + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockMutex(SDL_Mutex *mutex) SDL_RELEASE(mutex); + +/** + * Destroy a mutex created with SDL_CreateMutex(). + * + * This function must be called on any mutex that is no longer needed. Failure + * to destroy a mutex will result in a system memory or resource leak. While + * it is safe to destroy a mutex that is _unlocked_, it is not safe to attempt + * to destroy a locked mutex, and may result in undefined behavior depending + * on the platform. + * + * \param mutex the mutex to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateMutex + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyMutex(SDL_Mutex *mutex); + +/* @} *//* Mutex functions */ + + +/** + * \name Read/write lock functions + */ +/* @{ */ + +/** + * A mutex that allows read-only threads to run in parallel. + * + * A rwlock is roughly the same concept as SDL_Mutex, but allows threads that + * request read-only access to all hold the lock at the same time. If a thread + * requests write access, it will block until all read-only threads have + * released the lock, and no one else can hold the thread (for reading or + * writing) at the same time as the writing thread. + * + * This can be more efficient in cases where several threads need to access + * data frequently, but changes to that data are rare. + * + * There are other rules that apply to rwlocks that don't apply to mutexes, + * about how threads are scheduled and when they can be recursively locked. + * These are documented in the other rwlock functions. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_RWLock SDL_RWLock; + +/** + * Create a new read/write lock. + * + * A read/write lock is useful for situations where you have multiple threads + * trying to access a resource that is rarely updated. All threads requesting + * a read-only lock will be allowed to run in parallel; if a thread requests a + * write lock, it will be provided exclusive access. This makes it safe for + * multiple threads to use a resource at the same time if they promise not to + * change it, and when it has to be changed, the rwlock will serve as a + * gateway to make sure those changes can be made safely. + * + * In the right situation, a rwlock can be more efficient than a mutex, which + * only lets a single thread proceed at a time, even if it won't be modifying + * the data. + * + * All newly-created read/write locks begin in the _unlocked_ state. + * + * Calls to SDL_LockRWLockForReading() and SDL_LockRWLockForWriting will not + * return while the rwlock is locked _for writing_ by another thread. See + * SDL_TryLockRWLockForReading() and SDL_TryLockRWLockForWriting() to attempt + * to lock without blocking. + * + * SDL read/write locks are only recursive for read-only locks! They are not + * guaranteed to be fair, or provide access in a FIFO manner! They are not + * guaranteed to favor writers. You may not lock a rwlock for both read-only + * and write access at the same time from the same thread (so you can't + * promote your read-only lock to a write lock without unlocking first). + * + * \returns the initialized and unlocked read/write lock or NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyRWLock + * \sa SDL_LockRWLockForReading + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC SDL_RWLock * SDLCALL SDL_CreateRWLock(void); + +/** + * Lock the read/write lock for _read only_ operations. + * + * This will block until the rwlock is available, which is to say it is not + * locked for writing by any other thread. Of all threads waiting to lock the + * rwlock, all may do so at the same time as long as they are requesting + * read-only access; if a thread wants to lock for writing, only one may do so + * at a time, and no other threads, read-only or not, may hold the lock at the + * same time. + * + * It is legal for the owning thread to lock an already-locked rwlock for + * reading. It must unlock it the same number of times before it is actually + * made available for other threads in the system (this is known as a + * "recursive rwlock"). + * + * Note that locking for writing is not recursive (this is only available to + * read-only locks). + * + * It is illegal to request a read-only lock from a thread that already holds + * the write lock. Doing so results in undefined behavior. Unlock the write + * lock before requesting a read-only lock. (But, of course, if you have the + * write lock, you don't need further locks to read in any case.) + * + * This function does not fail; if rwlock is NULL, it will return immediately + * having locked nothing. If the rwlock is valid, this function will always + * block until it can lock the mutex, and return with it locked. + * + * \param rwlock the read/write lock to lock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockRWLockForReading(SDL_RWLock *rwlock) SDL_ACQUIRE_SHARED(rwlock); + +/** + * Lock the read/write lock for _write_ operations. + * + * This will block until the rwlock is available, which is to say it is not + * locked for reading or writing by any other thread. Only one thread may hold + * the lock when it requests write access; all other threads, whether they + * also want to write or only want read-only access, must wait until the + * writer thread has released the lock. + * + * It is illegal for the owning thread to lock an already-locked rwlock for + * writing (read-only may be locked recursively, writing can not). Doing so + * results in undefined behavior. + * + * It is illegal to request a write lock from a thread that already holds a + * read-only lock. Doing so results in undefined behavior. Unlock the + * read-only lock before requesting a write lock. + * + * This function does not fail; if rwlock is NULL, it will return immediately + * having locked nothing. If the rwlock is valid, this function will always + * block until it can lock the mutex, and return with it locked. + * + * \param rwlock the read/write lock to lock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockRWLockForWriting(SDL_RWLock *rwlock) SDL_ACQUIRE(rwlock); + +/** + * Try to lock a read/write lock _for reading_ without blocking. + * + * This works just like SDL_LockRWLockForReading(), but if the rwlock is not + * available, then this function returns false immediately. + * + * This technique is useful if you need access to a resource but don't want to + * wait for it, and will return to it to try again later. + * + * Trying to lock for read-only access can succeed if other threads are + * holding read-only locks, as this won't prevent access. + * + * This function returns true if passed a NULL rwlock. + * + * \param rwlock the rwlock to try to lock. + * \returns true on success, false if the lock would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockRWLockForReading(SDL_RWLock *rwlock) SDL_TRY_ACQUIRE_SHARED(0, rwlock); + +/** + * Try to lock a read/write lock _for writing_ without blocking. + * + * This works just like SDL_LockRWLockForWriting(), but if the rwlock is not + * available, then this function returns false immediately. + * + * This technique is useful if you need exclusive access to a resource but + * don't want to wait for it, and will return to it to try again later. + * + * It is illegal for the owning thread to lock an already-locked rwlock for + * writing (read-only may be locked recursively, writing can not). Doing so + * results in undefined behavior. + * + * It is illegal to request a write lock from a thread that already holds a + * read-only lock. Doing so results in undefined behavior. Unlock the + * read-only lock before requesting a write lock. + * + * This function returns true if passed a NULL rwlock. + * + * \param rwlock the rwlock to try to lock. + * \returns true on success, false if the lock would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockRWLockForWriting(SDL_RWLock *rwlock) SDL_TRY_ACQUIRE(0, rwlock); + +/** + * Unlock the read/write lock. + * + * Use this function to unlock the rwlock, whether it was locked for read-only + * or write operations. + * + * It is legal for the owning thread to lock an already-locked read-only lock. + * It must unlock it the same number of times before it is actually made + * available for other threads in the system (this is known as a "recursive + * rwlock"). + * + * It is illegal to unlock a rwlock that has not been locked by the current + * thread, and doing so results in undefined behavior. + * + * \param rwlock the rwlock to unlock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForReading + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockRWLock(SDL_RWLock *rwlock) SDL_RELEASE_GENERIC(rwlock); + +/** + * Destroy a read/write lock created with SDL_CreateRWLock(). + * + * This function must be called on any read/write lock that is no longer + * needed. Failure to destroy a rwlock will result in a system memory or + * resource leak. While it is safe to destroy a rwlock that is _unlocked_, it + * is not safe to attempt to destroy a locked rwlock, and may result in + * undefined behavior depending on the platform. + * + * \param rwlock the rwlock to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRWLock + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyRWLock(SDL_RWLock *rwlock); + +/* @} *//* Read/write lock functions */ + + +/** + * \name Semaphore functions + */ +/* @{ */ + +/** + * A means to manage access to a resource, by count, between threads. + * + * Semaphores (specifically, "counting semaphores"), let X number of threads + * request access at the same time, each thread granted access decrementing a + * counter. When the counter reaches zero, future requests block until a prior + * thread releases their request, incrementing the counter again. + * + * Wikipedia has a thorough explanation of the concept: + * + * https://en.wikipedia.org/wiki/Semaphore_(programming) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Semaphore SDL_Semaphore; + +/** + * Create a semaphore. + * + * This function creates a new semaphore and initializes it with the value + * `initial_value`. Each wait operation on the semaphore will atomically + * decrement the semaphore value and potentially block if the semaphore value + * is 0. Each post operation will atomically increment the semaphore value and + * wake waiting threads and allow them to retry the wait operation. + * + * \param initial_value the starting value of the semaphore. + * \returns a new semaphore or NULL on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySemaphore + * \sa SDL_SignalSemaphore + * \sa SDL_TryWaitSemaphore + * \sa SDL_GetSemaphoreValue + * \sa SDL_WaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC SDL_Semaphore * SDLCALL SDL_CreateSemaphore(Uint32 initial_value); + +/** + * Destroy a semaphore. + * + * It is not safe to destroy a semaphore if there are threads currently + * waiting on it. + * + * \param sem the semaphore to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSemaphore + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroySemaphore(SDL_Semaphore *sem); + +/** + * Wait until a semaphore has a positive value and then decrements it. + * + * This function suspends the calling thread until the semaphore pointed to by + * `sem` has a positive value, and then atomically decrement the semaphore + * value. + * + * This function is the equivalent of calling SDL_WaitSemaphoreTimeout() with + * a time length of -1. + * + * \param sem the semaphore wait on. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalSemaphore + * \sa SDL_TryWaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_WaitSemaphore(SDL_Semaphore *sem); + +/** + * See if a semaphore has a positive value and decrement it if it does. + * + * This function checks to see if the semaphore pointed to by `sem` has a + * positive value and atomically decrements the semaphore value if it does. If + * the semaphore doesn't have a positive value, the function immediately + * returns false. + * + * \param sem the semaphore to wait on. + * \returns true if the wait succeeds, false if the wait would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalSemaphore + * \sa SDL_WaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryWaitSemaphore(SDL_Semaphore *sem); + +/** + * Wait until a semaphore has a positive value and then decrements it. + * + * This function suspends the calling thread until either the semaphore + * pointed to by `sem` has a positive value or the specified time has elapsed. + * If the call is successful it will atomically decrement the semaphore value. + * + * \param sem the semaphore to wait on. + * \param timeoutMS the length of the timeout, in milliseconds, or -1 to wait + * indefinitely. + * \returns true if the wait succeeds or false if the wait times out. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalSemaphore + * \sa SDL_TryWaitSemaphore + * \sa SDL_WaitSemaphore + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitSemaphoreTimeout(SDL_Semaphore *sem, Sint32 timeoutMS); + +/** + * Atomically increment a semaphore's value and wake waiting threads. + * + * \param sem the semaphore to increment. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TryWaitSemaphore + * \sa SDL_WaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_SignalSemaphore(SDL_Semaphore *sem); + +/** + * Get the current value of a semaphore. + * + * \param sem the semaphore to query. + * \returns the current value of the semaphore. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetSemaphoreValue(SDL_Semaphore *sem); + +/* @} *//* Semaphore functions */ + + +/** + * \name Condition variable functions + */ +/* @{ */ + +/** + * A means to block multiple threads until a condition is satisfied. + * + * Condition variables, paired with an SDL_Mutex, let an app halt multiple + * threads until a condition has occurred, at which time the app can release + * one or all waiting threads. + * + * Wikipedia has a thorough explanation of the concept: + * + * https://en.wikipedia.org/wiki/Condition_variable + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Condition SDL_Condition; + +/** + * Create a condition variable. + * + * \returns a new condition variable or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_SignalCondition + * \sa SDL_WaitCondition + * \sa SDL_WaitConditionTimeout + * \sa SDL_DestroyCondition + */ +extern SDL_DECLSPEC SDL_Condition * SDLCALL SDL_CreateCondition(void); + +/** + * Destroy a condition variable. + * + * \param cond the condition variable to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateCondition + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyCondition(SDL_Condition *cond); + +/** + * Restart one of the threads that are waiting on the condition variable. + * + * \param cond the condition variable to signal. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_WaitCondition + * \sa SDL_WaitConditionTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_SignalCondition(SDL_Condition *cond); + +/** + * Restart all threads that are waiting on the condition variable. + * + * \param cond the condition variable to signal. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalCondition + * \sa SDL_WaitCondition + * \sa SDL_WaitConditionTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_BroadcastCondition(SDL_Condition *cond); + +/** + * Wait until a condition variable is signaled. + * + * This function unlocks the specified `mutex` and waits for another thread to + * call SDL_SignalCondition() or SDL_BroadcastCondition() on the condition + * variable `cond`. Once the condition variable is signaled, the mutex is + * re-locked and the function returns. + * + * The mutex must be locked before calling this function. Locking the mutex + * recursively (more than once) is not supported and leads to undefined + * behavior. + * + * This function is the equivalent of calling SDL_WaitConditionTimeout() with + * a time length of -1. + * + * \param cond the condition variable to wait on. + * \param mutex the mutex used to coordinate thread access. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_SignalCondition + * \sa SDL_WaitConditionTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_WaitCondition(SDL_Condition *cond, SDL_Mutex *mutex); + +/** + * Wait until a condition variable is signaled or a certain time has passed. + * + * This function unlocks the specified `mutex` and waits for another thread to + * call SDL_SignalCondition() or SDL_BroadcastCondition() on the condition + * variable `cond`, or for the specified time to elapse. Once the condition + * variable is signaled or the time elapsed, the mutex is re-locked and the + * function returns. + * + * The mutex must be locked before calling this function. Locking the mutex + * recursively (more than once) is not supported and leads to undefined + * behavior. + * + * \param cond the condition variable to wait on. + * \param mutex the mutex used to coordinate thread access. + * \param timeoutMS the maximum time to wait, in milliseconds, or -1 to wait + * indefinitely. + * \returns true if the condition variable is signaled, false if the condition + * is not signaled in the allotted time. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_SignalCondition + * \sa SDL_WaitCondition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitConditionTimeout(SDL_Condition *cond, + SDL_Mutex *mutex, Sint32 timeoutMS); + +/* @} *//* Condition variable functions */ + +/** + * \name Thread-safe initialization state functions + */ +/* @{ */ + +/** + * The current status of an SDL_InitState structure. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_InitStatus +{ + SDL_INIT_STATUS_UNINITIALIZED, + SDL_INIT_STATUS_INITIALIZING, + SDL_INIT_STATUS_INITIALIZED, + SDL_INIT_STATUS_UNINITIALIZING +} SDL_InitStatus; + +/** + * A structure used for thread-safe initialization and shutdown. + * + * Here is an example of using this: + * + * ```c + * static SDL_AtomicInitState init; + * + * bool InitSystem(void) + * { + * if (!SDL_ShouldInit(&init)) { + * // The system is initialized + * return true; + * } + * + * // At this point, you should not leave this function without calling SDL_SetInitialized() + * + * bool initialized = DoInitTasks(); + * SDL_SetInitialized(&init, initialized); + * return initialized; + * } + * + * bool UseSubsystem(void) + * { + * if (SDL_ShouldInit(&init)) { + * // Error, the subsystem isn't initialized + * SDL_SetInitialized(&init, false); + * return false; + * } + * + * // Do work using the initialized subsystem + * + * return true; + * } + * + * void QuitSystem(void) + * { + * if (!SDL_ShouldQuit(&init)) { + * // The system is not initialized + * return; + * } + * + * // At this point, you should not leave this function without calling SDL_SetInitialized() + * + * DoQuitTasks(); + * SDL_SetInitialized(&init, false); + * } + * ``` + * + * Note that this doesn't protect any resources created during initialization, + * or guarantee that nobody is using those resources during cleanup. You + * should use other mechanisms to protect those, if that's a concern for your + * code. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_InitState +{ + SDL_AtomicInt status; + SDL_ThreadID thread; + void *reserved; +} SDL_InitState; + +/** + * Return whether initialization should be done. + * + * This function checks the passed in state and if initialization should be + * done, sets the status to `SDL_INIT_STATUS_INITIALIZING` and returns true. + * If another thread is already modifying this state, it will wait until + * that's done before returning. + * + * If this function returns true, the calling code must call + * SDL_SetInitialized() to complete the initialization. + * + * \param state the initialization state to check. + * \returns true if initialization needs to be done, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetInitialized + * \sa SDL_ShouldQuit + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShouldInit(SDL_InitState *state); + +/** + * Return whether cleanup should be done. + * + * This function checks the passed in state and if cleanup should be done, + * sets the status to `SDL_INIT_STATUS_UNINITIALIZING` and returns true. + * + * If this function returns true, the calling code must call + * SDL_SetInitialized() to complete the cleanup. + * + * \param state the initialization state to check. + * \returns true if cleanup needs to be done, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetInitialized + * \sa SDL_ShouldInit + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShouldQuit(SDL_InitState *state); + +/** + * Finish an initialization state transition. + * + * This function sets the status of the passed in state to + * `SDL_INIT_STATUS_INITIALIZED` or `SDL_INIT_STATUS_UNINITIALIZED` and allows + * any threads waiting for the status to proceed. + * + * \param state the initialization state to check. + * \param initialized the new initialization state. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShouldInit + * \sa SDL_ShouldQuit + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetInitialized(SDL_InitState *state, bool initialized); + +/* @} *//* Thread-safe initialization state functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_mutex_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_oldnames.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_oldnames.h new file mode 100644 index 0000000..c93607e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_oldnames.h @@ -0,0 +1,1327 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * Definitions to ease transition from SDL2 code + */ + +#ifndef SDL_oldnames_h_ +#define SDL_oldnames_h_ + +#include + +/* The new function names are recommended, but if you want to have the + * old names available while you are in the process of migrating code + * to SDL3, you can define `SDL_ENABLE_OLD_NAMES` in your project. + * + * You can use https://github.com/libsdl-org/SDL/blob/main/build-scripts/rename_symbols.py to mass rename the symbols defined here in your codebase: + * rename_symbols.py --all-symbols source_code_path + */ +#ifdef SDL_ENABLE_OLD_NAMES + +/* ##SDL_atomic.h */ +#define SDL_AtomicAdd SDL_AddAtomicInt +#define SDL_AtomicCAS SDL_CompareAndSwapAtomicInt +#define SDL_AtomicCASPtr SDL_CompareAndSwapAtomicPointer +#define SDL_AtomicGet SDL_GetAtomicInt +#define SDL_AtomicGetPtr SDL_GetAtomicPointer +#define SDL_AtomicLock SDL_LockSpinlock +#define SDL_AtomicSet SDL_SetAtomicInt +#define SDL_AtomicSetPtr SDL_SetAtomicPointer +#define SDL_AtomicTryLock SDL_TryLockSpinlock +#define SDL_AtomicUnlock SDL_UnlockSpinlock +#define SDL_atomic_t SDL_AtomicInt + +/* ##SDL_audio.h */ +#define AUDIO_F32 SDL_AUDIO_F32LE +#define AUDIO_F32LSB SDL_AUDIO_F32LE +#define AUDIO_F32MSB SDL_AUDIO_F32BE +#define AUDIO_F32SYS SDL_AUDIO_F32 +#define AUDIO_S16 SDL_AUDIO_S16LE +#define AUDIO_S16LSB SDL_AUDIO_S16LE +#define AUDIO_S16MSB SDL_AUDIO_S16BE +#define AUDIO_S16SYS SDL_AUDIO_S16 +#define AUDIO_S32 SDL_AUDIO_S32LE +#define AUDIO_S32LSB SDL_AUDIO_S32LE +#define AUDIO_S32MSB SDL_AUDIO_S32BE +#define AUDIO_S32SYS SDL_AUDIO_S32 +#define AUDIO_S8 SDL_AUDIO_S8 +#define AUDIO_U8 SDL_AUDIO_U8 +#define SDL_AudioStreamAvailable SDL_GetAudioStreamAvailable +#define SDL_AudioStreamClear SDL_ClearAudioStream +#define SDL_AudioStreamFlush SDL_FlushAudioStream +#define SDL_AudioStreamGet SDL_GetAudioStreamData +#define SDL_AudioStreamPut SDL_PutAudioStreamData +#define SDL_FreeAudioStream SDL_DestroyAudioStream +#define SDL_FreeWAV SDL_free +#define SDL_LoadWAV_RW SDL_LoadWAV_IO +#define SDL_MixAudioFormat SDL_MixAudio +#define SDL_NewAudioStream SDL_CreateAudioStream + +/* ##SDL_cpuinfo.h */ +#define SDL_GetCPUCount SDL_GetNumLogicalCPUCores +#define SDL_SIMDGetAlignment SDL_GetSIMDAlignment + +/* ##SDL_endian.h */ +#define SDL_SwapBE16 SDL_Swap16BE +#define SDL_SwapBE32 SDL_Swap32BE +#define SDL_SwapBE64 SDL_Swap64BE +#define SDL_SwapLE16 SDL_Swap16LE +#define SDL_SwapLE32 SDL_Swap32LE +#define SDL_SwapLE64 SDL_Swap64LE + +/* ##SDL_events.h */ +#define SDL_APP_DIDENTERBACKGROUND SDL_EVENT_DID_ENTER_BACKGROUND +#define SDL_APP_DIDENTERFOREGROUND SDL_EVENT_DID_ENTER_FOREGROUND +#define SDL_APP_LOWMEMORY SDL_EVENT_LOW_MEMORY +#define SDL_APP_TERMINATING SDL_EVENT_TERMINATING +#define SDL_APP_WILLENTERBACKGROUND SDL_EVENT_WILL_ENTER_BACKGROUND +#define SDL_APP_WILLENTERFOREGROUND SDL_EVENT_WILL_ENTER_FOREGROUND +#define SDL_AUDIODEVICEADDED SDL_EVENT_AUDIO_DEVICE_ADDED +#define SDL_AUDIODEVICEREMOVED SDL_EVENT_AUDIO_DEVICE_REMOVED +#define SDL_CLIPBOARDUPDATE SDL_EVENT_CLIPBOARD_UPDATE +#define SDL_CONTROLLERAXISMOTION SDL_EVENT_GAMEPAD_AXIS_MOTION +#define SDL_CONTROLLERBUTTONDOWN SDL_EVENT_GAMEPAD_BUTTON_DOWN +#define SDL_CONTROLLERBUTTONUP SDL_EVENT_GAMEPAD_BUTTON_UP +#define SDL_CONTROLLERDEVICEADDED SDL_EVENT_GAMEPAD_ADDED +#define SDL_CONTROLLERDEVICEREMAPPED SDL_EVENT_GAMEPAD_REMAPPED +#define SDL_CONTROLLERDEVICEREMOVED SDL_EVENT_GAMEPAD_REMOVED +#define SDL_CONTROLLERSENSORUPDATE SDL_EVENT_GAMEPAD_SENSOR_UPDATE +#define SDL_CONTROLLERSTEAMHANDLEUPDATED SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED +#define SDL_CONTROLLERTOUCHPADDOWN SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN +#define SDL_CONTROLLERTOUCHPADMOTION SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION +#define SDL_CONTROLLERTOUCHPADUP SDL_EVENT_GAMEPAD_TOUCHPAD_UP +#define SDL_ControllerAxisEvent SDL_GamepadAxisEvent +#define SDL_ControllerButtonEvent SDL_GamepadButtonEvent +#define SDL_ControllerDeviceEvent SDL_GamepadDeviceEvent +#define SDL_ControllerSensorEvent SDL_GamepadSensorEvent +#define SDL_ControllerTouchpadEvent SDL_GamepadTouchpadEvent +#define SDL_DISPLAYEVENT_CONNECTED SDL_EVENT_DISPLAY_ADDED +#define SDL_DISPLAYEVENT_DISCONNECTED SDL_EVENT_DISPLAY_REMOVED +#define SDL_DISPLAYEVENT_MOVED SDL_EVENT_DISPLAY_MOVED +#define SDL_DISPLAYEVENT_ORIENTATION SDL_EVENT_DISPLAY_ORIENTATION +#define SDL_DROPBEGIN SDL_EVENT_DROP_BEGIN +#define SDL_DROPCOMPLETE SDL_EVENT_DROP_COMPLETE +#define SDL_DROPFILE SDL_EVENT_DROP_FILE +#define SDL_DROPTEXT SDL_EVENT_DROP_TEXT +#define SDL_DelEventWatch SDL_RemoveEventWatch +#define SDL_FINGERDOWN SDL_EVENT_FINGER_DOWN +#define SDL_FINGERMOTION SDL_EVENT_FINGER_MOTION +#define SDL_FINGERUP SDL_EVENT_FINGER_UP +#define SDL_FIRSTEVENT SDL_EVENT_FIRST +#define SDL_JOYAXISMOTION SDL_EVENT_JOYSTICK_AXIS_MOTION +#define SDL_JOYBATTERYUPDATED SDL_EVENT_JOYSTICK_BATTERY_UPDATED +#define SDL_JOYBUTTONDOWN SDL_EVENT_JOYSTICK_BUTTON_DOWN +#define SDL_JOYBUTTONUP SDL_EVENT_JOYSTICK_BUTTON_UP +#define SDL_JOYDEVICEADDED SDL_EVENT_JOYSTICK_ADDED +#define SDL_JOYDEVICEREMOVED SDL_EVENT_JOYSTICK_REMOVED +#define SDL_JOYBALLMOTION SDL_EVENT_JOYSTICK_BALL_MOTION +#define SDL_JOYHATMOTION SDL_EVENT_JOYSTICK_HAT_MOTION +#define SDL_KEYDOWN SDL_EVENT_KEY_DOWN +#define SDL_KEYMAPCHANGED SDL_EVENT_KEYMAP_CHANGED +#define SDL_KEYUP SDL_EVENT_KEY_UP +#define SDL_LASTEVENT SDL_EVENT_LAST +#define SDL_LOCALECHANGED SDL_EVENT_LOCALE_CHANGED +#define SDL_MOUSEBUTTONDOWN SDL_EVENT_MOUSE_BUTTON_DOWN +#define SDL_MOUSEBUTTONUP SDL_EVENT_MOUSE_BUTTON_UP +#define SDL_MOUSEMOTION SDL_EVENT_MOUSE_MOTION +#define SDL_MOUSEWHEEL SDL_EVENT_MOUSE_WHEEL +#define SDL_POLLSENTINEL SDL_EVENT_POLL_SENTINEL +#define SDL_QUIT SDL_EVENT_QUIT +#define SDL_RENDER_DEVICE_RESET SDL_EVENT_RENDER_DEVICE_RESET +#define SDL_RENDER_TARGETS_RESET SDL_EVENT_RENDER_TARGETS_RESET +#define SDL_SENSORUPDATE SDL_EVENT_SENSOR_UPDATE +#define SDL_TEXTEDITING SDL_EVENT_TEXT_EDITING +#define SDL_TEXTEDITING_EXT SDL_EVENT_TEXT_EDITING_EXT +#define SDL_TEXTINPUT SDL_EVENT_TEXT_INPUT +#define SDL_USEREVENT SDL_EVENT_USER +#define SDL_WINDOWEVENT_CLOSE SDL_EVENT_WINDOW_CLOSE_REQUESTED +#define SDL_WINDOWEVENT_DISPLAY_CHANGED SDL_EVENT_WINDOW_DISPLAY_CHANGED +#define SDL_WINDOWEVENT_ENTER SDL_EVENT_WINDOW_MOUSE_ENTER +#define SDL_WINDOWEVENT_EXPOSED SDL_EVENT_WINDOW_EXPOSED +#define SDL_WINDOWEVENT_FOCUS_GAINED SDL_EVENT_WINDOW_FOCUS_GAINED +#define SDL_WINDOWEVENT_FOCUS_LOST SDL_EVENT_WINDOW_FOCUS_LOST +#define SDL_WINDOWEVENT_HIDDEN SDL_EVENT_WINDOW_HIDDEN +#define SDL_WINDOWEVENT_HIT_TEST SDL_EVENT_WINDOW_HIT_TEST +#define SDL_WINDOWEVENT_ICCPROF_CHANGED SDL_EVENT_WINDOW_ICCPROF_CHANGED +#define SDL_WINDOWEVENT_LEAVE SDL_EVENT_WINDOW_MOUSE_LEAVE +#define SDL_WINDOWEVENT_MAXIMIZED SDL_EVENT_WINDOW_MAXIMIZED +#define SDL_WINDOWEVENT_MINIMIZED SDL_EVENT_WINDOW_MINIMIZED +#define SDL_WINDOWEVENT_MOVED SDL_EVENT_WINDOW_MOVED +#define SDL_WINDOWEVENT_RESIZED SDL_EVENT_WINDOW_RESIZED +#define SDL_WINDOWEVENT_RESTORED SDL_EVENT_WINDOW_RESTORED +#define SDL_WINDOWEVENT_SHOWN SDL_EVENT_WINDOW_SHOWN +#define SDL_WINDOWEVENT_SIZE_CHANGED SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED +#define SDL_eventaction SDL_EventAction + +/* ##SDL_gamecontroller.h */ +#define SDL_CONTROLLER_AXIS_INVALID SDL_GAMEPAD_AXIS_INVALID +#define SDL_CONTROLLER_AXIS_LEFTX SDL_GAMEPAD_AXIS_LEFTX +#define SDL_CONTROLLER_AXIS_LEFTY SDL_GAMEPAD_AXIS_LEFTY +#define SDL_CONTROLLER_AXIS_MAX SDL_GAMEPAD_AXIS_COUNT +#define SDL_CONTROLLER_AXIS_RIGHTX SDL_GAMEPAD_AXIS_RIGHTX +#define SDL_CONTROLLER_AXIS_RIGHTY SDL_GAMEPAD_AXIS_RIGHTY +#define SDL_CONTROLLER_AXIS_TRIGGERLEFT SDL_GAMEPAD_AXIS_LEFT_TRIGGER +#define SDL_CONTROLLER_AXIS_TRIGGERRIGHT SDL_GAMEPAD_AXIS_RIGHT_TRIGGER +#define SDL_CONTROLLER_BINDTYPE_AXIS SDL_GAMEPAD_BINDTYPE_AXIS +#define SDL_CONTROLLER_BINDTYPE_BUTTON SDL_GAMEPAD_BINDTYPE_BUTTON +#define SDL_CONTROLLER_BINDTYPE_HAT SDL_GAMEPAD_BINDTYPE_HAT +#define SDL_CONTROLLER_BINDTYPE_NONE SDL_GAMEPAD_BINDTYPE_NONE +#define SDL_CONTROLLER_BUTTON_A SDL_GAMEPAD_BUTTON_SOUTH +#define SDL_CONTROLLER_BUTTON_B SDL_GAMEPAD_BUTTON_EAST +#define SDL_CONTROLLER_BUTTON_BACK SDL_GAMEPAD_BUTTON_BACK +#define SDL_CONTROLLER_BUTTON_DPAD_DOWN SDL_GAMEPAD_BUTTON_DPAD_DOWN +#define SDL_CONTROLLER_BUTTON_DPAD_LEFT SDL_GAMEPAD_BUTTON_DPAD_LEFT +#define SDL_CONTROLLER_BUTTON_DPAD_RIGHT SDL_GAMEPAD_BUTTON_DPAD_RIGHT +#define SDL_CONTROLLER_BUTTON_DPAD_UP SDL_GAMEPAD_BUTTON_DPAD_UP +#define SDL_CONTROLLER_BUTTON_GUIDE SDL_GAMEPAD_BUTTON_GUIDE +#define SDL_CONTROLLER_BUTTON_INVALID SDL_GAMEPAD_BUTTON_INVALID +#define SDL_CONTROLLER_BUTTON_LEFTSHOULDER SDL_GAMEPAD_BUTTON_LEFT_SHOULDER +#define SDL_CONTROLLER_BUTTON_LEFTSTICK SDL_GAMEPAD_BUTTON_LEFT_STICK +#define SDL_CONTROLLER_BUTTON_MAX SDL_GAMEPAD_BUTTON_COUNT +#define SDL_CONTROLLER_BUTTON_MISC1 SDL_GAMEPAD_BUTTON_MISC1 +#define SDL_CONTROLLER_BUTTON_PADDLE1 SDL_GAMEPAD_BUTTON_RIGHT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE2 SDL_GAMEPAD_BUTTON_LEFT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE3 SDL_GAMEPAD_BUTTON_RIGHT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_PADDLE4 SDL_GAMEPAD_BUTTON_LEFT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_RIGHTSHOULDER SDL_GAMEPAD_BUTTON_RIGHT_SHOULDER +#define SDL_CONTROLLER_BUTTON_RIGHTSTICK SDL_GAMEPAD_BUTTON_RIGHT_STICK +#define SDL_CONTROLLER_BUTTON_START SDL_GAMEPAD_BUTTON_START +#define SDL_CONTROLLER_BUTTON_TOUCHPAD SDL_GAMEPAD_BUTTON_TOUCHPAD +#define SDL_CONTROLLER_BUTTON_X SDL_GAMEPAD_BUTTON_WEST +#define SDL_CONTROLLER_BUTTON_Y SDL_GAMEPAD_BUTTON_NORTH +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_LEFT SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_LEFT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_PAIR SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_PAIR +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_PRO +#define SDL_CONTROLLER_TYPE_PS3 SDL_GAMEPAD_TYPE_PS3 +#define SDL_CONTROLLER_TYPE_PS4 SDL_GAMEPAD_TYPE_PS4 +#define SDL_CONTROLLER_TYPE_PS5 SDL_GAMEPAD_TYPE_PS5 +#define SDL_CONTROLLER_TYPE_UNKNOWN SDL_GAMEPAD_TYPE_STANDARD +#define SDL_CONTROLLER_TYPE_VIRTUAL SDL_GAMEPAD_TYPE_VIRTUAL +#define SDL_CONTROLLER_TYPE_XBOX360 SDL_GAMEPAD_TYPE_XBOX360 +#define SDL_CONTROLLER_TYPE_XBOXONE SDL_GAMEPAD_TYPE_XBOXONE +#define SDL_GameController SDL_Gamepad +#define SDL_GameControllerAddMapping SDL_AddGamepadMapping +#define SDL_GameControllerAddMappingsFromFile SDL_AddGamepadMappingsFromFile +#define SDL_GameControllerAddMappingsFromRW SDL_AddGamepadMappingsFromIO +#define SDL_GameControllerAxis SDL_GamepadAxis +#define SDL_GameControllerBindType SDL_GamepadBindingType +#define SDL_GameControllerButton SDL_GamepadButton +#define SDL_GameControllerClose SDL_CloseGamepad +#define SDL_GameControllerFromInstanceID SDL_GetGamepadFromID +#define SDL_GameControllerFromPlayerIndex SDL_GetGamepadFromPlayerIndex +#define SDL_GameControllerGetAppleSFSymbolsNameForAxis SDL_GetGamepadAppleSFSymbolsNameForAxis +#define SDL_GameControllerGetAppleSFSymbolsNameForButton SDL_GetGamepadAppleSFSymbolsNameForButton +#define SDL_GameControllerGetAttached SDL_GamepadConnected +#define SDL_GameControllerGetAxis SDL_GetGamepadAxis +#define SDL_GameControllerGetAxisFromString SDL_GetGamepadAxisFromString +#define SDL_GameControllerGetButton SDL_GetGamepadButton +#define SDL_GameControllerGetButtonFromString SDL_GetGamepadButtonFromString +#define SDL_GameControllerGetFirmwareVersion SDL_GetGamepadFirmwareVersion +#define SDL_GameControllerGetJoystick SDL_GetGamepadJoystick +#define SDL_GameControllerGetNumTouchpadFingers SDL_GetNumGamepadTouchpadFingers +#define SDL_GameControllerGetNumTouchpads SDL_GetNumGamepadTouchpads +#define SDL_GameControllerGetPlayerIndex SDL_GetGamepadPlayerIndex +#define SDL_GameControllerGetProduct SDL_GetGamepadProduct +#define SDL_GameControllerGetProductVersion SDL_GetGamepadProductVersion +#define SDL_GameControllerGetSensorData SDL_GetGamepadSensorData +#define SDL_GameControllerGetSensorDataRate SDL_GetGamepadSensorDataRate +#define SDL_GameControllerGetSerial SDL_GetGamepadSerial +#define SDL_GameControllerGetSteamHandle SDL_GetGamepadSteamHandle +#define SDL_GameControllerGetStringForAxis SDL_GetGamepadStringForAxis +#define SDL_GameControllerGetStringForButton SDL_GetGamepadStringForButton +#define SDL_GameControllerGetTouchpadFinger SDL_GetGamepadTouchpadFinger +#define SDL_GameControllerGetType SDL_GetGamepadType +#define SDL_GameControllerGetVendor SDL_GetGamepadVendor +#define SDL_GameControllerHasAxis SDL_GamepadHasAxis +#define SDL_GameControllerHasButton SDL_GamepadHasButton +#define SDL_GameControllerHasSensor SDL_GamepadHasSensor +#define SDL_GameControllerIsSensorEnabled SDL_GamepadSensorEnabled +#define SDL_GameControllerMapping SDL_GetGamepadMapping +#define SDL_GameControllerMappingForGUID SDL_GetGamepadMappingForGUID +#define SDL_GameControllerName SDL_GetGamepadName +#define SDL_GameControllerOpen SDL_OpenGamepad +#define SDL_GameControllerPath SDL_GetGamepadPath +#define SDL_GameControllerRumble SDL_RumbleGamepad +#define SDL_GameControllerRumbleTriggers SDL_RumbleGamepadTriggers +#define SDL_GameControllerSendEffect SDL_SendGamepadEffect +#define SDL_GameControllerSetLED SDL_SetGamepadLED +#define SDL_GameControllerSetPlayerIndex SDL_SetGamepadPlayerIndex +#define SDL_GameControllerSetSensorEnabled SDL_SetGamepadSensorEnabled +#define SDL_GameControllerType SDL_GamepadType +#define SDL_GameControllerUpdate SDL_UpdateGamepads +#define SDL_INIT_GAMECONTROLLER SDL_INIT_GAMEPAD +#define SDL_IsGameController SDL_IsGamepad + +/* ##SDL_guid.h */ +#define SDL_GUIDFromString SDL_StringToGUID + +/* ##SDL_haptic.h */ +#define SDL_HapticClose SDL_CloseHaptic +#define SDL_HapticDestroyEffect SDL_DestroyHapticEffect +#define SDL_HapticGetEffectStatus SDL_GetHapticEffectStatus +#define SDL_HapticNewEffect SDL_CreateHapticEffect +#define SDL_HapticNumAxes SDL_GetNumHapticAxes +#define SDL_HapticNumEffects SDL_GetMaxHapticEffects +#define SDL_HapticNumEffectsPlaying SDL_GetMaxHapticEffectsPlaying +#define SDL_HapticOpen SDL_OpenHaptic +#define SDL_HapticOpenFromJoystick SDL_OpenHapticFromJoystick +#define SDL_HapticOpenFromMouse SDL_OpenHapticFromMouse +#define SDL_HapticPause SDL_PauseHaptic +#define SDL_HapticQuery SDL_GetHapticFeatures +#define SDL_HapticRumbleInit SDL_InitHapticRumble +#define SDL_HapticRumblePlay SDL_PlayHapticRumble +#define SDL_HapticRumbleStop SDL_StopHapticRumble +#define SDL_HapticRunEffect SDL_RunHapticEffect +#define SDL_HapticSetAutocenter SDL_SetHapticAutocenter +#define SDL_HapticSetGain SDL_SetHapticGain +#define SDL_HapticStopAll SDL_StopHapticEffects +#define SDL_HapticStopEffect SDL_StopHapticEffect +#define SDL_HapticUnpause SDL_ResumeHaptic +#define SDL_HapticUpdateEffect SDL_UpdateHapticEffect +#define SDL_JoystickIsHaptic SDL_IsJoystickHaptic +#define SDL_MouseIsHaptic SDL_IsMouseHaptic + +/* ##SDL_hints.h */ +#define SDL_DelHintCallback SDL_RemoveHintCallback +#define SDL_HINT_ALLOW_TOPMOST SDL_HINT_WINDOW_ALLOW_TOPMOST +#define SDL_HINT_DIRECTINPUT_ENABLED SDL_HINT_JOYSTICK_DIRECTINPUT +#define SDL_HINT_GDK_TEXTINPUT_DEFAULT SDL_HINT_GDK_TEXTINPUT_DEFAULT_TEXT +#define SDL_HINT_JOYSTICK_GAMECUBE_RUMBLE_BRAKE SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE +#define SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_LINUX_DIGITAL_HATS SDL_HINT_JOYSTICK_LINUX_DIGITAL_HATS +#define SDL_HINT_LINUX_HAT_DEADZONES SDL_HINT_JOYSTICK_LINUX_HAT_DEADZONES +#define SDL_HINT_LINUX_JOYSTICK_CLASSIC SDL_HINT_JOYSTICK_LINUX_CLASSIC +#define SDL_HINT_LINUX_JOYSTICK_DEADZONES SDL_HINT_JOYSTICK_LINUX_DEADZONES + +/* ##SDL_joystick.h */ +#define SDL_JOYSTICK_TYPE_GAMECONTROLLER SDL_JOYSTICK_TYPE_GAMEPAD +#define SDL_JoystickAttachVirtualEx SDL_AttachVirtualJoystick +#define SDL_JoystickClose SDL_CloseJoystick +#define SDL_JoystickDetachVirtual SDL_DetachVirtualJoystick +#define SDL_JoystickFromInstanceID SDL_GetJoystickFromID +#define SDL_JoystickFromPlayerIndex SDL_GetJoystickFromPlayerIndex +#define SDL_JoystickGUID SDL_GUID +#define SDL_JoystickGetAttached SDL_JoystickConnected +#define SDL_JoystickGetAxis SDL_GetJoystickAxis +#define SDL_JoystickGetAxisInitialState SDL_GetJoystickAxisInitialState +#define SDL_JoystickGetBall SDL_GetJoystickBall +#define SDL_JoystickGetButton SDL_GetJoystickButton +#define SDL_JoystickGetFirmwareVersion SDL_GetJoystickFirmwareVersion +#define SDL_JoystickGetGUID SDL_GetJoystickGUID +#define SDL_JoystickGetGUIDFromString SDL_StringToGUID +#define SDL_JoystickGetHat SDL_GetJoystickHat +#define SDL_JoystickGetPlayerIndex SDL_GetJoystickPlayerIndex +#define SDL_JoystickGetProduct SDL_GetJoystickProduct +#define SDL_JoystickGetProductVersion SDL_GetJoystickProductVersion +#define SDL_JoystickGetSerial SDL_GetJoystickSerial +#define SDL_JoystickGetType SDL_GetJoystickType +#define SDL_JoystickGetVendor SDL_GetJoystickVendor +#define SDL_JoystickInstanceID SDL_GetJoystickID +#define SDL_JoystickIsVirtual SDL_IsJoystickVirtual +#define SDL_JoystickName SDL_GetJoystickName +#define SDL_JoystickNumAxes SDL_GetNumJoystickAxes +#define SDL_JoystickNumBalls SDL_GetNumJoystickBalls +#define SDL_JoystickNumButtons SDL_GetNumJoystickButtons +#define SDL_JoystickNumHats SDL_GetNumJoystickHats +#define SDL_JoystickOpen SDL_OpenJoystick +#define SDL_JoystickPath SDL_GetJoystickPath +#define SDL_JoystickRumble SDL_RumbleJoystick +#define SDL_JoystickRumbleTriggers SDL_RumbleJoystickTriggers +#define SDL_JoystickSendEffect SDL_SendJoystickEffect +#define SDL_JoystickSetLED SDL_SetJoystickLED +#define SDL_JoystickSetPlayerIndex SDL_SetJoystickPlayerIndex +#define SDL_JoystickSetVirtualAxis SDL_SetJoystickVirtualAxis +#define SDL_JoystickSetVirtualButton SDL_SetJoystickVirtualButton +#define SDL_JoystickSetVirtualHat SDL_SetJoystickVirtualHat +#define SDL_JoystickUpdate SDL_UpdateJoysticks + +/* ##SDL_keyboard.h */ +#define SDL_IsScreenKeyboardShown SDL_ScreenKeyboardShown +#define SDL_IsTextInputActive SDL_TextInputActive + +/* ##SDL_keycode.h */ +#define KMOD_ALT SDL_KMOD_ALT +#define KMOD_CAPS SDL_KMOD_CAPS +#define KMOD_CTRL SDL_KMOD_CTRL +#define KMOD_GUI SDL_KMOD_GUI +#define KMOD_LALT SDL_KMOD_LALT +#define KMOD_LCTRL SDL_KMOD_LCTRL +#define KMOD_LGUI SDL_KMOD_LGUI +#define KMOD_LSHIFT SDL_KMOD_LSHIFT +#define KMOD_MODE SDL_KMOD_MODE +#define KMOD_NONE SDL_KMOD_NONE +#define KMOD_NUM SDL_KMOD_NUM +#define KMOD_RALT SDL_KMOD_RALT +#define KMOD_RCTRL SDL_KMOD_RCTRL +#define KMOD_RGUI SDL_KMOD_RGUI +#define KMOD_RSHIFT SDL_KMOD_RSHIFT +#define KMOD_SCROLL SDL_KMOD_SCROLL +#define KMOD_SHIFT SDL_KMOD_SHIFT +#define SDLK_AUDIOFASTFORWARD SDLK_MEDIA_FAST_FORWARD +#define SDLK_AUDIOMUTE SDLK_MUTE +#define SDLK_AUDIONEXT SDLK_MEDIA_NEXT_TRACK +#define SDLK_AUDIOPLAY SDLK_MEDIA_PLAY +#define SDLK_AUDIOPREV SDLK_MEDIA_PREVIOUS_TRACK +#define SDLK_AUDIOREWIND SDLK_MEDIA_REWIND +#define SDLK_AUDIOSTOP SDLK_MEDIA_STOP +#define SDLK_BACKQUOTE SDLK_GRAVE +#define SDLK_EJECT SDLK_MEDIA_EJECT +#define SDLK_MEDIASELECT SDLK_MEDIA_SELECT +#define SDLK_QUOTE SDLK_APOSTROPHE +#define SDLK_QUOTEDBL SDLK_DBLAPOSTROPHE +#define SDLK_a SDLK_A +#define SDLK_b SDLK_B +#define SDLK_c SDLK_C +#define SDLK_d SDLK_D +#define SDLK_e SDLK_E +#define SDLK_f SDLK_F +#define SDLK_g SDLK_G +#define SDLK_h SDLK_H +#define SDLK_i SDLK_I +#define SDLK_j SDLK_J +#define SDLK_k SDLK_K +#define SDLK_l SDLK_L +#define SDLK_m SDLK_M +#define SDLK_n SDLK_N +#define SDLK_o SDLK_O +#define SDLK_p SDLK_P +#define SDLK_q SDLK_Q +#define SDLK_r SDLK_R +#define SDLK_s SDLK_S +#define SDLK_t SDLK_T +#define SDLK_u SDLK_U +#define SDLK_v SDLK_V +#define SDLK_w SDLK_W +#define SDLK_x SDLK_X +#define SDLK_y SDLK_Y +#define SDLK_z SDLK_Z + +/* ##SDL_log.h */ +#define SDL_LogGetOutputFunction SDL_GetLogOutputFunction +#define SDL_LogGetPriority SDL_GetLogPriority +#define SDL_LogResetPriorities SDL_ResetLogPriorities +#define SDL_LogSetAllPriority SDL_SetLogPriorities +#define SDL_LogSetOutputFunction SDL_SetLogOutputFunction +#define SDL_LogSetPriority SDL_SetLogPriority +#define SDL_NUM_LOG_PRIORITIES SDL_LOG_PRIORITY_COUNT + +/* ##SDL_messagebox.h */ +#define SDL_MESSAGEBOX_COLOR_MAX SDL_MESSAGEBOX_COLOR_COUNT + +/* ##SDL_mouse.h */ +#define SDL_BUTTON SDL_BUTTON_MASK +#define SDL_FreeCursor SDL_DestroyCursor +#define SDL_NUM_SYSTEM_CURSORS SDL_SYSTEM_CURSOR_COUNT +#define SDL_SYSTEM_CURSOR_ARROW SDL_SYSTEM_CURSOR_DEFAULT +#define SDL_SYSTEM_CURSOR_HAND SDL_SYSTEM_CURSOR_POINTER +#define SDL_SYSTEM_CURSOR_IBEAM SDL_SYSTEM_CURSOR_TEXT +#define SDL_SYSTEM_CURSOR_NO SDL_SYSTEM_CURSOR_NOT_ALLOWED +#define SDL_SYSTEM_CURSOR_SIZEALL SDL_SYSTEM_CURSOR_MOVE +#define SDL_SYSTEM_CURSOR_SIZENESW SDL_SYSTEM_CURSOR_NESW_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENS SDL_SYSTEM_CURSOR_NS_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENWSE SDL_SYSTEM_CURSOR_NWSE_RESIZE +#define SDL_SYSTEM_CURSOR_SIZEWE SDL_SYSTEM_CURSOR_EW_RESIZE +#define SDL_SYSTEM_CURSOR_WAITARROW SDL_SYSTEM_CURSOR_PROGRESS +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOM SDL_SYSTEM_CURSOR_S_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMLEFT SDL_SYSTEM_CURSOR_SW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMRIGHT SDL_SYSTEM_CURSOR_SE_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_LEFT SDL_SYSTEM_CURSOR_W_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_RIGHT SDL_SYSTEM_CURSOR_E_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOP SDL_SYSTEM_CURSOR_N_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPLEFT SDL_SYSTEM_CURSOR_NW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPRIGHT SDL_SYSTEM_CURSOR_NE_RESIZE + +/* ##SDL_mutex.h */ +#define SDL_CondBroadcast SDL_BroadcastCondition +#define SDL_CondSignal SDL_SignalCondition +#define SDL_CondWait SDL_WaitCondition +#define SDL_CondWaitTimeout SDL_WaitConditionTimeout +#define SDL_CreateCond SDL_CreateCondition +#define SDL_DestroyCond SDL_DestroyCondition +#define SDL_SemPost SDL_SignalSemaphore +#define SDL_SemTryWait SDL_TryWaitSemaphore +#define SDL_SemValue SDL_GetSemaphoreValue +#define SDL_SemWait SDL_WaitSemaphore +#define SDL_SemWaitTimeout SDL_WaitSemaphoreTimeout + +/* ##SDL_mutex.h */ +#define SDL_cond SDL_Condition +#define SDL_mutex SDL_Mutex +#define SDL_sem SDL_Semaphore + +/* ##SDL_pixels.h */ +#define SDL_AllocFormat SDL_GetPixelFormatDetails +#define SDL_AllocPalette SDL_CreatePalette +#define SDL_Colour SDL_Color +#define SDL_FreePalette SDL_DestroyPalette +#define SDL_MasksToPixelFormatEnum SDL_GetPixelFormatForMasks +#define SDL_PIXELFORMAT_BGR444 SDL_PIXELFORMAT_XBGR4444 +#define SDL_PIXELFORMAT_BGR555 SDL_PIXELFORMAT_XBGR1555 +#define SDL_PIXELFORMAT_BGR888 SDL_PIXELFORMAT_XBGR8888 +#define SDL_PIXELFORMAT_RGB444 SDL_PIXELFORMAT_XRGB4444 +#define SDL_PIXELFORMAT_RGB555 SDL_PIXELFORMAT_XRGB1555 +#define SDL_PIXELFORMAT_RGB888 SDL_PIXELFORMAT_XRGB8888 +#define SDL_PixelFormatEnumToMasks SDL_GetMasksForPixelFormat + +/* ##SDL_rect.h */ +#define SDL_EncloseFPoints SDL_GetRectEnclosingPointsFloat +#define SDL_EnclosePoints SDL_GetRectEnclosingPoints +#define SDL_FRectEmpty SDL_RectEmptyFloat +#define SDL_FRectEquals SDL_RectsEqualFloat +#define SDL_FRectEqualsEpsilon SDL_RectsEqualEpsilon +#define SDL_HasIntersection SDL_HasRectIntersection +#define SDL_HasIntersectionF SDL_HasRectIntersectionFloat +#define SDL_IntersectFRect SDL_GetRectIntersectionFloat +#define SDL_IntersectFRectAndLine SDL_GetRectAndLineIntersectionFloat +#define SDL_IntersectRect SDL_GetRectIntersection +#define SDL_IntersectRectAndLine SDL_GetRectAndLineIntersection +#define SDL_PointInFRect SDL_PointInRectFloat +#define SDL_RectEquals SDL_RectsEqual +#define SDL_UnionFRect SDL_GetRectUnionFloat +#define SDL_UnionRect SDL_GetRectUnion + +/* ##SDL_render.h */ +#define SDL_GetRendererOutputSize SDL_GetCurrentRenderOutputSize +#define SDL_RenderCopy SDL_RenderTexture +#define SDL_RenderCopyEx SDL_RenderTextureRotated +#define SDL_RenderCopyExF SDL_RenderTextureRotated +#define SDL_RenderCopyF SDL_RenderTexture +#define SDL_RenderDrawLine SDL_RenderLine +#define SDL_RenderDrawLineF SDL_RenderLine +#define SDL_RenderDrawLines SDL_RenderLines +#define SDL_RenderDrawLinesF SDL_RenderLines +#define SDL_RenderDrawPoint SDL_RenderPoint +#define SDL_RenderDrawPointF SDL_RenderPoint +#define SDL_RenderDrawPoints SDL_RenderPoints +#define SDL_RenderDrawPointsF SDL_RenderPoints +#define SDL_RenderDrawRect SDL_RenderRect +#define SDL_RenderDrawRectF SDL_RenderRect +#define SDL_RenderDrawRects SDL_RenderRects +#define SDL_RenderDrawRectsF SDL_RenderRects +#define SDL_RenderFillRectF SDL_RenderFillRect +#define SDL_RenderFillRectsF SDL_RenderFillRects +#define SDL_RendererFlip SDL_FlipMode +#define SDL_RenderFlush SDL_FlushRenderer +#define SDL_RenderGetClipRect SDL_GetRenderClipRect +#define SDL_RenderGetLogicalSize SDL_GetRenderLogicalPresentation +#define SDL_RenderGetMetalCommandEncoder SDL_GetRenderMetalCommandEncoder +#define SDL_RenderGetMetalLayer SDL_GetRenderMetalLayer +#define SDL_RenderGetScale SDL_GetRenderScale +#define SDL_RenderGetViewport SDL_GetRenderViewport +#define SDL_RenderGetWindow SDL_GetRenderWindow +#define SDL_RenderIsClipEnabled SDL_RenderClipEnabled +#define SDL_RenderLogicalToWindow SDL_RenderCoordinatesToWindow +#define SDL_RenderSetClipRect SDL_SetRenderClipRect +#define SDL_RenderSetLogicalSize SDL_SetRenderLogicalPresentation +#define SDL_RenderSetScale SDL_SetRenderScale +#define SDL_RenderSetVSync SDL_SetRenderVSync +#define SDL_RenderSetViewport SDL_SetRenderViewport +#define SDL_RenderWindowToLogical SDL_RenderCoordinatesFromWindow +#define SDL_ScaleModeLinear SDL_SCALEMODE_LINEAR +#define SDL_ScaleModeNearest SDL_SCALEMODE_NEAREST + +/* ##SDL_rwops.h */ +#define RW_SEEK_CUR SDL_IO_SEEK_CUR +#define RW_SEEK_END SDL_IO_SEEK_END +#define RW_SEEK_SET SDL_IO_SEEK_SET +#define SDL_RWFromConstMem SDL_IOFromConstMem +#define SDL_RWFromFile SDL_IOFromFile +#define SDL_RWFromMem SDL_IOFromMem +#define SDL_RWclose SDL_CloseIO +#define SDL_RWops SDL_IOStream +#define SDL_RWread SDL_ReadIO +#define SDL_RWseek SDL_SeekIO +#define SDL_RWsize SDL_GetIOSize +#define SDL_RWtell SDL_TellIO +#define SDL_RWwrite SDL_WriteIO +#define SDL_ReadBE16 SDL_ReadU16BE +#define SDL_ReadBE32 SDL_ReadU32BE +#define SDL_ReadBE64 SDL_ReadU64BE +#define SDL_ReadLE16 SDL_ReadU16LE +#define SDL_ReadLE32 SDL_ReadU32LE +#define SDL_ReadLE64 SDL_ReadU64LE +#define SDL_WriteBE16 SDL_WriteU16BE +#define SDL_WriteBE32 SDL_WriteU32BE +#define SDL_WriteBE64 SDL_WriteU64BE +#define SDL_WriteLE16 SDL_WriteU16LE +#define SDL_WriteLE32 SDL_WriteU32LE +#define SDL_WriteLE64 SDL_WriteU64LE + +/* ##SDL_scancode.h */ +#define SDL_NUM_SCANCODES SDL_SCANCODE_COUNT +#define SDL_SCANCODE_AUDIOFASTFORWARD SDL_SCANCODE_MEDIA_FAST_FORWARD +#define SDL_SCANCODE_AUDIOMUTE SDL_SCANCODE_MUTE +#define SDL_SCANCODE_AUDIONEXT SDL_SCANCODE_MEDIA_NEXT_TRACK +#define SDL_SCANCODE_AUDIOPLAY SDL_SCANCODE_MEDIA_PLAY +#define SDL_SCANCODE_AUDIOPREV SDL_SCANCODE_MEDIA_PREVIOUS_TRACK +#define SDL_SCANCODE_AUDIOREWIND SDL_SCANCODE_MEDIA_REWIND +#define SDL_SCANCODE_AUDIOSTOP SDL_SCANCODE_MEDIA_STOP +#define SDL_SCANCODE_EJECT SDL_SCANCODE_MEDIA_EJECT +#define SDL_SCANCODE_MEDIASELECT SDL_SCANCODE_MEDIA_SELECT + +/* ##SDL_sensor.h */ +#define SDL_SensorClose SDL_CloseSensor +#define SDL_SensorFromInstanceID SDL_GetSensorFromID +#define SDL_SensorGetData SDL_GetSensorData +#define SDL_SensorGetInstanceID SDL_GetSensorID +#define SDL_SensorGetName SDL_GetSensorName +#define SDL_SensorGetNonPortableType SDL_GetSensorNonPortableType +#define SDL_SensorGetType SDL_GetSensorType +#define SDL_SensorOpen SDL_OpenSensor +#define SDL_SensorUpdate SDL_UpdateSensors + +/* ##SDL_stdinc.h */ +#define SDL_FALSE false +#define SDL_TABLESIZE SDL_arraysize +#define SDL_TRUE true +#define SDL_bool bool +#define SDL_size_add_overflow SDL_size_add_check_overflow +#define SDL_size_mul_overflow SDL_size_mul_check_overflow +#define SDL_strtokr SDL_strtok_r + +/* ##SDL_surface.h */ +#define SDL_BlitScaled SDL_BlitSurfaceScaled +#define SDL_ConvertSurfaceFormat SDL_ConvertSurface +#define SDL_FillRect SDL_FillSurfaceRect +#define SDL_FillRects SDL_FillSurfaceRects +#define SDL_FreeSurface SDL_DestroySurface +#define SDL_GetClipRect SDL_GetSurfaceClipRect +#define SDL_GetColorKey SDL_GetSurfaceColorKey +#define SDL_HasColorKey SDL_SurfaceHasColorKey +#define SDL_HasSurfaceRLE SDL_SurfaceHasRLE +#define SDL_LoadBMP_RW SDL_LoadBMP_IO +#define SDL_LowerBlit SDL_BlitSurfaceUnchecked +#define SDL_LowerBlitScaled SDL_BlitSurfaceUncheckedScaled +#define SDL_PREALLOC SDL_SURFACE_PREALLOCATED +#define SDL_SIMD_ALIGNED SDL_SURFACE_SIMD_ALIGNED +#define SDL_SaveBMP_RW SDL_SaveBMP_IO +#define SDL_SetClipRect SDL_SetSurfaceClipRect +#define SDL_SetColorKey SDL_SetSurfaceColorKey +#define SDL_UpperBlit SDL_BlitSurface +#define SDL_UpperBlitScaled SDL_BlitSurfaceScaled + +/* ##SDL_system.h */ +#define SDL_AndroidBackButton SDL_SendAndroidBackButton +#define SDL_AndroidGetActivity SDL_GetAndroidActivity +#define SDL_AndroidGetExternalStoragePath SDL_GetAndroidExternalStoragePath +#define SDL_AndroidGetExternalStorageState SDL_GetAndroidExternalStorageState +#define SDL_AndroidGetInternalStoragePath SDL_GetAndroidInternalStoragePath +#define SDL_AndroidGetJNIEnv SDL_GetAndroidJNIEnv +#define SDL_AndroidRequestPermission SDL_RequestAndroidPermission +#define SDL_AndroidRequestPermissionCallback SDL_RequestAndroidPermissionCallback +#define SDL_AndroidSendMessage SDL_SendAndroidMessage +#define SDL_AndroidShowToast SDL_ShowAndroidToast +#define SDL_DXGIGetOutputInfo SDL_GetDXGIOutputInfo +#define SDL_Direct3D9GetAdapterIndex SDL_GetDirect3D9AdapterIndex +#define SDL_GDKGetDefaultUser SDL_GetGDKDefaultUser +#define SDL_GDKGetTaskQueue SDL_GetGDKTaskQueue +#define SDL_LinuxSetThreadPriority SDL_SetLinuxThreadPriority +#define SDL_LinuxSetThreadPriorityAndPolicy SDL_SetLinuxThreadPriorityAndPolicy +#define SDL_OnApplicationDidBecomeActive SDL_OnApplicationDidEnterForeground +#define SDL_OnApplicationWillResignActive SDL_OnApplicationWillEnterBackground +#define SDL_iOSSetAnimationCallback SDL_SetiOSAnimationCallback +#define SDL_iOSSetEventPump SDL_SetiOSEventPump +#define SDL_iPhoneSetAnimationCallback SDL_SetiOSAnimationCallback +#define SDL_iPhoneSetEventPump SDL_SetiOSEventPump + +/* ##SDL_thread.h */ +#define SDL_SetThreadPriority SDL_SetCurrentThreadPriority +#define SDL_TLSCleanup SDL_CleanupTLS +#define SDL_TLSGet SDL_GetTLS +#define SDL_TLSSet SDL_SetTLS +#define SDL_threadID SDL_ThreadID + +/* ##SDL_timer.h */ +#define SDL_GetTicks64 SDL_GetTicks + +/* ##SDL_version.h */ +#define SDL_COMPILEDVERSION SDL_VERSION +#define SDL_PATCHLEVEL SDL_MICRO_VERSION + +/* ##SDL_video.h */ +#define SDL_GL_DeleteContext SDL_GL_DestroyContext +#define SDL_GLattr SDL_GLAttr +#define SDL_GLcontextFlag SDL_GLContextFlag +#define SDL_GLcontextReleaseFlag SDL_GLContextReleaseFlag +#define SDL_GLprofile SDL_GLProfile +#define SDL_GetClosestDisplayMode SDL_GetClosestFullscreenDisplayMode +#define SDL_GetDisplayOrientation SDL_GetCurrentDisplayOrientation +#define SDL_GetPointDisplayIndex SDL_GetDisplayForPoint +#define SDL_GetRectDisplayIndex SDL_GetDisplayForRect +#define SDL_GetWindowDisplayIndex SDL_GetDisplayForWindow +#define SDL_GetWindowDisplayMode SDL_GetWindowFullscreenMode +#define SDL_HasWindowSurface SDL_WindowHasSurface +#define SDL_IsScreenSaverEnabled SDL_ScreenSaverEnabled +#define SDL_SetWindowDisplayMode SDL_SetWindowFullscreenMode +#define SDL_WINDOW_ALLOW_HIGHDPI SDL_WINDOW_HIGH_PIXEL_DENSITY +#define SDL_WINDOW_INPUT_GRABBED SDL_WINDOW_MOUSE_GRABBED +#define SDL_WINDOW_SKIP_TASKBAR SDL_WINDOW_UTILITY + +#elif !defined(SDL_DISABLE_OLD_NAMES) + +/* ##SDL_atomic.h */ +#define SDL_AtomicAdd SDL_AtomicAdd_renamed_SDL_AddAtomicInt +#define SDL_AtomicCAS SDL_AtomicCAS_renamed_SDL_CompareAndSwapAtomicInt +#define SDL_AtomicCASPtr SDL_AtomicCASPtr_renamed_SDL_CompareAndSwapAtomicPointer +#define SDL_AtomicGet SDL_AtomicGet_renamed_SDL_GetAtomicInt +#define SDL_AtomicGetPtr SDL_AtomicGetPtr_renamed_SDL_GetAtomicPointer +#define SDL_AtomicLock SDL_AtomicLock_renamed_SDL_LockSpinlock +#define SDL_AtomicSet SDL_AtomicSet_renamed_SDL_SetAtomicInt +#define SDL_AtomicSetPtr SDL_AtomicSetPtr_renamed_SDL_SetAtomicPointer +#define SDL_AtomicTryLock SDL_AtomicTryLock_renamed_SDL_TryLockSpinlock +#define SDL_AtomicUnlock SDL_AtomicUnlock_renamed_SDL_UnlockSpinlock +#define SDL_atomic_t SDL_atomic_t_renamed_SDL_AtomicInt + +/* ##SDL_audio.h */ +#define AUDIO_F32 AUDIO_F32_renamed_SDL_AUDIO_F32LE +#define AUDIO_F32LSB AUDIO_F32LSB_renamed_SDL_AUDIO_F32LE +#define AUDIO_F32MSB AUDIO_F32MSB_renamed_SDL_AUDIO_F32BE +#define AUDIO_F32SYS AUDIO_F32SYS_renamed_SDL_AUDIO_F32 +#define AUDIO_S16 AUDIO_S16_renamed_SDL_AUDIO_S16LE +#define AUDIO_S16LSB AUDIO_S16LSB_renamed_SDL_AUDIO_S16LE +#define AUDIO_S16MSB AUDIO_S16MSB_renamed_SDL_AUDIO_S16BE +#define AUDIO_S16SYS AUDIO_S16SYS_renamed_SDL_AUDIO_S16 +#define AUDIO_S32 AUDIO_S32_renamed_SDL_AUDIO_S32LE +#define AUDIO_S32LSB AUDIO_S32LSB_renamed_SDL_AUDIO_S32LE +#define AUDIO_S32MSB AUDIO_S32MSB_renamed_SDL_AUDIO_S32BE +#define AUDIO_S32SYS AUDIO_S32SYS_renamed_SDL_AUDIO_S32 +#define AUDIO_S8 AUDIO_S8_renamed_SDL_AUDIO_S8 +#define AUDIO_U8 AUDIO_U8_renamed_SDL_AUDIO_U8 +#define SDL_AudioStreamAvailable SDL_AudioStreamAvailable_renamed_SDL_GetAudioStreamAvailable +#define SDL_AudioStreamClear SDL_AudioStreamClear_renamed_SDL_ClearAudioStream +#define SDL_AudioStreamFlush SDL_AudioStreamFlush_renamed_SDL_FlushAudioStream +#define SDL_AudioStreamGet SDL_AudioStreamGet_renamed_SDL_GetAudioStreamData +#define SDL_AudioStreamPut SDL_AudioStreamPut_renamed_SDL_PutAudioStreamData +#define SDL_FreeAudioStream SDL_FreeAudioStream_renamed_SDL_DestroyAudioStream +#define SDL_FreeWAV SDL_FreeWAV_renamed_SDL_free +#define SDL_LoadWAV_RW SDL_LoadWAV_RW_renamed_SDL_LoadWAV_IO +#define SDL_MixAudioFormat SDL_MixAudioFormat_renamed_SDL_MixAudio +#define SDL_NewAudioStream SDL_NewAudioStream_renamed_SDL_CreateAudioStream + +/* ##SDL_cpuinfo.h */ +#define SDL_GetCPUCount SDL_GetCPUCount_renamed_SDL_GetNumLogicalCPUCores +#define SDL_SIMDGetAlignment SDL_SIMDGetAlignment_renamed_SDL_GetSIMDAlignment + +/* ##SDL_endian.h */ +#define SDL_SwapBE16 SDL_SwapBE16_renamed_SDL_Swap16BE +#define SDL_SwapBE32 SDL_SwapBE32_renamed_SDL_Swap32BE +#define SDL_SwapBE64 SDL_SwapBE64_renamed_SDL_Swap64BE +#define SDL_SwapLE16 SDL_SwapLE16_renamed_SDL_Swap16LE +#define SDL_SwapLE32 SDL_SwapLE32_renamed_SDL_Swap32LE +#define SDL_SwapLE64 SDL_SwapLE64_renamed_SDL_Swap64LE + +/* ##SDL_events.h */ +#define SDL_APP_DIDENTERBACKGROUND SDL_APP_DIDENTERBACKGROUND_renamed_SDL_EVENT_DID_ENTER_BACKGROUND +#define SDL_APP_DIDENTERFOREGROUND SDL_APP_DIDENTERFOREGROUND_renamed_SDL_EVENT_DID_ENTER_FOREGROUND +#define SDL_APP_LOWMEMORY SDL_APP_LOWMEMORY_renamed_SDL_EVENT_LOW_MEMORY +#define SDL_APP_TERMINATING SDL_APP_TERMINATING_renamed_SDL_EVENT_TERMINATING +#define SDL_APP_WILLENTERBACKGROUND SDL_APP_WILLENTERBACKGROUND_renamed_SDL_EVENT_WILL_ENTER_BACKGROUND +#define SDL_APP_WILLENTERFOREGROUND SDL_APP_WILLENTERFOREGROUND_renamed_SDL_EVENT_WILL_ENTER_FOREGROUND +#define SDL_AUDIODEVICEADDED SDL_AUDIODEVICEADDED_renamed_SDL_EVENT_AUDIO_DEVICE_ADDED +#define SDL_AUDIODEVICEREMOVED SDL_AUDIODEVICEREMOVED_renamed_SDL_EVENT_AUDIO_DEVICE_REMOVED +#define SDL_CLIPBOARDUPDATE SDL_CLIPBOARDUPDATE_renamed_SDL_EVENT_CLIPBOARD_UPDATE +#define SDL_CONTROLLERAXISMOTION SDL_CONTROLLERAXISMOTION_renamed_SDL_EVENT_GAMEPAD_AXIS_MOTION +#define SDL_CONTROLLERBUTTONDOWN SDL_CONTROLLERBUTTONDOWN_renamed_SDL_EVENT_GAMEPAD_BUTTON_DOWN +#define SDL_CONTROLLERBUTTONUP SDL_CONTROLLERBUTTONUP_renamed_SDL_EVENT_GAMEPAD_BUTTON_UP +#define SDL_CONTROLLERDEVICEADDED SDL_CONTROLLERDEVICEADDED_renamed_SDL_EVENT_GAMEPAD_ADDED +#define SDL_CONTROLLERDEVICEREMAPPED SDL_CONTROLLERDEVICEREMAPPED_renamed_SDL_EVENT_GAMEPAD_REMAPPED +#define SDL_CONTROLLERDEVICEREMOVED SDL_CONTROLLERDEVICEREMOVED_renamed_SDL_EVENT_GAMEPAD_REMOVED +#define SDL_CONTROLLERSENSORUPDATE SDL_CONTROLLERSENSORUPDATE_renamed_SDL_EVENT_GAMEPAD_SENSOR_UPDATE +#define SDL_CONTROLLERSTEAMHANDLEUPDATED SDL_CONTROLLERSTEAMHANDLEUPDATED_renamed_SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED +#define SDL_CONTROLLERTOUCHPADDOWN SDL_CONTROLLERTOUCHPADDOWN_renamed_SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN +#define SDL_CONTROLLERTOUCHPADMOTION SDL_CONTROLLERTOUCHPADMOTION_renamed_SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION +#define SDL_CONTROLLERTOUCHPADUP SDL_CONTROLLERTOUCHPADUP_renamed_SDL_EVENT_GAMEPAD_TOUCHPAD_UP +#define SDL_ControllerAxisEvent SDL_ControllerAxisEvent_renamed_SDL_GamepadAxisEvent +#define SDL_ControllerButtonEvent SDL_ControllerButtonEvent_renamed_SDL_GamepadButtonEvent +#define SDL_ControllerDeviceEvent SDL_ControllerDeviceEvent_renamed_SDL_GamepadDeviceEvent +#define SDL_ControllerSensorEvent SDL_ControllerSensorEvent_renamed_SDL_GamepadSensorEvent +#define SDL_ControllerTouchpadEvent SDL_ControllerTouchpadEvent_renamed_SDL_GamepadTouchpadEvent +#define SDL_DISPLAYEVENT_CONNECTED SDL_DISPLAYEVENT_CONNECTED_renamed_SDL_EVENT_DISPLAY_ADDED +#define SDL_DISPLAYEVENT_DISCONNECTED SDL_DISPLAYEVENT_DISCONNECTED_renamed_SDL_EVENT_DISPLAY_REMOVED +#define SDL_DISPLAYEVENT_MOVED SDL_DISPLAYEVENT_MOVED_renamed_SDL_EVENT_DISPLAY_MOVED +#define SDL_DISPLAYEVENT_ORIENTATION SDL_DISPLAYEVENT_ORIENTATION_renamed_SDL_EVENT_DISPLAY_ORIENTATION +#define SDL_DROPBEGIN SDL_DROPBEGIN_renamed_SDL_EVENT_DROP_BEGIN +#define SDL_DROPCOMPLETE SDL_DROPCOMPLETE_renamed_SDL_EVENT_DROP_COMPLETE +#define SDL_DROPFILE SDL_DROPFILE_renamed_SDL_EVENT_DROP_FILE +#define SDL_DROPTEXT SDL_DROPTEXT_renamed_SDL_EVENT_DROP_TEXT +#define SDL_DelEventWatch SDL_DelEventWatch_renamed_SDL_RemoveEventWatch +#define SDL_FINGERDOWN SDL_FINGERDOWN_renamed_SDL_EVENT_FINGER_DOWN +#define SDL_FINGERMOTION SDL_FINGERMOTION_renamed_SDL_EVENT_FINGER_MOTION +#define SDL_FINGERUP SDL_FINGERUP_renamed_SDL_EVENT_FINGER_UP +#define SDL_FIRSTEVENT SDL_FIRSTEVENT_renamed_SDL_EVENT_FIRST +#define SDL_JOYAXISMOTION SDL_JOYAXISMOTION_renamed_SDL_EVENT_JOYSTICK_AXIS_MOTION +#define SDL_JOYBATTERYUPDATED SDL_JOYBATTERYUPDATED_renamed_SDL_EVENT_JOYSTICK_BATTERY_UPDATED +#define SDL_JOYBUTTONDOWN SDL_JOYBUTTONDOWN_renamed_SDL_EVENT_JOYSTICK_BUTTON_DOWN +#define SDL_JOYBUTTONUP SDL_JOYBUTTONUP_renamed_SDL_EVENT_JOYSTICK_BUTTON_UP +#define SDL_JOYDEVICEADDED SDL_JOYDEVICEADDED_renamed_SDL_EVENT_JOYSTICK_ADDED +#define SDL_JOYDEVICEREMOVED SDL_JOYDEVICEREMOVED_renamed_SDL_EVENT_JOYSTICK_REMOVED +#define SDL_JOYBALLMOTION SDL_JOYBALLMOTION_renamed_SDL_EVENT_JOYSTICK_BALL_MOTION +#define SDL_JOYHATMOTION SDL_JOYHATMOTION_renamed_SDL_EVENT_JOYSTICK_HAT_MOTION +#define SDL_KEYDOWN SDL_KEYDOWN_renamed_SDL_EVENT_KEY_DOWN +#define SDL_KEYMAPCHANGED SDL_KEYMAPCHANGED_renamed_SDL_EVENT_KEYMAP_CHANGED +#define SDL_KEYUP SDL_KEYUP_renamed_SDL_EVENT_KEY_UP +#define SDL_LASTEVENT SDL_LASTEVENT_renamed_SDL_EVENT_LAST +#define SDL_LOCALECHANGED SDL_LOCALECHANGED_renamed_SDL_EVENT_LOCALE_CHANGED +#define SDL_MOUSEBUTTONDOWN SDL_MOUSEBUTTONDOWN_renamed_SDL_EVENT_MOUSE_BUTTON_DOWN +#define SDL_MOUSEBUTTONUP SDL_MOUSEBUTTONUP_renamed_SDL_EVENT_MOUSE_BUTTON_UP +#define SDL_MOUSEMOTION SDL_MOUSEMOTION_renamed_SDL_EVENT_MOUSE_MOTION +#define SDL_MOUSEWHEEL SDL_MOUSEWHEEL_renamed_SDL_EVENT_MOUSE_WHEEL +#define SDL_POLLSENTINEL SDL_POLLSENTINEL_renamed_SDL_EVENT_POLL_SENTINEL +#define SDL_QUIT SDL_QUIT_renamed_SDL_EVENT_QUIT +#define SDL_RENDER_DEVICE_RESET SDL_RENDER_DEVICE_RESET_renamed_SDL_EVENT_RENDER_DEVICE_RESET +#define SDL_RENDER_TARGETS_RESET SDL_RENDER_TARGETS_RESET_renamed_SDL_EVENT_RENDER_TARGETS_RESET +#define SDL_SENSORUPDATE SDL_SENSORUPDATE_renamed_SDL_EVENT_SENSOR_UPDATE +#define SDL_TEXTEDITING SDL_TEXTEDITING_renamed_SDL_EVENT_TEXT_EDITING +#define SDL_TEXTEDITING_EXT SDL_TEXTEDITING_EXT_renamed_SDL_EVENT_TEXT_EDITING_EXT +#define SDL_TEXTINPUT SDL_TEXTINPUT_renamed_SDL_EVENT_TEXT_INPUT +#define SDL_USEREVENT SDL_USEREVENT_renamed_SDL_EVENT_USER +#define SDL_WINDOWEVENT_CLOSE SDL_WINDOWEVENT_CLOSE_renamed_SDL_EVENT_WINDOW_CLOSE_REQUESTED +#define SDL_WINDOWEVENT_DISPLAY_CHANGED SDL_WINDOWEVENT_DISPLAY_CHANGED_renamed_SDL_EVENT_WINDOW_DISPLAY_CHANGED +#define SDL_WINDOWEVENT_ENTER SDL_WINDOWEVENT_ENTER_renamed_SDL_EVENT_WINDOW_MOUSE_ENTER +#define SDL_WINDOWEVENT_EXPOSED SDL_WINDOWEVENT_EXPOSED_renamed_SDL_EVENT_WINDOW_EXPOSED +#define SDL_WINDOWEVENT_FOCUS_GAINED SDL_WINDOWEVENT_FOCUS_GAINED_renamed_SDL_EVENT_WINDOW_FOCUS_GAINED +#define SDL_WINDOWEVENT_FOCUS_LOST SDL_WINDOWEVENT_FOCUS_LOST_renamed_SDL_EVENT_WINDOW_FOCUS_LOST +#define SDL_WINDOWEVENT_HIDDEN SDL_WINDOWEVENT_HIDDEN_renamed_SDL_EVENT_WINDOW_HIDDEN +#define SDL_WINDOWEVENT_HIT_TEST SDL_WINDOWEVENT_HIT_TEST_renamed_SDL_EVENT_WINDOW_HIT_TEST +#define SDL_WINDOWEVENT_ICCPROF_CHANGED SDL_WINDOWEVENT_ICCPROF_CHANGED_renamed_SDL_EVENT_WINDOW_ICCPROF_CHANGED +#define SDL_WINDOWEVENT_LEAVE SDL_WINDOWEVENT_LEAVE_renamed_SDL_EVENT_WINDOW_MOUSE_LEAVE +#define SDL_WINDOWEVENT_MAXIMIZED SDL_WINDOWEVENT_MAXIMIZED_renamed_SDL_EVENT_WINDOW_MAXIMIZED +#define SDL_WINDOWEVENT_MINIMIZED SDL_WINDOWEVENT_MINIMIZED_renamed_SDL_EVENT_WINDOW_MINIMIZED +#define SDL_WINDOWEVENT_MOVED SDL_WINDOWEVENT_MOVED_renamed_SDL_EVENT_WINDOW_MOVED +#define SDL_WINDOWEVENT_RESIZED SDL_WINDOWEVENT_RESIZED_renamed_SDL_EVENT_WINDOW_RESIZED +#define SDL_WINDOWEVENT_RESTORED SDL_WINDOWEVENT_RESTORED_renamed_SDL_EVENT_WINDOW_RESTORED +#define SDL_WINDOWEVENT_SHOWN SDL_WINDOWEVENT_SHOWN_renamed_SDL_EVENT_WINDOW_SHOWN +#define SDL_WINDOWEVENT_SIZE_CHANGED SDL_WINDOWEVENT_SIZE_CHANGED_renamed_SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED +#define SDL_eventaction SDL_eventaction_renamed_SDL_EventAction + +/* ##SDL_gamecontroller.h */ +#define SDL_CONTROLLER_AXIS_INVALID SDL_CONTROLLER_AXIS_INVALID_renamed_SDL_GAMEPAD_AXIS_INVALID +#define SDL_CONTROLLER_AXIS_LEFTX SDL_CONTROLLER_AXIS_LEFTX_renamed_SDL_GAMEPAD_AXIS_LEFTX +#define SDL_CONTROLLER_AXIS_LEFTY SDL_CONTROLLER_AXIS_LEFTY_renamed_SDL_GAMEPAD_AXIS_LEFTY +#define SDL_CONTROLLER_AXIS_MAX SDL_CONTROLLER_AXIS_MAX_renamed_SDL_GAMEPAD_AXIS_COUNT +#define SDL_CONTROLLER_AXIS_RIGHTX SDL_CONTROLLER_AXIS_RIGHTX_renamed_SDL_GAMEPAD_AXIS_RIGHTX +#define SDL_CONTROLLER_AXIS_RIGHTY SDL_CONTROLLER_AXIS_RIGHTY_renamed_SDL_GAMEPAD_AXIS_RIGHTY +#define SDL_CONTROLLER_AXIS_TRIGGERLEFT SDL_CONTROLLER_AXIS_TRIGGERLEFT_renamed_SDL_GAMEPAD_AXIS_LEFT_TRIGGER +#define SDL_CONTROLLER_AXIS_TRIGGERRIGHT SDL_CONTROLLER_AXIS_TRIGGERRIGHT_renamed_SDL_GAMEPAD_AXIS_RIGHT_TRIGGER +#define SDL_CONTROLLER_BINDTYPE_AXIS SDL_CONTROLLER_BINDTYPE_AXIS_renamed_SDL_GAMEPAD_BINDTYPE_AXIS +#define SDL_CONTROLLER_BINDTYPE_BUTTON SDL_CONTROLLER_BINDTYPE_BUTTON_renamed_SDL_GAMEPAD_BINDTYPE_BUTTON +#define SDL_CONTROLLER_BINDTYPE_HAT SDL_CONTROLLER_BINDTYPE_HAT_renamed_SDL_GAMEPAD_BINDTYPE_HAT +#define SDL_CONTROLLER_BINDTYPE_NONE SDL_CONTROLLER_BINDTYPE_NONE_renamed_SDL_GAMEPAD_BINDTYPE_NONE +#define SDL_CONTROLLER_BUTTON_A SDL_CONTROLLER_BUTTON_A_renamed_SDL_GAMEPAD_BUTTON_SOUTH +#define SDL_CONTROLLER_BUTTON_B SDL_CONTROLLER_BUTTON_B_renamed_SDL_GAMEPAD_BUTTON_EAST +#define SDL_CONTROLLER_BUTTON_BACK SDL_CONTROLLER_BUTTON_BACK_renamed_SDL_GAMEPAD_BUTTON_BACK +#define SDL_CONTROLLER_BUTTON_DPAD_DOWN SDL_CONTROLLER_BUTTON_DPAD_DOWN_renamed_SDL_GAMEPAD_BUTTON_DPAD_DOWN +#define SDL_CONTROLLER_BUTTON_DPAD_LEFT SDL_CONTROLLER_BUTTON_DPAD_LEFT_renamed_SDL_GAMEPAD_BUTTON_DPAD_LEFT +#define SDL_CONTROLLER_BUTTON_DPAD_RIGHT SDL_CONTROLLER_BUTTON_DPAD_RIGHT_renamed_SDL_GAMEPAD_BUTTON_DPAD_RIGHT +#define SDL_CONTROLLER_BUTTON_DPAD_UP SDL_CONTROLLER_BUTTON_DPAD_UP_renamed_SDL_GAMEPAD_BUTTON_DPAD_UP +#define SDL_CONTROLLER_BUTTON_GUIDE SDL_CONTROLLER_BUTTON_GUIDE_renamed_SDL_GAMEPAD_BUTTON_GUIDE +#define SDL_CONTROLLER_BUTTON_INVALID SDL_CONTROLLER_BUTTON_INVALID_renamed_SDL_GAMEPAD_BUTTON_INVALID +#define SDL_CONTROLLER_BUTTON_LEFTSHOULDER SDL_CONTROLLER_BUTTON_LEFTSHOULDER_renamed_SDL_GAMEPAD_BUTTON_LEFT_SHOULDER +#define SDL_CONTROLLER_BUTTON_LEFTSTICK SDL_CONTROLLER_BUTTON_LEFTSTICK_renamed_SDL_GAMEPAD_BUTTON_LEFT_STICK +#define SDL_CONTROLLER_BUTTON_MAX SDL_CONTROLLER_BUTTON_MAX_renamed_SDL_GAMEPAD_BUTTON_COUNT +#define SDL_CONTROLLER_BUTTON_MISC1 SDL_CONTROLLER_BUTTON_MISC1_renamed_SDL_GAMEPAD_BUTTON_MISC1 +#define SDL_CONTROLLER_BUTTON_PADDLE1 SDL_CONTROLLER_BUTTON_PADDLE1_renamed_SDL_GAMEPAD_BUTTON_RIGHT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE2 SDL_CONTROLLER_BUTTON_PADDLE2_renamed_SDL_GAMEPAD_BUTTON_LEFT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE3 SDL_CONTROLLER_BUTTON_PADDLE3_renamed_SDL_GAMEPAD_BUTTON_RIGHT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_PADDLE4 SDL_CONTROLLER_BUTTON_PADDLE4_renamed_SDL_GAMEPAD_BUTTON_LEFT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_RIGHTSHOULDER SDL_CONTROLLER_BUTTON_RIGHTSHOULDER_renamed_SDL_GAMEPAD_BUTTON_RIGHT_SHOULDER +#define SDL_CONTROLLER_BUTTON_RIGHTSTICK SDL_CONTROLLER_BUTTON_RIGHTSTICK_renamed_SDL_GAMEPAD_BUTTON_RIGHT_STICK +#define SDL_CONTROLLER_BUTTON_START SDL_CONTROLLER_BUTTON_START_renamed_SDL_GAMEPAD_BUTTON_START +#define SDL_CONTROLLER_BUTTON_TOUCHPAD SDL_CONTROLLER_BUTTON_TOUCHPAD_renamed_SDL_GAMEPAD_BUTTON_TOUCHPAD +#define SDL_CONTROLLER_BUTTON_X SDL_CONTROLLER_BUTTON_X_renamed_SDL_GAMEPAD_BUTTON_WEST +#define SDL_CONTROLLER_BUTTON_Y SDL_CONTROLLER_BUTTON_Y_renamed_SDL_GAMEPAD_BUTTON_NORTH +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_LEFT SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_LEFT_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_LEFT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_PAIR SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_PAIR_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_PAIR +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_PRO +#define SDL_CONTROLLER_TYPE_PS3 SDL_CONTROLLER_TYPE_PS3_renamed_SDL_GAMEPAD_TYPE_PS3 +#define SDL_CONTROLLER_TYPE_PS4 SDL_CONTROLLER_TYPE_PS4_renamed_SDL_GAMEPAD_TYPE_PS4 +#define SDL_CONTROLLER_TYPE_PS5 SDL_CONTROLLER_TYPE_PS5_renamed_SDL_GAMEPAD_TYPE_PS5 +#define SDL_CONTROLLER_TYPE_UNKNOWN SDL_CONTROLLER_TYPE_UNKNOWN_renamed_SDL_GAMEPAD_TYPE_STANDARD +#define SDL_CONTROLLER_TYPE_VIRTUAL SDL_CONTROLLER_TYPE_VIRTUAL_renamed_SDL_GAMEPAD_TYPE_VIRTUAL +#define SDL_CONTROLLER_TYPE_XBOX360 SDL_CONTROLLER_TYPE_XBOX360_renamed_SDL_GAMEPAD_TYPE_XBOX360 +#define SDL_CONTROLLER_TYPE_XBOXONE SDL_CONTROLLER_TYPE_XBOXONE_renamed_SDL_GAMEPAD_TYPE_XBOXONE +#define SDL_GameController SDL_GameController_renamed_SDL_Gamepad +#define SDL_GameControllerAddMapping SDL_GameControllerAddMapping_renamed_SDL_AddGamepadMapping +#define SDL_GameControllerAddMappingsFromFile SDL_GameControllerAddMappingsFromFile_renamed_SDL_AddGamepadMappingsFromFile +#define SDL_GameControllerAddMappingsFromRW SDL_GameControllerAddMappingsFromRW_renamed_SDL_AddGamepadMappingsFromIO +#define SDL_GameControllerAxis SDL_GameControllerAxis_renamed_SDL_GamepadAxis +#define SDL_GameControllerBindType SDL_GameControllerBindType_renamed_SDL_GamepadBindingType +#define SDL_GameControllerButton SDL_GameControllerButton_renamed_SDL_GamepadButton +#define SDL_GameControllerClose SDL_GameControllerClose_renamed_SDL_CloseGamepad +#define SDL_GameControllerFromInstanceID SDL_GameControllerFromInstanceID_renamed_SDL_GetGamepadFromID +#define SDL_GameControllerFromPlayerIndex SDL_GameControllerFromPlayerIndex_renamed_SDL_GetGamepadFromPlayerIndex +#define SDL_GameControllerGetAppleSFSymbolsNameForAxis SDL_GameControllerGetAppleSFSymbolsNameForAxis_renamed_SDL_GetGamepadAppleSFSymbolsNameForAxis +#define SDL_GameControllerGetAppleSFSymbolsNameForButton SDL_GameControllerGetAppleSFSymbolsNameForButton_renamed_SDL_GetGamepadAppleSFSymbolsNameForButton +#define SDL_GameControllerGetAttached SDL_GameControllerGetAttached_renamed_SDL_GamepadConnected +#define SDL_GameControllerGetAxis SDL_GameControllerGetAxis_renamed_SDL_GetGamepadAxis +#define SDL_GameControllerGetAxisFromString SDL_GameControllerGetAxisFromString_renamed_SDL_GetGamepadAxisFromString +#define SDL_GameControllerGetButton SDL_GameControllerGetButton_renamed_SDL_GetGamepadButton +#define SDL_GameControllerGetButtonFromString SDL_GameControllerGetButtonFromString_renamed_SDL_GetGamepadButtonFromString +#define SDL_GameControllerGetFirmwareVersion SDL_GameControllerGetFirmwareVersion_renamed_SDL_GetGamepadFirmwareVersion +#define SDL_GameControllerGetJoystick SDL_GameControllerGetJoystick_renamed_SDL_GetGamepadJoystick +#define SDL_GameControllerGetNumTouchpadFingers SDL_GameControllerGetNumTouchpadFingers_renamed_SDL_GetNumGamepadTouchpadFingers +#define SDL_GameControllerGetNumTouchpads SDL_GameControllerGetNumTouchpads_renamed_SDL_GetNumGamepadTouchpads +#define SDL_GameControllerGetPlayerIndex SDL_GameControllerGetPlayerIndex_renamed_SDL_GetGamepadPlayerIndex +#define SDL_GameControllerGetProduct SDL_GameControllerGetProduct_renamed_SDL_GetGamepadProduct +#define SDL_GameControllerGetProductVersion SDL_GameControllerGetProductVersion_renamed_SDL_GetGamepadProductVersion +#define SDL_GameControllerGetSensorData SDL_GameControllerGetSensorData_renamed_SDL_GetGamepadSensorData +#define SDL_GameControllerGetSensorDataRate SDL_GameControllerGetSensorDataRate_renamed_SDL_GetGamepadSensorDataRate +#define SDL_GameControllerGetSerial SDL_GameControllerGetSerial_renamed_SDL_GetGamepadSerial +#define SDL_GameControllerGetSteamHandle SDL_GameControllerGetSteamHandle_renamed_SDL_GetGamepadSteamHandle +#define SDL_GameControllerGetStringForAxis SDL_GameControllerGetStringForAxis_renamed_SDL_GetGamepadStringForAxis +#define SDL_GameControllerGetStringForButton SDL_GameControllerGetStringForButton_renamed_SDL_GetGamepadStringForButton +#define SDL_GameControllerGetTouchpadFinger SDL_GameControllerGetTouchpadFinger_renamed_SDL_GetGamepadTouchpadFinger +#define SDL_GameControllerGetType SDL_GameControllerGetType_renamed_SDL_GetGamepadType +#define SDL_GameControllerGetVendor SDL_GameControllerGetVendor_renamed_SDL_GetGamepadVendor +#define SDL_GameControllerHasAxis SDL_GameControllerHasAxis_renamed_SDL_GamepadHasAxis +#define SDL_GameControllerHasButton SDL_GameControllerHasButton_renamed_SDL_GamepadHasButton +#define SDL_GameControllerHasSensor SDL_GameControllerHasSensor_renamed_SDL_GamepadHasSensor +#define SDL_GameControllerIsSensorEnabled SDL_GameControllerIsSensorEnabled_renamed_SDL_GamepadSensorEnabled +#define SDL_GameControllerMapping SDL_GameControllerMapping_renamed_SDL_GetGamepadMapping +#define SDL_GameControllerMappingForDeviceIndex SDL_GameControllerMappingForDeviceIndex_renamed_SDL_GetGamepadMappingForDeviceIndex +#define SDL_GameControllerMappingForGUID SDL_GameControllerMappingForGUID_renamed_SDL_GetGamepadMappingForGUID +#define SDL_GameControllerName SDL_GameControllerName_renamed_SDL_GetGamepadName +#define SDL_GameControllerOpen SDL_GameControllerOpen_renamed_SDL_OpenGamepad +#define SDL_GameControllerPath SDL_GameControllerPath_renamed_SDL_GetGamepadPath +#define SDL_GameControllerRumble SDL_GameControllerRumble_renamed_SDL_RumbleGamepad +#define SDL_GameControllerRumbleTriggers SDL_GameControllerRumbleTriggers_renamed_SDL_RumbleGamepadTriggers +#define SDL_GameControllerSendEffect SDL_GameControllerSendEffect_renamed_SDL_SendGamepadEffect +#define SDL_GameControllerSetLED SDL_GameControllerSetLED_renamed_SDL_SetGamepadLED +#define SDL_GameControllerSetPlayerIndex SDL_GameControllerSetPlayerIndex_renamed_SDL_SetGamepadPlayerIndex +#define SDL_GameControllerSetSensorEnabled SDL_GameControllerSetSensorEnabled_renamed_SDL_SetGamepadSensorEnabled +#define SDL_GameControllerType SDL_GameControllerType_renamed_SDL_GamepadType +#define SDL_GameControllerUpdate SDL_GameControllerUpdate_renamed_SDL_UpdateGamepads +#define SDL_INIT_GAMECONTROLLER SDL_INIT_GAMECONTROLLER_renamed_SDL_INIT_GAMEPAD +#define SDL_IsGameController SDL_IsGameController_renamed_SDL_IsGamepad + +/* ##SDL_guid.h */ +#define SDL_GUIDFromString SDL_GUIDFromString_renamed_SDL_StringToGUID + +/* ##SDL_haptic.h */ +#define SDL_HapticClose SDL_HapticClose_renamed_SDL_CloseHaptic +#define SDL_HapticDestroyEffect SDL_HapticDestroyEffect_renamed_SDL_DestroyHapticEffect +#define SDL_HapticGetEffectStatus SDL_HapticGetEffectStatus_renamed_SDL_GetHapticEffectStatus +#define SDL_HapticNewEffect SDL_HapticNewEffect_renamed_SDL_CreateHapticEffect +#define SDL_HapticNumAxes SDL_HapticNumAxes_renamed_SDL_GetNumHapticAxes +#define SDL_HapticNumEffects SDL_HapticNumEffects_renamed_SDL_GetMaxHapticEffects +#define SDL_HapticNumEffectsPlaying SDL_HapticNumEffectsPlaying_renamed_SDL_GetMaxHapticEffectsPlaying +#define SDL_HapticOpen SDL_HapticOpen_renamed_SDL_OpenHaptic +#define SDL_HapticOpenFromJoystick SDL_HapticOpenFromJoystick_renamed_SDL_OpenHapticFromJoystick +#define SDL_HapticOpenFromMouse SDL_HapticOpenFromMouse_renamed_SDL_OpenHapticFromMouse +#define SDL_HapticPause SDL_HapticPause_renamed_SDL_PauseHaptic +#define SDL_HapticQuery SDL_HapticQuery_renamed_SDL_GetHapticFeatures +#define SDL_HapticRumbleInit SDL_HapticRumbleInit_renamed_SDL_InitHapticRumble +#define SDL_HapticRumblePlay SDL_HapticRumblePlay_renamed_SDL_PlayHapticRumble +#define SDL_HapticRumbleStop SDL_HapticRumbleStop_renamed_SDL_StopHapticRumble +#define SDL_HapticRunEffect SDL_HapticRunEffect_renamed_SDL_RunHapticEffect +#define SDL_HapticSetAutocenter SDL_HapticSetAutocenter_renamed_SDL_SetHapticAutocenter +#define SDL_HapticSetGain SDL_HapticSetGain_renamed_SDL_SetHapticGain +#define SDL_HapticStopAll SDL_HapticStopAll_renamed_SDL_StopHapticEffects +#define SDL_HapticStopEffect SDL_HapticStopEffect_renamed_SDL_StopHapticEffect +#define SDL_HapticUnpause SDL_HapticUnpause_renamed_SDL_ResumeHaptic +#define SDL_HapticUpdateEffect SDL_HapticUpdateEffect_renamed_SDL_UpdateHapticEffect +#define SDL_JoystickIsHaptic SDL_JoystickIsHaptic_renamed_SDL_IsJoystickHaptic +#define SDL_MouseIsHaptic SDL_MouseIsHaptic_renamed_SDL_IsMouseHaptic + +/* ##SDL_hints.h */ +#define SDL_DelHintCallback SDL_DelHintCallback_renamed_SDL_RemoveHintCallback +#define SDL_HINT_ALLOW_TOPMOST SDL_HINT_ALLOW_TOPMOST_renamed_SDL_HINT_WINDOW_ALLOW_TOPMOST +#define SDL_HINT_DIRECTINPUT_ENABLED SDL_HINT_DIRECTINPUT_ENABLED_renamed_SDL_HINT_JOYSTICK_DIRECTINPUT +#define SDL_HINT_GDK_TEXTINPUT_DEFAULT SDL_HINT_GDK_TEXTINPUT_DEFAULT_renamed_SDL_HINT_GDK_TEXTINPUT_DEFAULT_TEXT +#define SDL_HINT_JOYSTICK_GAMECUBE_RUMBLE_BRAKE SDL_HINT_JOYSTICK_GAMECUBE_RUMBLE_BRAKE_renamed_SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE +#define SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE_renamed_SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE_renamed_SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_LINUX_DIGITAL_HATS SDL_HINT_LINUX_DIGITAL_HATS_renamed_SDL_HINT_JOYSTICK_LINUX_DIGITAL_HATS +#define SDL_HINT_LINUX_HAT_DEADZONES SDL_HINT_LINUX_HAT_DEADZONES_renamed_SDL_HINT_JOYSTICK_LINUX_HAT_DEADZONES +#define SDL_HINT_LINUX_JOYSTICK_CLASSIC SDL_HINT_LINUX_JOYSTICK_CLASSIC_renamed_SDL_HINT_JOYSTICK_LINUX_CLASSIC +#define SDL_HINT_LINUX_JOYSTICK_DEADZONES SDL_HINT_LINUX_JOYSTICK_DEADZONES_renamed_SDL_HINT_JOYSTICK_LINUX_DEADZONES + +/* ##SDL_joystick.h */ +#define SDL_JOYSTICK_TYPE_GAMECONTROLLER SDL_JOYSTICK_TYPE_GAMECONTROLLER_renamed_SDL_JOYSTICK_TYPE_GAMEPAD +#define SDL_JoystickAttachVirtualEx SDL_JoystickAttachVirtualEx_renamed_SDL_AttachVirtualJoystick +#define SDL_JoystickClose SDL_JoystickClose_renamed_SDL_CloseJoystick +#define SDL_JoystickDetachVirtual SDL_JoystickDetachVirtual_renamed_SDL_DetachVirtualJoystick +#define SDL_JoystickFromInstanceID SDL_JoystickFromInstanceID_renamed_SDL_GetJoystickFromID +#define SDL_JoystickFromPlayerIndex SDL_JoystickFromPlayerIndex_renamed_SDL_GetJoystickFromPlayerIndex +#define SDL_JoystickGUID SDL_JoystickGUID_renamed_SDL_GUID +#define SDL_JoystickGetAttached SDL_JoystickGetAttached_renamed_SDL_JoystickConnected +#define SDL_JoystickGetAxis SDL_JoystickGetAxis_renamed_SDL_GetJoystickAxis +#define SDL_JoystickGetAxisInitialState SDL_JoystickGetAxisInitialState_renamed_SDL_GetJoystickAxisInitialState +#define SDL_JoystickGetBall SDL_JoystickGetBall_renamed_SDL_GetJoystickBall +#define SDL_JoystickGetButton SDL_JoystickGetButton_renamed_SDL_GetJoystickButton +#define SDL_JoystickGetFirmwareVersion SDL_JoystickGetFirmwareVersion_renamed_SDL_GetJoystickFirmwareVersion +#define SDL_JoystickGetGUID SDL_JoystickGetGUID_renamed_SDL_GetJoystickGUID +#define SDL_JoystickGetGUIDFromString SDL_JoystickGetGUIDFromString_renamed_SDL_GUIDFromString +#define SDL_JoystickGetHat SDL_JoystickGetHat_renamed_SDL_GetJoystickHat +#define SDL_JoystickGetPlayerIndex SDL_JoystickGetPlayerIndex_renamed_SDL_GetJoystickPlayerIndex +#define SDL_JoystickGetProduct SDL_JoystickGetProduct_renamed_SDL_GetJoystickProduct +#define SDL_JoystickGetProductVersion SDL_JoystickGetProductVersion_renamed_SDL_GetJoystickProductVersion +#define SDL_JoystickGetSerial SDL_JoystickGetSerial_renamed_SDL_GetJoystickSerial +#define SDL_JoystickGetType SDL_JoystickGetType_renamed_SDL_GetJoystickType +#define SDL_JoystickGetVendor SDL_JoystickGetVendor_renamed_SDL_GetJoystickVendor +#define SDL_JoystickInstanceID SDL_JoystickInstanceID_renamed_SDL_GetJoystickID +#define SDL_JoystickIsVirtual SDL_JoystickIsVirtual_renamed_SDL_IsJoystickVirtual +#define SDL_JoystickName SDL_JoystickName_renamed_SDL_GetJoystickName +#define SDL_JoystickNumAxes SDL_JoystickNumAxes_renamed_SDL_GetNumJoystickAxes +#define SDL_JoystickNumBalls SDL_JoystickNumBalls_renamed_SDL_GetNumJoystickBalls +#define SDL_JoystickNumButtons SDL_JoystickNumButtons_renamed_SDL_GetNumJoystickButtons +#define SDL_JoystickNumHats SDL_JoystickNumHats_renamed_SDL_GetNumJoystickHats +#define SDL_JoystickOpen SDL_JoystickOpen_renamed_SDL_OpenJoystick +#define SDL_JoystickPath SDL_JoystickPath_renamed_SDL_GetJoystickPath +#define SDL_JoystickRumble SDL_JoystickRumble_renamed_SDL_RumbleJoystick +#define SDL_JoystickRumbleTriggers SDL_JoystickRumbleTriggers_renamed_SDL_RumbleJoystickTriggers +#define SDL_JoystickSendEffect SDL_JoystickSendEffect_renamed_SDL_SendJoystickEffect +#define SDL_JoystickSetLED SDL_JoystickSetLED_renamed_SDL_SetJoystickLED +#define SDL_JoystickSetPlayerIndex SDL_JoystickSetPlayerIndex_renamed_SDL_SetJoystickPlayerIndex +#define SDL_JoystickSetVirtualAxis SDL_JoystickSetVirtualAxis_renamed_SDL_SetJoystickVirtualAxis +#define SDL_JoystickSetVirtualButton SDL_JoystickSetVirtualButton_renamed_SDL_SetJoystickVirtualButton +#define SDL_JoystickSetVirtualHat SDL_JoystickSetVirtualHat_renamed_SDL_SetJoystickVirtualHat +#define SDL_JoystickUpdate SDL_JoystickUpdate_renamed_SDL_UpdateJoysticks + +/* ##SDL_keyboard.h */ +#define SDL_IsScreenKeyboardShown SDL_IsScreenKeyboardShown_renamed_SDL_ScreenKeyboardShown +#define SDL_IsTextInputActive SDL_IsTextInputActive_renamed_SDL_TextInputActive + +/* ##SDL_keycode.h */ +#define KMOD_ALT KMOD_ALT_renamed_SDL_KMOD_ALT +#define KMOD_CAPS KMOD_CAPS_renamed_SDL_KMOD_CAPS +#define KMOD_CTRL KMOD_CTRL_renamed_SDL_KMOD_CTRL +#define KMOD_GUI KMOD_GUI_renamed_SDL_KMOD_GUI +#define KMOD_LALT KMOD_LALT_renamed_SDL_KMOD_LALT +#define KMOD_LCTRL KMOD_LCTRL_renamed_SDL_KMOD_LCTRL +#define KMOD_LGUI KMOD_LGUI_renamed_SDL_KMOD_LGUI +#define KMOD_LSHIFT KMOD_LSHIFT_renamed_SDL_KMOD_LSHIFT +#define KMOD_MODE KMOD_MODE_renamed_SDL_KMOD_MODE +#define KMOD_NONE KMOD_NONE_renamed_SDL_KMOD_NONE +#define KMOD_NUM KMOD_NUM_renamed_SDL_KMOD_NUM +#define KMOD_RALT KMOD_RALT_renamed_SDL_KMOD_RALT +#define KMOD_RCTRL KMOD_RCTRL_renamed_SDL_KMOD_RCTRL +#define KMOD_RGUI KMOD_RGUI_renamed_SDL_KMOD_RGUI +#define KMOD_RSHIFT KMOD_RSHIFT_renamed_SDL_KMOD_RSHIFT +#define KMOD_SCROLL KMOD_SCROLL_renamed_SDL_KMOD_SCROLL +#define KMOD_SHIFT KMOD_SHIFT_renamed_SDL_KMOD_SHIFT +#define SDLK_AUDIOFASTFORWARD SDLK_AUDIOFASTFORWARD_renamed_SDLK_MEDIA_FAST_FORWARD +#define SDLK_AUDIOMUTE SDLK_AUDIOMUTE_renamed_SDLK_MUTE +#define SDLK_AUDIONEXT SDLK_AUDIONEXT_renamed_SDLK_MEDIA_NEXT_TRACK +#define SDLK_AUDIOPLAY SDLK_AUDIOPLAY_renamed_SDLK_MEDIA_PLAY +#define SDLK_AUDIOPREV SDLK_AUDIOPREV_renamed_SDLK_MEDIA_PREVIOUS_TRACK +#define SDLK_AUDIOREWIND SDLK_AUDIOREWIND_renamed_SDLK_MEDIA_REWIND +#define SDLK_AUDIOSTOP SDLK_AUDIOSTOP_renamed_SDLK_MEDIA_STOP +#define SDLK_BACKQUOTE SDLK_BACKQUOTE_renamed_SDLK_GRAVE +#define SDLK_EJECT SDLK_EJECT_renamed_SDLK_MEDIA_EJECT +#define SDLK_MEDIASELECT SDLK_MEDIASELECT_renamed_SDLK_MEDIA_SELECT +#define SDLK_QUOTE SDLK_QUOTE_renamed_SDLK_APOSTROPHE +#define SDLK_QUOTEDBL SDLK_QUOTEDBL_renamed_SDLK_DBLAPOSTROPHE +#define SDLK_a SDLK_a_renamed_SDLK_A +#define SDLK_b SDLK_b_renamed_SDLK_B +#define SDLK_c SDLK_c_renamed_SDLK_C +#define SDLK_d SDLK_d_renamed_SDLK_D +#define SDLK_e SDLK_e_renamed_SDLK_E +#define SDLK_f SDLK_f_renamed_SDLK_F +#define SDLK_g SDLK_g_renamed_SDLK_G +#define SDLK_h SDLK_h_renamed_SDLK_H +#define SDLK_i SDLK_i_renamed_SDLK_I +#define SDLK_j SDLK_j_renamed_SDLK_J +#define SDLK_k SDLK_k_renamed_SDLK_K +#define SDLK_l SDLK_l_renamed_SDLK_L +#define SDLK_m SDLK_m_renamed_SDLK_M +#define SDLK_n SDLK_n_renamed_SDLK_N +#define SDLK_o SDLK_o_renamed_SDLK_O +#define SDLK_p SDLK_p_renamed_SDLK_P +#define SDLK_q SDLK_q_renamed_SDLK_Q +#define SDLK_r SDLK_r_renamed_SDLK_R +#define SDLK_s SDLK_s_renamed_SDLK_S +#define SDLK_t SDLK_t_renamed_SDLK_T +#define SDLK_u SDLK_u_renamed_SDLK_U +#define SDLK_v SDLK_v_renamed_SDLK_V +#define SDLK_w SDLK_w_renamed_SDLK_W +#define SDLK_x SDLK_x_renamed_SDLK_X +#define SDLK_y SDLK_y_renamed_SDLK_Y +#define SDLK_z SDLK_z_renamed_SDLK_Z + +/* ##SDL_log.h */ +#define SDL_LogGetOutputFunction SDL_LogGetOutputFunction_renamed_SDL_GetLogOutputFunction +#define SDL_LogGetPriority SDL_LogGetPriority_renamed_SDL_GetLogPriority +#define SDL_LogResetPriorities SDL_LogResetPriorities_renamed_SDL_ResetLogPriorities +#define SDL_LogSetAllPriority SDL_LogSetAllPriority_renamed_SDL_SetLogPriorities +#define SDL_LogSetOutputFunction SDL_LogSetOutputFunction_renamed_SDL_SetLogOutputFunction +#define SDL_LogSetPriority SDL_LogSetPriority_renamed_SDL_SetLogPriority +#define SDL_NUM_LOG_PRIORITIES SDL_NUM_LOG_PRIORITIES_renamed_SDL_LOG_PRIORITY_COUNT + +/* ##SDL_messagebox.h */ +#define SDL_MESSAGEBOX_COLOR_MAX SDL_MESSAGEBOX_COLOR_MAX_renamed_SDL_MESSAGEBOX_COLOR_COUNT + +/* ##SDL_mouse.h */ +#define SDL_BUTTON SDL_BUTTON_renamed_SDL_BUTTON_MASK +#define SDL_FreeCursor SDL_FreeCursor_renamed_SDL_DestroyCursor +#define SDL_NUM_SYSTEM_CURSORS SDL_NUM_SYSTEM_CURSORS_renamed_SDL_SYSTEM_CURSOR_COUNT +#define SDL_SYSTEM_CURSOR_ARROW SDL_SYSTEM_CURSOR_ARROW_renamed_SDL_SYSTEM_CURSOR_DEFAULT +#define SDL_SYSTEM_CURSOR_HAND SDL_SYSTEM_CURSOR_HAND_renamed_SDL_SYSTEM_CURSOR_POINTER +#define SDL_SYSTEM_CURSOR_IBEAM SDL_SYSTEM_CURSOR_IBEAM_renamed_SDL_SYSTEM_CURSOR_TEXT +#define SDL_SYSTEM_CURSOR_NO SDL_SYSTEM_CURSOR_NO_renamed_SDL_SYSTEM_CURSOR_NOT_ALLOWED +#define SDL_SYSTEM_CURSOR_SIZEALL SDL_SYSTEM_CURSOR_SIZEALL_renamed_SDL_SYSTEM_CURSOR_MOVE +#define SDL_SYSTEM_CURSOR_SIZENESW SDL_SYSTEM_CURSOR_SIZENESW_renamed_SDL_SYSTEM_CURSOR_NESW_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENS SDL_SYSTEM_CURSOR_SIZENS_renamed_SDL_SYSTEM_CURSOR_NS_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENWSE SDL_SYSTEM_CURSOR_SIZENWSE_renamed_SDL_SYSTEM_CURSOR_NWSE_RESIZE +#define SDL_SYSTEM_CURSOR_SIZEWE SDL_SYSTEM_CURSOR_SIZEWE_renamed_SDL_SYSTEM_CURSOR_EW_RESIZE +#define SDL_SYSTEM_CURSOR_WAITARROW SDL_SYSTEM_CURSOR_WAITARROW_renamed_SDL_SYSTEM_CURSOR_PROGRESS +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOM SDL_SYSTEM_CURSOR_WINDOW_BOTTOM_renamed_SDL_SYSTEM_CURSOR_S_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMLEFT SDL_SYSTEM_CURSOR_WINDOW_BOTTOMLEFT_renamed_SDL_SYSTEM_CURSOR_SW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMRIGHT SDL_SYSTEM_CURSOR_WINDOW_BOTTOMRIGHT_renamed_SDL_SYSTEM_CURSOR_SE_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_LEFT SDL_SYSTEM_CURSOR_WINDOW_LEFT_renamed_SDL_SYSTEM_CURSOR_W_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_RIGHT SDL_SYSTEM_CURSOR_WINDOW_RIGHT_renamed_SDL_SYSTEM_CURSOR_E_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOP SDL_SYSTEM_CURSOR_WINDOW_TOP_renamed_SDL_SYSTEM_CURSOR_N_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPLEFT SDL_SYSTEM_CURSOR_WINDOW_TOPLEFT_renamed_SDL_SYSTEM_CURSOR_NW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPRIGHT SDL_SYSTEM_CURSOR_WINDOW_TOPRIGHT_renamed_SDL_SYSTEM_CURSOR_NE_RESIZE + +/* ##SDL_mutex.h */ +#define SDL_CondBroadcast SDL_CondBroadcast_renamed_SDL_BroadcastCondition +#define SDL_CondSignal SDL_CondSignal_renamed_SDL_SignalCondition +#define SDL_CondWait SDL_CondWait_renamed_SDL_WaitCondition +#define SDL_CondWaitTimeout SDL_CondWaitTimeout_renamed_SDL_WaitConditionTimeout +#define SDL_CreateCond SDL_CreateCond_renamed_SDL_CreateCondition +#define SDL_DestroyCond SDL_DestroyCond_renamed_SDL_DestroyCondition +#define SDL_SemPost SDL_SemPost_renamed_SDL_SignalSemaphore +#define SDL_SemTryWait SDL_SemTryWait_renamed_SDL_TryWaitSemaphore +#define SDL_SemValue SDL_SemValue_renamed_SDL_GetSemaphoreValue +#define SDL_SemWait SDL_SemWait_renamed_SDL_WaitSemaphore +#define SDL_SemWaitTimeout SDL_SemWaitTimeout_renamed_SDL_WaitSemaphoreTimeout + +/* ##SDL_mutex.h */ +#define SDL_cond SDL_cond_renamed_SDL_Condition +#define SDL_mutex SDL_mutex_renamed_SDL_Mutex +#define SDL_sem SDL_sem_renamed_SDL_Semaphore + +/* ##SDL_pixels.h */ +#define SDL_AllocFormat SDL_AllocFormat_renamed_SDL_GetPixelFormatDetails +#define SDL_AllocPalette SDL_AllocPalette_renamed_SDL_CreatePalette +#define SDL_Colour SDL_Colour_renamed_SDL_Color +#define SDL_FreePalette SDL_FreePalette_renamed_SDL_DestroyPalette +#define SDL_MasksToPixelFormatEnum SDL_MasksToPixelFormatEnum_renamed_SDL_GetPixelFormatForMasks +#define SDL_PIXELFORMAT_BGR444 SDL_PIXELFORMAT_BGR444_renamed_SDL_PIXELFORMAT_XBGR4444 +#define SDL_PIXELFORMAT_BGR555 SDL_PIXELFORMAT_BGR555_renamed_SDL_PIXELFORMAT_XBGR1555 +#define SDL_PIXELFORMAT_BGR888 SDL_PIXELFORMAT_BGR888_renamed_SDL_PIXELFORMAT_XBGR8888 +#define SDL_PIXELFORMAT_RGB444 SDL_PIXELFORMAT_RGB444_renamed_SDL_PIXELFORMAT_XRGB4444 +#define SDL_PIXELFORMAT_RGB555 SDL_PIXELFORMAT_RGB555_renamed_SDL_PIXELFORMAT_XRGB1555 +#define SDL_PIXELFORMAT_RGB888 SDL_PIXELFORMAT_RGB888_renamed_SDL_PIXELFORMAT_XRGB8888 +#define SDL_PixelFormatEnumToMasks SDL_PixelFormatEnumToMasks_renamed_SDL_GetMasksForPixelFormat + +/* ##SDL_rect.h */ +#define SDL_EncloseFPoints SDL_EncloseFPoints_renamed_SDL_GetRectEnclosingPointsFloat +#define SDL_EnclosePoints SDL_EnclosePoints_renamed_SDL_GetRectEnclosingPoints +#define SDL_FRectEmpty SDL_FRectEmpty_renamed_SDL_RectEmptyFloat +#define SDL_FRectEquals SDL_FRectEquals_renamed_SDL_RectsEqualFloat +#define SDL_FRectEqualsEpsilon SDL_FRectEqualsEpsilon_renamed_SDL_RectsEqualEpsilon +#define SDL_HasIntersection SDL_HasIntersection_renamed_SDL_HasRectIntersection +#define SDL_HasIntersectionF SDL_HasIntersectionF_renamed_SDL_HasRectIntersectionFloat +#define SDL_IntersectFRect SDL_IntersectFRect_renamed_SDL_GetRectIntersectionFloat +#define SDL_IntersectFRectAndLine SDL_IntersectFRectAndLine_renamed_SDL_GetRectAndLineIntersectionFloat +#define SDL_IntersectRect SDL_IntersectRect_renamed_SDL_GetRectIntersection +#define SDL_IntersectRectAndLine SDL_IntersectRectAndLine_renamed_SDL_GetRectAndLineIntersection +#define SDL_PointInFRect SDL_PointInFRect_renamed_SDL_PointInRectFloat +#define SDL_RectEquals SDL_RectEquals_renamed_SDL_RectsEqual +#define SDL_UnionFRect SDL_UnionFRect_renamed_SDL_GetRectUnionFloat +#define SDL_UnionRect SDL_UnionRect_renamed_SDL_GetRectUnion + +/* ##SDL_render.h */ +#define SDL_GetRendererOutputSize SDL_GetRendererOutputSize_renamed_SDL_GetCurrentRenderOutputSize +#define SDL_RenderCopy SDL_RenderCopy_renamed_SDL_RenderTexture +#define SDL_RenderCopyEx SDL_RenderCopyEx_renamed_SDL_RenderTextureRotated +#define SDL_RenderCopyExF SDL_RenderCopyExF_renamed_SDL_RenderTextureRotated +#define SDL_RenderCopyF SDL_RenderCopyF_renamed_SDL_RenderTexture +#define SDL_RenderDrawLine SDL_RenderDrawLine_renamed_SDL_RenderLine +#define SDL_RenderDrawLineF SDL_RenderDrawLineF_renamed_SDL_RenderLine +#define SDL_RenderDrawLines SDL_RenderDrawLines_renamed_SDL_RenderLines +#define SDL_RenderDrawLinesF SDL_RenderDrawLinesF_renamed_SDL_RenderLines +#define SDL_RenderDrawPoint SDL_RenderDrawPoint_renamed_SDL_RenderPoint +#define SDL_RenderDrawPointF SDL_RenderDrawPointF_renamed_SDL_RenderPoint +#define SDL_RenderDrawPoints SDL_RenderDrawPoints_renamed_SDL_RenderPoints +#define SDL_RenderDrawPointsF SDL_RenderDrawPointsF_renamed_SDL_RenderPoints +#define SDL_RenderDrawRect SDL_RenderDrawRect_renamed_SDL_RenderRect +#define SDL_RenderDrawRectF SDL_RenderDrawRectF_renamed_SDL_RenderRect +#define SDL_RenderDrawRects SDL_RenderDrawRects_renamed_SDL_RenderRects +#define SDL_RenderDrawRectsF SDL_RenderDrawRectsF_renamed_SDL_RenderRects +#define SDL_RenderFillRectF SDL_RenderFillRectF_renamed_SDL_RenderFillRect +#define SDL_RenderFillRectsF SDL_RenderFillRectsF_renamed_SDL_RenderFillRects +#define SDL_RendererFlip SDL_RendererFlip_renamed_SDL_FlipMode +#define SDL_RenderFlush SDL_RenderFlush_renamed_SDL_FlushRenderer +#define SDL_RenderGetClipRect SDL_RenderGetClipRect_renamed_SDL_GetRenderClipRect +#define SDL_RenderGetLogicalSize SDL_RenderGetLogicalSize_renamed_SDL_GetRenderLogicalPresentation +#define SDL_RenderGetMetalCommandEncoder SDL_RenderGetMetalCommandEncoder_renamed_SDL_GetRenderMetalCommandEncoder +#define SDL_RenderGetMetalLayer SDL_RenderGetMetalLayer_renamed_SDL_GetRenderMetalLayer +#define SDL_RenderGetScale SDL_RenderGetScale_renamed_SDL_GetRenderScale +#define SDL_RenderGetViewport SDL_RenderGetViewport_renamed_SDL_GetRenderViewport +#define SDL_RenderGetWindow SDL_RenderGetWindow_renamed_SDL_GetRenderWindow +#define SDL_RenderIsClipEnabled SDL_RenderIsClipEnabled_renamed_SDL_RenderClipEnabled +#define SDL_RenderLogicalToWindow SDL_RenderLogicalToWindow_renamed_SDL_RenderCoordinatesToWindow +#define SDL_RenderSetClipRect SDL_RenderSetClipRect_renamed_SDL_SetRenderClipRect +#define SDL_RenderSetLogicalSize SDL_RenderSetLogicalSize_renamed_SDL_SetRenderLogicalPresentation +#define SDL_RenderSetScale SDL_RenderSetScale_renamed_SDL_SetRenderScale +#define SDL_RenderSetVSync SDL_RenderSetVSync_renamed_SDL_SetRenderVSync +#define SDL_RenderSetViewport SDL_RenderSetViewport_renamed_SDL_SetRenderViewport +#define SDL_RenderWindowToLogical SDL_RenderWindowToLogical_renamed_SDL_RenderCoordinatesFromWindow +#define SDL_ScaleModeLinear SDL_ScaleModeLinear_renamed_SDL_SCALEMODE_LINEAR +#define SDL_ScaleModeNearest SDL_ScaleModeNearest_renamed_SDL_SCALEMODE_NEAREST + +/* ##SDL_rwops.h */ +#define RW_SEEK_CUR RW_SEEK_CUR_renamed_SDL_IO_SEEK_CUR +#define RW_SEEK_END RW_SEEK_END_renamed_SDL_IO_SEEK_END +#define RW_SEEK_SET RW_SEEK_SET_renamed_SDL_IO_SEEK_SET +#define SDL_RWFromConstMem SDL_RWFromConstMem_renamed_SDL_IOFromConstMem +#define SDL_RWFromFile SDL_RWFromFile_renamed_SDL_IOFromFile +#define SDL_RWFromMem SDL_RWFromMem_renamed_SDL_IOFromMem +#define SDL_RWclose SDL_RWclose_renamed_SDL_CloseIO +#define SDL_RWops SDL_RWops_renamed_SDL_IOStream +#define SDL_RWread SDL_RWread_renamed_SDL_ReadIO +#define SDL_RWseek SDL_RWseek_renamed_SDL_SeekIO +#define SDL_RWsize SDL_RWsize_renamed_SDL_GetIOSize +#define SDL_RWtell SDL_RWtell_renamed_SDL_TellIO +#define SDL_RWwrite SDL_RWwrite_renamed_SDL_WriteIO +#define SDL_ReadBE16 SDL_ReadBE16_renamed_SDL_ReadU16BE +#define SDL_ReadBE32 SDL_ReadBE32_renamed_SDL_ReadU32BE +#define SDL_ReadBE64 SDL_ReadBE64_renamed_SDL_ReadU64BE +#define SDL_ReadLE16 SDL_ReadLE16_renamed_SDL_ReadU16LE +#define SDL_ReadLE32 SDL_ReadLE32_renamed_SDL_ReadU32LE +#define SDL_ReadLE64 SDL_ReadLE64_renamed_SDL_ReadU64LE +#define SDL_WriteBE16 SDL_WriteBE16_renamed_SDL_WriteU16BE +#define SDL_WriteBE32 SDL_WriteBE32_renamed_SDL_WriteU32BE +#define SDL_WriteBE64 SDL_WriteBE64_renamed_SDL_WriteU64BE +#define SDL_WriteLE16 SDL_WriteLE16_renamed_SDL_WriteU16LE +#define SDL_WriteLE32 SDL_WriteLE32_renamed_SDL_WriteU32LE +#define SDL_WriteLE64 SDL_WriteLE64_renamed_SDL_WriteU64LE + +/* ##SDL_scancode.h */ +#define SDL_NUM_SCANCODES SDL_NUM_SCANCODES_renamed_SDL_SCANCODE_COUNT +#define SDL_SCANCODE_AUDIOFASTFORWARD SDL_SCANCODE_AUDIOFASTFORWARD_renamed_SDL_SCANCODE_MEDIA_FAST_FORWARD +#define SDL_SCANCODE_AUDIOMUTE SDL_SCANCODE_AUDIOMUTE_renamed_SDL_SCANCODE_MUTE +#define SDL_SCANCODE_AUDIONEXT SDL_SCANCODE_AUDIONEXT_renamed_SDL_SCANCODE_MEDIA_NEXT_TRACK +#define SDL_SCANCODE_AUDIOPLAY SDL_SCANCODE_AUDIOPLAY_renamed_SDL_SCANCODE_MEDIA_PLAY +#define SDL_SCANCODE_AUDIOPREV SDL_SCANCODE_AUDIOPREV_renamed_SDL_SCANCODE_MEDIA_PREVIOUS_TRACK +#define SDL_SCANCODE_AUDIOREWIND SDL_SCANCODE_AUDIOREWIND_renamed_SDL_SCANCODE_MEDIA_REWIND +#define SDL_SCANCODE_AUDIOSTOP SDL_SCANCODE_AUDIOSTOP_renamed_SDL_SCANCODE_MEDIA_STOP +#define SDL_SCANCODE_EJECT SDL_SCANCODE_EJECT_renamed_SDL_SCANCODE_MEDIA_EJECT +#define SDL_SCANCODE_MEDIASELECT SDL_SCANCODE_MEDIASELECT_renamed_SDL_SCANCODE_MEDIA_SELECT + +/* ##SDL_sensor.h */ +#define SDL_SensorClose SDL_SensorClose_renamed_SDL_CloseSensor +#define SDL_SensorFromInstanceID SDL_SensorFromInstanceID_renamed_SDL_GetSensorFromID +#define SDL_SensorGetData SDL_SensorGetData_renamed_SDL_GetSensorData +#define SDL_SensorGetInstanceID SDL_SensorGetInstanceID_renamed_SDL_GetSensorID +#define SDL_SensorGetName SDL_SensorGetName_renamed_SDL_GetSensorName +#define SDL_SensorGetNonPortableType SDL_SensorGetNonPortableType_renamed_SDL_GetSensorNonPortableType +#define SDL_SensorGetType SDL_SensorGetType_renamed_SDL_GetSensorType +#define SDL_SensorOpen SDL_SensorOpen_renamed_SDL_OpenSensor +#define SDL_SensorUpdate SDL_SensorUpdate_renamed_SDL_UpdateSensors + +/* ##SDL_stdinc.h */ +#define SDL_FALSE SDL_FALSE_renamed_false +#define SDL_TABLESIZE SDL_TABLESIZE_renamed_SDL_arraysize +#define SDL_TRUE SDL_TRUE_renamed_true +#define SDL_bool SDL_bool_renamed_bool +#define SDL_size_add_overflow SDL_size_add_overflow_renamed_SDL_size_add_check_overflow +#define SDL_size_mul_overflow SDL_size_mul_overflow_renamed_SDL_size_mul_check_overflow +#define SDL_strtokr SDL_strtokr_renamed_SDL_strtok_r + +/* ##SDL_surface.h */ +#define SDL_BlitScaled SDL_BlitScaled_renamed_SDL_BlitSurfaceScaled +#define SDL_ConvertSurfaceFormat SDL_ConvertSurfaceFormat_renamed_SDL_ConvertSurface +#define SDL_FillRect SDL_FillRect_renamed_SDL_FillSurfaceRect +#define SDL_FillRects SDL_FillRects_renamed_SDL_FillSurfaceRects +#define SDL_FreeSurface SDL_FreeSurface_renamed_SDL_DestroySurface +#define SDL_GetClipRect SDL_GetClipRect_renamed_SDL_GetSurfaceClipRect +#define SDL_GetColorKey SDL_GetColorKey_renamed_SDL_GetSurfaceColorKey +#define SDL_HasColorKey SDL_HasColorKey_renamed_SDL_SurfaceHasColorKey +#define SDL_HasSurfaceRLE SDL_HasSurfaceRLE_renamed_SDL_SurfaceHasRLE +#define SDL_LoadBMP_RW SDL_LoadBMP_RW_renamed_SDL_LoadBMP_IO +#define SDL_LowerBlit SDL_LowerBlit_renamed_SDL_BlitSurfaceUnchecked +#define SDL_LowerBlitScaled SDL_LowerBlitScaled_renamed_SDL_BlitSurfaceUncheckedScaled +#define SDL_PREALLOC SDL_PREALLOC_renamed_SDL_SURFACE_PREALLOCATED +#define SDL_SIMD_ALIGNED SDL_SIMD_ALIGNED_renamed_SDL_SURFACE_SIMD_ALIGNED +#define SDL_SaveBMP_RW SDL_SaveBMP_RW_renamed_SDL_SaveBMP_IO +#define SDL_SetClipRect SDL_SetClipRect_renamed_SDL_SetSurfaceClipRect +#define SDL_SetColorKey SDL_SetColorKey_renamed_SDL_SetSurfaceColorKey +#define SDL_UpperBlit SDL_UpperBlit_renamed_SDL_BlitSurface +#define SDL_UpperBlitScaled SDL_UpperBlitScaled_renamed_SDL_BlitSurfaceScaled + +/* ##SDL_system.h */ +#define SDL_AndroidBackButton SDL_AndroidBackButton_renamed_SDL_SendAndroidBackButton +#define SDL_AndroidGetActivity SDL_AndroidGetActivity_renamed_SDL_GetAndroidActivity +#define SDL_AndroidGetExternalStoragePath SDL_AndroidGetExternalStoragePath_renamed_SDL_GetAndroidExternalStoragePath +#define SDL_AndroidGetExternalStorageState SDL_AndroidGetExternalStorageState_renamed_SDL_GetAndroidExternalStorageState +#define SDL_AndroidGetInternalStoragePath SDL_AndroidGetInternalStoragePath_renamed_SDL_GetAndroidInternalStoragePath +#define SDL_AndroidGetJNIEnv SDL_AndroidGetJNIEnv_renamed_SDL_GetAndroidJNIEnv +#define SDL_AndroidRequestPermission SDL_AndroidRequestPermission_renamed_SDL_RequestAndroidPermission +#define SDL_AndroidRequestPermissionCallback SDL_AndroidRequestPermissionCallback_renamed_SDL_RequestAndroidPermissionCallback +#define SDL_AndroidSendMessage SDL_AndroidSendMessage_renamed_SDL_SendAndroidMessage +#define SDL_AndroidShowToast SDL_AndroidShowToast_renamed_SDL_ShowAndroidToast +#define SDL_DXGIGetOutputInfo SDL_DXGIGetOutputInfo_renamed_SDL_GetDXGIOutputInfo +#define SDL_Direct3D9GetAdapterIndex SDL_Direct3D9GetAdapterIndex_renamed_SDL_GetDirect3D9AdapterIndex +#define SDL_GDKGetDefaultUser SDL_GDKGetDefaultUser_renamed_SDL_GetGDKDefaultUser +#define SDL_GDKGetTaskQueue SDL_GDKGetTaskQueue_renamed_SDL_GetGDKTaskQueue +#define SDL_LinuxSetThreadPriority SDL_LinuxSetThreadPriority_renamed_SDL_SetLinuxThreadPriority +#define SDL_LinuxSetThreadPriorityAndPolicy SDL_LinuxSetThreadPriorityAndPolicy_renamed_SDL_SetLinuxThreadPriorityAndPolicy +#define SDL_OnApplicationDidBecomeActive SDL_OnApplicationDidBecomeActive_renamed_SDL_OnApplicationDidEnterForeground +#define SDL_OnApplicationWillResignActive SDL_OnApplicationWillResignActive_renamed_SDL_OnApplicationWillEnterBackground +#define SDL_iOSSetAnimationCallback SDL_iOSSetAnimationCallback_renamed_SDL_SetiOSAnimationCallback +#define SDL_iOSSetEventPump SDL_iOSSetEventPump_renamed_SDL_SetiOSEventPump +#define SDL_iPhoneSetAnimationCallback SDL_iPhoneSetAnimationCallback_renamed_SDL_iOSSetAnimationCallback +#define SDL_iPhoneSetEventPump SDL_iPhoneSetEventPump_renamed_SDL_iOSSetEventPump + +/* ##SDL_thread.h */ +#define SDL_SetThreadPriority SDL_SetThreadPriority_renamed_SDL_SetCurrentThreadPriority +#define SDL_TLSCleanup SDL_TLSCleanup_renamed_SDL_CleanupTLS +#define SDL_TLSGet SDL_TLSGet_renamed_SDL_GetTLS +#define SDL_TLSSet SDL_TLSSet_renamed_SDL_SetTLS +#define SDL_threadID SDL_threadID_renamed_SDL_ThreadID + +/* ##SDL_timer.h */ +#define SDL_GetTicks64 SDL_GetTicks64_renamed_SDL_GetTicks + +/* ##SDL_version.h */ +#define SDL_COMPILEDVERSION SDL_COMPILEDVERSION_renamed_SDL_VERSION +#define SDL_PATCHLEVEL SDL_PATCHLEVEL_renamed_SDL_MICRO_VERSION + +/* ##SDL_video.h */ +#define SDL_GL_DeleteContext SDL_GL_DeleteContext_renamed_SDL_GL_DestroyContext +#define SDL_GLattr SDL_GLattr_renamed_SDL_GLAttr +#define SDL_GLcontextFlag SDL_GLcontextFlag_renamed_SDL_GLContextFlag +#define SDL_GLcontextReleaseFlag SDL_GLcontextReleaseFlag_renamed_SDL_GLContextReleaseFlag +#define SDL_GLprofile SDL_GLprofile_renamed_SDL_GLProfile +#define SDL_GetClosestDisplayMode SDL_GetClosestDisplayMode_renamed_SDL_GetClosestFullscreenDisplayMode +#define SDL_GetDisplayOrientation SDL_GetDisplayOrientation_renamed_SDL_GetCurrentDisplayOrientation +#define SDL_GetPointDisplayIndex SDL_GetPointDisplayIndex_renamed_SDL_GetDisplayForPoint +#define SDL_GetRectDisplayIndex SDL_GetRectDisplayIndex_renamed_SDL_GetDisplayForRect +#define SDL_GetWindowDisplayIndex SDL_GetWindowDisplayIndex_renamed_SDL_GetDisplayForWindow +#define SDL_GetWindowDisplayMode SDL_GetWindowDisplayMode_renamed_SDL_GetWindowFullscreenMode +#define SDL_HasWindowSurface SDL_HasWindowSurface_renamed_SDL_WindowHasSurface +#define SDL_IsScreenSaverEnabled SDL_IsScreenSaverEnabled_renamed_SDL_ScreenSaverEnabled +#define SDL_SetWindowDisplayMode SDL_SetWindowDisplayMode_renamed_SDL_SetWindowFullscreenMode +#define SDL_WINDOW_ALLOW_HIGHDPI SDL_WINDOW_ALLOW_HIGHDPI_renamed_SDL_WINDOW_HIGH_PIXEL_DENSITY +#define SDL_WINDOW_INPUT_GRABBED SDL_WINDOW_INPUT_GRABBED_renamed_SDL_WINDOW_MOUSE_GRABBED +#define SDL_WINDOW_SKIP_TASKBAR SDL_WINDOW_SKIP_TASKBAR_renamed_SDL_WINDOW_UTILITY + +#endif /* SDL_ENABLE_OLD_NAMES */ + +#endif /* SDL_oldnames_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengl.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengl.h new file mode 100644 index 0000000..d1b8b02 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengl.h @@ -0,0 +1,3101 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the OpenGL API headers. + * + * Define NO_SDL_GLEXT if you have your own version of glext.h and want + * to disable the version included in SDL_opengl.h. + */ + +#ifndef SDL_opengl_h_ +#define SDL_opengl_h_ + +#include + +#ifndef SDL_PLATFORM_IOS /* No OpenGL on iOS. */ + +/* + * Mesa 3-D graphics library + * + * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. + * Copyright (C) 2009 VMware, Inc. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + */ + + +#ifndef __gl_h_ +#define __gl_h_ + +#ifdef USE_MGL_NAMESPACE +#include +#endif + + +/********************************************************************** + * Begin system-specific stuff. + */ + +#if defined(_WIN32) && !defined(__CYGWIN__) +# if (defined(_MSC_VER) || defined(__MINGW32__)) && defined(BUILD_GL32) /* tag specify we're building mesa as a DLL */ +# define GLAPI __declspec(dllexport) +# elif (defined(_MSC_VER) || defined(__MINGW32__)) && defined(_DLL) /* tag specifying we're building for DLL runtime support */ +# define GLAPI __declspec(dllimport) +# else /* for use with static link lib build of Win32 edition only */ +# define GLAPI extern +# endif /* _STATIC_MESA support */ +# if defined(__MINGW32__) && defined(GL_NO_STDCALL) || defined(UNDER_CE) /* The generated DLLs by MingW with STDCALL are not compatible with the ones done by Microsoft's compilers */ +# define GLAPIENTRY +# else +# define GLAPIENTRY __stdcall +# endif +#elif defined(__CYGWIN__) && defined(USE_OPENGL32) /* use native windows opengl32 */ +# define GLAPI extern +# define GLAPIENTRY __stdcall +#elif (defined(__GNUC__) && __GNUC__ >= 4) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) +# define GLAPI __attribute__((visibility("default"))) +# define GLAPIENTRY +#endif /* WIN32 && !CYGWIN */ + +/* + * WINDOWS: Include windows.h here to define APIENTRY. + * It is also useful when applications include this file by + * including only glut.h, since glut.h depends on windows.h. + * Applications needing to include windows.h with parms other + * than "WIN32_LEAN_AND_MEAN" may include windows.h before + * glut.h or gl.h. + */ +#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN 1 +#endif +#ifndef NOMINMAX /* don't define min() and max(). */ +#define NOMINMAX +#endif +#include +#endif + +#ifndef GLAPI +#define GLAPI extern +#endif + +#ifndef GLAPIENTRY +#define GLAPIENTRY +#endif + +#ifndef APIENTRY +#define APIENTRY GLAPIENTRY +#endif + +/* "P" suffix to be used for a pointer to a function */ +#ifndef APIENTRYP +#define APIENTRYP APIENTRY * +#endif + +#ifndef GLAPIENTRYP +#define GLAPIENTRYP GLAPIENTRY * +#endif + +#if defined(PRAGMA_EXPORT_SUPPORTED) +#pragma export on +#endif + +/* + * End system-specific stuff. + **********************************************************************/ + + + +#ifdef __cplusplus +extern "C" { +#endif + + + +#define GL_VERSION_1_1 1 +#define GL_VERSION_1_2 1 +#define GL_VERSION_1_3 1 +#define GL_ARB_imaging 1 + + +/* + * Datatypes + */ +typedef unsigned int GLenum; +typedef unsigned char GLboolean; +typedef unsigned int GLbitfield; +typedef void GLvoid; +typedef signed char GLbyte; /* 1-byte signed */ +typedef short GLshort; /* 2-byte signed */ +typedef int GLint; /* 4-byte signed */ +typedef unsigned char GLubyte; /* 1-byte unsigned */ +typedef unsigned short GLushort; /* 2-byte unsigned */ +typedef unsigned int GLuint; /* 4-byte unsigned */ +typedef int GLsizei; /* 4-byte signed */ +typedef float GLfloat; /* single precision float */ +typedef float GLclampf; /* single precision float in [0,1] */ +typedef double GLdouble; /* double precision float */ +typedef double GLclampd; /* double precision float in [0,1] */ + + + +/* + * Constants + */ + +/* Boolean values */ +#define GL_FALSE 0 +#define GL_TRUE 1 + +/* Data types */ +#define GL_BYTE 0x1400 +#define GL_UNSIGNED_BYTE 0x1401 +#define GL_SHORT 0x1402 +#define GL_UNSIGNED_SHORT 0x1403 +#define GL_INT 0x1404 +#define GL_UNSIGNED_INT 0x1405 +#define GL_FLOAT 0x1406 +#define GL_2_BYTES 0x1407 +#define GL_3_BYTES 0x1408 +#define GL_4_BYTES 0x1409 +#define GL_DOUBLE 0x140A + +/* Primitives */ +#define GL_POINTS 0x0000 +#define GL_LINES 0x0001 +#define GL_LINE_LOOP 0x0002 +#define GL_LINE_STRIP 0x0003 +#define GL_TRIANGLES 0x0004 +#define GL_TRIANGLE_STRIP 0x0005 +#define GL_TRIANGLE_FAN 0x0006 +#define GL_QUADS 0x0007 +#define GL_QUAD_STRIP 0x0008 +#define GL_POLYGON 0x0009 + +/* Vertex Arrays */ +#define GL_VERTEX_ARRAY 0x8074 +#define GL_NORMAL_ARRAY 0x8075 +#define GL_COLOR_ARRAY 0x8076 +#define GL_INDEX_ARRAY 0x8077 +#define GL_TEXTURE_COORD_ARRAY 0x8078 +#define GL_EDGE_FLAG_ARRAY 0x8079 +#define GL_VERTEX_ARRAY_SIZE 0x807A +#define GL_VERTEX_ARRAY_TYPE 0x807B +#define GL_VERTEX_ARRAY_STRIDE 0x807C +#define GL_NORMAL_ARRAY_TYPE 0x807E +#define GL_NORMAL_ARRAY_STRIDE 0x807F +#define GL_COLOR_ARRAY_SIZE 0x8081 +#define GL_COLOR_ARRAY_TYPE 0x8082 +#define GL_COLOR_ARRAY_STRIDE 0x8083 +#define GL_INDEX_ARRAY_TYPE 0x8085 +#define GL_INDEX_ARRAY_STRIDE 0x8086 +#define GL_TEXTURE_COORD_ARRAY_SIZE 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE 0x808A +#define GL_EDGE_FLAG_ARRAY_STRIDE 0x808C +#define GL_VERTEX_ARRAY_POINTER 0x808E +#define GL_NORMAL_ARRAY_POINTER 0x808F +#define GL_COLOR_ARRAY_POINTER 0x8090 +#define GL_INDEX_ARRAY_POINTER 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER 0x8093 +#define GL_V2F 0x2A20 +#define GL_V3F 0x2A21 +#define GL_C4UB_V2F 0x2A22 +#define GL_C4UB_V3F 0x2A23 +#define GL_C3F_V3F 0x2A24 +#define GL_N3F_V3F 0x2A25 +#define GL_C4F_N3F_V3F 0x2A26 +#define GL_T2F_V3F 0x2A27 +#define GL_T4F_V4F 0x2A28 +#define GL_T2F_C4UB_V3F 0x2A29 +#define GL_T2F_C3F_V3F 0x2A2A +#define GL_T2F_N3F_V3F 0x2A2B +#define GL_T2F_C4F_N3F_V3F 0x2A2C +#define GL_T4F_C4F_N3F_V4F 0x2A2D + +/* Matrix Mode */ +#define GL_MATRIX_MODE 0x0BA0 +#define GL_MODELVIEW 0x1700 +#define GL_PROJECTION 0x1701 +#define GL_TEXTURE 0x1702 + +/* Points */ +#define GL_POINT_SMOOTH 0x0B10 +#define GL_POINT_SIZE 0x0B11 +#define GL_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_POINT_SIZE_RANGE 0x0B12 + +/* Lines */ +#define GL_LINE_SMOOTH 0x0B20 +#define GL_LINE_STIPPLE 0x0B24 +#define GL_LINE_STIPPLE_PATTERN 0x0B25 +#define GL_LINE_STIPPLE_REPEAT 0x0B26 +#define GL_LINE_WIDTH 0x0B21 +#define GL_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_LINE_WIDTH_RANGE 0x0B22 + +/* Polygons */ +#define GL_POINT 0x1B00 +#define GL_LINE 0x1B01 +#define GL_FILL 0x1B02 +#define GL_CW 0x0900 +#define GL_CCW 0x0901 +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_POLYGON_MODE 0x0B40 +#define GL_POLYGON_SMOOTH 0x0B41 +#define GL_POLYGON_STIPPLE 0x0B42 +#define GL_EDGE_FLAG 0x0B43 +#define GL_CULL_FACE 0x0B44 +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_POLYGON_OFFSET_UNITS 0x2A00 +#define GL_POLYGON_OFFSET_POINT 0x2A01 +#define GL_POLYGON_OFFSET_LINE 0x2A02 +#define GL_POLYGON_OFFSET_FILL 0x8037 + +/* Display Lists */ +#define GL_COMPILE 0x1300 +#define GL_COMPILE_AND_EXECUTE 0x1301 +#define GL_LIST_BASE 0x0B32 +#define GL_LIST_INDEX 0x0B33 +#define GL_LIST_MODE 0x0B30 + +/* Depth buffer */ +#define GL_NEVER 0x0200 +#define GL_LESS 0x0201 +#define GL_EQUAL 0x0202 +#define GL_LEQUAL 0x0203 +#define GL_GREATER 0x0204 +#define GL_NOTEQUAL 0x0205 +#define GL_GEQUAL 0x0206 +#define GL_ALWAYS 0x0207 +#define GL_DEPTH_TEST 0x0B71 +#define GL_DEPTH_BITS 0x0D56 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_COMPONENT 0x1902 + +/* Lighting */ +#define GL_LIGHTING 0x0B50 +#define GL_LIGHT0 0x4000 +#define GL_LIGHT1 0x4001 +#define GL_LIGHT2 0x4002 +#define GL_LIGHT3 0x4003 +#define GL_LIGHT4 0x4004 +#define GL_LIGHT5 0x4005 +#define GL_LIGHT6 0x4006 +#define GL_LIGHT7 0x4007 +#define GL_SPOT_EXPONENT 0x1205 +#define GL_SPOT_CUTOFF 0x1206 +#define GL_CONSTANT_ATTENUATION 0x1207 +#define GL_LINEAR_ATTENUATION 0x1208 +#define GL_QUADRATIC_ATTENUATION 0x1209 +#define GL_AMBIENT 0x1200 +#define GL_DIFFUSE 0x1201 +#define GL_SPECULAR 0x1202 +#define GL_SHININESS 0x1601 +#define GL_EMISSION 0x1600 +#define GL_POSITION 0x1203 +#define GL_SPOT_DIRECTION 0x1204 +#define GL_AMBIENT_AND_DIFFUSE 0x1602 +#define GL_COLOR_INDEXES 0x1603 +#define GL_LIGHT_MODEL_TWO_SIDE 0x0B52 +#define GL_LIGHT_MODEL_LOCAL_VIEWER 0x0B51 +#define GL_LIGHT_MODEL_AMBIENT 0x0B53 +#define GL_FRONT_AND_BACK 0x0408 +#define GL_SHADE_MODEL 0x0B54 +#define GL_FLAT 0x1D00 +#define GL_SMOOTH 0x1D01 +#define GL_COLOR_MATERIAL 0x0B57 +#define GL_COLOR_MATERIAL_FACE 0x0B55 +#define GL_COLOR_MATERIAL_PARAMETER 0x0B56 +#define GL_NORMALIZE 0x0BA1 + +/* User clipping planes */ +#define GL_CLIP_PLANE0 0x3000 +#define GL_CLIP_PLANE1 0x3001 +#define GL_CLIP_PLANE2 0x3002 +#define GL_CLIP_PLANE3 0x3003 +#define GL_CLIP_PLANE4 0x3004 +#define GL_CLIP_PLANE5 0x3005 + +/* Accumulation buffer */ +#define GL_ACCUM_RED_BITS 0x0D58 +#define GL_ACCUM_GREEN_BITS 0x0D59 +#define GL_ACCUM_BLUE_BITS 0x0D5A +#define GL_ACCUM_ALPHA_BITS 0x0D5B +#define GL_ACCUM_CLEAR_VALUE 0x0B80 +#define GL_ACCUM 0x0100 +#define GL_ADD 0x0104 +#define GL_LOAD 0x0101 +#define GL_MULT 0x0103 +#define GL_RETURN 0x0102 + +/* Alpha testing */ +#define GL_ALPHA_TEST 0x0BC0 +#define GL_ALPHA_TEST_REF 0x0BC2 +#define GL_ALPHA_TEST_FUNC 0x0BC1 + +/* Blending */ +#define GL_BLEND 0x0BE2 +#define GL_BLEND_SRC 0x0BE1 +#define GL_BLEND_DST 0x0BE0 +#define GL_ZERO 0 +#define GL_ONE 1 +#define GL_SRC_COLOR 0x0300 +#define GL_ONE_MINUS_SRC_COLOR 0x0301 +#define GL_SRC_ALPHA 0x0302 +#define GL_ONE_MINUS_SRC_ALPHA 0x0303 +#define GL_DST_ALPHA 0x0304 +#define GL_ONE_MINUS_DST_ALPHA 0x0305 +#define GL_DST_COLOR 0x0306 +#define GL_ONE_MINUS_DST_COLOR 0x0307 +#define GL_SRC_ALPHA_SATURATE 0x0308 + +/* Render Mode */ +#define GL_FEEDBACK 0x1C01 +#define GL_RENDER 0x1C00 +#define GL_SELECT 0x1C02 + +/* Feedback */ +#define GL_2D 0x0600 +#define GL_3D 0x0601 +#define GL_3D_COLOR 0x0602 +#define GL_3D_COLOR_TEXTURE 0x0603 +#define GL_4D_COLOR_TEXTURE 0x0604 +#define GL_POINT_TOKEN 0x0701 +#define GL_LINE_TOKEN 0x0702 +#define GL_LINE_RESET_TOKEN 0x0707 +#define GL_POLYGON_TOKEN 0x0703 +#define GL_BITMAP_TOKEN 0x0704 +#define GL_DRAW_PIXEL_TOKEN 0x0705 +#define GL_COPY_PIXEL_TOKEN 0x0706 +#define GL_PASS_THROUGH_TOKEN 0x0700 +#define GL_FEEDBACK_BUFFER_POINTER 0x0DF0 +#define GL_FEEDBACK_BUFFER_SIZE 0x0DF1 +#define GL_FEEDBACK_BUFFER_TYPE 0x0DF2 + +/* Selection */ +#define GL_SELECTION_BUFFER_POINTER 0x0DF3 +#define GL_SELECTION_BUFFER_SIZE 0x0DF4 + +/* Fog */ +#define GL_FOG 0x0B60 +#define GL_FOG_MODE 0x0B65 +#define GL_FOG_DENSITY 0x0B62 +#define GL_FOG_COLOR 0x0B66 +#define GL_FOG_INDEX 0x0B61 +#define GL_FOG_START 0x0B63 +#define GL_FOG_END 0x0B64 +#define GL_LINEAR 0x2601 +#define GL_EXP 0x0800 +#define GL_EXP2 0x0801 + +/* Logic Ops */ +#define GL_LOGIC_OP 0x0BF1 +#define GL_INDEX_LOGIC_OP 0x0BF1 +#define GL_COLOR_LOGIC_OP 0x0BF2 +#define GL_LOGIC_OP_MODE 0x0BF0 +#define GL_CLEAR 0x1500 +#define GL_SET 0x150F +#define GL_COPY 0x1503 +#define GL_COPY_INVERTED 0x150C +#define GL_NOOP 0x1505 +#define GL_INVERT 0x150A +#define GL_AND 0x1501 +#define GL_NAND 0x150E +#define GL_OR 0x1507 +#define GL_NOR 0x1508 +#define GL_XOR 0x1506 +#define GL_EQUIV 0x1509 +#define GL_AND_REVERSE 0x1502 +#define GL_AND_INVERTED 0x1504 +#define GL_OR_REVERSE 0x150B +#define GL_OR_INVERTED 0x150D + +/* Stencil */ +#define GL_STENCIL_BITS 0x0D57 +#define GL_STENCIL_TEST 0x0B90 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#define GL_STENCIL_VALUE_MASK 0x0B93 +#define GL_STENCIL_FAIL 0x0B94 +#define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 +#define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 +#define GL_STENCIL_REF 0x0B97 +#define GL_STENCIL_WRITEMASK 0x0B98 +#define GL_STENCIL_INDEX 0x1901 +#define GL_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 + +/* Buffers, Pixel Drawing/Reading */ +#define GL_NONE 0 +#define GL_LEFT 0x0406 +#define GL_RIGHT 0x0407 +/*GL_FRONT 0x0404 */ +/*GL_BACK 0x0405 */ +/*GL_FRONT_AND_BACK 0x0408 */ +#define GL_FRONT_LEFT 0x0400 +#define GL_FRONT_RIGHT 0x0401 +#define GL_BACK_LEFT 0x0402 +#define GL_BACK_RIGHT 0x0403 +#define GL_AUX0 0x0409 +#define GL_AUX1 0x040A +#define GL_AUX2 0x040B +#define GL_AUX3 0x040C +#define GL_COLOR_INDEX 0x1900 +#define GL_RED 0x1903 +#define GL_GREEN 0x1904 +#define GL_BLUE 0x1905 +#define GL_ALPHA 0x1906 +#define GL_LUMINANCE 0x1909 +#define GL_LUMINANCE_ALPHA 0x190A +#define GL_ALPHA_BITS 0x0D55 +#define GL_RED_BITS 0x0D52 +#define GL_GREEN_BITS 0x0D53 +#define GL_BLUE_BITS 0x0D54 +#define GL_INDEX_BITS 0x0D51 +#define GL_SUBPIXEL_BITS 0x0D50 +#define GL_AUX_BUFFERS 0x0C00 +#define GL_READ_BUFFER 0x0C02 +#define GL_DRAW_BUFFER 0x0C01 +#define GL_DOUBLEBUFFER 0x0C32 +#define GL_STEREO 0x0C33 +#define GL_BITMAP 0x1A00 +#define GL_COLOR 0x1800 +#define GL_DEPTH 0x1801 +#define GL_STENCIL 0x1802 +#define GL_DITHER 0x0BD0 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 + +/* Implementation limits */ +#define GL_MAX_LIST_NESTING 0x0B31 +#define GL_MAX_EVAL_ORDER 0x0D30 +#define GL_MAX_LIGHTS 0x0D31 +#define GL_MAX_CLIP_PLANES 0x0D32 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_PIXEL_MAP_TABLE 0x0D34 +#define GL_MAX_ATTRIB_STACK_DEPTH 0x0D35 +#define GL_MAX_MODELVIEW_STACK_DEPTH 0x0D36 +#define GL_MAX_NAME_STACK_DEPTH 0x0D37 +#define GL_MAX_PROJECTION_STACK_DEPTH 0x0D38 +#define GL_MAX_TEXTURE_STACK_DEPTH 0x0D39 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_MAX_CLIENT_ATTRIB_STACK_DEPTH 0x0D3B + +/* Gets */ +#define GL_ATTRIB_STACK_DEPTH 0x0BB0 +#define GL_CLIENT_ATTRIB_STACK_DEPTH 0x0BB1 +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_CURRENT_INDEX 0x0B01 +#define GL_CURRENT_COLOR 0x0B00 +#define GL_CURRENT_NORMAL 0x0B02 +#define GL_CURRENT_RASTER_COLOR 0x0B04 +#define GL_CURRENT_RASTER_DISTANCE 0x0B09 +#define GL_CURRENT_RASTER_INDEX 0x0B05 +#define GL_CURRENT_RASTER_POSITION 0x0B07 +#define GL_CURRENT_RASTER_TEXTURE_COORDS 0x0B06 +#define GL_CURRENT_RASTER_POSITION_VALID 0x0B08 +#define GL_CURRENT_TEXTURE_COORDS 0x0B03 +#define GL_INDEX_CLEAR_VALUE 0x0C20 +#define GL_INDEX_MODE 0x0C30 +#define GL_INDEX_WRITEMASK 0x0C21 +#define GL_MODELVIEW_MATRIX 0x0BA6 +#define GL_MODELVIEW_STACK_DEPTH 0x0BA3 +#define GL_NAME_STACK_DEPTH 0x0D70 +#define GL_PROJECTION_MATRIX 0x0BA7 +#define GL_PROJECTION_STACK_DEPTH 0x0BA4 +#define GL_RENDER_MODE 0x0C40 +#define GL_RGBA_MODE 0x0C31 +#define GL_TEXTURE_MATRIX 0x0BA8 +#define GL_TEXTURE_STACK_DEPTH 0x0BA5 +#define GL_VIEWPORT 0x0BA2 + +/* Evaluators */ +#define GL_AUTO_NORMAL 0x0D80 +#define GL_MAP1_COLOR_4 0x0D90 +#define GL_MAP1_INDEX 0x0D91 +#define GL_MAP1_NORMAL 0x0D92 +#define GL_MAP1_TEXTURE_COORD_1 0x0D93 +#define GL_MAP1_TEXTURE_COORD_2 0x0D94 +#define GL_MAP1_TEXTURE_COORD_3 0x0D95 +#define GL_MAP1_TEXTURE_COORD_4 0x0D96 +#define GL_MAP1_VERTEX_3 0x0D97 +#define GL_MAP1_VERTEX_4 0x0D98 +#define GL_MAP2_COLOR_4 0x0DB0 +#define GL_MAP2_INDEX 0x0DB1 +#define GL_MAP2_NORMAL 0x0DB2 +#define GL_MAP2_TEXTURE_COORD_1 0x0DB3 +#define GL_MAP2_TEXTURE_COORD_2 0x0DB4 +#define GL_MAP2_TEXTURE_COORD_3 0x0DB5 +#define GL_MAP2_TEXTURE_COORD_4 0x0DB6 +#define GL_MAP2_VERTEX_3 0x0DB7 +#define GL_MAP2_VERTEX_4 0x0DB8 +#define GL_MAP1_GRID_DOMAIN 0x0DD0 +#define GL_MAP1_GRID_SEGMENTS 0x0DD1 +#define GL_MAP2_GRID_DOMAIN 0x0DD2 +#define GL_MAP2_GRID_SEGMENTS 0x0DD3 +#define GL_COEFF 0x0A00 +#define GL_ORDER 0x0A01 +#define GL_DOMAIN 0x0A02 + +/* Hints */ +#define GL_PERSPECTIVE_CORRECTION_HINT 0x0C50 +#define GL_POINT_SMOOTH_HINT 0x0C51 +#define GL_LINE_SMOOTH_HINT 0x0C52 +#define GL_POLYGON_SMOOTH_HINT 0x0C53 +#define GL_FOG_HINT 0x0C54 +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 + +/* Scissor box */ +#define GL_SCISSOR_BOX 0x0C10 +#define GL_SCISSOR_TEST 0x0C11 + +/* Pixel Mode / Transfer */ +#define GL_MAP_COLOR 0x0D10 +#define GL_MAP_STENCIL 0x0D11 +#define GL_INDEX_SHIFT 0x0D12 +#define GL_INDEX_OFFSET 0x0D13 +#define GL_RED_SCALE 0x0D14 +#define GL_RED_BIAS 0x0D15 +#define GL_GREEN_SCALE 0x0D18 +#define GL_GREEN_BIAS 0x0D19 +#define GL_BLUE_SCALE 0x0D1A +#define GL_BLUE_BIAS 0x0D1B +#define GL_ALPHA_SCALE 0x0D1C +#define GL_ALPHA_BIAS 0x0D1D +#define GL_DEPTH_SCALE 0x0D1E +#define GL_DEPTH_BIAS 0x0D1F +#define GL_PIXEL_MAP_S_TO_S_SIZE 0x0CB1 +#define GL_PIXEL_MAP_I_TO_I_SIZE 0x0CB0 +#define GL_PIXEL_MAP_I_TO_R_SIZE 0x0CB2 +#define GL_PIXEL_MAP_I_TO_G_SIZE 0x0CB3 +#define GL_PIXEL_MAP_I_TO_B_SIZE 0x0CB4 +#define GL_PIXEL_MAP_I_TO_A_SIZE 0x0CB5 +#define GL_PIXEL_MAP_R_TO_R_SIZE 0x0CB6 +#define GL_PIXEL_MAP_G_TO_G_SIZE 0x0CB7 +#define GL_PIXEL_MAP_B_TO_B_SIZE 0x0CB8 +#define GL_PIXEL_MAP_A_TO_A_SIZE 0x0CB9 +#define GL_PIXEL_MAP_S_TO_S 0x0C71 +#define GL_PIXEL_MAP_I_TO_I 0x0C70 +#define GL_PIXEL_MAP_I_TO_R 0x0C72 +#define GL_PIXEL_MAP_I_TO_G 0x0C73 +#define GL_PIXEL_MAP_I_TO_B 0x0C74 +#define GL_PIXEL_MAP_I_TO_A 0x0C75 +#define GL_PIXEL_MAP_R_TO_R 0x0C76 +#define GL_PIXEL_MAP_G_TO_G 0x0C77 +#define GL_PIXEL_MAP_B_TO_B 0x0C78 +#define GL_PIXEL_MAP_A_TO_A 0x0C79 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_PACK_LSB_FIRST 0x0D01 +#define GL_PACK_ROW_LENGTH 0x0D02 +#define GL_PACK_SKIP_PIXELS 0x0D04 +#define GL_PACK_SKIP_ROWS 0x0D03 +#define GL_PACK_SWAP_BYTES 0x0D00 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_UNPACK_LSB_FIRST 0x0CF1 +#define GL_UNPACK_ROW_LENGTH 0x0CF2 +#define GL_UNPACK_SKIP_PIXELS 0x0CF4 +#define GL_UNPACK_SKIP_ROWS 0x0CF3 +#define GL_UNPACK_SWAP_BYTES 0x0CF0 +#define GL_ZOOM_X 0x0D16 +#define GL_ZOOM_Y 0x0D17 + +/* Texture mapping */ +#define GL_TEXTURE_ENV 0x2300 +#define GL_TEXTURE_ENV_MODE 0x2200 +#define GL_TEXTURE_1D 0x0DE0 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_TEXTURE_WRAP_S 0x2802 +#define GL_TEXTURE_WRAP_T 0x2803 +#define GL_TEXTURE_MAG_FILTER 0x2800 +#define GL_TEXTURE_MIN_FILTER 0x2801 +#define GL_TEXTURE_ENV_COLOR 0x2201 +#define GL_TEXTURE_GEN_S 0x0C60 +#define GL_TEXTURE_GEN_T 0x0C61 +#define GL_TEXTURE_GEN_R 0x0C62 +#define GL_TEXTURE_GEN_Q 0x0C63 +#define GL_TEXTURE_GEN_MODE 0x2500 +#define GL_TEXTURE_BORDER_COLOR 0x1004 +#define GL_TEXTURE_WIDTH 0x1000 +#define GL_TEXTURE_HEIGHT 0x1001 +#define GL_TEXTURE_BORDER 0x1005 +#define GL_TEXTURE_COMPONENTS 0x1003 +#define GL_TEXTURE_RED_SIZE 0x805C +#define GL_TEXTURE_GREEN_SIZE 0x805D +#define GL_TEXTURE_BLUE_SIZE 0x805E +#define GL_TEXTURE_ALPHA_SIZE 0x805F +#define GL_TEXTURE_LUMINANCE_SIZE 0x8060 +#define GL_TEXTURE_INTENSITY_SIZE 0x8061 +#define GL_NEAREST_MIPMAP_NEAREST 0x2700 +#define GL_NEAREST_MIPMAP_LINEAR 0x2702 +#define GL_LINEAR_MIPMAP_NEAREST 0x2701 +#define GL_LINEAR_MIPMAP_LINEAR 0x2703 +#define GL_OBJECT_LINEAR 0x2401 +#define GL_OBJECT_PLANE 0x2501 +#define GL_EYE_LINEAR 0x2400 +#define GL_EYE_PLANE 0x2502 +#define GL_SPHERE_MAP 0x2402 +#define GL_DECAL 0x2101 +#define GL_MODULATE 0x2100 +#define GL_NEAREST 0x2600 +#define GL_REPEAT 0x2901 +#define GL_CLAMP 0x2900 +#define GL_S 0x2000 +#define GL_T 0x2001 +#define GL_R 0x2002 +#define GL_Q 0x2003 + +/* Utility */ +#define GL_VENDOR 0x1F00 +#define GL_RENDERER 0x1F01 +#define GL_VERSION 0x1F02 +#define GL_EXTENSIONS 0x1F03 + +/* Errors */ +#define GL_NO_ERROR 0 +#define GL_INVALID_ENUM 0x0500 +#define GL_INVALID_VALUE 0x0501 +#define GL_INVALID_OPERATION 0x0502 +#define GL_STACK_OVERFLOW 0x0503 +#define GL_STACK_UNDERFLOW 0x0504 +#define GL_OUT_OF_MEMORY 0x0505 + +/* glPush/PopAttrib bits */ +#define GL_CURRENT_BIT 0x00000001 +#define GL_POINT_BIT 0x00000002 +#define GL_LINE_BIT 0x00000004 +#define GL_POLYGON_BIT 0x00000008 +#define GL_POLYGON_STIPPLE_BIT 0x00000010 +#define GL_PIXEL_MODE_BIT 0x00000020 +#define GL_LIGHTING_BIT 0x00000040 +#define GL_FOG_BIT 0x00000080 +#define GL_DEPTH_BUFFER_BIT 0x00000100 +#define GL_ACCUM_BUFFER_BIT 0x00000200 +#define GL_STENCIL_BUFFER_BIT 0x00000400 +#define GL_VIEWPORT_BIT 0x00000800 +#define GL_TRANSFORM_BIT 0x00001000 +#define GL_ENABLE_BIT 0x00002000 +#define GL_COLOR_BUFFER_BIT 0x00004000 +#define GL_HINT_BIT 0x00008000 +#define GL_EVAL_BIT 0x00010000 +#define GL_LIST_BIT 0x00020000 +#define GL_TEXTURE_BIT 0x00040000 +#define GL_SCISSOR_BIT 0x00080000 +#define GL_ALL_ATTRIB_BITS 0x000FFFFF + + +/* OpenGL 1.1 */ +#define GL_PROXY_TEXTURE_1D 0x8063 +#define GL_PROXY_TEXTURE_2D 0x8064 +#define GL_TEXTURE_PRIORITY 0x8066 +#define GL_TEXTURE_RESIDENT 0x8067 +#define GL_TEXTURE_BINDING_1D 0x8068 +#define GL_TEXTURE_BINDING_2D 0x8069 +#define GL_TEXTURE_INTERNAL_FORMAT 0x1003 +#define GL_ALPHA4 0x803B +#define GL_ALPHA8 0x803C +#define GL_ALPHA12 0x803D +#define GL_ALPHA16 0x803E +#define GL_LUMINANCE4 0x803F +#define GL_LUMINANCE8 0x8040 +#define GL_LUMINANCE12 0x8041 +#define GL_LUMINANCE16 0x8042 +#define GL_LUMINANCE4_ALPHA4 0x8043 +#define GL_LUMINANCE6_ALPHA2 0x8044 +#define GL_LUMINANCE8_ALPHA8 0x8045 +#define GL_LUMINANCE12_ALPHA4 0x8046 +#define GL_LUMINANCE12_ALPHA12 0x8047 +#define GL_LUMINANCE16_ALPHA16 0x8048 +#define GL_INTENSITY 0x8049 +#define GL_INTENSITY4 0x804A +#define GL_INTENSITY8 0x804B +#define GL_INTENSITY12 0x804C +#define GL_INTENSITY16 0x804D +#define GL_R3_G3_B2 0x2A10 +#define GL_RGB4 0x804F +#define GL_RGB5 0x8050 +#define GL_RGB8 0x8051 +#define GL_RGB10 0x8052 +#define GL_RGB12 0x8053 +#define GL_RGB16 0x8054 +#define GL_RGBA2 0x8055 +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGBA8 0x8058 +#define GL_RGB10_A2 0x8059 +#define GL_RGBA12 0x805A +#define GL_RGBA16 0x805B +#define GL_CLIENT_PIXEL_STORE_BIT 0x00000001 +#define GL_CLIENT_VERTEX_ARRAY_BIT 0x00000002 +#define GL_ALL_CLIENT_ATTRIB_BITS 0xFFFFFFFF +#define GL_CLIENT_ALL_ATTRIB_BITS 0xFFFFFFFF + + + +/* + * Miscellaneous + */ + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES +GLAPI void GLAPIENTRY glClearIndex( GLfloat c ); + +GLAPI void GLAPIENTRY glClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ); + +GLAPI void GLAPIENTRY glClear( GLbitfield mask ); + +GLAPI void GLAPIENTRY glIndexMask( GLuint mask ); + +GLAPI void GLAPIENTRY glColorMask( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ); + +GLAPI void GLAPIENTRY glAlphaFunc( GLenum func, GLclampf ref ); + +GLAPI void GLAPIENTRY glBlendFunc( GLenum sfactor, GLenum dfactor ); + +GLAPI void GLAPIENTRY glLogicOp( GLenum opcode ); + +GLAPI void GLAPIENTRY glCullFace( GLenum mode ); + +GLAPI void GLAPIENTRY glFrontFace( GLenum mode ); + +GLAPI void GLAPIENTRY glPointSize( GLfloat size ); + +GLAPI void GLAPIENTRY glLineWidth( GLfloat width ); + +GLAPI void GLAPIENTRY glLineStipple( GLint factor, GLushort pattern ); + +GLAPI void GLAPIENTRY glPolygonMode( GLenum face, GLenum mode ); + +GLAPI void GLAPIENTRY glPolygonOffset( GLfloat factor, GLfloat units ); + +GLAPI void GLAPIENTRY glPolygonStipple( const GLubyte *mask ); + +GLAPI void GLAPIENTRY glGetPolygonStipple( GLubyte *mask ); + +GLAPI void GLAPIENTRY glEdgeFlag( GLboolean flag ); + +GLAPI void GLAPIENTRY glEdgeFlagv( const GLboolean *flag ); + +GLAPI void GLAPIENTRY glScissor( GLint x, GLint y, GLsizei width, GLsizei height); + +GLAPI void GLAPIENTRY glClipPlane( GLenum plane, const GLdouble *equation ); + +GLAPI void GLAPIENTRY glGetClipPlane( GLenum plane, GLdouble *equation ); + +GLAPI void GLAPIENTRY glDrawBuffer( GLenum mode ); + +GLAPI void GLAPIENTRY glReadBuffer( GLenum mode ); + +GLAPI void GLAPIENTRY glEnable( GLenum cap ); + +GLAPI void GLAPIENTRY glDisable( GLenum cap ); + +GLAPI GLboolean GLAPIENTRY glIsEnabled( GLenum cap ); + + +GLAPI void GLAPIENTRY glEnableClientState( GLenum cap ); /* 1.1 */ + +GLAPI void GLAPIENTRY glDisableClientState( GLenum cap ); /* 1.1 */ + + +GLAPI void GLAPIENTRY glGetBooleanv( GLenum pname, GLboolean *params ); + +GLAPI void GLAPIENTRY glGetDoublev( GLenum pname, GLdouble *params ); + +GLAPI void GLAPIENTRY glGetFloatv( GLenum pname, GLfloat *params ); + +GLAPI void GLAPIENTRY glGetIntegerv( GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glPushAttrib( GLbitfield mask ); + +GLAPI void GLAPIENTRY glPopAttrib( void ); + + +GLAPI void GLAPIENTRY glPushClientAttrib( GLbitfield mask ); /* 1.1 */ + +GLAPI void GLAPIENTRY glPopClientAttrib( void ); /* 1.1 */ + + +GLAPI GLint GLAPIENTRY glRenderMode( GLenum mode ); + +GLAPI GLenum GLAPIENTRY glGetError( void ); + +GLAPI const GLubyte * GLAPIENTRY glGetString( GLenum name ); + +GLAPI void GLAPIENTRY glFinish( void ); + +GLAPI void GLAPIENTRY glFlush( void ); + +GLAPI void GLAPIENTRY glHint( GLenum target, GLenum mode ); + + +/* + * Depth Buffer + */ + +GLAPI void GLAPIENTRY glClearDepth( GLclampd depth ); + +GLAPI void GLAPIENTRY glDepthFunc( GLenum func ); + +GLAPI void GLAPIENTRY glDepthMask( GLboolean flag ); + +GLAPI void GLAPIENTRY glDepthRange( GLclampd near_val, GLclampd far_val ); + + +/* + * Accumulation Buffer + */ + +GLAPI void GLAPIENTRY glClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ); + +GLAPI void GLAPIENTRY glAccum( GLenum op, GLfloat value ); + + +/* + * Transformation + */ + +GLAPI void GLAPIENTRY glMatrixMode( GLenum mode ); + +GLAPI void GLAPIENTRY glOrtho( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +GLAPI void GLAPIENTRY glFrustum( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +GLAPI void GLAPIENTRY glViewport( GLint x, GLint y, + GLsizei width, GLsizei height ); + +GLAPI void GLAPIENTRY glPushMatrix( void ); + +GLAPI void GLAPIENTRY glPopMatrix( void ); + +GLAPI void GLAPIENTRY glLoadIdentity( void ); + +GLAPI void GLAPIENTRY glLoadMatrixd( const GLdouble *m ); +GLAPI void GLAPIENTRY glLoadMatrixf( const GLfloat *m ); + +GLAPI void GLAPIENTRY glMultMatrixd( const GLdouble *m ); +GLAPI void GLAPIENTRY glMultMatrixf( const GLfloat *m ); + +GLAPI void GLAPIENTRY glRotated( GLdouble angle, + GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glRotatef( GLfloat angle, + GLfloat x, GLfloat y, GLfloat z ); + +GLAPI void GLAPIENTRY glScaled( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glScalef( GLfloat x, GLfloat y, GLfloat z ); + +GLAPI void GLAPIENTRY glTranslated( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glTranslatef( GLfloat x, GLfloat y, GLfloat z ); + + +/* + * Display Lists + */ + +GLAPI GLboolean GLAPIENTRY glIsList( GLuint list ); + +GLAPI void GLAPIENTRY glDeleteLists( GLuint list, GLsizei range ); + +GLAPI GLuint GLAPIENTRY glGenLists( GLsizei range ); + +GLAPI void GLAPIENTRY glNewList( GLuint list, GLenum mode ); + +GLAPI void GLAPIENTRY glEndList( void ); + +GLAPI void GLAPIENTRY glCallList( GLuint list ); + +GLAPI void GLAPIENTRY glCallLists( GLsizei n, GLenum type, + const GLvoid *lists ); + +GLAPI void GLAPIENTRY glListBase( GLuint base ); + + +/* + * Drawing Functions + */ + +GLAPI void GLAPIENTRY glBegin( GLenum mode ); + +GLAPI void GLAPIENTRY glEnd( void ); + + +GLAPI void GLAPIENTRY glVertex2d( GLdouble x, GLdouble y ); +GLAPI void GLAPIENTRY glVertex2f( GLfloat x, GLfloat y ); +GLAPI void GLAPIENTRY glVertex2i( GLint x, GLint y ); +GLAPI void GLAPIENTRY glVertex2s( GLshort x, GLshort y ); + +GLAPI void GLAPIENTRY glVertex3d( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glVertex3f( GLfloat x, GLfloat y, GLfloat z ); +GLAPI void GLAPIENTRY glVertex3i( GLint x, GLint y, GLint z ); +GLAPI void GLAPIENTRY glVertex3s( GLshort x, GLshort y, GLshort z ); + +GLAPI void GLAPIENTRY glVertex4d( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +GLAPI void GLAPIENTRY glVertex4f( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +GLAPI void GLAPIENTRY glVertex4i( GLint x, GLint y, GLint z, GLint w ); +GLAPI void GLAPIENTRY glVertex4s( GLshort x, GLshort y, GLshort z, GLshort w ); + +GLAPI void GLAPIENTRY glVertex2dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glVertex2fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glVertex2iv( const GLint *v ); +GLAPI void GLAPIENTRY glVertex2sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glVertex3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glVertex3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glVertex3iv( const GLint *v ); +GLAPI void GLAPIENTRY glVertex3sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glVertex4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glVertex4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glVertex4iv( const GLint *v ); +GLAPI void GLAPIENTRY glVertex4sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glNormal3b( GLbyte nx, GLbyte ny, GLbyte nz ); +GLAPI void GLAPIENTRY glNormal3d( GLdouble nx, GLdouble ny, GLdouble nz ); +GLAPI void GLAPIENTRY glNormal3f( GLfloat nx, GLfloat ny, GLfloat nz ); +GLAPI void GLAPIENTRY glNormal3i( GLint nx, GLint ny, GLint nz ); +GLAPI void GLAPIENTRY glNormal3s( GLshort nx, GLshort ny, GLshort nz ); + +GLAPI void GLAPIENTRY glNormal3bv( const GLbyte *v ); +GLAPI void GLAPIENTRY glNormal3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glNormal3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glNormal3iv( const GLint *v ); +GLAPI void GLAPIENTRY glNormal3sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glIndexd( GLdouble c ); +GLAPI void GLAPIENTRY glIndexf( GLfloat c ); +GLAPI void GLAPIENTRY glIndexi( GLint c ); +GLAPI void GLAPIENTRY glIndexs( GLshort c ); +GLAPI void GLAPIENTRY glIndexub( GLubyte c ); /* 1.1 */ + +GLAPI void GLAPIENTRY glIndexdv( const GLdouble *c ); +GLAPI void GLAPIENTRY glIndexfv( const GLfloat *c ); +GLAPI void GLAPIENTRY glIndexiv( const GLint *c ); +GLAPI void GLAPIENTRY glIndexsv( const GLshort *c ); +GLAPI void GLAPIENTRY glIndexubv( const GLubyte *c ); /* 1.1 */ + +GLAPI void GLAPIENTRY glColor3b( GLbyte red, GLbyte green, GLbyte blue ); +GLAPI void GLAPIENTRY glColor3d( GLdouble red, GLdouble green, GLdouble blue ); +GLAPI void GLAPIENTRY glColor3f( GLfloat red, GLfloat green, GLfloat blue ); +GLAPI void GLAPIENTRY glColor3i( GLint red, GLint green, GLint blue ); +GLAPI void GLAPIENTRY glColor3s( GLshort red, GLshort green, GLshort blue ); +GLAPI void GLAPIENTRY glColor3ub( GLubyte red, GLubyte green, GLubyte blue ); +GLAPI void GLAPIENTRY glColor3ui( GLuint red, GLuint green, GLuint blue ); +GLAPI void GLAPIENTRY glColor3us( GLushort red, GLushort green, GLushort blue ); + +GLAPI void GLAPIENTRY glColor4b( GLbyte red, GLbyte green, + GLbyte blue, GLbyte alpha ); +GLAPI void GLAPIENTRY glColor4d( GLdouble red, GLdouble green, + GLdouble blue, GLdouble alpha ); +GLAPI void GLAPIENTRY glColor4f( GLfloat red, GLfloat green, + GLfloat blue, GLfloat alpha ); +GLAPI void GLAPIENTRY glColor4i( GLint red, GLint green, + GLint blue, GLint alpha ); +GLAPI void GLAPIENTRY glColor4s( GLshort red, GLshort green, + GLshort blue, GLshort alpha ); +GLAPI void GLAPIENTRY glColor4ub( GLubyte red, GLubyte green, + GLubyte blue, GLubyte alpha ); +GLAPI void GLAPIENTRY glColor4ui( GLuint red, GLuint green, + GLuint blue, GLuint alpha ); +GLAPI void GLAPIENTRY glColor4us( GLushort red, GLushort green, + GLushort blue, GLushort alpha ); + + +GLAPI void GLAPIENTRY glColor3bv( const GLbyte *v ); +GLAPI void GLAPIENTRY glColor3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glColor3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glColor3iv( const GLint *v ); +GLAPI void GLAPIENTRY glColor3sv( const GLshort *v ); +GLAPI void GLAPIENTRY glColor3ubv( const GLubyte *v ); +GLAPI void GLAPIENTRY glColor3uiv( const GLuint *v ); +GLAPI void GLAPIENTRY glColor3usv( const GLushort *v ); + +GLAPI void GLAPIENTRY glColor4bv( const GLbyte *v ); +GLAPI void GLAPIENTRY glColor4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glColor4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glColor4iv( const GLint *v ); +GLAPI void GLAPIENTRY glColor4sv( const GLshort *v ); +GLAPI void GLAPIENTRY glColor4ubv( const GLubyte *v ); +GLAPI void GLAPIENTRY glColor4uiv( const GLuint *v ); +GLAPI void GLAPIENTRY glColor4usv( const GLushort *v ); + + +GLAPI void GLAPIENTRY glTexCoord1d( GLdouble s ); +GLAPI void GLAPIENTRY glTexCoord1f( GLfloat s ); +GLAPI void GLAPIENTRY glTexCoord1i( GLint s ); +GLAPI void GLAPIENTRY glTexCoord1s( GLshort s ); + +GLAPI void GLAPIENTRY glTexCoord2d( GLdouble s, GLdouble t ); +GLAPI void GLAPIENTRY glTexCoord2f( GLfloat s, GLfloat t ); +GLAPI void GLAPIENTRY glTexCoord2i( GLint s, GLint t ); +GLAPI void GLAPIENTRY glTexCoord2s( GLshort s, GLshort t ); + +GLAPI void GLAPIENTRY glTexCoord3d( GLdouble s, GLdouble t, GLdouble r ); +GLAPI void GLAPIENTRY glTexCoord3f( GLfloat s, GLfloat t, GLfloat r ); +GLAPI void GLAPIENTRY glTexCoord3i( GLint s, GLint t, GLint r ); +GLAPI void GLAPIENTRY glTexCoord3s( GLshort s, GLshort t, GLshort r ); + +GLAPI void GLAPIENTRY glTexCoord4d( GLdouble s, GLdouble t, GLdouble r, GLdouble q ); +GLAPI void GLAPIENTRY glTexCoord4f( GLfloat s, GLfloat t, GLfloat r, GLfloat q ); +GLAPI void GLAPIENTRY glTexCoord4i( GLint s, GLint t, GLint r, GLint q ); +GLAPI void GLAPIENTRY glTexCoord4s( GLshort s, GLshort t, GLshort r, GLshort q ); + +GLAPI void GLAPIENTRY glTexCoord1dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord1fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord1iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord1sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glTexCoord2dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord2fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord2iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord2sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glTexCoord3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord3iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord3sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glTexCoord4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord4iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord4sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glRasterPos2d( GLdouble x, GLdouble y ); +GLAPI void GLAPIENTRY glRasterPos2f( GLfloat x, GLfloat y ); +GLAPI void GLAPIENTRY glRasterPos2i( GLint x, GLint y ); +GLAPI void GLAPIENTRY glRasterPos2s( GLshort x, GLshort y ); + +GLAPI void GLAPIENTRY glRasterPos3d( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glRasterPos3f( GLfloat x, GLfloat y, GLfloat z ); +GLAPI void GLAPIENTRY glRasterPos3i( GLint x, GLint y, GLint z ); +GLAPI void GLAPIENTRY glRasterPos3s( GLshort x, GLshort y, GLshort z ); + +GLAPI void GLAPIENTRY glRasterPos4d( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +GLAPI void GLAPIENTRY glRasterPos4f( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +GLAPI void GLAPIENTRY glRasterPos4i( GLint x, GLint y, GLint z, GLint w ); +GLAPI void GLAPIENTRY glRasterPos4s( GLshort x, GLshort y, GLshort z, GLshort w ); + +GLAPI void GLAPIENTRY glRasterPos2dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glRasterPos2fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glRasterPos2iv( const GLint *v ); +GLAPI void GLAPIENTRY glRasterPos2sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glRasterPos3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glRasterPos3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glRasterPos3iv( const GLint *v ); +GLAPI void GLAPIENTRY glRasterPos3sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glRasterPos4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glRasterPos4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glRasterPos4iv( const GLint *v ); +GLAPI void GLAPIENTRY glRasterPos4sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glRectd( GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2 ); +GLAPI void GLAPIENTRY glRectf( GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2 ); +GLAPI void GLAPIENTRY glRecti( GLint x1, GLint y1, GLint x2, GLint y2 ); +GLAPI void GLAPIENTRY glRects( GLshort x1, GLshort y1, GLshort x2, GLshort y2 ); + + +GLAPI void GLAPIENTRY glRectdv( const GLdouble *v1, const GLdouble *v2 ); +GLAPI void GLAPIENTRY glRectfv( const GLfloat *v1, const GLfloat *v2 ); +GLAPI void GLAPIENTRY glRectiv( const GLint *v1, const GLint *v2 ); +GLAPI void GLAPIENTRY glRectsv( const GLshort *v1, const GLshort *v2 ); + + +/* + * Vertex Arrays (1.1) + */ + +GLAPI void GLAPIENTRY glVertexPointer( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glNormalPointer( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glColorPointer( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glIndexPointer( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glTexCoordPointer( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glEdgeFlagPointer( GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glGetPointerv( GLenum pname, GLvoid **params ); + +GLAPI void GLAPIENTRY glArrayElement( GLint i ); + +GLAPI void GLAPIENTRY glDrawArrays( GLenum mode, GLint first, GLsizei count ); + +GLAPI void GLAPIENTRY glDrawElements( GLenum mode, GLsizei count, + GLenum type, const GLvoid *indices ); + +GLAPI void GLAPIENTRY glInterleavedArrays( GLenum format, GLsizei stride, + const GLvoid *pointer ); + +/* + * Lighting + */ + +GLAPI void GLAPIENTRY glShadeModel( GLenum mode ); + +GLAPI void GLAPIENTRY glLightf( GLenum light, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glLighti( GLenum light, GLenum pname, GLint param ); +GLAPI void GLAPIENTRY glLightfv( GLenum light, GLenum pname, + const GLfloat *params ); +GLAPI void GLAPIENTRY glLightiv( GLenum light, GLenum pname, + const GLint *params ); + +GLAPI void GLAPIENTRY glGetLightfv( GLenum light, GLenum pname, + GLfloat *params ); +GLAPI void GLAPIENTRY glGetLightiv( GLenum light, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glLightModelf( GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glLightModeli( GLenum pname, GLint param ); +GLAPI void GLAPIENTRY glLightModelfv( GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glLightModeliv( GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glMaterialf( GLenum face, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glMateriali( GLenum face, GLenum pname, GLint param ); +GLAPI void GLAPIENTRY glMaterialfv( GLenum face, GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glMaterialiv( GLenum face, GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glGetMaterialfv( GLenum face, GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetMaterialiv( GLenum face, GLenum pname, GLint *params ); + +GLAPI void GLAPIENTRY glColorMaterial( GLenum face, GLenum mode ); + + +/* + * Raster functions + */ + +GLAPI void GLAPIENTRY glPixelZoom( GLfloat xfactor, GLfloat yfactor ); + +GLAPI void GLAPIENTRY glPixelStoref( GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glPixelStorei( GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glPixelTransferf( GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glPixelTransferi( GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glPixelMapfv( GLenum map, GLsizei mapsize, + const GLfloat *values ); +GLAPI void GLAPIENTRY glPixelMapuiv( GLenum map, GLsizei mapsize, + const GLuint *values ); +GLAPI void GLAPIENTRY glPixelMapusv( GLenum map, GLsizei mapsize, + const GLushort *values ); + +GLAPI void GLAPIENTRY glGetPixelMapfv( GLenum map, GLfloat *values ); +GLAPI void GLAPIENTRY glGetPixelMapuiv( GLenum map, GLuint *values ); +GLAPI void GLAPIENTRY glGetPixelMapusv( GLenum map, GLushort *values ); + +GLAPI void GLAPIENTRY glBitmap( GLsizei width, GLsizei height, + GLfloat xorig, GLfloat yorig, + GLfloat xmove, GLfloat ymove, + const GLubyte *bitmap ); + +GLAPI void GLAPIENTRY glReadPixels( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + GLvoid *pixels ); + +GLAPI void GLAPIENTRY glDrawPixels( GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glCopyPixels( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum type ); + +/* + * Stenciling + */ + +GLAPI void GLAPIENTRY glStencilFunc( GLenum func, GLint ref, GLuint mask ); + +GLAPI void GLAPIENTRY glStencilMask( GLuint mask ); + +GLAPI void GLAPIENTRY glStencilOp( GLenum fail, GLenum zfail, GLenum zpass ); + +GLAPI void GLAPIENTRY glClearStencil( GLint s ); + + + +/* + * Texture mapping + */ + +GLAPI void GLAPIENTRY glTexGend( GLenum coord, GLenum pname, GLdouble param ); +GLAPI void GLAPIENTRY glTexGenf( GLenum coord, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glTexGeni( GLenum coord, GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glTexGendv( GLenum coord, GLenum pname, const GLdouble *params ); +GLAPI void GLAPIENTRY glTexGenfv( GLenum coord, GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glTexGeniv( GLenum coord, GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glGetTexGendv( GLenum coord, GLenum pname, GLdouble *params ); +GLAPI void GLAPIENTRY glGetTexGenfv( GLenum coord, GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetTexGeniv( GLenum coord, GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glTexEnvf( GLenum target, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glTexEnvi( GLenum target, GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glTexEnvfv( GLenum target, GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glTexEnviv( GLenum target, GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glGetTexEnvfv( GLenum target, GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetTexEnviv( GLenum target, GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glTexParameterf( GLenum target, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glTexParameteri( GLenum target, GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glTexParameterfv( GLenum target, GLenum pname, + const GLfloat *params ); +GLAPI void GLAPIENTRY glTexParameteriv( GLenum target, GLenum pname, + const GLint *params ); + +GLAPI void GLAPIENTRY glGetTexParameterfv( GLenum target, + GLenum pname, GLfloat *params); +GLAPI void GLAPIENTRY glGetTexParameteriv( GLenum target, + GLenum pname, GLint *params ); + +GLAPI void GLAPIENTRY glGetTexLevelParameterfv( GLenum target, GLint level, + GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetTexLevelParameteriv( GLenum target, GLint level, + GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glTexImage1D( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glTexImage2D( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLint border, GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glGetTexImage( GLenum target, GLint level, + GLenum format, GLenum type, + GLvoid *pixels ); + + +/* 1.1 functions */ + +GLAPI void GLAPIENTRY glGenTextures( GLsizei n, GLuint *textures ); + +GLAPI void GLAPIENTRY glDeleteTextures( GLsizei n, const GLuint *textures); + +GLAPI void GLAPIENTRY glBindTexture( GLenum target, GLuint texture ); + +GLAPI void GLAPIENTRY glPrioritizeTextures( GLsizei n, + const GLuint *textures, + const GLclampf *priorities ); + +GLAPI GLboolean GLAPIENTRY glAreTexturesResident( GLsizei n, + const GLuint *textures, + GLboolean *residences ); + +GLAPI GLboolean GLAPIENTRY glIsTexture( GLuint texture ); + + +GLAPI void GLAPIENTRY glTexSubImage1D( GLenum target, GLint level, + GLint xoffset, + GLsizei width, GLenum format, + GLenum type, const GLvoid *pixels ); + + +GLAPI void GLAPIENTRY glTexSubImage2D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + + +GLAPI void GLAPIENTRY glCopyTexImage1D( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLint border ); + + +GLAPI void GLAPIENTRY glCopyTexImage2D( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLsizei height, + GLint border ); + + +GLAPI void GLAPIENTRY glCopyTexSubImage1D( GLenum target, GLint level, + GLint xoffset, GLint x, GLint y, + GLsizei width ); + + +GLAPI void GLAPIENTRY glCopyTexSubImage2D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint x, GLint y, + GLsizei width, GLsizei height ); + + +/* + * Evaluators + */ + +GLAPI void GLAPIENTRY glMap1d( GLenum target, GLdouble u1, GLdouble u2, + GLint stride, + GLint order, const GLdouble *points ); +GLAPI void GLAPIENTRY glMap1f( GLenum target, GLfloat u1, GLfloat u2, + GLint stride, + GLint order, const GLfloat *points ); + +GLAPI void GLAPIENTRY glMap2d( GLenum target, + GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, + GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, + const GLdouble *points ); +GLAPI void GLAPIENTRY glMap2f( GLenum target, + GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, + GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, + const GLfloat *points ); + +GLAPI void GLAPIENTRY glGetMapdv( GLenum target, GLenum query, GLdouble *v ); +GLAPI void GLAPIENTRY glGetMapfv( GLenum target, GLenum query, GLfloat *v ); +GLAPI void GLAPIENTRY glGetMapiv( GLenum target, GLenum query, GLint *v ); + +GLAPI void GLAPIENTRY glEvalCoord1d( GLdouble u ); +GLAPI void GLAPIENTRY glEvalCoord1f( GLfloat u ); + +GLAPI void GLAPIENTRY glEvalCoord1dv( const GLdouble *u ); +GLAPI void GLAPIENTRY glEvalCoord1fv( const GLfloat *u ); + +GLAPI void GLAPIENTRY glEvalCoord2d( GLdouble u, GLdouble v ); +GLAPI void GLAPIENTRY glEvalCoord2f( GLfloat u, GLfloat v ); + +GLAPI void GLAPIENTRY glEvalCoord2dv( const GLdouble *u ); +GLAPI void GLAPIENTRY glEvalCoord2fv( const GLfloat *u ); + +GLAPI void GLAPIENTRY glMapGrid1d( GLint un, GLdouble u1, GLdouble u2 ); +GLAPI void GLAPIENTRY glMapGrid1f( GLint un, GLfloat u1, GLfloat u2 ); + +GLAPI void GLAPIENTRY glMapGrid2d( GLint un, GLdouble u1, GLdouble u2, + GLint vn, GLdouble v1, GLdouble v2 ); +GLAPI void GLAPIENTRY glMapGrid2f( GLint un, GLfloat u1, GLfloat u2, + GLint vn, GLfloat v1, GLfloat v2 ); + +GLAPI void GLAPIENTRY glEvalPoint1( GLint i ); + +GLAPI void GLAPIENTRY glEvalPoint2( GLint i, GLint j ); + +GLAPI void GLAPIENTRY glEvalMesh1( GLenum mode, GLint i1, GLint i2 ); + +GLAPI void GLAPIENTRY glEvalMesh2( GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 ); + + +/* + * Fog + */ + +GLAPI void GLAPIENTRY glFogf( GLenum pname, GLfloat param ); + +GLAPI void GLAPIENTRY glFogi( GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glFogfv( GLenum pname, const GLfloat *params ); + +GLAPI void GLAPIENTRY glFogiv( GLenum pname, const GLint *params ); + + +/* + * Selection and Feedback + */ + +GLAPI void GLAPIENTRY glFeedbackBuffer( GLsizei size, GLenum type, GLfloat *buffer ); + +GLAPI void GLAPIENTRY glPassThrough( GLfloat token ); + +GLAPI void GLAPIENTRY glSelectBuffer( GLsizei size, GLuint *buffer ); + +GLAPI void GLAPIENTRY glInitNames( void ); + +GLAPI void GLAPIENTRY glLoadName( GLuint name ); + +GLAPI void GLAPIENTRY glPushName( GLuint name ); + +GLAPI void GLAPIENTRY glPopName( void ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLCLEARINDEXPROC) ( GLfloat c ); + +typedef void (APIENTRYP PFNGLCLEARCOLORPROC) ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ); + +typedef void (APIENTRYP PFNGLCLEARPROC) ( GLbitfield mask ); + +typedef void (APIENTRYP PFNGLINDEXMASKPROC) ( GLuint mask ); + +typedef void (APIENTRYP PFNGLCOLORMASKPROC) ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ); + +typedef void (APIENTRYP PFNGLALPHAFUNCPROC) ( GLenum func, GLclampf ref ); + +typedef void (APIENTRYP PFNGLBLENDFUNCPROC) ( GLenum sfactor, GLenum dfactor ); + +typedef void (APIENTRYP PFNGLLOGICOPPROC) ( GLenum opcode ); + +typedef void (APIENTRYP PFNGLCULLFACEPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLFRONTFACEPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLPOINTSIZEPROC) ( GLfloat size ); + +typedef void (APIENTRYP PFNGLLINEWIDTHPROC) ( GLfloat width ); + +typedef void (APIENTRYP PFNGLLINESTIPPLEPROC) ( GLint factor, GLushort pattern ); + +typedef void (APIENTRYP PFNGLPOLYGONMODEPROC) ( GLenum face, GLenum mode ); + +typedef void (APIENTRYP PFNGLPOLYGONOFFSETPROC) ( GLfloat factor, GLfloat units ); + +typedef void (APIENTRYP PFNGLPOLYGONSTIPPLEPROC) ( const GLubyte *mask ); + +typedef void (APIENTRYP PFNGLGETPOLYGONSTIPPLEPROC) ( GLubyte *mask ); + +typedef void (APIENTRYP PFNGLEDGEFLAGPROC) ( GLboolean flag ); + +typedef void (APIENTRYP PFNGLEDGEFLAGVPROC) ( const GLboolean *flag ); + +typedef void (APIENTRYP PFNGLSCISSORPROC) ( GLint x, GLint y, GLsizei width, GLsizei height); + +typedef void (APIENTRYP PFNGLCLIPPLANEPROC) ( GLenum plane, const GLdouble *equation ); + +typedef void (APIENTRYP PFNGLGETCLIPPLANEPROC) ( GLenum plane, GLdouble *equation ); + +typedef void (APIENTRYP PFNGLDRAWBUFFERPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLREADBUFFERPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLENABLEPROC) ( GLenum cap ); + +typedef void (APIENTRYP PFNGLDISABLEPROC) ( GLenum cap ); + +typedef GLboolean (APIENTRYP PFNGLISENABLEDPROC) ( GLenum cap ); + + +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEPROC) ( GLenum cap ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEPROC) ( GLenum cap ); /* 1.1 */ + + +typedef void (APIENTRYP PFNGLGETBOOLEANVPROC) ( GLenum pname, GLboolean *params ); + +typedef void (APIENTRYP PFNGLGETDOUBLEVPROC) ( GLenum pname, GLdouble *params ); + +typedef void (APIENTRYP PFNGLGETFLOATVPROC) ( GLenum pname, GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETINTEGERVPROC) ( GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLPUSHATTRIBPROC) ( GLbitfield mask ); + +typedef void (APIENTRYP PFNGLPOPATTRIBPROC) ( void ); + + +typedef void (APIENTRYP PFNGLPUSHCLIENTATTRIBPROC) ( GLbitfield mask ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLPOPCLIENTATTRIBPROC) ( void ); /* 1.1 */ + + +typedef GLint (APIENTRYP PFNGLRENDERMODEPROC) ( GLenum mode ); + +typedef GLenum (APIENTRYP PFNGLGETERRORPROC) ( void ); + +typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGPROC) ( GLenum name ); + +typedef void (APIENTRYP PFNGLFINISHPROC) ( void ); + +typedef void (APIENTRYP PFNGLFLUSHPROC) ( void ); + +typedef void (APIENTRYP PFNGLHINTPROC) ( GLenum target, GLenum mode ); + + +/* + * Depth Buffer + */ + +typedef void (APIENTRYP PFNGLCLEARDEPTHPROC) ( GLclampd depth ); + +typedef void (APIENTRYP PFNGLDEPTHFUNCPROC) ( GLenum func ); + +typedef void (APIENTRYP PFNGLDEPTHMASKPROC) ( GLboolean flag ); + +typedef void (APIENTRYP PFNGLDEPTHRANGEPROC) ( GLclampd near_val, GLclampd far_val ); + + +/* + * Accumulation Buffer + */ + +typedef void (APIENTRYP PFNGLCLEARACCUMPROC) ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ); + +typedef void (APIENTRYP PFNGLACCUMPROC) ( GLenum op, GLfloat value ); + + +/* + * Transformation + */ + +typedef void (APIENTRYP PFNGLMATRIXMODEPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLORTHOPROC) ( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +typedef void (APIENTRYP PFNGLFRUSTUMPROC) ( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +typedef void (APIENTRYP PFNGLVIEWPORTPROC) ( GLint x, GLint y, + GLsizei width, GLsizei height ); + +typedef void (APIENTRYP PFNGLPUSHMATRIXPROC) ( void ); + +typedef void (APIENTRYP PFNGLPOPMATRIXPROC) ( void ); + +typedef void (APIENTRYP PFNGLLOADIDENTITYPROC) ( void ); + +typedef void (APIENTRYP PFNGLLOADMATRIXDPROC) ( const GLdouble *m ); +typedef void (APIENTRYP PFNGLLOADMATRIXFPROC) ( const GLfloat *m ); + +typedef void (APIENTRYP PFNGLMULTMATRIXDPROC) ( const GLdouble *m ); +typedef void (APIENTRYP PFNGLMULTMATRIXFPROC) ( const GLfloat *m ); + +typedef void (APIENTRYP PFNGLROTATEDPROC) ( GLdouble angle, + GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLROTATEFPROC) ( GLfloat angle, + GLfloat x, GLfloat y, GLfloat z ); + +typedef void (APIENTRYP PFNGLSCALEDPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLSCALEFPROC) ( GLfloat x, GLfloat y, GLfloat z ); + +typedef void (APIENTRYP PFNGLTRANSLATEDPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLTRANSLATEFPROC) ( GLfloat x, GLfloat y, GLfloat z ); + + +/* + * Display Lists + */ + +typedef GLboolean (APIENTRYP PFNGLISLISTPROC) ( GLuint list ); + +typedef void (APIENTRYP PFNGLDELETELISTSPROC) ( GLuint list, GLsizei range ); + +typedef GLuint (APIENTRYP PFNGLGENLISTSPROC) ( GLsizei range ); + +typedef void (APIENTRYP PFNGLNEWLISTPROC) ( GLuint list, GLenum mode ); + +typedef void (APIENTRYP PFNGLENDLISTPROC) ( void ); + +typedef void (APIENTRYP PFNGLCALLLISTPROC) ( GLuint list ); + +typedef void (APIENTRYP PFNGLCALLLISTSPROC) ( GLsizei n, GLenum type, + const GLvoid *lists ); + +typedef void (APIENTRYP PFNGLLISTBASEPROC) ( GLuint base ); + + +/* + * Drawing Functions + */ + +typedef void (APIENTRYP PFNGLBEGINPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLENDPROC) ( void ); + + +typedef void (APIENTRYP PFNGLVERTEX2DPROC) ( GLdouble x, GLdouble y ); +typedef void (APIENTRYP PFNGLVERTEX2FPROC) ( GLfloat x, GLfloat y ); +typedef void (APIENTRYP PFNGLVERTEX2IPROC) ( GLint x, GLint y ); +typedef void (APIENTRYP PFNGLVERTEX2SPROC) ( GLshort x, GLshort y ); + +typedef void (APIENTRYP PFNGLVERTEX3DPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLVERTEX3FPROC) ( GLfloat x, GLfloat y, GLfloat z ); +typedef void (APIENTRYP PFNGLVERTEX3IPROC) ( GLint x, GLint y, GLint z ); +typedef void (APIENTRYP PFNGLVERTEX3SPROC) ( GLshort x, GLshort y, GLshort z ); + +typedef void (APIENTRYP PFNGLVERTEX4DPROC) ( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +typedef void (APIENTRYP PFNGLVERTEX4FPROC) ( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +typedef void (APIENTRYP PFNGLVERTEX4IPROC) ( GLint x, GLint y, GLint z, GLint w ); +typedef void (APIENTRYP PFNGLVERTEX4SPROC) ( GLshort x, GLshort y, GLshort z, GLshort w ); + +typedef void (APIENTRYP PFNGLVERTEX2DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLVERTEX2FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLVERTEX2IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLVERTEX2SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLVERTEX3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLVERTEX3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLVERTEX3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLVERTEX3SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLVERTEX4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLVERTEX4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLVERTEX4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLVERTEX4SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLNORMAL3BPROC) ( GLbyte nx, GLbyte ny, GLbyte nz ); +typedef void (APIENTRYP PFNGLNORMAL3DPROC) ( GLdouble nx, GLdouble ny, GLdouble nz ); +typedef void (APIENTRYP PFNGLNORMAL3FPROC) ( GLfloat nx, GLfloat ny, GLfloat nz ); +typedef void (APIENTRYP PFNGLNORMAL3IPROC) ( GLint nx, GLint ny, GLint nz ); +typedef void (APIENTRYP PFNGLNORMAL3SPROC) ( GLshort nx, GLshort ny, GLshort nz ); + +typedef void (APIENTRYP PFNGLNORMAL3BVPROC) ( const GLbyte *v ); +typedef void (APIENTRYP PFNGLNORMAL3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLNORMAL3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLNORMAL3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLNORMAL3SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLINDEXDPROC) ( GLdouble c ); +typedef void (APIENTRYP PFNGLINDEXFPROC) ( GLfloat c ); +typedef void (APIENTRYP PFNGLINDEXIPROC) ( GLint c ); +typedef void (APIENTRYP PFNGLINDEXSPROC) ( GLshort c ); +typedef void (APIENTRYP PFNGLINDEXUBPROC) ( GLubyte c ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLINDEXDVPROC) ( const GLdouble *c ); +typedef void (APIENTRYP PFNGLINDEXFVPROC) ( const GLfloat *c ); +typedef void (APIENTRYP PFNGLINDEXIVPROC) ( const GLint *c ); +typedef void (APIENTRYP PFNGLINDEXSVPROC) ( const GLshort *c ); +typedef void (APIENTRYP PFNGLINDEXUBVPROC) ( const GLubyte *c ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLCOLOR3BPROC) ( GLbyte red, GLbyte green, GLbyte blue ); +typedef void (APIENTRYP PFNGLCOLOR3DPROC) ( GLdouble red, GLdouble green, GLdouble blue ); +typedef void (APIENTRYP PFNGLCOLOR3FPROC) ( GLfloat red, GLfloat green, GLfloat blue ); +typedef void (APIENTRYP PFNGLCOLOR3IPROC) ( GLint red, GLint green, GLint blue ); +typedef void (APIENTRYP PFNGLCOLOR3SPROC) ( GLshort red, GLshort green, GLshort blue ); +typedef void (APIENTRYP PFNGLCOLOR3UBPROC) ( GLubyte red, GLubyte green, GLubyte blue ); +typedef void (APIENTRYP PFNGLCOLOR3UIPROC) ( GLuint red, GLuint green, GLuint blue ); +typedef void (APIENTRYP PFNGLCOLOR3USPROC) ( GLushort red, GLushort green, GLushort blue ); + +typedef void (APIENTRYP PFNGLCOLOR4BPROC) ( GLbyte red, GLbyte green, + GLbyte blue, GLbyte alpha ); +typedef void (APIENTRYP PFNGLCOLOR4DPROC) ( GLdouble red, GLdouble green, + GLdouble blue, GLdouble alpha ); +typedef void (APIENTRYP PFNGLCOLOR4FPROC) ( GLfloat red, GLfloat green, + GLfloat blue, GLfloat alpha ); +typedef void (APIENTRYP PFNGLCOLOR4IPROC) ( GLint red, GLint green, + GLint blue, GLint alpha ); +typedef void (APIENTRYP PFNGLCOLOR4SPROC) ( GLshort red, GLshort green, + GLshort blue, GLshort alpha ); +typedef void (APIENTRYP PFNGLCOLOR4UBPROC) ( GLubyte red, GLubyte green, + GLubyte blue, GLubyte alpha ); +typedef void (APIENTRYP PFNGLCOLOR4UIPROC) ( GLuint red, GLuint green, + GLuint blue, GLuint alpha ); +typedef void (APIENTRYP PFNGLCOLOR4USPROC) ( GLushort red, GLushort green, + GLushort blue, GLushort alpha ); + + +typedef void (APIENTRYP PFNGLCOLOR3BVPROC) ( const GLbyte *v ); +typedef void (APIENTRYP PFNGLCOLOR3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLCOLOR3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLCOLOR3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLCOLOR3SVPROC) ( const GLshort *v ); +typedef void (APIENTRYP PFNGLCOLOR3UBVPROC) ( const GLubyte *v ); +typedef void (APIENTRYP PFNGLCOLOR3UIVPROC) ( const GLuint *v ); +typedef void (APIENTRYP PFNGLCOLOR3USVPROC) ( const GLushort *v ); + +typedef void (APIENTRYP PFNGLCOLOR4BVPROC) ( const GLbyte *v ); +typedef void (APIENTRYP PFNGLCOLOR4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLCOLOR4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLCOLOR4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLCOLOR4SVPROC) ( const GLshort *v ); +typedef void (APIENTRYP PFNGLCOLOR4UBVPROC) ( const GLubyte *v ); +typedef void (APIENTRYP PFNGLCOLOR4UIVPROC) ( const GLuint *v ); +typedef void (APIENTRYP PFNGLCOLOR4USVPROC) ( const GLushort *v ); + + +typedef void (APIENTRYP PFNGLTEXCOORD1DPROC) ( GLdouble s ); +typedef void (APIENTRYP PFNGLTEXCOORD1FPROC) ( GLfloat s ); +typedef void (APIENTRYP PFNGLTEXCOORD1IPROC) ( GLint s ); +typedef void (APIENTRYP PFNGLTEXCOORD1SPROC) ( GLshort s ); + +typedef void (APIENTRYP PFNGLTEXCOORD2DPROC) ( GLdouble s, GLdouble t ); +typedef void (APIENTRYP PFNGLTEXCOORD2FPROC) ( GLfloat s, GLfloat t ); +typedef void (APIENTRYP PFNGLTEXCOORD2IPROC) ( GLint s, GLint t ); +typedef void (APIENTRYP PFNGLTEXCOORD2SPROC) ( GLshort s, GLshort t ); + +typedef void (APIENTRYP PFNGLTEXCOORD3DPROC) ( GLdouble s, GLdouble t, GLdouble r ); +typedef void (APIENTRYP PFNGLTEXCOORD3FPROC) ( GLfloat s, GLfloat t, GLfloat r ); +typedef void (APIENTRYP PFNGLTEXCOORD3IPROC) ( GLint s, GLint t, GLint r ); +typedef void (APIENTRYP PFNGLTEXCOORD3SPROC) ( GLshort s, GLshort t, GLshort r ); + +typedef void (APIENTRYP PFNGLTEXCOORD4DPROC) ( GLdouble s, GLdouble t, GLdouble r, GLdouble q ); +typedef void (APIENTRYP PFNGLTEXCOORD4FPROC) ( GLfloat s, GLfloat t, GLfloat r, GLfloat q ); +typedef void (APIENTRYP PFNGLTEXCOORD4IPROC) ( GLint s, GLint t, GLint r, GLint q ); +typedef void (APIENTRYP PFNGLTEXCOORD4SPROC) ( GLshort s, GLshort t, GLshort r, GLshort q ); + +typedef void (APIENTRYP PFNGLTEXCOORD1DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD1FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD1IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD1SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLTEXCOORD2DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD2FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD2IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD2SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLTEXCOORD3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD3SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLTEXCOORD4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD4SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLRASTERPOS2DPROC) ( GLdouble x, GLdouble y ); +typedef void (APIENTRYP PFNGLRASTERPOS2FPROC) ( GLfloat x, GLfloat y ); +typedef void (APIENTRYP PFNGLRASTERPOS2IPROC) ( GLint x, GLint y ); +typedef void (APIENTRYP PFNGLRASTERPOS2SPROC) ( GLshort x, GLshort y ); + +typedef void (APIENTRYP PFNGLRASTERPOS3DPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLRASTERPOS3FPROC) ( GLfloat x, GLfloat y, GLfloat z ); +typedef void (APIENTRYP PFNGLRASTERPOS3IPROC) ( GLint x, GLint y, GLint z ); +typedef void (APIENTRYP PFNGLRASTERPOS3SPROC) ( GLshort x, GLshort y, GLshort z ); + +typedef void (APIENTRYP PFNGLRASTERPOS4DPROC) ( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +typedef void (APIENTRYP PFNGLRASTERPOS4FPROC) ( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +typedef void (APIENTRYP PFNGLRASTERPOS4IPROC) ( GLint x, GLint y, GLint z, GLint w ); +typedef void (APIENTRYP PFNGLRASTERPOS4SPROC) ( GLshort x, GLshort y, GLshort z, GLshort w ); + +typedef void (APIENTRYP PFNGLRASTERPOS2DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLRASTERPOS2FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLRASTERPOS2IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLRASTERPOS2SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLRASTERPOS3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLRASTERPOS3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLRASTERPOS3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLRASTERPOS3SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLRASTERPOS4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLRASTERPOS4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLRASTERPOS4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLRASTERPOS4SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLRECTDPROC) ( GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2 ); +typedef void (APIENTRYP PFNGLRECTFPROC) ( GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2 ); +typedef void (APIENTRYP PFNGLRECTIPROC) ( GLint x1, GLint y1, GLint x2, GLint y2 ); +typedef void (APIENTRYP PFNGLRECTSPROC) ( GLshort x1, GLshort y1, GLshort x2, GLshort y2 ); + + +typedef void (APIENTRYP PFNGLRECTDVPROC) ( const GLdouble *v1, const GLdouble *v2 ); +typedef void (APIENTRYP PFNGLRECTFVPROC) ( const GLfloat *v1, const GLfloat *v2 ); +typedef void (APIENTRYP PFNGLRECTIVPROC) ( const GLint *v1, const GLint *v2 ); +typedef void (APIENTRYP PFNGLRECTSVPROC) ( const GLshort *v1, const GLshort *v2 ); + + +/* + * Vertex Arrays (1.1) + */ + +typedef void (APIENTRYP PFNGLVERTEXPOINTERPROC) ( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLNORMALPOINTERPROC) ( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLCOLORPOINTERPROC) ( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLINDEXPOINTERPROC) ( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERPROC) ( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTERPROC) ( GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLGETPOINTERVPROC) ( GLenum pname, GLvoid **params ); + +typedef void (APIENTRYP PFNGLARRAYELEMENTPROC) ( GLint i ); + +typedef void (APIENTRYP PFNGLDRAWARRAYSPROC) ( GLenum mode, GLint first, GLsizei count ); + +typedef void (APIENTRYP PFNGLDRAWELEMENTSPROC) ( GLenum mode, GLsizei count, + GLenum type, const GLvoid *indices ); + +typedef void (APIENTRYP PFNGLINTERLEAVEDARRAYSPROC) ( GLenum format, GLsizei stride, + const GLvoid *pointer ); + +/* + * Lighting + */ + +typedef void (APIENTRYP PFNGLSHADEMODELPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLLIGHTFPROC) ( GLenum light, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLLIGHTIPROC) ( GLenum light, GLenum pname, GLint param ); +typedef void (APIENTRYP PFNGLLIGHTFVPROC) ( GLenum light, GLenum pname, + const GLfloat *params ); +typedef void (APIENTRYP PFNGLLIGHTIVPROC) ( GLenum light, GLenum pname, + const GLint *params ); + +typedef void (APIENTRYP PFNGLGETLIGHTFVPROC) ( GLenum light, GLenum pname, + GLfloat *params ); +typedef void (APIENTRYP PFNGLGETLIGHTIVPROC) ( GLenum light, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLLIGHTMODELFPROC) ( GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLLIGHTMODELIPROC) ( GLenum pname, GLint param ); +typedef void (APIENTRYP PFNGLLIGHTMODELFVPROC) ( GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLLIGHTMODELIVPROC) ( GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLMATERIALFPROC) ( GLenum face, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLMATERIALIPROC) ( GLenum face, GLenum pname, GLint param ); +typedef void (APIENTRYP PFNGLMATERIALFVPROC) ( GLenum face, GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLMATERIALIVPROC) ( GLenum face, GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLGETMATERIALFVPROC) ( GLenum face, GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETMATERIALIVPROC) ( GLenum face, GLenum pname, GLint *params ); + +typedef void (APIENTRYP PFNGLCOLORMATERIALPROC) ( GLenum face, GLenum mode ); + + +/* + * Raster functions + */ + +typedef void (APIENTRYP PFNGLPIXELZOOMPROC) ( GLfloat xfactor, GLfloat yfactor ); + +typedef void (APIENTRYP PFNGLPIXELSTOREFPROC) ( GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLPIXELSTOREIPROC) ( GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLPIXELTRANSFERFPROC) ( GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLPIXELTRANSFERIPROC) ( GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLPIXELMAPFVPROC) ( GLenum map, GLsizei mapsize, + const GLfloat *values ); +typedef void (APIENTRYP PFNGLPIXELMAPUIVPROC) ( GLenum map, GLsizei mapsize, + const GLuint *values ); +typedef void (APIENTRYP PFNGLPIXELMAPUSVPROC) ( GLenum map, GLsizei mapsize, + const GLushort *values ); + +typedef void (APIENTRYP PFNGLGETPIXELMAPFVPROC) ( GLenum map, GLfloat *values ); +typedef void (APIENTRYP PFNGLGETPIXELMAPUIVPROC) ( GLenum map, GLuint *values ); +typedef void (APIENTRYP PFNGLGETPIXELMAPUSVPROC) ( GLenum map, GLushort *values ); + +typedef void (APIENTRYP PFNGLBITMAPPROC) ( GLsizei width, GLsizei height, + GLfloat xorig, GLfloat yorig, + GLfloat xmove, GLfloat ymove, + const GLubyte *bitmap ); + +typedef void (APIENTRYP PFNGLREADPIXELSPROC) ( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLDRAWPIXELSPROC) ( GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLCOPYPIXELSPROC) ( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum type ); + +/* + * Stenciling + */ + +typedef void (APIENTRYP PFNGLSTENCILFUNCPROC) ( GLenum func, GLint ref, GLuint mask ); + +typedef void (APIENTRYP PFNGLSTENCILMASKPROC) ( GLuint mask ); + +typedef void (APIENTRYP PFNGLSTENCILOPPROC) ( GLenum fail, GLenum zfail, GLenum zpass ); + +typedef void (APIENTRYP PFNGLCLEARSTENCILPROC) ( GLint s ); + + + +/* + * Texture mapping + */ + +typedef void (APIENTRYP PFNGLTEXGENDPROC) ( GLenum coord, GLenum pname, GLdouble param ); +typedef void (APIENTRYP PFNGLTEXGENFPROC) ( GLenum coord, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLTEXGENIPROC) ( GLenum coord, GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLTEXGENDVPROC) ( GLenum coord, GLenum pname, const GLdouble *params ); +typedef void (APIENTRYP PFNGLTEXGENFVPROC) ( GLenum coord, GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLTEXGENIVPROC) ( GLenum coord, GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXGENDVPROC) ( GLenum coord, GLenum pname, GLdouble *params ); +typedef void (APIENTRYP PFNGLGETTEXGENFVPROC) ( GLenum coord, GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETTEXGENIVPROC) ( GLenum coord, GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLTEXENVFPROC) ( GLenum target, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLTEXENVIPROC) ( GLenum target, GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLTEXENVFVPROC) ( GLenum target, GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLTEXENVIVPROC) ( GLenum target, GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXENVFVPROC) ( GLenum target, GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETTEXENVIVPROC) ( GLenum target, GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLTEXPARAMETERFPROC) ( GLenum target, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLTEXPARAMETERIPROC) ( GLenum target, GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLTEXPARAMETERFVPROC) ( GLenum target, GLenum pname, + const GLfloat *params ); +typedef void (APIENTRYP PFNGLTEXPARAMETERIVPROC) ( GLenum target, GLenum pname, + const GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXPARAMETERFVPROC) ( GLenum target, + GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIVPROC) ( GLenum target, + GLenum pname, GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERFVPROC) ( GLenum target, GLint level, + GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERIVPROC) ( GLenum target, GLint level, + GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLTEXIMAGE1DPROC) ( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLTEXIMAGE2DPROC) ( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLint border, GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLGETTEXIMAGEPROC) ( GLenum target, GLint level, + GLenum format, GLenum type, + GLvoid *pixels ); + + +/* 1.1 functions */ + +typedef void (APIENTRYP PFNGLGENTEXTURESPROC) ( GLsizei n, GLuint *textures ); + +typedef void (APIENTRYP PFNGLDELETETEXTURESPROC) ( GLsizei n, const GLuint *textures); + +typedef void (APIENTRYP PFNGLBINDTEXTUREPROC) ( GLenum target, GLuint texture ); + +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESPROC) ( GLsizei n, + const GLuint *textures, + const GLclampf *priorities ); + +typedef GLboolean (APIENTRYP PFNGLARETEXTURESRESIDENTPROC) ( GLsizei n, + const GLuint *textures, + GLboolean *residences ); + +typedef GLboolean (APIENTRYP PFNGLISTEXTUREPROC) ( GLuint texture ); + + +typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DPROC) ( GLenum target, GLint level, + GLint xoffset, + GLsizei width, GLenum format, + GLenum type, const GLvoid *pixels ); + + +typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + + +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DPROC) ( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLint border ); + + +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DPROC) ( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLsizei height, + GLint border ); + + +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint x, GLint y, + GLsizei width ); + + +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint x, GLint y, + GLsizei width, GLsizei height ); + + +/* + * Evaluators + */ + +typedef void (APIENTRYP PFNGLMAP1DPROC) ( GLenum target, GLdouble u1, GLdouble u2, + GLint stride, + GLint order, const GLdouble *points ); +typedef void (APIENTRYP PFNGLMAP1FPROC) ( GLenum target, GLfloat u1, GLfloat u2, + GLint stride, + GLint order, const GLfloat *points ); + +typedef void (APIENTRYP PFNGLMAP2DPROC) ( GLenum target, + GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, + GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, + const GLdouble *points ); +typedef void (APIENTRYP PFNGLMAP2FPROC) ( GLenum target, + GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, + GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, + const GLfloat *points ); + +typedef void (APIENTRYP PFNGLGETMAPDVPROC) ( GLenum target, GLenum query, GLdouble *v ); +typedef void (APIENTRYP PFNGLGETMAPFVPROC) ( GLenum target, GLenum query, GLfloat *v ); +typedef void (APIENTRYP PFNGLGETMAPIVPROC) ( GLenum target, GLenum query, GLint *v ); + +typedef void (APIENTRYP PFNGLEVALCOORD1DPROC) ( GLdouble u ); +typedef void (APIENTRYP PFNGLEVALCOORD1FPROC) ( GLfloat u ); + +typedef void (APIENTRYP PFNGLEVALCOORD1DVPROC) ( const GLdouble *u ); +typedef void (APIENTRYP PFNGLEVALCOORD1FVPROC) ( const GLfloat *u ); + +typedef void (APIENTRYP PFNGLEVALCOORD2DPROC) ( GLdouble u, GLdouble v ); +typedef void (APIENTRYP PFNGLEVALCOORD2FPROC) ( GLfloat u, GLfloat v ); + +typedef void (APIENTRYP PFNGLEVALCOORD2DVPROC) ( const GLdouble *u ); +typedef void (APIENTRYP PFNGLEVALCOORD2FVPROC) ( const GLfloat *u ); + +typedef void (APIENTRYP PFNGLMAPGRID1DPROC) ( GLint un, GLdouble u1, GLdouble u2 ); +typedef void (APIENTRYP PFNGLMAPGRID1FPROC) ( GLint un, GLfloat u1, GLfloat u2 ); + +typedef void (APIENTRYP PFNGLMAPGRID2DPROC) ( GLint un, GLdouble u1, GLdouble u2, + GLint vn, GLdouble v1, GLdouble v2 ); +typedef void (APIENTRYP PFNGLMAPGRID2FPROC) ( GLint un, GLfloat u1, GLfloat u2, + GLint vn, GLfloat v1, GLfloat v2 ); + +typedef void (APIENTRYP PFNGLEVALPOINT1PROC) ( GLint i ); + +typedef void (APIENTRYP PFNGLEVALPOINT2PROC) ( GLint i, GLint j ); + +typedef void (APIENTRYP PFNGLEVALMESH1PROC) ( GLenum mode, GLint i1, GLint i2 ); + +typedef void (APIENTRYP PFNGLEVALMESH2PROC) ( GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 ); + + +/* + * Fog + */ + +typedef void (APIENTRYP PFNGLFOGFPROC) ( GLenum pname, GLfloat param ); + +typedef void (APIENTRYP PFNGLFOGIPROC) ( GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLFOGFVPROC) ( GLenum pname, const GLfloat *params ); + +typedef void (APIENTRYP PFNGLFOGIVPROC) ( GLenum pname, const GLint *params ); + + +/* + * Selection and Feedback + */ + +typedef void (APIENTRYP PFNGLFEEDBACKBUFFERPROC) ( GLsizei size, GLenum type, GLfloat *buffer ); + +typedef void (APIENTRYP PFNGLPASSTHROUGHPROC) ( GLfloat token ); + +typedef void (APIENTRYP PFNGLSELECTBUFFERPROC) ( GLsizei size, GLuint *buffer ); + +typedef void (APIENTRYP PFNGLINITNAMESPROC) ( void ); + +typedef void (APIENTRYP PFNGLLOADNAMEPROC) ( GLuint name ); + +typedef void (APIENTRYP PFNGLPUSHNAMEPROC) ( GLuint name ); + +typedef void (APIENTRYP PFNGLPOPNAMEPROC) ( void ); +#endif + + +/* + * OpenGL 1.2 + */ + +#define GL_RESCALE_NORMAL 0x803A +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_MAX_ELEMENTS_VERTICES 0x80E8 +#define GL_MAX_ELEMENTS_INDICES 0x80E9 +#define GL_BGR 0x80E0 +#define GL_BGRA 0x80E1 +#define GL_UNSIGNED_BYTE_3_3_2 0x8032 +#define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 +#define GL_UNSIGNED_INT_8_8_8_8 0x8035 +#define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 +#define GL_UNSIGNED_INT_10_10_10_2 0x8036 +#define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 +#define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8 +#define GL_SINGLE_COLOR 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR 0x81FA +#define GL_TEXTURE_MIN_LOD 0x813A +#define GL_TEXTURE_MAX_LOD 0x813B +#define GL_TEXTURE_BASE_LEVEL 0x813C +#define GL_TEXTURE_MAX_LEVEL 0x813D +#define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 +#define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 +#define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_PACK_SKIP_IMAGES 0x806B +#define GL_PACK_IMAGE_HEIGHT 0x806C +#define GL_UNPACK_SKIP_IMAGES 0x806D +#define GL_UNPACK_IMAGE_HEIGHT 0x806E +#define GL_TEXTURE_3D 0x806F +#define GL_PROXY_TEXTURE_3D 0x8070 +#define GL_TEXTURE_DEPTH 0x8071 +#define GL_TEXTURE_WRAP_R 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE 0x8073 +#define GL_TEXTURE_BINDING_3D 0x806A + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glDrawRangeElements( GLenum mode, GLuint start, + GLuint end, GLsizei count, GLenum type, const GLvoid *indices ); + +GLAPI void GLAPIENTRY glTexImage3D( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLsizei depth, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glTexSubImage3D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLsizei width, + GLsizei height, GLsizei depth, + GLenum format, + GLenum type, const GLvoid *pixels); + +GLAPI void GLAPIENTRY glCopyTexSubImage3D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLint x, + GLint y, GLsizei width, + GLsizei height ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) ( GLenum mode, GLuint start, + GLuint end, GLsizei count, GLenum type, const GLvoid *indices ); + +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) ( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLsizei depth, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLsizei width, + GLsizei height, GLsizei depth, + GLenum format, + GLenum type, const GLvoid *pixels); + +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLint x, + GLint y, GLsizei width, + GLsizei height ); + +#endif + +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices); +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); + + +/* + * GL_ARB_imaging + */ + +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_COLOR_TABLE 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2 +#define GL_PROXY_COLOR_TABLE 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5 +#define GL_COLOR_TABLE_SCALE 0x80D6 +#define GL_COLOR_TABLE_BIAS 0x80D7 +#define GL_COLOR_TABLE_FORMAT 0x80D8 +#define GL_COLOR_TABLE_WIDTH 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF +#define GL_CONVOLUTION_1D 0x8010 +#define GL_CONVOLUTION_2D 0x8011 +#define GL_SEPARABLE_2D 0x8012 +#define GL_CONVOLUTION_BORDER_MODE 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS 0x8015 +#define GL_REDUCE 0x8016 +#define GL_CONVOLUTION_FORMAT 0x8017 +#define GL_CONVOLUTION_WIDTH 0x8018 +#define GL_CONVOLUTION_HEIGHT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023 +#define GL_CONSTANT_BORDER 0x8151 +#define GL_REPLICATE_BORDER 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR 0x8154 +#define GL_COLOR_MATRIX 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB +#define GL_HISTOGRAM 0x8024 +#define GL_PROXY_HISTOGRAM 0x8025 +#define GL_HISTOGRAM_WIDTH 0x8026 +#define GL_HISTOGRAM_FORMAT 0x8027 +#define GL_HISTOGRAM_RED_SIZE 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C +#define GL_HISTOGRAM_SINK 0x802D +#define GL_MINMAX 0x802E +#define GL_MINMAX_FORMAT 0x802F +#define GL_MINMAX_SINK 0x8030 +#define GL_TABLE_TOO_LARGE 0x8031 +#define GL_BLEND_EQUATION 0x8009 +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +#define GL_FUNC_ADD 0x8006 +#define GL_FUNC_SUBTRACT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_BLEND_COLOR 0x8005 + + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glColorTable( GLenum target, GLenum internalformat, + GLsizei width, GLenum format, + GLenum type, const GLvoid *table ); + +GLAPI void GLAPIENTRY glColorSubTable( GLenum target, + GLsizei start, GLsizei count, + GLenum format, GLenum type, + const GLvoid *data ); + +GLAPI void GLAPIENTRY glColorTableParameteriv(GLenum target, GLenum pname, + const GLint *params); + +GLAPI void GLAPIENTRY glColorTableParameterfv(GLenum target, GLenum pname, + const GLfloat *params); + +GLAPI void GLAPIENTRY glCopyColorSubTable( GLenum target, GLsizei start, + GLint x, GLint y, GLsizei width ); + +GLAPI void GLAPIENTRY glCopyColorTable( GLenum target, GLenum internalformat, + GLint x, GLint y, GLsizei width ); + +GLAPI void GLAPIENTRY glGetColorTable( GLenum target, GLenum format, + GLenum type, GLvoid *table ); + +GLAPI void GLAPIENTRY glGetColorTableParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetColorTableParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glBlendEquation( GLenum mode ); + +GLAPI void GLAPIENTRY glBlendColor( GLclampf red, GLclampf green, + GLclampf blue, GLclampf alpha ); + +GLAPI void GLAPIENTRY glHistogram( GLenum target, GLsizei width, + GLenum internalformat, GLboolean sink ); + +GLAPI void GLAPIENTRY glResetHistogram( GLenum target ); + +GLAPI void GLAPIENTRY glGetHistogram( GLenum target, GLboolean reset, + GLenum format, GLenum type, + GLvoid *values ); + +GLAPI void GLAPIENTRY glGetHistogramParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetHistogramParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glMinmax( GLenum target, GLenum internalformat, + GLboolean sink ); + +GLAPI void GLAPIENTRY glResetMinmax( GLenum target ); + +GLAPI void GLAPIENTRY glGetMinmax( GLenum target, GLboolean reset, + GLenum format, GLenum types, + GLvoid *values ); + +GLAPI void GLAPIENTRY glGetMinmaxParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetMinmaxParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glConvolutionFilter1D( GLenum target, + GLenum internalformat, GLsizei width, GLenum format, GLenum type, + const GLvoid *image ); + +GLAPI void GLAPIENTRY glConvolutionFilter2D( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *image ); + +GLAPI void GLAPIENTRY glConvolutionParameterf( GLenum target, GLenum pname, + GLfloat params ); + +GLAPI void GLAPIENTRY glConvolutionParameterfv( GLenum target, GLenum pname, + const GLfloat *params ); + +GLAPI void GLAPIENTRY glConvolutionParameteri( GLenum target, GLenum pname, + GLint params ); + +GLAPI void GLAPIENTRY glConvolutionParameteriv( GLenum target, GLenum pname, + const GLint *params ); + +GLAPI void GLAPIENTRY glCopyConvolutionFilter1D( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width ); + +GLAPI void GLAPIENTRY glCopyConvolutionFilter2D( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width, + GLsizei height); + +GLAPI void GLAPIENTRY glGetConvolutionFilter( GLenum target, GLenum format, + GLenum type, GLvoid *image ); + +GLAPI void GLAPIENTRY glGetConvolutionParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetConvolutionParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glSeparableFilter2D( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *row, const GLvoid *column ); + +GLAPI void GLAPIENTRY glGetSeparableFilter( GLenum target, GLenum format, + GLenum type, GLvoid *row, GLvoid *column, GLvoid *span ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLCOLORTABLEPROC) ( GLenum target, GLenum internalformat, + GLsizei width, GLenum format, + GLenum type, const GLvoid *table ); + +typedef void (APIENTRYP PFNGLCOLORSUBTABLEPROC) ( GLenum target, + GLsizei start, GLsizei count, + GLenum format, GLenum type, + const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, + const GLint *params); + +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, + const GLfloat *params); + +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEPROC) ( GLenum target, GLsizei start, + GLint x, GLint y, GLsizei width ); + +typedef void (APIENTRYP PFNGLCOPYCOLORTABLEPROC) ( GLenum target, GLenum internalformat, + GLint x, GLint y, GLsizei width ); + +typedef void (APIENTRYP PFNGLGETCOLORTABLEPROC) ( GLenum target, GLenum format, + GLenum type, GLvoid *table ); + +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLBLENDCOLORPROC) ( GLclampf red, GLclampf green, + GLclampf blue, GLclampf alpha ); + +typedef void (APIENTRYP PFNGLHISTOGRAMPROC) ( GLenum target, GLsizei width, + GLenum internalformat, GLboolean sink ); + +typedef void (APIENTRYP PFNGLRESETHISTOGRAMPROC) ( GLenum target ); + +typedef void (APIENTRYP PFNGLGETHISTOGRAMPROC) ( GLenum target, GLboolean reset, + GLenum format, GLenum type, + GLvoid *values ); + +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLMINMAXPROC) ( GLenum target, GLenum internalformat, + GLboolean sink ); + +typedef void (APIENTRYP PFNGLRESETMINMAXPROC) ( GLenum target ); + +typedef void (APIENTRYP PFNGLGETMINMAXPROC) ( GLenum target, GLboolean reset, + GLenum format, GLenum types, + GLvoid *values ); + +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DPROC) ( GLenum target, + GLenum internalformat, GLsizei width, GLenum format, GLenum type, + const GLvoid *image ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DPROC) ( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *image ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFPROC) ( GLenum target, GLenum pname, + GLfloat params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVPROC) ( GLenum target, GLenum pname, + const GLfloat *params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIPROC) ( GLenum target, GLenum pname, + GLint params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVPROC) ( GLenum target, GLenum pname, + const GLint *params ); + +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DPROC) ( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width ); + +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DPROC) ( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width, + GLsizei height); + +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTERPROC) ( GLenum target, GLenum format, + GLenum type, GLvoid *image ); + +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DPROC) ( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *row, const GLvoid *column ); + +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTERPROC) ( GLenum target, GLenum format, + GLenum type, GLvoid *row, GLvoid *column, GLvoid *span ); + +#endif + + + + +/* + * OpenGL 1.3 + */ + +/* multitexture */ +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE 0x84E1 +#define GL_MAX_TEXTURE_UNITS 0x84E2 +/* texture_cube_map */ +#define GL_NORMAL_MAP 0x8511 +#define GL_REFLECTION_MAP 0x8512 +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +/* texture_compression */ +#define GL_COMPRESSED_ALPHA 0x84E9 +#define GL_COMPRESSED_LUMINANCE 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB +#define GL_COMPRESSED_INTENSITY 0x84EC +#define GL_COMPRESSED_RGB 0x84ED +#define GL_COMPRESSED_RGBA 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 +#define GL_TEXTURE_COMPRESSED 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +/* multisample */ +#define GL_MULTISAMPLE 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE 0x809F +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_MULTISAMPLE_BIT 0x20000000 +/* transpose_matrix */ +#define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX 0x84E6 +/* texture_env_combine */ +#define GL_COMBINE 0x8570 +#define GL_COMBINE_RGB 0x8571 +#define GL_COMBINE_ALPHA 0x8572 +#define GL_SOURCE0_RGB 0x8580 +#define GL_SOURCE1_RGB 0x8581 +#define GL_SOURCE2_RGB 0x8582 +#define GL_SOURCE0_ALPHA 0x8588 +#define GL_SOURCE1_ALPHA 0x8589 +#define GL_SOURCE2_ALPHA 0x858A +#define GL_OPERAND0_RGB 0x8590 +#define GL_OPERAND1_RGB 0x8591 +#define GL_OPERAND2_RGB 0x8592 +#define GL_OPERAND0_ALPHA 0x8598 +#define GL_OPERAND1_ALPHA 0x8599 +#define GL_OPERAND2_ALPHA 0x859A +#define GL_RGB_SCALE 0x8573 +#define GL_ADD_SIGNED 0x8574 +#define GL_INTERPOLATE 0x8575 +#define GL_SUBTRACT 0x84E7 +#define GL_CONSTANT 0x8576 +#define GL_PRIMARY_COLOR 0x8577 +#define GL_PREVIOUS 0x8578 +/* texture_env_dot3 */ +#define GL_DOT3_RGB 0x86AE +#define GL_DOT3_RGBA 0x86AF +/* texture_border_clamp */ +#define GL_CLAMP_TO_BORDER 0x812D + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glActiveTexture( GLenum texture ); + +GLAPI void GLAPIENTRY glClientActiveTexture( GLenum texture ); + +GLAPI void GLAPIENTRY glCompressedTexImage1D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexImage2D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexImage3D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexSubImage1D( GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexSubImage2D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexSubImage3D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glGetCompressedTexImage( GLenum target, GLint lod, GLvoid *img ); + +GLAPI void GLAPIENTRY glMultiTexCoord1d( GLenum target, GLdouble s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord1f( GLenum target, GLfloat s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord1i( GLenum target, GLint s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord1s( GLenum target, GLshort s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1sv( GLenum target, const GLshort *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2d( GLenum target, GLdouble s, GLdouble t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2f( GLenum target, GLfloat s, GLfloat t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2i( GLenum target, GLint s, GLint t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2s( GLenum target, GLshort s, GLshort t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2sv( GLenum target, const GLshort *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3d( GLenum target, GLdouble s, GLdouble t, GLdouble r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3f( GLenum target, GLfloat s, GLfloat t, GLfloat r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3i( GLenum target, GLint s, GLint t, GLint r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3s( GLenum target, GLshort s, GLshort t, GLshort r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3sv( GLenum target, const GLshort *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4d( GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4f( GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4i( GLenum target, GLint s, GLint t, GLint r, GLint q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4s( GLenum target, GLshort s, GLshort t, GLshort r, GLshort q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4sv( GLenum target, const GLshort *v ); + + +GLAPI void GLAPIENTRY glLoadTransposeMatrixd( const GLdouble m[16] ); + +GLAPI void GLAPIENTRY glLoadTransposeMatrixf( const GLfloat m[16] ); + +GLAPI void GLAPIENTRY glMultTransposeMatrixd( const GLdouble m[16] ); + +GLAPI void GLAPIENTRY glMultTransposeMatrixf( const GLfloat m[16] ); + +GLAPI void GLAPIENTRY glSampleCoverage( GLclampf value, GLboolean invert ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) ( GLenum texture ); + +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREPROC) ( GLenum texture ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) ( GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) ( GLenum target, GLint lod, GLvoid *img ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DPROC) ( GLenum target, GLdouble s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FPROC) ( GLenum target, GLfloat s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IPROC) ( GLenum target, GLint s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SPROC) ( GLenum target, GLshort s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVPROC) ( GLenum target, const GLshort *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DPROC) ( GLenum target, GLdouble s, GLdouble t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FPROC) ( GLenum target, GLfloat s, GLfloat t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IPROC) ( GLenum target, GLint s, GLint t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SPROC) ( GLenum target, GLshort s, GLshort t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVPROC) ( GLenum target, const GLshort *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DPROC) ( GLenum target, GLdouble s, GLdouble t, GLdouble r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FPROC) ( GLenum target, GLfloat s, GLfloat t, GLfloat r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IPROC) ( GLenum target, GLint s, GLint t, GLint r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SPROC) ( GLenum target, GLshort s, GLshort t, GLshort r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVPROC) ( GLenum target, const GLshort *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DPROC) ( GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FPROC) ( GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IPROC) ( GLenum target, GLint s, GLint t, GLint r, GLint q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SPROC) ( GLenum target, GLshort s, GLshort t, GLshort r, GLshort q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVPROC) ( GLenum target, const GLshort *v ); + + +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDPROC) ( const GLdouble m[16] ); + +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFPROC) ( const GLfloat m[16] ); + +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDPROC) ( const GLdouble m[16] ); + +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFPROC) ( const GLfloat m[16] ); + +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) ( GLclampf value, GLboolean invert ); + +#endif + + +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, GLvoid *img); + + + +/* + * GL_ARB_multitexture (ARB extension 1 and OpenGL 1.2.1) + */ +#ifndef GL_ARB_multitexture +#define GL_ARB_multitexture 1 + +#define GL_TEXTURE0_ARB 0x84C0 +#define GL_TEXTURE1_ARB 0x84C1 +#define GL_TEXTURE2_ARB 0x84C2 +#define GL_TEXTURE3_ARB 0x84C3 +#define GL_TEXTURE4_ARB 0x84C4 +#define GL_TEXTURE5_ARB 0x84C5 +#define GL_TEXTURE6_ARB 0x84C6 +#define GL_TEXTURE7_ARB 0x84C7 +#define GL_TEXTURE8_ARB 0x84C8 +#define GL_TEXTURE9_ARB 0x84C9 +#define GL_TEXTURE10_ARB 0x84CA +#define GL_TEXTURE11_ARB 0x84CB +#define GL_TEXTURE12_ARB 0x84CC +#define GL_TEXTURE13_ARB 0x84CD +#define GL_TEXTURE14_ARB 0x84CE +#define GL_TEXTURE15_ARB 0x84CF +#define GL_TEXTURE16_ARB 0x84D0 +#define GL_TEXTURE17_ARB 0x84D1 +#define GL_TEXTURE18_ARB 0x84D2 +#define GL_TEXTURE19_ARB 0x84D3 +#define GL_TEXTURE20_ARB 0x84D4 +#define GL_TEXTURE21_ARB 0x84D5 +#define GL_TEXTURE22_ARB 0x84D6 +#define GL_TEXTURE23_ARB 0x84D7 +#define GL_TEXTURE24_ARB 0x84D8 +#define GL_TEXTURE25_ARB 0x84D9 +#define GL_TEXTURE26_ARB 0x84DA +#define GL_TEXTURE27_ARB 0x84DB +#define GL_TEXTURE28_ARB 0x84DC +#define GL_TEXTURE29_ARB 0x84DD +#define GL_TEXTURE30_ARB 0x84DE +#define GL_TEXTURE31_ARB 0x84DF +#define GL_ACTIVE_TEXTURE_ARB 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1 +#define GL_MAX_TEXTURE_UNITS_ARB 0x84E2 + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glActiveTextureARB(GLenum texture); +GLAPI void GLAPIENTRY glClientActiveTextureARB(GLenum texture); +GLAPI void GLAPIENTRY glMultiTexCoord1dARB(GLenum target, GLdouble s); +GLAPI void GLAPIENTRY glMultiTexCoord1dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord1fARB(GLenum target, GLfloat s); +GLAPI void GLAPIENTRY glMultiTexCoord1fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord1iARB(GLenum target, GLint s); +GLAPI void GLAPIENTRY glMultiTexCoord1ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord1sARB(GLenum target, GLshort s); +GLAPI void GLAPIENTRY glMultiTexCoord1svARB(GLenum target, const GLshort *v); +GLAPI void GLAPIENTRY glMultiTexCoord2dARB(GLenum target, GLdouble s, GLdouble t); +GLAPI void GLAPIENTRY glMultiTexCoord2dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord2fARB(GLenum target, GLfloat s, GLfloat t); +GLAPI void GLAPIENTRY glMultiTexCoord2fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord2iARB(GLenum target, GLint s, GLint t); +GLAPI void GLAPIENTRY glMultiTexCoord2ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord2sARB(GLenum target, GLshort s, GLshort t); +GLAPI void GLAPIENTRY glMultiTexCoord2svARB(GLenum target, const GLshort *v); +GLAPI void GLAPIENTRY glMultiTexCoord3dARB(GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void GLAPIENTRY glMultiTexCoord3dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord3fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void GLAPIENTRY glMultiTexCoord3fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord3iARB(GLenum target, GLint s, GLint t, GLint r); +GLAPI void GLAPIENTRY glMultiTexCoord3ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord3sARB(GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void GLAPIENTRY glMultiTexCoord3svARB(GLenum target, const GLshort *v); +GLAPI void GLAPIENTRY glMultiTexCoord4dARB(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void GLAPIENTRY glMultiTexCoord4dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord4fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void GLAPIENTRY glMultiTexCoord4fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord4iARB(GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void GLAPIENTRY glMultiTexCoord4ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord4sARB(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void GLAPIENTRY glMultiTexCoord4svARB(GLenum target, const GLshort *v); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); + +#endif + +typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); + +#endif /* GL_ARB_multitexture */ + + + +/* + * Define this token if you want "old-style" header file behaviour (extensions + * defined in gl.h). Otherwise, extensions will be included from glext.h. + */ +#if !defined(NO_SDL_GLEXT) && !defined(GL_GLEXT_LEGACY) +#include +#endif /* GL_GLEXT_LEGACY */ + + + +/********************************************************************** + * Begin system-specific stuff + */ +#if defined(PRAGMA_EXPORT_SUPPORTED) +#pragma export off +#endif + +/* + * End system-specific stuff + **********************************************************************/ + + +#ifdef __cplusplus +} +#endif + +#endif /* __gl_h_ */ + +#endif /* !SDL_PLATFORM_IOS */ + +#endif /* SDL_opengl_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengl_glext.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengl_glext.h new file mode 100644 index 0000000..fa0f6c2 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengl_glext.h @@ -0,0 +1,13213 @@ +/* SDL modified the include guard to be compatible with Mesa and Apple include guards: + * - Mesa uses: __gl_glext_h_ + * - Apple uses: __glext_h_ */ +#if !defined(__glext_h_) && !defined(__gl_glext_h_) +#define __glext_h_ 1 +#define __gl_glext_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN 1 +#endif +#include +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif +#ifndef APIENTRYP +#define APIENTRYP APIENTRY * +#endif +#ifndef GLAPI +#define GLAPI extern +#endif + +#define GL_GLEXT_VERSION 20220530 + +/*#include */ +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ + +/* Generated C header for: + * API: gl + * Profile: compatibility + * Versions considered: .* + * Versions emitted: 1\.[2-9]|[234]\.[0-9] + * Default extensions included: gl + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_VERSION_1_2 +#define GL_VERSION_1_2 1 +#define GL_UNSIGNED_BYTE_3_3_2 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2 0x8036 +#define GL_TEXTURE_BINDING_3D 0x806A +#define GL_PACK_SKIP_IMAGES 0x806B +#define GL_PACK_IMAGE_HEIGHT 0x806C +#define GL_UNPACK_SKIP_IMAGES 0x806D +#define GL_UNPACK_IMAGE_HEIGHT 0x806E +#define GL_TEXTURE_3D 0x806F +#define GL_PROXY_TEXTURE_3D 0x8070 +#define GL_TEXTURE_DEPTH 0x8071 +#define GL_TEXTURE_WRAP_R 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE 0x8073 +#define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 +#define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 +#define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 +#define GL_BGR 0x80E0 +#define GL_BGRA 0x80E1 +#define GL_MAX_ELEMENTS_VERTICES 0x80E8 +#define GL_MAX_ELEMENTS_INDICES 0x80E9 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_TEXTURE_MIN_LOD 0x813A +#define GL_TEXTURE_MAX_LOD 0x813B +#define GL_TEXTURE_BASE_LEVEL 0x813C +#define GL_TEXTURE_MAX_LEVEL 0x813D +#define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 +#define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 +#define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_RESCALE_NORMAL 0x803A +#define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8 +#define GL_SINGLE_COLOR 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR 0x81FA +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawRangeElements (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +GLAPI void APIENTRY glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#endif +#endif /* GL_VERSION_1_2 */ + +#ifndef GL_VERSION_1_3 +#define GL_VERSION_1_3 1 +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_MULTISAMPLE 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE 0x809F +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +#define GL_COMPRESSED_RGB 0x84ED +#define GL_COMPRESSED_RGBA 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 +#define GL_TEXTURE_COMPRESSED 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +#define GL_CLAMP_TO_BORDER 0x812D +#define GL_CLIENT_ACTIVE_TEXTURE 0x84E1 +#define GL_MAX_TEXTURE_UNITS 0x84E2 +#define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX 0x84E6 +#define GL_MULTISAMPLE_BIT 0x20000000 +#define GL_NORMAL_MAP 0x8511 +#define GL_REFLECTION_MAP 0x8512 +#define GL_COMPRESSED_ALPHA 0x84E9 +#define GL_COMPRESSED_LUMINANCE 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB +#define GL_COMPRESSED_INTENSITY 0x84EC +#define GL_COMBINE 0x8570 +#define GL_COMBINE_RGB 0x8571 +#define GL_COMBINE_ALPHA 0x8572 +#define GL_SOURCE0_RGB 0x8580 +#define GL_SOURCE1_RGB 0x8581 +#define GL_SOURCE2_RGB 0x8582 +#define GL_SOURCE0_ALPHA 0x8588 +#define GL_SOURCE1_ALPHA 0x8589 +#define GL_SOURCE2_ALPHA 0x858A +#define GL_OPERAND0_RGB 0x8590 +#define GL_OPERAND1_RGB 0x8591 +#define GL_OPERAND2_RGB 0x8592 +#define GL_OPERAND0_ALPHA 0x8598 +#define GL_OPERAND1_ALPHA 0x8599 +#define GL_OPERAND2_ALPHA 0x859A +#define GL_RGB_SCALE 0x8573 +#define GL_ADD_SIGNED 0x8574 +#define GL_INTERPOLATE 0x8575 +#define GL_SUBTRACT 0x84E7 +#define GL_CONSTANT 0x8576 +#define GL_PRIMARY_COLOR 0x8577 +#define GL_PREVIOUS 0x8578 +#define GL_DOT3_RGB 0x86AE +#define GL_DOT3_RGBA 0x86AF +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLfloat value, GLboolean invert); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, void *img); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDPROC) (const GLdouble *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDPROC) (const GLdouble *m); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveTexture (GLenum texture); +GLAPI void APIENTRY glSampleCoverage (GLfloat value, GLboolean invert); +GLAPI void APIENTRY glCompressedTexImage3D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage1D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage1D (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glGetCompressedTexImage (GLenum target, GLint level, void *img); +GLAPI void APIENTRY glClientActiveTexture (GLenum texture); +GLAPI void APIENTRY glMultiTexCoord1d (GLenum target, GLdouble s); +GLAPI void APIENTRY glMultiTexCoord1dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord1f (GLenum target, GLfloat s); +GLAPI void APIENTRY glMultiTexCoord1fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord1i (GLenum target, GLint s); +GLAPI void APIENTRY glMultiTexCoord1iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord1s (GLenum target, GLshort s); +GLAPI void APIENTRY glMultiTexCoord1sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord2d (GLenum target, GLdouble s, GLdouble t); +GLAPI void APIENTRY glMultiTexCoord2dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord2f (GLenum target, GLfloat s, GLfloat t); +GLAPI void APIENTRY glMultiTexCoord2fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord2i (GLenum target, GLint s, GLint t); +GLAPI void APIENTRY glMultiTexCoord2iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord2s (GLenum target, GLshort s, GLshort t); +GLAPI void APIENTRY glMultiTexCoord2sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord3d (GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void APIENTRY glMultiTexCoord3dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord3f (GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void APIENTRY glMultiTexCoord3fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord3i (GLenum target, GLint s, GLint t, GLint r); +GLAPI void APIENTRY glMultiTexCoord3iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord3s (GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void APIENTRY glMultiTexCoord3sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord4d (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void APIENTRY glMultiTexCoord4dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord4f (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void APIENTRY glMultiTexCoord4fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord4i (GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void APIENTRY glMultiTexCoord4iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord4s (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void APIENTRY glMultiTexCoord4sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glLoadTransposeMatrixf (const GLfloat *m); +GLAPI void APIENTRY glLoadTransposeMatrixd (const GLdouble *m); +GLAPI void APIENTRY glMultTransposeMatrixf (const GLfloat *m); +GLAPI void APIENTRY glMultTransposeMatrixd (const GLdouble *m); +#endif +#endif /* GL_VERSION_1_3 */ + +#ifndef GL_VERSION_1_4 +#define GL_VERSION_1_4 1 +#define GL_BLEND_DST_RGB 0x80C8 +#define GL_BLEND_SRC_RGB 0x80C9 +#define GL_BLEND_DST_ALPHA 0x80CA +#define GL_BLEND_SRC_ALPHA 0x80CB +#define GL_POINT_FADE_THRESHOLD_SIZE 0x8128 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_DEPTH_COMPONENT24 0x81A6 +#define GL_DEPTH_COMPONENT32 0x81A7 +#define GL_MIRRORED_REPEAT 0x8370 +#define GL_MAX_TEXTURE_LOD_BIAS 0x84FD +#define GL_TEXTURE_LOD_BIAS 0x8501 +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 +#define GL_TEXTURE_DEPTH_SIZE 0x884A +#define GL_TEXTURE_COMPARE_MODE 0x884C +#define GL_TEXTURE_COMPARE_FUNC 0x884D +#define GL_POINT_SIZE_MIN 0x8126 +#define GL_POINT_SIZE_MAX 0x8127 +#define GL_POINT_DISTANCE_ATTENUATION 0x8129 +#define GL_GENERATE_MIPMAP 0x8191 +#define GL_GENERATE_MIPMAP_HINT 0x8192 +#define GL_FOG_COORDINATE_SOURCE 0x8450 +#define GL_FOG_COORDINATE 0x8451 +#define GL_FRAGMENT_DEPTH 0x8452 +#define GL_CURRENT_FOG_COORDINATE 0x8453 +#define GL_FOG_COORDINATE_ARRAY_TYPE 0x8454 +#define GL_FOG_COORDINATE_ARRAY_STRIDE 0x8455 +#define GL_FOG_COORDINATE_ARRAY_POINTER 0x8456 +#define GL_FOG_COORDINATE_ARRAY 0x8457 +#define GL_COLOR_SUM 0x8458 +#define GL_CURRENT_SECONDARY_COLOR 0x8459 +#define GL_SECONDARY_COLOR_ARRAY_SIZE 0x845A +#define GL_SECONDARY_COLOR_ARRAY_TYPE 0x845B +#define GL_SECONDARY_COLOR_ARRAY_STRIDE 0x845C +#define GL_SECONDARY_COLOR_ARRAY_POINTER 0x845D +#define GL_SECONDARY_COLOR_ARRAY 0x845E +#define GL_TEXTURE_FILTER_CONTROL 0x8500 +#define GL_DEPTH_TEXTURE_MODE 0x884B +#define GL_COMPARE_R_TO_TEXTURE 0x884E +#define GL_BLEND_COLOR 0x8005 +#define GL_BLEND_EQUATION 0x8009 +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_FUNC_ADD 0x8006 +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_FUNC_SUBTRACT 0x800A +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIVPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFOGCOORDFPROC) (GLfloat coord); +typedef void (APIENTRYP PFNGLFOGCOORDFVPROC) (const GLfloat *coord); +typedef void (APIENTRYP PFNGLFOGCOORDDPROC) (GLdouble coord); +typedef void (APIENTRYP PFNGLFOGCOORDDVPROC) (const GLdouble *coord); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTERPROC) (GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BPROC) (GLbyte red, GLbyte green, GLbyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DPROC) (GLdouble red, GLdouble green, GLdouble blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FPROC) (GLfloat red, GLfloat green, GLfloat blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IPROC) (GLint red, GLint green, GLint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SPROC) (GLshort red, GLshort green, GLshort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBPROC) (GLubyte red, GLubyte green, GLubyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVPROC) (const GLubyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIPROC) (GLuint red, GLuint green, GLuint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVPROC) (const GLuint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USPROC) (GLushort red, GLushort green, GLushort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVPROC) (const GLushort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLWINDOWPOS2DPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLBLENDCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +GLAPI void APIENTRY glMultiDrawArrays (GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); +GLAPI void APIENTRY glMultiDrawElements (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount); +GLAPI void APIENTRY glPointParameterf (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfv (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glPointParameteri (GLenum pname, GLint param); +GLAPI void APIENTRY glPointParameteriv (GLenum pname, const GLint *params); +GLAPI void APIENTRY glFogCoordf (GLfloat coord); +GLAPI void APIENTRY glFogCoordfv (const GLfloat *coord); +GLAPI void APIENTRY glFogCoordd (GLdouble coord); +GLAPI void APIENTRY glFogCoorddv (const GLdouble *coord); +GLAPI void APIENTRY glFogCoordPointer (GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glSecondaryColor3b (GLbyte red, GLbyte green, GLbyte blue); +GLAPI void APIENTRY glSecondaryColor3bv (const GLbyte *v); +GLAPI void APIENTRY glSecondaryColor3d (GLdouble red, GLdouble green, GLdouble blue); +GLAPI void APIENTRY glSecondaryColor3dv (const GLdouble *v); +GLAPI void APIENTRY glSecondaryColor3f (GLfloat red, GLfloat green, GLfloat blue); +GLAPI void APIENTRY glSecondaryColor3fv (const GLfloat *v); +GLAPI void APIENTRY glSecondaryColor3i (GLint red, GLint green, GLint blue); +GLAPI void APIENTRY glSecondaryColor3iv (const GLint *v); +GLAPI void APIENTRY glSecondaryColor3s (GLshort red, GLshort green, GLshort blue); +GLAPI void APIENTRY glSecondaryColor3sv (const GLshort *v); +GLAPI void APIENTRY glSecondaryColor3ub (GLubyte red, GLubyte green, GLubyte blue); +GLAPI void APIENTRY glSecondaryColor3ubv (const GLubyte *v); +GLAPI void APIENTRY glSecondaryColor3ui (GLuint red, GLuint green, GLuint blue); +GLAPI void APIENTRY glSecondaryColor3uiv (const GLuint *v); +GLAPI void APIENTRY glSecondaryColor3us (GLushort red, GLushort green, GLushort blue); +GLAPI void APIENTRY glSecondaryColor3usv (const GLushort *v); +GLAPI void APIENTRY glSecondaryColorPointer (GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glWindowPos2d (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dv (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2f (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fv (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2i (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2iv (const GLint *v); +GLAPI void APIENTRY glWindowPos2s (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2sv (const GLshort *v); +GLAPI void APIENTRY glWindowPos3d (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dv (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3f (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fv (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3i (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3iv (const GLint *v); +GLAPI void APIENTRY glWindowPos3s (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3sv (const GLshort *v); +GLAPI void APIENTRY glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI void APIENTRY glBlendEquation (GLenum mode); +#endif +#endif /* GL_VERSION_1_4 */ + +#ifndef GL_VERSION_1_5 +#define GL_VERSION_1_5 1 +typedef khronos_ssize_t GLsizeiptr; +typedef khronos_intptr_t GLintptr; +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 +#define GL_QUERY_COUNTER_BITS 0x8864 +#define GL_CURRENT_QUERY 0x8865 +#define GL_QUERY_RESULT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE 0x8867 +#define GL_ARRAY_BUFFER 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER 0x8893 +#define GL_ARRAY_BUFFER_BINDING 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F +#define GL_READ_ONLY 0x88B8 +#define GL_WRITE_ONLY 0x88B9 +#define GL_READ_WRITE 0x88BA +#define GL_BUFFER_ACCESS 0x88BB +#define GL_BUFFER_MAPPED 0x88BC +#define GL_BUFFER_MAP_POINTER 0x88BD +#define GL_STREAM_DRAW 0x88E0 +#define GL_STREAM_READ 0x88E1 +#define GL_STREAM_COPY 0x88E2 +#define GL_STATIC_DRAW 0x88E4 +#define GL_STATIC_READ 0x88E5 +#define GL_STATIC_COPY 0x88E6 +#define GL_DYNAMIC_DRAW 0x88E8 +#define GL_DYNAMIC_READ 0x88E9 +#define GL_DYNAMIC_COPY 0x88EA +#define GL_SAMPLES_PASSED 0x8914 +#define GL_SRC1_ALPHA 0x8589 +#define GL_VERTEX_ARRAY_BUFFER_BINDING 0x8896 +#define GL_NORMAL_ARRAY_BUFFER_BINDING 0x8897 +#define GL_COLOR_ARRAY_BUFFER_BINDING 0x8898 +#define GL_INDEX_ARRAY_BUFFER_BINDING 0x8899 +#define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING 0x889A +#define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING 0x889B +#define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING 0x889C +#define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING 0x889D +#define GL_WEIGHT_ARRAY_BUFFER_BINDING 0x889E +#define GL_FOG_COORD_SRC 0x8450 +#define GL_FOG_COORD 0x8451 +#define GL_CURRENT_FOG_COORD 0x8453 +#define GL_FOG_COORD_ARRAY_TYPE 0x8454 +#define GL_FOG_COORD_ARRAY_STRIDE 0x8455 +#define GL_FOG_COORD_ARRAY_POINTER 0x8456 +#define GL_FOG_COORD_ARRAY 0x8457 +#define GL_FOG_COORD_ARRAY_BUFFER_BINDING 0x889D +#define GL_SRC0_RGB 0x8580 +#define GL_SRC1_RGB 0x8581 +#define GL_SRC2_RGB 0x8582 +#define GL_SRC0_ALPHA 0x8588 +#define GL_SRC2_ALPHA 0x858A +typedef void (APIENTRYP PFNGLGENQUERIESPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEQUERIESPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISQUERYPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINQUERYPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVPROC) (GLuint id, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer); +typedef void (APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers); +typedef void (APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef GLboolean (APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, void *data); +typedef void *(APIENTRYP PFNGLMAPBUFFERPROC) (GLenum target, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueries (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteQueries (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsQuery (GLuint id); +GLAPI void APIENTRY glBeginQuery (GLenum target, GLuint id); +GLAPI void APIENTRY glEndQuery (GLenum target); +GLAPI void APIENTRY glGetQueryiv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectiv (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectuiv (GLuint id, GLenum pname, GLuint *params); +GLAPI void APIENTRY glBindBuffer (GLenum target, GLuint buffer); +GLAPI void APIENTRY glDeleteBuffers (GLsizei n, const GLuint *buffers); +GLAPI void APIENTRY glGenBuffers (GLsizei n, GLuint *buffers); +GLAPI GLboolean APIENTRY glIsBuffer (GLuint buffer); +GLAPI void APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +GLAPI void APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glGetBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, void *data); +GLAPI void *APIENTRY glMapBuffer (GLenum target, GLenum access); +GLAPI GLboolean APIENTRY glUnmapBuffer (GLenum target); +GLAPI void APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetBufferPointerv (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_VERSION_1_5 */ + +#ifndef GL_VERSION_2_0 +#define GL_VERSION_2_0 1 +typedef char GLchar; +#define GL_BLEND_EQUATION_RGB 0x8009 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 +#define GL_VERTEX_PROGRAM_POINT_SIZE 0x8642 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_STENCIL_BACK_FUNC 0x8800 +#define GL_STENCIL_BACK_FAIL 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 +#define GL_MAX_DRAW_BUFFERS 0x8824 +#define GL_DRAW_BUFFER0 0x8825 +#define GL_DRAW_BUFFER1 0x8826 +#define GL_DRAW_BUFFER2 0x8827 +#define GL_DRAW_BUFFER3 0x8828 +#define GL_DRAW_BUFFER4 0x8829 +#define GL_DRAW_BUFFER5 0x882A +#define GL_DRAW_BUFFER6 0x882B +#define GL_DRAW_BUFFER7 0x882C +#define GL_DRAW_BUFFER8 0x882D +#define GL_DRAW_BUFFER9 0x882E +#define GL_DRAW_BUFFER10 0x882F +#define GL_DRAW_BUFFER11 0x8830 +#define GL_DRAW_BUFFER12 0x8831 +#define GL_DRAW_BUFFER13 0x8832 +#define GL_DRAW_BUFFER14 0x8833 +#define GL_DRAW_BUFFER15 0x8834 +#define GL_BLEND_EQUATION_ALPHA 0x883D +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS 0x8B49 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS 0x8B4A +#define GL_MAX_VARYING_FLOATS 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_SHADER_TYPE 0x8B4F +#define GL_FLOAT_VEC2 0x8B50 +#define GL_FLOAT_VEC3 0x8B51 +#define GL_FLOAT_VEC4 0x8B52 +#define GL_INT_VEC2 0x8B53 +#define GL_INT_VEC3 0x8B54 +#define GL_INT_VEC4 0x8B55 +#define GL_BOOL 0x8B56 +#define GL_BOOL_VEC2 0x8B57 +#define GL_BOOL_VEC3 0x8B58 +#define GL_BOOL_VEC4 0x8B59 +#define GL_FLOAT_MAT2 0x8B5A +#define GL_FLOAT_MAT3 0x8B5B +#define GL_FLOAT_MAT4 0x8B5C +#define GL_SAMPLER_1D 0x8B5D +#define GL_SAMPLER_2D 0x8B5E +#define GL_SAMPLER_3D 0x8B5F +#define GL_SAMPLER_CUBE 0x8B60 +#define GL_SAMPLER_1D_SHADOW 0x8B61 +#define GL_SAMPLER_2D_SHADOW 0x8B62 +#define GL_DELETE_STATUS 0x8B80 +#define GL_COMPILE_STATUS 0x8B81 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT 0x8B8B +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D +#define GL_POINT_SPRITE_COORD_ORIGIN 0x8CA0 +#define GL_LOWER_LEFT 0x8CA1 +#define GL_UPPER_LEFT 0x8CA2 +#define GL_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 +#define GL_VERTEX_PROGRAM_TWO_SIDE 0x8643 +#define GL_POINT_SPRITE 0x8861 +#define GL_COORD_REPLACE 0x8862 +#define GL_MAX_TEXTURE_COORDS 0x8871 +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLDRAWBUFFERSPROC) (GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum face, GLenum func, GLint ref, GLuint mask); +typedef void (APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask); +typedef void (APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name); +typedef void (APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader); +typedef GLuint (APIENTRYP PFNGLCREATEPROGRAMPROC) (void); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROC) (GLenum type); +typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader); +typedef void (APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params); +typedef void (APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMPROC) (GLuint program); +typedef GLboolean (APIENTRYP PFNGLISSHADERPROC) (GLuint shader); +typedef void (APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +typedef void (APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0); +typedef void (APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glDrawBuffers (GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GLAPI void APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask); +GLAPI void APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask); +GLAPI void APIENTRY glAttachShader (GLuint program, GLuint shader); +GLAPI void APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar *name); +GLAPI void APIENTRY glCompileShader (GLuint shader); +GLAPI GLuint APIENTRY glCreateProgram (void); +GLAPI GLuint APIENTRY glCreateShader (GLenum type); +GLAPI void APIENTRY glDeleteProgram (GLuint program); +GLAPI void APIENTRY glDeleteShader (GLuint shader); +GLAPI void APIENTRY glDetachShader (GLuint program, GLuint shader); +GLAPI void APIENTRY glDisableVertexAttribArray (GLuint index); +GLAPI void APIENTRY glEnableVertexAttribArray (GLuint index); +GLAPI void APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +GLAPI GLint APIENTRY glGetAttribLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +GLAPI GLint APIENTRY glGetUniformLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat *params); +GLAPI void APIENTRY glGetUniformiv (GLuint program, GLint location, GLint *params); +GLAPI void APIENTRY glGetVertexAttribdv (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer); +GLAPI GLboolean APIENTRY glIsProgram (GLuint program); +GLAPI GLboolean APIENTRY glIsShader (GLuint shader); +GLAPI void APIENTRY glLinkProgram (GLuint program); +GLAPI void APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +GLAPI void APIENTRY glUseProgram (GLuint program); +GLAPI void APIENTRY glUniform1f (GLint location, GLfloat v0); +GLAPI void APIENTRY glUniform2f (GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glUniform1i (GLint location, GLint v0); +GLAPI void APIENTRY glUniform2i (GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glUniform3i (GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glValidateProgram (GLuint program); +GLAPI void APIENTRY glVertexAttrib1d (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1f (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1s (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2d (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2s (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3d (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3s (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4Nbv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4Niv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4Nsv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4Nub (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4Nubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4Nuiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4Nusv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttrib4bv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4d (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4s (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4usv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +#endif +#endif /* GL_VERSION_2_0 */ + +#ifndef GL_VERSION_2_1 +#define GL_VERSION_2_1 1 +#define GL_PIXEL_PACK_BUFFER 0x88EB +#define GL_PIXEL_UNPACK_BUFFER 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING 0x88EF +#define GL_FLOAT_MAT2x3 0x8B65 +#define GL_FLOAT_MAT2x4 0x8B66 +#define GL_FLOAT_MAT3x2 0x8B67 +#define GL_FLOAT_MAT3x4 0x8B68 +#define GL_FLOAT_MAT4x2 0x8B69 +#define GL_FLOAT_MAT4x3 0x8B6A +#define GL_SRGB 0x8C40 +#define GL_SRGB8 0x8C41 +#define GL_SRGB_ALPHA 0x8C42 +#define GL_SRGB8_ALPHA8 0x8C43 +#define GL_COMPRESSED_SRGB 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA 0x8C49 +#define GL_CURRENT_RASTER_SECONDARY_COLOR 0x845F +#define GL_SLUMINANCE_ALPHA 0x8C44 +#define GL_SLUMINANCE8_ALPHA8 0x8C45 +#define GL_SLUMINANCE 0x8C46 +#define GL_SLUMINANCE8 0x8C47 +#define GL_COMPRESSED_SLUMINANCE 0x8C4A +#define GL_COMPRESSED_SLUMINANCE_ALPHA 0x8C4B +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniformMatrix2x3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3x2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix2x4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4x2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3x4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4x3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_VERSION_2_1 */ + +#ifndef GL_VERSION_3_0 +#define GL_VERSION_3_0 1 +typedef khronos_uint16_t GLhalf; +#define GL_COMPARE_REF_TO_TEXTURE 0x884E +#define GL_CLIP_DISTANCE0 0x3000 +#define GL_CLIP_DISTANCE1 0x3001 +#define GL_CLIP_DISTANCE2 0x3002 +#define GL_CLIP_DISTANCE3 0x3003 +#define GL_CLIP_DISTANCE4 0x3004 +#define GL_CLIP_DISTANCE5 0x3005 +#define GL_CLIP_DISTANCE6 0x3006 +#define GL_CLIP_DISTANCE7 0x3007 +#define GL_MAX_CLIP_DISTANCES 0x0D32 +#define GL_MAJOR_VERSION 0x821B +#define GL_MINOR_VERSION 0x821C +#define GL_NUM_EXTENSIONS 0x821D +#define GL_CONTEXT_FLAGS 0x821E +#define GL_COMPRESSED_RED 0x8225 +#define GL_COMPRESSED_RG 0x8226 +#define GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT 0x00000001 +#define GL_RGBA32F 0x8814 +#define GL_RGB32F 0x8815 +#define GL_RGBA16F 0x881A +#define GL_RGB16F 0x881B +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER 0x88FD +#define GL_MAX_ARRAY_TEXTURE_LAYERS 0x88FF +#define GL_MIN_PROGRAM_TEXEL_OFFSET 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET 0x8905 +#define GL_CLAMP_READ_COLOR 0x891C +#define GL_FIXED_ONLY 0x891D +#define GL_MAX_VARYING_COMPONENTS 0x8B4B +#define GL_TEXTURE_1D_ARRAY 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY 0x8C19 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY 0x8C1D +#define GL_R11F_G11F_B10F 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV 0x8C3B +#define GL_RGB9_E5 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV 0x8C3E +#define GL_TEXTURE_SHARED_SIZE 0x8C3F +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH 0x8C76 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE 0x8C85 +#define GL_PRIMITIVES_GENERATED 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN 0x8C88 +#define GL_RASTERIZER_DISCARD 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS 0x8C8B +#define GL_INTERLEAVED_ATTRIBS 0x8C8C +#define GL_SEPARATE_ATTRIBS 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING 0x8C8F +#define GL_RGBA32UI 0x8D70 +#define GL_RGB32UI 0x8D71 +#define GL_RGBA16UI 0x8D76 +#define GL_RGB16UI 0x8D77 +#define GL_RGBA8UI 0x8D7C +#define GL_RGB8UI 0x8D7D +#define GL_RGBA32I 0x8D82 +#define GL_RGB32I 0x8D83 +#define GL_RGBA16I 0x8D88 +#define GL_RGB16I 0x8D89 +#define GL_RGBA8I 0x8D8E +#define GL_RGB8I 0x8D8F +#define GL_RED_INTEGER 0x8D94 +#define GL_GREEN_INTEGER 0x8D95 +#define GL_BLUE_INTEGER 0x8D96 +#define GL_RGB_INTEGER 0x8D98 +#define GL_RGBA_INTEGER 0x8D99 +#define GL_BGR_INTEGER 0x8D9A +#define GL_BGRA_INTEGER 0x8D9B +#define GL_SAMPLER_1D_ARRAY 0x8DC0 +#define GL_SAMPLER_2D_ARRAY 0x8DC1 +#define GL_SAMPLER_1D_ARRAY_SHADOW 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW 0x8DC5 +#define GL_UNSIGNED_INT_VEC2 0x8DC6 +#define GL_UNSIGNED_INT_VEC3 0x8DC7 +#define GL_UNSIGNED_INT_VEC4 0x8DC8 +#define GL_INT_SAMPLER_1D 0x8DC9 +#define GL_INT_SAMPLER_2D 0x8DCA +#define GL_INT_SAMPLER_3D 0x8DCB +#define GL_INT_SAMPLER_CUBE 0x8DCC +#define GL_INT_SAMPLER_1D_ARRAY 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY 0x8DCF +#define GL_UNSIGNED_INT_SAMPLER_1D 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY 0x8DD7 +#define GL_QUERY_WAIT 0x8E13 +#define GL_QUERY_NO_WAIT 0x8E14 +#define GL_QUERY_BY_REGION_WAIT 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT 0x8E16 +#define GL_BUFFER_ACCESS_FLAGS 0x911F +#define GL_BUFFER_MAP_LENGTH 0x9120 +#define GL_BUFFER_MAP_OFFSET 0x9121 +#define GL_DEPTH_COMPONENT32F 0x8CAC +#define GL_DEPTH32F_STENCIL8 0x8CAD +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV 0x8DAD +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING 0x8210 +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE 0x8211 +#define GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE 0x8212 +#define GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE 0x8213 +#define GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE 0x8214 +#define GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE 0x8215 +#define GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE 0x8216 +#define GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE 0x8217 +#define GL_FRAMEBUFFER_DEFAULT 0x8218 +#define GL_FRAMEBUFFER_UNDEFINED 0x8219 +#define GL_DEPTH_STENCIL_ATTACHMENT 0x821A +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 +#define GL_DEPTH_STENCIL 0x84F9 +#define GL_UNSIGNED_INT_24_8 0x84FA +#define GL_DEPTH24_STENCIL8 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE 0x88F1 +#define GL_TEXTURE_RED_TYPE 0x8C10 +#define GL_TEXTURE_GREEN_TYPE 0x8C11 +#define GL_TEXTURE_BLUE_TYPE 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE 0x8C13 +#define GL_TEXTURE_DEPTH_TYPE 0x8C16 +#define GL_UNSIGNED_NORMALIZED 0x8C17 +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_DRAW_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_READ_FRAMEBUFFER 0x8CA8 +#define GL_DRAW_FRAMEBUFFER 0x8CA9 +#define GL_READ_FRAMEBUFFER_BINDING 0x8CAA +#define GL_RENDERBUFFER_SAMPLES 0x8CAB +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS 0x8CDF +#define GL_COLOR_ATTACHMENT0 0x8CE0 +#define GL_COLOR_ATTACHMENT1 0x8CE1 +#define GL_COLOR_ATTACHMENT2 0x8CE2 +#define GL_COLOR_ATTACHMENT3 0x8CE3 +#define GL_COLOR_ATTACHMENT4 0x8CE4 +#define GL_COLOR_ATTACHMENT5 0x8CE5 +#define GL_COLOR_ATTACHMENT6 0x8CE6 +#define GL_COLOR_ATTACHMENT7 0x8CE7 +#define GL_COLOR_ATTACHMENT8 0x8CE8 +#define GL_COLOR_ATTACHMENT9 0x8CE9 +#define GL_COLOR_ATTACHMENT10 0x8CEA +#define GL_COLOR_ATTACHMENT11 0x8CEB +#define GL_COLOR_ATTACHMENT12 0x8CEC +#define GL_COLOR_ATTACHMENT13 0x8CED +#define GL_COLOR_ATTACHMENT14 0x8CEE +#define GL_COLOR_ATTACHMENT15 0x8CEF +#define GL_COLOR_ATTACHMENT16 0x8CF0 +#define GL_COLOR_ATTACHMENT17 0x8CF1 +#define GL_COLOR_ATTACHMENT18 0x8CF2 +#define GL_COLOR_ATTACHMENT19 0x8CF3 +#define GL_COLOR_ATTACHMENT20 0x8CF4 +#define GL_COLOR_ATTACHMENT21 0x8CF5 +#define GL_COLOR_ATTACHMENT22 0x8CF6 +#define GL_COLOR_ATTACHMENT23 0x8CF7 +#define GL_COLOR_ATTACHMENT24 0x8CF8 +#define GL_COLOR_ATTACHMENT25 0x8CF9 +#define GL_COLOR_ATTACHMENT26 0x8CFA +#define GL_COLOR_ATTACHMENT27 0x8CFB +#define GL_COLOR_ATTACHMENT28 0x8CFC +#define GL_COLOR_ATTACHMENT29 0x8CFD +#define GL_COLOR_ATTACHMENT30 0x8CFE +#define GL_COLOR_ATTACHMENT31 0x8CFF +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#define GL_STENCIL_INDEX1 0x8D46 +#define GL_STENCIL_INDEX4 0x8D47 +#define GL_STENCIL_INDEX8 0x8D48 +#define GL_STENCIL_INDEX16 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE 0x8D56 +#define GL_MAX_SAMPLES 0x8D57 +#define GL_INDEX 0x8222 +#define GL_TEXTURE_LUMINANCE_TYPE 0x8C14 +#define GL_TEXTURE_INTENSITY_TYPE 0x8C15 +#define GL_FRAMEBUFFER_SRGB 0x8DB9 +#define GL_HALF_FLOAT 0x140B +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT 0x0020 +#define GL_COMPRESSED_RED_RGTC1 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1 0x8DBC +#define GL_COMPRESSED_RG_RGTC2 0x8DBD +#define GL_COMPRESSED_SIGNED_RG_RGTC2 0x8DBE +#define GL_RG 0x8227 +#define GL_RG_INTEGER 0x8228 +#define GL_R8 0x8229 +#define GL_R16 0x822A +#define GL_RG8 0x822B +#define GL_RG16 0x822C +#define GL_R16F 0x822D +#define GL_R32F 0x822E +#define GL_RG16F 0x822F +#define GL_RG32F 0x8230 +#define GL_R8I 0x8231 +#define GL_R8UI 0x8232 +#define GL_R16I 0x8233 +#define GL_R16UI 0x8234 +#define GL_R32I 0x8235 +#define GL_R32UI 0x8236 +#define GL_RG8I 0x8237 +#define GL_RG8UI 0x8238 +#define GL_RG16I 0x8239 +#define GL_RG16UI 0x823A +#define GL_RG32I 0x823B +#define GL_RG32UI 0x823C +#define GL_VERTEX_ARRAY_BINDING 0x85B5 +#define GL_CLAMP_VERTEX_COLOR 0x891A +#define GL_CLAMP_FRAGMENT_COLOR 0x891B +#define GL_ALPHA_INTEGER 0x8D97 +typedef void (APIENTRYP PFNGLCOLORMASKIPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef void (APIENTRYP PFNGLGETBOOLEANI_VPROC) (GLenum target, GLuint index, GLboolean *data); +typedef void (APIENTRYP PFNGLGETINTEGERI_VPROC) (GLenum target, GLuint index, GLint *data); +typedef void (APIENTRYP PFNGLENABLEIPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEIPROC) (GLenum target, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISENABLEDIPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGEPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFERBASEPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSPROC) (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLCLAMPCOLORPROC) (GLenum target, GLenum clamp); +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERPROC) (GLuint id, GLenum mode); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERPROC) (void); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVPROC) (GLuint index, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IPROC) (GLuint index, GLint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IPROC) (GLuint index, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IPROC) (GLuint index, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIPROC) (GLuint index, GLuint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIPROC) (GLuint index, GLuint x, GLuint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLGETUNIFORMUIVPROC) (GLuint program, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORM1UIPROC) (GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLUNIFORM2UIPROC) (GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLUNIFORM3UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLUNIFORM4UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLUNIFORM1UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM2UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM3UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM4UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLCLEARBUFFERIVPROC) (GLenum buffer, GLint drawbuffer, const GLint *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERUIVPROC) (GLenum buffer, GLint drawbuffer, const GLuint *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERFVPROC) (GLenum buffer, GLint drawbuffer, const GLfloat *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERFIPROC) (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +typedef const GLubyte *(APIENTRYP PFNGLGETSTRINGIPROC) (GLenum name, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFERPROC) (GLuint renderbuffer); +typedef void (APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLGENRENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFERPROC) (GLuint framebuffer); +typedef void (APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer); +typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATEMIPMAPPROC) (GLenum target); +typedef void (APIENTRYP PFNGLBLITFRAMEBUFFERPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void *(APIENTRYP PFNGLMAPBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLBINDVERTEXARRAYPROC) (GLuint array); +typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSPROC) (GLsizei n, const GLuint *arrays); +typedef void (APIENTRYP PFNGLGENVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYPROC) (GLuint array); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorMaski (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GLAPI void APIENTRY glGetBooleani_v (GLenum target, GLuint index, GLboolean *data); +GLAPI void APIENTRY glGetIntegeri_v (GLenum target, GLuint index, GLint *data); +GLAPI void APIENTRY glEnablei (GLenum target, GLuint index); +GLAPI void APIENTRY glDisablei (GLenum target, GLuint index); +GLAPI GLboolean APIENTRY glIsEnabledi (GLenum target, GLuint index); +GLAPI void APIENTRY glBeginTransformFeedback (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedback (void); +GLAPI void APIENTRY glBindBufferRange (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferBase (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryings (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +GLAPI void APIENTRY glGetTransformFeedbackVarying (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glClampColor (GLenum target, GLenum clamp); +GLAPI void APIENTRY glBeginConditionalRender (GLuint id, GLenum mode); +GLAPI void APIENTRY glEndConditionalRender (void); +GLAPI void APIENTRY glVertexAttribIPointer (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribIiv (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribIuiv (GLuint index, GLenum pname, GLuint *params); +GLAPI void APIENTRY glVertexAttribI1i (GLuint index, GLint x); +GLAPI void APIENTRY glVertexAttribI2i (GLuint index, GLint x, GLint y); +GLAPI void APIENTRY glVertexAttribI3i (GLuint index, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexAttribI4i (GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexAttribI1ui (GLuint index, GLuint x); +GLAPI void APIENTRY glVertexAttribI2ui (GLuint index, GLuint x, GLuint y); +GLAPI void APIENTRY glVertexAttribI3ui (GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI void APIENTRY glVertexAttribI4ui (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glVertexAttribI1iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI2iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI3iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI4iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI1uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI2uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI3uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4bv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttribI4sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttribI4ubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribI4usv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glGetUniformuiv (GLuint program, GLint location, GLuint *params); +GLAPI void APIENTRY glBindFragDataLocation (GLuint program, GLuint color, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glUniform1ui (GLint location, GLuint v0); +GLAPI void APIENTRY glUniform2ui (GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glUniform3ui (GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glUniform4ui (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glUniform1uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform2uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform3uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform4uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glTexParameterIiv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTexParameterIuiv (GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTexParameterIiv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTexParameterIuiv (GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glClearBufferiv (GLenum buffer, GLint drawbuffer, const GLint *value); +GLAPI void APIENTRY glClearBufferuiv (GLenum buffer, GLint drawbuffer, const GLuint *value); +GLAPI void APIENTRY glClearBufferfv (GLenum buffer, GLint drawbuffer, const GLfloat *value); +GLAPI void APIENTRY glClearBufferfi (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +GLAPI const GLubyte *APIENTRY glGetStringi (GLenum name, GLuint index); +GLAPI GLboolean APIENTRY glIsRenderbuffer (GLuint renderbuffer); +GLAPI void APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint *renderbuffers); +GLAPI void APIENTRY glGenRenderbuffers (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI GLboolean APIENTRY glIsFramebuffer (GLuint framebuffer); +GLAPI void APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer); +GLAPI void APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); +GLAPI void APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers); +GLAPI GLenum APIENTRY glCheckFramebufferStatus (GLenum target); +GLAPI void APIENTRY glFramebufferTexture1D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture3D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateMipmap (GLenum target); +GLAPI void APIENTRY glBlitFramebuffer (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI void APIENTRY glRenderbufferStorageMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void *APIENTRY glMapBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI void APIENTRY glFlushMappedBufferRange (GLenum target, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glBindVertexArray (GLuint array); +GLAPI void APIENTRY glDeleteVertexArrays (GLsizei n, const GLuint *arrays); +GLAPI void APIENTRY glGenVertexArrays (GLsizei n, GLuint *arrays); +GLAPI GLboolean APIENTRY glIsVertexArray (GLuint array); +#endif +#endif /* GL_VERSION_3_0 */ + +#ifndef GL_VERSION_3_1 +#define GL_VERSION_3_1 1 +#define GL_SAMPLER_2D_RECT 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW 0x8B64 +#define GL_SAMPLER_BUFFER 0x8DC2 +#define GL_INT_SAMPLER_2D_RECT 0x8DCD +#define GL_INT_SAMPLER_BUFFER 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER 0x8DD8 +#define GL_TEXTURE_BUFFER 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING 0x8C2D +#define GL_TEXTURE_RECTANGLE 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE 0x84F8 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGB8_SNORM 0x8F96 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM 0x8F98 +#define GL_RG16_SNORM 0x8F99 +#define GL_RGB16_SNORM 0x8F9A +#define GL_RGBA16_SNORM 0x8F9B +#define GL_SIGNED_NORMALIZED 0x8F9C +#define GL_PRIMITIVE_RESTART 0x8F9D +#define GL_PRIMITIVE_RESTART_INDEX 0x8F9E +#define GL_COPY_READ_BUFFER 0x8F36 +#define GL_COPY_WRITE_BUFFER 0x8F37 +#define GL_UNIFORM_BUFFER 0x8A11 +#define GL_UNIFORM_BUFFER_BINDING 0x8A28 +#define GL_UNIFORM_BUFFER_START 0x8A29 +#define GL_UNIFORM_BUFFER_SIZE 0x8A2A +#define GL_MAX_VERTEX_UNIFORM_BLOCKS 0x8A2B +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS 0x8A2C +#define GL_MAX_FRAGMENT_UNIFORM_BLOCKS 0x8A2D +#define GL_MAX_COMBINED_UNIFORM_BLOCKS 0x8A2E +#define GL_MAX_UNIFORM_BUFFER_BINDINGS 0x8A2F +#define GL_MAX_UNIFORM_BLOCK_SIZE 0x8A30 +#define GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS 0x8A31 +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS 0x8A32 +#define GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS 0x8A33 +#define GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT 0x8A34 +#define GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH 0x8A35 +#define GL_ACTIVE_UNIFORM_BLOCKS 0x8A36 +#define GL_UNIFORM_TYPE 0x8A37 +#define GL_UNIFORM_SIZE 0x8A38 +#define GL_UNIFORM_NAME_LENGTH 0x8A39 +#define GL_UNIFORM_BLOCK_INDEX 0x8A3A +#define GL_UNIFORM_OFFSET 0x8A3B +#define GL_UNIFORM_ARRAY_STRIDE 0x8A3C +#define GL_UNIFORM_MATRIX_STRIDE 0x8A3D +#define GL_UNIFORM_IS_ROW_MAJOR 0x8A3E +#define GL_UNIFORM_BLOCK_BINDING 0x8A3F +#define GL_UNIFORM_BLOCK_DATA_SIZE 0x8A40 +#define GL_UNIFORM_BLOCK_NAME_LENGTH 0x8A41 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS 0x8A42 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES 0x8A43 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER 0x8A44 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER 0x8A45 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER 0x8A46 +#define GL_INVALID_INDEX 0xFFFFFFFFu +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount); +typedef void (APIENTRYP PFNGLTEXBUFFERPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXPROC) (GLuint index); +typedef void (APIENTRYP PFNGLCOPYBUFFERSUBDATAPROC) (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLGETUNIFORMINDICESPROC) (GLuint program, GLsizei uniformCount, const GLchar *const*uniformNames, GLuint *uniformIndices); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMSIVPROC) (GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMNAMEPROC) (GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); +typedef GLuint (APIENTRYP PFNGLGETUNIFORMBLOCKINDEXPROC) (GLuint program, const GLchar *uniformBlockName); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKIVPROC) (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC) (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); +typedef void (APIENTRYP PFNGLUNIFORMBLOCKBINDINGPROC) (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstanced (GLenum mode, GLint first, GLsizei count, GLsizei instancecount); +GLAPI void APIENTRY glDrawElementsInstanced (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount); +GLAPI void APIENTRY glTexBuffer (GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glPrimitiveRestartIndex (GLuint index); +GLAPI void APIENTRY glCopyBufferSubData (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glGetUniformIndices (GLuint program, GLsizei uniformCount, const GLchar *const*uniformNames, GLuint *uniformIndices); +GLAPI void APIENTRY glGetActiveUniformsiv (GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetActiveUniformName (GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); +GLAPI GLuint APIENTRY glGetUniformBlockIndex (GLuint program, const GLchar *uniformBlockName); +GLAPI void APIENTRY glGetActiveUniformBlockiv (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetActiveUniformBlockName (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); +GLAPI void APIENTRY glUniformBlockBinding (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); +#endif +#endif /* GL_VERSION_3_1 */ + +#ifndef GL_VERSION_3_2 +#define GL_VERSION_3_2 1 +typedef struct __GLsync *GLsync; +typedef khronos_uint64_t GLuint64; +typedef khronos_int64_t GLint64; +#define GL_CONTEXT_CORE_PROFILE_BIT 0x00000001 +#define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x00000002 +#define GL_LINES_ADJACENCY 0x000A +#define GL_LINE_STRIP_ADJACENCY 0x000B +#define GL_TRIANGLES_ADJACENCY 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY 0x000D +#define GL_PROGRAM_POINT_SIZE 0x8642 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS 0x8DA8 +#define GL_GEOMETRY_SHADER 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT 0x8916 +#define GL_GEOMETRY_INPUT_TYPE 0x8917 +#define GL_GEOMETRY_OUTPUT_TYPE 0x8918 +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS 0x8DE1 +#define GL_MAX_VERTEX_OUTPUT_COMPONENTS 0x9122 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS 0x9124 +#define GL_MAX_FRAGMENT_INPUT_COMPONENTS 0x9125 +#define GL_CONTEXT_PROFILE_MASK 0x9126 +#define GL_DEPTH_CLAMP 0x864F +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION 0x8E4D +#define GL_LAST_VERTEX_CONVENTION 0x8E4E +#define GL_PROVOKING_VERTEX 0x8E4F +#define GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F +#define GL_MAX_SERVER_WAIT_TIMEOUT 0x9111 +#define GL_OBJECT_TYPE 0x9112 +#define GL_SYNC_CONDITION 0x9113 +#define GL_SYNC_STATUS 0x9114 +#define GL_SYNC_FLAGS 0x9115 +#define GL_SYNC_FENCE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE 0x9117 +#define GL_UNSIGNALED 0x9118 +#define GL_SIGNALED 0x9119 +#define GL_ALREADY_SIGNALED 0x911A +#define GL_TIMEOUT_EXPIRED 0x911B +#define GL_CONDITION_SATISFIED 0x911C +#define GL_WAIT_FAILED 0x911D +#define GL_TIMEOUT_IGNORED 0xFFFFFFFFFFFFFFFFull +#define GL_SYNC_FLUSH_COMMANDS_BIT 0x00000001 +#define GL_SAMPLE_POSITION 0x8E50 +#define GL_SAMPLE_MASK 0x8E51 +#define GL_SAMPLE_MASK_VALUE 0x8E52 +#define GL_MAX_SAMPLE_MASK_WORDS 0x8E59 +#define GL_TEXTURE_2D_MULTISAMPLE 0x9100 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE 0x9101 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9103 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE 0x9104 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY 0x9105 +#define GL_TEXTURE_SAMPLES 0x9106 +#define GL_TEXTURE_FIXED_SAMPLE_LOCATIONS 0x9107 +#define GL_SAMPLER_2D_MULTISAMPLE 0x9108 +#define GL_INT_SAMPLER_2D_MULTISAMPLE 0x9109 +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE 0x910A +#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910B +#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910C +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910D +#define GL_MAX_COLOR_TEXTURE_SAMPLES 0x910E +#define GL_MAX_DEPTH_TEXTURE_SAMPLES 0x910F +#define GL_MAX_INTEGER_SAMPLES 0x9110 +typedef void (APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +typedef void (APIENTRYP PFNGLPROVOKINGVERTEXPROC) (GLenum mode); +typedef GLsync (APIENTRYP PFNGLFENCESYNCPROC) (GLenum condition, GLbitfield flags); +typedef GLboolean (APIENTRYP PFNGLISSYNCPROC) (GLsync sync); +typedef void (APIENTRYP PFNGLDELETESYNCPROC) (GLsync sync); +typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (APIENTRYP PFNGLWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (APIENTRYP PFNGLGETINTEGER64VPROC) (GLenum pname, GLint64 *data); +typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC) (GLenum target, GLuint index, GLint64 *data); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC) (GLenum target, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVPROC) (GLenum pname, GLuint index, GLfloat *val); +typedef void (APIENTRYP PFNGLSAMPLEMASKIPROC) (GLuint maskNumber, GLbitfield mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawElementsBaseVertex (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GLAPI void APIENTRY glDrawRangeElementsBaseVertex (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GLAPI void APIENTRY glDrawElementsInstancedBaseVertex (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +GLAPI void APIENTRY glMultiDrawElementsBaseVertex (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +GLAPI void APIENTRY glProvokingVertex (GLenum mode); +GLAPI GLsync APIENTRY glFenceSync (GLenum condition, GLbitfield flags); +GLAPI GLboolean APIENTRY glIsSync (GLsync sync); +GLAPI void APIENTRY glDeleteSync (GLsync sync); +GLAPI GLenum APIENTRY glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI void APIENTRY glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI void APIENTRY glGetInteger64v (GLenum pname, GLint64 *data); +GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +GLAPI void APIENTRY glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data); +GLAPI void APIENTRY glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glFramebufferTexture (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glTexImage2DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTexImage3DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glGetMultisamplefv (GLenum pname, GLuint index, GLfloat *val); +GLAPI void APIENTRY glSampleMaski (GLuint maskNumber, GLbitfield mask); +#endif +#endif /* GL_VERSION_3_2 */ + +#ifndef GL_VERSION_3_3 +#define GL_VERSION_3_3 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR 0x88FE +#define GL_SRC1_COLOR 0x88F9 +#define GL_ONE_MINUS_SRC1_COLOR 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA 0x88FB +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS 0x88FC +#define GL_ANY_SAMPLES_PASSED 0x8C2F +#define GL_SAMPLER_BINDING 0x8919 +#define GL_RGB10_A2UI 0x906F +#define GL_TEXTURE_SWIZZLE_R 0x8E42 +#define GL_TEXTURE_SWIZZLE_G 0x8E43 +#define GL_TEXTURE_SWIZZLE_B 0x8E44 +#define GL_TEXTURE_SWIZZLE_A 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA 0x8E46 +#define GL_TIME_ELAPSED 0x88BF +#define GL_TIMESTAMP 0x8E28 +#define GL_INT_2_10_10_10_REV 0x8D9F +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDPROC) (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATAINDEXPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGENSAMPLERSPROC) (GLsizei count, GLuint *samplers); +typedef void (APIENTRYP PFNGLDELETESAMPLERSPROC) (GLsizei count, const GLuint *samplers); +typedef GLboolean (APIENTRYP PFNGLISSAMPLERPROC) (GLuint sampler); +typedef void (APIENTRYP PFNGLBINDSAMPLERPROC) (GLuint unit, GLuint sampler); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIPROC) (GLuint sampler, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFPROC) (GLuint sampler, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLQUERYCOUNTERPROC) (GLuint id, GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VPROC) (GLuint id, GLenum pname, GLuint64 *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORPROC) (GLuint index, GLuint divisor); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP2UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP2UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP3UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP3UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP4UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP4UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLTEXCOORDP1UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP1UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP2UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP2UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP3UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP3UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP4UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP4UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLNORMALP3UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLNORMALP3UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLCOLORP3UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLCOLORP3UIVPROC) (GLenum type, const GLuint *color); +typedef void (APIENTRYP PFNGLCOLORP4UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLCOLORP4UIVPROC) (GLenum type, const GLuint *color); +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIVPROC) (GLenum type, const GLuint *color); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindFragDataLocationIndexed (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataIndex (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGenSamplers (GLsizei count, GLuint *samplers); +GLAPI void APIENTRY glDeleteSamplers (GLsizei count, const GLuint *samplers); +GLAPI GLboolean APIENTRY glIsSampler (GLuint sampler); +GLAPI void APIENTRY glBindSampler (GLuint unit, GLuint sampler); +GLAPI void APIENTRY glSamplerParameteri (GLuint sampler, GLenum pname, GLint param); +GLAPI void APIENTRY glSamplerParameteriv (GLuint sampler, GLenum pname, const GLint *param); +GLAPI void APIENTRY glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param); +GLAPI void APIENTRY glSamplerParameterfv (GLuint sampler, GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glSamplerParameterIiv (GLuint sampler, GLenum pname, const GLint *param); +GLAPI void APIENTRY glSamplerParameterIuiv (GLuint sampler, GLenum pname, const GLuint *param); +GLAPI void APIENTRY glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSamplerParameterIiv (GLuint sampler, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetSamplerParameterIuiv (GLuint sampler, GLenum pname, GLuint *params); +GLAPI void APIENTRY glQueryCounter (GLuint id, GLenum target); +GLAPI void APIENTRY glGetQueryObjecti64v (GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetQueryObjectui64v (GLuint id, GLenum pname, GLuint64 *params); +GLAPI void APIENTRY glVertexAttribDivisor (GLuint index, GLuint divisor); +GLAPI void APIENTRY glVertexAttribP1ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP1uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP2ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP2uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP3ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP3uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP4ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP4uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexP2ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP2uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glVertexP3ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP3uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glVertexP4ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP4uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glTexCoordP1ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP1uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP2ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP2uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP3ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP3uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP4ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP4uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP1ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP1uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP2ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP2uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP3ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP3uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP4ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP4uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glNormalP3ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glNormalP3uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glColorP3ui (GLenum type, GLuint color); +GLAPI void APIENTRY glColorP3uiv (GLenum type, const GLuint *color); +GLAPI void APIENTRY glColorP4ui (GLenum type, GLuint color); +GLAPI void APIENTRY glColorP4uiv (GLenum type, const GLuint *color); +GLAPI void APIENTRY glSecondaryColorP3ui (GLenum type, GLuint color); +GLAPI void APIENTRY glSecondaryColorP3uiv (GLenum type, const GLuint *color); +#endif +#endif /* GL_VERSION_3_3 */ + +#ifndef GL_VERSION_4_0 +#define GL_VERSION_4_0 1 +#define GL_SAMPLE_SHADING 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE 0x8C37 +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5F +#define GL_TEXTURE_CUBE_MAP_ARRAY 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY 0x900A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY 0x900B +#define GL_SAMPLER_CUBE_MAP_ARRAY 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY 0x900F +#define GL_DRAW_INDIRECT_BUFFER 0x8F3F +#define GL_DRAW_INDIRECT_BUFFER_BINDING 0x8F43 +#define GL_GEOMETRY_SHADER_INVOCATIONS 0x887F +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS 0x8E5A +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET 0x8E5C +#define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS 0x8E5D +#define GL_MAX_VERTEX_STREAMS 0x8E71 +#define GL_DOUBLE_VEC2 0x8FFC +#define GL_DOUBLE_VEC3 0x8FFD +#define GL_DOUBLE_VEC4 0x8FFE +#define GL_DOUBLE_MAT2 0x8F46 +#define GL_DOUBLE_MAT3 0x8F47 +#define GL_DOUBLE_MAT4 0x8F48 +#define GL_DOUBLE_MAT2x3 0x8F49 +#define GL_DOUBLE_MAT2x4 0x8F4A +#define GL_DOUBLE_MAT3x2 0x8F4B +#define GL_DOUBLE_MAT3x4 0x8F4C +#define GL_DOUBLE_MAT4x2 0x8F4D +#define GL_DOUBLE_MAT4x3 0x8F4E +#define GL_ACTIVE_SUBROUTINES 0x8DE5 +#define GL_ACTIVE_SUBROUTINE_UNIFORMS 0x8DE6 +#define GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS 0x8E47 +#define GL_ACTIVE_SUBROUTINE_MAX_LENGTH 0x8E48 +#define GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH 0x8E49 +#define GL_MAX_SUBROUTINES 0x8DE7 +#define GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS 0x8DE8 +#define GL_NUM_COMPATIBLE_SUBROUTINES 0x8E4A +#define GL_COMPATIBLE_SUBROUTINES 0x8E4B +#define GL_PATCHES 0x000E +#define GL_PATCH_VERTICES 0x8E72 +#define GL_PATCH_DEFAULT_INNER_LEVEL 0x8E73 +#define GL_PATCH_DEFAULT_OUTER_LEVEL 0x8E74 +#define GL_TESS_CONTROL_OUTPUT_VERTICES 0x8E75 +#define GL_TESS_GEN_MODE 0x8E76 +#define GL_TESS_GEN_SPACING 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER 0x8E78 +#define GL_TESS_GEN_POINT_MODE 0x8E79 +#define GL_ISOLINES 0x8E7A +#define GL_FRACTIONAL_ODD 0x8E7B +#define GL_FRACTIONAL_EVEN 0x8E7C +#define GL_MAX_PATCH_VERTICES 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E1F +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER 0x84F0 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER 0x84F1 +#define GL_TESS_EVALUATION_SHADER 0x8E87 +#define GL_TESS_CONTROL_SHADER 0x8E88 +#define GL_TRANSFORM_FEEDBACK 0x8E22 +#define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED 0x8E23 +#define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE 0x8E24 +#define GL_TRANSFORM_FEEDBACK_BINDING 0x8E25 +#define GL_MAX_TRANSFORM_FEEDBACK_BUFFERS 0x8E70 +typedef void (APIENTRYP PFNGLMINSAMPLESHADINGPROC) (GLfloat value); +typedef void (APIENTRYP PFNGLBLENDEQUATIONIPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLBLENDFUNCIPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (APIENTRYP PFNGLDRAWARRAYSINDIRECTPROC) (GLenum mode, const void *indirect); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const void *indirect); +typedef void (APIENTRYP PFNGLUNIFORM1DPROC) (GLint location, GLdouble x); +typedef void (APIENTRYP PFNGLUNIFORM2DPROC) (GLint location, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLUNIFORM3DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLUNIFORM4DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLUNIFORM1DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM2DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM3DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM4DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLGETUNIFORMDVPROC) (GLuint program, GLint location, GLdouble *params); +typedef GLint (APIENTRYP PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC) (GLuint program, GLenum shadertype, const GLchar *name); +typedef GLuint (APIENTRYP PFNGLGETSUBROUTINEINDEXPROC) (GLuint program, GLenum shadertype, const GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC) (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINENAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORMSUBROUTINESUIVPROC) (GLenum shadertype, GLsizei count, const GLuint *indices); +typedef void (APIENTRYP PFNGLGETUNIFORMSUBROUTINEUIVPROC) (GLenum shadertype, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTAGEIVPROC) (GLuint program, GLenum shadertype, GLenum pname, GLint *values); +typedef void (APIENTRYP PFNGLPATCHPARAMETERIPROC) (GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLPATCHPARAMETERFVPROC) (GLenum pname, const GLfloat *values); +typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSPROC) (GLsizei n, const GLuint *ids); +typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKPROC) (GLuint id); +typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKPROC) (GLenum mode, GLuint id); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC) (GLenum mode, GLuint id, GLuint stream); +typedef void (APIENTRYP PFNGLBEGINQUERYINDEXEDPROC) (GLenum target, GLuint index, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYINDEXEDPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLGETQUERYINDEXEDIVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMinSampleShading (GLfloat value); +GLAPI void APIENTRY glBlendEquationi (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparatei (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glBlendFunci (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparatei (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GLAPI void APIENTRY glDrawArraysIndirect (GLenum mode, const void *indirect); +GLAPI void APIENTRY glDrawElementsIndirect (GLenum mode, GLenum type, const void *indirect); +GLAPI void APIENTRY glUniform1d (GLint location, GLdouble x); +GLAPI void APIENTRY glUniform2d (GLint location, GLdouble x, GLdouble y); +GLAPI void APIENTRY glUniform3d (GLint location, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glUniform4d (GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glUniform1dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform2dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform3dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform4dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2x3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2x4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3x2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3x4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4x2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4x3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glGetUniformdv (GLuint program, GLint location, GLdouble *params); +GLAPI GLint APIENTRY glGetSubroutineUniformLocation (GLuint program, GLenum shadertype, const GLchar *name); +GLAPI GLuint APIENTRY glGetSubroutineIndex (GLuint program, GLenum shadertype, const GLchar *name); +GLAPI void APIENTRY glGetActiveSubroutineUniformiv (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values); +GLAPI void APIENTRY glGetActiveSubroutineUniformName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glGetActiveSubroutineName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glUniformSubroutinesuiv (GLenum shadertype, GLsizei count, const GLuint *indices); +GLAPI void APIENTRY glGetUniformSubroutineuiv (GLenum shadertype, GLint location, GLuint *params); +GLAPI void APIENTRY glGetProgramStageiv (GLuint program, GLenum shadertype, GLenum pname, GLint *values); +GLAPI void APIENTRY glPatchParameteri (GLenum pname, GLint value); +GLAPI void APIENTRY glPatchParameterfv (GLenum pname, const GLfloat *values); +GLAPI void APIENTRY glBindTransformFeedback (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteTransformFeedbacks (GLsizei n, const GLuint *ids); +GLAPI void APIENTRY glGenTransformFeedbacks (GLsizei n, GLuint *ids); +GLAPI GLboolean APIENTRY glIsTransformFeedback (GLuint id); +GLAPI void APIENTRY glPauseTransformFeedback (void); +GLAPI void APIENTRY glResumeTransformFeedback (void); +GLAPI void APIENTRY glDrawTransformFeedback (GLenum mode, GLuint id); +GLAPI void APIENTRY glDrawTransformFeedbackStream (GLenum mode, GLuint id, GLuint stream); +GLAPI void APIENTRY glBeginQueryIndexed (GLenum target, GLuint index, GLuint id); +GLAPI void APIENTRY glEndQueryIndexed (GLenum target, GLuint index); +GLAPI void APIENTRY glGetQueryIndexediv (GLenum target, GLuint index, GLenum pname, GLint *params); +#endif +#endif /* GL_VERSION_4_0 */ + +#ifndef GL_VERSION_4_1 +#define GL_VERSION_4_1 1 +#define GL_FIXED 0x140C +#define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B +#define GL_LOW_FLOAT 0x8DF0 +#define GL_MEDIUM_FLOAT 0x8DF1 +#define GL_HIGH_FLOAT 0x8DF2 +#define GL_LOW_INT 0x8DF3 +#define GL_MEDIUM_INT 0x8DF4 +#define GL_HIGH_INT 0x8DF5 +#define GL_SHADER_COMPILER 0x8DFA +#define GL_SHADER_BINARY_FORMATS 0x8DF8 +#define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 +#define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB +#define GL_MAX_VARYING_VECTORS 0x8DFC +#define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD +#define GL_RGB565 0x8D62 +#define GL_PROGRAM_BINARY_RETRIEVABLE_HINT 0x8257 +#define GL_PROGRAM_BINARY_LENGTH 0x8741 +#define GL_NUM_PROGRAM_BINARY_FORMATS 0x87FE +#define GL_PROGRAM_BINARY_FORMATS 0x87FF +#define GL_VERTEX_SHADER_BIT 0x00000001 +#define GL_FRAGMENT_SHADER_BIT 0x00000002 +#define GL_GEOMETRY_SHADER_BIT 0x00000004 +#define GL_TESS_CONTROL_SHADER_BIT 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT 0x00000010 +#define GL_ALL_SHADER_BITS 0xFFFFFFFF +#define GL_PROGRAM_SEPARABLE 0x8258 +#define GL_ACTIVE_PROGRAM 0x8259 +#define GL_PROGRAM_PIPELINE_BINDING 0x825A +#define GL_MAX_VIEWPORTS 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE 0x825D +#define GL_LAYER_PROVOKING_VERTEX 0x825E +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX 0x825F +#define GL_UNDEFINED_VERTEX 0x8260 +typedef void (APIENTRYP PFNGLRELEASESHADERCOMPILERPROC) (void); +typedef void (APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +typedef void (APIENTRYP PFNGLDEPTHRANGEFPROC) (GLfloat n, GLfloat f); +typedef void (APIENTRYP PFNGLCLEARDEPTHFPROC) (GLfloat d); +typedef void (APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +typedef void (APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIPROC) (GLuint program, GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLUSEPROGRAMSTAGESPROC) (GLuint pipeline, GLbitfield stages, GLuint program); +typedef void (APIENTRYP PFNGLACTIVESHADERPROGRAMPROC) (GLuint pipeline, GLuint program); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMVPROC) (GLenum type, GLsizei count, const GLchar *const*strings); +typedef void (APIENTRYP PFNGLBINDPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLDELETEPROGRAMPIPELINESPROC) (GLsizei n, const GLuint *pipelines); +typedef void (APIENTRYP PFNGLGENPROGRAMPIPELINESPROC) (GLsizei n, GLuint *pipelines); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEIVPROC) (GLuint pipeline, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IPROC) (GLuint program, GLint location, GLint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DPROC) (GLuint program, GLint location, GLdouble v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIPROC) (GLuint program, GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLVIEWPORTARRAYVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLSCISSORARRAYVPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (APIENTRYP PFNGLSCISSORINDEXEDPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLSCISSORINDEXEDVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEARRAYVPROC) (GLuint first, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEINDEXEDPROC) (GLuint index, GLdouble n, GLdouble f); +typedef void (APIENTRYP PFNGLGETFLOATI_VPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (APIENTRYP PFNGLGETDOUBLEI_VPROC) (GLenum target, GLuint index, GLdouble *data); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReleaseShaderCompiler (void); +GLAPI void APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +GLAPI void APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +GLAPI void APIENTRY glDepthRangef (GLfloat n, GLfloat f); +GLAPI void APIENTRY glClearDepthf (GLfloat d); +GLAPI void APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +GLAPI void APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); +GLAPI void APIENTRY glProgramParameteri (GLuint program, GLenum pname, GLint value); +GLAPI void APIENTRY glUseProgramStages (GLuint pipeline, GLbitfield stages, GLuint program); +GLAPI void APIENTRY glActiveShaderProgram (GLuint pipeline, GLuint program); +GLAPI GLuint APIENTRY glCreateShaderProgramv (GLenum type, GLsizei count, const GLchar *const*strings); +GLAPI void APIENTRY glBindProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glDeleteProgramPipelines (GLsizei n, const GLuint *pipelines); +GLAPI void APIENTRY glGenProgramPipelines (GLsizei n, GLuint *pipelines); +GLAPI GLboolean APIENTRY glIsProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glGetProgramPipelineiv (GLuint pipeline, GLenum pname, GLint *params); +GLAPI void APIENTRY glProgramUniform1i (GLuint program, GLint location, GLint v0); +GLAPI void APIENTRY glProgramUniform1iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform1f (GLuint program, GLint location, GLfloat v0); +GLAPI void APIENTRY glProgramUniform1fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform1d (GLuint program, GLint location, GLdouble v0); +GLAPI void APIENTRY glProgramUniform1dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform1ui (GLuint program, GLint location, GLuint v0); +GLAPI void APIENTRY glProgramUniform1uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform2i (GLuint program, GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glProgramUniform2iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform2f (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glProgramUniform2fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform2d (GLuint program, GLint location, GLdouble v0, GLdouble v1); +GLAPI void APIENTRY glProgramUniform2dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform2ui (GLuint program, GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glProgramUniform2uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform3i (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glProgramUniform3iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform3f (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glProgramUniform3fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform3d (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2); +GLAPI void APIENTRY glProgramUniform3dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform3ui (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glProgramUniform3uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform4i (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glProgramUniform4iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform4f (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glProgramUniform4fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform4d (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3); +GLAPI void APIENTRY glProgramUniform4dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform4ui (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glProgramUniform4uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniformMatrix2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glValidateProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glGetProgramPipelineInfoLog (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glVertexAttribL1d (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttribL2d (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttribL3d (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttribL4d (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttribL1dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL2dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL3dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL4dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribLPointer (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribLdv (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glViewportArrayv (GLuint first, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glViewportIndexedf (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GLAPI void APIENTRY glViewportIndexedfv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glScissorArrayv (GLuint first, GLsizei count, const GLint *v); +GLAPI void APIENTRY glScissorIndexed (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GLAPI void APIENTRY glScissorIndexedv (GLuint index, const GLint *v); +GLAPI void APIENTRY glDepthRangeArrayv (GLuint first, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glDepthRangeIndexed (GLuint index, GLdouble n, GLdouble f); +GLAPI void APIENTRY glGetFloati_v (GLenum target, GLuint index, GLfloat *data); +GLAPI void APIENTRY glGetDoublei_v (GLenum target, GLuint index, GLdouble *data); +#endif +#endif /* GL_VERSION_4_1 */ + +#ifndef GL_VERSION_4_2 +#define GL_VERSION_4_2 1 +#define GL_COPY_READ_BUFFER_BINDING 0x8F36 +#define GL_COPY_WRITE_BUFFER_BINDING 0x8F37 +#define GL_TRANSFORM_FEEDBACK_ACTIVE 0x8E24 +#define GL_TRANSFORM_FEEDBACK_PAUSED 0x8E23 +#define GL_UNPACK_COMPRESSED_BLOCK_WIDTH 0x9127 +#define GL_UNPACK_COMPRESSED_BLOCK_HEIGHT 0x9128 +#define GL_UNPACK_COMPRESSED_BLOCK_DEPTH 0x9129 +#define GL_UNPACK_COMPRESSED_BLOCK_SIZE 0x912A +#define GL_PACK_COMPRESSED_BLOCK_WIDTH 0x912B +#define GL_PACK_COMPRESSED_BLOCK_HEIGHT 0x912C +#define GL_PACK_COMPRESSED_BLOCK_DEPTH 0x912D +#define GL_PACK_COMPRESSED_BLOCK_SIZE 0x912E +#define GL_NUM_SAMPLE_COUNTS 0x9380 +#define GL_MIN_MAP_BUFFER_ALIGNMENT 0x90BC +#define GL_ATOMIC_COUNTER_BUFFER 0x92C0 +#define GL_ATOMIC_COUNTER_BUFFER_BINDING 0x92C1 +#define GL_ATOMIC_COUNTER_BUFFER_START 0x92C2 +#define GL_ATOMIC_COUNTER_BUFFER_SIZE 0x92C3 +#define GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE 0x92C4 +#define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS 0x92C5 +#define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES 0x92C6 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER 0x92C7 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER 0x92C8 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER 0x92C9 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER 0x92CA +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER 0x92CB +#define GL_MAX_VERTEX_ATOMIC_COUNTER_BUFFERS 0x92CC +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS 0x92CE +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS 0x92CF +#define GL_MAX_FRAGMENT_ATOMIC_COUNTER_BUFFERS 0x92D0 +#define GL_MAX_COMBINED_ATOMIC_COUNTER_BUFFERS 0x92D1 +#define GL_MAX_VERTEX_ATOMIC_COUNTERS 0x92D2 +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS 0x92D4 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS 0x92D5 +#define GL_MAX_FRAGMENT_ATOMIC_COUNTERS 0x92D6 +#define GL_MAX_COMBINED_ATOMIC_COUNTERS 0x92D7 +#define GL_MAX_ATOMIC_COUNTER_BUFFER_SIZE 0x92D8 +#define GL_MAX_ATOMIC_COUNTER_BUFFER_BINDINGS 0x92DC +#define GL_ACTIVE_ATOMIC_COUNTER_BUFFERS 0x92D9 +#define GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX 0x92DA +#define GL_UNSIGNED_INT_ATOMIC_COUNTER 0x92DB +#define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT 0x00000001 +#define GL_ELEMENT_ARRAY_BARRIER_BIT 0x00000002 +#define GL_UNIFORM_BARRIER_BIT 0x00000004 +#define GL_TEXTURE_FETCH_BARRIER_BIT 0x00000008 +#define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT 0x00000020 +#define GL_COMMAND_BARRIER_BIT 0x00000040 +#define GL_PIXEL_BUFFER_BARRIER_BIT 0x00000080 +#define GL_TEXTURE_UPDATE_BARRIER_BIT 0x00000100 +#define GL_BUFFER_UPDATE_BARRIER_BIT 0x00000200 +#define GL_FRAMEBUFFER_BARRIER_BIT 0x00000400 +#define GL_TRANSFORM_FEEDBACK_BARRIER_BIT 0x00000800 +#define GL_ATOMIC_COUNTER_BARRIER_BIT 0x00001000 +#define GL_ALL_BARRIER_BITS 0xFFFFFFFF +#define GL_MAX_IMAGE_UNITS 0x8F38 +#define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS 0x8F39 +#define GL_IMAGE_BINDING_NAME 0x8F3A +#define GL_IMAGE_BINDING_LEVEL 0x8F3B +#define GL_IMAGE_BINDING_LAYERED 0x8F3C +#define GL_IMAGE_BINDING_LAYER 0x8F3D +#define GL_IMAGE_BINDING_ACCESS 0x8F3E +#define GL_IMAGE_1D 0x904C +#define GL_IMAGE_2D 0x904D +#define GL_IMAGE_3D 0x904E +#define GL_IMAGE_2D_RECT 0x904F +#define GL_IMAGE_CUBE 0x9050 +#define GL_IMAGE_BUFFER 0x9051 +#define GL_IMAGE_1D_ARRAY 0x9052 +#define GL_IMAGE_2D_ARRAY 0x9053 +#define GL_IMAGE_CUBE_MAP_ARRAY 0x9054 +#define GL_IMAGE_2D_MULTISAMPLE 0x9055 +#define GL_IMAGE_2D_MULTISAMPLE_ARRAY 0x9056 +#define GL_INT_IMAGE_1D 0x9057 +#define GL_INT_IMAGE_2D 0x9058 +#define GL_INT_IMAGE_3D 0x9059 +#define GL_INT_IMAGE_2D_RECT 0x905A +#define GL_INT_IMAGE_CUBE 0x905B +#define GL_INT_IMAGE_BUFFER 0x905C +#define GL_INT_IMAGE_1D_ARRAY 0x905D +#define GL_INT_IMAGE_2D_ARRAY 0x905E +#define GL_INT_IMAGE_CUBE_MAP_ARRAY 0x905F +#define GL_INT_IMAGE_2D_MULTISAMPLE 0x9060 +#define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY 0x9061 +#define GL_UNSIGNED_INT_IMAGE_1D 0x9062 +#define GL_UNSIGNED_INT_IMAGE_2D 0x9063 +#define GL_UNSIGNED_INT_IMAGE_3D 0x9064 +#define GL_UNSIGNED_INT_IMAGE_2D_RECT 0x9065 +#define GL_UNSIGNED_INT_IMAGE_CUBE 0x9066 +#define GL_UNSIGNED_INT_IMAGE_BUFFER 0x9067 +#define GL_UNSIGNED_INT_IMAGE_1D_ARRAY 0x9068 +#define GL_UNSIGNED_INT_IMAGE_2D_ARRAY 0x9069 +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY 0x906A +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE 0x906B +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY 0x906C +#define GL_MAX_IMAGE_SAMPLES 0x906D +#define GL_IMAGE_BINDING_FORMAT 0x906E +#define GL_IMAGE_FORMAT_COMPATIBILITY_TYPE 0x90C7 +#define GL_IMAGE_FORMAT_COMPATIBILITY_BY_SIZE 0x90C8 +#define GL_IMAGE_FORMAT_COMPATIBILITY_BY_CLASS 0x90C9 +#define GL_MAX_VERTEX_IMAGE_UNIFORMS 0x90CA +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS 0x90CC +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS 0x90CD +#define GL_MAX_FRAGMENT_IMAGE_UNIFORMS 0x90CE +#define GL_MAX_COMBINED_IMAGE_UNIFORMS 0x90CF +#define GL_COMPRESSED_RGBA_BPTC_UNORM 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT 0x8E8F +#define GL_TEXTURE_IMMUTABLE_FORMAT 0x912F +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +typedef void (APIENTRYP PFNGLGETINTERNALFORMATIVPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC) (GLuint program, GLuint bufferIndex, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLBINDIMAGETEXTUREPROC) (GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format); +typedef void (APIENTRYP PFNGLMEMORYBARRIERPROC) (GLbitfield barriers); +typedef void (APIENTRYP PFNGLTEXSTORAGE1DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXSTORAGE2DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXSTORAGE3DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC) (GLenum mode, GLuint id, GLsizei instancecount); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC) (GLenum mode, GLuint id, GLuint stream, GLsizei instancecount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedBaseInstance (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +GLAPI void APIENTRY glDrawElementsInstancedBaseInstance (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +GLAPI void APIENTRY glDrawElementsInstancedBaseVertexBaseInstance (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +GLAPI void APIENTRY glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params); +GLAPI void APIENTRY glGetActiveAtomicCounterBufferiv (GLuint program, GLuint bufferIndex, GLenum pname, GLint *params); +GLAPI void APIENTRY glBindImageTexture (GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format); +GLAPI void APIENTRY glMemoryBarrier (GLbitfield barriers); +GLAPI void APIENTRY glTexStorage1D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTexStorage2D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTexStorage3D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glDrawTransformFeedbackInstanced (GLenum mode, GLuint id, GLsizei instancecount); +GLAPI void APIENTRY glDrawTransformFeedbackStreamInstanced (GLenum mode, GLuint id, GLuint stream, GLsizei instancecount); +#endif +#endif /* GL_VERSION_4_2 */ + +#ifndef GL_VERSION_4_3 +#define GL_VERSION_4_3 1 +typedef void (APIENTRY *GLDEBUGPROC)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +#define GL_NUM_SHADING_LANGUAGE_VERSIONS 0x82E9 +#define GL_VERTEX_ATTRIB_ARRAY_LONG 0x874E +#define GL_COMPRESSED_RGB8_ETC2 0x9274 +#define GL_COMPRESSED_SRGB8_ETC2 0x9275 +#define GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 0x9276 +#define GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 0x9277 +#define GL_COMPRESSED_RGBA8_ETC2_EAC 0x9278 +#define GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC 0x9279 +#define GL_COMPRESSED_R11_EAC 0x9270 +#define GL_COMPRESSED_SIGNED_R11_EAC 0x9271 +#define GL_COMPRESSED_RG11_EAC 0x9272 +#define GL_COMPRESSED_SIGNED_RG11_EAC 0x9273 +#define GL_PRIMITIVE_RESTART_FIXED_INDEX 0x8D69 +#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE 0x8D6A +#define GL_MAX_ELEMENT_INDEX 0x8D6B +#define GL_COMPUTE_SHADER 0x91B9 +#define GL_MAX_COMPUTE_UNIFORM_BLOCKS 0x91BB +#define GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS 0x91BC +#define GL_MAX_COMPUTE_IMAGE_UNIFORMS 0x91BD +#define GL_MAX_COMPUTE_SHARED_MEMORY_SIZE 0x8262 +#define GL_MAX_COMPUTE_UNIFORM_COMPONENTS 0x8263 +#define GL_MAX_COMPUTE_ATOMIC_COUNTER_BUFFERS 0x8264 +#define GL_MAX_COMPUTE_ATOMIC_COUNTERS 0x8265 +#define GL_MAX_COMBINED_COMPUTE_UNIFORM_COMPONENTS 0x8266 +#define GL_MAX_COMPUTE_WORK_GROUP_INVOCATIONS 0x90EB +#define GL_MAX_COMPUTE_WORK_GROUP_COUNT 0x91BE +#define GL_MAX_COMPUTE_WORK_GROUP_SIZE 0x91BF +#define GL_COMPUTE_WORK_GROUP_SIZE 0x8267 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER 0x90EC +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER 0x90ED +#define GL_DISPATCH_INDIRECT_BUFFER 0x90EE +#define GL_DISPATCH_INDIRECT_BUFFER_BINDING 0x90EF +#define GL_COMPUTE_SHADER_BIT 0x00000020 +#define GL_DEBUG_OUTPUT_SYNCHRONOUS 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM 0x8245 +#define GL_DEBUG_SOURCE_API 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION 0x824A +#define GL_DEBUG_SOURCE_OTHER 0x824B +#define GL_DEBUG_TYPE_ERROR 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR 0x824E +#define GL_DEBUG_TYPE_PORTABILITY 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE 0x8250 +#define GL_DEBUG_TYPE_OTHER 0x8251 +#define GL_MAX_DEBUG_MESSAGE_LENGTH 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES 0x9145 +#define GL_DEBUG_SEVERITY_HIGH 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM 0x9147 +#define GL_DEBUG_SEVERITY_LOW 0x9148 +#define GL_DEBUG_TYPE_MARKER 0x8268 +#define GL_DEBUG_TYPE_PUSH_GROUP 0x8269 +#define GL_DEBUG_TYPE_POP_GROUP 0x826A +#define GL_DEBUG_SEVERITY_NOTIFICATION 0x826B +#define GL_MAX_DEBUG_GROUP_STACK_DEPTH 0x826C +#define GL_DEBUG_GROUP_STACK_DEPTH 0x826D +#define GL_BUFFER 0x82E0 +#define GL_SHADER 0x82E1 +#define GL_PROGRAM 0x82E2 +#define GL_QUERY 0x82E3 +#define GL_PROGRAM_PIPELINE 0x82E4 +#define GL_SAMPLER 0x82E6 +#define GL_MAX_LABEL_LENGTH 0x82E8 +#define GL_DEBUG_OUTPUT 0x92E0 +#define GL_CONTEXT_FLAG_DEBUG_BIT 0x00000002 +#define GL_MAX_UNIFORM_LOCATIONS 0x826E +#define GL_FRAMEBUFFER_DEFAULT_WIDTH 0x9310 +#define GL_FRAMEBUFFER_DEFAULT_HEIGHT 0x9311 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS 0x9312 +#define GL_FRAMEBUFFER_DEFAULT_SAMPLES 0x9313 +#define GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS 0x9314 +#define GL_MAX_FRAMEBUFFER_WIDTH 0x9315 +#define GL_MAX_FRAMEBUFFER_HEIGHT 0x9316 +#define GL_MAX_FRAMEBUFFER_LAYERS 0x9317 +#define GL_MAX_FRAMEBUFFER_SAMPLES 0x9318 +#define GL_INTERNALFORMAT_SUPPORTED 0x826F +#define GL_INTERNALFORMAT_PREFERRED 0x8270 +#define GL_INTERNALFORMAT_RED_SIZE 0x8271 +#define GL_INTERNALFORMAT_GREEN_SIZE 0x8272 +#define GL_INTERNALFORMAT_BLUE_SIZE 0x8273 +#define GL_INTERNALFORMAT_ALPHA_SIZE 0x8274 +#define GL_INTERNALFORMAT_DEPTH_SIZE 0x8275 +#define GL_INTERNALFORMAT_STENCIL_SIZE 0x8276 +#define GL_INTERNALFORMAT_SHARED_SIZE 0x8277 +#define GL_INTERNALFORMAT_RED_TYPE 0x8278 +#define GL_INTERNALFORMAT_GREEN_TYPE 0x8279 +#define GL_INTERNALFORMAT_BLUE_TYPE 0x827A +#define GL_INTERNALFORMAT_ALPHA_TYPE 0x827B +#define GL_INTERNALFORMAT_DEPTH_TYPE 0x827C +#define GL_INTERNALFORMAT_STENCIL_TYPE 0x827D +#define GL_MAX_WIDTH 0x827E +#define GL_MAX_HEIGHT 0x827F +#define GL_MAX_DEPTH 0x8280 +#define GL_MAX_LAYERS 0x8281 +#define GL_MAX_COMBINED_DIMENSIONS 0x8282 +#define GL_COLOR_COMPONENTS 0x8283 +#define GL_DEPTH_COMPONENTS 0x8284 +#define GL_STENCIL_COMPONENTS 0x8285 +#define GL_COLOR_RENDERABLE 0x8286 +#define GL_DEPTH_RENDERABLE 0x8287 +#define GL_STENCIL_RENDERABLE 0x8288 +#define GL_FRAMEBUFFER_RENDERABLE 0x8289 +#define GL_FRAMEBUFFER_RENDERABLE_LAYERED 0x828A +#define GL_FRAMEBUFFER_BLEND 0x828B +#define GL_READ_PIXELS 0x828C +#define GL_READ_PIXELS_FORMAT 0x828D +#define GL_READ_PIXELS_TYPE 0x828E +#define GL_TEXTURE_IMAGE_FORMAT 0x828F +#define GL_TEXTURE_IMAGE_TYPE 0x8290 +#define GL_GET_TEXTURE_IMAGE_FORMAT 0x8291 +#define GL_GET_TEXTURE_IMAGE_TYPE 0x8292 +#define GL_MIPMAP 0x8293 +#define GL_MANUAL_GENERATE_MIPMAP 0x8294 +#define GL_AUTO_GENERATE_MIPMAP 0x8295 +#define GL_COLOR_ENCODING 0x8296 +#define GL_SRGB_READ 0x8297 +#define GL_SRGB_WRITE 0x8298 +#define GL_FILTER 0x829A +#define GL_VERTEX_TEXTURE 0x829B +#define GL_TESS_CONTROL_TEXTURE 0x829C +#define GL_TESS_EVALUATION_TEXTURE 0x829D +#define GL_GEOMETRY_TEXTURE 0x829E +#define GL_FRAGMENT_TEXTURE 0x829F +#define GL_COMPUTE_TEXTURE 0x82A0 +#define GL_TEXTURE_SHADOW 0x82A1 +#define GL_TEXTURE_GATHER 0x82A2 +#define GL_TEXTURE_GATHER_SHADOW 0x82A3 +#define GL_SHADER_IMAGE_LOAD 0x82A4 +#define GL_SHADER_IMAGE_STORE 0x82A5 +#define GL_SHADER_IMAGE_ATOMIC 0x82A6 +#define GL_IMAGE_TEXEL_SIZE 0x82A7 +#define GL_IMAGE_COMPATIBILITY_CLASS 0x82A8 +#define GL_IMAGE_PIXEL_FORMAT 0x82A9 +#define GL_IMAGE_PIXEL_TYPE 0x82AA +#define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST 0x82AC +#define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST 0x82AD +#define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE 0x82AE +#define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE 0x82AF +#define GL_TEXTURE_COMPRESSED_BLOCK_WIDTH 0x82B1 +#define GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT 0x82B2 +#define GL_TEXTURE_COMPRESSED_BLOCK_SIZE 0x82B3 +#define GL_CLEAR_BUFFER 0x82B4 +#define GL_TEXTURE_VIEW 0x82B5 +#define GL_VIEW_COMPATIBILITY_CLASS 0x82B6 +#define GL_FULL_SUPPORT 0x82B7 +#define GL_CAVEAT_SUPPORT 0x82B8 +#define GL_IMAGE_CLASS_4_X_32 0x82B9 +#define GL_IMAGE_CLASS_2_X_32 0x82BA +#define GL_IMAGE_CLASS_1_X_32 0x82BB +#define GL_IMAGE_CLASS_4_X_16 0x82BC +#define GL_IMAGE_CLASS_2_X_16 0x82BD +#define GL_IMAGE_CLASS_1_X_16 0x82BE +#define GL_IMAGE_CLASS_4_X_8 0x82BF +#define GL_IMAGE_CLASS_2_X_8 0x82C0 +#define GL_IMAGE_CLASS_1_X_8 0x82C1 +#define GL_IMAGE_CLASS_11_11_10 0x82C2 +#define GL_IMAGE_CLASS_10_10_10_2 0x82C3 +#define GL_VIEW_CLASS_128_BITS 0x82C4 +#define GL_VIEW_CLASS_96_BITS 0x82C5 +#define GL_VIEW_CLASS_64_BITS 0x82C6 +#define GL_VIEW_CLASS_48_BITS 0x82C7 +#define GL_VIEW_CLASS_32_BITS 0x82C8 +#define GL_VIEW_CLASS_24_BITS 0x82C9 +#define GL_VIEW_CLASS_16_BITS 0x82CA +#define GL_VIEW_CLASS_8_BITS 0x82CB +#define GL_VIEW_CLASS_S3TC_DXT1_RGB 0x82CC +#define GL_VIEW_CLASS_S3TC_DXT1_RGBA 0x82CD +#define GL_VIEW_CLASS_S3TC_DXT3_RGBA 0x82CE +#define GL_VIEW_CLASS_S3TC_DXT5_RGBA 0x82CF +#define GL_VIEW_CLASS_RGTC1_RED 0x82D0 +#define GL_VIEW_CLASS_RGTC2_RG 0x82D1 +#define GL_VIEW_CLASS_BPTC_UNORM 0x82D2 +#define GL_VIEW_CLASS_BPTC_FLOAT 0x82D3 +#define GL_UNIFORM 0x92E1 +#define GL_UNIFORM_BLOCK 0x92E2 +#define GL_PROGRAM_INPUT 0x92E3 +#define GL_PROGRAM_OUTPUT 0x92E4 +#define GL_BUFFER_VARIABLE 0x92E5 +#define GL_SHADER_STORAGE_BLOCK 0x92E6 +#define GL_VERTEX_SUBROUTINE 0x92E8 +#define GL_TESS_CONTROL_SUBROUTINE 0x92E9 +#define GL_TESS_EVALUATION_SUBROUTINE 0x92EA +#define GL_GEOMETRY_SUBROUTINE 0x92EB +#define GL_FRAGMENT_SUBROUTINE 0x92EC +#define GL_COMPUTE_SUBROUTINE 0x92ED +#define GL_VERTEX_SUBROUTINE_UNIFORM 0x92EE +#define GL_TESS_CONTROL_SUBROUTINE_UNIFORM 0x92EF +#define GL_TESS_EVALUATION_SUBROUTINE_UNIFORM 0x92F0 +#define GL_GEOMETRY_SUBROUTINE_UNIFORM 0x92F1 +#define GL_FRAGMENT_SUBROUTINE_UNIFORM 0x92F2 +#define GL_COMPUTE_SUBROUTINE_UNIFORM 0x92F3 +#define GL_TRANSFORM_FEEDBACK_VARYING 0x92F4 +#define GL_ACTIVE_RESOURCES 0x92F5 +#define GL_MAX_NAME_LENGTH 0x92F6 +#define GL_MAX_NUM_ACTIVE_VARIABLES 0x92F7 +#define GL_MAX_NUM_COMPATIBLE_SUBROUTINES 0x92F8 +#define GL_NAME_LENGTH 0x92F9 +#define GL_TYPE 0x92FA +#define GL_ARRAY_SIZE 0x92FB +#define GL_OFFSET 0x92FC +#define GL_BLOCK_INDEX 0x92FD +#define GL_ARRAY_STRIDE 0x92FE +#define GL_MATRIX_STRIDE 0x92FF +#define GL_IS_ROW_MAJOR 0x9300 +#define GL_ATOMIC_COUNTER_BUFFER_INDEX 0x9301 +#define GL_BUFFER_BINDING 0x9302 +#define GL_BUFFER_DATA_SIZE 0x9303 +#define GL_NUM_ACTIVE_VARIABLES 0x9304 +#define GL_ACTIVE_VARIABLES 0x9305 +#define GL_REFERENCED_BY_VERTEX_SHADER 0x9306 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER 0x9308 +#define GL_REFERENCED_BY_GEOMETRY_SHADER 0x9309 +#define GL_REFERENCED_BY_FRAGMENT_SHADER 0x930A +#define GL_REFERENCED_BY_COMPUTE_SHADER 0x930B +#define GL_TOP_LEVEL_ARRAY_SIZE 0x930C +#define GL_TOP_LEVEL_ARRAY_STRIDE 0x930D +#define GL_LOCATION 0x930E +#define GL_LOCATION_INDEX 0x930F +#define GL_IS_PER_PATCH 0x92E7 +#define GL_SHADER_STORAGE_BUFFER 0x90D2 +#define GL_SHADER_STORAGE_BUFFER_BINDING 0x90D3 +#define GL_SHADER_STORAGE_BUFFER_START 0x90D4 +#define GL_SHADER_STORAGE_BUFFER_SIZE 0x90D5 +#define GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS 0x90D6 +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS 0x90D7 +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS 0x90D9 +#define GL_MAX_FRAGMENT_SHADER_STORAGE_BLOCKS 0x90DA +#define GL_MAX_COMPUTE_SHADER_STORAGE_BLOCKS 0x90DB +#define GL_MAX_COMBINED_SHADER_STORAGE_BLOCKS 0x90DC +#define GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS 0x90DD +#define GL_MAX_SHADER_STORAGE_BLOCK_SIZE 0x90DE +#define GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT 0x90DF +#define GL_SHADER_STORAGE_BARRIER_BIT 0x00002000 +#define GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES 0x8F39 +#define GL_DEPTH_STENCIL_TEXTURE_MODE 0x90EA +#define GL_TEXTURE_BUFFER_OFFSET 0x919D +#define GL_TEXTURE_BUFFER_SIZE 0x919E +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT 0x919F +#define GL_TEXTURE_VIEW_MIN_LEVEL 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS 0x82DE +#define GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF +#define GL_VERTEX_ATTRIB_BINDING 0x82D4 +#define GL_VERTEX_ATTRIB_RELATIVE_OFFSET 0x82D5 +#define GL_VERTEX_BINDING_DIVISOR 0x82D6 +#define GL_VERTEX_BINDING_OFFSET 0x82D7 +#define GL_VERTEX_BINDING_STRIDE 0x82D8 +#define GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET 0x82D9 +#define GL_MAX_VERTEX_ATTRIB_BINDINGS 0x82DA +#define GL_VERTEX_BINDING_BUFFER 0x8F4F +#define GL_DISPLAY_LIST 0x82E7 +typedef void (APIENTRYP PFNGLCLEARBUFFERDATAPROC) (GLenum target, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARBUFFERSUBDATAPROC) (GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEPROC) (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z); +typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEINDIRECTPROC) (GLintptr indirect); +typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATAPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +typedef void (APIENTRYP PFNGLFRAMEBUFFERPARAMETERIPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETINTERNALFORMATI64VPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint64 *params); +typedef void (APIENTRYP PFNGLINVALIDATETEXSUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLINVALIDATETEXIMAGEPROC) (GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLINVALIDATEBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLINVALIDATEBUFFERDATAPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLINVALIDATEFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments); +typedef void (APIENTRYP PFNGLINVALIDATESUBFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTPROC) (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLGETPROGRAMINTERFACEIVPROC) (GLuint program, GLenum programInterface, GLenum pname, GLint *params); +typedef GLuint (APIENTRYP PFNGLGETPROGRAMRESOURCEINDEXPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCENAMEPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCEIVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLint *params); +typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef void (APIENTRYP PFNGLSHADERSTORAGEBLOCKBINDINGPROC) (GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding); +typedef void (APIENTRYP PFNGLTEXBUFFERRANGEPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLTEXSTORAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXSTORAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTUREVIEWPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +typedef void (APIENTRYP PFNGLBINDVERTEXBUFFERPROC) (GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXATTRIBBINDINGPROC) (GLuint attribindex, GLuint bindingindex); +typedef void (APIENTRYP PFNGLVERTEXBINDINGDIVISORPROC) (GLuint bindingindex, GLuint divisor); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECONTROLPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKPROC) (GLDEBUGPROC callback, const void *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +typedef void (APIENTRYP PFNGLPUSHDEBUGGROUPPROC) (GLenum source, GLuint id, GLsizei length, const GLchar *message); +typedef void (APIENTRYP PFNGLPOPDEBUGGROUPPROC) (void); +typedef void (APIENTRYP PFNGLOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +typedef void (APIENTRYP PFNGLGETOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (APIENTRYP PFNGLOBJECTPTRLABELPROC) (const void *ptr, GLsizei length, const GLchar *label); +typedef void (APIENTRYP PFNGLGETOBJECTPTRLABELPROC) (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClearBufferData (GLenum target, GLenum internalformat, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearBufferSubData (GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glDispatchCompute (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z); +GLAPI void APIENTRY glDispatchComputeIndirect (GLintptr indirect); +GLAPI void APIENTRY glCopyImageSubData (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +GLAPI void APIENTRY glFramebufferParameteri (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glGetFramebufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetInternalformati64v (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint64 *params); +GLAPI void APIENTRY glInvalidateTexSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glInvalidateTexImage (GLuint texture, GLint level); +GLAPI void APIENTRY glInvalidateBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glInvalidateBufferData (GLuint buffer); +GLAPI void APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments); +GLAPI void APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glMultiDrawArraysIndirect (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirect (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +GLAPI void APIENTRY glGetProgramInterfaceiv (GLuint program, GLenum programInterface, GLenum pname, GLint *params); +GLAPI GLuint APIENTRY glGetProgramResourceIndex (GLuint program, GLenum programInterface, const GLchar *name); +GLAPI void APIENTRY glGetProgramResourceName (GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glGetProgramResourceiv (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLint *params); +GLAPI GLint APIENTRY glGetProgramResourceLocation (GLuint program, GLenum programInterface, const GLchar *name); +GLAPI GLint APIENTRY glGetProgramResourceLocationIndex (GLuint program, GLenum programInterface, const GLchar *name); +GLAPI void APIENTRY glShaderStorageBlockBinding (GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding); +GLAPI void APIENTRY glTexBufferRange (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glTexStorage2DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTexStorage3DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureView (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +GLAPI void APIENTRY glBindVertexBuffer (GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +GLAPI void APIENTRY glVertexAttribFormat (GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +GLAPI void APIENTRY glVertexAttribIFormat (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexAttribLFormat (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexAttribBinding (GLuint attribindex, GLuint bindingindex); +GLAPI void APIENTRY glVertexBindingDivisor (GLuint bindingindex, GLuint divisor); +GLAPI void APIENTRY glDebugMessageControl (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsert (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallback (GLDEBUGPROC callback, const void *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLog (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +GLAPI void APIENTRY glPushDebugGroup (GLenum source, GLuint id, GLsizei length, const GLchar *message); +GLAPI void APIENTRY glPopDebugGroup (void); +GLAPI void APIENTRY glObjectLabel (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +GLAPI void APIENTRY glGetObjectLabel (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +GLAPI void APIENTRY glObjectPtrLabel (const void *ptr, GLsizei length, const GLchar *label); +GLAPI void APIENTRY glGetObjectPtrLabel (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +#endif /* GL_VERSION_4_3 */ + +#ifndef GL_VERSION_4_4 +#define GL_VERSION_4_4 1 +#define GL_MAX_VERTEX_ATTRIB_STRIDE 0x82E5 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED 0x8221 +#define GL_TEXTURE_BUFFER_BINDING 0x8C2A +#define GL_MAP_PERSISTENT_BIT 0x0040 +#define GL_MAP_COHERENT_BIT 0x0080 +#define GL_DYNAMIC_STORAGE_BIT 0x0100 +#define GL_CLIENT_STORAGE_BIT 0x0200 +#define GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT 0x00004000 +#define GL_BUFFER_IMMUTABLE_STORAGE 0x821F +#define GL_BUFFER_STORAGE_FLAGS 0x8220 +#define GL_CLEAR_TEXTURE 0x9365 +#define GL_LOCATION_COMPONENT 0x934A +#define GL_TRANSFORM_FEEDBACK_BUFFER_INDEX 0x934B +#define GL_TRANSFORM_FEEDBACK_BUFFER_STRIDE 0x934C +#define GL_QUERY_BUFFER 0x9192 +#define GL_QUERY_BUFFER_BARRIER_BIT 0x00008000 +#define GL_QUERY_BUFFER_BINDING 0x9193 +#define GL_QUERY_RESULT_NO_WAIT 0x9194 +#define GL_MIRROR_CLAMP_TO_EDGE 0x8743 +typedef void (APIENTRYP PFNGLBUFFERSTORAGEPROC) (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (APIENTRYP PFNGLCLEARTEXIMAGEPROC) (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARTEXSUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLBINDBUFFERSBASEPROC) (GLenum target, GLuint first, GLsizei count, const GLuint *buffers); +typedef void (APIENTRYP PFNGLBINDBUFFERSRANGEPROC) (GLenum target, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizeiptr *sizes); +typedef void (APIENTRYP PFNGLBINDTEXTURESPROC) (GLuint first, GLsizei count, const GLuint *textures); +typedef void (APIENTRYP PFNGLBINDSAMPLERSPROC) (GLuint first, GLsizei count, const GLuint *samplers); +typedef void (APIENTRYP PFNGLBINDIMAGETEXTURESPROC) (GLuint first, GLsizei count, const GLuint *textures); +typedef void (APIENTRYP PFNGLBINDVERTEXBUFFERSPROC) (GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferStorage (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +GLAPI void APIENTRY glClearTexImage (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearTexSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glBindBuffersBase (GLenum target, GLuint first, GLsizei count, const GLuint *buffers); +GLAPI void APIENTRY glBindBuffersRange (GLenum target, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizeiptr *sizes); +GLAPI void APIENTRY glBindTextures (GLuint first, GLsizei count, const GLuint *textures); +GLAPI void APIENTRY glBindSamplers (GLuint first, GLsizei count, const GLuint *samplers); +GLAPI void APIENTRY glBindImageTextures (GLuint first, GLsizei count, const GLuint *textures); +GLAPI void APIENTRY glBindVertexBuffers (GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +#endif +#endif /* GL_VERSION_4_4 */ + +#ifndef GL_VERSION_4_5 +#define GL_VERSION_4_5 1 +#define GL_CONTEXT_LOST 0x0507 +#define GL_NEGATIVE_ONE_TO_ONE 0x935E +#define GL_ZERO_TO_ONE 0x935F +#define GL_CLIP_ORIGIN 0x935C +#define GL_CLIP_DEPTH_MODE 0x935D +#define GL_QUERY_WAIT_INVERTED 0x8E17 +#define GL_QUERY_NO_WAIT_INVERTED 0x8E18 +#define GL_QUERY_BY_REGION_WAIT_INVERTED 0x8E19 +#define GL_QUERY_BY_REGION_NO_WAIT_INVERTED 0x8E1A +#define GL_MAX_CULL_DISTANCES 0x82F9 +#define GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES 0x82FA +#define GL_TEXTURE_TARGET 0x1006 +#define GL_QUERY_TARGET 0x82EA +#define GL_GUILTY_CONTEXT_RESET 0x8253 +#define GL_INNOCENT_CONTEXT_RESET 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY 0x8256 +#define GL_LOSE_CONTEXT_ON_RESET 0x8252 +#define GL_NO_RESET_NOTIFICATION 0x8261 +#define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT 0x00000004 +#define GL_COLOR_TABLE 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2 +#define GL_PROXY_COLOR_TABLE 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5 +#define GL_CONVOLUTION_1D 0x8010 +#define GL_CONVOLUTION_2D 0x8011 +#define GL_SEPARABLE_2D 0x8012 +#define GL_HISTOGRAM 0x8024 +#define GL_PROXY_HISTOGRAM 0x8025 +#define GL_MINMAX 0x802E +#define GL_CONTEXT_RELEASE_BEHAVIOR 0x82FB +#define GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH 0x82FC +typedef void (APIENTRYP PFNGLCLIPCONTROLPROC) (GLenum origin, GLenum depth); +typedef void (APIENTRYP PFNGLCREATETRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKBUFFERBASEPROC) (GLuint xfb, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKBUFFERRANGEPROC) (GLuint xfb, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKIVPROC) (GLuint xfb, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint *param); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI64_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint64 *param); +typedef void (APIENTRYP PFNGLCREATEBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (APIENTRYP PFNGLNAMEDBUFFERDATAPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLCOPYNAMEDBUFFERSUBDATAPROC) (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERDATAPROC) (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERPROC) (GLuint buffer, GLenum access); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERRANGEPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef GLboolean (APIENTRYP PFNGLUNMAPNAMEDBUFFERPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERIVPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERI64VPROC) (GLuint buffer, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPOINTERVPROC) (GLuint buffer, GLenum pname, void **params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +typedef void (APIENTRYP PFNGLCREATEFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERRENDERBUFFERPROC) (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERPARAMETERIPROC) (GLuint framebuffer, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURELAYERPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERDRAWBUFFERPROC) (GLuint framebuffer, GLenum buf); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERDRAWBUFFERSPROC) (GLuint framebuffer, GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERREADBUFFERPROC) (GLuint framebuffer, GLenum src); +typedef void (APIENTRYP PFNGLINVALIDATENAMEDFRAMEBUFFERDATAPROC) (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments); +typedef void (APIENTRYP PFNGLINVALIDATENAMEDFRAMEBUFFERSUBDATAPROC) (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERIVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLint *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERUIVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERFVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLfloat *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERFIPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +typedef void (APIENTRYP PFNGLBLITNAMEDFRAMEBUFFERPROC) (GLuint readFramebuffer, GLuint drawFramebuffer, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef GLenum (APIENTRYP PFNGLCHECKNAMEDFRAMEBUFFERSTATUSPROC) (GLuint framebuffer, GLenum target); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVPROC) (GLuint framebuffer, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATERENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEPROC) (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETNAMEDRENDERBUFFERPARAMETERIVPROC) (GLuint renderbuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATETEXTURESPROC) (GLenum target, GLsizei n, GLuint *textures); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERPROC) (GLuint texture, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERRANGEPROC) (GLuint texture, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE1DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DMULTISAMPLEPROC) (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DMULTISAMPLEPROC) (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFPROC) (GLuint texture, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFVPROC) (GLuint texture, GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIPROC) (GLuint texture, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIIVPROC) (GLuint texture, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIUIVPROC) (GLuint texture, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIVPROC) (GLuint texture, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLGENERATETEXTUREMIPMAPPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLBINDTEXTUREUNITPROC) (GLuint unit, GLuint texture); +typedef void (APIENTRYP PFNGLGETTEXTUREIMAGEPROC) (GLuint texture, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTUREIMAGEPROC) (GLuint texture, GLint level, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERFVPROC) (GLuint texture, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERIVPROC) (GLuint texture, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERFVPROC) (GLuint texture, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIIVPROC) (GLuint texture, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIUIVPROC) (GLuint texture, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIVPROC) (GLuint texture, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATEVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays); +typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYATTRIBPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYATTRIBPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLVERTEXARRAYELEMENTBUFFERPROC) (GLuint vaobj, GLuint buffer); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBUFFERPROC) (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBUFFERSPROC) (GLuint vaobj, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBBINDINGPROC) (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBIFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBLFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYBINDINGDIVISORPROC) (GLuint vaobj, GLuint bindingindex, GLuint divisor); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYIVPROC) (GLuint vaobj, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINDEXEDIVPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINDEXED64IVPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint64 *param); +typedef void (APIENTRYP PFNGLCREATESAMPLERSPROC) (GLsizei n, GLuint *samplers); +typedef void (APIENTRYP PFNGLCREATEPROGRAMPIPELINESPROC) (GLsizei n, GLuint *pipelines); +typedef void (APIENTRYP PFNGLCREATEQUERIESPROC) (GLenum target, GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTI64VPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTIVPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTUI64VPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTUIVPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLMEMORYBARRIERBYREGIONPROC) (GLbitfield barriers); +typedef void (APIENTRYP PFNGLGETTEXTURESUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTURESUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei bufSize, void *pixels); +typedef GLenum (APIENTRYP PFNGLGETGRAPHICSRESETSTATUSPROC) (void); +typedef void (APIENTRYP PFNGLGETNCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint lod, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETNTEXIMAGEPROC) (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETNUNIFORMDVPROC) (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMFVPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMIVPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUIVPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +typedef void (APIENTRYP PFNGLREADNPIXELSPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (APIENTRYP PFNGLGETNMAPDVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +typedef void (APIENTRYP PFNGLGETNMAPFVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLGETNMAPIVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +typedef void (APIENTRYP PFNGLGETNPIXELMAPFVPROC) (GLenum map, GLsizei bufSize, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVPROC) (GLenum map, GLsizei bufSize, GLuint *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUSVPROC) (GLenum map, GLsizei bufSize, GLushort *values); +typedef void (APIENTRYP PFNGLGETNPOLYGONSTIPPLEPROC) (GLsizei bufSize, GLubyte *pattern); +typedef void (APIENTRYP PFNGLGETNCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +typedef void (APIENTRYP PFNGLGETNCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +typedef void (APIENTRYP PFNGLGETNSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +typedef void (APIENTRYP PFNGLGETNHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLGETNMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLTEXTUREBARRIERPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClipControl (GLenum origin, GLenum depth); +GLAPI void APIENTRY glCreateTransformFeedbacks (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glTransformFeedbackBufferBase (GLuint xfb, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackBufferRange (GLuint xfb, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glGetTransformFeedbackiv (GLuint xfb, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetTransformFeedbacki_v (GLuint xfb, GLenum pname, GLuint index, GLint *param); +GLAPI void APIENTRY glGetTransformFeedbacki64_v (GLuint xfb, GLenum pname, GLuint index, GLint64 *param); +GLAPI void APIENTRY glCreateBuffers (GLsizei n, GLuint *buffers); +GLAPI void APIENTRY glNamedBufferStorage (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +GLAPI void APIENTRY glNamedBufferData (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +GLAPI void APIENTRY glNamedBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glCopyNamedBufferSubData (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glClearNamedBufferData (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearNamedBufferSubData (GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +GLAPI void *APIENTRY glMapNamedBuffer (GLuint buffer, GLenum access); +GLAPI void *APIENTRY glMapNamedBufferRange (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI GLboolean APIENTRY glUnmapNamedBuffer (GLuint buffer); +GLAPI void APIENTRY glFlushMappedNamedBufferRange (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glGetNamedBufferParameteriv (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedBufferParameteri64v (GLuint buffer, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetNamedBufferPointerv (GLuint buffer, GLenum pname, void **params); +GLAPI void APIENTRY glGetNamedBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +GLAPI void APIENTRY glCreateFramebuffers (GLsizei n, GLuint *framebuffers); +GLAPI void APIENTRY glNamedFramebufferRenderbuffer (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glNamedFramebufferParameteri (GLuint framebuffer, GLenum pname, GLint param); +GLAPI void APIENTRY glNamedFramebufferTexture (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTextureLayer (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glNamedFramebufferDrawBuffer (GLuint framebuffer, GLenum buf); +GLAPI void APIENTRY glNamedFramebufferDrawBuffers (GLuint framebuffer, GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glNamedFramebufferReadBuffer (GLuint framebuffer, GLenum src); +GLAPI void APIENTRY glInvalidateNamedFramebufferData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments); +GLAPI void APIENTRY glInvalidateNamedFramebufferSubData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glClearNamedFramebufferiv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLint *value); +GLAPI void APIENTRY glClearNamedFramebufferuiv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value); +GLAPI void APIENTRY glClearNamedFramebufferfv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLfloat *value); +GLAPI void APIENTRY glClearNamedFramebufferfi (GLuint framebuffer, GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +GLAPI void APIENTRY glBlitNamedFramebuffer (GLuint readFramebuffer, GLuint drawFramebuffer, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI GLenum APIENTRY glCheckNamedFramebufferStatus (GLuint framebuffer, GLenum target); +GLAPI void APIENTRY glGetNamedFramebufferParameteriv (GLuint framebuffer, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetNamedFramebufferAttachmentParameteriv (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateRenderbuffers (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glNamedRenderbufferStorage (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisample (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetNamedRenderbufferParameteriv (GLuint renderbuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateTextures (GLenum target, GLsizei n, GLuint *textures); +GLAPI void APIENTRY glTextureBuffer (GLuint texture, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glTextureBufferRange (GLuint texture, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glTextureStorage1D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTextureStorage2D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureStorage3D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glTextureStorage2DMultisample (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureStorage3DMultisample (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCompressedTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCopyTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glCopyTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureParameterf (GLuint texture, GLenum pname, GLfloat param); +GLAPI void APIENTRY glTextureParameterfv (GLuint texture, GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glTextureParameteri (GLuint texture, GLenum pname, GLint param); +GLAPI void APIENTRY glTextureParameterIiv (GLuint texture, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureParameterIuiv (GLuint texture, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glTextureParameteriv (GLuint texture, GLenum pname, const GLint *param); +GLAPI void APIENTRY glGenerateTextureMipmap (GLuint texture); +GLAPI void APIENTRY glBindTextureUnit (GLuint unit, GLuint texture); +GLAPI void APIENTRY glGetTextureImage (GLuint texture, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetCompressedTextureImage (GLuint texture, GLint level, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetTextureLevelParameterfv (GLuint texture, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureLevelParameteriv (GLuint texture, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterfv (GLuint texture, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureParameterIiv (GLuint texture, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterIuiv (GLuint texture, GLenum pname, GLuint *params); +GLAPI void APIENTRY glGetTextureParameteriv (GLuint texture, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateVertexArrays (GLsizei n, GLuint *arrays); +GLAPI void APIENTRY glDisableVertexArrayAttrib (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glEnableVertexArrayAttrib (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glVertexArrayElementBuffer (GLuint vaobj, GLuint buffer); +GLAPI void APIENTRY glVertexArrayVertexBuffer (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +GLAPI void APIENTRY glVertexArrayVertexBuffers (GLuint vaobj, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +GLAPI void APIENTRY glVertexArrayAttribBinding (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +GLAPI void APIENTRY glVertexArrayAttribFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayAttribIFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayAttribLFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayBindingDivisor (GLuint vaobj, GLuint bindingindex, GLuint divisor); +GLAPI void APIENTRY glGetVertexArrayiv (GLuint vaobj, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayIndexediv (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayIndexed64iv (GLuint vaobj, GLuint index, GLenum pname, GLint64 *param); +GLAPI void APIENTRY glCreateSamplers (GLsizei n, GLuint *samplers); +GLAPI void APIENTRY glCreateProgramPipelines (GLsizei n, GLuint *pipelines); +GLAPI void APIENTRY glCreateQueries (GLenum target, GLsizei n, GLuint *ids); +GLAPI void APIENTRY glGetQueryBufferObjecti64v (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectiv (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectui64v (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectuiv (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glMemoryBarrierByRegion (GLbitfield barriers); +GLAPI void APIENTRY glGetTextureSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetCompressedTextureSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei bufSize, void *pixels); +GLAPI GLenum APIENTRY glGetGraphicsResetStatus (void); +GLAPI void APIENTRY glGetnCompressedTexImage (GLenum target, GLint lod, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetnTexImage (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetnUniformdv (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +GLAPI void APIENTRY glGetnUniformfv (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GLAPI void APIENTRY glGetnUniformiv (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GLAPI void APIENTRY glGetnUniformuiv (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +GLAPI void APIENTRY glReadnPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GLAPI void APIENTRY glGetnMapdv (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +GLAPI void APIENTRY glGetnMapfv (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glGetnMapiv (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +GLAPI void APIENTRY glGetnPixelMapfv (GLenum map, GLsizei bufSize, GLfloat *values); +GLAPI void APIENTRY glGetnPixelMapuiv (GLenum map, GLsizei bufSize, GLuint *values); +GLAPI void APIENTRY glGetnPixelMapusv (GLenum map, GLsizei bufSize, GLushort *values); +GLAPI void APIENTRY glGetnPolygonStipple (GLsizei bufSize, GLubyte *pattern); +GLAPI void APIENTRY glGetnColorTable (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +GLAPI void APIENTRY glGetnConvolutionFilter (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +GLAPI void APIENTRY glGetnSeparableFilter (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +GLAPI void APIENTRY glGetnHistogram (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glGetnMinmax (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glTextureBarrier (void); +#endif +#endif /* GL_VERSION_4_5 */ + +#ifndef GL_VERSION_4_6 +#define GL_VERSION_4_6 1 +#define GL_SHADER_BINARY_FORMAT_SPIR_V 0x9551 +#define GL_SPIR_V_BINARY 0x9552 +#define GL_PARAMETER_BUFFER 0x80EE +#define GL_PARAMETER_BUFFER_BINDING 0x80EF +#define GL_CONTEXT_FLAG_NO_ERROR_BIT 0x00000008 +#define GL_VERTICES_SUBMITTED 0x82EE +#define GL_PRIMITIVES_SUBMITTED 0x82EF +#define GL_VERTEX_SHADER_INVOCATIONS 0x82F0 +#define GL_TESS_CONTROL_SHADER_PATCHES 0x82F1 +#define GL_TESS_EVALUATION_SHADER_INVOCATIONS 0x82F2 +#define GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED 0x82F3 +#define GL_FRAGMENT_SHADER_INVOCATIONS 0x82F4 +#define GL_COMPUTE_SHADER_INVOCATIONS 0x82F5 +#define GL_CLIPPING_INPUT_PRIMITIVES 0x82F6 +#define GL_CLIPPING_OUTPUT_PRIMITIVES 0x82F7 +#define GL_POLYGON_OFFSET_CLAMP 0x8E1B +#define GL_SPIR_V_EXTENSIONS 0x9553 +#define GL_NUM_SPIR_V_EXTENSIONS 0x9554 +#define GL_TEXTURE_MAX_ANISOTROPY 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY 0x84FF +#define GL_TRANSFORM_FEEDBACK_OVERFLOW 0x82EC +#define GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW 0x82ED +typedef void (APIENTRYP PFNGLSPECIALIZESHADERPROC) (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTCOUNTPROC) (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTPROC) (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLPOLYGONOFFSETCLAMPPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpecializeShader (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +GLAPI void APIENTRY glMultiDrawArraysIndirectCount (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectCount (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glPolygonOffsetClamp (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_VERSION_4_6 */ + +#ifndef GL_ARB_ES2_compatibility +#define GL_ARB_ES2_compatibility 1 +#endif /* GL_ARB_ES2_compatibility */ + +#ifndef GL_ARB_ES3_1_compatibility +#define GL_ARB_ES3_1_compatibility 1 +#endif /* GL_ARB_ES3_1_compatibility */ + +#ifndef GL_ARB_ES3_2_compatibility +#define GL_ARB_ES3_2_compatibility 1 +#define GL_PRIMITIVE_BOUNDING_BOX_ARB 0x92BE +#define GL_MULTISAMPLE_LINE_WIDTH_RANGE_ARB 0x9381 +#define GL_MULTISAMPLE_LINE_WIDTH_GRANULARITY_ARB 0x9382 +typedef void (APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXARBPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPrimitiveBoundingBoxARB (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_ARB_ES3_2_compatibility */ + +#ifndef GL_ARB_ES3_compatibility +#define GL_ARB_ES3_compatibility 1 +#endif /* GL_ARB_ES3_compatibility */ + +#ifndef GL_ARB_arrays_of_arrays +#define GL_ARB_arrays_of_arrays 1 +#endif /* GL_ARB_arrays_of_arrays */ + +#ifndef GL_ARB_base_instance +#define GL_ARB_base_instance 1 +#endif /* GL_ARB_base_instance */ + +#ifndef GL_ARB_bindless_texture +#define GL_ARB_bindless_texture 1 +typedef khronos_uint64_t GLuint64EXT; +#define GL_UNSIGNED_INT64_ARB 0x140F +typedef GLuint64 (APIENTRYP PFNGLGETTEXTUREHANDLEARBPROC) (GLuint texture); +typedef GLuint64 (APIENTRYP PFNGLGETTEXTURESAMPLERHANDLEARBPROC) (GLuint texture, GLuint sampler); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLENONRESIDENTARBPROC) (GLuint64 handle); +typedef GLuint64 (APIENTRYP PFNGLGETIMAGEHANDLEARBPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLERESIDENTARBPROC) (GLuint64 handle, GLenum access); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLENONRESIDENTARBPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64ARBPROC) (GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64ARBPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +typedef GLboolean (APIENTRYP PFNGLISTEXTUREHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef GLboolean (APIENTRYP PFNGLISIMAGEHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64ARBPROC) (GLuint index, GLuint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64VARBPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLUI64VARBPROC) (GLuint index, GLenum pname, GLuint64EXT *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint64 APIENTRY glGetTextureHandleARB (GLuint texture); +GLAPI GLuint64 APIENTRY glGetTextureSamplerHandleARB (GLuint texture, GLuint sampler); +GLAPI void APIENTRY glMakeTextureHandleResidentARB (GLuint64 handle); +GLAPI void APIENTRY glMakeTextureHandleNonResidentARB (GLuint64 handle); +GLAPI GLuint64 APIENTRY glGetImageHandleARB (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +GLAPI void APIENTRY glMakeImageHandleResidentARB (GLuint64 handle, GLenum access); +GLAPI void APIENTRY glMakeImageHandleNonResidentARB (GLuint64 handle); +GLAPI void APIENTRY glUniformHandleui64ARB (GLint location, GLuint64 value); +GLAPI void APIENTRY glUniformHandleui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniformHandleui64ARB (GLuint program, GLint location, GLuint64 value); +GLAPI void APIENTRY glProgramUniformHandleui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +GLAPI GLboolean APIENTRY glIsTextureHandleResidentARB (GLuint64 handle); +GLAPI GLboolean APIENTRY glIsImageHandleResidentARB (GLuint64 handle); +GLAPI void APIENTRY glVertexAttribL1ui64ARB (GLuint index, GLuint64EXT x); +GLAPI void APIENTRY glVertexAttribL1ui64vARB (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glGetVertexAttribLui64vARB (GLuint index, GLenum pname, GLuint64EXT *params); +#endif +#endif /* GL_ARB_bindless_texture */ + +#ifndef GL_ARB_blend_func_extended +#define GL_ARB_blend_func_extended 1 +#endif /* GL_ARB_blend_func_extended */ + +#ifndef GL_ARB_buffer_storage +#define GL_ARB_buffer_storage 1 +#endif /* GL_ARB_buffer_storage */ + +#ifndef GL_ARB_cl_event +#define GL_ARB_cl_event 1 +struct _cl_context; +struct _cl_event; +#define GL_SYNC_CL_EVENT_ARB 0x8240 +#define GL_SYNC_CL_EVENT_COMPLETE_ARB 0x8241 +typedef GLsync (APIENTRYP PFNGLCREATESYNCFROMCLEVENTARBPROC) (struct _cl_context *context, struct _cl_event *event, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLsync APIENTRY glCreateSyncFromCLeventARB (struct _cl_context *context, struct _cl_event *event, GLbitfield flags); +#endif +#endif /* GL_ARB_cl_event */ + +#ifndef GL_ARB_clear_buffer_object +#define GL_ARB_clear_buffer_object 1 +#endif /* GL_ARB_clear_buffer_object */ + +#ifndef GL_ARB_clear_texture +#define GL_ARB_clear_texture 1 +#endif /* GL_ARB_clear_texture */ + +#ifndef GL_ARB_clip_control +#define GL_ARB_clip_control 1 +#endif /* GL_ARB_clip_control */ + +#ifndef GL_ARB_color_buffer_float +#define GL_ARB_color_buffer_float 1 +#define GL_RGBA_FLOAT_MODE_ARB 0x8820 +#define GL_CLAMP_VERTEX_COLOR_ARB 0x891A +#define GL_CLAMP_FRAGMENT_COLOR_ARB 0x891B +#define GL_CLAMP_READ_COLOR_ARB 0x891C +#define GL_FIXED_ONLY_ARB 0x891D +typedef void (APIENTRYP PFNGLCLAMPCOLORARBPROC) (GLenum target, GLenum clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClampColorARB (GLenum target, GLenum clamp); +#endif +#endif /* GL_ARB_color_buffer_float */ + +#ifndef GL_ARB_compatibility +#define GL_ARB_compatibility 1 +#endif /* GL_ARB_compatibility */ + +#ifndef GL_ARB_compressed_texture_pixel_storage +#define GL_ARB_compressed_texture_pixel_storage 1 +#endif /* GL_ARB_compressed_texture_pixel_storage */ + +#ifndef GL_ARB_compute_shader +#define GL_ARB_compute_shader 1 +#endif /* GL_ARB_compute_shader */ + +#ifndef GL_ARB_compute_variable_group_size +#define GL_ARB_compute_variable_group_size 1 +#define GL_MAX_COMPUTE_VARIABLE_GROUP_INVOCATIONS_ARB 0x9344 +#define GL_MAX_COMPUTE_FIXED_GROUP_INVOCATIONS_ARB 0x90EB +#define GL_MAX_COMPUTE_VARIABLE_GROUP_SIZE_ARB 0x9345 +#define GL_MAX_COMPUTE_FIXED_GROUP_SIZE_ARB 0x91BF +typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEGROUPSIZEARBPROC) (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z, GLuint group_size_x, GLuint group_size_y, GLuint group_size_z); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDispatchComputeGroupSizeARB (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z, GLuint group_size_x, GLuint group_size_y, GLuint group_size_z); +#endif +#endif /* GL_ARB_compute_variable_group_size */ + +#ifndef GL_ARB_conditional_render_inverted +#define GL_ARB_conditional_render_inverted 1 +#endif /* GL_ARB_conditional_render_inverted */ + +#ifndef GL_ARB_conservative_depth +#define GL_ARB_conservative_depth 1 +#endif /* GL_ARB_conservative_depth */ + +#ifndef GL_ARB_copy_buffer +#define GL_ARB_copy_buffer 1 +#endif /* GL_ARB_copy_buffer */ + +#ifndef GL_ARB_copy_image +#define GL_ARB_copy_image 1 +#endif /* GL_ARB_copy_image */ + +#ifndef GL_ARB_cull_distance +#define GL_ARB_cull_distance 1 +#endif /* GL_ARB_cull_distance */ + +#ifndef GL_ARB_debug_output +#define GL_ARB_debug_output 1 +typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +#define GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_ARB 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION_ARB 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM_ARB 0x8245 +#define GL_DEBUG_SOURCE_API_ARB 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_ARB 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER_ARB 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY_ARB 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION_ARB 0x824A +#define GL_DEBUG_SOURCE_OTHER_ARB 0x824B +#define GL_DEBUG_TYPE_ERROR_ARB 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB 0x824E +#define GL_DEBUG_TYPE_PORTABILITY_ARB 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE_ARB 0x8250 +#define GL_DEBUG_TYPE_OTHER_ARB 0x8251 +#define GL_MAX_DEBUG_MESSAGE_LENGTH_ARB 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_ARB 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_ARB 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_ARB 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_ARB 0x9147 +#define GL_DEBUG_SEVERITY_LOW_ARB 0x9148 +typedef void (APIENTRYP PFNGLDEBUGMESSAGECONTROLARBPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTARBPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKARBPROC) (GLDEBUGPROCARB callback, const void *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGARBPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDebugMessageControlARB (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsertARB (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallbackARB (GLDEBUGPROCARB callback, const void *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLogARB (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +#endif +#endif /* GL_ARB_debug_output */ + +#ifndef GL_ARB_depth_buffer_float +#define GL_ARB_depth_buffer_float 1 +#endif /* GL_ARB_depth_buffer_float */ + +#ifndef GL_ARB_depth_clamp +#define GL_ARB_depth_clamp 1 +#endif /* GL_ARB_depth_clamp */ + +#ifndef GL_ARB_depth_texture +#define GL_ARB_depth_texture 1 +#define GL_DEPTH_COMPONENT16_ARB 0x81A5 +#define GL_DEPTH_COMPONENT24_ARB 0x81A6 +#define GL_DEPTH_COMPONENT32_ARB 0x81A7 +#define GL_TEXTURE_DEPTH_SIZE_ARB 0x884A +#define GL_DEPTH_TEXTURE_MODE_ARB 0x884B +#endif /* GL_ARB_depth_texture */ + +#ifndef GL_ARB_derivative_control +#define GL_ARB_derivative_control 1 +#endif /* GL_ARB_derivative_control */ + +#ifndef GL_ARB_direct_state_access +#define GL_ARB_direct_state_access 1 +#endif /* GL_ARB_direct_state_access */ + +#ifndef GL_ARB_draw_buffers +#define GL_ARB_draw_buffers 1 +#define GL_MAX_DRAW_BUFFERS_ARB 0x8824 +#define GL_DRAW_BUFFER0_ARB 0x8825 +#define GL_DRAW_BUFFER1_ARB 0x8826 +#define GL_DRAW_BUFFER2_ARB 0x8827 +#define GL_DRAW_BUFFER3_ARB 0x8828 +#define GL_DRAW_BUFFER4_ARB 0x8829 +#define GL_DRAW_BUFFER5_ARB 0x882A +#define GL_DRAW_BUFFER6_ARB 0x882B +#define GL_DRAW_BUFFER7_ARB 0x882C +#define GL_DRAW_BUFFER8_ARB 0x882D +#define GL_DRAW_BUFFER9_ARB 0x882E +#define GL_DRAW_BUFFER10_ARB 0x882F +#define GL_DRAW_BUFFER11_ARB 0x8830 +#define GL_DRAW_BUFFER12_ARB 0x8831 +#define GL_DRAW_BUFFER13_ARB 0x8832 +#define GL_DRAW_BUFFER14_ARB 0x8833 +#define GL_DRAW_BUFFER15_ARB 0x8834 +typedef void (APIENTRYP PFNGLDRAWBUFFERSARBPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawBuffersARB (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_ARB_draw_buffers */ + +#ifndef GL_ARB_draw_buffers_blend +#define GL_ARB_draw_buffers_blend 1 +typedef void (APIENTRYP PFNGLBLENDEQUATIONIARBPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIARBPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLBLENDFUNCIARBPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIARBPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationiARB (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparateiARB (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glBlendFunciARB (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparateiARB (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +#endif +#endif /* GL_ARB_draw_buffers_blend */ + +#ifndef GL_ARB_draw_elements_base_vertex +#define GL_ARB_draw_elements_base_vertex 1 +#endif /* GL_ARB_draw_elements_base_vertex */ + +#ifndef GL_ARB_draw_indirect +#define GL_ARB_draw_indirect 1 +#endif /* GL_ARB_draw_indirect */ + +#ifndef GL_ARB_draw_instanced +#define GL_ARB_draw_instanced 1 +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDARBPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDARBPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedARB (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GLAPI void APIENTRY glDrawElementsInstancedARB (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_ARB_draw_instanced */ + +#ifndef GL_ARB_enhanced_layouts +#define GL_ARB_enhanced_layouts 1 +#endif /* GL_ARB_enhanced_layouts */ + +#ifndef GL_ARB_explicit_attrib_location +#define GL_ARB_explicit_attrib_location 1 +#endif /* GL_ARB_explicit_attrib_location */ + +#ifndef GL_ARB_explicit_uniform_location +#define GL_ARB_explicit_uniform_location 1 +#endif /* GL_ARB_explicit_uniform_location */ + +#ifndef GL_ARB_fragment_coord_conventions +#define GL_ARB_fragment_coord_conventions 1 +#endif /* GL_ARB_fragment_coord_conventions */ + +#ifndef GL_ARB_fragment_layer_viewport +#define GL_ARB_fragment_layer_viewport 1 +#endif /* GL_ARB_fragment_layer_viewport */ + +#ifndef GL_ARB_fragment_program +#define GL_ARB_fragment_program 1 +#define GL_FRAGMENT_PROGRAM_ARB 0x8804 +#define GL_PROGRAM_FORMAT_ASCII_ARB 0x8875 +#define GL_PROGRAM_LENGTH_ARB 0x8627 +#define GL_PROGRAM_FORMAT_ARB 0x8876 +#define GL_PROGRAM_BINDING_ARB 0x8677 +#define GL_PROGRAM_INSTRUCTIONS_ARB 0x88A0 +#define GL_MAX_PROGRAM_INSTRUCTIONS_ARB 0x88A1 +#define GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A2 +#define GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A3 +#define GL_PROGRAM_TEMPORARIES_ARB 0x88A4 +#define GL_MAX_PROGRAM_TEMPORARIES_ARB 0x88A5 +#define GL_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A6 +#define GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A7 +#define GL_PROGRAM_PARAMETERS_ARB 0x88A8 +#define GL_MAX_PROGRAM_PARAMETERS_ARB 0x88A9 +#define GL_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AA +#define GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AB +#define GL_PROGRAM_ATTRIBS_ARB 0x88AC +#define GL_MAX_PROGRAM_ATTRIBS_ARB 0x88AD +#define GL_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AE +#define GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AF +#define GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB 0x88B4 +#define GL_MAX_PROGRAM_ENV_PARAMETERS_ARB 0x88B5 +#define GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB 0x88B6 +#define GL_PROGRAM_ALU_INSTRUCTIONS_ARB 0x8805 +#define GL_PROGRAM_TEX_INSTRUCTIONS_ARB 0x8806 +#define GL_PROGRAM_TEX_INDIRECTIONS_ARB 0x8807 +#define GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x8808 +#define GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x8809 +#define GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x880A +#define GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB 0x880B +#define GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB 0x880C +#define GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB 0x880D +#define GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x880E +#define GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x880F +#define GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x8810 +#define GL_PROGRAM_STRING_ARB 0x8628 +#define GL_PROGRAM_ERROR_POSITION_ARB 0x864B +#define GL_CURRENT_MATRIX_ARB 0x8641 +#define GL_TRANSPOSE_CURRENT_MATRIX_ARB 0x88B7 +#define GL_CURRENT_MATRIX_STACK_DEPTH_ARB 0x8640 +#define GL_MAX_PROGRAM_MATRICES_ARB 0x862F +#define GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB 0x862E +#define GL_MAX_TEXTURE_COORDS_ARB 0x8871 +#define GL_MAX_TEXTURE_IMAGE_UNITS_ARB 0x8872 +#define GL_PROGRAM_ERROR_STRING_ARB 0x8874 +#define GL_MATRIX0_ARB 0x88C0 +#define GL_MATRIX1_ARB 0x88C1 +#define GL_MATRIX2_ARB 0x88C2 +#define GL_MATRIX3_ARB 0x88C3 +#define GL_MATRIX4_ARB 0x88C4 +#define GL_MATRIX5_ARB 0x88C5 +#define GL_MATRIX6_ARB 0x88C6 +#define GL_MATRIX7_ARB 0x88C7 +#define GL_MATRIX8_ARB 0x88C8 +#define GL_MATRIX9_ARB 0x88C9 +#define GL_MATRIX10_ARB 0x88CA +#define GL_MATRIX11_ARB 0x88CB +#define GL_MATRIX12_ARB 0x88CC +#define GL_MATRIX13_ARB 0x88CD +#define GL_MATRIX14_ARB 0x88CE +#define GL_MATRIX15_ARB 0x88CF +#define GL_MATRIX16_ARB 0x88D0 +#define GL_MATRIX17_ARB 0x88D1 +#define GL_MATRIX18_ARB 0x88D2 +#define GL_MATRIX19_ARB 0x88D3 +#define GL_MATRIX20_ARB 0x88D4 +#define GL_MATRIX21_ARB 0x88D5 +#define GL_MATRIX22_ARB 0x88D6 +#define GL_MATRIX23_ARB 0x88D7 +#define GL_MATRIX24_ARB 0x88D8 +#define GL_MATRIX25_ARB 0x88D9 +#define GL_MATRIX26_ARB 0x88DA +#define GL_MATRIX27_ARB 0x88DB +#define GL_MATRIX28_ARB 0x88DC +#define GL_MATRIX29_ARB 0x88DD +#define GL_MATRIX30_ARB 0x88DE +#define GL_MATRIX31_ARB 0x88DF +typedef void (APIENTRYP PFNGLPROGRAMSTRINGARBPROC) (GLenum target, GLenum format, GLsizei len, const void *string); +typedef void (APIENTRYP PFNGLBINDPROGRAMARBPROC) (GLenum target, GLuint program); +typedef void (APIENTRYP PFNGLDELETEPROGRAMSARBPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLGENPROGRAMSARBPROC) (GLsizei n, GLuint *programs); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGARBPROC) (GLenum target, GLenum pname, void *string); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMARBPROC) (GLuint program); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramStringARB (GLenum target, GLenum format, GLsizei len, const void *string); +GLAPI void APIENTRY glBindProgramARB (GLenum target, GLuint program); +GLAPI void APIENTRY glDeleteProgramsARB (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glGenProgramsARB (GLsizei n, GLuint *programs); +GLAPI void APIENTRY glProgramEnvParameter4dARB (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramEnvParameter4dvARB (GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glProgramEnvParameter4fARB (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramEnvParameter4fvARB (GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glProgramLocalParameter4dARB (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramLocalParameter4dvARB (GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glProgramLocalParameter4fARB (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramLocalParameter4fvARB (GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glGetProgramEnvParameterdvARB (GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetProgramEnvParameterfvARB (GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetProgramLocalParameterdvARB (GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetProgramLocalParameterfvARB (GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetProgramivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramStringARB (GLenum target, GLenum pname, void *string); +GLAPI GLboolean APIENTRY glIsProgramARB (GLuint program); +#endif +#endif /* GL_ARB_fragment_program */ + +#ifndef GL_ARB_fragment_program_shadow +#define GL_ARB_fragment_program_shadow 1 +#endif /* GL_ARB_fragment_program_shadow */ + +#ifndef GL_ARB_fragment_shader +#define GL_ARB_fragment_shader 1 +#define GL_FRAGMENT_SHADER_ARB 0x8B30 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB 0x8B49 +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB 0x8B8B +#endif /* GL_ARB_fragment_shader */ + +#ifndef GL_ARB_fragment_shader_interlock +#define GL_ARB_fragment_shader_interlock 1 +#endif /* GL_ARB_fragment_shader_interlock */ + +#ifndef GL_ARB_framebuffer_no_attachments +#define GL_ARB_framebuffer_no_attachments 1 +#endif /* GL_ARB_framebuffer_no_attachments */ + +#ifndef GL_ARB_framebuffer_object +#define GL_ARB_framebuffer_object 1 +#endif /* GL_ARB_framebuffer_object */ + +#ifndef GL_ARB_framebuffer_sRGB +#define GL_ARB_framebuffer_sRGB 1 +#endif /* GL_ARB_framebuffer_sRGB */ + +#ifndef GL_ARB_geometry_shader4 +#define GL_ARB_geometry_shader4 1 +#define GL_LINES_ADJACENCY_ARB 0x000A +#define GL_LINE_STRIP_ADJACENCY_ARB 0x000B +#define GL_TRIANGLES_ADJACENCY_ARB 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_ARB 0x000D +#define GL_PROGRAM_POINT_SIZE_ARB 0x8642 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_ARB 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB 0x8DA8 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB 0x8DA9 +#define GL_GEOMETRY_SHADER_ARB 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT_ARB 0x8DDA +#define GL_GEOMETRY_INPUT_TYPE_ARB 0x8DDB +#define GL_GEOMETRY_OUTPUT_TYPE_ARB 0x8DDC +#define GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB 0x8DDD +#define GL_MAX_VERTEX_VARYING_COMPONENTS_ARB 0x8DDE +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB 0x8DE1 +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIARBPROC) (GLuint program, GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREFACEARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramParameteriARB (GLuint program, GLenum pname, GLint value); +GLAPI void APIENTRY glFramebufferTextureARB (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTextureLayerARB (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glFramebufferTextureFaceARB (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#endif +#endif /* GL_ARB_geometry_shader4 */ + +#ifndef GL_ARB_get_program_binary +#define GL_ARB_get_program_binary 1 +#endif /* GL_ARB_get_program_binary */ + +#ifndef GL_ARB_get_texture_sub_image +#define GL_ARB_get_texture_sub_image 1 +#endif /* GL_ARB_get_texture_sub_image */ + +#ifndef GL_ARB_gl_spirv +#define GL_ARB_gl_spirv 1 +#define GL_SHADER_BINARY_FORMAT_SPIR_V_ARB 0x9551 +#define GL_SPIR_V_BINARY_ARB 0x9552 +typedef void (APIENTRYP PFNGLSPECIALIZESHADERARBPROC) (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpecializeShaderARB (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +#endif +#endif /* GL_ARB_gl_spirv */ + +#ifndef GL_ARB_gpu_shader5 +#define GL_ARB_gpu_shader5 1 +#endif /* GL_ARB_gpu_shader5 */ + +#ifndef GL_ARB_gpu_shader_fp64 +#define GL_ARB_gpu_shader_fp64 1 +#endif /* GL_ARB_gpu_shader_fp64 */ + +#ifndef GL_ARB_gpu_shader_int64 +#define GL_ARB_gpu_shader_int64 1 +#define GL_INT64_ARB 0x140E +#define GL_INT64_VEC2_ARB 0x8FE9 +#define GL_INT64_VEC3_ARB 0x8FEA +#define GL_INT64_VEC4_ARB 0x8FEB +#define GL_UNSIGNED_INT64_VEC2_ARB 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_ARB 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_ARB 0x8FF7 +typedef void (APIENTRYP PFNGLUNIFORM1I64ARBPROC) (GLint location, GLint64 x); +typedef void (APIENTRYP PFNGLUNIFORM2I64ARBPROC) (GLint location, GLint64 x, GLint64 y); +typedef void (APIENTRYP PFNGLUNIFORM3I64ARBPROC) (GLint location, GLint64 x, GLint64 y, GLint64 z); +typedef void (APIENTRYP PFNGLUNIFORM4I64ARBPROC) (GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +typedef void (APIENTRYP PFNGLUNIFORM1I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM2I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM3I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM4I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM1UI64ARBPROC) (GLint location, GLuint64 x); +typedef void (APIENTRYP PFNGLUNIFORM2UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y); +typedef void (APIENTRYP PFNGLUNIFORM3UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +typedef void (APIENTRYP PFNGLUNIFORM4UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +typedef void (APIENTRYP PFNGLUNIFORM1UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM2UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM3UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM4UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLGETUNIFORMI64VARBPROC) (GLuint program, GLint location, GLint64 *params); +typedef void (APIENTRYP PFNGLGETUNIFORMUI64VARBPROC) (GLuint program, GLint location, GLuint64 *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMI64VARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLint64 *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUI64VARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint64 *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64ARBPROC) (GLuint program, GLint location, GLint64 x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64ARBPROC) (GLuint program, GLint location, GLuint64 x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniform1i64ARB (GLint location, GLint64 x); +GLAPI void APIENTRY glUniform2i64ARB (GLint location, GLint64 x, GLint64 y); +GLAPI void APIENTRY glUniform3i64ARB (GLint location, GLint64 x, GLint64 y, GLint64 z); +GLAPI void APIENTRY glUniform4i64ARB (GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +GLAPI void APIENTRY glUniform1i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform2i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform3i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform4i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform1ui64ARB (GLint location, GLuint64 x); +GLAPI void APIENTRY glUniform2ui64ARB (GLint location, GLuint64 x, GLuint64 y); +GLAPI void APIENTRY glUniform3ui64ARB (GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +GLAPI void APIENTRY glUniform4ui64ARB (GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +GLAPI void APIENTRY glUniform1ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform2ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform3ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform4ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glGetUniformi64vARB (GLuint program, GLint location, GLint64 *params); +GLAPI void APIENTRY glGetUniformui64vARB (GLuint program, GLint location, GLuint64 *params); +GLAPI void APIENTRY glGetnUniformi64vARB (GLuint program, GLint location, GLsizei bufSize, GLint64 *params); +GLAPI void APIENTRY glGetnUniformui64vARB (GLuint program, GLint location, GLsizei bufSize, GLuint64 *params); +GLAPI void APIENTRY glProgramUniform1i64ARB (GLuint program, GLint location, GLint64 x); +GLAPI void APIENTRY glProgramUniform2i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y); +GLAPI void APIENTRY glProgramUniform3i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z); +GLAPI void APIENTRY glProgramUniform4i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +GLAPI void APIENTRY glProgramUniform1i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform2i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform3i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform4i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform1ui64ARB (GLuint program, GLint location, GLuint64 x); +GLAPI void APIENTRY glProgramUniform2ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y); +GLAPI void APIENTRY glProgramUniform3ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +GLAPI void APIENTRY glProgramUniform4ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +GLAPI void APIENTRY glProgramUniform1ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform2ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform3ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform4ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +#endif +#endif /* GL_ARB_gpu_shader_int64 */ + +#ifndef GL_ARB_half_float_pixel +#define GL_ARB_half_float_pixel 1 +typedef khronos_uint16_t GLhalfARB; +#define GL_HALF_FLOAT_ARB 0x140B +#endif /* GL_ARB_half_float_pixel */ + +#ifndef GL_ARB_half_float_vertex +#define GL_ARB_half_float_vertex 1 +#endif /* GL_ARB_half_float_vertex */ + +#ifndef GL_ARB_imaging +#define GL_ARB_imaging 1 +#define GL_CONVOLUTION_BORDER_MODE 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS 0x8015 +#define GL_REDUCE 0x8016 +#define GL_CONVOLUTION_FORMAT 0x8017 +#define GL_CONVOLUTION_WIDTH 0x8018 +#define GL_CONVOLUTION_HEIGHT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023 +#define GL_HISTOGRAM_WIDTH 0x8026 +#define GL_HISTOGRAM_FORMAT 0x8027 +#define GL_HISTOGRAM_RED_SIZE 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C +#define GL_HISTOGRAM_SINK 0x802D +#define GL_MINMAX_FORMAT 0x802F +#define GL_MINMAX_SINK 0x8030 +#define GL_TABLE_TOO_LARGE 0x8031 +#define GL_COLOR_MATRIX 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB +#define GL_COLOR_TABLE_SCALE 0x80D6 +#define GL_COLOR_TABLE_BIAS 0x80D7 +#define GL_COLOR_TABLE_FORMAT 0x80D8 +#define GL_COLOR_TABLE_WIDTH 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF +#define GL_CONSTANT_BORDER 0x8151 +#define GL_REPLICATE_BORDER 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR 0x8154 +typedef void (APIENTRYP PFNGLCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, void *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIPROC) (GLenum target, GLenum pname, GLint params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, void *image); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLHISTOGRAMPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLMINMAXPROC) (GLenum target, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLRESETHISTOGRAMPROC) (GLenum target); +typedef void (APIENTRYP PFNGLRESETMINMAXPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTable (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +GLAPI void APIENTRY glColorTableParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glColorTableParameteriv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyColorTable (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glGetColorTable (GLenum target, GLenum format, GLenum type, void *table); +GLAPI void APIENTRY glGetColorTableParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetColorTableParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glColorSubTable (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glCopyColorSubTable (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glConvolutionFilter1D (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionFilter2D (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionParameterf (GLenum target, GLenum pname, GLfloat params); +GLAPI void APIENTRY glConvolutionParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glConvolutionParameteri (GLenum target, GLenum pname, GLint params); +GLAPI void APIENTRY glConvolutionParameteriv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyConvolutionFilter1D (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyConvolutionFilter2D (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetConvolutionFilter (GLenum target, GLenum format, GLenum type, void *image); +GLAPI void APIENTRY glGetConvolutionParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetConvolutionParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSeparableFilter (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +GLAPI void APIENTRY glSeparableFilter2D (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +GLAPI void APIENTRY glGetHistogram (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetHistogramParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetHistogramParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMinmax (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetMinmaxParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMinmaxParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glHistogram (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glMinmax (GLenum target, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glResetHistogram (GLenum target); +GLAPI void APIENTRY glResetMinmax (GLenum target); +#endif +#endif /* GL_ARB_imaging */ + +#ifndef GL_ARB_indirect_parameters +#define GL_ARB_indirect_parameters 1 +#define GL_PARAMETER_BUFFER_ARB 0x80EE +#define GL_PARAMETER_BUFFER_BINDING_ARB 0x80EF +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTCOUNTARBPROC) (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTARBPROC) (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectCountARB (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectCountARB (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_ARB_indirect_parameters */ + +#ifndef GL_ARB_instanced_arrays +#define GL_ARB_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB 0x88FE +typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORARBPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribDivisorARB (GLuint index, GLuint divisor); +#endif +#endif /* GL_ARB_instanced_arrays */ + +#ifndef GL_ARB_internalformat_query +#define GL_ARB_internalformat_query 1 +#endif /* GL_ARB_internalformat_query */ + +#ifndef GL_ARB_internalformat_query2 +#define GL_ARB_internalformat_query2 1 +#define GL_SRGB_DECODE_ARB 0x8299 +#define GL_VIEW_CLASS_EAC_R11 0x9383 +#define GL_VIEW_CLASS_EAC_RG11 0x9384 +#define GL_VIEW_CLASS_ETC2_RGB 0x9385 +#define GL_VIEW_CLASS_ETC2_RGBA 0x9386 +#define GL_VIEW_CLASS_ETC2_EAC_RGBA 0x9387 +#define GL_VIEW_CLASS_ASTC_4x4_RGBA 0x9388 +#define GL_VIEW_CLASS_ASTC_5x4_RGBA 0x9389 +#define GL_VIEW_CLASS_ASTC_5x5_RGBA 0x938A +#define GL_VIEW_CLASS_ASTC_6x5_RGBA 0x938B +#define GL_VIEW_CLASS_ASTC_6x6_RGBA 0x938C +#define GL_VIEW_CLASS_ASTC_8x5_RGBA 0x938D +#define GL_VIEW_CLASS_ASTC_8x6_RGBA 0x938E +#define GL_VIEW_CLASS_ASTC_8x8_RGBA 0x938F +#define GL_VIEW_CLASS_ASTC_10x5_RGBA 0x9390 +#define GL_VIEW_CLASS_ASTC_10x6_RGBA 0x9391 +#define GL_VIEW_CLASS_ASTC_10x8_RGBA 0x9392 +#define GL_VIEW_CLASS_ASTC_10x10_RGBA 0x9393 +#define GL_VIEW_CLASS_ASTC_12x10_RGBA 0x9394 +#define GL_VIEW_CLASS_ASTC_12x12_RGBA 0x9395 +#endif /* GL_ARB_internalformat_query2 */ + +#ifndef GL_ARB_invalidate_subdata +#define GL_ARB_invalidate_subdata 1 +#endif /* GL_ARB_invalidate_subdata */ + +#ifndef GL_ARB_map_buffer_alignment +#define GL_ARB_map_buffer_alignment 1 +#endif /* GL_ARB_map_buffer_alignment */ + +#ifndef GL_ARB_map_buffer_range +#define GL_ARB_map_buffer_range 1 +#endif /* GL_ARB_map_buffer_range */ + +#ifndef GL_ARB_matrix_palette +#define GL_ARB_matrix_palette 1 +#define GL_MATRIX_PALETTE_ARB 0x8840 +#define GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB 0x8841 +#define GL_MAX_PALETTE_MATRICES_ARB 0x8842 +#define GL_CURRENT_PALETTE_MATRIX_ARB 0x8843 +#define GL_MATRIX_INDEX_ARRAY_ARB 0x8844 +#define GL_CURRENT_MATRIX_INDEX_ARB 0x8845 +#define GL_MATRIX_INDEX_ARRAY_SIZE_ARB 0x8846 +#define GL_MATRIX_INDEX_ARRAY_TYPE_ARB 0x8847 +#define GL_MATRIX_INDEX_ARRAY_STRIDE_ARB 0x8848 +#define GL_MATRIX_INDEX_ARRAY_POINTER_ARB 0x8849 +typedef void (APIENTRYP PFNGLCURRENTPALETTEMATRIXARBPROC) (GLint index); +typedef void (APIENTRYP PFNGLMATRIXINDEXUBVARBPROC) (GLint size, const GLubyte *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXUSVARBPROC) (GLint size, const GLushort *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXUIVARBPROC) (GLint size, const GLuint *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCurrentPaletteMatrixARB (GLint index); +GLAPI void APIENTRY glMatrixIndexubvARB (GLint size, const GLubyte *indices); +GLAPI void APIENTRY glMatrixIndexusvARB (GLint size, const GLushort *indices); +GLAPI void APIENTRY glMatrixIndexuivARB (GLint size, const GLuint *indices); +GLAPI void APIENTRY glMatrixIndexPointerARB (GLint size, GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_ARB_matrix_palette */ + +#ifndef GL_ARB_multi_bind +#define GL_ARB_multi_bind 1 +#endif /* GL_ARB_multi_bind */ + +#ifndef GL_ARB_multi_draw_indirect +#define GL_ARB_multi_draw_indirect 1 +#endif /* GL_ARB_multi_draw_indirect */ + +#ifndef GL_ARB_multisample +#define GL_ARB_multisample 1 +#define GL_MULTISAMPLE_ARB 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE_ARB 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_ARB 0x809F +#define GL_SAMPLE_COVERAGE_ARB 0x80A0 +#define GL_SAMPLE_BUFFERS_ARB 0x80A8 +#define GL_SAMPLES_ARB 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE_ARB 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT_ARB 0x80AB +#define GL_MULTISAMPLE_BIT_ARB 0x20000000 +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEARBPROC) (GLfloat value, GLboolean invert); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleCoverageARB (GLfloat value, GLboolean invert); +#endif +#endif /* GL_ARB_multisample */ + +#ifndef GL_ARB_multitexture +#define GL_ARB_multitexture 1 +#define GL_TEXTURE0_ARB 0x84C0 +#define GL_TEXTURE1_ARB 0x84C1 +#define GL_TEXTURE2_ARB 0x84C2 +#define GL_TEXTURE3_ARB 0x84C3 +#define GL_TEXTURE4_ARB 0x84C4 +#define GL_TEXTURE5_ARB 0x84C5 +#define GL_TEXTURE6_ARB 0x84C6 +#define GL_TEXTURE7_ARB 0x84C7 +#define GL_TEXTURE8_ARB 0x84C8 +#define GL_TEXTURE9_ARB 0x84C9 +#define GL_TEXTURE10_ARB 0x84CA +#define GL_TEXTURE11_ARB 0x84CB +#define GL_TEXTURE12_ARB 0x84CC +#define GL_TEXTURE13_ARB 0x84CD +#define GL_TEXTURE14_ARB 0x84CE +#define GL_TEXTURE15_ARB 0x84CF +#define GL_TEXTURE16_ARB 0x84D0 +#define GL_TEXTURE17_ARB 0x84D1 +#define GL_TEXTURE18_ARB 0x84D2 +#define GL_TEXTURE19_ARB 0x84D3 +#define GL_TEXTURE20_ARB 0x84D4 +#define GL_TEXTURE21_ARB 0x84D5 +#define GL_TEXTURE22_ARB 0x84D6 +#define GL_TEXTURE23_ARB 0x84D7 +#define GL_TEXTURE24_ARB 0x84D8 +#define GL_TEXTURE25_ARB 0x84D9 +#define GL_TEXTURE26_ARB 0x84DA +#define GL_TEXTURE27_ARB 0x84DB +#define GL_TEXTURE28_ARB 0x84DC +#define GL_TEXTURE29_ARB 0x84DD +#define GL_TEXTURE30_ARB 0x84DE +#define GL_TEXTURE31_ARB 0x84DF +#define GL_ACTIVE_TEXTURE_ARB 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1 +#define GL_MAX_TEXTURE_UNITS_ARB 0x84E2 +typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveTextureARB (GLenum texture); +GLAPI void APIENTRY glClientActiveTextureARB (GLenum texture); +GLAPI void APIENTRY glMultiTexCoord1dARB (GLenum target, GLdouble s); +GLAPI void APIENTRY glMultiTexCoord1dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord1fARB (GLenum target, GLfloat s); +GLAPI void APIENTRY glMultiTexCoord1fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord1iARB (GLenum target, GLint s); +GLAPI void APIENTRY glMultiTexCoord1ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord1sARB (GLenum target, GLshort s); +GLAPI void APIENTRY glMultiTexCoord1svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord2dARB (GLenum target, GLdouble s, GLdouble t); +GLAPI void APIENTRY glMultiTexCoord2dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord2fARB (GLenum target, GLfloat s, GLfloat t); +GLAPI void APIENTRY glMultiTexCoord2fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord2iARB (GLenum target, GLint s, GLint t); +GLAPI void APIENTRY glMultiTexCoord2ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord2sARB (GLenum target, GLshort s, GLshort t); +GLAPI void APIENTRY glMultiTexCoord2svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord3dARB (GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void APIENTRY glMultiTexCoord3dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord3fARB (GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void APIENTRY glMultiTexCoord3fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord3iARB (GLenum target, GLint s, GLint t, GLint r); +GLAPI void APIENTRY glMultiTexCoord3ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord3sARB (GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void APIENTRY glMultiTexCoord3svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord4dARB (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void APIENTRY glMultiTexCoord4dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord4fARB (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void APIENTRY glMultiTexCoord4fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord4iARB (GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void APIENTRY glMultiTexCoord4ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord4sARB (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void APIENTRY glMultiTexCoord4svARB (GLenum target, const GLshort *v); +#endif +#endif /* GL_ARB_multitexture */ + +#ifndef GL_ARB_occlusion_query +#define GL_ARB_occlusion_query 1 +#define GL_QUERY_COUNTER_BITS_ARB 0x8864 +#define GL_CURRENT_QUERY_ARB 0x8865 +#define GL_QUERY_RESULT_ARB 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_ARB 0x8867 +#define GL_SAMPLES_PASSED_ARB 0x8914 +typedef void (APIENTRYP PFNGLGENQUERIESARBPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEQUERIESARBPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISQUERYARBPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINQUERYARBPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYARBPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVARBPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVARBPROC) (GLuint id, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueriesARB (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteQueriesARB (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsQueryARB (GLuint id); +GLAPI void APIENTRY glBeginQueryARB (GLenum target, GLuint id); +GLAPI void APIENTRY glEndQueryARB (GLenum target); +GLAPI void APIENTRY glGetQueryivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectivARB (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectuivARB (GLuint id, GLenum pname, GLuint *params); +#endif +#endif /* GL_ARB_occlusion_query */ + +#ifndef GL_ARB_occlusion_query2 +#define GL_ARB_occlusion_query2 1 +#endif /* GL_ARB_occlusion_query2 */ + +#ifndef GL_ARB_parallel_shader_compile +#define GL_ARB_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_ARB 0x91B0 +#define GL_COMPLETION_STATUS_ARB 0x91B1 +typedef void (APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSARBPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMaxShaderCompilerThreadsARB (GLuint count); +#endif +#endif /* GL_ARB_parallel_shader_compile */ + +#ifndef GL_ARB_pipeline_statistics_query +#define GL_ARB_pipeline_statistics_query 1 +#define GL_VERTICES_SUBMITTED_ARB 0x82EE +#define GL_PRIMITIVES_SUBMITTED_ARB 0x82EF +#define GL_VERTEX_SHADER_INVOCATIONS_ARB 0x82F0 +#define GL_TESS_CONTROL_SHADER_PATCHES_ARB 0x82F1 +#define GL_TESS_EVALUATION_SHADER_INVOCATIONS_ARB 0x82F2 +#define GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED_ARB 0x82F3 +#define GL_FRAGMENT_SHADER_INVOCATIONS_ARB 0x82F4 +#define GL_COMPUTE_SHADER_INVOCATIONS_ARB 0x82F5 +#define GL_CLIPPING_INPUT_PRIMITIVES_ARB 0x82F6 +#define GL_CLIPPING_OUTPUT_PRIMITIVES_ARB 0x82F7 +#endif /* GL_ARB_pipeline_statistics_query */ + +#ifndef GL_ARB_pixel_buffer_object +#define GL_ARB_pixel_buffer_object 1 +#define GL_PIXEL_PACK_BUFFER_ARB 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_ARB 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_ARB 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_ARB 0x88EF +#endif /* GL_ARB_pixel_buffer_object */ + +#ifndef GL_ARB_point_parameters +#define GL_ARB_point_parameters 1 +#define GL_POINT_SIZE_MIN_ARB 0x8126 +#define GL_POINT_SIZE_MAX_ARB 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_ARB 0x8128 +#define GL_POINT_DISTANCE_ATTENUATION_ARB 0x8129 +typedef void (APIENTRYP PFNGLPOINTPARAMETERFARBPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVARBPROC) (GLenum pname, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfARB (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvARB (GLenum pname, const GLfloat *params); +#endif +#endif /* GL_ARB_point_parameters */ + +#ifndef GL_ARB_point_sprite +#define GL_ARB_point_sprite 1 +#define GL_POINT_SPRITE_ARB 0x8861 +#define GL_COORD_REPLACE_ARB 0x8862 +#endif /* GL_ARB_point_sprite */ + +#ifndef GL_ARB_polygon_offset_clamp +#define GL_ARB_polygon_offset_clamp 1 +#endif /* GL_ARB_polygon_offset_clamp */ + +#ifndef GL_ARB_post_depth_coverage +#define GL_ARB_post_depth_coverage 1 +#endif /* GL_ARB_post_depth_coverage */ + +#ifndef GL_ARB_program_interface_query +#define GL_ARB_program_interface_query 1 +#endif /* GL_ARB_program_interface_query */ + +#ifndef GL_ARB_provoking_vertex +#define GL_ARB_provoking_vertex 1 +#endif /* GL_ARB_provoking_vertex */ + +#ifndef GL_ARB_query_buffer_object +#define GL_ARB_query_buffer_object 1 +#endif /* GL_ARB_query_buffer_object */ + +#ifndef GL_ARB_robust_buffer_access_behavior +#define GL_ARB_robust_buffer_access_behavior 1 +#endif /* GL_ARB_robust_buffer_access_behavior */ + +#ifndef GL_ARB_robustness +#define GL_ARB_robustness 1 +#define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB 0x00000004 +#define GL_LOSE_CONTEXT_ON_RESET_ARB 0x8252 +#define GL_GUILTY_CONTEXT_RESET_ARB 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_ARB 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_ARB 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 +#define GL_NO_RESET_NOTIFICATION_ARB 0x8261 +typedef GLenum (APIENTRYP PFNGLGETGRAPHICSRESETSTATUSARBPROC) (void); +typedef void (APIENTRYP PFNGLGETNTEXIMAGEARBPROC) (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *img); +typedef void (APIENTRYP PFNGLREADNPIXELSARBPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (APIENTRYP PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint lod, GLsizei bufSize, void *img); +typedef void (APIENTRYP PFNGLGETNUNIFORMFVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMDVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNMAPDVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +typedef void (APIENTRYP PFNGLGETNMAPFVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLGETNMAPIVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +typedef void (APIENTRYP PFNGLGETNPIXELMAPFVARBPROC) (GLenum map, GLsizei bufSize, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVARBPROC) (GLenum map, GLsizei bufSize, GLuint *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUSVARBPROC) (GLenum map, GLsizei bufSize, GLushort *values); +typedef void (APIENTRYP PFNGLGETNPOLYGONSTIPPLEARBPROC) (GLsizei bufSize, GLubyte *pattern); +typedef void (APIENTRYP PFNGLGETNCOLORTABLEARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +typedef void (APIENTRYP PFNGLGETNCONVOLUTIONFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +typedef void (APIENTRYP PFNGLGETNSEPARABLEFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +typedef void (APIENTRYP PFNGLGETNHISTOGRAMARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLGETNMINMAXARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLenum APIENTRY glGetGraphicsResetStatusARB (void); +GLAPI void APIENTRY glGetnTexImageARB (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *img); +GLAPI void APIENTRY glReadnPixelsARB (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GLAPI void APIENTRY glGetnCompressedTexImageARB (GLenum target, GLint lod, GLsizei bufSize, void *img); +GLAPI void APIENTRY glGetnUniformfvARB (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GLAPI void APIENTRY glGetnUniformivARB (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GLAPI void APIENTRY glGetnUniformuivARB (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +GLAPI void APIENTRY glGetnUniformdvARB (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +GLAPI void APIENTRY glGetnMapdvARB (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +GLAPI void APIENTRY glGetnMapfvARB (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glGetnMapivARB (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +GLAPI void APIENTRY glGetnPixelMapfvARB (GLenum map, GLsizei bufSize, GLfloat *values); +GLAPI void APIENTRY glGetnPixelMapuivARB (GLenum map, GLsizei bufSize, GLuint *values); +GLAPI void APIENTRY glGetnPixelMapusvARB (GLenum map, GLsizei bufSize, GLushort *values); +GLAPI void APIENTRY glGetnPolygonStippleARB (GLsizei bufSize, GLubyte *pattern); +GLAPI void APIENTRY glGetnColorTableARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +GLAPI void APIENTRY glGetnConvolutionFilterARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +GLAPI void APIENTRY glGetnSeparableFilterARB (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +GLAPI void APIENTRY glGetnHistogramARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glGetnMinmaxARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +#endif +#endif /* GL_ARB_robustness */ + +#ifndef GL_ARB_robustness_isolation +#define GL_ARB_robustness_isolation 1 +#endif /* GL_ARB_robustness_isolation */ + +#ifndef GL_ARB_sample_locations +#define GL_ARB_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_ARB 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_ARB 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_ARB 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_ARB 0x9340 +#define GL_SAMPLE_LOCATION_ARB 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_ARB 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_ARB 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_ARB 0x9343 +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVARBPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVARBPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLEVALUATEDEPTHVALUESARBPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSampleLocationsfvARB (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glNamedFramebufferSampleLocationsfvARB (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glEvaluateDepthValuesARB (void); +#endif +#endif /* GL_ARB_sample_locations */ + +#ifndef GL_ARB_sample_shading +#define GL_ARB_sample_shading 1 +#define GL_SAMPLE_SHADING_ARB 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE_ARB 0x8C37 +typedef void (APIENTRYP PFNGLMINSAMPLESHADINGARBPROC) (GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMinSampleShadingARB (GLfloat value); +#endif +#endif /* GL_ARB_sample_shading */ + +#ifndef GL_ARB_sampler_objects +#define GL_ARB_sampler_objects 1 +#endif /* GL_ARB_sampler_objects */ + +#ifndef GL_ARB_seamless_cube_map +#define GL_ARB_seamless_cube_map 1 +#endif /* GL_ARB_seamless_cube_map */ + +#ifndef GL_ARB_seamless_cubemap_per_texture +#define GL_ARB_seamless_cubemap_per_texture 1 +#endif /* GL_ARB_seamless_cubemap_per_texture */ + +#ifndef GL_ARB_separate_shader_objects +#define GL_ARB_separate_shader_objects 1 +#endif /* GL_ARB_separate_shader_objects */ + +#ifndef GL_ARB_shader_atomic_counter_ops +#define GL_ARB_shader_atomic_counter_ops 1 +#endif /* GL_ARB_shader_atomic_counter_ops */ + +#ifndef GL_ARB_shader_atomic_counters +#define GL_ARB_shader_atomic_counters 1 +#endif /* GL_ARB_shader_atomic_counters */ + +#ifndef GL_ARB_shader_ballot +#define GL_ARB_shader_ballot 1 +#endif /* GL_ARB_shader_ballot */ + +#ifndef GL_ARB_shader_bit_encoding +#define GL_ARB_shader_bit_encoding 1 +#endif /* GL_ARB_shader_bit_encoding */ + +#ifndef GL_ARB_shader_clock +#define GL_ARB_shader_clock 1 +#endif /* GL_ARB_shader_clock */ + +#ifndef GL_ARB_shader_draw_parameters +#define GL_ARB_shader_draw_parameters 1 +#endif /* GL_ARB_shader_draw_parameters */ + +#ifndef GL_ARB_shader_group_vote +#define GL_ARB_shader_group_vote 1 +#endif /* GL_ARB_shader_group_vote */ + +#ifndef GL_ARB_shader_image_load_store +#define GL_ARB_shader_image_load_store 1 +#endif /* GL_ARB_shader_image_load_store */ + +#ifndef GL_ARB_shader_image_size +#define GL_ARB_shader_image_size 1 +#endif /* GL_ARB_shader_image_size */ + +#ifndef GL_ARB_shader_objects +#define GL_ARB_shader_objects 1 +#ifdef __APPLE__ +typedef void *GLhandleARB; +#else +typedef unsigned int GLhandleARB; +#endif +typedef char GLcharARB; +#define GL_PROGRAM_OBJECT_ARB 0x8B40 +#define GL_SHADER_OBJECT_ARB 0x8B48 +#define GL_OBJECT_TYPE_ARB 0x8B4E +#define GL_OBJECT_SUBTYPE_ARB 0x8B4F +#define GL_FLOAT_VEC2_ARB 0x8B50 +#define GL_FLOAT_VEC3_ARB 0x8B51 +#define GL_FLOAT_VEC4_ARB 0x8B52 +#define GL_INT_VEC2_ARB 0x8B53 +#define GL_INT_VEC3_ARB 0x8B54 +#define GL_INT_VEC4_ARB 0x8B55 +#define GL_BOOL_ARB 0x8B56 +#define GL_BOOL_VEC2_ARB 0x8B57 +#define GL_BOOL_VEC3_ARB 0x8B58 +#define GL_BOOL_VEC4_ARB 0x8B59 +#define GL_FLOAT_MAT2_ARB 0x8B5A +#define GL_FLOAT_MAT3_ARB 0x8B5B +#define GL_FLOAT_MAT4_ARB 0x8B5C +#define GL_SAMPLER_1D_ARB 0x8B5D +#define GL_SAMPLER_2D_ARB 0x8B5E +#define GL_SAMPLER_3D_ARB 0x8B5F +#define GL_SAMPLER_CUBE_ARB 0x8B60 +#define GL_SAMPLER_1D_SHADOW_ARB 0x8B61 +#define GL_SAMPLER_2D_SHADOW_ARB 0x8B62 +#define GL_SAMPLER_2D_RECT_ARB 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW_ARB 0x8B64 +#define GL_OBJECT_DELETE_STATUS_ARB 0x8B80 +#define GL_OBJECT_COMPILE_STATUS_ARB 0x8B81 +#define GL_OBJECT_LINK_STATUS_ARB 0x8B82 +#define GL_OBJECT_VALIDATE_STATUS_ARB 0x8B83 +#define GL_OBJECT_INFO_LOG_LENGTH_ARB 0x8B84 +#define GL_OBJECT_ATTACHED_OBJECTS_ARB 0x8B85 +#define GL_OBJECT_ACTIVE_UNIFORMS_ARB 0x8B86 +#define GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB 0x8B87 +#define GL_OBJECT_SHADER_SOURCE_LENGTH_ARB 0x8B88 +typedef void (APIENTRYP PFNGLDELETEOBJECTARBPROC) (GLhandleARB obj); +typedef GLhandleARB (APIENTRYP PFNGLGETHANDLEARBPROC) (GLenum pname); +typedef void (APIENTRYP PFNGLDETACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB attachedObj); +typedef GLhandleARB (APIENTRYP PFNGLCREATESHADEROBJECTARBPROC) (GLenum shaderType); +typedef void (APIENTRYP PFNGLSHADERSOURCEARBPROC) (GLhandleARB shaderObj, GLsizei count, const GLcharARB **string, const GLint *length); +typedef void (APIENTRYP PFNGLCOMPILESHADERARBPROC) (GLhandleARB shaderObj); +typedef GLhandleARB (APIENTRYP PFNGLCREATEPROGRAMOBJECTARBPROC) (void); +typedef void (APIENTRYP PFNGLATTACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB obj); +typedef void (APIENTRYP PFNGLLINKPROGRAMARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLUSEPROGRAMOBJECTARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLUNIFORM1FARBPROC) (GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLUNIFORM2FARBPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLUNIFORM3FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLUNIFORM4FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLUNIFORM1IARBPROC) (GLint location, GLint v0); +typedef void (APIENTRYP PFNGLUNIFORM2IARBPROC) (GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLUNIFORM3IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLUNIFORM4IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLUNIFORM1FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM2FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM3FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM4FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM1IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM2IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM3IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM4IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERFVARBPROC) (GLhandleARB obj, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVARBPROC) (GLhandleARB obj, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETINFOLOGARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog); +typedef void (APIENTRYP PFNGLGETATTACHEDOBJECTSARBPROC) (GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj); +typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +typedef void (APIENTRYP PFNGLGETUNIFORMFVARBPROC) (GLhandleARB programObj, GLint location, GLfloat *params); +typedef void (APIENTRYP PFNGLGETUNIFORMIVARBPROC) (GLhandleARB programObj, GLint location, GLint *params); +typedef void (APIENTRYP PFNGLGETSHADERSOURCEARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeleteObjectARB (GLhandleARB obj); +GLAPI GLhandleARB APIENTRY glGetHandleARB (GLenum pname); +GLAPI void APIENTRY glDetachObjectARB (GLhandleARB containerObj, GLhandleARB attachedObj); +GLAPI GLhandleARB APIENTRY glCreateShaderObjectARB (GLenum shaderType); +GLAPI void APIENTRY glShaderSourceARB (GLhandleARB shaderObj, GLsizei count, const GLcharARB **string, const GLint *length); +GLAPI void APIENTRY glCompileShaderARB (GLhandleARB shaderObj); +GLAPI GLhandleARB APIENTRY glCreateProgramObjectARB (void); +GLAPI void APIENTRY glAttachObjectARB (GLhandleARB containerObj, GLhandleARB obj); +GLAPI void APIENTRY glLinkProgramARB (GLhandleARB programObj); +GLAPI void APIENTRY glUseProgramObjectARB (GLhandleARB programObj); +GLAPI void APIENTRY glValidateProgramARB (GLhandleARB programObj); +GLAPI void APIENTRY glUniform1fARB (GLint location, GLfloat v0); +GLAPI void APIENTRY glUniform2fARB (GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glUniform3fARB (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glUniform4fARB (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glUniform1iARB (GLint location, GLint v0); +GLAPI void APIENTRY glUniform2iARB (GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glUniform3iARB (GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glUniform4iARB (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glUniform1fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform2fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform3fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform4fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform1ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform2ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform3ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform4ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniformMatrix2fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glGetObjectParameterfvARB (GLhandleARB obj, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetObjectParameterivARB (GLhandleARB obj, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetInfoLogARB (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog); +GLAPI void APIENTRY glGetAttachedObjectsARB (GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj); +GLAPI GLint APIENTRY glGetUniformLocationARB (GLhandleARB programObj, const GLcharARB *name); +GLAPI void APIENTRY glGetActiveUniformARB (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +GLAPI void APIENTRY glGetUniformfvARB (GLhandleARB programObj, GLint location, GLfloat *params); +GLAPI void APIENTRY glGetUniformivARB (GLhandleARB programObj, GLint location, GLint *params); +GLAPI void APIENTRY glGetShaderSourceARB (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source); +#endif +#endif /* GL_ARB_shader_objects */ + +#ifndef GL_ARB_shader_precision +#define GL_ARB_shader_precision 1 +#endif /* GL_ARB_shader_precision */ + +#ifndef GL_ARB_shader_stencil_export +#define GL_ARB_shader_stencil_export 1 +#endif /* GL_ARB_shader_stencil_export */ + +#ifndef GL_ARB_shader_storage_buffer_object +#define GL_ARB_shader_storage_buffer_object 1 +#endif /* GL_ARB_shader_storage_buffer_object */ + +#ifndef GL_ARB_shader_subroutine +#define GL_ARB_shader_subroutine 1 +#endif /* GL_ARB_shader_subroutine */ + +#ifndef GL_ARB_shader_texture_image_samples +#define GL_ARB_shader_texture_image_samples 1 +#endif /* GL_ARB_shader_texture_image_samples */ + +#ifndef GL_ARB_shader_texture_lod +#define GL_ARB_shader_texture_lod 1 +#endif /* GL_ARB_shader_texture_lod */ + +#ifndef GL_ARB_shader_viewport_layer_array +#define GL_ARB_shader_viewport_layer_array 1 +#endif /* GL_ARB_shader_viewport_layer_array */ + +#ifndef GL_ARB_shading_language_100 +#define GL_ARB_shading_language_100 1 +#define GL_SHADING_LANGUAGE_VERSION_ARB 0x8B8C +#endif /* GL_ARB_shading_language_100 */ + +#ifndef GL_ARB_shading_language_420pack +#define GL_ARB_shading_language_420pack 1 +#endif /* GL_ARB_shading_language_420pack */ + +#ifndef GL_ARB_shading_language_include +#define GL_ARB_shading_language_include 1 +#define GL_SHADER_INCLUDE_ARB 0x8DAE +#define GL_NAMED_STRING_LENGTH_ARB 0x8DE9 +#define GL_NAMED_STRING_TYPE_ARB 0x8DEA +typedef void (APIENTRYP PFNGLNAMEDSTRINGARBPROC) (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string); +typedef void (APIENTRYP PFNGLDELETENAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name); +typedef void (APIENTRYP PFNGLCOMPILESHADERINCLUDEARBPROC) (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); +typedef GLboolean (APIENTRYP PFNGLISNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name); +typedef void (APIENTRYP PFNGLGETNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string); +typedef void (APIENTRYP PFNGLGETNAMEDSTRINGIVARBPROC) (GLint namelen, const GLchar *name, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glNamedStringARB (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string); +GLAPI void APIENTRY glDeleteNamedStringARB (GLint namelen, const GLchar *name); +GLAPI void APIENTRY glCompileShaderIncludeARB (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); +GLAPI GLboolean APIENTRY glIsNamedStringARB (GLint namelen, const GLchar *name); +GLAPI void APIENTRY glGetNamedStringARB (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string); +GLAPI void APIENTRY glGetNamedStringivARB (GLint namelen, const GLchar *name, GLenum pname, GLint *params); +#endif +#endif /* GL_ARB_shading_language_include */ + +#ifndef GL_ARB_shading_language_packing +#define GL_ARB_shading_language_packing 1 +#endif /* GL_ARB_shading_language_packing */ + +#ifndef GL_ARB_shadow +#define GL_ARB_shadow 1 +#define GL_TEXTURE_COMPARE_MODE_ARB 0x884C +#define GL_TEXTURE_COMPARE_FUNC_ARB 0x884D +#define GL_COMPARE_R_TO_TEXTURE_ARB 0x884E +#endif /* GL_ARB_shadow */ + +#ifndef GL_ARB_shadow_ambient +#define GL_ARB_shadow_ambient 1 +#define GL_TEXTURE_COMPARE_FAIL_VALUE_ARB 0x80BF +#endif /* GL_ARB_shadow_ambient */ + +#ifndef GL_ARB_sparse_buffer +#define GL_ARB_sparse_buffer 1 +#define GL_SPARSE_STORAGE_BIT_ARB 0x0400 +#define GL_SPARSE_BUFFER_PAGE_SIZE_ARB 0x82F8 +typedef void (APIENTRYP PFNGLBUFFERPAGECOMMITMENTARBPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTARBPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferPageCommitmentARB (GLenum target, GLintptr offset, GLsizeiptr size, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentARB (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +#endif +#endif /* GL_ARB_sparse_buffer */ + +#ifndef GL_ARB_sparse_texture +#define GL_ARB_sparse_texture 1 +#define GL_TEXTURE_SPARSE_ARB 0x91A6 +#define GL_VIRTUAL_PAGE_SIZE_INDEX_ARB 0x91A7 +#define GL_NUM_SPARSE_LEVELS_ARB 0x91AA +#define GL_NUM_VIRTUAL_PAGE_SIZES_ARB 0x91A8 +#define GL_VIRTUAL_PAGE_SIZE_X_ARB 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_ARB 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_ARB 0x9197 +#define GL_MAX_SPARSE_TEXTURE_SIZE_ARB 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_ARB 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_ARB 0x919A +#define GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_ARB 0x91A9 +typedef void (APIENTRYP PFNGLTEXPAGECOMMITMENTARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexPageCommitmentARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#endif +#endif /* GL_ARB_sparse_texture */ + +#ifndef GL_ARB_sparse_texture2 +#define GL_ARB_sparse_texture2 1 +#endif /* GL_ARB_sparse_texture2 */ + +#ifndef GL_ARB_sparse_texture_clamp +#define GL_ARB_sparse_texture_clamp 1 +#endif /* GL_ARB_sparse_texture_clamp */ + +#ifndef GL_ARB_spirv_extensions +#define GL_ARB_spirv_extensions 1 +#endif /* GL_ARB_spirv_extensions */ + +#ifndef GL_ARB_stencil_texturing +#define GL_ARB_stencil_texturing 1 +#endif /* GL_ARB_stencil_texturing */ + +#ifndef GL_ARB_sync +#define GL_ARB_sync 1 +#endif /* GL_ARB_sync */ + +#ifndef GL_ARB_tessellation_shader +#define GL_ARB_tessellation_shader 1 +#endif /* GL_ARB_tessellation_shader */ + +#ifndef GL_ARB_texture_barrier +#define GL_ARB_texture_barrier 1 +#endif /* GL_ARB_texture_barrier */ + +#ifndef GL_ARB_texture_border_clamp +#define GL_ARB_texture_border_clamp 1 +#define GL_CLAMP_TO_BORDER_ARB 0x812D +#endif /* GL_ARB_texture_border_clamp */ + +#ifndef GL_ARB_texture_buffer_object +#define GL_ARB_texture_buffer_object 1 +#define GL_TEXTURE_BUFFER_ARB 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_ARB 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_ARB 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT_ARB 0x8C2E +typedef void (APIENTRYP PFNGLTEXBUFFERARBPROC) (GLenum target, GLenum internalformat, GLuint buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBufferARB (GLenum target, GLenum internalformat, GLuint buffer); +#endif +#endif /* GL_ARB_texture_buffer_object */ + +#ifndef GL_ARB_texture_buffer_object_rgb32 +#define GL_ARB_texture_buffer_object_rgb32 1 +#endif /* GL_ARB_texture_buffer_object_rgb32 */ + +#ifndef GL_ARB_texture_buffer_range +#define GL_ARB_texture_buffer_range 1 +#endif /* GL_ARB_texture_buffer_range */ + +#ifndef GL_ARB_texture_compression +#define GL_ARB_texture_compression 1 +#define GL_COMPRESSED_ALPHA_ARB 0x84E9 +#define GL_COMPRESSED_LUMINANCE_ARB 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA_ARB 0x84EB +#define GL_COMPRESSED_INTENSITY_ARB 0x84EC +#define GL_COMPRESSED_RGB_ARB 0x84ED +#define GL_COMPRESSED_RGBA_ARB 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT_ARB 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB 0x86A0 +#define GL_TEXTURE_COMPRESSED_ARB 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A3 +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DARBPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint level, void *img); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCompressedTexImage3DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage2DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage1DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage3DARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage2DARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage1DARB (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glGetCompressedTexImageARB (GLenum target, GLint level, void *img); +#endif +#endif /* GL_ARB_texture_compression */ + +#ifndef GL_ARB_texture_compression_bptc +#define GL_ARB_texture_compression_bptc 1 +#define GL_COMPRESSED_RGBA_BPTC_UNORM_ARB 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB 0x8E8F +#endif /* GL_ARB_texture_compression_bptc */ + +#ifndef GL_ARB_texture_compression_rgtc +#define GL_ARB_texture_compression_rgtc 1 +#endif /* GL_ARB_texture_compression_rgtc */ + +#ifndef GL_ARB_texture_cube_map +#define GL_ARB_texture_cube_map 1 +#define GL_NORMAL_MAP_ARB 0x8511 +#define GL_REFLECTION_MAP_ARB 0x8512 +#define GL_TEXTURE_CUBE_MAP_ARB 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARB 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARB 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB 0x851C +#endif /* GL_ARB_texture_cube_map */ + +#ifndef GL_ARB_texture_cube_map_array +#define GL_ARB_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_ARB 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB 0x900A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB 0x900B +#define GL_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900F +#endif /* GL_ARB_texture_cube_map_array */ + +#ifndef GL_ARB_texture_env_add +#define GL_ARB_texture_env_add 1 +#endif /* GL_ARB_texture_env_add */ + +#ifndef GL_ARB_texture_env_combine +#define GL_ARB_texture_env_combine 1 +#define GL_COMBINE_ARB 0x8570 +#define GL_COMBINE_RGB_ARB 0x8571 +#define GL_COMBINE_ALPHA_ARB 0x8572 +#define GL_SOURCE0_RGB_ARB 0x8580 +#define GL_SOURCE1_RGB_ARB 0x8581 +#define GL_SOURCE2_RGB_ARB 0x8582 +#define GL_SOURCE0_ALPHA_ARB 0x8588 +#define GL_SOURCE1_ALPHA_ARB 0x8589 +#define GL_SOURCE2_ALPHA_ARB 0x858A +#define GL_OPERAND0_RGB_ARB 0x8590 +#define GL_OPERAND1_RGB_ARB 0x8591 +#define GL_OPERAND2_RGB_ARB 0x8592 +#define GL_OPERAND0_ALPHA_ARB 0x8598 +#define GL_OPERAND1_ALPHA_ARB 0x8599 +#define GL_OPERAND2_ALPHA_ARB 0x859A +#define GL_RGB_SCALE_ARB 0x8573 +#define GL_ADD_SIGNED_ARB 0x8574 +#define GL_INTERPOLATE_ARB 0x8575 +#define GL_SUBTRACT_ARB 0x84E7 +#define GL_CONSTANT_ARB 0x8576 +#define GL_PRIMARY_COLOR_ARB 0x8577 +#define GL_PREVIOUS_ARB 0x8578 +#endif /* GL_ARB_texture_env_combine */ + +#ifndef GL_ARB_texture_env_crossbar +#define GL_ARB_texture_env_crossbar 1 +#endif /* GL_ARB_texture_env_crossbar */ + +#ifndef GL_ARB_texture_env_dot3 +#define GL_ARB_texture_env_dot3 1 +#define GL_DOT3_RGB_ARB 0x86AE +#define GL_DOT3_RGBA_ARB 0x86AF +#endif /* GL_ARB_texture_env_dot3 */ + +#ifndef GL_ARB_texture_filter_anisotropic +#define GL_ARB_texture_filter_anisotropic 1 +#endif /* GL_ARB_texture_filter_anisotropic */ + +#ifndef GL_ARB_texture_filter_minmax +#define GL_ARB_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_ARB 0x9366 +#define GL_WEIGHTED_AVERAGE_ARB 0x9367 +#endif /* GL_ARB_texture_filter_minmax */ + +#ifndef GL_ARB_texture_float +#define GL_ARB_texture_float 1 +#define GL_TEXTURE_RED_TYPE_ARB 0x8C10 +#define GL_TEXTURE_GREEN_TYPE_ARB 0x8C11 +#define GL_TEXTURE_BLUE_TYPE_ARB 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE_ARB 0x8C13 +#define GL_TEXTURE_LUMINANCE_TYPE_ARB 0x8C14 +#define GL_TEXTURE_INTENSITY_TYPE_ARB 0x8C15 +#define GL_TEXTURE_DEPTH_TYPE_ARB 0x8C16 +#define GL_UNSIGNED_NORMALIZED_ARB 0x8C17 +#define GL_RGBA32F_ARB 0x8814 +#define GL_RGB32F_ARB 0x8815 +#define GL_ALPHA32F_ARB 0x8816 +#define GL_INTENSITY32F_ARB 0x8817 +#define GL_LUMINANCE32F_ARB 0x8818 +#define GL_LUMINANCE_ALPHA32F_ARB 0x8819 +#define GL_RGBA16F_ARB 0x881A +#define GL_RGB16F_ARB 0x881B +#define GL_ALPHA16F_ARB 0x881C +#define GL_INTENSITY16F_ARB 0x881D +#define GL_LUMINANCE16F_ARB 0x881E +#define GL_LUMINANCE_ALPHA16F_ARB 0x881F +#endif /* GL_ARB_texture_float */ + +#ifndef GL_ARB_texture_gather +#define GL_ARB_texture_gather 1 +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5F +#define GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS_ARB 0x8F9F +#endif /* GL_ARB_texture_gather */ + +#ifndef GL_ARB_texture_mirror_clamp_to_edge +#define GL_ARB_texture_mirror_clamp_to_edge 1 +#endif /* GL_ARB_texture_mirror_clamp_to_edge */ + +#ifndef GL_ARB_texture_mirrored_repeat +#define GL_ARB_texture_mirrored_repeat 1 +#define GL_MIRRORED_REPEAT_ARB 0x8370 +#endif /* GL_ARB_texture_mirrored_repeat */ + +#ifndef GL_ARB_texture_multisample +#define GL_ARB_texture_multisample 1 +#endif /* GL_ARB_texture_multisample */ + +#ifndef GL_ARB_texture_non_power_of_two +#define GL_ARB_texture_non_power_of_two 1 +#endif /* GL_ARB_texture_non_power_of_two */ + +#ifndef GL_ARB_texture_query_levels +#define GL_ARB_texture_query_levels 1 +#endif /* GL_ARB_texture_query_levels */ + +#ifndef GL_ARB_texture_query_lod +#define GL_ARB_texture_query_lod 1 +#endif /* GL_ARB_texture_query_lod */ + +#ifndef GL_ARB_texture_rectangle +#define GL_ARB_texture_rectangle 1 +#define GL_TEXTURE_RECTANGLE_ARB 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE_ARB 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE_ARB 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB 0x84F8 +#endif /* GL_ARB_texture_rectangle */ + +#ifndef GL_ARB_texture_rg +#define GL_ARB_texture_rg 1 +#endif /* GL_ARB_texture_rg */ + +#ifndef GL_ARB_texture_rgb10_a2ui +#define GL_ARB_texture_rgb10_a2ui 1 +#endif /* GL_ARB_texture_rgb10_a2ui */ + +#ifndef GL_ARB_texture_stencil8 +#define GL_ARB_texture_stencil8 1 +#endif /* GL_ARB_texture_stencil8 */ + +#ifndef GL_ARB_texture_storage +#define GL_ARB_texture_storage 1 +#endif /* GL_ARB_texture_storage */ + +#ifndef GL_ARB_texture_storage_multisample +#define GL_ARB_texture_storage_multisample 1 +#endif /* GL_ARB_texture_storage_multisample */ + +#ifndef GL_ARB_texture_swizzle +#define GL_ARB_texture_swizzle 1 +#endif /* GL_ARB_texture_swizzle */ + +#ifndef GL_ARB_texture_view +#define GL_ARB_texture_view 1 +#endif /* GL_ARB_texture_view */ + +#ifndef GL_ARB_timer_query +#define GL_ARB_timer_query 1 +#endif /* GL_ARB_timer_query */ + +#ifndef GL_ARB_transform_feedback2 +#define GL_ARB_transform_feedback2 1 +#endif /* GL_ARB_transform_feedback2 */ + +#ifndef GL_ARB_transform_feedback3 +#define GL_ARB_transform_feedback3 1 +#endif /* GL_ARB_transform_feedback3 */ + +#ifndef GL_ARB_transform_feedback_instanced +#define GL_ARB_transform_feedback_instanced 1 +#endif /* GL_ARB_transform_feedback_instanced */ + +#ifndef GL_ARB_transform_feedback_overflow_query +#define GL_ARB_transform_feedback_overflow_query 1 +#define GL_TRANSFORM_FEEDBACK_OVERFLOW_ARB 0x82EC +#define GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW_ARB 0x82ED +#endif /* GL_ARB_transform_feedback_overflow_query */ + +#ifndef GL_ARB_transpose_matrix +#define GL_ARB_transpose_matrix 1 +#define GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX_ARB 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX_ARB 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX_ARB 0x84E6 +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFARBPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDARBPROC) (const GLdouble *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFARBPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDARBPROC) (const GLdouble *m); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLoadTransposeMatrixfARB (const GLfloat *m); +GLAPI void APIENTRY glLoadTransposeMatrixdARB (const GLdouble *m); +GLAPI void APIENTRY glMultTransposeMatrixfARB (const GLfloat *m); +GLAPI void APIENTRY glMultTransposeMatrixdARB (const GLdouble *m); +#endif +#endif /* GL_ARB_transpose_matrix */ + +#ifndef GL_ARB_uniform_buffer_object +#define GL_ARB_uniform_buffer_object 1 +#endif /* GL_ARB_uniform_buffer_object */ + +#ifndef GL_ARB_vertex_array_bgra +#define GL_ARB_vertex_array_bgra 1 +#endif /* GL_ARB_vertex_array_bgra */ + +#ifndef GL_ARB_vertex_array_object +#define GL_ARB_vertex_array_object 1 +#endif /* GL_ARB_vertex_array_object */ + +#ifndef GL_ARB_vertex_attrib_64bit +#define GL_ARB_vertex_attrib_64bit 1 +#endif /* GL_ARB_vertex_attrib_64bit */ + +#ifndef GL_ARB_vertex_attrib_binding +#define GL_ARB_vertex_attrib_binding 1 +#endif /* GL_ARB_vertex_attrib_binding */ + +#ifndef GL_ARB_vertex_blend +#define GL_ARB_vertex_blend 1 +#define GL_MAX_VERTEX_UNITS_ARB 0x86A4 +#define GL_ACTIVE_VERTEX_UNITS_ARB 0x86A5 +#define GL_WEIGHT_SUM_UNITY_ARB 0x86A6 +#define GL_VERTEX_BLEND_ARB 0x86A7 +#define GL_CURRENT_WEIGHT_ARB 0x86A8 +#define GL_WEIGHT_ARRAY_TYPE_ARB 0x86A9 +#define GL_WEIGHT_ARRAY_STRIDE_ARB 0x86AA +#define GL_WEIGHT_ARRAY_SIZE_ARB 0x86AB +#define GL_WEIGHT_ARRAY_POINTER_ARB 0x86AC +#define GL_WEIGHT_ARRAY_ARB 0x86AD +#define GL_MODELVIEW0_ARB 0x1700 +#define GL_MODELVIEW1_ARB 0x850A +#define GL_MODELVIEW2_ARB 0x8722 +#define GL_MODELVIEW3_ARB 0x8723 +#define GL_MODELVIEW4_ARB 0x8724 +#define GL_MODELVIEW5_ARB 0x8725 +#define GL_MODELVIEW6_ARB 0x8726 +#define GL_MODELVIEW7_ARB 0x8727 +#define GL_MODELVIEW8_ARB 0x8728 +#define GL_MODELVIEW9_ARB 0x8729 +#define GL_MODELVIEW10_ARB 0x872A +#define GL_MODELVIEW11_ARB 0x872B +#define GL_MODELVIEW12_ARB 0x872C +#define GL_MODELVIEW13_ARB 0x872D +#define GL_MODELVIEW14_ARB 0x872E +#define GL_MODELVIEW15_ARB 0x872F +#define GL_MODELVIEW16_ARB 0x8730 +#define GL_MODELVIEW17_ARB 0x8731 +#define GL_MODELVIEW18_ARB 0x8732 +#define GL_MODELVIEW19_ARB 0x8733 +#define GL_MODELVIEW20_ARB 0x8734 +#define GL_MODELVIEW21_ARB 0x8735 +#define GL_MODELVIEW22_ARB 0x8736 +#define GL_MODELVIEW23_ARB 0x8737 +#define GL_MODELVIEW24_ARB 0x8738 +#define GL_MODELVIEW25_ARB 0x8739 +#define GL_MODELVIEW26_ARB 0x873A +#define GL_MODELVIEW27_ARB 0x873B +#define GL_MODELVIEW28_ARB 0x873C +#define GL_MODELVIEW29_ARB 0x873D +#define GL_MODELVIEW30_ARB 0x873E +#define GL_MODELVIEW31_ARB 0x873F +typedef void (APIENTRYP PFNGLWEIGHTBVARBPROC) (GLint size, const GLbyte *weights); +typedef void (APIENTRYP PFNGLWEIGHTSVARBPROC) (GLint size, const GLshort *weights); +typedef void (APIENTRYP PFNGLWEIGHTIVARBPROC) (GLint size, const GLint *weights); +typedef void (APIENTRYP PFNGLWEIGHTFVARBPROC) (GLint size, const GLfloat *weights); +typedef void (APIENTRYP PFNGLWEIGHTDVARBPROC) (GLint size, const GLdouble *weights); +typedef void (APIENTRYP PFNGLWEIGHTUBVARBPROC) (GLint size, const GLubyte *weights); +typedef void (APIENTRYP PFNGLWEIGHTUSVARBPROC) (GLint size, const GLushort *weights); +typedef void (APIENTRYP PFNGLWEIGHTUIVARBPROC) (GLint size, const GLuint *weights); +typedef void (APIENTRYP PFNGLWEIGHTPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLVERTEXBLENDARBPROC) (GLint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWeightbvARB (GLint size, const GLbyte *weights); +GLAPI void APIENTRY glWeightsvARB (GLint size, const GLshort *weights); +GLAPI void APIENTRY glWeightivARB (GLint size, const GLint *weights); +GLAPI void APIENTRY glWeightfvARB (GLint size, const GLfloat *weights); +GLAPI void APIENTRY glWeightdvARB (GLint size, const GLdouble *weights); +GLAPI void APIENTRY glWeightubvARB (GLint size, const GLubyte *weights); +GLAPI void APIENTRY glWeightusvARB (GLint size, const GLushort *weights); +GLAPI void APIENTRY glWeightuivARB (GLint size, const GLuint *weights); +GLAPI void APIENTRY glWeightPointerARB (GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glVertexBlendARB (GLint count); +#endif +#endif /* GL_ARB_vertex_blend */ + +#ifndef GL_ARB_vertex_buffer_object +#define GL_ARB_vertex_buffer_object 1 +typedef khronos_ssize_t GLsizeiptrARB; +typedef khronos_intptr_t GLintptrARB; +#define GL_BUFFER_SIZE_ARB 0x8764 +#define GL_BUFFER_USAGE_ARB 0x8765 +#define GL_ARRAY_BUFFER_ARB 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER_ARB 0x8893 +#define GL_ARRAY_BUFFER_BINDING_ARB 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB 0x8895 +#define GL_VERTEX_ARRAY_BUFFER_BINDING_ARB 0x8896 +#define GL_NORMAL_ARRAY_BUFFER_BINDING_ARB 0x8897 +#define GL_COLOR_ARRAY_BUFFER_BINDING_ARB 0x8898 +#define GL_INDEX_ARRAY_BUFFER_BINDING_ARB 0x8899 +#define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB 0x889A +#define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB 0x889B +#define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB 0x889C +#define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB 0x889D +#define GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB 0x889E +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB 0x889F +#define GL_READ_ONLY_ARB 0x88B8 +#define GL_WRITE_ONLY_ARB 0x88B9 +#define GL_READ_WRITE_ARB 0x88BA +#define GL_BUFFER_ACCESS_ARB 0x88BB +#define GL_BUFFER_MAPPED_ARB 0x88BC +#define GL_BUFFER_MAP_POINTER_ARB 0x88BD +#define GL_STREAM_DRAW_ARB 0x88E0 +#define GL_STREAM_READ_ARB 0x88E1 +#define GL_STREAM_COPY_ARB 0x88E2 +#define GL_STATIC_DRAW_ARB 0x88E4 +#define GL_STATIC_READ_ARB 0x88E5 +#define GL_STATIC_COPY_ARB 0x88E6 +#define GL_DYNAMIC_DRAW_ARB 0x88E8 +#define GL_DYNAMIC_READ_ARB 0x88E9 +#define GL_DYNAMIC_COPY_ARB 0x88EA +typedef void (APIENTRYP PFNGLBINDBUFFERARBPROC) (GLenum target, GLuint buffer); +typedef void (APIENTRYP PFNGLDELETEBUFFERSARBPROC) (GLsizei n, const GLuint *buffers); +typedef void (APIENTRYP PFNGLGENBUFFERSARBPROC) (GLsizei n, GLuint *buffers); +typedef GLboolean (APIENTRYP PFNGLISBUFFERARBPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLBUFFERDATAARBPROC) (GLenum target, GLsizeiptrARB size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const void *data); +typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, void *data); +typedef void *(APIENTRYP PFNGLMAPBUFFERARBPROC) (GLenum target, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERARBPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVARBPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindBufferARB (GLenum target, GLuint buffer); +GLAPI void APIENTRY glDeleteBuffersARB (GLsizei n, const GLuint *buffers); +GLAPI void APIENTRY glGenBuffersARB (GLsizei n, GLuint *buffers); +GLAPI GLboolean APIENTRY glIsBufferARB (GLuint buffer); +GLAPI void APIENTRY glBufferDataARB (GLenum target, GLsizeiptrARB size, const void *data, GLenum usage); +GLAPI void APIENTRY glBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const void *data); +GLAPI void APIENTRY glGetBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, void *data); +GLAPI void *APIENTRY glMapBufferARB (GLenum target, GLenum access); +GLAPI GLboolean APIENTRY glUnmapBufferARB (GLenum target); +GLAPI void APIENTRY glGetBufferParameterivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetBufferPointervARB (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_ARB_vertex_buffer_object */ + +#ifndef GL_ARB_vertex_program +#define GL_ARB_vertex_program 1 +#define GL_COLOR_SUM_ARB 0x8458 +#define GL_VERTEX_PROGRAM_ARB 0x8620 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB_ARB 0x8626 +#define GL_VERTEX_PROGRAM_POINT_SIZE_ARB 0x8642 +#define GL_VERTEX_PROGRAM_TWO_SIDE_ARB 0x8643 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB 0x8645 +#define GL_MAX_VERTEX_ATTRIBS_ARB 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB 0x886A +#define GL_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B0 +#define GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B1 +#define GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B2 +#define GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B3 +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DARBPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FARBPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SARBPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DARBPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FARBPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SARBPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVARBPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVARBPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBARBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVARBPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVARBPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVARBPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVARBPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVARBPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVARBPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVARBPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVARBPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERARBPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVARBPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVARBPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVARBPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVARBPROC) (GLuint index, GLenum pname, void **pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttrib1dARB (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1fARB (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1sARB (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2dARB (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2fARB (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2sARB (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3dARB (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3fARB (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3sARB (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4NbvARB (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4NivARB (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4NsvARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4NubARB (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4NubvARB (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4NuivARB (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4NusvARB (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttrib4bvARB (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4dARB (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4fARB (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4ivARB (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4sARB (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubvARB (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4uivARB (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4usvARB (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribPointerARB (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glEnableVertexAttribArrayARB (GLuint index); +GLAPI void APIENTRY glDisableVertexAttribArrayARB (GLuint index); +GLAPI void APIENTRY glGetVertexAttribdvARB (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfvARB (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribivARB (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointervARB (GLuint index, GLenum pname, void **pointer); +#endif +#endif /* GL_ARB_vertex_program */ + +#ifndef GL_ARB_vertex_shader +#define GL_ARB_vertex_shader 1 +#define GL_VERTEX_SHADER_ARB 0x8B31 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB 0x8B4A +#define GL_MAX_VARYING_FLOATS_ARB 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB 0x8B4D +#define GL_OBJECT_ACTIVE_ATTRIBUTES_ARB 0x8B89 +#define GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB 0x8B8A +typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONARBPROC) (GLhandleARB programObj, GLuint index, const GLcharARB *name); +typedef void (APIENTRYP PFNGLGETACTIVEATTRIBARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindAttribLocationARB (GLhandleARB programObj, GLuint index, const GLcharARB *name); +GLAPI void APIENTRY glGetActiveAttribARB (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +GLAPI GLint APIENTRY glGetAttribLocationARB (GLhandleARB programObj, const GLcharARB *name); +#endif +#endif /* GL_ARB_vertex_shader */ + +#ifndef GL_ARB_vertex_type_10f_11f_11f_rev +#define GL_ARB_vertex_type_10f_11f_11f_rev 1 +#endif /* GL_ARB_vertex_type_10f_11f_11f_rev */ + +#ifndef GL_ARB_vertex_type_2_10_10_10_rev +#define GL_ARB_vertex_type_2_10_10_10_rev 1 +#endif /* GL_ARB_vertex_type_2_10_10_10_rev */ + +#ifndef GL_ARB_viewport_array +#define GL_ARB_viewport_array 1 +typedef void (APIENTRYP PFNGLDEPTHRANGEARRAYDVNVPROC) (GLuint first, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEINDEXEDDNVPROC) (GLuint index, GLdouble n, GLdouble f); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthRangeArraydvNV (GLuint first, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glDepthRangeIndexeddNV (GLuint index, GLdouble n, GLdouble f); +#endif +#endif /* GL_ARB_viewport_array */ + +#ifndef GL_ARB_window_pos +#define GL_ARB_window_pos 1 +typedef void (APIENTRYP PFNGLWINDOWPOS2DARBPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVARBPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FARBPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVARBPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IARBPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVARBPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SARBPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVARBPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DARBPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVARBPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FARBPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVARBPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IARBPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVARBPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SARBPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVARBPROC) (const GLshort *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowPos2dARB (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dvARB (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2fARB (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fvARB (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2iARB (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2ivARB (const GLint *v); +GLAPI void APIENTRY glWindowPos2sARB (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2svARB (const GLshort *v); +GLAPI void APIENTRY glWindowPos3dARB (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dvARB (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3fARB (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fvARB (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3iARB (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3ivARB (const GLint *v); +GLAPI void APIENTRY glWindowPos3sARB (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3svARB (const GLshort *v); +#endif +#endif /* GL_ARB_window_pos */ + +#ifndef GL_KHR_blend_equation_advanced +#define GL_KHR_blend_equation_advanced 1 +#define GL_MULTIPLY_KHR 0x9294 +#define GL_SCREEN_KHR 0x9295 +#define GL_OVERLAY_KHR 0x9296 +#define GL_DARKEN_KHR 0x9297 +#define GL_LIGHTEN_KHR 0x9298 +#define GL_COLORDODGE_KHR 0x9299 +#define GL_COLORBURN_KHR 0x929A +#define GL_HARDLIGHT_KHR 0x929B +#define GL_SOFTLIGHT_KHR 0x929C +#define GL_DIFFERENCE_KHR 0x929E +#define GL_EXCLUSION_KHR 0x92A0 +#define GL_HSL_HUE_KHR 0x92AD +#define GL_HSL_SATURATION_KHR 0x92AE +#define GL_HSL_COLOR_KHR 0x92AF +#define GL_HSL_LUMINOSITY_KHR 0x92B0 +typedef void (APIENTRYP PFNGLBLENDBARRIERKHRPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendBarrierKHR (void); +#endif +#endif /* GL_KHR_blend_equation_advanced */ + +#ifndef GL_KHR_blend_equation_advanced_coherent +#define GL_KHR_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_KHR 0x9285 +#endif /* GL_KHR_blend_equation_advanced_coherent */ + +#ifndef GL_KHR_context_flush_control +#define GL_KHR_context_flush_control 1 +#endif /* GL_KHR_context_flush_control */ + +#ifndef GL_KHR_debug +#define GL_KHR_debug 1 +#endif /* GL_KHR_debug */ + +#ifndef GL_KHR_no_error +#define GL_KHR_no_error 1 +#define GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 +#endif /* GL_KHR_no_error */ + +#ifndef GL_KHR_parallel_shader_compile +#define GL_KHR_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_KHR 0x91B0 +#define GL_COMPLETION_STATUS_KHR 0x91B1 +typedef void (APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSKHRPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMaxShaderCompilerThreadsKHR (GLuint count); +#endif +#endif /* GL_KHR_parallel_shader_compile */ + +#ifndef GL_KHR_robust_buffer_access_behavior +#define GL_KHR_robust_buffer_access_behavior 1 +#endif /* GL_KHR_robust_buffer_access_behavior */ + +#ifndef GL_KHR_robustness +#define GL_KHR_robustness 1 +#define GL_CONTEXT_ROBUST_ACCESS 0x90F3 +#endif /* GL_KHR_robustness */ + +#ifndef GL_KHR_shader_subgroup +#define GL_KHR_shader_subgroup 1 +#define GL_SUBGROUP_SIZE_KHR 0x9532 +#define GL_SUBGROUP_SUPPORTED_STAGES_KHR 0x9533 +#define GL_SUBGROUP_SUPPORTED_FEATURES_KHR 0x9534 +#define GL_SUBGROUP_QUAD_ALL_STAGES_KHR 0x9535 +#define GL_SUBGROUP_FEATURE_BASIC_BIT_KHR 0x00000001 +#define GL_SUBGROUP_FEATURE_VOTE_BIT_KHR 0x00000002 +#define GL_SUBGROUP_FEATURE_ARITHMETIC_BIT_KHR 0x00000004 +#define GL_SUBGROUP_FEATURE_BALLOT_BIT_KHR 0x00000008 +#define GL_SUBGROUP_FEATURE_SHUFFLE_BIT_KHR 0x00000010 +#define GL_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT_KHR 0x00000020 +#define GL_SUBGROUP_FEATURE_CLUSTERED_BIT_KHR 0x00000040 +#define GL_SUBGROUP_FEATURE_QUAD_BIT_KHR 0x00000080 +#endif /* GL_KHR_shader_subgroup */ + +#ifndef GL_KHR_texture_compression_astc_hdr +#define GL_KHR_texture_compression_astc_hdr 1 +#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 +#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1 +#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2 +#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3 +#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4 +#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5 +#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6 +#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7 +#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8 +#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 +#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA +#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB +#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC +#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD +#endif /* GL_KHR_texture_compression_astc_hdr */ + +#ifndef GL_KHR_texture_compression_astc_ldr +#define GL_KHR_texture_compression_astc_ldr 1 +#endif /* GL_KHR_texture_compression_astc_ldr */ + +#ifndef GL_KHR_texture_compression_astc_sliced_3d +#define GL_KHR_texture_compression_astc_sliced_3d 1 +#endif /* GL_KHR_texture_compression_astc_sliced_3d */ + +#ifndef GL_OES_byte_coordinates +#define GL_OES_byte_coordinates 1 +typedef void (APIENTRYP PFNGLMULTITEXCOORD1BOESPROC) (GLenum texture, GLbyte s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2BOESPROC) (GLenum texture, GLbyte s, GLbyte t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3BOESPROC) (GLenum texture, GLbyte s, GLbyte t, GLbyte r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4BOESPROC) (GLenum texture, GLbyte s, GLbyte t, GLbyte r, GLbyte q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD1BOESPROC) (GLbyte s); +typedef void (APIENTRYP PFNGLTEXCOORD1BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD2BOESPROC) (GLbyte s, GLbyte t); +typedef void (APIENTRYP PFNGLTEXCOORD2BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD3BOESPROC) (GLbyte s, GLbyte t, GLbyte r); +typedef void (APIENTRYP PFNGLTEXCOORD3BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD4BOESPROC) (GLbyte s, GLbyte t, GLbyte r, GLbyte q); +typedef void (APIENTRYP PFNGLTEXCOORD4BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLVERTEX2BOESPROC) (GLbyte x, GLbyte y); +typedef void (APIENTRYP PFNGLVERTEX2BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLVERTEX3BOESPROC) (GLbyte x, GLbyte y, GLbyte z); +typedef void (APIENTRYP PFNGLVERTEX3BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLVERTEX4BOESPROC) (GLbyte x, GLbyte y, GLbyte z, GLbyte w); +typedef void (APIENTRYP PFNGLVERTEX4BVOESPROC) (const GLbyte *coords); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiTexCoord1bOES (GLenum texture, GLbyte s); +GLAPI void APIENTRY glMultiTexCoord1bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glMultiTexCoord2bOES (GLenum texture, GLbyte s, GLbyte t); +GLAPI void APIENTRY glMultiTexCoord2bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glMultiTexCoord3bOES (GLenum texture, GLbyte s, GLbyte t, GLbyte r); +GLAPI void APIENTRY glMultiTexCoord3bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glMultiTexCoord4bOES (GLenum texture, GLbyte s, GLbyte t, GLbyte r, GLbyte q); +GLAPI void APIENTRY glMultiTexCoord4bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glTexCoord1bOES (GLbyte s); +GLAPI void APIENTRY glTexCoord1bvOES (const GLbyte *coords); +GLAPI void APIENTRY glTexCoord2bOES (GLbyte s, GLbyte t); +GLAPI void APIENTRY glTexCoord2bvOES (const GLbyte *coords); +GLAPI void APIENTRY glTexCoord3bOES (GLbyte s, GLbyte t, GLbyte r); +GLAPI void APIENTRY glTexCoord3bvOES (const GLbyte *coords); +GLAPI void APIENTRY glTexCoord4bOES (GLbyte s, GLbyte t, GLbyte r, GLbyte q); +GLAPI void APIENTRY glTexCoord4bvOES (const GLbyte *coords); +GLAPI void APIENTRY glVertex2bOES (GLbyte x, GLbyte y); +GLAPI void APIENTRY glVertex2bvOES (const GLbyte *coords); +GLAPI void APIENTRY glVertex3bOES (GLbyte x, GLbyte y, GLbyte z); +GLAPI void APIENTRY glVertex3bvOES (const GLbyte *coords); +GLAPI void APIENTRY glVertex4bOES (GLbyte x, GLbyte y, GLbyte z, GLbyte w); +GLAPI void APIENTRY glVertex4bvOES (const GLbyte *coords); +#endif +#endif /* GL_OES_byte_coordinates */ + +#ifndef GL_OES_compressed_paletted_texture +#define GL_OES_compressed_paletted_texture 1 +#define GL_PALETTE4_RGB8_OES 0x8B90 +#define GL_PALETTE4_RGBA8_OES 0x8B91 +#define GL_PALETTE4_R5_G6_B5_OES 0x8B92 +#define GL_PALETTE4_RGBA4_OES 0x8B93 +#define GL_PALETTE4_RGB5_A1_OES 0x8B94 +#define GL_PALETTE8_RGB8_OES 0x8B95 +#define GL_PALETTE8_RGBA8_OES 0x8B96 +#define GL_PALETTE8_R5_G6_B5_OES 0x8B97 +#define GL_PALETTE8_RGBA4_OES 0x8B98 +#define GL_PALETTE8_RGB5_A1_OES 0x8B99 +#endif /* GL_OES_compressed_paletted_texture */ + +#ifndef GL_OES_fixed_point +#define GL_OES_fixed_point 1 +typedef khronos_int32_t GLfixed; +#define GL_FIXED_OES 0x140C +typedef void (APIENTRYP PFNGLALPHAFUNCXOESPROC) (GLenum func, GLfixed ref); +typedef void (APIENTRYP PFNGLCLEARCOLORXOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLCLEARDEPTHXOESPROC) (GLfixed depth); +typedef void (APIENTRYP PFNGLCLIPPLANEXOESPROC) (GLenum plane, const GLfixed *equation); +typedef void (APIENTRYP PFNGLCOLOR4XOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLDEPTHRANGEXOESPROC) (GLfixed n, GLfixed f); +typedef void (APIENTRYP PFNGLFOGXOESPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLFOGXVOESPROC) (GLenum pname, const GLfixed *param); +typedef void (APIENTRYP PFNGLFRUSTUMXOESPROC) (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +typedef void (APIENTRYP PFNGLGETCLIPPLANEXOESPROC) (GLenum plane, GLfixed *equation); +typedef void (APIENTRYP PFNGLGETFIXEDVOESPROC) (GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETTEXENVXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLLIGHTMODELXOESPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLLIGHTMODELXVOESPROC) (GLenum pname, const GLfixed *param); +typedef void (APIENTRYP PFNGLLIGHTXOESPROC) (GLenum light, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLLIGHTXVOESPROC) (GLenum light, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLLINEWIDTHXOESPROC) (GLfixed width); +typedef void (APIENTRYP PFNGLLOADMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMATERIALXOESPROC) (GLenum face, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLMATERIALXVOESPROC) (GLenum face, GLenum pname, const GLfixed *param); +typedef void (APIENTRYP PFNGLMULTMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4XOESPROC) (GLenum texture, GLfixed s, GLfixed t, GLfixed r, GLfixed q); +typedef void (APIENTRYP PFNGLNORMAL3XOESPROC) (GLfixed nx, GLfixed ny, GLfixed nz); +typedef void (APIENTRYP PFNGLORTHOXOESPROC) (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +typedef void (APIENTRYP PFNGLPOINTPARAMETERXVOESPROC) (GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLPOINTSIZEXOESPROC) (GLfixed size); +typedef void (APIENTRYP PFNGLPOLYGONOFFSETXOESPROC) (GLfixed factor, GLfixed units); +typedef void (APIENTRYP PFNGLROTATEXOESPROC) (GLfixed angle, GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLSCALEXOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLTEXENVXOESPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLTEXENVXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERXOESPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLTEXPARAMETERXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLTRANSLATEXOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLACCUMXOESPROC) (GLenum op, GLfixed value); +typedef void (APIENTRYP PFNGLBITMAPXOESPROC) (GLsizei width, GLsizei height, GLfixed xorig, GLfixed yorig, GLfixed xmove, GLfixed ymove, const GLubyte *bitmap); +typedef void (APIENTRYP PFNGLBLENDCOLORXOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLCLEARACCUMXOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLCOLOR3XOESPROC) (GLfixed red, GLfixed green, GLfixed blue); +typedef void (APIENTRYP PFNGLCOLOR3XVOESPROC) (const GLfixed *components); +typedef void (APIENTRYP PFNGLCOLOR4XVOESPROC) (const GLfixed *components); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERXOESPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLEVALCOORD1XOESPROC) (GLfixed u); +typedef void (APIENTRYP PFNGLEVALCOORD1XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLEVALCOORD2XOESPROC) (GLfixed u, GLfixed v); +typedef void (APIENTRYP PFNGLEVALCOORD2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLFEEDBACKBUFFERXOESPROC) (GLsizei n, GLenum type, const GLfixed *buffer); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETLIGHTXOESPROC) (GLenum light, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETMAPXVOESPROC) (GLenum target, GLenum query, GLfixed *v); +typedef void (APIENTRYP PFNGLGETMATERIALXOESPROC) (GLenum face, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLGETPIXELMAPXVPROC) (GLenum map, GLint size, GLfixed *values); +typedef void (APIENTRYP PFNGLGETTEXGENXVOESPROC) (GLenum coord, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERXVOESPROC) (GLenum target, GLint level, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLINDEXXOESPROC) (GLfixed component); +typedef void (APIENTRYP PFNGLINDEXXVOESPROC) (const GLfixed *component); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMAP1XOESPROC) (GLenum target, GLfixed u1, GLfixed u2, GLint stride, GLint order, GLfixed points); +typedef void (APIENTRYP PFNGLMAP2XOESPROC) (GLenum target, GLfixed u1, GLfixed u2, GLint ustride, GLint uorder, GLfixed v1, GLfixed v2, GLint vstride, GLint vorder, GLfixed points); +typedef void (APIENTRYP PFNGLMAPGRID1XOESPROC) (GLint n, GLfixed u1, GLfixed u2); +typedef void (APIENTRYP PFNGLMAPGRID2XOESPROC) (GLint n, GLfixed u1, GLfixed u2, GLfixed v1, GLfixed v2); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1XOESPROC) (GLenum texture, GLfixed s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2XOESPROC) (GLenum texture, GLfixed s, GLfixed t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3XOESPROC) (GLenum texture, GLfixed s, GLfixed t, GLfixed r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLNORMAL3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLPASSTHROUGHXOESPROC) (GLfixed token); +typedef void (APIENTRYP PFNGLPIXELMAPXPROC) (GLenum map, GLint size, const GLfixed *values); +typedef void (APIENTRYP PFNGLPIXELSTOREXPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLPIXELTRANSFERXOESPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLPIXELZOOMXOESPROC) (GLfixed xfactor, GLfixed yfactor); +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESXOESPROC) (GLsizei n, const GLuint *textures, const GLfixed *priorities); +typedef void (APIENTRYP PFNGLRASTERPOS2XOESPROC) (GLfixed x, GLfixed y); +typedef void (APIENTRYP PFNGLRASTERPOS2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLRASTERPOS3XOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLRASTERPOS3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLRASTERPOS4XOESPROC) (GLfixed x, GLfixed y, GLfixed z, GLfixed w); +typedef void (APIENTRYP PFNGLRASTERPOS4XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLRECTXOESPROC) (GLfixed x1, GLfixed y1, GLfixed x2, GLfixed y2); +typedef void (APIENTRYP PFNGLRECTXVOESPROC) (const GLfixed *v1, const GLfixed *v2); +typedef void (APIENTRYP PFNGLTEXCOORD1XOESPROC) (GLfixed s); +typedef void (APIENTRYP PFNGLTEXCOORD1XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXCOORD2XOESPROC) (GLfixed s, GLfixed t); +typedef void (APIENTRYP PFNGLTEXCOORD2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXCOORD3XOESPROC) (GLfixed s, GLfixed t, GLfixed r); +typedef void (APIENTRYP PFNGLTEXCOORD3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXCOORD4XOESPROC) (GLfixed s, GLfixed t, GLfixed r, GLfixed q); +typedef void (APIENTRYP PFNGLTEXCOORD4XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXGENXOESPROC) (GLenum coord, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLTEXGENXVOESPROC) (GLenum coord, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLVERTEX2XOESPROC) (GLfixed x); +typedef void (APIENTRYP PFNGLVERTEX2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLVERTEX3XOESPROC) (GLfixed x, GLfixed y); +typedef void (APIENTRYP PFNGLVERTEX3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLVERTEX4XOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLVERTEX4XVOESPROC) (const GLfixed *coords); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAlphaFuncxOES (GLenum func, GLfixed ref); +GLAPI void APIENTRY glClearColorxOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glClearDepthxOES (GLfixed depth); +GLAPI void APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation); +GLAPI void APIENTRY glColor4xOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glDepthRangexOES (GLfixed n, GLfixed f); +GLAPI void APIENTRY glFogxOES (GLenum pname, GLfixed param); +GLAPI void APIENTRY glFogxvOES (GLenum pname, const GLfixed *param); +GLAPI void APIENTRY glFrustumxOES (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +GLAPI void APIENTRY glGetClipPlanexOES (GLenum plane, GLfixed *equation); +GLAPI void APIENTRY glGetFixedvOES (GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetTexEnvxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetTexParameterxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glLightModelxOES (GLenum pname, GLfixed param); +GLAPI void APIENTRY glLightModelxvOES (GLenum pname, const GLfixed *param); +GLAPI void APIENTRY glLightxOES (GLenum light, GLenum pname, GLfixed param); +GLAPI void APIENTRY glLightxvOES (GLenum light, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glLineWidthxOES (GLfixed width); +GLAPI void APIENTRY glLoadMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMaterialxOES (GLenum face, GLenum pname, GLfixed param); +GLAPI void APIENTRY glMaterialxvOES (GLenum face, GLenum pname, const GLfixed *param); +GLAPI void APIENTRY glMultMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMultiTexCoord4xOES (GLenum texture, GLfixed s, GLfixed t, GLfixed r, GLfixed q); +GLAPI void APIENTRY glNormal3xOES (GLfixed nx, GLfixed ny, GLfixed nz); +GLAPI void APIENTRY glOrthoxOES (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +GLAPI void APIENTRY glPointParameterxvOES (GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glPointSizexOES (GLfixed size); +GLAPI void APIENTRY glPolygonOffsetxOES (GLfixed factor, GLfixed units); +GLAPI void APIENTRY glRotatexOES (GLfixed angle, GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glScalexOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glTexEnvxOES (GLenum target, GLenum pname, GLfixed param); +GLAPI void APIENTRY glTexEnvxvOES (GLenum target, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glTexParameterxOES (GLenum target, GLenum pname, GLfixed param); +GLAPI void APIENTRY glTexParameterxvOES (GLenum target, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glTranslatexOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glAccumxOES (GLenum op, GLfixed value); +GLAPI void APIENTRY glBitmapxOES (GLsizei width, GLsizei height, GLfixed xorig, GLfixed yorig, GLfixed xmove, GLfixed ymove, const GLubyte *bitmap); +GLAPI void APIENTRY glBlendColorxOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glClearAccumxOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glColor3xOES (GLfixed red, GLfixed green, GLfixed blue); +GLAPI void APIENTRY glColor3xvOES (const GLfixed *components); +GLAPI void APIENTRY glColor4xvOES (const GLfixed *components); +GLAPI void APIENTRY glConvolutionParameterxOES (GLenum target, GLenum pname, GLfixed param); +GLAPI void APIENTRY glConvolutionParameterxvOES (GLenum target, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glEvalCoord1xOES (GLfixed u); +GLAPI void APIENTRY glEvalCoord1xvOES (const GLfixed *coords); +GLAPI void APIENTRY glEvalCoord2xOES (GLfixed u, GLfixed v); +GLAPI void APIENTRY glEvalCoord2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glFeedbackBufferxOES (GLsizei n, GLenum type, const GLfixed *buffer); +GLAPI void APIENTRY glGetConvolutionParameterxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetHistogramParameterxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetLightxOES (GLenum light, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetMapxvOES (GLenum target, GLenum query, GLfixed *v); +GLAPI void APIENTRY glGetMaterialxOES (GLenum face, GLenum pname, GLfixed param); +GLAPI void APIENTRY glGetPixelMapxv (GLenum map, GLint size, GLfixed *values); +GLAPI void APIENTRY glGetTexGenxvOES (GLenum coord, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetTexLevelParameterxvOES (GLenum target, GLint level, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glIndexxOES (GLfixed component); +GLAPI void APIENTRY glIndexxvOES (const GLfixed *component); +GLAPI void APIENTRY glLoadTransposeMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMap1xOES (GLenum target, GLfixed u1, GLfixed u2, GLint stride, GLint order, GLfixed points); +GLAPI void APIENTRY glMap2xOES (GLenum target, GLfixed u1, GLfixed u2, GLint ustride, GLint uorder, GLfixed v1, GLfixed v2, GLint vstride, GLint vorder, GLfixed points); +GLAPI void APIENTRY glMapGrid1xOES (GLint n, GLfixed u1, GLfixed u2); +GLAPI void APIENTRY glMapGrid2xOES (GLint n, GLfixed u1, GLfixed u2, GLfixed v1, GLfixed v2); +GLAPI void APIENTRY glMultTransposeMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMultiTexCoord1xOES (GLenum texture, GLfixed s); +GLAPI void APIENTRY glMultiTexCoord1xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glMultiTexCoord2xOES (GLenum texture, GLfixed s, GLfixed t); +GLAPI void APIENTRY glMultiTexCoord2xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glMultiTexCoord3xOES (GLenum texture, GLfixed s, GLfixed t, GLfixed r); +GLAPI void APIENTRY glMultiTexCoord3xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glMultiTexCoord4xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glNormal3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glPassThroughxOES (GLfixed token); +GLAPI void APIENTRY glPixelMapx (GLenum map, GLint size, const GLfixed *values); +GLAPI void APIENTRY glPixelStorex (GLenum pname, GLfixed param); +GLAPI void APIENTRY glPixelTransferxOES (GLenum pname, GLfixed param); +GLAPI void APIENTRY glPixelZoomxOES (GLfixed xfactor, GLfixed yfactor); +GLAPI void APIENTRY glPrioritizeTexturesxOES (GLsizei n, const GLuint *textures, const GLfixed *priorities); +GLAPI void APIENTRY glRasterPos2xOES (GLfixed x, GLfixed y); +GLAPI void APIENTRY glRasterPos2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glRasterPos3xOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glRasterPos3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glRasterPos4xOES (GLfixed x, GLfixed y, GLfixed z, GLfixed w); +GLAPI void APIENTRY glRasterPos4xvOES (const GLfixed *coords); +GLAPI void APIENTRY glRectxOES (GLfixed x1, GLfixed y1, GLfixed x2, GLfixed y2); +GLAPI void APIENTRY glRectxvOES (const GLfixed *v1, const GLfixed *v2); +GLAPI void APIENTRY glTexCoord1xOES (GLfixed s); +GLAPI void APIENTRY glTexCoord1xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexCoord2xOES (GLfixed s, GLfixed t); +GLAPI void APIENTRY glTexCoord2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexCoord3xOES (GLfixed s, GLfixed t, GLfixed r); +GLAPI void APIENTRY glTexCoord3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexCoord4xOES (GLfixed s, GLfixed t, GLfixed r, GLfixed q); +GLAPI void APIENTRY glTexCoord4xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexGenxOES (GLenum coord, GLenum pname, GLfixed param); +GLAPI void APIENTRY glTexGenxvOES (GLenum coord, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glVertex2xOES (GLfixed x); +GLAPI void APIENTRY glVertex2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glVertex3xOES (GLfixed x, GLfixed y); +GLAPI void APIENTRY glVertex3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glVertex4xOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glVertex4xvOES (const GLfixed *coords); +#endif +#endif /* GL_OES_fixed_point */ + +#ifndef GL_OES_query_matrix +#define GL_OES_query_matrix 1 +typedef GLbitfield (APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed *mantissa, GLint *exponent); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLbitfield APIENTRY glQueryMatrixxOES (GLfixed *mantissa, GLint *exponent); +#endif +#endif /* GL_OES_query_matrix */ + +#ifndef GL_OES_read_format +#define GL_OES_read_format 1 +#define GL_IMPLEMENTATION_COLOR_READ_TYPE_OES 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES 0x8B9B +#endif /* GL_OES_read_format */ + +#ifndef GL_OES_single_precision +#define GL_OES_single_precision 1 +typedef void (APIENTRYP PFNGLCLEARDEPTHFOESPROC) (GLclampf depth); +typedef void (APIENTRYP PFNGLCLIPPLANEFOESPROC) (GLenum plane, const GLfloat *equation); +typedef void (APIENTRYP PFNGLDEPTHRANGEFOESPROC) (GLclampf n, GLclampf f); +typedef void (APIENTRYP PFNGLFRUSTUMFOESPROC) (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +typedef void (APIENTRYP PFNGLGETCLIPPLANEFOESPROC) (GLenum plane, GLfloat *equation); +typedef void (APIENTRYP PFNGLORTHOFOESPROC) (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClearDepthfOES (GLclampf depth); +GLAPI void APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation); +GLAPI void APIENTRY glDepthRangefOES (GLclampf n, GLclampf f); +GLAPI void APIENTRY glFrustumfOES (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +GLAPI void APIENTRY glGetClipPlanefOES (GLenum plane, GLfloat *equation); +GLAPI void APIENTRY glOrthofOES (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +#endif +#endif /* GL_OES_single_precision */ + +#ifndef GL_3DFX_multisample +#define GL_3DFX_multisample 1 +#define GL_MULTISAMPLE_3DFX 0x86B2 +#define GL_SAMPLE_BUFFERS_3DFX 0x86B3 +#define GL_SAMPLES_3DFX 0x86B4 +#define GL_MULTISAMPLE_BIT_3DFX 0x20000000 +#endif /* GL_3DFX_multisample */ + +#ifndef GL_3DFX_tbuffer +#define GL_3DFX_tbuffer 1 +typedef void (APIENTRYP PFNGLTBUFFERMASK3DFXPROC) (GLuint mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTbufferMask3DFX (GLuint mask); +#endif +#endif /* GL_3DFX_tbuffer */ + +#ifndef GL_3DFX_texture_compression_FXT1 +#define GL_3DFX_texture_compression_FXT1 1 +#define GL_COMPRESSED_RGB_FXT1_3DFX 0x86B0 +#define GL_COMPRESSED_RGBA_FXT1_3DFX 0x86B1 +#endif /* GL_3DFX_texture_compression_FXT1 */ + +#ifndef GL_AMD_blend_minmax_factor +#define GL_AMD_blend_minmax_factor 1 +#define GL_FACTOR_MIN_AMD 0x901C +#define GL_FACTOR_MAX_AMD 0x901D +#endif /* GL_AMD_blend_minmax_factor */ + +#ifndef GL_AMD_conservative_depth +#define GL_AMD_conservative_depth 1 +#endif /* GL_AMD_conservative_depth */ + +#ifndef GL_AMD_debug_output +#define GL_AMD_debug_output 1 +typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,GLenum category,GLenum severity,GLsizei length,const GLchar *message,void *userParam); +#define GL_MAX_DEBUG_MESSAGE_LENGTH_AMD 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_AMD 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_AMD 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_AMD 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_AMD 0x9147 +#define GL_DEBUG_SEVERITY_LOW_AMD 0x9148 +#define GL_DEBUG_CATEGORY_API_ERROR_AMD 0x9149 +#define GL_DEBUG_CATEGORY_WINDOW_SYSTEM_AMD 0x914A +#define GL_DEBUG_CATEGORY_DEPRECATION_AMD 0x914B +#define GL_DEBUG_CATEGORY_UNDEFINED_BEHAVIOR_AMD 0x914C +#define GL_DEBUG_CATEGORY_PERFORMANCE_AMD 0x914D +#define GL_DEBUG_CATEGORY_SHADER_COMPILER_AMD 0x914E +#define GL_DEBUG_CATEGORY_APPLICATION_AMD 0x914F +#define GL_DEBUG_CATEGORY_OTHER_AMD 0x9150 +typedef void (APIENTRYP PFNGLDEBUGMESSAGEENABLEAMDPROC) (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTAMDPROC) (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKAMDPROC) (GLDEBUGPROCAMD callback, void *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGAMDPROC) (GLuint count, GLsizei bufSize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDebugMessageEnableAMD (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsertAMD (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallbackAMD (GLDEBUGPROCAMD callback, void *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLogAMD (GLuint count, GLsizei bufSize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); +#endif +#endif /* GL_AMD_debug_output */ + +#ifndef GL_AMD_depth_clamp_separate +#define GL_AMD_depth_clamp_separate 1 +#define GL_DEPTH_CLAMP_NEAR_AMD 0x901E +#define GL_DEPTH_CLAMP_FAR_AMD 0x901F +#endif /* GL_AMD_depth_clamp_separate */ + +#ifndef GL_AMD_draw_buffers_blend +#define GL_AMD_draw_buffers_blend 1 +typedef void (APIENTRYP PFNGLBLENDFUNCINDEXEDAMDPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (APIENTRYP PFNGLBLENDEQUATIONINDEXEDAMDPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncIndexedAMD (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparateIndexedAMD (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GLAPI void APIENTRY glBlendEquationIndexedAMD (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparateIndexedAMD (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +#endif +#endif /* GL_AMD_draw_buffers_blend */ + +#ifndef GL_AMD_framebuffer_multisample_advanced +#define GL_AMD_framebuffer_multisample_advanced 1 +#define GL_RENDERBUFFER_STORAGE_SAMPLES_AMD 0x91B2 +#define GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD 0x91B3 +#define GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD 0x91B4 +#define GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD 0x91B5 +#define GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B6 +#define GL_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B7 +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleAdvancedAMD (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleAdvancedAMD (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_AMD_framebuffer_multisample_advanced */ + +#ifndef GL_AMD_framebuffer_sample_positions +#define GL_AMD_framebuffer_sample_positions 1 +#define GL_SUBSAMPLE_DISTANCE_AMD 0x883F +#define GL_PIXELS_PER_SAMPLE_PATTERN_X_AMD 0x91AE +#define GL_PIXELS_PER_SAMPLE_PATTERN_Y_AMD 0x91AF +#define GL_ALL_PIXELS_AMD 0xFFFFFFFF +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC) (GLenum target, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC) (GLuint framebuffer, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERFVAMDPROC) (GLenum target, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERFVAMDPROC) (GLuint framebuffer, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSamplePositionsfvAMD (GLenum target, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +GLAPI void APIENTRY glNamedFramebufferSamplePositionsfvAMD (GLuint framebuffer, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +GLAPI void APIENTRY glGetFramebufferParameterfvAMD (GLenum target, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +GLAPI void APIENTRY glGetNamedFramebufferParameterfvAMD (GLuint framebuffer, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +#endif +#endif /* GL_AMD_framebuffer_sample_positions */ + +#ifndef GL_AMD_gcn_shader +#define GL_AMD_gcn_shader 1 +#endif /* GL_AMD_gcn_shader */ + +#ifndef GL_AMD_gpu_shader_half_float +#define GL_AMD_gpu_shader_half_float 1 +#define GL_FLOAT16_NV 0x8FF8 +#define GL_FLOAT16_VEC2_NV 0x8FF9 +#define GL_FLOAT16_VEC3_NV 0x8FFA +#define GL_FLOAT16_VEC4_NV 0x8FFB +#define GL_FLOAT16_MAT2_AMD 0x91C5 +#define GL_FLOAT16_MAT3_AMD 0x91C6 +#define GL_FLOAT16_MAT4_AMD 0x91C7 +#define GL_FLOAT16_MAT2x3_AMD 0x91C8 +#define GL_FLOAT16_MAT2x4_AMD 0x91C9 +#define GL_FLOAT16_MAT3x2_AMD 0x91CA +#define GL_FLOAT16_MAT3x4_AMD 0x91CB +#define GL_FLOAT16_MAT4x2_AMD 0x91CC +#define GL_FLOAT16_MAT4x3_AMD 0x91CD +#endif /* GL_AMD_gpu_shader_half_float */ + +#ifndef GL_AMD_gpu_shader_int16 +#define GL_AMD_gpu_shader_int16 1 +#endif /* GL_AMD_gpu_shader_int16 */ + +#ifndef GL_AMD_gpu_shader_int64 +#define GL_AMD_gpu_shader_int64 1 +typedef khronos_int64_t GLint64EXT; +#define GL_INT64_NV 0x140E +#define GL_UNSIGNED_INT64_NV 0x140F +#define GL_INT8_NV 0x8FE0 +#define GL_INT8_VEC2_NV 0x8FE1 +#define GL_INT8_VEC3_NV 0x8FE2 +#define GL_INT8_VEC4_NV 0x8FE3 +#define GL_INT16_NV 0x8FE4 +#define GL_INT16_VEC2_NV 0x8FE5 +#define GL_INT16_VEC3_NV 0x8FE6 +#define GL_INT16_VEC4_NV 0x8FE7 +#define GL_INT64_VEC2_NV 0x8FE9 +#define GL_INT64_VEC3_NV 0x8FEA +#define GL_INT64_VEC4_NV 0x8FEB +#define GL_UNSIGNED_INT8_NV 0x8FEC +#define GL_UNSIGNED_INT8_VEC2_NV 0x8FED +#define GL_UNSIGNED_INT8_VEC3_NV 0x8FEE +#define GL_UNSIGNED_INT8_VEC4_NV 0x8FEF +#define GL_UNSIGNED_INT16_NV 0x8FF0 +#define GL_UNSIGNED_INT16_VEC2_NV 0x8FF1 +#define GL_UNSIGNED_INT16_VEC3_NV 0x8FF2 +#define GL_UNSIGNED_INT16_VEC4_NV 0x8FF3 +#define GL_UNSIGNED_INT64_VEC2_NV 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_NV 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_NV 0x8FF7 +typedef void (APIENTRYP PFNGLUNIFORM1I64NVPROC) (GLint location, GLint64EXT x); +typedef void (APIENTRYP PFNGLUNIFORM2I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLUNIFORM3I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLUNIFORM4I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLUNIFORM1I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM2I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM3I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM4I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM1UI64NVPROC) (GLint location, GLuint64EXT x); +typedef void (APIENTRYP PFNGLUNIFORM2UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLUNIFORM3UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLUNIFORM4UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLUNIFORM1UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM2UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM3UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM4UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLGETUNIFORMI64VNVPROC) (GLuint program, GLint location, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64NVPROC) (GLuint program, GLint location, GLint64EXT x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniform1i64NV (GLint location, GLint64EXT x); +GLAPI void APIENTRY glUniform2i64NV (GLint location, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glUniform3i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glUniform4i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glUniform1i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform2i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform3i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform4i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform1ui64NV (GLint location, GLuint64EXT x); +GLAPI void APIENTRY glUniform2ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glUniform3ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glUniform4ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glUniform1ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform2ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform3ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform4ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glGetUniformi64vNV (GLuint program, GLint location, GLint64EXT *params); +GLAPI void APIENTRY glGetUniformui64vNV (GLuint program, GLint location, GLuint64EXT *params); +GLAPI void APIENTRY glProgramUniform1i64NV (GLuint program, GLint location, GLint64EXT x); +GLAPI void APIENTRY glProgramUniform2i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glProgramUniform3i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glProgramUniform4i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glProgramUniform1i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform2i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform3i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform4i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform1ui64NV (GLuint program, GLint location, GLuint64EXT x); +GLAPI void APIENTRY glProgramUniform2ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glProgramUniform3ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glProgramUniform4ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glProgramUniform1ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform2ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform3ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform4ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif +#endif /* GL_AMD_gpu_shader_int64 */ + +#ifndef GL_AMD_interleaved_elements +#define GL_AMD_interleaved_elements 1 +#define GL_VERTEX_ELEMENT_SWIZZLE_AMD 0x91A4 +#define GL_VERTEX_ID_SWIZZLE_AMD 0x91A5 +typedef void (APIENTRYP PFNGLVERTEXATTRIBPARAMETERIAMDPROC) (GLuint index, GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribParameteriAMD (GLuint index, GLenum pname, GLint param); +#endif +#endif /* GL_AMD_interleaved_elements */ + +#ifndef GL_AMD_multi_draw_indirect +#define GL_AMD_multi_draw_indirect 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTAMDPROC) (GLenum mode, const void *indirect, GLsizei primcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTAMDPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei primcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectAMD (GLenum mode, const void *indirect, GLsizei primcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectAMD (GLenum mode, GLenum type, const void *indirect, GLsizei primcount, GLsizei stride); +#endif +#endif /* GL_AMD_multi_draw_indirect */ + +#ifndef GL_AMD_name_gen_delete +#define GL_AMD_name_gen_delete 1 +#define GL_DATA_BUFFER_AMD 0x9151 +#define GL_PERFORMANCE_MONITOR_AMD 0x9152 +#define GL_QUERY_OBJECT_AMD 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_AMD 0x9154 +#define GL_SAMPLER_OBJECT_AMD 0x9155 +typedef void (APIENTRYP PFNGLGENNAMESAMDPROC) (GLenum identifier, GLuint num, GLuint *names); +typedef void (APIENTRYP PFNGLDELETENAMESAMDPROC) (GLenum identifier, GLuint num, const GLuint *names); +typedef GLboolean (APIENTRYP PFNGLISNAMEAMDPROC) (GLenum identifier, GLuint name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenNamesAMD (GLenum identifier, GLuint num, GLuint *names); +GLAPI void APIENTRY glDeleteNamesAMD (GLenum identifier, GLuint num, const GLuint *names); +GLAPI GLboolean APIENTRY glIsNameAMD (GLenum identifier, GLuint name); +#endif +#endif /* GL_AMD_name_gen_delete */ + +#ifndef GL_AMD_occlusion_query_event +#define GL_AMD_occlusion_query_event 1 +#define GL_OCCLUSION_QUERY_EVENT_MASK_AMD 0x874F +#define GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD 0x00000001 +#define GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD 0x00000002 +#define GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD 0x00000004 +#define GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD 0x00000008 +#define GL_QUERY_ALL_EVENT_BITS_AMD 0xFFFFFFFF +typedef void (APIENTRYP PFNGLQUERYOBJECTPARAMETERUIAMDPROC) (GLenum target, GLuint id, GLenum pname, GLuint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glQueryObjectParameteruiAMD (GLenum target, GLuint id, GLenum pname, GLuint param); +#endif +#endif /* GL_AMD_occlusion_query_event */ + +#ifndef GL_AMD_performance_monitor +#define GL_AMD_performance_monitor 1 +#define GL_COUNTER_TYPE_AMD 0x8BC0 +#define GL_COUNTER_RANGE_AMD 0x8BC1 +#define GL_UNSIGNED_INT64_AMD 0x8BC2 +#define GL_PERCENTAGE_AMD 0x8BC3 +#define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4 +#define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5 +#define GL_PERFMON_RESULT_AMD 0x8BC6 +typedef void (APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +typedef void (APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, void *data); +typedef void (APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +typedef void (APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor); +typedef void (APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +GLAPI void APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +GLAPI void APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +GLAPI void APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +GLAPI void APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, void *data); +GLAPI void APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors); +GLAPI void APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors); +GLAPI void APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +GLAPI void APIENTRY glBeginPerfMonitorAMD (GLuint monitor); +GLAPI void APIENTRY glEndPerfMonitorAMD (GLuint monitor); +GLAPI void APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#endif +#endif /* GL_AMD_performance_monitor */ + +#ifndef GL_AMD_pinned_memory +#define GL_AMD_pinned_memory 1 +#define GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD 0x9160 +#endif /* GL_AMD_pinned_memory */ + +#ifndef GL_AMD_query_buffer_object +#define GL_AMD_query_buffer_object 1 +#define GL_QUERY_BUFFER_AMD 0x9192 +#define GL_QUERY_BUFFER_BINDING_AMD 0x9193 +#define GL_QUERY_RESULT_NO_WAIT_AMD 0x9194 +#endif /* GL_AMD_query_buffer_object */ + +#ifndef GL_AMD_sample_positions +#define GL_AMD_sample_positions 1 +typedef void (APIENTRYP PFNGLSETMULTISAMPLEFVAMDPROC) (GLenum pname, GLuint index, const GLfloat *val); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSetMultisamplefvAMD (GLenum pname, GLuint index, const GLfloat *val); +#endif +#endif /* GL_AMD_sample_positions */ + +#ifndef GL_AMD_seamless_cubemap_per_texture +#define GL_AMD_seamless_cubemap_per_texture 1 +#endif /* GL_AMD_seamless_cubemap_per_texture */ + +#ifndef GL_AMD_shader_atomic_counter_ops +#define GL_AMD_shader_atomic_counter_ops 1 +#endif /* GL_AMD_shader_atomic_counter_ops */ + +#ifndef GL_AMD_shader_ballot +#define GL_AMD_shader_ballot 1 +#endif /* GL_AMD_shader_ballot */ + +#ifndef GL_AMD_shader_explicit_vertex_parameter +#define GL_AMD_shader_explicit_vertex_parameter 1 +#endif /* GL_AMD_shader_explicit_vertex_parameter */ + +#ifndef GL_AMD_shader_gpu_shader_half_float_fetch +#define GL_AMD_shader_gpu_shader_half_float_fetch 1 +#endif /* GL_AMD_shader_gpu_shader_half_float_fetch */ + +#ifndef GL_AMD_shader_image_load_store_lod +#define GL_AMD_shader_image_load_store_lod 1 +#endif /* GL_AMD_shader_image_load_store_lod */ + +#ifndef GL_AMD_shader_stencil_export +#define GL_AMD_shader_stencil_export 1 +#endif /* GL_AMD_shader_stencil_export */ + +#ifndef GL_AMD_shader_trinary_minmax +#define GL_AMD_shader_trinary_minmax 1 +#endif /* GL_AMD_shader_trinary_minmax */ + +#ifndef GL_AMD_sparse_texture +#define GL_AMD_sparse_texture 1 +#define GL_VIRTUAL_PAGE_SIZE_X_AMD 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_AMD 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_AMD 0x9197 +#define GL_MAX_SPARSE_TEXTURE_SIZE_AMD 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_AMD 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS 0x919A +#define GL_MIN_SPARSE_LEVEL_AMD 0x919B +#define GL_MIN_LOD_WARNING_AMD 0x919C +#define GL_TEXTURE_STORAGE_SPARSE_BIT_AMD 0x00000001 +typedef void (APIENTRYP PFNGLTEXSTORAGESPARSEAMDPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +typedef void (APIENTRYP PFNGLTEXTURESTORAGESPARSEAMDPROC) (GLuint texture, GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexStorageSparseAMD (GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +GLAPI void APIENTRY glTextureStorageSparseAMD (GLuint texture, GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +#endif +#endif /* GL_AMD_sparse_texture */ + +#ifndef GL_AMD_stencil_operation_extended +#define GL_AMD_stencil_operation_extended 1 +#define GL_SET_AMD 0x874A +#define GL_REPLACE_VALUE_AMD 0x874B +#define GL_STENCIL_OP_VALUE_AMD 0x874C +#define GL_STENCIL_BACK_OP_VALUE_AMD 0x874D +typedef void (APIENTRYP PFNGLSTENCILOPVALUEAMDPROC) (GLenum face, GLuint value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilOpValueAMD (GLenum face, GLuint value); +#endif +#endif /* GL_AMD_stencil_operation_extended */ + +#ifndef GL_AMD_texture_gather_bias_lod +#define GL_AMD_texture_gather_bias_lod 1 +#endif /* GL_AMD_texture_gather_bias_lod */ + +#ifndef GL_AMD_texture_texture4 +#define GL_AMD_texture_texture4 1 +#endif /* GL_AMD_texture_texture4 */ + +#ifndef GL_AMD_transform_feedback3_lines_triangles +#define GL_AMD_transform_feedback3_lines_triangles 1 +#endif /* GL_AMD_transform_feedback3_lines_triangles */ + +#ifndef GL_AMD_transform_feedback4 +#define GL_AMD_transform_feedback4 1 +#define GL_STREAM_RASTERIZATION_AMD 0x91A0 +#endif /* GL_AMD_transform_feedback4 */ + +#ifndef GL_AMD_vertex_shader_layer +#define GL_AMD_vertex_shader_layer 1 +#endif /* GL_AMD_vertex_shader_layer */ + +#ifndef GL_AMD_vertex_shader_tessellator +#define GL_AMD_vertex_shader_tessellator 1 +#define GL_SAMPLER_BUFFER_AMD 0x9001 +#define GL_INT_SAMPLER_BUFFER_AMD 0x9002 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_AMD 0x9003 +#define GL_TESSELLATION_MODE_AMD 0x9004 +#define GL_TESSELLATION_FACTOR_AMD 0x9005 +#define GL_DISCRETE_AMD 0x9006 +#define GL_CONTINUOUS_AMD 0x9007 +typedef void (APIENTRYP PFNGLTESSELLATIONFACTORAMDPROC) (GLfloat factor); +typedef void (APIENTRYP PFNGLTESSELLATIONMODEAMDPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTessellationFactorAMD (GLfloat factor); +GLAPI void APIENTRY glTessellationModeAMD (GLenum mode); +#endif +#endif /* GL_AMD_vertex_shader_tessellator */ + +#ifndef GL_AMD_vertex_shader_viewport_index +#define GL_AMD_vertex_shader_viewport_index 1 +#endif /* GL_AMD_vertex_shader_viewport_index */ + +#ifndef GL_APPLE_aux_depth_stencil +#define GL_APPLE_aux_depth_stencil 1 +#define GL_AUX_DEPTH_STENCIL_APPLE 0x8A14 +#endif /* GL_APPLE_aux_depth_stencil */ + +#ifndef GL_APPLE_client_storage +#define GL_APPLE_client_storage 1 +#define GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2 +#endif /* GL_APPLE_client_storage */ + +#ifndef GL_APPLE_element_array +#define GL_APPLE_element_array 1 +#define GL_ELEMENT_ARRAY_APPLE 0x8A0C +#define GL_ELEMENT_ARRAY_TYPE_APPLE 0x8A0D +#define GL_ELEMENT_ARRAY_POINTER_APPLE 0x8A0E +typedef void (APIENTRYP PFNGLELEMENTPOINTERAPPLEPROC) (GLenum type, const void *pointer); +typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (APIENTRYP PFNGLMULTIDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glElementPointerAPPLE (GLenum type, const void *pointer); +GLAPI void APIENTRY glDrawElementArrayAPPLE (GLenum mode, GLint first, GLsizei count); +GLAPI void APIENTRY glDrawRangeElementArrayAPPLE (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count); +GLAPI void APIENTRY glMultiDrawElementArrayAPPLE (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GLAPI void APIENTRY glMultiDrawRangeElementArrayAPPLE (GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount); +#endif +#endif /* GL_APPLE_element_array */ + +#ifndef GL_APPLE_fence +#define GL_APPLE_fence 1 +#define GL_DRAW_PIXELS_APPLE 0x8A0A +#define GL_FENCE_APPLE 0x8A0B +typedef void (APIENTRYP PFNGLGENFENCESAPPLEPROC) (GLsizei n, GLuint *fences); +typedef void (APIENTRYP PFNGLDELETEFENCESAPPLEPROC) (GLsizei n, const GLuint *fences); +typedef void (APIENTRYP PFNGLSETFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLISFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTFENCEAPPLEPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLFINISHFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTOBJECTAPPLEPROC) (GLenum object, GLuint name); +typedef void (APIENTRYP PFNGLFINISHOBJECTAPPLEPROC) (GLenum object, GLint name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenFencesAPPLE (GLsizei n, GLuint *fences); +GLAPI void APIENTRY glDeleteFencesAPPLE (GLsizei n, const GLuint *fences); +GLAPI void APIENTRY glSetFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glIsFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glTestFenceAPPLE (GLuint fence); +GLAPI void APIENTRY glFinishFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glTestObjectAPPLE (GLenum object, GLuint name); +GLAPI void APIENTRY glFinishObjectAPPLE (GLenum object, GLint name); +#endif +#endif /* GL_APPLE_fence */ + +#ifndef GL_APPLE_float_pixels +#define GL_APPLE_float_pixels 1 +#define GL_HALF_APPLE 0x140B +#define GL_RGBA_FLOAT32_APPLE 0x8814 +#define GL_RGB_FLOAT32_APPLE 0x8815 +#define GL_ALPHA_FLOAT32_APPLE 0x8816 +#define GL_INTENSITY_FLOAT32_APPLE 0x8817 +#define GL_LUMINANCE_FLOAT32_APPLE 0x8818 +#define GL_LUMINANCE_ALPHA_FLOAT32_APPLE 0x8819 +#define GL_RGBA_FLOAT16_APPLE 0x881A +#define GL_RGB_FLOAT16_APPLE 0x881B +#define GL_ALPHA_FLOAT16_APPLE 0x881C +#define GL_INTENSITY_FLOAT16_APPLE 0x881D +#define GL_LUMINANCE_FLOAT16_APPLE 0x881E +#define GL_LUMINANCE_ALPHA_FLOAT16_APPLE 0x881F +#define GL_COLOR_FLOAT_APPLE 0x8A0F +#endif /* GL_APPLE_float_pixels */ + +#ifndef GL_APPLE_flush_buffer_range +#define GL_APPLE_flush_buffer_range 1 +#define GL_BUFFER_SERIALIZED_MODIFY_APPLE 0x8A12 +#define GL_BUFFER_FLUSHING_UNMAP_APPLE 0x8A13 +typedef void (APIENTRYP PFNGLBUFFERPARAMETERIAPPLEPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEAPPLEPROC) (GLenum target, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferParameteriAPPLE (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glFlushMappedBufferRangeAPPLE (GLenum target, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_APPLE_flush_buffer_range */ + +#ifndef GL_APPLE_object_purgeable +#define GL_APPLE_object_purgeable 1 +#define GL_BUFFER_OBJECT_APPLE 0x85B3 +#define GL_RELEASED_APPLE 0x8A19 +#define GL_VOLATILE_APPLE 0x8A1A +#define GL_RETAINED_APPLE 0x8A1B +#define GL_UNDEFINED_APPLE 0x8A1C +#define GL_PURGEABLE_APPLE 0x8A1D +typedef GLenum (APIENTRYP PFNGLOBJECTPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option); +typedef GLenum (APIENTRYP PFNGLOBJECTUNPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVAPPLEPROC) (GLenum objectType, GLuint name, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLenum APIENTRY glObjectPurgeableAPPLE (GLenum objectType, GLuint name, GLenum option); +GLAPI GLenum APIENTRY glObjectUnpurgeableAPPLE (GLenum objectType, GLuint name, GLenum option); +GLAPI void APIENTRY glGetObjectParameterivAPPLE (GLenum objectType, GLuint name, GLenum pname, GLint *params); +#endif +#endif /* GL_APPLE_object_purgeable */ + +#ifndef GL_APPLE_rgb_422 +#define GL_APPLE_rgb_422 1 +#define GL_RGB_422_APPLE 0x8A1F +#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB +#define GL_RGB_RAW_422_APPLE 0x8A51 +#endif /* GL_APPLE_rgb_422 */ + +#ifndef GL_APPLE_row_bytes +#define GL_APPLE_row_bytes 1 +#define GL_PACK_ROW_BYTES_APPLE 0x8A15 +#define GL_UNPACK_ROW_BYTES_APPLE 0x8A16 +#endif /* GL_APPLE_row_bytes */ + +#ifndef GL_APPLE_specular_vector +#define GL_APPLE_specular_vector 1 +#define GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE 0x85B0 +#endif /* GL_APPLE_specular_vector */ + +#ifndef GL_APPLE_texture_range +#define GL_APPLE_texture_range 1 +#define GL_TEXTURE_RANGE_LENGTH_APPLE 0x85B7 +#define GL_TEXTURE_RANGE_POINTER_APPLE 0x85B8 +#define GL_TEXTURE_STORAGE_HINT_APPLE 0x85BC +#define GL_STORAGE_PRIVATE_APPLE 0x85BD +#define GL_STORAGE_CACHED_APPLE 0x85BE +#define GL_STORAGE_SHARED_APPLE 0x85BF +typedef void (APIENTRYP PFNGLTEXTURERANGEAPPLEPROC) (GLenum target, GLsizei length, const void *pointer); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERPOINTERVAPPLEPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureRangeAPPLE (GLenum target, GLsizei length, const void *pointer); +GLAPI void APIENTRY glGetTexParameterPointervAPPLE (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_APPLE_texture_range */ + +#ifndef GL_APPLE_transform_hint +#define GL_APPLE_transform_hint 1 +#define GL_TRANSFORM_HINT_APPLE 0x85B1 +#endif /* GL_APPLE_transform_hint */ + +#ifndef GL_APPLE_vertex_array_object +#define GL_APPLE_vertex_array_object 1 +#define GL_VERTEX_ARRAY_BINDING_APPLE 0x85B5 +typedef void (APIENTRYP PFNGLBINDVERTEXARRAYAPPLEPROC) (GLuint array); +typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint *arrays); +typedef void (APIENTRYP PFNGLGENVERTEXARRAYSAPPLEPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYAPPLEPROC) (GLuint array); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindVertexArrayAPPLE (GLuint array); +GLAPI void APIENTRY glDeleteVertexArraysAPPLE (GLsizei n, const GLuint *arrays); +GLAPI void APIENTRY glGenVertexArraysAPPLE (GLsizei n, GLuint *arrays); +GLAPI GLboolean APIENTRY glIsVertexArrayAPPLE (GLuint array); +#endif +#endif /* GL_APPLE_vertex_array_object */ + +#ifndef GL_APPLE_vertex_array_range +#define GL_APPLE_vertex_array_range 1 +#define GL_VERTEX_ARRAY_RANGE_APPLE 0x851D +#define GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE 0x851E +#define GL_VERTEX_ARRAY_STORAGE_HINT_APPLE 0x851F +#define GL_VERTEX_ARRAY_RANGE_POINTER_APPLE 0x8521 +#define GL_STORAGE_CLIENT_APPLE 0x85B4 +typedef void (APIENTRYP PFNGLVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, void *pointer); +typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, void *pointer); +typedef void (APIENTRYP PFNGLVERTEXARRAYPARAMETERIAPPLEPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexArrayRangeAPPLE (GLsizei length, void *pointer); +GLAPI void APIENTRY glFlushVertexArrayRangeAPPLE (GLsizei length, void *pointer); +GLAPI void APIENTRY glVertexArrayParameteriAPPLE (GLenum pname, GLint param); +#endif +#endif /* GL_APPLE_vertex_array_range */ + +#ifndef GL_APPLE_vertex_program_evaluators +#define GL_APPLE_vertex_program_evaluators 1 +#define GL_VERTEX_ATTRIB_MAP1_APPLE 0x8A00 +#define GL_VERTEX_ATTRIB_MAP2_APPLE 0x8A01 +#define GL_VERTEX_ATTRIB_MAP1_SIZE_APPLE 0x8A02 +#define GL_VERTEX_ATTRIB_MAP1_COEFF_APPLE 0x8A03 +#define GL_VERTEX_ATTRIB_MAP1_ORDER_APPLE 0x8A04 +#define GL_VERTEX_ATTRIB_MAP1_DOMAIN_APPLE 0x8A05 +#define GL_VERTEX_ATTRIB_MAP2_SIZE_APPLE 0x8A06 +#define GL_VERTEX_ATTRIB_MAP2_COEFF_APPLE 0x8A07 +#define GL_VERTEX_ATTRIB_MAP2_ORDER_APPLE 0x8A08 +#define GL_VERTEX_ATTRIB_MAP2_DOMAIN_APPLE 0x8A09 +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname); +typedef GLboolean (APIENTRYP PFNGLISVERTEXATTRIBENABLEDAPPLEPROC) (GLuint index, GLenum pname); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB1DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB1FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB2DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB2FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glEnableVertexAttribAPPLE (GLuint index, GLenum pname); +GLAPI void APIENTRY glDisableVertexAttribAPPLE (GLuint index, GLenum pname); +GLAPI GLboolean APIENTRY glIsVertexAttribEnabledAPPLE (GLuint index, GLenum pname); +GLAPI void APIENTRY glMapVertexAttrib1dAPPLE (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points); +GLAPI void APIENTRY glMapVertexAttrib1fAPPLE (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points); +GLAPI void APIENTRY glMapVertexAttrib2dAPPLE (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points); +GLAPI void APIENTRY glMapVertexAttrib2fAPPLE (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points); +#endif +#endif /* GL_APPLE_vertex_program_evaluators */ + +#ifndef GL_APPLE_ycbcr_422 +#define GL_APPLE_ycbcr_422 1 +#define GL_YCBCR_422_APPLE 0x85B9 +#endif /* GL_APPLE_ycbcr_422 */ + +#ifndef GL_ATI_draw_buffers +#define GL_ATI_draw_buffers 1 +#define GL_MAX_DRAW_BUFFERS_ATI 0x8824 +#define GL_DRAW_BUFFER0_ATI 0x8825 +#define GL_DRAW_BUFFER1_ATI 0x8826 +#define GL_DRAW_BUFFER2_ATI 0x8827 +#define GL_DRAW_BUFFER3_ATI 0x8828 +#define GL_DRAW_BUFFER4_ATI 0x8829 +#define GL_DRAW_BUFFER5_ATI 0x882A +#define GL_DRAW_BUFFER6_ATI 0x882B +#define GL_DRAW_BUFFER7_ATI 0x882C +#define GL_DRAW_BUFFER8_ATI 0x882D +#define GL_DRAW_BUFFER9_ATI 0x882E +#define GL_DRAW_BUFFER10_ATI 0x882F +#define GL_DRAW_BUFFER11_ATI 0x8830 +#define GL_DRAW_BUFFER12_ATI 0x8831 +#define GL_DRAW_BUFFER13_ATI 0x8832 +#define GL_DRAW_BUFFER14_ATI 0x8833 +#define GL_DRAW_BUFFER15_ATI 0x8834 +typedef void (APIENTRYP PFNGLDRAWBUFFERSATIPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawBuffersATI (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_ATI_draw_buffers */ + +#ifndef GL_ATI_element_array +#define GL_ATI_element_array 1 +#define GL_ELEMENT_ARRAY_ATI 0x8768 +#define GL_ELEMENT_ARRAY_TYPE_ATI 0x8769 +#define GL_ELEMENT_ARRAY_POINTER_ATI 0x876A +typedef void (APIENTRYP PFNGLELEMENTPOINTERATIPROC) (GLenum type, const void *pointer); +typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYATIPROC) (GLenum mode, GLsizei count); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYATIPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glElementPointerATI (GLenum type, const void *pointer); +GLAPI void APIENTRY glDrawElementArrayATI (GLenum mode, GLsizei count); +GLAPI void APIENTRY glDrawRangeElementArrayATI (GLenum mode, GLuint start, GLuint end, GLsizei count); +#endif +#endif /* GL_ATI_element_array */ + +#ifndef GL_ATI_envmap_bumpmap +#define GL_ATI_envmap_bumpmap 1 +#define GL_BUMP_ROT_MATRIX_ATI 0x8775 +#define GL_BUMP_ROT_MATRIX_SIZE_ATI 0x8776 +#define GL_BUMP_NUM_TEX_UNITS_ATI 0x8777 +#define GL_BUMP_TEX_UNITS_ATI 0x8778 +#define GL_DUDV_ATI 0x8779 +#define GL_DU8DV8_ATI 0x877A +#define GL_BUMP_ENVMAP_ATI 0x877B +#define GL_BUMP_TARGET_ATI 0x877C +typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERIVATIPROC) (GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERFVATIPROC) (GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERIVATIPROC) (GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERFVATIPROC) (GLenum pname, GLfloat *param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBumpParameterivATI (GLenum pname, const GLint *param); +GLAPI void APIENTRY glTexBumpParameterfvATI (GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glGetTexBumpParameterivATI (GLenum pname, GLint *param); +GLAPI void APIENTRY glGetTexBumpParameterfvATI (GLenum pname, GLfloat *param); +#endif +#endif /* GL_ATI_envmap_bumpmap */ + +#ifndef GL_ATI_fragment_shader +#define GL_ATI_fragment_shader 1 +#define GL_FRAGMENT_SHADER_ATI 0x8920 +#define GL_REG_0_ATI 0x8921 +#define GL_REG_1_ATI 0x8922 +#define GL_REG_2_ATI 0x8923 +#define GL_REG_3_ATI 0x8924 +#define GL_REG_4_ATI 0x8925 +#define GL_REG_5_ATI 0x8926 +#define GL_REG_6_ATI 0x8927 +#define GL_REG_7_ATI 0x8928 +#define GL_REG_8_ATI 0x8929 +#define GL_REG_9_ATI 0x892A +#define GL_REG_10_ATI 0x892B +#define GL_REG_11_ATI 0x892C +#define GL_REG_12_ATI 0x892D +#define GL_REG_13_ATI 0x892E +#define GL_REG_14_ATI 0x892F +#define GL_REG_15_ATI 0x8930 +#define GL_REG_16_ATI 0x8931 +#define GL_REG_17_ATI 0x8932 +#define GL_REG_18_ATI 0x8933 +#define GL_REG_19_ATI 0x8934 +#define GL_REG_20_ATI 0x8935 +#define GL_REG_21_ATI 0x8936 +#define GL_REG_22_ATI 0x8937 +#define GL_REG_23_ATI 0x8938 +#define GL_REG_24_ATI 0x8939 +#define GL_REG_25_ATI 0x893A +#define GL_REG_26_ATI 0x893B +#define GL_REG_27_ATI 0x893C +#define GL_REG_28_ATI 0x893D +#define GL_REG_29_ATI 0x893E +#define GL_REG_30_ATI 0x893F +#define GL_REG_31_ATI 0x8940 +#define GL_CON_0_ATI 0x8941 +#define GL_CON_1_ATI 0x8942 +#define GL_CON_2_ATI 0x8943 +#define GL_CON_3_ATI 0x8944 +#define GL_CON_4_ATI 0x8945 +#define GL_CON_5_ATI 0x8946 +#define GL_CON_6_ATI 0x8947 +#define GL_CON_7_ATI 0x8948 +#define GL_CON_8_ATI 0x8949 +#define GL_CON_9_ATI 0x894A +#define GL_CON_10_ATI 0x894B +#define GL_CON_11_ATI 0x894C +#define GL_CON_12_ATI 0x894D +#define GL_CON_13_ATI 0x894E +#define GL_CON_14_ATI 0x894F +#define GL_CON_15_ATI 0x8950 +#define GL_CON_16_ATI 0x8951 +#define GL_CON_17_ATI 0x8952 +#define GL_CON_18_ATI 0x8953 +#define GL_CON_19_ATI 0x8954 +#define GL_CON_20_ATI 0x8955 +#define GL_CON_21_ATI 0x8956 +#define GL_CON_22_ATI 0x8957 +#define GL_CON_23_ATI 0x8958 +#define GL_CON_24_ATI 0x8959 +#define GL_CON_25_ATI 0x895A +#define GL_CON_26_ATI 0x895B +#define GL_CON_27_ATI 0x895C +#define GL_CON_28_ATI 0x895D +#define GL_CON_29_ATI 0x895E +#define GL_CON_30_ATI 0x895F +#define GL_CON_31_ATI 0x8960 +#define GL_MOV_ATI 0x8961 +#define GL_ADD_ATI 0x8963 +#define GL_MUL_ATI 0x8964 +#define GL_SUB_ATI 0x8965 +#define GL_DOT3_ATI 0x8966 +#define GL_DOT4_ATI 0x8967 +#define GL_MAD_ATI 0x8968 +#define GL_LERP_ATI 0x8969 +#define GL_CND_ATI 0x896A +#define GL_CND0_ATI 0x896B +#define GL_DOT2_ADD_ATI 0x896C +#define GL_SECONDARY_INTERPOLATOR_ATI 0x896D +#define GL_NUM_FRAGMENT_REGISTERS_ATI 0x896E +#define GL_NUM_FRAGMENT_CONSTANTS_ATI 0x896F +#define GL_NUM_PASSES_ATI 0x8970 +#define GL_NUM_INSTRUCTIONS_PER_PASS_ATI 0x8971 +#define GL_NUM_INSTRUCTIONS_TOTAL_ATI 0x8972 +#define GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI 0x8973 +#define GL_NUM_LOOPBACK_COMPONENTS_ATI 0x8974 +#define GL_COLOR_ALPHA_PAIRING_ATI 0x8975 +#define GL_SWIZZLE_STR_ATI 0x8976 +#define GL_SWIZZLE_STQ_ATI 0x8977 +#define GL_SWIZZLE_STR_DR_ATI 0x8978 +#define GL_SWIZZLE_STQ_DQ_ATI 0x8979 +#define GL_SWIZZLE_STRQ_ATI 0x897A +#define GL_SWIZZLE_STRQ_DQ_ATI 0x897B +#define GL_RED_BIT_ATI 0x00000001 +#define GL_GREEN_BIT_ATI 0x00000002 +#define GL_BLUE_BIT_ATI 0x00000004 +#define GL_2X_BIT_ATI 0x00000001 +#define GL_4X_BIT_ATI 0x00000002 +#define GL_8X_BIT_ATI 0x00000004 +#define GL_HALF_BIT_ATI 0x00000008 +#define GL_QUARTER_BIT_ATI 0x00000010 +#define GL_EIGHTH_BIT_ATI 0x00000020 +#define GL_SATURATE_BIT_ATI 0x00000040 +#define GL_COMP_BIT_ATI 0x00000002 +#define GL_NEGATE_BIT_ATI 0x00000004 +#define GL_BIAS_BIT_ATI 0x00000008 +typedef GLuint (APIENTRYP PFNGLGENFRAGMENTSHADERSATIPROC) (GLuint range); +typedef void (APIENTRYP PFNGLBINDFRAGMENTSHADERATIPROC) (GLuint id); +typedef void (APIENTRYP PFNGLDELETEFRAGMENTSHADERATIPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINFRAGMENTSHADERATIPROC) (void); +typedef void (APIENTRYP PFNGLENDFRAGMENTSHADERATIPROC) (void); +typedef void (APIENTRYP PFNGLPASSTEXCOORDATIPROC) (GLuint dst, GLuint coord, GLenum swizzle); +typedef void (APIENTRYP PFNGLSAMPLEMAPATIPROC) (GLuint dst, GLuint interp, GLenum swizzle); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +typedef void (APIENTRYP PFNGLSETFRAGMENTSHADERCONSTANTATIPROC) (GLuint dst, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glGenFragmentShadersATI (GLuint range); +GLAPI void APIENTRY glBindFragmentShaderATI (GLuint id); +GLAPI void APIENTRY glDeleteFragmentShaderATI (GLuint id); +GLAPI void APIENTRY glBeginFragmentShaderATI (void); +GLAPI void APIENTRY glEndFragmentShaderATI (void); +GLAPI void APIENTRY glPassTexCoordATI (GLuint dst, GLuint coord, GLenum swizzle); +GLAPI void APIENTRY glSampleMapATI (GLuint dst, GLuint interp, GLenum swizzle); +GLAPI void APIENTRY glColorFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +GLAPI void APIENTRY glColorFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +GLAPI void APIENTRY glColorFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +GLAPI void APIENTRY glAlphaFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +GLAPI void APIENTRY glAlphaFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +GLAPI void APIENTRY glAlphaFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +GLAPI void APIENTRY glSetFragmentShaderConstantATI (GLuint dst, const GLfloat *value); +#endif +#endif /* GL_ATI_fragment_shader */ + +#ifndef GL_ATI_map_object_buffer +#define GL_ATI_map_object_buffer 1 +typedef void *(APIENTRYP PFNGLMAPOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLUNMAPOBJECTBUFFERATIPROC) (GLuint buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void *APIENTRY glMapObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glUnmapObjectBufferATI (GLuint buffer); +#endif +#endif /* GL_ATI_map_object_buffer */ + +#ifndef GL_ATI_meminfo +#define GL_ATI_meminfo 1 +#define GL_VBO_FREE_MEMORY_ATI 0x87FB +#define GL_TEXTURE_FREE_MEMORY_ATI 0x87FC +#define GL_RENDERBUFFER_FREE_MEMORY_ATI 0x87FD +#endif /* GL_ATI_meminfo */ + +#ifndef GL_ATI_pixel_format_float +#define GL_ATI_pixel_format_float 1 +#define GL_RGBA_FLOAT_MODE_ATI 0x8820 +#define GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI 0x8835 +#endif /* GL_ATI_pixel_format_float */ + +#ifndef GL_ATI_pn_triangles +#define GL_ATI_pn_triangles 1 +#define GL_PN_TRIANGLES_ATI 0x87F0 +#define GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F1 +#define GL_PN_TRIANGLES_POINT_MODE_ATI 0x87F2 +#define GL_PN_TRIANGLES_NORMAL_MODE_ATI 0x87F3 +#define GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F4 +#define GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI 0x87F5 +#define GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI 0x87F6 +#define GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI 0x87F7 +#define GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI 0x87F8 +typedef void (APIENTRYP PFNGLPNTRIANGLESIATIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPNTRIANGLESFATIPROC) (GLenum pname, GLfloat param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPNTrianglesiATI (GLenum pname, GLint param); +GLAPI void APIENTRY glPNTrianglesfATI (GLenum pname, GLfloat param); +#endif +#endif /* GL_ATI_pn_triangles */ + +#ifndef GL_ATI_separate_stencil +#define GL_ATI_separate_stencil 1 +#define GL_STENCIL_BACK_FUNC_ATI 0x8800 +#define GL_STENCIL_BACK_FAIL_ATI 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI 0x8803 +typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEATIPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEATIPROC) (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilOpSeparateATI (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GLAPI void APIENTRY glStencilFuncSeparateATI (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +#endif +#endif /* GL_ATI_separate_stencil */ + +#ifndef GL_ATI_text_fragment_shader +#define GL_ATI_text_fragment_shader 1 +#define GL_TEXT_FRAGMENT_SHADER_ATI 0x8200 +#endif /* GL_ATI_text_fragment_shader */ + +#ifndef GL_ATI_texture_env_combine3 +#define GL_ATI_texture_env_combine3 1 +#define GL_MODULATE_ADD_ATI 0x8744 +#define GL_MODULATE_SIGNED_ADD_ATI 0x8745 +#define GL_MODULATE_SUBTRACT_ATI 0x8746 +#endif /* GL_ATI_texture_env_combine3 */ + +#ifndef GL_ATI_texture_float +#define GL_ATI_texture_float 1 +#define GL_RGBA_FLOAT32_ATI 0x8814 +#define GL_RGB_FLOAT32_ATI 0x8815 +#define GL_ALPHA_FLOAT32_ATI 0x8816 +#define GL_INTENSITY_FLOAT32_ATI 0x8817 +#define GL_LUMINANCE_FLOAT32_ATI 0x8818 +#define GL_LUMINANCE_ALPHA_FLOAT32_ATI 0x8819 +#define GL_RGBA_FLOAT16_ATI 0x881A +#define GL_RGB_FLOAT16_ATI 0x881B +#define GL_ALPHA_FLOAT16_ATI 0x881C +#define GL_INTENSITY_FLOAT16_ATI 0x881D +#define GL_LUMINANCE_FLOAT16_ATI 0x881E +#define GL_LUMINANCE_ALPHA_FLOAT16_ATI 0x881F +#endif /* GL_ATI_texture_float */ + +#ifndef GL_ATI_texture_mirror_once +#define GL_ATI_texture_mirror_once 1 +#define GL_MIRROR_CLAMP_ATI 0x8742 +#define GL_MIRROR_CLAMP_TO_EDGE_ATI 0x8743 +#endif /* GL_ATI_texture_mirror_once */ + +#ifndef GL_ATI_vertex_array_object +#define GL_ATI_vertex_array_object 1 +#define GL_STATIC_ATI 0x8760 +#define GL_DYNAMIC_ATI 0x8761 +#define GL_PRESERVE_ATI 0x8762 +#define GL_DISCARD_ATI 0x8763 +#define GL_OBJECT_BUFFER_SIZE_ATI 0x8764 +#define GL_OBJECT_BUFFER_USAGE_ATI 0x8765 +#define GL_ARRAY_OBJECT_BUFFER_ATI 0x8766 +#define GL_ARRAY_OBJECT_OFFSET_ATI 0x8767 +typedef GLuint (APIENTRYP PFNGLNEWOBJECTBUFFERATIPROC) (GLsizei size, const void *pointer, GLenum usage); +typedef GLboolean (APIENTRYP PFNGLISOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLUPDATEOBJECTBUFFERATIPROC) (GLuint buffer, GLuint offset, GLsizei size, const void *pointer, GLenum preserve); +typedef void (APIENTRYP PFNGLGETOBJECTBUFFERFVATIPROC) (GLuint buffer, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETOBJECTBUFFERIVATIPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLFREEOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLARRAYOBJECTATIPROC) (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETARRAYOBJECTFVATIPROC) (GLenum array, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETARRAYOBJECTIVATIPROC) (GLenum array, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLVARIANTARRAYOBJECTATIPROC) (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTFVATIPROC) (GLuint id, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTIVATIPROC) (GLuint id, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glNewObjectBufferATI (GLsizei size, const void *pointer, GLenum usage); +GLAPI GLboolean APIENTRY glIsObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glUpdateObjectBufferATI (GLuint buffer, GLuint offset, GLsizei size, const void *pointer, GLenum preserve); +GLAPI void APIENTRY glGetObjectBufferfvATI (GLuint buffer, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetObjectBufferivATI (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glFreeObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glArrayObjectATI (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetArrayObjectfvATI (GLenum array, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetArrayObjectivATI (GLenum array, GLenum pname, GLint *params); +GLAPI void APIENTRY glVariantArrayObjectATI (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetVariantArrayObjectfvATI (GLuint id, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVariantArrayObjectivATI (GLuint id, GLenum pname, GLint *params); +#endif +#endif /* GL_ATI_vertex_array_object */ + +#ifndef GL_ATI_vertex_attrib_array_object +#define GL_ATI_vertex_attrib_array_object 1 +typedef void (APIENTRYP PFNGLVERTEXATTRIBARRAYOBJECTATIPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTFVATIPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTIVATIPROC) (GLuint index, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribArrayObjectATI (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetVertexAttribArrayObjectfvATI (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribArrayObjectivATI (GLuint index, GLenum pname, GLint *params); +#endif +#endif /* GL_ATI_vertex_attrib_array_object */ + +#ifndef GL_ATI_vertex_streams +#define GL_ATI_vertex_streams 1 +#define GL_MAX_VERTEX_STREAMS_ATI 0x876B +#define GL_VERTEX_STREAM0_ATI 0x876C +#define GL_VERTEX_STREAM1_ATI 0x876D +#define GL_VERTEX_STREAM2_ATI 0x876E +#define GL_VERTEX_STREAM3_ATI 0x876F +#define GL_VERTEX_STREAM4_ATI 0x8770 +#define GL_VERTEX_STREAM5_ATI 0x8771 +#define GL_VERTEX_STREAM6_ATI 0x8772 +#define GL_VERTEX_STREAM7_ATI 0x8773 +#define GL_VERTEX_SOURCE_ATI 0x8774 +typedef void (APIENTRYP PFNGLVERTEXSTREAM1SATIPROC) (GLenum stream, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1IATIPROC) (GLenum stream, GLint x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1FATIPROC) (GLenum stream, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1DATIPROC) (GLenum stream, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2SATIPROC) (GLenum stream, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2IATIPROC) (GLenum stream, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2FATIPROC) (GLenum stream, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2DATIPROC) (GLenum stream, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3IATIPROC) (GLenum stream, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4IATIPROC) (GLenum stream, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3BATIPROC) (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3BVATIPROC) (GLenum stream, const GLbyte *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3SATIPROC) (GLenum stream, GLshort nx, GLshort ny, GLshort nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3IATIPROC) (GLenum stream, GLint nx, GLint ny, GLint nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3FATIPROC) (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3DATIPROC) (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLCLIENTACTIVEVERTEXSTREAMATIPROC) (GLenum stream); +typedef void (APIENTRYP PFNGLVERTEXBLENDENVIATIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLVERTEXBLENDENVFATIPROC) (GLenum pname, GLfloat param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexStream1sATI (GLenum stream, GLshort x); +GLAPI void APIENTRY glVertexStream1svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream1iATI (GLenum stream, GLint x); +GLAPI void APIENTRY glVertexStream1ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream1fATI (GLenum stream, GLfloat x); +GLAPI void APIENTRY glVertexStream1fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream1dATI (GLenum stream, GLdouble x); +GLAPI void APIENTRY glVertexStream1dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream2sATI (GLenum stream, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexStream2svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream2iATI (GLenum stream, GLint x, GLint y); +GLAPI void APIENTRY glVertexStream2ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream2fATI (GLenum stream, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexStream2fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream2dATI (GLenum stream, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexStream2dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream3sATI (GLenum stream, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexStream3svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream3iATI (GLenum stream, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexStream3ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream3fATI (GLenum stream, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexStream3fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream3dATI (GLenum stream, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexStream3dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream4sATI (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexStream4svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream4iATI (GLenum stream, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexStream4ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream4fATI (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexStream4fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream4dATI (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexStream4dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glNormalStream3bATI (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz); +GLAPI void APIENTRY glNormalStream3bvATI (GLenum stream, const GLbyte *coords); +GLAPI void APIENTRY glNormalStream3sATI (GLenum stream, GLshort nx, GLshort ny, GLshort nz); +GLAPI void APIENTRY glNormalStream3svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glNormalStream3iATI (GLenum stream, GLint nx, GLint ny, GLint nz); +GLAPI void APIENTRY glNormalStream3ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glNormalStream3fATI (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz); +GLAPI void APIENTRY glNormalStream3fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glNormalStream3dATI (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz); +GLAPI void APIENTRY glNormalStream3dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glClientActiveVertexStreamATI (GLenum stream); +GLAPI void APIENTRY glVertexBlendEnviATI (GLenum pname, GLint param); +GLAPI void APIENTRY glVertexBlendEnvfATI (GLenum pname, GLfloat param); +#endif +#endif /* GL_ATI_vertex_streams */ + +#ifndef GL_EXT_422_pixels +#define GL_EXT_422_pixels 1 +#define GL_422_EXT 0x80CC +#define GL_422_REV_EXT 0x80CD +#define GL_422_AVERAGE_EXT 0x80CE +#define GL_422_REV_AVERAGE_EXT 0x80CF +#endif /* GL_EXT_422_pixels */ + +#ifndef GL_EXT_EGL_image_storage +#define GL_EXT_EGL_image_storage 1 +typedef void *GLeglImageOES; +typedef void (APIENTRYP PFNGLEGLIMAGETARGETTEXSTORAGEEXTPROC) (GLenum target, GLeglImageOES image, const GLint* attrib_list); +typedef void (APIENTRYP PFNGLEGLIMAGETARGETTEXTURESTORAGEEXTPROC) (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glEGLImageTargetTexStorageEXT (GLenum target, GLeglImageOES image, const GLint* attrib_list); +GLAPI void APIENTRY glEGLImageTargetTextureStorageEXT (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#endif +#endif /* GL_EXT_EGL_image_storage */ + +#ifndef GL_EXT_EGL_sync +#define GL_EXT_EGL_sync 1 +#endif /* GL_EXT_EGL_sync */ + +#ifndef GL_EXT_abgr +#define GL_EXT_abgr 1 +#define GL_ABGR_EXT 0x8000 +#endif /* GL_EXT_abgr */ + +#ifndef GL_EXT_bgra +#define GL_EXT_bgra 1 +#define GL_BGR_EXT 0x80E0 +#define GL_BGRA_EXT 0x80E1 +#endif /* GL_EXT_bgra */ + +#ifndef GL_EXT_bindable_uniform +#define GL_EXT_bindable_uniform 1 +#define GL_MAX_VERTEX_BINDABLE_UNIFORMS_EXT 0x8DE2 +#define GL_MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT 0x8DE3 +#define GL_MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT 0x8DE4 +#define GL_MAX_BINDABLE_UNIFORM_SIZE_EXT 0x8DED +#define GL_UNIFORM_BUFFER_EXT 0x8DEE +#define GL_UNIFORM_BUFFER_BINDING_EXT 0x8DEF +typedef void (APIENTRYP PFNGLUNIFORMBUFFEREXTPROC) (GLuint program, GLint location, GLuint buffer); +typedef GLint (APIENTRYP PFNGLGETUNIFORMBUFFERSIZEEXTPROC) (GLuint program, GLint location); +typedef GLintptr (APIENTRYP PFNGLGETUNIFORMOFFSETEXTPROC) (GLuint program, GLint location); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniformBufferEXT (GLuint program, GLint location, GLuint buffer); +GLAPI GLint APIENTRY glGetUniformBufferSizeEXT (GLuint program, GLint location); +GLAPI GLintptr APIENTRY glGetUniformOffsetEXT (GLuint program, GLint location); +#endif +#endif /* GL_EXT_bindable_uniform */ + +#ifndef GL_EXT_blend_color +#define GL_EXT_blend_color 1 +#define GL_CONSTANT_COLOR_EXT 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR_EXT 0x8002 +#define GL_CONSTANT_ALPHA_EXT 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA_EXT 0x8004 +#define GL_BLEND_COLOR_EXT 0x8005 +typedef void (APIENTRYP PFNGLBLENDCOLOREXTPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendColorEXT (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +#endif +#endif /* GL_EXT_blend_color */ + +#ifndef GL_EXT_blend_equation_separate +#define GL_EXT_blend_equation_separate 1 +#define GL_BLEND_EQUATION_RGB_EXT 0x8009 +#define GL_BLEND_EQUATION_ALPHA_EXT 0x883D +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEEXTPROC) (GLenum modeRGB, GLenum modeAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationSeparateEXT (GLenum modeRGB, GLenum modeAlpha); +#endif +#endif /* GL_EXT_blend_equation_separate */ + +#ifndef GL_EXT_blend_func_separate +#define GL_EXT_blend_func_separate 1 +#define GL_BLEND_DST_RGB_EXT 0x80C8 +#define GL_BLEND_SRC_RGB_EXT 0x80C9 +#define GL_BLEND_DST_ALPHA_EXT 0x80CA +#define GL_BLEND_SRC_ALPHA_EXT 0x80CB +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEEXTPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparateEXT (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#endif +#endif /* GL_EXT_blend_func_separate */ + +#ifndef GL_EXT_blend_logic_op +#define GL_EXT_blend_logic_op 1 +#endif /* GL_EXT_blend_logic_op */ + +#ifndef GL_EXT_blend_minmax +#define GL_EXT_blend_minmax 1 +#define GL_MIN_EXT 0x8007 +#define GL_MAX_EXT 0x8008 +#define GL_FUNC_ADD_EXT 0x8006 +#define GL_BLEND_EQUATION_EXT 0x8009 +typedef void (APIENTRYP PFNGLBLENDEQUATIONEXTPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationEXT (GLenum mode); +#endif +#endif /* GL_EXT_blend_minmax */ + +#ifndef GL_EXT_blend_subtract +#define GL_EXT_blend_subtract 1 +#define GL_FUNC_SUBTRACT_EXT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT_EXT 0x800B +#endif /* GL_EXT_blend_subtract */ + +#ifndef GL_EXT_clip_volume_hint +#define GL_EXT_clip_volume_hint 1 +#define GL_CLIP_VOLUME_CLIPPING_HINT_EXT 0x80F0 +#endif /* GL_EXT_clip_volume_hint */ + +#ifndef GL_EXT_cmyka +#define GL_EXT_cmyka 1 +#define GL_CMYK_EXT 0x800C +#define GL_CMYKA_EXT 0x800D +#define GL_PACK_CMYK_HINT_EXT 0x800E +#define GL_UNPACK_CMYK_HINT_EXT 0x800F +#endif /* GL_EXT_cmyka */ + +#ifndef GL_EXT_color_subtable +#define GL_EXT_color_subtable 1 +typedef void (APIENTRYP PFNGLCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorSubTableEXT (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glCopyColorSubTableEXT (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +#endif +#endif /* GL_EXT_color_subtable */ + +#ifndef GL_EXT_compiled_vertex_array +#define GL_EXT_compiled_vertex_array 1 +#define GL_ARRAY_ELEMENT_LOCK_FIRST_EXT 0x81A8 +#define GL_ARRAY_ELEMENT_LOCK_COUNT_EXT 0x81A9 +typedef void (APIENTRYP PFNGLLOCKARRAYSEXTPROC) (GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLUNLOCKARRAYSEXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLockArraysEXT (GLint first, GLsizei count); +GLAPI void APIENTRY glUnlockArraysEXT (void); +#endif +#endif /* GL_EXT_compiled_vertex_array */ + +#ifndef GL_EXT_convolution +#define GL_EXT_convolution 1 +#define GL_CONVOLUTION_1D_EXT 0x8010 +#define GL_CONVOLUTION_2D_EXT 0x8011 +#define GL_SEPARABLE_2D_EXT 0x8012 +#define GL_CONVOLUTION_BORDER_MODE_EXT 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE_EXT 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS_EXT 0x8015 +#define GL_REDUCE_EXT 0x8016 +#define GL_CONVOLUTION_FORMAT_EXT 0x8017 +#define GL_CONVOLUTION_WIDTH_EXT 0x8018 +#define GL_CONVOLUTION_HEIGHT_EXT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH_EXT 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT_EXT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE_EXT 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE_EXT 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE_EXT 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE_EXT 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS_EXT 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS_EXT 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS_EXT 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS_EXT 0x8023 +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, void *image); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConvolutionFilter1DEXT (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionFilter2DEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionParameterfEXT (GLenum target, GLenum pname, GLfloat params); +GLAPI void APIENTRY glConvolutionParameterfvEXT (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glConvolutionParameteriEXT (GLenum target, GLenum pname, GLint params); +GLAPI void APIENTRY glConvolutionParameterivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyConvolutionFilter1DEXT (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyConvolutionFilter2DEXT (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetConvolutionFilterEXT (GLenum target, GLenum format, GLenum type, void *image); +GLAPI void APIENTRY glGetConvolutionParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetConvolutionParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSeparableFilterEXT (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +GLAPI void APIENTRY glSeparableFilter2DEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +#endif +#endif /* GL_EXT_convolution */ + +#ifndef GL_EXT_coordinate_frame +#define GL_EXT_coordinate_frame 1 +#define GL_TANGENT_ARRAY_EXT 0x8439 +#define GL_BINORMAL_ARRAY_EXT 0x843A +#define GL_CURRENT_TANGENT_EXT 0x843B +#define GL_CURRENT_BINORMAL_EXT 0x843C +#define GL_TANGENT_ARRAY_TYPE_EXT 0x843E +#define GL_TANGENT_ARRAY_STRIDE_EXT 0x843F +#define GL_BINORMAL_ARRAY_TYPE_EXT 0x8440 +#define GL_BINORMAL_ARRAY_STRIDE_EXT 0x8441 +#define GL_TANGENT_ARRAY_POINTER_EXT 0x8442 +#define GL_BINORMAL_ARRAY_POINTER_EXT 0x8443 +#define GL_MAP1_TANGENT_EXT 0x8444 +#define GL_MAP2_TANGENT_EXT 0x8445 +#define GL_MAP1_BINORMAL_EXT 0x8446 +#define GL_MAP2_BINORMAL_EXT 0x8447 +typedef void (APIENTRYP PFNGLTANGENT3BEXTPROC) (GLbyte tx, GLbyte ty, GLbyte tz); +typedef void (APIENTRYP PFNGLTANGENT3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLTANGENT3DEXTPROC) (GLdouble tx, GLdouble ty, GLdouble tz); +typedef void (APIENTRYP PFNGLTANGENT3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLTANGENT3FEXTPROC) (GLfloat tx, GLfloat ty, GLfloat tz); +typedef void (APIENTRYP PFNGLTANGENT3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLTANGENT3IEXTPROC) (GLint tx, GLint ty, GLint tz); +typedef void (APIENTRYP PFNGLTANGENT3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLTANGENT3SEXTPROC) (GLshort tx, GLshort ty, GLshort tz); +typedef void (APIENTRYP PFNGLTANGENT3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLBINORMAL3BEXTPROC) (GLbyte bx, GLbyte by, GLbyte bz); +typedef void (APIENTRYP PFNGLBINORMAL3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLBINORMAL3DEXTPROC) (GLdouble bx, GLdouble by, GLdouble bz); +typedef void (APIENTRYP PFNGLBINORMAL3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLBINORMAL3FEXTPROC) (GLfloat bx, GLfloat by, GLfloat bz); +typedef void (APIENTRYP PFNGLBINORMAL3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLBINORMAL3IEXTPROC) (GLint bx, GLint by, GLint bz); +typedef void (APIENTRYP PFNGLBINORMAL3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLBINORMAL3SEXTPROC) (GLshort bx, GLshort by, GLshort bz); +typedef void (APIENTRYP PFNGLBINORMAL3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLTANGENTPOINTEREXTPROC) (GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLBINORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTangent3bEXT (GLbyte tx, GLbyte ty, GLbyte tz); +GLAPI void APIENTRY glTangent3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glTangent3dEXT (GLdouble tx, GLdouble ty, GLdouble tz); +GLAPI void APIENTRY glTangent3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glTangent3fEXT (GLfloat tx, GLfloat ty, GLfloat tz); +GLAPI void APIENTRY glTangent3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glTangent3iEXT (GLint tx, GLint ty, GLint tz); +GLAPI void APIENTRY glTangent3ivEXT (const GLint *v); +GLAPI void APIENTRY glTangent3sEXT (GLshort tx, GLshort ty, GLshort tz); +GLAPI void APIENTRY glTangent3svEXT (const GLshort *v); +GLAPI void APIENTRY glBinormal3bEXT (GLbyte bx, GLbyte by, GLbyte bz); +GLAPI void APIENTRY glBinormal3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glBinormal3dEXT (GLdouble bx, GLdouble by, GLdouble bz); +GLAPI void APIENTRY glBinormal3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glBinormal3fEXT (GLfloat bx, GLfloat by, GLfloat bz); +GLAPI void APIENTRY glBinormal3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glBinormal3iEXT (GLint bx, GLint by, GLint bz); +GLAPI void APIENTRY glBinormal3ivEXT (const GLint *v); +GLAPI void APIENTRY glBinormal3sEXT (GLshort bx, GLshort by, GLshort bz); +GLAPI void APIENTRY glBinormal3svEXT (const GLshort *v); +GLAPI void APIENTRY glTangentPointerEXT (GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glBinormalPointerEXT (GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_coordinate_frame */ + +#ifndef GL_EXT_copy_texture +#define GL_EXT_copy_texture 1 +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCopyTexImage1DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyTexImage2DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTexSubImage2DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glCopyTexSubImage3DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#endif +#endif /* GL_EXT_copy_texture */ + +#ifndef GL_EXT_cull_vertex +#define GL_EXT_cull_vertex 1 +#define GL_CULL_VERTEX_EXT 0x81AA +#define GL_CULL_VERTEX_EYE_POSITION_EXT 0x81AB +#define GL_CULL_VERTEX_OBJECT_POSITION_EXT 0x81AC +typedef void (APIENTRYP PFNGLCULLPARAMETERDVEXTPROC) (GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLCULLPARAMETERFVEXTPROC) (GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCullParameterdvEXT (GLenum pname, GLdouble *params); +GLAPI void APIENTRY glCullParameterfvEXT (GLenum pname, GLfloat *params); +#endif +#endif /* GL_EXT_cull_vertex */ + +#ifndef GL_EXT_debug_label +#define GL_EXT_debug_label 1 +#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F +#define GL_PROGRAM_OBJECT_EXT 0x8B40 +#define GL_SHADER_OBJECT_EXT 0x8B48 +#define GL_BUFFER_OBJECT_EXT 0x9151 +#define GL_QUERY_OBJECT_EXT 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154 +typedef void (APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label); +typedef void (APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label); +GLAPI void APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +#endif /* GL_EXT_debug_label */ + +#ifndef GL_EXT_debug_marker +#define GL_EXT_debug_marker 1 +typedef void (APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker); +GLAPI void APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker); +GLAPI void APIENTRY glPopGroupMarkerEXT (void); +#endif +#endif /* GL_EXT_debug_marker */ + +#ifndef GL_EXT_depth_bounds_test +#define GL_EXT_depth_bounds_test 1 +#define GL_DEPTH_BOUNDS_TEST_EXT 0x8890 +#define GL_DEPTH_BOUNDS_EXT 0x8891 +typedef void (APIENTRYP PFNGLDEPTHBOUNDSEXTPROC) (GLclampd zmin, GLclampd zmax); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthBoundsEXT (GLclampd zmin, GLclampd zmax); +#endif +#endif /* GL_EXT_depth_bounds_test */ + +#ifndef GL_EXT_direct_state_access +#define GL_EXT_direct_state_access 1 +#define GL_PROGRAM_MATRIX_EXT 0x8E2D +#define GL_TRANSPOSE_PROGRAM_MATRIX_EXT 0x8E2E +#define GL_PROGRAM_MATRIX_STACK_DEPTH_EXT 0x8E2F +typedef void (APIENTRYP PFNGLMATRIXLOADFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXMULTFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXLOADIDENTITYEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLMATRIXROTATEFEXTPROC) (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXROTATEDEXTPROC) (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXSCALEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXSCALEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXTRANSLATEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXTRANSLATEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXFRUSTUMEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLMATRIXORTHOEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLMATRIXPOPEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLMATRIXPUSHEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLPUSHCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLBINDMULTITEXTUREEXTPROC) (GLenum texunit, GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORDPOINTEREXTPROC) (GLenum texunit, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLMULTITEXENVFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXENVIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXGENDEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble param); +typedef void (APIENTRYP PFNGLMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params); +typedef void (APIENTRYP PFNGLMULTITEXGENFEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXGENIEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXLEVELPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXLEVELPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLGETFLOATINDEXEDVEXTPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (APIENTRYP PFNGLGETDOUBLEINDEXEDVEXTPROC) (GLenum target, GLuint index, GLdouble *data); +typedef void (APIENTRYP PFNGLGETPOINTERINDEXEDVEXTPROC) (GLenum target, GLuint index, void **data); +typedef void (APIENTRYP PFNGLENABLEINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISENABLEDINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLGETINTEGERINDEXEDVEXTPROC) (GLenum target, GLuint index, GLint *data); +typedef void (APIENTRYP PFNGLGETBOOLEANINDEXEDVEXTPROC) (GLenum target, GLuint index, GLboolean *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint lod, void *img); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint lod, void *img); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLNAMEDBUFFERDATAEXTPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFEREXTPROC) (GLuint buffer, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPNAMEDBUFFEREXTPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERIVEXTPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPOINTERVEXTPROC) (GLuint buffer, GLenum pname, void **params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLTEXTUREBUFFEREXTPROC) (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLMULTITEXBUFFEREXTPROC) (GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIEXTPROC) (GLuint program, GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4IEXTPROC) (GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERSI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERSI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERIIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERIUIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint *params); +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEIEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEIEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLGETFLOATI_VEXTPROC) (GLenum pname, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETDOUBLEI_VEXTPROC) (GLenum pname, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPOINTERI_VEXTPROC) (GLenum pname, GLuint index, void **params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum format, GLsizei len, const void *string); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4DEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4DVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4FEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4FVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERDVEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERFVEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMIVEXTPROC) (GLuint program, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum pname, void *string); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEEXTPROC) (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETNAMEDRENDERBUFFERPARAMETERIVEXTPROC) (GLuint renderbuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLECOVERAGEEXTPROC) (GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef GLenum (APIENTRYP PFNGLCHECKNAMEDFRAMEBUFFERSTATUSEXTPROC) (GLuint framebuffer, GLenum target); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE1DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE2DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE3DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERRENDERBUFFEREXTPROC) (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATETEXTUREMIPMAPEXTPROC) (GLuint texture, GLenum target); +typedef void (APIENTRYP PFNGLGENERATEMULTITEXMIPMAPEXTPROC) (GLenum texunit, GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERDRAWBUFFEREXTPROC) (GLuint framebuffer, GLenum mode); +typedef void (APIENTRYP PFNGLFRAMEBUFFERDRAWBUFFERSEXTPROC) (GLuint framebuffer, GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLFRAMEBUFFERREADBUFFEREXTPROC) (GLuint framebuffer, GLenum mode); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLNAMEDCOPYBUFFERSUBDATAEXTPROC) (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURELAYEREXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREFACEEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face); +typedef void (APIENTRYP PFNGLTEXTURERENDERBUFFEREXTPROC) (GLuint texture, GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLMULTITEXRENDERBUFFEREXTPROC) (GLenum texunit, GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYCOLOROFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYEDGEFLAGOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYINDEXOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYNORMALOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYTEXCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYMULTITEXCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum texunit, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYFOGCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYSECONDARYCOLOROFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBIOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYEXTPROC) (GLuint vaobj, GLenum array); +typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYEXTPROC) (GLuint vaobj, GLenum array); +typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYATTRIBEXTPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYATTRIBEXTPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINTEGERVEXTPROC) (GLuint vaobj, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYPOINTERVEXTPROC) (GLuint vaobj, GLenum pname, void **param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINTEGERI_VEXTPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYPOINTERI_VEXTPROC) (GLuint vaobj, GLuint index, GLenum pname, void **param); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERDATAEXTPROC) (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLenum internalformat, GLsizeiptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERPARAMETERIEXTPROC) (GLuint framebuffer, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DEXTPROC) (GLuint program, GLint location, GLdouble x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERRANGEEXTPROC) (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DMULTISAMPLEEXTPROC) (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DMULTISAMPLEEXTPROC) (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLVERTEXARRAYBINDVERTEXBUFFEREXTPROC) (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBIFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBLFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBBINDINGEXTPROC) (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBINDINGDIVISOREXTPROC) (GLuint vaobj, GLuint bindingindex, GLuint divisor); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBLOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLTEXTUREPAGECOMMITMENTEXTPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBDIVISOREXTPROC) (GLuint vaobj, GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMatrixLoadfEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoaddEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixMultfEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultdEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixLoadIdentityEXT (GLenum mode); +GLAPI void APIENTRY glMatrixRotatefEXT (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixRotatedEXT (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixScalefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixScaledEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixTranslatefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixTranslatedEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixFrustumEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glMatrixOrthoEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glMatrixPopEXT (GLenum mode); +GLAPI void APIENTRY glMatrixPushEXT (GLenum mode); +GLAPI void APIENTRY glClientAttribDefaultEXT (GLbitfield mask); +GLAPI void APIENTRY glPushClientAttribDefaultEXT (GLbitfield mask); +GLAPI void APIENTRY glTextureParameterfEXT (GLuint texture, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glTextureParameterfvEXT (GLuint texture, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glTextureParameteriEXT (GLuint texture, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glTextureParameterivEXT (GLuint texture, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetTextureImageEXT (GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +GLAPI void APIENTRY glGetTextureParameterfvEXT (GLuint texture, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureParameterivEXT (GLuint texture, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureLevelParameterfvEXT (GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureLevelParameterivEXT (GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glTextureImage3DEXT (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glBindMultiTextureEXT (GLenum texunit, GLenum target, GLuint texture); +GLAPI void APIENTRY glMultiTexCoordPointerEXT (GLenum texunit, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glMultiTexEnvfEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexEnvfvEXT (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexEnviEXT (GLenum texunit, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexEnvivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexGendEXT (GLenum texunit, GLenum coord, GLenum pname, GLdouble param); +GLAPI void APIENTRY glMultiTexGendvEXT (GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params); +GLAPI void APIENTRY glMultiTexGenfEXT (GLenum texunit, GLenum coord, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexGenfvEXT (GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexGeniEXT (GLenum texunit, GLenum coord, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexGenivEXT (GLenum texunit, GLenum coord, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetMultiTexEnvfvEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexEnvivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexGendvEXT (GLenum texunit, GLenum coord, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetMultiTexGenfvEXT (GLenum texunit, GLenum coord, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexGenivEXT (GLenum texunit, GLenum coord, GLenum pname, GLint *params); +GLAPI void APIENTRY glMultiTexParameteriEXT (GLenum texunit, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexParameterivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexParameterfEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexParameterfvEXT (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetMultiTexImageEXT (GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +GLAPI void APIENTRY glGetMultiTexParameterfvEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexParameterivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexLevelParameterfvEXT (GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexLevelParameterivEXT (GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glMultiTexImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glEnableClientStateIndexedEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glDisableClientStateIndexedEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glGetFloatIndexedvEXT (GLenum target, GLuint index, GLfloat *data); +GLAPI void APIENTRY glGetDoubleIndexedvEXT (GLenum target, GLuint index, GLdouble *data); +GLAPI void APIENTRY glGetPointerIndexedvEXT (GLenum target, GLuint index, void **data); +GLAPI void APIENTRY glEnableIndexedEXT (GLenum target, GLuint index); +GLAPI void APIENTRY glDisableIndexedEXT (GLenum target, GLuint index); +GLAPI GLboolean APIENTRY glIsEnabledIndexedEXT (GLenum target, GLuint index); +GLAPI void APIENTRY glGetIntegerIndexedvEXT (GLenum target, GLuint index, GLint *data); +GLAPI void APIENTRY glGetBooleanIndexedvEXT (GLenum target, GLuint index, GLboolean *data); +GLAPI void APIENTRY glCompressedTextureImage3DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glGetCompressedTextureImageEXT (GLuint texture, GLenum target, GLint lod, void *img); +GLAPI void APIENTRY glCompressedMultiTexImage3DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glGetCompressedMultiTexImageEXT (GLenum texunit, GLenum target, GLint lod, void *img); +GLAPI void APIENTRY glMatrixLoadTransposefEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoadTransposedEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixMultTransposefEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultTransposedEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glNamedBufferDataEXT (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +GLAPI void APIENTRY glNamedBufferSubDataEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void *APIENTRY glMapNamedBufferEXT (GLuint buffer, GLenum access); +GLAPI GLboolean APIENTRY glUnmapNamedBufferEXT (GLuint buffer); +GLAPI void APIENTRY glGetNamedBufferParameterivEXT (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedBufferPointervEXT (GLuint buffer, GLenum pname, void **params); +GLAPI void APIENTRY glGetNamedBufferSubDataEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +GLAPI void APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat v0); +GLAPI void APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint v0); +GLAPI void APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glTextureBufferEXT (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glMultiTexBufferEXT (GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glTextureParameterIivEXT (GLuint texture, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureParameterIuivEXT (GLuint texture, GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTextureParameterIivEXT (GLuint texture, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterIuivEXT (GLuint texture, GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glMultiTexParameterIivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexParameterIuivEXT (GLenum texunit, GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetMultiTexParameterIivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexParameterIuivEXT (GLenum texunit, GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glProgramUniform1uiEXT (GLuint program, GLint location, GLuint v0); +GLAPI void APIENTRY glProgramUniform2uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glProgramUniform3uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glProgramUniform4uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glProgramUniform1uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform2uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform3uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform4uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glNamedProgramLocalParameters4fvEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glNamedProgramLocalParameterI4iEXT (GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glNamedProgramLocalParameterI4ivEXT (GLuint program, GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glNamedProgramLocalParametersI4ivEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glNamedProgramLocalParameterI4uiEXT (GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glNamedProgramLocalParameterI4uivEXT (GLuint program, GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glNamedProgramLocalParametersI4uivEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterIivEXT (GLuint program, GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterIuivEXT (GLuint program, GLenum target, GLuint index, GLuint *params); +GLAPI void APIENTRY glEnableClientStateiEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glDisableClientStateiEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glGetFloati_vEXT (GLenum pname, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetDoublei_vEXT (GLenum pname, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetPointeri_vEXT (GLenum pname, GLuint index, void **params); +GLAPI void APIENTRY glNamedProgramStringEXT (GLuint program, GLenum target, GLenum format, GLsizei len, const void *string); +GLAPI void APIENTRY glNamedProgramLocalParameter4dEXT (GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glNamedProgramLocalParameter4dvEXT (GLuint program, GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glNamedProgramLocalParameter4fEXT (GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glNamedProgramLocalParameter4fvEXT (GLuint program, GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterdvEXT (GLuint program, GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterfvEXT (GLuint program, GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetNamedProgramivEXT (GLuint program, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedProgramStringEXT (GLuint program, GLenum target, GLenum pname, void *string); +GLAPI void APIENTRY glNamedRenderbufferStorageEXT (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetNamedRenderbufferParameterivEXT (GLuint renderbuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleEXT (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleCoverageEXT (GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI GLenum APIENTRY glCheckNamedFramebufferStatusEXT (GLuint framebuffer, GLenum target); +GLAPI void APIENTRY glNamedFramebufferTexture1DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTexture2DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTexture3DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glNamedFramebufferRenderbufferEXT (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetNamedFramebufferAttachmentParameterivEXT (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateTextureMipmapEXT (GLuint texture, GLenum target); +GLAPI void APIENTRY glGenerateMultiTexMipmapEXT (GLenum texunit, GLenum target); +GLAPI void APIENTRY glFramebufferDrawBufferEXT (GLuint framebuffer, GLenum mode); +GLAPI void APIENTRY glFramebufferDrawBuffersEXT (GLuint framebuffer, GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glFramebufferReadBufferEXT (GLuint framebuffer, GLenum mode); +GLAPI void APIENTRY glGetFramebufferParameterivEXT (GLuint framebuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glNamedCopyBufferSubDataEXT (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glNamedFramebufferTextureEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTextureLayerEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glNamedFramebufferTextureFaceEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face); +GLAPI void APIENTRY glTextureRenderbufferEXT (GLuint texture, GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glMultiTexRenderbufferEXT (GLenum texunit, GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glVertexArrayVertexOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayColorOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayEdgeFlagOffsetEXT (GLuint vaobj, GLuint buffer, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayIndexOffsetEXT (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayNormalOffsetEXT (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayTexCoordOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayMultiTexCoordOffsetEXT (GLuint vaobj, GLuint buffer, GLenum texunit, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayFogCoordOffsetEXT (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArraySecondaryColorOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayVertexAttribOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayVertexAttribIOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glEnableVertexArrayEXT (GLuint vaobj, GLenum array); +GLAPI void APIENTRY glDisableVertexArrayEXT (GLuint vaobj, GLenum array); +GLAPI void APIENTRY glEnableVertexArrayAttribEXT (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glDisableVertexArrayAttribEXT (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glGetVertexArrayIntegervEXT (GLuint vaobj, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayPointervEXT (GLuint vaobj, GLenum pname, void **param); +GLAPI void APIENTRY glGetVertexArrayIntegeri_vEXT (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayPointeri_vEXT (GLuint vaobj, GLuint index, GLenum pname, void **param); +GLAPI void *APIENTRY glMapNamedBufferRangeEXT (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI void APIENTRY glFlushMappedNamedBufferRangeEXT (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glNamedBufferStorageEXT (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +GLAPI void APIENTRY glClearNamedBufferDataEXT (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearNamedBufferSubDataEXT (GLuint buffer, GLenum internalformat, GLsizeiptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glNamedFramebufferParameteriEXT (GLuint framebuffer, GLenum pname, GLint param); +GLAPI void APIENTRY glGetNamedFramebufferParameterivEXT (GLuint framebuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glProgramUniform1dEXT (GLuint program, GLint location, GLdouble x); +GLAPI void APIENTRY glProgramUniform2dEXT (GLuint program, GLint location, GLdouble x, GLdouble y); +GLAPI void APIENTRY glProgramUniform3dEXT (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glProgramUniform4dEXT (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramUniform1dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform2dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform3dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform4dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glTextureBufferRangeEXT (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glTextureStorage1DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTextureStorage2DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureStorage3DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glTextureStorage2DMultisampleEXT (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureStorage3DMultisampleEXT (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glVertexArrayBindVertexBufferEXT (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +GLAPI void APIENTRY glVertexArrayVertexAttribFormatEXT (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayVertexAttribIFormatEXT (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayVertexAttribLFormatEXT (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayVertexAttribBindingEXT (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +GLAPI void APIENTRY glVertexArrayVertexBindingDivisorEXT (GLuint vaobj, GLuint bindingindex, GLuint divisor); +GLAPI void APIENTRY glVertexArrayVertexAttribLOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glTexturePageCommitmentEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +GLAPI void APIENTRY glVertexArrayVertexAttribDivisorEXT (GLuint vaobj, GLuint index, GLuint divisor); +#endif +#endif /* GL_EXT_direct_state_access */ + +#ifndef GL_EXT_draw_buffers2 +#define GL_EXT_draw_buffers2 1 +typedef void (APIENTRYP PFNGLCOLORMASKINDEXEDEXTPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorMaskIndexedEXT (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +#endif +#endif /* GL_EXT_draw_buffers2 */ + +#ifndef GL_EXT_draw_instanced +#define GL_EXT_draw_instanced 1 +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +GLAPI void APIENTRY glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_EXT_draw_instanced */ + +#ifndef GL_EXT_draw_range_elements +#define GL_EXT_draw_range_elements 1 +#define GL_MAX_ELEMENTS_VERTICES_EXT 0x80E8 +#define GL_MAX_ELEMENTS_INDICES_EXT 0x80E9 +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawRangeElementsEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +#endif +#endif /* GL_EXT_draw_range_elements */ + +#ifndef GL_EXT_external_buffer +#define GL_EXT_external_buffer 1 +typedef void *GLeglClientBufferEXT; +typedef void (APIENTRYP PFNGLBUFFERSTORAGEEXTERNALEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTERNALEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferStorageExternalEXT (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +GLAPI void APIENTRY glNamedBufferStorageExternalEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#endif +#endif /* GL_EXT_external_buffer */ + +#ifndef GL_EXT_fog_coord +#define GL_EXT_fog_coord 1 +#define GL_FOG_COORDINATE_SOURCE_EXT 0x8450 +#define GL_FOG_COORDINATE_EXT 0x8451 +#define GL_FRAGMENT_DEPTH_EXT 0x8452 +#define GL_CURRENT_FOG_COORDINATE_EXT 0x8453 +#define GL_FOG_COORDINATE_ARRAY_TYPE_EXT 0x8454 +#define GL_FOG_COORDINATE_ARRAY_STRIDE_EXT 0x8455 +#define GL_FOG_COORDINATE_ARRAY_POINTER_EXT 0x8456 +#define GL_FOG_COORDINATE_ARRAY_EXT 0x8457 +typedef void (APIENTRYP PFNGLFOGCOORDFEXTPROC) (GLfloat coord); +typedef void (APIENTRYP PFNGLFOGCOORDFVEXTPROC) (const GLfloat *coord); +typedef void (APIENTRYP PFNGLFOGCOORDDEXTPROC) (GLdouble coord); +typedef void (APIENTRYP PFNGLFOGCOORDDVEXTPROC) (const GLdouble *coord); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTEREXTPROC) (GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFogCoordfEXT (GLfloat coord); +GLAPI void APIENTRY glFogCoordfvEXT (const GLfloat *coord); +GLAPI void APIENTRY glFogCoorddEXT (GLdouble coord); +GLAPI void APIENTRY glFogCoorddvEXT (const GLdouble *coord); +GLAPI void APIENTRY glFogCoordPointerEXT (GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_fog_coord */ + +#ifndef GL_EXT_framebuffer_blit +#define GL_EXT_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_EXT 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_EXT 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_EXT 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_EXT 0x8CAA +typedef void (APIENTRYP PFNGLBLITFRAMEBUFFEREXTPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlitFramebufferEXT (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_EXT_framebuffer_blit */ + +#ifndef GL_EXT_framebuffer_multisample +#define GL_EXT_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 +#define GL_MAX_SAMPLES_EXT 0x8D57 +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_EXT_framebuffer_multisample */ + +#ifndef GL_EXT_framebuffer_multisample_blit_scaled +#define GL_EXT_framebuffer_multisample_blit_scaled 1 +#define GL_SCALED_RESOLVE_FASTEST_EXT 0x90BA +#define GL_SCALED_RESOLVE_NICEST_EXT 0x90BB +#endif /* GL_EXT_framebuffer_multisample_blit_scaled */ + +#ifndef GL_EXT_framebuffer_object +#define GL_EXT_framebuffer_object 1 +#define GL_INVALID_FRAMEBUFFER_OPERATION_EXT 0x0506 +#define GL_MAX_RENDERBUFFER_SIZE_EXT 0x84E8 +#define GL_FRAMEBUFFER_BINDING_EXT 0x8CA6 +#define GL_RENDERBUFFER_BINDING_EXT 0x8CA7 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE_EXT 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT 0x8CD9 +#define GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT 0x8CDA +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED_EXT 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF +#define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 +#define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 +#define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 +#define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 +#define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 +#define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 +#define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 +#define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 +#define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 +#define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 +#define GL_COLOR_ATTACHMENT10_EXT 0x8CEA +#define GL_COLOR_ATTACHMENT11_EXT 0x8CEB +#define GL_COLOR_ATTACHMENT12_EXT 0x8CEC +#define GL_COLOR_ATTACHMENT13_EXT 0x8CED +#define GL_COLOR_ATTACHMENT14_EXT 0x8CEE +#define GL_COLOR_ATTACHMENT15_EXT 0x8CEF +#define GL_DEPTH_ATTACHMENT_EXT 0x8D00 +#define GL_STENCIL_ATTACHMENT_EXT 0x8D20 +#define GL_FRAMEBUFFER_EXT 0x8D40 +#define GL_RENDERBUFFER_EXT 0x8D41 +#define GL_RENDERBUFFER_WIDTH_EXT 0x8D42 +#define GL_RENDERBUFFER_HEIGHT_EXT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT_EXT 0x8D44 +#define GL_STENCIL_INDEX1_EXT 0x8D46 +#define GL_STENCIL_INDEX4_EXT 0x8D47 +#define GL_STENCIL_INDEX8_EXT 0x8D48 +#define GL_STENCIL_INDEX16_EXT 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE_EXT 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE_EXT 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE_EXT 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE_EXT 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE_EXT 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE_EXT 0x8D55 +typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFEREXTPROC) (GLuint renderbuffer); +typedef void (APIENTRYP PFNGLBINDRENDERBUFFEREXTPROC) (GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSEXTPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLGENRENDERBUFFERSEXTPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFEREXTPROC) (GLuint framebuffer); +typedef void (APIENTRYP PFNGLBINDFRAMEBUFFEREXTPROC) (GLenum target, GLuint framebuffer); +typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSEXTPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSEXTPROC) (GLsizei n, GLuint *framebuffers); +typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC) (GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFEREXTPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATEMIPMAPEXTPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glIsRenderbufferEXT (GLuint renderbuffer); +GLAPI void APIENTRY glBindRenderbufferEXT (GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glDeleteRenderbuffersEXT (GLsizei n, const GLuint *renderbuffers); +GLAPI void APIENTRY glGenRenderbuffersEXT (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glRenderbufferStorageEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetRenderbufferParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI GLboolean APIENTRY glIsFramebufferEXT (GLuint framebuffer); +GLAPI void APIENTRY glBindFramebufferEXT (GLenum target, GLuint framebuffer); +GLAPI void APIENTRY glDeleteFramebuffersEXT (GLsizei n, const GLuint *framebuffers); +GLAPI void APIENTRY glGenFramebuffersEXT (GLsizei n, GLuint *framebuffers); +GLAPI GLenum APIENTRY glCheckFramebufferStatusEXT (GLenum target); +GLAPI void APIENTRY glFramebufferTexture1DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture2DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture3DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glFramebufferRenderbufferEXT (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetFramebufferAttachmentParameterivEXT (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateMipmapEXT (GLenum target); +#endif +#endif /* GL_EXT_framebuffer_object */ + +#ifndef GL_EXT_framebuffer_sRGB +#define GL_EXT_framebuffer_sRGB 1 +#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 +#define GL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x8DBA +#endif /* GL_EXT_framebuffer_sRGB */ + +#ifndef GL_EXT_geometry_shader4 +#define GL_EXT_geometry_shader4 1 +#define GL_GEOMETRY_SHADER_EXT 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT_EXT 0x8DDA +#define GL_GEOMETRY_INPUT_TYPE_EXT 0x8DDB +#define GL_GEOMETRY_OUTPUT_TYPE_EXT 0x8DDC +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29 +#define GL_MAX_GEOMETRY_VARYING_COMPONENTS_EXT 0x8DDD +#define GL_MAX_VERTEX_VARYING_COMPONENTS_EXT 0x8DDE +#define GL_MAX_VARYING_COMPONENTS_EXT 0x8B4B +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1 +#define GL_LINES_ADJACENCY_EXT 0x000A +#define GL_LINE_STRIP_ADJACENCY_EXT 0x000B +#define GL_TRIANGLES_ADJACENCY_EXT 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0x000D +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT 0x8DA9 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT 0x8CD4 +#define GL_PROGRAM_POINT_SIZE_EXT 0x8642 +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value); +#endif +#endif /* GL_EXT_geometry_shader4 */ + +#ifndef GL_EXT_gpu_program_parameters +#define GL_EXT_gpu_program_parameters 1 +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramEnvParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glProgramLocalParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +#endif +#endif /* GL_EXT_gpu_program_parameters */ + +#ifndef GL_EXT_gpu_shader4 +#define GL_EXT_gpu_shader4 1 +#define GL_SAMPLER_1D_ARRAY_EXT 0x8DC0 +#define GL_SAMPLER_2D_ARRAY_EXT 0x8DC1 +#define GL_SAMPLER_BUFFER_EXT 0x8DC2 +#define GL_SAMPLER_1D_ARRAY_SHADOW_EXT 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW_EXT 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW_EXT 0x8DC5 +#define GL_UNSIGNED_INT_VEC2_EXT 0x8DC6 +#define GL_UNSIGNED_INT_VEC3_EXT 0x8DC7 +#define GL_UNSIGNED_INT_VEC4_EXT 0x8DC8 +#define GL_INT_SAMPLER_1D_EXT 0x8DC9 +#define GL_INT_SAMPLER_2D_EXT 0x8DCA +#define GL_INT_SAMPLER_3D_EXT 0x8DCB +#define GL_INT_SAMPLER_CUBE_EXT 0x8DCC +#define GL_INT_SAMPLER_2D_RECT_EXT 0x8DCD +#define GL_INT_SAMPLER_1D_ARRAY_EXT 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY_EXT 0x8DCF +#define GL_INT_SAMPLER_BUFFER_EXT 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_1D_EXT 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D_EXT 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D_EXT 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE_EXT 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT_EXT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT 0x8DD7 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT 0x8DD8 +#define GL_MIN_PROGRAM_TEXEL_OFFSET_EXT 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET_EXT 0x8905 +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT 0x88FD +typedef void (APIENTRYP PFNGLGETUNIFORMUIVEXTPROC) (GLuint program, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONEXTPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONEXTPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORM1UIEXTPROC) (GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLUNIFORM2UIEXTPROC) (GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLUNIFORM3UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLUNIFORM4UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLUNIFORM1UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM2UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM3UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM4UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IEXTPROC) (GLuint index, GLint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IEXTPROC) (GLuint index, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IEXTPROC) (GLuint index, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IEXTPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIEXTPROC) (GLuint index, GLuint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIEXTPROC) (GLuint index, GLuint x, GLuint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVEXTPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVEXTPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVEXTPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVEXTPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVEXTPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVEXTPROC) (GLuint index, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetUniformuivEXT (GLuint program, GLint location, GLuint *params); +GLAPI void APIENTRY glBindFragDataLocationEXT (GLuint program, GLuint color, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataLocationEXT (GLuint program, const GLchar *name); +GLAPI void APIENTRY glUniform1uiEXT (GLint location, GLuint v0); +GLAPI void APIENTRY glUniform2uiEXT (GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glUniform3uiEXT (GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glUniform4uiEXT (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glUniform1uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform2uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform3uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform4uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glVertexAttribI1iEXT (GLuint index, GLint x); +GLAPI void APIENTRY glVertexAttribI2iEXT (GLuint index, GLint x, GLint y); +GLAPI void APIENTRY glVertexAttribI3iEXT (GLuint index, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexAttribI4iEXT (GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexAttribI1uiEXT (GLuint index, GLuint x); +GLAPI void APIENTRY glVertexAttribI2uiEXT (GLuint index, GLuint x, GLuint y); +GLAPI void APIENTRY glVertexAttribI3uiEXT (GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI void APIENTRY glVertexAttribI4uiEXT (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glVertexAttribI1ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI2ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI3ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI4ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI1uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI2uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI3uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4bvEXT (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttribI4svEXT (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttribI4ubvEXT (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribI4usvEXT (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribIPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribIivEXT (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribIuivEXT (GLuint index, GLenum pname, GLuint *params); +#endif +#endif /* GL_EXT_gpu_shader4 */ + +#ifndef GL_EXT_histogram +#define GL_EXT_histogram 1 +#define GL_HISTOGRAM_EXT 0x8024 +#define GL_PROXY_HISTOGRAM_EXT 0x8025 +#define GL_HISTOGRAM_WIDTH_EXT 0x8026 +#define GL_HISTOGRAM_FORMAT_EXT 0x8027 +#define GL_HISTOGRAM_RED_SIZE_EXT 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE_EXT 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE_EXT 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE_EXT 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE_EXT 0x802C +#define GL_HISTOGRAM_SINK_EXT 0x802D +#define GL_MINMAX_EXT 0x802E +#define GL_MINMAX_FORMAT_EXT 0x802F +#define GL_MINMAX_SINK_EXT 0x8030 +#define GL_TABLE_TOO_LARGE_EXT 0x8031 +typedef void (APIENTRYP PFNGLGETHISTOGRAMEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMINMAXEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLHISTOGRAMEXTPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLMINMAXEXTPROC) (GLenum target, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLRESETHISTOGRAMEXTPROC) (GLenum target); +typedef void (APIENTRYP PFNGLRESETMINMAXEXTPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetHistogramEXT (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetHistogramParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetHistogramParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMinmaxEXT (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetMinmaxParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMinmaxParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glHistogramEXT (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glMinmaxEXT (GLenum target, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glResetHistogramEXT (GLenum target); +GLAPI void APIENTRY glResetMinmaxEXT (GLenum target); +#endif +#endif /* GL_EXT_histogram */ + +#ifndef GL_EXT_index_array_formats +#define GL_EXT_index_array_formats 1 +#define GL_IUI_V2F_EXT 0x81AD +#define GL_IUI_V3F_EXT 0x81AE +#define GL_IUI_N3F_V2F_EXT 0x81AF +#define GL_IUI_N3F_V3F_EXT 0x81B0 +#define GL_T2F_IUI_V2F_EXT 0x81B1 +#define GL_T2F_IUI_V3F_EXT 0x81B2 +#define GL_T2F_IUI_N3F_V2F_EXT 0x81B3 +#define GL_T2F_IUI_N3F_V3F_EXT 0x81B4 +#endif /* GL_EXT_index_array_formats */ + +#ifndef GL_EXT_index_func +#define GL_EXT_index_func 1 +#define GL_INDEX_TEST_EXT 0x81B5 +#define GL_INDEX_TEST_FUNC_EXT 0x81B6 +#define GL_INDEX_TEST_REF_EXT 0x81B7 +typedef void (APIENTRYP PFNGLINDEXFUNCEXTPROC) (GLenum func, GLclampf ref); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIndexFuncEXT (GLenum func, GLclampf ref); +#endif +#endif /* GL_EXT_index_func */ + +#ifndef GL_EXT_index_material +#define GL_EXT_index_material 1 +#define GL_INDEX_MATERIAL_EXT 0x81B8 +#define GL_INDEX_MATERIAL_PARAMETER_EXT 0x81B9 +#define GL_INDEX_MATERIAL_FACE_EXT 0x81BA +typedef void (APIENTRYP PFNGLINDEXMATERIALEXTPROC) (GLenum face, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIndexMaterialEXT (GLenum face, GLenum mode); +#endif +#endif /* GL_EXT_index_material */ + +#ifndef GL_EXT_index_texture +#define GL_EXT_index_texture 1 +#endif /* GL_EXT_index_texture */ + +#ifndef GL_EXT_light_texture +#define GL_EXT_light_texture 1 +#define GL_FRAGMENT_MATERIAL_EXT 0x8349 +#define GL_FRAGMENT_NORMAL_EXT 0x834A +#define GL_FRAGMENT_COLOR_EXT 0x834C +#define GL_ATTENUATION_EXT 0x834D +#define GL_SHADOW_ATTENUATION_EXT 0x834E +#define GL_TEXTURE_APPLICATION_MODE_EXT 0x834F +#define GL_TEXTURE_LIGHT_EXT 0x8350 +#define GL_TEXTURE_MATERIAL_FACE_EXT 0x8351 +#define GL_TEXTURE_MATERIAL_PARAMETER_EXT 0x8352 +typedef void (APIENTRYP PFNGLAPPLYTEXTUREEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLTEXTURELIGHTEXTPROC) (GLenum pname); +typedef void (APIENTRYP PFNGLTEXTUREMATERIALEXTPROC) (GLenum face, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glApplyTextureEXT (GLenum mode); +GLAPI void APIENTRY glTextureLightEXT (GLenum pname); +GLAPI void APIENTRY glTextureMaterialEXT (GLenum face, GLenum mode); +#endif +#endif /* GL_EXT_light_texture */ + +#ifndef GL_EXT_memory_object +#define GL_EXT_memory_object 1 +#define GL_TEXTURE_TILING_EXT 0x9580 +#define GL_DEDICATED_MEMORY_OBJECT_EXT 0x9581 +#define GL_PROTECTED_MEMORY_OBJECT_EXT 0x959B +#define GL_NUM_TILING_TYPES_EXT 0x9582 +#define GL_TILING_TYPES_EXT 0x9583 +#define GL_OPTIMAL_TILING_EXT 0x9584 +#define GL_LINEAR_TILING_EXT 0x9585 +#define GL_NUM_DEVICE_UUIDS_EXT 0x9596 +#define GL_DEVICE_UUID_EXT 0x9597 +#define GL_DRIVER_UUID_EXT 0x9598 +#define GL_UUID_SIZE_EXT 16 +typedef void (APIENTRYP PFNGLGETUNSIGNEDBYTEVEXTPROC) (GLenum pname, GLubyte *data); +typedef void (APIENTRYP PFNGLGETUNSIGNEDBYTEI_VEXTPROC) (GLenum target, GLuint index, GLubyte *data); +typedef void (APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); +typedef GLboolean (APIENTRYP PFNGLISMEMORYOBJECTEXTPROC) (GLuint memoryObject); +typedef void (APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); +typedef void (APIENTRYP PFNGLMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM2DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM3DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLBUFFERSTORAGEMEMEXTPROC) (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM2DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM2DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM3DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM3DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEMEMEXTPROC) (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM1DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetUnsignedBytevEXT (GLenum pname, GLubyte *data); +GLAPI void APIENTRY glGetUnsignedBytei_vEXT (GLenum target, GLuint index, GLubyte *data); +GLAPI void APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); +GLAPI GLboolean APIENTRY glIsMemoryObjectEXT (GLuint memoryObject); +GLAPI void APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects); +GLAPI void APIENTRY glMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, GLint *params); +GLAPI void APIENTRY glTexStorageMem2DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem2DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem3DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem3DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glBufferStorageMemEXT (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem2DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem2DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem3DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem3DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glNamedBufferStorageMemEXT (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem1DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem1DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_EXT_memory_object */ + +#ifndef GL_EXT_memory_object_fd +#define GL_EXT_memory_object_fd 1 +#define GL_HANDLE_TYPE_OPAQUE_FD_EXT 0x9586 +typedef void (APIENTRYP PFNGLIMPORTMEMORYFDEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportMemoryFdEXT (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_memory_object_fd */ + +#ifndef GL_EXT_memory_object_win32 +#define GL_EXT_memory_object_win32 1 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_EXT 0x9587 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_KMT_EXT 0x9588 +#define GL_DEVICE_LUID_EXT 0x9599 +#define GL_DEVICE_NODE_MASK_EXT 0x959A +#define GL_LUID_SIZE_EXT 8 +#define GL_HANDLE_TYPE_D3D12_TILEPOOL_EXT 0x9589 +#define GL_HANDLE_TYPE_D3D12_RESOURCE_EXT 0x958A +#define GL_HANDLE_TYPE_D3D11_IMAGE_EXT 0x958B +#define GL_HANDLE_TYPE_D3D11_IMAGE_KMT_EXT 0x958C +typedef void (APIENTRYP PFNGLIMPORTMEMORYWIN32HANDLEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +typedef void (APIENTRYP PFNGLIMPORTMEMORYWIN32NAMEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportMemoryWin32HandleEXT (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +GLAPI void APIENTRY glImportMemoryWin32NameEXT (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_memory_object_win32 */ + +#ifndef GL_EXT_misc_attribute +#define GL_EXT_misc_attribute 1 +#endif /* GL_EXT_misc_attribute */ + +#ifndef GL_EXT_multi_draw_arrays +#define GL_EXT_multi_draw_arrays 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysEXT (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GLAPI void APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#endif +#endif /* GL_EXT_multi_draw_arrays */ + +#ifndef GL_EXT_multisample +#define GL_EXT_multisample 1 +#define GL_MULTISAMPLE_EXT 0x809D +#define GL_SAMPLE_ALPHA_TO_MASK_EXT 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F +#define GL_SAMPLE_MASK_EXT 0x80A0 +#define GL_1PASS_EXT 0x80A1 +#define GL_2PASS_0_EXT 0x80A2 +#define GL_2PASS_1_EXT 0x80A3 +#define GL_4PASS_0_EXT 0x80A4 +#define GL_4PASS_1_EXT 0x80A5 +#define GL_4PASS_2_EXT 0x80A6 +#define GL_4PASS_3_EXT 0x80A7 +#define GL_SAMPLE_BUFFERS_EXT 0x80A8 +#define GL_SAMPLES_EXT 0x80A9 +#define GL_SAMPLE_MASK_VALUE_EXT 0x80AA +#define GL_SAMPLE_MASK_INVERT_EXT 0x80AB +#define GL_SAMPLE_PATTERN_EXT 0x80AC +#define GL_MULTISAMPLE_BIT_EXT 0x20000000 +typedef void (APIENTRYP PFNGLSAMPLEMASKEXTPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLSAMPLEPATTERNEXTPROC) (GLenum pattern); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleMaskEXT (GLclampf value, GLboolean invert); +GLAPI void APIENTRY glSamplePatternEXT (GLenum pattern); +#endif +#endif /* GL_EXT_multisample */ + +#ifndef GL_EXT_multiview_tessellation_geometry_shader +#define GL_EXT_multiview_tessellation_geometry_shader 1 +#endif /* GL_EXT_multiview_tessellation_geometry_shader */ + +#ifndef GL_EXT_multiview_texture_multisample +#define GL_EXT_multiview_texture_multisample 1 +#endif /* GL_EXT_multiview_texture_multisample */ + +#ifndef GL_EXT_multiview_timer_query +#define GL_EXT_multiview_timer_query 1 +#endif /* GL_EXT_multiview_timer_query */ + +#ifndef GL_EXT_packed_depth_stencil +#define GL_EXT_packed_depth_stencil 1 +#define GL_DEPTH_STENCIL_EXT 0x84F9 +#define GL_UNSIGNED_INT_24_8_EXT 0x84FA +#define GL_DEPTH24_STENCIL8_EXT 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE_EXT 0x88F1 +#endif /* GL_EXT_packed_depth_stencil */ + +#ifndef GL_EXT_packed_float +#define GL_EXT_packed_float 1 +#define GL_R11F_G11F_B10F_EXT 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV_EXT 0x8C3B +#define GL_RGBA_SIGNED_COMPONENTS_EXT 0x8C3C +#endif /* GL_EXT_packed_float */ + +#ifndef GL_EXT_packed_pixels +#define GL_EXT_packed_pixels 1 +#define GL_UNSIGNED_BYTE_3_3_2_EXT 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4_EXT 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1_EXT 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8_EXT 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2_EXT 0x8036 +#endif /* GL_EXT_packed_pixels */ + +#ifndef GL_EXT_paletted_texture +#define GL_EXT_paletted_texture 1 +#define GL_COLOR_INDEX1_EXT 0x80E2 +#define GL_COLOR_INDEX2_EXT 0x80E3 +#define GL_COLOR_INDEX4_EXT 0x80E4 +#define GL_COLOR_INDEX8_EXT 0x80E5 +#define GL_COLOR_INDEX12_EXT 0x80E6 +#define GL_COLOR_INDEX16_EXT 0x80E7 +#define GL_TEXTURE_INDEX_SIZE_EXT 0x80ED +typedef void (APIENTRYP PFNGLCOLORTABLEEXTPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEEXTPROC) (GLenum target, GLenum format, GLenum type, void *data); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTableEXT (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const void *table); +GLAPI void APIENTRY glGetColorTableEXT (GLenum target, GLenum format, GLenum type, void *data); +GLAPI void APIENTRY glGetColorTableParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetColorTableParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +#endif +#endif /* GL_EXT_paletted_texture */ + +#ifndef GL_EXT_pixel_buffer_object +#define GL_EXT_pixel_buffer_object 1 +#define GL_PIXEL_PACK_BUFFER_EXT 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_EXT 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_EXT 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_EXT 0x88EF +#endif /* GL_EXT_pixel_buffer_object */ + +#ifndef GL_EXT_pixel_transform +#define GL_EXT_pixel_transform 1 +#define GL_PIXEL_TRANSFORM_2D_EXT 0x8330 +#define GL_PIXEL_MAG_FILTER_EXT 0x8331 +#define GL_PIXEL_MIN_FILTER_EXT 0x8332 +#define GL_PIXEL_CUBIC_WEIGHT_EXT 0x8333 +#define GL_CUBIC_EXT 0x8334 +#define GL_AVERAGE_EXT 0x8335 +#define GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8336 +#define GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8337 +#define GL_PIXEL_TRANSFORM_2D_MATRIX_EXT 0x8338 +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTransformParameteriEXT (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glPixelTransformParameterfEXT (GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glPixelTransformParameterivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glPixelTransformParameterfvEXT (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetPixelTransformParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetPixelTransformParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +#endif +#endif /* GL_EXT_pixel_transform */ + +#ifndef GL_EXT_pixel_transform_color_table +#define GL_EXT_pixel_transform_color_table 1 +#endif /* GL_EXT_pixel_transform_color_table */ + +#ifndef GL_EXT_point_parameters +#define GL_EXT_point_parameters 1 +#define GL_POINT_SIZE_MIN_EXT 0x8126 +#define GL_POINT_SIZE_MAX_EXT 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_EXT 0x8128 +#define GL_DISTANCE_ATTENUATION_EXT 0x8129 +typedef void (APIENTRYP PFNGLPOINTPARAMETERFEXTPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVEXTPROC) (GLenum pname, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfEXT (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvEXT (GLenum pname, const GLfloat *params); +#endif +#endif /* GL_EXT_point_parameters */ + +#ifndef GL_EXT_polygon_offset +#define GL_EXT_polygon_offset 1 +#define GL_POLYGON_OFFSET_EXT 0x8037 +#define GL_POLYGON_OFFSET_FACTOR_EXT 0x8038 +#define GL_POLYGON_OFFSET_BIAS_EXT 0x8039 +typedef void (APIENTRYP PFNGLPOLYGONOFFSETEXTPROC) (GLfloat factor, GLfloat bias); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPolygonOffsetEXT (GLfloat factor, GLfloat bias); +#endif +#endif /* GL_EXT_polygon_offset */ + +#ifndef GL_EXT_polygon_offset_clamp +#define GL_EXT_polygon_offset_clamp 1 +#define GL_POLYGON_OFFSET_CLAMP_EXT 0x8E1B +typedef void (APIENTRYP PFNGLPOLYGONOFFSETCLAMPEXTPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPolygonOffsetClampEXT (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_EXT_polygon_offset_clamp */ + +#ifndef GL_EXT_post_depth_coverage +#define GL_EXT_post_depth_coverage 1 +#endif /* GL_EXT_post_depth_coverage */ + +#ifndef GL_EXT_provoking_vertex +#define GL_EXT_provoking_vertex 1 +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E +#define GL_PROVOKING_VERTEX_EXT 0x8E4F +typedef void (APIENTRYP PFNGLPROVOKINGVERTEXEXTPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProvokingVertexEXT (GLenum mode); +#endif +#endif /* GL_EXT_provoking_vertex */ + +#ifndef GL_EXT_raster_multisample +#define GL_EXT_raster_multisample 1 +#define GL_RASTER_MULTISAMPLE_EXT 0x9327 +#define GL_RASTER_SAMPLES_EXT 0x9328 +#define GL_MAX_RASTER_SAMPLES_EXT 0x9329 +#define GL_RASTER_FIXED_SAMPLE_LOCATIONS_EXT 0x932A +#define GL_MULTISAMPLE_RASTERIZATION_ALLOWED_EXT 0x932B +#define GL_EFFECTIVE_RASTER_SAMPLES_EXT 0x932C +typedef void (APIENTRYP PFNGLRASTERSAMPLESEXTPROC) (GLuint samples, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRasterSamplesEXT (GLuint samples, GLboolean fixedsamplelocations); +#endif +#endif /* GL_EXT_raster_multisample */ + +#ifndef GL_EXT_rescale_normal +#define GL_EXT_rescale_normal 1 +#define GL_RESCALE_NORMAL_EXT 0x803A +#endif /* GL_EXT_rescale_normal */ + +#ifndef GL_EXT_secondary_color +#define GL_EXT_secondary_color 1 +#define GL_COLOR_SUM_EXT 0x8458 +#define GL_CURRENT_SECONDARY_COLOR_EXT 0x8459 +#define GL_SECONDARY_COLOR_ARRAY_SIZE_EXT 0x845A +#define GL_SECONDARY_COLOR_ARRAY_TYPE_EXT 0x845B +#define GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT 0x845C +#define GL_SECONDARY_COLOR_ARRAY_POINTER_EXT 0x845D +#define GL_SECONDARY_COLOR_ARRAY_EXT 0x845E +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BEXTPROC) (GLbyte red, GLbyte green, GLbyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DEXTPROC) (GLdouble red, GLdouble green, GLdouble blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FEXTPROC) (GLfloat red, GLfloat green, GLfloat blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IEXTPROC) (GLint red, GLint green, GLint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SEXTPROC) (GLshort red, GLshort green, GLshort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBEXTPROC) (GLubyte red, GLubyte green, GLubyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVEXTPROC) (const GLubyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIEXTPROC) (GLuint red, GLuint green, GLuint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVEXTPROC) (const GLuint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USEXTPROC) (GLushort red, GLushort green, GLushort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVEXTPROC) (const GLushort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSecondaryColor3bEXT (GLbyte red, GLbyte green, GLbyte blue); +GLAPI void APIENTRY glSecondaryColor3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glSecondaryColor3dEXT (GLdouble red, GLdouble green, GLdouble blue); +GLAPI void APIENTRY glSecondaryColor3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glSecondaryColor3fEXT (GLfloat red, GLfloat green, GLfloat blue); +GLAPI void APIENTRY glSecondaryColor3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glSecondaryColor3iEXT (GLint red, GLint green, GLint blue); +GLAPI void APIENTRY glSecondaryColor3ivEXT (const GLint *v); +GLAPI void APIENTRY glSecondaryColor3sEXT (GLshort red, GLshort green, GLshort blue); +GLAPI void APIENTRY glSecondaryColor3svEXT (const GLshort *v); +GLAPI void APIENTRY glSecondaryColor3ubEXT (GLubyte red, GLubyte green, GLubyte blue); +GLAPI void APIENTRY glSecondaryColor3ubvEXT (const GLubyte *v); +GLAPI void APIENTRY glSecondaryColor3uiEXT (GLuint red, GLuint green, GLuint blue); +GLAPI void APIENTRY glSecondaryColor3uivEXT (const GLuint *v); +GLAPI void APIENTRY glSecondaryColor3usEXT (GLushort red, GLushort green, GLushort blue); +GLAPI void APIENTRY glSecondaryColor3usvEXT (const GLushort *v); +GLAPI void APIENTRY glSecondaryColorPointerEXT (GLint size, GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_secondary_color */ + +#ifndef GL_EXT_semaphore +#define GL_EXT_semaphore 1 +#define GL_LAYOUT_GENERAL_EXT 0x958D +#define GL_LAYOUT_COLOR_ATTACHMENT_EXT 0x958E +#define GL_LAYOUT_DEPTH_STENCIL_ATTACHMENT_EXT 0x958F +#define GL_LAYOUT_DEPTH_STENCIL_READ_ONLY_EXT 0x9590 +#define GL_LAYOUT_SHADER_READ_ONLY_EXT 0x9591 +#define GL_LAYOUT_TRANSFER_SRC_EXT 0x9592 +#define GL_LAYOUT_TRANSFER_DST_EXT 0x9593 +#define GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT 0x9530 +#define GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT 0x9531 +typedef void (APIENTRYP PFNGLGENSEMAPHORESEXTPROC) (GLsizei n, GLuint *semaphores); +typedef void (APIENTRYP PFNGLDELETESEMAPHORESEXTPROC) (GLsizei n, const GLuint *semaphores); +typedef GLboolean (APIENTRYP PFNGLISSEMAPHOREEXTPROC) (GLuint semaphore); +typedef void (APIENTRYP PFNGLSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, const GLuint64 *params); +typedef void (APIENTRYP PFNGLGETSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, GLuint64 *params); +typedef void (APIENTRYP PFNGLWAITSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +typedef void (APIENTRYP PFNGLSIGNALSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenSemaphoresEXT (GLsizei n, GLuint *semaphores); +GLAPI void APIENTRY glDeleteSemaphoresEXT (GLsizei n, const GLuint *semaphores); +GLAPI GLboolean APIENTRY glIsSemaphoreEXT (GLuint semaphore); +GLAPI void APIENTRY glSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, const GLuint64 *params); +GLAPI void APIENTRY glGetSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, GLuint64 *params); +GLAPI void APIENTRY glWaitSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +GLAPI void APIENTRY glSignalSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#endif +#endif /* GL_EXT_semaphore */ + +#ifndef GL_EXT_semaphore_fd +#define GL_EXT_semaphore_fd 1 +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREFDEXTPROC) (GLuint semaphore, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportSemaphoreFdEXT (GLuint semaphore, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_semaphore_fd */ + +#ifndef GL_EXT_semaphore_win32 +#define GL_EXT_semaphore_win32 1 +#define GL_HANDLE_TYPE_D3D12_FENCE_EXT 0x9594 +#define GL_D3D12_FENCE_VALUE_EXT 0x9595 +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREWIN32HANDLEEXTPROC) (GLuint semaphore, GLenum handleType, void *handle); +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREWIN32NAMEEXTPROC) (GLuint semaphore, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportSemaphoreWin32HandleEXT (GLuint semaphore, GLenum handleType, void *handle); +GLAPI void APIENTRY glImportSemaphoreWin32NameEXT (GLuint semaphore, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_semaphore_win32 */ + +#ifndef GL_EXT_separate_shader_objects +#define GL_EXT_separate_shader_objects 1 +#define GL_ACTIVE_PROGRAM_EXT 0x8B8D +typedef void (APIENTRYP PFNGLUSESHADERPROGRAMEXTPROC) (GLenum type, GLuint program); +typedef void (APIENTRYP PFNGLACTIVEPROGRAMEXTPROC) (GLuint program); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMEXTPROC) (GLenum type, const GLchar *string); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUseShaderProgramEXT (GLenum type, GLuint program); +GLAPI void APIENTRY glActiveProgramEXT (GLuint program); +GLAPI GLuint APIENTRY glCreateShaderProgramEXT (GLenum type, const GLchar *string); +#endif +#endif /* GL_EXT_separate_shader_objects */ + +#ifndef GL_EXT_separate_specular_color +#define GL_EXT_separate_specular_color 1 +#define GL_LIGHT_MODEL_COLOR_CONTROL_EXT 0x81F8 +#define GL_SINGLE_COLOR_EXT 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR_EXT 0x81FA +#endif /* GL_EXT_separate_specular_color */ + +#ifndef GL_EXT_shader_framebuffer_fetch +#define GL_EXT_shader_framebuffer_fetch 1 +#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT 0x8A52 +#endif /* GL_EXT_shader_framebuffer_fetch */ + +#ifndef GL_EXT_shader_framebuffer_fetch_non_coherent +#define GL_EXT_shader_framebuffer_fetch_non_coherent 1 +typedef void (APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferFetchBarrierEXT (void); +#endif +#endif /* GL_EXT_shader_framebuffer_fetch_non_coherent */ + +#ifndef GL_EXT_shader_image_load_formatted +#define GL_EXT_shader_image_load_formatted 1 +#endif /* GL_EXT_shader_image_load_formatted */ + +#ifndef GL_EXT_shader_image_load_store +#define GL_EXT_shader_image_load_store 1 +#define GL_MAX_IMAGE_UNITS_EXT 0x8F38 +#define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS_EXT 0x8F39 +#define GL_IMAGE_BINDING_NAME_EXT 0x8F3A +#define GL_IMAGE_BINDING_LEVEL_EXT 0x8F3B +#define GL_IMAGE_BINDING_LAYERED_EXT 0x8F3C +#define GL_IMAGE_BINDING_LAYER_EXT 0x8F3D +#define GL_IMAGE_BINDING_ACCESS_EXT 0x8F3E +#define GL_IMAGE_1D_EXT 0x904C +#define GL_IMAGE_2D_EXT 0x904D +#define GL_IMAGE_3D_EXT 0x904E +#define GL_IMAGE_2D_RECT_EXT 0x904F +#define GL_IMAGE_CUBE_EXT 0x9050 +#define GL_IMAGE_BUFFER_EXT 0x9051 +#define GL_IMAGE_1D_ARRAY_EXT 0x9052 +#define GL_IMAGE_2D_ARRAY_EXT 0x9053 +#define GL_IMAGE_CUBE_MAP_ARRAY_EXT 0x9054 +#define GL_IMAGE_2D_MULTISAMPLE_EXT 0x9055 +#define GL_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9056 +#define GL_INT_IMAGE_1D_EXT 0x9057 +#define GL_INT_IMAGE_2D_EXT 0x9058 +#define GL_INT_IMAGE_3D_EXT 0x9059 +#define GL_INT_IMAGE_2D_RECT_EXT 0x905A +#define GL_INT_IMAGE_CUBE_EXT 0x905B +#define GL_INT_IMAGE_BUFFER_EXT 0x905C +#define GL_INT_IMAGE_1D_ARRAY_EXT 0x905D +#define GL_INT_IMAGE_2D_ARRAY_EXT 0x905E +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x905F +#define GL_INT_IMAGE_2D_MULTISAMPLE_EXT 0x9060 +#define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9061 +#define GL_UNSIGNED_INT_IMAGE_1D_EXT 0x9062 +#define GL_UNSIGNED_INT_IMAGE_2D_EXT 0x9063 +#define GL_UNSIGNED_INT_IMAGE_3D_EXT 0x9064 +#define GL_UNSIGNED_INT_IMAGE_2D_RECT_EXT 0x9065 +#define GL_UNSIGNED_INT_IMAGE_CUBE_EXT 0x9066 +#define GL_UNSIGNED_INT_IMAGE_BUFFER_EXT 0x9067 +#define GL_UNSIGNED_INT_IMAGE_1D_ARRAY_EXT 0x9068 +#define GL_UNSIGNED_INT_IMAGE_2D_ARRAY_EXT 0x9069 +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x906A +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_EXT 0x906B +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x906C +#define GL_MAX_IMAGE_SAMPLES_EXT 0x906D +#define GL_IMAGE_BINDING_FORMAT_EXT 0x906E +#define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT_EXT 0x00000001 +#define GL_ELEMENT_ARRAY_BARRIER_BIT_EXT 0x00000002 +#define GL_UNIFORM_BARRIER_BIT_EXT 0x00000004 +#define GL_TEXTURE_FETCH_BARRIER_BIT_EXT 0x00000008 +#define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT_EXT 0x00000020 +#define GL_COMMAND_BARRIER_BIT_EXT 0x00000040 +#define GL_PIXEL_BUFFER_BARRIER_BIT_EXT 0x00000080 +#define GL_TEXTURE_UPDATE_BARRIER_BIT_EXT 0x00000100 +#define GL_BUFFER_UPDATE_BARRIER_BIT_EXT 0x00000200 +#define GL_FRAMEBUFFER_BARRIER_BIT_EXT 0x00000400 +#define GL_TRANSFORM_FEEDBACK_BARRIER_BIT_EXT 0x00000800 +#define GL_ATOMIC_COUNTER_BARRIER_BIT_EXT 0x00001000 +#define GL_ALL_BARRIER_BITS_EXT 0xFFFFFFFF +typedef void (APIENTRYP PFNGLBINDIMAGETEXTUREEXTPROC) (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format); +typedef void (APIENTRYP PFNGLMEMORYBARRIEREXTPROC) (GLbitfield barriers); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindImageTextureEXT (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format); +GLAPI void APIENTRY glMemoryBarrierEXT (GLbitfield barriers); +#endif +#endif /* GL_EXT_shader_image_load_store */ + +#ifndef GL_EXT_shader_integer_mix +#define GL_EXT_shader_integer_mix 1 +#endif /* GL_EXT_shader_integer_mix */ + +#ifndef GL_EXT_shader_samples_identical +#define GL_EXT_shader_samples_identical 1 +#endif /* GL_EXT_shader_samples_identical */ + +#ifndef GL_EXT_shadow_funcs +#define GL_EXT_shadow_funcs 1 +#endif /* GL_EXT_shadow_funcs */ + +#ifndef GL_EXT_shared_texture_palette +#define GL_EXT_shared_texture_palette 1 +#define GL_SHARED_TEXTURE_PALETTE_EXT 0x81FB +#endif /* GL_EXT_shared_texture_palette */ + +#ifndef GL_EXT_sparse_texture2 +#define GL_EXT_sparse_texture2 1 +#endif /* GL_EXT_sparse_texture2 */ + +#ifndef GL_EXT_stencil_clear_tag +#define GL_EXT_stencil_clear_tag 1 +#define GL_STENCIL_TAG_BITS_EXT 0x88F2 +#define GL_STENCIL_CLEAR_TAG_VALUE_EXT 0x88F3 +typedef void (APIENTRYP PFNGLSTENCILCLEARTAGEXTPROC) (GLsizei stencilTagBits, GLuint stencilClearTag); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilClearTagEXT (GLsizei stencilTagBits, GLuint stencilClearTag); +#endif +#endif /* GL_EXT_stencil_clear_tag */ + +#ifndef GL_EXT_stencil_two_side +#define GL_EXT_stencil_two_side 1 +#define GL_STENCIL_TEST_TWO_SIDE_EXT 0x8910 +#define GL_ACTIVE_STENCIL_FACE_EXT 0x8911 +typedef void (APIENTRYP PFNGLACTIVESTENCILFACEEXTPROC) (GLenum face); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveStencilFaceEXT (GLenum face); +#endif +#endif /* GL_EXT_stencil_two_side */ + +#ifndef GL_EXT_stencil_wrap +#define GL_EXT_stencil_wrap 1 +#define GL_INCR_WRAP_EXT 0x8507 +#define GL_DECR_WRAP_EXT 0x8508 +#endif /* GL_EXT_stencil_wrap */ + +#ifndef GL_EXT_subtexture +#define GL_EXT_subtexture 1 +typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage2DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +#endif +#endif /* GL_EXT_subtexture */ + +#ifndef GL_EXT_texture +#define GL_EXT_texture 1 +#define GL_ALPHA4_EXT 0x803B +#define GL_ALPHA8_EXT 0x803C +#define GL_ALPHA12_EXT 0x803D +#define GL_ALPHA16_EXT 0x803E +#define GL_LUMINANCE4_EXT 0x803F +#define GL_LUMINANCE8_EXT 0x8040 +#define GL_LUMINANCE12_EXT 0x8041 +#define GL_LUMINANCE16_EXT 0x8042 +#define GL_LUMINANCE4_ALPHA4_EXT 0x8043 +#define GL_LUMINANCE6_ALPHA2_EXT 0x8044 +#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 +#define GL_LUMINANCE12_ALPHA4_EXT 0x8046 +#define GL_LUMINANCE12_ALPHA12_EXT 0x8047 +#define GL_LUMINANCE16_ALPHA16_EXT 0x8048 +#define GL_INTENSITY_EXT 0x8049 +#define GL_INTENSITY4_EXT 0x804A +#define GL_INTENSITY8_EXT 0x804B +#define GL_INTENSITY12_EXT 0x804C +#define GL_INTENSITY16_EXT 0x804D +#define GL_RGB2_EXT 0x804E +#define GL_RGB4_EXT 0x804F +#define GL_RGB5_EXT 0x8050 +#define GL_RGB8_EXT 0x8051 +#define GL_RGB10_EXT 0x8052 +#define GL_RGB12_EXT 0x8053 +#define GL_RGB16_EXT 0x8054 +#define GL_RGBA2_EXT 0x8055 +#define GL_RGBA4_EXT 0x8056 +#define GL_RGB5_A1_EXT 0x8057 +#define GL_RGBA8_EXT 0x8058 +#define GL_RGB10_A2_EXT 0x8059 +#define GL_RGBA12_EXT 0x805A +#define GL_RGBA16_EXT 0x805B +#define GL_TEXTURE_RED_SIZE_EXT 0x805C +#define GL_TEXTURE_GREEN_SIZE_EXT 0x805D +#define GL_TEXTURE_BLUE_SIZE_EXT 0x805E +#define GL_TEXTURE_ALPHA_SIZE_EXT 0x805F +#define GL_TEXTURE_LUMINANCE_SIZE_EXT 0x8060 +#define GL_TEXTURE_INTENSITY_SIZE_EXT 0x8061 +#define GL_REPLACE_EXT 0x8062 +#define GL_PROXY_TEXTURE_1D_EXT 0x8063 +#define GL_PROXY_TEXTURE_2D_EXT 0x8064 +#define GL_TEXTURE_TOO_LARGE_EXT 0x8065 +#endif /* GL_EXT_texture */ + +#ifndef GL_EXT_texture3D +#define GL_EXT_texture3D 1 +#define GL_PACK_SKIP_IMAGES_EXT 0x806B +#define GL_PACK_IMAGE_HEIGHT_EXT 0x806C +#define GL_UNPACK_SKIP_IMAGES_EXT 0x806D +#define GL_UNPACK_IMAGE_HEIGHT_EXT 0x806E +#define GL_TEXTURE_3D_EXT 0x806F +#define GL_PROXY_TEXTURE_3D_EXT 0x8070 +#define GL_TEXTURE_DEPTH_EXT 0x8071 +#define GL_TEXTURE_WRAP_R_EXT 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE_EXT 0x8073 +typedef void (APIENTRYP PFNGLTEXIMAGE3DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage3DEXT (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage3DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +#endif +#endif /* GL_EXT_texture3D */ + +#ifndef GL_EXT_texture_array +#define GL_EXT_texture_array 1 +#define GL_TEXTURE_1D_ARRAY_EXT 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY_EXT 0x8C19 +#define GL_TEXTURE_2D_ARRAY_EXT 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY_EXT 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY_EXT 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY_EXT 0x8C1D +#define GL_MAX_ARRAY_TEXTURE_LAYERS_EXT 0x88FF +#define GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT 0x884E +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYEREXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferTextureLayerEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +#endif +#endif /* GL_EXT_texture_array */ + +#ifndef GL_EXT_texture_buffer_object +#define GL_EXT_texture_buffer_object 1 +#define GL_TEXTURE_BUFFER_EXT 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT_EXT 0x8C2E +typedef void (APIENTRYP PFNGLTEXBUFFEREXTPROC) (GLenum target, GLenum internalformat, GLuint buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBufferEXT (GLenum target, GLenum internalformat, GLuint buffer); +#endif +#endif /* GL_EXT_texture_buffer_object */ + +#ifndef GL_EXT_texture_compression_latc +#define GL_EXT_texture_compression_latc 1 +#define GL_COMPRESSED_LUMINANCE_LATC1_EXT 0x8C70 +#define GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT 0x8C71 +#define GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT 0x8C72 +#define GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT 0x8C73 +#endif /* GL_EXT_texture_compression_latc */ + +#ifndef GL_EXT_texture_compression_rgtc +#define GL_EXT_texture_compression_rgtc 1 +#define GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC +#define GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD +#define GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE +#endif /* GL_EXT_texture_compression_rgtc */ + +#ifndef GL_EXT_texture_compression_s3tc +#define GL_EXT_texture_compression_s3tc 1 +#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 +#endif /* GL_EXT_texture_compression_s3tc */ + +#ifndef GL_EXT_texture_cube_map +#define GL_EXT_texture_cube_map 1 +#define GL_NORMAL_MAP_EXT 0x8511 +#define GL_REFLECTION_MAP_EXT 0x8512 +#define GL_TEXTURE_CUBE_MAP_EXT 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP_EXT 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP_EXT 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT 0x851C +#endif /* GL_EXT_texture_cube_map */ + +#ifndef GL_EXT_texture_env_add +#define GL_EXT_texture_env_add 1 +#endif /* GL_EXT_texture_env_add */ + +#ifndef GL_EXT_texture_env_combine +#define GL_EXT_texture_env_combine 1 +#define GL_COMBINE_EXT 0x8570 +#define GL_COMBINE_RGB_EXT 0x8571 +#define GL_COMBINE_ALPHA_EXT 0x8572 +#define GL_RGB_SCALE_EXT 0x8573 +#define GL_ADD_SIGNED_EXT 0x8574 +#define GL_INTERPOLATE_EXT 0x8575 +#define GL_CONSTANT_EXT 0x8576 +#define GL_PRIMARY_COLOR_EXT 0x8577 +#define GL_PREVIOUS_EXT 0x8578 +#define GL_SOURCE0_RGB_EXT 0x8580 +#define GL_SOURCE1_RGB_EXT 0x8581 +#define GL_SOURCE2_RGB_EXT 0x8582 +#define GL_SOURCE0_ALPHA_EXT 0x8588 +#define GL_SOURCE1_ALPHA_EXT 0x8589 +#define GL_SOURCE2_ALPHA_EXT 0x858A +#define GL_OPERAND0_RGB_EXT 0x8590 +#define GL_OPERAND1_RGB_EXT 0x8591 +#define GL_OPERAND2_RGB_EXT 0x8592 +#define GL_OPERAND0_ALPHA_EXT 0x8598 +#define GL_OPERAND1_ALPHA_EXT 0x8599 +#define GL_OPERAND2_ALPHA_EXT 0x859A +#endif /* GL_EXT_texture_env_combine */ + +#ifndef GL_EXT_texture_env_dot3 +#define GL_EXT_texture_env_dot3 1 +#define GL_DOT3_RGB_EXT 0x8740 +#define GL_DOT3_RGBA_EXT 0x8741 +#endif /* GL_EXT_texture_env_dot3 */ + +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_EXT_texture_filter_anisotropic 1 +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF +#endif /* GL_EXT_texture_filter_anisotropic */ + +#ifndef GL_EXT_texture_filter_minmax +#define GL_EXT_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_EXT 0x9366 +#define GL_WEIGHTED_AVERAGE_EXT 0x9367 +#endif /* GL_EXT_texture_filter_minmax */ + +#ifndef GL_EXT_texture_integer +#define GL_EXT_texture_integer 1 +#define GL_RGBA32UI_EXT 0x8D70 +#define GL_RGB32UI_EXT 0x8D71 +#define GL_ALPHA32UI_EXT 0x8D72 +#define GL_INTENSITY32UI_EXT 0x8D73 +#define GL_LUMINANCE32UI_EXT 0x8D74 +#define GL_LUMINANCE_ALPHA32UI_EXT 0x8D75 +#define GL_RGBA16UI_EXT 0x8D76 +#define GL_RGB16UI_EXT 0x8D77 +#define GL_ALPHA16UI_EXT 0x8D78 +#define GL_INTENSITY16UI_EXT 0x8D79 +#define GL_LUMINANCE16UI_EXT 0x8D7A +#define GL_LUMINANCE_ALPHA16UI_EXT 0x8D7B +#define GL_RGBA8UI_EXT 0x8D7C +#define GL_RGB8UI_EXT 0x8D7D +#define GL_ALPHA8UI_EXT 0x8D7E +#define GL_INTENSITY8UI_EXT 0x8D7F +#define GL_LUMINANCE8UI_EXT 0x8D80 +#define GL_LUMINANCE_ALPHA8UI_EXT 0x8D81 +#define GL_RGBA32I_EXT 0x8D82 +#define GL_RGB32I_EXT 0x8D83 +#define GL_ALPHA32I_EXT 0x8D84 +#define GL_INTENSITY32I_EXT 0x8D85 +#define GL_LUMINANCE32I_EXT 0x8D86 +#define GL_LUMINANCE_ALPHA32I_EXT 0x8D87 +#define GL_RGBA16I_EXT 0x8D88 +#define GL_RGB16I_EXT 0x8D89 +#define GL_ALPHA16I_EXT 0x8D8A +#define GL_INTENSITY16I_EXT 0x8D8B +#define GL_LUMINANCE16I_EXT 0x8D8C +#define GL_LUMINANCE_ALPHA16I_EXT 0x8D8D +#define GL_RGBA8I_EXT 0x8D8E +#define GL_RGB8I_EXT 0x8D8F +#define GL_ALPHA8I_EXT 0x8D90 +#define GL_INTENSITY8I_EXT 0x8D91 +#define GL_LUMINANCE8I_EXT 0x8D92 +#define GL_LUMINANCE_ALPHA8I_EXT 0x8D93 +#define GL_RED_INTEGER_EXT 0x8D94 +#define GL_GREEN_INTEGER_EXT 0x8D95 +#define GL_BLUE_INTEGER_EXT 0x8D96 +#define GL_ALPHA_INTEGER_EXT 0x8D97 +#define GL_RGB_INTEGER_EXT 0x8D98 +#define GL_RGBA_INTEGER_EXT 0x8D99 +#define GL_BGR_INTEGER_EXT 0x8D9A +#define GL_BGRA_INTEGER_EXT 0x8D9B +#define GL_LUMINANCE_INTEGER_EXT 0x8D9C +#define GL_LUMINANCE_ALPHA_INTEGER_EXT 0x8D9D +#define GL_RGBA_INTEGER_MODE_EXT 0x8D9E +typedef void (APIENTRYP PFNGLTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLCLEARCOLORIIEXTPROC) (GLint red, GLint green, GLint blue, GLint alpha); +typedef void (APIENTRYP PFNGLCLEARCOLORIUIEXTPROC) (GLuint red, GLuint green, GLuint blue, GLuint alpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexParameterIivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTexParameterIuivEXT (GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTexParameterIivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTexParameterIuivEXT (GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glClearColorIiEXT (GLint red, GLint green, GLint blue, GLint alpha); +GLAPI void APIENTRY glClearColorIuiEXT (GLuint red, GLuint green, GLuint blue, GLuint alpha); +#endif +#endif /* GL_EXT_texture_integer */ + +#ifndef GL_EXT_texture_lod_bias +#define GL_EXT_texture_lod_bias 1 +#define GL_MAX_TEXTURE_LOD_BIAS_EXT 0x84FD +#define GL_TEXTURE_FILTER_CONTROL_EXT 0x8500 +#define GL_TEXTURE_LOD_BIAS_EXT 0x8501 +#endif /* GL_EXT_texture_lod_bias */ + +#ifndef GL_EXT_texture_mirror_clamp +#define GL_EXT_texture_mirror_clamp 1 +#define GL_MIRROR_CLAMP_EXT 0x8742 +#define GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 +#define GL_MIRROR_CLAMP_TO_BORDER_EXT 0x8912 +#endif /* GL_EXT_texture_mirror_clamp */ + +#ifndef GL_EXT_texture_object +#define GL_EXT_texture_object 1 +#define GL_TEXTURE_PRIORITY_EXT 0x8066 +#define GL_TEXTURE_RESIDENT_EXT 0x8067 +#define GL_TEXTURE_1D_BINDING_EXT 0x8068 +#define GL_TEXTURE_2D_BINDING_EXT 0x8069 +#define GL_TEXTURE_3D_BINDING_EXT 0x806A +typedef GLboolean (APIENTRYP PFNGLARETEXTURESRESIDENTEXTPROC) (GLsizei n, const GLuint *textures, GLboolean *residences); +typedef void (APIENTRYP PFNGLBINDTEXTUREEXTPROC) (GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLDELETETEXTURESEXTPROC) (GLsizei n, const GLuint *textures); +typedef void (APIENTRYP PFNGLGENTEXTURESEXTPROC) (GLsizei n, GLuint *textures); +typedef GLboolean (APIENTRYP PFNGLISTEXTUREEXTPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESEXTPROC) (GLsizei n, const GLuint *textures, const GLclampf *priorities); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAreTexturesResidentEXT (GLsizei n, const GLuint *textures, GLboolean *residences); +GLAPI void APIENTRY glBindTextureEXT (GLenum target, GLuint texture); +GLAPI void APIENTRY glDeleteTexturesEXT (GLsizei n, const GLuint *textures); +GLAPI void APIENTRY glGenTexturesEXT (GLsizei n, GLuint *textures); +GLAPI GLboolean APIENTRY glIsTextureEXT (GLuint texture); +GLAPI void APIENTRY glPrioritizeTexturesEXT (GLsizei n, const GLuint *textures, const GLclampf *priorities); +#endif +#endif /* GL_EXT_texture_object */ + +#ifndef GL_EXT_texture_perturb_normal +#define GL_EXT_texture_perturb_normal 1 +#define GL_PERTURB_EXT 0x85AE +#define GL_TEXTURE_NORMAL_EXT 0x85AF +typedef void (APIENTRYP PFNGLTEXTURENORMALEXTPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureNormalEXT (GLenum mode); +#endif +#endif /* GL_EXT_texture_perturb_normal */ + +#ifndef GL_EXT_texture_sRGB +#define GL_EXT_texture_sRGB 1 +#define GL_SRGB_EXT 0x8C40 +#define GL_SRGB8_EXT 0x8C41 +#define GL_SRGB_ALPHA_EXT 0x8C42 +#define GL_SRGB8_ALPHA8_EXT 0x8C43 +#define GL_SLUMINANCE_ALPHA_EXT 0x8C44 +#define GL_SLUMINANCE8_ALPHA8_EXT 0x8C45 +#define GL_SLUMINANCE_EXT 0x8C46 +#define GL_SLUMINANCE8_EXT 0x8C47 +#define GL_COMPRESSED_SRGB_EXT 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA_EXT 0x8C49 +#define GL_COMPRESSED_SLUMINANCE_EXT 0x8C4A +#define GL_COMPRESSED_SLUMINANCE_ALPHA_EXT 0x8C4B +#define GL_COMPRESSED_SRGB_S3TC_DXT1_EXT 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT 0x8C4F +#endif /* GL_EXT_texture_sRGB */ + +#ifndef GL_EXT_texture_sRGB_R8 +#define GL_EXT_texture_sRGB_R8 1 +#define GL_SR8_EXT 0x8FBD +#endif /* GL_EXT_texture_sRGB_R8 */ + +#ifndef GL_EXT_texture_sRGB_RG8 +#define GL_EXT_texture_sRGB_RG8 1 +#define GL_SRG8_EXT 0x8FBE +#endif /* GL_EXT_texture_sRGB_RG8 */ + +#ifndef GL_EXT_texture_sRGB_decode +#define GL_EXT_texture_sRGB_decode 1 +#define GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 +#define GL_DECODE_EXT 0x8A49 +#define GL_SKIP_DECODE_EXT 0x8A4A +#endif /* GL_EXT_texture_sRGB_decode */ + +#ifndef GL_EXT_texture_shadow_lod +#define GL_EXT_texture_shadow_lod 1 +#endif /* GL_EXT_texture_shadow_lod */ + +#ifndef GL_EXT_texture_shared_exponent +#define GL_EXT_texture_shared_exponent 1 +#define GL_RGB9_E5_EXT 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV_EXT 0x8C3E +#define GL_TEXTURE_SHARED_SIZE_EXT 0x8C3F +#endif /* GL_EXT_texture_shared_exponent */ + +#ifndef GL_EXT_texture_snorm +#define GL_EXT_texture_snorm 1 +#define GL_ALPHA_SNORM 0x9010 +#define GL_LUMINANCE_SNORM 0x9011 +#define GL_LUMINANCE_ALPHA_SNORM 0x9012 +#define GL_INTENSITY_SNORM 0x9013 +#define GL_ALPHA8_SNORM 0x9014 +#define GL_LUMINANCE8_SNORM 0x9015 +#define GL_LUMINANCE8_ALPHA8_SNORM 0x9016 +#define GL_INTENSITY8_SNORM 0x9017 +#define GL_ALPHA16_SNORM 0x9018 +#define GL_LUMINANCE16_SNORM 0x9019 +#define GL_LUMINANCE16_ALPHA16_SNORM 0x901A +#define GL_INTENSITY16_SNORM 0x901B +#define GL_RED_SNORM 0x8F90 +#define GL_RG_SNORM 0x8F91 +#define GL_RGB_SNORM 0x8F92 +#define GL_RGBA_SNORM 0x8F93 +#endif /* GL_EXT_texture_snorm */ + +#ifndef GL_EXT_texture_storage +#define GL_EXT_texture_storage 1 +#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F +#define GL_RGBA32F_EXT 0x8814 +#define GL_RGB32F_EXT 0x8815 +#define GL_ALPHA32F_EXT 0x8816 +#define GL_LUMINANCE32F_EXT 0x8818 +#define GL_LUMINANCE_ALPHA32F_EXT 0x8819 +#define GL_RGBA16F_EXT 0x881A +#define GL_RGB16F_EXT 0x881B +#define GL_ALPHA16F_EXT 0x881C +#define GL_LUMINANCE16F_EXT 0x881E +#define GL_LUMINANCE_ALPHA16F_EXT 0x881F +#define GL_BGRA8_EXT 0x93A1 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B +#define GL_R32F_EXT 0x822E +#define GL_RG32F_EXT 0x8230 +#define GL_R16F_EXT 0x822D +#define GL_RG16F_EXT 0x822F +typedef void (APIENTRYP PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexStorage1DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTexStorage2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTexStorage3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_EXT_texture_storage */ + +#ifndef GL_EXT_texture_swizzle +#define GL_EXT_texture_swizzle 1 +#define GL_TEXTURE_SWIZZLE_R_EXT 0x8E42 +#define GL_TEXTURE_SWIZZLE_G_EXT 0x8E43 +#define GL_TEXTURE_SWIZZLE_B_EXT 0x8E44 +#define GL_TEXTURE_SWIZZLE_A_EXT 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA_EXT 0x8E46 +#endif /* GL_EXT_texture_swizzle */ + +#ifndef GL_EXT_timer_query +#define GL_EXT_timer_query 1 +#define GL_TIME_ELAPSED_EXT 0x88BF +typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64 *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64 *params); +#endif +#endif /* GL_EXT_timer_query */ + +#ifndef GL_EXT_transform_feedback +#define GL_EXT_transform_feedback 1 +#define GL_TRANSFORM_FEEDBACK_BUFFER_EXT 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT 0x8C85 +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT 0x8C8F +#define GL_INTERLEAVED_ATTRIBS_EXT 0x8C8C +#define GL_SEPARATE_ATTRIBS_EXT 0x8C8D +#define GL_PRIMITIVES_GENERATED_EXT 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT 0x8C88 +#define GL_RASTERIZER_DISCARD_EXT 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT 0x8C8B +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS_EXT 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT 0x8C7F +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT 0x8C76 +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKEXTPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKEXTPROC) (void); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGEEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFEROFFSETEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +typedef void (APIENTRYP PFNGLBINDBUFFERBASEEXTPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSEXTPROC) (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGEXTPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginTransformFeedbackEXT (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedbackEXT (void); +GLAPI void APIENTRY glBindBufferRangeEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferOffsetEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +GLAPI void APIENTRY glBindBufferBaseEXT (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryingsEXT (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +GLAPI void APIENTRY glGetTransformFeedbackVaryingEXT (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +#endif +#endif /* GL_EXT_transform_feedback */ + +#ifndef GL_EXT_vertex_array +#define GL_EXT_vertex_array 1 +#define GL_VERTEX_ARRAY_EXT 0x8074 +#define GL_NORMAL_ARRAY_EXT 0x8075 +#define GL_COLOR_ARRAY_EXT 0x8076 +#define GL_INDEX_ARRAY_EXT 0x8077 +#define GL_TEXTURE_COORD_ARRAY_EXT 0x8078 +#define GL_EDGE_FLAG_ARRAY_EXT 0x8079 +#define GL_VERTEX_ARRAY_SIZE_EXT 0x807A +#define GL_VERTEX_ARRAY_TYPE_EXT 0x807B +#define GL_VERTEX_ARRAY_STRIDE_EXT 0x807C +#define GL_VERTEX_ARRAY_COUNT_EXT 0x807D +#define GL_NORMAL_ARRAY_TYPE_EXT 0x807E +#define GL_NORMAL_ARRAY_STRIDE_EXT 0x807F +#define GL_NORMAL_ARRAY_COUNT_EXT 0x8080 +#define GL_COLOR_ARRAY_SIZE_EXT 0x8081 +#define GL_COLOR_ARRAY_TYPE_EXT 0x8082 +#define GL_COLOR_ARRAY_STRIDE_EXT 0x8083 +#define GL_COLOR_ARRAY_COUNT_EXT 0x8084 +#define GL_INDEX_ARRAY_TYPE_EXT 0x8085 +#define GL_INDEX_ARRAY_STRIDE_EXT 0x8086 +#define GL_INDEX_ARRAY_COUNT_EXT 0x8087 +#define GL_TEXTURE_COORD_ARRAY_SIZE_EXT 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE_EXT 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE_EXT 0x808A +#define GL_TEXTURE_COORD_ARRAY_COUNT_EXT 0x808B +#define GL_EDGE_FLAG_ARRAY_STRIDE_EXT 0x808C +#define GL_EDGE_FLAG_ARRAY_COUNT_EXT 0x808D +#define GL_VERTEX_ARRAY_POINTER_EXT 0x808E +#define GL_NORMAL_ARRAY_POINTER_EXT 0x808F +#define GL_COLOR_ARRAY_POINTER_EXT 0x8090 +#define GL_INDEX_ARRAY_POINTER_EXT 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER_EXT 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER_EXT 0x8093 +typedef void (APIENTRYP PFNGLARRAYELEMENTEXTPROC) (GLint i); +typedef void (APIENTRYP PFNGLCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLDRAWARRAYSEXTPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTEREXTPROC) (GLsizei stride, GLsizei count, const GLboolean *pointer); +typedef void (APIENTRYP PFNGLGETPOINTERVEXTPROC) (GLenum pname, void **params); +typedef void (APIENTRYP PFNGLINDEXPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLNORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLVERTEXPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glArrayElementEXT (GLint i); +GLAPI void APIENTRY glColorPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glDrawArraysEXT (GLenum mode, GLint first, GLsizei count); +GLAPI void APIENTRY glEdgeFlagPointerEXT (GLsizei stride, GLsizei count, const GLboolean *pointer); +GLAPI void APIENTRY glGetPointervEXT (GLenum pname, void **params); +GLAPI void APIENTRY glIndexPointerEXT (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glNormalPointerEXT (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glTexCoordPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glVertexPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +#endif +#endif /* GL_EXT_vertex_array */ + +#ifndef GL_EXT_vertex_array_bgra +#define GL_EXT_vertex_array_bgra 1 +#endif /* GL_EXT_vertex_array_bgra */ + +#ifndef GL_EXT_vertex_attrib_64bit +#define GL_EXT_vertex_attrib_64bit 1 +#define GL_DOUBLE_VEC2_EXT 0x8FFC +#define GL_DOUBLE_VEC3_EXT 0x8FFD +#define GL_DOUBLE_VEC4_EXT 0x8FFE +#define GL_DOUBLE_MAT2_EXT 0x8F46 +#define GL_DOUBLE_MAT3_EXT 0x8F47 +#define GL_DOUBLE_MAT4_EXT 0x8F48 +#define GL_DOUBLE_MAT2x3_EXT 0x8F49 +#define GL_DOUBLE_MAT2x4_EXT 0x8F4A +#define GL_DOUBLE_MAT3x2_EXT 0x8F4B +#define GL_DOUBLE_MAT3x4_EXT 0x8F4C +#define GL_DOUBLE_MAT4x2_EXT 0x8F4D +#define GL_DOUBLE_MAT4x3_EXT 0x8F4E +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DEXTPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DEXTPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVEXTPROC) (GLuint index, GLenum pname, GLdouble *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribL1dEXT (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttribL2dEXT (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttribL3dEXT (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttribL4dEXT (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttribL1dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL2dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL3dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL4dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribLPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribLdvEXT (GLuint index, GLenum pname, GLdouble *params); +#endif +#endif /* GL_EXT_vertex_attrib_64bit */ + +#ifndef GL_EXT_vertex_shader +#define GL_EXT_vertex_shader 1 +#define GL_VERTEX_SHADER_EXT 0x8780 +#define GL_VERTEX_SHADER_BINDING_EXT 0x8781 +#define GL_OP_INDEX_EXT 0x8782 +#define GL_OP_NEGATE_EXT 0x8783 +#define GL_OP_DOT3_EXT 0x8784 +#define GL_OP_DOT4_EXT 0x8785 +#define GL_OP_MUL_EXT 0x8786 +#define GL_OP_ADD_EXT 0x8787 +#define GL_OP_MADD_EXT 0x8788 +#define GL_OP_FRAC_EXT 0x8789 +#define GL_OP_MAX_EXT 0x878A +#define GL_OP_MIN_EXT 0x878B +#define GL_OP_SET_GE_EXT 0x878C +#define GL_OP_SET_LT_EXT 0x878D +#define GL_OP_CLAMP_EXT 0x878E +#define GL_OP_FLOOR_EXT 0x878F +#define GL_OP_ROUND_EXT 0x8790 +#define GL_OP_EXP_BASE_2_EXT 0x8791 +#define GL_OP_LOG_BASE_2_EXT 0x8792 +#define GL_OP_POWER_EXT 0x8793 +#define GL_OP_RECIP_EXT 0x8794 +#define GL_OP_RECIP_SQRT_EXT 0x8795 +#define GL_OP_SUB_EXT 0x8796 +#define GL_OP_CROSS_PRODUCT_EXT 0x8797 +#define GL_OP_MULTIPLY_MATRIX_EXT 0x8798 +#define GL_OP_MOV_EXT 0x8799 +#define GL_OUTPUT_VERTEX_EXT 0x879A +#define GL_OUTPUT_COLOR0_EXT 0x879B +#define GL_OUTPUT_COLOR1_EXT 0x879C +#define GL_OUTPUT_TEXTURE_COORD0_EXT 0x879D +#define GL_OUTPUT_TEXTURE_COORD1_EXT 0x879E +#define GL_OUTPUT_TEXTURE_COORD2_EXT 0x879F +#define GL_OUTPUT_TEXTURE_COORD3_EXT 0x87A0 +#define GL_OUTPUT_TEXTURE_COORD4_EXT 0x87A1 +#define GL_OUTPUT_TEXTURE_COORD5_EXT 0x87A2 +#define GL_OUTPUT_TEXTURE_COORD6_EXT 0x87A3 +#define GL_OUTPUT_TEXTURE_COORD7_EXT 0x87A4 +#define GL_OUTPUT_TEXTURE_COORD8_EXT 0x87A5 +#define GL_OUTPUT_TEXTURE_COORD9_EXT 0x87A6 +#define GL_OUTPUT_TEXTURE_COORD10_EXT 0x87A7 +#define GL_OUTPUT_TEXTURE_COORD11_EXT 0x87A8 +#define GL_OUTPUT_TEXTURE_COORD12_EXT 0x87A9 +#define GL_OUTPUT_TEXTURE_COORD13_EXT 0x87AA +#define GL_OUTPUT_TEXTURE_COORD14_EXT 0x87AB +#define GL_OUTPUT_TEXTURE_COORD15_EXT 0x87AC +#define GL_OUTPUT_TEXTURE_COORD16_EXT 0x87AD +#define GL_OUTPUT_TEXTURE_COORD17_EXT 0x87AE +#define GL_OUTPUT_TEXTURE_COORD18_EXT 0x87AF +#define GL_OUTPUT_TEXTURE_COORD19_EXT 0x87B0 +#define GL_OUTPUT_TEXTURE_COORD20_EXT 0x87B1 +#define GL_OUTPUT_TEXTURE_COORD21_EXT 0x87B2 +#define GL_OUTPUT_TEXTURE_COORD22_EXT 0x87B3 +#define GL_OUTPUT_TEXTURE_COORD23_EXT 0x87B4 +#define GL_OUTPUT_TEXTURE_COORD24_EXT 0x87B5 +#define GL_OUTPUT_TEXTURE_COORD25_EXT 0x87B6 +#define GL_OUTPUT_TEXTURE_COORD26_EXT 0x87B7 +#define GL_OUTPUT_TEXTURE_COORD27_EXT 0x87B8 +#define GL_OUTPUT_TEXTURE_COORD28_EXT 0x87B9 +#define GL_OUTPUT_TEXTURE_COORD29_EXT 0x87BA +#define GL_OUTPUT_TEXTURE_COORD30_EXT 0x87BB +#define GL_OUTPUT_TEXTURE_COORD31_EXT 0x87BC +#define GL_OUTPUT_FOG_EXT 0x87BD +#define GL_SCALAR_EXT 0x87BE +#define GL_VECTOR_EXT 0x87BF +#define GL_MATRIX_EXT 0x87C0 +#define GL_VARIANT_EXT 0x87C1 +#define GL_INVARIANT_EXT 0x87C2 +#define GL_LOCAL_CONSTANT_EXT 0x87C3 +#define GL_LOCAL_EXT 0x87C4 +#define GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87C5 +#define GL_MAX_VERTEX_SHADER_VARIANTS_EXT 0x87C6 +#define GL_MAX_VERTEX_SHADER_INVARIANTS_EXT 0x87C7 +#define GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87C8 +#define GL_MAX_VERTEX_SHADER_LOCALS_EXT 0x87C9 +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CA +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT 0x87CB +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87CC +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT 0x87CD +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT 0x87CE +#define GL_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CF +#define GL_VERTEX_SHADER_VARIANTS_EXT 0x87D0 +#define GL_VERTEX_SHADER_INVARIANTS_EXT 0x87D1 +#define GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87D2 +#define GL_VERTEX_SHADER_LOCALS_EXT 0x87D3 +#define GL_VERTEX_SHADER_OPTIMIZED_EXT 0x87D4 +#define GL_X_EXT 0x87D5 +#define GL_Y_EXT 0x87D6 +#define GL_Z_EXT 0x87D7 +#define GL_W_EXT 0x87D8 +#define GL_NEGATIVE_X_EXT 0x87D9 +#define GL_NEGATIVE_Y_EXT 0x87DA +#define GL_NEGATIVE_Z_EXT 0x87DB +#define GL_NEGATIVE_W_EXT 0x87DC +#define GL_ZERO_EXT 0x87DD +#define GL_ONE_EXT 0x87DE +#define GL_NEGATIVE_ONE_EXT 0x87DF +#define GL_NORMALIZED_RANGE_EXT 0x87E0 +#define GL_FULL_RANGE_EXT 0x87E1 +#define GL_CURRENT_VERTEX_EXT 0x87E2 +#define GL_MVP_MATRIX_EXT 0x87E3 +#define GL_VARIANT_VALUE_EXT 0x87E4 +#define GL_VARIANT_DATATYPE_EXT 0x87E5 +#define GL_VARIANT_ARRAY_STRIDE_EXT 0x87E6 +#define GL_VARIANT_ARRAY_TYPE_EXT 0x87E7 +#define GL_VARIANT_ARRAY_EXT 0x87E8 +#define GL_VARIANT_ARRAY_POINTER_EXT 0x87E9 +#define GL_INVARIANT_VALUE_EXT 0x87EA +#define GL_INVARIANT_DATATYPE_EXT 0x87EB +#define GL_LOCAL_CONSTANT_VALUE_EXT 0x87EC +#define GL_LOCAL_CONSTANT_DATATYPE_EXT 0x87ED +typedef void (APIENTRYP PFNGLBEGINVERTEXSHADEREXTPROC) (void); +typedef void (APIENTRYP PFNGLENDVERTEXSHADEREXTPROC) (void); +typedef void (APIENTRYP PFNGLBINDVERTEXSHADEREXTPROC) (GLuint id); +typedef GLuint (APIENTRYP PFNGLGENVERTEXSHADERSEXTPROC) (GLuint range); +typedef void (APIENTRYP PFNGLDELETEVERTEXSHADEREXTPROC) (GLuint id); +typedef void (APIENTRYP PFNGLSHADEROP1EXTPROC) (GLenum op, GLuint res, GLuint arg1); +typedef void (APIENTRYP PFNGLSHADEROP2EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2); +typedef void (APIENTRYP PFNGLSHADEROP3EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3); +typedef void (APIENTRYP PFNGLSWIZZLEEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +typedef void (APIENTRYP PFNGLWRITEMASKEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +typedef void (APIENTRYP PFNGLINSERTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); +typedef void (APIENTRYP PFNGLEXTRACTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); +typedef GLuint (APIENTRYP PFNGLGENSYMBOLSEXTPROC) (GLenum datatype, GLenum storagetype, GLenum range, GLuint components); +typedef void (APIENTRYP PFNGLSETINVARIANTEXTPROC) (GLuint id, GLenum type, const void *addr); +typedef void (APIENTRYP PFNGLSETLOCALCONSTANTEXTPROC) (GLuint id, GLenum type, const void *addr); +typedef void (APIENTRYP PFNGLVARIANTBVEXTPROC) (GLuint id, const GLbyte *addr); +typedef void (APIENTRYP PFNGLVARIANTSVEXTPROC) (GLuint id, const GLshort *addr); +typedef void (APIENTRYP PFNGLVARIANTIVEXTPROC) (GLuint id, const GLint *addr); +typedef void (APIENTRYP PFNGLVARIANTFVEXTPROC) (GLuint id, const GLfloat *addr); +typedef void (APIENTRYP PFNGLVARIANTDVEXTPROC) (GLuint id, const GLdouble *addr); +typedef void (APIENTRYP PFNGLVARIANTUBVEXTPROC) (GLuint id, const GLubyte *addr); +typedef void (APIENTRYP PFNGLVARIANTUSVEXTPROC) (GLuint id, const GLushort *addr); +typedef void (APIENTRYP PFNGLVARIANTUIVEXTPROC) (GLuint id, const GLuint *addr); +typedef void (APIENTRYP PFNGLVARIANTPOINTEREXTPROC) (GLuint id, GLenum type, GLuint stride, const void *addr); +typedef void (APIENTRYP PFNGLENABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); +typedef void (APIENTRYP PFNGLDISABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); +typedef GLuint (APIENTRYP PFNGLBINDLIGHTPARAMETEREXTPROC) (GLenum light, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDMATERIALPARAMETEREXTPROC) (GLenum face, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDTEXGENPARAMETEREXTPROC) (GLenum unit, GLenum coord, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDTEXTUREUNITPARAMETEREXTPROC) (GLenum unit, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDPARAMETEREXTPROC) (GLenum value); +typedef GLboolean (APIENTRYP PFNGLISVARIANTENABLEDEXTPROC) (GLuint id, GLenum cap); +typedef void (APIENTRYP PFNGLGETVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +typedef void (APIENTRYP PFNGLGETVARIANTPOINTERVEXTPROC) (GLuint id, GLenum value, void **data); +typedef void (APIENTRYP PFNGLGETINVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETINVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETINVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginVertexShaderEXT (void); +GLAPI void APIENTRY glEndVertexShaderEXT (void); +GLAPI void APIENTRY glBindVertexShaderEXT (GLuint id); +GLAPI GLuint APIENTRY glGenVertexShadersEXT (GLuint range); +GLAPI void APIENTRY glDeleteVertexShaderEXT (GLuint id); +GLAPI void APIENTRY glShaderOp1EXT (GLenum op, GLuint res, GLuint arg1); +GLAPI void APIENTRY glShaderOp2EXT (GLenum op, GLuint res, GLuint arg1, GLuint arg2); +GLAPI void APIENTRY glShaderOp3EXT (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3); +GLAPI void APIENTRY glSwizzleEXT (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +GLAPI void APIENTRY glWriteMaskEXT (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +GLAPI void APIENTRY glInsertComponentEXT (GLuint res, GLuint src, GLuint num); +GLAPI void APIENTRY glExtractComponentEXT (GLuint res, GLuint src, GLuint num); +GLAPI GLuint APIENTRY glGenSymbolsEXT (GLenum datatype, GLenum storagetype, GLenum range, GLuint components); +GLAPI void APIENTRY glSetInvariantEXT (GLuint id, GLenum type, const void *addr); +GLAPI void APIENTRY glSetLocalConstantEXT (GLuint id, GLenum type, const void *addr); +GLAPI void APIENTRY glVariantbvEXT (GLuint id, const GLbyte *addr); +GLAPI void APIENTRY glVariantsvEXT (GLuint id, const GLshort *addr); +GLAPI void APIENTRY glVariantivEXT (GLuint id, const GLint *addr); +GLAPI void APIENTRY glVariantfvEXT (GLuint id, const GLfloat *addr); +GLAPI void APIENTRY glVariantdvEXT (GLuint id, const GLdouble *addr); +GLAPI void APIENTRY glVariantubvEXT (GLuint id, const GLubyte *addr); +GLAPI void APIENTRY glVariantusvEXT (GLuint id, const GLushort *addr); +GLAPI void APIENTRY glVariantuivEXT (GLuint id, const GLuint *addr); +GLAPI void APIENTRY glVariantPointerEXT (GLuint id, GLenum type, GLuint stride, const void *addr); +GLAPI void APIENTRY glEnableVariantClientStateEXT (GLuint id); +GLAPI void APIENTRY glDisableVariantClientStateEXT (GLuint id); +GLAPI GLuint APIENTRY glBindLightParameterEXT (GLenum light, GLenum value); +GLAPI GLuint APIENTRY glBindMaterialParameterEXT (GLenum face, GLenum value); +GLAPI GLuint APIENTRY glBindTexGenParameterEXT (GLenum unit, GLenum coord, GLenum value); +GLAPI GLuint APIENTRY glBindTextureUnitParameterEXT (GLenum unit, GLenum value); +GLAPI GLuint APIENTRY glBindParameterEXT (GLenum value); +GLAPI GLboolean APIENTRY glIsVariantEnabledEXT (GLuint id, GLenum cap); +GLAPI void APIENTRY glGetVariantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetVariantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetVariantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +GLAPI void APIENTRY glGetVariantPointervEXT (GLuint id, GLenum value, void **data); +GLAPI void APIENTRY glGetInvariantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetInvariantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetInvariantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +GLAPI void APIENTRY glGetLocalConstantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetLocalConstantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetLocalConstantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +#endif +#endif /* GL_EXT_vertex_shader */ + +#ifndef GL_EXT_vertex_weighting +#define GL_EXT_vertex_weighting 1 +#define GL_MODELVIEW0_STACK_DEPTH_EXT 0x0BA3 +#define GL_MODELVIEW1_STACK_DEPTH_EXT 0x8502 +#define GL_MODELVIEW0_MATRIX_EXT 0x0BA6 +#define GL_MODELVIEW1_MATRIX_EXT 0x8506 +#define GL_VERTEX_WEIGHTING_EXT 0x8509 +#define GL_MODELVIEW0_EXT 0x1700 +#define GL_MODELVIEW1_EXT 0x850A +#define GL_CURRENT_VERTEX_WEIGHT_EXT 0x850B +#define GL_VERTEX_WEIGHT_ARRAY_EXT 0x850C +#define GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT 0x850D +#define GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT 0x850E +#define GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT 0x850F +#define GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT 0x8510 +typedef void (APIENTRYP PFNGLVERTEXWEIGHTFEXTPROC) (GLfloat weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTFVEXTPROC) (const GLfloat *weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexWeightfEXT (GLfloat weight); +GLAPI void APIENTRY glVertexWeightfvEXT (const GLfloat *weight); +GLAPI void APIENTRY glVertexWeightPointerEXT (GLint size, GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_vertex_weighting */ + +#ifndef GL_EXT_win32_keyed_mutex +#define GL_EXT_win32_keyed_mutex 1 +typedef GLboolean (APIENTRYP PFNGLACQUIREKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key, GLuint timeout); +typedef GLboolean (APIENTRYP PFNGLRELEASEKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAcquireKeyedMutexWin32EXT (GLuint memory, GLuint64 key, GLuint timeout); +GLAPI GLboolean APIENTRY glReleaseKeyedMutexWin32EXT (GLuint memory, GLuint64 key); +#endif +#endif /* GL_EXT_win32_keyed_mutex */ + +#ifndef GL_EXT_window_rectangles +#define GL_EXT_window_rectangles 1 +#define GL_INCLUSIVE_EXT 0x8F10 +#define GL_EXCLUSIVE_EXT 0x8F11 +#define GL_WINDOW_RECTANGLE_EXT 0x8F12 +#define GL_WINDOW_RECTANGLE_MODE_EXT 0x8F13 +#define GL_MAX_WINDOW_RECTANGLES_EXT 0x8F14 +#define GL_NUM_WINDOW_RECTANGLES_EXT 0x8F15 +typedef void (APIENTRYP PFNGLWINDOWRECTANGLESEXTPROC) (GLenum mode, GLsizei count, const GLint *box); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowRectanglesEXT (GLenum mode, GLsizei count, const GLint *box); +#endif +#endif /* GL_EXT_window_rectangles */ + +#ifndef GL_EXT_x11_sync_object +#define GL_EXT_x11_sync_object 1 +#define GL_SYNC_X11_FENCE_EXT 0x90E1 +typedef GLsync (APIENTRYP PFNGLIMPORTSYNCEXTPROC) (GLenum external_sync_type, GLintptr external_sync, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLsync APIENTRY glImportSyncEXT (GLenum external_sync_type, GLintptr external_sync, GLbitfield flags); +#endif +#endif /* GL_EXT_x11_sync_object */ + +#ifndef GL_GREMEDY_frame_terminator +#define GL_GREMEDY_frame_terminator 1 +typedef void (APIENTRYP PFNGLFRAMETERMINATORGREMEDYPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFrameTerminatorGREMEDY (void); +#endif +#endif /* GL_GREMEDY_frame_terminator */ + +#ifndef GL_GREMEDY_string_marker +#define GL_GREMEDY_string_marker 1 +typedef void (APIENTRYP PFNGLSTRINGMARKERGREMEDYPROC) (GLsizei len, const void *string); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStringMarkerGREMEDY (GLsizei len, const void *string); +#endif +#endif /* GL_GREMEDY_string_marker */ + +#ifndef GL_HP_convolution_border_modes +#define GL_HP_convolution_border_modes 1 +#define GL_IGNORE_BORDER_HP 0x8150 +#define GL_CONSTANT_BORDER_HP 0x8151 +#define GL_REPLICATE_BORDER_HP 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR_HP 0x8154 +#endif /* GL_HP_convolution_border_modes */ + +#ifndef GL_HP_image_transform +#define GL_HP_image_transform 1 +#define GL_IMAGE_SCALE_X_HP 0x8155 +#define GL_IMAGE_SCALE_Y_HP 0x8156 +#define GL_IMAGE_TRANSLATE_X_HP 0x8157 +#define GL_IMAGE_TRANSLATE_Y_HP 0x8158 +#define GL_IMAGE_ROTATE_ANGLE_HP 0x8159 +#define GL_IMAGE_ROTATE_ORIGIN_X_HP 0x815A +#define GL_IMAGE_ROTATE_ORIGIN_Y_HP 0x815B +#define GL_IMAGE_MAG_FILTER_HP 0x815C +#define GL_IMAGE_MIN_FILTER_HP 0x815D +#define GL_IMAGE_CUBIC_WEIGHT_HP 0x815E +#define GL_CUBIC_HP 0x815F +#define GL_AVERAGE_HP 0x8160 +#define GL_IMAGE_TRANSFORM_2D_HP 0x8161 +#define GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8162 +#define GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8163 +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIHPPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFHPPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImageTransformParameteriHP (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glImageTransformParameterfHP (GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glImageTransformParameterivHP (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glImageTransformParameterfvHP (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetImageTransformParameterivHP (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetImageTransformParameterfvHP (GLenum target, GLenum pname, GLfloat *params); +#endif +#endif /* GL_HP_image_transform */ + +#ifndef GL_HP_occlusion_test +#define GL_HP_occlusion_test 1 +#define GL_OCCLUSION_TEST_HP 0x8165 +#define GL_OCCLUSION_TEST_RESULT_HP 0x8166 +#endif /* GL_HP_occlusion_test */ + +#ifndef GL_HP_texture_lighting +#define GL_HP_texture_lighting 1 +#define GL_TEXTURE_LIGHTING_MODE_HP 0x8167 +#define GL_TEXTURE_POST_SPECULAR_HP 0x8168 +#define GL_TEXTURE_PRE_SPECULAR_HP 0x8169 +#endif /* GL_HP_texture_lighting */ + +#ifndef GL_IBM_cull_vertex +#define GL_IBM_cull_vertex 1 +#define GL_CULL_VERTEX_IBM 103050 +#endif /* GL_IBM_cull_vertex */ + +#ifndef GL_IBM_multimode_draw_arrays +#define GL_IBM_multimode_draw_arrays 1 +typedef void (APIENTRYP PFNGLMULTIMODEDRAWARRAYSIBMPROC) (const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); +typedef void (APIENTRYP PFNGLMULTIMODEDRAWELEMENTSIBMPROC) (const GLenum *mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount, GLint modestride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiModeDrawArraysIBM (const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); +GLAPI void APIENTRY glMultiModeDrawElementsIBM (const GLenum *mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount, GLint modestride); +#endif +#endif /* GL_IBM_multimode_draw_arrays */ + +#ifndef GL_IBM_rasterpos_clip +#define GL_IBM_rasterpos_clip 1 +#define GL_RASTER_POSITION_UNCLIPPED_IBM 0x19262 +#endif /* GL_IBM_rasterpos_clip */ + +#ifndef GL_IBM_static_data +#define GL_IBM_static_data 1 +#define GL_ALL_STATIC_DATA_IBM 103060 +#define GL_STATIC_VERTEX_ARRAY_IBM 103061 +typedef void (APIENTRYP PFNGLFLUSHSTATICDATAIBMPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushStaticDataIBM (GLenum target); +#endif +#endif /* GL_IBM_static_data */ + +#ifndef GL_IBM_texture_mirrored_repeat +#define GL_IBM_texture_mirrored_repeat 1 +#define GL_MIRRORED_REPEAT_IBM 0x8370 +#endif /* GL_IBM_texture_mirrored_repeat */ + +#ifndef GL_IBM_vertex_array_lists +#define GL_IBM_vertex_array_lists 1 +#define GL_VERTEX_ARRAY_LIST_IBM 103070 +#define GL_NORMAL_ARRAY_LIST_IBM 103071 +#define GL_COLOR_ARRAY_LIST_IBM 103072 +#define GL_INDEX_ARRAY_LIST_IBM 103073 +#define GL_TEXTURE_COORD_ARRAY_LIST_IBM 103074 +#define GL_EDGE_FLAG_ARRAY_LIST_IBM 103075 +#define GL_FOG_COORDINATE_ARRAY_LIST_IBM 103076 +#define GL_SECONDARY_COLOR_ARRAY_LIST_IBM 103077 +#define GL_VERTEX_ARRAY_LIST_STRIDE_IBM 103080 +#define GL_NORMAL_ARRAY_LIST_STRIDE_IBM 103081 +#define GL_COLOR_ARRAY_LIST_STRIDE_IBM 103082 +#define GL_INDEX_ARRAY_LIST_STRIDE_IBM 103083 +#define GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM 103084 +#define GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM 103085 +#define GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM 103086 +#define GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM 103087 +typedef void (APIENTRYP PFNGLCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTERLISTIBMPROC) (GLint stride, const GLboolean **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLINDEXPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLNORMALPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLVERTEXPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glSecondaryColorPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glEdgeFlagPointerListIBM (GLint stride, const GLboolean **pointer, GLint ptrstride); +GLAPI void APIENTRY glFogCoordPointerListIBM (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glIndexPointerListIBM (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glNormalPointerListIBM (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glTexCoordPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glVertexPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +#endif +#endif /* GL_IBM_vertex_array_lists */ + +#ifndef GL_INGR_blend_func_separate +#define GL_INGR_blend_func_separate 1 +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEINGRPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparateINGR (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#endif +#endif /* GL_INGR_blend_func_separate */ + +#ifndef GL_INGR_color_clamp +#define GL_INGR_color_clamp 1 +#define GL_RED_MIN_CLAMP_INGR 0x8560 +#define GL_GREEN_MIN_CLAMP_INGR 0x8561 +#define GL_BLUE_MIN_CLAMP_INGR 0x8562 +#define GL_ALPHA_MIN_CLAMP_INGR 0x8563 +#define GL_RED_MAX_CLAMP_INGR 0x8564 +#define GL_GREEN_MAX_CLAMP_INGR 0x8565 +#define GL_BLUE_MAX_CLAMP_INGR 0x8566 +#define GL_ALPHA_MAX_CLAMP_INGR 0x8567 +#endif /* GL_INGR_color_clamp */ + +#ifndef GL_INGR_interlace_read +#define GL_INGR_interlace_read 1 +#define GL_INTERLACE_READ_INGR 0x8568 +#endif /* GL_INGR_interlace_read */ + +#ifndef GL_INTEL_blackhole_render +#define GL_INTEL_blackhole_render 1 +#define GL_BLACKHOLE_RENDER_INTEL 0x83FC +#endif /* GL_INTEL_blackhole_render */ + +#ifndef GL_INTEL_conservative_rasterization +#define GL_INTEL_conservative_rasterization 1 +#define GL_CONSERVATIVE_RASTERIZATION_INTEL 0x83FE +#endif /* GL_INTEL_conservative_rasterization */ + +#ifndef GL_INTEL_fragment_shader_ordering +#define GL_INTEL_fragment_shader_ordering 1 +#endif /* GL_INTEL_fragment_shader_ordering */ + +#ifndef GL_INTEL_framebuffer_CMAA +#define GL_INTEL_framebuffer_CMAA 1 +typedef void (APIENTRYP PFNGLAPPLYFRAMEBUFFERATTACHMENTCMAAINTELPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glApplyFramebufferAttachmentCMAAINTEL (void); +#endif +#endif /* GL_INTEL_framebuffer_CMAA */ + +#ifndef GL_INTEL_map_texture +#define GL_INTEL_map_texture 1 +#define GL_TEXTURE_MEMORY_LAYOUT_INTEL 0x83FF +#define GL_LAYOUT_DEFAULT_INTEL 0 +#define GL_LAYOUT_LINEAR_INTEL 1 +#define GL_LAYOUT_LINEAR_CPU_CACHED_INTEL 2 +typedef void (APIENTRYP PFNGLSYNCTEXTUREINTELPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLUNMAPTEXTURE2DINTELPROC) (GLuint texture, GLint level); +typedef void *(APIENTRYP PFNGLMAPTEXTURE2DINTELPROC) (GLuint texture, GLint level, GLbitfield access, GLint *stride, GLenum *layout); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSyncTextureINTEL (GLuint texture); +GLAPI void APIENTRY glUnmapTexture2DINTEL (GLuint texture, GLint level); +GLAPI void *APIENTRY glMapTexture2DINTEL (GLuint texture, GLint level, GLbitfield access, GLint *stride, GLenum *layout); +#endif +#endif /* GL_INTEL_map_texture */ + +#ifndef GL_INTEL_parallel_arrays +#define GL_INTEL_parallel_arrays 1 +#define GL_PARALLEL_ARRAYS_INTEL 0x83F4 +#define GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL 0x83F5 +#define GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL 0x83F6 +#define GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL 0x83F7 +#define GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL 0x83F8 +typedef void (APIENTRYP PFNGLVERTEXPOINTERVINTELPROC) (GLint size, GLenum type, const void **pointer); +typedef void (APIENTRYP PFNGLNORMALPOINTERVINTELPROC) (GLenum type, const void **pointer); +typedef void (APIENTRYP PFNGLCOLORPOINTERVINTELPROC) (GLint size, GLenum type, const void **pointer); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERVINTELPROC) (GLint size, GLenum type, const void **pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexPointervINTEL (GLint size, GLenum type, const void **pointer); +GLAPI void APIENTRY glNormalPointervINTEL (GLenum type, const void **pointer); +GLAPI void APIENTRY glColorPointervINTEL (GLint size, GLenum type, const void **pointer); +GLAPI void APIENTRY glTexCoordPointervINTEL (GLint size, GLenum type, const void **pointer); +#endif +#endif /* GL_INTEL_parallel_arrays */ + +#ifndef GL_INTEL_performance_query +#define GL_INTEL_performance_query 1 +#define GL_PERFQUERY_SINGLE_CONTEXT_INTEL 0x00000000 +#define GL_PERFQUERY_GLOBAL_CONTEXT_INTEL 0x00000001 +#define GL_PERFQUERY_WAIT_INTEL 0x83FB +#define GL_PERFQUERY_FLUSH_INTEL 0x83FA +#define GL_PERFQUERY_DONOT_FLUSH_INTEL 0x83F9 +#define GL_PERFQUERY_COUNTER_EVENT_INTEL 0x94F0 +#define GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL 0x94F1 +#define GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL 0x94F2 +#define GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL 0x94F3 +#define GL_PERFQUERY_COUNTER_RAW_INTEL 0x94F4 +#define GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL 0x94F5 +#define GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL 0x94F8 +#define GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL 0x94F9 +#define GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL 0x94FA +#define GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL 0x94FB +#define GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL 0x94FC +#define GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL 0x94FD +#define GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL 0x94FE +#define GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL 0x94FF +#define GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL 0x9500 +typedef void (APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); +typedef void (APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (APIENTRYP PFNGLGETFIRSTPERFQUERYIDINTELPROC) (GLuint *queryId); +typedef void (APIENTRYP PFNGLGETNEXTPERFQUERYIDINTELPROC) (GLuint queryId, GLuint *nextQueryId); +typedef void (APIENTRYP PFNGLGETPERFCOUNTERINFOINTELPROC) (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +typedef void (APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +typedef void (APIENTRYP PFNGLGETPERFQUERYIDBYNAMEINTELPROC) (GLchar *queryName, GLuint *queryId); +typedef void (APIENTRYP PFNGLGETPERFQUERYINFOINTELPROC) (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); +GLAPI void APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); +GLAPI void APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); +GLAPI void APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); +GLAPI void APIENTRY glGetFirstPerfQueryIdINTEL (GLuint *queryId); +GLAPI void APIENTRY glGetNextPerfQueryIdINTEL (GLuint queryId, GLuint *nextQueryId); +GLAPI void APIENTRY glGetPerfCounterInfoINTEL (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +GLAPI void APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +GLAPI void APIENTRY glGetPerfQueryIdByNameINTEL (GLchar *queryName, GLuint *queryId); +GLAPI void APIENTRY glGetPerfQueryInfoINTEL (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#endif +#endif /* GL_INTEL_performance_query */ + +#ifndef GL_MESAX_texture_stack +#define GL_MESAX_texture_stack 1 +#define GL_TEXTURE_1D_STACK_MESAX 0x8759 +#define GL_TEXTURE_2D_STACK_MESAX 0x875A +#define GL_PROXY_TEXTURE_1D_STACK_MESAX 0x875B +#define GL_PROXY_TEXTURE_2D_STACK_MESAX 0x875C +#define GL_TEXTURE_1D_STACK_BINDING_MESAX 0x875D +#define GL_TEXTURE_2D_STACK_BINDING_MESAX 0x875E +#endif /* GL_MESAX_texture_stack */ + +#ifndef GL_MESA_framebuffer_flip_x +#define GL_MESA_framebuffer_flip_x 1 +#define GL_FRAMEBUFFER_FLIP_X_MESA 0x8BBC +#endif /* GL_MESA_framebuffer_flip_x */ + +#ifndef GL_MESA_framebuffer_flip_y +#define GL_MESA_framebuffer_flip_y 1 +#define GL_FRAMEBUFFER_FLIP_Y_MESA 0x8BBB +typedef void (APIENTRYP PFNGLFRAMEBUFFERPARAMETERIMESAPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVMESAPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferParameteriMESA (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glGetFramebufferParameterivMESA (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_MESA_framebuffer_flip_y */ + +#ifndef GL_MESA_framebuffer_swap_xy +#define GL_MESA_framebuffer_swap_xy 1 +#define GL_FRAMEBUFFER_SWAP_XY_MESA 0x8BBD +#endif /* GL_MESA_framebuffer_swap_xy */ + +#ifndef GL_MESA_pack_invert +#define GL_MESA_pack_invert 1 +#define GL_PACK_INVERT_MESA 0x8758 +#endif /* GL_MESA_pack_invert */ + +#ifndef GL_MESA_program_binary_formats +#define GL_MESA_program_binary_formats 1 +#define GL_PROGRAM_BINARY_FORMAT_MESA 0x875F +#endif /* GL_MESA_program_binary_formats */ + +#ifndef GL_MESA_resize_buffers +#define GL_MESA_resize_buffers 1 +typedef void (APIENTRYP PFNGLRESIZEBUFFERSMESAPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glResizeBuffersMESA (void); +#endif +#endif /* GL_MESA_resize_buffers */ + +#ifndef GL_MESA_shader_integer_functions +#define GL_MESA_shader_integer_functions 1 +#endif /* GL_MESA_shader_integer_functions */ + +#ifndef GL_MESA_tile_raster_order +#define GL_MESA_tile_raster_order 1 +#define GL_TILE_RASTER_ORDER_FIXED_MESA 0x8BB8 +#define GL_TILE_RASTER_ORDER_INCREASING_X_MESA 0x8BB9 +#define GL_TILE_RASTER_ORDER_INCREASING_Y_MESA 0x8BBA +#endif /* GL_MESA_tile_raster_order */ + +#ifndef GL_MESA_window_pos +#define GL_MESA_window_pos 1 +typedef void (APIENTRYP PFNGLWINDOWPOS2DMESAPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FMESAPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IMESAPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SMESAPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVMESAPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DMESAPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FMESAPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IMESAPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SMESAPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVMESAPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4DMESAPROC) (GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLWINDOWPOS4DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4FMESAPROC) (GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLWINDOWPOS4FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4IMESAPROC) (GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLWINDOWPOS4IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4SMESAPROC) (GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLWINDOWPOS4SVMESAPROC) (const GLshort *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowPos2dMESA (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2fMESA (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2iMESA (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos2sMESA (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2svMESA (const GLshort *v); +GLAPI void APIENTRY glWindowPos3dMESA (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3fMESA (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3iMESA (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos3sMESA (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3svMESA (const GLshort *v); +GLAPI void APIENTRY glWindowPos4dMESA (GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glWindowPos4dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos4fMESA (GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glWindowPos4fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos4iMESA (GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glWindowPos4ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos4sMESA (GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glWindowPos4svMESA (const GLshort *v); +#endif +#endif /* GL_MESA_window_pos */ + +#ifndef GL_MESA_ycbcr_texture +#define GL_MESA_ycbcr_texture 1 +#define GL_UNSIGNED_SHORT_8_8_MESA 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_MESA 0x85BB +#define GL_YCBCR_MESA 0x8757 +#endif /* GL_MESA_ycbcr_texture */ + +#ifndef GL_NVX_blend_equation_advanced_multi_draw_buffers +#define GL_NVX_blend_equation_advanced_multi_draw_buffers 1 +#endif /* GL_NVX_blend_equation_advanced_multi_draw_buffers */ + +#ifndef GL_NVX_conditional_render +#define GL_NVX_conditional_render 1 +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERNVXPROC) (GLuint id); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERNVXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginConditionalRenderNVX (GLuint id); +GLAPI void APIENTRY glEndConditionalRenderNVX (void); +#endif +#endif /* GL_NVX_conditional_render */ + +#ifndef GL_NVX_gpu_memory_info +#define GL_NVX_gpu_memory_info 1 +#define GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX 0x9047 +#define GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX 0x9048 +#define GL_GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX 0x9049 +#define GL_GPU_MEMORY_INFO_EVICTION_COUNT_NVX 0x904A +#define GL_GPU_MEMORY_INFO_EVICTED_MEMORY_NVX 0x904B +#endif /* GL_NVX_gpu_memory_info */ + +#ifndef GL_NVX_gpu_multicast2 +#define GL_NVX_gpu_multicast2 1 +#define GL_UPLOAD_GPU_MASK_NVX 0x954A +typedef void (APIENTRYP PFNGLUPLOADGPUMASKNVXPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLMULTICASTVIEWPORTARRAYVNVXPROC) (GLuint gpu, GLuint first, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTICASTVIEWPORTPOSITIONWSCALENVXPROC) (GLuint gpu, GLuint index, GLfloat xcoeff, GLfloat ycoeff); +typedef void (APIENTRYP PFNGLMULTICASTSCISSORARRAYVNVXPROC) (GLuint gpu, GLuint first, GLsizei count, const GLint *v); +typedef GLuint (APIENTRYP PFNGLASYNCCOPYBUFFERSUBDATANVXPROC) (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *fenceValueArray, GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +typedef GLuint (APIENTRYP PFNGLASYNCCOPYIMAGESUBDATANVXPROC) (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *waitValueArray, GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUploadGPUMaskNVX (GLbitfield mask); +GLAPI void APIENTRY glMulticastViewportArrayvNVX (GLuint gpu, GLuint first, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glMulticastViewportPositionWScaleNVX (GLuint gpu, GLuint index, GLfloat xcoeff, GLfloat ycoeff); +GLAPI void APIENTRY glMulticastScissorArrayvNVX (GLuint gpu, GLuint first, GLsizei count, const GLint *v); +GLAPI GLuint APIENTRY glAsyncCopyBufferSubDataNVX (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *fenceValueArray, GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +GLAPI GLuint APIENTRY glAsyncCopyImageSubDataNVX (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *waitValueArray, GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +#endif +#endif /* GL_NVX_gpu_multicast2 */ + +#ifndef GL_NVX_linked_gpu_multicast +#define GL_NVX_linked_gpu_multicast 1 +#define GL_LGPU_SEPARATE_STORAGE_BIT_NVX 0x0800 +#define GL_MAX_LGPU_GPUS_NVX 0x92BA +typedef void (APIENTRYP PFNGLLGPUNAMEDBUFFERSUBDATANVXPROC) (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLLGPUCOPYIMAGESUBDATANVXPROC) (GLuint sourceGPU, GLbitfield destinationGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srxY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLLGPUINTERLOCKNVXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLGPUNamedBufferSubDataNVX (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glLGPUCopyImageSubDataNVX (GLuint sourceGPU, GLbitfield destinationGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srxY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glLGPUInterlockNVX (void); +#endif +#endif /* GL_NVX_linked_gpu_multicast */ + +#ifndef GL_NVX_progress_fence +#define GL_NVX_progress_fence 1 +typedef GLuint (APIENTRYP PFNGLCREATEPROGRESSFENCENVXPROC) (void); +typedef void (APIENTRYP PFNGLSIGNALSEMAPHOREUI64NVXPROC) (GLuint signalGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +typedef void (APIENTRYP PFNGLWAITSEMAPHOREUI64NVXPROC) (GLuint waitGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +typedef void (APIENTRYP PFNGLCLIENTWAITSEMAPHOREUI64NVXPROC) (GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glCreateProgressFenceNVX (void); +GLAPI void APIENTRY glSignalSemaphoreui64NVX (GLuint signalGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +GLAPI void APIENTRY glWaitSemaphoreui64NVX (GLuint waitGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +GLAPI void APIENTRY glClientWaitSemaphoreui64NVX (GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +#endif +#endif /* GL_NVX_progress_fence */ + +#ifndef GL_NV_alpha_to_coverage_dither_control +#define GL_NV_alpha_to_coverage_dither_control 1 +#define GL_ALPHA_TO_COVERAGE_DITHER_DEFAULT_NV 0x934D +#define GL_ALPHA_TO_COVERAGE_DITHER_ENABLE_NV 0x934E +#define GL_ALPHA_TO_COVERAGE_DITHER_DISABLE_NV 0x934F +#define GL_ALPHA_TO_COVERAGE_DITHER_MODE_NV 0x92BF +typedef void (APIENTRYP PFNGLALPHATOCOVERAGEDITHERCONTROLNVPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAlphaToCoverageDitherControlNV (GLenum mode); +#endif +#endif /* GL_NV_alpha_to_coverage_dither_control */ + +#ifndef GL_NV_bindless_multi_draw_indirect +#define GL_NV_bindless_multi_draw_indirect 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSNVPROC) (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTBINDLESSNVPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectBindlessNV (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +GLAPI void APIENTRY glMultiDrawElementsIndirectBindlessNV (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +#endif +#endif /* GL_NV_bindless_multi_draw_indirect */ + +#ifndef GL_NV_bindless_multi_draw_indirect_count +#define GL_NV_bindless_multi_draw_indirect_count 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSCOUNTNVPROC) (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTBINDLESSCOUNTNVPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectBindlessCountNV (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +GLAPI void APIENTRY glMultiDrawElementsIndirectBindlessCountNV (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +#endif +#endif /* GL_NV_bindless_multi_draw_indirect_count */ + +#ifndef GL_NV_bindless_texture +#define GL_NV_bindless_texture 1 +typedef GLuint64 (APIENTRYP PFNGLGETTEXTUREHANDLENVPROC) (GLuint texture); +typedef GLuint64 (APIENTRYP PFNGLGETTEXTURESAMPLERHANDLENVPROC) (GLuint texture, GLuint sampler); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef GLuint64 (APIENTRYP PFNGLGETIMAGEHANDLENVPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle, GLenum access); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64NVPROC) (GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64VNVPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64NVPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +typedef GLboolean (APIENTRYP PFNGLISTEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef GLboolean (APIENTRYP PFNGLISIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint64 APIENTRY glGetTextureHandleNV (GLuint texture); +GLAPI GLuint64 APIENTRY glGetTextureSamplerHandleNV (GLuint texture, GLuint sampler); +GLAPI void APIENTRY glMakeTextureHandleResidentNV (GLuint64 handle); +GLAPI void APIENTRY glMakeTextureHandleNonResidentNV (GLuint64 handle); +GLAPI GLuint64 APIENTRY glGetImageHandleNV (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +GLAPI void APIENTRY glMakeImageHandleResidentNV (GLuint64 handle, GLenum access); +GLAPI void APIENTRY glMakeImageHandleNonResidentNV (GLuint64 handle); +GLAPI void APIENTRY glUniformHandleui64NV (GLint location, GLuint64 value); +GLAPI void APIENTRY glUniformHandleui64vNV (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniformHandleui64NV (GLuint program, GLint location, GLuint64 value); +GLAPI void APIENTRY glProgramUniformHandleui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +GLAPI GLboolean APIENTRY glIsTextureHandleResidentNV (GLuint64 handle); +GLAPI GLboolean APIENTRY glIsImageHandleResidentNV (GLuint64 handle); +#endif +#endif /* GL_NV_bindless_texture */ + +#ifndef GL_NV_blend_equation_advanced +#define GL_NV_blend_equation_advanced 1 +#define GL_BLEND_OVERLAP_NV 0x9281 +#define GL_BLEND_PREMULTIPLIED_SRC_NV 0x9280 +#define GL_BLUE_NV 0x1905 +#define GL_COLORBURN_NV 0x929A +#define GL_COLORDODGE_NV 0x9299 +#define GL_CONJOINT_NV 0x9284 +#define GL_CONTRAST_NV 0x92A1 +#define GL_DARKEN_NV 0x9297 +#define GL_DIFFERENCE_NV 0x929E +#define GL_DISJOINT_NV 0x9283 +#define GL_DST_ATOP_NV 0x928F +#define GL_DST_IN_NV 0x928B +#define GL_DST_NV 0x9287 +#define GL_DST_OUT_NV 0x928D +#define GL_DST_OVER_NV 0x9289 +#define GL_EXCLUSION_NV 0x92A0 +#define GL_GREEN_NV 0x1904 +#define GL_HARDLIGHT_NV 0x929B +#define GL_HARDMIX_NV 0x92A9 +#define GL_HSL_COLOR_NV 0x92AF +#define GL_HSL_HUE_NV 0x92AD +#define GL_HSL_LUMINOSITY_NV 0x92B0 +#define GL_HSL_SATURATION_NV 0x92AE +#define GL_INVERT_OVG_NV 0x92B4 +#define GL_INVERT_RGB_NV 0x92A3 +#define GL_LIGHTEN_NV 0x9298 +#define GL_LINEARBURN_NV 0x92A5 +#define GL_LINEARDODGE_NV 0x92A4 +#define GL_LINEARLIGHT_NV 0x92A7 +#define GL_MINUS_CLAMPED_NV 0x92B3 +#define GL_MINUS_NV 0x929F +#define GL_MULTIPLY_NV 0x9294 +#define GL_OVERLAY_NV 0x9296 +#define GL_PINLIGHT_NV 0x92A8 +#define GL_PLUS_CLAMPED_ALPHA_NV 0x92B2 +#define GL_PLUS_CLAMPED_NV 0x92B1 +#define GL_PLUS_DARKER_NV 0x9292 +#define GL_PLUS_NV 0x9291 +#define GL_RED_NV 0x1903 +#define GL_SCREEN_NV 0x9295 +#define GL_SOFTLIGHT_NV 0x929C +#define GL_SRC_ATOP_NV 0x928E +#define GL_SRC_IN_NV 0x928A +#define GL_SRC_NV 0x9286 +#define GL_SRC_OUT_NV 0x928C +#define GL_SRC_OVER_NV 0x9288 +#define GL_UNCORRELATED_NV 0x9282 +#define GL_VIVIDLIGHT_NV 0x92A6 +#define GL_XOR_NV 0x1506 +typedef void (APIENTRYP PFNGLBLENDPARAMETERINVPROC) (GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLBLENDBARRIERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendParameteriNV (GLenum pname, GLint value); +GLAPI void APIENTRY glBlendBarrierNV (void); +#endif +#endif /* GL_NV_blend_equation_advanced */ + +#ifndef GL_NV_blend_equation_advanced_coherent +#define GL_NV_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_NV 0x9285 +#endif /* GL_NV_blend_equation_advanced_coherent */ + +#ifndef GL_NV_blend_minmax_factor +#define GL_NV_blend_minmax_factor 1 +#endif /* GL_NV_blend_minmax_factor */ + +#ifndef GL_NV_blend_square +#define GL_NV_blend_square 1 +#endif /* GL_NV_blend_square */ + +#ifndef GL_NV_clip_space_w_scaling +#define GL_NV_clip_space_w_scaling 1 +#define GL_VIEWPORT_POSITION_W_SCALE_NV 0x937C +#define GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV 0x937D +#define GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV 0x937E +typedef void (APIENTRYP PFNGLVIEWPORTPOSITIONWSCALENVPROC) (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glViewportPositionWScaleNV (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#endif +#endif /* GL_NV_clip_space_w_scaling */ + +#ifndef GL_NV_command_list +#define GL_NV_command_list 1 +#define GL_TERMINATE_SEQUENCE_COMMAND_NV 0x0000 +#define GL_NOP_COMMAND_NV 0x0001 +#define GL_DRAW_ELEMENTS_COMMAND_NV 0x0002 +#define GL_DRAW_ARRAYS_COMMAND_NV 0x0003 +#define GL_DRAW_ELEMENTS_STRIP_COMMAND_NV 0x0004 +#define GL_DRAW_ARRAYS_STRIP_COMMAND_NV 0x0005 +#define GL_DRAW_ELEMENTS_INSTANCED_COMMAND_NV 0x0006 +#define GL_DRAW_ARRAYS_INSTANCED_COMMAND_NV 0x0007 +#define GL_ELEMENT_ADDRESS_COMMAND_NV 0x0008 +#define GL_ATTRIBUTE_ADDRESS_COMMAND_NV 0x0009 +#define GL_UNIFORM_ADDRESS_COMMAND_NV 0x000A +#define GL_BLEND_COLOR_COMMAND_NV 0x000B +#define GL_STENCIL_REF_COMMAND_NV 0x000C +#define GL_LINE_WIDTH_COMMAND_NV 0x000D +#define GL_POLYGON_OFFSET_COMMAND_NV 0x000E +#define GL_ALPHA_REF_COMMAND_NV 0x000F +#define GL_VIEWPORT_COMMAND_NV 0x0010 +#define GL_SCISSOR_COMMAND_NV 0x0011 +#define GL_FRONT_FACE_COMMAND_NV 0x0012 +typedef void (APIENTRYP PFNGLCREATESTATESNVPROC) (GLsizei n, GLuint *states); +typedef void (APIENTRYP PFNGLDELETESTATESNVPROC) (GLsizei n, const GLuint *states); +typedef GLboolean (APIENTRYP PFNGLISSTATENVPROC) (GLuint state); +typedef void (APIENTRYP PFNGLSTATECAPTURENVPROC) (GLuint state, GLenum mode); +typedef GLuint (APIENTRYP PFNGLGETCOMMANDHEADERNVPROC) (GLenum tokenID, GLuint size); +typedef GLushort (APIENTRYP PFNGLGETSTAGEINDEXNVPROC) (GLenum shadertype); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSNVPROC) (GLenum primitiveMode, GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSADDRESSNVPROC) (GLenum primitiveMode, const GLuint64 *indirects, const GLsizei *sizes, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSSTATESNVPROC) (GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSSTATESADDRESSNVPROC) (const GLuint64 *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLCREATECOMMANDLISTSNVPROC) (GLsizei n, GLuint *lists); +typedef void (APIENTRYP PFNGLDELETECOMMANDLISTSNVPROC) (GLsizei n, const GLuint *lists); +typedef GLboolean (APIENTRYP PFNGLISCOMMANDLISTNVPROC) (GLuint list); +typedef void (APIENTRYP PFNGLLISTDRAWCOMMANDSSTATESCLIENTNVPROC) (GLuint list, GLuint segment, const void **indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLCOMMANDLISTSEGMENTSNVPROC) (GLuint list, GLuint segments); +typedef void (APIENTRYP PFNGLCOMPILECOMMANDLISTNVPROC) (GLuint list); +typedef void (APIENTRYP PFNGLCALLCOMMANDLISTNVPROC) (GLuint list); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCreateStatesNV (GLsizei n, GLuint *states); +GLAPI void APIENTRY glDeleteStatesNV (GLsizei n, const GLuint *states); +GLAPI GLboolean APIENTRY glIsStateNV (GLuint state); +GLAPI void APIENTRY glStateCaptureNV (GLuint state, GLenum mode); +GLAPI GLuint APIENTRY glGetCommandHeaderNV (GLenum tokenID, GLuint size); +GLAPI GLushort APIENTRY glGetStageIndexNV (GLenum shadertype); +GLAPI void APIENTRY glDrawCommandsNV (GLenum primitiveMode, GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, GLuint count); +GLAPI void APIENTRY glDrawCommandsAddressNV (GLenum primitiveMode, const GLuint64 *indirects, const GLsizei *sizes, GLuint count); +GLAPI void APIENTRY glDrawCommandsStatesNV (GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glDrawCommandsStatesAddressNV (const GLuint64 *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glCreateCommandListsNV (GLsizei n, GLuint *lists); +GLAPI void APIENTRY glDeleteCommandListsNV (GLsizei n, const GLuint *lists); +GLAPI GLboolean APIENTRY glIsCommandListNV (GLuint list); +GLAPI void APIENTRY glListDrawCommandsStatesClientNV (GLuint list, GLuint segment, const void **indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glCommandListSegmentsNV (GLuint list, GLuint segments); +GLAPI void APIENTRY glCompileCommandListNV (GLuint list); +GLAPI void APIENTRY glCallCommandListNV (GLuint list); +#endif +#endif /* GL_NV_command_list */ + +#ifndef GL_NV_compute_program5 +#define GL_NV_compute_program5 1 +#define GL_COMPUTE_PROGRAM_NV 0x90FB +#define GL_COMPUTE_PROGRAM_PARAMETER_BUFFER_NV 0x90FC +#endif /* GL_NV_compute_program5 */ + +#ifndef GL_NV_compute_shader_derivatives +#define GL_NV_compute_shader_derivatives 1 +#endif /* GL_NV_compute_shader_derivatives */ + +#ifndef GL_NV_conditional_render +#define GL_NV_conditional_render 1 +#define GL_QUERY_WAIT_NV 0x8E13 +#define GL_QUERY_NO_WAIT_NV 0x8E14 +#define GL_QUERY_BY_REGION_WAIT_NV 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16 +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERNVPROC) (GLuint id, GLenum mode); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginConditionalRenderNV (GLuint id, GLenum mode); +GLAPI void APIENTRY glEndConditionalRenderNV (void); +#endif +#endif /* GL_NV_conditional_render */ + +#ifndef GL_NV_conservative_raster +#define GL_NV_conservative_raster 1 +#define GL_CONSERVATIVE_RASTERIZATION_NV 0x9346 +#define GL_SUBPIXEL_PRECISION_BIAS_X_BITS_NV 0x9347 +#define GL_SUBPIXEL_PRECISION_BIAS_Y_BITS_NV 0x9348 +#define GL_MAX_SUBPIXEL_PRECISION_BIAS_BITS_NV 0x9349 +typedef void (APIENTRYP PFNGLSUBPIXELPRECISIONBIASNVPROC) (GLuint xbits, GLuint ybits); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSubpixelPrecisionBiasNV (GLuint xbits, GLuint ybits); +#endif +#endif /* GL_NV_conservative_raster */ + +#ifndef GL_NV_conservative_raster_dilate +#define GL_NV_conservative_raster_dilate 1 +#define GL_CONSERVATIVE_RASTER_DILATE_NV 0x9379 +#define GL_CONSERVATIVE_RASTER_DILATE_RANGE_NV 0x937A +#define GL_CONSERVATIVE_RASTER_DILATE_GRANULARITY_NV 0x937B +typedef void (APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERFNVPROC) (GLenum pname, GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConservativeRasterParameterfNV (GLenum pname, GLfloat value); +#endif +#endif /* GL_NV_conservative_raster_dilate */ + +#ifndef GL_NV_conservative_raster_pre_snap +#define GL_NV_conservative_raster_pre_snap 1 +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV 0x9550 +#endif /* GL_NV_conservative_raster_pre_snap */ + +#ifndef GL_NV_conservative_raster_pre_snap_triangles +#define GL_NV_conservative_raster_pre_snap_triangles 1 +#define GL_CONSERVATIVE_RASTER_MODE_NV 0x954D +#define GL_CONSERVATIVE_RASTER_MODE_POST_SNAP_NV 0x954E +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_TRIANGLES_NV 0x954F +typedef void (APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERINVPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConservativeRasterParameteriNV (GLenum pname, GLint param); +#endif +#endif /* GL_NV_conservative_raster_pre_snap_triangles */ + +#ifndef GL_NV_conservative_raster_underestimation +#define GL_NV_conservative_raster_underestimation 1 +#endif /* GL_NV_conservative_raster_underestimation */ + +#ifndef GL_NV_copy_depth_to_color +#define GL_NV_copy_depth_to_color 1 +#define GL_DEPTH_STENCIL_TO_RGBA_NV 0x886E +#define GL_DEPTH_STENCIL_TO_BGRA_NV 0x886F +#endif /* GL_NV_copy_depth_to_color */ + +#ifndef GL_NV_copy_image +#define GL_NV_copy_image 1 +typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATANVPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCopyImageSubDataNV (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_NV_copy_image */ + +#ifndef GL_NV_deep_texture3D +#define GL_NV_deep_texture3D 1 +#define GL_MAX_DEEP_3D_TEXTURE_WIDTH_HEIGHT_NV 0x90D0 +#define GL_MAX_DEEP_3D_TEXTURE_DEPTH_NV 0x90D1 +#endif /* GL_NV_deep_texture3D */ + +#ifndef GL_NV_depth_buffer_float +#define GL_NV_depth_buffer_float 1 +#define GL_DEPTH_COMPONENT32F_NV 0x8DAB +#define GL_DEPTH32F_STENCIL8_NV 0x8DAC +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV_NV 0x8DAD +#define GL_DEPTH_BUFFER_FLOAT_MODE_NV 0x8DAF +typedef void (APIENTRYP PFNGLDEPTHRANGEDNVPROC) (GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLCLEARDEPTHDNVPROC) (GLdouble depth); +typedef void (APIENTRYP PFNGLDEPTHBOUNDSDNVPROC) (GLdouble zmin, GLdouble zmax); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthRangedNV (GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glClearDepthdNV (GLdouble depth); +GLAPI void APIENTRY glDepthBoundsdNV (GLdouble zmin, GLdouble zmax); +#endif +#endif /* GL_NV_depth_buffer_float */ + +#ifndef GL_NV_depth_clamp +#define GL_NV_depth_clamp 1 +#define GL_DEPTH_CLAMP_NV 0x864F +#endif /* GL_NV_depth_clamp */ + +#ifndef GL_NV_draw_texture +#define GL_NV_draw_texture 1 +typedef void (APIENTRYP PFNGLDRAWTEXTURENVPROC) (GLuint texture, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawTextureNV (GLuint texture, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +#endif +#endif /* GL_NV_draw_texture */ + +#ifndef GL_NV_draw_vulkan_image +#define GL_NV_draw_vulkan_image 1 +typedef void (APIENTRY *GLVULKANPROCNV)(void); +typedef void (APIENTRYP PFNGLDRAWVKIMAGENVPROC) (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +typedef GLVULKANPROCNV (APIENTRYP PFNGLGETVKPROCADDRNVPROC) (const GLchar *name); +typedef void (APIENTRYP PFNGLWAITVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (APIENTRYP PFNGLSIGNALVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (APIENTRYP PFNGLSIGNALVKFENCENVPROC) (GLuint64 vkFence); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawVkImageNV (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +GLAPI GLVULKANPROCNV APIENTRY glGetVkProcAddrNV (const GLchar *name); +GLAPI void APIENTRY glWaitVkSemaphoreNV (GLuint64 vkSemaphore); +GLAPI void APIENTRY glSignalVkSemaphoreNV (GLuint64 vkSemaphore); +GLAPI void APIENTRY glSignalVkFenceNV (GLuint64 vkFence); +#endif +#endif /* GL_NV_draw_vulkan_image */ + +#ifndef GL_NV_evaluators +#define GL_NV_evaluators 1 +#define GL_EVAL_2D_NV 0x86C0 +#define GL_EVAL_TRIANGULAR_2D_NV 0x86C1 +#define GL_MAP_TESSELLATION_NV 0x86C2 +#define GL_MAP_ATTRIB_U_ORDER_NV 0x86C3 +#define GL_MAP_ATTRIB_V_ORDER_NV 0x86C4 +#define GL_EVAL_FRACTIONAL_TESSELLATION_NV 0x86C5 +#define GL_EVAL_VERTEX_ATTRIB0_NV 0x86C6 +#define GL_EVAL_VERTEX_ATTRIB1_NV 0x86C7 +#define GL_EVAL_VERTEX_ATTRIB2_NV 0x86C8 +#define GL_EVAL_VERTEX_ATTRIB3_NV 0x86C9 +#define GL_EVAL_VERTEX_ATTRIB4_NV 0x86CA +#define GL_EVAL_VERTEX_ATTRIB5_NV 0x86CB +#define GL_EVAL_VERTEX_ATTRIB6_NV 0x86CC +#define GL_EVAL_VERTEX_ATTRIB7_NV 0x86CD +#define GL_EVAL_VERTEX_ATTRIB8_NV 0x86CE +#define GL_EVAL_VERTEX_ATTRIB9_NV 0x86CF +#define GL_EVAL_VERTEX_ATTRIB10_NV 0x86D0 +#define GL_EVAL_VERTEX_ATTRIB11_NV 0x86D1 +#define GL_EVAL_VERTEX_ATTRIB12_NV 0x86D2 +#define GL_EVAL_VERTEX_ATTRIB13_NV 0x86D3 +#define GL_EVAL_VERTEX_ATTRIB14_NV 0x86D4 +#define GL_EVAL_VERTEX_ATTRIB15_NV 0x86D5 +#define GL_MAX_MAP_TESSELLATION_NV 0x86D6 +#define GL_MAX_RATIONAL_EVAL_ORDER_NV 0x86D7 +typedef void (APIENTRYP PFNGLMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const void *points); +typedef void (APIENTRYP PFNGLMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, void *points); +typedef void (APIENTRYP PFNGLGETMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERIVNVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLEVALMAPSNVPROC) (GLenum target, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMapControlPointsNV (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const void *points); +GLAPI void APIENTRY glMapParameterivNV (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMapParameterfvNV (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetMapControlPointsNV (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, void *points); +GLAPI void APIENTRY glGetMapParameterivNV (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMapParameterfvNV (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMapAttribParameterivNV (GLenum target, GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMapAttribParameterfvNV (GLenum target, GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glEvalMapsNV (GLenum target, GLenum mode); +#endif +#endif /* GL_NV_evaluators */ + +#ifndef GL_NV_explicit_multisample +#define GL_NV_explicit_multisample 1 +#define GL_SAMPLE_POSITION_NV 0x8E50 +#define GL_SAMPLE_MASK_NV 0x8E51 +#define GL_SAMPLE_MASK_VALUE_NV 0x8E52 +#define GL_TEXTURE_BINDING_RENDERBUFFER_NV 0x8E53 +#define GL_TEXTURE_RENDERBUFFER_DATA_STORE_BINDING_NV 0x8E54 +#define GL_TEXTURE_RENDERBUFFER_NV 0x8E55 +#define GL_SAMPLER_RENDERBUFFER_NV 0x8E56 +#define GL_INT_SAMPLER_RENDERBUFFER_NV 0x8E57 +#define GL_UNSIGNED_INT_SAMPLER_RENDERBUFFER_NV 0x8E58 +#define GL_MAX_SAMPLE_MASK_WORDS_NV 0x8E59 +typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVNVPROC) (GLenum pname, GLuint index, GLfloat *val); +typedef void (APIENTRYP PFNGLSAMPLEMASKINDEXEDNVPROC) (GLuint index, GLbitfield mask); +typedef void (APIENTRYP PFNGLTEXRENDERBUFFERNVPROC) (GLenum target, GLuint renderbuffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetMultisamplefvNV (GLenum pname, GLuint index, GLfloat *val); +GLAPI void APIENTRY glSampleMaskIndexedNV (GLuint index, GLbitfield mask); +GLAPI void APIENTRY glTexRenderbufferNV (GLenum target, GLuint renderbuffer); +#endif +#endif /* GL_NV_explicit_multisample */ + +#ifndef GL_NV_fence +#define GL_NV_fence 1 +#define GL_ALL_COMPLETED_NV 0x84F2 +#define GL_FENCE_STATUS_NV 0x84F3 +#define GL_FENCE_CONDITION_NV 0x84F4 +typedef void (APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences); +typedef void (APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences); +typedef GLboolean (APIENTRYP PFNGLISFENCENVPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences); +GLAPI void APIENTRY glGenFencesNV (GLsizei n, GLuint *fences); +GLAPI GLboolean APIENTRY glIsFenceNV (GLuint fence); +GLAPI GLboolean APIENTRY glTestFenceNV (GLuint fence); +GLAPI void APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params); +GLAPI void APIENTRY glFinishFenceNV (GLuint fence); +GLAPI void APIENTRY glSetFenceNV (GLuint fence, GLenum condition); +#endif +#endif /* GL_NV_fence */ + +#ifndef GL_NV_fill_rectangle +#define GL_NV_fill_rectangle 1 +#define GL_FILL_RECTANGLE_NV 0x933C +#endif /* GL_NV_fill_rectangle */ + +#ifndef GL_NV_float_buffer +#define GL_NV_float_buffer 1 +#define GL_FLOAT_R_NV 0x8880 +#define GL_FLOAT_RG_NV 0x8881 +#define GL_FLOAT_RGB_NV 0x8882 +#define GL_FLOAT_RGBA_NV 0x8883 +#define GL_FLOAT_R16_NV 0x8884 +#define GL_FLOAT_R32_NV 0x8885 +#define GL_FLOAT_RG16_NV 0x8886 +#define GL_FLOAT_RG32_NV 0x8887 +#define GL_FLOAT_RGB16_NV 0x8888 +#define GL_FLOAT_RGB32_NV 0x8889 +#define GL_FLOAT_RGBA16_NV 0x888A +#define GL_FLOAT_RGBA32_NV 0x888B +#define GL_TEXTURE_FLOAT_COMPONENTS_NV 0x888C +#define GL_FLOAT_CLEAR_COLOR_VALUE_NV 0x888D +#define GL_FLOAT_RGBA_MODE_NV 0x888E +#endif /* GL_NV_float_buffer */ + +#ifndef GL_NV_fog_distance +#define GL_NV_fog_distance 1 +#define GL_FOG_DISTANCE_MODE_NV 0x855A +#define GL_EYE_RADIAL_NV 0x855B +#define GL_EYE_PLANE_ABSOLUTE_NV 0x855C +#endif /* GL_NV_fog_distance */ + +#ifndef GL_NV_fragment_coverage_to_color +#define GL_NV_fragment_coverage_to_color 1 +#define GL_FRAGMENT_COVERAGE_TO_COLOR_NV 0x92DD +#define GL_FRAGMENT_COVERAGE_COLOR_NV 0x92DE +typedef void (APIENTRYP PFNGLFRAGMENTCOVERAGECOLORNVPROC) (GLuint color); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFragmentCoverageColorNV (GLuint color); +#endif +#endif /* GL_NV_fragment_coverage_to_color */ + +#ifndef GL_NV_fragment_program +#define GL_NV_fragment_program 1 +#define GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV 0x8868 +#define GL_FRAGMENT_PROGRAM_NV 0x8870 +#define GL_MAX_TEXTURE_COORDS_NV 0x8871 +#define GL_MAX_TEXTURE_IMAGE_UNITS_NV 0x8872 +#define GL_FRAGMENT_PROGRAM_BINDING_NV 0x8873 +#define GL_PROGRAM_ERROR_STRING_NV 0x8874 +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v); +typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERFVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERDVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramNamedParameter4fNV (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramNamedParameter4fvNV (GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v); +GLAPI void APIENTRY glProgramNamedParameter4dNV (GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramNamedParameter4dvNV (GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v); +GLAPI void APIENTRY glGetProgramNamedParameterfvNV (GLuint id, GLsizei len, const GLubyte *name, GLfloat *params); +GLAPI void APIENTRY glGetProgramNamedParameterdvNV (GLuint id, GLsizei len, const GLubyte *name, GLdouble *params); +#endif +#endif /* GL_NV_fragment_program */ + +#ifndef GL_NV_fragment_program2 +#define GL_NV_fragment_program2 1 +#define GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 +#define GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 +#define GL_MAX_PROGRAM_IF_DEPTH_NV 0x88F6 +#define GL_MAX_PROGRAM_LOOP_DEPTH_NV 0x88F7 +#define GL_MAX_PROGRAM_LOOP_COUNT_NV 0x88F8 +#endif /* GL_NV_fragment_program2 */ + +#ifndef GL_NV_fragment_program4 +#define GL_NV_fragment_program4 1 +#endif /* GL_NV_fragment_program4 */ + +#ifndef GL_NV_fragment_program_option +#define GL_NV_fragment_program_option 1 +#endif /* GL_NV_fragment_program_option */ + +#ifndef GL_NV_fragment_shader_barycentric +#define GL_NV_fragment_shader_barycentric 1 +#endif /* GL_NV_fragment_shader_barycentric */ + +#ifndef GL_NV_fragment_shader_interlock +#define GL_NV_fragment_shader_interlock 1 +#endif /* GL_NV_fragment_shader_interlock */ + +#ifndef GL_NV_framebuffer_mixed_samples +#define GL_NV_framebuffer_mixed_samples 1 +#define GL_COVERAGE_MODULATION_TABLE_NV 0x9331 +#define GL_COLOR_SAMPLES_NV 0x8E20 +#define GL_DEPTH_SAMPLES_NV 0x932D +#define GL_STENCIL_SAMPLES_NV 0x932E +#define GL_MIXED_DEPTH_SAMPLES_SUPPORTED_NV 0x932F +#define GL_MIXED_STENCIL_SAMPLES_SUPPORTED_NV 0x9330 +#define GL_COVERAGE_MODULATION_NV 0x9332 +#define GL_COVERAGE_MODULATION_TABLE_SIZE_NV 0x9333 +typedef void (APIENTRYP PFNGLCOVERAGEMODULATIONTABLENVPROC) (GLsizei n, const GLfloat *v); +typedef void (APIENTRYP PFNGLGETCOVERAGEMODULATIONTABLENVPROC) (GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLCOVERAGEMODULATIONNVPROC) (GLenum components); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCoverageModulationTableNV (GLsizei n, const GLfloat *v); +GLAPI void APIENTRY glGetCoverageModulationTableNV (GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glCoverageModulationNV (GLenum components); +#endif +#endif /* GL_NV_framebuffer_mixed_samples */ + +#ifndef GL_NV_framebuffer_multisample_coverage +#define GL_NV_framebuffer_multisample_coverage 1 +#define GL_RENDERBUFFER_COVERAGE_SAMPLES_NV 0x8CAB +#define GL_RENDERBUFFER_COLOR_SAMPLES_NV 0x8E10 +#define GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV 0x8E11 +#define GL_MULTISAMPLE_COVERAGE_MODES_NV 0x8E12 +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_NV_framebuffer_multisample_coverage */ + +#ifndef GL_NV_geometry_program4 +#define GL_NV_geometry_program4 1 +#define GL_GEOMETRY_PROGRAM_NV 0x8C26 +#define GL_MAX_PROGRAM_OUTPUT_VERTICES_NV 0x8C27 +#define GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV 0x8C28 +typedef void (APIENTRYP PFNGLPROGRAMVERTEXLIMITNVPROC) (GLenum target, GLint limit); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREFACEEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramVertexLimitNV (GLenum target, GLint limit); +GLAPI void APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTextureFaceEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#endif +#endif /* GL_NV_geometry_program4 */ + +#ifndef GL_NV_geometry_shader4 +#define GL_NV_geometry_shader4 1 +#endif /* GL_NV_geometry_shader4 */ + +#ifndef GL_NV_geometry_shader_passthrough +#define GL_NV_geometry_shader_passthrough 1 +#endif /* GL_NV_geometry_shader_passthrough */ + +#ifndef GL_NV_gpu_multicast +#define GL_NV_gpu_multicast 1 +#define GL_PER_GPU_STORAGE_BIT_NV 0x0800 +#define GL_MULTICAST_GPUS_NV 0x92BA +#define GL_RENDER_GPU_MASK_NV 0x9558 +#define GL_PER_GPU_STORAGE_NV 0x9548 +#define GL_MULTICAST_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9549 +typedef void (APIENTRYP PFNGLRENDERGPUMASKNVPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLMULTICASTBUFFERSUBDATANVPROC) (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLMULTICASTCOPYBUFFERSUBDATANVPROC) (GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLMULTICASTCOPYIMAGESUBDATANVPROC) (GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +typedef void (APIENTRYP PFNGLMULTICASTBLITFRAMEBUFFERNVPROC) (GLuint srcGPU, GLuint dstGPU, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef void (APIENTRYP PFNGLMULTICASTFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint gpu, GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTICASTBARRIERNVPROC) (void); +typedef void (APIENTRYP PFNGLMULTICASTWAITSYNCNVPROC) (GLuint signalGPU, GLbitfield waitGPUMask); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTIVNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTUIVNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTI64VNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTUI64VNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLuint64 *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderGPUMaskNV (GLbitfield mask); +GLAPI void APIENTRY glMulticastBufferSubDataNV (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glMulticastCopyBufferSubDataNV (GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glMulticastCopyImageSubDataNV (GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +GLAPI void APIENTRY glMulticastBlitFramebufferNV (GLuint srcGPU, GLuint dstGPU, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI void APIENTRY glMulticastFramebufferSampleLocationsfvNV (GLuint gpu, GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glMulticastBarrierNV (void); +GLAPI void APIENTRY glMulticastWaitSyncNV (GLuint signalGPU, GLbitfield waitGPUMask); +GLAPI void APIENTRY glMulticastGetQueryObjectivNV (GLuint gpu, GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glMulticastGetQueryObjectuivNV (GLuint gpu, GLuint id, GLenum pname, GLuint *params); +GLAPI void APIENTRY glMulticastGetQueryObjecti64vNV (GLuint gpu, GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glMulticastGetQueryObjectui64vNV (GLuint gpu, GLuint id, GLenum pname, GLuint64 *params); +#endif +#endif /* GL_NV_gpu_multicast */ + +#ifndef GL_NV_gpu_program4 +#define GL_NV_gpu_program4 1 +#define GL_MIN_PROGRAM_TEXEL_OFFSET_NV 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET_NV 0x8905 +#define GL_PROGRAM_ATTRIB_COMPONENTS_NV 0x8906 +#define GL_PROGRAM_RESULT_COMPONENTS_NV 0x8907 +#define GL_MAX_PROGRAM_ATTRIB_COMPONENTS_NV 0x8908 +#define GL_MAX_PROGRAM_RESULT_COMPONENTS_NV 0x8909 +#define GL_MAX_PROGRAM_GENERIC_ATTRIBS_NV 0x8DA5 +#define GL_MAX_PROGRAM_GENERIC_RESULTS_NV 0x8DA6 +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERIIVNVPROC) (GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERIUIVNVPROC) (GLenum target, GLuint index, GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERIIVNVPROC) (GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERIUIVNVPROC) (GLenum target, GLuint index, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramLocalParameterI4iNV (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glProgramLocalParameterI4ivNV (GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glProgramLocalParametersI4ivNV (GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramLocalParameterI4uiNV (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glProgramLocalParameterI4uivNV (GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glProgramLocalParametersI4uivNV (GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glProgramEnvParameterI4iNV (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glProgramEnvParameterI4ivNV (GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glProgramEnvParametersI4ivNV (GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramEnvParameterI4uiNV (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glProgramEnvParameterI4uivNV (GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glProgramEnvParametersI4uivNV (GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetProgramLocalParameterIivNV (GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetProgramLocalParameterIuivNV (GLenum target, GLuint index, GLuint *params); +GLAPI void APIENTRY glGetProgramEnvParameterIivNV (GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetProgramEnvParameterIuivNV (GLenum target, GLuint index, GLuint *params); +#endif +#endif /* GL_NV_gpu_program4 */ + +#ifndef GL_NV_gpu_program5 +#define GL_NV_gpu_program5 1 +#define GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV 0x8E5A +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5C +#define GL_FRAGMENT_PROGRAM_INTERPOLATION_OFFSET_BITS_NV 0x8E5D +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5F +#define GL_MAX_PROGRAM_SUBROUTINE_PARAMETERS_NV 0x8F44 +#define GL_MAX_PROGRAM_SUBROUTINE_NUM_NV 0x8F45 +typedef void (APIENTRYP PFNGLPROGRAMSUBROUTINEPARAMETERSUIVNVPROC) (GLenum target, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSUBROUTINEPARAMETERUIVNVPROC) (GLenum target, GLuint index, GLuint *param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramSubroutineParametersuivNV (GLenum target, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetProgramSubroutineParameteruivNV (GLenum target, GLuint index, GLuint *param); +#endif +#endif /* GL_NV_gpu_program5 */ + +#ifndef GL_NV_gpu_program5_mem_extended +#define GL_NV_gpu_program5_mem_extended 1 +#endif /* GL_NV_gpu_program5_mem_extended */ + +#ifndef GL_NV_gpu_shader5 +#define GL_NV_gpu_shader5 1 +#endif /* GL_NV_gpu_shader5 */ + +#ifndef GL_NV_half_float +#define GL_NV_half_float 1 +typedef unsigned short GLhalfNV; +#define GL_HALF_FLOAT_NV 0x140B +typedef void (APIENTRYP PFNGLVERTEX2HNVPROC) (GLhalfNV x, GLhalfNV y); +typedef void (APIENTRYP PFNGLVERTEX2HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEX3HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z); +typedef void (APIENTRYP PFNGLVERTEX3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEX4HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +typedef void (APIENTRYP PFNGLVERTEX4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLNORMAL3HNVPROC) (GLhalfNV nx, GLhalfNV ny, GLhalfNV nz); +typedef void (APIENTRYP PFNGLNORMAL3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +typedef void (APIENTRYP PFNGLCOLOR3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLCOLOR4HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue, GLhalfNV alpha); +typedef void (APIENTRYP PFNGLCOLOR4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD1HNVPROC) (GLhalfNV s); +typedef void (APIENTRYP PFNGLTEXCOORD1HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD2HNVPROC) (GLhalfNV s, GLhalfNV t); +typedef void (APIENTRYP PFNGLTEXCOORD2HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD3HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r); +typedef void (APIENTRYP PFNGLTEXCOORD3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD4HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +typedef void (APIENTRYP PFNGLTEXCOORD4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1HNVPROC) (GLenum target, GLhalfNV s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLFOGCOORDHNVPROC) (GLhalfNV fog); +typedef void (APIENTRYP PFNGLFOGCOORDHVNVPROC) (const GLhalfNV *fog); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTHNVPROC) (GLhalfNV weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTHVNVPROC) (const GLhalfNV *weight); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1HNVPROC) (GLuint index, GLhalfNV x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertex2hNV (GLhalfNV x, GLhalfNV y); +GLAPI void APIENTRY glVertex2hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertex3hNV (GLhalfNV x, GLhalfNV y, GLhalfNV z); +GLAPI void APIENTRY glVertex3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertex4hNV (GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +GLAPI void APIENTRY glVertex4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glNormal3hNV (GLhalfNV nx, GLhalfNV ny, GLhalfNV nz); +GLAPI void APIENTRY glNormal3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glColor3hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +GLAPI void APIENTRY glColor3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glColor4hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue, GLhalfNV alpha); +GLAPI void APIENTRY glColor4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord1hNV (GLhalfNV s); +GLAPI void APIENTRY glTexCoord1hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord2hNV (GLhalfNV s, GLhalfNV t); +GLAPI void APIENTRY glTexCoord2hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord3hNV (GLhalfNV s, GLhalfNV t, GLhalfNV r); +GLAPI void APIENTRY glTexCoord3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord4hNV (GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +GLAPI void APIENTRY glTexCoord4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord1hNV (GLenum target, GLhalfNV s); +GLAPI void APIENTRY glMultiTexCoord1hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord2hNV (GLenum target, GLhalfNV s, GLhalfNV t); +GLAPI void APIENTRY glMultiTexCoord2hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord3hNV (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r); +GLAPI void APIENTRY glMultiTexCoord3hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord4hNV (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +GLAPI void APIENTRY glMultiTexCoord4hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glFogCoordhNV (GLhalfNV fog); +GLAPI void APIENTRY glFogCoordhvNV (const GLhalfNV *fog); +GLAPI void APIENTRY glSecondaryColor3hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +GLAPI void APIENTRY glSecondaryColor3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertexWeighthNV (GLhalfNV weight); +GLAPI void APIENTRY glVertexWeighthvNV (const GLhalfNV *weight); +GLAPI void APIENTRY glVertexAttrib1hNV (GLuint index, GLhalfNV x); +GLAPI void APIENTRY glVertexAttrib1hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib2hNV (GLuint index, GLhalfNV x, GLhalfNV y); +GLAPI void APIENTRY glVertexAttrib2hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib3hNV (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z); +GLAPI void APIENTRY glVertexAttrib3hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib4hNV (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +GLAPI void APIENTRY glVertexAttrib4hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs1hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs2hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs3hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs4hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +#endif +#endif /* GL_NV_half_float */ + +#ifndef GL_NV_internalformat_sample_query +#define GL_NV_internalformat_sample_query 1 +#define GL_MULTISAMPLES_NV 0x9371 +#define GL_SUPERSAMPLE_SCALE_X_NV 0x9372 +#define GL_SUPERSAMPLE_SCALE_Y_NV 0x9373 +#define GL_CONFORMANT_NV 0x9374 +typedef void (APIENTRYP PFNGLGETINTERNALFORMATSAMPLEIVNVPROC) (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetInternalformatSampleivNV (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#endif +#endif /* GL_NV_internalformat_sample_query */ + +#ifndef GL_NV_light_max_exponent +#define GL_NV_light_max_exponent 1 +#define GL_MAX_SHININESS_NV 0x8504 +#define GL_MAX_SPOT_EXPONENT_NV 0x8505 +#endif /* GL_NV_light_max_exponent */ + +#ifndef GL_NV_memory_attachment +#define GL_NV_memory_attachment 1 +#define GL_ATTACHED_MEMORY_OBJECT_NV 0x95A4 +#define GL_ATTACHED_MEMORY_OFFSET_NV 0x95A5 +#define GL_MEMORY_ATTACHABLE_ALIGNMENT_NV 0x95A6 +#define GL_MEMORY_ATTACHABLE_SIZE_NV 0x95A7 +#define GL_MEMORY_ATTACHABLE_NV 0x95A8 +#define GL_DETACHED_MEMORY_INCARNATION_NV 0x95A9 +#define GL_DETACHED_TEXTURES_NV 0x95AA +#define GL_DETACHED_BUFFERS_NV 0x95AB +#define GL_MAX_DETACHED_TEXTURES_NV 0x95AC +#define GL_MAX_DETACHED_BUFFERS_NV 0x95AD +typedef void (APIENTRYP PFNGLGETMEMORYOBJECTDETACHEDRESOURCESUIVNVPROC) (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +typedef void (APIENTRYP PFNGLRESETMEMORYOBJECTPARAMETERNVPROC) (GLuint memory, GLenum pname); +typedef void (APIENTRYP PFNGLTEXATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLBUFFERATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTUREATTACHMEMORYNVPROC) (GLuint texture, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLNAMEDBUFFERATTACHMEMORYNVPROC) (GLuint buffer, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetMemoryObjectDetachedResourcesuivNV (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +GLAPI void APIENTRY glResetMemoryObjectParameterNV (GLuint memory, GLenum pname); +GLAPI void APIENTRY glTexAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glBufferAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureAttachMemoryNV (GLuint texture, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glNamedBufferAttachMemoryNV (GLuint buffer, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_NV_memory_attachment */ + +#ifndef GL_NV_memory_object_sparse +#define GL_NV_memory_object_sparse 1 +typedef void (APIENTRYP PFNGLBUFFERPAGECOMMITMENTMEMNVPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (APIENTRYP PFNGLTEXPAGECOMMITMENTMEMNVPROC) (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTMEMNVPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (APIENTRYP PFNGLTEXTUREPAGECOMMITMENTMEMNVPROC) (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferPageCommitmentMemNV (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GLAPI void APIENTRY glTexPageCommitmentMemNV (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentMemNV (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GLAPI void APIENTRY glTexturePageCommitmentMemNV (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#endif +#endif /* GL_NV_memory_object_sparse */ + +#ifndef GL_NV_mesh_shader +#define GL_NV_mesh_shader 1 +#define GL_MESH_SHADER_NV 0x9559 +#define GL_TASK_SHADER_NV 0x955A +#define GL_MAX_MESH_UNIFORM_BLOCKS_NV 0x8E60 +#define GL_MAX_MESH_TEXTURE_IMAGE_UNITS_NV 0x8E61 +#define GL_MAX_MESH_IMAGE_UNIFORMS_NV 0x8E62 +#define GL_MAX_MESH_UNIFORM_COMPONENTS_NV 0x8E63 +#define GL_MAX_MESH_ATOMIC_COUNTER_BUFFERS_NV 0x8E64 +#define GL_MAX_MESH_ATOMIC_COUNTERS_NV 0x8E65 +#define GL_MAX_MESH_SHADER_STORAGE_BLOCKS_NV 0x8E66 +#define GL_MAX_COMBINED_MESH_UNIFORM_COMPONENTS_NV 0x8E67 +#define GL_MAX_TASK_UNIFORM_BLOCKS_NV 0x8E68 +#define GL_MAX_TASK_TEXTURE_IMAGE_UNITS_NV 0x8E69 +#define GL_MAX_TASK_IMAGE_UNIFORMS_NV 0x8E6A +#define GL_MAX_TASK_UNIFORM_COMPONENTS_NV 0x8E6B +#define GL_MAX_TASK_ATOMIC_COUNTER_BUFFERS_NV 0x8E6C +#define GL_MAX_TASK_ATOMIC_COUNTERS_NV 0x8E6D +#define GL_MAX_TASK_SHADER_STORAGE_BLOCKS_NV 0x8E6E +#define GL_MAX_COMBINED_TASK_UNIFORM_COMPONENTS_NV 0x8E6F +#define GL_MAX_MESH_WORK_GROUP_INVOCATIONS_NV 0x95A2 +#define GL_MAX_TASK_WORK_GROUP_INVOCATIONS_NV 0x95A3 +#define GL_MAX_MESH_TOTAL_MEMORY_SIZE_NV 0x9536 +#define GL_MAX_TASK_TOTAL_MEMORY_SIZE_NV 0x9537 +#define GL_MAX_MESH_OUTPUT_VERTICES_NV 0x9538 +#define GL_MAX_MESH_OUTPUT_PRIMITIVES_NV 0x9539 +#define GL_MAX_TASK_OUTPUT_COUNT_NV 0x953A +#define GL_MAX_DRAW_MESH_TASKS_COUNT_NV 0x953D +#define GL_MAX_MESH_VIEWS_NV 0x9557 +#define GL_MESH_OUTPUT_PER_VERTEX_GRANULARITY_NV 0x92DF +#define GL_MESH_OUTPUT_PER_PRIMITIVE_GRANULARITY_NV 0x9543 +#define GL_MAX_MESH_WORK_GROUP_SIZE_NV 0x953B +#define GL_MAX_TASK_WORK_GROUP_SIZE_NV 0x953C +#define GL_MESH_WORK_GROUP_SIZE_NV 0x953E +#define GL_TASK_WORK_GROUP_SIZE_NV 0x953F +#define GL_MESH_VERTICES_OUT_NV 0x9579 +#define GL_MESH_PRIMITIVES_OUT_NV 0x957A +#define GL_MESH_OUTPUT_TYPE_NV 0x957B +#define GL_UNIFORM_BLOCK_REFERENCED_BY_MESH_SHADER_NV 0x959C +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TASK_SHADER_NV 0x959D +#define GL_REFERENCED_BY_MESH_SHADER_NV 0x95A0 +#define GL_REFERENCED_BY_TASK_SHADER_NV 0x95A1 +#define GL_MESH_SHADER_BIT_NV 0x00000040 +#define GL_TASK_SHADER_BIT_NV 0x00000080 +#define GL_MESH_SUBROUTINE_NV 0x957C +#define GL_TASK_SUBROUTINE_NV 0x957D +#define GL_MESH_SUBROUTINE_UNIFORM_NV 0x957E +#define GL_TASK_SUBROUTINE_UNIFORM_NV 0x957F +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_MESH_SHADER_NV 0x959E +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TASK_SHADER_NV 0x959F +typedef void (APIENTRYP PFNGLDRAWMESHTASKSNVPROC) (GLuint first, GLuint count); +typedef void (APIENTRYP PFNGLDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect); +typedef void (APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect, GLsizei drawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTCOUNTNVPROC) (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawMeshTasksNV (GLuint first, GLuint count); +GLAPI void APIENTRY glDrawMeshTasksIndirectNV (GLintptr indirect); +GLAPI void APIENTRY glMultiDrawMeshTasksIndirectNV (GLintptr indirect, GLsizei drawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawMeshTasksIndirectCountNV (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_NV_mesh_shader */ + +#ifndef GL_NV_multisample_coverage +#define GL_NV_multisample_coverage 1 +#endif /* GL_NV_multisample_coverage */ + +#ifndef GL_NV_multisample_filter_hint +#define GL_NV_multisample_filter_hint 1 +#define GL_MULTISAMPLE_FILTER_HINT_NV 0x8534 +#endif /* GL_NV_multisample_filter_hint */ + +#ifndef GL_NV_occlusion_query +#define GL_NV_occlusion_query 1 +#define GL_PIXEL_COUNTER_BITS_NV 0x8864 +#define GL_CURRENT_OCCLUSION_QUERY_ID_NV 0x8865 +#define GL_PIXEL_COUNT_NV 0x8866 +#define GL_PIXEL_COUNT_AVAILABLE_NV 0x8867 +typedef void (APIENTRYP PFNGLGENOCCLUSIONQUERIESNVPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEOCCLUSIONQUERIESNVPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISOCCLUSIONQUERYNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINOCCLUSIONQUERYNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLENDOCCLUSIONQUERYNVPROC) (void); +typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYIVNVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYUIVNVPROC) (GLuint id, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenOcclusionQueriesNV (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteOcclusionQueriesNV (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsOcclusionQueryNV (GLuint id); +GLAPI void APIENTRY glBeginOcclusionQueryNV (GLuint id); +GLAPI void APIENTRY glEndOcclusionQueryNV (void); +GLAPI void APIENTRY glGetOcclusionQueryivNV (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetOcclusionQueryuivNV (GLuint id, GLenum pname, GLuint *params); +#endif +#endif /* GL_NV_occlusion_query */ + +#ifndef GL_NV_packed_depth_stencil +#define GL_NV_packed_depth_stencil 1 +#define GL_DEPTH_STENCIL_NV 0x84F9 +#define GL_UNSIGNED_INT_24_8_NV 0x84FA +#endif /* GL_NV_packed_depth_stencil */ + +#ifndef GL_NV_parameter_buffer_object +#define GL_NV_parameter_buffer_object 1 +#define GL_MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV 0x8DA0 +#define GL_MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV 0x8DA1 +#define GL_VERTEX_PROGRAM_PARAMETER_BUFFER_NV 0x8DA2 +#define GL_GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV 0x8DA3 +#define GL_FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV 0x8DA4 +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSFVNVPROC) (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSIIVNVPROC) (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSIUIVNVPROC) (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramBufferParametersfvNV (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glProgramBufferParametersIivNV (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramBufferParametersIuivNV (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLuint *params); +#endif +#endif /* GL_NV_parameter_buffer_object */ + +#ifndef GL_NV_parameter_buffer_object2 +#define GL_NV_parameter_buffer_object2 1 +#endif /* GL_NV_parameter_buffer_object2 */ + +#ifndef GL_NV_path_rendering +#define GL_NV_path_rendering 1 +#define GL_PATH_FORMAT_SVG_NV 0x9070 +#define GL_PATH_FORMAT_PS_NV 0x9071 +#define GL_STANDARD_FONT_NAME_NV 0x9072 +#define GL_SYSTEM_FONT_NAME_NV 0x9073 +#define GL_FILE_NAME_NV 0x9074 +#define GL_PATH_STROKE_WIDTH_NV 0x9075 +#define GL_PATH_END_CAPS_NV 0x9076 +#define GL_PATH_INITIAL_END_CAP_NV 0x9077 +#define GL_PATH_TERMINAL_END_CAP_NV 0x9078 +#define GL_PATH_JOIN_STYLE_NV 0x9079 +#define GL_PATH_MITER_LIMIT_NV 0x907A +#define GL_PATH_DASH_CAPS_NV 0x907B +#define GL_PATH_INITIAL_DASH_CAP_NV 0x907C +#define GL_PATH_TERMINAL_DASH_CAP_NV 0x907D +#define GL_PATH_DASH_OFFSET_NV 0x907E +#define GL_PATH_CLIENT_LENGTH_NV 0x907F +#define GL_PATH_FILL_MODE_NV 0x9080 +#define GL_PATH_FILL_MASK_NV 0x9081 +#define GL_PATH_FILL_COVER_MODE_NV 0x9082 +#define GL_PATH_STROKE_COVER_MODE_NV 0x9083 +#define GL_PATH_STROKE_MASK_NV 0x9084 +#define GL_COUNT_UP_NV 0x9088 +#define GL_COUNT_DOWN_NV 0x9089 +#define GL_PATH_OBJECT_BOUNDING_BOX_NV 0x908A +#define GL_CONVEX_HULL_NV 0x908B +#define GL_BOUNDING_BOX_NV 0x908D +#define GL_TRANSLATE_X_NV 0x908E +#define GL_TRANSLATE_Y_NV 0x908F +#define GL_TRANSLATE_2D_NV 0x9090 +#define GL_TRANSLATE_3D_NV 0x9091 +#define GL_AFFINE_2D_NV 0x9092 +#define GL_AFFINE_3D_NV 0x9094 +#define GL_TRANSPOSE_AFFINE_2D_NV 0x9096 +#define GL_TRANSPOSE_AFFINE_3D_NV 0x9098 +#define GL_UTF8_NV 0x909A +#define GL_UTF16_NV 0x909B +#define GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV 0x909C +#define GL_PATH_COMMAND_COUNT_NV 0x909D +#define GL_PATH_COORD_COUNT_NV 0x909E +#define GL_PATH_DASH_ARRAY_COUNT_NV 0x909F +#define GL_PATH_COMPUTED_LENGTH_NV 0x90A0 +#define GL_PATH_FILL_BOUNDING_BOX_NV 0x90A1 +#define GL_PATH_STROKE_BOUNDING_BOX_NV 0x90A2 +#define GL_SQUARE_NV 0x90A3 +#define GL_ROUND_NV 0x90A4 +#define GL_TRIANGULAR_NV 0x90A5 +#define GL_BEVEL_NV 0x90A6 +#define GL_MITER_REVERT_NV 0x90A7 +#define GL_MITER_TRUNCATE_NV 0x90A8 +#define GL_SKIP_MISSING_GLYPH_NV 0x90A9 +#define GL_USE_MISSING_GLYPH_NV 0x90AA +#define GL_PATH_ERROR_POSITION_NV 0x90AB +#define GL_ACCUM_ADJACENT_PAIRS_NV 0x90AD +#define GL_ADJACENT_PAIRS_NV 0x90AE +#define GL_FIRST_TO_REST_NV 0x90AF +#define GL_PATH_GEN_MODE_NV 0x90B0 +#define GL_PATH_GEN_COEFF_NV 0x90B1 +#define GL_PATH_GEN_COMPONENTS_NV 0x90B3 +#define GL_PATH_STENCIL_FUNC_NV 0x90B7 +#define GL_PATH_STENCIL_REF_NV 0x90B8 +#define GL_PATH_STENCIL_VALUE_MASK_NV 0x90B9 +#define GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV 0x90BD +#define GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV 0x90BE +#define GL_PATH_COVER_DEPTH_FUNC_NV 0x90BF +#define GL_PATH_DASH_OFFSET_RESET_NV 0x90B4 +#define GL_MOVE_TO_RESETS_NV 0x90B5 +#define GL_MOVE_TO_CONTINUES_NV 0x90B6 +#define GL_CLOSE_PATH_NV 0x00 +#define GL_MOVE_TO_NV 0x02 +#define GL_RELATIVE_MOVE_TO_NV 0x03 +#define GL_LINE_TO_NV 0x04 +#define GL_RELATIVE_LINE_TO_NV 0x05 +#define GL_HORIZONTAL_LINE_TO_NV 0x06 +#define GL_RELATIVE_HORIZONTAL_LINE_TO_NV 0x07 +#define GL_VERTICAL_LINE_TO_NV 0x08 +#define GL_RELATIVE_VERTICAL_LINE_TO_NV 0x09 +#define GL_QUADRATIC_CURVE_TO_NV 0x0A +#define GL_RELATIVE_QUADRATIC_CURVE_TO_NV 0x0B +#define GL_CUBIC_CURVE_TO_NV 0x0C +#define GL_RELATIVE_CUBIC_CURVE_TO_NV 0x0D +#define GL_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0E +#define GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0F +#define GL_SMOOTH_CUBIC_CURVE_TO_NV 0x10 +#define GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV 0x11 +#define GL_SMALL_CCW_ARC_TO_NV 0x12 +#define GL_RELATIVE_SMALL_CCW_ARC_TO_NV 0x13 +#define GL_SMALL_CW_ARC_TO_NV 0x14 +#define GL_RELATIVE_SMALL_CW_ARC_TO_NV 0x15 +#define GL_LARGE_CCW_ARC_TO_NV 0x16 +#define GL_RELATIVE_LARGE_CCW_ARC_TO_NV 0x17 +#define GL_LARGE_CW_ARC_TO_NV 0x18 +#define GL_RELATIVE_LARGE_CW_ARC_TO_NV 0x19 +#define GL_RESTART_PATH_NV 0xF0 +#define GL_DUP_FIRST_CUBIC_CURVE_TO_NV 0xF2 +#define GL_DUP_LAST_CUBIC_CURVE_TO_NV 0xF4 +#define GL_RECT_NV 0xF6 +#define GL_CIRCULAR_CCW_ARC_TO_NV 0xF8 +#define GL_CIRCULAR_CW_ARC_TO_NV 0xFA +#define GL_CIRCULAR_TANGENT_ARC_TO_NV 0xFC +#define GL_ARC_TO_NV 0xFE +#define GL_RELATIVE_ARC_TO_NV 0xFF +#define GL_BOLD_BIT_NV 0x01 +#define GL_ITALIC_BIT_NV 0x02 +#define GL_GLYPH_WIDTH_BIT_NV 0x01 +#define GL_GLYPH_HEIGHT_BIT_NV 0x02 +#define GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV 0x04 +#define GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV 0x08 +#define GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV 0x10 +#define GL_GLYPH_VERTICAL_BEARING_X_BIT_NV 0x20 +#define GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV 0x40 +#define GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV 0x80 +#define GL_GLYPH_HAS_KERNING_BIT_NV 0x100 +#define GL_FONT_X_MIN_BOUNDS_BIT_NV 0x00010000 +#define GL_FONT_Y_MIN_BOUNDS_BIT_NV 0x00020000 +#define GL_FONT_X_MAX_BOUNDS_BIT_NV 0x00040000 +#define GL_FONT_Y_MAX_BOUNDS_BIT_NV 0x00080000 +#define GL_FONT_UNITS_PER_EM_BIT_NV 0x00100000 +#define GL_FONT_ASCENDER_BIT_NV 0x00200000 +#define GL_FONT_DESCENDER_BIT_NV 0x00400000 +#define GL_FONT_HEIGHT_BIT_NV 0x00800000 +#define GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV 0x01000000 +#define GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV 0x02000000 +#define GL_FONT_UNDERLINE_POSITION_BIT_NV 0x04000000 +#define GL_FONT_UNDERLINE_THICKNESS_BIT_NV 0x08000000 +#define GL_FONT_HAS_KERNING_BIT_NV 0x10000000 +#define GL_ROUNDED_RECT_NV 0xE8 +#define GL_RELATIVE_ROUNDED_RECT_NV 0xE9 +#define GL_ROUNDED_RECT2_NV 0xEA +#define GL_RELATIVE_ROUNDED_RECT2_NV 0xEB +#define GL_ROUNDED_RECT4_NV 0xEC +#define GL_RELATIVE_ROUNDED_RECT4_NV 0xED +#define GL_ROUNDED_RECT8_NV 0xEE +#define GL_RELATIVE_ROUNDED_RECT8_NV 0xEF +#define GL_RELATIVE_RECT_NV 0xF7 +#define GL_FONT_GLYPHS_AVAILABLE_NV 0x9368 +#define GL_FONT_TARGET_UNAVAILABLE_NV 0x9369 +#define GL_FONT_UNAVAILABLE_NV 0x936A +#define GL_FONT_UNINTELLIGIBLE_NV 0x936B +#define GL_CONIC_CURVE_TO_NV 0x1A +#define GL_RELATIVE_CONIC_CURVE_TO_NV 0x1B +#define GL_FONT_NUM_GLYPH_INDICES_BIT_NV 0x20000000 +#define GL_STANDARD_FONT_FORMAT_NV 0x936C +#define GL_2_BYTES_NV 0x1407 +#define GL_3_BYTES_NV 0x1408 +#define GL_4_BYTES_NV 0x1409 +#define GL_EYE_LINEAR_NV 0x2400 +#define GL_OBJECT_LINEAR_NV 0x2401 +#define GL_CONSTANT_NV 0x8576 +#define GL_PATH_FOG_GEN_MODE_NV 0x90AC +#define GL_PRIMARY_COLOR_NV 0x852C +#define GL_SECONDARY_COLOR_NV 0x852D +#define GL_PATH_GEN_COLOR_FORMAT_NV 0x90B2 +#define GL_PATH_PROJECTION_NV 0x1701 +#define GL_PATH_MODELVIEW_NV 0x1700 +#define GL_PATH_MODELVIEW_STACK_DEPTH_NV 0x0BA3 +#define GL_PATH_MODELVIEW_MATRIX_NV 0x0BA6 +#define GL_PATH_MAX_MODELVIEW_STACK_DEPTH_NV 0x0D36 +#define GL_PATH_TRANSPOSE_MODELVIEW_MATRIX_NV 0x84E3 +#define GL_PATH_PROJECTION_STACK_DEPTH_NV 0x0BA4 +#define GL_PATH_PROJECTION_MATRIX_NV 0x0BA7 +#define GL_PATH_MAX_PROJECTION_STACK_DEPTH_NV 0x0D38 +#define GL_PATH_TRANSPOSE_PROJECTION_MATRIX_NV 0x84E4 +#define GL_FRAGMENT_INPUT_NV 0x936D +typedef GLuint (APIENTRYP PFNGLGENPATHSNVPROC) (GLsizei range); +typedef void (APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); +typedef GLboolean (APIENTRYP PFNGLISPATHNVPROC) (GLuint path); +typedef void (APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); +typedef void (APIENTRYP PFNGLPATHGLYPHSNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (APIENTRYP PFNGLPATHGLYPHRANGENVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (APIENTRYP PFNGLWEIGHTPATHSNVPROC) (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +typedef void (APIENTRYP PFNGLCOPYPATHNVPROC) (GLuint resultPath, GLuint srcPath); +typedef void (APIENTRYP PFNGLINTERPOLATEPATHSNVPROC) (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +typedef void (APIENTRYP PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, const GLint *value); +typedef void (APIENTRYP PFNGLPATHPARAMETERINVPROC) (GLuint path, GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, const GLfloat *value); +typedef void (APIENTRYP PFNGLPATHPARAMETERFNVPROC) (GLuint path, GLenum pname, GLfloat value); +typedef void (APIENTRYP PFNGLPATHDASHARRAYNVPROC) (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +typedef void (APIENTRYP PFNGLPATHSTENCILFUNCNVPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (APIENTRYP PFNGLPATHSTENCILDEPTHOFFSETNVPROC) (GLfloat factor, GLfloat units); +typedef void (APIENTRYP PFNGLSTENCILFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask); +typedef void (APIENTRYP PFNGLSTENCILSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask); +typedef void (APIENTRYP PFNGLSTENCILFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLSTENCILSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLPATHCOVERDEPTHFUNCNVPROC) (GLenum func); +typedef void (APIENTRYP PFNGLCOVERFILLPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (APIENTRYP PFNGLCOVERSTROKEPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (APIENTRYP PFNGLCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLGETPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, GLfloat *value); +typedef void (APIENTRYP PFNGLGETPATHCOMMANDSNVPROC) (GLuint path, GLubyte *commands); +typedef void (APIENTRYP PFNGLGETPATHCOORDSNVPROC) (GLuint path, GLfloat *coords); +typedef void (APIENTRYP PFNGLGETPATHDASHARRAYNVPROC) (GLuint path, GLfloat *dashArray); +typedef void (APIENTRYP PFNGLGETPATHMETRICSNVPROC) (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +typedef void (APIENTRYP PFNGLGETPATHMETRICRANGENVPROC) (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +typedef void (APIENTRYP PFNGLGETPATHSPACINGNVPROC) (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +typedef GLboolean (APIENTRYP PFNGLISPOINTINFILLPATHNVPROC) (GLuint path, GLuint mask, GLfloat x, GLfloat y); +typedef GLboolean (APIENTRYP PFNGLISPOINTINSTROKEPATHNVPROC) (GLuint path, GLfloat x, GLfloat y); +typedef GLfloat (APIENTRYP PFNGLGETPATHLENGTHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments); +typedef GLboolean (APIENTRYP PFNGLPOINTALONGPATHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +typedef void (APIENTRYP PFNGLMATRIXLOAD3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOAD3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULT3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULT3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef GLenum (APIENTRYP PFNGLPATHGLYPHINDEXRANGENVPROC) (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +typedef GLenum (APIENTRYP PFNGLPATHGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef GLenum (APIENTRYP PFNGLPATHMEMORYGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (APIENTRYP PFNGLPROGRAMPATHFRAGMENTINPUTGENNVPROC) (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCEFVNVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +typedef void (APIENTRYP PFNGLPATHCOLORGENNVPROC) (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLPATHTEXGENNVPROC) (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLPATHFOGGENNVPROC) (GLenum genMode); +typedef void (APIENTRYP PFNGLGETPATHCOLORGENIVNVPROC) (GLenum color, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHCOLORGENFVNVPROC) (GLenum color, GLenum pname, GLfloat *value); +typedef void (APIENTRYP PFNGLGETPATHTEXGENIVNVPROC) (GLenum texCoordSet, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHTEXGENFVNVPROC) (GLenum texCoordSet, GLenum pname, GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glGenPathsNV (GLsizei range); +GLAPI void APIENTRY glDeletePathsNV (GLuint path, GLsizei range); +GLAPI GLboolean APIENTRY glIsPathNV (GLuint path); +GLAPI void APIENTRY glPathCommandsNV (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathCoordsNV (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathSubCommandsNV (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathSubCoordsNV (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathStringNV (GLuint path, GLenum format, GLsizei length, const void *pathString); +GLAPI void APIENTRY glPathGlyphsNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI void APIENTRY glPathGlyphRangeNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI void APIENTRY glWeightPathsNV (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +GLAPI void APIENTRY glCopyPathNV (GLuint resultPath, GLuint srcPath); +GLAPI void APIENTRY glInterpolatePathsNV (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +GLAPI void APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glPathParameterivNV (GLuint path, GLenum pname, const GLint *value); +GLAPI void APIENTRY glPathParameteriNV (GLuint path, GLenum pname, GLint value); +GLAPI void APIENTRY glPathParameterfvNV (GLuint path, GLenum pname, const GLfloat *value); +GLAPI void APIENTRY glPathParameterfNV (GLuint path, GLenum pname, GLfloat value); +GLAPI void APIENTRY glPathDashArrayNV (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +GLAPI void APIENTRY glPathStencilFuncNV (GLenum func, GLint ref, GLuint mask); +GLAPI void APIENTRY glPathStencilDepthOffsetNV (GLfloat factor, GLfloat units); +GLAPI void APIENTRY glStencilFillPathNV (GLuint path, GLenum fillMode, GLuint mask); +GLAPI void APIENTRY glStencilStrokePathNV (GLuint path, GLint reference, GLuint mask); +GLAPI void APIENTRY glStencilFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glStencilStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glPathCoverDepthFuncNV (GLenum func); +GLAPI void APIENTRY glCoverFillPathNV (GLuint path, GLenum coverMode); +GLAPI void APIENTRY glCoverStrokePathNV (GLuint path, GLenum coverMode); +GLAPI void APIENTRY glCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glGetPathParameterivNV (GLuint path, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathParameterfvNV (GLuint path, GLenum pname, GLfloat *value); +GLAPI void APIENTRY glGetPathCommandsNV (GLuint path, GLubyte *commands); +GLAPI void APIENTRY glGetPathCoordsNV (GLuint path, GLfloat *coords); +GLAPI void APIENTRY glGetPathDashArrayNV (GLuint path, GLfloat *dashArray); +GLAPI void APIENTRY glGetPathMetricsNV (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +GLAPI void APIENTRY glGetPathMetricRangeNV (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +GLAPI void APIENTRY glGetPathSpacingNV (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +GLAPI GLboolean APIENTRY glIsPointInFillPathNV (GLuint path, GLuint mask, GLfloat x, GLfloat y); +GLAPI GLboolean APIENTRY glIsPointInStrokePathNV (GLuint path, GLfloat x, GLfloat y); +GLAPI GLfloat APIENTRY glGetPathLengthNV (GLuint path, GLsizei startSegment, GLsizei numSegments); +GLAPI GLboolean APIENTRY glPointAlongPathNV (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +GLAPI void APIENTRY glMatrixLoad3x2fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoad3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoadTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMult3x2fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMult3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glStencilThenCoverFillPathNV (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +GLAPI void APIENTRY glStencilThenCoverStrokePathNV (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +GLAPI void APIENTRY glStencilThenCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glStencilThenCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI GLenum APIENTRY glPathGlyphIndexRangeNV (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +GLAPI GLenum APIENTRY glPathGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI GLenum APIENTRY glPathMemoryGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI void APIENTRY glProgramPathFragmentInputGenNV (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +GLAPI void APIENTRY glGetProgramResourcefvNV (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +GLAPI void APIENTRY glPathColorGenNV (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat *coeffs); +GLAPI void APIENTRY glPathTexGenNV (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat *coeffs); +GLAPI void APIENTRY glPathFogGenNV (GLenum genMode); +GLAPI void APIENTRY glGetPathColorGenivNV (GLenum color, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathColorGenfvNV (GLenum color, GLenum pname, GLfloat *value); +GLAPI void APIENTRY glGetPathTexGenivNV (GLenum texCoordSet, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathTexGenfvNV (GLenum texCoordSet, GLenum pname, GLfloat *value); +#endif +#endif /* GL_NV_path_rendering */ + +#ifndef GL_NV_path_rendering_shared_edge +#define GL_NV_path_rendering_shared_edge 1 +#define GL_SHARED_EDGE_NV 0xC0 +#endif /* GL_NV_path_rendering_shared_edge */ + +#ifndef GL_NV_pixel_data_range +#define GL_NV_pixel_data_range 1 +#define GL_WRITE_PIXEL_DATA_RANGE_NV 0x8878 +#define GL_READ_PIXEL_DATA_RANGE_NV 0x8879 +#define GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV 0x887A +#define GL_READ_PIXEL_DATA_RANGE_LENGTH_NV 0x887B +#define GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV 0x887C +#define GL_READ_PIXEL_DATA_RANGE_POINTER_NV 0x887D +typedef void (APIENTRYP PFNGLPIXELDATARANGENVPROC) (GLenum target, GLsizei length, const void *pointer); +typedef void (APIENTRYP PFNGLFLUSHPIXELDATARANGENVPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelDataRangeNV (GLenum target, GLsizei length, const void *pointer); +GLAPI void APIENTRY glFlushPixelDataRangeNV (GLenum target); +#endif +#endif /* GL_NV_pixel_data_range */ + +#ifndef GL_NV_point_sprite +#define GL_NV_point_sprite 1 +#define GL_POINT_SPRITE_NV 0x8861 +#define GL_COORD_REPLACE_NV 0x8862 +#define GL_POINT_SPRITE_R_MODE_NV 0x8863 +typedef void (APIENTRYP PFNGLPOINTPARAMETERINVPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIVNVPROC) (GLenum pname, const GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameteriNV (GLenum pname, GLint param); +GLAPI void APIENTRY glPointParameterivNV (GLenum pname, const GLint *params); +#endif +#endif /* GL_NV_point_sprite */ + +#ifndef GL_NV_present_video +#define GL_NV_present_video 1 +#define GL_FRAME_NV 0x8E26 +#define GL_FIELDS_NV 0x8E27 +#define GL_CURRENT_TIME_NV 0x8E28 +#define GL_NUM_FILL_STREAMS_NV 0x8E29 +#define GL_PRESENT_TIME_NV 0x8E2A +#define GL_PRESENT_DURATION_NV 0x8E2B +typedef void (APIENTRYP PFNGLPRESENTFRAMEKEYEDNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1); +typedef void (APIENTRYP PFNGLPRESENTFRAMEDUALFILLNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLenum target1, GLuint fill1, GLenum target2, GLuint fill2, GLenum target3, GLuint fill3); +typedef void (APIENTRYP PFNGLGETVIDEOIVNVPROC) (GLuint video_slot, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOUIVNVPROC) (GLuint video_slot, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLGETVIDEOI64VNVPROC) (GLuint video_slot, GLenum pname, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETVIDEOUI64VNVPROC) (GLuint video_slot, GLenum pname, GLuint64EXT *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPresentFrameKeyedNV (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1); +GLAPI void APIENTRY glPresentFrameDualFillNV (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLenum target1, GLuint fill1, GLenum target2, GLuint fill2, GLenum target3, GLuint fill3); +GLAPI void APIENTRY glGetVideoivNV (GLuint video_slot, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideouivNV (GLuint video_slot, GLenum pname, GLuint *params); +GLAPI void APIENTRY glGetVideoi64vNV (GLuint video_slot, GLenum pname, GLint64EXT *params); +GLAPI void APIENTRY glGetVideoui64vNV (GLuint video_slot, GLenum pname, GLuint64EXT *params); +#endif +#endif /* GL_NV_present_video */ + +#ifndef GL_NV_primitive_restart +#define GL_NV_primitive_restart 1 +#define GL_PRIMITIVE_RESTART_NV 0x8558 +#define GL_PRIMITIVE_RESTART_INDEX_NV 0x8559 +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTNVPROC) (void); +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXNVPROC) (GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPrimitiveRestartNV (void); +GLAPI void APIENTRY glPrimitiveRestartIndexNV (GLuint index); +#endif +#endif /* GL_NV_primitive_restart */ + +#ifndef GL_NV_primitive_shading_rate +#define GL_NV_primitive_shading_rate 1 +#define GL_SHADING_RATE_IMAGE_PER_PRIMITIVE_NV 0x95B1 +#define GL_SHADING_RATE_IMAGE_PALETTE_COUNT_NV 0x95B2 +#endif /* GL_NV_primitive_shading_rate */ + +#ifndef GL_NV_query_resource +#define GL_NV_query_resource 1 +#define GL_QUERY_RESOURCE_TYPE_VIDMEM_ALLOC_NV 0x9540 +#define GL_QUERY_RESOURCE_MEMTYPE_VIDMEM_NV 0x9542 +#define GL_QUERY_RESOURCE_SYS_RESERVED_NV 0x9544 +#define GL_QUERY_RESOURCE_TEXTURE_NV 0x9545 +#define GL_QUERY_RESOURCE_RENDERBUFFER_NV 0x9546 +#define GL_QUERY_RESOURCE_BUFFEROBJECT_NV 0x9547 +typedef GLint (APIENTRYP PFNGLQUERYRESOURCENVPROC) (GLenum queryType, GLint tagId, GLuint count, GLint *buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLint APIENTRY glQueryResourceNV (GLenum queryType, GLint tagId, GLuint count, GLint *buffer); +#endif +#endif /* GL_NV_query_resource */ + +#ifndef GL_NV_query_resource_tag +#define GL_NV_query_resource_tag 1 +typedef void (APIENTRYP PFNGLGENQUERYRESOURCETAGNVPROC) (GLsizei n, GLint *tagIds); +typedef void (APIENTRYP PFNGLDELETEQUERYRESOURCETAGNVPROC) (GLsizei n, const GLint *tagIds); +typedef void (APIENTRYP PFNGLQUERYRESOURCETAGNVPROC) (GLint tagId, const GLchar *tagString); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueryResourceTagNV (GLsizei n, GLint *tagIds); +GLAPI void APIENTRY glDeleteQueryResourceTagNV (GLsizei n, const GLint *tagIds); +GLAPI void APIENTRY glQueryResourceTagNV (GLint tagId, const GLchar *tagString); +#endif +#endif /* GL_NV_query_resource_tag */ + +#ifndef GL_NV_register_combiners +#define GL_NV_register_combiners 1 +#define GL_REGISTER_COMBINERS_NV 0x8522 +#define GL_VARIABLE_A_NV 0x8523 +#define GL_VARIABLE_B_NV 0x8524 +#define GL_VARIABLE_C_NV 0x8525 +#define GL_VARIABLE_D_NV 0x8526 +#define GL_VARIABLE_E_NV 0x8527 +#define GL_VARIABLE_F_NV 0x8528 +#define GL_VARIABLE_G_NV 0x8529 +#define GL_CONSTANT_COLOR0_NV 0x852A +#define GL_CONSTANT_COLOR1_NV 0x852B +#define GL_SPARE0_NV 0x852E +#define GL_SPARE1_NV 0x852F +#define GL_DISCARD_NV 0x8530 +#define GL_E_TIMES_F_NV 0x8531 +#define GL_SPARE0_PLUS_SECONDARY_COLOR_NV 0x8532 +#define GL_UNSIGNED_IDENTITY_NV 0x8536 +#define GL_UNSIGNED_INVERT_NV 0x8537 +#define GL_EXPAND_NORMAL_NV 0x8538 +#define GL_EXPAND_NEGATE_NV 0x8539 +#define GL_HALF_BIAS_NORMAL_NV 0x853A +#define GL_HALF_BIAS_NEGATE_NV 0x853B +#define GL_SIGNED_IDENTITY_NV 0x853C +#define GL_SIGNED_NEGATE_NV 0x853D +#define GL_SCALE_BY_TWO_NV 0x853E +#define GL_SCALE_BY_FOUR_NV 0x853F +#define GL_SCALE_BY_ONE_HALF_NV 0x8540 +#define GL_BIAS_BY_NEGATIVE_ONE_HALF_NV 0x8541 +#define GL_COMBINER_INPUT_NV 0x8542 +#define GL_COMBINER_MAPPING_NV 0x8543 +#define GL_COMBINER_COMPONENT_USAGE_NV 0x8544 +#define GL_COMBINER_AB_DOT_PRODUCT_NV 0x8545 +#define GL_COMBINER_CD_DOT_PRODUCT_NV 0x8546 +#define GL_COMBINER_MUX_SUM_NV 0x8547 +#define GL_COMBINER_SCALE_NV 0x8548 +#define GL_COMBINER_BIAS_NV 0x8549 +#define GL_COMBINER_AB_OUTPUT_NV 0x854A +#define GL_COMBINER_CD_OUTPUT_NV 0x854B +#define GL_COMBINER_SUM_OUTPUT_NV 0x854C +#define GL_MAX_GENERAL_COMBINERS_NV 0x854D +#define GL_NUM_GENERAL_COMBINERS_NV 0x854E +#define GL_COLOR_SUM_CLAMP_NV 0x854F +#define GL_COMBINER0_NV 0x8550 +#define GL_COMBINER1_NV 0x8551 +#define GL_COMBINER2_NV 0x8552 +#define GL_COMBINER3_NV 0x8553 +#define GL_COMBINER4_NV 0x8554 +#define GL_COMBINER5_NV 0x8555 +#define GL_COMBINER6_NV 0x8556 +#define GL_COMBINER7_NV 0x8557 +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFVNVPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFNVPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERIVNVPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERINVPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLCOMBINERINPUTNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +typedef void (APIENTRYP PFNGLCOMBINEROUTPUTNVPROC) (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); +typedef void (APIENTRYP PFNGLFINALCOMBINERINPUTNVPROC) (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC) (GLenum variable, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC) (GLenum variable, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCombinerParameterfvNV (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glCombinerParameterfNV (GLenum pname, GLfloat param); +GLAPI void APIENTRY glCombinerParameterivNV (GLenum pname, const GLint *params); +GLAPI void APIENTRY glCombinerParameteriNV (GLenum pname, GLint param); +GLAPI void APIENTRY glCombinerInputNV (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +GLAPI void APIENTRY glCombinerOutputNV (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); +GLAPI void APIENTRY glFinalCombinerInputNV (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +GLAPI void APIENTRY glGetCombinerInputParameterfvNV (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetCombinerInputParameterivNV (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetCombinerOutputParameterfvNV (GLenum stage, GLenum portion, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetCombinerOutputParameterivNV (GLenum stage, GLenum portion, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetFinalCombinerInputParameterfvNV (GLenum variable, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFinalCombinerInputParameterivNV (GLenum variable, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_register_combiners */ + +#ifndef GL_NV_register_combiners2 +#define GL_NV_register_combiners2 1 +#define GL_PER_STAGE_CONSTANTS_NV 0x8535 +typedef void (APIENTRYP PFNGLCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCombinerStageParameterfvNV (GLenum stage, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetCombinerStageParameterfvNV (GLenum stage, GLenum pname, GLfloat *params); +#endif +#endif /* GL_NV_register_combiners2 */ + +#ifndef GL_NV_representative_fragment_test +#define GL_NV_representative_fragment_test 1 +#define GL_REPRESENTATIVE_FRAGMENT_TEST_NV 0x937F +#endif /* GL_NV_representative_fragment_test */ + +#ifndef GL_NV_robustness_video_memory_purge +#define GL_NV_robustness_video_memory_purge 1 +#define GL_PURGED_CONTEXT_RESET_NV 0x92BB +#endif /* GL_NV_robustness_video_memory_purge */ + +#ifndef GL_NV_sample_locations +#define GL_NV_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_NV 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_NV 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_NV 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_NV 0x9340 +#define GL_SAMPLE_LOCATION_NV 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_NV 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_NV 0x9343 +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLRESOLVEDEPTHVALUESNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSampleLocationsfvNV (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glNamedFramebufferSampleLocationsfvNV (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glResolveDepthValuesNV (void); +#endif +#endif /* GL_NV_sample_locations */ + +#ifndef GL_NV_sample_mask_override_coverage +#define GL_NV_sample_mask_override_coverage 1 +#endif /* GL_NV_sample_mask_override_coverage */ + +#ifndef GL_NV_scissor_exclusive +#define GL_NV_scissor_exclusive 1 +#define GL_SCISSOR_TEST_EXCLUSIVE_NV 0x9555 +#define GL_SCISSOR_BOX_EXCLUSIVE_NV 0x9556 +typedef void (APIENTRYP PFNGLSCISSOREXCLUSIVENVPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLSCISSOREXCLUSIVEARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glScissorExclusiveNV (GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glScissorExclusiveArrayvNV (GLuint first, GLsizei count, const GLint *v); +#endif +#endif /* GL_NV_scissor_exclusive */ + +#ifndef GL_NV_shader_atomic_counters +#define GL_NV_shader_atomic_counters 1 +#endif /* GL_NV_shader_atomic_counters */ + +#ifndef GL_NV_shader_atomic_float +#define GL_NV_shader_atomic_float 1 +#endif /* GL_NV_shader_atomic_float */ + +#ifndef GL_NV_shader_atomic_float64 +#define GL_NV_shader_atomic_float64 1 +#endif /* GL_NV_shader_atomic_float64 */ + +#ifndef GL_NV_shader_atomic_fp16_vector +#define GL_NV_shader_atomic_fp16_vector 1 +#endif /* GL_NV_shader_atomic_fp16_vector */ + +#ifndef GL_NV_shader_atomic_int64 +#define GL_NV_shader_atomic_int64 1 +#endif /* GL_NV_shader_atomic_int64 */ + +#ifndef GL_NV_shader_buffer_load +#define GL_NV_shader_buffer_load 1 +#define GL_BUFFER_GPU_ADDRESS_NV 0x8F1D +#define GL_GPU_ADDRESS_NV 0x8F34 +#define GL_MAX_SHADER_BUFFER_ADDRESS_NV 0x8F35 +typedef void (APIENTRYP PFNGLMAKEBUFFERRESIDENTNVPROC) (GLenum target, GLenum access); +typedef void (APIENTRYP PFNGLMAKEBUFFERNONRESIDENTNVPROC) (GLenum target); +typedef GLboolean (APIENTRYP PFNGLISBUFFERRESIDENTNVPROC) (GLenum target); +typedef void (APIENTRYP PFNGLMAKENAMEDBUFFERRESIDENTNVPROC) (GLuint buffer, GLenum access); +typedef void (APIENTRYP PFNGLMAKENAMEDBUFFERNONRESIDENTNVPROC) (GLuint buffer); +typedef GLboolean (APIENTRYP PFNGLISNAMEDBUFFERRESIDENTNVPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERUI64VNVPROC) (GLenum target, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERUI64VNVPROC) (GLuint buffer, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLGETINTEGERUI64VNVPROC) (GLenum value, GLuint64EXT *result); +typedef void (APIENTRYP PFNGLUNIFORMUI64NVPROC) (GLint location, GLuint64EXT value); +typedef void (APIENTRYP PFNGLUNIFORMUI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMUI64NVPROC) (GLuint program, GLint location, GLuint64EXT value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMakeBufferResidentNV (GLenum target, GLenum access); +GLAPI void APIENTRY glMakeBufferNonResidentNV (GLenum target); +GLAPI GLboolean APIENTRY glIsBufferResidentNV (GLenum target); +GLAPI void APIENTRY glMakeNamedBufferResidentNV (GLuint buffer, GLenum access); +GLAPI void APIENTRY glMakeNamedBufferNonResidentNV (GLuint buffer); +GLAPI GLboolean APIENTRY glIsNamedBufferResidentNV (GLuint buffer); +GLAPI void APIENTRY glGetBufferParameterui64vNV (GLenum target, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glGetNamedBufferParameterui64vNV (GLuint buffer, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glGetIntegerui64vNV (GLenum value, GLuint64EXT *result); +GLAPI void APIENTRY glUniformui64NV (GLint location, GLuint64EXT value); +GLAPI void APIENTRY glUniformui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniformui64NV (GLuint program, GLint location, GLuint64EXT value); +GLAPI void APIENTRY glProgramUniformui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif +#endif /* GL_NV_shader_buffer_load */ + +#ifndef GL_NV_shader_buffer_store +#define GL_NV_shader_buffer_store 1 +#define GL_SHADER_GLOBAL_ACCESS_BARRIER_BIT_NV 0x00000010 +#endif /* GL_NV_shader_buffer_store */ + +#ifndef GL_NV_shader_storage_buffer_object +#define GL_NV_shader_storage_buffer_object 1 +#endif /* GL_NV_shader_storage_buffer_object */ + +#ifndef GL_NV_shader_subgroup_partitioned +#define GL_NV_shader_subgroup_partitioned 1 +#define GL_SUBGROUP_FEATURE_PARTITIONED_BIT_NV 0x00000100 +#endif /* GL_NV_shader_subgroup_partitioned */ + +#ifndef GL_NV_shader_texture_footprint +#define GL_NV_shader_texture_footprint 1 +#endif /* GL_NV_shader_texture_footprint */ + +#ifndef GL_NV_shader_thread_group +#define GL_NV_shader_thread_group 1 +#define GL_WARP_SIZE_NV 0x9339 +#define GL_WARPS_PER_SM_NV 0x933A +#define GL_SM_COUNT_NV 0x933B +#endif /* GL_NV_shader_thread_group */ + +#ifndef GL_NV_shader_thread_shuffle +#define GL_NV_shader_thread_shuffle 1 +#endif /* GL_NV_shader_thread_shuffle */ + +#ifndef GL_NV_shading_rate_image +#define GL_NV_shading_rate_image 1 +#define GL_SHADING_RATE_IMAGE_NV 0x9563 +#define GL_SHADING_RATE_NO_INVOCATIONS_NV 0x9564 +#define GL_SHADING_RATE_1_INVOCATION_PER_PIXEL_NV 0x9565 +#define GL_SHADING_RATE_1_INVOCATION_PER_1X2_PIXELS_NV 0x9566 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X1_PIXELS_NV 0x9567 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X2_PIXELS_NV 0x9568 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X4_PIXELS_NV 0x9569 +#define GL_SHADING_RATE_1_INVOCATION_PER_4X2_PIXELS_NV 0x956A +#define GL_SHADING_RATE_1_INVOCATION_PER_4X4_PIXELS_NV 0x956B +#define GL_SHADING_RATE_2_INVOCATIONS_PER_PIXEL_NV 0x956C +#define GL_SHADING_RATE_4_INVOCATIONS_PER_PIXEL_NV 0x956D +#define GL_SHADING_RATE_8_INVOCATIONS_PER_PIXEL_NV 0x956E +#define GL_SHADING_RATE_16_INVOCATIONS_PER_PIXEL_NV 0x956F +#define GL_SHADING_RATE_IMAGE_BINDING_NV 0x955B +#define GL_SHADING_RATE_IMAGE_TEXEL_WIDTH_NV 0x955C +#define GL_SHADING_RATE_IMAGE_TEXEL_HEIGHT_NV 0x955D +#define GL_SHADING_RATE_IMAGE_PALETTE_SIZE_NV 0x955E +#define GL_MAX_COARSE_FRAGMENT_SAMPLES_NV 0x955F +#define GL_SHADING_RATE_SAMPLE_ORDER_DEFAULT_NV 0x95AE +#define GL_SHADING_RATE_SAMPLE_ORDER_PIXEL_MAJOR_NV 0x95AF +#define GL_SHADING_RATE_SAMPLE_ORDER_SAMPLE_MAJOR_NV 0x95B0 +typedef void (APIENTRYP PFNGLBINDSHADINGRATEIMAGENVPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLGETSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint entry, GLenum *rate); +typedef void (APIENTRYP PFNGLGETSHADINGRATESAMPLELOCATIONIVNVPROC) (GLenum rate, GLuint samples, GLuint index, GLint *location); +typedef void (APIENTRYP PFNGLSHADINGRATEIMAGEBARRIERNVPROC) (GLboolean synchronize); +typedef void (APIENTRYP PFNGLSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +typedef void (APIENTRYP PFNGLSHADINGRATESAMPLEORDERNVPROC) (GLenum order); +typedef void (APIENTRYP PFNGLSHADINGRATESAMPLEORDERCUSTOMNVPROC) (GLenum rate, GLuint samples, const GLint *locations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindShadingRateImageNV (GLuint texture); +GLAPI void APIENTRY glGetShadingRateImagePaletteNV (GLuint viewport, GLuint entry, GLenum *rate); +GLAPI void APIENTRY glGetShadingRateSampleLocationivNV (GLenum rate, GLuint samples, GLuint index, GLint *location); +GLAPI void APIENTRY glShadingRateImageBarrierNV (GLboolean synchronize); +GLAPI void APIENTRY glShadingRateImagePaletteNV (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +GLAPI void APIENTRY glShadingRateSampleOrderNV (GLenum order); +GLAPI void APIENTRY glShadingRateSampleOrderCustomNV (GLenum rate, GLuint samples, const GLint *locations); +#endif +#endif /* GL_NV_shading_rate_image */ + +#ifndef GL_NV_stereo_view_rendering +#define GL_NV_stereo_view_rendering 1 +#endif /* GL_NV_stereo_view_rendering */ + +#ifndef GL_NV_tessellation_program5 +#define GL_NV_tessellation_program5 1 +#define GL_MAX_PROGRAM_PATCH_ATTRIBS_NV 0x86D8 +#define GL_TESS_CONTROL_PROGRAM_NV 0x891E +#define GL_TESS_EVALUATION_PROGRAM_NV 0x891F +#define GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV 0x8C74 +#define GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV 0x8C75 +#endif /* GL_NV_tessellation_program5 */ + +#ifndef GL_NV_texgen_emboss +#define GL_NV_texgen_emboss 1 +#define GL_EMBOSS_LIGHT_NV 0x855D +#define GL_EMBOSS_CONSTANT_NV 0x855E +#define GL_EMBOSS_MAP_NV 0x855F +#endif /* GL_NV_texgen_emboss */ + +#ifndef GL_NV_texgen_reflection +#define GL_NV_texgen_reflection 1 +#define GL_NORMAL_MAP_NV 0x8511 +#define GL_REFLECTION_MAP_NV 0x8512 +#endif /* GL_NV_texgen_reflection */ + +#ifndef GL_NV_texture_barrier +#define GL_NV_texture_barrier 1 +typedef void (APIENTRYP PFNGLTEXTUREBARRIERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureBarrierNV (void); +#endif +#endif /* GL_NV_texture_barrier */ + +#ifndef GL_NV_texture_compression_vtc +#define GL_NV_texture_compression_vtc 1 +#endif /* GL_NV_texture_compression_vtc */ + +#ifndef GL_NV_texture_env_combine4 +#define GL_NV_texture_env_combine4 1 +#define GL_COMBINE4_NV 0x8503 +#define GL_SOURCE3_RGB_NV 0x8583 +#define GL_SOURCE3_ALPHA_NV 0x858B +#define GL_OPERAND3_RGB_NV 0x8593 +#define GL_OPERAND3_ALPHA_NV 0x859B +#endif /* GL_NV_texture_env_combine4 */ + +#ifndef GL_NV_texture_expand_normal +#define GL_NV_texture_expand_normal 1 +#define GL_TEXTURE_UNSIGNED_REMAP_MODE_NV 0x888F +#endif /* GL_NV_texture_expand_normal */ + +#ifndef GL_NV_texture_multisample +#define GL_NV_texture_multisample 1 +#define GL_TEXTURE_COVERAGE_SAMPLES_NV 0x9045 +#define GL_TEXTURE_COLOR_SAMPLES_NV 0x9046 +typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DMULTISAMPLENVPROC) (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DMULTISAMPLENVPROC) (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DMULTISAMPLECOVERAGENVPROC) (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DMULTISAMPLECOVERAGENVPROC) (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage2DMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTexImage3DMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage2DMultisampleNV (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage3DMultisampleNV (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage2DMultisampleCoverageNV (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage3DMultisampleCoverageNV (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +#endif +#endif /* GL_NV_texture_multisample */ + +#ifndef GL_NV_texture_rectangle +#define GL_NV_texture_rectangle 1 +#define GL_TEXTURE_RECTANGLE_NV 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE_NV 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE_NV 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE_NV 0x84F8 +#endif /* GL_NV_texture_rectangle */ + +#ifndef GL_NV_texture_rectangle_compressed +#define GL_NV_texture_rectangle_compressed 1 +#endif /* GL_NV_texture_rectangle_compressed */ + +#ifndef GL_NV_texture_shader +#define GL_NV_texture_shader 1 +#define GL_OFFSET_TEXTURE_RECTANGLE_NV 0x864C +#define GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV 0x864D +#define GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV 0x864E +#define GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV 0x86D9 +#define GL_UNSIGNED_INT_S8_S8_8_8_NV 0x86DA +#define GL_UNSIGNED_INT_8_8_S8_S8_REV_NV 0x86DB +#define GL_DSDT_MAG_INTENSITY_NV 0x86DC +#define GL_SHADER_CONSISTENT_NV 0x86DD +#define GL_TEXTURE_SHADER_NV 0x86DE +#define GL_SHADER_OPERATION_NV 0x86DF +#define GL_CULL_MODES_NV 0x86E0 +#define GL_OFFSET_TEXTURE_MATRIX_NV 0x86E1 +#define GL_OFFSET_TEXTURE_SCALE_NV 0x86E2 +#define GL_OFFSET_TEXTURE_BIAS_NV 0x86E3 +#define GL_OFFSET_TEXTURE_2D_MATRIX_NV 0x86E1 +#define GL_OFFSET_TEXTURE_2D_SCALE_NV 0x86E2 +#define GL_OFFSET_TEXTURE_2D_BIAS_NV 0x86E3 +#define GL_PREVIOUS_TEXTURE_INPUT_NV 0x86E4 +#define GL_CONST_EYE_NV 0x86E5 +#define GL_PASS_THROUGH_NV 0x86E6 +#define GL_CULL_FRAGMENT_NV 0x86E7 +#define GL_OFFSET_TEXTURE_2D_NV 0x86E8 +#define GL_DEPENDENT_AR_TEXTURE_2D_NV 0x86E9 +#define GL_DEPENDENT_GB_TEXTURE_2D_NV 0x86EA +#define GL_DOT_PRODUCT_NV 0x86EC +#define GL_DOT_PRODUCT_DEPTH_REPLACE_NV 0x86ED +#define GL_DOT_PRODUCT_TEXTURE_2D_NV 0x86EE +#define GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV 0x86F0 +#define GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV 0x86F1 +#define GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV 0x86F2 +#define GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV 0x86F3 +#define GL_HILO_NV 0x86F4 +#define GL_DSDT_NV 0x86F5 +#define GL_DSDT_MAG_NV 0x86F6 +#define GL_DSDT_MAG_VIB_NV 0x86F7 +#define GL_HILO16_NV 0x86F8 +#define GL_SIGNED_HILO_NV 0x86F9 +#define GL_SIGNED_HILO16_NV 0x86FA +#define GL_SIGNED_RGBA_NV 0x86FB +#define GL_SIGNED_RGBA8_NV 0x86FC +#define GL_SIGNED_RGB_NV 0x86FE +#define GL_SIGNED_RGB8_NV 0x86FF +#define GL_SIGNED_LUMINANCE_NV 0x8701 +#define GL_SIGNED_LUMINANCE8_NV 0x8702 +#define GL_SIGNED_LUMINANCE_ALPHA_NV 0x8703 +#define GL_SIGNED_LUMINANCE8_ALPHA8_NV 0x8704 +#define GL_SIGNED_ALPHA_NV 0x8705 +#define GL_SIGNED_ALPHA8_NV 0x8706 +#define GL_SIGNED_INTENSITY_NV 0x8707 +#define GL_SIGNED_INTENSITY8_NV 0x8708 +#define GL_DSDT8_NV 0x8709 +#define GL_DSDT8_MAG8_NV 0x870A +#define GL_DSDT8_MAG8_INTENSITY8_NV 0x870B +#define GL_SIGNED_RGB_UNSIGNED_ALPHA_NV 0x870C +#define GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV 0x870D +#define GL_HI_SCALE_NV 0x870E +#define GL_LO_SCALE_NV 0x870F +#define GL_DS_SCALE_NV 0x8710 +#define GL_DT_SCALE_NV 0x8711 +#define GL_MAGNITUDE_SCALE_NV 0x8712 +#define GL_VIBRANCE_SCALE_NV 0x8713 +#define GL_HI_BIAS_NV 0x8714 +#define GL_LO_BIAS_NV 0x8715 +#define GL_DS_BIAS_NV 0x8716 +#define GL_DT_BIAS_NV 0x8717 +#define GL_MAGNITUDE_BIAS_NV 0x8718 +#define GL_VIBRANCE_BIAS_NV 0x8719 +#define GL_TEXTURE_BORDER_VALUES_NV 0x871A +#define GL_TEXTURE_HI_SIZE_NV 0x871B +#define GL_TEXTURE_LO_SIZE_NV 0x871C +#define GL_TEXTURE_DS_SIZE_NV 0x871D +#define GL_TEXTURE_DT_SIZE_NV 0x871E +#define GL_TEXTURE_MAG_SIZE_NV 0x871F +#endif /* GL_NV_texture_shader */ + +#ifndef GL_NV_texture_shader2 +#define GL_NV_texture_shader2 1 +#define GL_DOT_PRODUCT_TEXTURE_3D_NV 0x86EF +#endif /* GL_NV_texture_shader2 */ + +#ifndef GL_NV_texture_shader3 +#define GL_NV_texture_shader3 1 +#define GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV 0x8850 +#define GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV 0x8851 +#define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8852 +#define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV 0x8853 +#define GL_OFFSET_HILO_TEXTURE_2D_NV 0x8854 +#define GL_OFFSET_HILO_TEXTURE_RECTANGLE_NV 0x8855 +#define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV 0x8856 +#define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8857 +#define GL_DEPENDENT_HILO_TEXTURE_2D_NV 0x8858 +#define GL_DEPENDENT_RGB_TEXTURE_3D_NV 0x8859 +#define GL_DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV 0x885A +#define GL_DOT_PRODUCT_PASS_THROUGH_NV 0x885B +#define GL_DOT_PRODUCT_TEXTURE_1D_NV 0x885C +#define GL_DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV 0x885D +#define GL_HILO8_NV 0x885E +#define GL_SIGNED_HILO8_NV 0x885F +#define GL_FORCE_BLUE_TO_ONE_NV 0x8860 +#endif /* GL_NV_texture_shader3 */ + +#ifndef GL_NV_timeline_semaphore +#define GL_NV_timeline_semaphore 1 +#define GL_TIMELINE_SEMAPHORE_VALUE_NV 0x9595 +#define GL_SEMAPHORE_TYPE_NV 0x95B3 +#define GL_SEMAPHORE_TYPE_BINARY_NV 0x95B4 +#define GL_SEMAPHORE_TYPE_TIMELINE_NV 0x95B5 +#define GL_MAX_TIMELINE_SEMAPHORE_VALUE_DIFFERENCE_NV 0x95B6 +typedef void (APIENTRYP PFNGLCREATESEMAPHORESNVPROC) (GLsizei n, GLuint *semaphores); +typedef void (APIENTRYP PFNGLSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCreateSemaphoresNV (GLsizei n, GLuint *semaphores); +GLAPI void APIENTRY glSemaphoreParameterivNV (GLuint semaphore, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetSemaphoreParameterivNV (GLuint semaphore, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_timeline_semaphore */ + +#ifndef GL_NV_transform_feedback +#define GL_NV_transform_feedback 1 +#define GL_BACK_PRIMARY_COLOR_NV 0x8C77 +#define GL_BACK_SECONDARY_COLOR_NV 0x8C78 +#define GL_TEXTURE_COORD_NV 0x8C79 +#define GL_CLIP_DISTANCE_NV 0x8C7A +#define GL_VERTEX_ID_NV 0x8C7B +#define GL_PRIMITIVE_ID_NV 0x8C7C +#define GL_GENERIC_ATTRIB_NV 0x8C7D +#define GL_TRANSFORM_FEEDBACK_ATTRIBS_NV 0x8C7E +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_NV 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_NV 0x8C80 +#define GL_ACTIVE_VARYINGS_NV 0x8C81 +#define GL_ACTIVE_VARYING_MAX_LENGTH_NV 0x8C82 +#define GL_TRANSFORM_FEEDBACK_VARYINGS_NV 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START_NV 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_NV 0x8C85 +#define GL_TRANSFORM_FEEDBACK_RECORD_NV 0x8C86 +#define GL_PRIMITIVES_GENERATED_NV 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_NV 0x8C88 +#define GL_RASTERIZER_DISCARD_NV 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_NV 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_NV 0x8C8B +#define GL_INTERLEAVED_ATTRIBS_NV 0x8C8C +#define GL_SEPARATE_ATTRIBS_NV 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER_NV 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_NV 0x8C8F +#define GL_LAYER_NV 0x8DAA +#define GL_NEXT_BUFFER_NV -2 +#define GL_SKIP_COMPONENTS4_NV -3 +#define GL_SKIP_COMPONENTS3_NV -4 +#define GL_SKIP_COMPONENTS2_NV -5 +#define GL_SKIP_COMPONENTS1_NV -6 +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKNVPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKATTRIBSNVPROC) (GLsizei count, const GLint *attribs, GLenum bufferMode); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGENVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFEROFFSETNVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +typedef void (APIENTRYP PFNGLBINDBUFFERBASENVPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSNVPROC) (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode); +typedef void (APIENTRYP PFNGLACTIVEVARYINGNVPROC) (GLuint program, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETVARYINGLOCATIONNVPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVEVARYINGNVPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGNVPROC) (GLuint program, GLuint index, GLint *location); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKSTREAMATTRIBSNVPROC) (GLsizei count, const GLint *attribs, GLsizei nbuffers, const GLint *bufstreams, GLenum bufferMode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginTransformFeedbackNV (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedbackNV (void); +GLAPI void APIENTRY glTransformFeedbackAttribsNV (GLsizei count, const GLint *attribs, GLenum bufferMode); +GLAPI void APIENTRY glBindBufferRangeNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferOffsetNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +GLAPI void APIENTRY glBindBufferBaseNV (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryingsNV (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode); +GLAPI void APIENTRY glActiveVaryingNV (GLuint program, const GLchar *name); +GLAPI GLint APIENTRY glGetVaryingLocationNV (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetActiveVaryingNV (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetTransformFeedbackVaryingNV (GLuint program, GLuint index, GLint *location); +GLAPI void APIENTRY glTransformFeedbackStreamAttribsNV (GLsizei count, const GLint *attribs, GLsizei nbuffers, const GLint *bufstreams, GLenum bufferMode); +#endif +#endif /* GL_NV_transform_feedback */ + +#ifndef GL_NV_transform_feedback2 +#define GL_NV_transform_feedback2 1 +#define GL_TRANSFORM_FEEDBACK_NV 0x8E22 +#define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED_NV 0x8E23 +#define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE_NV 0x8E24 +#define GL_TRANSFORM_FEEDBACK_BINDING_NV 0x8E25 +typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKNVPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSNVPROC) (GLsizei n, const GLuint *ids); +typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSNVPROC) (GLsizei n, GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKNVPROC) (GLenum mode, GLuint id); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindTransformFeedbackNV (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteTransformFeedbacksNV (GLsizei n, const GLuint *ids); +GLAPI void APIENTRY glGenTransformFeedbacksNV (GLsizei n, GLuint *ids); +GLAPI GLboolean APIENTRY glIsTransformFeedbackNV (GLuint id); +GLAPI void APIENTRY glPauseTransformFeedbackNV (void); +GLAPI void APIENTRY glResumeTransformFeedbackNV (void); +GLAPI void APIENTRY glDrawTransformFeedbackNV (GLenum mode, GLuint id); +#endif +#endif /* GL_NV_transform_feedback2 */ + +#ifndef GL_NV_uniform_buffer_unified_memory +#define GL_NV_uniform_buffer_unified_memory 1 +#define GL_UNIFORM_BUFFER_UNIFIED_NV 0x936E +#define GL_UNIFORM_BUFFER_ADDRESS_NV 0x936F +#define GL_UNIFORM_BUFFER_LENGTH_NV 0x9370 +#endif /* GL_NV_uniform_buffer_unified_memory */ + +#ifndef GL_NV_vdpau_interop +#define GL_NV_vdpau_interop 1 +typedef GLintptr GLvdpauSurfaceNV; +#define GL_SURFACE_STATE_NV 0x86EB +#define GL_SURFACE_REGISTERED_NV 0x86FD +#define GL_SURFACE_MAPPED_NV 0x8700 +#define GL_WRITE_DISCARD_NV 0x88BE +typedef void (APIENTRYP PFNGLVDPAUINITNVPROC) (const void *vdpDevice, const void *getProcAddress); +typedef void (APIENTRYP PFNGLVDPAUFININVPROC) (void); +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTERVIDEOSURFACENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTEROUTPUTSURFACENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +typedef GLboolean (APIENTRYP PFNGLVDPAUISSURFACENVPROC) (GLvdpauSurfaceNV surface); +typedef void (APIENTRYP PFNGLVDPAUUNREGISTERSURFACENVPROC) (GLvdpauSurfaceNV surface); +typedef void (APIENTRYP PFNGLVDPAUGETSURFACEIVNVPROC) (GLvdpauSurfaceNV surface, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +typedef void (APIENTRYP PFNGLVDPAUSURFACEACCESSNVPROC) (GLvdpauSurfaceNV surface, GLenum access); +typedef void (APIENTRYP PFNGLVDPAUMAPSURFACESNVPROC) (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces); +typedef void (APIENTRYP PFNGLVDPAUUNMAPSURFACESNVPROC) (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVDPAUInitNV (const void *vdpDevice, const void *getProcAddress); +GLAPI void APIENTRY glVDPAUFiniNV (void); +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterVideoSurfaceNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterOutputSurfaceNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +GLAPI GLboolean APIENTRY glVDPAUIsSurfaceNV (GLvdpauSurfaceNV surface); +GLAPI void APIENTRY glVDPAUUnregisterSurfaceNV (GLvdpauSurfaceNV surface); +GLAPI void APIENTRY glVDPAUGetSurfaceivNV (GLvdpauSurfaceNV surface, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +GLAPI void APIENTRY glVDPAUSurfaceAccessNV (GLvdpauSurfaceNV surface, GLenum access); +GLAPI void APIENTRY glVDPAUMapSurfacesNV (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces); +GLAPI void APIENTRY glVDPAUUnmapSurfacesNV (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces); +#endif +#endif /* GL_NV_vdpau_interop */ + +#ifndef GL_NV_vdpau_interop2 +#define GL_NV_vdpau_interop2 1 +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTERVIDEOSURFACEWITHPICTURESTRUCTURENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames, GLboolean isFrameStructure); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterVideoSurfaceWithPictureStructureNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames, GLboolean isFrameStructure); +#endif +#endif /* GL_NV_vdpau_interop2 */ + +#ifndef GL_NV_vertex_array_range +#define GL_NV_vertex_array_range 1 +#define GL_VERTEX_ARRAY_RANGE_NV 0x851D +#define GL_VERTEX_ARRAY_RANGE_LENGTH_NV 0x851E +#define GL_VERTEX_ARRAY_RANGE_VALID_NV 0x851F +#define GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV 0x8520 +#define GL_VERTEX_ARRAY_RANGE_POINTER_NV 0x8521 +typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGENVPROC) (void); +typedef void (APIENTRYP PFNGLVERTEXARRAYRANGENVPROC) (GLsizei length, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushVertexArrayRangeNV (void); +GLAPI void APIENTRY glVertexArrayRangeNV (GLsizei length, const void *pointer); +#endif +#endif /* GL_NV_vertex_array_range */ + +#ifndef GL_NV_vertex_array_range2 +#define GL_NV_vertex_array_range2 1 +#define GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV 0x8533 +#endif /* GL_NV_vertex_array_range2 */ + +#ifndef GL_NV_vertex_attrib_integer_64bit +#define GL_NV_vertex_attrib_integer_64bit 1 +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1I64NVPROC) (GLuint index, GLint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64NVPROC) (GLuint index, GLuint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLI64VNVPROC) (GLuint index, GLenum pname, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLUI64VNVPROC) (GLuint index, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribL1i64NV (GLuint index, GLint64EXT x); +GLAPI void APIENTRY glVertexAttribL2i64NV (GLuint index, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glVertexAttribL3i64NV (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glVertexAttribL4i64NV (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glVertexAttribL1i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL2i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL3i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL4i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL1ui64NV (GLuint index, GLuint64EXT x); +GLAPI void APIENTRY glVertexAttribL2ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glVertexAttribL3ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glVertexAttribL4ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glVertexAttribL1ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL2ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL3ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL4ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glGetVertexAttribLi64vNV (GLuint index, GLenum pname, GLint64EXT *params); +GLAPI void APIENTRY glGetVertexAttribLui64vNV (GLuint index, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glVertexAttribLFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride); +#endif +#endif /* GL_NV_vertex_attrib_integer_64bit */ + +#ifndef GL_NV_vertex_buffer_unified_memory +#define GL_NV_vertex_buffer_unified_memory 1 +#define GL_VERTEX_ATTRIB_ARRAY_UNIFIED_NV 0x8F1E +#define GL_ELEMENT_ARRAY_UNIFIED_NV 0x8F1F +#define GL_VERTEX_ATTRIB_ARRAY_ADDRESS_NV 0x8F20 +#define GL_VERTEX_ARRAY_ADDRESS_NV 0x8F21 +#define GL_NORMAL_ARRAY_ADDRESS_NV 0x8F22 +#define GL_COLOR_ARRAY_ADDRESS_NV 0x8F23 +#define GL_INDEX_ARRAY_ADDRESS_NV 0x8F24 +#define GL_TEXTURE_COORD_ARRAY_ADDRESS_NV 0x8F25 +#define GL_EDGE_FLAG_ARRAY_ADDRESS_NV 0x8F26 +#define GL_SECONDARY_COLOR_ARRAY_ADDRESS_NV 0x8F27 +#define GL_FOG_COORD_ARRAY_ADDRESS_NV 0x8F28 +#define GL_ELEMENT_ARRAY_ADDRESS_NV 0x8F29 +#define GL_VERTEX_ATTRIB_ARRAY_LENGTH_NV 0x8F2A +#define GL_VERTEX_ARRAY_LENGTH_NV 0x8F2B +#define GL_NORMAL_ARRAY_LENGTH_NV 0x8F2C +#define GL_COLOR_ARRAY_LENGTH_NV 0x8F2D +#define GL_INDEX_ARRAY_LENGTH_NV 0x8F2E +#define GL_TEXTURE_COORD_ARRAY_LENGTH_NV 0x8F2F +#define GL_EDGE_FLAG_ARRAY_LENGTH_NV 0x8F30 +#define GL_SECONDARY_COLOR_ARRAY_LENGTH_NV 0x8F31 +#define GL_FOG_COORD_ARRAY_LENGTH_NV 0x8F32 +#define GL_ELEMENT_ARRAY_LENGTH_NV 0x8F33 +#define GL_DRAW_INDIRECT_UNIFIED_NV 0x8F40 +#define GL_DRAW_INDIRECT_ADDRESS_NV 0x8F41 +#define GL_DRAW_INDIRECT_LENGTH_NV 0x8F42 +typedef void (APIENTRYP PFNGLBUFFERADDRESSRANGENVPROC) (GLenum pname, GLuint index, GLuint64EXT address, GLsizeiptr length); +typedef void (APIENTRYP PFNGLVERTEXFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLNORMALFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLINDEXFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLTEXCOORDFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLEDGEFLAGFORMATNVPROC) (GLsizei stride); +typedef void (APIENTRYP PFNGLSECONDARYCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLFOGCOORDFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLGETINTEGERUI64I_VNVPROC) (GLenum value, GLuint index, GLuint64EXT *result); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferAddressRangeNV (GLenum pname, GLuint index, GLuint64EXT address, GLsizeiptr length); +GLAPI void APIENTRY glVertexFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glNormalFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glColorFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glIndexFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glTexCoordFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glEdgeFlagFormatNV (GLsizei stride); +GLAPI void APIENTRY glSecondaryColorFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glFogCoordFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glVertexAttribFormatNV (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride); +GLAPI void APIENTRY glVertexAttribIFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glGetIntegerui64i_vNV (GLenum value, GLuint index, GLuint64EXT *result); +#endif +#endif /* GL_NV_vertex_buffer_unified_memory */ + +#ifndef GL_NV_vertex_program +#define GL_NV_vertex_program 1 +#define GL_VERTEX_PROGRAM_NV 0x8620 +#define GL_VERTEX_STATE_PROGRAM_NV 0x8621 +#define GL_ATTRIB_ARRAY_SIZE_NV 0x8623 +#define GL_ATTRIB_ARRAY_STRIDE_NV 0x8624 +#define GL_ATTRIB_ARRAY_TYPE_NV 0x8625 +#define GL_CURRENT_ATTRIB_NV 0x8626 +#define GL_PROGRAM_LENGTH_NV 0x8627 +#define GL_PROGRAM_STRING_NV 0x8628 +#define GL_MODELVIEW_PROJECTION_NV 0x8629 +#define GL_IDENTITY_NV 0x862A +#define GL_INVERSE_NV 0x862B +#define GL_TRANSPOSE_NV 0x862C +#define GL_INVERSE_TRANSPOSE_NV 0x862D +#define GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV 0x862E +#define GL_MAX_TRACK_MATRICES_NV 0x862F +#define GL_MATRIX0_NV 0x8630 +#define GL_MATRIX1_NV 0x8631 +#define GL_MATRIX2_NV 0x8632 +#define GL_MATRIX3_NV 0x8633 +#define GL_MATRIX4_NV 0x8634 +#define GL_MATRIX5_NV 0x8635 +#define GL_MATRIX6_NV 0x8636 +#define GL_MATRIX7_NV 0x8637 +#define GL_CURRENT_MATRIX_STACK_DEPTH_NV 0x8640 +#define GL_CURRENT_MATRIX_NV 0x8641 +#define GL_VERTEX_PROGRAM_POINT_SIZE_NV 0x8642 +#define GL_VERTEX_PROGRAM_TWO_SIDE_NV 0x8643 +#define GL_PROGRAM_PARAMETER_NV 0x8644 +#define GL_ATTRIB_ARRAY_POINTER_NV 0x8645 +#define GL_PROGRAM_TARGET_NV 0x8646 +#define GL_PROGRAM_RESIDENT_NV 0x8647 +#define GL_TRACK_MATRIX_NV 0x8648 +#define GL_TRACK_MATRIX_TRANSFORM_NV 0x8649 +#define GL_VERTEX_PROGRAM_BINDING_NV 0x864A +#define GL_PROGRAM_ERROR_POSITION_NV 0x864B +#define GL_VERTEX_ATTRIB_ARRAY0_NV 0x8650 +#define GL_VERTEX_ATTRIB_ARRAY1_NV 0x8651 +#define GL_VERTEX_ATTRIB_ARRAY2_NV 0x8652 +#define GL_VERTEX_ATTRIB_ARRAY3_NV 0x8653 +#define GL_VERTEX_ATTRIB_ARRAY4_NV 0x8654 +#define GL_VERTEX_ATTRIB_ARRAY5_NV 0x8655 +#define GL_VERTEX_ATTRIB_ARRAY6_NV 0x8656 +#define GL_VERTEX_ATTRIB_ARRAY7_NV 0x8657 +#define GL_VERTEX_ATTRIB_ARRAY8_NV 0x8658 +#define GL_VERTEX_ATTRIB_ARRAY9_NV 0x8659 +#define GL_VERTEX_ATTRIB_ARRAY10_NV 0x865A +#define GL_VERTEX_ATTRIB_ARRAY11_NV 0x865B +#define GL_VERTEX_ATTRIB_ARRAY12_NV 0x865C +#define GL_VERTEX_ATTRIB_ARRAY13_NV 0x865D +#define GL_VERTEX_ATTRIB_ARRAY14_NV 0x865E +#define GL_VERTEX_ATTRIB_ARRAY15_NV 0x865F +#define GL_MAP1_VERTEX_ATTRIB0_4_NV 0x8660 +#define GL_MAP1_VERTEX_ATTRIB1_4_NV 0x8661 +#define GL_MAP1_VERTEX_ATTRIB2_4_NV 0x8662 +#define GL_MAP1_VERTEX_ATTRIB3_4_NV 0x8663 +#define GL_MAP1_VERTEX_ATTRIB4_4_NV 0x8664 +#define GL_MAP1_VERTEX_ATTRIB5_4_NV 0x8665 +#define GL_MAP1_VERTEX_ATTRIB6_4_NV 0x8666 +#define GL_MAP1_VERTEX_ATTRIB7_4_NV 0x8667 +#define GL_MAP1_VERTEX_ATTRIB8_4_NV 0x8668 +#define GL_MAP1_VERTEX_ATTRIB9_4_NV 0x8669 +#define GL_MAP1_VERTEX_ATTRIB10_4_NV 0x866A +#define GL_MAP1_VERTEX_ATTRIB11_4_NV 0x866B +#define GL_MAP1_VERTEX_ATTRIB12_4_NV 0x866C +#define GL_MAP1_VERTEX_ATTRIB13_4_NV 0x866D +#define GL_MAP1_VERTEX_ATTRIB14_4_NV 0x866E +#define GL_MAP1_VERTEX_ATTRIB15_4_NV 0x866F +#define GL_MAP2_VERTEX_ATTRIB0_4_NV 0x8670 +#define GL_MAP2_VERTEX_ATTRIB1_4_NV 0x8671 +#define GL_MAP2_VERTEX_ATTRIB2_4_NV 0x8672 +#define GL_MAP2_VERTEX_ATTRIB3_4_NV 0x8673 +#define GL_MAP2_VERTEX_ATTRIB4_4_NV 0x8674 +#define GL_MAP2_VERTEX_ATTRIB5_4_NV 0x8675 +#define GL_MAP2_VERTEX_ATTRIB6_4_NV 0x8676 +#define GL_MAP2_VERTEX_ATTRIB7_4_NV 0x8677 +#define GL_MAP2_VERTEX_ATTRIB8_4_NV 0x8678 +#define GL_MAP2_VERTEX_ATTRIB9_4_NV 0x8679 +#define GL_MAP2_VERTEX_ATTRIB10_4_NV 0x867A +#define GL_MAP2_VERTEX_ATTRIB11_4_NV 0x867B +#define GL_MAP2_VERTEX_ATTRIB12_4_NV 0x867C +#define GL_MAP2_VERTEX_ATTRIB13_4_NV 0x867D +#define GL_MAP2_VERTEX_ATTRIB14_4_NV 0x867E +#define GL_MAP2_VERTEX_ATTRIB15_4_NV 0x867F +typedef GLboolean (APIENTRYP PFNGLAREPROGRAMSRESIDENTNVPROC) (GLsizei n, const GLuint *programs, GLboolean *residences); +typedef void (APIENTRYP PFNGLBINDPROGRAMNVPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETEPROGRAMSNVPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLEXECUTEPROGRAMNVPROC) (GLenum target, GLuint id, const GLfloat *params); +typedef void (APIENTRYP PFNGLGENPROGRAMSNVPROC) (GLsizei n, GLuint *programs); +typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERDVNVPROC) (GLenum target, GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMIVNVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGNVPROC) (GLuint id, GLenum pname, GLubyte *program); +typedef void (APIENTRYP PFNGLGETTRACKMATRIXIVNVPROC) (GLenum target, GLuint address, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVNVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVNVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVNVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVNVPROC) (GLuint index, GLenum pname, void **pointer); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLLOADPROGRAMNVPROC) (GLenum target, GLuint id, GLsizei len, const GLubyte *program); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DNVPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DVNVPROC) (GLenum target, GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FNVPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FVNVPROC) (GLenum target, GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4DVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4FVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLREQUESTRESIDENTPROGRAMSNVPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLTRACKMATRIXNVPROC) (GLenum target, GLuint address, GLenum matrix, GLenum transform); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERNVPROC) (GLuint index, GLint fsize, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DNVPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FNVPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SNVPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DNVPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FNVPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SNVPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBNVPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVNVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4UBVNVPROC) (GLuint index, GLsizei count, const GLubyte *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAreProgramsResidentNV (GLsizei n, const GLuint *programs, GLboolean *residences); +GLAPI void APIENTRY glBindProgramNV (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteProgramsNV (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glExecuteProgramNV (GLenum target, GLuint id, const GLfloat *params); +GLAPI void APIENTRY glGenProgramsNV (GLsizei n, GLuint *programs); +GLAPI void APIENTRY glGetProgramParameterdvNV (GLenum target, GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetProgramParameterfvNV (GLenum target, GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetProgramivNV (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramStringNV (GLuint id, GLenum pname, GLubyte *program); +GLAPI void APIENTRY glGetTrackMatrixivNV (GLenum target, GLuint address, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribdvNV (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfvNV (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribivNV (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointervNV (GLuint index, GLenum pname, void **pointer); +GLAPI GLboolean APIENTRY glIsProgramNV (GLuint id); +GLAPI void APIENTRY glLoadProgramNV (GLenum target, GLuint id, GLsizei len, const GLubyte *program); +GLAPI void APIENTRY glProgramParameter4dNV (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramParameter4dvNV (GLenum target, GLuint index, const GLdouble *v); +GLAPI void APIENTRY glProgramParameter4fNV (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramParameter4fvNV (GLenum target, GLuint index, const GLfloat *v); +GLAPI void APIENTRY glProgramParameters4dvNV (GLenum target, GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glProgramParameters4fvNV (GLenum target, GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glRequestResidentProgramsNV (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glTrackMatrixNV (GLenum target, GLuint address, GLenum matrix, GLenum transform); +GLAPI void APIENTRY glVertexAttribPointerNV (GLuint index, GLint fsize, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glVertexAttrib1dNV (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1fNV (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1sNV (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2dNV (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2fNV (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2sNV (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3dNV (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3fNV (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3sNV (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4dNV (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4fNV (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4sNV (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubNV (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4ubvNV (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribs1dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs1fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs1svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs2dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs2fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs2svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs3dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs3fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs3svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs4dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs4fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs4svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs4ubvNV (GLuint index, GLsizei count, const GLubyte *v); +#endif +#endif /* GL_NV_vertex_program */ + +#ifndef GL_NV_vertex_program1_1 +#define GL_NV_vertex_program1_1 1 +#endif /* GL_NV_vertex_program1_1 */ + +#ifndef GL_NV_vertex_program2 +#define GL_NV_vertex_program2 1 +#endif /* GL_NV_vertex_program2 */ + +#ifndef GL_NV_vertex_program2_option +#define GL_NV_vertex_program2_option 1 +#endif /* GL_NV_vertex_program2_option */ + +#ifndef GL_NV_vertex_program3 +#define GL_NV_vertex_program3 1 +#endif /* GL_NV_vertex_program3 */ + +#ifndef GL_NV_vertex_program4 +#define GL_NV_vertex_program4 1 +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD +#endif /* GL_NV_vertex_program4 */ + +#ifndef GL_NV_video_capture +#define GL_NV_video_capture 1 +#define GL_VIDEO_BUFFER_NV 0x9020 +#define GL_VIDEO_BUFFER_BINDING_NV 0x9021 +#define GL_FIELD_UPPER_NV 0x9022 +#define GL_FIELD_LOWER_NV 0x9023 +#define GL_NUM_VIDEO_CAPTURE_STREAMS_NV 0x9024 +#define GL_NEXT_VIDEO_CAPTURE_BUFFER_STATUS_NV 0x9025 +#define GL_VIDEO_CAPTURE_TO_422_SUPPORTED_NV 0x9026 +#define GL_LAST_VIDEO_CAPTURE_STATUS_NV 0x9027 +#define GL_VIDEO_BUFFER_PITCH_NV 0x9028 +#define GL_VIDEO_COLOR_CONVERSION_MATRIX_NV 0x9029 +#define GL_VIDEO_COLOR_CONVERSION_MAX_NV 0x902A +#define GL_VIDEO_COLOR_CONVERSION_MIN_NV 0x902B +#define GL_VIDEO_COLOR_CONVERSION_OFFSET_NV 0x902C +#define GL_VIDEO_BUFFER_INTERNAL_FORMAT_NV 0x902D +#define GL_PARTIAL_SUCCESS_NV 0x902E +#define GL_SUCCESS_NV 0x902F +#define GL_FAILURE_NV 0x9030 +#define GL_YCBYCR8_422_NV 0x9031 +#define GL_YCBAYCR8A_4224_NV 0x9032 +#define GL_Z6Y10Z6CB10Z6Y10Z6CR10_422_NV 0x9033 +#define GL_Z6Y10Z6CB10Z6A10Z6Y10Z6CR10Z6A10_4224_NV 0x9034 +#define GL_Z4Y12Z4CB12Z4Y12Z4CR12_422_NV 0x9035 +#define GL_Z4Y12Z4CB12Z4A12Z4Y12Z4CR12Z4A12_4224_NV 0x9036 +#define GL_Z4Y12Z4CB12Z4CR12_444_NV 0x9037 +#define GL_VIDEO_CAPTURE_FRAME_WIDTH_NV 0x9038 +#define GL_VIDEO_CAPTURE_FRAME_HEIGHT_NV 0x9039 +#define GL_VIDEO_CAPTURE_FIELD_UPPER_HEIGHT_NV 0x903A +#define GL_VIDEO_CAPTURE_FIELD_LOWER_HEIGHT_NV 0x903B +#define GL_VIDEO_CAPTURE_SURFACE_ORIGIN_NV 0x903C +typedef void (APIENTRYP PFNGLBEGINVIDEOCAPTURENVPROC) (GLuint video_capture_slot); +typedef void (APIENTRYP PFNGLBINDVIDEOCAPTURESTREAMBUFFERNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLintptrARB offset); +typedef void (APIENTRYP PFNGLBINDVIDEOCAPTURESTREAMTEXTURENVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLENDVIDEOCAPTURENVPROC) (GLuint video_capture_slot); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTUREIVNVPROC) (GLuint video_capture_slot, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLdouble *params); +typedef GLenum (APIENTRYP PFNGLVIDEOCAPTURENVPROC) (GLuint video_capture_slot, GLuint *sequence_num, GLuint64EXT *capture_time); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLdouble *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginVideoCaptureNV (GLuint video_capture_slot); +GLAPI void APIENTRY glBindVideoCaptureStreamBufferNV (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLintptrARB offset); +GLAPI void APIENTRY glBindVideoCaptureStreamTextureNV (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLenum target, GLuint texture); +GLAPI void APIENTRY glEndVideoCaptureNV (GLuint video_capture_slot); +GLAPI void APIENTRY glGetVideoCaptureivNV (GLuint video_capture_slot, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideoCaptureStreamivNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideoCaptureStreamfvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVideoCaptureStreamdvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLdouble *params); +GLAPI GLenum APIENTRY glVideoCaptureNV (GLuint video_capture_slot, GLuint *sequence_num, GLuint64EXT *capture_time); +GLAPI void APIENTRY glVideoCaptureStreamParameterivNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLint *params); +GLAPI void APIENTRY glVideoCaptureStreamParameterfvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glVideoCaptureStreamParameterdvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLdouble *params); +#endif +#endif /* GL_NV_video_capture */ + +#ifndef GL_NV_viewport_array2 +#define GL_NV_viewport_array2 1 +#endif /* GL_NV_viewport_array2 */ + +#ifndef GL_NV_viewport_swizzle +#define GL_NV_viewport_swizzle 1 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_X_NV 0x9350 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_X_NV 0x9351 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Y_NV 0x9352 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Y_NV 0x9353 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Z_NV 0x9354 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Z_NV 0x9355 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_W_NV 0x9356 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_W_NV 0x9357 +#define GL_VIEWPORT_SWIZZLE_X_NV 0x9358 +#define GL_VIEWPORT_SWIZZLE_Y_NV 0x9359 +#define GL_VIEWPORT_SWIZZLE_Z_NV 0x935A +#define GL_VIEWPORT_SWIZZLE_W_NV 0x935B +typedef void (APIENTRYP PFNGLVIEWPORTSWIZZLENVPROC) (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glViewportSwizzleNV (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#endif +#endif /* GL_NV_viewport_swizzle */ + +#ifndef GL_OML_interlace +#define GL_OML_interlace 1 +#define GL_INTERLACE_OML 0x8980 +#define GL_INTERLACE_READ_OML 0x8981 +#endif /* GL_OML_interlace */ + +#ifndef GL_OML_resample +#define GL_OML_resample 1 +#define GL_PACK_RESAMPLE_OML 0x8984 +#define GL_UNPACK_RESAMPLE_OML 0x8985 +#define GL_RESAMPLE_REPLICATE_OML 0x8986 +#define GL_RESAMPLE_ZERO_FILL_OML 0x8987 +#define GL_RESAMPLE_AVERAGE_OML 0x8988 +#define GL_RESAMPLE_DECIMATE_OML 0x8989 +#endif /* GL_OML_resample */ + +#ifndef GL_OML_subsample +#define GL_OML_subsample 1 +#define GL_FORMAT_SUBSAMPLE_24_24_OML 0x8982 +#define GL_FORMAT_SUBSAMPLE_244_244_OML 0x8983 +#endif /* GL_OML_subsample */ + +#ifndef GL_OVR_multiview +#define GL_OVR_multiview 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR 0x9630 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR 0x9632 +#define GL_MAX_VIEWS_OVR 0x9631 +#define GL_FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR 0x9633 +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferTextureMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview */ + +#ifndef GL_OVR_multiview2 +#define GL_OVR_multiview2 1 +#endif /* GL_OVR_multiview2 */ + +#ifndef GL_PGI_misc_hints +#define GL_PGI_misc_hints 1 +#define GL_PREFER_DOUBLEBUFFER_HINT_PGI 0x1A1F8 +#define GL_CONSERVE_MEMORY_HINT_PGI 0x1A1FD +#define GL_RECLAIM_MEMORY_HINT_PGI 0x1A1FE +#define GL_NATIVE_GRAPHICS_HANDLE_PGI 0x1A202 +#define GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI 0x1A203 +#define GL_NATIVE_GRAPHICS_END_HINT_PGI 0x1A204 +#define GL_ALWAYS_FAST_HINT_PGI 0x1A20C +#define GL_ALWAYS_SOFT_HINT_PGI 0x1A20D +#define GL_ALLOW_DRAW_OBJ_HINT_PGI 0x1A20E +#define GL_ALLOW_DRAW_WIN_HINT_PGI 0x1A20F +#define GL_ALLOW_DRAW_FRG_HINT_PGI 0x1A210 +#define GL_ALLOW_DRAW_MEM_HINT_PGI 0x1A211 +#define GL_STRICT_DEPTHFUNC_HINT_PGI 0x1A216 +#define GL_STRICT_LIGHTING_HINT_PGI 0x1A217 +#define GL_STRICT_SCISSOR_HINT_PGI 0x1A218 +#define GL_FULL_STIPPLE_HINT_PGI 0x1A219 +#define GL_CLIP_NEAR_HINT_PGI 0x1A220 +#define GL_CLIP_FAR_HINT_PGI 0x1A221 +#define GL_WIDE_LINE_HINT_PGI 0x1A222 +#define GL_BACK_NORMALS_HINT_PGI 0x1A223 +typedef void (APIENTRYP PFNGLHINTPGIPROC) (GLenum target, GLint mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glHintPGI (GLenum target, GLint mode); +#endif +#endif /* GL_PGI_misc_hints */ + +#ifndef GL_PGI_vertex_hints +#define GL_PGI_vertex_hints 1 +#define GL_VERTEX_DATA_HINT_PGI 0x1A22A +#define GL_VERTEX_CONSISTENT_HINT_PGI 0x1A22B +#define GL_MATERIAL_SIDE_HINT_PGI 0x1A22C +#define GL_MAX_VERTEX_HINT_PGI 0x1A22D +#define GL_COLOR3_BIT_PGI 0x00010000 +#define GL_COLOR4_BIT_PGI 0x00020000 +#define GL_EDGEFLAG_BIT_PGI 0x00040000 +#define GL_INDEX_BIT_PGI 0x00080000 +#define GL_MAT_AMBIENT_BIT_PGI 0x00100000 +#define GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI 0x00200000 +#define GL_MAT_DIFFUSE_BIT_PGI 0x00400000 +#define GL_MAT_EMISSION_BIT_PGI 0x00800000 +#define GL_MAT_COLOR_INDEXES_BIT_PGI 0x01000000 +#define GL_MAT_SHININESS_BIT_PGI 0x02000000 +#define GL_MAT_SPECULAR_BIT_PGI 0x04000000 +#define GL_NORMAL_BIT_PGI 0x08000000 +#define GL_TEXCOORD1_BIT_PGI 0x10000000 +#define GL_TEXCOORD2_BIT_PGI 0x20000000 +#define GL_TEXCOORD3_BIT_PGI 0x40000000 +#define GL_TEXCOORD4_BIT_PGI 0x80000000 +#define GL_VERTEX23_BIT_PGI 0x00000004 +#define GL_VERTEX4_BIT_PGI 0x00000008 +#endif /* GL_PGI_vertex_hints */ + +#ifndef GL_REND_screen_coordinates +#define GL_REND_screen_coordinates 1 +#define GL_SCREEN_COORDINATES_REND 0x8490 +#define GL_INVERTED_SCREEN_W_REND 0x8491 +#endif /* GL_REND_screen_coordinates */ + +#ifndef GL_S3_s3tc +#define GL_S3_s3tc 1 +#define GL_RGB_S3TC 0x83A0 +#define GL_RGB4_S3TC 0x83A1 +#define GL_RGBA_S3TC 0x83A2 +#define GL_RGBA4_S3TC 0x83A3 +#define GL_RGBA_DXT5_S3TC 0x83A4 +#define GL_RGBA4_DXT5_S3TC 0x83A5 +#endif /* GL_S3_s3tc */ + +#ifndef GL_SGIS_detail_texture +#define GL_SGIS_detail_texture 1 +#define GL_DETAIL_TEXTURE_2D_SGIS 0x8095 +#define GL_DETAIL_TEXTURE_2D_BINDING_SGIS 0x8096 +#define GL_LINEAR_DETAIL_SGIS 0x8097 +#define GL_LINEAR_DETAIL_ALPHA_SGIS 0x8098 +#define GL_LINEAR_DETAIL_COLOR_SGIS 0x8099 +#define GL_DETAIL_TEXTURE_LEVEL_SGIS 0x809A +#define GL_DETAIL_TEXTURE_MODE_SGIS 0x809B +#define GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS 0x809C +typedef void (APIENTRYP PFNGLDETAILTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETDETAILTEXFUNCSGISPROC) (GLenum target, GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDetailTexFuncSGIS (GLenum target, GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetDetailTexFuncSGIS (GLenum target, GLfloat *points); +#endif +#endif /* GL_SGIS_detail_texture */ + +#ifndef GL_SGIS_fog_function +#define GL_SGIS_fog_function 1 +#define GL_FOG_FUNC_SGIS 0x812A +#define GL_FOG_FUNC_POINTS_SGIS 0x812B +#define GL_MAX_FOG_FUNC_POINTS_SGIS 0x812C +typedef void (APIENTRYP PFNGLFOGFUNCSGISPROC) (GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETFOGFUNCSGISPROC) (GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFogFuncSGIS (GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetFogFuncSGIS (GLfloat *points); +#endif +#endif /* GL_SGIS_fog_function */ + +#ifndef GL_SGIS_generate_mipmap +#define GL_SGIS_generate_mipmap 1 +#define GL_GENERATE_MIPMAP_SGIS 0x8191 +#define GL_GENERATE_MIPMAP_HINT_SGIS 0x8192 +#endif /* GL_SGIS_generate_mipmap */ + +#ifndef GL_SGIS_multisample +#define GL_SGIS_multisample 1 +#define GL_MULTISAMPLE_SGIS 0x809D +#define GL_SAMPLE_ALPHA_TO_MASK_SGIS 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_SGIS 0x809F +#define GL_SAMPLE_MASK_SGIS 0x80A0 +#define GL_1PASS_SGIS 0x80A1 +#define GL_2PASS_0_SGIS 0x80A2 +#define GL_2PASS_1_SGIS 0x80A3 +#define GL_4PASS_0_SGIS 0x80A4 +#define GL_4PASS_1_SGIS 0x80A5 +#define GL_4PASS_2_SGIS 0x80A6 +#define GL_4PASS_3_SGIS 0x80A7 +#define GL_SAMPLE_BUFFERS_SGIS 0x80A8 +#define GL_SAMPLES_SGIS 0x80A9 +#define GL_SAMPLE_MASK_VALUE_SGIS 0x80AA +#define GL_SAMPLE_MASK_INVERT_SGIS 0x80AB +#define GL_SAMPLE_PATTERN_SGIS 0x80AC +typedef void (APIENTRYP PFNGLSAMPLEMASKSGISPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLSAMPLEPATTERNSGISPROC) (GLenum pattern); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleMaskSGIS (GLclampf value, GLboolean invert); +GLAPI void APIENTRY glSamplePatternSGIS (GLenum pattern); +#endif +#endif /* GL_SGIS_multisample */ + +#ifndef GL_SGIS_pixel_texture +#define GL_SGIS_pixel_texture 1 +#define GL_PIXEL_TEXTURE_SGIS 0x8353 +#define GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS 0x8354 +#define GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS 0x8355 +#define GL_PIXEL_GROUP_COLOR_SGIS 0x8356 +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERISGISPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFSGISPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTexGenParameteriSGIS (GLenum pname, GLint param); +GLAPI void APIENTRY glPixelTexGenParameterivSGIS (GLenum pname, const GLint *params); +GLAPI void APIENTRY glPixelTexGenParameterfSGIS (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPixelTexGenParameterfvSGIS (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetPixelTexGenParameterivSGIS (GLenum pname, GLint *params); +GLAPI void APIENTRY glGetPixelTexGenParameterfvSGIS (GLenum pname, GLfloat *params); +#endif +#endif /* GL_SGIS_pixel_texture */ + +#ifndef GL_SGIS_point_line_texgen +#define GL_SGIS_point_line_texgen 1 +#define GL_EYE_DISTANCE_TO_POINT_SGIS 0x81F0 +#define GL_OBJECT_DISTANCE_TO_POINT_SGIS 0x81F1 +#define GL_EYE_DISTANCE_TO_LINE_SGIS 0x81F2 +#define GL_OBJECT_DISTANCE_TO_LINE_SGIS 0x81F3 +#define GL_EYE_POINT_SGIS 0x81F4 +#define GL_OBJECT_POINT_SGIS 0x81F5 +#define GL_EYE_LINE_SGIS 0x81F6 +#define GL_OBJECT_LINE_SGIS 0x81F7 +#endif /* GL_SGIS_point_line_texgen */ + +#ifndef GL_SGIS_point_parameters +#define GL_SGIS_point_parameters 1 +#define GL_POINT_SIZE_MIN_SGIS 0x8126 +#define GL_POINT_SIZE_MAX_SGIS 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_SGIS 0x8128 +#define GL_DISTANCE_ATTENUATION_SGIS 0x8129 +typedef void (APIENTRYP PFNGLPOINTPARAMETERFSGISPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfSGIS (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvSGIS (GLenum pname, const GLfloat *params); +#endif +#endif /* GL_SGIS_point_parameters */ + +#ifndef GL_SGIS_sharpen_texture +#define GL_SGIS_sharpen_texture 1 +#define GL_LINEAR_SHARPEN_SGIS 0x80AD +#define GL_LINEAR_SHARPEN_ALPHA_SGIS 0x80AE +#define GL_LINEAR_SHARPEN_COLOR_SGIS 0x80AF +#define GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS 0x80B0 +typedef void (APIENTRYP PFNGLSHARPENTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETSHARPENTEXFUNCSGISPROC) (GLenum target, GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSharpenTexFuncSGIS (GLenum target, GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetSharpenTexFuncSGIS (GLenum target, GLfloat *points); +#endif +#endif /* GL_SGIS_sharpen_texture */ + +#ifndef GL_SGIS_texture4D +#define GL_SGIS_texture4D 1 +#define GL_PACK_SKIP_VOLUMES_SGIS 0x8130 +#define GL_PACK_IMAGE_DEPTH_SGIS 0x8131 +#define GL_UNPACK_SKIP_VOLUMES_SGIS 0x8132 +#define GL_UNPACK_IMAGE_DEPTH_SGIS 0x8133 +#define GL_TEXTURE_4D_SGIS 0x8134 +#define GL_PROXY_TEXTURE_4D_SGIS 0x8135 +#define GL_TEXTURE_4DSIZE_SGIS 0x8136 +#define GL_TEXTURE_WRAP_Q_SGIS 0x8137 +#define GL_MAX_4D_TEXTURE_SIZE_SGIS 0x8138 +#define GL_TEXTURE_4D_BINDING_SGIS 0x814F +typedef void (APIENTRYP PFNGLTEXIMAGE4DSGISPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE4DSGISPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const void *pixels); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage4DSGIS (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage4DSGIS (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const void *pixels); +#endif +#endif /* GL_SGIS_texture4D */ + +#ifndef GL_SGIS_texture_border_clamp +#define GL_SGIS_texture_border_clamp 1 +#define GL_CLAMP_TO_BORDER_SGIS 0x812D +#endif /* GL_SGIS_texture_border_clamp */ + +#ifndef GL_SGIS_texture_color_mask +#define GL_SGIS_texture_color_mask 1 +#define GL_TEXTURE_COLOR_WRITEMASK_SGIS 0x81EF +typedef void (APIENTRYP PFNGLTEXTURECOLORMASKSGISPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureColorMaskSGIS (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +#endif +#endif /* GL_SGIS_texture_color_mask */ + +#ifndef GL_SGIS_texture_edge_clamp +#define GL_SGIS_texture_edge_clamp 1 +#define GL_CLAMP_TO_EDGE_SGIS 0x812F +#endif /* GL_SGIS_texture_edge_clamp */ + +#ifndef GL_SGIS_texture_filter4 +#define GL_SGIS_texture_filter4 1 +#define GL_FILTER4_SGIS 0x8146 +#define GL_TEXTURE_FILTER4_SIZE_SGIS 0x8147 +typedef void (APIENTRYP PFNGLGETTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLfloat *weights); +typedef void (APIENTRYP PFNGLTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetTexFilterFuncSGIS (GLenum target, GLenum filter, GLfloat *weights); +GLAPI void APIENTRY glTexFilterFuncSGIS (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights); +#endif +#endif /* GL_SGIS_texture_filter4 */ + +#ifndef GL_SGIS_texture_lod +#define GL_SGIS_texture_lod 1 +#define GL_TEXTURE_MIN_LOD_SGIS 0x813A +#define GL_TEXTURE_MAX_LOD_SGIS 0x813B +#define GL_TEXTURE_BASE_LEVEL_SGIS 0x813C +#define GL_TEXTURE_MAX_LEVEL_SGIS 0x813D +#endif /* GL_SGIS_texture_lod */ + +#ifndef GL_SGIS_texture_select +#define GL_SGIS_texture_select 1 +#define GL_DUAL_ALPHA4_SGIS 0x8110 +#define GL_DUAL_ALPHA8_SGIS 0x8111 +#define GL_DUAL_ALPHA12_SGIS 0x8112 +#define GL_DUAL_ALPHA16_SGIS 0x8113 +#define GL_DUAL_LUMINANCE4_SGIS 0x8114 +#define GL_DUAL_LUMINANCE8_SGIS 0x8115 +#define GL_DUAL_LUMINANCE12_SGIS 0x8116 +#define GL_DUAL_LUMINANCE16_SGIS 0x8117 +#define GL_DUAL_INTENSITY4_SGIS 0x8118 +#define GL_DUAL_INTENSITY8_SGIS 0x8119 +#define GL_DUAL_INTENSITY12_SGIS 0x811A +#define GL_DUAL_INTENSITY16_SGIS 0x811B +#define GL_DUAL_LUMINANCE_ALPHA4_SGIS 0x811C +#define GL_DUAL_LUMINANCE_ALPHA8_SGIS 0x811D +#define GL_QUAD_ALPHA4_SGIS 0x811E +#define GL_QUAD_ALPHA8_SGIS 0x811F +#define GL_QUAD_LUMINANCE4_SGIS 0x8120 +#define GL_QUAD_LUMINANCE8_SGIS 0x8121 +#define GL_QUAD_INTENSITY4_SGIS 0x8122 +#define GL_QUAD_INTENSITY8_SGIS 0x8123 +#define GL_DUAL_TEXTURE_SELECT_SGIS 0x8124 +#define GL_QUAD_TEXTURE_SELECT_SGIS 0x8125 +#endif /* GL_SGIS_texture_select */ + +#ifndef GL_SGIX_async +#define GL_SGIX_async 1 +#define GL_ASYNC_MARKER_SGIX 0x8329 +typedef void (APIENTRYP PFNGLASYNCMARKERSGIXPROC) (GLuint marker); +typedef GLint (APIENTRYP PFNGLFINISHASYNCSGIXPROC) (GLuint *markerp); +typedef GLint (APIENTRYP PFNGLPOLLASYNCSGIXPROC) (GLuint *markerp); +typedef GLuint (APIENTRYP PFNGLGENASYNCMARKERSSGIXPROC) (GLsizei range); +typedef void (APIENTRYP PFNGLDELETEASYNCMARKERSSGIXPROC) (GLuint marker, GLsizei range); +typedef GLboolean (APIENTRYP PFNGLISASYNCMARKERSGIXPROC) (GLuint marker); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAsyncMarkerSGIX (GLuint marker); +GLAPI GLint APIENTRY glFinishAsyncSGIX (GLuint *markerp); +GLAPI GLint APIENTRY glPollAsyncSGIX (GLuint *markerp); +GLAPI GLuint APIENTRY glGenAsyncMarkersSGIX (GLsizei range); +GLAPI void APIENTRY glDeleteAsyncMarkersSGIX (GLuint marker, GLsizei range); +GLAPI GLboolean APIENTRY glIsAsyncMarkerSGIX (GLuint marker); +#endif +#endif /* GL_SGIX_async */ + +#ifndef GL_SGIX_async_histogram +#define GL_SGIX_async_histogram 1 +#define GL_ASYNC_HISTOGRAM_SGIX 0x832C +#define GL_MAX_ASYNC_HISTOGRAM_SGIX 0x832D +#endif /* GL_SGIX_async_histogram */ + +#ifndef GL_SGIX_async_pixel +#define GL_SGIX_async_pixel 1 +#define GL_ASYNC_TEX_IMAGE_SGIX 0x835C +#define GL_ASYNC_DRAW_PIXELS_SGIX 0x835D +#define GL_ASYNC_READ_PIXELS_SGIX 0x835E +#define GL_MAX_ASYNC_TEX_IMAGE_SGIX 0x835F +#define GL_MAX_ASYNC_DRAW_PIXELS_SGIX 0x8360 +#define GL_MAX_ASYNC_READ_PIXELS_SGIX 0x8361 +#endif /* GL_SGIX_async_pixel */ + +#ifndef GL_SGIX_blend_alpha_minmax +#define GL_SGIX_blend_alpha_minmax 1 +#define GL_ALPHA_MIN_SGIX 0x8320 +#define GL_ALPHA_MAX_SGIX 0x8321 +#endif /* GL_SGIX_blend_alpha_minmax */ + +#ifndef GL_SGIX_calligraphic_fragment +#define GL_SGIX_calligraphic_fragment 1 +#define GL_CALLIGRAPHIC_FRAGMENT_SGIX 0x8183 +#endif /* GL_SGIX_calligraphic_fragment */ + +#ifndef GL_SGIX_clipmap +#define GL_SGIX_clipmap 1 +#define GL_LINEAR_CLIPMAP_LINEAR_SGIX 0x8170 +#define GL_TEXTURE_CLIPMAP_CENTER_SGIX 0x8171 +#define GL_TEXTURE_CLIPMAP_FRAME_SGIX 0x8172 +#define GL_TEXTURE_CLIPMAP_OFFSET_SGIX 0x8173 +#define GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8174 +#define GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX 0x8175 +#define GL_TEXTURE_CLIPMAP_DEPTH_SGIX 0x8176 +#define GL_MAX_CLIPMAP_DEPTH_SGIX 0x8177 +#define GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8178 +#define GL_NEAREST_CLIPMAP_NEAREST_SGIX 0x844D +#define GL_NEAREST_CLIPMAP_LINEAR_SGIX 0x844E +#define GL_LINEAR_CLIPMAP_NEAREST_SGIX 0x844F +#endif /* GL_SGIX_clipmap */ + +#ifndef GL_SGIX_convolution_accuracy +#define GL_SGIX_convolution_accuracy 1 +#define GL_CONVOLUTION_HINT_SGIX 0x8316 +#endif /* GL_SGIX_convolution_accuracy */ + +#ifndef GL_SGIX_depth_pass_instrument +#define GL_SGIX_depth_pass_instrument 1 +#endif /* GL_SGIX_depth_pass_instrument */ + +#ifndef GL_SGIX_depth_texture +#define GL_SGIX_depth_texture 1 +#define GL_DEPTH_COMPONENT16_SGIX 0x81A5 +#define GL_DEPTH_COMPONENT24_SGIX 0x81A6 +#define GL_DEPTH_COMPONENT32_SGIX 0x81A7 +#endif /* GL_SGIX_depth_texture */ + +#ifndef GL_SGIX_flush_raster +#define GL_SGIX_flush_raster 1 +typedef void (APIENTRYP PFNGLFLUSHRASTERSGIXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushRasterSGIX (void); +#endif +#endif /* GL_SGIX_flush_raster */ + +#ifndef GL_SGIX_fog_offset +#define GL_SGIX_fog_offset 1 +#define GL_FOG_OFFSET_SGIX 0x8198 +#define GL_FOG_OFFSET_VALUE_SGIX 0x8199 +#endif /* GL_SGIX_fog_offset */ + +#ifndef GL_SGIX_fragment_lighting +#define GL_SGIX_fragment_lighting 1 +#define GL_FRAGMENT_LIGHTING_SGIX 0x8400 +#define GL_FRAGMENT_COLOR_MATERIAL_SGIX 0x8401 +#define GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX 0x8402 +#define GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX 0x8403 +#define GL_MAX_FRAGMENT_LIGHTS_SGIX 0x8404 +#define GL_MAX_ACTIVE_LIGHTS_SGIX 0x8405 +#define GL_CURRENT_RASTER_NORMAL_SGIX 0x8406 +#define GL_LIGHT_ENV_MODE_SGIX 0x8407 +#define GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX 0x8408 +#define GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX 0x8409 +#define GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX 0x840A +#define GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX 0x840B +#define GL_FRAGMENT_LIGHT0_SGIX 0x840C +#define GL_FRAGMENT_LIGHT1_SGIX 0x840D +#define GL_FRAGMENT_LIGHT2_SGIX 0x840E +#define GL_FRAGMENT_LIGHT3_SGIX 0x840F +#define GL_FRAGMENT_LIGHT4_SGIX 0x8410 +#define GL_FRAGMENT_LIGHT5_SGIX 0x8411 +#define GL_FRAGMENT_LIGHT6_SGIX 0x8412 +#define GL_FRAGMENT_LIGHT7_SGIX 0x8413 +typedef void (APIENTRYP PFNGLFRAGMENTCOLORMATERIALSGIXPROC) (GLenum face, GLenum mode); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFSGIXPROC) (GLenum light, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTISGIXPROC) (GLenum light, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFSGIXPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFVSGIXPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELISGIXPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELIVSGIXPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFSGIXPROC) (GLenum face, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALISGIXPROC) (GLenum face, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLLIGHTENVISGIXPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFragmentColorMaterialSGIX (GLenum face, GLenum mode); +GLAPI void APIENTRY glFragmentLightfSGIX (GLenum light, GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentLightfvSGIX (GLenum light, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentLightiSGIX (GLenum light, GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentLightivSGIX (GLenum light, GLenum pname, const GLint *params); +GLAPI void APIENTRY glFragmentLightModelfSGIX (GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentLightModelfvSGIX (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentLightModeliSGIX (GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentLightModelivSGIX (GLenum pname, const GLint *params); +GLAPI void APIENTRY glFragmentMaterialfSGIX (GLenum face, GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentMaterialfvSGIX (GLenum face, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentMaterialiSGIX (GLenum face, GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentMaterialivSGIX (GLenum face, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetFragmentLightfvSGIX (GLenum light, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFragmentLightivSGIX (GLenum light, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetFragmentMaterialfvSGIX (GLenum face, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFragmentMaterialivSGIX (GLenum face, GLenum pname, GLint *params); +GLAPI void APIENTRY glLightEnviSGIX (GLenum pname, GLint param); +#endif +#endif /* GL_SGIX_fragment_lighting */ + +#ifndef GL_SGIX_framezoom +#define GL_SGIX_framezoom 1 +#define GL_FRAMEZOOM_SGIX 0x818B +#define GL_FRAMEZOOM_FACTOR_SGIX 0x818C +#define GL_MAX_FRAMEZOOM_FACTOR_SGIX 0x818D +typedef void (APIENTRYP PFNGLFRAMEZOOMSGIXPROC) (GLint factor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFrameZoomSGIX (GLint factor); +#endif +#endif /* GL_SGIX_framezoom */ + +#ifndef GL_SGIX_igloo_interface +#define GL_SGIX_igloo_interface 1 +typedef void (APIENTRYP PFNGLIGLOOINTERFACESGIXPROC) (GLenum pname, const void *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIglooInterfaceSGIX (GLenum pname, const void *params); +#endif +#endif /* GL_SGIX_igloo_interface */ + +#ifndef GL_SGIX_instruments +#define GL_SGIX_instruments 1 +#define GL_INSTRUMENT_BUFFER_POINTER_SGIX 0x8180 +#define GL_INSTRUMENT_MEASUREMENTS_SGIX 0x8181 +typedef GLint (APIENTRYP PFNGLGETINSTRUMENTSSGIXPROC) (void); +typedef void (APIENTRYP PFNGLINSTRUMENTSBUFFERSGIXPROC) (GLsizei size, GLint *buffer); +typedef GLint (APIENTRYP PFNGLPOLLINSTRUMENTSSGIXPROC) (GLint *marker_p); +typedef void (APIENTRYP PFNGLREADINSTRUMENTSSGIXPROC) (GLint marker); +typedef void (APIENTRYP PFNGLSTARTINSTRUMENTSSGIXPROC) (void); +typedef void (APIENTRYP PFNGLSTOPINSTRUMENTSSGIXPROC) (GLint marker); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLint APIENTRY glGetInstrumentsSGIX (void); +GLAPI void APIENTRY glInstrumentsBufferSGIX (GLsizei size, GLint *buffer); +GLAPI GLint APIENTRY glPollInstrumentsSGIX (GLint *marker_p); +GLAPI void APIENTRY glReadInstrumentsSGIX (GLint marker); +GLAPI void APIENTRY glStartInstrumentsSGIX (void); +GLAPI void APIENTRY glStopInstrumentsSGIX (GLint marker); +#endif +#endif /* GL_SGIX_instruments */ + +#ifndef GL_SGIX_interlace +#define GL_SGIX_interlace 1 +#define GL_INTERLACE_SGIX 0x8094 +#endif /* GL_SGIX_interlace */ + +#ifndef GL_SGIX_ir_instrument1 +#define GL_SGIX_ir_instrument1 1 +#define GL_IR_INSTRUMENT1_SGIX 0x817F +#endif /* GL_SGIX_ir_instrument1 */ + +#ifndef GL_SGIX_list_priority +#define GL_SGIX_list_priority 1 +#define GL_LIST_PRIORITY_SGIX 0x8182 +typedef void (APIENTRYP PFNGLGETLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLLISTPARAMETERFSGIXPROC) (GLuint list, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLLISTPARAMETERISGIXPROC) (GLuint list, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, const GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetListParameterfvSGIX (GLuint list, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetListParameterivSGIX (GLuint list, GLenum pname, GLint *params); +GLAPI void APIENTRY glListParameterfSGIX (GLuint list, GLenum pname, GLfloat param); +GLAPI void APIENTRY glListParameterfvSGIX (GLuint list, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glListParameteriSGIX (GLuint list, GLenum pname, GLint param); +GLAPI void APIENTRY glListParameterivSGIX (GLuint list, GLenum pname, const GLint *params); +#endif +#endif /* GL_SGIX_list_priority */ + +#ifndef GL_SGIX_pixel_texture +#define GL_SGIX_pixel_texture 1 +#define GL_PIXEL_TEX_GEN_SGIX 0x8139 +#define GL_PIXEL_TEX_GEN_MODE_SGIX 0x832B +typedef void (APIENTRYP PFNGLPIXELTEXGENSGIXPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTexGenSGIX (GLenum mode); +#endif +#endif /* GL_SGIX_pixel_texture */ + +#ifndef GL_SGIX_pixel_tiles +#define GL_SGIX_pixel_tiles 1 +#define GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX 0x813E +#define GL_PIXEL_TILE_CACHE_INCREMENT_SGIX 0x813F +#define GL_PIXEL_TILE_WIDTH_SGIX 0x8140 +#define GL_PIXEL_TILE_HEIGHT_SGIX 0x8141 +#define GL_PIXEL_TILE_GRID_WIDTH_SGIX 0x8142 +#define GL_PIXEL_TILE_GRID_HEIGHT_SGIX 0x8143 +#define GL_PIXEL_TILE_GRID_DEPTH_SGIX 0x8144 +#define GL_PIXEL_TILE_CACHE_SIZE_SGIX 0x8145 +#endif /* GL_SGIX_pixel_tiles */ + +#ifndef GL_SGIX_polynomial_ffd +#define GL_SGIX_polynomial_ffd 1 +#define GL_TEXTURE_DEFORMATION_BIT_SGIX 0x00000001 +#define GL_GEOMETRY_DEFORMATION_BIT_SGIX 0x00000002 +#define GL_GEOMETRY_DEFORMATION_SGIX 0x8194 +#define GL_TEXTURE_DEFORMATION_SGIX 0x8195 +#define GL_DEFORMATIONS_MASK_SGIX 0x8196 +#define GL_MAX_DEFORMATION_ORDER_SGIX 0x8197 +typedef void (APIENTRYP PFNGLDEFORMATIONMAP3DSGIXPROC) (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points); +typedef void (APIENTRYP PFNGLDEFORMATIONMAP3FSGIXPROC) (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points); +typedef void (APIENTRYP PFNGLDEFORMSGIXPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLLOADIDENTITYDEFORMATIONMAPSGIXPROC) (GLbitfield mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeformationMap3dSGIX (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points); +GLAPI void APIENTRY glDeformationMap3fSGIX (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points); +GLAPI void APIENTRY glDeformSGIX (GLbitfield mask); +GLAPI void APIENTRY glLoadIdentityDeformationMapSGIX (GLbitfield mask); +#endif +#endif /* GL_SGIX_polynomial_ffd */ + +#ifndef GL_SGIX_reference_plane +#define GL_SGIX_reference_plane 1 +#define GL_REFERENCE_PLANE_SGIX 0x817D +#define GL_REFERENCE_PLANE_EQUATION_SGIX 0x817E +typedef void (APIENTRYP PFNGLREFERENCEPLANESGIXPROC) (const GLdouble *equation); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReferencePlaneSGIX (const GLdouble *equation); +#endif +#endif /* GL_SGIX_reference_plane */ + +#ifndef GL_SGIX_resample +#define GL_SGIX_resample 1 +#define GL_PACK_RESAMPLE_SGIX 0x842E +#define GL_UNPACK_RESAMPLE_SGIX 0x842F +#define GL_RESAMPLE_REPLICATE_SGIX 0x8433 +#define GL_RESAMPLE_ZERO_FILL_SGIX 0x8434 +#define GL_RESAMPLE_DECIMATE_SGIX 0x8430 +#endif /* GL_SGIX_resample */ + +#ifndef GL_SGIX_scalebias_hint +#define GL_SGIX_scalebias_hint 1 +#define GL_SCALEBIAS_HINT_SGIX 0x8322 +#endif /* GL_SGIX_scalebias_hint */ + +#ifndef GL_SGIX_shadow +#define GL_SGIX_shadow 1 +#define GL_TEXTURE_COMPARE_SGIX 0x819A +#define GL_TEXTURE_COMPARE_OPERATOR_SGIX 0x819B +#define GL_TEXTURE_LEQUAL_R_SGIX 0x819C +#define GL_TEXTURE_GEQUAL_R_SGIX 0x819D +#endif /* GL_SGIX_shadow */ + +#ifndef GL_SGIX_shadow_ambient +#define GL_SGIX_shadow_ambient 1 +#define GL_SHADOW_AMBIENT_SGIX 0x80BF +#endif /* GL_SGIX_shadow_ambient */ + +#ifndef GL_SGIX_sprite +#define GL_SGIX_sprite 1 +#define GL_SPRITE_SGIX 0x8148 +#define GL_SPRITE_MODE_SGIX 0x8149 +#define GL_SPRITE_AXIS_SGIX 0x814A +#define GL_SPRITE_TRANSLATION_SGIX 0x814B +#define GL_SPRITE_AXIAL_SGIX 0x814C +#define GL_SPRITE_OBJECT_ALIGNED_SGIX 0x814D +#define GL_SPRITE_EYE_ALIGNED_SGIX 0x814E +typedef void (APIENTRYP PFNGLSPRITEPARAMETERFSGIXPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERFVSGIXPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERISGIXPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERIVSGIXPROC) (GLenum pname, const GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpriteParameterfSGIX (GLenum pname, GLfloat param); +GLAPI void APIENTRY glSpriteParameterfvSGIX (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glSpriteParameteriSGIX (GLenum pname, GLint param); +GLAPI void APIENTRY glSpriteParameterivSGIX (GLenum pname, const GLint *params); +#endif +#endif /* GL_SGIX_sprite */ + +#ifndef GL_SGIX_subsample +#define GL_SGIX_subsample 1 +#define GL_PACK_SUBSAMPLE_RATE_SGIX 0x85A0 +#define GL_UNPACK_SUBSAMPLE_RATE_SGIX 0x85A1 +#define GL_PIXEL_SUBSAMPLE_4444_SGIX 0x85A2 +#define GL_PIXEL_SUBSAMPLE_2424_SGIX 0x85A3 +#define GL_PIXEL_SUBSAMPLE_4242_SGIX 0x85A4 +#endif /* GL_SGIX_subsample */ + +#ifndef GL_SGIX_tag_sample_buffer +#define GL_SGIX_tag_sample_buffer 1 +typedef void (APIENTRYP PFNGLTAGSAMPLEBUFFERSGIXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTagSampleBufferSGIX (void); +#endif +#endif /* GL_SGIX_tag_sample_buffer */ + +#ifndef GL_SGIX_texture_add_env +#define GL_SGIX_texture_add_env 1 +#define GL_TEXTURE_ENV_BIAS_SGIX 0x80BE +#endif /* GL_SGIX_texture_add_env */ + +#ifndef GL_SGIX_texture_coordinate_clamp +#define GL_SGIX_texture_coordinate_clamp 1 +#define GL_TEXTURE_MAX_CLAMP_S_SGIX 0x8369 +#define GL_TEXTURE_MAX_CLAMP_T_SGIX 0x836A +#define GL_TEXTURE_MAX_CLAMP_R_SGIX 0x836B +#endif /* GL_SGIX_texture_coordinate_clamp */ + +#ifndef GL_SGIX_texture_lod_bias +#define GL_SGIX_texture_lod_bias 1 +#define GL_TEXTURE_LOD_BIAS_S_SGIX 0x818E +#define GL_TEXTURE_LOD_BIAS_T_SGIX 0x818F +#define GL_TEXTURE_LOD_BIAS_R_SGIX 0x8190 +#endif /* GL_SGIX_texture_lod_bias */ + +#ifndef GL_SGIX_texture_multi_buffer +#define GL_SGIX_texture_multi_buffer 1 +#define GL_TEXTURE_MULTI_BUFFER_HINT_SGIX 0x812E +#endif /* GL_SGIX_texture_multi_buffer */ + +#ifndef GL_SGIX_texture_scale_bias +#define GL_SGIX_texture_scale_bias 1 +#define GL_POST_TEXTURE_FILTER_BIAS_SGIX 0x8179 +#define GL_POST_TEXTURE_FILTER_SCALE_SGIX 0x817A +#define GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX 0x817B +#define GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX 0x817C +#endif /* GL_SGIX_texture_scale_bias */ + +#ifndef GL_SGIX_vertex_preclip +#define GL_SGIX_vertex_preclip 1 +#define GL_VERTEX_PRECLIP_SGIX 0x83EE +#define GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF +#endif /* GL_SGIX_vertex_preclip */ + +#ifndef GL_SGIX_ycrcb +#define GL_SGIX_ycrcb 1 +#define GL_YCRCB_422_SGIX 0x81BB +#define GL_YCRCB_444_SGIX 0x81BC +#endif /* GL_SGIX_ycrcb */ + +#ifndef GL_SGIX_ycrcb_subsample +#define GL_SGIX_ycrcb_subsample 1 +#endif /* GL_SGIX_ycrcb_subsample */ + +#ifndef GL_SGIX_ycrcba +#define GL_SGIX_ycrcba 1 +#define GL_YCRCB_SGIX 0x8318 +#define GL_YCRCBA_SGIX 0x8319 +#endif /* GL_SGIX_ycrcba */ + +#ifndef GL_SGI_color_matrix +#define GL_SGI_color_matrix 1 +#define GL_COLOR_MATRIX_SGI 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE_SGI 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS_SGI 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI 0x80BB +#endif /* GL_SGI_color_matrix */ + +#ifndef GL_SGI_color_table +#define GL_SGI_color_table 1 +#define GL_COLOR_TABLE_SGI 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D2 +#define GL_PROXY_COLOR_TABLE_SGI 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D5 +#define GL_COLOR_TABLE_SCALE_SGI 0x80D6 +#define GL_COLOR_TABLE_BIAS_SGI 0x80D7 +#define GL_COLOR_TABLE_FORMAT_SGI 0x80D8 +#define GL_COLOR_TABLE_WIDTH_SGI 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE_SGI 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE_SGI 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE_SGI 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE_SGI 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE_SGI 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE_SGI 0x80DF +typedef void (APIENTRYP PFNGLCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLGETCOLORTABLESGIPROC) (GLenum target, GLenum format, GLenum type, void *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTableSGI (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +GLAPI void APIENTRY glColorTableParameterfvSGI (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glColorTableParameterivSGI (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyColorTableSGI (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glGetColorTableSGI (GLenum target, GLenum format, GLenum type, void *table); +GLAPI void APIENTRY glGetColorTableParameterfvSGI (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetColorTableParameterivSGI (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_SGI_color_table */ + +#ifndef GL_SGI_texture_color_table +#define GL_SGI_texture_color_table 1 +#define GL_TEXTURE_COLOR_TABLE_SGI 0x80BC +#define GL_PROXY_TEXTURE_COLOR_TABLE_SGI 0x80BD +#endif /* GL_SGI_texture_color_table */ + +#ifndef GL_SUNX_constant_data +#define GL_SUNX_constant_data 1 +#define GL_UNPACK_CONSTANT_DATA_SUNX 0x81D5 +#define GL_TEXTURE_CONSTANT_DATA_SUNX 0x81D6 +typedef void (APIENTRYP PFNGLFINISHTEXTURESUNXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFinishTextureSUNX (void); +#endif +#endif /* GL_SUNX_constant_data */ + +#ifndef GL_SUN_convolution_border_modes +#define GL_SUN_convolution_border_modes 1 +#define GL_WRAP_BORDER_SUN 0x81D4 +#endif /* GL_SUN_convolution_border_modes */ + +#ifndef GL_SUN_global_alpha +#define GL_SUN_global_alpha 1 +#define GL_GLOBAL_ALPHA_SUN 0x81D9 +#define GL_GLOBAL_ALPHA_FACTOR_SUN 0x81DA +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORBSUNPROC) (GLbyte factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORSSUNPROC) (GLshort factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORISUNPROC) (GLint factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORFSUNPROC) (GLfloat factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORDSUNPROC) (GLdouble factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUBSUNPROC) (GLubyte factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUSSUNPROC) (GLushort factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUISUNPROC) (GLuint factor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGlobalAlphaFactorbSUN (GLbyte factor); +GLAPI void APIENTRY glGlobalAlphaFactorsSUN (GLshort factor); +GLAPI void APIENTRY glGlobalAlphaFactoriSUN (GLint factor); +GLAPI void APIENTRY glGlobalAlphaFactorfSUN (GLfloat factor); +GLAPI void APIENTRY glGlobalAlphaFactordSUN (GLdouble factor); +GLAPI void APIENTRY glGlobalAlphaFactorubSUN (GLubyte factor); +GLAPI void APIENTRY glGlobalAlphaFactorusSUN (GLushort factor); +GLAPI void APIENTRY glGlobalAlphaFactoruiSUN (GLuint factor); +#endif +#endif /* GL_SUN_global_alpha */ + +#ifndef GL_SUN_mesh_array +#define GL_SUN_mesh_array 1 +#define GL_QUAD_MESH_SUN 0x8614 +#define GL_TRIANGLE_MESH_SUN 0x8615 +typedef void (APIENTRYP PFNGLDRAWMESHARRAYSSUNPROC) (GLenum mode, GLint first, GLsizei count, GLsizei width); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawMeshArraysSUN (GLenum mode, GLint first, GLsizei count, GLsizei width); +#endif +#endif /* GL_SUN_mesh_array */ + +#ifndef GL_SUN_slice_accum +#define GL_SUN_slice_accum 1 +#define GL_SLICE_ACCUM_SUN 0x85CC +#endif /* GL_SUN_slice_accum */ + +#ifndef GL_SUN_triangle_list +#define GL_SUN_triangle_list 1 +#define GL_RESTART_SUN 0x0001 +#define GL_REPLACE_MIDDLE_SUN 0x0002 +#define GL_REPLACE_OLDEST_SUN 0x0003 +#define GL_TRIANGLE_LIST_SUN 0x81D7 +#define GL_REPLACEMENT_CODE_SUN 0x81D8 +#define GL_REPLACEMENT_CODE_ARRAY_SUN 0x85C0 +#define GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN 0x85C1 +#define GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN 0x85C2 +#define GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN 0x85C3 +#define GL_R1UI_V3F_SUN 0x85C4 +#define GL_R1UI_C4UB_V3F_SUN 0x85C5 +#define GL_R1UI_C3F_V3F_SUN 0x85C6 +#define GL_R1UI_N3F_V3F_SUN 0x85C7 +#define GL_R1UI_C4F_N3F_V3F_SUN 0x85C8 +#define GL_R1UI_T2F_V3F_SUN 0x85C9 +#define GL_R1UI_T2F_N3F_V3F_SUN 0x85CA +#define GL_R1UI_T2F_C4F_N3F_V3F_SUN 0x85CB +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUISUNPROC) (GLuint code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSSUNPROC) (GLushort code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBSUNPROC) (GLubyte code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVSUNPROC) (const GLuint *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSVSUNPROC) (const GLushort *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBVSUNPROC) (const GLubyte *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEPOINTERSUNPROC) (GLenum type, GLsizei stride, const void **pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReplacementCodeuiSUN (GLuint code); +GLAPI void APIENTRY glReplacementCodeusSUN (GLushort code); +GLAPI void APIENTRY glReplacementCodeubSUN (GLubyte code); +GLAPI void APIENTRY glReplacementCodeuivSUN (const GLuint *code); +GLAPI void APIENTRY glReplacementCodeusvSUN (const GLushort *code); +GLAPI void APIENTRY glReplacementCodeubvSUN (const GLubyte *code); +GLAPI void APIENTRY glReplacementCodePointerSUN (GLenum type, GLsizei stride, const void **pointer); +#endif +#endif /* GL_SUN_triangle_list */ + +#ifndef GL_SUN_vertex +#define GL_SUN_vertex 1 +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FVSUNPROC) (const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FVSUNPROC) (const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FSUNPROC) (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FVSUNPROC) (const GLfloat *tc, const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FSUNPROC) (GLuint rc, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FSUNPROC) (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FVSUNPROC) (const GLuint *rc, const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColor4ubVertex2fSUN (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y); +GLAPI void APIENTRY glColor4ubVertex2fvSUN (const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glColor4ubVertex3fSUN (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor4ubVertex3fvSUN (const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glColor3fVertex3fSUN (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor3fVertex3fvSUN (const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glNormal3fVertex3fSUN (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glNormal3fVertex3fvSUN (const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glColor4fNormal3fVertex3fSUN (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor4fNormal3fVertex3fvSUN (const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fVertex3fSUN (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fVertex3fvSUN (const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glTexCoord4fVertex4fSUN (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glTexCoord4fVertex4fvSUN (const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fSUN (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fvSUN (const GLfloat *tc, const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fSUN (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiVertex3fSUN (GLuint rc, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiVertex3fvSUN (const GLuint *rc, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fSUN (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fvSUN (const GLuint *rc, const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fSUN (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fvSUN (const GLuint *rc, const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fSUN (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fSUN (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +#endif +#endif /* GL_SUN_vertex */ + +#ifndef GL_WIN_phong_shading +#define GL_WIN_phong_shading 1 +#define GL_PHONG_WIN 0x80EA +#define GL_PHONG_HINT_WIN 0x80EB +#endif /* GL_WIN_phong_shading */ + +#ifndef GL_WIN_specular_fog +#define GL_WIN_specular_fog 1 +#define GL_FOG_SPECULAR_TEXTURE_WIN 0x80EC +#endif /* GL_WIN_specular_fog */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles.h new file mode 100644 index 0000000..4fb9a4b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles.h @@ -0,0 +1,38 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the OpenGL ES 1.X API headers. + */ + +#include + +#ifdef SDL_PLATFORM_IOS +#include +#include +#else +#include +#include +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2.h new file mode 100644 index 0000000..365898a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2.h @@ -0,0 +1,51 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the OpenGL ES 2.0 API headers. + */ + +#include + +#if !defined(_MSC_VER) && !defined(SDL_USE_BUILTIN_OPENGL_DEFINITIONS) + +#ifdef SDL_PLATFORM_IOS +#include +#include +#else +#include +#include +#include +#endif + +#else /* _MSC_VER */ + +/* OpenGL ES2 headers for Visual Studio */ +#include +#include +#include +#include + +#endif /* _MSC_VER */ + +#ifndef APIENTRY +#define APIENTRY GL_APIENTRY +#endif diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2.h new file mode 100644 index 0000000..d13622a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2.h @@ -0,0 +1,656 @@ +#ifndef __gles2_gl2_h_ +#define __gles2_gl2_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +/*#include */ + +#ifndef GL_APIENTRYP +#define GL_APIENTRYP GL_APIENTRY* +#endif + +#ifndef GL_GLES_PROTOTYPES +#define GL_GLES_PROTOTYPES 1 +#endif + +/* Generated on date 20220530 */ + +/* Generated C header for: + * API: gles2 + * Profile: common + * Versions considered: 2\.[0-9] + * Versions emitted: .* + * Default extensions included: None + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_ES_VERSION_2_0 +#define GL_ES_VERSION_2_0 1 +/*#include */ +typedef khronos_int8_t GLbyte; +typedef khronos_float_t GLclampf; +typedef khronos_int32_t GLfixed; +typedef khronos_int16_t GLshort; +typedef khronos_uint16_t GLushort; +typedef void GLvoid; +typedef struct __GLsync *GLsync; +typedef khronos_int64_t GLint64; +typedef khronos_uint64_t GLuint64; +typedef unsigned int GLenum; +typedef unsigned int GLuint; +typedef char GLchar; +typedef khronos_float_t GLfloat; +typedef khronos_ssize_t GLsizeiptr; +typedef khronos_intptr_t GLintptr; +typedef unsigned int GLbitfield; +typedef int GLint; +typedef unsigned char GLboolean; +typedef int GLsizei; +typedef khronos_uint8_t GLubyte; +#define GL_DEPTH_BUFFER_BIT 0x00000100 +#define GL_STENCIL_BUFFER_BIT 0x00000400 +#define GL_COLOR_BUFFER_BIT 0x00004000 +#define GL_FALSE 0 +#define GL_TRUE 1 +#define GL_POINTS 0x0000 +#define GL_LINES 0x0001 +#define GL_LINE_LOOP 0x0002 +#define GL_LINE_STRIP 0x0003 +#define GL_TRIANGLES 0x0004 +#define GL_TRIANGLE_STRIP 0x0005 +#define GL_TRIANGLE_FAN 0x0006 +#define GL_ZERO 0 +#define GL_ONE 1 +#define GL_SRC_COLOR 0x0300 +#define GL_ONE_MINUS_SRC_COLOR 0x0301 +#define GL_SRC_ALPHA 0x0302 +#define GL_ONE_MINUS_SRC_ALPHA 0x0303 +#define GL_DST_ALPHA 0x0304 +#define GL_ONE_MINUS_DST_ALPHA 0x0305 +#define GL_DST_COLOR 0x0306 +#define GL_ONE_MINUS_DST_COLOR 0x0307 +#define GL_SRC_ALPHA_SATURATE 0x0308 +#define GL_FUNC_ADD 0x8006 +#define GL_BLEND_EQUATION 0x8009 +#define GL_BLEND_EQUATION_RGB 0x8009 +#define GL_BLEND_EQUATION_ALPHA 0x883D +#define GL_FUNC_SUBTRACT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_BLEND_DST_RGB 0x80C8 +#define GL_BLEND_SRC_RGB 0x80C9 +#define GL_BLEND_DST_ALPHA 0x80CA +#define GL_BLEND_SRC_ALPHA 0x80CB +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_BLEND_COLOR 0x8005 +#define GL_ARRAY_BUFFER 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER 0x8893 +#define GL_ARRAY_BUFFER_BINDING 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 +#define GL_STREAM_DRAW 0x88E0 +#define GL_STATIC_DRAW 0x88E4 +#define GL_DYNAMIC_DRAW 0x88E8 +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_FRONT_AND_BACK 0x0408 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_CULL_FACE 0x0B44 +#define GL_BLEND 0x0BE2 +#define GL_DITHER 0x0BD0 +#define GL_STENCIL_TEST 0x0B90 +#define GL_DEPTH_TEST 0x0B71 +#define GL_SCISSOR_TEST 0x0C11 +#define GL_POLYGON_OFFSET_FILL 0x8037 +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_NO_ERROR 0 +#define GL_INVALID_ENUM 0x0500 +#define GL_INVALID_VALUE 0x0501 +#define GL_INVALID_OPERATION 0x0502 +#define GL_OUT_OF_MEMORY 0x0505 +#define GL_CW 0x0900 +#define GL_CCW 0x0901 +#define GL_LINE_WIDTH 0x0B21 +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#define GL_STENCIL_FAIL 0x0B94 +#define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 +#define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 +#define GL_STENCIL_REF 0x0B97 +#define GL_STENCIL_VALUE_MASK 0x0B93 +#define GL_STENCIL_WRITEMASK 0x0B98 +#define GL_STENCIL_BACK_FUNC 0x8800 +#define GL_STENCIL_BACK_FAIL 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 +#define GL_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 +#define GL_VIEWPORT 0x0BA2 +#define GL_SCISSOR_BOX 0x0C10 +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_SUBPIXEL_BITS 0x0D50 +#define GL_RED_BITS 0x0D52 +#define GL_GREEN_BITS 0x0D53 +#define GL_BLUE_BITS 0x0D54 +#define GL_ALPHA_BITS 0x0D55 +#define GL_DEPTH_BITS 0x0D56 +#define GL_STENCIL_BITS 0x0D57 +#define GL_POLYGON_OFFSET_UNITS 0x2A00 +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_TEXTURE_BINDING_2D 0x8069 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 +#define GL_GENERATE_MIPMAP_HINT 0x8192 +#define GL_BYTE 0x1400 +#define GL_UNSIGNED_BYTE 0x1401 +#define GL_SHORT 0x1402 +#define GL_UNSIGNED_SHORT 0x1403 +#define GL_INT 0x1404 +#define GL_UNSIGNED_INT 0x1405 +#define GL_FLOAT 0x1406 +#define GL_FIXED 0x140C +#define GL_DEPTH_COMPONENT 0x1902 +#define GL_ALPHA 0x1906 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 +#define GL_LUMINANCE 0x1909 +#define GL_LUMINANCE_ALPHA 0x190A +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB +#define GL_MAX_VARYING_VECTORS 0x8DFC +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD +#define GL_SHADER_TYPE 0x8B4F +#define GL_DELETE_STATUS 0x8B80 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D +#define GL_NEVER 0x0200 +#define GL_LESS 0x0201 +#define GL_EQUAL 0x0202 +#define GL_LEQUAL 0x0203 +#define GL_GREATER 0x0204 +#define GL_NOTEQUAL 0x0205 +#define GL_GEQUAL 0x0206 +#define GL_ALWAYS 0x0207 +#define GL_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 +#define GL_INVERT 0x150A +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 +#define GL_VENDOR 0x1F00 +#define GL_RENDERER 0x1F01 +#define GL_VERSION 0x1F02 +#define GL_EXTENSIONS 0x1F03 +#define GL_NEAREST 0x2600 +#define GL_LINEAR 0x2601 +#define GL_NEAREST_MIPMAP_NEAREST 0x2700 +#define GL_LINEAR_MIPMAP_NEAREST 0x2701 +#define GL_NEAREST_MIPMAP_LINEAR 0x2702 +#define GL_LINEAR_MIPMAP_LINEAR 0x2703 +#define GL_TEXTURE_MAG_FILTER 0x2800 +#define GL_TEXTURE_MIN_FILTER 0x2801 +#define GL_TEXTURE_WRAP_S 0x2802 +#define GL_TEXTURE_WRAP_T 0x2803 +#define GL_TEXTURE 0x1702 +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_REPEAT 0x2901 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_MIRRORED_REPEAT 0x8370 +#define GL_FLOAT_VEC2 0x8B50 +#define GL_FLOAT_VEC3 0x8B51 +#define GL_FLOAT_VEC4 0x8B52 +#define GL_INT_VEC2 0x8B53 +#define GL_INT_VEC3 0x8B54 +#define GL_INT_VEC4 0x8B55 +#define GL_BOOL 0x8B56 +#define GL_BOOL_VEC2 0x8B57 +#define GL_BOOL_VEC3 0x8B58 +#define GL_BOOL_VEC4 0x8B59 +#define GL_FLOAT_MAT2 0x8B5A +#define GL_FLOAT_MAT3 0x8B5B +#define GL_FLOAT_MAT4 0x8B5C +#define GL_SAMPLER_2D 0x8B5E +#define GL_SAMPLER_CUBE 0x8B60 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F +#define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B +#define GL_COMPILE_STATUS 0x8B81 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_SHADER_COMPILER 0x8DFA +#define GL_SHADER_BINARY_FORMATS 0x8DF8 +#define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 +#define GL_LOW_FLOAT 0x8DF0 +#define GL_MEDIUM_FLOAT 0x8DF1 +#define GL_HIGH_FLOAT 0x8DF2 +#define GL_LOW_INT 0x8DF3 +#define GL_MEDIUM_INT 0x8DF4 +#define GL_HIGH_INT 0x8DF5 +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGB565 0x8D62 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_STENCIL_INDEX8 0x8D48 +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#define GL_RENDERBUFFER_RED_SIZE 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 +#define GL_COLOR_ATTACHMENT0 0x8CE0 +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 +#define GL_NONE 0 +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS 0x8CD9 +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 +typedef void (GL_APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (GL_APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (GL_APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer); +typedef void (GL_APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer); +typedef void (GL_APIENTRYP PFNGLBINDTEXTUREPROC) (GLenum target, GLuint texture); +typedef void (GL_APIENTRYP PFNGLBLENDCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCPROC) (GLenum sfactor, GLenum dfactor); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +typedef void (GL_APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +typedef void (GL_APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +typedef GLenum (GL_APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLCLEARPROC) (GLbitfield mask); +typedef void (GL_APIENTRYP PFNGLCLEARCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (GL_APIENTRYP PFNGLCLEARDEPTHFPROC) (GLfloat d); +typedef void (GL_APIENTRYP PFNGLCLEARSTENCILPROC) (GLint s); +typedef void (GL_APIENTRYP PFNGLCOLORMASKPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +typedef void (GL_APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOPYTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (GL_APIENTRYP PFNGLCOPYTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef GLuint (GL_APIENTRYP PFNGLCREATEPROGRAMPROC) (void); +typedef GLuint (GL_APIENTRYP PFNGLCREATESHADERPROC) (GLenum type); +typedef void (GL_APIENTRYP PFNGLCULLFACEPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers); +typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLDELETERENDERBUFFERSPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (GL_APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader); +typedef void (GL_APIENTRYP PFNGLDELETETEXTURESPROC) (GLsizei n, const GLuint *textures); +typedef void (GL_APIENTRYP PFNGLDEPTHFUNCPROC) (GLenum func); +typedef void (GL_APIENTRYP PFNGLDEPTHMASKPROC) (GLboolean flag); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEFPROC) (GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (GL_APIENTRYP PFNGLDISABLEPROC) (GLenum cap); +typedef void (GL_APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices); +typedef void (GL_APIENTRYP PFNGLENABLEPROC) (GLenum cap); +typedef void (GL_APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (GL_APIENTRYP PFNGLFINISHPROC) (void); +typedef void (GL_APIENTRYP PFNGLFLUSHPROC) (void); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (GL_APIENTRYP PFNGLFRONTFACEPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef void (GL_APIENTRYP PFNGLGENERATEMIPMAPPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef void (GL_APIENTRYP PFNGLGENRENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (GL_APIENTRYP PFNGLGENTEXTURESPROC) (GLsizei n, GLuint *textures); +typedef void (GL_APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +typedef GLint (GL_APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETBOOLEANVPROC) (GLenum pname, GLboolean *data); +typedef void (GL_APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLenum (GL_APIENTRYP PFNGLGETERRORPROC) (void); +typedef void (GL_APIENTRYP PFNGLGETFLOATVPROC) (GLenum pname, GLfloat *data); +typedef void (GL_APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETINTEGERVPROC) (GLenum pname, GLint *data); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +typedef void (GL_APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +typedef const GLubyte *(GL_APIENTRYP PFNGLGETSTRINGPROC) (GLenum name); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params); +typedef GLint (GL_APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer); +typedef void (GL_APIENTRYP PFNGLHINTPROC) (GLenum target, GLenum mode); +typedef GLboolean (GL_APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDPROC) (GLenum cap); +typedef GLboolean (GL_APIENTRYP PFNGLISFRAMEBUFFERPROC) (GLuint framebuffer); +typedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPROC) (GLuint program); +typedef GLboolean (GL_APIENTRYP PFNGLISRENDERBUFFERPROC) (GLuint renderbuffer); +typedef GLboolean (GL_APIENTRYP PFNGLISSHADERPROC) (GLuint shader); +typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREPROC) (GLuint texture); +typedef void (GL_APIENTRYP PFNGLLINEWIDTHPROC) (GLfloat width); +typedef void (GL_APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLPIXELSTOREIPROC) (GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLPOLYGONOFFSETPROC) (GLfloat factor, GLfloat units); +typedef void (GL_APIENTRYP PFNGLREADPIXELSPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +typedef void (GL_APIENTRYP PFNGLRELEASESHADERCOMPILERPROC) (void); +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLfloat value, GLboolean invert); +typedef void (GL_APIENTRYP PFNGLSCISSORPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (GL_APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +typedef void (GL_APIENTRYP PFNGLSTENCILFUNCPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum face, GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILMASKPROC) (GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILOPPROC) (GLenum fail, GLenum zfail, GLenum zpass); +typedef void (GL_APIENTRYP PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (GL_APIENTRYP PFNGLTEXIMAGE2DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0); +typedef void (GL_APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0); +typedef void (GL_APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (GL_APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1); +typedef void (GL_APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (GL_APIENTRYP PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (GL_APIENTRYP PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (GL_APIENTRYP PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GL_APIENTRYP PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +typedef void (GL_APIENTRYP PFNGLVIEWPORTPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +#if GL_GLES_PROTOTYPES +GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture); +GL_APICALL void GL_APIENTRY glAttachShader (GLuint program, GLuint shader); +GL_APICALL void GL_APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar *name); +GL_APICALL void GL_APIENTRY glBindBuffer (GLenum target, GLuint buffer); +GL_APICALL void GL_APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer); +GL_APICALL void GL_APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer); +GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture); +GL_APICALL void GL_APIENTRY glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GL_APICALL void GL_APIENTRY glBlendEquation (GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunc (GLenum sfactor, GLenum dfactor); +GL_APICALL void GL_APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +GL_APICALL void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +GL_APICALL void GL_APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +GL_APICALL GLenum GL_APIENTRY glCheckFramebufferStatus (GLenum target); +GL_APICALL void GL_APIENTRY glClear (GLbitfield mask); +GL_APICALL void GL_APIENTRY glClearColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GL_APICALL void GL_APIENTRY glClearDepthf (GLfloat d); +GL_APICALL void GL_APIENTRY glClearStencil (GLint s); +GL_APICALL void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +GL_APICALL void GL_APIENTRY glCompileShader (GLuint shader); +GL_APICALL void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GL_APICALL void GL_APIENTRY glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL GLuint GL_APIENTRY glCreateProgram (void); +GL_APICALL GLuint GL_APIENTRY glCreateShader (GLenum type); +GL_APICALL void GL_APIENTRY glCullFace (GLenum mode); +GL_APICALL void GL_APIENTRY glDeleteBuffers (GLsizei n, const GLuint *buffers); +GL_APICALL void GL_APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); +GL_APICALL void GL_APIENTRY glDeleteProgram (GLuint program); +GL_APICALL void GL_APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint *renderbuffers); +GL_APICALL void GL_APIENTRY glDeleteShader (GLuint shader); +GL_APICALL void GL_APIENTRY glDeleteTextures (GLsizei n, const GLuint *textures); +GL_APICALL void GL_APIENTRY glDepthFunc (GLenum func); +GL_APICALL void GL_APIENTRY glDepthMask (GLboolean flag); +GL_APICALL void GL_APIENTRY glDepthRangef (GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glDetachShader (GLuint program, GLuint shader); +GL_APICALL void GL_APIENTRY glDisable (GLenum cap); +GL_APICALL void GL_APIENTRY glDisableVertexAttribArray (GLuint index); +GL_APICALL void GL_APIENTRY glDrawArrays (GLenum mode, GLint first, GLsizei count); +GL_APICALL void GL_APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const void *indices); +GL_APICALL void GL_APIENTRY glEnable (GLenum cap); +GL_APICALL void GL_APIENTRY glEnableVertexAttribArray (GLuint index); +GL_APICALL void GL_APIENTRY glFinish (void); +GL_APICALL void GL_APIENTRY glFlush (void); +GL_APICALL void GL_APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GL_APICALL void GL_APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GL_APICALL void GL_APIENTRY glFrontFace (GLenum mode); +GL_APICALL void GL_APIENTRY glGenBuffers (GLsizei n, GLuint *buffers); +GL_APICALL void GL_APIENTRY glGenerateMipmap (GLenum target); +GL_APICALL void GL_APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers); +GL_APICALL void GL_APIENTRY glGenRenderbuffers (GLsizei n, GLuint *renderbuffers); +GL_APICALL void GL_APIENTRY glGenTextures (GLsizei n, GLuint *textures); +GL_APICALL void GL_APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GL_APICALL void GL_APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GL_APICALL void GL_APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +GL_APICALL GLint GL_APIENTRY glGetAttribLocation (GLuint program, const GLchar *name); +GL_APICALL void GL_APIENTRY glGetBooleanv (GLenum pname, GLboolean *data); +GL_APICALL void GL_APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL GLenum GL_APIENTRY glGetError (void); +GL_APICALL void GL_APIENTRY glGetFloatv (GLenum pname, GLfloat *data); +GL_APICALL void GL_APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetIntegerv (GLenum pname, GLint *data); +GL_APICALL void GL_APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +GL_APICALL void GL_APIENTRY glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +GL_APICALL const GLubyte *GL_APIENTRY glGetString (GLenum name); +GL_APICALL void GL_APIENTRY glGetTexParameterfv (GLenum target, GLenum pname, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetTexParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetUniformiv (GLuint program, GLint location, GLint *params); +GL_APICALL GLint GL_APIENTRY glGetUniformLocation (GLuint program, const GLchar *name); +GL_APICALL void GL_APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer); +GL_APICALL void GL_APIENTRY glHint (GLenum target, GLenum mode); +GL_APICALL GLboolean GL_APIENTRY glIsBuffer (GLuint buffer); +GL_APICALL GLboolean GL_APIENTRY glIsEnabled (GLenum cap); +GL_APICALL GLboolean GL_APIENTRY glIsFramebuffer (GLuint framebuffer); +GL_APICALL GLboolean GL_APIENTRY glIsProgram (GLuint program); +GL_APICALL GLboolean GL_APIENTRY glIsRenderbuffer (GLuint renderbuffer); +GL_APICALL GLboolean GL_APIENTRY glIsShader (GLuint shader); +GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture); +GL_APICALL void GL_APIENTRY glLineWidth (GLfloat width); +GL_APICALL void GL_APIENTRY glLinkProgram (GLuint program); +GL_APICALL void GL_APIENTRY glPixelStorei (GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glPolygonOffset (GLfloat factor, GLfloat units); +GL_APICALL void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +GL_APICALL void GL_APIENTRY glReleaseShaderCompiler (void); +GL_APICALL void GL_APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glSampleCoverage (GLfloat value, GLboolean invert); +GL_APICALL void GL_APIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +GL_APICALL void GL_APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +GL_APICALL void GL_APIENTRY glStencilFunc (GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilMask (GLuint mask); +GL_APICALL void GL_APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilOp (GLenum fail, GLenum zfail, GLenum zpass); +GL_APICALL void GL_APIENTRY glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GL_APICALL void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glTexParameterf (GLenum target, GLenum pname, GLfloat param); +GL_APICALL void GL_APIENTRY glTexParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GL_APICALL void GL_APIENTRY glTexParameteri (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glTexParameteriv (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glUniform1f (GLint location, GLfloat v0); +GL_APICALL void GL_APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform1i (GLint location, GLint v0); +GL_APICALL void GL_APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform2f (GLint location, GLfloat v0, GLfloat v1); +GL_APICALL void GL_APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform2i (GLint location, GLint v0, GLint v1); +GL_APICALL void GL_APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GL_APICALL void GL_APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform3i (GLint location, GLint v0, GLint v1, GLint v2); +GL_APICALL void GL_APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GL_APICALL void GL_APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GL_APICALL void GL_APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUseProgram (GLuint program); +GL_APICALL void GL_APIENTRY glValidateProgram (GLuint program); +GL_APICALL void GL_APIENTRY glVertexAttrib1f (GLuint index, GLfloat x); +GL_APICALL void GL_APIENTRY glVertexAttrib1fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y); +GL_APICALL void GL_APIENTRY glVertexAttrib2fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glVertexAttrib3fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GL_APICALL void GL_APIENTRY glVertexAttrib4fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +GL_APICALL void GL_APIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height); +#endif +#endif /* GL_ES_VERSION_2_0 */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2ext.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2ext.h new file mode 100644 index 0000000..9448ce0 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2ext.h @@ -0,0 +1,4033 @@ +#ifndef __gles2_gl2ext_h_ +#define __gles2_gl2ext_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +#ifndef GL_APIENTRYP +#define GL_APIENTRYP GL_APIENTRY* +#endif + +/* Generated on date 20220530 */ + +/* Generated C header for: + * API: gles2 + * Profile: common + * Versions considered: 2\.[0-9] + * Versions emitted: _nomatch_^ + * Default extensions included: gles2 + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_KHR_blend_equation_advanced +#define GL_KHR_blend_equation_advanced 1 +#define GL_MULTIPLY_KHR 0x9294 +#define GL_SCREEN_KHR 0x9295 +#define GL_OVERLAY_KHR 0x9296 +#define GL_DARKEN_KHR 0x9297 +#define GL_LIGHTEN_KHR 0x9298 +#define GL_COLORDODGE_KHR 0x9299 +#define GL_COLORBURN_KHR 0x929A +#define GL_HARDLIGHT_KHR 0x929B +#define GL_SOFTLIGHT_KHR 0x929C +#define GL_DIFFERENCE_KHR 0x929E +#define GL_EXCLUSION_KHR 0x92A0 +#define GL_HSL_HUE_KHR 0x92AD +#define GL_HSL_SATURATION_KHR 0x92AE +#define GL_HSL_COLOR_KHR 0x92AF +#define GL_HSL_LUMINOSITY_KHR 0x92B0 +typedef void (GL_APIENTRYP PFNGLBLENDBARRIERKHRPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlendBarrierKHR (void); +#endif +#endif /* GL_KHR_blend_equation_advanced */ + +#ifndef GL_KHR_blend_equation_advanced_coherent +#define GL_KHR_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_KHR 0x9285 +#endif /* GL_KHR_blend_equation_advanced_coherent */ + +#ifndef GL_KHR_context_flush_control +#define GL_KHR_context_flush_control 1 +#define GL_CONTEXT_RELEASE_BEHAVIOR_KHR 0x82FB +#define GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_KHR 0x82FC +#endif /* GL_KHR_context_flush_control */ + +#ifndef GL_KHR_debug +#define GL_KHR_debug 1 +typedef void (GL_APIENTRY *GLDEBUGPROCKHR)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +#define GL_SAMPLER 0x82E6 +#define GL_DEBUG_OUTPUT_SYNCHRONOUS_KHR 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_KHR 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION_KHR 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM_KHR 0x8245 +#define GL_DEBUG_SOURCE_API_KHR 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_KHR 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER_KHR 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY_KHR 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION_KHR 0x824A +#define GL_DEBUG_SOURCE_OTHER_KHR 0x824B +#define GL_DEBUG_TYPE_ERROR_KHR 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_KHR 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_KHR 0x824E +#define GL_DEBUG_TYPE_PORTABILITY_KHR 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE_KHR 0x8250 +#define GL_DEBUG_TYPE_OTHER_KHR 0x8251 +#define GL_DEBUG_TYPE_MARKER_KHR 0x8268 +#define GL_DEBUG_TYPE_PUSH_GROUP_KHR 0x8269 +#define GL_DEBUG_TYPE_POP_GROUP_KHR 0x826A +#define GL_DEBUG_SEVERITY_NOTIFICATION_KHR 0x826B +#define GL_MAX_DEBUG_GROUP_STACK_DEPTH_KHR 0x826C +#define GL_DEBUG_GROUP_STACK_DEPTH_KHR 0x826D +#define GL_BUFFER_KHR 0x82E0 +#define GL_SHADER_KHR 0x82E1 +#define GL_PROGRAM_KHR 0x82E2 +#define GL_VERTEX_ARRAY_KHR 0x8074 +#define GL_QUERY_KHR 0x82E3 +#define GL_PROGRAM_PIPELINE_KHR 0x82E4 +#define GL_SAMPLER_KHR 0x82E6 +#define GL_MAX_LABEL_LENGTH_KHR 0x82E8 +#define GL_MAX_DEBUG_MESSAGE_LENGTH_KHR 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_KHR 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_KHR 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_KHR 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_KHR 0x9147 +#define GL_DEBUG_SEVERITY_LOW_KHR 0x9148 +#define GL_DEBUG_OUTPUT_KHR 0x92E0 +#define GL_CONTEXT_FLAG_DEBUG_BIT_KHR 0x00000002 +#define GL_STACK_OVERFLOW_KHR 0x0503 +#define GL_STACK_UNDERFLOW_KHR 0x0504 +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECONTROLKHRPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGEINSERTKHRPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECALLBACKKHRPROC) (GLDEBUGPROCKHR callback, const void *userParam); +typedef GLuint (GL_APIENTRYP PFNGLGETDEBUGMESSAGELOGKHRPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +typedef void (GL_APIENTRYP PFNGLPUSHDEBUGGROUPKHRPROC) (GLenum source, GLuint id, GLsizei length, const GLchar *message); +typedef void (GL_APIENTRYP PFNGLPOPDEBUGGROUPKHRPROC) (void); +typedef void (GL_APIENTRYP PFNGLOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (GL_APIENTRYP PFNGLOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETPOINTERVKHRPROC) (GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDebugMessageControlKHR (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GL_APICALL void GL_APIENTRY glDebugMessageInsertKHR (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GL_APICALL void GL_APIENTRY glDebugMessageCallbackKHR (GLDEBUGPROCKHR callback, const void *userParam); +GL_APICALL GLuint GL_APIENTRY glGetDebugMessageLogKHR (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +GL_APICALL void GL_APIENTRY glPushDebugGroupKHR (GLenum source, GLuint id, GLsizei length, const GLchar *message); +GL_APICALL void GL_APIENTRY glPopDebugGroupKHR (void); +GL_APICALL void GL_APIENTRY glObjectLabelKHR (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectLabelKHR (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +GL_APICALL void GL_APIENTRY glObjectPtrLabelKHR (const void *ptr, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectPtrLabelKHR (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +GL_APICALL void GL_APIENTRY glGetPointervKHR (GLenum pname, void **params); +#endif +#endif /* GL_KHR_debug */ + +#ifndef GL_KHR_no_error +#define GL_KHR_no_error 1 +#define GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 +#endif /* GL_KHR_no_error */ + +#ifndef GL_KHR_parallel_shader_compile +#define GL_KHR_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_KHR 0x91B0 +#define GL_COMPLETION_STATUS_KHR 0x91B1 +typedef void (GL_APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSKHRPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMaxShaderCompilerThreadsKHR (GLuint count); +#endif +#endif /* GL_KHR_parallel_shader_compile */ + +#ifndef GL_KHR_robust_buffer_access_behavior +#define GL_KHR_robust_buffer_access_behavior 1 +#endif /* GL_KHR_robust_buffer_access_behavior */ + +#ifndef GL_KHR_robustness +#define GL_KHR_robustness 1 +#define GL_CONTEXT_ROBUST_ACCESS_KHR 0x90F3 +#define GL_LOSE_CONTEXT_ON_RESET_KHR 0x8252 +#define GL_GUILTY_CONTEXT_RESET_KHR 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_KHR 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_KHR 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY_KHR 0x8256 +#define GL_NO_RESET_NOTIFICATION_KHR 0x8261 +#define GL_CONTEXT_LOST_KHR 0x0507 +typedef GLenum (GL_APIENTRYP PFNGLGETGRAPHICSRESETSTATUSKHRPROC) (void); +typedef void (GL_APIENTRYP PFNGLREADNPIXELSKHRPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMUIVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusKHR (void); +GL_APICALL void GL_APIENTRY glReadnPixelsKHR (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GL_APICALL void GL_APIENTRY glGetnUniformfvKHR (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetnUniformivKHR (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GL_APICALL void GL_APIENTRY glGetnUniformuivKHR (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +#endif +#endif /* GL_KHR_robustness */ + +#ifndef GL_KHR_shader_subgroup +#define GL_KHR_shader_subgroup 1 +#define GL_SUBGROUP_SIZE_KHR 0x9532 +#define GL_SUBGROUP_SUPPORTED_STAGES_KHR 0x9533 +#define GL_SUBGROUP_SUPPORTED_FEATURES_KHR 0x9534 +#define GL_SUBGROUP_QUAD_ALL_STAGES_KHR 0x9535 +#define GL_SUBGROUP_FEATURE_BASIC_BIT_KHR 0x00000001 +#define GL_SUBGROUP_FEATURE_VOTE_BIT_KHR 0x00000002 +#define GL_SUBGROUP_FEATURE_ARITHMETIC_BIT_KHR 0x00000004 +#define GL_SUBGROUP_FEATURE_BALLOT_BIT_KHR 0x00000008 +#define GL_SUBGROUP_FEATURE_SHUFFLE_BIT_KHR 0x00000010 +#define GL_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT_KHR 0x00000020 +#define GL_SUBGROUP_FEATURE_CLUSTERED_BIT_KHR 0x00000040 +#define GL_SUBGROUP_FEATURE_QUAD_BIT_KHR 0x00000080 +#endif /* GL_KHR_shader_subgroup */ + +#ifndef GL_KHR_texture_compression_astc_hdr +#define GL_KHR_texture_compression_astc_hdr 1 +#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 +#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1 +#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2 +#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3 +#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4 +#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5 +#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6 +#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7 +#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8 +#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 +#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA +#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB +#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC +#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD +#endif /* GL_KHR_texture_compression_astc_hdr */ + +#ifndef GL_KHR_texture_compression_astc_ldr +#define GL_KHR_texture_compression_astc_ldr 1 +#endif /* GL_KHR_texture_compression_astc_ldr */ + +#ifndef GL_KHR_texture_compression_astc_sliced_3d +#define GL_KHR_texture_compression_astc_sliced_3d 1 +#endif /* GL_KHR_texture_compression_astc_sliced_3d */ + +#ifndef GL_OES_EGL_image +#define GL_OES_EGL_image 1 +typedef void *GLeglImageOES; +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image); +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image); +GL_APICALL void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image); +#endif +#endif /* GL_OES_EGL_image */ + +#ifndef GL_OES_EGL_image_external +#define GL_OES_EGL_image_external 1 +#define GL_TEXTURE_EXTERNAL_OES 0x8D65 +#define GL_TEXTURE_BINDING_EXTERNAL_OES 0x8D67 +#define GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES 0x8D68 +#define GL_SAMPLER_EXTERNAL_OES 0x8D66 +#endif /* GL_OES_EGL_image_external */ + +#ifndef GL_OES_EGL_image_external_essl3 +#define GL_OES_EGL_image_external_essl3 1 +#endif /* GL_OES_EGL_image_external_essl3 */ + +#ifndef GL_OES_compressed_ETC1_RGB8_sub_texture +#define GL_OES_compressed_ETC1_RGB8_sub_texture 1 +#endif /* GL_OES_compressed_ETC1_RGB8_sub_texture */ + +#ifndef GL_OES_compressed_ETC1_RGB8_texture +#define GL_OES_compressed_ETC1_RGB8_texture 1 +#define GL_ETC1_RGB8_OES 0x8D64 +#endif /* GL_OES_compressed_ETC1_RGB8_texture */ + +#ifndef GL_OES_compressed_paletted_texture +#define GL_OES_compressed_paletted_texture 1 +#define GL_PALETTE4_RGB8_OES 0x8B90 +#define GL_PALETTE4_RGBA8_OES 0x8B91 +#define GL_PALETTE4_R5_G6_B5_OES 0x8B92 +#define GL_PALETTE4_RGBA4_OES 0x8B93 +#define GL_PALETTE4_RGB5_A1_OES 0x8B94 +#define GL_PALETTE8_RGB8_OES 0x8B95 +#define GL_PALETTE8_RGBA8_OES 0x8B96 +#define GL_PALETTE8_R5_G6_B5_OES 0x8B97 +#define GL_PALETTE8_RGBA4_OES 0x8B98 +#define GL_PALETTE8_RGB5_A1_OES 0x8B99 +#endif /* GL_OES_compressed_paletted_texture */ + +#ifndef GL_OES_copy_image +#define GL_OES_copy_image 1 +typedef void (GL_APIENTRYP PFNGLCOPYIMAGESUBDATAOESPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyImageSubDataOES (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#endif +#endif /* GL_OES_copy_image */ + +#ifndef GL_OES_depth24 +#define GL_OES_depth24 1 +#define GL_DEPTH_COMPONENT24_OES 0x81A6 +#endif /* GL_OES_depth24 */ + +#ifndef GL_OES_depth32 +#define GL_OES_depth32 1 +#define GL_DEPTH_COMPONENT32_OES 0x81A7 +#endif /* GL_OES_depth32 */ + +#ifndef GL_OES_depth_texture +#define GL_OES_depth_texture 1 +#endif /* GL_OES_depth_texture */ + +#ifndef GL_OES_draw_buffers_indexed +#define GL_OES_draw_buffers_indexed 1 +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +typedef void (GL_APIENTRYP PFNGLENABLEIOESPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEIOESPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONIOESPROC) (GLuint buf, GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEIOESPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCIOESPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEIOESPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (GL_APIENTRYP PFNGLCOLORMASKIOESPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDIOESPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEnableiOES (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiOES (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glBlendEquationiOES (GLuint buf, GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparateiOES (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunciOES (GLuint buf, GLenum src, GLenum dst); +GL_APICALL void GL_APIENTRY glBlendFuncSeparateiOES (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GL_APICALL void GL_APIENTRY glColorMaskiOES (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediOES (GLenum target, GLuint index); +#endif +#endif /* GL_OES_draw_buffers_indexed */ + +#ifndef GL_OES_draw_elements_base_vertex +#define GL_OES_draw_elements_base_vertex 1 +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXOESPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXOESPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXOESPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawElementsBaseVertexOES (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawRangeElementsBaseVertexOES (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexOES (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +GL_APICALL void GL_APIENTRY glMultiDrawElementsBaseVertexEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +#endif +#endif /* GL_OES_draw_elements_base_vertex */ + +#ifndef GL_OES_element_index_uint +#define GL_OES_element_index_uint 1 +#endif /* GL_OES_element_index_uint */ + +#ifndef GL_OES_fbo_render_mipmap +#define GL_OES_fbo_render_mipmap 1 +#endif /* GL_OES_fbo_render_mipmap */ + +#ifndef GL_OES_fragment_precision_high +#define GL_OES_fragment_precision_high 1 +#endif /* GL_OES_fragment_precision_high */ + +#ifndef GL_OES_geometry_point_size +#define GL_OES_geometry_point_size 1 +#endif /* GL_OES_geometry_point_size */ + +#ifndef GL_OES_geometry_shader +#define GL_OES_geometry_shader 1 +#define GL_GEOMETRY_SHADER_OES 0x8DD9 +#define GL_GEOMETRY_SHADER_BIT_OES 0x00000004 +#define GL_GEOMETRY_LINKED_VERTICES_OUT_OES 0x8916 +#define GL_GEOMETRY_LINKED_INPUT_TYPE_OES 0x8917 +#define GL_GEOMETRY_LINKED_OUTPUT_TYPE_OES 0x8918 +#define GL_GEOMETRY_SHADER_INVOCATIONS_OES 0x887F +#define GL_LAYER_PROVOKING_VERTEX_OES 0x825E +#define GL_LINES_ADJACENCY_OES 0x000A +#define GL_LINE_STRIP_ADJACENCY_OES 0x000B +#define GL_TRIANGLES_ADJACENCY_OES 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_OES 0x000D +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_OES 0x8DDF +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS_OES 0x8A2C +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_OES 0x8A32 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS_OES 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_OES 0x9124 +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_OES 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_OES 0x8DE1 +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS_OES 0x8E5A +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_OES 0x8C29 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_OES 0x92CF +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS_OES 0x92D5 +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS_OES 0x90CD +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_OES 0x90D7 +#define GL_FIRST_VERTEX_CONVENTION_OES 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_OES 0x8E4E +#define GL_UNDEFINED_VERTEX_OES 0x8260 +#define GL_PRIMITIVES_GENERATED_OES 0x8C87 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS_OES 0x9312 +#define GL_MAX_FRAMEBUFFER_LAYERS_OES 0x9317 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_OES 0x8DA8 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_OES 0x8DA7 +#define GL_REFERENCED_BY_GEOMETRY_SHADER_OES 0x9309 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREOESPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureOES (GLenum target, GLenum attachment, GLuint texture, GLint level); +#endif +#endif /* GL_OES_geometry_shader */ + +#ifndef GL_OES_get_program_binary +#define GL_OES_get_program_binary 1 +#define GL_PROGRAM_BINARY_LENGTH_OES 0x8741 +#define GL_NUM_PROGRAM_BINARY_FORMATS_OES 0x87FE +#define GL_PROGRAM_BINARY_FORMATS_OES 0x87FF +typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLint length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const void *binary, GLint length); +#endif +#endif /* GL_OES_get_program_binary */ + +#ifndef GL_OES_gpu_shader5 +#define GL_OES_gpu_shader5 1 +#endif /* GL_OES_gpu_shader5 */ + +#ifndef GL_OES_mapbuffer +#define GL_OES_mapbuffer 1 +#define GL_WRITE_ONLY_OES 0x88B9 +#define GL_BUFFER_ACCESS_OES 0x88BB +#define GL_BUFFER_MAPPED_OES 0x88BC +#define GL_BUFFER_MAP_POINTER_OES 0x88BD +typedef void *(GL_APIENTRYP PFNGLMAPBUFFEROESPROC) (GLenum target, GLenum access); +typedef GLboolean (GL_APIENTRYP PFNGLUNMAPBUFFEROESPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLGETBUFFERPOINTERVOESPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void *GL_APIENTRY glMapBufferOES (GLenum target, GLenum access); +GL_APICALL GLboolean GL_APIENTRY glUnmapBufferOES (GLenum target); +GL_APICALL void GL_APIENTRY glGetBufferPointervOES (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_OES_mapbuffer */ + +#ifndef GL_OES_packed_depth_stencil +#define GL_OES_packed_depth_stencil 1 +#define GL_DEPTH_STENCIL_OES 0x84F9 +#define GL_UNSIGNED_INT_24_8_OES 0x84FA +#define GL_DEPTH24_STENCIL8_OES 0x88F0 +#endif /* GL_OES_packed_depth_stencil */ + +#ifndef GL_OES_primitive_bounding_box +#define GL_OES_primitive_bounding_box 1 +#define GL_PRIMITIVE_BOUNDING_BOX_OES 0x92BE +typedef void (GL_APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXOESPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPrimitiveBoundingBoxOES (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_OES_primitive_bounding_box */ + +#ifndef GL_OES_required_internalformat +#define GL_OES_required_internalformat 1 +#define GL_ALPHA8_OES 0x803C +#define GL_DEPTH_COMPONENT16_OES 0x81A5 +#define GL_LUMINANCE4_ALPHA4_OES 0x8043 +#define GL_LUMINANCE8_ALPHA8_OES 0x8045 +#define GL_LUMINANCE8_OES 0x8040 +#define GL_RGBA4_OES 0x8056 +#define GL_RGB5_A1_OES 0x8057 +#define GL_RGB565_OES 0x8D62 +#define GL_RGB8_OES 0x8051 +#define GL_RGBA8_OES 0x8058 +#define GL_RGB10_EXT 0x8052 +#define GL_RGB10_A2_EXT 0x8059 +#endif /* GL_OES_required_internalformat */ + +#ifndef GL_OES_rgb8_rgba8 +#define GL_OES_rgb8_rgba8 1 +#endif /* GL_OES_rgb8_rgba8 */ + +#ifndef GL_OES_sample_shading +#define GL_OES_sample_shading 1 +#define GL_SAMPLE_SHADING_OES 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE_OES 0x8C37 +typedef void (GL_APIENTRYP PFNGLMINSAMPLESHADINGOESPROC) (GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMinSampleShadingOES (GLfloat value); +#endif +#endif /* GL_OES_sample_shading */ + +#ifndef GL_OES_sample_variables +#define GL_OES_sample_variables 1 +#endif /* GL_OES_sample_variables */ + +#ifndef GL_OES_shader_image_atomic +#define GL_OES_shader_image_atomic 1 +#endif /* GL_OES_shader_image_atomic */ + +#ifndef GL_OES_shader_io_blocks +#define GL_OES_shader_io_blocks 1 +#endif /* GL_OES_shader_io_blocks */ + +#ifndef GL_OES_shader_multisample_interpolation +#define GL_OES_shader_multisample_interpolation 1 +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_OES 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_OES 0x8E5C +#define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS_OES 0x8E5D +#endif /* GL_OES_shader_multisample_interpolation */ + +#ifndef GL_OES_standard_derivatives +#define GL_OES_standard_derivatives 1 +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES 0x8B8B +#endif /* GL_OES_standard_derivatives */ + +#ifndef GL_OES_stencil1 +#define GL_OES_stencil1 1 +#define GL_STENCIL_INDEX1_OES 0x8D46 +#endif /* GL_OES_stencil1 */ + +#ifndef GL_OES_stencil4 +#define GL_OES_stencil4 1 +#define GL_STENCIL_INDEX4_OES 0x8D47 +#endif /* GL_OES_stencil4 */ + +#ifndef GL_OES_surfaceless_context +#define GL_OES_surfaceless_context 1 +#define GL_FRAMEBUFFER_UNDEFINED_OES 0x8219 +#endif /* GL_OES_surfaceless_context */ + +#ifndef GL_OES_tessellation_point_size +#define GL_OES_tessellation_point_size 1 +#endif /* GL_OES_tessellation_point_size */ + +#ifndef GL_OES_tessellation_shader +#define GL_OES_tessellation_shader 1 +#define GL_PATCHES_OES 0x000E +#define GL_PATCH_VERTICES_OES 0x8E72 +#define GL_TESS_CONTROL_OUTPUT_VERTICES_OES 0x8E75 +#define GL_TESS_GEN_MODE_OES 0x8E76 +#define GL_TESS_GEN_SPACING_OES 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER_OES 0x8E78 +#define GL_TESS_GEN_POINT_MODE_OES 0x8E79 +#define GL_ISOLINES_OES 0x8E7A +#define GL_QUADS_OES 0x0007 +#define GL_FRACTIONAL_ODD_OES 0x8E7B +#define GL_FRACTIONAL_EVEN_OES 0x8E7C +#define GL_MAX_PATCH_VERTICES_OES 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL_OES 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS_OES 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS_OES 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS_OES 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS_OES 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS_OES 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS_OES 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS_OES 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS_OES 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS_OES 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS_OES 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS_OES 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS_OES 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS_OES 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS_OES 0x8E1F +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_OES 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS_OES 0x92CE +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS_OES 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS_OES 0x92D4 +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_OES 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS_OES 0x90CC +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS_OES 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS_OES 0x90D9 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED_OES 0x8221 +#define GL_IS_PER_PATCH_OES 0x92E7 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER_OES 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER_OES 0x9308 +#define GL_TESS_CONTROL_SHADER_OES 0x8E88 +#define GL_TESS_EVALUATION_SHADER_OES 0x8E87 +#define GL_TESS_CONTROL_SHADER_BIT_OES 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT_OES 0x00000010 +typedef void (GL_APIENTRYP PFNGLPATCHPARAMETERIOESPROC) (GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPatchParameteriOES (GLenum pname, GLint value); +#endif +#endif /* GL_OES_tessellation_shader */ + +#ifndef GL_OES_texture_3D +#define GL_OES_texture_3D 1 +#define GL_TEXTURE_WRAP_R_OES 0x8072 +#define GL_TEXTURE_3D_OES 0x806F +#define GL_TEXTURE_BINDING_3D_OES 0x806A +#define GL_MAX_3D_TEXTURE_SIZE_OES 0x8073 +#define GL_SAMPLER_3D_OES 0x8B5F +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_OES 0x8CD4 +typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLCOPYTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DOESPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glCopyTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glFramebufferTexture3DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +#endif +#endif /* GL_OES_texture_3D */ + +#ifndef GL_OES_texture_border_clamp +#define GL_OES_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_OES 0x1004 +#define GL_CLAMP_TO_BORDER_OES 0x812D +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIIVOESPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIUIVOESPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIIVOESPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIUIVOESPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIIVOESPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIUIVOESPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIIVOESPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVOESPROC) (GLuint sampler, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexParameterIivOES (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexParameterIuivOES (GLenum target, GLenum pname, const GLuint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIivOES (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIuivOES (GLenum target, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glSamplerParameterIivOES (GLuint sampler, GLenum pname, const GLint *param); +GL_APICALL void GL_APIENTRY glSamplerParameterIuivOES (GLuint sampler, GLenum pname, const GLuint *param); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIivOES (GLuint sampler, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIuivOES (GLuint sampler, GLenum pname, GLuint *params); +#endif +#endif /* GL_OES_texture_border_clamp */ + +#ifndef GL_OES_texture_buffer +#define GL_OES_texture_buffer 1 +#define GL_TEXTURE_BUFFER_OES 0x8C2A +#define GL_TEXTURE_BUFFER_BINDING_OES 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_OES 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_OES 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_OES 0x8C2D +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT_OES 0x919F +#define GL_SAMPLER_BUFFER_OES 0x8DC2 +#define GL_INT_SAMPLER_BUFFER_OES 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_OES 0x8DD8 +#define GL_IMAGE_BUFFER_OES 0x9051 +#define GL_INT_IMAGE_BUFFER_OES 0x905C +#define GL_UNSIGNED_INT_IMAGE_BUFFER_OES 0x9067 +#define GL_TEXTURE_BUFFER_OFFSET_OES 0x919D +#define GL_TEXTURE_BUFFER_SIZE_OES 0x919E +typedef void (GL_APIENTRYP PFNGLTEXBUFFEROESPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLTEXBUFFERRANGEOESPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexBufferOES (GLenum target, GLenum internalformat, GLuint buffer); +GL_APICALL void GL_APIENTRY glTexBufferRangeOES (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_OES_texture_buffer */ + +#ifndef GL_OES_texture_compression_astc +#define GL_OES_texture_compression_astc 1 +#define GL_COMPRESSED_RGBA_ASTC_3x3x3_OES 0x93C0 +#define GL_COMPRESSED_RGBA_ASTC_4x3x3_OES 0x93C1 +#define GL_COMPRESSED_RGBA_ASTC_4x4x3_OES 0x93C2 +#define GL_COMPRESSED_RGBA_ASTC_4x4x4_OES 0x93C3 +#define GL_COMPRESSED_RGBA_ASTC_5x4x4_OES 0x93C4 +#define GL_COMPRESSED_RGBA_ASTC_5x5x4_OES 0x93C5 +#define GL_COMPRESSED_RGBA_ASTC_5x5x5_OES 0x93C6 +#define GL_COMPRESSED_RGBA_ASTC_6x5x5_OES 0x93C7 +#define GL_COMPRESSED_RGBA_ASTC_6x6x5_OES 0x93C8 +#define GL_COMPRESSED_RGBA_ASTC_6x6x6_OES 0x93C9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_3x3x3_OES 0x93E0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x3x3_OES 0x93E1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x3_OES 0x93E2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x4_OES 0x93E3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4x4_OES 0x93E4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x4_OES 0x93E5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x5_OES 0x93E6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5x5_OES 0x93E7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x5_OES 0x93E8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x6_OES 0x93E9 +#endif /* GL_OES_texture_compression_astc */ + +#ifndef GL_OES_texture_cube_map_array +#define GL_OES_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_OES 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_OES 0x900A +#define GL_SAMPLER_CUBE_MAP_ARRAY_OES 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_OES 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_OES 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_OES 0x900F +#define GL_IMAGE_CUBE_MAP_ARRAY_OES 0x9054 +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_OES 0x905F +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_OES 0x906A +#endif /* GL_OES_texture_cube_map_array */ + +#ifndef GL_OES_texture_float +#define GL_OES_texture_float 1 +#endif /* GL_OES_texture_float */ + +#ifndef GL_OES_texture_float_linear +#define GL_OES_texture_float_linear 1 +#endif /* GL_OES_texture_float_linear */ + +#ifndef GL_OES_texture_half_float +#define GL_OES_texture_half_float 1 +#define GL_HALF_FLOAT_OES 0x8D61 +#endif /* GL_OES_texture_half_float */ + +#ifndef GL_OES_texture_half_float_linear +#define GL_OES_texture_half_float_linear 1 +#endif /* GL_OES_texture_half_float_linear */ + +#ifndef GL_OES_texture_npot +#define GL_OES_texture_npot 1 +#endif /* GL_OES_texture_npot */ + +#ifndef GL_OES_texture_stencil8 +#define GL_OES_texture_stencil8 1 +#define GL_STENCIL_INDEX_OES 0x1901 +#define GL_STENCIL_INDEX8_OES 0x8D48 +#endif /* GL_OES_texture_stencil8 */ + +#ifndef GL_OES_texture_storage_multisample_2d_array +#define GL_OES_texture_storage_multisample_2d_array 1 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY_OES 0x9102 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY_OES 0x9105 +#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910B +#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910C +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910D +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE3DMULTISAMPLEOESPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorage3DMultisampleOES (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +#endif +#endif /* GL_OES_texture_storage_multisample_2d_array */ + +#ifndef GL_OES_texture_view +#define GL_OES_texture_view 1 +#define GL_TEXTURE_VIEW_MIN_LEVEL_OES 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS_OES 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER_OES 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS_OES 0x82DE +#define GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF +typedef void (GL_APIENTRYP PFNGLTEXTUREVIEWOESPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureViewOES (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#endif +#endif /* GL_OES_texture_view */ + +#ifndef GL_OES_vertex_array_object +#define GL_OES_vertex_array_object 1 +#define GL_VERTEX_ARRAY_BINDING_OES 0x85B5 +typedef void (GL_APIENTRYP PFNGLBINDVERTEXARRAYOESPROC) (GLuint array); +typedef void (GL_APIENTRYP PFNGLDELETEVERTEXARRAYSOESPROC) (GLsizei n, const GLuint *arrays); +typedef void (GL_APIENTRYP PFNGLGENVERTEXARRAYSOESPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (GL_APIENTRYP PFNGLISVERTEXARRAYOESPROC) (GLuint array); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindVertexArrayOES (GLuint array); +GL_APICALL void GL_APIENTRY glDeleteVertexArraysOES (GLsizei n, const GLuint *arrays); +GL_APICALL void GL_APIENTRY glGenVertexArraysOES (GLsizei n, GLuint *arrays); +GL_APICALL GLboolean GL_APIENTRY glIsVertexArrayOES (GLuint array); +#endif +#endif /* GL_OES_vertex_array_object */ + +#ifndef GL_OES_vertex_half_float +#define GL_OES_vertex_half_float 1 +#endif /* GL_OES_vertex_half_float */ + +#ifndef GL_OES_vertex_type_10_10_10_2 +#define GL_OES_vertex_type_10_10_10_2 1 +#define GL_UNSIGNED_INT_10_10_10_2_OES 0x8DF6 +#define GL_INT_10_10_10_2_OES 0x8DF7 +#endif /* GL_OES_vertex_type_10_10_10_2 */ + +#ifndef GL_OES_viewport_array +#define GL_OES_viewport_array 1 +#define GL_MAX_VIEWPORTS_OES 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS_OES 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE_OES 0x825D +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX_OES 0x825F +typedef void (GL_APIENTRYP PFNGLVIEWPORTARRAYVOESPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFOESPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFVOESPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLSCISSORARRAYVOESPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDOESPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDVOESPROC) (GLuint index, const GLint *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEARRAYFVOESPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEINDEXEDFOESPROC) (GLuint index, GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLGETFLOATI_VOESPROC) (GLenum target, GLuint index, GLfloat *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportArrayvOES (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glViewportIndexedfOES (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GL_APICALL void GL_APIENTRY glViewportIndexedfvOES (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glScissorArrayvOES (GLuint first, GLsizei count, const GLint *v); +GL_APICALL void GL_APIENTRY glScissorIndexedOES (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorIndexedvOES (GLuint index, const GLint *v); +GL_APICALL void GL_APIENTRY glDepthRangeArrayfvOES (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glDepthRangeIndexedfOES (GLuint index, GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glGetFloati_vOES (GLenum target, GLuint index, GLfloat *data); +#endif +#endif /* GL_OES_viewport_array */ + +#ifndef GL_AMD_compressed_3DC_texture +#define GL_AMD_compressed_3DC_texture 1 +#define GL_3DC_X_AMD 0x87F9 +#define GL_3DC_XY_AMD 0x87FA +#endif /* GL_AMD_compressed_3DC_texture */ + +#ifndef GL_AMD_compressed_ATC_texture +#define GL_AMD_compressed_ATC_texture 1 +#define GL_ATC_RGB_AMD 0x8C92 +#define GL_ATC_RGBA_EXPLICIT_ALPHA_AMD 0x8C93 +#define GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD 0x87EE +#endif /* GL_AMD_compressed_ATC_texture */ + +#ifndef GL_AMD_framebuffer_multisample_advanced +#define GL_AMD_framebuffer_multisample_advanced 1 +#define GL_RENDERBUFFER_STORAGE_SAMPLES_AMD 0x91B2 +#define GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD 0x91B3 +#define GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD 0x91B4 +#define GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD 0x91B5 +#define GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B6 +#define GL_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B7 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleAdvancedAMD (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glNamedRenderbufferStorageMultisampleAdvancedAMD (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_AMD_framebuffer_multisample_advanced */ + +#ifndef GL_AMD_performance_monitor +#define GL_AMD_performance_monitor 1 +#define GL_COUNTER_TYPE_AMD 0x8BC0 +#define GL_COUNTER_RANGE_AMD 0x8BC1 +#define GL_UNSIGNED_INT64_AMD 0x8BC2 +#define GL_PERCENTAGE_AMD 0x8BC3 +#define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4 +#define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5 +#define GL_PERFMON_RESULT_AMD 0x8BC6 +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, void *data); +typedef void (GL_APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (GL_APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (GL_APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +typedef void (GL_APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GL_APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, void *data); +GL_APICALL void GL_APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors); +GL_APICALL void GL_APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors); +GL_APICALL void GL_APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +GL_APICALL void GL_APIENTRY glBeginPerfMonitorAMD (GLuint monitor); +GL_APICALL void GL_APIENTRY glEndPerfMonitorAMD (GLuint monitor); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#endif +#endif /* GL_AMD_performance_monitor */ + +#ifndef GL_AMD_program_binary_Z400 +#define GL_AMD_program_binary_Z400 1 +#define GL_Z400_BINARY_AMD 0x8740 +#endif /* GL_AMD_program_binary_Z400 */ + +#ifndef GL_ANDROID_extension_pack_es31a +#define GL_ANDROID_extension_pack_es31a 1 +#endif /* GL_ANDROID_extension_pack_es31a */ + +#ifndef GL_ANGLE_depth_texture +#define GL_ANGLE_depth_texture 1 +#endif /* GL_ANGLE_depth_texture */ + +#ifndef GL_ANGLE_framebuffer_blit +#define GL_ANGLE_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_ANGLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_ANGLE 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_ANGLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_ANGLE 0x8CAA +typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlitFramebufferANGLE (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_ANGLE_framebuffer_blit */ + +#ifndef GL_ANGLE_framebuffer_multisample +#define GL_ANGLE_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_ANGLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE 0x8D56 +#define GL_MAX_SAMPLES_ANGLE 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEANGLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleANGLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_ANGLE_framebuffer_multisample */ + +#ifndef GL_ANGLE_instanced_arrays +#define GL_ANGLE_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE 0x88FE +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDANGLEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDANGLEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORANGLEPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedANGLE (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedANGLE (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +GL_APICALL void GL_APIENTRY glVertexAttribDivisorANGLE (GLuint index, GLuint divisor); +#endif +#endif /* GL_ANGLE_instanced_arrays */ + +#ifndef GL_ANGLE_pack_reverse_row_order +#define GL_ANGLE_pack_reverse_row_order 1 +#define GL_PACK_REVERSE_ROW_ORDER_ANGLE 0x93A4 +#endif /* GL_ANGLE_pack_reverse_row_order */ + +#ifndef GL_ANGLE_program_binary +#define GL_ANGLE_program_binary 1 +#define GL_PROGRAM_BINARY_ANGLE 0x93A6 +#endif /* GL_ANGLE_program_binary */ + +#ifndef GL_ANGLE_texture_compression_dxt3 +#define GL_ANGLE_texture_compression_dxt3 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE 0x83F2 +#endif /* GL_ANGLE_texture_compression_dxt3 */ + +#ifndef GL_ANGLE_texture_compression_dxt5 +#define GL_ANGLE_texture_compression_dxt5 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE 0x83F3 +#endif /* GL_ANGLE_texture_compression_dxt5 */ + +#ifndef GL_ANGLE_texture_usage +#define GL_ANGLE_texture_usage 1 +#define GL_TEXTURE_USAGE_ANGLE 0x93A2 +#define GL_FRAMEBUFFER_ATTACHMENT_ANGLE 0x93A3 +#endif /* GL_ANGLE_texture_usage */ + +#ifndef GL_ANGLE_translated_shader_source +#define GL_ANGLE_translated_shader_source 1 +#define GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE 0x93A0 +typedef void (GL_APIENTRYP PFNGLGETTRANSLATEDSHADERSOURCEANGLEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetTranslatedShaderSourceANGLE (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +#endif +#endif /* GL_ANGLE_translated_shader_source */ + +#ifndef GL_APPLE_clip_distance +#define GL_APPLE_clip_distance 1 +#define GL_MAX_CLIP_DISTANCES_APPLE 0x0D32 +#define GL_CLIP_DISTANCE0_APPLE 0x3000 +#define GL_CLIP_DISTANCE1_APPLE 0x3001 +#define GL_CLIP_DISTANCE2_APPLE 0x3002 +#define GL_CLIP_DISTANCE3_APPLE 0x3003 +#define GL_CLIP_DISTANCE4_APPLE 0x3004 +#define GL_CLIP_DISTANCE5_APPLE 0x3005 +#define GL_CLIP_DISTANCE6_APPLE 0x3006 +#define GL_CLIP_DISTANCE7_APPLE 0x3007 +#endif /* GL_APPLE_clip_distance */ + +#ifndef GL_APPLE_color_buffer_packed_float +#define GL_APPLE_color_buffer_packed_float 1 +#endif /* GL_APPLE_color_buffer_packed_float */ + +#ifndef GL_APPLE_copy_texture_levels +#define GL_APPLE_copy_texture_levels 1 +typedef void (GL_APIENTRYP PFNGLCOPYTEXTURELEVELSAPPLEPROC) (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyTextureLevelsAPPLE (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); +#endif +#endif /* GL_APPLE_copy_texture_levels */ + +#ifndef GL_APPLE_framebuffer_multisample +#define GL_APPLE_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_APPLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_APPLE 0x8D56 +#define GL_MAX_SAMPLES_APPLE 0x8D57 +#define GL_READ_FRAMEBUFFER_APPLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_APPLE 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_APPLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_APPLE 0x8CAA +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEAPPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLRESOLVEMULTISAMPLEFRAMEBUFFERAPPLEPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleAPPLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glResolveMultisampleFramebufferAPPLE (void); +#endif +#endif /* GL_APPLE_framebuffer_multisample */ + +#ifndef GL_APPLE_rgb_422 +#define GL_APPLE_rgb_422 1 +#define GL_RGB_422_APPLE 0x8A1F +#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB +#define GL_RGB_RAW_422_APPLE 0x8A51 +#endif /* GL_APPLE_rgb_422 */ + +#ifndef GL_APPLE_sync +#define GL_APPLE_sync 1 +#define GL_SYNC_OBJECT_APPLE 0x8A53 +#define GL_MAX_SERVER_WAIT_TIMEOUT_APPLE 0x9111 +#define GL_OBJECT_TYPE_APPLE 0x9112 +#define GL_SYNC_CONDITION_APPLE 0x9113 +#define GL_SYNC_STATUS_APPLE 0x9114 +#define GL_SYNC_FLAGS_APPLE 0x9115 +#define GL_SYNC_FENCE_APPLE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE 0x9117 +#define GL_UNSIGNALED_APPLE 0x9118 +#define GL_SIGNALED_APPLE 0x9119 +#define GL_ALREADY_SIGNALED_APPLE 0x911A +#define GL_TIMEOUT_EXPIRED_APPLE 0x911B +#define GL_CONDITION_SATISFIED_APPLE 0x911C +#define GL_WAIT_FAILED_APPLE 0x911D +#define GL_SYNC_FLUSH_COMMANDS_BIT_APPLE 0x00000001 +#define GL_TIMEOUT_IGNORED_APPLE 0xFFFFFFFFFFFFFFFFull +typedef GLsync (GL_APIENTRYP PFNGLFENCESYNCAPPLEPROC) (GLenum condition, GLbitfield flags); +typedef GLboolean (GL_APIENTRYP PFNGLISSYNCAPPLEPROC) (GLsync sync); +typedef void (GL_APIENTRYP PFNGLDELETESYNCAPPLEPROC) (GLsync sync); +typedef GLenum (GL_APIENTRYP PFNGLCLIENTWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (GL_APIENTRYP PFNGLWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (GL_APIENTRYP PFNGLGETINTEGER64VAPPLEPROC) (GLenum pname, GLint64 *params); +typedef void (GL_APIENTRYP PFNGLGETSYNCIVAPPLEPROC) (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLsync GL_APIENTRY glFenceSyncAPPLE (GLenum condition, GLbitfield flags); +GL_APICALL GLboolean GL_APIENTRY glIsSyncAPPLE (GLsync sync); +GL_APICALL void GL_APIENTRY glDeleteSyncAPPLE (GLsync sync); +GL_APICALL GLenum GL_APIENTRY glClientWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); +GL_APICALL void GL_APIENTRY glWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); +GL_APICALL void GL_APIENTRY glGetInteger64vAPPLE (GLenum pname, GLint64 *params); +GL_APICALL void GL_APIENTRY glGetSyncivAPPLE (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +#endif +#endif /* GL_APPLE_sync */ + +#ifndef GL_APPLE_texture_format_BGRA8888 +#define GL_APPLE_texture_format_BGRA8888 1 +#define GL_BGRA_EXT 0x80E1 +#define GL_BGRA8_EXT 0x93A1 +#endif /* GL_APPLE_texture_format_BGRA8888 */ + +#ifndef GL_APPLE_texture_max_level +#define GL_APPLE_texture_max_level 1 +#define GL_TEXTURE_MAX_LEVEL_APPLE 0x813D +#endif /* GL_APPLE_texture_max_level */ + +#ifndef GL_APPLE_texture_packed_float +#define GL_APPLE_texture_packed_float 1 +#define GL_UNSIGNED_INT_10F_11F_11F_REV_APPLE 0x8C3B +#define GL_UNSIGNED_INT_5_9_9_9_REV_APPLE 0x8C3E +#define GL_R11F_G11F_B10F_APPLE 0x8C3A +#define GL_RGB9_E5_APPLE 0x8C3D +#endif /* GL_APPLE_texture_packed_float */ + +#ifndef GL_ARM_mali_program_binary +#define GL_ARM_mali_program_binary 1 +#define GL_MALI_PROGRAM_BINARY_ARM 0x8F61 +#endif /* GL_ARM_mali_program_binary */ + +#ifndef GL_ARM_mali_shader_binary +#define GL_ARM_mali_shader_binary 1 +#define GL_MALI_SHADER_BINARY_ARM 0x8F60 +#endif /* GL_ARM_mali_shader_binary */ + +#ifndef GL_ARM_rgba8 +#define GL_ARM_rgba8 1 +#endif /* GL_ARM_rgba8 */ + +#ifndef GL_ARM_shader_framebuffer_fetch +#define GL_ARM_shader_framebuffer_fetch 1 +#define GL_FETCH_PER_SAMPLE_ARM 0x8F65 +#define GL_FRAGMENT_SHADER_FRAMEBUFFER_FETCH_MRT_ARM 0x8F66 +#endif /* GL_ARM_shader_framebuffer_fetch */ + +#ifndef GL_ARM_shader_framebuffer_fetch_depth_stencil +#define GL_ARM_shader_framebuffer_fetch_depth_stencil 1 +#endif /* GL_ARM_shader_framebuffer_fetch_depth_stencil */ + +#ifndef GL_ARM_texture_unnormalized_coordinates +#define GL_ARM_texture_unnormalized_coordinates 1 +#define GL_TEXTURE_UNNORMALIZED_COORDINATES_ARM 0x8F6A +#endif /* GL_ARM_texture_unnormalized_coordinates */ + +#ifndef GL_DMP_program_binary +#define GL_DMP_program_binary 1 +#define GL_SMAPHS30_PROGRAM_BINARY_DMP 0x9251 +#define GL_SMAPHS_PROGRAM_BINARY_DMP 0x9252 +#define GL_DMP_PROGRAM_BINARY_DMP 0x9253 +#endif /* GL_DMP_program_binary */ + +#ifndef GL_DMP_shader_binary +#define GL_DMP_shader_binary 1 +#define GL_SHADER_BINARY_DMP 0x9250 +#endif /* GL_DMP_shader_binary */ + +#ifndef GL_EXT_EGL_image_array +#define GL_EXT_EGL_image_array 1 +#endif /* GL_EXT_EGL_image_array */ + +#ifndef GL_EXT_EGL_image_storage +#define GL_EXT_EGL_image_storage 1 +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXSTORAGEEXTPROC) (GLenum target, GLeglImageOES image, const GLint* attrib_list); +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURESTORAGEEXTPROC) (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEGLImageTargetTexStorageEXT (GLenum target, GLeglImageOES image, const GLint* attrib_list); +GL_APICALL void GL_APIENTRY glEGLImageTargetTextureStorageEXT (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#endif +#endif /* GL_EXT_EGL_image_storage */ + +#ifndef GL_EXT_EGL_image_storage_compression +#define GL_EXT_EGL_image_storage_compression 1 +#define GL_SURFACE_COMPRESSION_EXT 0x96C0 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_NONE_EXT 0x96C1 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_DEFAULT_EXT 0x96C2 +#endif /* GL_EXT_EGL_image_storage_compression */ + +#ifndef GL_EXT_YUV_target +#define GL_EXT_YUV_target 1 +#define GL_SAMPLER_EXTERNAL_2D_Y2Y_EXT 0x8BE7 +#endif /* GL_EXT_YUV_target */ + +#ifndef GL_EXT_base_instance +#define GL_EXT_base_instance 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEEXTPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedBaseInstanceEXT (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseInstanceEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexBaseInstanceEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +#endif +#endif /* GL_EXT_base_instance */ + +#ifndef GL_EXT_blend_func_extended +#define GL_EXT_blend_func_extended 1 +#define GL_SRC1_COLOR_EXT 0x88F9 +#define GL_SRC1_ALPHA_EXT 0x8589 +#define GL_ONE_MINUS_SRC1_COLOR_EXT 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA_EXT 0x88FB +#define GL_SRC_ALPHA_SATURATE_EXT 0x0308 +#define GL_LOCATION_INDEX_EXT 0x930F +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS_EXT 0x88FC +typedef void (GL_APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDEXTPROC) (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLBINDFRAGDATALOCATIONEXTPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (GL_APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONINDEXEXTPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef GLint (GL_APIENTRYP PFNGLGETFRAGDATAINDEXEXTPROC) (GLuint program, const GLchar *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindFragDataLocationIndexedEXT (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +GL_APICALL void GL_APIENTRY glBindFragDataLocationEXT (GLuint program, GLuint color, const GLchar *name); +GL_APICALL GLint GL_APIENTRY glGetProgramResourceLocationIndexEXT (GLuint program, GLenum programInterface, const GLchar *name); +GL_APICALL GLint GL_APIENTRY glGetFragDataIndexEXT (GLuint program, const GLchar *name); +#endif +#endif /* GL_EXT_blend_func_extended */ + +#ifndef GL_EXT_blend_minmax +#define GL_EXT_blend_minmax 1 +#define GL_MIN_EXT 0x8007 +#define GL_MAX_EXT 0x8008 +#endif /* GL_EXT_blend_minmax */ + +#ifndef GL_EXT_buffer_storage +#define GL_EXT_buffer_storage 1 +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_PERSISTENT_BIT_EXT 0x0040 +#define GL_MAP_COHERENT_BIT_EXT 0x0080 +#define GL_DYNAMIC_STORAGE_BIT_EXT 0x0100 +#define GL_CLIENT_STORAGE_BIT_EXT 0x0200 +#define GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT 0x00004000 +#define GL_BUFFER_IMMUTABLE_STORAGE_EXT 0x821F +#define GL_BUFFER_STORAGE_FLAGS_EXT 0x8220 +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEEXTPROC) (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferStorageEXT (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +#endif +#endif /* GL_EXT_buffer_storage */ + +#ifndef GL_EXT_clear_texture +#define GL_EXT_clear_texture 1 +typedef void (GL_APIENTRYP PFNGLCLEARTEXIMAGEEXTPROC) (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +typedef void (GL_APIENTRYP PFNGLCLEARTEXSUBIMAGEEXTPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glClearTexImageEXT (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +GL_APICALL void GL_APIENTRY glClearTexSubImageEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +#endif +#endif /* GL_EXT_clear_texture */ + +#ifndef GL_EXT_clip_control +#define GL_EXT_clip_control 1 +#define GL_LOWER_LEFT_EXT 0x8CA1 +#define GL_UPPER_LEFT_EXT 0x8CA2 +#define GL_NEGATIVE_ONE_TO_ONE_EXT 0x935E +#define GL_ZERO_TO_ONE_EXT 0x935F +#define GL_CLIP_ORIGIN_EXT 0x935C +#define GL_CLIP_DEPTH_MODE_EXT 0x935D +typedef void (GL_APIENTRYP PFNGLCLIPCONTROLEXTPROC) (GLenum origin, GLenum depth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glClipControlEXT (GLenum origin, GLenum depth); +#endif +#endif /* GL_EXT_clip_control */ + +#ifndef GL_EXT_clip_cull_distance +#define GL_EXT_clip_cull_distance 1 +#define GL_MAX_CLIP_DISTANCES_EXT 0x0D32 +#define GL_MAX_CULL_DISTANCES_EXT 0x82F9 +#define GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES_EXT 0x82FA +#define GL_CLIP_DISTANCE0_EXT 0x3000 +#define GL_CLIP_DISTANCE1_EXT 0x3001 +#define GL_CLIP_DISTANCE2_EXT 0x3002 +#define GL_CLIP_DISTANCE3_EXT 0x3003 +#define GL_CLIP_DISTANCE4_EXT 0x3004 +#define GL_CLIP_DISTANCE5_EXT 0x3005 +#define GL_CLIP_DISTANCE6_EXT 0x3006 +#define GL_CLIP_DISTANCE7_EXT 0x3007 +#endif /* GL_EXT_clip_cull_distance */ + +#ifndef GL_EXT_color_buffer_float +#define GL_EXT_color_buffer_float 1 +#endif /* GL_EXT_color_buffer_float */ + +#ifndef GL_EXT_color_buffer_half_float +#define GL_EXT_color_buffer_half_float 1 +#define GL_RGBA16F_EXT 0x881A +#define GL_RGB16F_EXT 0x881B +#define GL_RG16F_EXT 0x822F +#define GL_R16F_EXT 0x822D +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT 0x8211 +#define GL_UNSIGNED_NORMALIZED_EXT 0x8C17 +#endif /* GL_EXT_color_buffer_half_float */ + +#ifndef GL_EXT_conservative_depth +#define GL_EXT_conservative_depth 1 +#endif /* GL_EXT_conservative_depth */ + +#ifndef GL_EXT_copy_image +#define GL_EXT_copy_image 1 +typedef void (GL_APIENTRYP PFNGLCOPYIMAGESUBDATAEXTPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyImageSubDataEXT (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#endif +#endif /* GL_EXT_copy_image */ + +#ifndef GL_EXT_debug_label +#define GL_EXT_debug_label 1 +#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F +#define GL_PROGRAM_OBJECT_EXT 0x8B40 +#define GL_SHADER_OBJECT_EXT 0x8B48 +#define GL_BUFFER_OBJECT_EXT 0x9151 +#define GL_QUERY_OBJECT_EXT 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154 +#define GL_TRANSFORM_FEEDBACK 0x8E22 +typedef void (GL_APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +#endif /* GL_EXT_debug_label */ + +#ifndef GL_EXT_debug_marker +#define GL_EXT_debug_marker 1 +typedef void (GL_APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (GL_APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (GL_APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker); +GL_APICALL void GL_APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker); +GL_APICALL void GL_APIENTRY glPopGroupMarkerEXT (void); +#endif +#endif /* GL_EXT_debug_marker */ + +#ifndef GL_EXT_depth_clamp +#define GL_EXT_depth_clamp 1 +#define GL_DEPTH_CLAMP_EXT 0x864F +#endif /* GL_EXT_depth_clamp */ + +#ifndef GL_EXT_discard_framebuffer +#define GL_EXT_discard_framebuffer 1 +#define GL_COLOR_EXT 0x1800 +#define GL_DEPTH_EXT 0x1801 +#define GL_STENCIL_EXT 0x1802 +typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments); +#endif +#endif /* GL_EXT_discard_framebuffer */ + +#ifndef GL_EXT_disjoint_timer_query +#define GL_EXT_disjoint_timer_query 1 +#define GL_QUERY_COUNTER_BITS_EXT 0x8864 +#define GL_CURRENT_QUERY_EXT 0x8865 +#define GL_QUERY_RESULT_EXT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_EXT 0x8867 +#define GL_TIME_ELAPSED_EXT 0x88BF +#define GL_TIMESTAMP_EXT 0x8E28 +#define GL_GPU_DISJOINT_EXT 0x8FBB +typedef void (GL_APIENTRYP PFNGLGENQUERIESEXTPROC) (GLsizei n, GLuint *ids); +typedef void (GL_APIENTRYP PFNGLDELETEQUERIESEXTPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (GL_APIENTRYP PFNGLISQUERYEXTPROC) (GLuint id); +typedef void (GL_APIENTRYP PFNGLBEGINQUERYEXTPROC) (GLenum target, GLuint id); +typedef void (GL_APIENTRYP PFNGLENDQUERYEXTPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLQUERYCOUNTEREXTPROC) (GLuint id, GLenum target); +typedef void (GL_APIENTRYP PFNGLGETQUERYIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTIVEXTPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUIVEXTPROC) (GLuint id, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLGETINTEGER64VEXTPROC) (GLenum pname, GLint64 *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGenQueriesEXT (GLsizei n, GLuint *ids); +GL_APICALL void GL_APIENTRY glDeleteQueriesEXT (GLsizei n, const GLuint *ids); +GL_APICALL GLboolean GL_APIENTRY glIsQueryEXT (GLuint id); +GL_APICALL void GL_APIENTRY glBeginQueryEXT (GLenum target, GLuint id); +GL_APICALL void GL_APIENTRY glEndQueryEXT (GLenum target); +GL_APICALL void GL_APIENTRY glQueryCounterEXT (GLuint id, GLenum target); +GL_APICALL void GL_APIENTRY glGetQueryivEXT (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectivEXT (GLuint id, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectuivEXT (GLuint id, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64 *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64 *params); +GL_APICALL void GL_APIENTRY glGetInteger64vEXT (GLenum pname, GLint64 *data); +#endif +#endif /* GL_EXT_disjoint_timer_query */ + +#ifndef GL_EXT_draw_buffers +#define GL_EXT_draw_buffers 1 +#define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF +#define GL_MAX_DRAW_BUFFERS_EXT 0x8824 +#define GL_DRAW_BUFFER0_EXT 0x8825 +#define GL_DRAW_BUFFER1_EXT 0x8826 +#define GL_DRAW_BUFFER2_EXT 0x8827 +#define GL_DRAW_BUFFER3_EXT 0x8828 +#define GL_DRAW_BUFFER4_EXT 0x8829 +#define GL_DRAW_BUFFER5_EXT 0x882A +#define GL_DRAW_BUFFER6_EXT 0x882B +#define GL_DRAW_BUFFER7_EXT 0x882C +#define GL_DRAW_BUFFER8_EXT 0x882D +#define GL_DRAW_BUFFER9_EXT 0x882E +#define GL_DRAW_BUFFER10_EXT 0x882F +#define GL_DRAW_BUFFER11_EXT 0x8830 +#define GL_DRAW_BUFFER12_EXT 0x8831 +#define GL_DRAW_BUFFER13_EXT 0x8832 +#define GL_DRAW_BUFFER14_EXT 0x8833 +#define GL_DRAW_BUFFER15_EXT 0x8834 +#define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 +#define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 +#define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 +#define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 +#define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 +#define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 +#define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 +#define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 +#define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 +#define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 +#define GL_COLOR_ATTACHMENT10_EXT 0x8CEA +#define GL_COLOR_ATTACHMENT11_EXT 0x8CEB +#define GL_COLOR_ATTACHMENT12_EXT 0x8CEC +#define GL_COLOR_ATTACHMENT13_EXT 0x8CED +#define GL_COLOR_ATTACHMENT14_EXT 0x8CEE +#define GL_COLOR_ATTACHMENT15_EXT 0x8CEF +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSEXTPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawBuffersEXT (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_EXT_draw_buffers */ + +#ifndef GL_EXT_draw_buffers_indexed +#define GL_EXT_draw_buffers_indexed 1 +typedef void (GL_APIENTRYP PFNGLENABLEIEXTPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEIEXTPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONIEXTPROC) (GLuint buf, GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEIEXTPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCIEXTPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEIEXTPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (GL_APIENTRYP PFNGLCOLORMASKIEXTPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDIEXTPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEnableiEXT (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiEXT (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glBlendEquationiEXT (GLuint buf, GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparateiEXT (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunciEXT (GLuint buf, GLenum src, GLenum dst); +GL_APICALL void GL_APIENTRY glBlendFuncSeparateiEXT (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GL_APICALL void GL_APIENTRY glColorMaskiEXT (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediEXT (GLenum target, GLuint index); +#endif +#endif /* GL_EXT_draw_buffers_indexed */ + +#ifndef GL_EXT_draw_elements_base_vertex +#define GL_EXT_draw_elements_base_vertex 1 +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawElementsBaseVertexEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawRangeElementsBaseVertexEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +#endif +#endif /* GL_EXT_draw_elements_base_vertex */ + +#ifndef GL_EXT_draw_instanced +#define GL_EXT_draw_instanced 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_EXT_draw_instanced */ + +#ifndef GL_EXT_draw_transform_feedback +#define GL_EXT_draw_transform_feedback 1 +typedef void (GL_APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKEXTPROC) (GLenum mode, GLuint id); +typedef void (GL_APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDEXTPROC) (GLenum mode, GLuint id, GLsizei instancecount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawTransformFeedbackEXT (GLenum mode, GLuint id); +GL_APICALL void GL_APIENTRY glDrawTransformFeedbackInstancedEXT (GLenum mode, GLuint id, GLsizei instancecount); +#endif +#endif /* GL_EXT_draw_transform_feedback */ + +#ifndef GL_EXT_external_buffer +#define GL_EXT_external_buffer 1 +typedef void *GLeglClientBufferEXT; +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEEXTERNALEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTERNALEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferStorageExternalEXT (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +GL_APICALL void GL_APIENTRY glNamedBufferStorageExternalEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#endif +#endif /* GL_EXT_external_buffer */ + +#ifndef GL_EXT_float_blend +#define GL_EXT_float_blend 1 +#endif /* GL_EXT_float_blend */ + +#ifndef GL_EXT_fragment_shading_rate +#define GL_EXT_fragment_shading_rate 1 +#define GL_SHADING_RATE_1X1_PIXELS_EXT 0x96A6 +#define GL_SHADING_RATE_1X2_PIXELS_EXT 0x96A7 +#define GL_SHADING_RATE_2X1_PIXELS_EXT 0x96A8 +#define GL_SHADING_RATE_2X2_PIXELS_EXT 0x96A9 +#define GL_SHADING_RATE_1X4_PIXELS_EXT 0x96AA +#define GL_SHADING_RATE_4X1_PIXELS_EXT 0x96AB +#define GL_SHADING_RATE_4X2_PIXELS_EXT 0x96AC +#define GL_SHADING_RATE_2X4_PIXELS_EXT 0x96AD +#define GL_SHADING_RATE_4X4_PIXELS_EXT 0x96AE +#define GL_SHADING_RATE_EXT 0x96D0 +#define GL_SHADING_RATE_ATTACHMENT_EXT 0x96D1 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_EXT 0x96D2 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_REPLACE_EXT 0x96D3 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MIN_EXT 0x96D4 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MAX_EXT 0x96D5 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MUL_EXT 0x96D6 +#define GL_MIN_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_WIDTH_EXT 0x96D7 +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_WIDTH_EXT 0x96D8 +#define GL_MIN_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_HEIGHT_EXT 0x96D9 +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_HEIGHT_EXT 0x96DA +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_ASPECT_RATIO_EXT 0x96DB +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_LAYERS_EXT 0x96DC +#define GL_FRAGMENT_SHADING_RATE_WITH_SHADER_DEPTH_STENCIL_WRITES_SUPPORTED_EXT 0x96DD +#define GL_FRAGMENT_SHADING_RATE_WITH_SAMPLE_MASK_SUPPORTED_EXT 0x96DE +#define GL_FRAGMENT_SHADING_RATE_ATTACHMENT_WITH_DEFAULT_FRAMEBUFFER_SUPPORTED_EXT 0x96DF +#define GL_FRAGMENT_SHADING_RATE_NON_TRIVIAL_COMBINERS_SUPPORTED_EXT 0x8F6F +typedef void (GL_APIENTRYP PFNGLGETFRAGMENTSHADINGRATESEXTPROC) (GLsizei samples, GLsizei maxCount, GLsizei *count, GLenum *shadingRates); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEEXTPROC) (GLenum rate); +typedef void (GL_APIENTRYP PFNGLSHADINGRATECOMBINEROPSEXTPROC) (GLenum combinerOp0, GLenum combinerOp1); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERSHADINGRATEEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint baseLayer, GLsizei numLayers, GLsizei texelWidth, GLsizei texelHeight); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetFragmentShadingRatesEXT (GLsizei samples, GLsizei maxCount, GLsizei *count, GLenum *shadingRates); +GL_APICALL void GL_APIENTRY glShadingRateEXT (GLenum rate); +GL_APICALL void GL_APIENTRY glShadingRateCombinerOpsEXT (GLenum combinerOp0, GLenum combinerOp1); +GL_APICALL void GL_APIENTRY glFramebufferShadingRateEXT (GLenum target, GLenum attachment, GLuint texture, GLint baseLayer, GLsizei numLayers, GLsizei texelWidth, GLsizei texelHeight); +#endif +#endif /* GL_EXT_fragment_shading_rate */ + +#ifndef GL_EXT_geometry_point_size +#define GL_EXT_geometry_point_size 1 +#endif /* GL_EXT_geometry_point_size */ + +#ifndef GL_EXT_geometry_shader +#define GL_EXT_geometry_shader 1 +#define GL_GEOMETRY_SHADER_EXT 0x8DD9 +#define GL_GEOMETRY_SHADER_BIT_EXT 0x00000004 +#define GL_GEOMETRY_LINKED_VERTICES_OUT_EXT 0x8916 +#define GL_GEOMETRY_LINKED_INPUT_TYPE_EXT 0x8917 +#define GL_GEOMETRY_LINKED_OUTPUT_TYPE_EXT 0x8918 +#define GL_GEOMETRY_SHADER_INVOCATIONS_EXT 0x887F +#define GL_LAYER_PROVOKING_VERTEX_EXT 0x825E +#define GL_LINES_ADJACENCY_EXT 0x000A +#define GL_LINE_STRIP_ADJACENCY_EXT 0x000B +#define GL_TRIANGLES_ADJACENCY_EXT 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0x000D +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS_EXT 0x8A2C +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8A32 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS_EXT 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_EXT 0x9124 +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1 +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS_EXT 0x8E5A +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_EXT 0x92CF +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS_EXT 0x92D5 +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS_EXT 0x90CD +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_EXT 0x90D7 +#define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E +#define GL_UNDEFINED_VERTEX_EXT 0x8260 +#define GL_PRIMITIVES_GENERATED_EXT 0x8C87 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS_EXT 0x9312 +#define GL_MAX_FRAMEBUFFER_LAYERS_EXT 0x9317 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7 +#define GL_REFERENCED_BY_GEOMETRY_SHADER_EXT 0x9309 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level); +#endif +#endif /* GL_EXT_geometry_shader */ + +#ifndef GL_EXT_gpu_shader5 +#define GL_EXT_gpu_shader5 1 +#endif /* GL_EXT_gpu_shader5 */ + +#ifndef GL_EXT_instanced_arrays +#define GL_EXT_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_EXT 0x88FE +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISOREXTPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glVertexAttribDivisorEXT (GLuint index, GLuint divisor); +#endif +#endif /* GL_EXT_instanced_arrays */ + +#ifndef GL_EXT_map_buffer_range +#define GL_EXT_map_buffer_range 1 +#define GL_MAP_READ_BIT_EXT 0x0001 +#define GL_MAP_WRITE_BIT_EXT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT_EXT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT_EXT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT_EXT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT_EXT 0x0020 +typedef void *(GL_APIENTRYP PFNGLMAPBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (GL_APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void *GL_APIENTRY glMapBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GL_APICALL void GL_APIENTRY glFlushMappedBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length); +#endif +#endif /* GL_EXT_map_buffer_range */ + +#ifndef GL_EXT_memory_object +#define GL_EXT_memory_object 1 +#define GL_TEXTURE_TILING_EXT 0x9580 +#define GL_DEDICATED_MEMORY_OBJECT_EXT 0x9581 +#define GL_PROTECTED_MEMORY_OBJECT_EXT 0x959B +#define GL_NUM_TILING_TYPES_EXT 0x9582 +#define GL_TILING_TYPES_EXT 0x9583 +#define GL_OPTIMAL_TILING_EXT 0x9584 +#define GL_LINEAR_TILING_EXT 0x9585 +#define GL_NUM_DEVICE_UUIDS_EXT 0x9596 +#define GL_DEVICE_UUID_EXT 0x9597 +#define GL_DRIVER_UUID_EXT 0x9598 +#define GL_UUID_SIZE_EXT 16 +typedef void (GL_APIENTRYP PFNGLGETUNSIGNEDBYTEVEXTPROC) (GLenum pname, GLubyte *data); +typedef void (GL_APIENTRYP PFNGLGETUNSIGNEDBYTEI_VEXTPROC) (GLenum target, GLuint index, GLubyte *data); +typedef void (GL_APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); +typedef GLboolean (GL_APIENTRYP PFNGLISMEMORYOBJECTEXTPROC) (GLuint memoryObject); +typedef void (GL_APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); +typedef void (GL_APIENTRYP PFNGLMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLGETMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM2DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM3DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEMEMEXTPROC) (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM2DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM2DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM3DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM3DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERSTORAGEMEMEXTPROC) (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetUnsignedBytevEXT (GLenum pname, GLubyte *data); +GL_APICALL void GL_APIENTRY glGetUnsignedBytei_vEXT (GLenum target, GLuint index, GLubyte *data); +GL_APICALL void GL_APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); +GL_APICALL GLboolean GL_APIENTRY glIsMemoryObjectEXT (GLuint memoryObject); +GL_APICALL void GL_APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects); +GL_APICALL void GL_APIENTRY glMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glGetMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glTexStorageMem2DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem2DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem3DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem3DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glBufferStorageMemEXT (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem2DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem2DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem3DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem3DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glNamedBufferStorageMemEXT (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_EXT_memory_object */ + +#ifndef GL_EXT_memory_object_fd +#define GL_EXT_memory_object_fd 1 +#define GL_HANDLE_TYPE_OPAQUE_FD_EXT 0x9586 +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYFDEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportMemoryFdEXT (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_memory_object_fd */ + +#ifndef GL_EXT_memory_object_win32 +#define GL_EXT_memory_object_win32 1 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_EXT 0x9587 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_KMT_EXT 0x9588 +#define GL_DEVICE_LUID_EXT 0x9599 +#define GL_DEVICE_NODE_MASK_EXT 0x959A +#define GL_LUID_SIZE_EXT 8 +#define GL_HANDLE_TYPE_D3D12_TILEPOOL_EXT 0x9589 +#define GL_HANDLE_TYPE_D3D12_RESOURCE_EXT 0x958A +#define GL_HANDLE_TYPE_D3D11_IMAGE_EXT 0x958B +#define GL_HANDLE_TYPE_D3D11_IMAGE_KMT_EXT 0x958C +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYWIN32HANDLEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYWIN32NAMEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportMemoryWin32HandleEXT (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +GL_APICALL void GL_APIENTRY glImportMemoryWin32NameEXT (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_memory_object_win32 */ + +#ifndef GL_EXT_multi_draw_arrays +#define GL_EXT_multi_draw_arrays 1 +typedef void (GL_APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMultiDrawArraysEXT (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#endif +#endif /* GL_EXT_multi_draw_arrays */ + +#ifndef GL_EXT_multi_draw_indirect +#define GL_EXT_multi_draw_indirect 1 +typedef void (GL_APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTEXTPROC) (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTEXTPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMultiDrawArraysIndirectEXT (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +GL_APICALL void GL_APIENTRY glMultiDrawElementsIndirectEXT (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +#endif +#endif /* GL_EXT_multi_draw_indirect */ + +#ifndef GL_EXT_multisampled_compatibility +#define GL_EXT_multisampled_compatibility 1 +#define GL_MULTISAMPLE_EXT 0x809D +#define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F +#endif /* GL_EXT_multisampled_compatibility */ + +#ifndef GL_EXT_multisampled_render_to_texture +#define GL_EXT_multisampled_render_to_texture 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT 0x8D6C +#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 +#define GL_MAX_SAMPLES_EXT 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#endif +#endif /* GL_EXT_multisampled_render_to_texture */ + +#ifndef GL_EXT_multisampled_render_to_texture2 +#define GL_EXT_multisampled_render_to_texture2 1 +#endif /* GL_EXT_multisampled_render_to_texture2 */ + +#ifndef GL_EXT_multiview_draw_buffers +#define GL_EXT_multiview_draw_buffers 1 +#define GL_COLOR_ATTACHMENT_EXT 0x90F0 +#define GL_MULTIVIEW_EXT 0x90F1 +#define GL_DRAW_BUFFER_EXT 0x0C01 +#define GL_READ_BUFFER_EXT 0x0C02 +#define GL_MAX_MULTIVIEW_BUFFERS_EXT 0x90F2 +typedef void (GL_APIENTRYP PFNGLREADBUFFERINDEXEDEXTPROC) (GLenum src, GLint index); +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSINDEXEDEXTPROC) (GLint n, const GLenum *location, const GLint *indices); +typedef void (GL_APIENTRYP PFNGLGETINTEGERI_VEXTPROC) (GLenum target, GLuint index, GLint *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glReadBufferIndexedEXT (GLenum src, GLint index); +GL_APICALL void GL_APIENTRY glDrawBuffersIndexedEXT (GLint n, const GLenum *location, const GLint *indices); +GL_APICALL void GL_APIENTRY glGetIntegeri_vEXT (GLenum target, GLuint index, GLint *data); +#endif +#endif /* GL_EXT_multiview_draw_buffers */ + +#ifndef GL_EXT_multiview_tessellation_geometry_shader +#define GL_EXT_multiview_tessellation_geometry_shader 1 +#endif /* GL_EXT_multiview_tessellation_geometry_shader */ + +#ifndef GL_EXT_multiview_texture_multisample +#define GL_EXT_multiview_texture_multisample 1 +#endif /* GL_EXT_multiview_texture_multisample */ + +#ifndef GL_EXT_multiview_timer_query +#define GL_EXT_multiview_timer_query 1 +#endif /* GL_EXT_multiview_timer_query */ + +#ifndef GL_EXT_occlusion_query_boolean +#define GL_EXT_occlusion_query_boolean 1 +#define GL_ANY_SAMPLES_PASSED_EXT 0x8C2F +#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT 0x8D6A +#endif /* GL_EXT_occlusion_query_boolean */ + +#ifndef GL_EXT_polygon_offset_clamp +#define GL_EXT_polygon_offset_clamp 1 +#define GL_POLYGON_OFFSET_CLAMP_EXT 0x8E1B +typedef void (GL_APIENTRYP PFNGLPOLYGONOFFSETCLAMPEXTPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPolygonOffsetClampEXT (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_EXT_polygon_offset_clamp */ + +#ifndef GL_EXT_post_depth_coverage +#define GL_EXT_post_depth_coverage 1 +#endif /* GL_EXT_post_depth_coverage */ + +#ifndef GL_EXT_primitive_bounding_box +#define GL_EXT_primitive_bounding_box 1 +#define GL_PRIMITIVE_BOUNDING_BOX_EXT 0x92BE +typedef void (GL_APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXEXTPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPrimitiveBoundingBoxEXT (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_EXT_primitive_bounding_box */ + +#ifndef GL_EXT_protected_textures +#define GL_EXT_protected_textures 1 +#define GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT 0x00000010 +#define GL_TEXTURE_PROTECTED_EXT 0x8BFA +#endif /* GL_EXT_protected_textures */ + +#ifndef GL_EXT_pvrtc_sRGB +#define GL_EXT_pvrtc_sRGB 1 +#define GL_COMPRESSED_SRGB_PVRTC_2BPPV1_EXT 0x8A54 +#define GL_COMPRESSED_SRGB_PVRTC_4BPPV1_EXT 0x8A55 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_2BPPV1_EXT 0x8A56 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_4BPPV1_EXT 0x8A57 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_2BPPV2_IMG 0x93F0 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_4BPPV2_IMG 0x93F1 +#endif /* GL_EXT_pvrtc_sRGB */ + +#ifndef GL_EXT_raster_multisample +#define GL_EXT_raster_multisample 1 +#define GL_RASTER_MULTISAMPLE_EXT 0x9327 +#define GL_RASTER_SAMPLES_EXT 0x9328 +#define GL_MAX_RASTER_SAMPLES_EXT 0x9329 +#define GL_RASTER_FIXED_SAMPLE_LOCATIONS_EXT 0x932A +#define GL_MULTISAMPLE_RASTERIZATION_ALLOWED_EXT 0x932B +#define GL_EFFECTIVE_RASTER_SAMPLES_EXT 0x932C +typedef void (GL_APIENTRYP PFNGLRASTERSAMPLESEXTPROC) (GLuint samples, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRasterSamplesEXT (GLuint samples, GLboolean fixedsamplelocations); +#endif +#endif /* GL_EXT_raster_multisample */ + +#ifndef GL_EXT_read_format_bgra +#define GL_EXT_read_format_bgra 1 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT 0x8366 +#endif /* GL_EXT_read_format_bgra */ + +#ifndef GL_EXT_render_snorm +#define GL_EXT_render_snorm 1 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM_EXT 0x8F98 +#define GL_RG16_SNORM_EXT 0x8F99 +#define GL_RGBA16_SNORM_EXT 0x8F9B +#endif /* GL_EXT_render_snorm */ + +#ifndef GL_EXT_robustness +#define GL_EXT_robustness 1 +#define GL_GUILTY_CONTEXT_RESET_EXT 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_EXT 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_EXT 0x8255 +#define GL_CONTEXT_ROBUST_ACCESS_EXT 0x90F3 +#define GL_RESET_NOTIFICATION_STRATEGY_EXT 0x8256 +#define GL_LOSE_CONTEXT_ON_RESET_EXT 0x8252 +#define GL_NO_RESET_NOTIFICATION_EXT 0x8261 +typedef GLenum (GL_APIENTRYP PFNGLGETGRAPHICSRESETSTATUSEXTPROC) (void); +typedef void (GL_APIENTRYP PFNGLREADNPIXELSEXTPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusEXT (void); +GL_APICALL void GL_APIENTRY glReadnPixelsEXT (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GL_APICALL void GL_APIENTRY glGetnUniformfvEXT (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetnUniformivEXT (GLuint program, GLint location, GLsizei bufSize, GLint *params); +#endif +#endif /* GL_EXT_robustness */ + +#ifndef GL_EXT_sRGB +#define GL_EXT_sRGB 1 +#define GL_SRGB_EXT 0x8C40 +#define GL_SRGB_ALPHA_EXT 0x8C42 +#define GL_SRGB8_ALPHA8_EXT 0x8C43 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT 0x8210 +#endif /* GL_EXT_sRGB */ + +#ifndef GL_EXT_sRGB_write_control +#define GL_EXT_sRGB_write_control 1 +#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 +#endif /* GL_EXT_sRGB_write_control */ + +#ifndef GL_EXT_semaphore +#define GL_EXT_semaphore 1 +#define GL_LAYOUT_GENERAL_EXT 0x958D +#define GL_LAYOUT_COLOR_ATTACHMENT_EXT 0x958E +#define GL_LAYOUT_DEPTH_STENCIL_ATTACHMENT_EXT 0x958F +#define GL_LAYOUT_DEPTH_STENCIL_READ_ONLY_EXT 0x9590 +#define GL_LAYOUT_SHADER_READ_ONLY_EXT 0x9591 +#define GL_LAYOUT_TRANSFER_SRC_EXT 0x9592 +#define GL_LAYOUT_TRANSFER_DST_EXT 0x9593 +#define GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT 0x9530 +#define GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT 0x9531 +typedef void (GL_APIENTRYP PFNGLGENSEMAPHORESEXTPROC) (GLsizei n, GLuint *semaphores); +typedef void (GL_APIENTRYP PFNGLDELETESEMAPHORESEXTPROC) (GLsizei n, const GLuint *semaphores); +typedef GLboolean (GL_APIENTRYP PFNGLISSEMAPHOREEXTPROC) (GLuint semaphore); +typedef void (GL_APIENTRYP PFNGLSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, const GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLGETSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLWAITSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +typedef void (GL_APIENTRYP PFNGLSIGNALSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGenSemaphoresEXT (GLsizei n, GLuint *semaphores); +GL_APICALL void GL_APIENTRY glDeleteSemaphoresEXT (GLsizei n, const GLuint *semaphores); +GL_APICALL GLboolean GL_APIENTRY glIsSemaphoreEXT (GLuint semaphore); +GL_APICALL void GL_APIENTRY glSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, const GLuint64 *params); +GL_APICALL void GL_APIENTRY glGetSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, GLuint64 *params); +GL_APICALL void GL_APIENTRY glWaitSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +GL_APICALL void GL_APIENTRY glSignalSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#endif +#endif /* GL_EXT_semaphore */ + +#ifndef GL_EXT_semaphore_fd +#define GL_EXT_semaphore_fd 1 +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREFDEXTPROC) (GLuint semaphore, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportSemaphoreFdEXT (GLuint semaphore, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_semaphore_fd */ + +#ifndef GL_EXT_semaphore_win32 +#define GL_EXT_semaphore_win32 1 +#define GL_HANDLE_TYPE_D3D12_FENCE_EXT 0x9594 +#define GL_D3D12_FENCE_VALUE_EXT 0x9595 +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREWIN32HANDLEEXTPROC) (GLuint semaphore, GLenum handleType, void *handle); +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREWIN32NAMEEXTPROC) (GLuint semaphore, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportSemaphoreWin32HandleEXT (GLuint semaphore, GLenum handleType, void *handle); +GL_APICALL void GL_APIENTRY glImportSemaphoreWin32NameEXT (GLuint semaphore, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_semaphore_win32 */ + +#ifndef GL_EXT_separate_depth_stencil +#define GL_EXT_separate_depth_stencil 1 +#endif /* GL_EXT_separate_depth_stencil */ + +#ifndef GL_EXT_separate_shader_objects +#define GL_EXT_separate_shader_objects 1 +#define GL_ACTIVE_PROGRAM_EXT 0x8259 +#define GL_VERTEX_SHADER_BIT_EXT 0x00000001 +#define GL_FRAGMENT_SHADER_BIT_EXT 0x00000002 +#define GL_ALL_SHADER_BITS_EXT 0xFFFFFFFF +#define GL_PROGRAM_SEPARABLE_EXT 0x8258 +#define GL_PROGRAM_PIPELINE_BINDING_EXT 0x825A +typedef void (GL_APIENTRYP PFNGLACTIVESHADERPROGRAMEXTPROC) (GLuint pipeline, GLuint program); +typedef void (GL_APIENTRYP PFNGLBINDPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef GLuint (GL_APIENTRYP PFNGLCREATESHADERPROGRAMVEXTPROC) (GLenum type, GLsizei count, const GLchar **strings); +typedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPIPELINESEXTPROC) (GLsizei n, const GLuint *pipelines); +typedef void (GL_APIENTRYP PFNGLGENPROGRAMPIPELINESEXTPROC) (GLsizei n, GLuint *pipelines); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGEXTPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEIVEXTPROC) (GLuint pipeline, GLenum pname, GLint *params); +typedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef void (GL_APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUSEPROGRAMSTAGESEXTPROC) (GLuint pipeline, GLbitfield stages, GLuint program); +typedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UIEXTPROC) (GLuint program, GLint location, GLuint v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glActiveShaderProgramEXT (GLuint pipeline, GLuint program); +GL_APICALL void GL_APIENTRY glBindProgramPipelineEXT (GLuint pipeline); +GL_APICALL GLuint GL_APIENTRY glCreateShaderProgramvEXT (GLenum type, GLsizei count, const GLchar **strings); +GL_APICALL void GL_APIENTRY glDeleteProgramPipelinesEXT (GLsizei n, const GLuint *pipelines); +GL_APICALL void GL_APIENTRY glGenProgramPipelinesEXT (GLsizei n, GLuint *pipelines); +GL_APICALL void GL_APIENTRY glGetProgramPipelineInfoLogEXT (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetProgramPipelineivEXT (GLuint pipeline, GLenum pname, GLint *params); +GL_APICALL GLboolean GL_APIENTRY glIsProgramPipelineEXT (GLuint pipeline); +GL_APICALL void GL_APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat v0); +GL_APICALL void GL_APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint v0); +GL_APICALL void GL_APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GL_APICALL void GL_APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint v0, GLint v1); +GL_APICALL void GL_APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GL_APICALL void GL_APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GL_APICALL void GL_APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GL_APICALL void GL_APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GL_APICALL void GL_APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUseProgramStagesEXT (GLuint pipeline, GLbitfield stages, GLuint program); +GL_APICALL void GL_APIENTRY glValidateProgramPipelineEXT (GLuint pipeline); +GL_APICALL void GL_APIENTRY glProgramUniform1uiEXT (GLuint program, GLint location, GLuint v0); +GL_APICALL void GL_APIENTRY glProgramUniform2uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1); +GL_APICALL void GL_APIENTRY glProgramUniform3uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GL_APICALL void GL_APIENTRY glProgramUniform4uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GL_APICALL void GL_APIENTRY glProgramUniform1uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform2uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform3uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform4uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_EXT_separate_shader_objects */ + +#ifndef GL_EXT_shader_framebuffer_fetch +#define GL_EXT_shader_framebuffer_fetch 1 +#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT 0x8A52 +#endif /* GL_EXT_shader_framebuffer_fetch */ + +#ifndef GL_EXT_shader_framebuffer_fetch_non_coherent +#define GL_EXT_shader_framebuffer_fetch_non_coherent 1 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFetchBarrierEXT (void); +#endif +#endif /* GL_EXT_shader_framebuffer_fetch_non_coherent */ + +#ifndef GL_EXT_shader_group_vote +#define GL_EXT_shader_group_vote 1 +#endif /* GL_EXT_shader_group_vote */ + +#ifndef GL_EXT_shader_implicit_conversions +#define GL_EXT_shader_implicit_conversions 1 +#endif /* GL_EXT_shader_implicit_conversions */ + +#ifndef GL_EXT_shader_integer_mix +#define GL_EXT_shader_integer_mix 1 +#endif /* GL_EXT_shader_integer_mix */ + +#ifndef GL_EXT_shader_io_blocks +#define GL_EXT_shader_io_blocks 1 +#endif /* GL_EXT_shader_io_blocks */ + +#ifndef GL_EXT_shader_non_constant_global_initializers +#define GL_EXT_shader_non_constant_global_initializers 1 +#endif /* GL_EXT_shader_non_constant_global_initializers */ + +#ifndef GL_EXT_shader_pixel_local_storage +#define GL_EXT_shader_pixel_local_storage 1 +#define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63 +#define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_SIZE_EXT 0x8F67 +#define GL_SHADER_PIXEL_LOCAL_STORAGE_EXT 0x8F64 +#endif /* GL_EXT_shader_pixel_local_storage */ + +#ifndef GL_EXT_shader_pixel_local_storage2 +#define GL_EXT_shader_pixel_local_storage2 1 +#define GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_FAST_SIZE_EXT 0x9650 +#define GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_SIZE_EXT 0x9651 +#define GL_FRAMEBUFFER_INCOMPLETE_INSUFFICIENT_SHADER_COMBINED_LOCAL_STORAGE_EXT 0x9652 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC) (GLuint target, GLsizei size); +typedef GLsizei (GL_APIENTRYP PFNGLGETFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC) (GLuint target); +typedef void (GL_APIENTRYP PFNGLCLEARPIXELLOCALSTORAGEUIEXTPROC) (GLsizei offset, GLsizei n, const GLuint *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferPixelLocalStorageSizeEXT (GLuint target, GLsizei size); +GL_APICALL GLsizei GL_APIENTRY glGetFramebufferPixelLocalStorageSizeEXT (GLuint target); +GL_APICALL void GL_APIENTRY glClearPixelLocalStorageuiEXT (GLsizei offset, GLsizei n, const GLuint *values); +#endif +#endif /* GL_EXT_shader_pixel_local_storage2 */ + +#ifndef GL_EXT_shader_samples_identical +#define GL_EXT_shader_samples_identical 1 +#endif /* GL_EXT_shader_samples_identical */ + +#ifndef GL_EXT_shader_texture_lod +#define GL_EXT_shader_texture_lod 1 +#endif /* GL_EXT_shader_texture_lod */ + +#ifndef GL_EXT_shadow_samplers +#define GL_EXT_shadow_samplers 1 +#define GL_TEXTURE_COMPARE_MODE_EXT 0x884C +#define GL_TEXTURE_COMPARE_FUNC_EXT 0x884D +#define GL_COMPARE_REF_TO_TEXTURE_EXT 0x884E +#define GL_SAMPLER_2D_SHADOW_EXT 0x8B62 +#endif /* GL_EXT_shadow_samplers */ + +#ifndef GL_EXT_sparse_texture +#define GL_EXT_sparse_texture 1 +#define GL_TEXTURE_SPARSE_EXT 0x91A6 +#define GL_VIRTUAL_PAGE_SIZE_INDEX_EXT 0x91A7 +#define GL_NUM_SPARSE_LEVELS_EXT 0x91AA +#define GL_NUM_VIRTUAL_PAGE_SIZES_EXT 0x91A8 +#define GL_VIRTUAL_PAGE_SIZE_X_EXT 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_EXT 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_EXT 0x9197 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_TEXTURE_3D 0x806F +#define GL_MAX_SPARSE_TEXTURE_SIZE_EXT 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_EXT 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_EXT 0x919A +#define GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_EXT 0x91A9 +typedef void (GL_APIENTRYP PFNGLTEXPAGECOMMITMENTEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexPageCommitmentEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#endif +#endif /* GL_EXT_sparse_texture */ + +#ifndef GL_EXT_sparse_texture2 +#define GL_EXT_sparse_texture2 1 +#endif /* GL_EXT_sparse_texture2 */ + +#ifndef GL_EXT_tessellation_point_size +#define GL_EXT_tessellation_point_size 1 +#endif /* GL_EXT_tessellation_point_size */ + +#ifndef GL_EXT_tessellation_shader +#define GL_EXT_tessellation_shader 1 +#define GL_PATCHES_EXT 0x000E +#define GL_PATCH_VERTICES_EXT 0x8E72 +#define GL_TESS_CONTROL_OUTPUT_VERTICES_EXT 0x8E75 +#define GL_TESS_GEN_MODE_EXT 0x8E76 +#define GL_TESS_GEN_SPACING_EXT 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER_EXT 0x8E78 +#define GL_TESS_GEN_POINT_MODE_EXT 0x8E79 +#define GL_ISOLINES_EXT 0x8E7A +#define GL_QUADS_EXT 0x0007 +#define GL_FRACTIONAL_ODD_EXT 0x8E7B +#define GL_FRACTIONAL_EVEN_EXT 0x8E7C +#define GL_MAX_PATCH_VERTICES_EXT 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL_EXT 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS_EXT 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS_EXT 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS_EXT 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS_EXT 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS_EXT 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS_EXT 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS_EXT 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS_EXT 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS_EXT 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS_EXT 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS_EXT 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS_EXT 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT 0x8E1F +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_EXT 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS_EXT 0x92CE +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS_EXT 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS_EXT 0x92D4 +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_EXT 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS_EXT 0x90CC +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS_EXT 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS_EXT 0x90D9 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED 0x8221 +#define GL_IS_PER_PATCH_EXT 0x92E7 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER_EXT 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER_EXT 0x9308 +#define GL_TESS_CONTROL_SHADER_EXT 0x8E88 +#define GL_TESS_EVALUATION_SHADER_EXT 0x8E87 +#define GL_TESS_CONTROL_SHADER_BIT_EXT 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT_EXT 0x00000010 +typedef void (GL_APIENTRYP PFNGLPATCHPARAMETERIEXTPROC) (GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPatchParameteriEXT (GLenum pname, GLint value); +#endif +#endif /* GL_EXT_tessellation_shader */ + +#ifndef GL_EXT_texture_border_clamp +#define GL_EXT_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_EXT 0x1004 +#define GL_CLAMP_TO_BORDER_EXT 0x812D +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIIVEXTPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIUIVEXTPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIIVEXTPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVEXTPROC) (GLuint sampler, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexParameterIivEXT (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexParameterIuivEXT (GLenum target, GLenum pname, const GLuint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIivEXT (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIuivEXT (GLenum target, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glSamplerParameterIivEXT (GLuint sampler, GLenum pname, const GLint *param); +GL_APICALL void GL_APIENTRY glSamplerParameterIuivEXT (GLuint sampler, GLenum pname, const GLuint *param); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIivEXT (GLuint sampler, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIuivEXT (GLuint sampler, GLenum pname, GLuint *params); +#endif +#endif /* GL_EXT_texture_border_clamp */ + +#ifndef GL_EXT_texture_buffer +#define GL_EXT_texture_buffer 1 +#define GL_TEXTURE_BUFFER_EXT 0x8C2A +#define GL_TEXTURE_BUFFER_BINDING_EXT 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT_EXT 0x919F +#define GL_SAMPLER_BUFFER_EXT 0x8DC2 +#define GL_INT_SAMPLER_BUFFER_EXT 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT 0x8DD8 +#define GL_IMAGE_BUFFER_EXT 0x9051 +#define GL_INT_IMAGE_BUFFER_EXT 0x905C +#define GL_UNSIGNED_INT_IMAGE_BUFFER_EXT 0x9067 +#define GL_TEXTURE_BUFFER_OFFSET_EXT 0x919D +#define GL_TEXTURE_BUFFER_SIZE_EXT 0x919E +typedef void (GL_APIENTRYP PFNGLTEXBUFFEREXTPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLTEXBUFFERRANGEEXTPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexBufferEXT (GLenum target, GLenum internalformat, GLuint buffer); +GL_APICALL void GL_APIENTRY glTexBufferRangeEXT (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_EXT_texture_buffer */ + +#ifndef GL_EXT_texture_compression_astc_decode_mode +#define GL_EXT_texture_compression_astc_decode_mode 1 +#define GL_TEXTURE_ASTC_DECODE_PRECISION_EXT 0x8F69 +#endif /* GL_EXT_texture_compression_astc_decode_mode */ + +#ifndef GL_EXT_texture_compression_bptc +#define GL_EXT_texture_compression_bptc 1 +#define GL_COMPRESSED_RGBA_BPTC_UNORM_EXT 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT 0x8E8F +#endif /* GL_EXT_texture_compression_bptc */ + +#ifndef GL_EXT_texture_compression_dxt1 +#define GL_EXT_texture_compression_dxt1 1 +#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 +#endif /* GL_EXT_texture_compression_dxt1 */ + +#ifndef GL_EXT_texture_compression_rgtc +#define GL_EXT_texture_compression_rgtc 1 +#define GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC +#define GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD +#define GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE +#endif /* GL_EXT_texture_compression_rgtc */ + +#ifndef GL_EXT_texture_compression_s3tc +#define GL_EXT_texture_compression_s3tc 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 +#endif /* GL_EXT_texture_compression_s3tc */ + +#ifndef GL_EXT_texture_compression_s3tc_srgb +#define GL_EXT_texture_compression_s3tc_srgb 1 +#define GL_COMPRESSED_SRGB_S3TC_DXT1_EXT 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT 0x8C4F +#endif /* GL_EXT_texture_compression_s3tc_srgb */ + +#ifndef GL_EXT_texture_cube_map_array +#define GL_EXT_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_EXT 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_EXT 0x900A +#define GL_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_EXT 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900F +#define GL_IMAGE_CUBE_MAP_ARRAY_EXT 0x9054 +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x905F +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x906A +#endif /* GL_EXT_texture_cube_map_array */ + +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_EXT_texture_filter_anisotropic 1 +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF +#endif /* GL_EXT_texture_filter_anisotropic */ + +#ifndef GL_EXT_texture_filter_minmax +#define GL_EXT_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_EXT 0x9366 +#define GL_WEIGHTED_AVERAGE_EXT 0x9367 +#endif /* GL_EXT_texture_filter_minmax */ + +#ifndef GL_EXT_texture_format_BGRA8888 +#define GL_EXT_texture_format_BGRA8888 1 +#endif /* GL_EXT_texture_format_BGRA8888 */ + +#ifndef GL_EXT_texture_format_sRGB_override +#define GL_EXT_texture_format_sRGB_override 1 +#define GL_TEXTURE_FORMAT_SRGB_OVERRIDE_EXT 0x8FBF +#endif /* GL_EXT_texture_format_sRGB_override */ + +#ifndef GL_EXT_texture_mirror_clamp_to_edge +#define GL_EXT_texture_mirror_clamp_to_edge 1 +#define GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 +#endif /* GL_EXT_texture_mirror_clamp_to_edge */ + +#ifndef GL_EXT_texture_norm16 +#define GL_EXT_texture_norm16 1 +#define GL_R16_EXT 0x822A +#define GL_RG16_EXT 0x822C +#define GL_RGBA16_EXT 0x805B +#define GL_RGB16_EXT 0x8054 +#define GL_RGB16_SNORM_EXT 0x8F9A +#endif /* GL_EXT_texture_norm16 */ + +#ifndef GL_EXT_texture_query_lod +#define GL_EXT_texture_query_lod 1 +#endif /* GL_EXT_texture_query_lod */ + +#ifndef GL_EXT_texture_rg +#define GL_EXT_texture_rg 1 +#define GL_RED_EXT 0x1903 +#define GL_RG_EXT 0x8227 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B +#endif /* GL_EXT_texture_rg */ + +#ifndef GL_EXT_texture_sRGB_R8 +#define GL_EXT_texture_sRGB_R8 1 +#define GL_SR8_EXT 0x8FBD +#endif /* GL_EXT_texture_sRGB_R8 */ + +#ifndef GL_EXT_texture_sRGB_RG8 +#define GL_EXT_texture_sRGB_RG8 1 +#define GL_SRG8_EXT 0x8FBE +#endif /* GL_EXT_texture_sRGB_RG8 */ + +#ifndef GL_EXT_texture_sRGB_decode +#define GL_EXT_texture_sRGB_decode 1 +#define GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 +#define GL_DECODE_EXT 0x8A49 +#define GL_SKIP_DECODE_EXT 0x8A4A +#endif /* GL_EXT_texture_sRGB_decode */ + +#ifndef GL_EXT_texture_shadow_lod +#define GL_EXT_texture_shadow_lod 1 +#endif /* GL_EXT_texture_shadow_lod */ + +#ifndef GL_EXT_texture_storage +#define GL_EXT_texture_storage 1 +#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F +#define GL_ALPHA8_EXT 0x803C +#define GL_LUMINANCE8_EXT 0x8040 +#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 +#define GL_RGBA32F_EXT 0x8814 +#define GL_RGB32F_EXT 0x8815 +#define GL_ALPHA32F_EXT 0x8816 +#define GL_LUMINANCE32F_EXT 0x8818 +#define GL_LUMINANCE_ALPHA32F_EXT 0x8819 +#define GL_ALPHA16F_EXT 0x881C +#define GL_LUMINANCE16F_EXT 0x881E +#define GL_LUMINANCE_ALPHA16F_EXT 0x881F +#define GL_R32F_EXT 0x822E +#define GL_RG32F_EXT 0x8230 +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorage1DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GL_APICALL void GL_APIENTRY glTexStorage2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glTexStorage3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GL_APICALL void GL_APIENTRY glTextureStorage1DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GL_APICALL void GL_APIENTRY glTextureStorage2DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glTextureStorage3DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_EXT_texture_storage */ + +#ifndef GL_EXT_texture_storage_compression +#define GL_EXT_texture_storage_compression 1 +#define GL_NUM_SURFACE_COMPRESSION_FIXED_RATES_EXT 0x8F6E +#define GL_SURFACE_COMPRESSION_FIXED_RATE_1BPC_EXT 0x96C4 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_2BPC_EXT 0x96C5 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_3BPC_EXT 0x96C6 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_4BPC_EXT 0x96C7 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_5BPC_EXT 0x96C8 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_6BPC_EXT 0x96C9 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_7BPC_EXT 0x96CA +#define GL_SURFACE_COMPRESSION_FIXED_RATE_8BPC_EXT 0x96CB +#define GL_SURFACE_COMPRESSION_FIXED_RATE_9BPC_EXT 0x96CC +#define GL_SURFACE_COMPRESSION_FIXED_RATE_10BPC_EXT 0x96CD +#define GL_SURFACE_COMPRESSION_FIXED_RATE_11BPC_EXT 0x96CE +#define GL_SURFACE_COMPRESSION_FIXED_RATE_12BPC_EXT 0x96CF +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEATTRIBS2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, const GLint* attrib_list); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEATTRIBS3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorageAttribs2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, const GLint* attrib_list); +GL_APICALL void GL_APIENTRY glTexStorageAttribs3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, const GLint* attrib_list); +#endif +#endif /* GL_EXT_texture_storage_compression */ + +#ifndef GL_EXT_texture_type_2_10_10_10_REV +#define GL_EXT_texture_type_2_10_10_10_REV 1 +#define GL_UNSIGNED_INT_2_10_10_10_REV_EXT 0x8368 +#endif /* GL_EXT_texture_type_2_10_10_10_REV */ + +#ifndef GL_EXT_texture_view +#define GL_EXT_texture_view 1 +#define GL_TEXTURE_VIEW_MIN_LEVEL_EXT 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS_EXT 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER_EXT 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS_EXT 0x82DE +typedef void (GL_APIENTRYP PFNGLTEXTUREVIEWEXTPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureViewEXT (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#endif +#endif /* GL_EXT_texture_view */ + +#ifndef GL_EXT_unpack_subimage +#define GL_EXT_unpack_subimage 1 +#define GL_UNPACK_ROW_LENGTH_EXT 0x0CF2 +#define GL_UNPACK_SKIP_ROWS_EXT 0x0CF3 +#define GL_UNPACK_SKIP_PIXELS_EXT 0x0CF4 +#endif /* GL_EXT_unpack_subimage */ + +#ifndef GL_EXT_win32_keyed_mutex +#define GL_EXT_win32_keyed_mutex 1 +typedef GLboolean (GL_APIENTRYP PFNGLACQUIREKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key, GLuint timeout); +typedef GLboolean (GL_APIENTRYP PFNGLRELEASEKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLboolean GL_APIENTRY glAcquireKeyedMutexWin32EXT (GLuint memory, GLuint64 key, GLuint timeout); +GL_APICALL GLboolean GL_APIENTRY glReleaseKeyedMutexWin32EXT (GLuint memory, GLuint64 key); +#endif +#endif /* GL_EXT_win32_keyed_mutex */ + +#ifndef GL_EXT_window_rectangles +#define GL_EXT_window_rectangles 1 +#define GL_INCLUSIVE_EXT 0x8F10 +#define GL_EXCLUSIVE_EXT 0x8F11 +#define GL_WINDOW_RECTANGLE_EXT 0x8F12 +#define GL_WINDOW_RECTANGLE_MODE_EXT 0x8F13 +#define GL_MAX_WINDOW_RECTANGLES_EXT 0x8F14 +#define GL_NUM_WINDOW_RECTANGLES_EXT 0x8F15 +typedef void (GL_APIENTRYP PFNGLWINDOWRECTANGLESEXTPROC) (GLenum mode, GLsizei count, const GLint *box); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glWindowRectanglesEXT (GLenum mode, GLsizei count, const GLint *box); +#endif +#endif /* GL_EXT_window_rectangles */ + +#ifndef GL_FJ_shader_binary_GCCSO +#define GL_FJ_shader_binary_GCCSO 1 +#define GL_GCCSO_SHADER_BINARY_FJ 0x9260 +#endif /* GL_FJ_shader_binary_GCCSO */ + +#ifndef GL_IMG_bindless_texture +#define GL_IMG_bindless_texture 1 +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTUREHANDLEIMGPROC) (GLuint texture); +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTURESAMPLERHANDLEIMGPROC) (GLuint texture, GLuint sampler); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64IMGPROC) (GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64VIMGPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64IMGPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VIMGPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint64 GL_APIENTRY glGetTextureHandleIMG (GLuint texture); +GL_APICALL GLuint64 GL_APIENTRY glGetTextureSamplerHandleIMG (GLuint texture, GLuint sampler); +GL_APICALL void GL_APIENTRY glUniformHandleui64IMG (GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glUniformHandleui64vIMG (GLint location, GLsizei count, const GLuint64 *value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64IMG (GLuint program, GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64vIMG (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +#endif +#endif /* GL_IMG_bindless_texture */ + +#ifndef GL_IMG_framebuffer_downsample +#define GL_IMG_framebuffer_downsample 1 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_AND_DOWNSAMPLE_IMG 0x913C +#define GL_NUM_DOWNSAMPLE_SCALES_IMG 0x913D +#define GL_DOWNSAMPLE_SCALES_IMG 0x913E +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SCALE_IMG 0x913F +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DDOWNSAMPLEIMGPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint xscale, GLint yscale); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERDOWNSAMPLEIMGPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, GLint xscale, GLint yscale); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTexture2DDownsampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint xscale, GLint yscale); +GL_APICALL void GL_APIENTRY glFramebufferTextureLayerDownsampleIMG (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, GLint xscale, GLint yscale); +#endif +#endif /* GL_IMG_framebuffer_downsample */ + +#ifndef GL_IMG_multisampled_render_to_texture +#define GL_IMG_multisampled_render_to_texture 1 +#define GL_RENDERBUFFER_SAMPLES_IMG 0x9133 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_IMG 0x9134 +#define GL_MAX_SAMPLES_IMG 0x9135 +#define GL_TEXTURE_SAMPLES_IMG 0x9136 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEIMGPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEIMGPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleIMG (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#endif +#endif /* GL_IMG_multisampled_render_to_texture */ + +#ifndef GL_IMG_program_binary +#define GL_IMG_program_binary 1 +#define GL_SGX_PROGRAM_BINARY_IMG 0x9130 +#endif /* GL_IMG_program_binary */ + +#ifndef GL_IMG_read_format +#define GL_IMG_read_format 1 +#define GL_BGRA_IMG 0x80E1 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV_IMG 0x8365 +#endif /* GL_IMG_read_format */ + +#ifndef GL_IMG_shader_binary +#define GL_IMG_shader_binary 1 +#define GL_SGX_BINARY_IMG 0x8C0A +#endif /* GL_IMG_shader_binary */ + +#ifndef GL_IMG_texture_compression_pvrtc +#define GL_IMG_texture_compression_pvrtc 1 +#define GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG 0x8C00 +#define GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG 0x8C01 +#define GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG 0x8C02 +#define GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG 0x8C03 +#endif /* GL_IMG_texture_compression_pvrtc */ + +#ifndef GL_IMG_texture_compression_pvrtc2 +#define GL_IMG_texture_compression_pvrtc2 1 +#define GL_COMPRESSED_RGBA_PVRTC_2BPPV2_IMG 0x9137 +#define GL_COMPRESSED_RGBA_PVRTC_4BPPV2_IMG 0x9138 +#endif /* GL_IMG_texture_compression_pvrtc2 */ + +#ifndef GL_IMG_texture_filter_cubic +#define GL_IMG_texture_filter_cubic 1 +#define GL_CUBIC_IMG 0x9139 +#define GL_CUBIC_MIPMAP_NEAREST_IMG 0x913A +#define GL_CUBIC_MIPMAP_LINEAR_IMG 0x913B +#endif /* GL_IMG_texture_filter_cubic */ + +#ifndef GL_INTEL_blackhole_render +#define GL_INTEL_blackhole_render 1 +#define GL_BLACKHOLE_RENDER_INTEL 0x83FC +#endif /* GL_INTEL_blackhole_render */ + +#ifndef GL_INTEL_conservative_rasterization +#define GL_INTEL_conservative_rasterization 1 +#define GL_CONSERVATIVE_RASTERIZATION_INTEL 0x83FE +#endif /* GL_INTEL_conservative_rasterization */ + +#ifndef GL_INTEL_framebuffer_CMAA +#define GL_INTEL_framebuffer_CMAA 1 +typedef void (GL_APIENTRYP PFNGLAPPLYFRAMEBUFFERATTACHMENTCMAAINTELPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glApplyFramebufferAttachmentCMAAINTEL (void); +#endif +#endif /* GL_INTEL_framebuffer_CMAA */ + +#ifndef GL_INTEL_performance_query +#define GL_INTEL_performance_query 1 +#define GL_PERFQUERY_SINGLE_CONTEXT_INTEL 0x00000000 +#define GL_PERFQUERY_GLOBAL_CONTEXT_INTEL 0x00000001 +#define GL_PERFQUERY_WAIT_INTEL 0x83FB +#define GL_PERFQUERY_FLUSH_INTEL 0x83FA +#define GL_PERFQUERY_DONOT_FLUSH_INTEL 0x83F9 +#define GL_PERFQUERY_COUNTER_EVENT_INTEL 0x94F0 +#define GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL 0x94F1 +#define GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL 0x94F2 +#define GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL 0x94F3 +#define GL_PERFQUERY_COUNTER_RAW_INTEL 0x94F4 +#define GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL 0x94F5 +#define GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL 0x94F8 +#define GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL 0x94F9 +#define GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL 0x94FA +#define GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL 0x94FB +#define GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL 0x94FC +#define GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL 0x94FD +#define GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL 0x94FE +#define GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL 0x94FF +#define GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL 0x9500 +typedef void (GL_APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); +typedef void (GL_APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLGETFIRSTPERFQUERYIDINTELPROC) (GLuint *queryId); +typedef void (GL_APIENTRYP PFNGLGETNEXTPERFQUERYIDINTELPROC) (GLuint queryId, GLuint *nextQueryId); +typedef void (GL_APIENTRYP PFNGLGETPERFCOUNTERINFOINTELPROC) (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYIDBYNAMEINTELPROC) (GLchar *queryName, GLuint *queryId); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYINFOINTELPROC) (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); +GL_APICALL void GL_APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glGetFirstPerfQueryIdINTEL (GLuint *queryId); +GL_APICALL void GL_APIENTRY glGetNextPerfQueryIdINTEL (GLuint queryId, GLuint *nextQueryId); +GL_APICALL void GL_APIENTRY glGetPerfCounterInfoINTEL (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +GL_APICALL void GL_APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +GL_APICALL void GL_APIENTRY glGetPerfQueryIdByNameINTEL (GLchar *queryName, GLuint *queryId); +GL_APICALL void GL_APIENTRY glGetPerfQueryInfoINTEL (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#endif +#endif /* GL_INTEL_performance_query */ + +#ifndef GL_MESA_bgra +#define GL_MESA_bgra 1 +#define GL_BGR_EXT 0x80E0 +#endif /* GL_MESA_bgra */ + +#ifndef GL_MESA_framebuffer_flip_x +#define GL_MESA_framebuffer_flip_x 1 +#define GL_FRAMEBUFFER_FLIP_X_MESA 0x8BBC +#endif /* GL_MESA_framebuffer_flip_x */ + +#ifndef GL_MESA_framebuffer_flip_y +#define GL_MESA_framebuffer_flip_y 1 +#define GL_FRAMEBUFFER_FLIP_Y_MESA 0x8BBB +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERPARAMETERIMESAPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVMESAPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferParameteriMESA (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glGetFramebufferParameterivMESA (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_MESA_framebuffer_flip_y */ + +#ifndef GL_MESA_framebuffer_swap_xy +#define GL_MESA_framebuffer_swap_xy 1 +#define GL_FRAMEBUFFER_SWAP_XY_MESA 0x8BBD +#endif /* GL_MESA_framebuffer_swap_xy */ + +#ifndef GL_MESA_program_binary_formats +#define GL_MESA_program_binary_formats 1 +#define GL_PROGRAM_BINARY_FORMAT_MESA 0x875F +#endif /* GL_MESA_program_binary_formats */ + +#ifndef GL_MESA_shader_integer_functions +#define GL_MESA_shader_integer_functions 1 +#endif /* GL_MESA_shader_integer_functions */ + +#ifndef GL_NVX_blend_equation_advanced_multi_draw_buffers +#define GL_NVX_blend_equation_advanced_multi_draw_buffers 1 +#endif /* GL_NVX_blend_equation_advanced_multi_draw_buffers */ + +#ifndef GL_NV_bindless_texture +#define GL_NV_bindless_texture 1 +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTUREHANDLENVPROC) (GLuint texture); +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTURESAMPLERHANDLENVPROC) (GLuint texture, GLuint sampler); +typedef void (GL_APIENTRYP PFNGLMAKETEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef void (GL_APIENTRYP PFNGLMAKETEXTUREHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef GLuint64 (GL_APIENTRYP PFNGLGETIMAGEHANDLENVPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef void (GL_APIENTRYP PFNGLMAKEIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle, GLenum access); +typedef void (GL_APIENTRYP PFNGLMAKEIMAGEHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64NVPROC) (GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64VNVPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64NVPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef GLboolean (GL_APIENTRYP PFNGLISIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint64 GL_APIENTRY glGetTextureHandleNV (GLuint texture); +GL_APICALL GLuint64 GL_APIENTRY glGetTextureSamplerHandleNV (GLuint texture, GLuint sampler); +GL_APICALL void GL_APIENTRY glMakeTextureHandleResidentNV (GLuint64 handle); +GL_APICALL void GL_APIENTRY glMakeTextureHandleNonResidentNV (GLuint64 handle); +GL_APICALL GLuint64 GL_APIENTRY glGetImageHandleNV (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +GL_APICALL void GL_APIENTRY glMakeImageHandleResidentNV (GLuint64 handle, GLenum access); +GL_APICALL void GL_APIENTRY glMakeImageHandleNonResidentNV (GLuint64 handle); +GL_APICALL void GL_APIENTRY glUniformHandleui64NV (GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glUniformHandleui64vNV (GLint location, GLsizei count, const GLuint64 *value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64NV (GLuint program, GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +GL_APICALL GLboolean GL_APIENTRY glIsTextureHandleResidentNV (GLuint64 handle); +GL_APICALL GLboolean GL_APIENTRY glIsImageHandleResidentNV (GLuint64 handle); +#endif +#endif /* GL_NV_bindless_texture */ + +#ifndef GL_NV_blend_equation_advanced +#define GL_NV_blend_equation_advanced 1 +#define GL_BLEND_OVERLAP_NV 0x9281 +#define GL_BLEND_PREMULTIPLIED_SRC_NV 0x9280 +#define GL_BLUE_NV 0x1905 +#define GL_COLORBURN_NV 0x929A +#define GL_COLORDODGE_NV 0x9299 +#define GL_CONJOINT_NV 0x9284 +#define GL_CONTRAST_NV 0x92A1 +#define GL_DARKEN_NV 0x9297 +#define GL_DIFFERENCE_NV 0x929E +#define GL_DISJOINT_NV 0x9283 +#define GL_DST_ATOP_NV 0x928F +#define GL_DST_IN_NV 0x928B +#define GL_DST_NV 0x9287 +#define GL_DST_OUT_NV 0x928D +#define GL_DST_OVER_NV 0x9289 +#define GL_EXCLUSION_NV 0x92A0 +#define GL_GREEN_NV 0x1904 +#define GL_HARDLIGHT_NV 0x929B +#define GL_HARDMIX_NV 0x92A9 +#define GL_HSL_COLOR_NV 0x92AF +#define GL_HSL_HUE_NV 0x92AD +#define GL_HSL_LUMINOSITY_NV 0x92B0 +#define GL_HSL_SATURATION_NV 0x92AE +#define GL_INVERT_OVG_NV 0x92B4 +#define GL_INVERT_RGB_NV 0x92A3 +#define GL_LIGHTEN_NV 0x9298 +#define GL_LINEARBURN_NV 0x92A5 +#define GL_LINEARDODGE_NV 0x92A4 +#define GL_LINEARLIGHT_NV 0x92A7 +#define GL_MINUS_CLAMPED_NV 0x92B3 +#define GL_MINUS_NV 0x929F +#define GL_MULTIPLY_NV 0x9294 +#define GL_OVERLAY_NV 0x9296 +#define GL_PINLIGHT_NV 0x92A8 +#define GL_PLUS_CLAMPED_ALPHA_NV 0x92B2 +#define GL_PLUS_CLAMPED_NV 0x92B1 +#define GL_PLUS_DARKER_NV 0x9292 +#define GL_PLUS_NV 0x9291 +#define GL_RED_NV 0x1903 +#define GL_SCREEN_NV 0x9295 +#define GL_SOFTLIGHT_NV 0x929C +#define GL_SRC_ATOP_NV 0x928E +#define GL_SRC_IN_NV 0x928A +#define GL_SRC_NV 0x9286 +#define GL_SRC_OUT_NV 0x928C +#define GL_SRC_OVER_NV 0x9288 +#define GL_UNCORRELATED_NV 0x9282 +#define GL_VIVIDLIGHT_NV 0x92A6 +#define GL_XOR_NV 0x1506 +typedef void (GL_APIENTRYP PFNGLBLENDPARAMETERINVPROC) (GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLBLENDBARRIERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlendParameteriNV (GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glBlendBarrierNV (void); +#endif +#endif /* GL_NV_blend_equation_advanced */ + +#ifndef GL_NV_blend_equation_advanced_coherent +#define GL_NV_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_NV 0x9285 +#endif /* GL_NV_blend_equation_advanced_coherent */ + +#ifndef GL_NV_blend_minmax_factor +#define GL_NV_blend_minmax_factor 1 +#define GL_FACTOR_MIN_AMD 0x901C +#define GL_FACTOR_MAX_AMD 0x901D +#endif /* GL_NV_blend_minmax_factor */ + +#ifndef GL_NV_clip_space_w_scaling +#define GL_NV_clip_space_w_scaling 1 +#define GL_VIEWPORT_POSITION_W_SCALE_NV 0x937C +#define GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV 0x937D +#define GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV 0x937E +typedef void (GL_APIENTRYP PFNGLVIEWPORTPOSITIONWSCALENVPROC) (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportPositionWScaleNV (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#endif +#endif /* GL_NV_clip_space_w_scaling */ + +#ifndef GL_NV_compute_shader_derivatives +#define GL_NV_compute_shader_derivatives 1 +#endif /* GL_NV_compute_shader_derivatives */ + +#ifndef GL_NV_conditional_render +#define GL_NV_conditional_render 1 +#define GL_QUERY_WAIT_NV 0x8E13 +#define GL_QUERY_NO_WAIT_NV 0x8E14 +#define GL_QUERY_BY_REGION_WAIT_NV 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16 +typedef void (GL_APIENTRYP PFNGLBEGINCONDITIONALRENDERNVPROC) (GLuint id, GLenum mode); +typedef void (GL_APIENTRYP PFNGLENDCONDITIONALRENDERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBeginConditionalRenderNV (GLuint id, GLenum mode); +GL_APICALL void GL_APIENTRY glEndConditionalRenderNV (void); +#endif +#endif /* GL_NV_conditional_render */ + +#ifndef GL_NV_conservative_raster +#define GL_NV_conservative_raster 1 +#define GL_CONSERVATIVE_RASTERIZATION_NV 0x9346 +#define GL_SUBPIXEL_PRECISION_BIAS_X_BITS_NV 0x9347 +#define GL_SUBPIXEL_PRECISION_BIAS_Y_BITS_NV 0x9348 +#define GL_MAX_SUBPIXEL_PRECISION_BIAS_BITS_NV 0x9349 +typedef void (GL_APIENTRYP PFNGLSUBPIXELPRECISIONBIASNVPROC) (GLuint xbits, GLuint ybits); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glSubpixelPrecisionBiasNV (GLuint xbits, GLuint ybits); +#endif +#endif /* GL_NV_conservative_raster */ + +#ifndef GL_NV_conservative_raster_pre_snap +#define GL_NV_conservative_raster_pre_snap 1 +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV 0x9550 +#endif /* GL_NV_conservative_raster_pre_snap */ + +#ifndef GL_NV_conservative_raster_pre_snap_triangles +#define GL_NV_conservative_raster_pre_snap_triangles 1 +#define GL_CONSERVATIVE_RASTER_MODE_NV 0x954D +#define GL_CONSERVATIVE_RASTER_MODE_POST_SNAP_NV 0x954E +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_TRIANGLES_NV 0x954F +typedef void (GL_APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERINVPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glConservativeRasterParameteriNV (GLenum pname, GLint param); +#endif +#endif /* GL_NV_conservative_raster_pre_snap_triangles */ + +#ifndef GL_NV_copy_buffer +#define GL_NV_copy_buffer 1 +#define GL_COPY_READ_BUFFER_NV 0x8F36 +#define GL_COPY_WRITE_BUFFER_NV 0x8F37 +typedef void (GL_APIENTRYP PFNGLCOPYBUFFERSUBDATANVPROC) (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyBufferSubDataNV (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +#endif +#endif /* GL_NV_copy_buffer */ + +#ifndef GL_NV_coverage_sample +#define GL_NV_coverage_sample 1 +#define GL_COVERAGE_COMPONENT_NV 0x8ED0 +#define GL_COVERAGE_COMPONENT4_NV 0x8ED1 +#define GL_COVERAGE_ATTACHMENT_NV 0x8ED2 +#define GL_COVERAGE_BUFFERS_NV 0x8ED3 +#define GL_COVERAGE_SAMPLES_NV 0x8ED4 +#define GL_COVERAGE_ALL_FRAGMENTS_NV 0x8ED5 +#define GL_COVERAGE_EDGE_FRAGMENTS_NV 0x8ED6 +#define GL_COVERAGE_AUTOMATIC_NV 0x8ED7 +#define GL_COVERAGE_BUFFER_BIT_NV 0x00008000 +typedef void (GL_APIENTRYP PFNGLCOVERAGEMASKNVPROC) (GLboolean mask); +typedef void (GL_APIENTRYP PFNGLCOVERAGEOPERATIONNVPROC) (GLenum operation); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCoverageMaskNV (GLboolean mask); +GL_APICALL void GL_APIENTRY glCoverageOperationNV (GLenum operation); +#endif +#endif /* GL_NV_coverage_sample */ + +#ifndef GL_NV_depth_nonlinear +#define GL_NV_depth_nonlinear 1 +#define GL_DEPTH_COMPONENT16_NONLINEAR_NV 0x8E2C +#endif /* GL_NV_depth_nonlinear */ + +#ifndef GL_NV_draw_buffers +#define GL_NV_draw_buffers 1 +#define GL_MAX_DRAW_BUFFERS_NV 0x8824 +#define GL_DRAW_BUFFER0_NV 0x8825 +#define GL_DRAW_BUFFER1_NV 0x8826 +#define GL_DRAW_BUFFER2_NV 0x8827 +#define GL_DRAW_BUFFER3_NV 0x8828 +#define GL_DRAW_BUFFER4_NV 0x8829 +#define GL_DRAW_BUFFER5_NV 0x882A +#define GL_DRAW_BUFFER6_NV 0x882B +#define GL_DRAW_BUFFER7_NV 0x882C +#define GL_DRAW_BUFFER8_NV 0x882D +#define GL_DRAW_BUFFER9_NV 0x882E +#define GL_DRAW_BUFFER10_NV 0x882F +#define GL_DRAW_BUFFER11_NV 0x8830 +#define GL_DRAW_BUFFER12_NV 0x8831 +#define GL_DRAW_BUFFER13_NV 0x8832 +#define GL_DRAW_BUFFER14_NV 0x8833 +#define GL_DRAW_BUFFER15_NV 0x8834 +#define GL_COLOR_ATTACHMENT0_NV 0x8CE0 +#define GL_COLOR_ATTACHMENT1_NV 0x8CE1 +#define GL_COLOR_ATTACHMENT2_NV 0x8CE2 +#define GL_COLOR_ATTACHMENT3_NV 0x8CE3 +#define GL_COLOR_ATTACHMENT4_NV 0x8CE4 +#define GL_COLOR_ATTACHMENT5_NV 0x8CE5 +#define GL_COLOR_ATTACHMENT6_NV 0x8CE6 +#define GL_COLOR_ATTACHMENT7_NV 0x8CE7 +#define GL_COLOR_ATTACHMENT8_NV 0x8CE8 +#define GL_COLOR_ATTACHMENT9_NV 0x8CE9 +#define GL_COLOR_ATTACHMENT10_NV 0x8CEA +#define GL_COLOR_ATTACHMENT11_NV 0x8CEB +#define GL_COLOR_ATTACHMENT12_NV 0x8CEC +#define GL_COLOR_ATTACHMENT13_NV 0x8CED +#define GL_COLOR_ATTACHMENT14_NV 0x8CEE +#define GL_COLOR_ATTACHMENT15_NV 0x8CEF +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSNVPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawBuffersNV (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_NV_draw_buffers */ + +#ifndef GL_NV_draw_instanced +#define GL_NV_draw_instanced 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDNVPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDNVPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedNV (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedNV (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_NV_draw_instanced */ + +#ifndef GL_NV_draw_vulkan_image +#define GL_NV_draw_vulkan_image 1 +typedef void (GL_APIENTRY *GLVULKANPROCNV)(void); +typedef void (GL_APIENTRYP PFNGLDRAWVKIMAGENVPROC) (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +typedef GLVULKANPROCNV (GL_APIENTRYP PFNGLGETVKPROCADDRNVPROC) (const GLchar *name); +typedef void (GL_APIENTRYP PFNGLWAITVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (GL_APIENTRYP PFNGLSIGNALVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (GL_APIENTRYP PFNGLSIGNALVKFENCENVPROC) (GLuint64 vkFence); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawVkImageNV (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +GL_APICALL GLVULKANPROCNV GL_APIENTRY glGetVkProcAddrNV (const GLchar *name); +GL_APICALL void GL_APIENTRY glWaitVkSemaphoreNV (GLuint64 vkSemaphore); +GL_APICALL void GL_APIENTRY glSignalVkSemaphoreNV (GLuint64 vkSemaphore); +GL_APICALL void GL_APIENTRY glSignalVkFenceNV (GLuint64 vkFence); +#endif +#endif /* GL_NV_draw_vulkan_image */ + +#ifndef GL_NV_explicit_attrib_location +#define GL_NV_explicit_attrib_location 1 +#endif /* GL_NV_explicit_attrib_location */ + +#ifndef GL_NV_fbo_color_attachments +#define GL_NV_fbo_color_attachments 1 +#define GL_MAX_COLOR_ATTACHMENTS_NV 0x8CDF +#endif /* GL_NV_fbo_color_attachments */ + +#ifndef GL_NV_fence +#define GL_NV_fence 1 +#define GL_ALL_COMPLETED_NV 0x84F2 +#define GL_FENCE_STATUS_NV 0x84F3 +#define GL_FENCE_CONDITION_NV 0x84F4 +typedef void (GL_APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences); +typedef void (GL_APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences); +typedef GLboolean (GL_APIENTRYP PFNGLISFENCENVPROC) (GLuint fence); +typedef GLboolean (GL_APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence); +typedef void (GL_APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence); +typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences); +GL_APICALL void GL_APIENTRY glGenFencesNV (GLsizei n, GLuint *fences); +GL_APICALL GLboolean GL_APIENTRY glIsFenceNV (GLuint fence); +GL_APICALL GLboolean GL_APIENTRY glTestFenceNV (GLuint fence); +GL_APICALL void GL_APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glFinishFenceNV (GLuint fence); +GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition); +#endif +#endif /* GL_NV_fence */ + +#ifndef GL_NV_fill_rectangle +#define GL_NV_fill_rectangle 1 +#define GL_FILL_RECTANGLE_NV 0x933C +#endif /* GL_NV_fill_rectangle */ + +#ifndef GL_NV_fragment_coverage_to_color +#define GL_NV_fragment_coverage_to_color 1 +#define GL_FRAGMENT_COVERAGE_TO_COLOR_NV 0x92DD +#define GL_FRAGMENT_COVERAGE_COLOR_NV 0x92DE +typedef void (GL_APIENTRYP PFNGLFRAGMENTCOVERAGECOLORNVPROC) (GLuint color); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFragmentCoverageColorNV (GLuint color); +#endif +#endif /* GL_NV_fragment_coverage_to_color */ + +#ifndef GL_NV_fragment_shader_barycentric +#define GL_NV_fragment_shader_barycentric 1 +#endif /* GL_NV_fragment_shader_barycentric */ + +#ifndef GL_NV_fragment_shader_interlock +#define GL_NV_fragment_shader_interlock 1 +#endif /* GL_NV_fragment_shader_interlock */ + +#ifndef GL_NV_framebuffer_blit +#define GL_NV_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_NV 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_NV 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_NV 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_NV 0x8CAA +typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERNVPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlitFramebufferNV (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_NV_framebuffer_blit */ + +#ifndef GL_NV_framebuffer_mixed_samples +#define GL_NV_framebuffer_mixed_samples 1 +#define GL_COVERAGE_MODULATION_TABLE_NV 0x9331 +#define GL_COLOR_SAMPLES_NV 0x8E20 +#define GL_DEPTH_SAMPLES_NV 0x932D +#define GL_STENCIL_SAMPLES_NV 0x932E +#define GL_MIXED_DEPTH_SAMPLES_SUPPORTED_NV 0x932F +#define GL_MIXED_STENCIL_SAMPLES_SUPPORTED_NV 0x9330 +#define GL_COVERAGE_MODULATION_NV 0x9332 +#define GL_COVERAGE_MODULATION_TABLE_SIZE_NV 0x9333 +typedef void (GL_APIENTRYP PFNGLCOVERAGEMODULATIONTABLENVPROC) (GLsizei n, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLGETCOVERAGEMODULATIONTABLENVPROC) (GLsizei bufSize, GLfloat *v); +typedef void (GL_APIENTRYP PFNGLCOVERAGEMODULATIONNVPROC) (GLenum components); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCoverageModulationTableNV (GLsizei n, const GLfloat *v); +GL_APICALL void GL_APIENTRY glGetCoverageModulationTableNV (GLsizei bufSize, GLfloat *v); +GL_APICALL void GL_APIENTRY glCoverageModulationNV (GLenum components); +#endif +#endif /* GL_NV_framebuffer_mixed_samples */ + +#ifndef GL_NV_framebuffer_multisample +#define GL_NV_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_NV 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_NV 0x8D56 +#define GL_MAX_SAMPLES_NV 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLENVPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleNV (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_NV_framebuffer_multisample */ + +#ifndef GL_NV_generate_mipmap_sRGB +#define GL_NV_generate_mipmap_sRGB 1 +#endif /* GL_NV_generate_mipmap_sRGB */ + +#ifndef GL_NV_geometry_shader_passthrough +#define GL_NV_geometry_shader_passthrough 1 +#endif /* GL_NV_geometry_shader_passthrough */ + +#ifndef GL_NV_gpu_shader5 +#define GL_NV_gpu_shader5 1 +typedef khronos_int64_t GLint64EXT; +typedef khronos_uint64_t GLuint64EXT; +#define GL_INT64_NV 0x140E +#define GL_UNSIGNED_INT64_NV 0x140F +#define GL_INT8_NV 0x8FE0 +#define GL_INT8_VEC2_NV 0x8FE1 +#define GL_INT8_VEC3_NV 0x8FE2 +#define GL_INT8_VEC4_NV 0x8FE3 +#define GL_INT16_NV 0x8FE4 +#define GL_INT16_VEC2_NV 0x8FE5 +#define GL_INT16_VEC3_NV 0x8FE6 +#define GL_INT16_VEC4_NV 0x8FE7 +#define GL_INT64_VEC2_NV 0x8FE9 +#define GL_INT64_VEC3_NV 0x8FEA +#define GL_INT64_VEC4_NV 0x8FEB +#define GL_UNSIGNED_INT8_NV 0x8FEC +#define GL_UNSIGNED_INT8_VEC2_NV 0x8FED +#define GL_UNSIGNED_INT8_VEC3_NV 0x8FEE +#define GL_UNSIGNED_INT8_VEC4_NV 0x8FEF +#define GL_UNSIGNED_INT16_NV 0x8FF0 +#define GL_UNSIGNED_INT16_VEC2_NV 0x8FF1 +#define GL_UNSIGNED_INT16_VEC3_NV 0x8FF2 +#define GL_UNSIGNED_INT16_VEC4_NV 0x8FF3 +#define GL_UNSIGNED_INT64_VEC2_NV 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_NV 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_NV 0x8FF7 +#define GL_FLOAT16_NV 0x8FF8 +#define GL_FLOAT16_VEC2_NV 0x8FF9 +#define GL_FLOAT16_VEC3_NV 0x8FFA +#define GL_FLOAT16_VEC4_NV 0x8FFB +#define GL_PATCHES 0x000E +typedef void (GL_APIENTRYP PFNGLUNIFORM1I64NVPROC) (GLint location, GLint64EXT x); +typedef void (GL_APIENTRYP PFNGLUNIFORM2I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y); +typedef void (GL_APIENTRYP PFNGLUNIFORM3I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (GL_APIENTRYP PFNGLUNIFORM4I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (GL_APIENTRYP PFNGLUNIFORM1I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM1UI64NVPROC) (GLint location, GLuint64EXT x); +typedef void (GL_APIENTRYP PFNGLUNIFORM2UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (GL_APIENTRYP PFNGLUNIFORM3UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (GL_APIENTRYP PFNGLUNIFORM4UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (GL_APIENTRYP PFNGLUNIFORM1UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMI64VNVPROC) (GLuint program, GLint location, GLint64EXT *params); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1I64NVPROC) (GLuint program, GLint location, GLint64EXT x); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glUniform1i64NV (GLint location, GLint64EXT x); +GL_APICALL void GL_APIENTRY glUniform2i64NV (GLint location, GLint64EXT x, GLint64EXT y); +GL_APICALL void GL_APIENTRY glUniform3i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GL_APICALL void GL_APIENTRY glUniform4i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GL_APICALL void GL_APIENTRY glUniform1i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform2i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform3i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform4i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform1ui64NV (GLint location, GLuint64EXT x); +GL_APICALL void GL_APIENTRY glUniform2ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y); +GL_APICALL void GL_APIENTRY glUniform3ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GL_APICALL void GL_APIENTRY glUniform4ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GL_APICALL void GL_APIENTRY glUniform1ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform2ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform3ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform4ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glGetUniformi64vNV (GLuint program, GLint location, GLint64EXT *params); +GL_APICALL void GL_APIENTRY glProgramUniform1i64NV (GLuint program, GLint location, GLint64EXT x); +GL_APICALL void GL_APIENTRY glProgramUniform2i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +GL_APICALL void GL_APIENTRY glProgramUniform3i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GL_APICALL void GL_APIENTRY glProgramUniform4i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GL_APICALL void GL_APIENTRY glProgramUniform1i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform2i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform3i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform4i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform1ui64NV (GLuint program, GLint location, GLuint64EXT x); +GL_APICALL void GL_APIENTRY glProgramUniform2ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +GL_APICALL void GL_APIENTRY glProgramUniform3ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GL_APICALL void GL_APIENTRY glProgramUniform4ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GL_APICALL void GL_APIENTRY glProgramUniform1ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform2ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform3ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform4ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif +#endif /* GL_NV_gpu_shader5 */ + +#ifndef GL_NV_image_formats +#define GL_NV_image_formats 1 +#endif /* GL_NV_image_formats */ + +#ifndef GL_NV_instanced_arrays +#define GL_NV_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_NV 0x88FE +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORNVPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glVertexAttribDivisorNV (GLuint index, GLuint divisor); +#endif +#endif /* GL_NV_instanced_arrays */ + +#ifndef GL_NV_internalformat_sample_query +#define GL_NV_internalformat_sample_query 1 +#define GL_TEXTURE_2D_MULTISAMPLE 0x9100 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 +#define GL_MULTISAMPLES_NV 0x9371 +#define GL_SUPERSAMPLE_SCALE_X_NV 0x9372 +#define GL_SUPERSAMPLE_SCALE_Y_NV 0x9373 +#define GL_CONFORMANT_NV 0x9374 +typedef void (GL_APIENTRYP PFNGLGETINTERNALFORMATSAMPLEIVNVPROC) (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetInternalformatSampleivNV (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#endif +#endif /* GL_NV_internalformat_sample_query */ + +#ifndef GL_NV_memory_attachment +#define GL_NV_memory_attachment 1 +#define GL_ATTACHED_MEMORY_OBJECT_NV 0x95A4 +#define GL_ATTACHED_MEMORY_OFFSET_NV 0x95A5 +#define GL_MEMORY_ATTACHABLE_ALIGNMENT_NV 0x95A6 +#define GL_MEMORY_ATTACHABLE_SIZE_NV 0x95A7 +#define GL_MEMORY_ATTACHABLE_NV 0x95A8 +#define GL_DETACHED_MEMORY_INCARNATION_NV 0x95A9 +#define GL_DETACHED_TEXTURES_NV 0x95AA +#define GL_DETACHED_BUFFERS_NV 0x95AB +#define GL_MAX_DETACHED_TEXTURES_NV 0x95AC +#define GL_MAX_DETACHED_BUFFERS_NV 0x95AD +typedef void (GL_APIENTRYP PFNGLGETMEMORYOBJECTDETACHEDRESOURCESUIVNVPROC) (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +typedef void (GL_APIENTRYP PFNGLRESETMEMORYOBJECTPARAMETERNVPROC) (GLuint memory, GLenum pname); +typedef void (GL_APIENTRYP PFNGLTEXATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLBUFFERATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTUREATTACHMEMORYNVPROC) (GLuint texture, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERATTACHMEMORYNVPROC) (GLuint buffer, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetMemoryObjectDetachedResourcesuivNV (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +GL_APICALL void GL_APIENTRY glResetMemoryObjectParameterNV (GLuint memory, GLenum pname); +GL_APICALL void GL_APIENTRY glTexAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glBufferAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureAttachMemoryNV (GLuint texture, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glNamedBufferAttachMemoryNV (GLuint buffer, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_NV_memory_attachment */ + +#ifndef GL_NV_memory_object_sparse +#define GL_NV_memory_object_sparse 1 +typedef void (GL_APIENTRYP PFNGLBUFFERPAGECOMMITMENTMEMNVPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLTEXPAGECOMMITMENTMEMNVPROC) (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTMEMNVPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLTEXTUREPAGECOMMITMENTMEMNVPROC) (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferPageCommitmentMemNV (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GL_APICALL void GL_APIENTRY glTexPageCommitmentMemNV (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +GL_APICALL void GL_APIENTRY glNamedBufferPageCommitmentMemNV (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GL_APICALL void GL_APIENTRY glTexturePageCommitmentMemNV (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#endif +#endif /* GL_NV_memory_object_sparse */ + +#ifndef GL_NV_mesh_shader +#define GL_NV_mesh_shader 1 +#define GL_MESH_SHADER_NV 0x9559 +#define GL_TASK_SHADER_NV 0x955A +#define GL_MAX_MESH_UNIFORM_BLOCKS_NV 0x8E60 +#define GL_MAX_MESH_TEXTURE_IMAGE_UNITS_NV 0x8E61 +#define GL_MAX_MESH_IMAGE_UNIFORMS_NV 0x8E62 +#define GL_MAX_MESH_UNIFORM_COMPONENTS_NV 0x8E63 +#define GL_MAX_MESH_ATOMIC_COUNTER_BUFFERS_NV 0x8E64 +#define GL_MAX_MESH_ATOMIC_COUNTERS_NV 0x8E65 +#define GL_MAX_MESH_SHADER_STORAGE_BLOCKS_NV 0x8E66 +#define GL_MAX_COMBINED_MESH_UNIFORM_COMPONENTS_NV 0x8E67 +#define GL_MAX_TASK_UNIFORM_BLOCKS_NV 0x8E68 +#define GL_MAX_TASK_TEXTURE_IMAGE_UNITS_NV 0x8E69 +#define GL_MAX_TASK_IMAGE_UNIFORMS_NV 0x8E6A +#define GL_MAX_TASK_UNIFORM_COMPONENTS_NV 0x8E6B +#define GL_MAX_TASK_ATOMIC_COUNTER_BUFFERS_NV 0x8E6C +#define GL_MAX_TASK_ATOMIC_COUNTERS_NV 0x8E6D +#define GL_MAX_TASK_SHADER_STORAGE_BLOCKS_NV 0x8E6E +#define GL_MAX_COMBINED_TASK_UNIFORM_COMPONENTS_NV 0x8E6F +#define GL_MAX_MESH_WORK_GROUP_INVOCATIONS_NV 0x95A2 +#define GL_MAX_TASK_WORK_GROUP_INVOCATIONS_NV 0x95A3 +#define GL_MAX_MESH_TOTAL_MEMORY_SIZE_NV 0x9536 +#define GL_MAX_TASK_TOTAL_MEMORY_SIZE_NV 0x9537 +#define GL_MAX_MESH_OUTPUT_VERTICES_NV 0x9538 +#define GL_MAX_MESH_OUTPUT_PRIMITIVES_NV 0x9539 +#define GL_MAX_TASK_OUTPUT_COUNT_NV 0x953A +#define GL_MAX_DRAW_MESH_TASKS_COUNT_NV 0x953D +#define GL_MAX_MESH_VIEWS_NV 0x9557 +#define GL_MESH_OUTPUT_PER_VERTEX_GRANULARITY_NV 0x92DF +#define GL_MESH_OUTPUT_PER_PRIMITIVE_GRANULARITY_NV 0x9543 +#define GL_MAX_MESH_WORK_GROUP_SIZE_NV 0x953B +#define GL_MAX_TASK_WORK_GROUP_SIZE_NV 0x953C +#define GL_MESH_WORK_GROUP_SIZE_NV 0x953E +#define GL_TASK_WORK_GROUP_SIZE_NV 0x953F +#define GL_MESH_VERTICES_OUT_NV 0x9579 +#define GL_MESH_PRIMITIVES_OUT_NV 0x957A +#define GL_MESH_OUTPUT_TYPE_NV 0x957B +#define GL_UNIFORM_BLOCK_REFERENCED_BY_MESH_SHADER_NV 0x959C +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TASK_SHADER_NV 0x959D +#define GL_REFERENCED_BY_MESH_SHADER_NV 0x95A0 +#define GL_REFERENCED_BY_TASK_SHADER_NV 0x95A1 +#define GL_MESH_SHADER_BIT_NV 0x00000040 +#define GL_TASK_SHADER_BIT_NV 0x00000080 +#define GL_MESH_SUBROUTINE_NV 0x957C +#define GL_TASK_SUBROUTINE_NV 0x957D +#define GL_MESH_SUBROUTINE_UNIFORM_NV 0x957E +#define GL_TASK_SUBROUTINE_UNIFORM_NV 0x957F +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_MESH_SHADER_NV 0x959E +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TASK_SHADER_NV 0x959F +typedef void (GL_APIENTRYP PFNGLDRAWMESHTASKSNVPROC) (GLuint first, GLuint count); +typedef void (GL_APIENTRYP PFNGLDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect, GLsizei drawcount, GLsizei stride); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTCOUNTNVPROC) (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawMeshTasksNV (GLuint first, GLuint count); +GL_APICALL void GL_APIENTRY glDrawMeshTasksIndirectNV (GLintptr indirect); +GL_APICALL void GL_APIENTRY glMultiDrawMeshTasksIndirectNV (GLintptr indirect, GLsizei drawcount, GLsizei stride); +GL_APICALL void GL_APIENTRY glMultiDrawMeshTasksIndirectCountNV (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_NV_mesh_shader */ + +#ifndef GL_NV_non_square_matrices +#define GL_NV_non_square_matrices 1 +#define GL_FLOAT_MAT2x3_NV 0x8B65 +#define GL_FLOAT_MAT2x4_NV 0x8B66 +#define GL_FLOAT_MAT3x2_NV 0x8B67 +#define GL_FLOAT_MAT3x4_NV 0x8B68 +#define GL_FLOAT_MAT4x2_NV 0x8B69 +#define GL_FLOAT_MAT4x3_NV 0x8B6A +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2X3FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3X2FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2X4FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4X2FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3X4FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4X3FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glUniformMatrix2x3fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3x2fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix2x4fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4x2fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3x4fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4x3fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_NV_non_square_matrices */ + +#ifndef GL_NV_path_rendering +#define GL_NV_path_rendering 1 +typedef double GLdouble; +#define GL_PATH_FORMAT_SVG_NV 0x9070 +#define GL_PATH_FORMAT_PS_NV 0x9071 +#define GL_STANDARD_FONT_NAME_NV 0x9072 +#define GL_SYSTEM_FONT_NAME_NV 0x9073 +#define GL_FILE_NAME_NV 0x9074 +#define GL_PATH_STROKE_WIDTH_NV 0x9075 +#define GL_PATH_END_CAPS_NV 0x9076 +#define GL_PATH_INITIAL_END_CAP_NV 0x9077 +#define GL_PATH_TERMINAL_END_CAP_NV 0x9078 +#define GL_PATH_JOIN_STYLE_NV 0x9079 +#define GL_PATH_MITER_LIMIT_NV 0x907A +#define GL_PATH_DASH_CAPS_NV 0x907B +#define GL_PATH_INITIAL_DASH_CAP_NV 0x907C +#define GL_PATH_TERMINAL_DASH_CAP_NV 0x907D +#define GL_PATH_DASH_OFFSET_NV 0x907E +#define GL_PATH_CLIENT_LENGTH_NV 0x907F +#define GL_PATH_FILL_MODE_NV 0x9080 +#define GL_PATH_FILL_MASK_NV 0x9081 +#define GL_PATH_FILL_COVER_MODE_NV 0x9082 +#define GL_PATH_STROKE_COVER_MODE_NV 0x9083 +#define GL_PATH_STROKE_MASK_NV 0x9084 +#define GL_COUNT_UP_NV 0x9088 +#define GL_COUNT_DOWN_NV 0x9089 +#define GL_PATH_OBJECT_BOUNDING_BOX_NV 0x908A +#define GL_CONVEX_HULL_NV 0x908B +#define GL_BOUNDING_BOX_NV 0x908D +#define GL_TRANSLATE_X_NV 0x908E +#define GL_TRANSLATE_Y_NV 0x908F +#define GL_TRANSLATE_2D_NV 0x9090 +#define GL_TRANSLATE_3D_NV 0x9091 +#define GL_AFFINE_2D_NV 0x9092 +#define GL_AFFINE_3D_NV 0x9094 +#define GL_TRANSPOSE_AFFINE_2D_NV 0x9096 +#define GL_TRANSPOSE_AFFINE_3D_NV 0x9098 +#define GL_UTF8_NV 0x909A +#define GL_UTF16_NV 0x909B +#define GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV 0x909C +#define GL_PATH_COMMAND_COUNT_NV 0x909D +#define GL_PATH_COORD_COUNT_NV 0x909E +#define GL_PATH_DASH_ARRAY_COUNT_NV 0x909F +#define GL_PATH_COMPUTED_LENGTH_NV 0x90A0 +#define GL_PATH_FILL_BOUNDING_BOX_NV 0x90A1 +#define GL_PATH_STROKE_BOUNDING_BOX_NV 0x90A2 +#define GL_SQUARE_NV 0x90A3 +#define GL_ROUND_NV 0x90A4 +#define GL_TRIANGULAR_NV 0x90A5 +#define GL_BEVEL_NV 0x90A6 +#define GL_MITER_REVERT_NV 0x90A7 +#define GL_MITER_TRUNCATE_NV 0x90A8 +#define GL_SKIP_MISSING_GLYPH_NV 0x90A9 +#define GL_USE_MISSING_GLYPH_NV 0x90AA +#define GL_PATH_ERROR_POSITION_NV 0x90AB +#define GL_ACCUM_ADJACENT_PAIRS_NV 0x90AD +#define GL_ADJACENT_PAIRS_NV 0x90AE +#define GL_FIRST_TO_REST_NV 0x90AF +#define GL_PATH_GEN_MODE_NV 0x90B0 +#define GL_PATH_GEN_COEFF_NV 0x90B1 +#define GL_PATH_GEN_COMPONENTS_NV 0x90B3 +#define GL_PATH_STENCIL_FUNC_NV 0x90B7 +#define GL_PATH_STENCIL_REF_NV 0x90B8 +#define GL_PATH_STENCIL_VALUE_MASK_NV 0x90B9 +#define GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV 0x90BD +#define GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV 0x90BE +#define GL_PATH_COVER_DEPTH_FUNC_NV 0x90BF +#define GL_PATH_DASH_OFFSET_RESET_NV 0x90B4 +#define GL_MOVE_TO_RESETS_NV 0x90B5 +#define GL_MOVE_TO_CONTINUES_NV 0x90B6 +#define GL_CLOSE_PATH_NV 0x00 +#define GL_MOVE_TO_NV 0x02 +#define GL_RELATIVE_MOVE_TO_NV 0x03 +#define GL_LINE_TO_NV 0x04 +#define GL_RELATIVE_LINE_TO_NV 0x05 +#define GL_HORIZONTAL_LINE_TO_NV 0x06 +#define GL_RELATIVE_HORIZONTAL_LINE_TO_NV 0x07 +#define GL_VERTICAL_LINE_TO_NV 0x08 +#define GL_RELATIVE_VERTICAL_LINE_TO_NV 0x09 +#define GL_QUADRATIC_CURVE_TO_NV 0x0A +#define GL_RELATIVE_QUADRATIC_CURVE_TO_NV 0x0B +#define GL_CUBIC_CURVE_TO_NV 0x0C +#define GL_RELATIVE_CUBIC_CURVE_TO_NV 0x0D +#define GL_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0E +#define GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0F +#define GL_SMOOTH_CUBIC_CURVE_TO_NV 0x10 +#define GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV 0x11 +#define GL_SMALL_CCW_ARC_TO_NV 0x12 +#define GL_RELATIVE_SMALL_CCW_ARC_TO_NV 0x13 +#define GL_SMALL_CW_ARC_TO_NV 0x14 +#define GL_RELATIVE_SMALL_CW_ARC_TO_NV 0x15 +#define GL_LARGE_CCW_ARC_TO_NV 0x16 +#define GL_RELATIVE_LARGE_CCW_ARC_TO_NV 0x17 +#define GL_LARGE_CW_ARC_TO_NV 0x18 +#define GL_RELATIVE_LARGE_CW_ARC_TO_NV 0x19 +#define GL_RESTART_PATH_NV 0xF0 +#define GL_DUP_FIRST_CUBIC_CURVE_TO_NV 0xF2 +#define GL_DUP_LAST_CUBIC_CURVE_TO_NV 0xF4 +#define GL_RECT_NV 0xF6 +#define GL_CIRCULAR_CCW_ARC_TO_NV 0xF8 +#define GL_CIRCULAR_CW_ARC_TO_NV 0xFA +#define GL_CIRCULAR_TANGENT_ARC_TO_NV 0xFC +#define GL_ARC_TO_NV 0xFE +#define GL_RELATIVE_ARC_TO_NV 0xFF +#define GL_BOLD_BIT_NV 0x01 +#define GL_ITALIC_BIT_NV 0x02 +#define GL_GLYPH_WIDTH_BIT_NV 0x01 +#define GL_GLYPH_HEIGHT_BIT_NV 0x02 +#define GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV 0x04 +#define GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV 0x08 +#define GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV 0x10 +#define GL_GLYPH_VERTICAL_BEARING_X_BIT_NV 0x20 +#define GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV 0x40 +#define GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV 0x80 +#define GL_GLYPH_HAS_KERNING_BIT_NV 0x100 +#define GL_FONT_X_MIN_BOUNDS_BIT_NV 0x00010000 +#define GL_FONT_Y_MIN_BOUNDS_BIT_NV 0x00020000 +#define GL_FONT_X_MAX_BOUNDS_BIT_NV 0x00040000 +#define GL_FONT_Y_MAX_BOUNDS_BIT_NV 0x00080000 +#define GL_FONT_UNITS_PER_EM_BIT_NV 0x00100000 +#define GL_FONT_ASCENDER_BIT_NV 0x00200000 +#define GL_FONT_DESCENDER_BIT_NV 0x00400000 +#define GL_FONT_HEIGHT_BIT_NV 0x00800000 +#define GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV 0x01000000 +#define GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV 0x02000000 +#define GL_FONT_UNDERLINE_POSITION_BIT_NV 0x04000000 +#define GL_FONT_UNDERLINE_THICKNESS_BIT_NV 0x08000000 +#define GL_FONT_HAS_KERNING_BIT_NV 0x10000000 +#define GL_ROUNDED_RECT_NV 0xE8 +#define GL_RELATIVE_ROUNDED_RECT_NV 0xE9 +#define GL_ROUNDED_RECT2_NV 0xEA +#define GL_RELATIVE_ROUNDED_RECT2_NV 0xEB +#define GL_ROUNDED_RECT4_NV 0xEC +#define GL_RELATIVE_ROUNDED_RECT4_NV 0xED +#define GL_ROUNDED_RECT8_NV 0xEE +#define GL_RELATIVE_ROUNDED_RECT8_NV 0xEF +#define GL_RELATIVE_RECT_NV 0xF7 +#define GL_FONT_GLYPHS_AVAILABLE_NV 0x9368 +#define GL_FONT_TARGET_UNAVAILABLE_NV 0x9369 +#define GL_FONT_UNAVAILABLE_NV 0x936A +#define GL_FONT_UNINTELLIGIBLE_NV 0x936B +#define GL_CONIC_CURVE_TO_NV 0x1A +#define GL_RELATIVE_CONIC_CURVE_TO_NV 0x1B +#define GL_FONT_NUM_GLYPH_INDICES_BIT_NV 0x20000000 +#define GL_STANDARD_FONT_FORMAT_NV 0x936C +#define GL_PATH_PROJECTION_NV 0x1701 +#define GL_PATH_MODELVIEW_NV 0x1700 +#define GL_PATH_MODELVIEW_STACK_DEPTH_NV 0x0BA3 +#define GL_PATH_MODELVIEW_MATRIX_NV 0x0BA6 +#define GL_PATH_MAX_MODELVIEW_STACK_DEPTH_NV 0x0D36 +#define GL_PATH_TRANSPOSE_MODELVIEW_MATRIX_NV 0x84E3 +#define GL_PATH_PROJECTION_STACK_DEPTH_NV 0x0BA4 +#define GL_PATH_PROJECTION_MATRIX_NV 0x0BA7 +#define GL_PATH_MAX_PROJECTION_STACK_DEPTH_NV 0x0D38 +#define GL_PATH_TRANSPOSE_PROJECTION_MATRIX_NV 0x84E4 +#define GL_FRAGMENT_INPUT_NV 0x936D +typedef GLuint (GL_APIENTRYP PFNGLGENPATHSNVPROC) (GLsizei range); +typedef void (GL_APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); +typedef GLboolean (GL_APIENTRYP PFNGLISPATHNVPROC) (GLuint path); +typedef void (GL_APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); +typedef void (GL_APIENTRYP PFNGLPATHGLYPHSNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLPATHGLYPHRANGENVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLWEIGHTPATHSNVPROC) (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +typedef void (GL_APIENTRYP PFNGLCOPYPATHNVPROC) (GLuint resultPath, GLuint srcPath); +typedef void (GL_APIENTRYP PFNGLINTERPOLATEPATHSNVPROC) (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +typedef void (GL_APIENTRYP PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERINVPROC) (GLuint path, GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERFNVPROC) (GLuint path, GLenum pname, GLfloat value); +typedef void (GL_APIENTRYP PFNGLPATHDASHARRAYNVPROC) (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +typedef void (GL_APIENTRYP PFNGLPATHSTENCILFUNCNVPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLPATHSTENCILDEPTHOFFSETNVPROC) (GLfloat factor, GLfloat units); +typedef void (GL_APIENTRYP PFNGLSTENCILFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLSTENCILSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLPATHCOVERDEPTHFUNCNVPROC) (GLenum func); +typedef void (GL_APIENTRYP PFNGLCOVERFILLPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLCOVERSTROKEPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLGETPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, GLint *value); +typedef void (GL_APIENTRYP PFNGLGETPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, GLfloat *value); +typedef void (GL_APIENTRYP PFNGLGETPATHCOMMANDSNVPROC) (GLuint path, GLubyte *commands); +typedef void (GL_APIENTRYP PFNGLGETPATHCOORDSNVPROC) (GLuint path, GLfloat *coords); +typedef void (GL_APIENTRYP PFNGLGETPATHDASHARRAYNVPROC) (GLuint path, GLfloat *dashArray); +typedef void (GL_APIENTRYP PFNGLGETPATHMETRICSNVPROC) (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +typedef void (GL_APIENTRYP PFNGLGETPATHMETRICRANGENVPROC) (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +typedef void (GL_APIENTRYP PFNGLGETPATHSPACINGNVPROC) (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +typedef GLboolean (GL_APIENTRYP PFNGLISPOINTINFILLPATHNVPROC) (GLuint path, GLuint mask, GLfloat x, GLfloat y); +typedef GLboolean (GL_APIENTRYP PFNGLISPOINTINSTROKEPATHNVPROC) (GLuint path, GLfloat x, GLfloat y); +typedef GLfloat (GL_APIENTRYP PFNGLGETPATHLENGTHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments); +typedef GLboolean (GL_APIENTRYP PFNGLPOINTALONGPATHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +typedef void (GL_APIENTRYP PFNGLMATRIXLOAD3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOAD3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULT3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULT3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef GLenum (GL_APIENTRYP PFNGLPATHGLYPHINDEXRANGENVPROC) (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +typedef GLenum (GL_APIENTRYP PFNGLPATHGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef GLenum (GL_APIENTRYP PFNGLPATHMEMORYGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLPROGRAMPATHFRAGMENTINPUTGENNVPROC) (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMRESOURCEFVNVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLMATRIXFRUSTUMEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADIDENTITYEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXORTHOEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (GL_APIENTRYP PFNGLMATRIXPOPEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXPUSHEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXROTATEFEXTPROC) (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXROTATEDEXTPROC) (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +typedef void (GL_APIENTRYP PFNGLMATRIXSCALEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXSCALEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (GL_APIENTRYP PFNGLMATRIXTRANSLATEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXTRANSLATEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint GL_APIENTRY glGenPathsNV (GLsizei range); +GL_APICALL void GL_APIENTRY glDeletePathsNV (GLuint path, GLsizei range); +GL_APICALL GLboolean GL_APIENTRY glIsPathNV (GLuint path); +GL_APICALL void GL_APIENTRY glPathCommandsNV (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathCoordsNV (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathSubCommandsNV (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathSubCoordsNV (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathStringNV (GLuint path, GLenum format, GLsizei length, const void *pathString); +GL_APICALL void GL_APIENTRY glPathGlyphsNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glPathGlyphRangeNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glWeightPathsNV (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +GL_APICALL void GL_APIENTRY glCopyPathNV (GLuint resultPath, GLuint srcPath); +GL_APICALL void GL_APIENTRY glInterpolatePathsNV (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +GL_APICALL void GL_APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glPathParameterivNV (GLuint path, GLenum pname, const GLint *value); +GL_APICALL void GL_APIENTRY glPathParameteriNV (GLuint path, GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glPathParameterfvNV (GLuint path, GLenum pname, const GLfloat *value); +GL_APICALL void GL_APIENTRY glPathParameterfNV (GLuint path, GLenum pname, GLfloat value); +GL_APICALL void GL_APIENTRY glPathDashArrayNV (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +GL_APICALL void GL_APIENTRY glPathStencilFuncNV (GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glPathStencilDepthOffsetNV (GLfloat factor, GLfloat units); +GL_APICALL void GL_APIENTRY glStencilFillPathNV (GLuint path, GLenum fillMode, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilStrokePathNV (GLuint path, GLint reference, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glStencilStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glPathCoverDepthFuncNV (GLenum func); +GL_APICALL void GL_APIENTRY glCoverFillPathNV (GLuint path, GLenum coverMode); +GL_APICALL void GL_APIENTRY glCoverStrokePathNV (GLuint path, GLenum coverMode); +GL_APICALL void GL_APIENTRY glCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glGetPathParameterivNV (GLuint path, GLenum pname, GLint *value); +GL_APICALL void GL_APIENTRY glGetPathParameterfvNV (GLuint path, GLenum pname, GLfloat *value); +GL_APICALL void GL_APIENTRY glGetPathCommandsNV (GLuint path, GLubyte *commands); +GL_APICALL void GL_APIENTRY glGetPathCoordsNV (GLuint path, GLfloat *coords); +GL_APICALL void GL_APIENTRY glGetPathDashArrayNV (GLuint path, GLfloat *dashArray); +GL_APICALL void GL_APIENTRY glGetPathMetricsNV (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +GL_APICALL void GL_APIENTRY glGetPathMetricRangeNV (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +GL_APICALL void GL_APIENTRY glGetPathSpacingNV (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +GL_APICALL GLboolean GL_APIENTRY glIsPointInFillPathNV (GLuint path, GLuint mask, GLfloat x, GLfloat y); +GL_APICALL GLboolean GL_APIENTRY glIsPointInStrokePathNV (GLuint path, GLfloat x, GLfloat y); +GL_APICALL GLfloat GL_APIENTRY glGetPathLengthNV (GLuint path, GLsizei startSegment, GLsizei numSegments); +GL_APICALL GLboolean GL_APIENTRY glPointAlongPathNV (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +GL_APICALL void GL_APIENTRY glMatrixLoad3x2fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoad3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoadTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMult3x2fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMult3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathNV (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathNV (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL GLenum GL_APIENTRY glPathGlyphIndexRangeNV (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +GL_APICALL GLenum GL_APIENTRY glPathGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL GLenum GL_APIENTRY glPathMemoryGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glProgramPathFragmentInputGenNV (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +GL_APICALL void GL_APIENTRY glGetProgramResourcefvNV (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +GL_APICALL void GL_APIENTRY glMatrixFrustumEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GL_APICALL void GL_APIENTRY glMatrixLoadIdentityEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixLoadTransposefEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoadTransposedEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixLoadfEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoaddEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixMultTransposefEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultTransposedEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixMultfEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultdEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixOrthoEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GL_APICALL void GL_APIENTRY glMatrixPopEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixPushEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixRotatefEXT (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixRotatedEXT (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +GL_APICALL void GL_APIENTRY glMatrixScalefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixScaledEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GL_APICALL void GL_APIENTRY glMatrixTranslatefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixTranslatedEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +#endif +#endif /* GL_NV_path_rendering */ + +#ifndef GL_NV_path_rendering_shared_edge +#define GL_NV_path_rendering_shared_edge 1 +#define GL_SHARED_EDGE_NV 0xC0 +#endif /* GL_NV_path_rendering_shared_edge */ + +#ifndef GL_NV_pixel_buffer_object +#define GL_NV_pixel_buffer_object 1 +#define GL_PIXEL_PACK_BUFFER_NV 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_NV 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_NV 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_NV 0x88EF +#endif /* GL_NV_pixel_buffer_object */ + +#ifndef GL_NV_polygon_mode +#define GL_NV_polygon_mode 1 +#define GL_POLYGON_MODE_NV 0x0B40 +#define GL_POLYGON_OFFSET_POINT_NV 0x2A01 +#define GL_POLYGON_OFFSET_LINE_NV 0x2A02 +#define GL_POINT_NV 0x1B00 +#define GL_LINE_NV 0x1B01 +#define GL_FILL_NV 0x1B02 +typedef void (GL_APIENTRYP PFNGLPOLYGONMODENVPROC) (GLenum face, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPolygonModeNV (GLenum face, GLenum mode); +#endif +#endif /* GL_NV_polygon_mode */ + +#ifndef GL_NV_primitive_shading_rate +#define GL_NV_primitive_shading_rate 1 +#define GL_SHADING_RATE_IMAGE_PER_PRIMITIVE_NV 0x95B1 +#define GL_SHADING_RATE_IMAGE_PALETTE_COUNT_NV 0x95B2 +#endif /* GL_NV_primitive_shading_rate */ + +#ifndef GL_NV_read_buffer +#define GL_NV_read_buffer 1 +#define GL_READ_BUFFER_NV 0x0C02 +typedef void (GL_APIENTRYP PFNGLREADBUFFERNVPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glReadBufferNV (GLenum mode); +#endif +#endif /* GL_NV_read_buffer */ + +#ifndef GL_NV_read_buffer_front +#define GL_NV_read_buffer_front 1 +#endif /* GL_NV_read_buffer_front */ + +#ifndef GL_NV_read_depth +#define GL_NV_read_depth 1 +#endif /* GL_NV_read_depth */ + +#ifndef GL_NV_read_depth_stencil +#define GL_NV_read_depth_stencil 1 +#endif /* GL_NV_read_depth_stencil */ + +#ifndef GL_NV_read_stencil +#define GL_NV_read_stencil 1 +#endif /* GL_NV_read_stencil */ + +#ifndef GL_NV_representative_fragment_test +#define GL_NV_representative_fragment_test 1 +#define GL_REPRESENTATIVE_FRAGMENT_TEST_NV 0x937F +#endif /* GL_NV_representative_fragment_test */ + +#ifndef GL_NV_sRGB_formats +#define GL_NV_sRGB_formats 1 +#define GL_SLUMINANCE_NV 0x8C46 +#define GL_SLUMINANCE_ALPHA_NV 0x8C44 +#define GL_SRGB8_NV 0x8C41 +#define GL_SLUMINANCE8_NV 0x8C47 +#define GL_SLUMINANCE8_ALPHA8_NV 0x8C45 +#define GL_COMPRESSED_SRGB_S3TC_DXT1_NV 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV 0x8C4F +#define GL_ETC1_SRGB8_NV 0x88EE +#endif /* GL_NV_sRGB_formats */ + +#ifndef GL_NV_sample_locations +#define GL_NV_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_NV 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_NV 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_NV 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_NV 0x9340 +#define GL_SAMPLE_LOCATION_NV 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_NV 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_NV 0x9343 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLRESOLVEDEPTHVALUESNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferSampleLocationsfvNV (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glNamedFramebufferSampleLocationsfvNV (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glResolveDepthValuesNV (void); +#endif +#endif /* GL_NV_sample_locations */ + +#ifndef GL_NV_sample_mask_override_coverage +#define GL_NV_sample_mask_override_coverage 1 +#endif /* GL_NV_sample_mask_override_coverage */ + +#ifndef GL_NV_scissor_exclusive +#define GL_NV_scissor_exclusive 1 +#define GL_SCISSOR_TEST_EXCLUSIVE_NV 0x9555 +#define GL_SCISSOR_BOX_EXCLUSIVE_NV 0x9556 +typedef void (GL_APIENTRYP PFNGLSCISSOREXCLUSIVENVPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSOREXCLUSIVEARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glScissorExclusiveNV (GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorExclusiveArrayvNV (GLuint first, GLsizei count, const GLint *v); +#endif +#endif /* GL_NV_scissor_exclusive */ + +#ifndef GL_NV_shader_atomic_fp16_vector +#define GL_NV_shader_atomic_fp16_vector 1 +#endif /* GL_NV_shader_atomic_fp16_vector */ + +#ifndef GL_NV_shader_noperspective_interpolation +#define GL_NV_shader_noperspective_interpolation 1 +#endif /* GL_NV_shader_noperspective_interpolation */ + +#ifndef GL_NV_shader_subgroup_partitioned +#define GL_NV_shader_subgroup_partitioned 1 +#define GL_SUBGROUP_FEATURE_PARTITIONED_BIT_NV 0x00000100 +#endif /* GL_NV_shader_subgroup_partitioned */ + +#ifndef GL_NV_shader_texture_footprint +#define GL_NV_shader_texture_footprint 1 +#endif /* GL_NV_shader_texture_footprint */ + +#ifndef GL_NV_shading_rate_image +#define GL_NV_shading_rate_image 1 +#define GL_SHADING_RATE_IMAGE_NV 0x9563 +#define GL_SHADING_RATE_NO_INVOCATIONS_NV 0x9564 +#define GL_SHADING_RATE_1_INVOCATION_PER_PIXEL_NV 0x9565 +#define GL_SHADING_RATE_1_INVOCATION_PER_1X2_PIXELS_NV 0x9566 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X1_PIXELS_NV 0x9567 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X2_PIXELS_NV 0x9568 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X4_PIXELS_NV 0x9569 +#define GL_SHADING_RATE_1_INVOCATION_PER_4X2_PIXELS_NV 0x956A +#define GL_SHADING_RATE_1_INVOCATION_PER_4X4_PIXELS_NV 0x956B +#define GL_SHADING_RATE_2_INVOCATIONS_PER_PIXEL_NV 0x956C +#define GL_SHADING_RATE_4_INVOCATIONS_PER_PIXEL_NV 0x956D +#define GL_SHADING_RATE_8_INVOCATIONS_PER_PIXEL_NV 0x956E +#define GL_SHADING_RATE_16_INVOCATIONS_PER_PIXEL_NV 0x956F +#define GL_SHADING_RATE_IMAGE_BINDING_NV 0x955B +#define GL_SHADING_RATE_IMAGE_TEXEL_WIDTH_NV 0x955C +#define GL_SHADING_RATE_IMAGE_TEXEL_HEIGHT_NV 0x955D +#define GL_SHADING_RATE_IMAGE_PALETTE_SIZE_NV 0x955E +#define GL_MAX_COARSE_FRAGMENT_SAMPLES_NV 0x955F +#define GL_SHADING_RATE_SAMPLE_ORDER_DEFAULT_NV 0x95AE +#define GL_SHADING_RATE_SAMPLE_ORDER_PIXEL_MAJOR_NV 0x95AF +#define GL_SHADING_RATE_SAMPLE_ORDER_SAMPLE_MAJOR_NV 0x95B0 +typedef void (GL_APIENTRYP PFNGLBINDSHADINGRATEIMAGENVPROC) (GLuint texture); +typedef void (GL_APIENTRYP PFNGLGETSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint entry, GLenum *rate); +typedef void (GL_APIENTRYP PFNGLGETSHADINGRATESAMPLELOCATIONIVNVPROC) (GLenum rate, GLuint samples, GLuint index, GLint *location); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEIMAGEBARRIERNVPROC) (GLboolean synchronize); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +typedef void (GL_APIENTRYP PFNGLSHADINGRATESAMPLEORDERNVPROC) (GLenum order); +typedef void (GL_APIENTRYP PFNGLSHADINGRATESAMPLEORDERCUSTOMNVPROC) (GLenum rate, GLuint samples, const GLint *locations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindShadingRateImageNV (GLuint texture); +GL_APICALL void GL_APIENTRY glGetShadingRateImagePaletteNV (GLuint viewport, GLuint entry, GLenum *rate); +GL_APICALL void GL_APIENTRY glGetShadingRateSampleLocationivNV (GLenum rate, GLuint samples, GLuint index, GLint *location); +GL_APICALL void GL_APIENTRY glShadingRateImageBarrierNV (GLboolean synchronize); +GL_APICALL void GL_APIENTRY glShadingRateImagePaletteNV (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +GL_APICALL void GL_APIENTRY glShadingRateSampleOrderNV (GLenum order); +GL_APICALL void GL_APIENTRY glShadingRateSampleOrderCustomNV (GLenum rate, GLuint samples, const GLint *locations); +#endif +#endif /* GL_NV_shading_rate_image */ + +#ifndef GL_NV_shadow_samplers_array +#define GL_NV_shadow_samplers_array 1 +#define GL_SAMPLER_2D_ARRAY_SHADOW_NV 0x8DC4 +#endif /* GL_NV_shadow_samplers_array */ + +#ifndef GL_NV_shadow_samplers_cube +#define GL_NV_shadow_samplers_cube 1 +#define GL_SAMPLER_CUBE_SHADOW_NV 0x8DC5 +#endif /* GL_NV_shadow_samplers_cube */ + +#ifndef GL_NV_stereo_view_rendering +#define GL_NV_stereo_view_rendering 1 +#endif /* GL_NV_stereo_view_rendering */ + +#ifndef GL_NV_texture_border_clamp +#define GL_NV_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_NV 0x1004 +#define GL_CLAMP_TO_BORDER_NV 0x812D +#endif /* GL_NV_texture_border_clamp */ + +#ifndef GL_NV_texture_compression_s3tc_update +#define GL_NV_texture_compression_s3tc_update 1 +#endif /* GL_NV_texture_compression_s3tc_update */ + +#ifndef GL_NV_texture_npot_2D_mipmap +#define GL_NV_texture_npot_2D_mipmap 1 +#endif /* GL_NV_texture_npot_2D_mipmap */ + +#ifndef GL_NV_timeline_semaphore +#define GL_NV_timeline_semaphore 1 +#define GL_TIMELINE_SEMAPHORE_VALUE_NV 0x9595 +#define GL_SEMAPHORE_TYPE_NV 0x95B3 +#define GL_SEMAPHORE_TYPE_BINARY_NV 0x95B4 +#define GL_SEMAPHORE_TYPE_TIMELINE_NV 0x95B5 +#define GL_MAX_TIMELINE_SEMAPHORE_VALUE_DIFFERENCE_NV 0x95B6 +typedef void (GL_APIENTRYP PFNGLCREATESEMAPHORESNVPROC) (GLsizei n, GLuint *semaphores); +typedef void (GL_APIENTRYP PFNGLSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCreateSemaphoresNV (GLsizei n, GLuint *semaphores); +GL_APICALL void GL_APIENTRY glSemaphoreParameterivNV (GLuint semaphore, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glGetSemaphoreParameterivNV (GLuint semaphore, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_timeline_semaphore */ + +#ifndef GL_NV_viewport_array +#define GL_NV_viewport_array 1 +#define GL_MAX_VIEWPORTS_NV 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS_NV 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE_NV 0x825D +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX_NV 0x825F +typedef void (GL_APIENTRYP PFNGLVIEWPORTARRAYVNVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFVNVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLSCISSORARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDNVPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDVNVPROC) (GLuint index, const GLint *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEARRAYFVNVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEINDEXEDFNVPROC) (GLuint index, GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLGETFLOATI_VNVPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (GL_APIENTRYP PFNGLENABLEINVPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEINVPROC) (GLenum target, GLuint index); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDINVPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportArrayvNV (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glViewportIndexedfNV (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GL_APICALL void GL_APIENTRY glViewportIndexedfvNV (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glScissorArrayvNV (GLuint first, GLsizei count, const GLint *v); +GL_APICALL void GL_APIENTRY glScissorIndexedNV (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorIndexedvNV (GLuint index, const GLint *v); +GL_APICALL void GL_APIENTRY glDepthRangeArrayfvNV (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glDepthRangeIndexedfNV (GLuint index, GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glGetFloati_vNV (GLenum target, GLuint index, GLfloat *data); +GL_APICALL void GL_APIENTRY glEnableiNV (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiNV (GLenum target, GLuint index); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediNV (GLenum target, GLuint index); +#endif +#endif /* GL_NV_viewport_array */ + +#ifndef GL_NV_viewport_array2 +#define GL_NV_viewport_array2 1 +#endif /* GL_NV_viewport_array2 */ + +#ifndef GL_NV_viewport_swizzle +#define GL_NV_viewport_swizzle 1 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_X_NV 0x9350 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_X_NV 0x9351 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Y_NV 0x9352 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Y_NV 0x9353 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Z_NV 0x9354 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Z_NV 0x9355 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_W_NV 0x9356 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_W_NV 0x9357 +#define GL_VIEWPORT_SWIZZLE_X_NV 0x9358 +#define GL_VIEWPORT_SWIZZLE_Y_NV 0x9359 +#define GL_VIEWPORT_SWIZZLE_Z_NV 0x935A +#define GL_VIEWPORT_SWIZZLE_W_NV 0x935B +typedef void (GL_APIENTRYP PFNGLVIEWPORTSWIZZLENVPROC) (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportSwizzleNV (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#endif +#endif /* GL_NV_viewport_swizzle */ + +#ifndef GL_OVR_multiview +#define GL_OVR_multiview 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR 0x9630 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR 0x9632 +#define GL_MAX_VIEWS_OVR 0x9631 +#define GL_FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR 0x9633 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview */ + +#ifndef GL_OVR_multiview2 +#define GL_OVR_multiview2 1 +#endif /* GL_OVR_multiview2 */ + +#ifndef GL_OVR_multiview_multisampled_render_to_texture +#define GL_OVR_multiview_multisampled_render_to_texture 1 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTISAMPLEMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLsizei samples, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureMultisampleMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLsizei samples, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview_multisampled_render_to_texture */ + +#ifndef GL_QCOM_YUV_texture_gather +#define GL_QCOM_YUV_texture_gather 1 +#endif /* GL_QCOM_YUV_texture_gather */ + +#ifndef GL_QCOM_alpha_test +#define GL_QCOM_alpha_test 1 +#define GL_ALPHA_TEST_QCOM 0x0BC0 +#define GL_ALPHA_TEST_FUNC_QCOM 0x0BC1 +#define GL_ALPHA_TEST_REF_QCOM 0x0BC2 +typedef void (GL_APIENTRYP PFNGLALPHAFUNCQCOMPROC) (GLenum func, GLclampf ref); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glAlphaFuncQCOM (GLenum func, GLclampf ref); +#endif +#endif /* GL_QCOM_alpha_test */ + +#ifndef GL_QCOM_binning_control +#define GL_QCOM_binning_control 1 +#define GL_BINNING_CONTROL_HINT_QCOM 0x8FB0 +#define GL_CPU_OPTIMIZED_QCOM 0x8FB1 +#define GL_GPU_OPTIMIZED_QCOM 0x8FB2 +#define GL_RENDER_DIRECT_TO_FRAMEBUFFER_QCOM 0x8FB3 +#endif /* GL_QCOM_binning_control */ + +#ifndef GL_QCOM_driver_control +#define GL_QCOM_driver_control 1 +typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSQCOMPROC) (GLint *num, GLsizei size, GLuint *driverControls); +typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSTRINGQCOMPROC) (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); +typedef void (GL_APIENTRYP PFNGLENABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +typedef void (GL_APIENTRYP PFNGLDISABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetDriverControlsQCOM (GLint *num, GLsizei size, GLuint *driverControls); +GL_APICALL void GL_APIENTRY glGetDriverControlStringQCOM (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); +GL_APICALL void GL_APIENTRY glEnableDriverControlQCOM (GLuint driverControl); +GL_APICALL void GL_APIENTRY glDisableDriverControlQCOM (GLuint driverControl); +#endif +#endif /* GL_QCOM_driver_control */ + +#ifndef GL_QCOM_extended_get +#define GL_QCOM_extended_get 1 +#define GL_TEXTURE_WIDTH_QCOM 0x8BD2 +#define GL_TEXTURE_HEIGHT_QCOM 0x8BD3 +#define GL_TEXTURE_DEPTH_QCOM 0x8BD4 +#define GL_TEXTURE_INTERNAL_FORMAT_QCOM 0x8BD5 +#define GL_TEXTURE_FORMAT_QCOM 0x8BD6 +#define GL_TEXTURE_TYPE_QCOM 0x8BD7 +#define GL_TEXTURE_IMAGE_VALID_QCOM 0x8BD8 +#define GL_TEXTURE_NUM_LEVELS_QCOM 0x8BD9 +#define GL_TEXTURE_TARGET_QCOM 0x8BDA +#define GL_TEXTURE_OBJECT_VALID_QCOM 0x8BDB +#define GL_STATE_RESTORE 0x8BDC +typedef void (GL_APIENTRYP PFNGLEXTGETTEXTURESQCOMPROC) (GLuint *textures, GLint maxTextures, GLint *numTextures); +typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERSQCOMPROC) (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETRENDERBUFFERSQCOMPROC) (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETFRAMEBUFFERSQCOMPROC) (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETTEXLEVELPARAMETERIVQCOMPROC) (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLEXTTEXOBJECTSTATEOVERRIDEIQCOMPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLEXTGETTEXSUBIMAGEQCOMPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void *texels); +typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERPOINTERVQCOMPROC) (GLenum target, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtGetTexturesQCOM (GLuint *textures, GLint maxTextures, GLint *numTextures); +GL_APICALL void GL_APIENTRY glExtGetBuffersQCOM (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); +GL_APICALL void GL_APIENTRY glExtGetRenderbuffersQCOM (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); +GL_APICALL void GL_APIENTRY glExtGetFramebuffersQCOM (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); +GL_APICALL void GL_APIENTRY glExtGetTexLevelParameterivQCOM (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glExtTexObjectStateOverrideiQCOM (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glExtGetTexSubImageQCOM (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void *texels); +GL_APICALL void GL_APIENTRY glExtGetBufferPointervQCOM (GLenum target, void **params); +#endif +#endif /* GL_QCOM_extended_get */ + +#ifndef GL_QCOM_extended_get2 +#define GL_QCOM_extended_get2 1 +typedef void (GL_APIENTRYP PFNGLEXTGETSHADERSQCOMPROC) (GLuint *shaders, GLint maxShaders, GLint *numShaders); +typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMSQCOMPROC) (GLuint *programs, GLint maxPrograms, GLint *numPrograms); +typedef GLboolean (GL_APIENTRYP PFNGLEXTISPROGRAMBINARYQCOMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMBINARYSOURCEQCOMPROC) (GLuint program, GLenum shadertype, GLchar *source, GLint *length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtGetShadersQCOM (GLuint *shaders, GLint maxShaders, GLint *numShaders); +GL_APICALL void GL_APIENTRY glExtGetProgramsQCOM (GLuint *programs, GLint maxPrograms, GLint *numPrograms); +GL_APICALL GLboolean GL_APIENTRY glExtIsProgramBinaryQCOM (GLuint program); +GL_APICALL void GL_APIENTRY glExtGetProgramBinarySourceQCOM (GLuint program, GLenum shadertype, GLchar *source, GLint *length); +#endif +#endif /* GL_QCOM_extended_get2 */ + +#ifndef GL_QCOM_frame_extrapolation +#define GL_QCOM_frame_extrapolation 1 +typedef void (GL_APIENTRYP PFNGLEXTRAPOLATETEX2DQCOMPROC) (GLuint src1, GLuint src2, GLuint output, GLfloat scaleFactor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtrapolateTex2DQCOM (GLuint src1, GLuint src2, GLuint output, GLfloat scaleFactor); +#endif +#endif /* GL_QCOM_frame_extrapolation */ + +#ifndef GL_QCOM_framebuffer_foveated +#define GL_QCOM_framebuffer_foveated 1 +#define GL_FOVEATION_ENABLE_BIT_QCOM 0x00000001 +#define GL_FOVEATION_SCALED_BIN_METHOD_BIT_QCOM 0x00000002 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFOVEATIONCONFIGQCOMPROC) (GLuint framebuffer, GLuint numLayers, GLuint focalPointsPerLayer, GLuint requestedFeatures, GLuint *providedFeatures); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFOVEATIONPARAMETERSQCOMPROC) (GLuint framebuffer, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFoveationConfigQCOM (GLuint framebuffer, GLuint numLayers, GLuint focalPointsPerLayer, GLuint requestedFeatures, GLuint *providedFeatures); +GL_APICALL void GL_APIENTRY glFramebufferFoveationParametersQCOM (GLuint framebuffer, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#endif +#endif /* GL_QCOM_framebuffer_foveated */ + +#ifndef GL_QCOM_motion_estimation +#define GL_QCOM_motion_estimation 1 +#define GL_MOTION_ESTIMATION_SEARCH_BLOCK_X_QCOM 0x8C90 +#define GL_MOTION_ESTIMATION_SEARCH_BLOCK_Y_QCOM 0x8C91 +typedef void (GL_APIENTRYP PFNGLTEXESTIMATEMOTIONQCOMPROC) (GLuint ref, GLuint target, GLuint output); +typedef void (GL_APIENTRYP PFNGLTEXESTIMATEMOTIONREGIONSQCOMPROC) (GLuint ref, GLuint target, GLuint output, GLuint mask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexEstimateMotionQCOM (GLuint ref, GLuint target, GLuint output); +GL_APICALL void GL_APIENTRY glTexEstimateMotionRegionsQCOM (GLuint ref, GLuint target, GLuint output, GLuint mask); +#endif +#endif /* GL_QCOM_motion_estimation */ + +#ifndef GL_QCOM_perfmon_global_mode +#define GL_QCOM_perfmon_global_mode 1 +#define GL_PERFMON_GLOBAL_MODE_QCOM 0x8FA0 +#endif /* GL_QCOM_perfmon_global_mode */ + +#ifndef GL_QCOM_render_shared_exponent +#define GL_QCOM_render_shared_exponent 1 +#endif /* GL_QCOM_render_shared_exponent */ + +#ifndef GL_QCOM_shader_framebuffer_fetch_noncoherent +#define GL_QCOM_shader_framebuffer_fetch_noncoherent 1 +#define GL_FRAMEBUFFER_FETCH_NONCOHERENT_QCOM 0x96A2 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIERQCOMPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFetchBarrierQCOM (void); +#endif +#endif /* GL_QCOM_shader_framebuffer_fetch_noncoherent */ + +#ifndef GL_QCOM_shader_framebuffer_fetch_rate +#define GL_QCOM_shader_framebuffer_fetch_rate 1 +#endif /* GL_QCOM_shader_framebuffer_fetch_rate */ + +#ifndef GL_QCOM_shading_rate +#define GL_QCOM_shading_rate 1 +#define GL_SHADING_RATE_QCOM 0x96A4 +#define GL_SHADING_RATE_PRESERVE_ASPECT_RATIO_QCOM 0x96A5 +#define GL_SHADING_RATE_1X1_PIXELS_QCOM 0x96A6 +#define GL_SHADING_RATE_1X2_PIXELS_QCOM 0x96A7 +#define GL_SHADING_RATE_2X1_PIXELS_QCOM 0x96A8 +#define GL_SHADING_RATE_2X2_PIXELS_QCOM 0x96A9 +#define GL_SHADING_RATE_4X2_PIXELS_QCOM 0x96AC +#define GL_SHADING_RATE_4X4_PIXELS_QCOM 0x96AE +typedef void (GL_APIENTRYP PFNGLSHADINGRATEQCOMPROC) (GLenum rate); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glShadingRateQCOM (GLenum rate); +#endif +#endif /* GL_QCOM_shading_rate */ + +#ifndef GL_QCOM_texture_foveated +#define GL_QCOM_texture_foveated 1 +#define GL_TEXTURE_FOVEATED_FEATURE_BITS_QCOM 0x8BFB +#define GL_TEXTURE_FOVEATED_MIN_PIXEL_DENSITY_QCOM 0x8BFC +#define GL_TEXTURE_FOVEATED_FEATURE_QUERY_QCOM 0x8BFD +#define GL_TEXTURE_FOVEATED_NUM_FOCAL_POINTS_QUERY_QCOM 0x8BFE +#define GL_FRAMEBUFFER_INCOMPLETE_FOVEATION_QCOM 0x8BFF +typedef void (GL_APIENTRYP PFNGLTEXTUREFOVEATIONPARAMETERSQCOMPROC) (GLuint texture, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureFoveationParametersQCOM (GLuint texture, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#endif +#endif /* GL_QCOM_texture_foveated */ + +#ifndef GL_QCOM_texture_foveated2 +#define GL_QCOM_texture_foveated2 1 +#define GL_TEXTURE_FOVEATED_CUTOFF_DENSITY_QCOM 0x96A0 +#endif /* GL_QCOM_texture_foveated2 */ + +#ifndef GL_QCOM_texture_foveated_subsampled_layout +#define GL_QCOM_texture_foveated_subsampled_layout 1 +#define GL_FOVEATION_SUBSAMPLED_LAYOUT_METHOD_BIT_QCOM 0x00000004 +#define GL_MAX_SHADER_SUBSAMPLED_IMAGE_UNITS_QCOM 0x8FA1 +#endif /* GL_QCOM_texture_foveated_subsampled_layout */ + +#ifndef GL_QCOM_tiled_rendering +#define GL_QCOM_tiled_rendering 1 +#define GL_COLOR_BUFFER_BIT0_QCOM 0x00000001 +#define GL_COLOR_BUFFER_BIT1_QCOM 0x00000002 +#define GL_COLOR_BUFFER_BIT2_QCOM 0x00000004 +#define GL_COLOR_BUFFER_BIT3_QCOM 0x00000008 +#define GL_COLOR_BUFFER_BIT4_QCOM 0x00000010 +#define GL_COLOR_BUFFER_BIT5_QCOM 0x00000020 +#define GL_COLOR_BUFFER_BIT6_QCOM 0x00000040 +#define GL_COLOR_BUFFER_BIT7_QCOM 0x00000080 +#define GL_DEPTH_BUFFER_BIT0_QCOM 0x00000100 +#define GL_DEPTH_BUFFER_BIT1_QCOM 0x00000200 +#define GL_DEPTH_BUFFER_BIT2_QCOM 0x00000400 +#define GL_DEPTH_BUFFER_BIT3_QCOM 0x00000800 +#define GL_DEPTH_BUFFER_BIT4_QCOM 0x00001000 +#define GL_DEPTH_BUFFER_BIT5_QCOM 0x00002000 +#define GL_DEPTH_BUFFER_BIT6_QCOM 0x00004000 +#define GL_DEPTH_BUFFER_BIT7_QCOM 0x00008000 +#define GL_STENCIL_BUFFER_BIT0_QCOM 0x00010000 +#define GL_STENCIL_BUFFER_BIT1_QCOM 0x00020000 +#define GL_STENCIL_BUFFER_BIT2_QCOM 0x00040000 +#define GL_STENCIL_BUFFER_BIT3_QCOM 0x00080000 +#define GL_STENCIL_BUFFER_BIT4_QCOM 0x00100000 +#define GL_STENCIL_BUFFER_BIT5_QCOM 0x00200000 +#define GL_STENCIL_BUFFER_BIT6_QCOM 0x00400000 +#define GL_STENCIL_BUFFER_BIT7_QCOM 0x00800000 +#define GL_MULTISAMPLE_BUFFER_BIT0_QCOM 0x01000000 +#define GL_MULTISAMPLE_BUFFER_BIT1_QCOM 0x02000000 +#define GL_MULTISAMPLE_BUFFER_BIT2_QCOM 0x04000000 +#define GL_MULTISAMPLE_BUFFER_BIT3_QCOM 0x08000000 +#define GL_MULTISAMPLE_BUFFER_BIT4_QCOM 0x10000000 +#define GL_MULTISAMPLE_BUFFER_BIT5_QCOM 0x20000000 +#define GL_MULTISAMPLE_BUFFER_BIT6_QCOM 0x40000000 +#define GL_MULTISAMPLE_BUFFER_BIT7_QCOM 0x80000000 +typedef void (GL_APIENTRYP PFNGLSTARTTILINGQCOMPROC) (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); +typedef void (GL_APIENTRYP PFNGLENDTILINGQCOMPROC) (GLbitfield preserveMask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glStartTilingQCOM (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); +GL_APICALL void GL_APIENTRY glEndTilingQCOM (GLbitfield preserveMask); +#endif +#endif /* GL_QCOM_tiled_rendering */ + +#ifndef GL_QCOM_writeonly_rendering +#define GL_QCOM_writeonly_rendering 1 +#define GL_WRITEONLY_RENDERING_QCOM 0x8823 +#endif /* GL_QCOM_writeonly_rendering */ + +#ifndef GL_VIV_shader_binary +#define GL_VIV_shader_binary 1 +#define GL_SHADER_BINARY_VIV 0x8FC4 +#endif /* GL_VIV_shader_binary */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2platform.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2platform.h new file mode 100644 index 0000000..426796e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_gl2platform.h @@ -0,0 +1,27 @@ +#ifndef __gl2platform_h_ +#define __gl2platform_h_ + +/* +** Copyright 2017-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +*/ + +/* Platform-specific types and definitions for OpenGL ES 2.X gl2.h + * + * Adopters may modify khrplatform.h and this file to suit their platform. + * Please contribute modifications back to Khronos as pull requests on the + * public github repository: + * https://github.com/KhronosGroup/OpenGL-Registry + */ + +/*#include */ + +#ifndef GL_APICALL +#define GL_APICALL KHRONOS_APICALL +#endif + +#ifndef GL_APIENTRY +#define GL_APIENTRY KHRONOS_APIENTRY +#endif + +#endif /* __gl2platform_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_khrplatform.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_khrplatform.h new file mode 100644 index 0000000..0164644 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_opengles2_khrplatform.h @@ -0,0 +1,311 @@ +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_pen.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_pen.h new file mode 100644 index 0000000..5182eeb --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_pen.h @@ -0,0 +1,127 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryPen + * + * SDL pen event handling. + * + * SDL provides an API for pressure-sensitive pen (stylus and/or eraser) + * handling, e.g., for input and drawing tablets or suitably equipped mobile / + * tablet devices. + * + * To get started with pens, simply handle SDL_EVENT_PEN_* events. When a pen + * starts providing input, SDL will assign it a unique SDL_PenID, which will + * remain for the life of the process, as long as the pen stays connected. + * + * Pens may provide more than simple touch input; they might have other axes, + * such as pressure, tilt, rotation, etc. + */ + +#ifndef SDL_pen_h_ +#define SDL_pen_h_ + +#include +#include +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SDL pen instance IDs. + * + * Zero is used to signify an invalid/null device. + * + * These show up in pen events when SDL sees input from them. They remain + * consistent as long as SDL can recognize a tool to be the same pen; but if a + * pen physically leaves the area and returns, it might get a new ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_PenID; + +/** + * The SDL_MouseID for mouse events simulated with pen input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PEN_MOUSEID ((SDL_MouseID)-2) + +/** + * The SDL_TouchID for touch events simulated with pen input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PEN_TOUCHID ((SDL_TouchID)-2) + + +/** + * Pen input flags, as reported by various pen events' `pen_state` field. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_PenInputFlags; + +#define SDL_PEN_INPUT_DOWN (1u << 0) /**< pen is pressed down */ +#define SDL_PEN_INPUT_BUTTON_1 (1u << 1) /**< button 1 is pressed */ +#define SDL_PEN_INPUT_BUTTON_2 (1u << 2) /**< button 2 is pressed */ +#define SDL_PEN_INPUT_BUTTON_3 (1u << 3) /**< button 3 is pressed */ +#define SDL_PEN_INPUT_BUTTON_4 (1u << 4) /**< button 4 is pressed */ +#define SDL_PEN_INPUT_BUTTON_5 (1u << 5) /**< button 5 is pressed */ +#define SDL_PEN_INPUT_ERASER_TIP (1u << 30) /**< eraser tip is used */ + +/** + * Pen axis indices. + * + * These are the valid values for the `axis` field in SDL_PenAxisEvent. All + * axes are either normalised to 0..1 or report a (positive or negative) angle + * in degrees, with 0.0 representing the centre. Not all pens/backends support + * all axes: unsupported axes are always zero. + * + * To convert angles for tilt and rotation into vector representation, use + * SDL_sinf on the XTILT, YTILT, or ROTATION component, for example: + * + * `SDL_sinf(xtilt * SDL_PI_F / 180.0)`. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PenAxis +{ + SDL_PEN_AXIS_PRESSURE, /**< Pen pressure. Unidirectional: 0 to 1.0 */ + SDL_PEN_AXIS_XTILT, /**< Pen horizontal tilt angle. Bidirectional: -90.0 to 90.0 (left-to-right). */ + SDL_PEN_AXIS_YTILT, /**< Pen vertical tilt angle. Bidirectional: -90.0 to 90.0 (top-to-down). */ + SDL_PEN_AXIS_DISTANCE, /**< Pen distance to drawing surface. Unidirectional: 0.0 to 1.0 */ + SDL_PEN_AXIS_ROTATION, /**< Pen barrel rotation. Bidirectional: -180 to 179.9 (clockwise, 0 is facing up, -180.0 is facing down). */ + SDL_PEN_AXIS_SLIDER, /**< Pen finger wheel or slider (e.g., Airbrush Pen). Unidirectional: 0 to 1.0 */ + SDL_PEN_AXIS_TANGENTIAL_PRESSURE, /**< Pressure from squeezing the pen ("barrel pressure"). */ + SDL_PEN_AXIS_COUNT /**< Total known pen axis types in this version of SDL. This number may grow in future releases! */ +} SDL_PenAxis; + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif + +#endif /* SDL_pen_h_ */ + diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_pixels.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_pixels.h new file mode 100644 index 0000000..39596c1 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_pixels.h @@ -0,0 +1,1441 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryPixels + * + * SDL offers facilities for pixel management. + * + * Largely these facilities deal with pixel _format_: what does this set of + * bits represent? + * + * If you mostly want to think of a pixel as some combination of red, green, + * blue, and maybe alpha intensities, this is all pretty straightforward, and + * in many cases, is enough information to build a perfectly fine game. + * + * However, the actual definition of a pixel is more complex than that: + * + * Pixels are a representation of a color in a particular color space. + * + * The first characteristic of a color space is the color type. SDL + * understands two different color types, RGB and YCbCr, or in SDL also + * referred to as YUV. + * + * RGB colors consist of red, green, and blue channels of color that are added + * together to represent the colors we see on the screen. + * + * https://en.wikipedia.org/wiki/RGB_color_model + * + * YCbCr colors represent colors as a Y luma brightness component and red and + * blue chroma color offsets. This color representation takes advantage of the + * fact that the human eye is more sensitive to brightness than the color in + * an image. The Cb and Cr components are often compressed and have lower + * resolution than the luma component. + * + * https://en.wikipedia.org/wiki/YCbCr + * + * When the color information in YCbCr is compressed, the Y pixels are left at + * full resolution and each Cr and Cb pixel represents an average of the color + * information in a block of Y pixels. The chroma location determines where in + * that block of pixels the color information is coming from. + * + * The color range defines how much of the pixel to use when converting a + * pixel into a color on the display. When the full color range is used, the + * entire numeric range of the pixel bits is significant. When narrow color + * range is used, for historical reasons, the pixel uses only a portion of the + * numeric range to represent colors. + * + * The color primaries and white point are a definition of the colors in the + * color space relative to the standard XYZ color space. + * + * https://en.wikipedia.org/wiki/CIE_1931_color_space + * + * The transfer characteristic, or opto-electrical transfer function (OETF), + * is the way a color is converted from mathematically linear space into a + * non-linear output signals. + * + * https://en.wikipedia.org/wiki/Rec._709#Transfer_characteristics + * + * The matrix coefficients are used to convert between YCbCr and RGB colors. + */ + +#ifndef SDL_pixels_h_ +#define SDL_pixels_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A fully opaque 8-bit alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_TRANSPARENT + */ +#define SDL_ALPHA_OPAQUE 255 + +/** + * A fully opaque floating point alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_TRANSPARENT_FLOAT + */ +#define SDL_ALPHA_OPAQUE_FLOAT 1.0f + +/** + * A fully transparent 8-bit alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_OPAQUE + */ +#define SDL_ALPHA_TRANSPARENT 0 + +/** + * A fully transparent floating point alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_OPAQUE_FLOAT + */ +#define SDL_ALPHA_TRANSPARENT_FLOAT 0.0f + +/** + * Pixel type. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PixelType +{ + SDL_PIXELTYPE_UNKNOWN, + SDL_PIXELTYPE_INDEX1, + SDL_PIXELTYPE_INDEX4, + SDL_PIXELTYPE_INDEX8, + SDL_PIXELTYPE_PACKED8, + SDL_PIXELTYPE_PACKED16, + SDL_PIXELTYPE_PACKED32, + SDL_PIXELTYPE_ARRAYU8, + SDL_PIXELTYPE_ARRAYU16, + SDL_PIXELTYPE_ARRAYU32, + SDL_PIXELTYPE_ARRAYF16, + SDL_PIXELTYPE_ARRAYF32, + /* appended at the end for compatibility with sdl2-compat: */ + SDL_PIXELTYPE_INDEX2 +} SDL_PixelType; + +/** + * Bitmap pixel order, high bit -> low bit. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_BitmapOrder +{ + SDL_BITMAPORDER_NONE, + SDL_BITMAPORDER_4321, + SDL_BITMAPORDER_1234 +} SDL_BitmapOrder; + +/** + * Packed component order, high bit -> low bit. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PackedOrder +{ + SDL_PACKEDORDER_NONE, + SDL_PACKEDORDER_XRGB, + SDL_PACKEDORDER_RGBX, + SDL_PACKEDORDER_ARGB, + SDL_PACKEDORDER_RGBA, + SDL_PACKEDORDER_XBGR, + SDL_PACKEDORDER_BGRX, + SDL_PACKEDORDER_ABGR, + SDL_PACKEDORDER_BGRA +} SDL_PackedOrder; + +/** + * Array component order, low byte -> high byte. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ArrayOrder +{ + SDL_ARRAYORDER_NONE, + SDL_ARRAYORDER_RGB, + SDL_ARRAYORDER_RGBA, + SDL_ARRAYORDER_ARGB, + SDL_ARRAYORDER_BGR, + SDL_ARRAYORDER_BGRA, + SDL_ARRAYORDER_ABGR +} SDL_ArrayOrder; + +/** + * Packed component layout. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PackedLayout +{ + SDL_PACKEDLAYOUT_NONE, + SDL_PACKEDLAYOUT_332, + SDL_PACKEDLAYOUT_4444, + SDL_PACKEDLAYOUT_1555, + SDL_PACKEDLAYOUT_5551, + SDL_PACKEDLAYOUT_565, + SDL_PACKEDLAYOUT_8888, + SDL_PACKEDLAYOUT_2101010, + SDL_PACKEDLAYOUT_1010102 +} SDL_PackedLayout; + +/** + * A macro for defining custom FourCC pixel formats. + * + * For example, defining SDL_PIXELFORMAT_YV12 looks like this: + * + * ```c + * SDL_DEFINE_PIXELFOURCC('Y', 'V', '1', '2') + * ``` + * + * \param A the first character of the FourCC code. + * \param B the second character of the FourCC code. + * \param C the third character of the FourCC code. + * \param D the fourth character of the FourCC code. + * \returns a format value in the style of SDL_PixelFormat. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_PIXELFOURCC(A, B, C, D) SDL_FOURCC(A, B, C, D) + +/** + * A macro for defining custom non-FourCC pixel formats. + * + * For example, defining SDL_PIXELFORMAT_RGBA8888 looks like this: + * + * ```c + * SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_8888, 32, 4) + * ``` + * + * \param type the type of the new format, probably a SDL_PixelType value. + * \param order the order of the new format, probably a SDL_BitmapOrder, + * SDL_PackedOrder, or SDL_ArrayOrder value. + * \param layout the layout of the new format, probably an SDL_PackedLayout + * value or zero. + * \param bits the number of bits per pixel of the new format. + * \param bytes the number of bytes per pixel of the new format. + * \returns a format value in the style of SDL_PixelFormat. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_PIXELFORMAT(type, order, layout, bits, bytes) \ + ((1 << 28) | ((type) << 24) | ((order) << 20) | ((layout) << 16) | \ + ((bits) << 8) | ((bytes) << 0)) + +/** + * A macro to retrieve the flags of an SDL_PixelFormat. + * + * This macro is generally not needed directly by an app, which should use + * specific tests, like SDL_ISPIXELFORMAT_FOURCC, instead. + * + * \param format an SDL_PixelFormat to check. + * \returns the flags of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELFLAG(format) (((format) >> 28) & 0x0F) + +/** + * A macro to retrieve the type of an SDL_PixelFormat. + * + * This is usually a value from the SDL_PixelType enumeration. + * + * \param format an SDL_PixelFormat to check. + * \returns the type of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELTYPE(format) (((format) >> 24) & 0x0F) + +/** + * A macro to retrieve the order of an SDL_PixelFormat. + * + * This is usually a value from the SDL_BitmapOrder, SDL_PackedOrder, or + * SDL_ArrayOrder enumerations, depending on the format type. + * + * \param format an SDL_PixelFormat to check. + * \returns the order of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELORDER(format) (((format) >> 20) & 0x0F) + +/** + * A macro to retrieve the layout of an SDL_PixelFormat. + * + * This is usually a value from the SDL_PackedLayout enumeration, or zero if a + * layout doesn't make sense for the format type. + * + * \param format an SDL_PixelFormat to check. + * \returns the layout of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELLAYOUT(format) (((format) >> 16) & 0x0F) + +/** + * A macro to determine an SDL_PixelFormat's bits per pixel. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * FourCC formats will report zero here, as it rarely makes sense to measure + * them per-pixel. + * + * \param format an SDL_PixelFormat to check. + * \returns the bits-per-pixel of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BYTESPERPIXEL + */ +#define SDL_BITSPERPIXEL(format) \ + (SDL_ISPIXELFORMAT_FOURCC(format) ? 0 : (((format) >> 8) & 0xFF)) + +/** + * A macro to determine an SDL_PixelFormat's bytes per pixel. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * FourCC formats do their best here, but many of them don't have a meaningful + * measurement of bytes per pixel. + * + * \param format an SDL_PixelFormat to check. + * \returns the bytes-per-pixel of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BITSPERPIXEL + */ +#define SDL_BYTESPERPIXEL(format) \ + (SDL_ISPIXELFORMAT_FOURCC(format) ? \ + ((((format) == SDL_PIXELFORMAT_YUY2) || \ + ((format) == SDL_PIXELFORMAT_UYVY) || \ + ((format) == SDL_PIXELFORMAT_YVYU) || \ + ((format) == SDL_PIXELFORMAT_P010)) ? 2 : 1) : (((format) >> 0) & 0xFF)) + + +/** + * A macro to determine if an SDL_PixelFormat is an indexed format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is indexed, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_INDEXED(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX1) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX2) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX4) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX8))) + +/** + * A macro to determine if an SDL_PixelFormat is a packed format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is packed, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_PACKED(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED8) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED32))) + +/** + * A macro to determine if an SDL_PixelFormat is an array format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is an array, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_ARRAY(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU8) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU32) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF32))) + +/** + * A macro to determine if an SDL_PixelFormat is a 10-bit format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is 10-bit, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_10BIT(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED32) && \ + (SDL_PIXELLAYOUT(format) == SDL_PACKEDLAYOUT_2101010))) + +/** + * A macro to determine if an SDL_PixelFormat is a floating point format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is 10-bit, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_FLOAT(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF32))) + +/** + * A macro to determine if an SDL_PixelFormat has an alpha channel. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format has alpha, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_ALPHA(format) \ + ((SDL_ISPIXELFORMAT_PACKED(format) && \ + ((SDL_PIXELORDER(format) == SDL_PACKEDORDER_ARGB) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_RGBA) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_ABGR) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_BGRA))) || \ + (SDL_ISPIXELFORMAT_ARRAY(format) && \ + ((SDL_PIXELORDER(format) == SDL_ARRAYORDER_ARGB) || \ + (SDL_PIXELORDER(format) == SDL_ARRAYORDER_RGBA) || \ + (SDL_PIXELORDER(format) == SDL_ARRAYORDER_ABGR) || \ + (SDL_PIXELORDER(format) == SDL_ARRAYORDER_BGRA)))) + + +/** + * A macro to determine if an SDL_PixelFormat is a "FourCC" format. + * + * This covers custom and other unusual formats. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format has alpha, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_FOURCC(format) /* The flag is set to 1 because 0x1? is not in the printable ASCII range */ \ + ((format) && (SDL_PIXELFLAG(format) != 1)) + +/* Note: If you modify this enum, update SDL_GetPixelFormatName() */ + +/** + * Pixel format. + * + * SDL's pixel formats have the following naming convention: + * + * - Names with a list of components and a single bit count, such as RGB24 and + * ABGR32, define a platform-independent encoding into bytes in the order + * specified. For example, in RGB24 data, each pixel is encoded in 3 bytes + * (red, green, blue) in that order, and in ABGR32 data, each pixel is + * encoded in 4 bytes (alpha, blue, green, red) in that order. Use these + * names if the property of a format that is important to you is the order + * of the bytes in memory or on disk. + * - Names with a bit count per component, such as ARGB8888 and XRGB1555, are + * "packed" into an appropriately-sized integer in the platform's native + * endianness. For example, ARGB8888 is a sequence of 32-bit integers; in + * each integer, the most significant bits are alpha, and the least + * significant bits are blue. On a little-endian CPU such as x86, the least + * significant bits of each integer are arranged first in memory, but on a + * big-endian CPU such as s390x, the most significant bits are arranged + * first. Use these names if the property of a format that is important to + * you is the meaning of each bit position within a native-endianness + * integer. + * - In indexed formats such as INDEX4LSB, each pixel is represented by + * encoding an index into the palette into the indicated number of bits, + * with multiple pixels packed into each byte if appropriate. In LSB + * formats, the first (leftmost) pixel is stored in the least-significant + * bits of the byte; in MSB formats, it's stored in the most-significant + * bits. INDEX8 does not need LSB/MSB variants, because each pixel exactly + * fills one byte. + * + * The 32-bit byte-array encodings such as RGBA32 are aliases for the + * appropriate 8888 encoding for the current platform. For example, RGBA32 is + * an alias for ABGR8888 on little-endian CPUs like x86, or an alias for + * RGBA8888 on big-endian CPUs. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PixelFormat +{ + SDL_PIXELFORMAT_UNKNOWN = 0, + SDL_PIXELFORMAT_INDEX1LSB = 0x11100100u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX1, SDL_BITMAPORDER_4321, 0, 1, 0), */ + SDL_PIXELFORMAT_INDEX1MSB = 0x11200100u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX1, SDL_BITMAPORDER_1234, 0, 1, 0), */ + SDL_PIXELFORMAT_INDEX2LSB = 0x1c100200u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX2, SDL_BITMAPORDER_4321, 0, 2, 0), */ + SDL_PIXELFORMAT_INDEX2MSB = 0x1c200200u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX2, SDL_BITMAPORDER_1234, 0, 2, 0), */ + SDL_PIXELFORMAT_INDEX4LSB = 0x12100400u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX4, SDL_BITMAPORDER_4321, 0, 4, 0), */ + SDL_PIXELFORMAT_INDEX4MSB = 0x12200400u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX4, SDL_BITMAPORDER_1234, 0, 4, 0), */ + SDL_PIXELFORMAT_INDEX8 = 0x13000801u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX8, 0, 0, 8, 1), */ + SDL_PIXELFORMAT_RGB332 = 0x14110801u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED8, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_332, 8, 1), */ + SDL_PIXELFORMAT_XRGB4444 = 0x15120c02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_4444, 12, 2), */ + SDL_PIXELFORMAT_XBGR4444 = 0x15520c02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_4444, 12, 2), */ + SDL_PIXELFORMAT_XRGB1555 = 0x15130f02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_1555, 15, 2), */ + SDL_PIXELFORMAT_XBGR1555 = 0x15530f02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_1555, 15, 2), */ + SDL_PIXELFORMAT_ARGB4444 = 0x15321002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_RGBA4444 = 0x15421002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_ABGR4444 = 0x15721002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_BGRA4444 = 0x15821002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_BGRA, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_ARGB1555 = 0x15331002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_1555, 16, 2), */ + SDL_PIXELFORMAT_RGBA5551 = 0x15441002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_5551, 16, 2), */ + SDL_PIXELFORMAT_ABGR1555 = 0x15731002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_1555, 16, 2), */ + SDL_PIXELFORMAT_BGRA5551 = 0x15841002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_BGRA, SDL_PACKEDLAYOUT_5551, 16, 2), */ + SDL_PIXELFORMAT_RGB565 = 0x15151002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_565, 16, 2), */ + SDL_PIXELFORMAT_BGR565 = 0x15551002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_565, 16, 2), */ + SDL_PIXELFORMAT_RGB24 = 0x17101803u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU8, SDL_ARRAYORDER_RGB, 0, 24, 3), */ + SDL_PIXELFORMAT_BGR24 = 0x17401803u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU8, SDL_ARRAYORDER_BGR, 0, 24, 3), */ + SDL_PIXELFORMAT_XRGB8888 = 0x16161804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_RGBX8888 = 0x16261804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBX, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_XBGR8888 = 0x16561804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_BGRX8888 = 0x16661804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_BGRX, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_ARGB8888 = 0x16362004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_RGBA8888 = 0x16462004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_ABGR8888 = 0x16762004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_BGRA8888 = 0x16862004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_BGRA, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_XRGB2101010 = 0x16172004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_XBGR2101010 = 0x16572004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_ARGB2101010 = 0x16372004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_ABGR2101010 = 0x16772004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_RGB48 = 0x18103006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_RGB, 0, 48, 6), */ + SDL_PIXELFORMAT_BGR48 = 0x18403006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_BGR, 0, 48, 6), */ + SDL_PIXELFORMAT_RGBA64 = 0x18204008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_RGBA, 0, 64, 8), */ + SDL_PIXELFORMAT_ARGB64 = 0x18304008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_ARGB, 0, 64, 8), */ + SDL_PIXELFORMAT_BGRA64 = 0x18504008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_BGRA, 0, 64, 8), */ + SDL_PIXELFORMAT_ABGR64 = 0x18604008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_ABGR, 0, 64, 8), */ + SDL_PIXELFORMAT_RGB48_FLOAT = 0x1a103006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_RGB, 0, 48, 6), */ + SDL_PIXELFORMAT_BGR48_FLOAT = 0x1a403006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_BGR, 0, 48, 6), */ + SDL_PIXELFORMAT_RGBA64_FLOAT = 0x1a204008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_RGBA, 0, 64, 8), */ + SDL_PIXELFORMAT_ARGB64_FLOAT = 0x1a304008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_ARGB, 0, 64, 8), */ + SDL_PIXELFORMAT_BGRA64_FLOAT = 0x1a504008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_BGRA, 0, 64, 8), */ + SDL_PIXELFORMAT_ABGR64_FLOAT = 0x1a604008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_ABGR, 0, 64, 8), */ + SDL_PIXELFORMAT_RGB96_FLOAT = 0x1b10600cu, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_RGB, 0, 96, 12), */ + SDL_PIXELFORMAT_BGR96_FLOAT = 0x1b40600cu, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_BGR, 0, 96, 12), */ + SDL_PIXELFORMAT_RGBA128_FLOAT = 0x1b208010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_RGBA, 0, 128, 16), */ + SDL_PIXELFORMAT_ARGB128_FLOAT = 0x1b308010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_ARGB, 0, 128, 16), */ + SDL_PIXELFORMAT_BGRA128_FLOAT = 0x1b508010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_BGRA, 0, 128, 16), */ + SDL_PIXELFORMAT_ABGR128_FLOAT = 0x1b608010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_ABGR, 0, 128, 16), */ + + SDL_PIXELFORMAT_YV12 = 0x32315659u, /**< Planar mode: Y + V + U (3 planes) */ + /* SDL_DEFINE_PIXELFOURCC('Y', 'V', '1', '2'), */ + SDL_PIXELFORMAT_IYUV = 0x56555949u, /**< Planar mode: Y + U + V (3 planes) */ + /* SDL_DEFINE_PIXELFOURCC('I', 'Y', 'U', 'V'), */ + SDL_PIXELFORMAT_YUY2 = 0x32595559u, /**< Packed mode: Y0+U0+Y1+V0 (1 plane) */ + /* SDL_DEFINE_PIXELFOURCC('Y', 'U', 'Y', '2'), */ + SDL_PIXELFORMAT_UYVY = 0x59565955u, /**< Packed mode: U0+Y0+V0+Y1 (1 plane) */ + /* SDL_DEFINE_PIXELFOURCC('U', 'Y', 'V', 'Y'), */ + SDL_PIXELFORMAT_YVYU = 0x55595659u, /**< Packed mode: Y0+V0+Y1+U0 (1 plane) */ + /* SDL_DEFINE_PIXELFOURCC('Y', 'V', 'Y', 'U'), */ + SDL_PIXELFORMAT_NV12 = 0x3231564eu, /**< Planar mode: Y + U/V interleaved (2 planes) */ + /* SDL_DEFINE_PIXELFOURCC('N', 'V', '1', '2'), */ + SDL_PIXELFORMAT_NV21 = 0x3132564eu, /**< Planar mode: Y + V/U interleaved (2 planes) */ + /* SDL_DEFINE_PIXELFOURCC('N', 'V', '2', '1'), */ + SDL_PIXELFORMAT_P010 = 0x30313050u, /**< Planar mode: Y + U/V interleaved (2 planes) */ + /* SDL_DEFINE_PIXELFOURCC('P', '0', '1', '0'), */ + SDL_PIXELFORMAT_EXTERNAL_OES = 0x2053454fu, /**< Android video texture format */ + /* SDL_DEFINE_PIXELFOURCC('O', 'E', 'S', ' ') */ + + SDL_PIXELFORMAT_MJPG = 0x47504a4du, /**< Motion JPEG */ + /* SDL_DEFINE_PIXELFOURCC('M', 'J', 'P', 'G') */ + + /* Aliases for RGBA byte arrays of color data, for the current platform */ + #if SDL_BYTEORDER == SDL_BIG_ENDIAN + SDL_PIXELFORMAT_RGBA32 = SDL_PIXELFORMAT_RGBA8888, + SDL_PIXELFORMAT_ARGB32 = SDL_PIXELFORMAT_ARGB8888, + SDL_PIXELFORMAT_BGRA32 = SDL_PIXELFORMAT_BGRA8888, + SDL_PIXELFORMAT_ABGR32 = SDL_PIXELFORMAT_ABGR8888, + SDL_PIXELFORMAT_RGBX32 = SDL_PIXELFORMAT_RGBX8888, + SDL_PIXELFORMAT_XRGB32 = SDL_PIXELFORMAT_XRGB8888, + SDL_PIXELFORMAT_BGRX32 = SDL_PIXELFORMAT_BGRX8888, + SDL_PIXELFORMAT_XBGR32 = SDL_PIXELFORMAT_XBGR8888 + #else + SDL_PIXELFORMAT_RGBA32 = SDL_PIXELFORMAT_ABGR8888, + SDL_PIXELFORMAT_ARGB32 = SDL_PIXELFORMAT_BGRA8888, + SDL_PIXELFORMAT_BGRA32 = SDL_PIXELFORMAT_ARGB8888, + SDL_PIXELFORMAT_ABGR32 = SDL_PIXELFORMAT_RGBA8888, + SDL_PIXELFORMAT_RGBX32 = SDL_PIXELFORMAT_XBGR8888, + SDL_PIXELFORMAT_XRGB32 = SDL_PIXELFORMAT_BGRX8888, + SDL_PIXELFORMAT_BGRX32 = SDL_PIXELFORMAT_XRGB8888, + SDL_PIXELFORMAT_XBGR32 = SDL_PIXELFORMAT_RGBX8888 + #endif +} SDL_PixelFormat; + +/** + * Colorspace color type. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ColorType +{ + SDL_COLOR_TYPE_UNKNOWN = 0, + SDL_COLOR_TYPE_RGB = 1, + SDL_COLOR_TYPE_YCBCR = 2 +} SDL_ColorType; + +/** + * Colorspace color range, as described by + * https://www.itu.int/rec/R-REC-BT.2100-2-201807-I/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ColorRange +{ + SDL_COLOR_RANGE_UNKNOWN = 0, + SDL_COLOR_RANGE_LIMITED = 1, /**< Narrow range, e.g. 16-235 for 8-bit RGB and luma, and 16-240 for 8-bit chroma */ + SDL_COLOR_RANGE_FULL = 2 /**< Full range, e.g. 0-255 for 8-bit RGB and luma, and 1-255 for 8-bit chroma */ +} SDL_ColorRange; + +/** + * Colorspace color primaries, as described by + * https://www.itu.int/rec/T-REC-H.273-201612-S/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ColorPrimaries +{ + SDL_COLOR_PRIMARIES_UNKNOWN = 0, + SDL_COLOR_PRIMARIES_BT709 = 1, /**< ITU-R BT.709-6 */ + SDL_COLOR_PRIMARIES_UNSPECIFIED = 2, + SDL_COLOR_PRIMARIES_BT470M = 4, /**< ITU-R BT.470-6 System M */ + SDL_COLOR_PRIMARIES_BT470BG = 5, /**< ITU-R BT.470-6 System B, G / ITU-R BT.601-7 625 */ + SDL_COLOR_PRIMARIES_BT601 = 6, /**< ITU-R BT.601-7 525, SMPTE 170M */ + SDL_COLOR_PRIMARIES_SMPTE240 = 7, /**< SMPTE 240M, functionally the same as SDL_COLOR_PRIMARIES_BT601 */ + SDL_COLOR_PRIMARIES_GENERIC_FILM = 8, /**< Generic film (color filters using Illuminant C) */ + SDL_COLOR_PRIMARIES_BT2020 = 9, /**< ITU-R BT.2020-2 / ITU-R BT.2100-0 */ + SDL_COLOR_PRIMARIES_XYZ = 10, /**< SMPTE ST 428-1 */ + SDL_COLOR_PRIMARIES_SMPTE431 = 11, /**< SMPTE RP 431-2 */ + SDL_COLOR_PRIMARIES_SMPTE432 = 12, /**< SMPTE EG 432-1 / DCI P3 */ + SDL_COLOR_PRIMARIES_EBU3213 = 22, /**< EBU Tech. 3213-E */ + SDL_COLOR_PRIMARIES_CUSTOM = 31 +} SDL_ColorPrimaries; + +/** + * Colorspace transfer characteristics. + * + * These are as described by https://www.itu.int/rec/T-REC-H.273-201612-S/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_TransferCharacteristics +{ + SDL_TRANSFER_CHARACTERISTICS_UNKNOWN = 0, + SDL_TRANSFER_CHARACTERISTICS_BT709 = 1, /**< Rec. ITU-R BT.709-6 / ITU-R BT1361 */ + SDL_TRANSFER_CHARACTERISTICS_UNSPECIFIED = 2, + SDL_TRANSFER_CHARACTERISTICS_GAMMA22 = 4, /**< ITU-R BT.470-6 System M / ITU-R BT1700 625 PAL & SECAM */ + SDL_TRANSFER_CHARACTERISTICS_GAMMA28 = 5, /**< ITU-R BT.470-6 System B, G */ + SDL_TRANSFER_CHARACTERISTICS_BT601 = 6, /**< SMPTE ST 170M / ITU-R BT.601-7 525 or 625 */ + SDL_TRANSFER_CHARACTERISTICS_SMPTE240 = 7, /**< SMPTE ST 240M */ + SDL_TRANSFER_CHARACTERISTICS_LINEAR = 8, + SDL_TRANSFER_CHARACTERISTICS_LOG100 = 9, + SDL_TRANSFER_CHARACTERISTICS_LOG100_SQRT10 = 10, + SDL_TRANSFER_CHARACTERISTICS_IEC61966 = 11, /**< IEC 61966-2-4 */ + SDL_TRANSFER_CHARACTERISTICS_BT1361 = 12, /**< ITU-R BT1361 Extended Colour Gamut */ + SDL_TRANSFER_CHARACTERISTICS_SRGB = 13, /**< IEC 61966-2-1 (sRGB or sYCC) */ + SDL_TRANSFER_CHARACTERISTICS_BT2020_10BIT = 14, /**< ITU-R BT2020 for 10-bit system */ + SDL_TRANSFER_CHARACTERISTICS_BT2020_12BIT = 15, /**< ITU-R BT2020 for 12-bit system */ + SDL_TRANSFER_CHARACTERISTICS_PQ = 16, /**< SMPTE ST 2084 for 10-, 12-, 14- and 16-bit systems */ + SDL_TRANSFER_CHARACTERISTICS_SMPTE428 = 17, /**< SMPTE ST 428-1 */ + SDL_TRANSFER_CHARACTERISTICS_HLG = 18, /**< ARIB STD-B67, known as "hybrid log-gamma" (HLG) */ + SDL_TRANSFER_CHARACTERISTICS_CUSTOM = 31 +} SDL_TransferCharacteristics; + +/** + * Colorspace matrix coefficients. + * + * These are as described by https://www.itu.int/rec/T-REC-H.273-201612-S/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_MatrixCoefficients +{ + SDL_MATRIX_COEFFICIENTS_IDENTITY = 0, + SDL_MATRIX_COEFFICIENTS_BT709 = 1, /**< ITU-R BT.709-6 */ + SDL_MATRIX_COEFFICIENTS_UNSPECIFIED = 2, + SDL_MATRIX_COEFFICIENTS_FCC = 4, /**< US FCC Title 47 */ + SDL_MATRIX_COEFFICIENTS_BT470BG = 5, /**< ITU-R BT.470-6 System B, G / ITU-R BT.601-7 625, functionally the same as SDL_MATRIX_COEFFICIENTS_BT601 */ + SDL_MATRIX_COEFFICIENTS_BT601 = 6, /**< ITU-R BT.601-7 525 */ + SDL_MATRIX_COEFFICIENTS_SMPTE240 = 7, /**< SMPTE 240M */ + SDL_MATRIX_COEFFICIENTS_YCGCO = 8, + SDL_MATRIX_COEFFICIENTS_BT2020_NCL = 9, /**< ITU-R BT.2020-2 non-constant luminance */ + SDL_MATRIX_COEFFICIENTS_BT2020_CL = 10, /**< ITU-R BT.2020-2 constant luminance */ + SDL_MATRIX_COEFFICIENTS_SMPTE2085 = 11, /**< SMPTE ST 2085 */ + SDL_MATRIX_COEFFICIENTS_CHROMA_DERIVED_NCL = 12, + SDL_MATRIX_COEFFICIENTS_CHROMA_DERIVED_CL = 13, + SDL_MATRIX_COEFFICIENTS_ICTCP = 14, /**< ITU-R BT.2100-0 ICTCP */ + SDL_MATRIX_COEFFICIENTS_CUSTOM = 31 +} SDL_MatrixCoefficients; + +/** + * Colorspace chroma sample location. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ChromaLocation +{ + SDL_CHROMA_LOCATION_NONE = 0, /**< RGB, no chroma sampling */ + SDL_CHROMA_LOCATION_LEFT = 1, /**< In MPEG-2, MPEG-4, and AVC, Cb and Cr are taken on midpoint of the left-edge of the 2x2 square. In other words, they have the same horizontal location as the top-left pixel, but is shifted one-half pixel down vertically. */ + SDL_CHROMA_LOCATION_CENTER = 2, /**< In JPEG/JFIF, H.261, and MPEG-1, Cb and Cr are taken at the center of the 2x2 square. In other words, they are offset one-half pixel to the right and one-half pixel down compared to the top-left pixel. */ + SDL_CHROMA_LOCATION_TOPLEFT = 3 /**< In HEVC for BT.2020 and BT.2100 content (in particular on Blu-rays), Cb and Cr are sampled at the same location as the group's top-left Y pixel ("co-sited", "co-located"). */ +} SDL_ChromaLocation; + + +/* Colorspace definition */ + +/** + * A macro for defining custom SDL_Colorspace formats. + * + * For example, defining SDL_COLORSPACE_SRGB looks like this: + * + * ```c + * SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + * SDL_COLOR_RANGE_FULL, + * SDL_COLOR_PRIMARIES_BT709, + * SDL_TRANSFER_CHARACTERISTICS_SRGB, + * SDL_MATRIX_COEFFICIENTS_IDENTITY, + * SDL_CHROMA_LOCATION_NONE) + * ``` + * + * \param type the type of the new format, probably an SDL_ColorType value. + * \param range the range of the new format, probably a SDL_ColorRange value. + * \param primaries the primaries of the new format, probably an + * SDL_ColorPrimaries value. + * \param transfer the transfer characteristics of the new format, probably an + * SDL_TransferCharacteristics value. + * \param matrix the matrix coefficients of the new format, probably an + * SDL_MatrixCoefficients value. + * \param chroma the chroma sample location of the new format, probably an + * SDL_ChromaLocation value. + * \returns a format value in the style of SDL_Colorspace. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_COLORSPACE(type, range, primaries, transfer, matrix, chroma) \ + (((Uint32)(type) << 28) | ((Uint32)(range) << 24) | ((Uint32)(chroma) << 20) | \ + ((Uint32)(primaries) << 10) | ((Uint32)(transfer) << 5) | ((Uint32)(matrix) << 0)) + +/** + * A macro to retrieve the type of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ColorType for `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACETYPE(cspace) (SDL_ColorType)(((cspace) >> 28) & 0x0F) + +/** + * A macro to retrieve the range of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ColorRange of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACERANGE(cspace) (SDL_ColorRange)(((cspace) >> 24) & 0x0F) + +/** + * A macro to retrieve the chroma sample location of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ChromaLocation of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACECHROMA(cspace) (SDL_ChromaLocation)(((cspace) >> 20) & 0x0F) + +/** + * A macro to retrieve the primaries of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ColorPrimaries of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACEPRIMARIES(cspace) (SDL_ColorPrimaries)(((cspace) >> 10) & 0x1F) + +/** + * A macro to retrieve the transfer characteristics of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_TransferCharacteristics of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACETRANSFER(cspace) (SDL_TransferCharacteristics)(((cspace) >> 5) & 0x1F) + +/** + * A macro to retrieve the matrix coefficients of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_MatrixCoefficients of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACEMATRIX(cspace) (SDL_MatrixCoefficients)((cspace) & 0x1F) + +/** + * A macro to determine if an SDL_Colorspace uses BT601 (or BT470BG) matrix + * coefficients. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if BT601 or BT470BG, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_MATRIX_BT601(cspace) (SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT601 || SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT470BG) + +/** + * A macro to determine if an SDL_Colorspace uses BT709 matrix coefficients. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if BT709, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_MATRIX_BT709(cspace) (SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT709) + +/** + * A macro to determine if an SDL_Colorspace uses BT2020_NCL matrix + * coefficients. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if BT2020_NCL, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_MATRIX_BT2020_NCL(cspace) (SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT2020_NCL) + +/** + * A macro to determine if an SDL_Colorspace has a limited range. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if limited range, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_LIMITED_RANGE(cspace) (SDL_COLORSPACERANGE(cspace) != SDL_COLOR_RANGE_FULL) + +/** + * A macro to determine if an SDL_Colorspace has a full range. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if full range, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_FULL_RANGE(cspace) (SDL_COLORSPACERANGE(cspace) == SDL_COLOR_RANGE_FULL) + +/** + * Colorspace definitions. + * + * Since similar colorspaces may vary in their details (matrix, transfer + * function, etc.), this is not an exhaustive list, but rather a + * representative sample of the kinds of colorspaces supported in SDL. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_ColorPrimaries + * \sa SDL_ColorRange + * \sa SDL_ColorType + * \sa SDL_MatrixCoefficients + * \sa SDL_TransferCharacteristics + */ +typedef enum SDL_Colorspace +{ + SDL_COLORSPACE_UNKNOWN = 0, + + /* sRGB is a gamma corrected colorspace, and the default colorspace for SDL rendering and 8-bit RGB surfaces */ + SDL_COLORSPACE_SRGB = 0x120005a0u, /**< Equivalent to DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_SRGB, + SDL_MATRIX_COEFFICIENTS_IDENTITY, + SDL_CHROMA_LOCATION_NONE), */ + + /* This is a linear colorspace and the default colorspace for floating point surfaces. On Windows this is the scRGB colorspace, and on Apple platforms this is kCGColorSpaceExtendedLinearSRGB for EDR content */ + SDL_COLORSPACE_SRGB_LINEAR = 0x12000500u, /**< Equivalent to DXGI_COLOR_SPACE_RGB_FULL_G10_NONE_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_LINEAR, + SDL_MATRIX_COEFFICIENTS_IDENTITY, + SDL_CHROMA_LOCATION_NONE), */ + + /* HDR10 is a non-linear HDR colorspace and the default colorspace for 10-bit surfaces */ + SDL_COLORSPACE_HDR10 = 0x12002600u, /**< Equivalent to DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT2020, + SDL_TRANSFER_CHARACTERISTICS_PQ, + SDL_MATRIX_COEFFICIENTS_IDENTITY, + SDL_CHROMA_LOCATION_NONE), */ + + SDL_COLORSPACE_JPEG = 0x220004c6u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_FULL_G22_NONE_P709_X601 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_BT601, + SDL_MATRIX_COEFFICIENTS_BT601, + SDL_CHROMA_LOCATION_NONE), */ + + SDL_COLORSPACE_BT601_LIMITED = 0x211018c6u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_LIMITED, + SDL_COLOR_PRIMARIES_BT601, + SDL_TRANSFER_CHARACTERISTICS_BT601, + SDL_MATRIX_COEFFICIENTS_BT601, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT601_FULL = 0x221018c6u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT601, + SDL_TRANSFER_CHARACTERISTICS_BT601, + SDL_MATRIX_COEFFICIENTS_BT601, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT709_LIMITED = 0x21100421u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_LIMITED, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_BT709, + SDL_MATRIX_COEFFICIENTS_BT709, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT709_FULL = 0x22100421u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_BT709, + SDL_MATRIX_COEFFICIENTS_BT709, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT2020_LIMITED = 0x21102609u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P2020 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_LIMITED, + SDL_COLOR_PRIMARIES_BT2020, + SDL_TRANSFER_CHARACTERISTICS_PQ, + SDL_MATRIX_COEFFICIENTS_BT2020_NCL, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT2020_FULL = 0x22102609u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P2020 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT2020, + SDL_TRANSFER_CHARACTERISTICS_PQ, + SDL_MATRIX_COEFFICIENTS_BT2020_NCL, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_RGB_DEFAULT = SDL_COLORSPACE_SRGB, /**< The default colorspace for RGB surfaces if no colorspace is specified */ + SDL_COLORSPACE_YUV_DEFAULT = SDL_COLORSPACE_JPEG /**< The default colorspace for YUV surfaces if no colorspace is specified */ +} SDL_Colorspace; + +/** + * A structure that represents a color as RGBA components. + * + * The bits of this structure can be directly reinterpreted as an + * integer-packed color which uses the SDL_PIXELFORMAT_RGBA32 format + * (SDL_PIXELFORMAT_ABGR8888 on little-endian systems and + * SDL_PIXELFORMAT_RGBA8888 on big-endian systems). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Color +{ + Uint8 r; + Uint8 g; + Uint8 b; + Uint8 a; +} SDL_Color; + +/** + * The bits of this structure can be directly reinterpreted as a float-packed + * color which uses the SDL_PIXELFORMAT_RGBA128_FLOAT format + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_FColor +{ + float r; + float g; + float b; + float a; +} SDL_FColor; + +/** + * A set of indexed colors representing a palette. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_SetPaletteColors + */ +typedef struct SDL_Palette +{ + int ncolors; /**< number of elements in `colors`. */ + SDL_Color *colors; /**< an array of colors, `ncolors` long. */ + Uint32 version; /**< internal use only, do not touch. */ + int refcount; /**< internal use only, do not touch. */ +} SDL_Palette; + +/** + * Details about the format of a pixel. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PixelFormatDetails +{ + SDL_PixelFormat format; + Uint8 bits_per_pixel; + Uint8 bytes_per_pixel; + Uint8 padding[2]; + Uint32 Rmask; + Uint32 Gmask; + Uint32 Bmask; + Uint32 Amask; + Uint8 Rbits; + Uint8 Gbits; + Uint8 Bbits; + Uint8 Abits; + Uint8 Rshift; + Uint8 Gshift; + Uint8 Bshift; + Uint8 Ashift; +} SDL_PixelFormatDetails; + +/** + * Get the human readable name of a pixel format. + * + * \param format the pixel format to query. + * \returns the human readable name of the specified pixel format or + * "SDL_PIXELFORMAT_UNKNOWN" if the format isn't recognized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetPixelFormatName(SDL_PixelFormat format); + +/** + * Convert one of the enumerated pixel formats to a bpp value and RGBA masks. + * + * \param format one of the SDL_PixelFormat values. + * \param bpp a bits per pixel value; usually 15, 16, or 32. + * \param Rmask a pointer filled in with the red mask for the format. + * \param Gmask a pointer filled in with the green mask for the format. + * \param Bmask a pointer filled in with the blue mask for the format. + * \param Amask a pointer filled in with the alpha mask for the format. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatForMasks + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetMasksForPixelFormat(SDL_PixelFormat format, int *bpp, Uint32 *Rmask, Uint32 *Gmask, Uint32 *Bmask, Uint32 *Amask); + +/** + * Convert a bpp value and RGBA masks to an enumerated pixel format. + * + * This will return `SDL_PIXELFORMAT_UNKNOWN` if the conversion wasn't + * possible. + * + * \param bpp a bits per pixel value; usually 15, 16, or 32. + * \param Rmask the red mask for the format. + * \param Gmask the green mask for the format. + * \param Bmask the blue mask for the format. + * \param Amask the alpha mask for the format. + * \returns the SDL_PixelFormat value corresponding to the format masks, or + * SDL_PIXELFORMAT_UNKNOWN if there isn't a match. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMasksForPixelFormat + */ +extern SDL_DECLSPEC SDL_PixelFormat SDLCALL SDL_GetPixelFormatForMasks(int bpp, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask); + +/** + * Create an SDL_PixelFormatDetails structure corresponding to a pixel format. + * + * Returned structure may come from a shared global cache (i.e. not newly + * allocated), and hence should not be modified, especially the palette. Weird + * errors such as `Blit combination not supported` may occur. + * + * \param format one of the SDL_PixelFormat values. + * \returns a pointer to a SDL_PixelFormatDetails structure or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const SDL_PixelFormatDetails * SDLCALL SDL_GetPixelFormatDetails(SDL_PixelFormat format); + +/** + * Create a palette structure with the specified number of color entries. + * + * The palette entries are initialized to white. + * + * \param ncolors represents the number of color entries in the color palette. + * \returns a new SDL_Palette structure on success or NULL on failure (e.g. if + * there wasn't enough memory); call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyPalette + * \sa SDL_SetPaletteColors + * \sa SDL_SetSurfacePalette + */ +extern SDL_DECLSPEC SDL_Palette * SDLCALL SDL_CreatePalette(int ncolors); + +/** + * Set a range of colors in a palette. + * + * \param palette the SDL_Palette structure to modify. + * \param colors an array of SDL_Color structures to copy into the palette. + * \param firstcolor the index of the first palette entry to modify. + * \param ncolors the number of entries to modify. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified or destroyed in another thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPaletteColors(SDL_Palette *palette, const SDL_Color *colors, int firstcolor, int ncolors); + +/** + * Free a palette created with SDL_CreatePalette(). + * + * \param palette the SDL_Palette structure to be freed. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified or destroyed in another thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePalette + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyPalette(SDL_Palette *palette); + +/** + * Map an RGB triple to an opaque pixel value for a given pixel format. + * + * This function maps the RGB color value to the specified pixel format and + * returns the pixel value best approximating the given RGB color value for + * the given pixel format. + * + * If the format has a palette (8-bit) the index of the closest matching color + * in the palette will be returned. + * + * If the specified pixel format has an alpha component it will be returned as + * all 1 bits (fully opaque). + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGB + * \sa SDL_MapRGBA + * \sa SDL_MapSurfaceRGB + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapRGB(const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 r, Uint8 g, Uint8 b); + +/** + * Map an RGBA quadruple to a pixel value for a given pixel format. + * + * This function maps the RGBA color value to the specified pixel format and + * returns the pixel value best approximating the given RGBA color value for + * the given pixel format. + * + * If the specified pixel format has no alpha component the alpha value will + * be ignored (as it will be in formats with a palette). + * + * If the format has a palette (8-bit) the index of the closest matching color + * in the palette will be returned. + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \param a the alpha component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGBA + * \sa SDL_MapRGB + * \sa SDL_MapSurfaceRGBA + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapRGBA(const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Get RGB values from a pixel in the specified format. + * + * This function uses the entire 8-bit [0..255] range when converting color + * components from pixel formats with less than 8-bits per RGB component + * (e.g., a completely white pixel in 16-bit RGB565 format would return [0xff, + * 0xff, 0xff] not [0xf8, 0xfc, 0xf8]). + * + * \param pixel a pixel value. + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r a pointer filled in with the red component, may be NULL. + * \param g a pointer filled in with the green component, may be NULL. + * \param b a pointer filled in with the blue component, may be NULL. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGBA + * \sa SDL_MapRGB + * \sa SDL_MapRGBA + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetRGB(Uint32 pixel, const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 *r, Uint8 *g, Uint8 *b); + +/** + * Get RGBA values from a pixel in the specified format. + * + * This function uses the entire 8-bit [0..255] range when converting color + * components from pixel formats with less than 8-bits per RGB component + * (e.g., a completely white pixel in 16-bit RGB565 format would return [0xff, + * 0xff, 0xff] not [0xf8, 0xfc, 0xf8]). + * + * If the surface has no alpha component, the alpha will be returned as 0xff + * (100% opaque). + * + * \param pixel a pixel value. + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r a pointer filled in with the red component, may be NULL. + * \param g a pointer filled in with the green component, may be NULL. + * \param b a pointer filled in with the blue component, may be NULL. + * \param a a pointer filled in with the alpha component, may be NULL. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGB + * \sa SDL_MapRGB + * \sa SDL_MapRGBA + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel, const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_pixels_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_platform.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_platform.h new file mode 100644 index 0000000..e40f009 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_platform.h @@ -0,0 +1,64 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryPlatform + * + * SDL provides a means to identify the app's platform, both at compile time + * and runtime. + */ + +#ifndef SDL_platform_h_ +#define SDL_platform_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Get the name of the platform. + * + * Here are the names returned for some (but not all) supported platforms: + * + * - "Windows" + * - "macOS" + * - "Linux" + * - "iOS" + * - "Android" + * + * \returns the name of the platform. If the correct platform name is not + * available, returns a string beginning with the text "Unknown". + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetPlatform(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_platform_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_platform_defines.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_platform_defines.h new file mode 100644 index 0000000..6b240a8 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_platform_defines.h @@ -0,0 +1,476 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Platform */ + +/* + * SDL_platform_defines.h tries to get a standard set of platform defines. + */ + +#ifndef SDL_platform_defines_h_ +#define SDL_platform_defines_h_ + +#ifdef _AIX + +/** + * A preprocessor macro that is only defined if compiling for AIX. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_AIX 1 +#endif + +#ifdef __HAIKU__ + +/** + * A preprocessor macro that is only defined if compiling for Haiku OS. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_HAIKU 1 +#endif + +#if defined(bsdi) || defined(__bsdi) || defined(__bsdi__) + +/** + * A preprocessor macro that is only defined if compiling for BSDi + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_BSDI 1 +#endif + +#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) + +/** + * A preprocessor macro that is only defined if compiling for FreeBSD. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_FREEBSD 1 +#endif + +#if defined(hpux) || defined(__hpux) || defined(__hpux__) + +/** + * A preprocessor macro that is only defined if compiling for HP-UX. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_HPUX 1 +#endif + +#if defined(sgi) || defined(__sgi) || defined(__sgi__) || defined(_SGI_SOURCE) + +/** + * A preprocessor macro that is only defined if compiling for IRIX. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_IRIX 1 +#endif + +#if (defined(linux) || defined(__linux) || defined(__linux__)) + +/** + * A preprocessor macro that is only defined if compiling for Linux. + * + * Note that Android, although ostensibly a Linux-based system, will not + * define this. It defines SDL_PLATFORM_ANDROID instead. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_LINUX 1 +#endif + +#if defined(ANDROID) || defined(__ANDROID__) + +/** + * A preprocessor macro that is only defined if compiling for Android. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_ANDROID 1 +#undef SDL_PLATFORM_LINUX +#endif + +#if defined(__unix__) || defined(__unix) || defined(unix) + +/** + * A preprocessor macro that is only defined if compiling for a Unix-like + * system. + * + * Other platforms, like Linux, might define this in addition to their primary + * define. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_UNIX 1 +#endif + +#ifdef __APPLE__ + +/** + * A preprocessor macro that is only defined if compiling for Apple platforms. + * + * iOS, macOS, etc will additionally define a more specific platform macro. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_MACOS + * \sa SDL_PLATFORM_IOS + * \sa SDL_PLATFORM_TVOS + * \sa SDL_PLATFORM_VISIONOS + */ +#define SDL_PLATFORM_APPLE 1 + +/* lets us know what version of macOS we're compiling on */ +#include +#ifndef __has_extension /* Older compilers don't support this */ + #define __has_extension(x) 0 + #include + #undef __has_extension +#else + #include +#endif + +/* Fix building with older SDKs that don't define these + See this for more information: + https://stackoverflow.com/questions/12132933/preprocessor-macro-for-os-x-targets +*/ +#ifndef TARGET_OS_MACCATALYST + #define TARGET_OS_MACCATALYST 0 +#endif +#ifndef TARGET_OS_IOS + #define TARGET_OS_IOS 0 +#endif +#ifndef TARGET_OS_IPHONE + #define TARGET_OS_IPHONE 0 +#endif +#ifndef TARGET_OS_TV + #define TARGET_OS_TV 0 +#endif +#ifndef TARGET_OS_SIMULATOR + #define TARGET_OS_SIMULATOR 0 +#endif +#ifndef TARGET_OS_VISION + #define TARGET_OS_VISION 0 +#endif + +#if TARGET_OS_TV + +/** + * A preprocessor macro that is only defined if compiling for tvOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_TVOS 1 +#endif + +#if TARGET_OS_VISION + +/** + * A preprocessor macro that is only defined if compiling for VisionOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_VISIONOS 1 +#endif + +#if TARGET_OS_IPHONE + +/** + * A preprocessor macro that is only defined if compiling for iOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_IOS 1 + +#else + +/** + * A preprocessor macro that is only defined if compiling for macOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_MACOS 1 + +#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070 + #error SDL for macOS only supports deploying on 10.7 and above. +#endif /* MAC_OS_X_VERSION_MIN_REQUIRED < 1070 */ +#endif /* TARGET_OS_IPHONE */ +#endif /* defined(__APPLE__) */ + +#ifdef __EMSCRIPTEN__ + +/** + * A preprocessor macro that is only defined if compiling for Emscripten. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_EMSCRIPTEN 1 +#endif + +#ifdef __NetBSD__ + +/** + * A preprocessor macro that is only defined if compiling for NetBSD. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_NETBSD 1 +#endif + +#ifdef __OpenBSD__ + +/** + * A preprocessor macro that is only defined if compiling for OpenBSD. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_OPENBSD 1 +#endif + +#if defined(__OS2__) || defined(__EMX__) + +/** + * A preprocessor macro that is only defined if compiling for OS/2. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_OS2 1 +#endif + +#if defined(osf) || defined(__osf) || defined(__osf__) || defined(_OSF_SOURCE) + +/** + * A preprocessor macro that is only defined if compiling for Tru64 (OSF/1). + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_OSF 1 +#endif + +#ifdef __QNXNTO__ + +/** + * A preprocessor macro that is only defined if compiling for QNX Neutrino. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_QNXNTO 1 +#endif + +#if defined(riscos) || defined(__riscos) || defined(__riscos__) + +/** + * A preprocessor macro that is only defined if compiling for RISC OS. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_RISCOS 1 +#endif + +#if defined(__sun) && defined(__SVR4) + +/** + * A preprocessor macro that is only defined if compiling for SunOS/Solaris. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_SOLARIS 1 +#endif + +#if defined(__CYGWIN__) + +/** + * A preprocessor macro that is only defined if compiling for Cygwin. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_CYGWIN 1 +#endif + +#if defined(_WIN32) || defined(SDL_PLATFORM_CYGWIN) + +/** + * A preprocessor macro that is only defined if compiling for Windows. + * + * This also covers several other platforms, like Microsoft GDK, Xbox, WinRT, + * etc. Each will have their own more-specific platform macros, too. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_WIN32 + * \sa SDL_PLATFORM_XBOXONE + * \sa SDL_PLATFORM_XBOXSERIES + * \sa SDL_PLATFORM_WINGDK + * \sa SDL_PLATFORM_GDK + */ +#define SDL_PLATFORM_WINDOWS 1 + +/* Try to find out if we're compiling for WinRT, GDK or non-WinRT/GDK */ +#if defined(_MSC_VER) && defined(__has_include) + #if __has_include() + #define HAVE_WINAPIFAMILY_H 1 + #else + #define HAVE_WINAPIFAMILY_H 0 + #endif + + /* If _USING_V110_SDK71_ is defined it means we are using the Windows XP toolset. */ +#elif defined(_MSC_VER) && (_MSC_VER >= 1700 && !_USING_V110_SDK71_) /* _MSC_VER == 1700 for Visual Studio 2012 */ + #define HAVE_WINAPIFAMILY_H 1 +#else + #define HAVE_WINAPIFAMILY_H 0 +#endif + +#if HAVE_WINAPIFAMILY_H + #include + #define WINAPI_FAMILY_WINRT (!WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) && WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)) +#else + #define WINAPI_FAMILY_WINRT 0 +#endif /* HAVE_WINAPIFAMILY_H */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A preprocessor macro that defined to 1 if compiling for Windows Phone. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINAPI_FAMILY_PHONE (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP) + +#elif defined(HAVE_WINAPIFAMILY_H) && HAVE_WINAPIFAMILY_H + #define SDL_WINAPI_FAMILY_PHONE (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP) +#else + #define SDL_WINAPI_FAMILY_PHONE 0 +#endif + +#if WINAPI_FAMILY_WINRT +#error Windows RT/UWP is no longer supported in SDL + +#elif defined(_GAMING_DESKTOP) /* GDK project configuration always defines _GAMING_XXX */ + +/** + * A preprocessor macro that is only defined if compiling for Microsoft GDK + * for Windows. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_WINGDK 1 + +#elif defined(_GAMING_XBOX_XBOXONE) + +/** + * A preprocessor macro that is only defined if compiling for Xbox One. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_XBOXONE 1 + +#elif defined(_GAMING_XBOX_SCARLETT) + +/** + * A preprocessor macro that is only defined if compiling for Xbox Series. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_XBOXSERIES 1 + +#else + +/** + * A preprocessor macro that is only defined if compiling for desktop Windows. + * + * Despite the "32", this also covers 64-bit Windows; as an informal + * convention, its system layer tends to still be referred to as "the Win32 + * API." + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_WIN32 1 + +#endif +#endif /* defined(_WIN32) || defined(SDL_PLATFORM_CYGWIN) */ + + +/* This is to support generic "any GDK" separate from a platform-specific GDK */ +#if defined(SDL_PLATFORM_WINGDK) || defined(SDL_PLATFORM_XBOXONE) || defined(SDL_PLATFORM_XBOXSERIES) + +/** + * A preprocessor macro that is only defined if compiling for Microsoft GDK on + * any platform. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_GDK 1 +#endif + +#if defined(__PSP__) || defined(__psp__) + +/** + * A preprocessor macro that is only defined if compiling for Sony PSP. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_PSP 1 +#endif + +#if defined(__PS2__) || defined(PS2) + +/** + * A preprocessor macro that is only defined if compiling for Sony PlayStation + * 2. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_PS2 1 +#endif + +#if defined(__vita__) || defined(__psp2__) + +/** + * A preprocessor macro that is only defined if compiling for Sony Vita. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_VITA 1 +#endif + +#ifdef __3DS__ + +/** + * A preprocessor macro that is only defined if compiling for Nintendo 3DS. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_3DS 1 +#endif + +#endif /* SDL_platform_defines_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_power.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_power.h new file mode 100644 index 0000000..694fb09 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_power.h @@ -0,0 +1,106 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_power_h_ +#define SDL_power_h_ + +/** + * # CategoryPower + * + * SDL power management routines. + * + * There is a single function in this category: SDL_GetPowerInfo(). + * + * This function is useful for games on the go. This allows an app to know if + * it's running on a draining battery, which can be useful if the app wants to + * reduce processing, or perhaps framerate, to extend the duration of the + * battery's charge. Perhaps the app just wants to show a battery meter when + * fullscreen, or alert the user when the power is getting extremely low, so + * they can save their game. + */ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The basic state for the system's power supply. + * + * These are results returned by SDL_GetPowerInfo(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PowerState +{ + SDL_POWERSTATE_ERROR = -1, /**< error determining power status */ + SDL_POWERSTATE_UNKNOWN, /**< cannot determine power status */ + SDL_POWERSTATE_ON_BATTERY, /**< Not plugged in, running on the battery */ + SDL_POWERSTATE_NO_BATTERY, /**< Plugged in, no battery available */ + SDL_POWERSTATE_CHARGING, /**< Plugged in, charging battery */ + SDL_POWERSTATE_CHARGED /**< Plugged in, battery charged */ +} SDL_PowerState; + +/** + * Get the current power supply details. + * + * You should never take a battery status as absolute truth. Batteries + * (especially failing batteries) are delicate hardware, and the values + * reported here are best estimates based on what that hardware reports. It's + * not uncommon for older batteries to lose stored power much faster than it + * reports, or completely drain when reporting it has 20 percent left, etc. + * + * Battery status can change at any time; if you are concerned with power + * state, you should call this function frequently, and perhaps ignore changes + * until they seem to be stable for a few seconds. + * + * It's possible a platform can only report battery percentage or time left + * but not both. + * + * On some platforms, retrieving power supply details might be expensive. If + * you want to display continuous status you could call this function every + * minute or so. + * + * \param seconds a pointer filled in with the seconds of battery life left, + * or NULL to ignore. This will be filled in with -1 if we + * can't determine a value or there is no battery. + * \param percent a pointer filled in with the percentage of battery life + * left, between 0 and 100, or NULL to ignore. This will be + * filled in with -1 we can't determine a value or there is no + * battery. + * \returns the current battery state or `SDL_POWERSTATE_ERROR` on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PowerState SDLCALL SDL_GetPowerInfo(int *seconds, int *percent); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_power_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_process.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_process.h new file mode 100644 index 0000000..511b2f9 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_process.h @@ -0,0 +1,430 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryProcess + * + * Process control support. + * + * These functions provide a cross-platform way to spawn and manage OS-level + * processes. + * + * You can create a new subprocess with SDL_CreateProcess() and optionally + * read and write to it using SDL_ReadProcess() or SDL_GetProcessInput() and + * SDL_GetProcessOutput(). If more advanced functionality like chaining input + * between processes is necessary, you can use + * SDL_CreateProcessWithProperties(). + * + * You can get the status of a created process with SDL_WaitProcess(), or + * terminate the process with SDL_KillProcess(). + * + * Don't forget to call SDL_DestroyProcess() to clean up, whether the process + * process was killed, terminated on its own, or is still running! + */ + +#ifndef SDL_process_h_ +#define SDL_process_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque handle representing a system process. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + */ +typedef struct SDL_Process SDL_Process; + +/** + * Create a new process. + * + * The path to the executable is supplied in args[0]. args[1..N] are + * additional arguments passed on the command line of the new process, and the + * argument list should be terminated with a NULL, e.g.: + * + * ```c + * const char *args[] = { "myprogram", "argument", NULL }; + * ``` + * + * Setting pipe_stdio to true is equivalent to setting + * `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` and + * `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` to `SDL_PROCESS_STDIO_APP`, and + * will allow the use of SDL_ReadProcess() or SDL_GetProcessInput() and + * SDL_GetProcessOutput(). + * + * See SDL_CreateProcessWithProperties() for more details. + * + * \param args the path and arguments for the new process. + * \param pipe_stdio true to create pipes to the process's standard input and + * from the process's standard output, false for the process + * to have no input and inherit the application's standard + * output. + * \returns the newly created and running process, or NULL if the process + * couldn't be created. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessProperties + * \sa SDL_ReadProcess + * \sa SDL_GetProcessInput + * \sa SDL_GetProcessOutput + * \sa SDL_KillProcess + * \sa SDL_WaitProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC SDL_Process * SDLCALL SDL_CreateProcess(const char * const *args, bool pipe_stdio); + +/** + * Description of where standard I/O should be directed when creating a + * process. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_INHERITED, it will go + * to the same place as the application's I/O stream. This is the default for + * standard output and standard error. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_NULL, it is connected + * to `NUL:` on Windows and `/dev/null` on POSIX systems. This is the default + * for standard input. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_APP, it is connected + * to a new SDL_IOStream that is available to the application. Standard input + * will be available as `SDL_PROP_PROCESS_STDIN_POINTER` and allows + * SDL_GetProcessInput(), standard output will be available as + * `SDL_PROP_PROCESS_STDOUT_POINTER` and allows SDL_ReadProcess() and + * SDL_GetProcessOutput(), and standard error will be available as + * `SDL_PROP_PROCESS_STDERR_POINTER` in the properties for the created + * process. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_REDIRECT, it is + * connected to an existing SDL_IOStream provided by the application. Standard + * input is provided using `SDL_PROP_PROCESS_CREATE_STDIN_POINTER`, standard + * output is provided using `SDL_PROP_PROCESS_CREATE_STDOUT_POINTER`, and + * standard error is provided using `SDL_PROP_PROCESS_CREATE_STDERR_POINTER` + * in the creation properties. These existing streams should be closed by the + * application once the new process is created. + * + * In order to use an SDL_IOStream with SDL_PROCESS_STDIO_REDIRECT, it must + * have `SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER` or + * `SDL_PROP_IOSTREAM_FILE_DESCRIPTOR_NUMBER` set. This is true for streams + * representing files and process I/O. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessProperties + * \sa SDL_ReadProcess + * \sa SDL_GetProcessInput + * \sa SDL_GetProcessOutput + */ +typedef enum SDL_ProcessIO +{ + SDL_PROCESS_STDIO_INHERITED, /**< The I/O stream is inherited from the application. */ + SDL_PROCESS_STDIO_NULL, /**< The I/O stream is ignored. */ + SDL_PROCESS_STDIO_APP, /**< The I/O stream is connected to a new SDL_IOStream that the application can read or write */ + SDL_PROCESS_STDIO_REDIRECT /**< The I/O stream is redirected to an existing SDL_IOStream. */ +} SDL_ProcessIO; + +/** + * Create a new process with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_PROCESS_CREATE_ARGS_POINTER`: an array of strings containing + * the program to run, any arguments, and a NULL pointer, e.g. const char + * *args[] = { "myprogram", "argument", NULL }. This is a required property. + * - `SDL_PROP_PROCESS_CREATE_ENVIRONMENT_POINTER`: an SDL_Environment + * pointer. If this property is set, it will be the entire environment for + * the process, otherwise the current environment is used. + * - `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER`: an SDL_ProcessIO value describing + * where standard input for the process comes from, defaults to + * `SDL_PROCESS_STDIO_NULL`. + * - `SDL_PROP_PROCESS_CREATE_STDIN_POINTER`: an SDL_IOStream pointer used for + * standard input when `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` is set to + * `SDL_PROCESS_STDIO_REDIRECT`. + * - `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER`: an SDL_ProcessIO value + * describing where standard output for the process goes to, defaults to + * `SDL_PROCESS_STDIO_INHERITED`. + * - `SDL_PROP_PROCESS_CREATE_STDOUT_POINTER`: an SDL_IOStream pointer used + * for standard output when `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` is set + * to `SDL_PROCESS_STDIO_REDIRECT`. + * - `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER`: an SDL_ProcessIO value + * describing where standard error for the process goes to, defaults to + * `SDL_PROCESS_STDIO_INHERITED`. + * - `SDL_PROP_PROCESS_CREATE_STDERR_POINTER`: an SDL_IOStream pointer used + * for standard error when `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER` is set to + * `SDL_PROCESS_STDIO_REDIRECT`. + * - `SDL_PROP_PROCESS_CREATE_STDERR_TO_STDOUT_BOOLEAN`: true if the error + * output of the process should be redirected into the standard output of + * the process. This property has no effect if + * `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER` is set. + * - `SDL_PROP_PROCESS_CREATE_BACKGROUND_BOOLEAN`: true if the process should + * run in the background. In this case the default input and output is + * `SDL_PROCESS_STDIO_NULL` and the exitcode of the process is not + * available, and will always be 0. + * + * On POSIX platforms, wait() and waitpid(-1, ...) should not be called, and + * SIGCHLD should not be ignored or handled because those would prevent SDL + * from properly tracking the lifetime of the underlying process. You should + * use SDL_WaitProcess() instead. + * + * \param props the properties to use. + * \returns the newly created and running process, or NULL if the process + * couldn't be created. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_GetProcessProperties + * \sa SDL_ReadProcess + * \sa SDL_GetProcessInput + * \sa SDL_GetProcessOutput + * \sa SDL_KillProcess + * \sa SDL_WaitProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC SDL_Process * SDLCALL SDL_CreateProcessWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_PROCESS_CREATE_ARGS_POINTER "SDL.process.create.args" +#define SDL_PROP_PROCESS_CREATE_ENVIRONMENT_POINTER "SDL.process.create.environment" +#define SDL_PROP_PROCESS_CREATE_STDIN_NUMBER "SDL.process.create.stdin_option" +#define SDL_PROP_PROCESS_CREATE_STDIN_POINTER "SDL.process.create.stdin_source" +#define SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER "SDL.process.create.stdout_option" +#define SDL_PROP_PROCESS_CREATE_STDOUT_POINTER "SDL.process.create.stdout_source" +#define SDL_PROP_PROCESS_CREATE_STDERR_NUMBER "SDL.process.create.stderr_option" +#define SDL_PROP_PROCESS_CREATE_STDERR_POINTER "SDL.process.create.stderr_source" +#define SDL_PROP_PROCESS_CREATE_STDERR_TO_STDOUT_BOOLEAN "SDL.process.create.stderr_to_stdout" +#define SDL_PROP_PROCESS_CREATE_BACKGROUND_BOOLEAN "SDL.process.create.background" + +/** + * Get the properties associated with a process. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_PROCESS_PID_NUMBER`: the process ID of the process. + * - `SDL_PROP_PROCESS_STDIN_POINTER`: an SDL_IOStream that can be used to + * write input to the process, if it was created with + * `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * - `SDL_PROP_PROCESS_STDOUT_POINTER`: a non-blocking SDL_IOStream that can + * be used to read output from the process, if it was created with + * `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * - `SDL_PROP_PROCESS_STDERR_POINTER`: a non-blocking SDL_IOStream that can + * be used to read error output from the process, if it was created with + * `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * - `SDL_PROP_PROCESS_BACKGROUND_BOOLEAN`: true if the process is running in + * the background. + * + * \param process the process to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetProcessProperties(SDL_Process *process); + +#define SDL_PROP_PROCESS_PID_NUMBER "SDL.process.pid" +#define SDL_PROP_PROCESS_STDIN_POINTER "SDL.process.stdin" +#define SDL_PROP_PROCESS_STDOUT_POINTER "SDL.process.stdout" +#define SDL_PROP_PROCESS_STDERR_POINTER "SDL.process.stderr" +#define SDL_PROP_PROCESS_BACKGROUND_BOOLEAN "SDL.process.background" + +/** + * Read all the output from a process. + * + * If a process was created with I/O enabled, you can use this function to + * read the output. This function blocks until the process is complete, + * capturing all output, and providing the process exit code. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in the value reported via + * `datasize`. + * + * The data should be freed with SDL_free(). + * + * \param process The process to read. + * \param datasize a pointer filled in with the number of bytes read, may be + * NULL. + * \param exitcode a pointer filled in with the process exit code if the + * process has exited, may be NULL. + * \returns the data or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC void * SDLCALL SDL_ReadProcess(SDL_Process *process, size_t *datasize, int *exitcode); + +/** + * Get the SDL_IOStream associated with process standard input. + * + * The process must have been created with SDL_CreateProcess() and pipe_stdio + * set to true, or with SDL_CreateProcessWithProperties() and + * `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * + * Writing to this stream can return less data than expected if the process + * hasn't read its input. It may be blocked waiting for its output to be read, + * if so you may need to call SDL_GetProcessOutput() and read the output in + * parallel with writing input. + * + * \param process The process to get the input stream for. + * \returns the input stream or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessOutput + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_GetProcessInput(SDL_Process *process); + +/** + * Get the SDL_IOStream associated with process standard output. + * + * The process must have been created with SDL_CreateProcess() and pipe_stdio + * set to true, or with SDL_CreateProcessWithProperties() and + * `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * + * Reading from this stream can return 0 with SDL_GetIOStatus() returning + * SDL_IO_STATUS_NOT_READY if no output is available yet. + * + * \param process The process to get the output stream for. + * \returns the output stream or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessInput + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_GetProcessOutput(SDL_Process *process); + +/** + * Stop a process. + * + * \param process The process to stop. + * \param force true to terminate the process immediately, false to try to + * stop the process gracefully. In general you should try to stop + * the process gracefully first as terminating a process may + * leave it with half-written data or in some other unstable + * state. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_WaitProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC bool SDLCALL SDL_KillProcess(SDL_Process *process, bool force); + +/** + * Wait for a process to finish. + * + * This can be called multiple times to get the status of a process. + * + * The exit code will be the exit code of the process if it terminates + * normally, a negative signal if it terminated due to a signal, or -255 + * otherwise. It will not be changed if the process is still running. + * + * If you create a process with standard output piped to the application + * (`pipe_stdio` being true) then you should read all of the process output + * before calling SDL_WaitProcess(). If you don't do this the process might be + * blocked indefinitely waiting for output to be read and SDL_WaitProcess() + * will never return true; + * + * \param process The process to wait for. + * \param block If true, block until the process finishes; otherwise, report + * on the process' status. + * \param exitcode a pointer filled in with the process exit code if the + * process has exited, may be NULL. + * \returns true if the process exited, false otherwise. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_KillProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitProcess(SDL_Process *process, bool block, int *exitcode); + +/** + * Destroy a previously created process object. + * + * Note that this does not stop the process, just destroys the SDL object used + * to track it. If you want to stop the process you should use + * SDL_KillProcess(). + * + * \param process The process object to destroy. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_KillProcess + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyProcess(SDL_Process *process); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_process_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_properties.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_properties.h new file mode 100644 index 0000000..1f47d5f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_properties.h @@ -0,0 +1,543 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryProperties + * + * A property is a variable that can be created and retrieved by name at + * runtime. + * + * All properties are part of a property group (SDL_PropertiesID). A property + * group can be created with the SDL_CreateProperties function and destroyed + * with the SDL_DestroyProperties function. + * + * Properties can be added to and retrieved from a property group through the + * following functions: + * + * - SDL_SetPointerProperty and SDL_GetPointerProperty operate on `void*` + * pointer types. + * - SDL_SetStringProperty and SDL_GetStringProperty operate on string types. + * - SDL_SetNumberProperty and SDL_GetNumberProperty operate on signed 64-bit + * integer types. + * - SDL_SetFloatProperty and SDL_GetFloatProperty operate on floating point + * types. + * - SDL_SetBooleanProperty and SDL_GetBooleanProperty operate on boolean + * types. + * + * Properties can be removed from a group by using SDL_ClearProperty. + */ + + +#ifndef SDL_properties_h_ +#define SDL_properties_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SDL properties ID + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_PropertiesID; + +/** + * SDL property type + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PropertyType +{ + SDL_PROPERTY_TYPE_INVALID, + SDL_PROPERTY_TYPE_POINTER, + SDL_PROPERTY_TYPE_STRING, + SDL_PROPERTY_TYPE_NUMBER, + SDL_PROPERTY_TYPE_FLOAT, + SDL_PROPERTY_TYPE_BOOLEAN +} SDL_PropertyType; + +/** + * Get the global SDL properties. + * + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetGlobalProperties(void); + +/** + * Create a group of properties. + * + * All properties are automatically destroyed when SDL_Quit() is called. + * + * \returns an ID for a new group of properties, or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyProperties + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_CreateProperties(void); + +/** + * Copy a group of properties. + * + * Copy all the properties from one group of properties to another, with the + * exception of properties requiring cleanup (set using + * SDL_SetPointerPropertyWithCleanup()), which will not be copied. Any + * property that already exists on `dst` will be overwritten. + * + * \param src the properties to copy. + * \param dst the destination properties. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CopyProperties(SDL_PropertiesID src, SDL_PropertiesID dst); + +/** + * Lock a group of properties. + * + * Obtain a multi-threaded lock for these properties. Other threads will wait + * while trying to lock these properties until they are unlocked. Properties + * must be unlocked before they are destroyed. + * + * The lock is automatically taken when setting individual properties, this + * function is only needed when you want to set several properties atomically + * or want to guarantee that properties being queried aren't freed in another + * thread. + * + * \param props the properties to lock. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UnlockProperties + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockProperties(SDL_PropertiesID props); + +/** + * Unlock a group of properties. + * + * \param props the properties to unlock. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockProperties(SDL_PropertiesID props); + +/** + * A callback used to free resources when a property is deleted. + * + * This should release any resources associated with `value` that are no + * longer needed. + * + * This callback is set per-property. Different properties in the same group + * can have different cleanup callbacks. + * + * This callback will be called _during_ SDL_SetPointerPropertyWithCleanup if + * the function fails for any reason. + * + * \param userdata an app-defined pointer passed to the callback. + * \param value the pointer assigned to the property to clean up. + * + * \threadsafety This callback may fire without any locks held; if this is a + * concern, the app should provide its own locking. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetPointerPropertyWithCleanup + */ +typedef void (SDLCALL *SDL_CleanupPropertyCallback)(void *userdata, void *value); + +/** + * Set a pointer property in a group of properties with a cleanup function + * that is called when the property is deleted. + * + * The cleanup function is also called if setting the property fails for any + * reason. + * + * For simply setting basic data types, like numbers, bools, or strings, use + * SDL_SetNumberProperty, SDL_SetBooleanProperty, or SDL_SetStringProperty + * instead, as those functions will handle cleanup on your behalf. This + * function is only for more complex, custom data. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property, or NULL to delete the property. + * \param cleanup the function to call when this property is deleted, or NULL + * if no cleanup is necessary. + * \param userdata a pointer that is passed to the cleanup function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPointerProperty + * \sa SDL_SetPointerProperty + * \sa SDL_CleanupPropertyCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPointerPropertyWithCleanup(SDL_PropertiesID props, const char *name, void *value, SDL_CleanupPropertyCallback cleanup, void *userdata); + +/** + * Set a pointer property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property, or NULL to delete the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPointerProperty + * \sa SDL_HasProperty + * \sa SDL_SetBooleanProperty + * \sa SDL_SetFloatProperty + * \sa SDL_SetNumberProperty + * \sa SDL_SetPointerPropertyWithCleanup + * \sa SDL_SetStringProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPointerProperty(SDL_PropertiesID props, const char *name, void *value); + +/** + * Set a string property in a group of properties. + * + * This function makes a copy of the string; the caller does not have to + * preserve the data after this call completes. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property, or NULL to delete the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetStringProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetStringProperty(SDL_PropertiesID props, const char *name, const char *value); + +/** + * Set an integer property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumberProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetNumberProperty(SDL_PropertiesID props, const char *name, Sint64 value); + +/** + * Set a floating point property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetFloatProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetFloatProperty(SDL_PropertiesID props, const char *name, float value); + +/** + * Set a boolean property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetBooleanProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetBooleanProperty(SDL_PropertiesID props, const char *name, bool value); + +/** + * Return whether a property exists in a group of properties. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \returns true if the property exists, or false if it doesn't. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasProperty(SDL_PropertiesID props, const char *name); + +/** + * Get the type of a property in a group of properties. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \returns the type of the property, or SDL_PROPERTY_TYPE_INVALID if it is + * not set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasProperty + */ +extern SDL_DECLSPEC SDL_PropertyType SDLCALL SDL_GetPropertyType(SDL_PropertiesID props, const char *name); + +/** + * Get a pointer property from a group of properties. + * + * By convention, the names of properties that SDL exposes on objects will + * start with "SDL.", and properties that SDL uses internally will start with + * "SDL.internal.". These should be considered read-only and should not be + * modified by applications. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a pointer property. + * + * \threadsafety It is safe to call this function from any thread, although + * the data returned is not protected and could potentially be + * freed if you call SDL_SetPointerProperty() or + * SDL_ClearProperty() on these properties from another thread. + * If you need to avoid this, use SDL_LockProperties() and + * SDL_UnlockProperties(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetBooleanProperty + * \sa SDL_GetFloatProperty + * \sa SDL_GetNumberProperty + * \sa SDL_GetPropertyType + * \sa SDL_GetStringProperty + * \sa SDL_HasProperty + * \sa SDL_SetPointerProperty + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetPointerProperty(SDL_PropertiesID props, const char *name, void *default_value); + +/** + * Get a string property from a group of properties. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a string property. + * + * \threadsafety It is safe to call this function from any thread, although + * the data returned is not protected and could potentially be + * freed if you call SDL_SetStringProperty() or + * SDL_ClearProperty() on these properties from another thread. + * If you need to avoid this, use SDL_LockProperties() and + * SDL_UnlockProperties(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetStringProperty + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetStringProperty(SDL_PropertiesID props, const char *name, const char *default_value); + +/** + * Get a number property from a group of properties. + * + * You can use SDL_GetPropertyType() to query whether the property exists and + * is a number property. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a number property. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetNumberProperty + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_GetNumberProperty(SDL_PropertiesID props, const char *name, Sint64 default_value); + +/** + * Get a floating point property from a group of properties. + * + * You can use SDL_GetPropertyType() to query whether the property exists and + * is a floating point property. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a float property. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetFloatProperty + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetFloatProperty(SDL_PropertiesID props, const char *name, float default_value); + +/** + * Get a boolean property from a group of properties. + * + * You can use SDL_GetPropertyType() to query whether the property exists and + * is a boolean property. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a boolean property. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetBooleanProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetBooleanProperty(SDL_PropertiesID props, const char *name, bool default_value); + +/** + * Clear a property from a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to clear. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearProperty(SDL_PropertiesID props, const char *name); + +/** + * A callback used to enumerate all the properties in a group of properties. + * + * This callback is called from SDL_EnumerateProperties(), and is called once + * per property in the set. + * + * \param userdata an app-defined pointer passed to the callback. + * \param props the SDL_PropertiesID that is being enumerated. + * \param name the next property name in the enumeration. + * + * \threadsafety SDL_EnumerateProperties holds a lock on `props` during this + * callback. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EnumerateProperties + */ +typedef void (SDLCALL *SDL_EnumeratePropertiesCallback)(void *userdata, SDL_PropertiesID props, const char *name); + +/** + * Enumerate the properties contained in a group of properties. + * + * The callback function is called for each property in the group of + * properties. The properties are locked during enumeration. + * + * \param props the properties to query. + * \param callback the function to call for each property. + * \param userdata a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnumerateProperties(SDL_PropertiesID props, SDL_EnumeratePropertiesCallback callback, void *userdata); + +/** + * Destroy a group of properties. + * + * All properties are deleted and their cleanup functions will be called, if + * any. + * + * \param props the properties to destroy. + * + * \threadsafety This function should not be called while these properties are + * locked or other threads might be setting or getting values + * from these properties. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyProperties(SDL_PropertiesID props); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_properties_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_rect.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_rect.h new file mode 100644 index 0000000..eb2d34a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_rect.h @@ -0,0 +1,507 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryRect + * + * Some helper functions for managing rectangles and 2D points, in both + * integer and floating point versions. + */ + +#ifndef SDL_rect_h_ +#define SDL_rect_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The structure that defines a point (using integers). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetRectEnclosingPoints + * \sa SDL_PointInRect + */ +typedef struct SDL_Point +{ + int x; + int y; +} SDL_Point; + +/** + * The structure that defines a point (using floating point values). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetRectEnclosingPointsFloat + * \sa SDL_PointInRectFloat + */ +typedef struct SDL_FPoint +{ + float x; + float y; +} SDL_FPoint; + + +/** + * A rectangle, with the origin at the upper left (using integers). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_RectEmpty + * \sa SDL_RectsEqual + * \sa SDL_HasRectIntersection + * \sa SDL_GetRectIntersection + * \sa SDL_GetRectAndLineIntersection + * \sa SDL_GetRectUnion + * \sa SDL_GetRectEnclosingPoints + */ +typedef struct SDL_Rect +{ + int x, y; + int w, h; +} SDL_Rect; + + +/** + * A rectangle, with the origin at the upper left (using floating point + * values). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_RectEmptyFloat + * \sa SDL_RectsEqualFloat + * \sa SDL_RectsEqualEpsilon + * \sa SDL_HasRectIntersectionFloat + * \sa SDL_GetRectIntersectionFloat + * \sa SDL_GetRectAndLineIntersectionFloat + * \sa SDL_GetRectUnionFloat + * \sa SDL_GetRectEnclosingPointsFloat + * \sa SDL_PointInRectFloat + */ +typedef struct SDL_FRect +{ + float x; + float y; + float w; + float h; +} SDL_FRect; + + +/** + * Convert an SDL_Rect to SDL_FRect + * + * \param rect a pointer to an SDL_Rect. + * \param frect a pointer filled in with the floating point representation of + * `rect`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE void SDL_RectToFRect(const SDL_Rect *rect, SDL_FRect *frect) +{ + frect->x = (float)rect->x; + frect->y = (float)rect->y; + frect->w = (float)rect->w; + frect->h = (float)rect->h; +} + +/** + * Determine whether a point resides inside a rectangle. + * + * A point is considered part of a rectangle if both `p` and `r` are not NULL, + * and `p`'s x and y coordinates are >= to the rectangle's top left corner, + * and < the rectangle's x+w and y+h. So a 1x1 rectangle considers point (0,0) + * as "inside" and (0,1) as not. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param p the point to test. + * \param r the rectangle to test. + * \returns true if `p` is contained by `r`, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_PointInRect(const SDL_Point *p, const SDL_Rect *r) +{ + return ( p && r && (p->x >= r->x) && (p->x < (r->x + r->w)) && + (p->y >= r->y) && (p->y < (r->y + r->h)) ) ? true : false; +} + +/** + * Determine whether a rectangle has no area. + * + * A rectangle is considered "empty" for this function if `r` is NULL, or if + * `r`'s width and/or height are <= 0. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param r the rectangle to test. + * \returns true if the rectangle is "empty", false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_RectEmpty(const SDL_Rect *r) +{ + return ((!r) || (r->w <= 0) || (r->h <= 0)) ? true : false; +} + +/** + * Determine whether two rectangles are equal. + * + * Rectangles are considered equal if both are not NULL and each of their x, + * y, width and height match. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param a the first rectangle to test. + * \param b the second rectangle to test. + * \returns true if the rectangles are equal, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_RectsEqual(const SDL_Rect *a, const SDL_Rect *b) +{ + return (a && b && (a->x == b->x) && (a->y == b->y) && + (a->w == b->w) && (a->h == b->h)) ? true : false; +} + +/** + * Determine whether two rectangles intersect. + * + * If either pointer is NULL the function will return false. + * + * \param A an SDL_Rect structure representing the first rectangle. + * \param B an SDL_Rect structure representing the second rectangle. + * \returns true if there is an intersection, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRectIntersection + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasRectIntersection(const SDL_Rect *A, const SDL_Rect *B); + +/** + * Calculate the intersection of two rectangles. + * + * If `result` is NULL then this function will return false. + * + * \param A an SDL_Rect structure representing the first rectangle. + * \param B an SDL_Rect structure representing the second rectangle. + * \param result an SDL_Rect structure filled in with the intersection of + * rectangles `A` and `B`. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasRectIntersection + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectIntersection(const SDL_Rect *A, const SDL_Rect *B, SDL_Rect *result); + +/** + * Calculate the union of two rectangles. + * + * \param A an SDL_Rect structure representing the first rectangle. + * \param B an SDL_Rect structure representing the second rectangle. + * \param result an SDL_Rect structure filled in with the union of rectangles + * `A` and `B`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectUnion(const SDL_Rect *A, const SDL_Rect *B, SDL_Rect *result); + +/** + * Calculate a minimal rectangle enclosing a set of points. + * + * If `clip` is not NULL then only points inside of the clipping rectangle are + * considered. + * + * \param points an array of SDL_Point structures representing points to be + * enclosed. + * \param count the number of structures in the `points` array. + * \param clip an SDL_Rect used for clipping or NULL to enclose all points. + * \param result an SDL_Rect structure filled in with the minimal enclosing + * rectangle. + * \returns true if any points were enclosed or false if all the points were + * outside of the clipping rectangle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectEnclosingPoints(const SDL_Point *points, int count, const SDL_Rect *clip, SDL_Rect *result); + +/** + * Calculate the intersection of a rectangle and line segment. + * + * This function is used to clip a line segment to a rectangle. A line segment + * contained entirely within the rectangle or that does not intersect will + * remain unchanged. A line segment that crosses the rectangle at either or + * both ends will be clipped to the boundary of the rectangle and the new + * coordinates saved in `X1`, `Y1`, `X2`, and/or `Y2` as necessary. + * + * \param rect an SDL_Rect structure representing the rectangle to intersect. + * \param X1 a pointer to the starting X-coordinate of the line. + * \param Y1 a pointer to the starting Y-coordinate of the line. + * \param X2 a pointer to the ending X-coordinate of the line. + * \param Y2 a pointer to the ending Y-coordinate of the line. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectAndLineIntersection(const SDL_Rect *rect, int *X1, int *Y1, int *X2, int *Y2); + + +/* SDL_FRect versions... */ + +/** + * Determine whether a point resides inside a floating point rectangle. + * + * A point is considered part of a rectangle if both `p` and `r` are not NULL, + * and `p`'s x and y coordinates are >= to the rectangle's top left corner, + * and <= the rectangle's x+w and y+h. So a 1x1 rectangle considers point + * (0,0) and (0,1) as "inside" and (0,2) as not. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param p the point to test. + * \param r the rectangle to test. + * \returns true if `p` is contained by `r`, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_PointInRectFloat(const SDL_FPoint *p, const SDL_FRect *r) +{ + return ( p && r && (p->x >= r->x) && (p->x <= (r->x + r->w)) && + (p->y >= r->y) && (p->y <= (r->y + r->h)) ) ? true : false; +} + +/** + * Determine whether a floating point rectangle can contain any point. + * + * A rectangle is considered "empty" for this function if `r` is NULL, or if + * `r`'s width and/or height are < 0.0f. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param r the rectangle to test. + * \returns true if the rectangle is "empty", false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_RectEmptyFloat(const SDL_FRect *r) +{ + return ((!r) || (r->w < 0.0f) || (r->h < 0.0f)) ? true : false; +} + +/** + * Determine whether two floating point rectangles are equal, within some + * given epsilon. + * + * Rectangles are considered equal if both are not NULL and each of their x, + * y, width and height are within `epsilon` of each other. If you don't know + * what value to use for `epsilon`, you should call the SDL_RectsEqualFloat + * function instead. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param a the first rectangle to test. + * \param b the second rectangle to test. + * \param epsilon the epsilon value for comparison. + * \returns true if the rectangles are equal, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RectsEqualFloat + */ +SDL_FORCE_INLINE bool SDL_RectsEqualEpsilon(const SDL_FRect *a, const SDL_FRect *b, float epsilon) +{ + return (a && b && ((a == b) || + ((SDL_fabsf(a->x - b->x) <= epsilon) && + (SDL_fabsf(a->y - b->y) <= epsilon) && + (SDL_fabsf(a->w - b->w) <= epsilon) && + (SDL_fabsf(a->h - b->h) <= epsilon)))) + ? true : false; +} + +/** + * Determine whether two floating point rectangles are equal, within a default + * epsilon. + * + * Rectangles are considered equal if both are not NULL and each of their x, + * y, width and height are within SDL_FLT_EPSILON of each other. This is often + * a reasonable way to compare two floating point rectangles and deal with the + * slight precision variations in floating point calculations that tend to pop + * up. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param a the first rectangle to test. + * \param b the second rectangle to test. + * \returns true if the rectangles are equal, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RectsEqualEpsilon + */ +SDL_FORCE_INLINE bool SDL_RectsEqualFloat(const SDL_FRect *a, const SDL_FRect *b) +{ + return SDL_RectsEqualEpsilon(a, b, SDL_FLT_EPSILON); +} + +/** + * Determine whether two rectangles intersect with float precision. + * + * If either pointer is NULL the function will return false. + * + * \param A an SDL_FRect structure representing the first rectangle. + * \param B an SDL_FRect structure representing the second rectangle. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRectIntersection + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasRectIntersectionFloat(const SDL_FRect *A, const SDL_FRect *B); + +/** + * Calculate the intersection of two rectangles with float precision. + * + * If `result` is NULL then this function will return false. + * + * \param A an SDL_FRect structure representing the first rectangle. + * \param B an SDL_FRect structure representing the second rectangle. + * \param result an SDL_FRect structure filled in with the intersection of + * rectangles `A` and `B`. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasRectIntersectionFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectIntersectionFloat(const SDL_FRect *A, const SDL_FRect *B, SDL_FRect *result); + +/** + * Calculate the union of two rectangles with float precision. + * + * \param A an SDL_FRect structure representing the first rectangle. + * \param B an SDL_FRect structure representing the second rectangle. + * \param result an SDL_FRect structure filled in with the union of rectangles + * `A` and `B`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectUnionFloat(const SDL_FRect *A, const SDL_FRect *B, SDL_FRect *result); + +/** + * Calculate a minimal rectangle enclosing a set of points with float + * precision. + * + * If `clip` is not NULL then only points inside of the clipping rectangle are + * considered. + * + * \param points an array of SDL_FPoint structures representing points to be + * enclosed. + * \param count the number of structures in the `points` array. + * \param clip an SDL_FRect used for clipping or NULL to enclose all points. + * \param result an SDL_FRect structure filled in with the minimal enclosing + * rectangle. + * \returns true if any points were enclosed or false if all the points were + * outside of the clipping rectangle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectEnclosingPointsFloat(const SDL_FPoint *points, int count, const SDL_FRect *clip, SDL_FRect *result); + +/** + * Calculate the intersection of a rectangle and line segment with float + * precision. + * + * This function is used to clip a line segment to a rectangle. A line segment + * contained entirely within the rectangle or that does not intersect will + * remain unchanged. A line segment that crosses the rectangle at either or + * both ends will be clipped to the boundary of the rectangle and the new + * coordinates saved in `X1`, `Y1`, `X2`, and/or `Y2` as necessary. + * + * \param rect an SDL_FRect structure representing the rectangle to intersect. + * \param X1 a pointer to the starting X-coordinate of the line. + * \param Y1 a pointer to the starting Y-coordinate of the line. + * \param X2 a pointer to the ending X-coordinate of the line. + * \param Y2 a pointer to the ending Y-coordinate of the line. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectAndLineIntersectionFloat(const SDL_FRect *rect, float *X1, float *Y1, float *X2, float *Y2); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_rect_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_render.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_render.h new file mode 100644 index 0000000..c9d184c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_render.h @@ -0,0 +1,2645 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryRender + * + * Header file for SDL 2D rendering functions. + * + * This API supports the following features: + * + * - single pixel points + * - single pixel lines + * - filled rectangles + * - texture images + * - 2D polygons + * + * The primitives may be drawn in opaque, blended, or additive modes. + * + * The texture images may be drawn in opaque, blended, or additive modes. They + * can have an additional color tint or alpha modulation applied to them, and + * may also be stretched with linear interpolation. + * + * This API is designed to accelerate simple 2D operations. You may want more + * functionality such as polygons and particle effects and in that case you + * should use SDL's OpenGL/Direct3D support, the SDL3 GPU API, or one of the + * many good 3D engines. + * + * These functions must be called from the main thread. See this bug for + * details: https://github.com/libsdl-org/SDL/issues/986 + */ + +#ifndef SDL_render_h_ +#define SDL_render_h_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The name of the software renderer. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SOFTWARE_RENDERER "software" + +/** + * Vertex structure. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Vertex +{ + SDL_FPoint position; /**< Vertex position, in SDL_Renderer coordinates */ + SDL_FColor color; /**< Vertex color */ + SDL_FPoint tex_coord; /**< Normalized texture coordinates, if needed */ +} SDL_Vertex; + +/** + * The access pattern allowed for a texture. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_TextureAccess +{ + SDL_TEXTUREACCESS_STATIC, /**< Changes rarely, not lockable */ + SDL_TEXTUREACCESS_STREAMING, /**< Changes frequently, lockable */ + SDL_TEXTUREACCESS_TARGET /**< Texture can be used as a render target */ +} SDL_TextureAccess; + +/** + * How the logical size is mapped to the output. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_RendererLogicalPresentation +{ + SDL_LOGICAL_PRESENTATION_DISABLED, /**< There is no logical size in effect */ + SDL_LOGICAL_PRESENTATION_STRETCH, /**< The rendered content is stretched to the output resolution */ + SDL_LOGICAL_PRESENTATION_LETTERBOX, /**< The rendered content is fit to the largest dimension and the other dimension is letterboxed with black bars */ + SDL_LOGICAL_PRESENTATION_OVERSCAN, /**< The rendered content is fit to the smallest dimension and the other dimension extends beyond the output bounds */ + SDL_LOGICAL_PRESENTATION_INTEGER_SCALE /**< The rendered content is scaled up by integer multiples to fit the output resolution */ +} SDL_RendererLogicalPresentation; + +/** + * A structure representing rendering state + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Renderer SDL_Renderer; + +#ifndef SDL_INTERNAL + +/** + * An efficient driver-specific representation of pixel data + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureFromSurface + * \sa SDL_CreateTextureWithProperties + * \sa SDL_DestroyTexture + */ +struct SDL_Texture +{ + SDL_PixelFormat format; /**< The format of the texture, read-only */ + int w; /**< The width of the texture, read-only. */ + int h; /**< The height of the texture, read-only. */ + + int refcount; /**< Application reference count, used when freeing texture */ +}; +#endif /* !SDL_INTERNAL */ + +typedef struct SDL_Texture SDL_Texture; + +/* Function prototypes */ + +/** + * Get the number of 2D rendering drivers available for the current display. + * + * A render driver is a set of code that handles rendering and texture + * management on a particular display. Normally there is only one, but some + * drivers may have several available with different capabilities. + * + * There may be none if SDL was compiled without render support. + * + * \returns the number of built in render drivers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_GetRenderDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumRenderDrivers(void); + +/** + * Use this function to get the name of a built in 2D rendering driver. + * + * The list of rendering drivers is given in the order that they are normally + * initialized by default; the drivers that seem more reasonable to choose + * first (as far as the SDL developers believe) are earlier in the list. + * + * The names of drivers are all simple, low-ASCII identifiers, like "opengl", + * "direct3d12" or "metal". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of the rendering driver; the value ranges from 0 to + * SDL_GetNumRenderDrivers() - 1. + * \returns the name of the rendering driver at the requested index, or NULL + * if an invalid index was specified. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumRenderDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetRenderDriver(int index); + +/** + * Create a window and default renderer. + * + * \param title the title of the window, in UTF-8 encoding. + * \param width the width of the window. + * \param height the height of the window. + * \param window_flags the flags used to create the window (see + * SDL_CreateWindow()). + * \param window a pointer filled with the window, or NULL on error. + * \param renderer a pointer filled with the renderer, or NULL on error. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_CreateWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CreateWindowAndRenderer(const char *title, int width, int height, SDL_WindowFlags window_flags, SDL_Window **window, SDL_Renderer **renderer); + +/** + * Create a 2D rendering context for a window. + * + * If you want a specific renderer, you can specify its name here. A list of + * available renderers can be obtained by calling SDL_GetRenderDriver() + * multiple times, with indices from 0 to SDL_GetNumRenderDrivers()-1. If you + * don't need a specific renderer, specify NULL and SDL will attempt to choose + * the best option for you, based on what is available on the user's system. + * + * If `name` is a comma-separated list, SDL will try each name, in the order + * listed, until one succeeds or all of them fail. + * + * By default the rendering size matches the window size in pixels, but you + * can call SDL_SetRenderLogicalPresentation() to change the content size and + * scaling options. + * + * \param window the window where rendering is displayed. + * \param name the name of the rendering driver to initialize, or NULL to let + * SDL choose one. + * \returns a valid rendering context or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRendererWithProperties + * \sa SDL_CreateSoftwareRenderer + * \sa SDL_DestroyRenderer + * \sa SDL_GetNumRenderDrivers + * \sa SDL_GetRenderDriver + * \sa SDL_GetRendererName + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_CreateRenderer(SDL_Window *window, const char *name); + +/** + * Create a 2D rendering context for a window, with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_RENDERER_CREATE_NAME_STRING`: the name of the rendering driver + * to use, if a specific one is desired + * - `SDL_PROP_RENDERER_CREATE_WINDOW_POINTER`: the window where rendering is + * displayed, required if this isn't a software renderer using a surface + * - `SDL_PROP_RENDERER_CREATE_SURFACE_POINTER`: the surface where rendering + * is displayed, if you want a software renderer without a window + * - `SDL_PROP_RENDERER_CREATE_OUTPUT_COLORSPACE_NUMBER`: an SDL_Colorspace + * value describing the colorspace for output to the display, defaults to + * SDL_COLORSPACE_SRGB. The direct3d11, direct3d12, and metal renderers + * support SDL_COLORSPACE_SRGB_LINEAR, which is a linear color space and + * supports HDR output. If you select SDL_COLORSPACE_SRGB_LINEAR, drawing + * still uses the sRGB colorspace, but values can go beyond 1.0 and float + * (linear) format textures can be used for HDR content. + * - `SDL_PROP_RENDERER_CREATE_PRESENT_VSYNC_NUMBER`: non-zero if you want + * present synchronized with the refresh rate. This property can take any + * value that is supported by SDL_SetRenderVSync() for the renderer. + * + * With the vulkan renderer: + * + * - `SDL_PROP_RENDERER_CREATE_VULKAN_INSTANCE_POINTER`: the VkInstance to use + * with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_SURFACE_NUMBER`: the VkSurfaceKHR to use + * with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_PHYSICAL_DEVICE_POINTER`: the + * VkPhysicalDevice to use with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_DEVICE_POINTER`: the VkDevice to use + * with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER`: the + * queue family index used for rendering. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER`: the + * queue family index used for presentation. + * + * \param props the properties to use. + * \returns a valid rendering context or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + * \sa SDL_CreateRenderer + * \sa SDL_CreateSoftwareRenderer + * \sa SDL_DestroyRenderer + * \sa SDL_GetRendererName + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_CreateRendererWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_RENDERER_CREATE_NAME_STRING "SDL.renderer.create.name" +#define SDL_PROP_RENDERER_CREATE_WINDOW_POINTER "SDL.renderer.create.window" +#define SDL_PROP_RENDERER_CREATE_SURFACE_POINTER "SDL.renderer.create.surface" +#define SDL_PROP_RENDERER_CREATE_OUTPUT_COLORSPACE_NUMBER "SDL.renderer.create.output_colorspace" +#define SDL_PROP_RENDERER_CREATE_PRESENT_VSYNC_NUMBER "SDL.renderer.create.present_vsync" +#define SDL_PROP_RENDERER_CREATE_VULKAN_INSTANCE_POINTER "SDL.renderer.create.vulkan.instance" +#define SDL_PROP_RENDERER_CREATE_VULKAN_SURFACE_NUMBER "SDL.renderer.create.vulkan.surface" +#define SDL_PROP_RENDERER_CREATE_VULKAN_PHYSICAL_DEVICE_POINTER "SDL.renderer.create.vulkan.physical_device" +#define SDL_PROP_RENDERER_CREATE_VULKAN_DEVICE_POINTER "SDL.renderer.create.vulkan.device" +#define SDL_PROP_RENDERER_CREATE_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.create.vulkan.graphics_queue_family_index" +#define SDL_PROP_RENDERER_CREATE_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.create.vulkan.present_queue_family_index" + +/** + * Create a 2D software rendering context for a surface. + * + * Two other API which can be used to create SDL_Renderer: + * SDL_CreateRenderer() and SDL_CreateWindowAndRenderer(). These can _also_ + * create a software renderer, but they are intended to be used with an + * SDL_Window as the final destination and not an SDL_Surface. + * + * \param surface the SDL_Surface structure representing the surface where + * rendering is done. + * \returns a valid rendering context or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyRenderer + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_CreateSoftwareRenderer(SDL_Surface *surface); + +/** + * Get the renderer associated with a window. + * + * \param window the window to query. + * \returns the rendering context on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_GetRenderer(SDL_Window *window); + +/** + * Get the window associated with a renderer. + * + * \param renderer the renderer to query. + * \returns the window on success or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetRenderWindow(SDL_Renderer *renderer); + +/** + * Get the name of a renderer. + * + * \param renderer the rendering context. + * \returns the name of the selected renderer, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_CreateRendererWithProperties + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetRendererName(SDL_Renderer *renderer); + +/** + * Get the properties associated with a renderer. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_RENDERER_NAME_STRING`: the name of the rendering driver + * - `SDL_PROP_RENDERER_WINDOW_POINTER`: the window where rendering is + * displayed, if any + * - `SDL_PROP_RENDERER_SURFACE_POINTER`: the surface where rendering is + * displayed, if this is a software renderer without a window + * - `SDL_PROP_RENDERER_VSYNC_NUMBER`: the current vsync setting + * - `SDL_PROP_RENDERER_MAX_TEXTURE_SIZE_NUMBER`: the maximum texture width + * and height + * - `SDL_PROP_RENDERER_TEXTURE_FORMATS_POINTER`: a (const SDL_PixelFormat *) + * array of pixel formats, terminated with SDL_PIXELFORMAT_UNKNOWN, + * representing the available texture formats for this renderer. + * - `SDL_PROP_RENDERER_OUTPUT_COLORSPACE_NUMBER`: an SDL_Colorspace value + * describing the colorspace for output to the display, defaults to + * SDL_COLORSPACE_SRGB. + * - `SDL_PROP_RENDERER_HDR_ENABLED_BOOLEAN`: true if the output colorspace is + * SDL_COLORSPACE_SRGB_LINEAR and the renderer is showing on a display with + * HDR enabled. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_RENDERER_SDR_WHITE_POINT_FLOAT`: the value of SDR white in the + * SDL_COLORSPACE_SRGB_LINEAR colorspace. When HDR is enabled, this value is + * automatically multiplied into the color scale. This property can change + * dynamically when SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_RENDERER_HDR_HEADROOM_FLOAT`: the additional high dynamic range + * that can be displayed, in terms of the SDR white point. When HDR is not + * enabled, this will be 1.0. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * + * With the direct3d renderer: + * + * - `SDL_PROP_RENDERER_D3D9_DEVICE_POINTER`: the IDirect3DDevice9 associated + * with the renderer + * + * With the direct3d11 renderer: + * + * - `SDL_PROP_RENDERER_D3D11_DEVICE_POINTER`: the ID3D11Device associated + * with the renderer + * - `SDL_PROP_RENDERER_D3D11_SWAPCHAIN_POINTER`: the IDXGISwapChain1 + * associated with the renderer. This may change when the window is resized. + * + * With the direct3d12 renderer: + * + * - `SDL_PROP_RENDERER_D3D12_DEVICE_POINTER`: the ID3D12Device associated + * with the renderer + * - `SDL_PROP_RENDERER_D3D12_SWAPCHAIN_POINTER`: the IDXGISwapChain4 + * associated with the renderer. + * - `SDL_PROP_RENDERER_D3D12_COMMAND_QUEUE_POINTER`: the ID3D12CommandQueue + * associated with the renderer + * + * With the vulkan renderer: + * + * - `SDL_PROP_RENDERER_VULKAN_INSTANCE_POINTER`: the VkInstance associated + * with the renderer + * - `SDL_PROP_RENDERER_VULKAN_SURFACE_NUMBER`: the VkSurfaceKHR associated + * with the renderer + * - `SDL_PROP_RENDERER_VULKAN_PHYSICAL_DEVICE_POINTER`: the VkPhysicalDevice + * associated with the renderer + * - `SDL_PROP_RENDERER_VULKAN_DEVICE_POINTER`: the VkDevice associated with + * the renderer + * - `SDL_PROP_RENDERER_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER`: the queue + * family index used for rendering + * - `SDL_PROP_RENDERER_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER`: the queue + * family index used for presentation + * - `SDL_PROP_RENDERER_VULKAN_SWAPCHAIN_IMAGE_COUNT_NUMBER`: the number of + * swapchain images, or potential frames in flight, used by the Vulkan + * renderer + * + * With the gpu renderer: + * + * - `SDL_PROP_RENDERER_GPU_DEVICE_POINTER`: the SDL_GPUDevice associated with + * the renderer + * + * \param renderer the rendering context. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetRendererProperties(SDL_Renderer *renderer); + +#define SDL_PROP_RENDERER_NAME_STRING "SDL.renderer.name" +#define SDL_PROP_RENDERER_WINDOW_POINTER "SDL.renderer.window" +#define SDL_PROP_RENDERER_SURFACE_POINTER "SDL.renderer.surface" +#define SDL_PROP_RENDERER_VSYNC_NUMBER "SDL.renderer.vsync" +#define SDL_PROP_RENDERER_MAX_TEXTURE_SIZE_NUMBER "SDL.renderer.max_texture_size" +#define SDL_PROP_RENDERER_TEXTURE_FORMATS_POINTER "SDL.renderer.texture_formats" +#define SDL_PROP_RENDERER_OUTPUT_COLORSPACE_NUMBER "SDL.renderer.output_colorspace" +#define SDL_PROP_RENDERER_HDR_ENABLED_BOOLEAN "SDL.renderer.HDR_enabled" +#define SDL_PROP_RENDERER_SDR_WHITE_POINT_FLOAT "SDL.renderer.SDR_white_point" +#define SDL_PROP_RENDERER_HDR_HEADROOM_FLOAT "SDL.renderer.HDR_headroom" +#define SDL_PROP_RENDERER_D3D9_DEVICE_POINTER "SDL.renderer.d3d9.device" +#define SDL_PROP_RENDERER_D3D11_DEVICE_POINTER "SDL.renderer.d3d11.device" +#define SDL_PROP_RENDERER_D3D11_SWAPCHAIN_POINTER "SDL.renderer.d3d11.swap_chain" +#define SDL_PROP_RENDERER_D3D12_DEVICE_POINTER "SDL.renderer.d3d12.device" +#define SDL_PROP_RENDERER_D3D12_SWAPCHAIN_POINTER "SDL.renderer.d3d12.swap_chain" +#define SDL_PROP_RENDERER_D3D12_COMMAND_QUEUE_POINTER "SDL.renderer.d3d12.command_queue" +#define SDL_PROP_RENDERER_VULKAN_INSTANCE_POINTER "SDL.renderer.vulkan.instance" +#define SDL_PROP_RENDERER_VULKAN_SURFACE_NUMBER "SDL.renderer.vulkan.surface" +#define SDL_PROP_RENDERER_VULKAN_PHYSICAL_DEVICE_POINTER "SDL.renderer.vulkan.physical_device" +#define SDL_PROP_RENDERER_VULKAN_DEVICE_POINTER "SDL.renderer.vulkan.device" +#define SDL_PROP_RENDERER_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.vulkan.graphics_queue_family_index" +#define SDL_PROP_RENDERER_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.vulkan.present_queue_family_index" +#define SDL_PROP_RENDERER_VULKAN_SWAPCHAIN_IMAGE_COUNT_NUMBER "SDL.renderer.vulkan.swapchain_image_count" +#define SDL_PROP_RENDERER_GPU_DEVICE_POINTER "SDL.renderer.gpu.device" + +/** + * Get the output size in pixels of a rendering context. + * + * This returns the true output size in pixels, ignoring any render targets or + * logical size and presentation. + * + * For the output size of the current rendering target, with logical size + * adjustments, use SDL_GetCurrentRenderOutputSize() instead. + * + * \param renderer the rendering context. + * \param w a pointer filled in with the width in pixels. + * \param h a pointer filled in with the height in pixels. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentRenderOutputSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderOutputSize(SDL_Renderer *renderer, int *w, int *h); + +/** + * Get the current output size in pixels of a rendering context. + * + * If a rendering target is active, this will return the size of the rendering + * target in pixels, otherwise return the value of SDL_GetRenderOutputSize(). + * + * Rendering target or not, the output will be adjusted by the current logical + * presentation state, dictated by SDL_SetRenderLogicalPresentation(). + * + * \param renderer the rendering context. + * \param w a pointer filled in with the current width. + * \param h a pointer filled in with the current height. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderOutputSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetCurrentRenderOutputSize(SDL_Renderer *renderer, int *w, int *h); + +/** + * Create a texture for a rendering context. + * + * The contents of a texture when first created are not defined. + * + * \param renderer the rendering context. + * \param format one of the enumerated values in SDL_PixelFormat. + * \param access one of the enumerated values in SDL_TextureAccess. + * \param w the width of the texture in pixels. + * \param h the height of the texture in pixels. + * \returns the created texture or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTextureFromSurface + * \sa SDL_CreateTextureWithProperties + * \sa SDL_DestroyTexture + * \sa SDL_GetTextureSize + * \sa SDL_UpdateTexture + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_CreateTexture(SDL_Renderer *renderer, SDL_PixelFormat format, SDL_TextureAccess access, int w, int h); + +/** + * Create a texture from an existing surface. + * + * The surface is not modified or freed by this function. + * + * The SDL_TextureAccess hint for the created texture is + * `SDL_TEXTUREACCESS_STATIC`. + * + * The pixel format of the created texture may be different from the pixel + * format of the surface, and can be queried using the + * SDL_PROP_TEXTURE_FORMAT_NUMBER property. + * + * \param renderer the rendering context. + * \param surface the SDL_Surface structure containing pixel data used to fill + * the texture. + * \returns the created texture or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureWithProperties + * \sa SDL_DestroyTexture + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_CreateTextureFromSurface(SDL_Renderer *renderer, SDL_Surface *surface); + +/** + * Create a texture for a rendering context with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_TEXTURE_CREATE_COLORSPACE_NUMBER`: an SDL_Colorspace value + * describing the texture colorspace, defaults to SDL_COLORSPACE_SRGB_LINEAR + * for floating point textures, SDL_COLORSPACE_HDR10 for 10-bit textures, + * SDL_COLORSPACE_SRGB for other RGB textures and SDL_COLORSPACE_JPEG for + * YUV textures. + * - `SDL_PROP_TEXTURE_CREATE_FORMAT_NUMBER`: one of the enumerated values in + * SDL_PixelFormat, defaults to the best RGBA format for the renderer + * - `SDL_PROP_TEXTURE_CREATE_ACCESS_NUMBER`: one of the enumerated values in + * SDL_TextureAccess, defaults to SDL_TEXTUREACCESS_STATIC + * - `SDL_PROP_TEXTURE_CREATE_WIDTH_NUMBER`: the width of the texture in + * pixels, required + * - `SDL_PROP_TEXTURE_CREATE_HEIGHT_NUMBER`: the height of the texture in + * pixels, required + * - `SDL_PROP_TEXTURE_CREATE_SDR_WHITE_POINT_FLOAT`: for HDR10 and floating + * point textures, this defines the value of 100% diffuse white, with higher + * values being displayed in the High Dynamic Range headroom. This defaults + * to 100 for HDR10 textures and 1.0 for floating point textures. + * - `SDL_PROP_TEXTURE_CREATE_HDR_HEADROOM_FLOAT`: for HDR10 and floating + * point textures, this defines the maximum dynamic range used by the + * content, in terms of the SDR white point. This would be equivalent to + * maxCLL / SDL_PROP_TEXTURE_CREATE_SDR_WHITE_POINT_FLOAT for HDR10 content. + * If this is defined, any values outside the range supported by the display + * will be scaled into the available HDR headroom, otherwise they are + * clipped. + * + * With the direct3d11 renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_POINTER`: the ID3D11Texture2D + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_U_POINTER`: the ID3D11Texture2D + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_V_POINTER`: the ID3D11Texture2D + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the direct3d12 renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_POINTER`: the ID3D12Resource + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_U_POINTER`: the ID3D12Resource + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_V_POINTER`: the ID3D12Resource + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the metal renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_METAL_PIXELBUFFER_POINTER`: the CVPixelBufferRef + * associated with the texture, if you want to create a texture from an + * existing pixel buffer. + * + * With the opengl renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_U_NUMBER`: the GLuint texture + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_V_NUMBER`: the GLuint texture + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the opengles2 renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_U_NUMBER`: the GLuint texture + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_V_NUMBER`: the GLuint texture + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the vulkan renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_VULKAN_TEXTURE_NUMBER`: the VkImage with layout + * VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL associated with the texture, if + * you want to wrap an existing texture. + * + * \param renderer the rendering context. + * \param props the properties to use. + * \returns the created texture or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureFromSurface + * \sa SDL_DestroyTexture + * \sa SDL_GetTextureSize + * \sa SDL_UpdateTexture + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_CreateTextureWithProperties(SDL_Renderer *renderer, SDL_PropertiesID props); + +#define SDL_PROP_TEXTURE_CREATE_COLORSPACE_NUMBER "SDL.texture.create.colorspace" +#define SDL_PROP_TEXTURE_CREATE_FORMAT_NUMBER "SDL.texture.create.format" +#define SDL_PROP_TEXTURE_CREATE_ACCESS_NUMBER "SDL.texture.create.access" +#define SDL_PROP_TEXTURE_CREATE_WIDTH_NUMBER "SDL.texture.create.width" +#define SDL_PROP_TEXTURE_CREATE_HEIGHT_NUMBER "SDL.texture.create.height" +#define SDL_PROP_TEXTURE_CREATE_SDR_WHITE_POINT_FLOAT "SDL.texture.create.SDR_white_point" +#define SDL_PROP_TEXTURE_CREATE_HDR_HEADROOM_FLOAT "SDL.texture.create.HDR_headroom" +#define SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_POINTER "SDL.texture.create.d3d11.texture" +#define SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_U_POINTER "SDL.texture.create.d3d11.texture_u" +#define SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_V_POINTER "SDL.texture.create.d3d11.texture_v" +#define SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_POINTER "SDL.texture.create.d3d12.texture" +#define SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_U_POINTER "SDL.texture.create.d3d12.texture_u" +#define SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_V_POINTER "SDL.texture.create.d3d12.texture_v" +#define SDL_PROP_TEXTURE_CREATE_METAL_PIXELBUFFER_POINTER "SDL.texture.create.metal.pixelbuffer" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_NUMBER "SDL.texture.create.opengl.texture" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_UV_NUMBER "SDL.texture.create.opengl.texture_uv" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_U_NUMBER "SDL.texture.create.opengl.texture_u" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_V_NUMBER "SDL.texture.create.opengl.texture_v" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_NUMBER "SDL.texture.create.opengles2.texture" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_UV_NUMBER "SDL.texture.create.opengles2.texture_uv" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_U_NUMBER "SDL.texture.create.opengles2.texture_u" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_V_NUMBER "SDL.texture.create.opengles2.texture_v" +#define SDL_PROP_TEXTURE_CREATE_VULKAN_TEXTURE_NUMBER "SDL.texture.create.vulkan.texture" + +/** + * Get the properties associated with a texture. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_TEXTURE_COLORSPACE_NUMBER`: an SDL_Colorspace value describing + * the texture colorspace. + * - `SDL_PROP_TEXTURE_FORMAT_NUMBER`: one of the enumerated values in + * SDL_PixelFormat. + * - `SDL_PROP_TEXTURE_ACCESS_NUMBER`: one of the enumerated values in + * SDL_TextureAccess. + * - `SDL_PROP_TEXTURE_WIDTH_NUMBER`: the width of the texture in pixels. + * - `SDL_PROP_TEXTURE_HEIGHT_NUMBER`: the height of the texture in pixels. + * - `SDL_PROP_TEXTURE_SDR_WHITE_POINT_FLOAT`: for HDR10 and floating point + * textures, this defines the value of 100% diffuse white, with higher + * values being displayed in the High Dynamic Range headroom. This defaults + * to 100 for HDR10 textures and 1.0 for other textures. + * - `SDL_PROP_TEXTURE_HDR_HEADROOM_FLOAT`: for HDR10 and floating point + * textures, this defines the maximum dynamic range used by the content, in + * terms of the SDR white point. If this is defined, any values outside the + * range supported by the display will be scaled into the available HDR + * headroom, otherwise they are clipped. This defaults to 1.0 for SDR + * textures, 4.0 for HDR10 textures, and no default for floating point + * textures. + * + * With the direct3d11 renderer: + * + * - `SDL_PROP_TEXTURE_D3D11_TEXTURE_POINTER`: the ID3D11Texture2D associated + * with the texture + * - `SDL_PROP_TEXTURE_D3D11_TEXTURE_U_POINTER`: the ID3D11Texture2D + * associated with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_D3D11_TEXTURE_V_POINTER`: the ID3D11Texture2D + * associated with the V plane of a YUV texture + * + * With the direct3d12 renderer: + * + * - `SDL_PROP_TEXTURE_D3D12_TEXTURE_POINTER`: the ID3D12Resource associated + * with the texture + * - `SDL_PROP_TEXTURE_D3D12_TEXTURE_U_POINTER`: the ID3D12Resource associated + * with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_D3D12_TEXTURE_V_POINTER`: the ID3D12Resource associated + * with the V plane of a YUV texture + * + * With the vulkan renderer: + * + * - `SDL_PROP_TEXTURE_VULKAN_TEXTURE_NUMBER`: the VkImage associated with the + * texture + * + * With the opengl renderer: + * + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_NUMBER`: the GLuint texture associated + * with the texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_U_NUMBER`: the GLuint texture associated + * with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_V_NUMBER`: the GLuint texture associated + * with the V plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_TARGET_NUMBER`: the GLenum for the + * texture target (`GL_TEXTURE_2D`, `GL_TEXTURE_RECTANGLE_ARB`, etc) + * - `SDL_PROP_TEXTURE_OPENGL_TEX_W_FLOAT`: the texture coordinate width of + * the texture (0.0 - 1.0) + * - `SDL_PROP_TEXTURE_OPENGL_TEX_H_FLOAT`: the texture coordinate height of + * the texture (0.0 - 1.0) + * + * With the opengles2 renderer: + * + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_U_NUMBER`: the GLuint texture + * associated with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_V_NUMBER`: the GLuint texture + * associated with the V plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_TARGET_NUMBER`: the GLenum for the + * texture target (`GL_TEXTURE_2D`, `GL_TEXTURE_EXTERNAL_OES`, etc) + * + * \param texture the texture to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetTextureProperties(SDL_Texture *texture); + +#define SDL_PROP_TEXTURE_COLORSPACE_NUMBER "SDL.texture.colorspace" +#define SDL_PROP_TEXTURE_FORMAT_NUMBER "SDL.texture.format" +#define SDL_PROP_TEXTURE_ACCESS_NUMBER "SDL.texture.access" +#define SDL_PROP_TEXTURE_WIDTH_NUMBER "SDL.texture.width" +#define SDL_PROP_TEXTURE_HEIGHT_NUMBER "SDL.texture.height" +#define SDL_PROP_TEXTURE_SDR_WHITE_POINT_FLOAT "SDL.texture.SDR_white_point" +#define SDL_PROP_TEXTURE_HDR_HEADROOM_FLOAT "SDL.texture.HDR_headroom" +#define SDL_PROP_TEXTURE_D3D11_TEXTURE_POINTER "SDL.texture.d3d11.texture" +#define SDL_PROP_TEXTURE_D3D11_TEXTURE_U_POINTER "SDL.texture.d3d11.texture_u" +#define SDL_PROP_TEXTURE_D3D11_TEXTURE_V_POINTER "SDL.texture.d3d11.texture_v" +#define SDL_PROP_TEXTURE_D3D12_TEXTURE_POINTER "SDL.texture.d3d12.texture" +#define SDL_PROP_TEXTURE_D3D12_TEXTURE_U_POINTER "SDL.texture.d3d12.texture_u" +#define SDL_PROP_TEXTURE_D3D12_TEXTURE_V_POINTER "SDL.texture.d3d12.texture_v" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_NUMBER "SDL.texture.opengl.texture" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_UV_NUMBER "SDL.texture.opengl.texture_uv" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_U_NUMBER "SDL.texture.opengl.texture_u" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_V_NUMBER "SDL.texture.opengl.texture_v" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_TARGET_NUMBER "SDL.texture.opengl.target" +#define SDL_PROP_TEXTURE_OPENGL_TEX_W_FLOAT "SDL.texture.opengl.tex_w" +#define SDL_PROP_TEXTURE_OPENGL_TEX_H_FLOAT "SDL.texture.opengl.tex_h" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_NUMBER "SDL.texture.opengles2.texture" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_UV_NUMBER "SDL.texture.opengles2.texture_uv" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_U_NUMBER "SDL.texture.opengles2.texture_u" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_V_NUMBER "SDL.texture.opengles2.texture_v" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_TARGET_NUMBER "SDL.texture.opengles2.target" +#define SDL_PROP_TEXTURE_VULKAN_TEXTURE_NUMBER "SDL.texture.vulkan.texture" + +/** + * Get the renderer that created an SDL_Texture. + * + * \param texture the texture to query. + * \returns a pointer to the SDL_Renderer that created the texture, or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_GetRendererFromTexture(SDL_Texture *texture); + +/** + * Get the size of a texture, as floating point values. + * + * \param texture the texture to query. + * \param w a pointer filled in with the width of the texture in pixels. This + * argument can be NULL if you don't need this information. + * \param h a pointer filled in with the height of the texture in pixels. This + * argument can be NULL if you don't need this information. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureSize(SDL_Texture *texture, float *w, float *h); + +/** + * Set an additional color value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation each source color + * channel is modulated by the appropriate color value according to the + * following formula: + * + * `srcC = srcC * (color / 255)` + * + * Color modulation is not always supported by the renderer; it will return + * false if color modulation is not supported. + * + * \param texture the texture to update. + * \param r the red color value multiplied into copy operations. + * \param g the green color value multiplied into copy operations. + * \param b the blue color value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureColorMod + * \sa SDL_SetTextureAlphaMod + * \sa SDL_SetTextureColorModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureColorMod(SDL_Texture *texture, Uint8 r, Uint8 g, Uint8 b); + + +/** + * Set an additional color value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation each source color + * channel is modulated by the appropriate color value according to the + * following formula: + * + * `srcC = srcC * color` + * + * Color modulation is not always supported by the renderer; it will return + * false if color modulation is not supported. + * + * \param texture the texture to update. + * \param r the red color value multiplied into copy operations. + * \param g the green color value multiplied into copy operations. + * \param b the blue color value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureColorModFloat + * \sa SDL_SetTextureAlphaModFloat + * \sa SDL_SetTextureColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureColorModFloat(SDL_Texture *texture, float r, float g, float b); + + +/** + * Get the additional color value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param r a pointer filled in with the current red color value. + * \param g a pointer filled in with the current green color value. + * \param b a pointer filled in with the current blue color value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaMod + * \sa SDL_GetTextureColorModFloat + * \sa SDL_SetTextureColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureColorMod(SDL_Texture *texture, Uint8 *r, Uint8 *g, Uint8 *b); + +/** + * Get the additional color value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param r a pointer filled in with the current red color value. + * \param g a pointer filled in with the current green color value. + * \param b a pointer filled in with the current blue color value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaModFloat + * \sa SDL_GetTextureColorMod + * \sa SDL_SetTextureColorModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureColorModFloat(SDL_Texture *texture, float *r, float *g, float *b); + +/** + * Set an additional alpha value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation the source alpha + * value is modulated by this alpha value according to the following formula: + * + * `srcA = srcA * (alpha / 255)` + * + * Alpha modulation is not always supported by the renderer; it will return + * false if alpha modulation is not supported. + * + * \param texture the texture to update. + * \param alpha the source alpha value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaMod + * \sa SDL_SetTextureAlphaModFloat + * \sa SDL_SetTextureColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureAlphaMod(SDL_Texture *texture, Uint8 alpha); + +/** + * Set an additional alpha value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation the source alpha + * value is modulated by this alpha value according to the following formula: + * + * `srcA = srcA * alpha` + * + * Alpha modulation is not always supported by the renderer; it will return + * false if alpha modulation is not supported. + * + * \param texture the texture to update. + * \param alpha the source alpha value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaModFloat + * \sa SDL_SetTextureAlphaMod + * \sa SDL_SetTextureColorModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureAlphaModFloat(SDL_Texture *texture, float alpha); + +/** + * Get the additional alpha value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param alpha a pointer filled in with the current alpha value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaModFloat + * \sa SDL_GetTextureColorMod + * \sa SDL_SetTextureAlphaMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureAlphaMod(SDL_Texture *texture, Uint8 *alpha); + +/** + * Get the additional alpha value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param alpha a pointer filled in with the current alpha value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaMod + * \sa SDL_GetTextureColorModFloat + * \sa SDL_SetTextureAlphaModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureAlphaModFloat(SDL_Texture *texture, float *alpha); + +/** + * Set the blend mode for a texture, used by SDL_RenderTexture(). + * + * If the blend mode is not supported, the closest supported mode is chosen + * and this function returns false. + * + * \param texture the texture to update. + * \param blendMode the SDL_BlendMode to use for texture blending. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureBlendMode(SDL_Texture *texture, SDL_BlendMode blendMode); + +/** + * Get the blend mode used for texture copy operations. + * + * \param texture the texture to query. + * \param blendMode a pointer filled in with the current SDL_BlendMode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextureBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureBlendMode(SDL_Texture *texture, SDL_BlendMode *blendMode); + +/** + * Set the scale mode used for texture scale operations. + * + * The default texture scale mode is SDL_SCALEMODE_LINEAR. + * + * If the scale mode is not supported, the closest supported mode is chosen. + * + * \param texture the texture to update. + * \param scaleMode the SDL_ScaleMode to use for texture scaling. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureScaleMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureScaleMode(SDL_Texture *texture, SDL_ScaleMode scaleMode); + +/** + * Get the scale mode used for texture scale operations. + * + * \param texture the texture to query. + * \param scaleMode a pointer filled in with the current scale mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextureScaleMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureScaleMode(SDL_Texture *texture, SDL_ScaleMode *scaleMode); + +/** + * Update the given texture rectangle with new pixel data. + * + * The pixel data must be in the pixel format of the texture, which can be + * queried using the SDL_PROP_TEXTURE_FORMAT_NUMBER property. + * + * This is a fairly slow function, intended for use with static textures that + * do not change often. + * + * If the texture is intended to be updated often, it is preferred to create + * the texture as streaming and use the locking functions referenced below. + * While this function will work with streaming textures, for optimization + * reasons you may not get the pixels back if you lock the texture afterward. + * + * \param texture the texture to update. + * \param rect an SDL_Rect structure representing the area to update, or NULL + * to update the entire texture. + * \param pixels the raw pixel data in the format of the texture. + * \param pitch the number of bytes in a row of pixel data, including padding + * between lines. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTexture + * \sa SDL_UnlockTexture + * \sa SDL_UpdateNVTexture + * \sa SDL_UpdateYUVTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateTexture(SDL_Texture *texture, const SDL_Rect *rect, const void *pixels, int pitch); + +/** + * Update a rectangle within a planar YV12 or IYUV texture with new pixel + * data. + * + * You can use SDL_UpdateTexture() as long as your pixel data is a contiguous + * block of Y and U/V planes in the proper order, but this function is + * available if your pixel data is not contiguous. + * + * \param texture the texture to update. + * \param rect a pointer to the rectangle of pixels to update, or NULL to + * update the entire texture. + * \param Yplane the raw pixel data for the Y plane. + * \param Ypitch the number of bytes between rows of pixel data for the Y + * plane. + * \param Uplane the raw pixel data for the U plane. + * \param Upitch the number of bytes between rows of pixel data for the U + * plane. + * \param Vplane the raw pixel data for the V plane. + * \param Vpitch the number of bytes between rows of pixel data for the V + * plane. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UpdateNVTexture + * \sa SDL_UpdateTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateYUVTexture(SDL_Texture *texture, + const SDL_Rect *rect, + const Uint8 *Yplane, int Ypitch, + const Uint8 *Uplane, int Upitch, + const Uint8 *Vplane, int Vpitch); + +/** + * Update a rectangle within a planar NV12 or NV21 texture with new pixels. + * + * You can use SDL_UpdateTexture() as long as your pixel data is a contiguous + * block of NV12/21 planes in the proper order, but this function is available + * if your pixel data is not contiguous. + * + * \param texture the texture to update. + * \param rect a pointer to the rectangle of pixels to update, or NULL to + * update the entire texture. + * \param Yplane the raw pixel data for the Y plane. + * \param Ypitch the number of bytes between rows of pixel data for the Y + * plane. + * \param UVplane the raw pixel data for the UV plane. + * \param UVpitch the number of bytes between rows of pixel data for the UV + * plane. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UpdateTexture + * \sa SDL_UpdateYUVTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateNVTexture(SDL_Texture *texture, + const SDL_Rect *rect, + const Uint8 *Yplane, int Ypitch, + const Uint8 *UVplane, int UVpitch); + +/** + * Lock a portion of the texture for **write-only** pixel access. + * + * As an optimization, the pixels made available for editing don't necessarily + * contain the old texture data. This is a write-only operation, and if you + * need to keep a copy of the texture data you should do that at the + * application level. + * + * You must use SDL_UnlockTexture() to unlock the pixels and apply any + * changes. + * + * \param texture the texture to lock for access, which was created with + * `SDL_TEXTUREACCESS_STREAMING`. + * \param rect an SDL_Rect structure representing the area to lock for access; + * NULL to lock the entire texture. + * \param pixels this is filled in with a pointer to the locked pixels, + * appropriately offset by the locked area. + * \param pitch this is filled in with the pitch of the locked pixels; the + * pitch is the length of one row in bytes. + * \returns true on success or false if the texture is not valid or was not + * created with `SDL_TEXTUREACCESS_STREAMING`; call SDL_GetError() + * for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTextureToSurface + * \sa SDL_UnlockTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockTexture(SDL_Texture *texture, + const SDL_Rect *rect, + void **pixels, int *pitch); + +/** + * Lock a portion of the texture for **write-only** pixel access, and expose + * it as a SDL surface. + * + * Besides providing an SDL_Surface instead of raw pixel data, this function + * operates like SDL_LockTexture. + * + * As an optimization, the pixels made available for editing don't necessarily + * contain the old texture data. This is a write-only operation, and if you + * need to keep a copy of the texture data you should do that at the + * application level. + * + * You must use SDL_UnlockTexture() to unlock the pixels and apply any + * changes. + * + * The returned surface is freed internally after calling SDL_UnlockTexture() + * or SDL_DestroyTexture(). The caller should not free it. + * + * \param texture the texture to lock for access, which must be created with + * `SDL_TEXTUREACCESS_STREAMING`. + * \param rect a pointer to the rectangle to lock for access. If the rect is + * NULL, the entire texture will be locked. + * \param surface a pointer to an SDL surface of size **rect**. Don't assume + * any specific pixel content. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTexture + * \sa SDL_UnlockTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockTextureToSurface(SDL_Texture *texture, const SDL_Rect *rect, SDL_Surface **surface); + +/** + * Unlock a texture, uploading the changes to video memory, if needed. + * + * **Warning**: Please note that SDL_LockTexture() is intended to be + * write-only; it will not guarantee the previous contents of the texture will + * be provided. You must fully initialize any area of a texture that you lock + * before unlocking it, as the pixels might otherwise be uninitialized memory. + * + * Which is to say: locking and immediately unlocking a texture can result in + * corrupted textures, depending on the renderer in use. + * + * \param texture a texture locked by SDL_LockTexture(). + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTexture + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockTexture(SDL_Texture *texture); + +/** + * Set a texture as the current rendering target. + * + * The default render target is the window for which the renderer was created. + * To stop rendering to a texture and render to the window again, call this + * function with a NULL `texture`. + * + * Viewport, cliprect, scale, and logical presentation are unique to each + * render target. Get and set functions for these states apply to the current + * render target set by this function, and those states persist on each target + * when the current render target changes. + * + * \param renderer the rendering context. + * \param texture the targeted texture, which must be created with the + * `SDL_TEXTUREACCESS_TARGET` flag, or NULL to render to the + * window instead of a texture. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderTarget + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderTarget(SDL_Renderer *renderer, SDL_Texture *texture); + +/** + * Get the current render target. + * + * The default render target is the window for which the renderer was created, + * and is reported a NULL here. + * + * \param renderer the rendering context. + * \returns the current render target or NULL for the default render target. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderTarget + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_GetRenderTarget(SDL_Renderer *renderer); + +/** + * Set a device-independent resolution and presentation mode for rendering. + * + * This function sets the width and height of the logical rendering output. + * The renderer will act as if the current render target is always the + * requested dimensions, scaling to the actual resolution as necessary. + * + * This can be useful for games that expect a fixed size, but would like to + * scale the output to whatever is available, regardless of how a user resizes + * a window, or if the display is high DPI. + * + * Logical presentation can be used with both render target textures and the + * renderer's window; the state is unique to each render target, and this + * function sets the state for the current render target. It might be useful + * to draw to a texture that matches the window dimensions with logical + * presentation enabled, and then draw that texture across the entire window + * with logical presentation disabled. Be careful not to render both with + * logical presentation enabled, however, as this could produce + * double-letterboxing, etc. + * + * You can disable logical coordinates by setting the mode to + * SDL_LOGICAL_PRESENTATION_DISABLED, and in that case you get the full pixel + * resolution of the render target; it is safe to toggle logical presentation + * during the rendering of a frame: perhaps most of the rendering is done to + * specific dimensions but to make fonts look sharp, the app turns off logical + * presentation while drawing text, for example. + * + * For the renderer's window, letterboxing is drawn into the framebuffer if + * logical presentation is enabled during SDL_RenderPresent; be sure to + * reenable it before presenting if you were toggling it, otherwise the + * letterbox areas might have artifacts from previous frames (or artifacts + * from external overlays, etc). Letterboxing is never drawn into texture + * render targets; be sure to call SDL_RenderClear() before drawing into the + * texture so the letterboxing areas are cleared, if appropriate. + * + * You can convert coordinates in an event into rendering coordinates using + * SDL_ConvertEventToRenderCoordinates(). + * + * \param renderer the rendering context. + * \param w the width of the logical resolution. + * \param h the height of the logical resolution. + * \param mode the presentation mode used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertEventToRenderCoordinates + * \sa SDL_GetRenderLogicalPresentation + * \sa SDL_GetRenderLogicalPresentationRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderLogicalPresentation(SDL_Renderer *renderer, int w, int h, SDL_RendererLogicalPresentation mode); + +/** + * Get device independent resolution and presentation mode for rendering. + * + * This function gets the width and height of the logical rendering output, or + * the output size in pixels if a logical resolution is not enabled. + * + * Each render target has its own logical presentation state. This function + * gets the state for the current render target. + * + * \param renderer the rendering context. + * \param w an int to be filled with the width. + * \param h an int to be filled with the height. + * \param mode the presentation mode used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderLogicalPresentation(SDL_Renderer *renderer, int *w, int *h, SDL_RendererLogicalPresentation *mode); + +/** + * Get the final presentation rectangle for rendering. + * + * This function returns the calculated rectangle used for logical + * presentation, based on the presentation mode and output size. If logical + * presentation is disabled, it will fill the rectangle with the output size, + * in pixels. + * + * Each render target has its own logical presentation state. This function + * gets the rectangle for the current render target. + * + * \param renderer the rendering context. + * \param rect a pointer filled in with the final presentation rectangle, may + * be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderLogicalPresentationRect(SDL_Renderer *renderer, SDL_FRect *rect); + +/** + * Get a point in render coordinates when given a point in window coordinates. + * + * This takes into account several states: + * + * - The window dimensions. + * - The logical presentation settings (SDL_SetRenderLogicalPresentation) + * - The scale (SDL_SetRenderScale) + * - The viewport (SDL_SetRenderViewport) + * + * \param renderer the rendering context. + * \param window_x the x coordinate in window coordinates. + * \param window_y the y coordinate in window coordinates. + * \param x a pointer filled with the x coordinate in render coordinates. + * \param y a pointer filled with the y coordinate in render coordinates. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + * \sa SDL_SetRenderScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderCoordinatesFromWindow(SDL_Renderer *renderer, float window_x, float window_y, float *x, float *y); + +/** + * Get a point in window coordinates when given a point in render coordinates. + * + * This takes into account several states: + * + * - The window dimensions. + * - The logical presentation settings (SDL_SetRenderLogicalPresentation) + * - The scale (SDL_SetRenderScale) + * - The viewport (SDL_SetRenderViewport) + * + * \param renderer the rendering context. + * \param x the x coordinate in render coordinates. + * \param y the y coordinate in render coordinates. + * \param window_x a pointer filled with the x coordinate in window + * coordinates. + * \param window_y a pointer filled with the y coordinate in window + * coordinates. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + * \sa SDL_SetRenderScale + * \sa SDL_SetRenderViewport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderCoordinatesToWindow(SDL_Renderer *renderer, float x, float y, float *window_x, float *window_y); + +/** + * Convert the coordinates in an event to render coordinates. + * + * This takes into account several states: + * + * - The window dimensions. + * - The logical presentation settings (SDL_SetRenderLogicalPresentation) + * - The scale (SDL_SetRenderScale) + * - The viewport (SDL_SetRenderViewport) + * + * Various event types are converted with this function: mouse, touch, pen, + * etc. + * + * Touch coordinates are converted from normalized coordinates in the window + * to non-normalized rendering coordinates. + * + * Relative mouse coordinates (xrel and yrel event fields) are _also_ + * converted. Applications that do not want these fields converted should use + * SDL_RenderCoordinatesFromWindow() on the specific event fields instead of + * converting the entire event structure. + * + * Once converted, coordinates may be outside the rendering area. + * + * \param renderer the rendering context. + * \param event the event to modify. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderCoordinatesFromWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertEventToRenderCoordinates(SDL_Renderer *renderer, SDL_Event *event); + +/** + * Set the drawing area for rendering on the current target. + * + * Drawing will clip to this area (separately from any clipping done with + * SDL_SetRenderClipRect), and the top left of the area will become coordinate + * (0, 0) for future drawing commands. + * + * The area's width and height must be >= 0. + * + * Each render target has its own viewport. This function sets the viewport + * for the current render target. + * + * \param renderer the rendering context. + * \param rect the SDL_Rect structure representing the drawing area, or NULL + * to set the viewport to the entire target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderViewport + * \sa SDL_RenderViewportSet + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderViewport(SDL_Renderer *renderer, const SDL_Rect *rect); + +/** + * Get the drawing area for the current target. + * + * Each render target has its own viewport. This function gets the viewport + * for the current render target. + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure filled in with the current drawing area. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderViewportSet + * \sa SDL_SetRenderViewport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderViewport(SDL_Renderer *renderer, SDL_Rect *rect); + +/** + * Return whether an explicit rectangle was set as the viewport. + * + * This is useful if you're saving and restoring the viewport and want to know + * whether you should restore a specific rectangle or NULL. + * + * Each render target has its own viewport. This function checks the viewport + * for the current render target. + * + * \param renderer the rendering context. + * \returns true if the viewport was set to a specific rectangle, or false if + * it was set to NULL (the entire target). + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderViewport + * \sa SDL_SetRenderViewport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderViewportSet(SDL_Renderer *renderer); + +/** + * Get the safe area for rendering within the current viewport. + * + * Some devices have portions of the screen which are partially obscured or + * not interactive, possibly due to on-screen controls, curved edges, camera + * notches, TV overscan, etc. This function provides the area of the current + * viewport which is safe to have interactible content. You should continue + * rendering into the rest of the render target, but it should not contain + * visually important or interactible content. + * + * \param renderer the rendering context. + * \param rect a pointer filled in with the area that is safe for interactive + * content. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderSafeArea(SDL_Renderer *renderer, SDL_Rect *rect); + +/** + * Set the clip rectangle for rendering on the specified target. + * + * Each render target has its own clip rectangle. This function sets the + * cliprect for the current render target. + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure representing the clip area, relative to + * the viewport, or NULL to disable clipping. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderClipRect + * \sa SDL_RenderClipEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderClipRect(SDL_Renderer *renderer, const SDL_Rect *rect); + +/** + * Get the clip rectangle for the current target. + * + * Each render target has its own clip rectangle. This function gets the + * cliprect for the current render target. + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure filled in with the current clipping area + * or an empty rectangle if clipping is disabled. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderClipEnabled + * \sa SDL_SetRenderClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderClipRect(SDL_Renderer *renderer, SDL_Rect *rect); + +/** + * Get whether clipping is enabled on the given render target. + * + * Each render target has its own clip rectangle. This function checks the + * cliprect for the current render target. + * + * \param renderer the rendering context. + * \returns true if clipping is enabled or false if not; call SDL_GetError() + * for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderClipRect + * \sa SDL_SetRenderClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderClipEnabled(SDL_Renderer *renderer); + +/** + * Set the drawing scale for rendering on the current target. + * + * The drawing coordinates are scaled by the x/y scaling factors before they + * are used by the renderer. This allows resolution independent drawing with a + * single coordinate system. + * + * If this results in scaling or subpixel drawing by the rendering backend, it + * will be handled using the appropriate quality hints. For best results use + * integer scaling factors. + * + * Each render target has its own scale. This function sets the scale for the + * current render target. + * + * \param renderer the rendering context. + * \param scaleX the horizontal scaling factor. + * \param scaleY the vertical scaling factor. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderScale(SDL_Renderer *renderer, float scaleX, float scaleY); + +/** + * Get the drawing scale for the current target. + * + * Each render target has its own scale. This function gets the scale for the + * current render target. + * + * \param renderer the rendering context. + * \param scaleX a pointer filled in with the horizontal scaling factor. + * \param scaleY a pointer filled in with the vertical scaling factor. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderScale(SDL_Renderer *renderer, float *scaleX, float *scaleY); + +/** + * Set the color used for drawing operations. + * + * Set the color for drawing or filling rectangles, lines, and points, and for + * SDL_RenderClear(). + * + * \param renderer the rendering context. + * \param r the red value used to draw on the rendering target. + * \param g the green value used to draw on the rendering target. + * \param b the blue value used to draw on the rendering target. + * \param a the alpha value used to draw on the rendering target; usually + * `SDL_ALPHA_OPAQUE` (255). Use SDL_SetRenderDrawBlendMode to + * specify how the alpha channel is used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawColor + * \sa SDL_SetRenderDrawColorFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderDrawColor(SDL_Renderer *renderer, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Set the color used for drawing operations (Rect, Line and Clear). + * + * Set the color for drawing or filling rectangles, lines, and points, and for + * SDL_RenderClear(). + * + * \param renderer the rendering context. + * \param r the red value used to draw on the rendering target. + * \param g the green value used to draw on the rendering target. + * \param b the blue value used to draw on the rendering target. + * \param a the alpha value used to draw on the rendering target. Use + * SDL_SetRenderDrawBlendMode to specify how the alpha channel is + * used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawColorFloat + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderDrawColorFloat(SDL_Renderer *renderer, float r, float g, float b, float a); + +/** + * Get the color used for drawing operations (Rect, Line and Clear). + * + * \param renderer the rendering context. + * \param r a pointer filled in with the red value used to draw on the + * rendering target. + * \param g a pointer filled in with the green value used to draw on the + * rendering target. + * \param b a pointer filled in with the blue value used to draw on the + * rendering target. + * \param a a pointer filled in with the alpha value used to draw on the + * rendering target; usually `SDL_ALPHA_OPAQUE` (255). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawColorFloat + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderDrawColor(SDL_Renderer *renderer, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); + +/** + * Get the color used for drawing operations (Rect, Line and Clear). + * + * \param renderer the rendering context. + * \param r a pointer filled in with the red value used to draw on the + * rendering target. + * \param g a pointer filled in with the green value used to draw on the + * rendering target. + * \param b a pointer filled in with the blue value used to draw on the + * rendering target. + * \param a a pointer filled in with the alpha value used to draw on the + * rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawColorFloat + * \sa SDL_GetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderDrawColorFloat(SDL_Renderer *renderer, float *r, float *g, float *b, float *a); + +/** + * Set the color scale used for render operations. + * + * The color scale is an additional scale multiplied into the pixel color + * value while rendering. This can be used to adjust the brightness of colors + * during HDR rendering, or changing HDR video brightness when playing on an + * SDR display. + * + * The color scale does not affect the alpha channel, only the color + * brightness. + * + * \param renderer the rendering context. + * \param scale the color scale value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderColorScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderColorScale(SDL_Renderer *renderer, float scale); + +/** + * Get the color scale used for render operations. + * + * \param renderer the rendering context. + * \param scale a pointer filled in with the current color scale value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderColorScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderColorScale(SDL_Renderer *renderer, float *scale); + +/** + * Set the blend mode used for drawing operations (Fill and Line). + * + * If the blend mode is not supported, the closest supported mode is chosen. + * + * \param renderer the rendering context. + * \param blendMode the SDL_BlendMode to use for blending. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderDrawBlendMode(SDL_Renderer *renderer, SDL_BlendMode blendMode); + +/** + * Get the blend mode used for drawing operations. + * + * \param renderer the rendering context. + * \param blendMode a pointer filled in with the current SDL_BlendMode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderDrawBlendMode(SDL_Renderer *renderer, SDL_BlendMode *blendMode); + +/** + * Clear the current rendering target with the drawing color. + * + * This function clears the entire rendering target, ignoring the viewport and + * the clip rectangle. Note, that clearing will also set/fill all pixels of + * the rendering target to current renderer draw color, so make sure to invoke + * SDL_SetRenderDrawColor() when needed. + * + * \param renderer the rendering context. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderClear(SDL_Renderer *renderer); + +/** + * Draw a point on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw a point. + * \param x the x coordinate of the point. + * \param y the y coordinate of the point. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderPoints + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderPoint(SDL_Renderer *renderer, float x, float y); + +/** + * Draw multiple points on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw multiple points. + * \param points the points to draw. + * \param count the number of points to draw. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderPoint + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderPoints(SDL_Renderer *renderer, const SDL_FPoint *points, int count); + +/** + * Draw a line on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw a line. + * \param x1 the x coordinate of the start point. + * \param y1 the y coordinate of the start point. + * \param x2 the x coordinate of the end point. + * \param y2 the y coordinate of the end point. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderLines + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderLine(SDL_Renderer *renderer, float x1, float y1, float x2, float y2); + +/** + * Draw a series of connected lines on the current rendering target at + * subpixel precision. + * + * \param renderer the renderer which should draw multiple lines. + * \param points the points along the lines. + * \param count the number of points, drawing count-1 lines. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderLine + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderLines(SDL_Renderer *renderer, const SDL_FPoint *points, int count); + +/** + * Draw a rectangle on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw a rectangle. + * \param rect a pointer to the destination rectangle, or NULL to outline the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderRect(SDL_Renderer *renderer, const SDL_FRect *rect); + +/** + * Draw some number of rectangles on the current rendering target at subpixel + * precision. + * + * \param renderer the renderer which should draw multiple rectangles. + * \param rects a pointer to an array of destination rectangles. + * \param count the number of rectangles. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderRects(SDL_Renderer *renderer, const SDL_FRect *rects, int count); + +/** + * Fill a rectangle on the current rendering target with the drawing color at + * subpixel precision. + * + * \param renderer the renderer which should fill a rectangle. + * \param rect a pointer to the destination rectangle, or NULL for the entire + * rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderFillRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderFillRect(SDL_Renderer *renderer, const SDL_FRect *rect); + +/** + * Fill some number of rectangles on the current rendering target with the + * drawing color at subpixel precision. + * + * \param renderer the renderer which should fill multiple rectangles. + * \param rects a pointer to an array of destination rectangles. + * \param count the number of rectangles. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderFillRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderFillRects(SDL_Renderer *renderer, const SDL_FRect *rects, int count); + +/** + * Copy a portion of the texture to the current rendering target at subpixel + * precision. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTextureRotated + * \sa SDL_RenderTextureTiled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTexture(SDL_Renderer *renderer, SDL_Texture *texture, const SDL_FRect *srcrect, const SDL_FRect *dstrect); + +/** + * Copy a portion of the source texture to the current rendering target, with + * rotation and flipping, at subpixel precision. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \param angle an angle in degrees that indicates the rotation that will be + * applied to dstrect, rotating it in a clockwise direction. + * \param center a pointer to a point indicating the point around which + * dstrect will be rotated (if NULL, rotation will be done + * around dstrect.w/2, dstrect.h/2). + * \param flip an SDL_FlipMode value stating which flipping actions should be + * performed on the texture. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTextureRotated(SDL_Renderer *renderer, SDL_Texture *texture, + const SDL_FRect *srcrect, const SDL_FRect *dstrect, + double angle, const SDL_FPoint *center, + SDL_FlipMode flip); + +/** + * Copy a portion of the source texture to the current rendering target, with + * affine transform, at subpixel precision. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param origin a pointer to a point indicating where the top-left corner of + * srcrect should be mapped to, or NULL for the rendering + * target's origin. + * \param right a pointer to a point indicating where the top-right corner of + * srcrect should be mapped to, or NULL for the rendering + * target's top-right corner. + * \param down a pointer to a point indicating where the bottom-left corner of + * srcrect should be mapped to, or NULL for the rendering target's + * bottom-left corner. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety You may only call this function from the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTextureAffine(SDL_Renderer *renderer, SDL_Texture *texture, + const SDL_FRect *srcrect, const SDL_FPoint *origin, + const SDL_FPoint *right, const SDL_FPoint *down); + +/** + * Tile a portion of the texture to the current rendering target at subpixel + * precision. + * + * The pixels in `srcrect` will be repeated as many times as needed to + * completely fill `dstrect`. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param scale the scale used to transform srcrect into the destination + * rectangle, e.g. a 32x32 texture with a scale of 2 would fill + * 64x64 tiles. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTextureTiled(SDL_Renderer *renderer, SDL_Texture *texture, const SDL_FRect *srcrect, float scale, const SDL_FRect *dstrect); + +/** + * Perform a scaled copy using the 9-grid algorithm to the current rendering + * target at subpixel precision. + * + * The pixels in the texture are split into a 3x3 grid, using the different + * corner sizes for each corner, and the sides and center making up the + * remaining pixels. The corners are then scaled using `scale` and fit into + * the corners of the destination rectangle. The sides and center are then + * stretched into place to cover the remaining destination rectangle. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect the SDL_Rect structure representing the rectangle to be used + * for the 9-grid, or NULL to use the entire texture. + * \param left_width the width, in pixels, of the left corners in `srcrect`. + * \param right_width the width, in pixels, of the right corners in `srcrect`. + * \param top_height the height, in pixels, of the top corners in `srcrect`. + * \param bottom_height the height, in pixels, of the bottom corners in + * `srcrect`. + * \param scale the scale used to transform the corner of `srcrect` into the + * corner of `dstrect`, or 0.0f for an unscaled copy. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTexture9Grid(SDL_Renderer *renderer, SDL_Texture *texture, const SDL_FRect *srcrect, float left_width, float right_width, float top_height, float bottom_height, float scale, const SDL_FRect *dstrect); + +/** + * Render a list of triangles, optionally using a texture and indices into the + * vertex array Color and alpha modulation is done per vertex + * (SDL_SetTextureColorMod and SDL_SetTextureAlphaMod are ignored). + * + * \param renderer the rendering context. + * \param texture (optional) The SDL texture to use. + * \param vertices vertices. + * \param num_vertices number of vertices. + * \param indices (optional) An array of integer indices into the 'vertices' + * array, if NULL all vertices will be rendered in sequential + * order. + * \param num_indices number of indices. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderGeometryRaw + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderGeometry(SDL_Renderer *renderer, + SDL_Texture *texture, + const SDL_Vertex *vertices, int num_vertices, + const int *indices, int num_indices); + +/** + * Render a list of triangles, optionally using a texture and indices into the + * vertex arrays Color and alpha modulation is done per vertex + * (SDL_SetTextureColorMod and SDL_SetTextureAlphaMod are ignored). + * + * \param renderer the rendering context. + * \param texture (optional) The SDL texture to use. + * \param xy vertex positions. + * \param xy_stride byte size to move from one element to the next element. + * \param color vertex colors (as SDL_FColor). + * \param color_stride byte size to move from one element to the next element. + * \param uv vertex normalized texture coordinates. + * \param uv_stride byte size to move from one element to the next element. + * \param num_vertices number of vertices. + * \param indices (optional) An array of indices into the 'vertices' arrays, + * if NULL all vertices will be rendered in sequential order. + * \param num_indices number of indices. + * \param size_indices index size: 1 (byte), 2 (short), 4 (int). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderGeometry + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderGeometryRaw(SDL_Renderer *renderer, + SDL_Texture *texture, + const float *xy, int xy_stride, + const SDL_FColor *color, int color_stride, + const float *uv, int uv_stride, + int num_vertices, + const void *indices, int num_indices, int size_indices); + +/** + * Read pixels from the current rendering target. + * + * The returned surface contains pixels inside the desired area clipped to the + * current viewport, and should be freed with SDL_DestroySurface(). + * + * Note that this returns the actual pixels on the screen, so if you are using + * logical presentation you should use SDL_GetRenderLogicalPresentationRect() + * to get the area containing your content. + * + * **WARNING**: This is a very slow operation, and should not be used + * frequently. If you're using this on the main rendering target, it should be + * called after rendering and before SDL_RenderPresent(). + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure representing the area to read, which will + * be clipped to the current viewport, or NULL for the entire + * viewport. + * \returns a new SDL_Surface on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_RenderReadPixels(SDL_Renderer *renderer, const SDL_Rect *rect); + +/** + * Update the screen with any rendering performed since the previous call. + * + * SDL's rendering functions operate on a backbuffer; that is, calling a + * rendering function such as SDL_RenderLine() does not directly put a line on + * the screen, but rather updates the backbuffer. As such, you compose your + * entire scene and *present* the composed backbuffer to the screen as a + * complete picture. + * + * Therefore, when using SDL's rendering API, one does all drawing intended + * for the frame, and then calls this function once per frame to present the + * final drawing to the user. + * + * The backbuffer should be considered invalidated after each present; do not + * assume that previous contents will exist between frames. You are strongly + * encouraged to call SDL_RenderClear() to initialize the backbuffer before + * starting each new frame's drawing, even if you plan to overwrite every + * pixel. + * + * Please note, that in case of rendering to a texture - there is **no need** + * to call `SDL_RenderPresent` after drawing needed objects to a texture, and + * should not be done; you are only required to change back the rendering + * target to default via `SDL_SetRenderTarget(renderer, NULL)` afterwards, as + * textures by themselves do not have a concept of backbuffers. Calling + * SDL_RenderPresent while rendering to a texture will still update the screen + * with any current drawing that has been done _to the window itself_. + * + * \param renderer the rendering context. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_RenderClear + * \sa SDL_RenderFillRect + * \sa SDL_RenderFillRects + * \sa SDL_RenderLine + * \sa SDL_RenderLines + * \sa SDL_RenderPoint + * \sa SDL_RenderPoints + * \sa SDL_RenderRect + * \sa SDL_RenderRects + * \sa SDL_SetRenderDrawBlendMode + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderPresent(SDL_Renderer *renderer); + +/** + * Destroy the specified texture. + * + * Passing NULL or an otherwise invalid texture will set the SDL error message + * to "Invalid texture". + * + * \param texture the texture to destroy. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureFromSurface + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyTexture(SDL_Texture *texture); + +/** + * Destroy the rendering context for a window and free all associated + * textures. + * + * This should be called before destroying the associated window. + * + * \param renderer the rendering context. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyRenderer(SDL_Renderer *renderer); + +/** + * Force the rendering context to flush any pending commands and state. + * + * You do not need to (and in fact, shouldn't) call this function unless you + * are planning to call into OpenGL/Direct3D/Metal/whatever directly, in + * addition to using an SDL_Renderer. + * + * This is for a very-specific case: if you are using SDL's render API, and + * you plan to make OpenGL/D3D/whatever calls in addition to SDL render API + * calls. If this applies, you should call this function between calls to + * SDL's render API and the low-level API you're using in cooperation. + * + * In all other cases, you can ignore this function. + * + * This call makes SDL flush any pending rendering work it was queueing up to + * do later in a single batch, and marks any internal cached state as invalid, + * so it'll prepare all its state again later, from scratch. + * + * This means you do not need to save state in your rendering code to protect + * the SDL renderer. However, there lots of arbitrary pieces of Direct3D and + * OpenGL state that can confuse things; you should use your best judgment and + * be prepared to make changes if specific state needs to be protected. + * + * \param renderer the rendering context. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlushRenderer(SDL_Renderer *renderer); + +/** + * Get the CAMetalLayer associated with the given Metal renderer. + * + * This function returns `void *`, so SDL doesn't have to include Metal's + * headers, but it can be safely cast to a `CAMetalLayer *`. + * + * \param renderer the renderer to query. + * \returns a `CAMetalLayer *` on success, or NULL if the renderer isn't a + * Metal renderer. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderMetalCommandEncoder + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetRenderMetalLayer(SDL_Renderer *renderer); + +/** + * Get the Metal command encoder for the current frame. + * + * This function returns `void *`, so SDL doesn't have to include Metal's + * headers, but it can be safely cast to an `id`. + * + * This will return NULL if Metal refuses to give SDL a drawable to render to, + * which might happen if the window is hidden/minimized/offscreen. This + * doesn't apply to command encoders for render targets, just the window's + * backbuffer. Check your return values! + * + * \param renderer the renderer to query. + * \returns an `id` on success, or NULL if the + * renderer isn't a Metal renderer or there was an error. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderMetalLayer + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetRenderMetalCommandEncoder(SDL_Renderer *renderer); + + +/** + * Add a set of synchronization semaphores for the current frame. + * + * The Vulkan renderer will wait for `wait_semaphore` before submitting + * rendering commands and signal `signal_semaphore` after rendering commands + * are complete for this frame. + * + * This should be called each frame that you want semaphore synchronization. + * The Vulkan renderer may have multiple frames in flight on the GPU, so you + * should have multiple semaphores that are used for synchronization. Querying + * SDL_PROP_RENDERER_VULKAN_SWAPCHAIN_IMAGE_COUNT_NUMBER will give you the + * maximum number of semaphores you'll need. + * + * \param renderer the rendering context. + * \param wait_stage_mask the VkPipelineStageFlags for the wait. + * \param wait_semaphore a VkSempahore to wait on before rendering the current + * frame, or 0 if not needed. + * \param signal_semaphore a VkSempahore that SDL will signal when rendering + * for the current frame is complete, or 0 if not + * needed. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is **NOT** safe to call this function from two threads at + * once. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddVulkanRenderSemaphores(SDL_Renderer *renderer, Uint32 wait_stage_mask, Sint64 wait_semaphore, Sint64 signal_semaphore); + +/** + * Toggle VSync of the given renderer. + * + * When a renderer is created, vsync defaults to SDL_RENDERER_VSYNC_DISABLED. + * + * The `vsync` parameter can be 1 to synchronize present with every vertical + * refresh, 2 to synchronize present with every second vertical refresh, etc., + * SDL_RENDERER_VSYNC_ADAPTIVE for late swap tearing (adaptive vsync), or + * SDL_RENDERER_VSYNC_DISABLED to disable. Not every value is supported by + * every driver, so you should check the return value to see whether the + * requested setting is supported. + * + * \param renderer the renderer to toggle. + * \param vsync the vertical refresh sync interval. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderVSync(SDL_Renderer *renderer, int vsync); + +#define SDL_RENDERER_VSYNC_DISABLED 0 +#define SDL_RENDERER_VSYNC_ADAPTIVE (-1) + +/** + * Get VSync of the given renderer. + * + * \param renderer the renderer to toggle. + * \param vsync an int filled with the current vertical refresh sync interval. + * See SDL_SetRenderVSync() for the meaning of the value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderVSync(SDL_Renderer *renderer, int *vsync); + +/** + * The size, in pixels, of a single SDL_RenderDebugText() character. + * + * The font is monospaced and square, so this applies to all characters. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_RenderDebugText + */ +#define SDL_DEBUG_TEXT_FONT_CHARACTER_SIZE 8 + +/** + * Draw debug text to an SDL_Renderer. + * + * This function will render a string of text to an SDL_Renderer. Note that + * this is a convenience function for debugging, with severe limitations, and + * not intended to be used for production apps and games. + * + * Among these limitations: + * + * - It accepts UTF-8 strings, but will only renders ASCII characters. + * - It has a single, tiny size (8x8 pixels). One can use logical presentation + * or scaling to adjust it, but it will be blurry. + * - It uses a simple, hardcoded bitmap font. It does not allow different font + * selections and it does not support truetype, for proper scaling. + * - It does no word-wrapping and does not treat newline characters as a line + * break. If the text goes out of the window, it's gone. + * + * For serious text rendering, there are several good options, such as + * SDL_ttf, stb_truetype, or other external libraries. + * + * On first use, this will create an internal texture for rendering glyphs. + * This texture will live until the renderer is destroyed. + * + * The text is drawn in the color specified by SDL_SetRenderDrawColor(). + * + * \param renderer the renderer which should draw a line of text. + * \param x the x coordinate where the top-left corner of the text will draw. + * \param y the y coordinate where the top-left corner of the text will draw. + * \param str the string to render. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderDebugTextFormat + * \sa SDL_DEBUG_TEXT_FONT_CHARACTER_SIZE + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderDebugText(SDL_Renderer *renderer, float x, float y, const char *str); + +/** + * Draw debug text to an SDL_Renderer. + * + * This function will render a printf()-style format string to a renderer. + * Note that this is a convinence function for debugging, with severe + * limitations, and is not intended to be used for production apps and games. + * + * For the full list of limitations and other useful information, see + * SDL_RenderDebugText. + * + * \param renderer the renderer which should draw the text. + * \param x the x coordinate where the top-left corner of the text will draw. + * \param y the y coordinate where the top-left corner of the text will draw. + * \param fmt the format string to draw. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderDebugText + * \sa SDL_DEBUG_TEXT_FONT_CHARACTER_SIZE + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderDebugTextFormat(SDL_Renderer *renderer, float x, float y, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(4); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_render_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_revision.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_revision.h new file mode 100644 index 0000000..bcccca1 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_revision.h @@ -0,0 +1,56 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Version */ + +/* + * SDL_revision.h contains the SDL revision, which might be defined on the + * compiler command line, or generated right into the header itself by the + * build system. + */ + +#ifndef SDL_revision_h_ +#define SDL_revision_h_ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * This macro is a string describing the source at a particular point in + * development. + * + * This string is often generated from revision control's state at build time. + * + * This string can be quite complex and does not follow any standard. For + * example, it might be something like "SDL-prerelease-3.1.1-47-gf687e0732". + * It might also be user-defined at build time, so it's best to treat it as a + * clue in debugging forensics and not something the app will parse in any + * way. + * + * \since This macro is available since SDL 3.0.0. + */ +#define SDL_REVISION "Some arbitrary string decided at SDL build time" +#elif defined(SDL_VENDOR_INFO) +#define SDL_REVISION "release-3.2.20-0-g96292a5b4 (" SDL_VENDOR_INFO ")" +#else +#define SDL_REVISION "release-3.2.20-0-g96292a5b4" +#endif + +#endif /* SDL_revision_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_scancode.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_scancode.h new file mode 100644 index 0000000..6e9be47 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_scancode.h @@ -0,0 +1,429 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryScancode + * + * Defines keyboard scancodes. + * + * Please refer to the Best Keyboard Practices document for details on what + * this information means and how best to use it. + * + * https://wiki.libsdl.org/SDL3/BestKeyboardPractices + */ + +#ifndef SDL_scancode_h_ +#define SDL_scancode_h_ + +#include + +/** + * The SDL keyboard scancode representation. + * + * An SDL scancode is the physical representation of a key on the keyboard, + * independent of language and keyboard mapping. + * + * Values of this type are used to represent keyboard keys, among other places + * in the `scancode` field of the SDL_KeyboardEvent structure. + * + * The values in this enumeration are based on the USB usage page standard: + * https://usb.org/sites/default/files/hut1_5.pdf + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_Scancode +{ + SDL_SCANCODE_UNKNOWN = 0, + + /** + * \name Usage page 0x07 + * + * These values are from usage page 0x07 (USB keyboard page). + */ + /* @{ */ + + SDL_SCANCODE_A = 4, + SDL_SCANCODE_B = 5, + SDL_SCANCODE_C = 6, + SDL_SCANCODE_D = 7, + SDL_SCANCODE_E = 8, + SDL_SCANCODE_F = 9, + SDL_SCANCODE_G = 10, + SDL_SCANCODE_H = 11, + SDL_SCANCODE_I = 12, + SDL_SCANCODE_J = 13, + SDL_SCANCODE_K = 14, + SDL_SCANCODE_L = 15, + SDL_SCANCODE_M = 16, + SDL_SCANCODE_N = 17, + SDL_SCANCODE_O = 18, + SDL_SCANCODE_P = 19, + SDL_SCANCODE_Q = 20, + SDL_SCANCODE_R = 21, + SDL_SCANCODE_S = 22, + SDL_SCANCODE_T = 23, + SDL_SCANCODE_U = 24, + SDL_SCANCODE_V = 25, + SDL_SCANCODE_W = 26, + SDL_SCANCODE_X = 27, + SDL_SCANCODE_Y = 28, + SDL_SCANCODE_Z = 29, + + SDL_SCANCODE_1 = 30, + SDL_SCANCODE_2 = 31, + SDL_SCANCODE_3 = 32, + SDL_SCANCODE_4 = 33, + SDL_SCANCODE_5 = 34, + SDL_SCANCODE_6 = 35, + SDL_SCANCODE_7 = 36, + SDL_SCANCODE_8 = 37, + SDL_SCANCODE_9 = 38, + SDL_SCANCODE_0 = 39, + + SDL_SCANCODE_RETURN = 40, + SDL_SCANCODE_ESCAPE = 41, + SDL_SCANCODE_BACKSPACE = 42, + SDL_SCANCODE_TAB = 43, + SDL_SCANCODE_SPACE = 44, + + SDL_SCANCODE_MINUS = 45, + SDL_SCANCODE_EQUALS = 46, + SDL_SCANCODE_LEFTBRACKET = 47, + SDL_SCANCODE_RIGHTBRACKET = 48, + SDL_SCANCODE_BACKSLASH = 49, /**< Located at the lower left of the return + * key on ISO keyboards and at the right end + * of the QWERTY row on ANSI keyboards. + * Produces REVERSE SOLIDUS (backslash) and + * VERTICAL LINE in a US layout, REVERSE + * SOLIDUS and VERTICAL LINE in a UK Mac + * layout, NUMBER SIGN and TILDE in a UK + * Windows layout, DOLLAR SIGN and POUND SIGN + * in a Swiss German layout, NUMBER SIGN and + * APOSTROPHE in a German layout, GRAVE + * ACCENT and POUND SIGN in a French Mac + * layout, and ASTERISK and MICRO SIGN in a + * French Windows layout. + */ + SDL_SCANCODE_NONUSHASH = 50, /**< ISO USB keyboards actually use this code + * instead of 49 for the same key, but all + * OSes I've seen treat the two codes + * identically. So, as an implementor, unless + * your keyboard generates both of those + * codes and your OS treats them differently, + * you should generate SDL_SCANCODE_BACKSLASH + * instead of this code. As a user, you + * should not rely on this code because SDL + * will never generate it with most (all?) + * keyboards. + */ + SDL_SCANCODE_SEMICOLON = 51, + SDL_SCANCODE_APOSTROPHE = 52, + SDL_SCANCODE_GRAVE = 53, /**< Located in the top left corner (on both ANSI + * and ISO keyboards). Produces GRAVE ACCENT and + * TILDE in a US Windows layout and in US and UK + * Mac layouts on ANSI keyboards, GRAVE ACCENT + * and NOT SIGN in a UK Windows layout, SECTION + * SIGN and PLUS-MINUS SIGN in US and UK Mac + * layouts on ISO keyboards, SECTION SIGN and + * DEGREE SIGN in a Swiss German layout (Mac: + * only on ISO keyboards), CIRCUMFLEX ACCENT and + * DEGREE SIGN in a German layout (Mac: only on + * ISO keyboards), SUPERSCRIPT TWO and TILDE in a + * French Windows layout, COMMERCIAL AT and + * NUMBER SIGN in a French Mac layout on ISO + * keyboards, and LESS-THAN SIGN and GREATER-THAN + * SIGN in a Swiss German, German, or French Mac + * layout on ANSI keyboards. + */ + SDL_SCANCODE_COMMA = 54, + SDL_SCANCODE_PERIOD = 55, + SDL_SCANCODE_SLASH = 56, + + SDL_SCANCODE_CAPSLOCK = 57, + + SDL_SCANCODE_F1 = 58, + SDL_SCANCODE_F2 = 59, + SDL_SCANCODE_F3 = 60, + SDL_SCANCODE_F4 = 61, + SDL_SCANCODE_F5 = 62, + SDL_SCANCODE_F6 = 63, + SDL_SCANCODE_F7 = 64, + SDL_SCANCODE_F8 = 65, + SDL_SCANCODE_F9 = 66, + SDL_SCANCODE_F10 = 67, + SDL_SCANCODE_F11 = 68, + SDL_SCANCODE_F12 = 69, + + SDL_SCANCODE_PRINTSCREEN = 70, + SDL_SCANCODE_SCROLLLOCK = 71, + SDL_SCANCODE_PAUSE = 72, + SDL_SCANCODE_INSERT = 73, /**< insert on PC, help on some Mac keyboards (but + does send code 73, not 117) */ + SDL_SCANCODE_HOME = 74, + SDL_SCANCODE_PAGEUP = 75, + SDL_SCANCODE_DELETE = 76, + SDL_SCANCODE_END = 77, + SDL_SCANCODE_PAGEDOWN = 78, + SDL_SCANCODE_RIGHT = 79, + SDL_SCANCODE_LEFT = 80, + SDL_SCANCODE_DOWN = 81, + SDL_SCANCODE_UP = 82, + + SDL_SCANCODE_NUMLOCKCLEAR = 83, /**< num lock on PC, clear on Mac keyboards + */ + SDL_SCANCODE_KP_DIVIDE = 84, + SDL_SCANCODE_KP_MULTIPLY = 85, + SDL_SCANCODE_KP_MINUS = 86, + SDL_SCANCODE_KP_PLUS = 87, + SDL_SCANCODE_KP_ENTER = 88, + SDL_SCANCODE_KP_1 = 89, + SDL_SCANCODE_KP_2 = 90, + SDL_SCANCODE_KP_3 = 91, + SDL_SCANCODE_KP_4 = 92, + SDL_SCANCODE_KP_5 = 93, + SDL_SCANCODE_KP_6 = 94, + SDL_SCANCODE_KP_7 = 95, + SDL_SCANCODE_KP_8 = 96, + SDL_SCANCODE_KP_9 = 97, + SDL_SCANCODE_KP_0 = 98, + SDL_SCANCODE_KP_PERIOD = 99, + + SDL_SCANCODE_NONUSBACKSLASH = 100, /**< This is the additional key that ISO + * keyboards have over ANSI ones, + * located between left shift and Z. + * Produces GRAVE ACCENT and TILDE in a + * US or UK Mac layout, REVERSE SOLIDUS + * (backslash) and VERTICAL LINE in a + * US or UK Windows layout, and + * LESS-THAN SIGN and GREATER-THAN SIGN + * in a Swiss German, German, or French + * layout. */ + SDL_SCANCODE_APPLICATION = 101, /**< windows contextual menu, compose */ + SDL_SCANCODE_POWER = 102, /**< The USB document says this is a status flag, + * not a physical key - but some Mac keyboards + * do have a power key. */ + SDL_SCANCODE_KP_EQUALS = 103, + SDL_SCANCODE_F13 = 104, + SDL_SCANCODE_F14 = 105, + SDL_SCANCODE_F15 = 106, + SDL_SCANCODE_F16 = 107, + SDL_SCANCODE_F17 = 108, + SDL_SCANCODE_F18 = 109, + SDL_SCANCODE_F19 = 110, + SDL_SCANCODE_F20 = 111, + SDL_SCANCODE_F21 = 112, + SDL_SCANCODE_F22 = 113, + SDL_SCANCODE_F23 = 114, + SDL_SCANCODE_F24 = 115, + SDL_SCANCODE_EXECUTE = 116, + SDL_SCANCODE_HELP = 117, /**< AL Integrated Help Center */ + SDL_SCANCODE_MENU = 118, /**< Menu (show menu) */ + SDL_SCANCODE_SELECT = 119, + SDL_SCANCODE_STOP = 120, /**< AC Stop */ + SDL_SCANCODE_AGAIN = 121, /**< AC Redo/Repeat */ + SDL_SCANCODE_UNDO = 122, /**< AC Undo */ + SDL_SCANCODE_CUT = 123, /**< AC Cut */ + SDL_SCANCODE_COPY = 124, /**< AC Copy */ + SDL_SCANCODE_PASTE = 125, /**< AC Paste */ + SDL_SCANCODE_FIND = 126, /**< AC Find */ + SDL_SCANCODE_MUTE = 127, + SDL_SCANCODE_VOLUMEUP = 128, + SDL_SCANCODE_VOLUMEDOWN = 129, +/* not sure whether there's a reason to enable these */ +/* SDL_SCANCODE_LOCKINGCAPSLOCK = 130, */ +/* SDL_SCANCODE_LOCKINGNUMLOCK = 131, */ +/* SDL_SCANCODE_LOCKINGSCROLLLOCK = 132, */ + SDL_SCANCODE_KP_COMMA = 133, + SDL_SCANCODE_KP_EQUALSAS400 = 134, + + SDL_SCANCODE_INTERNATIONAL1 = 135, /**< used on Asian keyboards, see + footnotes in USB doc */ + SDL_SCANCODE_INTERNATIONAL2 = 136, + SDL_SCANCODE_INTERNATIONAL3 = 137, /**< Yen */ + SDL_SCANCODE_INTERNATIONAL4 = 138, + SDL_SCANCODE_INTERNATIONAL5 = 139, + SDL_SCANCODE_INTERNATIONAL6 = 140, + SDL_SCANCODE_INTERNATIONAL7 = 141, + SDL_SCANCODE_INTERNATIONAL8 = 142, + SDL_SCANCODE_INTERNATIONAL9 = 143, + SDL_SCANCODE_LANG1 = 144, /**< Hangul/English toggle */ + SDL_SCANCODE_LANG2 = 145, /**< Hanja conversion */ + SDL_SCANCODE_LANG3 = 146, /**< Katakana */ + SDL_SCANCODE_LANG4 = 147, /**< Hiragana */ + SDL_SCANCODE_LANG5 = 148, /**< Zenkaku/Hankaku */ + SDL_SCANCODE_LANG6 = 149, /**< reserved */ + SDL_SCANCODE_LANG7 = 150, /**< reserved */ + SDL_SCANCODE_LANG8 = 151, /**< reserved */ + SDL_SCANCODE_LANG9 = 152, /**< reserved */ + + SDL_SCANCODE_ALTERASE = 153, /**< Erase-Eaze */ + SDL_SCANCODE_SYSREQ = 154, + SDL_SCANCODE_CANCEL = 155, /**< AC Cancel */ + SDL_SCANCODE_CLEAR = 156, + SDL_SCANCODE_PRIOR = 157, + SDL_SCANCODE_RETURN2 = 158, + SDL_SCANCODE_SEPARATOR = 159, + SDL_SCANCODE_OUT = 160, + SDL_SCANCODE_OPER = 161, + SDL_SCANCODE_CLEARAGAIN = 162, + SDL_SCANCODE_CRSEL = 163, + SDL_SCANCODE_EXSEL = 164, + + SDL_SCANCODE_KP_00 = 176, + SDL_SCANCODE_KP_000 = 177, + SDL_SCANCODE_THOUSANDSSEPARATOR = 178, + SDL_SCANCODE_DECIMALSEPARATOR = 179, + SDL_SCANCODE_CURRENCYUNIT = 180, + SDL_SCANCODE_CURRENCYSUBUNIT = 181, + SDL_SCANCODE_KP_LEFTPAREN = 182, + SDL_SCANCODE_KP_RIGHTPAREN = 183, + SDL_SCANCODE_KP_LEFTBRACE = 184, + SDL_SCANCODE_KP_RIGHTBRACE = 185, + SDL_SCANCODE_KP_TAB = 186, + SDL_SCANCODE_KP_BACKSPACE = 187, + SDL_SCANCODE_KP_A = 188, + SDL_SCANCODE_KP_B = 189, + SDL_SCANCODE_KP_C = 190, + SDL_SCANCODE_KP_D = 191, + SDL_SCANCODE_KP_E = 192, + SDL_SCANCODE_KP_F = 193, + SDL_SCANCODE_KP_XOR = 194, + SDL_SCANCODE_KP_POWER = 195, + SDL_SCANCODE_KP_PERCENT = 196, + SDL_SCANCODE_KP_LESS = 197, + SDL_SCANCODE_KP_GREATER = 198, + SDL_SCANCODE_KP_AMPERSAND = 199, + SDL_SCANCODE_KP_DBLAMPERSAND = 200, + SDL_SCANCODE_KP_VERTICALBAR = 201, + SDL_SCANCODE_KP_DBLVERTICALBAR = 202, + SDL_SCANCODE_KP_COLON = 203, + SDL_SCANCODE_KP_HASH = 204, + SDL_SCANCODE_KP_SPACE = 205, + SDL_SCANCODE_KP_AT = 206, + SDL_SCANCODE_KP_EXCLAM = 207, + SDL_SCANCODE_KP_MEMSTORE = 208, + SDL_SCANCODE_KP_MEMRECALL = 209, + SDL_SCANCODE_KP_MEMCLEAR = 210, + SDL_SCANCODE_KP_MEMADD = 211, + SDL_SCANCODE_KP_MEMSUBTRACT = 212, + SDL_SCANCODE_KP_MEMMULTIPLY = 213, + SDL_SCANCODE_KP_MEMDIVIDE = 214, + SDL_SCANCODE_KP_PLUSMINUS = 215, + SDL_SCANCODE_KP_CLEAR = 216, + SDL_SCANCODE_KP_CLEARENTRY = 217, + SDL_SCANCODE_KP_BINARY = 218, + SDL_SCANCODE_KP_OCTAL = 219, + SDL_SCANCODE_KP_DECIMAL = 220, + SDL_SCANCODE_KP_HEXADECIMAL = 221, + + SDL_SCANCODE_LCTRL = 224, + SDL_SCANCODE_LSHIFT = 225, + SDL_SCANCODE_LALT = 226, /**< alt, option */ + SDL_SCANCODE_LGUI = 227, /**< windows, command (apple), meta */ + SDL_SCANCODE_RCTRL = 228, + SDL_SCANCODE_RSHIFT = 229, + SDL_SCANCODE_RALT = 230, /**< alt gr, option */ + SDL_SCANCODE_RGUI = 231, /**< windows, command (apple), meta */ + + SDL_SCANCODE_MODE = 257, /**< I'm not sure if this is really not covered + * by any of the above, but since there's a + * special SDL_KMOD_MODE for it I'm adding it here + */ + + /* @} *//* Usage page 0x07 */ + + /** + * \name Usage page 0x0C + * + * These values are mapped from usage page 0x0C (USB consumer page). + * + * There are way more keys in the spec than we can represent in the + * current scancode range, so pick the ones that commonly come up in + * real world usage. + */ + /* @{ */ + + SDL_SCANCODE_SLEEP = 258, /**< Sleep */ + SDL_SCANCODE_WAKE = 259, /**< Wake */ + + SDL_SCANCODE_CHANNEL_INCREMENT = 260, /**< Channel Increment */ + SDL_SCANCODE_CHANNEL_DECREMENT = 261, /**< Channel Decrement */ + + SDL_SCANCODE_MEDIA_PLAY = 262, /**< Play */ + SDL_SCANCODE_MEDIA_PAUSE = 263, /**< Pause */ + SDL_SCANCODE_MEDIA_RECORD = 264, /**< Record */ + SDL_SCANCODE_MEDIA_FAST_FORWARD = 265, /**< Fast Forward */ + SDL_SCANCODE_MEDIA_REWIND = 266, /**< Rewind */ + SDL_SCANCODE_MEDIA_NEXT_TRACK = 267, /**< Next Track */ + SDL_SCANCODE_MEDIA_PREVIOUS_TRACK = 268, /**< Previous Track */ + SDL_SCANCODE_MEDIA_STOP = 269, /**< Stop */ + SDL_SCANCODE_MEDIA_EJECT = 270, /**< Eject */ + SDL_SCANCODE_MEDIA_PLAY_PAUSE = 271, /**< Play / Pause */ + SDL_SCANCODE_MEDIA_SELECT = 272, /* Media Select */ + + SDL_SCANCODE_AC_NEW = 273, /**< AC New */ + SDL_SCANCODE_AC_OPEN = 274, /**< AC Open */ + SDL_SCANCODE_AC_CLOSE = 275, /**< AC Close */ + SDL_SCANCODE_AC_EXIT = 276, /**< AC Exit */ + SDL_SCANCODE_AC_SAVE = 277, /**< AC Save */ + SDL_SCANCODE_AC_PRINT = 278, /**< AC Print */ + SDL_SCANCODE_AC_PROPERTIES = 279, /**< AC Properties */ + + SDL_SCANCODE_AC_SEARCH = 280, /**< AC Search */ + SDL_SCANCODE_AC_HOME = 281, /**< AC Home */ + SDL_SCANCODE_AC_BACK = 282, /**< AC Back */ + SDL_SCANCODE_AC_FORWARD = 283, /**< AC Forward */ + SDL_SCANCODE_AC_STOP = 284, /**< AC Stop */ + SDL_SCANCODE_AC_REFRESH = 285, /**< AC Refresh */ + SDL_SCANCODE_AC_BOOKMARKS = 286, /**< AC Bookmarks */ + + /* @} *//* Usage page 0x0C */ + + + /** + * \name Mobile keys + * + * These are values that are often used on mobile phones. + */ + /* @{ */ + + SDL_SCANCODE_SOFTLEFT = 287, /**< Usually situated below the display on phones and + used as a multi-function feature key for selecting + a software defined function shown on the bottom left + of the display. */ + SDL_SCANCODE_SOFTRIGHT = 288, /**< Usually situated below the display on phones and + used as a multi-function feature key for selecting + a software defined function shown on the bottom right + of the display. */ + SDL_SCANCODE_CALL = 289, /**< Used for accepting phone calls. */ + SDL_SCANCODE_ENDCALL = 290, /**< Used for rejecting phone calls. */ + + /* @} *//* Mobile keys */ + + /* Add any other keys here. */ + + SDL_SCANCODE_RESERVED = 400, /**< 400-500 reserved for dynamic keycodes */ + + SDL_SCANCODE_COUNT = 512 /**< not a key, just marks the number of scancodes for array bounds */ + +} SDL_Scancode; + +#endif /* SDL_scancode_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_sensor.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_sensor.h new file mode 100644 index 0000000..b220f05 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_sensor.h @@ -0,0 +1,320 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategorySensor + * + * SDL sensor management. + * + * These APIs grant access to gyros and accelerometers on various platforms. + * + * In order to use these functions, SDL_Init() must have been called with the + * SDL_INIT_SENSOR flag. This causes SDL to scan the system for sensors, and + * load appropriate drivers. + */ + +#ifndef SDL_sensor_h_ +#define SDL_sensor_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +extern "C" { +/* *INDENT-ON* */ +#endif + +/** + * The opaque structure used to identify an opened SDL sensor. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Sensor SDL_Sensor; + +/** + * This is a unique ID for a sensor for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_SensorID; + +/** + * A constant to represent standard gravity for accelerometer sensors. + * + * The accelerometer returns the current acceleration in SI meters per second + * squared. This measurement includes the force of gravity, so a device at + * rest will have an value of SDL_STANDARD_GRAVITY away from the center of the + * earth, which is a positive Y value. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_STANDARD_GRAVITY 9.80665f + +/** + * The different sensors defined by SDL. + * + * Additional sensors may be available, using platform dependent semantics. + * + * Here are the additional Android sensors: + * + * https://developer.android.com/reference/android/hardware/SensorEvent.html#values + * + * Accelerometer sensor notes: + * + * The accelerometer returns the current acceleration in SI meters per second + * squared. This measurement includes the force of gravity, so a device at + * rest will have an value of SDL_STANDARD_GRAVITY away from the center of the + * earth, which is a positive Y value. + * + * - `values[0]`: Acceleration on the x axis + * - `values[1]`: Acceleration on the y axis + * - `values[2]`: Acceleration on the z axis + * + * For phones and tablets held in natural orientation and game controllers + * held in front of you, the axes are defined as follows: + * + * - -X ... +X : left ... right + * - -Y ... +Y : bottom ... top + * - -Z ... +Z : farther ... closer + * + * The accelerometer axis data is not changed when the device is rotated. + * + * Gyroscope sensor notes: + * + * The gyroscope returns the current rate of rotation in radians per second. + * The rotation is positive in the counter-clockwise direction. That is, an + * observer looking from a positive location on one of the axes would see + * positive rotation on that axis when it appeared to be rotating + * counter-clockwise. + * + * - `values[0]`: Angular speed around the x axis (pitch) + * - `values[1]`: Angular speed around the y axis (yaw) + * - `values[2]`: Angular speed around the z axis (roll) + * + * For phones and tablets held in natural orientation and game controllers + * held in front of you, the axes are defined as follows: + * + * - -X ... +X : left ... right + * - -Y ... +Y : bottom ... top + * - -Z ... +Z : farther ... closer + * + * The gyroscope axis data is not changed when the device is rotated. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentDisplayOrientation + */ +typedef enum SDL_SensorType +{ + SDL_SENSOR_INVALID = -1, /**< Returned for an invalid sensor */ + SDL_SENSOR_UNKNOWN, /**< Unknown sensor type */ + SDL_SENSOR_ACCEL, /**< Accelerometer */ + SDL_SENSOR_GYRO, /**< Gyroscope */ + SDL_SENSOR_ACCEL_L, /**< Accelerometer for left Joy-Con controller and Wii nunchuk */ + SDL_SENSOR_GYRO_L, /**< Gyroscope for left Joy-Con controller */ + SDL_SENSOR_ACCEL_R, /**< Accelerometer for right Joy-Con controller */ + SDL_SENSOR_GYRO_R /**< Gyroscope for right Joy-Con controller */ +} SDL_SensorType; + + +/* Function prototypes */ + +/** + * Get a list of currently connected sensors. + * + * \param count a pointer filled in with the number of sensors returned, may + * be NULL. + * \returns a 0 terminated array of sensor instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorID * SDLCALL SDL_GetSensors(int *count); + +/** + * Get the implementation dependent name of a sensor. + * + * This can be called before any sensors are opened. + * + * \param instance_id the sensor instance ID. + * \returns the sensor name, or NULL if `instance_id` is not valid. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetSensorNameForID(SDL_SensorID instance_id); + +/** + * Get the type of a sensor. + * + * This can be called before any sensors are opened. + * + * \param instance_id the sensor instance ID. + * \returns the SDL_SensorType, or `SDL_SENSOR_INVALID` if `instance_id` is + * not valid. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorType SDLCALL SDL_GetSensorTypeForID(SDL_SensorID instance_id); + +/** + * Get the platform dependent type of a sensor. + * + * This can be called before any sensors are opened. + * + * \param instance_id the sensor instance ID. + * \returns the sensor platform dependent type, or -1 if `instance_id` is not + * valid. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSensorNonPortableTypeForID(SDL_SensorID instance_id); + +/** + * Open a sensor for use. + * + * \param instance_id the sensor instance ID. + * \returns an SDL_Sensor object or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Sensor * SDLCALL SDL_OpenSensor(SDL_SensorID instance_id); + +/** + * Return the SDL_Sensor associated with an instance ID. + * + * \param instance_id the sensor instance ID. + * \returns an SDL_Sensor object or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Sensor * SDLCALL SDL_GetSensorFromID(SDL_SensorID instance_id); + +/** + * Get the properties associated with a sensor. + * + * \param sensor the SDL_Sensor object. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetSensorProperties(SDL_Sensor *sensor); + +/** + * Get the implementation dependent name of a sensor. + * + * \param sensor the SDL_Sensor object. + * \returns the sensor name or NULL on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetSensorName(SDL_Sensor *sensor); + +/** + * Get the type of a sensor. + * + * \param sensor the SDL_Sensor object to inspect. + * \returns the SDL_SensorType type, or `SDL_SENSOR_INVALID` if `sensor` is + * NULL. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorType SDLCALL SDL_GetSensorType(SDL_Sensor *sensor); + +/** + * Get the platform dependent type of a sensor. + * + * \param sensor the SDL_Sensor object to inspect. + * \returns the sensor platform dependent type, or -1 if `sensor` is NULL. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSensorNonPortableType(SDL_Sensor *sensor); + +/** + * Get the instance ID of a sensor. + * + * \param sensor the SDL_Sensor object to inspect. + * \returns the sensor instance ID, or 0 on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorID SDLCALL SDL_GetSensorID(SDL_Sensor *sensor); + +/** + * Get the current state of an opened sensor. + * + * The number of values and interpretation of the data is sensor dependent. + * + * \param sensor the SDL_Sensor object to query. + * \param data a pointer filled with the current sensor state. + * \param num_values the number of values to write to data. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSensorData(SDL_Sensor *sensor, float *data, int num_values); + +/** + * Close a sensor previously opened with SDL_OpenSensor(). + * + * \param sensor the SDL_Sensor object to close. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseSensor(SDL_Sensor *sensor); + +/** + * Update the current state of the open sensors. + * + * This is called automatically by the event loop if sensor events are + * enabled. + * + * This needs to be called from the thread that initialized the sensor + * subsystem. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateSensors(void); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +} +/* *INDENT-ON* */ +#endif +#include + +#endif /* SDL_sensor_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_stdinc.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_stdinc.h new file mode 100644 index 0000000..7df253f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_stdinc.h @@ -0,0 +1,6137 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryStdinc + * + * SDL provides its own implementation of some of the most important C runtime + * functions. + * + * Using these functions allows an app to have access to common C + * functionality without depending on a specific C runtime (or a C runtime at + * all). More importantly, the SDL implementations work identically across + * platforms, so apps can avoid surprises like snprintf() behaving differently + * between Windows and Linux builds, or itoa() only existing on some + * platforms. + * + * For many of the most common functions, like SDL_memcpy, SDL might just call + * through to the usual C runtime behind the scenes, if it makes sense to do + * so (if it's faster and always available/reliable on a given platform), + * reducing library size and offering the most optimized option. + * + * SDL also offers other C-runtime-adjacent functionality in this header that + * either isn't, strictly speaking, part of any C runtime standards, like + * SDL_crc32() and SDL_reinterpret_cast, etc. It also offers a few better + * options, like SDL_strlcpy(), which functions as a safer form of strcpy(). + */ + +#ifndef SDL_stdinc_h_ +#define SDL_stdinc_h_ + +#include + +#include +#include +#include +#include + +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ + defined(SDL_INCLUDE_INTTYPES_H) +#include +#endif + +#ifndef __cplusplus +#if defined(__has_include) && !defined(SDL_INCLUDE_STDBOOL_H) +#if __has_include() +#define SDL_INCLUDE_STDBOOL_H +#endif +#endif +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ + (defined(_MSC_VER) && (_MSC_VER >= 1910 /* Visual Studio 2017 */)) || \ + defined(SDL_INCLUDE_STDBOOL_H) +#include +#elif !defined(__bool_true_false_are_defined) && !defined(bool) +#define bool unsigned char +#define false 0 +#define true 1 +#define __bool_true_false_are_defined 1 +#endif +#endif /* !__cplusplus */ + +#ifndef SDL_DISABLE_ALLOCA +# ifndef alloca +# ifdef HAVE_ALLOCA_H +# include +# elif defined(SDL_PLATFORM_NETBSD) +# if defined(__STRICT_ANSI__) +# define SDL_DISABLE_ALLOCA +# else +# include +# endif +# elif defined(__GNUC__) +# define alloca __builtin_alloca +# elif defined(_MSC_VER) +# include +# define alloca _alloca +# elif defined(__WATCOMC__) +# include +# elif defined(__BORLANDC__) +# include +# elif defined(__DMC__) +# include +# elif defined(SDL_PLATFORM_AIX) +# pragma alloca +# elif defined(__MRC__) +void *alloca(unsigned); +# else +void *alloca(size_t); +# endif +# endif +#endif + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Don't let SDL use "long long" C types. + * + * SDL will define this if it believes the compiler doesn't understand the + * "long long" syntax for C datatypes. This can happen on older compilers. + * + * If _your_ compiler doesn't support "long long" but SDL doesn't know it, it + * is safe to define this yourself to build against the SDL headers. + * + * If this is defined, it will remove access to some C runtime support + * functions, like SDL_ulltoa and SDL_strtoll that refer to this datatype + * explicitly. The rest of SDL will still be available. + * + * SDL's own source code cannot be built with a compiler that has this + * defined, for various technical reasons. + */ +#define SDL_NOLONGLONG 1 + +#elif defined(_MSC_VER) && (_MSC_VER < 1310) /* long long introduced in Visual Studio.NET 2003 */ +# define SDL_NOLONGLONG 1 +#endif + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * The largest value that a `size_t` can hold for the target platform. + * + * `size_t` is generally the same size as a pointer in modern times, but this + * can get weird on very old and very esoteric machines. For example, on a + * 16-bit Intel 286, you might have a 32-bit "far" pointer (16-bit segment + * plus 16-bit offset), but `size_t` is 16 bits, because it can only deal with + * the offset into an individual segment. + * + * In modern times, it's generally expected to cover an entire linear address + * space. But be careful! + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SIZE_MAX SIZE_MAX + +#elif defined(SIZE_MAX) +# define SDL_SIZE_MAX SIZE_MAX +#else +# define SDL_SIZE_MAX ((size_t) -1) +#endif + +#ifndef SDL_COMPILE_TIME_ASSERT +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A compile-time assertion. + * + * This can check constant values _known to the compiler at build time_ for + * correctness, and end the compile with the error if they fail. + * + * Often times these are used to verify basic truths, like the size of a + * datatype is what is expected: + * + * ```c + * SDL_COMPILE_TIME_ASSERT(uint32_size, sizeof(Uint32) == 4); + * ``` + * + * The `name` parameter must be a valid C symbol, and must be unique across + * all compile-time asserts in the same compilation unit (one run of the + * compiler), or the build might fail with cryptic errors on some targets. + * This is used with a C language trick that works on older compilers that + * don't support better assertion techniques. + * + * If you need an assertion that operates at runtime, on variable data, you + * should try SDL_assert instead. + * + * \param name a unique identifier for this assertion. + * \param x the value to test. Must be a boolean value. + * + * \threadsafety This macro doesn't generate any code to run. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_assert + */ +#define SDL_COMPILE_TIME_ASSERT(name, x) FailToCompileIf_x_IsFalse(x) +#elif defined(__cplusplus) +/* Keep C++ case alone: Some versions of gcc will define __STDC_VERSION__ even when compiling in C++ mode. */ +#if (__cplusplus >= 201103L) +#define SDL_COMPILE_TIME_ASSERT(name, x) static_assert(x, #x) +#endif +#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 202311L) +#define SDL_COMPILE_TIME_ASSERT(name, x) static_assert(x, #x) +#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) +#define SDL_COMPILE_TIME_ASSERT(name, x) _Static_assert(x, #x) +#endif +#endif /* !SDL_COMPILE_TIME_ASSERT */ + +#ifndef SDL_COMPILE_TIME_ASSERT +/* universal, but may trigger -Wunused-local-typedefs */ +#define SDL_COMPILE_TIME_ASSERT(name, x) \ + typedef int SDL_compile_time_assert_ ## name[(x) * 2 - 1] +#endif + +/** + * The number of elements in a static array. + * + * This will compile but return incorrect results for a pointer to an array; + * it has to be an array the compiler knows the size of. + * + * This macro looks like it double-evaluates the argument, but it does so + * inside of `sizeof`, so there are no side-effects here, as expressions do + * not actually run any code in these cases. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_arraysize(array) (sizeof(array)/sizeof(array[0])) + +/** + * Macro useful for building other macros with strings in them. + * + * For example: + * + * ```c + * #define LOG_ERROR(X) OutputDebugString(SDL_STRINGIFY_ARG(__FUNCTION__) ": " X "\n")` + * ``` + * + * \param arg the text to turn into a string literal. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_STRINGIFY_ARG(arg) #arg + +/** + * \name Cast operators + * + * Use proper C++ casts when compiled as C++ to be compatible with the option + * -Wold-style-cast of GCC (and -Werror=old-style-cast in GCC 4.2 and above). + */ +/* @{ */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Handle a Reinterpret Cast properly whether using C or C++. + * + * If compiled as C++, this macro offers a proper C++ reinterpret_cast<>. + * + * If compiled as C, this macro does a normal C-style cast. + * + * This is helpful to avoid compiler warnings in C++. + * + * \param type the type to cast the expression to. + * \param expression the expression to cast to a different type. + * \returns `expression`, cast to `type`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_static_cast + * \sa SDL_const_cast + */ +#define SDL_reinterpret_cast(type, expression) reinterpret_cast(expression) /* or `((type)(expression))` in C */ + +/** + * Handle a Static Cast properly whether using C or C++. + * + * If compiled as C++, this macro offers a proper C++ static_cast<>. + * + * If compiled as C, this macro does a normal C-style cast. + * + * This is helpful to avoid compiler warnings in C++. + * + * \param type the type to cast the expression to. + * \param expression the expression to cast to a different type. + * \returns `expression`, cast to `type`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_reinterpret_cast + * \sa SDL_const_cast + */ +#define SDL_static_cast(type, expression) static_cast(expression) /* or `((type)(expression))` in C */ + +/** + * Handle a Const Cast properly whether using C or C++. + * + * If compiled as C++, this macro offers a proper C++ const_cast<>. + * + * If compiled as C, this macro does a normal C-style cast. + * + * This is helpful to avoid compiler warnings in C++. + * + * \param type the type to cast the expression to. + * \param expression the expression to cast to a different type. + * \returns `expression`, cast to `type`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_reinterpret_cast + * \sa SDL_static_cast + */ +#define SDL_const_cast(type, expression) const_cast(expression) /* or `((type)(expression))` in C */ + +#elif defined(__cplusplus) +#define SDL_reinterpret_cast(type, expression) reinterpret_cast(expression) +#define SDL_static_cast(type, expression) static_cast(expression) +#define SDL_const_cast(type, expression) const_cast(expression) +#else +#define SDL_reinterpret_cast(type, expression) ((type)(expression)) +#define SDL_static_cast(type, expression) ((type)(expression)) +#define SDL_const_cast(type, expression) ((type)(expression)) +#endif + +/* @} *//* Cast operators */ + +/** + * Define a four character code as a Uint32. + * + * \param A the first ASCII character. + * \param B the second ASCII character. + * \param C the third ASCII character. + * \param D the fourth ASCII character. + * \returns the four characters converted into a Uint32, one character + * per-byte. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FOURCC(A, B, C, D) \ + ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24)) + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Append the 64 bit integer suffix to a signed integer literal. + * + * This helps compilers that might believe a integer literal larger than + * 0xFFFFFFFF is overflowing a 32-bit value. Use `SDL_SINT64_C(0xFFFFFFFF1)` + * instead of `0xFFFFFFFF1` by itself. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_UINT64_C + */ +#define SDL_SINT64_C(c) c ## LL /* or whatever the current compiler uses. */ + +/** + * Append the 64 bit integer suffix to an unsigned integer literal. + * + * This helps compilers that might believe a integer literal larger than + * 0xFFFFFFFF is overflowing a 32-bit value. Use `SDL_UINT64_C(0xFFFFFFFF1)` + * instead of `0xFFFFFFFF1` by itself. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SINT64_C + */ +#define SDL_UINT64_C(c) c ## ULL /* or whatever the current compiler uses. */ + +#else /* !SDL_WIKI_DOCUMENTATION_SECTION */ + +#ifndef SDL_SINT64_C +#if defined(INT64_C) +#define SDL_SINT64_C(c) INT64_C(c) +#elif defined(_MSC_VER) +#define SDL_SINT64_C(c) c ## i64 +#elif defined(__LP64__) || defined(_LP64) +#define SDL_SINT64_C(c) c ## L +#else +#define SDL_SINT64_C(c) c ## LL +#endif +#endif /* !SDL_SINT64_C */ + +#ifndef SDL_UINT64_C +#if defined(UINT64_C) +#define SDL_UINT64_C(c) UINT64_C(c) +#elif defined(_MSC_VER) +#define SDL_UINT64_C(c) c ## ui64 +#elif defined(__LP64__) || defined(_LP64) +#define SDL_UINT64_C(c) c ## UL +#else +#define SDL_UINT64_C(c) c ## ULL +#endif +#endif /* !SDL_UINT64_C */ + +#endif /* !SDL_WIKI_DOCUMENTATION_SECTION */ + +/** + * \name Basic data types + */ +/* @{ */ + +/** + * A signed 8-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef int8_t Sint8; +#define SDL_MAX_SINT8 ((Sint8)0x7F) /* 127 */ +#define SDL_MIN_SINT8 ((Sint8)(~0x7F)) /* -128 */ + +/** + * An unsigned 8-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef uint8_t Uint8; +#define SDL_MAX_UINT8 ((Uint8)0xFF) /* 255 */ +#define SDL_MIN_UINT8 ((Uint8)0x00) /* 0 */ + +/** + * A signed 16-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef int16_t Sint16; +#define SDL_MAX_SINT16 ((Sint16)0x7FFF) /* 32767 */ +#define SDL_MIN_SINT16 ((Sint16)(~0x7FFF)) /* -32768 */ + +/** + * An unsigned 16-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef uint16_t Uint16; +#define SDL_MAX_UINT16 ((Uint16)0xFFFF) /* 65535 */ +#define SDL_MIN_UINT16 ((Uint16)0x0000) /* 0 */ + +/** + * A signed 32-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef int32_t Sint32; +#define SDL_MAX_SINT32 ((Sint32)0x7FFFFFFF) /* 2147483647 */ +#define SDL_MIN_SINT32 ((Sint32)(~0x7FFFFFFF)) /* -2147483648 */ + +/** + * An unsigned 32-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef uint32_t Uint32; +#define SDL_MAX_UINT32 ((Uint32)0xFFFFFFFFu) /* 4294967295 */ +#define SDL_MIN_UINT32 ((Uint32)0x00000000) /* 0 */ + +/** + * A signed 64-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SINT64_C + */ +typedef int64_t Sint64; +#define SDL_MAX_SINT64 SDL_SINT64_C(0x7FFFFFFFFFFFFFFF) /* 9223372036854775807 */ +#define SDL_MIN_SINT64 ~SDL_SINT64_C(0x7FFFFFFFFFFFFFFF) /* -9223372036854775808 */ + +/** + * An unsigned 64-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_UINT64_C + */ +typedef uint64_t Uint64; +#define SDL_MAX_UINT64 SDL_UINT64_C(0xFFFFFFFFFFFFFFFF) /* 18446744073709551615 */ +#define SDL_MIN_UINT64 SDL_UINT64_C(0x0000000000000000) /* 0 */ + +/** + * SDL times are signed, 64-bit integers representing nanoseconds since the + * Unix epoch (Jan 1, 1970). + * + * They can be converted between POSIX time_t values with SDL_NS_TO_SECONDS() + * and SDL_SECONDS_TO_NS(), and between Windows FILETIME values with + * SDL_TimeToWindows() and SDL_TimeFromWindows(). + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_MAX_SINT64 + * \sa SDL_MIN_SINT64 + */ +typedef Sint64 SDL_Time; +#define SDL_MAX_TIME SDL_MAX_SINT64 +#define SDL_MIN_TIME SDL_MIN_SINT64 + +/* @} *//* Basic data types */ + +/** + * \name Floating-point constants + */ +/* @{ */ + +#ifdef FLT_EPSILON +#define SDL_FLT_EPSILON FLT_EPSILON +#else + +/** + * Epsilon constant, used for comparing floating-point numbers. + * + * Equals by default to platform-defined `FLT_EPSILON`, or + * `1.1920928955078125e-07F` if that's not available. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FLT_EPSILON 1.1920928955078125e-07F /* 0x0.000002p0 */ +#endif + +/* @} *//* Floating-point constants */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A printf-formatting string for an Sint64 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIs64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIs64 "lld" + +/** + * A printf-formatting string for a Uint64 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIu64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIu64 "llu" + +/** + * A printf-formatting string for a Uint64 value as lower-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIx64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIx64 "llx" + +/** + * A printf-formatting string for a Uint64 value as upper-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIX64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIX64 "llX" + +/** + * A printf-formatting string for an Sint32 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIs32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIs32 "d" + +/** + * A printf-formatting string for a Uint32 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIu32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIu32 "u" + +/** + * A printf-formatting string for a Uint32 value as lower-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIx32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIx32 "x" + +/** + * A printf-formatting string for a Uint32 value as upper-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIX32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIX32 "X" + +/** + * A printf-formatting string prefix for a `long long` value. + * + * This is just the prefix! You probably actually want SDL_PRILLd, SDL_PRILLu, + * SDL_PRILLx, or SDL_PRILLX instead. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILL_PREFIX "d bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILL_PREFIX "ll" + +/** + * A printf-formatting string for a `long long` value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLd " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLd SDL_PRILL_PREFIX "d" + +/** + * A printf-formatting string for a `unsigned long long` value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLu " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLu SDL_PRILL_PREFIX "u" + +/** + * A printf-formatting string for an `unsigned long long` value as lower-case + * hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLx " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLx SDL_PRILL_PREFIX "x" + +/** + * A printf-formatting string for an `unsigned long long` value as upper-case + * hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLX " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLX SDL_PRILL_PREFIX "X" +#endif /* SDL_WIKI_DOCUMENTATION_SECTION */ + +/* Make sure we have macros for printing width-based integers. + * should define these but this is not true all platforms. + * (for example win32) */ +#ifndef SDL_PRIs64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIs64 "I64d" +#elif defined(PRId64) +#define SDL_PRIs64 PRId64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) && !defined(__EMSCRIPTEN__) +#define SDL_PRIs64 "ld" +#else +#define SDL_PRIs64 "lld" +#endif +#endif +#ifndef SDL_PRIu64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIu64 "I64u" +#elif defined(PRIu64) +#define SDL_PRIu64 PRIu64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) && !defined(__EMSCRIPTEN__) +#define SDL_PRIu64 "lu" +#else +#define SDL_PRIu64 "llu" +#endif +#endif +#ifndef SDL_PRIx64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIx64 "I64x" +#elif defined(PRIx64) +#define SDL_PRIx64 PRIx64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) +#define SDL_PRIx64 "lx" +#else +#define SDL_PRIx64 "llx" +#endif +#endif +#ifndef SDL_PRIX64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIX64 "I64X" +#elif defined(PRIX64) +#define SDL_PRIX64 PRIX64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) +#define SDL_PRIX64 "lX" +#else +#define SDL_PRIX64 "llX" +#endif +#endif +#ifndef SDL_PRIs32 +#ifdef PRId32 +#define SDL_PRIs32 PRId32 +#else +#define SDL_PRIs32 "d" +#endif +#endif +#ifndef SDL_PRIu32 +#ifdef PRIu32 +#define SDL_PRIu32 PRIu32 +#else +#define SDL_PRIu32 "u" +#endif +#endif +#ifndef SDL_PRIx32 +#ifdef PRIx32 +#define SDL_PRIx32 PRIx32 +#else +#define SDL_PRIx32 "x" +#endif +#endif +#ifndef SDL_PRIX32 +#ifdef PRIX32 +#define SDL_PRIX32 PRIX32 +#else +#define SDL_PRIX32 "X" +#endif +#endif +/* Specifically for the `long long` -- SDL-specific. */ +#ifdef SDL_PLATFORM_WINDOWS +#ifndef SDL_NOLONGLONG +SDL_COMPILE_TIME_ASSERT(longlong_size64, sizeof(long long) == 8); /* using I64 for windows - make sure `long long` is 64 bits. */ +#endif +#define SDL_PRILL_PREFIX "I64" +#else +#define SDL_PRILL_PREFIX "ll" +#endif +#ifndef SDL_PRILLd +#define SDL_PRILLd SDL_PRILL_PREFIX "d" +#endif +#ifndef SDL_PRILLu +#define SDL_PRILLu SDL_PRILL_PREFIX "u" +#endif +#ifndef SDL_PRILLx +#define SDL_PRILLx SDL_PRILL_PREFIX "x" +#endif +#ifndef SDL_PRILLX +#define SDL_PRILLX SDL_PRILL_PREFIX "X" +#endif + +/* Annotations to help code analysis tools */ +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Macro that annotates function params with input buffer size. + * + * If we were to annotate `memcpy`: + * + * ```c + * void *memcpy(void *dst, SDL_IN_BYTECAP(len) const void *src, size_t len); + * ``` + * + * This notes that `src` should be `len` bytes in size and is only read by the + * function. The compiler or other analysis tools can warn when this doesn't + * appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_IN_BYTECAP(x) _In_bytecount_(x) + +/** + * Macro that annotates function params with input/output string buffer size. + * + * If we were to annotate `strlcat`: + * + * ```c + * size_t strlcat(SDL_INOUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen); + * ``` + * + * This notes that `dst` is a null-terminated C string, should be `maxlen` + * bytes in size, and is both read from and written to by the function. The + * compiler or other analysis tools can warn when this doesn't appear to be + * the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_INOUT_Z_CAP(x) _Inout_z_cap_(x) + +/** + * Macro that annotates function params with output string buffer size. + * + * If we were to annotate `snprintf`: + * + * ```c + * int snprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, const char *fmt, ...); + * ``` + * + * This notes that `text` is a null-terminated C string, should be `maxlen` + * bytes in size, and is only written to by the function. The compiler or + * other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_Z_CAP(x) _Out_z_cap_(x) + +/** + * Macro that annotates function params with output buffer size. + * + * If we were to annotate `wcsncpy`: + * + * ```c + * char *wcscpy(SDL_OUT_CAP(bufsize) wchar_t *dst, const wchar_t *src, size_t bufsize); + * ``` + * + * This notes that `dst` should have a capacity of `bufsize` wchar_t in size, + * and is only written to by the function. The compiler or other analysis + * tools can warn when this doesn't appear to be the case. + * + * This operates on counts of objects, not bytes. Use SDL_OUT_BYTECAP for + * bytes. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_CAP(x) _Out_cap_(x) + +/** + * Macro that annotates function params with output buffer size. + * + * If we were to annotate `memcpy`: + * + * ```c + * void *memcpy(SDL_OUT_BYTECAP(bufsize) void *dst, const void *src, size_t bufsize); + * ``` + * + * This notes that `dst` should have a capacity of `bufsize` bytes in size, + * and is only written to by the function. The compiler or other analysis + * tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_BYTECAP(x) _Out_bytecap_(x) + +/** + * Macro that annotates function params with output buffer string size. + * + * If we were to annotate `strcpy`: + * + * ```c + * char *strcpy(SDL_OUT_Z_BYTECAP(bufsize) char *dst, const char *src, size_t bufsize); + * ``` + * + * This notes that `dst` should have a capacity of `bufsize` bytes in size, + * and a zero-terminated string is written to it by the function. The compiler + * or other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_Z_BYTECAP(x) _Out_z_bytecap_(x) + +/** + * Macro that annotates function params as printf-style format strings. + * + * If we were to annotate `fprintf`: + * + * ```c + * int fprintf(FILE *f, SDL_PRINTF_FORMAT_STRING const char *fmt, ...); + * ``` + * + * This notes that `fmt` should be a printf-style format string. The compiler + * or other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRINTF_FORMAT_STRING _Printf_format_string_ + +/** + * Macro that annotates function params as scanf-style format strings. + * + * If we were to annotate `fscanf`: + * + * ```c + * int fscanf(FILE *f, SDL_SCANF_FORMAT_STRING const char *fmt, ...); + * ``` + * + * This notes that `fmt` should be a scanf-style format string. The compiler + * or other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCANF_FORMAT_STRING _Scanf_format_string_impl_ + +/** + * Macro that annotates a vararg function that operates like printf. + * + * If we were to annotate `fprintf`: + * + * ```c + * int fprintf(FILE *f, const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + * ``` + * + * This notes that the second parameter should be a printf-style format + * string, followed by `...`. The compiler or other analysis tools can warn + * when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __printf__, fmtargnumber, fmtargnumber+1 ))) + +/** + * Macro that annotates a va_list function that operates like printf. + * + * If we were to annotate `vfprintf`: + * + * ```c + * int vfprintf(FILE *f, const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + * ``` + * + * This notes that the second parameter should be a printf-style format + * string, followed by a va_list. The compiler or other analysis tools can + * warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __printf__, fmtargnumber, 0 ))) + +/** + * Macro that annotates a vararg function that operates like scanf. + * + * If we were to annotate `fscanf`: + * + * ```c + * int fscanf(FILE *f, const char *fmt, ...) SDL_PRINTF_VARARG_FUNCV(2); + * ``` + * + * This notes that the second parameter should be a scanf-style format string, + * followed by `...`. The compiler or other analysis tools can warn when this + * doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_SCANF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __scanf__, fmtargnumber, fmtargnumber+1 ))) + +/** + * Macro that annotates a va_list function that operates like scanf. + * + * If we were to annotate `vfscanf`: + * + * ```c + * int vfscanf(FILE *f, const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + * ``` + * + * This notes that the second parameter should be a scanf-style format string, + * followed by a va_list. The compiler or other analysis tools can warn when + * this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_SCANF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __scanf__, fmtargnumber, 0 ))) + +/** + * Macro that annotates a vararg function that operates like wprintf. + * + * If we were to annotate `fwprintf`: + * + * ```c + * int fwprintf(FILE *f, const wchar_t *fmt, ...) SDL_WPRINTF_VARARG_FUNC(2); + * ``` + * + * This notes that the second parameter should be a wprintf-style format wide + * string, followed by `...`. The compiler or other analysis tools can warn + * when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, fmtargnumber+1 ))) */ + +/** + * Macro that annotates a va_list function that operates like wprintf. + * + * If we were to annotate `vfwprintf`: + * + * ```c + * int vfwprintf(FILE *f, const wchar_t *fmt, va_list ap) SDL_WPRINTF_VARARG_FUNC(2); + * ``` + * + * This notes that the second parameter should be a wprintf-style format wide + * string, followed by a va_list. The compiler or other analysis tools can + * warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, 0 ))) */ + +#elif defined(SDL_DISABLE_ANALYZE_MACROS) +#define SDL_IN_BYTECAP(x) +#define SDL_INOUT_Z_CAP(x) +#define SDL_OUT_Z_CAP(x) +#define SDL_OUT_CAP(x) +#define SDL_OUT_BYTECAP(x) +#define SDL_OUT_Z_BYTECAP(x) +#define SDL_PRINTF_FORMAT_STRING +#define SDL_SCANF_FORMAT_STRING +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) +#else +#if defined(_MSC_VER) && (_MSC_VER >= 1600) /* VS 2010 and above */ +#include + +#define SDL_IN_BYTECAP(x) _In_bytecount_(x) +#define SDL_INOUT_Z_CAP(x) _Inout_z_cap_(x) +#define SDL_OUT_Z_CAP(x) _Out_z_cap_(x) +#define SDL_OUT_CAP(x) _Out_cap_(x) +#define SDL_OUT_BYTECAP(x) _Out_bytecap_(x) +#define SDL_OUT_Z_BYTECAP(x) _Out_z_bytecap_(x) + +#define SDL_PRINTF_FORMAT_STRING _Printf_format_string_ +#define SDL_SCANF_FORMAT_STRING _Scanf_format_string_impl_ +#else +#define SDL_IN_BYTECAP(x) +#define SDL_INOUT_Z_CAP(x) +#define SDL_OUT_Z_CAP(x) +#define SDL_OUT_CAP(x) +#define SDL_OUT_BYTECAP(x) +#define SDL_OUT_Z_BYTECAP(x) +#define SDL_PRINTF_FORMAT_STRING +#define SDL_SCANF_FORMAT_STRING +#endif +#if defined(__GNUC__) || defined(__clang__) +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __printf__, fmtargnumber, fmtargnumber+1 ))) +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __printf__, fmtargnumber, 0 ))) +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __scanf__, fmtargnumber, fmtargnumber+1 ))) +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __scanf__, fmtargnumber, 0 ))) +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, fmtargnumber+1 ))) */ +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, 0 ))) */ +#else +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) +#endif +#endif /* SDL_DISABLE_ANALYZE_MACROS */ + +/** \cond */ +#ifndef DOXYGEN_SHOULD_IGNORE_THIS +SDL_COMPILE_TIME_ASSERT(bool_size, sizeof(bool) == 1); +SDL_COMPILE_TIME_ASSERT(uint8_size, sizeof(Uint8) == 1); +SDL_COMPILE_TIME_ASSERT(sint8_size, sizeof(Sint8) == 1); +SDL_COMPILE_TIME_ASSERT(uint16_size, sizeof(Uint16) == 2); +SDL_COMPILE_TIME_ASSERT(sint16_size, sizeof(Sint16) == 2); +SDL_COMPILE_TIME_ASSERT(uint32_size, sizeof(Uint32) == 4); +SDL_COMPILE_TIME_ASSERT(sint32_size, sizeof(Sint32) == 4); +SDL_COMPILE_TIME_ASSERT(uint64_size, sizeof(Uint64) == 8); +SDL_COMPILE_TIME_ASSERT(sint64_size, sizeof(Sint64) == 8); +#ifndef SDL_NOLONGLONG +SDL_COMPILE_TIME_ASSERT(uint64_longlong, sizeof(Uint64) <= sizeof(unsigned long long)); +SDL_COMPILE_TIME_ASSERT(size_t_longlong, sizeof(size_t) <= sizeof(unsigned long long)); +#endif +typedef struct SDL_alignment_test +{ + Uint8 a; + void *b; +} SDL_alignment_test; +SDL_COMPILE_TIME_ASSERT(struct_alignment, sizeof(SDL_alignment_test) == (2 * sizeof(void *))); +SDL_COMPILE_TIME_ASSERT(two_s_complement, (int)~(int)0 == (int)(-1)); +#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ +/** \endcond */ + +/* Check to make sure enums are the size of ints, for structure packing. + For both Watcom C/C++ and Borland C/C++ the compiler option that makes + enums having the size of an int must be enabled. + This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11). +*/ + +/** \cond */ +#ifndef DOXYGEN_SHOULD_IGNORE_THIS +#if !defined(SDL_PLATFORM_VITA) && !defined(SDL_PLATFORM_3DS) +/* TODO: include/SDL_stdinc.h:390: error: size of array 'SDL_dummy_enum' is negative */ +typedef enum SDL_DUMMY_ENUM +{ + DUMMY_ENUM_VALUE +} SDL_DUMMY_ENUM; + +SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int)); +#endif +#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ +/** \endcond */ + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A macro to initialize an SDL interface. + * + * This macro will initialize an SDL interface structure and should be called + * before you fill out the fields with your implementation. + * + * You can use it like this: + * + * ```c + * SDL_IOStreamInterface iface; + * + * SDL_INIT_INTERFACE(&iface); + * + * // Fill in the interface function pointers with your implementation + * iface.seek = ... + * + * stream = SDL_OpenIO(&iface, NULL); + * ``` + * + * If you are using designated initializers, you can use the size of the + * interface as the version, e.g. + * + * ```c + * SDL_IOStreamInterface iface = { + * .version = sizeof(iface), + * .seek = ... + * }; + * stream = SDL_OpenIO(&iface, NULL); + * ``` + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_IOStreamInterface + * \sa SDL_StorageInterface + * \sa SDL_VirtualJoystickDesc + */ +#define SDL_INIT_INTERFACE(iface) \ + do { \ + SDL_zerop(iface); \ + (iface)->version = sizeof(*(iface)); \ + } while (0) + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Allocate memory on the stack (maybe). + * + * If SDL knows how to access alloca() on the current platform, it will use it + * to stack-allocate memory here. If it doesn't, it will use SDL_malloc() to + * heap-allocate memory. + * + * Since this might not be stack memory at all, it's important that you check + * the returned pointer for NULL, and that you call SDL_stack_free on the + * memory when done with it. Since this might be stack memory, it's important + * that you don't allocate large amounts of it, or allocate in a loop without + * returning from the function, so the stack doesn't overflow. + * + * \param type the datatype of the memory to allocate. + * \param count the number of `type` objects to allocate. + * \returns newly-allocated memory, or NULL on failure. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_stack_free + */ +#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count)) + +/** + * Free memory previously allocated with SDL_stack_alloc. + * + * If SDL used alloca() to allocate this memory, this macro does nothing and + * the allocated memory will be automatically released when the function that + * called SDL_stack_alloc() returns. If SDL used SDL_malloc(), it will + * SDL_free the memory immediately. + * + * \param data the pointer, from SDL_stack_alloc(), to free. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_stack_alloc + */ +#define SDL_stack_free(data) +#elif !defined(SDL_DISABLE_ALLOCA) +#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count)) +#define SDL_stack_free(data) +#else +#define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count)) +#define SDL_stack_free(data) SDL_free(data) +#endif + +/** + * Allocate uninitialized memory. + * + * The allocated memory returned by this function must be freed with + * SDL_free(). + * + * If `size` is 0, it will be set to 1. + * + * If the allocation is successful, the returned pointer is guaranteed to be + * aligned to either the *fundamental alignment* (`alignof(max_align_t)` in + * C11 and later) or `2 * sizeof(void *)`, whichever is smaller. Use + * SDL_aligned_alloc() if you need to allocate memory aligned to an alignment + * greater than this guarantee. + * + * \param size the size to allocate. + * \returns a pointer to the allocated memory, or NULL if allocation failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_calloc + * \sa SDL_realloc + * \sa SDL_aligned_alloc + */ +extern SDL_DECLSPEC SDL_MALLOC void * SDLCALL SDL_malloc(size_t size); + +/** + * Allocate a zero-initialized array. + * + * The memory returned by this function must be freed with SDL_free(). + * + * If either of `nmemb` or `size` is 0, they will both be set to 1. + * + * If the allocation is successful, the returned pointer is guaranteed to be + * aligned to either the *fundamental alignment* (`alignof(max_align_t)` in + * C11 and later) or `2 * sizeof(void *)`, whichever is smaller. + * + * \param nmemb the number of elements in the array. + * \param size the size of each element of the array. + * \returns a pointer to the allocated array, or NULL if allocation failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_malloc + * \sa SDL_realloc + */ +extern SDL_DECLSPEC SDL_MALLOC SDL_ALLOC_SIZE2(1, 2) void * SDLCALL SDL_calloc(size_t nmemb, size_t size); + +/** + * Change the size of allocated memory. + * + * The memory returned by this function must be freed with SDL_free(). + * + * If `size` is 0, it will be set to 1. Note that this is unlike some other C + * runtime `realloc` implementations, which may treat `realloc(mem, 0)` the + * same way as `free(mem)`. + * + * If `mem` is NULL, the behavior of this function is equivalent to + * SDL_malloc(). Otherwise, the function can have one of three possible + * outcomes: + * + * - If it returns the same pointer as `mem`, it means that `mem` was resized + * in place without freeing. + * - If it returns a different non-NULL pointer, it means that `mem` was freed + * and cannot be dereferenced anymore. + * - If it returns NULL (indicating failure), then `mem` will remain valid and + * must still be freed with SDL_free(). + * + * If the allocation is successfully resized, the returned pointer is + * guaranteed to be aligned to either the *fundamental alignment* + * (`alignof(max_align_t)` in C11 and later) or `2 * sizeof(void *)`, + * whichever is smaller. + * + * \param mem a pointer to allocated memory to reallocate, or NULL. + * \param size the new size of the memory. + * \returns a pointer to the newly allocated memory, or NULL if allocation + * failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_malloc + * \sa SDL_calloc + */ +extern SDL_DECLSPEC SDL_ALLOC_SIZE(2) void * SDLCALL SDL_realloc(void *mem, size_t size); + +/** + * Free allocated memory. + * + * The pointer is no longer valid after this call and cannot be dereferenced + * anymore. + * + * If `mem` is NULL, this function does nothing. + * + * \param mem a pointer to allocated memory, or NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_malloc + * \sa SDL_calloc + * \sa SDL_realloc + */ +extern SDL_DECLSPEC void SDLCALL SDL_free(void *mem); + +/** + * A callback used to implement SDL_malloc(). + * + * SDL will always ensure that the passed `size` is greater than 0. + * + * \param size the size to allocate. + * \returns a pointer to the allocated memory, or NULL if allocation failed. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_malloc + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void *(SDLCALL *SDL_malloc_func)(size_t size); + +/** + * A callback used to implement SDL_calloc(). + * + * SDL will always ensure that the passed `nmemb` and `size` are both greater + * than 0. + * + * \param nmemb the number of elements in the array. + * \param size the size of each element of the array. + * \returns a pointer to the allocated array, or NULL if allocation failed. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_calloc + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void *(SDLCALL *SDL_calloc_func)(size_t nmemb, size_t size); + +/** + * A callback used to implement SDL_realloc(). + * + * SDL will always ensure that the passed `size` is greater than 0. + * + * \param mem a pointer to allocated memory to reallocate, or NULL. + * \param size the new size of the memory. + * \returns a pointer to the newly allocated memory, or NULL if allocation + * failed. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_realloc + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void *(SDLCALL *SDL_realloc_func)(void *mem, size_t size); + +/** + * A callback used to implement SDL_free(). + * + * SDL will always ensure that the passed `mem` is a non-NULL pointer. + * + * \param mem a pointer to allocated memory. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void (SDLCALL *SDL_free_func)(void *mem); + +/** + * Get the original set of SDL memory functions. + * + * This is what SDL_malloc and friends will use by default, if there has been + * no call to SDL_SetMemoryFunctions. This is not necessarily using the C + * runtime's `malloc` functions behind the scenes! Different platforms and + * build configurations might do any number of unexpected things. + * + * \param malloc_func filled with malloc function. + * \param calloc_func filled with calloc function. + * \param realloc_func filled with realloc function. + * \param free_func filled with free function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetOriginalMemoryFunctions(SDL_malloc_func *malloc_func, + SDL_calloc_func *calloc_func, + SDL_realloc_func *realloc_func, + SDL_free_func *free_func); + +/** + * Get the current set of SDL memory functions. + * + * \param malloc_func filled with malloc function. + * \param calloc_func filled with calloc function. + * \param realloc_func filled with realloc function. + * \param free_func filled with free function. + * + * \threadsafety This does not hold a lock, so do not call this in the + * unlikely event of a background thread calling + * SDL_SetMemoryFunctions simultaneously. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetMemoryFunctions + * \sa SDL_GetOriginalMemoryFunctions + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetMemoryFunctions(SDL_malloc_func *malloc_func, + SDL_calloc_func *calloc_func, + SDL_realloc_func *realloc_func, + SDL_free_func *free_func); + +/** + * Replace SDL's memory allocation functions with a custom set. + * + * It is not safe to call this function once any allocations have been made, + * as future calls to SDL_free will use the new allocator, even if they came + * from an SDL_malloc made with the old one! + * + * If used, usually this needs to be the first call made into the SDL library, + * if not the very first thing done at program startup time. + * + * \param malloc_func custom malloc function. + * \param calloc_func custom calloc function. + * \param realloc_func custom realloc function. + * \param free_func custom free function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, but one + * should not replace the memory functions once any allocations + * are made! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMemoryFunctions + * \sa SDL_GetOriginalMemoryFunctions + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetMemoryFunctions(SDL_malloc_func malloc_func, + SDL_calloc_func calloc_func, + SDL_realloc_func realloc_func, + SDL_free_func free_func); + +/** + * Allocate memory aligned to a specific alignment. + * + * The memory returned by this function must be freed with SDL_aligned_free(), + * _not_ SDL_free(). + * + * If `alignment` is less than the size of `void *`, it will be increased to + * match that. + * + * The returned memory address will be a multiple of the alignment value, and + * the size of the memory allocated will be a multiple of the alignment value. + * + * \param alignment the alignment of the memory. + * \param size the size to allocate. + * \returns a pointer to the aligned memory, or NULL if allocation failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_aligned_free + */ +extern SDL_DECLSPEC SDL_MALLOC void * SDLCALL SDL_aligned_alloc(size_t alignment, size_t size); + +/** + * Free memory allocated by SDL_aligned_alloc(). + * + * The pointer is no longer valid after this call and cannot be dereferenced + * anymore. + * + * If `mem` is NULL, this function does nothing. + * + * \param mem a pointer previously returned by SDL_aligned_alloc(), or NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_aligned_alloc + */ +extern SDL_DECLSPEC void SDLCALL SDL_aligned_free(void *mem); + +/** + * Get the number of outstanding (unfreed) allocations. + * + * \returns the number of allocations or -1 if allocation counting is + * disabled. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumAllocations(void); + +/** + * A thread-safe set of environment variables + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + * \sa SDL_DestroyEnvironment + */ +typedef struct SDL_Environment SDL_Environment; + +/** + * Get the process environment. + * + * This is initialized at application start and is not affected by setenv() + * and unsetenv() calls after that point. Use SDL_SetEnvironmentVariable() and + * SDL_UnsetEnvironmentVariable() if you want to modify this environment, or + * SDL_setenv_unsafe() or SDL_unsetenv_unsafe() if you want changes to persist + * in the C runtime environment after SDL_Quit(). + * + * \returns a pointer to the environment for the process or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC SDL_Environment * SDLCALL SDL_GetEnvironment(void); + +/** + * Create a set of environment variables + * + * \param populated true to initialize it from the C runtime environment, + * false to create an empty environment. + * \returns a pointer to the new environment or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety If `populated` is false, it is safe to call this function + * from any thread, otherwise it is safe if no other threads are + * calling setenv() or unsetenv() + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + * \sa SDL_DestroyEnvironment + */ +extern SDL_DECLSPEC SDL_Environment * SDLCALL SDL_CreateEnvironment(bool populated); + +/** + * Get the value of a variable in the environment. + * + * \param env the environment to query. + * \param name the name of the variable to get. + * \returns a pointer to the value of the variable or NULL if it can't be + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetEnvironmentVariable(SDL_Environment *env, const char *name); + +/** + * Get all variables in the environment. + * + * \param env the environment to query. + * \returns a NULL terminated array of pointers to environment variables in + * the form "variable=value" or NULL on failure; call SDL_GetError() + * for more information. This is a single allocation that should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GetEnvironmentVariables(SDL_Environment *env); + +/** + * Set the value of a variable in the environment. + * + * \param env the environment to modify. + * \param name the name of the variable to set. + * \param value the value of the variable to set. + * \param overwrite true to overwrite the variable if it exists, false to + * return success without setting the variable if it already + * exists. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetEnvironmentVariable(SDL_Environment *env, const char *name, const char *value, bool overwrite); + +/** + * Clear a variable from the environment. + * + * \param env the environment to modify. + * \param name the name of the variable to unset. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UnsetEnvironmentVariable(SDL_Environment *env, const char *name); + +/** + * Destroy a set of environment variables. + * + * \param env the environment to destroy. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the environment is no longer in use. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateEnvironment + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyEnvironment(SDL_Environment *env); + +/** + * Get the value of a variable in the environment. + * + * This function uses SDL's cached copy of the environment and is thread-safe. + * + * \param name the name of the variable to get. + * \returns a pointer to the value of the variable or NULL if it can't be + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_getenv(const char *name); + +/** + * Get the value of a variable in the environment. + * + * This function bypasses SDL's cached copy of the environment and is not + * thread-safe. + * + * \param name the name of the variable to get. + * \returns a pointer to the value of the variable or NULL if it can't be + * found. + * + * \threadsafety This function is not thread safe, consider using SDL_getenv() + * instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_getenv + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_getenv_unsafe(const char *name); + +/** + * Set the value of a variable in the environment. + * + * \param name the name of the variable to set. + * \param value the value of the variable to set. + * \param overwrite 1 to overwrite the variable if it exists, 0 to return + * success without setting the variable if it already exists. + * \returns 0 on success, -1 on error. + * + * \threadsafety This function is not thread safe, consider using + * SDL_SetEnvironmentVariable() instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetEnvironmentVariable + */ +extern SDL_DECLSPEC int SDLCALL SDL_setenv_unsafe(const char *name, const char *value, int overwrite); + +/** + * Clear a variable from the environment. + * + * \param name the name of the variable to unset. + * \returns 0 on success, -1 on error. + * + * \threadsafety This function is not thread safe, consider using + * SDL_UnsetEnvironmentVariable() instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC int SDLCALL SDL_unsetenv_unsafe(const char *name); + +/** + * A callback used with SDL sorting and binary search functions. + * + * \param a a pointer to the first element being compared. + * \param b a pointer to the second element being compared. + * \returns -1 if `a` should be sorted before `b`, 1 if `b` should be sorted + * before `a`, 0 if they are equal. If two elements are equal, their + * order in the sorted array is undefined. + * + * \since This callback is available since SDL 3.2.0. + * + * \sa SDL_bsearch + * \sa SDL_qsort + */ +typedef int (SDLCALL *SDL_CompareCallback)(const void *a, const void *b); + +/** + * Sort an array. + * + * For example: + * + * ```c + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *a, const void *b) + * { + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->n < B->n) { + * return -1; + * } else if (B->n < A->n) { + * return 1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 3, "third" }, { 1, "first" }, { 2, "second" } + * }; + * + * SDL_qsort(values, SDL_arraysize(values), sizeof(values[0]), compare); + * ``` + * + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch + * \sa SDL_qsort_r + */ +extern SDL_DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size, SDL_CompareCallback compare); + +/** + * Perform a binary search on a previously sorted array. + * + * For example: + * + * ```c + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *a, const void *b) + * { + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->n < B->n) { + * return -1; + * } else if (B->n < A->n) { + * return 1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 1, "first" }, { 2, "second" }, { 3, "third" } + * }; + * data key = { 2, NULL }; + * + * data *result = SDL_bsearch(&key, values, SDL_arraysize(values), sizeof(values[0]), compare); + * ``` + * + * \param key a pointer to a key equal to the element being searched for. + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * \returns a pointer to the matching element in the array, or NULL if not + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch_r + * \sa SDL_qsort + */ +extern SDL_DECLSPEC void * SDLCALL SDL_bsearch(const void *key, const void *base, size_t nmemb, size_t size, SDL_CompareCallback compare); + +/** + * A callback used with SDL sorting and binary search functions. + * + * \param userdata the `userdata` pointer passed to the sort function. + * \param a a pointer to the first element being compared. + * \param b a pointer to the second element being compared. + * \returns -1 if `a` should be sorted before `b`, 1 if `b` should be sorted + * before `a`, 0 if they are equal. If two elements are equal, their + * order in the sorted array is undefined. + * + * \since This callback is available since SDL 3.2.0. + * + * \sa SDL_qsort_r + * \sa SDL_bsearch_r + */ +typedef int (SDLCALL *SDL_CompareCallback_r)(void *userdata, const void *a, const void *b); + +/** + * Sort an array, passing a userdata pointer to the compare function. + * + * For example: + * + * ```c + * typedef enum { + * sort_increasing, + * sort_decreasing, + * } sort_method; + * + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *userdata, const void *a, const void *b) + * { + * sort_method method = (sort_method)(uintptr_t)userdata; + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->key < B->key) { + * return (method == sort_increasing) ? -1 : 1; + * } else if (B->key < A->key) { + * return (method == sort_increasing) ? 1 : -1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 3, "third" }, { 1, "first" }, { 2, "second" } + * }; + * + * SDL_qsort_r(values, SDL_arraysize(values), sizeof(values[0]), compare, (const void *)(uintptr_t)sort_increasing); + * ``` + * + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * \param userdata a pointer to pass to the compare function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch_r + * \sa SDL_qsort + */ +extern SDL_DECLSPEC void SDLCALL SDL_qsort_r(void *base, size_t nmemb, size_t size, SDL_CompareCallback_r compare, void *userdata); + +/** + * Perform a binary search on a previously sorted array, passing a userdata + * pointer to the compare function. + * + * For example: + * + * ```c + * typedef enum { + * sort_increasing, + * sort_decreasing, + * } sort_method; + * + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *userdata, const void *a, const void *b) + * { + * sort_method method = (sort_method)(uintptr_t)userdata; + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->key < B->key) { + * return (method == sort_increasing) ? -1 : 1; + * } else if (B->key < A->key) { + * return (method == sort_increasing) ? 1 : -1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 1, "first" }, { 2, "second" }, { 3, "third" } + * }; + * data key = { 2, NULL }; + * + * data *result = SDL_bsearch_r(&key, values, SDL_arraysize(values), sizeof(values[0]), compare, (const void *)(uintptr_t)sort_increasing); + * ``` + * + * \param key a pointer to a key equal to the element being searched for. + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * \param userdata a pointer to pass to the compare function. + * \returns a pointer to the matching element in the array, or NULL if not + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch + * \sa SDL_qsort_r + */ +extern SDL_DECLSPEC void * SDLCALL SDL_bsearch_r(const void *key, const void *base, size_t nmemb, size_t size, SDL_CompareCallback_r compare, void *userdata); + +/** + * Compute the absolute value of `x`. + * + * \param x an integer value. + * \returns the absolute value of x. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_abs(int x); + +/** + * Return the lesser of two values. + * + * This is a helper macro that might be more clear than writing out the + * comparisons directly, and works with any type that can be compared with the + * `<` operator. However, it double-evaluates both its parameters, so do not + * use expressions with side-effects here. + * + * \param x the first value to compare. + * \param y the second value to compare. + * \returns the lesser of `x` and `y`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_min(x, y) (((x) < (y)) ? (x) : (y)) + +/** + * Return the greater of two values. + * + * This is a helper macro that might be more clear than writing out the + * comparisons directly, and works with any type that can be compared with the + * `>` operator. However, it double-evaluates both its parameters, so do not + * use expressions with side-effects here. + * + * \param x the first value to compare. + * \param y the second value to compare. + * \returns the lesser of `x` and `y`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_max(x, y) (((x) > (y)) ? (x) : (y)) + +/** + * Return a value clamped to a range. + * + * If `x` is outside the range a values between `a` and `b`, the returned + * value will be `a` or `b` as appropriate. Otherwise, `x` is returned. + * + * This macro will produce incorrect results if `b` is less than `a`. + * + * This is a helper macro that might be more clear than writing out the + * comparisons directly, and works with any type that can be compared with the + * `<` and `>` operators. However, it double-evaluates all its parameters, so + * do not use expressions with side-effects here. + * + * \param x the value to compare. + * \param a the low end value. + * \param b the high end value. + * \returns x, clamped between a and b. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_clamp(x, a, b) (((x) < (a)) ? (a) : (((x) > (b)) ? (b) : (x))) + +/** + * Query if a character is alphabetic (a letter). + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * for English 'a-z' and 'A-Z' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isalpha(int x); + +/** + * Query if a character is alphabetic (a letter) or a number. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * for English 'a-z', 'A-Z', and '0-9' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isalnum(int x); + +/** + * Report if a character is blank (a space or tab). + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 0x20 (space) or 0x9 (tab) as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isblank(int x); + +/** + * Report if a character is a control character. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 0 through 0x1F, and 0x7F, as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_iscntrl(int x); + +/** + * Report if a character is a numeric digit. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * '0' (0x30) through '9' (0x39), as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isdigit(int x); + +/** + * Report if a character is a hexadecimal digit. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 'A' through 'F', 'a' through 'f', and '0' through '9', as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isxdigit(int x); + +/** + * Report if a character is a punctuation mark. + * + * **WARNING**: Regardless of system locale, this is equivalent to + * `((SDL_isgraph(x)) && (!SDL_isalnum(x)))`. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isgraph + * \sa SDL_isalnum + */ +extern SDL_DECLSPEC int SDLCALL SDL_ispunct(int x); + +/** + * Report if a character is whitespace. + * + * **WARNING**: Regardless of system locale, this will only treat the + * following ASCII values as true: + * + * - space (0x20) + * - tab (0x09) + * - newline (0x0A) + * - vertical tab (0x0B) + * - form feed (0x0C) + * - return (0x0D) + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isspace(int x); + +/** + * Report if a character is upper case. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 'A' through 'Z' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isupper(int x); + +/** + * Report if a character is lower case. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 'a' through 'z' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_islower(int x); + +/** + * Report if a character is "printable". + * + * Be advised that "printable" has a definition that goes back to text + * terminals from the dawn of computing, making this a sort of special case + * function that is not suitable for Unicode (or most any) text management. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * ' ' (0x20) through '~' (0x7E) as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isprint(int x); + +/** + * Report if a character is any "printable" except space. + * + * Be advised that "printable" has a definition that goes back to text + * terminals from the dawn of computing, making this a sort of special case + * function that is not suitable for Unicode (or most any) text management. + * + * **WARNING**: Regardless of system locale, this is equivalent to + * `(SDL_isprint(x)) && ((x) != ' ')`. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isprint + */ +extern SDL_DECLSPEC int SDLCALL SDL_isgraph(int x); + +/** + * Convert low-ASCII English letters to uppercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'a' through 'z' to uppercase. + * + * This function returns the uppercase equivalent of `x`. If a character + * cannot be converted, or is already uppercase, this function returns `x`. + * + * \param x character value to check. + * \returns capitalized version of x, or x if no conversion available. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_toupper(int x); + +/** + * Convert low-ASCII English letters to lowercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'A' through 'Z' to lowercase. + * + * This function returns the lowercase equivalent of `x`. If a character + * cannot be converted, or is already lowercase, this function returns `x`. + * + * \param x character value to check. + * \returns lowercase version of x, or x if no conversion available. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_tolower(int x); + +/** + * Calculate a CRC-16 value. + * + * https://en.wikipedia.org/wiki/Cyclic_redundancy_check + * + * This function can be called multiple times, to stream data to be + * checksummed in blocks. Each call must provide the previous CRC-16 return + * value to be updated with the next block. The first call to this function + * for a set of blocks should pass in a zero CRC value. + * + * \param crc the current checksum for this data set, or 0 for a new data set. + * \param data a new block of data to add to the checksum. + * \param len the size, in bytes, of the new block of data. + * \returns a CRC-16 checksum value of all blocks in the data set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_crc16(Uint16 crc, const void *data, size_t len); + +/** + * Calculate a CRC-32 value. + * + * https://en.wikipedia.org/wiki/Cyclic_redundancy_check + * + * This function can be called multiple times, to stream data to be + * checksummed in blocks. Each call must provide the previous CRC-32 return + * value to be updated with the next block. The first call to this function + * for a set of blocks should pass in a zero CRC value. + * + * \param crc the current checksum for this data set, or 0 for a new data set. + * \param data a new block of data to add to the checksum. + * \param len the size, in bytes, of the new block of data. + * \returns a CRC-32 checksum value of all blocks in the data set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_crc32(Uint32 crc, const void *data, size_t len); + +/** + * Calculate a 32-bit MurmurHash3 value for a block of data. + * + * https://en.wikipedia.org/wiki/MurmurHash + * + * A seed may be specified, which changes the final results consistently, but + * this does not work like SDL_crc16 and SDL_crc32: you can't feed a previous + * result from this function back into itself as the next seed value to + * calculate a hash in chunks; it won't produce the same hash as it would if + * the same data was provided in a single call. + * + * If you aren't sure what to provide for a seed, zero is fine. Murmur3 is not + * cryptographically secure, so it shouldn't be used for hashing top-secret + * data. + * + * \param data the data to be hashed. + * \param len the size of data, in bytes. + * \param seed a value that alters the final hash value. + * \returns a Murmur3 32-bit hash value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_murmur3_32(const void *data, size_t len, Uint32 seed); + +/** + * Copy non-overlapping memory. + * + * The memory regions must not overlap. If they do, use SDL_memmove() instead. + * + * \param dst The destination memory region. Must not be NULL, and must not + * overlap with `src`. + * \param src The source memory region. Must not be NULL, and must not overlap + * with `dst`. + * \param len The length in bytes of both `dst` and `src`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_memmove + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memcpy(SDL_OUT_BYTECAP(len) void *dst, SDL_IN_BYTECAP(len) const void *src, size_t len); + +/* Take advantage of compiler optimizations for memcpy */ +#ifndef SDL_SLOW_MEMCPY +#ifdef SDL_memcpy +#undef SDL_memcpy +#endif +#define SDL_memcpy memcpy +#endif + + +/** + * A macro to copy memory between objects, with basic type checking. + * + * SDL_memcpy and SDL_memmove do not care where you copy memory to and from, + * which can lead to bugs. This macro aims to avoid most of those bugs by + * making sure that the source and destination are both pointers to objects + * that are the same size. It does not check that the objects are the same + * _type_, just that the copy will not overflow either object. + * + * The size check happens at compile time, and the compiler will throw an + * error if the objects are different sizes. + * + * Generally this is intended to copy a single object, not an array. + * + * This macro looks like it double-evaluates its parameters, but the extras + * them are in `sizeof` sections, which generate no code nor side-effects. + * + * \param dst a pointer to the destination object. Must not be NULL. + * \param src a pointer to the source object. Must not be NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +#define SDL_copyp(dst, src) \ + { SDL_COMPILE_TIME_ASSERT(SDL_copyp, sizeof (*(dst)) == sizeof (*(src))); } \ + SDL_memcpy((dst), (src), sizeof(*(src))) + +/** + * Copy memory ranges that might overlap. + * + * It is okay for the memory regions to overlap. If you are confident that the + * regions never overlap, using SDL_memcpy() may improve performance. + * + * \param dst The destination memory region. Must not be NULL. + * \param src The source memory region. Must not be NULL. + * \param len The length in bytes of both `dst` and `src`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_memcpy + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memmove(SDL_OUT_BYTECAP(len) void *dst, SDL_IN_BYTECAP(len) const void *src, size_t len); + +/* Take advantage of compiler optimizations for memmove */ +#ifndef SDL_SLOW_MEMMOVE +#ifdef SDL_memmove +#undef SDL_memmove +#endif +#define SDL_memmove memmove +#endif + +/** + * Initialize all bytes of buffer of memory to a specific value. + * + * This function will set `len` bytes, pointed to by `dst`, to the value + * specified in `c`. + * + * Despite `c` being an `int` instead of a `char`, this only operates on + * bytes; `c` must be a value between 0 and 255, inclusive. + * + * \param dst the destination memory region. Must not be NULL. + * \param c the byte value to set. + * \param len the length, in bytes, to set in `dst`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memset(SDL_OUT_BYTECAP(len) void *dst, int c, size_t len); + +/** + * Initialize all 32-bit words of buffer of memory to a specific value. + * + * This function will set a buffer of `dwords` Uint32 values, pointed to by + * `dst`, to the value specified in `val`. + * + * Unlike SDL_memset, this sets 32-bit values, not bytes, so it's not limited + * to a range of 0-255. + * + * \param dst the destination memory region. Must not be NULL. + * \param val the Uint32 value to set. + * \param dwords the number of Uint32 values to set in `dst`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memset4(void *dst, Uint32 val, size_t dwords); + +/* Take advantage of compiler optimizations for memset */ +#ifndef SDL_SLOW_MEMSET +#ifdef SDL_memset +#undef SDL_memset +#endif +#define SDL_memset memset +#endif + +/** + * Clear an object's memory to zero. + * + * This is wrapper over SDL_memset that handles calculating the object size, + * so there's no chance of copy/paste errors, and the code is cleaner. + * + * This requires an object, not a pointer to an object, nor an array. + * + * \param x the object to clear. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_zerop + * \sa SDL_zeroa + */ +#define SDL_zero(x) SDL_memset(&(x), 0, sizeof((x))) + +/** + * Clear an object's memory to zero, using a pointer. + * + * This is wrapper over SDL_memset that handles calculating the object size, + * so there's no chance of copy/paste errors, and the code is cleaner. + * + * This requires a pointer to an object, not an object itself, nor an array. + * + * \param x a pointer to the object to clear. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_zero + * \sa SDL_zeroa + */ +#define SDL_zerop(x) SDL_memset((x), 0, sizeof(*(x))) + +/** + * Clear an array's memory to zero. + * + * This is wrapper over SDL_memset that handles calculating the array size, so + * there's no chance of copy/paste errors, and the code is cleaner. + * + * This requires an array, not an object, nor a pointer to an object. + * + * \param x an array to clear. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_zero + * \sa SDL_zeroa + */ +#define SDL_zeroa(x) SDL_memset((x), 0, sizeof((x))) + + +/** + * Compare two buffers of memory. + * + * \param s1 the first buffer to compare. NULL is not permitted! + * \param s2 the second buffer to compare. NULL is not permitted! + * \param len the number of bytes to compare between the buffers. + * \returns less than zero if s1 is "less than" s2, greater than zero if s1 is + * "greater than" s2, and zero if the buffers match exactly for `len` + * bytes. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_memcmp(const void *s1, const void *s2, size_t len); + +/** + * This works exactly like wcslen() but doesn't require access to a C runtime. + * + * Counts the number of wchar_t values in `wstr`, excluding the null + * terminator. + * + * Like SDL_strlen only counts bytes and not codepoints in a UTF-8 string, + * this counts wchar_t values in a string, even if the string's encoding is of + * variable width, like UTF-16. + * + * Also be aware that wchar_t is different sizes on different platforms (4 + * bytes on Linux, 2 on Windows, etc). + * + * \param wstr The null-terminated wide string to read. Must not be NULL. + * \returns the length (in wchar_t values, excluding the null terminator) of + * `wstr`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcsnlen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t *wstr); + +/** + * This works exactly like wcsnlen() but doesn't require access to a C + * runtime. + * + * Counts up to a maximum of `maxlen` wchar_t values in `wstr`, excluding the + * null terminator. + * + * Like SDL_strnlen only counts bytes and not codepoints in a UTF-8 string, + * this counts wchar_t values in a string, even if the string's encoding is of + * variable width, like UTF-16. + * + * Also be aware that wchar_t is different sizes on different platforms (4 + * bytes on Linux, 2 on Windows, etc). + * + * Also, `maxlen` is a count of wide characters, not bytes! + * + * \param wstr The null-terminated wide string to read. Must not be NULL. + * \param maxlen The maximum amount of wide characters to count. + * \returns the length (in wide characters, excluding the null terminator) of + * `wstr` but never more than `maxlen`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcslen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcsnlen(const wchar_t *wstr, size_t maxlen); + +/** + * Copy a wide string. + * + * This function copies `maxlen` - 1 wide characters from `src` to `dst`, then + * appends a null terminator. + * + * `src` and `dst` must not overlap. + * + * If `maxlen` is 0, no wide characters are copied and no null terminator is + * written. + * + * \param dst The destination buffer. Must not be NULL, and must not overlap + * with `src`. + * \param src The null-terminated wide string to copy. Must not be NULL, and + * must not overlap with `dst`. + * \param maxlen The length (in wide characters) of the destination buffer. + * \returns the length (in wide characters, excluding the null terminator) of + * `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcslcat + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcslcpy(SDL_OUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src, size_t maxlen); + +/** + * Concatenate wide strings. + * + * This function appends up to `maxlen` - SDL_wcslen(dst) - 1 wide characters + * from `src` to the end of the wide string in `dst`, then appends a null + * terminator. + * + * `src` and `dst` must not overlap. + * + * If `maxlen` - SDL_wcslen(dst) - 1 is less than or equal to 0, then `dst` is + * unmodified. + * + * \param dst The destination buffer already containing the first + * null-terminated wide string. Must not be NULL and must not + * overlap with `src`. + * \param src The second null-terminated wide string. Must not be NULL, and + * must not overlap with `dst`. + * \param maxlen The length (in wide characters) of the destination buffer. + * \returns the length (in wide characters, excluding the null terminator) of + * the string in `dst` plus the length of `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcslcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcslcat(SDL_INOUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src, size_t maxlen); + +/** + * Allocate a copy of a wide string. + * + * This allocates enough space for a null-terminated copy of `wstr`, using + * SDL_malloc, and then makes a copy of the string into this space. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param wstr the string to copy. + * \returns a pointer to the newly-allocated wide string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC wchar_t * SDLCALL SDL_wcsdup(const wchar_t *wstr); + +/** + * Search a wide string for the first instance of a specific substring. + * + * The search ends once it finds the requested substring, or a null terminator + * byte to end the string. + * + * Note that this looks for strings of _wide characters_, not _codepoints_, so + * it's legal to search for malformed and incomplete UTF-16 sequences. + * + * \param haystack the wide string to search. Must not be NULL. + * \param needle the wide string to search for. Must not be NULL. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC wchar_t * SDLCALL SDL_wcsstr(const wchar_t *haystack, const wchar_t *needle); + +/** + * Search a wide string, up to n wide chars, for the first instance of a + * specific substring. + * + * The search ends once it finds the requested substring, or a null terminator + * value to end the string, or `maxlen` wide character have been examined. It + * is possible to use this function on a wide string without a null + * terminator. + * + * Note that this looks for strings of _wide characters_, not _codepoints_, so + * it's legal to search for malformed and incomplete UTF-16 sequences. + * + * \param haystack the wide string to search. Must not be NULL. + * \param needle the wide string to search for. Must not be NULL. + * \param maxlen the maximum number of wide characters to search in + * `haystack`. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC wchar_t * SDLCALL SDL_wcsnstr(const wchar_t *haystack, const wchar_t *needle, size_t maxlen); + +/** + * Compare two null-terminated wide strings. + * + * This only compares wchar_t values until it hits a null-terminating + * character; it does not care if the string is well-formed UTF-16 (or UTF-32, + * depending on your platform's wchar_t size), or uses valid Unicode values. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcscmp(const wchar_t *str1, const wchar_t *str2); + +/** + * Compare two wide strings up to a number of wchar_t values. + * + * This only compares wchar_t values; it does not care if the string is + * well-formed UTF-16 (or UTF-32, depending on your platform's wchar_t size), + * or uses valid Unicode values. + * + * Note that while this function is intended to be used with UTF-16 (or + * UTF-32, depending on your platform's definition of wchar_t), it is + * comparing raw wchar_t values and not Unicode codepoints: `maxlen` specifies + * a wchar_t limit! If the limit lands in the middle of a multi-wchar UTF-16 + * sequence, it will only compare a portion of the final character. + * + * `maxlen` specifies a maximum number of wchar_t to compare; if the strings + * match to this number of wide chars (or both have matched to a + * null-terminator character before this count), they will be considered + * equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of wchar_t to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcsncmp(const wchar_t *str1, const wchar_t *str2, size_t maxlen); + +/** + * Compare two null-terminated wide strings, case-insensitively. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Depending on your platform, "wchar_t" might be 2 bytes, and expected to be + * UTF-16 encoded (like Windows), or 4 bytes in UTF-32 format. Since this + * handles Unicode, it expects the string to be well-formed and not a + * null-terminated string of arbitrary bytes. Characters that are not valid + * UTF-16 (or UTF-32) are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcscasecmp(const wchar_t *str1, const wchar_t *str2); + +/** + * Compare two wide strings, case-insensitively, up to a number of wchar_t. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Depending on your platform, "wchar_t" might be 2 bytes, and expected to be + * UTF-16 encoded (like Windows), or 4 bytes in UTF-32 format. Since this + * handles Unicode, it expects the string to be well-formed and not a + * null-terminated string of arbitrary bytes. Characters that are not valid + * UTF-16 (or UTF-32) are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * Note that while this function might deal with variable-sized characters, + * `maxlen` specifies a _wchar_ limit! If the limit lands in the middle of a + * multi-byte UTF-16 sequence, it may convert a portion of the final character + * to one or more Unicode character U+FFFD (REPLACEMENT CHARACTER) so as not + * to overflow a buffer. + * + * `maxlen` specifies a maximum number of wchar_t values to compare; if the + * strings match to this number of wchar_t (or both have matched to a + * null-terminator character before this number of bytes), they will be + * considered equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of wchar_t values to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcsncasecmp(const wchar_t *str1, const wchar_t *str2, size_t maxlen); + +/** + * Parse a `long` from a wide string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside a `long`, the result is clamped to + * the minimum and maximum representable `long` values. + * + * \param str The null-terminated wide string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid wide character + * (i.e. the next character after the parsed number) will be + * written to this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strtol + */ +extern SDL_DECLSPEC long SDLCALL SDL_wcstol(const wchar_t *str, wchar_t **endp, int base); + +/** + * This works exactly like strlen() but doesn't require access to a C runtime. + * + * Counts the bytes in `str`, excluding the null terminator. + * + * If you need the length of a UTF-8 string, consider using SDL_utf8strlen(). + * + * \param str The null-terminated string to read. Must not be NULL. + * \returns the length (in bytes, excluding the null terminator) of `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strnlen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strlen(const char *str); + +/** + * This works exactly like strnlen() but doesn't require access to a C + * runtime. + * + * Counts up to a maximum of `maxlen` bytes in `str`, excluding the null + * terminator. + * + * If you need the length of a UTF-8 string, consider using SDL_utf8strnlen(). + * + * \param str The null-terminated string to read. Must not be NULL. + * \param maxlen The maximum amount of bytes to count. + * \returns the length (in bytes, excluding the null terminator) of `src` but + * never more than `maxlen`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strnlen(const char *str, size_t maxlen); + +/** + * Copy a string. + * + * This function copies up to `maxlen` - 1 characters from `src` to `dst`, + * then appends a null terminator. + * + * If `maxlen` is 0, no characters are copied and no null terminator is + * written. + * + * If you want to copy an UTF-8 string but need to ensure that multi-byte + * sequences are not truncated, consider using SDL_utf8strlcpy(). + * + * \param dst The destination buffer. Must not be NULL, and must not overlap + * with `src`. + * \param src The null-terminated string to copy. Must not be NULL, and must + * not overlap with `dst`. + * \param maxlen The length (in characters) of the destination buffer. + * \returns the length (in characters, excluding the null terminator) of + * `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlcat + * \sa SDL_utf8strlcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strlcpy(SDL_OUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen); + +/** + * Copy an UTF-8 string. + * + * This function copies up to `dst_bytes` - 1 bytes from `src` to `dst` while + * also ensuring that the string written to `dst` does not end in a truncated + * multi-byte sequence. Finally, it appends a null terminator. + * + * `src` and `dst` must not overlap. + * + * Note that unlike SDL_strlcpy(), this function returns the number of bytes + * written, not the length of `src`. + * + * \param dst The destination buffer. Must not be NULL, and must not overlap + * with `src`. + * \param src The null-terminated UTF-8 string to copy. Must not be NULL, and + * must not overlap with `dst`. + * \param dst_bytes The length (in bytes) of the destination buffer. Must not + * be 0. + * \returns the number of bytes written, excluding the null terminator. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_utf8strlcpy(SDL_OUT_Z_CAP(dst_bytes) char *dst, const char *src, size_t dst_bytes); + +/** + * Concatenate strings. + * + * This function appends up to `maxlen` - SDL_strlen(dst) - 1 characters from + * `src` to the end of the string in `dst`, then appends a null terminator. + * + * `src` and `dst` must not overlap. + * + * If `maxlen` - SDL_strlen(dst) - 1 is less than or equal to 0, then `dst` is + * unmodified. + * + * \param dst The destination buffer already containing the first + * null-terminated string. Must not be NULL and must not overlap + * with `src`. + * \param src The second null-terminated string. Must not be NULL, and must + * not overlap with `dst`. + * \param maxlen The length (in characters) of the destination buffer. + * \returns the length (in characters, excluding the null terminator) of the + * string in `dst` plus the length of `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strlcat(SDL_INOUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen); + +/** + * Allocate a copy of a string. + * + * This allocates enough space for a null-terminated copy of `str`, using + * SDL_malloc, and then makes a copy of the string into this space. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param str the string to copy. + * \returns a pointer to the newly-allocated string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_MALLOC char * SDLCALL SDL_strdup(const char *str); + +/** + * Allocate a copy of a string, up to n characters. + * + * This allocates enough space for a null-terminated copy of `str`, up to + * `maxlen` bytes, using SDL_malloc, and then makes a copy of the string into + * this space. + * + * If the string is longer than `maxlen` bytes, the returned string will be + * `maxlen` bytes long, plus a null-terminator character that isn't included + * in the count. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param str the string to copy. + * \param maxlen the maximum length of the copied string, not counting the + * null-terminator character. + * \returns a pointer to the newly-allocated string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_MALLOC char * SDLCALL SDL_strndup(const char *str, size_t maxlen); + +/** + * Reverse a string's contents. + * + * This reverses a null-terminated string in-place. Only the content of the + * string is reversed; the null-terminator character remains at the end of the + * reversed string. + * + * **WARNING**: This function reverses the _bytes_ of the string, not the + * codepoints. If `str` is a UTF-8 string with Unicode codepoints > 127, this + * will ruin the string data. You should only use this function on strings + * that are completely comprised of low ASCII characters. + * + * \param str the string to reverse. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strrev(char *str); + +/** + * Convert a string to uppercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'A' through 'Z' to uppercase. + * + * This function operates on a null-terminated string of bytes--even if it is + * malformed UTF-8!--and converts ASCII characters 'a' through 'z' to their + * uppercase equivalents in-place, returning the original `str` pointer. + * + * \param str the string to convert in-place. Can not be NULL. + * \returns the `str` pointer passed into this function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlwr + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strupr(char *str); + +/** + * Convert a string to lowercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'A' through 'Z' to lowercase. + * + * This function operates on a null-terminated string of bytes--even if it is + * malformed UTF-8!--and converts ASCII characters 'A' through 'Z' to their + * lowercase equivalents in-place, returning the original `str` pointer. + * + * \param str the string to convert in-place. Can not be NULL. + * \returns the `str` pointer passed into this function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strupr + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strlwr(char *str); + +/** + * Search a string for the first instance of a specific byte. + * + * The search ends once it finds the requested byte value, or a null + * terminator byte to end the string. + * + * Note that this looks for _bytes_, not _characters_, so you cannot match + * against a Unicode codepoint > 255, regardless of character encoding. + * + * \param str the string to search. Must not be NULL. + * \param c the byte value to search for. + * \returns a pointer to the first instance of `c` in the string, or NULL if + * not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strchr(const char *str, int c); + +/** + * Search a string for the last instance of a specific byte. + * + * The search must go until it finds a null terminator byte to end the string. + * + * Note that this looks for _bytes_, not _characters_, so you cannot match + * against a Unicode codepoint > 255, regardless of character encoding. + * + * \param str the string to search. Must not be NULL. + * \param c the byte value to search for. + * \returns a pointer to the last instance of `c` in the string, or NULL if + * not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strrchr(const char *str, int c); + +/** + * Search a string for the first instance of a specific substring. + * + * The search ends once it finds the requested substring, or a null terminator + * byte to end the string. + * + * Note that this looks for strings of _bytes_, not _characters_, so it's + * legal to search for malformed and incomplete UTF-8 sequences. + * + * \param haystack the string to search. Must not be NULL. + * \param needle the string to search for. Must not be NULL. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strstr(const char *haystack, const char *needle); + +/** + * Search a string, up to n bytes, for the first instance of a specific + * substring. + * + * The search ends once it finds the requested substring, or a null terminator + * byte to end the string, or `maxlen` bytes have been examined. It is + * possible to use this function on a string without a null terminator. + * + * Note that this looks for strings of _bytes_, not _characters_, so it's + * legal to search for malformed and incomplete UTF-8 sequences. + * + * \param haystack the string to search. Must not be NULL. + * \param needle the string to search for. Must not be NULL. + * \param maxlen the maximum number of bytes to search in `haystack`. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strnstr(const char *haystack, const char *needle, size_t maxlen); + +/** + * Search a UTF-8 string for the first instance of a specific substring, + * case-insensitively. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Since this handles Unicode, it expects the strings to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * \param haystack the string to search. Must not be NULL. + * \param needle the string to search for. Must not be NULL. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strcasestr(const char *haystack, const char *needle); + +/** + * This works exactly like strtok_r() but doesn't require access to a C + * runtime. + * + * Break a string up into a series of tokens. + * + * To start tokenizing a new string, `str` should be the non-NULL address of + * the string to start tokenizing. Future calls to get the next token from the + * same string should specify a NULL. + * + * Note that this function will overwrite pieces of `str` with null chars to + * split it into tokens. This function cannot be used with const/read-only + * strings! + * + * `saveptr` just needs to point to a `char *` that can be overwritten; SDL + * will use this to save tokenizing state between calls. It is initialized if + * `str` is non-NULL, and used to resume tokenizing when `str` is NULL. + * + * \param str the string to tokenize, or NULL to continue tokenizing. + * \param delim the delimiter string that separates tokens. + * \param saveptr pointer to a char *, used for ongoing state. + * \returns A pointer to the next token, or NULL if no tokens remain. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strtok_r(char *str, const char *delim, char **saveptr); + +/** + * Count the number of codepoints in a UTF-8 string. + * + * Counts the _codepoints_, not _bytes_, in `str`, excluding the null + * terminator. + * + * If you need to count the bytes in a string instead, consider using + * SDL_strlen(). + * + * Since this handles Unicode, it expects the strings to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), so a malformed or incomplete UTF-8 sequence might increase the + * count by several replacement characters. + * + * \param str The null-terminated UTF-8 string to read. Must not be NULL. + * \returns The length (in codepoints, excluding the null terminator) of + * `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_utf8strnlen + * \sa SDL_strlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_utf8strlen(const char *str); + +/** + * Count the number of codepoints in a UTF-8 string, up to n bytes. + * + * Counts the _codepoints_, not _bytes_, in `str`, excluding the null + * terminator. + * + * If you need to count the bytes in a string instead, consider using + * SDL_strnlen(). + * + * The counting stops at `bytes` bytes (not codepoints!). This seems + * counterintuitive, but makes it easy to express the total size of the + * string's buffer. + * + * Since this handles Unicode, it expects the strings to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), so a malformed or incomplete UTF-8 sequence might increase the + * count by several replacement characters. + * + * \param str The null-terminated UTF-8 string to read. Must not be NULL. + * \param bytes The maximum amount of bytes to count. + * \returns The length (in codepoints, excluding the null terminator) of `src` + * but never more than `maxlen`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_utf8strlen + * \sa SDL_strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_utf8strnlen(const char *str, size_t bytes); + +/** + * Convert an integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget possible negative + * signs, null terminator bytes, etc). + * + * \param value the integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_uitoa + * \sa SDL_ltoa + * \sa SDL_lltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_itoa(int value, char *str, int radix); + +/** + * Convert an unsigned integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget null terminator + * bytes, etc). + * + * \param value the unsigned integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_itoa + * \sa SDL_ultoa + * \sa SDL_ulltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_uitoa(unsigned int value, char *str, int radix); + +/** + * Convert a long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget possible negative + * signs, null terminator bytes, etc). + * + * \param value the long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ultoa + * \sa SDL_itoa + * \sa SDL_lltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_ltoa(long value, char *str, int radix); + +/** + * Convert an unsigned long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget null terminator + * bytes, etc). + * + * \param value the unsigned long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ltoa + * \sa SDL_uitoa + * \sa SDL_ulltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_ultoa(unsigned long value, char *str, int radix); + +#ifndef SDL_NOLONGLONG + +/** + * Convert a long long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget possible negative + * signs, null terminator bytes, etc). + * + * \param value the long long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ulltoa + * \sa SDL_itoa + * \sa SDL_ltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_lltoa(long long value, char *str, int radix); + +/** + * Convert an unsigned long long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget null terminator + * bytes, etc). + * + * \param value the unsigned long long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_lltoa + * \sa SDL_uitoa + * \sa SDL_ultoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_ulltoa(unsigned long long value, char *str, int radix); +#endif + +/** + * Parse an `int` from a string. + * + * The result of calling `SDL_atoi(str)` is equivalent to + * `(int)SDL_strtol(str, NULL, 10)`. + * + * \param str The null-terminated string to read. Must not be NULL. + * \returns the parsed `int`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoul + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_itoa + */ +extern SDL_DECLSPEC int SDLCALL SDL_atoi(const char *str); + +/** + * Parse a `double` from a string. + * + * The result of calling `SDL_atof(str)` is equivalent to `SDL_strtod(str, + * NULL)`. + * + * \param str The null-terminated string to read. Must not be NULL. + * \returns the parsed `double`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_strtol + * \sa SDL_strtoul + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + */ +extern SDL_DECLSPEC double SDLCALL SDL_atof(const char *str); + +/** + * Parse a `long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside a `long`, the result is clamped to + * the minimum and maximum representable `long` values. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtoul + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_ltoa + * \sa SDL_wcstol + */ +extern SDL_DECLSPEC long SDLCALL SDL_strtol(const char *str, char **endp, int base); + +/** + * Parse an `unsigned long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside an `unsigned long`, the result is + * clamped to the maximum representable `unsigned long` value. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `unsigned long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_ultoa + */ +extern SDL_DECLSPEC unsigned long SDLCALL SDL_strtoul(const char *str, char **endp, int base); + +#ifndef SDL_NOLONGLONG + +/** + * Parse a `long long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside a `long long`, the result is + * clamped to the minimum and maximum representable `long long` values. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `long long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoul + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_lltoa + */ +extern SDL_DECLSPEC long long SDLCALL SDL_strtoll(const char *str, char **endp, int base); + +/** + * Parse an `unsigned long long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside an `unsigned long long`, the + * result is clamped to the maximum representable `unsigned long long` value. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `unsigned long long`, or 0 if no number could be + * parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoll + * \sa SDL_strtoul + * \sa SDL_strtod + * \sa SDL_ulltoa + */ +extern SDL_DECLSPEC unsigned long long SDLCALL SDL_strtoull(const char *str, char **endp, int base); +#endif + +/** + * Parse a `double` from a string. + * + * This function makes fewer guarantees than the C runtime `strtod`: + * + * - Only decimal notation is guaranteed to be supported. The handling of + * scientific and hexadecimal notation is unspecified. + * - Whether or not INF and NAN can be parsed is unspecified. + * - The precision of the result is unspecified. + * + * \param str the null-terminated string to read. Must not be NULL. + * \param endp if not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \returns the parsed `double`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoll + * \sa SDL_strtoul + * \sa SDL_strtoull + */ +extern SDL_DECLSPEC double SDLCALL SDL_strtod(const char *str, char **endp); + +/** + * Compare two null-terminated UTF-8 strings. + * + * Due to the nature of UTF-8 encoding, this will work with Unicode strings, + * since effectively this function just compares bytes until it hits a + * null-terminating character. Also due to the nature of UTF-8, this can be + * used with SDL_qsort() to put strings in (roughly) alphabetical order. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2); + +/** + * Compare two UTF-8 strings up to a number of bytes. + * + * Due to the nature of UTF-8 encoding, this will work with Unicode strings, + * since effectively this function just compares bytes until it hits a + * null-terminating character. Also due to the nature of UTF-8, this can be + * used with SDL_qsort() to put strings in (roughly) alphabetical order. + * + * Note that while this function is intended to be used with UTF-8, it is + * doing a bytewise comparison, and `maxlen` specifies a _byte_ limit! If the + * limit lands in the middle of a multi-byte UTF-8 sequence, it will only + * compare a portion of the final character. + * + * `maxlen` specifies a maximum number of bytes to compare; if the strings + * match to this number of bytes (or both have matched to a null-terminator + * character before this number of bytes), they will be considered equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of _bytes_ to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen); + +/** + * Compare two null-terminated UTF-8 strings, case-insensitively. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Since this handles Unicode, it expects the string to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2); + + +/** + * Compare two UTF-8 strings, case-insensitively, up to a number of bytes. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Since this handles Unicode, it expects the string to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * Note that while this function is intended to be used with UTF-8, `maxlen` + * specifies a _byte_ limit! If the limit lands in the middle of a multi-byte + * UTF-8 sequence, it may convert a portion of the final character to one or + * more Unicode character U+FFFD (REPLACEMENT CHARACTER) so as not to overflow + * a buffer. + * + * `maxlen` specifies a maximum number of bytes to compare; if the strings + * match to this number of bytes (or both have matched to a null-terminator + * character before this number of bytes), they will be considered equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of bytes to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t maxlen); + +/** + * Searches a string for the first occurence of any character contained in a + * breakset, and returns a pointer from the string to that character. + * + * \param str The null-terminated string to be searched. Must not be NULL, and + * must not overlap with `breakset`. + * \param breakset A null-terminated string containing the list of characters + * to look for. Must not be NULL, and must not overlap with + * `str`. + * \returns A pointer to the location, in str, of the first occurence of a + * character present in the breakset, or NULL if none is found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strpbrk(const char *str, const char *breakset); + +/** + * The Unicode REPLACEMENT CHARACTER codepoint. + * + * SDL_StepUTF8() and SDL_StepBackUTF8() report this codepoint when they + * encounter a UTF-8 string with encoding errors. + * + * This tends to render as something like a question mark in most places. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_StepBackUTF8 + * \sa SDL_StepUTF8 + */ +#define SDL_INVALID_UNICODE_CODEPOINT 0xFFFD + +/** + * Decode a UTF-8 string, one Unicode codepoint at a time. + * + * This will return the first Unicode codepoint in the UTF-8 encoded string in + * `*pstr`, and then advance `*pstr` past any consumed bytes before returning. + * + * It will not access more than `*pslen` bytes from the string. `*pslen` will + * be adjusted, as well, subtracting the number of bytes consumed. + * + * `pslen` is allowed to be NULL, in which case the string _must_ be + * NULL-terminated, as the function will blindly read until it sees the NULL + * char. + * + * if `*pslen` is zero, it assumes the end of string is reached and returns a + * zero codepoint regardless of the contents of the string buffer. + * + * If the resulting codepoint is zero (a NULL terminator), or `*pslen` is + * zero, it will not advance `*pstr` or `*pslen` at all. + * + * Generally this function is called in a loop until it returns zero, + * adjusting its parameters each iteration. + * + * If an invalid UTF-8 sequence is encountered, this function returns + * SDL_INVALID_UNICODE_CODEPOINT and advances the string/length by one byte + * (which is to say, a multibyte sequence might produce several + * SDL_INVALID_UNICODE_CODEPOINT returns before it syncs to the next valid + * UTF-8 sequence). + * + * Several things can generate invalid UTF-8 sequences, including overlong + * encodings, the use of UTF-16 surrogate values, and truncated data. Please + * refer to + * [RFC3629](https://www.ietf.org/rfc/rfc3629.txt) + * for details. + * + * \param pstr a pointer to a UTF-8 string pointer to be read and adjusted. + * \param pslen a pointer to the number of bytes in the string, to be read and + * adjusted. NULL is allowed. + * \returns the first Unicode codepoint in the string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_StepUTF8(const char **pstr, size_t *pslen); + +/** + * Decode a UTF-8 string in reverse, one Unicode codepoint at a time. + * + * This will go to the start of the previous Unicode codepoint in the string, + * move `*pstr` to that location and return that codepoint. + * + * If `*pstr` is already at the start of the string), it will not advance + * `*pstr` at all. + * + * Generally this function is called in a loop until it returns zero, + * adjusting its parameter each iteration. + * + * If an invalid UTF-8 sequence is encountered, this function returns + * SDL_INVALID_UNICODE_CODEPOINT. + * + * Several things can generate invalid UTF-8 sequences, including overlong + * encodings, the use of UTF-16 surrogate values, and truncated data. Please + * refer to + * [RFC3629](https://www.ietf.org/rfc/rfc3629.txt) + * for details. + * + * \param start a pointer to the beginning of the UTF-8 string. + * \param pstr a pointer to a UTF-8 string pointer to be read and adjusted. + * \returns the previous Unicode codepoint in the string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_StepBackUTF8(const char *start, const char **pstr); + +/** + * Convert a single Unicode codepoint to UTF-8. + * + * The buffer pointed to by `dst` must be at least 4 bytes long, as this + * function may generate between 1 and 4 bytes of output. + * + * This function returns the first byte _after_ the newly-written UTF-8 + * sequence, which is useful for encoding multiple codepoints in a loop, or + * knowing where to write a NULL-terminator character to end the string (in + * either case, plan to have a buffer of _more_ than 4 bytes!). + * + * If `codepoint` is an invalid value (outside the Unicode range, or a UTF-16 + * surrogate value, etc), this will use U+FFFD (REPLACEMENT CHARACTER) for the + * codepoint instead, and not set an error. + * + * If `dst` is NULL, this returns NULL immediately without writing to the + * pointer and without setting an error. + * + * \param codepoint a Unicode codepoint to convert to UTF-8. + * \param dst the location to write the encoded UTF-8. Must point to at least + * 4 bytes! + * \returns the first byte past the newly-written UTF-8 sequence. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_UCS4ToUTF8(Uint32 codepoint, char *dst); + +/** + * This works exactly like sscanf() but doesn't require access to a C runtime. + * + * Scan a string, matching a format string, converting each '%' item and + * storing it to pointers provided through variable arguments. + * + * \param text the string to scan. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of pointers to values to be filled in with scanned items. + * \returns the number of items that matched the format string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_sscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, ...) SDL_SCANF_VARARG_FUNC(2); + +/** + * This works exactly like vsscanf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_sscanf(), except it takes a `va_list` instead + * of using `...` variable arguments. + * + * \param text the string to scan. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ap a `va_list` of pointers to values to be filled in with scanned + * items. + * \returns the number of items that matched the format string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vsscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, va_list ap) SDL_SCANF_VARARG_FUNCV(2); + +/** + * This works exactly like snprintf() but doesn't require access to a C + * runtime. + * + * Format a string of up to `maxlen`-1 bytes, converting each '%' item with + * values provided through variable arguments. + * + * While some C runtimes differ on how to deal with too-large strings, this + * function null-terminates the output, by treating the null-terminator as + * part of the `maxlen` count. Note that if `maxlen` is zero, however, no + * bytes will be written at all. + * + * This function returns the number of _bytes_ (not _characters_) that should + * be written, excluding the null-terminator character. If this returns a + * number >= `maxlen`, it means the output string was truncated. A negative + * return value means an error occurred. + * + * Referencing the output string's pointer with a format item is undefined + * behavior. + * + * \param text the buffer to write the string into. Must not be NULL. + * \param maxlen the maximum bytes to write, including the null-terminator. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of values to be used with the format string. + * \returns the number of bytes that should be written, not counting the + * null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_snprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(3); + +/** + * This works exactly like swprintf() but doesn't require access to a C + * runtime. + * + * Format a wide string of up to `maxlen`-1 wchar_t values, converting each + * '%' item with values provided through variable arguments. + * + * While some C runtimes differ on how to deal with too-large strings, this + * function null-terminates the output, by treating the null-terminator as + * part of the `maxlen` count. Note that if `maxlen` is zero, however, no wide + * characters will be written at all. + * + * This function returns the number of _wide characters_ (not _codepoints_) + * that should be written, excluding the null-terminator character. If this + * returns a number >= `maxlen`, it means the output string was truncated. A + * negative return value means an error occurred. + * + * Referencing the output string's pointer with a format item is undefined + * behavior. + * + * \param text the buffer to write the wide string into. Must not be NULL. + * \param maxlen the maximum wchar_t values to write, including the + * null-terminator. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of values to be used with the format string. + * \returns the number of wide characters that should be written, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_swprintf(SDL_OUT_Z_CAP(maxlen) wchar_t *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const wchar_t *fmt, ...) SDL_WPRINTF_VARARG_FUNC(3); + +/** + * This works exactly like vsnprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_snprintf(), except it takes a `va_list` + * instead of using `...` variable arguments. + * + * \param text the buffer to write the string into. Must not be NULL. + * \param maxlen the maximum bytes to write, including the null-terminator. + * \param fmt a printf-style format string. Must not be NULL. + * \param ap a `va_list` values to be used with the format string. + * \returns the number of bytes that should be written, not counting the + * null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vsnprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(3); + +/** + * This works exactly like vswprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_swprintf(), except it takes a `va_list` + * instead of using `...` variable arguments. + * + * \param text the buffer to write the string into. Must not be NULL. + * \param maxlen the maximum wide characters to write, including the + * null-terminator. + * \param fmt a printf-style format wide string. Must not be NULL. + * \param ap a `va_list` values to be used with the format string. + * \returns the number of wide characters that should be written, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vswprintf(SDL_OUT_Z_CAP(maxlen) wchar_t *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const wchar_t *fmt, va_list ap) SDL_WPRINTF_VARARG_FUNCV(3); + +/** + * This works exactly like asprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_snprintf(), except it allocates a buffer large + * enough to hold the output string on behalf of the caller. + * + * On success, this function returns the number of bytes (not characters) + * comprising the output string, not counting the null-terminator character, + * and sets `*strp` to the newly-allocated string. + * + * On error, this function returns a negative number, and the value of `*strp` + * is undefined. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param strp on output, is set to the new string. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of values to be used with the format string. + * \returns the number of bytes in the newly-allocated string, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_asprintf(char **strp, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * This works exactly like vasprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_asprintf(), except it takes a `va_list` + * instead of using `...` variable arguments. + * + * \param strp on output, is set to the new string. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ap a `va_list` values to be used with the format string. + * \returns the number of bytes in the newly-allocated string, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vasprintf(char **strp, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + +/** + * Seeds the pseudo-random number generator. + * + * Reusing the seed number will cause SDL_rand() to repeat the same stream of + * 'random' numbers. + * + * \param seed the value to use as a random number seed, or 0 to use + * SDL_GetPerformanceCounter(). + * + * \threadsafety This should be called on the same thread that calls + * SDL_rand() + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand + * \sa SDL_rand_bits + * \sa SDL_randf + */ +extern SDL_DECLSPEC void SDLCALL SDL_srand(Uint64 seed); + +/** + * Generate a pseudo-random number less than n for positive n + * + * The method used is faster and of better quality than `rand() % n`. Odds are + * roughly 99.9% even for n = 1 million. Evenness is better for smaller n, and + * much worse as n gets bigger. + * + * Example: to simulate a d6 use `SDL_rand(6) + 1` The +1 converts 0..5 to + * 1..6 + * + * If you want to generate a pseudo-random number in the full range of Sint32, + * you should use: (Sint32)SDL_rand_bits() + * + * If you want reproducible output, be sure to initialize with SDL_srand() + * first. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param n the number of possible outcomes. n must be positive. + * \returns a random value in the range of [0 .. n-1]. + * + * \threadsafety All calls should be made from a single thread + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_srand + * \sa SDL_randf + */ +extern SDL_DECLSPEC Sint32 SDLCALL SDL_rand(Sint32 n); + +/** + * Generate a uniform pseudo-random floating point number less than 1.0 + * + * If you want reproducible output, be sure to initialize with SDL_srand() + * first. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \returns a random value in the range of [0.0, 1.0). + * + * \threadsafety All calls should be made from a single thread + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_srand + * \sa SDL_rand + */ +extern SDL_DECLSPEC float SDLCALL SDL_randf(void); + +/** + * Generate 32 pseudo-random bits. + * + * You likely want to use SDL_rand() to get a psuedo-random number instead. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \returns a random value in the range of [0-SDL_MAX_UINT32]. + * + * \threadsafety All calls should be made from a single thread + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand + * \sa SDL_randf + * \sa SDL_srand + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_rand_bits(void); + +/** + * Generate a pseudo-random number less than n for positive n + * + * The method used is faster and of better quality than `rand() % n`. Odds are + * roughly 99.9% even for n = 1 million. Evenness is better for smaller n, and + * much worse as n gets bigger. + * + * Example: to simulate a d6 use `SDL_rand_r(state, 6) + 1` The +1 converts + * 0..5 to 1..6 + * + * If you want to generate a pseudo-random number in the full range of Sint32, + * you should use: (Sint32)SDL_rand_bits_r(state) + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param state a pointer to the current random number state, this may not be + * NULL. + * \param n the number of possible outcomes. n must be positive. + * \returns a random value in the range of [0 .. n-1]. + * + * \threadsafety This function is thread-safe, as long as the state pointer + * isn't shared between threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand + * \sa SDL_rand_bits_r + * \sa SDL_randf_r + */ +extern SDL_DECLSPEC Sint32 SDLCALL SDL_rand_r(Uint64 *state, Sint32 n); + +/** + * Generate a uniform pseudo-random floating point number less than 1.0 + * + * If you want reproducible output, be sure to initialize with SDL_srand() + * first. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param state a pointer to the current random number state, this may not be + * NULL. + * \returns a random value in the range of [0.0, 1.0). + * + * \threadsafety This function is thread-safe, as long as the state pointer + * isn't shared between threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand_bits_r + * \sa SDL_rand_r + * \sa SDL_randf + */ +extern SDL_DECLSPEC float SDLCALL SDL_randf_r(Uint64 *state); + +/** + * Generate 32 pseudo-random bits. + * + * You likely want to use SDL_rand_r() to get a psuedo-random number instead. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param state a pointer to the current random number state, this may not be + * NULL. + * \returns a random value in the range of [0-SDL_MAX_UINT32]. + * + * \threadsafety This function is thread-safe, as long as the state pointer + * isn't shared between threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand_r + * \sa SDL_randf_r + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_rand_bits_r(Uint64 *state); + +#ifndef SDL_PI_D + +/** + * The value of Pi, as a double-precision floating point literal. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PI_F + */ +#define SDL_PI_D 3.141592653589793238462643383279502884 /**< pi (double) */ +#endif + +#ifndef SDL_PI_F + +/** + * The value of Pi, as a single-precision floating point literal. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PI_D + */ +#define SDL_PI_F 3.141592653589793238462643383279502884F /**< pi (float) */ +#endif + +/** + * Compute the arc cosine of `x`. + * + * The definition of `y = acos(x)` is `x = cos(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `0 <= y <= Pi` + * + * This function operates on double-precision floating point values, use + * SDL_acosf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc cosine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_acosf + * \sa SDL_asin + * \sa SDL_cos + */ +extern SDL_DECLSPEC double SDLCALL SDL_acos(double x); + +/** + * Compute the arc cosine of `x`. + * + * The definition of `y = acos(x)` is `x = cos(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `0 <= y <= Pi` + * + * This function operates on single-precision floating point values, use + * SDL_acos for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc cosine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_acos + * \sa SDL_asinf + * \sa SDL_cosf + */ +extern SDL_DECLSPEC float SDLCALL SDL_acosf(float x); + +/** + * Compute the arc sine of `x`. + * + * The definition of `y = asin(x)` is `x = sin(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on double-precision floating point values, use + * SDL_asinf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc sine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_asinf + * \sa SDL_acos + * \sa SDL_sin + */ +extern SDL_DECLSPEC double SDLCALL SDL_asin(double x); + +/** + * Compute the arc sine of `x`. + * + * The definition of `y = asin(x)` is `x = sin(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on single-precision floating point values, use + * SDL_asin for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc sine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_asin + * \sa SDL_acosf + * \sa SDL_sinf + */ +extern SDL_DECLSPEC float SDLCALL SDL_asinf(float x); + +/** + * Compute the arc tangent of `x`. + * + * The definition of `y = atan(x)` is `x = tan(y)`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on double-precision floating point values, use + * SDL_atanf for single-precision floats. + * + * To calculate the arc tangent of y / x, use SDL_atan2. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc tangent of of `x` in radians, or 0 if `x = 0`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atanf + * \sa SDL_atan2 + * \sa SDL_tan + */ +extern SDL_DECLSPEC double SDLCALL SDL_atan(double x); + +/** + * Compute the arc tangent of `x`. + * + * The definition of `y = atan(x)` is `x = tan(y)`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on single-precision floating point values, use + * SDL_atan for dboule-precision floats. + * + * To calculate the arc tangent of y / x, use SDL_atan2f. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc tangent of of `x` in radians, or 0 if `x = 0`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atan + * \sa SDL_atan2f + * \sa SDL_tanf + */ +extern SDL_DECLSPEC float SDLCALL SDL_atanf(float x); + +/** + * Compute the arc tangent of `y / x`, using the signs of x and y to adjust + * the result's quadrant. + * + * The definition of `z = atan2(x, y)` is `y = x tan(z)`, where the quadrant + * of z is determined based on the signs of x and y. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-Pi <= y <= Pi` + * + * This function operates on double-precision floating point values, use + * SDL_atan2f for single-precision floats. + * + * To calculate the arc tangent of a single value, use SDL_atan. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param y floating point value of the numerator (y coordinate). + * \param x floating point value of the denominator (x coordinate). + * \returns arc tangent of of `y / x` in radians, or, if `x = 0`, either + * `-Pi/2`, `0`, or `Pi/2`, depending on the value of `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atan2f + * \sa SDL_atan + * \sa SDL_tan + */ +extern SDL_DECLSPEC double SDLCALL SDL_atan2(double y, double x); + +/** + * Compute the arc tangent of `y / x`, using the signs of x and y to adjust + * the result's quadrant. + * + * The definition of `z = atan2(x, y)` is `y = x tan(z)`, where the quadrant + * of z is determined based on the signs of x and y. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-Pi <= y <= Pi` + * + * This function operates on single-precision floating point values, use + * SDL_atan2 for double-precision floats. + * + * To calculate the arc tangent of a single value, use SDL_atanf. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param y floating point value of the numerator (y coordinate). + * \param x floating point value of the denominator (x coordinate). + * \returns arc tangent of of `y / x` in radians, or, if `x = 0`, either + * `-Pi/2`, `0`, or `Pi/2`, depending on the value of `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atan2 + * \sa SDL_atan + * \sa SDL_tan + */ +extern SDL_DECLSPEC float SDLCALL SDL_atan2f(float y, float x); + +/** + * Compute the ceiling of `x`. + * + * The ceiling of `x` is the smallest integer `y` such that `y > x`, i.e `x` + * rounded up to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_ceilf for single-precision floats. + * + * \param x floating point value. + * \returns the ceiling of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ceilf + * \sa SDL_floor + * \sa SDL_trunc + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_ceil(double x); + +/** + * Compute the ceiling of `x`. + * + * The ceiling of `x` is the smallest integer `y` such that `y > x`, i.e `x` + * rounded up to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_ceil for double-precision floats. + * + * \param x floating point value. + * \returns the ceiling of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ceil + * \sa SDL_floorf + * \sa SDL_truncf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_ceilf(float x); + +/** + * Copy the sign of one floating-point value to another. + * + * The definition of copysign is that ``copysign(x, y) = abs(x) * sign(y)``. + * + * Domain: `-INF <= x <= INF`, ``-INF <= y <= f`` + * + * Range: `-INF <= z <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_copysignf for single-precision floats. + * + * \param x floating point value to use as the magnitude. + * \param y floating point value to use as the sign. + * \returns the floating point value with the sign of y and the magnitude of + * x. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_copysignf + * \sa SDL_fabs + */ +extern SDL_DECLSPEC double SDLCALL SDL_copysign(double x, double y); + +/** + * Copy the sign of one floating-point value to another. + * + * The definition of copysign is that ``copysign(x, y) = abs(x) * sign(y)``. + * + * Domain: `-INF <= x <= INF`, ``-INF <= y <= f`` + * + * Range: `-INF <= z <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_copysign for double-precision floats. + * + * \param x floating point value to use as the magnitude. + * \param y floating point value to use as the sign. + * \returns the floating point value with the sign of y and the magnitude of + * x. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_copysign + * \sa SDL_fabsf + */ +extern SDL_DECLSPEC float SDLCALL SDL_copysignf(float x, float y); + +/** + * Compute the cosine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on double-precision floating point values, use + * SDL_cosf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns cosine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_cosf + * \sa SDL_acos + * \sa SDL_sin + */ +extern SDL_DECLSPEC double SDLCALL SDL_cos(double x); + +/** + * Compute the cosine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on single-precision floating point values, use + * SDL_cos for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns cosine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_cos + * \sa SDL_acosf + * \sa SDL_sinf + */ +extern SDL_DECLSPEC float SDLCALL SDL_cosf(float x); + +/** + * Compute the exponential of `x`. + * + * The definition of `y = exp(x)` is `y = e^x`, where `e` is the base of the + * natural logarithm. The inverse is the natural logarithm, SDL_log. + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * The output will overflow if `exp(x)` is too large to be represented. + * + * This function operates on double-precision floating point values, use + * SDL_expf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns value of `e^x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_expf + * \sa SDL_log + */ +extern SDL_DECLSPEC double SDLCALL SDL_exp(double x); + +/** + * Compute the exponential of `x`. + * + * The definition of `y = exp(x)` is `y = e^x`, where `e` is the base of the + * natural logarithm. The inverse is the natural logarithm, SDL_logf. + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * The output will overflow if `exp(x)` is too large to be represented. + * + * This function operates on single-precision floating point values, use + * SDL_exp for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns value of `e^x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_exp + * \sa SDL_logf + */ +extern SDL_DECLSPEC float SDLCALL SDL_expf(float x); + +/** + * Compute the absolute value of `x` + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_fabsf for single-precision floats. + * + * \param x floating point value to use as the magnitude. + * \returns the absolute value of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fabsf + */ +extern SDL_DECLSPEC double SDLCALL SDL_fabs(double x); + +/** + * Compute the absolute value of `x` + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_fabs for double-precision floats. + * + * \param x floating point value to use as the magnitude. + * \returns the absolute value of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fabs + */ +extern SDL_DECLSPEC float SDLCALL SDL_fabsf(float x); + +/** + * Compute the floor of `x`. + * + * The floor of `x` is the largest integer `y` such that `y > x`, i.e `x` + * rounded down to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_floorf for single-precision floats. + * + * \param x floating point value. + * \returns the floor of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_floorf + * \sa SDL_ceil + * \sa SDL_trunc + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_floor(double x); + +/** + * Compute the floor of `x`. + * + * The floor of `x` is the largest integer `y` such that `y > x`, i.e `x` + * rounded down to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_floor for double-precision floats. + * + * \param x floating point value. + * \returns the floor of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_floor + * \sa SDL_ceilf + * \sa SDL_truncf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_floorf(float x); + +/** + * Truncate `x` to an integer. + * + * Rounds `x` to the next closest integer to 0. This is equivalent to removing + * the fractional part of `x`, leaving only the integer part. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_truncf for single-precision floats. + * + * \param x floating point value. + * \returns `x` truncated to an integer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_truncf + * \sa SDL_fmod + * \sa SDL_ceil + * \sa SDL_floor + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_trunc(double x); + +/** + * Truncate `x` to an integer. + * + * Rounds `x` to the next closest integer to 0. This is equivalent to removing + * the fractional part of `x`, leaving only the integer part. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_trunc for double-precision floats. + * + * \param x floating point value. + * \returns `x` truncated to an integer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_trunc + * \sa SDL_fmodf + * \sa SDL_ceilf + * \sa SDL_floorf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_truncf(float x); + +/** + * Return the floating-point remainder of `x / y` + * + * Divides `x` by `y`, and returns the remainder. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF`, `y != 0` + * + * Range: `-y <= z <= y` + * + * This function operates on double-precision floating point values, use + * SDL_fmodf for single-precision floats. + * + * \param x the numerator. + * \param y the denominator. Must not be 0. + * \returns the remainder of `x / y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fmodf + * \sa SDL_modf + * \sa SDL_trunc + * \sa SDL_ceil + * \sa SDL_floor + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_fmod(double x, double y); + +/** + * Return the floating-point remainder of `x / y` + * + * Divides `x` by `y`, and returns the remainder. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF`, `y != 0` + * + * Range: `-y <= z <= y` + * + * This function operates on single-precision floating point values, use + * SDL_fmod for double-precision floats. + * + * \param x the numerator. + * \param y the denominator. Must not be 0. + * \returns the remainder of `x / y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fmod + * \sa SDL_truncf + * \sa SDL_modff + * \sa SDL_ceilf + * \sa SDL_floorf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_fmodf(float x, float y); + +/** + * Return whether the value is infinity. + * + * \param x double-precision floating point value. + * \returns non-zero if the value is infinity, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isinff + */ +extern SDL_DECLSPEC int SDLCALL SDL_isinf(double x); + +/** + * Return whether the value is infinity. + * + * \param x floating point value. + * \returns non-zero if the value is infinity, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isinf + */ +extern SDL_DECLSPEC int SDLCALL SDL_isinff(float x); + +/** + * Return whether the value is NaN. + * + * \param x double-precision floating point value. + * \returns non-zero if the value is NaN, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isnanf + */ +extern SDL_DECLSPEC int SDLCALL SDL_isnan(double x); + +/** + * Return whether the value is NaN. + * + * \param x floating point value. + * \returns non-zero if the value is NaN, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isnan + */ +extern SDL_DECLSPEC int SDLCALL SDL_isnanf(float x); + +/** + * Compute the natural logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on double-precision floating point values, use + * SDL_logf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the natural logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_logf + * \sa SDL_log10 + * \sa SDL_exp + */ +extern SDL_DECLSPEC double SDLCALL SDL_log(double x); + +/** + * Compute the natural logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on single-precision floating point values, use + * SDL_log for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the natural logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_log + * \sa SDL_expf + */ +extern SDL_DECLSPEC float SDLCALL SDL_logf(float x); + +/** + * Compute the base-10 logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on double-precision floating point values, use + * SDL_log10f for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_log10f + * \sa SDL_log + * \sa SDL_pow + */ +extern SDL_DECLSPEC double SDLCALL SDL_log10(double x); + +/** + * Compute the base-10 logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on single-precision floating point values, use + * SDL_log10 for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_log10 + * \sa SDL_logf + * \sa SDL_powf + */ +extern SDL_DECLSPEC float SDLCALL SDL_log10f(float x); + +/** + * Split `x` into integer and fractional parts + * + * This function operates on double-precision floating point values, use + * SDL_modff for single-precision floats. + * + * \param x floating point value. + * \param y output pointer to store the integer part of `x`. + * \returns the fractional part of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_modff + * \sa SDL_trunc + * \sa SDL_fmod + */ +extern SDL_DECLSPEC double SDLCALL SDL_modf(double x, double *y); + +/** + * Split `x` into integer and fractional parts + * + * This function operates on single-precision floating point values, use + * SDL_modf for double-precision floats. + * + * \param x floating point value. + * \param y output pointer to store the integer part of `x`. + * \returns the fractional part of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_modf + * \sa SDL_truncf + * \sa SDL_fmodf + */ +extern SDL_DECLSPEC float SDLCALL SDL_modff(float x, float *y); + +/** + * Raise `x` to the power `y` + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-INF <= z <= INF` + * + * If `y` is the base of the natural logarithm (e), consider using SDL_exp + * instead. + * + * This function operates on double-precision floating point values, use + * SDL_powf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x the base. + * \param y the exponent. + * \returns `x` raised to the power `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_powf + * \sa SDL_exp + * \sa SDL_log + */ +extern SDL_DECLSPEC double SDLCALL SDL_pow(double x, double y); + +/** + * Raise `x` to the power `y` + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-INF <= z <= INF` + * + * If `y` is the base of the natural logarithm (e), consider using SDL_exp + * instead. + * + * This function operates on single-precision floating point values, use + * SDL_pow for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x the base. + * \param y the exponent. + * \returns `x` raised to the power `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_pow + * \sa SDL_expf + * \sa SDL_logf + */ +extern SDL_DECLSPEC float SDLCALL SDL_powf(float x, float y); + +/** + * Round `x` to the nearest integer. + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_roundf for single-precision floats. To get the result as an integer + * type, use SDL_lround. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_roundf + * \sa SDL_lround + * \sa SDL_floor + * \sa SDL_ceil + * \sa SDL_trunc + */ +extern SDL_DECLSPEC double SDLCALL SDL_round(double x); + +/** + * Round `x` to the nearest integer. + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_round for double-precision floats. To get the result as an integer + * type, use SDL_lroundf. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_round + * \sa SDL_lroundf + * \sa SDL_floorf + * \sa SDL_ceilf + * \sa SDL_truncf + */ +extern SDL_DECLSPEC float SDLCALL SDL_roundf(float x); + +/** + * Round `x` to the nearest integer representable as a long + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `MIN_LONG <= y <= MAX_LONG` + * + * This function operates on double-precision floating point values, use + * SDL_lroundf for single-precision floats. To get the result as a + * floating-point type, use SDL_round. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_lroundf + * \sa SDL_round + * \sa SDL_floor + * \sa SDL_ceil + * \sa SDL_trunc + */ +extern SDL_DECLSPEC long SDLCALL SDL_lround(double x); + +/** + * Round `x` to the nearest integer representable as a long + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `MIN_LONG <= y <= MAX_LONG` + * + * This function operates on single-precision floating point values, use + * SDL_lround for double-precision floats. To get the result as a + * floating-point type, use SDL_roundf. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_lround + * \sa SDL_roundf + * \sa SDL_floorf + * \sa SDL_ceilf + * \sa SDL_truncf + */ +extern SDL_DECLSPEC long SDLCALL SDL_lroundf(float x); + +/** + * Scale `x` by an integer power of two. + * + * Multiplies `x` by the `n`th power of the floating point radix (always 2). + * + * Domain: `-INF <= x <= INF`, `n` integer + * + * Range: `-INF <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_scalbnf for single-precision floats. + * + * \param x floating point value to be scaled. + * \param n integer exponent. + * \returns `x * 2^n`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_scalbnf + * \sa SDL_pow + */ +extern SDL_DECLSPEC double SDLCALL SDL_scalbn(double x, int n); + +/** + * Scale `x` by an integer power of two. + * + * Multiplies `x` by the `n`th power of the floating point radix (always 2). + * + * Domain: `-INF <= x <= INF`, `n` integer + * + * Range: `-INF <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_scalbn for double-precision floats. + * + * \param x floating point value to be scaled. + * \param n integer exponent. + * \returns `x * 2^n`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_scalbn + * \sa SDL_powf + */ +extern SDL_DECLSPEC float SDLCALL SDL_scalbnf(float x, int n); + +/** + * Compute the sine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on double-precision floating point values, use + * SDL_sinf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns sine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sinf + * \sa SDL_asin + * \sa SDL_cos + */ +extern SDL_DECLSPEC double SDLCALL SDL_sin(double x); + +/** + * Compute the sine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on single-precision floating point values, use + * SDL_sin for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns sine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sin + * \sa SDL_asinf + * \sa SDL_cosf + */ +extern SDL_DECLSPEC float SDLCALL SDL_sinf(float x); + +/** + * Compute the square root of `x`. + * + * Domain: `0 <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_sqrtf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than or equal to 0. + * \returns square root of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sqrtf + */ +extern SDL_DECLSPEC double SDLCALL SDL_sqrt(double x); + +/** + * Compute the square root of `x`. + * + * Domain: `0 <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_sqrt for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than or equal to 0. + * \returns square root of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sqrt + */ +extern SDL_DECLSPEC float SDLCALL SDL_sqrtf(float x); + +/** + * Compute the tangent of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_tanf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns tangent of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_tanf + * \sa SDL_sin + * \sa SDL_cos + * \sa SDL_atan + * \sa SDL_atan2 + */ +extern SDL_DECLSPEC double SDLCALL SDL_tan(double x); + +/** + * Compute the tangent of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_tan for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns tangent of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_tan + * \sa SDL_sinf + * \sa SDL_cosf + * \sa SDL_atanf + * \sa SDL_atan2f + */ +extern SDL_DECLSPEC float SDLCALL SDL_tanf(float x); + +/** + * An opaque handle representing string encoding conversion state. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_iconv_open + */ +typedef struct SDL_iconv_data_t *SDL_iconv_t; + +/** + * This function allocates a context for the specified character set + * conversion. + * + * \param tocode The target character encoding, must not be NULL. + * \param fromcode The source character encoding, must not be NULL. + * \returns a handle that must be freed with SDL_iconv_close, or + * SDL_ICONV_ERROR on failure. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv + * \sa SDL_iconv_close + * \sa SDL_iconv_string + */ +extern SDL_DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode, + const char *fromcode); + +/** + * This function frees a context used for character set conversion. + * + * \param cd The character set conversion handle. + * \returns 0 on success, or -1 on failure. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv + * \sa SDL_iconv_open + * \sa SDL_iconv_string + */ +extern SDL_DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd); + +/** + * This function converts text between encodings, reading from and writing to + * a buffer. + * + * It returns the number of succesful conversions on success. On error, + * SDL_ICONV_E2BIG is returned when the output buffer is too small, or + * SDL_ICONV_EILSEQ is returned when an invalid input sequence is encountered, + * or SDL_ICONV_EINVAL is returned when an incomplete input sequence is + * encountered. + * + * On exit: + * + * - inbuf will point to the beginning of the next multibyte sequence. On + * error, this is the location of the problematic input sequence. On + * success, this is the end of the input sequence. + * - inbytesleft will be set to the number of bytes left to convert, which + * will be 0 on success. + * - outbuf will point to the location where to store the next output byte. + * - outbytesleft will be set to the number of bytes left in the output + * buffer. + * + * \param cd The character set conversion context, created in + * SDL_iconv_open(). + * \param inbuf Address of variable that points to the first character of the + * input sequence. + * \param inbytesleft The number of bytes in the input buffer. + * \param outbuf Address of variable that points to the output buffer. + * \param outbytesleft The number of bytes in the output buffer. + * \returns the number of conversions on success, or a negative error code. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv_open + * \sa SDL_iconv_close + * \sa SDL_iconv_string + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, const char **inbuf, + size_t *inbytesleft, char **outbuf, + size_t *outbytesleft); + +#define SDL_ICONV_ERROR (size_t)-1 /**< Generic error. Check SDL_GetError()? */ +#define SDL_ICONV_E2BIG (size_t)-2 /**< Output buffer was too small. */ +#define SDL_ICONV_EILSEQ (size_t)-3 /**< Invalid input sequence was encountered. */ +#define SDL_ICONV_EINVAL (size_t)-4 /**< Incomplete input sequence was encountered. */ + + +/** + * Helper function to convert a string's encoding in one call. + * + * This function converts a buffer or string between encodings in one pass. + * + * The string does not need to be NULL-terminated; this function operates on + * the number of bytes specified in `inbytesleft` whether there is a NULL + * character anywhere in the buffer. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param tocode the character encoding of the output string. Examples are + * "UTF-8", "UCS-4", etc. + * \param fromcode the character encoding of data in `inbuf`. + * \param inbuf the string to convert to a different encoding. + * \param inbytesleft the size of the input string _in bytes_. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv_open + * \sa SDL_iconv_close + * \sa SDL_iconv + */ +extern SDL_DECLSPEC char * SDLCALL SDL_iconv_string(const char *tocode, + const char *fromcode, + const char *inbuf, + size_t inbytesleft); + +/* Some helper macros for common SDL_iconv_string cases... */ + +/** + * Convert a UTF-8 string to the current locale's character encoding. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_utf8_locale(S) SDL_iconv_string("", "UTF-8", S, SDL_strlen(S)+1) + +/** + * Convert a UTF-8 string to UCS-2. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2", "UTF-8", S, SDL_strlen(S)+1) + +/** + * Convert a UTF-8 string to UCS-4. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_utf8_ucs4(S) (Uint32 *)SDL_iconv_string("UCS-4", "UTF-8", S, SDL_strlen(S)+1) + +/** + * Convert a wchar_t string to UTF-8. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_wchar_utf8(S) SDL_iconv_string("UTF-8", "WCHAR_T", (char *)S, (SDL_wcslen(S)+1)*sizeof(wchar_t)) + + +/* force builds using Clang's static analysis tools to use literal C runtime + here, since there are possibly tests that are ineffective otherwise. */ +#if defined(__clang_analyzer__) && !defined(SDL_DISABLE_ANALYZE_MACROS) + +/* The analyzer knows about strlcpy even when the system doesn't provide it */ +#if !defined(HAVE_STRLCPY) && !defined(strlcpy) +size_t strlcpy(char *dst, const char *src, size_t size); +#endif + +/* The analyzer knows about strlcat even when the system doesn't provide it */ +#if !defined(HAVE_STRLCAT) && !defined(strlcat) +size_t strlcat(char *dst, const char *src, size_t size); +#endif + +#if !defined(HAVE_WCSLCPY) && !defined(wcslcpy) +size_t wcslcpy(wchar_t *dst, const wchar_t *src, size_t size); +#endif + +#if !defined(HAVE_WCSLCAT) && !defined(wcslcat) +size_t wcslcat(wchar_t *dst, const wchar_t *src, size_t size); +#endif + +#ifndef _WIN32 +/* strdup is not ANSI but POSIX, and its prototype might be hidden... */ +/* not for windows: might conflict with string.h where strdup may have + * dllimport attribute: https://github.com/libsdl-org/SDL/issues/12948 */ +char *strdup(const char *str); +#endif + +/* Starting LLVM 16, the analyser errors out if these functions do not have + their prototype defined (clang-diagnostic-implicit-function-declaration) */ +#include +#include + +#define SDL_malloc malloc +#define SDL_calloc calloc +#define SDL_realloc realloc +#define SDL_free free +#ifndef SDL_memcpy +#define SDL_memcpy memcpy +#endif +#ifndef SDL_memmove +#define SDL_memmove memmove +#endif +#ifndef SDL_memset +#define SDL_memset memset +#endif +#define SDL_memcmp memcmp +#define SDL_strlcpy strlcpy +#define SDL_strlcat strlcat +#define SDL_strlen strlen +#define SDL_wcslen wcslen +#define SDL_wcslcpy wcslcpy +#define SDL_wcslcat wcslcat +#define SDL_strdup strdup +#define SDL_wcsdup wcsdup +#define SDL_strchr strchr +#define SDL_strrchr strrchr +#define SDL_strstr strstr +#define SDL_wcsstr wcsstr +#define SDL_strtok_r strtok_r +#define SDL_strcmp strcmp +#define SDL_wcscmp wcscmp +#define SDL_strncmp strncmp +#define SDL_wcsncmp wcsncmp +#define SDL_strcasecmp strcasecmp +#define SDL_strncasecmp strncasecmp +#define SDL_strpbrk strpbrk +#define SDL_sscanf sscanf +#define SDL_vsscanf vsscanf +#define SDL_snprintf snprintf +#define SDL_vsnprintf vsnprintf +#endif + +/** + * Multiply two integers, checking for overflow. + * + * If `a * b` would overflow, return false. + * + * Otherwise store `a * b` via ret and return true. + * + * \param a the multiplicand. + * \param b the multiplier. + * \param ret on non-overflow output, stores the multiplication result, may + * not be NULL. + * \returns false on overflow, true if result is multiplied without overflow. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_size_mul_check_overflow(size_t a, size_t b, size_t *ret) +{ + if (a != 0 && b > SDL_SIZE_MAX / a) { + return false; + } + *ret = a * b; + return true; +} + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if SDL_HAS_BUILTIN(__builtin_mul_overflow) +/* This needs to be wrapped in an inline rather than being a direct #define, + * because __builtin_mul_overflow() is type-generic, but we want to be + * consistent about interpreting a and b as size_t. */ +SDL_FORCE_INLINE bool SDL_size_mul_check_overflow_builtin(size_t a, size_t b, size_t *ret) +{ + return (__builtin_mul_overflow(a, b, ret) == 0); +} +#define SDL_size_mul_check_overflow(a, b, ret) SDL_size_mul_check_overflow_builtin(a, b, ret) +#endif +#endif + +/** + * Add two integers, checking for overflow. + * + * If `a + b` would overflow, return false. + * + * Otherwise store `a + b` via ret and return true. + * + * \param a the first addend. + * \param b the second addend. + * \param ret on non-overflow output, stores the addition result, may not be + * NULL. + * \returns false on overflow, true if result is added without overflow. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_size_add_check_overflow(size_t a, size_t b, size_t *ret) +{ + if (b > SDL_SIZE_MAX - a) { + return false; + } + *ret = a + b; + return true; +} + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if SDL_HAS_BUILTIN(__builtin_add_overflow) +/* This needs to be wrapped in an inline rather than being a direct #define, + * the same as the call to __builtin_mul_overflow() above. */ +SDL_FORCE_INLINE bool SDL_size_add_check_overflow_builtin(size_t a, size_t b, size_t *ret) +{ + return (__builtin_add_overflow(a, b, ret) == 0); +} +#define SDL_size_add_check_overflow(a, b, ret) SDL_size_add_check_overflow_builtin(a, b, ret) +#endif +#endif + +/* This is a generic function pointer which should be cast to the type you expect */ +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A generic function pointer. + * + * In theory, generic function pointers should use this, instead of `void *`, + * since some platforms could treat code addresses differently than data + * addresses. Although in current times no popular platforms make this + * distinction, it is more correct and portable to use the correct type for a + * generic pointer. + * + * If for some reason you need to force this typedef to be an actual `void *`, + * perhaps to work around a compiler or existing code, you can define + * `SDL_FUNCTION_POINTER_IS_VOID_POINTER` before including any SDL headers. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void (*SDL_FunctionPointer)(void); +#elif defined(SDL_FUNCTION_POINTER_IS_VOID_POINTER) +typedef void *SDL_FunctionPointer; +#else +typedef void (*SDL_FunctionPointer)(void); +#endif + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_stdinc_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_storage.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_storage.h new file mode 100644 index 0000000..6837eba --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_storage.h @@ -0,0 +1,682 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryStorage + * + * The storage API is a high-level API designed to abstract away the + * portability issues that come up when using something lower-level (in SDL's + * case, this sits on top of the [Filesystem](CategoryFilesystem) and + * [IOStream](CategoryIOStream) subsystems). It is significantly more + * restrictive than a typical filesystem API, for a number of reasons: + * + * 1. **What to Access:** A common pitfall with existing filesystem APIs is + * the assumption that all storage is monolithic. However, many other + * platforms (game consoles in particular) are more strict about what _type_ + * of filesystem is being accessed; for example, game content and user data + * are usually two separate storage devices with entirely different + * characteristics (and possibly different low-level APIs altogether!). + * + * 2. **How to Access:** Another common mistake is applications assuming that + * all storage is universally writeable - again, many platforms treat game + * content and user data as two separate storage devices, and only user data + * is writeable while game content is read-only. + * + * 3. **When to Access:** The most common portability issue with filesystem + * access is _timing_ - you cannot always assume that the storage device is + * always accessible all of the time, nor can you assume that there are no + * limits to how long you have access to a particular device. + * + * Consider the following example: + * + * ```c + * void ReadGameData(void) + * { + * extern char** fileNames; + * extern size_t numFiles; + * for (size_t i = 0; i < numFiles; i += 1) { + * FILE *data = fopen(fileNames[i], "rwb"); + * if (data == NULL) { + * // Something bad happened! + * } else { + * // A bunch of stuff happens here + * fclose(data); + * } + * } + * } + * + * void ReadSave(void) + * { + * FILE *save = fopen("saves/save0.sav", "rb"); + * if (save == NULL) { + * // Something bad happened! + * } else { + * // A bunch of stuff happens here + * fclose(save); + * } + * } + * + * void WriteSave(void) + * { + * FILE *save = fopen("saves/save0.sav", "wb"); + * if (save == NULL) { + * // Something bad happened! + * } else { + * // A bunch of stuff happens here + * fclose(save); + * } + * } + * ``` + * + * Going over the bullet points again: + * + * 1. **What to Access:** This code accesses a global filesystem; game data + * and saves are all presumed to be in the current working directory (which + * may or may not be the game's installation folder!). + * + * 2. **How to Access:** This code assumes that content paths are writeable, + * and that save data is also writeable despite being in the same location as + * the game data. + * + * 3. **When to Access:** This code assumes that they can be called at any + * time, since the filesystem is always accessible and has no limits on how + * long the filesystem is being accessed. + * + * Due to these assumptions, the filesystem code is not portable and will fail + * under these common scenarios: + * + * - The game is installed on a device that is read-only, both content loading + * and game saves will fail or crash outright + * - Game/User storage is not implicitly mounted, so no files will be found + * for either scenario when a platform requires explicitly mounting + * filesystems + * - Save data may not be safe since the I/O is not being flushed or + * validated, so an error occurring elsewhere in the program may result in + * missing/corrupted save data + * + * When using SDL_Storage, these types of problems are virtually impossible to + * trip over: + * + * ```c + * void ReadGameData(void) + * { + * extern char** fileNames; + * extern size_t numFiles; + * + * SDL_Storage *title = SDL_OpenTitleStorage(NULL, 0); + * if (title == NULL) { + * // Something bad happened! + * } + * while (!SDL_StorageReady(title)) { + * SDL_Delay(1); + * } + * + * for (size_t i = 0; i < numFiles; i += 1) { + * void* dst; + * Uint64 dstLen = 0; + * + * if (SDL_GetStorageFileSize(title, fileNames[i], &dstLen) && dstLen > 0) { + * dst = SDL_malloc(dstLen); + * if (SDL_ReadStorageFile(title, fileNames[i], dst, dstLen)) { + * // A bunch of stuff happens here + * } else { + * // Something bad happened! + * } + * SDL_free(dst); + * } else { + * // Something bad happened! + * } + * } + * + * SDL_CloseStorage(title); + * } + * + * void ReadSave(void) + * { + * SDL_Storage *user = SDL_OpenUserStorage("libsdl", "Storage Example", 0); + * if (user == NULL) { + * // Something bad happened! + * } + * while (!SDL_StorageReady(user)) { + * SDL_Delay(1); + * } + * + * Uint64 saveLen = 0; + * if (SDL_GetStorageFileSize(user, "save0.sav", &saveLen) && saveLen > 0) { + * void* dst = SDL_malloc(saveLen); + * if (SDL_ReadStorageFile(user, "save0.sav", dst, saveLen)) { + * // A bunch of stuff happens here + * } else { + * // Something bad happened! + * } + * SDL_free(dst); + * } else { + * // Something bad happened! + * } + * + * SDL_CloseStorage(user); + * } + * + * void WriteSave(void) + * { + * SDL_Storage *user = SDL_OpenUserStorage("libsdl", "Storage Example", 0); + * if (user == NULL) { + * // Something bad happened! + * } + * while (!SDL_StorageReady(user)) { + * SDL_Delay(1); + * } + * + * extern void *saveData; // A bunch of stuff happened here... + * extern Uint64 saveLen; + * if (!SDL_WriteStorageFile(user, "save0.sav", saveData, saveLen)) { + * // Something bad happened! + * } + * + * SDL_CloseStorage(user); + * } + * ``` + * + * Note the improvements that SDL_Storage makes: + * + * 1. **What to Access:** This code explicitly reads from a title or user + * storage device based on the context of the function. + * + * 2. **How to Access:** This code explicitly uses either a read or write + * function based on the context of the function. + * + * 3. **When to Access:** This code explicitly opens the device when it needs + * to, and closes it when it is finished working with the filesystem. + * + * The result is an application that is significantly more robust against the + * increasing demands of platforms and their filesystems! + * + * A publicly available example of an SDL_Storage backend is the + * [Steam Cloud](https://partner.steamgames.com/doc/features/cloud) + * backend - you can initialize Steamworks when starting the program, and then + * SDL will recognize that Steamworks is initialized and automatically use + * ISteamRemoteStorage when the application opens user storage. More + * importantly, when you _open_ storage it knows to begin a "batch" of + * filesystem operations, and when you _close_ storage it knows to end and + * flush the batch. This is used by Steam to support + * [Dynamic Cloud Sync](https://steamcommunity.com/groups/steamworks/announcements/detail/3142949576401813670) + * ; users can save data on one PC, put the device to sleep, and then continue + * playing on another PC (and vice versa) with the save data fully + * synchronized across all devices, allowing for a seamless experience without + * having to do full restarts of the program. + * + * ## Notes on valid paths + * + * All paths in the Storage API use Unix-style path separators ('/'). Using a + * different path separator will not work, even if the underlying platform + * would otherwise accept it. This is to keep code using the Storage API + * portable between platforms and Storage implementations and simplify app + * code. + * + * Paths with relative directories ("." and "..") are forbidden by the Storage + * API. + * + * All valid UTF-8 strings (discounting the NULL terminator character and the + * '/' path separator) are usable for filenames, however, an underlying + * Storage implementation may not support particularly strange sequences and + * refuse to create files with those names, etc. + */ + +#ifndef SDL_storage_h_ +#define SDL_storage_h_ + +#include +#include +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Function interface for SDL_Storage. + * + * Apps that want to supply a custom implementation of SDL_Storage will fill + * in all the functions in this struct, and then pass it to SDL_OpenStorage to + * create a custom SDL_Storage object. + * + * It is not usually necessary to do this; SDL provides standard + * implementations for many things you might expect to do with an SDL_Storage. + * + * This structure should be initialized using SDL_INIT_INTERFACE() + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_INIT_INTERFACE + */ +typedef struct SDL_StorageInterface +{ + /* The version of this interface */ + Uint32 version; + + /* Called when the storage is closed */ + bool (SDLCALL *close)(void *userdata); + + /* Optional, returns whether the storage is currently ready for access */ + bool (SDLCALL *ready)(void *userdata); + + /* Enumerate a directory, optional for write-only storage */ + bool (SDLCALL *enumerate)(void *userdata, const char *path, SDL_EnumerateDirectoryCallback callback, void *callback_userdata); + + /* Get path information, optional for write-only storage */ + bool (SDLCALL *info)(void *userdata, const char *path, SDL_PathInfo *info); + + /* Read a file from storage, optional for write-only storage */ + bool (SDLCALL *read_file)(void *userdata, const char *path, void *destination, Uint64 length); + + /* Write a file to storage, optional for read-only storage */ + bool (SDLCALL *write_file)(void *userdata, const char *path, const void *source, Uint64 length); + + /* Create a directory, optional for read-only storage */ + bool (SDLCALL *mkdir)(void *userdata, const char *path); + + /* Remove a file or empty directory, optional for read-only storage */ + bool (SDLCALL *remove)(void *userdata, const char *path); + + /* Rename a path, optional for read-only storage */ + bool (SDLCALL *rename)(void *userdata, const char *oldpath, const char *newpath); + + /* Copy a file, optional for read-only storage */ + bool (SDLCALL *copy)(void *userdata, const char *oldpath, const char *newpath); + + /* Get the space remaining, optional for read-only storage */ + Uint64 (SDLCALL *space_remaining)(void *userdata); +} SDL_StorageInterface; + +/* Check the size of SDL_StorageInterface + * + * If this assert fails, either the compiler is padding to an unexpected size, + * or the interface has been updated and this should be updated to match and + * the code using this interface should be updated to handle the old version. + */ +SDL_COMPILE_TIME_ASSERT(SDL_StorageInterface_SIZE, + (sizeof(void *) == 4 && sizeof(SDL_StorageInterface) == 48) || + (sizeof(void *) == 8 && sizeof(SDL_StorageInterface) == 96)); + +/** + * An abstract interface for filesystem access. + * + * This is an opaque datatype. One can create this object using standard SDL + * functions like SDL_OpenTitleStorage or SDL_OpenUserStorage, etc, or create + * an object with a custom implementation using SDL_OpenStorage. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Storage SDL_Storage; + +/** + * Opens up a read-only container for the application's filesystem. + * + * \param override a path to override the backend's default title root. + * \param props a property list that may contain backend-specific information. + * \returns a title storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_OpenUserStorage + * \sa SDL_ReadStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenTitleStorage(const char *override, SDL_PropertiesID props); + +/** + * Opens up a container for a user's unique read/write filesystem. + * + * While title storage can generally be kept open throughout runtime, user + * storage should only be opened when the client is ready to read/write files. + * This allows the backend to properly batch file operations and flush them + * when the container has been closed; ensuring safe and optimal save I/O. + * + * \param org the name of your organization. + * \param app the name of your application. + * \param props a property list that may contain backend-specific information. + * \returns a user storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_OpenTitleStorage + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenUserStorage(const char *org, const char *app, SDL_PropertiesID props); + +/** + * Opens up a container for local filesystem storage. + * + * This is provided for development and tools. Portable applications should + * use SDL_OpenTitleStorage() for access to game data and + * SDL_OpenUserStorage() for access to user data. + * + * \param path the base path prepended to all storage paths, or NULL for no + * base path. + * \returns a filesystem storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_OpenTitleStorage + * \sa SDL_OpenUserStorage + * \sa SDL_ReadStorageFile + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenFileStorage(const char *path); + +/** + * Opens up a container using a client-provided storage interface. + * + * Applications do not need to use this function unless they are providing + * their own SDL_Storage implementation. If you just need an SDL_Storage, you + * should use the built-in implementations in SDL, like SDL_OpenTitleStorage() + * or SDL_OpenUserStorage(). + * + * This function makes a copy of `iface` and the caller does not need to keep + * it around after this call. + * + * \param iface the interface that implements this storage, initialized using + * SDL_INIT_INTERFACE(). + * \param userdata the pointer that will be passed to the interface functions. + * \returns a storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_INIT_INTERFACE + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenStorage(const SDL_StorageInterface *iface, void *userdata); + +/** + * Closes and frees a storage container. + * + * \param storage a storage container to close. + * \returns true if the container was freed with no errors, false otherwise; + * call SDL_GetError() for more information. Even if the function + * returns an error, the container data will be freed; the error is + * only for informational purposes. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenFileStorage + * \sa SDL_OpenStorage + * \sa SDL_OpenTitleStorage + * \sa SDL_OpenUserStorage + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CloseStorage(SDL_Storage *storage); + +/** + * Checks if the storage container is ready to use. + * + * This function should be called in regular intervals until it returns true - + * however, it is not recommended to spinwait on this call, as the backend may + * depend on a synchronous message loop. You might instead poll this in your + * game's main loop while processing events and drawing a loading screen. + * + * \param storage a storage container to query. + * \returns true if the container is ready, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StorageReady(SDL_Storage *storage); + +/** + * Query the size of a file within a storage container. + * + * \param storage a storage container to query. + * \param path the relative path of the file to query. + * \param length a pointer to be filled with the file's length. + * \returns true if the file could be queried or false on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetStorageFileSize(SDL_Storage *storage, const char *path, Uint64 *length); + +/** + * Synchronously read a file from a storage container into a client-provided + * buffer. + * + * The value of `length` must match the length of the file exactly; call + * SDL_GetStorageFileSize() to get this value. This behavior may be relaxed in + * a future release. + * + * \param storage a storage container to read from. + * \param path the relative path of the file to read. + * \param destination a client-provided buffer to read the file into. + * \param length the length of the destination buffer. + * \returns true if the file was read or false on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetStorageFileSize + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadStorageFile(SDL_Storage *storage, const char *path, void *destination, Uint64 length); + +/** + * Synchronously write a file from client memory into a storage container. + * + * \param storage a storage container to write to. + * \param path the relative path of the file to write. + * \param source a client-provided buffer to write from. + * \param length the length of the source buffer. + * \returns true if the file was written or false on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteStorageFile(SDL_Storage *storage, const char *path, const void *source, Uint64 length); + +/** + * Create a directory in a writable storage container. + * + * \param storage a storage container. + * \param path the path of the directory to create. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CreateStorageDirectory(SDL_Storage *storage, const char *path); + +/** + * Enumerate a directory in a storage container through a callback function. + * + * This function provides every directory entry through an app-provided + * callback, called once for each directory entry, until all results have been + * provided or the callback returns either SDL_ENUM_SUCCESS or + * SDL_ENUM_FAILURE. + * + * This will return false if there was a system problem in general, or if a + * callback returns SDL_ENUM_FAILURE. A successful return means a callback + * returned SDL_ENUM_SUCCESS to halt enumeration, or all directory entries + * were enumerated. + * + * If `path` is NULL, this is treated as a request to enumerate the root of + * the storage container's tree. An empty string also works for this. + * + * \param storage a storage container. + * \param path the path of the directory to enumerate, or NULL for the root. + * \param callback a function that is called for each entry in the directory. + * \param userdata a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnumerateStorageDirectory(SDL_Storage *storage, const char *path, SDL_EnumerateDirectoryCallback callback, void *userdata); + +/** + * Remove a file or an empty directory in a writable storage container. + * + * \param storage a storage container. + * \param path the path of the directory to enumerate. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RemoveStoragePath(SDL_Storage *storage, const char *path); + +/** + * Rename a file or directory in a writable storage container. + * + * \param storage a storage container. + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenameStoragePath(SDL_Storage *storage, const char *oldpath, const char *newpath); + +/** + * Copy a file in a writable storage container. + * + * \param storage a storage container. + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CopyStorageFile(SDL_Storage *storage, const char *oldpath, const char *newpath); + +/** + * Get information about a filesystem path in a storage container. + * + * \param storage a storage container. + * \param path the path to query. + * \param info a pointer filled in with information about the path, or NULL to + * check for the existence of a file. + * \returns true on success or false if the file doesn't exist, or another + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetStoragePathInfo(SDL_Storage *storage, const char *path, SDL_PathInfo *info); + +/** + * Queries the remaining space in a storage container. + * + * \param storage a storage container to query. + * \returns the amount of remaining space, in bytes. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetStorageSpaceRemaining(SDL_Storage *storage); + +/** + * Enumerate a directory tree, filtered by pattern, and return a list. + * + * Files are filtered out if they don't match the string in `pattern`, which + * may contain wildcard characters `*` (match everything) and `?` (match one + * character). If pattern is NULL, no filtering is done and all results are + * returned. Subdirectories are permitted, and are specified with a path + * separator of '/'. Wildcard characters `*` and `?` never match a path + * separator. + * + * `flags` may be set to SDL_GLOB_CASEINSENSITIVE to make the pattern matching + * case-insensitive. + * + * The returned array is always NULL-terminated, for your iterating + * convenience, but if `count` is non-NULL, on return it will contain the + * number of items in the array, not counting the NULL terminator. + * + * If `path` is NULL, this is treated as a request to enumerate the root of + * the storage container's tree. An empty string also works for this. + * + * \param storage a storage container. + * \param path the path of the directory to enumerate, or NULL for the root. + * \param pattern the pattern that files in the directory must match. Can be + * NULL. + * \param flags `SDL_GLOB_*` bitflags that affect this search. + * \param count on return, will be set to the number of items in the returned + * array. Can be NULL. + * \returns an array of strings on success or NULL on failure; call + * SDL_GetError() for more information. The caller should pass the + * returned pointer to SDL_free when done with it. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \threadsafety It is safe to call this function from any thread, assuming + * the `storage` object is thread-safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GlobStorageDirectory(SDL_Storage *storage, const char *path, const char *pattern, SDL_GlobFlags flags, int *count); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_storage_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_surface.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_surface.h new file mode 100644 index 0000000..15fce04 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_surface.h @@ -0,0 +1,1563 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategorySurface + * + * SDL surfaces are buffers of pixels in system RAM. These are useful for + * passing around and manipulating images that are not stored in GPU memory. + * + * SDL_Surface makes serious efforts to manage images in various formats, and + * provides a reasonable toolbox for transforming the data, including copying + * between surfaces, filling rectangles in the image data, etc. + * + * There is also a simple .bmp loader, SDL_LoadBMP(). SDL itself does not + * provide loaders for various other file formats, but there are several + * excellent external libraries that do, including its own satellite library, + * SDL_image: + * + * https://github.com/libsdl-org/SDL_image + */ + +#ifndef SDL_surface_h_ +#define SDL_surface_h_ + +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The flags on an SDL_Surface. + * + * These are generally considered read-only. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_SurfaceFlags; + +#define SDL_SURFACE_PREALLOCATED 0x00000001u /**< Surface uses preallocated pixel memory */ +#define SDL_SURFACE_LOCK_NEEDED 0x00000002u /**< Surface needs to be locked to access pixels */ +#define SDL_SURFACE_LOCKED 0x00000004u /**< Surface is currently locked */ +#define SDL_SURFACE_SIMD_ALIGNED 0x00000008u /**< Surface uses pixel memory allocated with SDL_aligned_alloc() */ + +/** + * Evaluates to true if the surface needs to be locked before access. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MUSTLOCK(S) (((S)->flags & SDL_SURFACE_LOCK_NEEDED) == SDL_SURFACE_LOCK_NEEDED) + +/** + * The scaling mode. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ScaleMode +{ + SDL_SCALEMODE_INVALID = -1, + SDL_SCALEMODE_NEAREST, /**< nearest pixel sampling */ + SDL_SCALEMODE_LINEAR /**< linear filtering */ +} SDL_ScaleMode; + +/** + * The flip mode. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_FlipMode +{ + SDL_FLIP_NONE, /**< Do not flip */ + SDL_FLIP_HORIZONTAL, /**< flip horizontally */ + SDL_FLIP_VERTICAL /**< flip vertically */ +} SDL_FlipMode; + +#ifndef SDL_INTERNAL + +/** + * A collection of pixels used in software blitting. + * + * Pixels are arranged in memory in rows, with the top row first. Each row + * occupies an amount of memory given by the pitch (sometimes known as the row + * stride in non-SDL APIs). + * + * Within each row, pixels are arranged from left to right until the width is + * reached. Each pixel occupies a number of bits appropriate for its format, + * with most formats representing each pixel as one or more whole bytes (in + * some indexed formats, instead multiple pixels are packed into each byte), + * and a byte order given by the format. After encoding all pixels, any + * remaining bytes to reach the pitch are used as padding to reach a desired + * alignment, and have undefined contents. + * + * When a surface holds YUV format data, the planes are assumed to be + * contiguous without padding between them, e.g. a 32x32 surface in NV12 + * format with a pitch of 32 would consist of 32x32 bytes of Y plane followed + * by 32x16 bytes of UV plane. + * + * When a surface holds MJPG format data, pixels points at the compressed JPEG + * image and pitch is the length of that data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateSurface + * \sa SDL_DestroySurface + */ +struct SDL_Surface +{ + SDL_SurfaceFlags flags; /**< The flags of the surface, read-only */ + SDL_PixelFormat format; /**< The format of the surface, read-only */ + int w; /**< The width of the surface, read-only. */ + int h; /**< The height of the surface, read-only. */ + int pitch; /**< The distance in bytes between rows of pixels, read-only */ + void *pixels; /**< A pointer to the pixels of the surface, the pixels are writeable if non-NULL */ + + int refcount; /**< Application reference count, used when freeing surface */ + + void *reserved; /**< Reserved for internal use */ +}; +#endif /* !SDL_INTERNAL */ + +typedef struct SDL_Surface SDL_Surface; + +/** + * Allocate a new surface with a specific pixel format. + * + * The pixels of the new surface are initialized to zero. + * + * \param width the width of the surface. + * \param height the height of the surface. + * \param format the SDL_PixelFormat for the new surface's pixel format. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSurfaceFrom + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_CreateSurface(int width, int height, SDL_PixelFormat format); + +/** + * Allocate a new surface with a specific pixel format and existing pixel + * data. + * + * No copy is made of the pixel data. Pixel data is not managed automatically; + * you must free the surface before you free the pixel data. + * + * Pitch is the offset in bytes from one row of pixels to the next, e.g. + * `width*4` for `SDL_PIXELFORMAT_RGBA8888`. + * + * You may pass NULL for pixels and 0 for pitch to create a surface that you + * will fill in with valid values later. + * + * \param width the width of the surface. + * \param height the height of the surface. + * \param format the SDL_PixelFormat for the new surface's pixel format. + * \param pixels a pointer to existing pixel data. + * \param pitch the number of bytes between each row, including padding. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSurface + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_CreateSurfaceFrom(int width, int height, SDL_PixelFormat format, void *pixels, int pitch); + +/** + * Free a surface. + * + * It is safe to pass NULL to this function. + * + * \param surface the SDL_Surface to free. + * + * \threadsafety No other thread should be using the surface when it is freed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSurface + * \sa SDL_CreateSurfaceFrom + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroySurface(SDL_Surface *surface); + +/** + * Get the properties associated with a surface. + * + * The following properties are understood by SDL: + * + * - `SDL_PROP_SURFACE_SDR_WHITE_POINT_FLOAT`: for HDR10 and floating point + * surfaces, this defines the value of 100% diffuse white, with higher + * values being displayed in the High Dynamic Range headroom. This defaults + * to 203 for HDR10 surfaces and 1.0 for floating point surfaces. + * - `SDL_PROP_SURFACE_HDR_HEADROOM_FLOAT`: for HDR10 and floating point + * surfaces, this defines the maximum dynamic range used by the content, in + * terms of the SDR white point. This defaults to 0.0, which disables tone + * mapping. + * - `SDL_PROP_SURFACE_TONEMAP_OPERATOR_STRING`: the tone mapping operator + * used when compressing from a surface with high dynamic range to another + * with lower dynamic range. Currently this supports "chrome", which uses + * the same tone mapping that Chrome uses for HDR content, the form "*=N", + * where N is a floating point scale factor applied in linear space, and + * "none", which disables tone mapping. This defaults to "chrome". + * - `SDL_PROP_SURFACE_HOTSPOT_X_NUMBER`: the hotspot pixel offset from the + * left edge of the image, if this surface is being used as a cursor. + * - `SDL_PROP_SURFACE_HOTSPOT_Y_NUMBER`: the hotspot pixel offset from the + * top edge of the image, if this surface is being used as a cursor. + * + * \param surface the SDL_Surface structure to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetSurfaceProperties(SDL_Surface *surface); + +#define SDL_PROP_SURFACE_SDR_WHITE_POINT_FLOAT "SDL.surface.SDR_white_point" +#define SDL_PROP_SURFACE_HDR_HEADROOM_FLOAT "SDL.surface.HDR_headroom" +#define SDL_PROP_SURFACE_TONEMAP_OPERATOR_STRING "SDL.surface.tonemap" +#define SDL_PROP_SURFACE_HOTSPOT_X_NUMBER "SDL.surface.hotspot.x" +#define SDL_PROP_SURFACE_HOTSPOT_Y_NUMBER "SDL.surface.hotspot.y" + +/** + * Set the colorspace used by a surface. + * + * Setting the colorspace doesn't change the pixels, only how they are + * interpreted in color operations. + * + * \param surface the SDL_Surface structure to update. + * \param colorspace an SDL_Colorspace value describing the surface + * colorspace. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorspace + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceColorspace(SDL_Surface *surface, SDL_Colorspace colorspace); + +/** + * Get the colorspace used by a surface. + * + * The colorspace defaults to SDL_COLORSPACE_SRGB_LINEAR for floating point + * formats, SDL_COLORSPACE_HDR10 for 10-bit formats, SDL_COLORSPACE_SRGB for + * other RGB surfaces and SDL_COLORSPACE_BT709_FULL for YUV textures. + * + * \param surface the SDL_Surface structure to query. + * \returns the colorspace used by the surface, or SDL_COLORSPACE_UNKNOWN if + * the surface is NULL. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceColorspace + */ +extern SDL_DECLSPEC SDL_Colorspace SDLCALL SDL_GetSurfaceColorspace(SDL_Surface *surface); + +/** + * Create a palette and associate it with a surface. + * + * This function creates a palette compatible with the provided surface. The + * palette is then returned for you to modify, and the surface will + * automatically use the new palette in future operations. You do not need to + * destroy the returned palette, it will be freed when the reference count + * reaches 0, usually when the surface is destroyed. + * + * Bitmap surfaces (with format SDL_PIXELFORMAT_INDEX1LSB or + * SDL_PIXELFORMAT_INDEX1MSB) will have the palette initialized with 0 as + * white and 1 as black. Other surfaces will get a palette initialized with + * white in every entry. + * + * If this function is called for a surface that already has a palette, a new + * palette will be created to replace it. + * + * \param surface the SDL_Surface structure to update. + * \returns a new SDL_Palette structure on success or NULL on failure (e.g. if + * the surface didn't have an index format); call SDL_GetError() for + * more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetPaletteColors + */ +extern SDL_DECLSPEC SDL_Palette * SDLCALL SDL_CreateSurfacePalette(SDL_Surface *surface); + +/** + * Set the palette used by a surface. + * + * A single palette can be shared with many surfaces. + * + * \param surface the SDL_Surface structure to update. + * \param palette the SDL_Palette structure to use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePalette + * \sa SDL_GetSurfacePalette + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfacePalette(SDL_Surface *surface, SDL_Palette *palette); + +/** + * Get the palette used by a surface. + * + * \param surface the SDL_Surface structure to query. + * \returns a pointer to the palette used by the surface, or NULL if there is + * no palette used. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfacePalette + */ +extern SDL_DECLSPEC SDL_Palette * SDLCALL SDL_GetSurfacePalette(SDL_Surface *surface); + +/** + * Add an alternate version of a surface. + * + * This function adds an alternate version of this surface, usually used for + * content with high DPI representations like cursors or icons. The size, + * format, and content do not need to match the original surface, and these + * alternate versions will not be updated when the original surface changes. + * + * This function adds a reference to the alternate version, so you should call + * SDL_DestroySurface() on the image after this call. + * + * \param surface the SDL_Surface structure to update. + * \param image a pointer to an alternate SDL_Surface to associate with this + * surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveSurfaceAlternateImages + * \sa SDL_GetSurfaceImages + * \sa SDL_SurfaceHasAlternateImages + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddSurfaceAlternateImage(SDL_Surface *surface, SDL_Surface *image); + +/** + * Return whether a surface has alternate versions available. + * + * \param surface the SDL_Surface structure to query. + * \returns true if alternate versions are available or false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddSurfaceAlternateImage + * \sa SDL_RemoveSurfaceAlternateImages + * \sa SDL_GetSurfaceImages + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SurfaceHasAlternateImages(SDL_Surface *surface); + +/** + * Get an array including all versions of a surface. + * + * This returns all versions of a surface, with the surface being queried as + * the first element in the returned array. + * + * Freeing the array of surfaces does not affect the surfaces in the array. + * They are still referenced by the surface being queried and will be cleaned + * up normally. + * + * \param surface the SDL_Surface structure to query. + * \param count a pointer filled in with the number of surface pointers + * returned, may be NULL. + * \returns a NULL terminated array of SDL_Surface pointers or NULL on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddSurfaceAlternateImage + * \sa SDL_RemoveSurfaceAlternateImages + * \sa SDL_SurfaceHasAlternateImages + */ +extern SDL_DECLSPEC SDL_Surface ** SDLCALL SDL_GetSurfaceImages(SDL_Surface *surface, int *count); + +/** + * Remove all alternate versions of a surface. + * + * This function removes a reference from all the alternative versions, + * destroying them if this is the last reference to them. + * + * \param surface the SDL_Surface structure to update. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddSurfaceAlternateImage + * \sa SDL_GetSurfaceImages + * \sa SDL_SurfaceHasAlternateImages + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveSurfaceAlternateImages(SDL_Surface *surface); + +/** + * Set up a surface for directly accessing the pixels. + * + * Between calls to SDL_LockSurface() / SDL_UnlockSurface(), you can write to + * and read from `surface->pixels`, using the pixel format stored in + * `surface->format`. Once you are done accessing the surface, you should use + * SDL_UnlockSurface() to release it. + * + * Not all surfaces require locking. If `SDL_MUSTLOCK(surface)` evaluates to + * 0, then you can read and write to the surface at any time, and the pixel + * format of the surface will not change. + * + * \param surface the SDL_Surface structure to be locked. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. The locking referred to by + * this function is making the pixels available for direct + * access, not thread-safe locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MUSTLOCK + * \sa SDL_UnlockSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockSurface(SDL_Surface *surface); + +/** + * Release a surface after directly accessing the pixels. + * + * \param surface the SDL_Surface structure to be unlocked. + * + * \threadsafety This function is not thread safe. The locking referred to by + * this function is making the pixels available for direct + * access, not thread-safe locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockSurface + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockSurface(SDL_Surface *surface); + +/** + * Load a BMP image from a seekable SDL data stream. + * + * The new surface should be freed with SDL_DestroySurface(). Not doing so + * will result in a memory leak. + * + * \param src the data stream for the surface. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns a pointer to a new SDL_Surface structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + * \sa SDL_LoadBMP + * \sa SDL_SaveBMP_IO + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_LoadBMP_IO(SDL_IOStream *src, bool closeio); + +/** + * Load a BMP image from a file. + * + * The new surface should be freed with SDL_DestroySurface(). Not doing so + * will result in a memory leak. + * + * \param file the BMP file to load. + * \returns a pointer to a new SDL_Surface structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + * \sa SDL_LoadBMP_IO + * \sa SDL_SaveBMP + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_LoadBMP(const char *file); + +/** + * Save a surface to a seekable SDL data stream in BMP format. + * + * Surfaces with a 24-bit, 32-bit and paletted 8-bit format get saved in the + * BMP directly. Other RGB formats with 8-bit or higher get converted to a + * 24-bit surface or, if they have an alpha mask or a colorkey, to a 32-bit + * surface before they are saved. YUV and paletted 1-bit and 4-bit formats are + * not supported. + * + * \param surface the SDL_Surface structure containing the image to be saved. + * \param dst a data stream to save to. + * \param closeio if true, calls SDL_CloseIO() on `dst` before returning, even + * in the case of an error. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadBMP_IO + * \sa SDL_SaveBMP + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveBMP_IO(SDL_Surface *surface, SDL_IOStream *dst, bool closeio); + +/** + * Save a surface to a file. + * + * Surfaces with a 24-bit, 32-bit and paletted 8-bit format get saved in the + * BMP directly. Other RGB formats with 8-bit or higher get converted to a + * 24-bit surface or, if they have an alpha mask or a colorkey, to a 32-bit + * surface before they are saved. YUV and paletted 1-bit and 4-bit formats are + * not supported. + * + * \param surface the SDL_Surface structure containing the image to be saved. + * \param file a file to save to. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadBMP + * \sa SDL_SaveBMP_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveBMP(SDL_Surface *surface, const char *file); + +/** + * Set the RLE acceleration hint for a surface. + * + * If RLE is enabled, color key and alpha blending blits are much faster, but + * the surface must be locked before directly accessing the pixels. + * + * \param surface the SDL_Surface structure to optimize. + * \param enabled true to enable RLE acceleration, false to disable it. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + * \sa SDL_LockSurface + * \sa SDL_UnlockSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceRLE(SDL_Surface *surface, bool enabled); + +/** + * Returns whether the surface is RLE enabled. + * + * It is safe to pass a NULL `surface` here; it will return false. + * + * \param surface the SDL_Surface structure to query. + * \returns true if the surface is RLE enabled, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceRLE + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SurfaceHasRLE(SDL_Surface *surface); + +/** + * Set the color key (transparent pixel) in a surface. + * + * The color key defines a pixel value that will be treated as transparent in + * a blit. For example, one can use this to specify that cyan pixels should be + * considered transparent, and therefore not rendered. + * + * It is a pixel of the format used by the surface, as generated by + * SDL_MapRGB(). + * + * \param surface the SDL_Surface structure to update. + * \param enabled true to enable color key, false to disable color key. + * \param key the transparent pixel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorKey + * \sa SDL_SetSurfaceRLE + * \sa SDL_SurfaceHasColorKey + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceColorKey(SDL_Surface *surface, bool enabled, Uint32 key); + +/** + * Returns whether the surface has a color key. + * + * It is safe to pass a NULL `surface` here; it will return false. + * + * \param surface the SDL_Surface structure to query. + * \returns true if the surface has a color key, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceColorKey + * \sa SDL_GetSurfaceColorKey + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SurfaceHasColorKey(SDL_Surface *surface); + +/** + * Get the color key (transparent pixel) for a surface. + * + * The color key is a pixel of the format used by the surface, as generated by + * SDL_MapRGB(). + * + * If the surface doesn't have color key enabled this function returns false. + * + * \param surface the SDL_Surface structure to query. + * \param key a pointer filled in with the transparent pixel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceColorKey + * \sa SDL_SurfaceHasColorKey + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceColorKey(SDL_Surface *surface, Uint32 *key); + +/** + * Set an additional color value multiplied into blit operations. + * + * When this surface is blitted, during the blit operation each source color + * channel is modulated by the appropriate color value according to the + * following formula: + * + * `srcC = srcC * (color / 255)` + * + * \param surface the SDL_Surface structure to update. + * \param r the red color value multiplied into blit operations. + * \param g the green color value multiplied into blit operations. + * \param b the blue color value multiplied into blit operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorMod + * \sa SDL_SetSurfaceAlphaMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceColorMod(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b); + + +/** + * Get the additional color value multiplied into blit operations. + * + * \param surface the SDL_Surface structure to query. + * \param r a pointer filled in with the current red color value. + * \param g a pointer filled in with the current green color value. + * \param b a pointer filled in with the current blue color value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceAlphaMod + * \sa SDL_SetSurfaceColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceColorMod(SDL_Surface *surface, Uint8 *r, Uint8 *g, Uint8 *b); + +/** + * Set an additional alpha value used in blit operations. + * + * When this surface is blitted, during the blit operation the source alpha + * value is modulated by this alpha value according to the following formula: + * + * `srcA = srcA * (alpha / 255)` + * + * \param surface the SDL_Surface structure to update. + * \param alpha the alpha value multiplied into blit operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceAlphaMod + * \sa SDL_SetSurfaceColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceAlphaMod(SDL_Surface *surface, Uint8 alpha); + +/** + * Get the additional alpha value used in blit operations. + * + * \param surface the SDL_Surface structure to query. + * \param alpha a pointer filled in with the current alpha value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorMod + * \sa SDL_SetSurfaceAlphaMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceAlphaMod(SDL_Surface *surface, Uint8 *alpha); + +/** + * Set the blend mode used for blit operations. + * + * To copy a surface to another surface (or texture) without blending with the + * existing data, the blendmode of the SOURCE surface should be set to + * `SDL_BLENDMODE_NONE`. + * + * \param surface the SDL_Surface structure to update. + * \param blendMode the SDL_BlendMode to use for blit blending. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode blendMode); + +/** + * Get the blend mode used for blit operations. + * + * \param surface the SDL_Surface structure to query. + * \param blendMode a pointer filled in with the current SDL_BlendMode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode *blendMode); + +/** + * Set the clipping rectangle for a surface. + * + * When `surface` is the destination of a blit, only the area within the clip + * rectangle is drawn into. + * + * Note that blits are automatically clipped to the edges of the source and + * destination surfaces. + * + * \param surface the SDL_Surface structure to be clipped. + * \param rect the SDL_Rect structure representing the clipping rectangle, or + * NULL to disable clipping. + * \returns true if the rectangle intersects the surface, otherwise false and + * blits will be completely clipped. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceClipRect(SDL_Surface *surface, const SDL_Rect *rect); + +/** + * Get the clipping rectangle for a surface. + * + * When `surface` is the destination of a blit, only the area within the clip + * rectangle is drawn into. + * + * \param surface the SDL_Surface structure representing the surface to be + * clipped. + * \param rect an SDL_Rect structure filled in with the clipping rectangle for + * the surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceClipRect(SDL_Surface *surface, SDL_Rect *rect); + +/** + * Flip a surface vertically or horizontally. + * + * \param surface the surface to flip. + * \param flip the direction to flip. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlipSurface(SDL_Surface *surface, SDL_FlipMode flip); + +/** + * Creates a new surface identical to the existing surface. + * + * If the original surface has alternate images, the new surface will have a + * reference to them as well. + * + * The returned surface should be freed with SDL_DestroySurface(). + * + * \param surface the surface to duplicate. + * \returns a copy of the surface or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_DuplicateSurface(SDL_Surface *surface); + +/** + * Creates a new surface identical to the existing surface, scaled to the + * desired size. + * + * The returned surface should be freed with SDL_DestroySurface(). + * + * \param surface the surface to duplicate and scale. + * \param width the width of the new surface. + * \param height the height of the new surface. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns a copy of the surface or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_ScaleSurface(SDL_Surface *surface, int width, int height, SDL_ScaleMode scaleMode); + +/** + * Copy an existing surface to a new surface of the specified format. + * + * This function is used to optimize images for faster *repeat* blitting. This + * is accomplished by converting the original and storing the result as a new + * surface. The new, optimized surface can then be used as the source for + * future blits, making them faster. + * + * If you are converting to an indexed surface and want to map colors to a + * palette, you can use SDL_ConvertSurfaceAndColorspace() instead. + * + * If the original surface has alternate images, the new surface will have a + * reference to them as well. + * + * \param surface the existing SDL_Surface structure to convert. + * \param format the new pixel format. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertSurfaceAndColorspace + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_ConvertSurface(SDL_Surface *surface, SDL_PixelFormat format); + +/** + * Copy an existing surface to a new surface of the specified format and + * colorspace. + * + * This function converts an existing surface to a new format and colorspace + * and returns the new surface. This will perform any pixel format and + * colorspace conversion needed. + * + * If the original surface has alternate images, the new surface will have a + * reference to them as well. + * + * \param surface the existing SDL_Surface structure to convert. + * \param format the new pixel format. + * \param palette an optional palette to use for indexed formats, may be NULL. + * \param colorspace the new colorspace. + * \param props an SDL_PropertiesID with additional color properties, or 0. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertSurface + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_ConvertSurfaceAndColorspace(SDL_Surface *surface, SDL_PixelFormat format, SDL_Palette *palette, SDL_Colorspace colorspace, SDL_PropertiesID props); + +/** + * Copy a block of pixels of one format to another format. + * + * \param width the width of the block to copy, in pixels. + * \param height the height of the block to copy, in pixels. + * \param src_format an SDL_PixelFormat value of the `src` pixels format. + * \param src a pointer to the source pixels. + * \param src_pitch the pitch of the source pixels, in bytes. + * \param dst_format an SDL_PixelFormat value of the `dst` pixels format. + * \param dst a pointer to be filled in with new pixel data. + * \param dst_pitch the pitch of the destination pixels, in bytes. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety The same destination pixels should not be used from two + * threads at once. It is safe to use the same source pixels + * from multiple threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertPixelsAndColorspace + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertPixels(int width, int height, SDL_PixelFormat src_format, const void *src, int src_pitch, SDL_PixelFormat dst_format, void *dst, int dst_pitch); + +/** + * Copy a block of pixels of one format and colorspace to another format and + * colorspace. + * + * \param width the width of the block to copy, in pixels. + * \param height the height of the block to copy, in pixels. + * \param src_format an SDL_PixelFormat value of the `src` pixels format. + * \param src_colorspace an SDL_Colorspace value describing the colorspace of + * the `src` pixels. + * \param src_properties an SDL_PropertiesID with additional source color + * properties, or 0. + * \param src a pointer to the source pixels. + * \param src_pitch the pitch of the source pixels, in bytes. + * \param dst_format an SDL_PixelFormat value of the `dst` pixels format. + * \param dst_colorspace an SDL_Colorspace value describing the colorspace of + * the `dst` pixels. + * \param dst_properties an SDL_PropertiesID with additional destination color + * properties, or 0. + * \param dst a pointer to be filled in with new pixel data. + * \param dst_pitch the pitch of the destination pixels, in bytes. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety The same destination pixels should not be used from two + * threads at once. It is safe to use the same source pixels + * from multiple threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertPixels + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertPixelsAndColorspace(int width, int height, SDL_PixelFormat src_format, SDL_Colorspace src_colorspace, SDL_PropertiesID src_properties, const void *src, int src_pitch, SDL_PixelFormat dst_format, SDL_Colorspace dst_colorspace, SDL_PropertiesID dst_properties, void *dst, int dst_pitch); + +/** + * Premultiply the alpha on a block of pixels. + * + * This is safe to use with src == dst, but not for other overlapping areas. + * + * \param width the width of the block to convert, in pixels. + * \param height the height of the block to convert, in pixels. + * \param src_format an SDL_PixelFormat value of the `src` pixels format. + * \param src a pointer to the source pixels. + * \param src_pitch the pitch of the source pixels, in bytes. + * \param dst_format an SDL_PixelFormat value of the `dst` pixels format. + * \param dst a pointer to be filled in with premultiplied pixel data. + * \param dst_pitch the pitch of the destination pixels, in bytes. + * \param linear true to convert from sRGB to linear space for the alpha + * multiplication, false to do multiplication in sRGB space. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety The same destination pixels should not be used from two + * threads at once. It is safe to use the same source pixels + * from multiple threads. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PremultiplyAlpha(int width, int height, SDL_PixelFormat src_format, const void *src, int src_pitch, SDL_PixelFormat dst_format, void *dst, int dst_pitch, bool linear); + +/** + * Premultiply the alpha in a surface. + * + * This is safe to use with src == dst, but not for other overlapping areas. + * + * \param surface the surface to modify. + * \param linear true to convert from sRGB to linear space for the alpha + * multiplication, false to do multiplication in sRGB space. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PremultiplySurfaceAlpha(SDL_Surface *surface, bool linear); + +/** + * Clear a surface with a specific color, with floating point precision. + * + * This function handles all surface formats, and ignores any clip rectangle. + * + * If the surface is YUV, the color is assumed to be in the sRGB colorspace, + * otherwise the color is assumed to be in the colorspace of the suface. + * + * \param surface the SDL_Surface to clear. + * \param r the red component of the pixel, normally in the range 0-1. + * \param g the green component of the pixel, normally in the range 0-1. + * \param b the blue component of the pixel, normally in the range 0-1. + * \param a the alpha component of the pixel, normally in the range 0-1. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearSurface(SDL_Surface *surface, float r, float g, float b, float a); + +/** + * Perform a fast fill of a rectangle with a specific color. + * + * `color` should be a pixel of the format used by the surface, and can be + * generated by SDL_MapRGB() or SDL_MapRGBA(). If the color value contains an + * alpha component then the destination is simply filled with that alpha + * information, no blending takes place. + * + * If there is a clip rectangle set on the destination (set via + * SDL_SetSurfaceClipRect()), then this function will fill based on the + * intersection of the clip rectangle and `rect`. + * + * \param dst the SDL_Surface structure that is the drawing target. + * \param rect the SDL_Rect structure representing the rectangle to fill, or + * NULL to fill the entire surface. + * \param color the color to fill with. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FillSurfaceRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FillSurfaceRect(SDL_Surface *dst, const SDL_Rect *rect, Uint32 color); + +/** + * Perform a fast fill of a set of rectangles with a specific color. + * + * `color` should be a pixel of the format used by the surface, and can be + * generated by SDL_MapRGB() or SDL_MapRGBA(). If the color value contains an + * alpha component then the destination is simply filled with that alpha + * information, no blending takes place. + * + * If there is a clip rectangle set on the destination (set via + * SDL_SetSurfaceClipRect()), then this function will fill based on the + * intersection of the clip rectangle and `rect`. + * + * \param dst the SDL_Surface structure that is the drawing target. + * \param rects an array of SDL_Rects representing the rectangles to fill. + * \param count the number of rectangles in the array. + * \param color the color to fill with. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FillSurfaceRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FillSurfaceRects(SDL_Surface *dst, const SDL_Rect *rects, int count, Uint32 color); + +/** + * Performs a fast blit from the source surface to the destination surface + * with clipping. + * + * If either `srcrect` or `dstrect` are NULL, the entire surface (`src` or + * `dst`) is copied while ensuring clipping to `dst->clip_rect`. + * + * The blit function should not be called on a locked surface. + * + * The blit semantics for surfaces with and without blending and colorkey are + * defined as follows: + * + * ``` + * RGBA->RGB: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source alpha-channel and per-surface alpha) + * SDL_SRCCOLORKEY ignored. + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy RGB. + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * RGB values of the source color key, ignoring alpha in the + * comparison. + * + * RGB->RGBA: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source per-surface alpha) + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy RGB, set destination alpha to source per-surface alpha value. + * both: + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * source color key. + * + * RGBA->RGBA: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source alpha-channel and per-surface alpha) + * SDL_SRCCOLORKEY ignored. + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy all of RGBA to the destination. + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * RGB values of the source color key, ignoring alpha in the + * comparison. + * + * RGB->RGB: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source per-surface alpha) + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy RGB. + * both: + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * source color key. + * ``` + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the x and y position in + * the destination surface, or NULL for (0,0). The width and + * height are ignored, and are copied from `srcrect`. If you + * want a specific width and height, you should use + * SDL_BlitSurfaceScaled(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurfaceScaled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurface(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform low-level surface blitting only. + * + * This is a semi-private blit function and it performs low-level surface + * blitting, assuming the input rectangles have already been clipped. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, may not be NULL. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, may not be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceUnchecked(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform a scaled blit to a destination surface, which may be of a different + * format. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire + * destination surface. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceScaled(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect, SDL_ScaleMode scaleMode); + +/** + * Perform low-level surface scaled blitting only. + * + * This is a semi-private function and it performs low-level surface blitting, + * assuming the input rectangles have already been clipped. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, may not be NULL. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, may not be NULL. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurfaceScaled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceUncheckedScaled(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect, SDL_ScaleMode scaleMode); + +/** + * Perform a stretched pixel copy from one surface to another. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire + * destination surface. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.4.0. + * + * \sa SDL_BlitSurfaceScaled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StretchSurface(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect, SDL_ScaleMode scaleMode); + +/** + * Perform a tiled blit to a destination surface, which may be of a different + * format. + * + * The pixels in `srcrect` will be repeated as many times as needed to + * completely fill `dstrect`. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceTiled(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform a scaled and tiled blit to a destination surface, which may be of a + * different format. + * + * The pixels in `srcrect` will be scaled and repeated as many times as needed + * to completely fill `dstrect`. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param scale the scale used to transform srcrect into the destination + * rectangle, e.g. a 32x32 texture with a scale of 2 would fill + * 64x64 tiles. + * \param scaleMode scale algorithm to be used. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceTiledWithScale(SDL_Surface *src, const SDL_Rect *srcrect, float scale, SDL_ScaleMode scaleMode, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform a scaled blit using the 9-grid algorithm to a destination surface, + * which may be of a different format. + * + * The pixels in the source surface are split into a 3x3 grid, using the + * different corner sizes for each corner, and the sides and center making up + * the remaining pixels. The corners are then scaled using `scale` and fit + * into the corners of the destination rectangle. The sides and center are + * then stretched into place to cover the remaining destination rectangle. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be used + * for the 9-grid, or NULL to use the entire surface. + * \param left_width the width, in pixels, of the left corners in `srcrect`. + * \param right_width the width, in pixels, of the right corners in `srcrect`. + * \param top_height the height, in pixels, of the top corners in `srcrect`. + * \param bottom_height the height, in pixels, of the bottom corners in + * `srcrect`. + * \param scale the scale used to transform the corner of `srcrect` into the + * corner of `dstrect`, or 0.0f for an unscaled blit. + * \param scaleMode scale algorithm to be used. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurface9Grid(SDL_Surface *src, const SDL_Rect *srcrect, int left_width, int right_width, int top_height, int bottom_height, float scale, SDL_ScaleMode scaleMode, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Map an RGB triple to an opaque pixel value for a surface. + * + * This function maps the RGB color value to the specified pixel format and + * returns the pixel value best approximating the given RGB color value for + * the given pixel format. + * + * If the surface has a palette, the index of the closest matching color in + * the palette will be returned. + * + * If the surface pixel format has an alpha component it will be returned as + * all 1 bits (fully opaque). + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param surface the surface to use for the pixel format and palette. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MapSurfaceRGBA + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapSurfaceRGB(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b); + +/** + * Map an RGBA quadruple to a pixel value for a surface. + * + * This function maps the RGBA color value to the specified pixel format and + * returns the pixel value best approximating the given RGBA color value for + * the given pixel format. + * + * If the surface pixel format has no alpha component the alpha value will be + * ignored (as it will be in formats with a palette). + * + * If the surface has a palette, the index of the closest matching color in + * the palette will be returned. + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param surface the surface to use for the pixel format and palette. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \param a the alpha component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MapSurfaceRGB + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapSurfaceRGBA(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Retrieves a single pixel from a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * Like SDL_GetRGBA, this uses the entire 0..255 range when converting color + * components from pixel formats with less than 8 bits per RGB component. + * + * \param surface the surface to read. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r a pointer filled in with the red channel, 0-255, or NULL to ignore + * this channel. + * \param g a pointer filled in with the green channel, 0-255, or NULL to + * ignore this channel. + * \param b a pointer filled in with the blue channel, 0-255, or NULL to + * ignore this channel. + * \param a a pointer filled in with the alpha channel, 0-255, or NULL to + * ignore this channel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadSurfacePixel(SDL_Surface *surface, int x, int y, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); + +/** + * Retrieves a single pixel from a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * \param surface the surface to read. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r a pointer filled in with the red channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \param g a pointer filled in with the green channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \param b a pointer filled in with the blue channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \param a a pointer filled in with the alpha channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadSurfacePixelFloat(SDL_Surface *surface, int x, int y, float *r, float *g, float *b, float *a); + +/** + * Writes a single pixel to a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * Like SDL_MapRGBA, this uses the entire 0..255 range when converting color + * components from pixel formats with less than 8 bits per RGB component. + * + * \param surface the surface to write. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r the red channel value, 0-255. + * \param g the green channel value, 0-255. + * \param b the blue channel value, 0-255. + * \param a the alpha channel value, 0-255. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteSurfacePixel(SDL_Surface *surface, int x, int y, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Writes a single pixel to a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * \param surface the surface to write. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r the red channel value, normally in the range 0-1. + * \param g the green channel value, normally in the range 0-1. + * \param b the blue channel value, normally in the range 0-1. + * \param a the alpha channel value, normally in the range 0-1. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteSurfacePixelFloat(SDL_Surface *surface, int x, int y, float r, float g, float b, float a); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_surface_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_system.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_system.h new file mode 100644 index 0000000..294089f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_system.h @@ -0,0 +1,818 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategorySystem + * + * Platform-specific SDL API functions. These are functions that deal with + * needs of specific operating systems, that didn't make sense to offer as + * platform-independent, generic APIs. + * + * Most apps can make do without these functions, but they can be useful for + * integrating with other parts of a specific system, adding platform-specific + * polish to an app, or solving problems that only affect one target. + */ + +#ifndef SDL_system_h_ +#define SDL_system_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + + +/* + * Platform specific functions for Windows + */ +#if defined(SDL_PLATFORM_WINDOWS) + +typedef struct tagMSG MSG; + +/** + * A callback to be used with SDL_SetWindowsMessageHook. + * + * This callback may modify the message, and should return true if the message + * should continue to be processed, or false to prevent further processing. + * + * As this is processing a message directly from the Windows event loop, this + * callback should do the minimum required work and return quickly. + * + * \param userdata the app-defined pointer provided to + * SDL_SetWindowsMessageHook. + * \param msg a pointer to a Win32 event structure to process. + * \returns true to let event continue on, false to drop it. + * + * \threadsafety This may only be called (by SDL) from the thread handling the + * Windows event loop. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetWindowsMessageHook + * \sa SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP + */ +typedef bool (SDLCALL *SDL_WindowsMessageHook)(void *userdata, MSG *msg); + +/** + * Set a callback for every Windows message, run before TranslateMessage(). + * + * The callback may modify the message, and should return true if the message + * should continue to be processed, or false to prevent further processing. + * + * \param callback the SDL_WindowsMessageHook function to call. + * \param userdata a pointer to pass to every iteration of `callback`. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WindowsMessageHook + * \sa SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetWindowsMessageHook(SDL_WindowsMessageHook callback, void *userdata); + +#endif /* defined(SDL_PLATFORM_WINDOWS) */ + +#if defined(SDL_PLATFORM_WIN32) || defined(SDL_PLATFORM_WINGDK) + +/** + * Get the D3D9 adapter index that matches the specified display. + * + * The returned adapter index can be passed to `IDirect3D9::CreateDevice` and + * controls on which monitor a full screen application will appear. + * + * \param displayID the instance of the display to query. + * \returns the D3D9 adapter index on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDirect3D9AdapterIndex(SDL_DisplayID displayID); + +/** + * Get the DXGI Adapter and Output indices for the specified display. + * + * The DXGI Adapter and Output indices can be passed to `EnumAdapters` and + * `EnumOutputs` respectively to get the objects required to create a DX10 or + * DX11 device and swap chain. + * + * \param displayID the instance of the display to query. + * \param adapterIndex a pointer to be filled in with the adapter index. + * \param outputIndex a pointer to be filled in with the output index. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDXGIOutputInfo(SDL_DisplayID displayID, int *adapterIndex, int *outputIndex); + +#endif /* defined(SDL_PLATFORM_WIN32) || defined(SDL_PLATFORM_WINGDK) */ + + +/* + * Platform specific functions for UNIX + */ + +/* this is defined in Xlib's headers, just need a simple declaration here. */ +typedef union _XEvent XEvent; + +/** + * A callback to be used with SDL_SetX11EventHook. + * + * This callback may modify the event, and should return true if the event + * should continue to be processed, or false to prevent further processing. + * + * As this is processing an event directly from the X11 event loop, this + * callback should do the minimum required work and return quickly. + * + * \param userdata the app-defined pointer provided to SDL_SetX11EventHook. + * \param xevent a pointer to an Xlib XEvent union to process. + * \returns true to let event continue on, false to drop it. + * + * \threadsafety This may only be called (by SDL) from the thread handling the + * X11 event loop. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetX11EventHook + */ +typedef bool (SDLCALL *SDL_X11EventHook)(void *userdata, XEvent *xevent); + +/** + * Set a callback for every X11 event. + * + * The callback may modify the event, and should return true if the event + * should continue to be processed, or false to prevent further processing. + * + * \param callback the SDL_X11EventHook function to call. + * \param userdata a pointer to pass to every iteration of `callback`. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetX11EventHook(SDL_X11EventHook callback, void *userdata); + +/* Platform specific functions for Linux*/ +#ifdef SDL_PLATFORM_LINUX + +/** + * Sets the UNIX nice value for a thread. + * + * This uses setpriority() if possible, and RealtimeKit if available. + * + * \param threadID the Unix thread ID to change priority of. + * \param priority the new, Unix-specific, priority value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetLinuxThreadPriority(Sint64 threadID, int priority); + +/** + * Sets the priority (not nice level) and scheduling policy for a thread. + * + * This uses setpriority() if possible, and RealtimeKit if available. + * + * \param threadID the Unix thread ID to change priority of. + * \param sdlPriority the new SDL_ThreadPriority value. + * \param schedPolicy the new scheduling policy (SCHED_FIFO, SCHED_RR, + * SCHED_OTHER, etc...). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetLinuxThreadPriorityAndPolicy(Sint64 threadID, int sdlPriority, int schedPolicy); + +#endif /* SDL_PLATFORM_LINUX */ + +/* + * Platform specific functions for iOS + */ +#ifdef SDL_PLATFORM_IOS + +/** + * The prototype for an Apple iOS animation callback. + * + * This datatype is only useful on Apple iOS. + * + * After passing a function pointer of this type to + * SDL_SetiOSAnimationCallback, the system will call that function pointer at + * a regular interval. + * + * \param userdata what was passed as `callbackParam` to + * SDL_SetiOSAnimationCallback as `callbackParam`. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetiOSAnimationCallback + */ +typedef void (SDLCALL *SDL_iOSAnimationCallback)(void *userdata); + +/** + * Use this function to set the animation callback on Apple iOS. + * + * The function prototype for `callback` is: + * + * ```c + * void callback(void *callbackParam); + * ``` + * + * Where its parameter, `callbackParam`, is what was passed as `callbackParam` + * to SDL_SetiOSAnimationCallback(). + * + * This function is only available on Apple iOS. + * + * For more information see: + * + * https://wiki.libsdl.org/SDL3/README/ios + * + * Note that if you use the "main callbacks" instead of a standard C `main` + * function, you don't have to use this API, as SDL will manage this for you. + * + * Details on main callbacks are here: + * + * https://wiki.libsdl.org/SDL3/README/main-functions + * + * \param window the window for which the animation callback should be set. + * \param interval the number of frames after which **callback** will be + * called. + * \param callback the function to call for every frame. + * \param callbackParam a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetiOSEventPump + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetiOSAnimationCallback(SDL_Window *window, int interval, SDL_iOSAnimationCallback callback, void *callbackParam); + +/** + * Use this function to enable or disable the SDL event pump on Apple iOS. + * + * This function is only available on Apple iOS. + * + * \param enabled true to enable the event pump, false to disable it. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetiOSAnimationCallback + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetiOSEventPump(bool enabled); + +#endif /* SDL_PLATFORM_IOS */ + + +/* + * Platform specific functions for Android + */ +#ifdef SDL_PLATFORM_ANDROID + +/** + * Get the Android Java Native Interface Environment of the current thread. + * + * This is the JNIEnv one needs to access the Java virtual machine from native + * code, and is needed for many Android APIs to be usable from C. + * + * The prototype of the function in SDL's code actually declare a void* return + * type, even if the implementation returns a pointer to a JNIEnv. The + * rationale being that the SDL headers can avoid including jni.h. + * + * \returns a pointer to Java native interface object (JNIEnv) to which the + * current thread is attached, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidActivity + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetAndroidJNIEnv(void); + +/** + * Retrieve the Java instance of the Android activity class. + * + * The prototype of the function in SDL's code actually declares a void* + * return type, even if the implementation returns a jobject. The rationale + * being that the SDL headers can avoid including jni.h. + * + * The jobject returned by the function is a local reference and must be + * released by the caller. See the PushLocalFrame() and PopLocalFrame() or + * DeleteLocalRef() functions of the Java native interface: + * + * https://docs.oracle.com/javase/1.5.0/docs/guide/jni/spec/functions.html + * + * \returns the jobject representing the instance of the Activity class of the + * Android application, or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidJNIEnv + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetAndroidActivity(void); + +/** + * Query Android API level of the current device. + * + * - API level 35: Android 15 (VANILLA_ICE_CREAM) + * - API level 34: Android 14 (UPSIDE_DOWN_CAKE) + * - API level 33: Android 13 (TIRAMISU) + * - API level 32: Android 12L (S_V2) + * - API level 31: Android 12 (S) + * - API level 30: Android 11 (R) + * - API level 29: Android 10 (Q) + * - API level 28: Android 9 (P) + * - API level 27: Android 8.1 (O_MR1) + * - API level 26: Android 8.0 (O) + * - API level 25: Android 7.1 (N_MR1) + * - API level 24: Android 7.0 (N) + * - API level 23: Android 6.0 (M) + * - API level 22: Android 5.1 (LOLLIPOP_MR1) + * - API level 21: Android 5.0 (LOLLIPOP, L) + * - API level 20: Android 4.4W (KITKAT_WATCH) + * - API level 19: Android 4.4 (KITKAT) + * - API level 18: Android 4.3 (JELLY_BEAN_MR2) + * - API level 17: Android 4.2 (JELLY_BEAN_MR1) + * - API level 16: Android 4.1 (JELLY_BEAN) + * - API level 15: Android 4.0.3 (ICE_CREAM_SANDWICH_MR1) + * - API level 14: Android 4.0 (ICE_CREAM_SANDWICH) + * - API level 13: Android 3.2 (HONEYCOMB_MR2) + * - API level 12: Android 3.1 (HONEYCOMB_MR1) + * - API level 11: Android 3.0 (HONEYCOMB) + * - API level 10: Android 2.3.3 (GINGERBREAD_MR1) + * + * \returns the Android API level. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAndroidSDKVersion(void); + +/** + * Query if the application is running on a Chromebook. + * + * \returns true if this is a Chromebook, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsChromebook(void); + +/** + * Query if the application is running on a Samsung DeX docking station. + * + * \returns true if this is a DeX docking station, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsDeXMode(void); + +/** + * Trigger the Android system back button behavior. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SendAndroidBackButton(void); + +/** + * See the official Android developer guide for more information: + * http://developer.android.com/guide/topics/data/data-storage.html + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ANDROID_EXTERNAL_STORAGE_READ 0x01 + +/** + * See the official Android developer guide for more information: + * http://developer.android.com/guide/topics/data/data-storage.html + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ANDROID_EXTERNAL_STORAGE_WRITE 0x02 + +/** + * Get the path used for internal storage for this Android application. + * + * This path is unique to your application and cannot be written to by other + * applications. + * + * Your internal storage path is typically: + * `/data/data/your.app.package/files`. + * + * This is a C wrapper over `android.content.Context.getFilesDir()`: + * + * https://developer.android.com/reference/android/content/Context#getFilesDir() + * + * \returns the path used for internal storage or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidExternalStoragePath + * \sa SDL_GetAndroidCachePath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAndroidInternalStoragePath(void); + +/** + * Get the current state of external storage for this Android application. + * + * The current state of external storage, a bitmask of these values: + * `SDL_ANDROID_EXTERNAL_STORAGE_READ`, `SDL_ANDROID_EXTERNAL_STORAGE_WRITE`. + * + * If external storage is currently unavailable, this will return 0. + * + * \returns the current state of external storage, or 0 if external storage is + * currently unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidExternalStoragePath + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetAndroidExternalStorageState(void); + +/** + * Get the path used for external storage for this Android application. + * + * This path is unique to your application, but is public and can be written + * to by other applications. + * + * Your external storage path is typically: + * `/storage/sdcard0/Android/data/your.app.package/files`. + * + * This is a C wrapper over `android.content.Context.getExternalFilesDir()`: + * + * https://developer.android.com/reference/android/content/Context#getExternalFilesDir() + * + * \returns the path used for external storage for this application on success + * or NULL on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidExternalStorageState + * \sa SDL_GetAndroidInternalStoragePath + * \sa SDL_GetAndroidCachePath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAndroidExternalStoragePath(void); + +/** + * Get the path used for caching data for this Android application. + * + * This path is unique to your application, but is public and can be written + * to by other applications. + * + * Your cache path is typically: `/data/data/your.app.package/cache/`. + * + * This is a C wrapper over `android.content.Context.getCacheDir()`: + * + * https://developer.android.com/reference/android/content/Context#getCacheDir() + * + * \returns the path used for caches for this application on success or NULL + * on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidInternalStoragePath + * \sa SDL_GetAndroidExternalStoragePath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAndroidCachePath(void); + +/** + * Callback that presents a response from a SDL_RequestAndroidPermission call. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \param permission the Android-specific permission name that was requested. + * \param granted true if permission is granted, false if denied. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_RequestAndroidPermission + */ +typedef void (SDLCALL *SDL_RequestAndroidPermissionCallback)(void *userdata, const char *permission, bool granted); + +/** + * Request permissions at runtime, asynchronously. + * + * You do not need to call this for built-in functionality of SDL; recording + * from a microphone or reading images from a camera, using standard SDL APIs, + * will manage permission requests for you. + * + * This function never blocks. Instead, the app-supplied callback will be + * called when a decision has been made. This callback may happen on a + * different thread, and possibly much later, as it might wait on a user to + * respond to a system dialog. If permission has already been granted for a + * specific entitlement, the callback will still fire, probably on the current + * thread and before this function returns. + * + * If the request submission fails, this function returns -1 and the callback + * will NOT be called, but this should only happen in catastrophic conditions, + * like memory running out. Normally there will be a yes or no to the request + * through the callback. + * + * For the `permission` parameter, choose a value from here: + * + * https://developer.android.com/reference/android/Manifest.permission + * + * \param permission the permission to request. + * \param cb the callback to trigger when the request has a response. + * \param userdata an app-controlled pointer that is passed to the callback. + * \returns true if the request was submitted, false if there was an error + * submitting. The result of the request is only ever reported + * through the callback, not this return value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RequestAndroidPermission(const char *permission, SDL_RequestAndroidPermissionCallback cb, void *userdata); + +/** + * Shows an Android toast notification. + * + * Toasts are a sort of lightweight notification that are unique to Android. + * + * https://developer.android.com/guide/topics/ui/notifiers/toasts + * + * Shows toast in UI thread. + * + * For the `gravity` parameter, choose a value from here, or -1 if you don't + * have a preference: + * + * https://developer.android.com/reference/android/view/Gravity + * + * \param message text message to be shown. + * \param duration 0=short, 1=long. + * \param gravity where the notification should appear on the screen. + * \param xoffset set this parameter only when gravity >=0. + * \param yoffset set this parameter only when gravity >=0. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowAndroidToast(const char *message, int duration, int gravity, int xoffset, int yoffset); + +/** + * Send a user command to SDLActivity. + * + * Override "boolean onUnhandledMessage(Message msg)" to handle the message. + * + * \param command user command that must be greater or equal to 0x8000. + * \param param user parameter. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendAndroidMessage(Uint32 command, int param); + +#endif /* SDL_PLATFORM_ANDROID */ + +/** + * Query if the current device is a tablet. + * + * If SDL can't determine this, it will return false. + * + * \returns true if the device is a tablet, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsTablet(void); + +/** + * Query if the current device is a TV. + * + * If SDL can't determine this, it will return false. + * + * \returns true if the device is a TV, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsTV(void); + +/** + * Application sandbox environment. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_Sandbox +{ + SDL_SANDBOX_NONE = 0, + SDL_SANDBOX_UNKNOWN_CONTAINER, + SDL_SANDBOX_FLATPAK, + SDL_SANDBOX_SNAP, + SDL_SANDBOX_MACOS +} SDL_Sandbox; + +/** + * Get the application sandbox environment, if any. + * + * \returns the application sandbox environment or SDL_SANDBOX_NONE if the + * application is not running in a sandbox environment. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Sandbox SDLCALL SDL_GetSandbox(void); + + +/* Functions used by iOS app delegates to notify SDL about state changes. */ + +/** + * Let iOS apps with external event handling report + * onApplicationWillTerminate. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationWillTerminate(void); + +/** + * Let iOS apps with external event handling report + * onApplicationDidReceiveMemoryWarning. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidReceiveMemoryWarning(void); + +/** + * Let iOS apps with external event handling report + * onApplicationWillResignActive. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationWillEnterBackground(void); + +/** + * Let iOS apps with external event handling report + * onApplicationDidEnterBackground. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidEnterBackground(void); + +/** + * Let iOS apps with external event handling report + * onApplicationWillEnterForeground. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationWillEnterForeground(void); + +/** + * Let iOS apps with external event handling report + * onApplicationDidBecomeActive. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidEnterForeground(void); + +#ifdef SDL_PLATFORM_IOS + +/** + * Let iOS apps with external event handling report + * onApplicationDidChangeStatusBarOrientation. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidChangeStatusBarOrientation(void); +#endif + +/* + * Functions used only by GDK + */ +#ifdef SDL_PLATFORM_GDK +typedef struct XTaskQueueObject *XTaskQueueHandle; +typedef struct XUser *XUserHandle; + +/** + * Gets a reference to the global async task queue handle for GDK, + * initializing if needed. + * + * Once you are done with the task queue, you should call + * XTaskQueueCloseHandle to reduce the reference count to avoid a resource + * leak. + * + * \param outTaskQueue a pointer to be filled in with task queue handle. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGDKTaskQueue(XTaskQueueHandle *outTaskQueue); + +/** + * Gets a reference to the default user handle for GDK. + * + * This is effectively a synchronous version of XUserAddAsync, which always + * prefers the default user and allows a sign-in UI. + * + * \param outUserHandle a pointer to be filled in with the default user + * handle. + * \returns true if success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGDKDefaultUser(XUserHandle *outUserHandle); + +#endif + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_system_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_thread.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_thread.h new file mode 100644 index 0000000..e981b54 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_thread.h @@ -0,0 +1,578 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_thread_h_ +#define SDL_thread_h_ + +/** + * # CategoryThread + * + * SDL offers cross-platform thread management functions. These are mostly + * concerned with starting threads, setting their priority, and dealing with + * their termination. + * + * In addition, there is support for Thread Local Storage (data that is unique + * to each thread, but accessed from a single key). + * + * On platforms without thread support (such as Emscripten when built without + * pthreads), these functions still exist, but things like SDL_CreateThread() + * will report failure without doing anything. + * + * If you're going to work with threads, you almost certainly need to have a + * good understanding of [CategoryMutex](CategoryMutex) as well. + */ + +#include +#include +#include + +/* Thread synchronization primitives */ +#include + +#if defined(SDL_PLATFORM_WINDOWS) +#include /* _beginthreadex() and _endthreadex() */ +#endif + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The SDL thread object. + * + * These are opaque data. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_WaitThread + */ +typedef struct SDL_Thread SDL_Thread; + +/** + * A unique numeric ID that identifies a thread. + * + * These are different from SDL_Thread objects, which are generally what an + * application will operate on, but having a way to uniquely identify a thread + * can be useful at times. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetThreadID + * \sa SDL_GetCurrentThreadID + */ +typedef Uint64 SDL_ThreadID; + +/** + * Thread local storage ID. + * + * 0 is the invalid ID. An app can create these and then set data for these + * IDs that is unique to each thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetTLS + * \sa SDL_SetTLS + */ +typedef SDL_AtomicInt SDL_TLSID; + +/** + * The SDL thread priority. + * + * SDL will make system changes as necessary in order to apply the thread + * priority. Code which attempts to control thread state related to priority + * should be aware that calling SDL_SetCurrentThreadPriority may alter such + * state. SDL_HINT_THREAD_PRIORITY_POLICY can be used to control aspects of + * this behavior. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ThreadPriority { + SDL_THREAD_PRIORITY_LOW, + SDL_THREAD_PRIORITY_NORMAL, + SDL_THREAD_PRIORITY_HIGH, + SDL_THREAD_PRIORITY_TIME_CRITICAL +} SDL_ThreadPriority; + +/** + * The SDL thread state. + * + * The current state of a thread can be checked by calling SDL_GetThreadState. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetThreadState + */ +typedef enum SDL_ThreadState +{ + SDL_THREAD_UNKNOWN, /**< The thread is not valid */ + SDL_THREAD_ALIVE, /**< The thread is currently running */ + SDL_THREAD_DETACHED, /**< The thread is detached and can't be waited on */ + SDL_THREAD_COMPLETE /**< The thread has finished and should be cleaned up with SDL_WaitThread() */ +} SDL_ThreadState; + +/** + * The function passed to SDL_CreateThread() as the new thread's entry point. + * + * \param data what was passed as `data` to SDL_CreateThread(). + * \returns a value that can be reported through SDL_WaitThread(). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef int (SDLCALL *SDL_ThreadFunction) (void *data); + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/* + * Note that these aren't the correct function signatures in this block, but + * this is what the API reference manual should look like for all intents and + * purposes. + * + * Technical details, not for the wiki (hello, header readers!)... + * + * On Windows (and maybe other platforms), a program might use a different + * C runtime than its libraries. Or, in SDL's case, it might use a C runtime + * while SDL uses none at all. + * + * C runtimes expect to initialize thread-specific details when a new thread + * is created, but to do this in SDL_CreateThread would require SDL to know + * intimate details about the caller's C runtime, which is not possible. + * + * So SDL_CreateThread has two extra parameters, which are + * hidden at compile time by macros: the C runtime's `_beginthreadex` and + * `_endthreadex` entry points. If these are not NULL, they are used to spin + * and terminate the new thread; otherwise the standard Win32 `CreateThread` + * function is used. When `SDL_CreateThread` is called from a compiler that + * needs this C runtime thread init function, macros insert the appropriate + * function pointers for SDL_CreateThread's caller (which might be a different + * compiler with a different runtime in different calls to SDL_CreateThread!). + * + * SDL_BeginThreadFunction defaults to `_beginthreadex` on Windows (and NULL + * everywhere else), but apps that have extremely specific special needs can + * define this to something else and the SDL headers will use it, passing the + * app-defined value to SDL_CreateThread calls. Redefine this with caution! + * + * Platforms that don't need _beginthread stuff (most everything) will fail + * SDL_CreateThread with an error if these pointers _aren't_ NULL. + * + * Unless you are doing something extremely complicated, like perhaps a + * language binding, **you should never deal with this directly**. Let SDL's + * macros handle this platform-specific detail transparently! + */ + +/** + * Create a new thread with a default stack size. + * + * This is a convenience function, equivalent to calling + * SDL_CreateThreadWithProperties with the following properties set: + * + * - `SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER`: `fn` + * - `SDL_PROP_THREAD_CREATE_NAME_STRING`: `name` + * - `SDL_PROP_THREAD_CREATE_USERDATA_POINTER`: `data` + * + * Note that this "function" is actually a macro that calls an internal + * function with two extra parameters not listed here; they are hidden through + * preprocessor macros and are needed to support various C runtimes at the + * point of the function call. Language bindings that aren't using the C + * headers will need to deal with this. + * + * Usually, apps should just call this function the same way on every platform + * and let the macros hide the details. + * + * \param fn the SDL_ThreadFunction function to call in the new thread. + * \param name the name of the thread. + * \param data a pointer that is passed to `fn`. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThreadWithProperties + * \sa SDL_WaitThread + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data); + +/** + * Create a new thread with with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER`: an SDL_ThreadFunction + * value that will be called at the start of the new thread's life. + * Required. + * - `SDL_PROP_THREAD_CREATE_NAME_STRING`: the name of the new thread, which + * might be available to debuggers. Optional, defaults to NULL. + * - `SDL_PROP_THREAD_CREATE_USERDATA_POINTER`: an arbitrary app-defined + * pointer, which is passed to the entry function on the new thread, as its + * only parameter. Optional, defaults to NULL. + * - `SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER`: the size, in bytes, of the new + * thread's stack. Optional, defaults to 0 (system-defined default). + * + * SDL makes an attempt to report `SDL_PROP_THREAD_CREATE_NAME_STRING` to the + * system, so that debuggers can display it. Not all platforms support this. + * + * Thread naming is a little complicated: Most systems have very small limits + * for the string length (Haiku has 32 bytes, Linux currently has 16, Visual + * C++ 6.0 has _nine_!), and possibly other arbitrary rules. You'll have to + * see what happens with your system's debugger. The name should be UTF-8 (but + * using the naming limits of C identifiers is a better bet). There are no + * requirements for thread naming conventions, so long as the string is + * null-terminated UTF-8, but these guidelines are helpful in choosing a name: + * + * https://stackoverflow.com/questions/149932/naming-conventions-for-threads + * + * If a system imposes requirements, SDL will try to munge the string for it + * (truncate, etc), but the original string contents will be available from + * SDL_GetThreadName(). + * + * The size (in bytes) of the new stack can be specified with + * `SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER`. Zero means "use the system + * default" which might be wildly different between platforms. x86 Linux + * generally defaults to eight megabytes, an embedded device might be a few + * kilobytes instead. You generally need to specify a stack that is a multiple + * of the system's page size (in many cases, this is 4 kilobytes, but check + * your system documentation). + * + * Note that this "function" is actually a macro that calls an internal + * function with two extra parameters not listed here; they are hidden through + * preprocessor macros and are needed to support various C runtimes at the + * point of the function call. Language bindings that aren't using the C + * headers will need to deal with this. + * + * The actual symbol in SDL is `SDL_CreateThreadWithPropertiesRuntime`, so + * there is no symbol clash, but trying to load an SDL shared library and look + * for "SDL_CreateThreadWithProperties" will fail. + * + * Usually, apps should just call this function the same way on every platform + * and let the macros hide the details. + * + * \param props the properties to use. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_WaitThread + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThreadWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER "SDL.thread.create.entry_function" +#define SDL_PROP_THREAD_CREATE_NAME_STRING "SDL.thread.create.name" +#define SDL_PROP_THREAD_CREATE_USERDATA_POINTER "SDL.thread.create.userdata" +#define SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER "SDL.thread.create.stacksize" + +/* end wiki documentation for macros that are meant to look like functions. */ +#endif + + +/* The real implementation, hidden from the wiki, so it can show this as real functions that don't have macro magic. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +# if defined(SDL_PLATFORM_WINDOWS) +# ifndef SDL_BeginThreadFunction +# define SDL_BeginThreadFunction _beginthreadex +# endif +# ifndef SDL_EndThreadFunction +# define SDL_EndThreadFunction _endthreadex +# endif +# endif +#endif + +/* currently no other platforms than Windows use _beginthreadex/_endthreadex things. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +# ifndef SDL_BeginThreadFunction +# define SDL_BeginThreadFunction NULL +# endif +#endif + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +# ifndef SDL_EndThreadFunction +# define SDL_EndThreadFunction NULL +# endif +#endif + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +/* These are the actual functions exported from SDL! Don't use them directly! Use the SDL_CreateThread and SDL_CreateThreadWithProperties macros! */ +/** + * The actual entry point for SDL_CreateThread. + * + * \param fn the SDL_ThreadFunction function to call in the new thread + * \param name the name of the thread + * \param data a pointer that is passed to `fn` + * \param pfnBeginThread the C runtime's _beginthreadex (or whatnot). Can be NULL. + * \param pfnEndThread the C runtime's _endthreadex (or whatnot). Can be NULL. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThreadRuntime(SDL_ThreadFunction fn, const char *name, void *data, SDL_FunctionPointer pfnBeginThread, SDL_FunctionPointer pfnEndThread); + +/** + * The actual entry point for SDL_CreateThreadWithProperties. + * + * \param props the properties to use + * \param pfnBeginThread the C runtime's _beginthreadex (or whatnot). Can be NULL. + * \param pfnEndThread the C runtime's _endthreadex (or whatnot). Can be NULL. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThreadWithPropertiesRuntime(SDL_PropertiesID props, SDL_FunctionPointer pfnBeginThread, SDL_FunctionPointer pfnEndThread); + +#define SDL_CreateThread(fn, name, data) SDL_CreateThreadRuntime((fn), (name), (data), (SDL_FunctionPointer) (SDL_BeginThreadFunction), (SDL_FunctionPointer) (SDL_EndThreadFunction)) +#define SDL_CreateThreadWithProperties(props) SDL_CreateThreadWithPropertiesRuntime((props), (SDL_FunctionPointer) (SDL_BeginThreadFunction), (SDL_FunctionPointer) (SDL_EndThreadFunction)) +#define SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER "SDL.thread.create.entry_function" +#define SDL_PROP_THREAD_CREATE_NAME_STRING "SDL.thread.create.name" +#define SDL_PROP_THREAD_CREATE_USERDATA_POINTER "SDL.thread.create.userdata" +#define SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER "SDL.thread.create.stacksize" +#endif + + +/** + * Get the thread name as it was specified in SDL_CreateThread(). + * + * \param thread the thread to query. + * \returns a pointer to a UTF-8 string that names the specified thread, or + * NULL if it doesn't have a name. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetThreadName(SDL_Thread *thread); + +/** + * Get the thread identifier for the current thread. + * + * This thread identifier is as reported by the underlying operating system. + * If SDL is running on a platform that does not support threads the return + * value will always be zero. + * + * This function also returns a valid thread ID when called from the main + * thread. + * + * \returns the ID of the current thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetThreadID + */ +extern SDL_DECLSPEC SDL_ThreadID SDLCALL SDL_GetCurrentThreadID(void); + +/** + * Get the thread identifier for the specified thread. + * + * This thread identifier is as reported by the underlying operating system. + * If SDL is running on a platform that does not support threads the return + * value will always be zero. + * + * \param thread the thread to query. + * \returns the ID of the specified thread, or the ID of the current thread if + * `thread` is NULL. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentThreadID + */ +extern SDL_DECLSPEC SDL_ThreadID SDLCALL SDL_GetThreadID(SDL_Thread *thread); + +/** + * Set the priority for the current thread. + * + * Note that some platforms will not let you alter the priority (or at least, + * promote the thread to a higher priority) at all, and some require you to be + * an administrator account. Be prepared for this to fail. + * + * \param priority the SDL_ThreadPriority to set. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetCurrentThreadPriority(SDL_ThreadPriority priority); + +/** + * Wait for a thread to finish. + * + * Threads that haven't been detached will remain until this function cleans + * them up. Not doing so is a resource leak. + * + * Once a thread has been cleaned up through this function, the SDL_Thread + * that references it becomes invalid and should not be referenced again. As + * such, only one thread may call SDL_WaitThread() on another. + * + * The return code from the thread function is placed in the area pointed to + * by `status`, if `status` is not NULL. + * + * You may not wait on a thread that has been used in a call to + * SDL_DetachThread(). Use either that function or this one, but not both, or + * behavior is undefined. + * + * It is safe to pass a NULL thread to this function; it is a no-op. + * + * Note that the thread pointer is freed by this function and is not valid + * afterward. + * + * \param thread the SDL_Thread pointer that was returned from the + * SDL_CreateThread() call that started this thread. + * \param status a pointer filled in with the value returned from the thread + * function by its 'return', or -1 if the thread has been + * detached or isn't valid, may be NULL. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_DetachThread + */ +extern SDL_DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread *thread, int *status); + +/** + * Get the current state of a thread. + * + * \param thread the thread to query. + * \returns the current state of a thread, or SDL_THREAD_UNKNOWN if the thread + * isn't valid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ThreadState + */ +extern SDL_DECLSPEC SDL_ThreadState SDLCALL SDL_GetThreadState(SDL_Thread *thread); + +/** + * Let a thread clean up on exit without intervention. + * + * A thread may be "detached" to signify that it should not remain until + * another thread has called SDL_WaitThread() on it. Detaching a thread is + * useful for long-running threads that nothing needs to synchronize with or + * further manage. When a detached thread is done, it simply goes away. + * + * There is no way to recover the return code of a detached thread. If you + * need this, don't detach the thread and instead use SDL_WaitThread(). + * + * Once a thread is detached, you should usually assume the SDL_Thread isn't + * safe to reference again, as it will become invalid immediately upon the + * detached thread's exit, instead of remaining until someone has called + * SDL_WaitThread() to finally clean it up. As such, don't detach the same + * thread more than once. + * + * If a thread has already exited when passed to SDL_DetachThread(), it will + * stop waiting for a call to SDL_WaitThread() and clean up immediately. It is + * not safe to detach a thread that might be used with SDL_WaitThread(). + * + * You may not call SDL_WaitThread() on a thread that has been detached. Use + * either that function or this one, but not both, or behavior is undefined. + * + * It is safe to pass NULL to this function; it is a no-op. + * + * \param thread the SDL_Thread pointer that was returned from the + * SDL_CreateThread() call that started this thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_WaitThread + */ +extern SDL_DECLSPEC void SDLCALL SDL_DetachThread(SDL_Thread *thread); + +/** + * Get the current thread's value associated with a thread local storage ID. + * + * \param id a pointer to the thread local storage ID, may not be NULL. + * \returns the value associated with the ID for the current thread or NULL if + * no value has been set; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTLS + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetTLS(SDL_TLSID *id); + +/** + * The callback used to cleanup data passed to SDL_SetTLS. + * + * This is called when a thread exits, to allow an app to free any resources. + * + * \param value a pointer previously handed to SDL_SetTLS. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetTLS + */ +typedef void (SDLCALL *SDL_TLSDestructorCallback)(void *value); + +/** + * Set the current thread's value associated with a thread local storage ID. + * + * If the thread local storage ID is not initialized (the value is 0), a new + * ID will be created in a thread-safe way, so all calls using a pointer to + * the same ID will refer to the same local storage. + * + * Note that replacing a value from a previous call to this function on the + * same thread does _not_ call the previous value's destructor! + * + * `destructor` can be NULL; it is assumed that `value` does not need to be + * cleaned up if so. + * + * \param id a pointer to the thread local storage ID, may not be NULL. + * \param value the value to associate with the ID for the current thread. + * \param destructor a function called when the thread exits, to free the + * value, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTLS + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTLS(SDL_TLSID *id, const void *value, SDL_TLSDestructorCallback destructor); + +/** + * Cleanup all TLS data for this thread. + * + * If you are creating your threads outside of SDL and then calling SDL + * functions, you should call this function before your thread exits, to + * properly clean up SDL memory. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CleanupTLS(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_thread_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_time.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_time.h new file mode 100644 index 0000000..b6d3f6d --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_time.h @@ -0,0 +1,231 @@ +/* +Simple DirectMedia Layer +Copyright (C) 1997-2025 Sam Lantinga + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_time_h_ +#define SDL_time_h_ + +/** + * # CategoryTime + * + * SDL realtime clock and date/time routines. + * + * There are two data types that are used in this category: SDL_Time, which + * represents the nanoseconds since a specific moment (an "epoch"), and + * SDL_DateTime, which breaks time down into human-understandable components: + * years, months, days, hours, etc. + * + * Much of the functionality is involved in converting those two types to + * other useful forms. + */ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A structure holding a calendar date and time broken down into its + * components. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_DateTime +{ + int year; /**< Year */ + int month; /**< Month [01-12] */ + int day; /**< Day of the month [01-31] */ + int hour; /**< Hour [0-23] */ + int minute; /**< Minute [0-59] */ + int second; /**< Seconds [0-60] */ + int nanosecond; /**< Nanoseconds [0-999999999] */ + int day_of_week; /**< Day of the week [0-6] (0 being Sunday) */ + int utc_offset; /**< Seconds east of UTC */ +} SDL_DateTime; + +/** + * The preferred date format of the current system locale. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetDateTimeLocalePreferences + */ +typedef enum SDL_DateFormat +{ + SDL_DATE_FORMAT_YYYYMMDD = 0, /**< Year/Month/Day */ + SDL_DATE_FORMAT_DDMMYYYY = 1, /**< Day/Month/Year */ + SDL_DATE_FORMAT_MMDDYYYY = 2 /**< Month/Day/Year */ +} SDL_DateFormat; + +/** + * The preferred time format of the current system locale. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetDateTimeLocalePreferences + */ +typedef enum SDL_TimeFormat +{ + SDL_TIME_FORMAT_24HR = 0, /**< 24 hour time */ + SDL_TIME_FORMAT_12HR = 1 /**< 12 hour time */ +} SDL_TimeFormat; + +/** + * Gets the current preferred date and time format for the system locale. + * + * This might be a "slow" call that has to query the operating system. It's + * best to ask for this once and save the results. However, the preferred + * formats can change, usually because the user has changed a system + * preference outside of your program. + * + * \param dateFormat a pointer to the SDL_DateFormat to hold the returned date + * format, may be NULL. + * \param timeFormat a pointer to the SDL_TimeFormat to hold the returned time + * format, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDateTimeLocalePreferences(SDL_DateFormat *dateFormat, SDL_TimeFormat *timeFormat); + +/** + * Gets the current value of the system realtime clock in nanoseconds since + * Jan 1, 1970 in Universal Coordinated Time (UTC). + * + * \param ticks the SDL_Time to hold the returned tick count. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetCurrentTime(SDL_Time *ticks); + +/** + * Converts an SDL_Time in nanoseconds since the epoch to a calendar time in + * the SDL_DateTime format. + * + * \param ticks the SDL_Time to be converted. + * \param dt the resulting SDL_DateTime. + * \param localTime the resulting SDL_DateTime will be expressed in local time + * if true, otherwise it will be in Universal Coordinated + * Time (UTC). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TimeToDateTime(SDL_Time ticks, SDL_DateTime *dt, bool localTime); + +/** + * Converts a calendar time to an SDL_Time in nanoseconds since the epoch. + * + * This function ignores the day_of_week member of the SDL_DateTime struct, so + * it may remain unset. + * + * \param dt the source SDL_DateTime. + * \param ticks the resulting SDL_Time. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DateTimeToTime(const SDL_DateTime *dt, SDL_Time *ticks); + +/** + * Converts an SDL time into a Windows FILETIME (100-nanosecond intervals + * since January 1, 1601). + * + * This function fills in the two 32-bit values of the FILETIME structure. + * + * \param ticks the time to convert. + * \param dwLowDateTime a pointer filled in with the low portion of the + * Windows FILETIME value. + * \param dwHighDateTime a pointer filled in with the high portion of the + * Windows FILETIME value. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_TimeToWindows(SDL_Time ticks, Uint32 *dwLowDateTime, Uint32 *dwHighDateTime); + +/** + * Converts a Windows FILETIME (100-nanosecond intervals since January 1, + * 1601) to an SDL time. + * + * This function takes the two 32-bit values of the FILETIME structure as + * parameters. + * + * \param dwLowDateTime the low portion of the Windows FILETIME value. + * \param dwHighDateTime the high portion of the Windows FILETIME value. + * \returns the converted SDL time. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Time SDLCALL SDL_TimeFromWindows(Uint32 dwLowDateTime, Uint32 dwHighDateTime); + +/** + * Get the number of days in a month for a given year. + * + * \param year the year. + * \param month the month [1-12]. + * \returns the number of days in the requested month or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDaysInMonth(int year, int month); + +/** + * Get the day of year for a calendar date. + * + * \param year the year component of the date. + * \param month the month component of the date. + * \param day the day component of the date. + * \returns the day of year [0-365] if the date is valid or -1 on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDayOfYear(int year, int month, int day); + +/** + * Get the day of week for a calendar date. + * + * \param year the year component of the date. + * \param month the month component of the date. + * \param day the day component of the date. + * \returns a value between 0 and 6 (0 being Sunday) if the date is valid or + * -1 on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDayOfWeek(int year, int month, int day); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_time_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_timer.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_timer.h new file mode 100644 index 0000000..cf94881 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_timer.h @@ -0,0 +1,450 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_timer_h_ +#define SDL_timer_h_ + +/** + * # CategoryTimer + * + * SDL provides time management functionality. It is useful for dealing with + * (usually) small durations of time. + * + * This is not to be confused with _calendar time_ management, which is + * provided by [CategoryTime](CategoryTime). + * + * This category covers measuring time elapsed (SDL_GetTicks(), + * SDL_GetPerformanceCounter()), putting a thread to sleep for a certain + * amount of time (SDL_Delay(), SDL_DelayNS(), SDL_DelayPrecise()), and firing + * a callback function after a certain amount of time has elasped + * (SDL_AddTimer(), etc). + * + * There are also useful macros to convert between time units, like + * SDL_SECONDS_TO_NS() and such. + */ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* SDL time constants */ + +/** + * Number of milliseconds in a second. + * + * This is always 1000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MS_PER_SECOND 1000 + +/** + * Number of microseconds in a second. + * + * This is always 1000000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_US_PER_SECOND 1000000 + +/** + * Number of nanoseconds in a second. + * + * This is always 1000000000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_PER_SECOND 1000000000LL + +/** + * Number of nanoseconds in a millisecond. + * + * This is always 1000000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_PER_MS 1000000 + +/** + * Number of nanoseconds in a microsecond. + * + * This is always 1000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_PER_US 1000 + +/** + * Convert seconds to nanoseconds. + * + * This only converts whole numbers, not fractional seconds. + * + * \param S the number of seconds to convert. + * \returns S, expressed in nanoseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SECONDS_TO_NS(S) (((Uint64)(S)) * SDL_NS_PER_SECOND) + +/** + * Convert nanoseconds to seconds. + * + * This performs a division, so the results can be dramatically different if + * `NS` is an integer or floating point value. + * + * \param NS the number of nanoseconds to convert. + * \returns NS, expressed in seconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_TO_SECONDS(NS) ((NS) / SDL_NS_PER_SECOND) + +/** + * Convert milliseconds to nanoseconds. + * + * This only converts whole numbers, not fractional milliseconds. + * + * \param MS the number of milliseconds to convert. + * \returns MS, expressed in nanoseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MS_TO_NS(MS) (((Uint64)(MS)) * SDL_NS_PER_MS) + +/** + * Convert nanoseconds to milliseconds. + * + * This performs a division, so the results can be dramatically different if + * `NS` is an integer or floating point value. + * + * \param NS the number of nanoseconds to convert. + * \returns NS, expressed in milliseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_TO_MS(NS) ((NS) / SDL_NS_PER_MS) + +/** + * Convert microseconds to nanoseconds. + * + * This only converts whole numbers, not fractional microseconds. + * + * \param US the number of microseconds to convert. + * \returns US, expressed in nanoseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_US_TO_NS(US) (((Uint64)(US)) * SDL_NS_PER_US) + +/** + * Convert nanoseconds to microseconds. + * + * This performs a division, so the results can be dramatically different if + * `NS` is an integer or floating point value. + * + * \param NS the number of nanoseconds to convert. + * \returns NS, expressed in microseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_TO_US(NS) ((NS) / SDL_NS_PER_US) + +/** + * Get the number of milliseconds since SDL library initialization. + * + * \returns an unsigned 64-bit value representing the number of milliseconds + * since the SDL library initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetTicks(void); + +/** + * Get the number of nanoseconds since SDL library initialization. + * + * \returns an unsigned 64-bit value representing the number of nanoseconds + * since the SDL library initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetTicksNS(void); + +/** + * Get the current value of the high resolution counter. + * + * This function is typically used for profiling. + * + * The counter values are only meaningful relative to each other. Differences + * between values can be converted to times by using + * SDL_GetPerformanceFrequency(). + * + * \returns the current counter value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPerformanceFrequency + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetPerformanceCounter(void); + +/** + * Get the count per second of the high resolution counter. + * + * \returns a platform-specific count per second. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPerformanceCounter + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetPerformanceFrequency(void); + +/** + * Wait a specified number of milliseconds before returning. + * + * This function waits a specified number of milliseconds before returning. It + * waits at least the specified time, but possibly longer due to OS + * scheduling. + * + * \param ms the number of milliseconds to delay. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DelayNS + * \sa SDL_DelayPrecise + */ +extern SDL_DECLSPEC void SDLCALL SDL_Delay(Uint32 ms); + +/** + * Wait a specified number of nanoseconds before returning. + * + * This function waits a specified number of nanoseconds before returning. It + * waits at least the specified time, but possibly longer due to OS + * scheduling. + * + * \param ns the number of nanoseconds to delay. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Delay + * \sa SDL_DelayPrecise + */ +extern SDL_DECLSPEC void SDLCALL SDL_DelayNS(Uint64 ns); + +/** + * Wait a specified number of nanoseconds before returning. + * + * This function waits a specified number of nanoseconds before returning. It + * will attempt to wait as close to the requested time as possible, busy + * waiting if necessary, but could return later due to OS scheduling. + * + * \param ns the number of nanoseconds to delay. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Delay + * \sa SDL_DelayNS + */ +extern SDL_DECLSPEC void SDLCALL SDL_DelayPrecise(Uint64 ns); + +/** + * Definition of the timer ID type. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_TimerID; + +/** + * Function prototype for the millisecond timer callback function. + * + * The callback function is passed the current timer interval and returns the + * next timer interval, in milliseconds. If the returned value is the same as + * the one passed in, the periodic alarm continues, otherwise a new alarm is + * scheduled. If the callback returns 0, the periodic alarm is canceled and + * will be removed. + * + * \param userdata an arbitrary pointer provided by the app through + * SDL_AddTimer, for its own use. + * \param timerID the current timer being processed. + * \param interval the current callback time interval. + * \returns the new callback time interval, or 0 to disable further runs of + * the callback. + * + * \threadsafety SDL may call this callback at any time from a background + * thread; the application is responsible for locking resources + * the callback touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_AddTimer + */ +typedef Uint32 (SDLCALL *SDL_TimerCallback)(void *userdata, SDL_TimerID timerID, Uint32 interval); + +/** + * Call a callback function at a future time. + * + * The callback function is passed the current timer interval and the user + * supplied parameter from the SDL_AddTimer() call and should return the next + * timer interval. If the value returned from the callback is 0, the timer is + * canceled and will be removed. + * + * The callback is run on a separate thread, and for short timeouts can + * potentially be called before this function returns. + * + * Timers take into account the amount of time it took to execute the + * callback. For example, if the callback took 250 ms to execute and returned + * 1000 (ms), the timer would only wait another 750 ms before its next + * iteration. + * + * Timing may be inexact due to OS scheduling. Be sure to note the current + * time with SDL_GetTicksNS() or SDL_GetPerformanceCounter() in case your + * callback needs to adjust for variances. + * + * \param interval the timer delay, in milliseconds, passed to `callback`. + * \param callback the SDL_TimerCallback function to call when the specified + * `interval` elapses. + * \param userdata a pointer that is passed to `callback`. + * \returns a timer ID or 0 on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddTimerNS + * \sa SDL_RemoveTimer + */ +extern SDL_DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_TimerCallback callback, void *userdata); + +/** + * Function prototype for the nanosecond timer callback function. + * + * The callback function is passed the current timer interval and returns the + * next timer interval, in nanoseconds. If the returned value is the same as + * the one passed in, the periodic alarm continues, otherwise a new alarm is + * scheduled. If the callback returns 0, the periodic alarm is canceled and + * will be removed. + * + * \param userdata an arbitrary pointer provided by the app through + * SDL_AddTimer, for its own use. + * \param timerID the current timer being processed. + * \param interval the current callback time interval. + * \returns the new callback time interval, or 0 to disable further runs of + * the callback. + * + * \threadsafety SDL may call this callback at any time from a background + * thread; the application is responsible for locking resources + * the callback touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_AddTimerNS + */ +typedef Uint64 (SDLCALL *SDL_NSTimerCallback)(void *userdata, SDL_TimerID timerID, Uint64 interval); + +/** + * Call a callback function at a future time. + * + * The callback function is passed the current timer interval and the user + * supplied parameter from the SDL_AddTimerNS() call and should return the + * next timer interval. If the value returned from the callback is 0, the + * timer is canceled and will be removed. + * + * The callback is run on a separate thread, and for short timeouts can + * potentially be called before this function returns. + * + * Timers take into account the amount of time it took to execute the + * callback. For example, if the callback took 250 ns to execute and returned + * 1000 (ns), the timer would only wait another 750 ns before its next + * iteration. + * + * Timing may be inexact due to OS scheduling. Be sure to note the current + * time with SDL_GetTicksNS() or SDL_GetPerformanceCounter() in case your + * callback needs to adjust for variances. + * + * \param interval the timer delay, in nanoseconds, passed to `callback`. + * \param callback the SDL_TimerCallback function to call when the specified + * `interval` elapses. + * \param userdata a pointer that is passed to `callback`. + * \returns a timer ID or 0 on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddTimer + * \sa SDL_RemoveTimer + */ +extern SDL_DECLSPEC SDL_TimerID SDLCALL SDL_AddTimerNS(Uint64 interval, SDL_NSTimerCallback callback, void *userdata); + +/** + * Remove a timer created with SDL_AddTimer(). + * + * \param id the ID of the timer to remove. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddTimer + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RemoveTimer(SDL_TimerID id); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_timer_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_touch.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_touch.h new file mode 100644 index 0000000..64845a1 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_touch.h @@ -0,0 +1,184 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryTouch + * + * SDL offers touch input, on platforms that support it. It can manage + * multiple touch devices and track multiple fingers on those devices. + * + * Touches are mostly dealt with through the event system, in the + * SDL_EVENT_FINGER_DOWN, SDL_EVENT_FINGER_MOTION, and SDL_EVENT_FINGER_UP + * events, but there are also functions to query for hardware details, etc. + * + * The touch system, by default, will also send virtual mouse events; this can + * be useful for making a some desktop apps work on a phone without + * significant changes. For apps that care about mouse and touch input + * separately, they should ignore mouse events that have a `which` field of + * SDL_TOUCH_MOUSEID. + */ + +#ifndef SDL_touch_h_ +#define SDL_touch_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A unique ID for a touch device. + * + * This ID is valid for the time the device is connected to the system, and is + * never reused for the lifetime of the application. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint64 SDL_TouchID; + +/** + * A unique ID for a single finger on a touch device. + * + * This ID is valid for the time the finger (stylus, etc) is touching and will + * be unique for all fingers currently in contact, so this ID tracks the + * lifetime of a single continuous touch. This value may represent an index, a + * pointer, or some other unique ID, depending on the platform. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint64 SDL_FingerID; + +/** + * An enum that describes the type of a touch device. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_TouchDeviceType +{ + SDL_TOUCH_DEVICE_INVALID = -1, + SDL_TOUCH_DEVICE_DIRECT, /**< touch screen with window-relative coordinates */ + SDL_TOUCH_DEVICE_INDIRECT_ABSOLUTE, /**< trackpad with absolute device coordinates */ + SDL_TOUCH_DEVICE_INDIRECT_RELATIVE /**< trackpad with screen cursor-relative coordinates */ +} SDL_TouchDeviceType; + +/** + * Data about a single finger in a multitouch event. + * + * Each touch event is a collection of fingers that are simultaneously in + * contact with the touch device (so a "touch" can be a "multitouch," in + * reality), and this struct reports details of the specific fingers. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetTouchFingers + */ +typedef struct SDL_Finger +{ + SDL_FingerID id; /**< the finger ID */ + float x; /**< the x-axis location of the touch event, normalized (0...1) */ + float y; /**< the y-axis location of the touch event, normalized (0...1) */ + float pressure; /**< the quantity of pressure applied, normalized (0...1) */ +} SDL_Finger; + +/** + * The SDL_MouseID for mouse events simulated with touch input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TOUCH_MOUSEID ((SDL_MouseID)-1) + +/** + * The SDL_TouchID for touch events simulated with mouse input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MOUSE_TOUCHID ((SDL_TouchID)-1) + + +/** + * Get a list of registered touch devices. + * + * On some platforms SDL first sees the touch device if it was actually used. + * Therefore the returned list might be empty, although devices are available. + * After using all devices at least once the number will be correct. + * + * \param count a pointer filled in with the number of devices returned, may + * be NULL. + * \returns a 0 terminated array of touch device IDs or NULL on failure; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_TouchID * SDLCALL SDL_GetTouchDevices(int *count); + +/** + * Get the touch device name as reported from the driver. + * + * \param touchID the touch device instance ID. + * \returns touch device name, or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetTouchDeviceName(SDL_TouchID touchID); + +/** + * Get the type of the given touch device. + * + * \param touchID the ID of a touch device. + * \returns touch device type. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_TouchDeviceType SDLCALL SDL_GetTouchDeviceType(SDL_TouchID touchID); + +/** + * Get a list of active fingers for a given touch device. + * + * \param touchID the ID of a touch device. + * \param count a pointer filled in with the number of fingers returned, can + * be NULL. + * \returns a NULL terminated array of SDL_Finger pointers or NULL on failure; + * call SDL_GetError() for more information. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Finger ** SDLCALL SDL_GetTouchFingers(SDL_TouchID touchID, int *count); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_touch_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_tray.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_tray.h new file mode 100644 index 0000000..1780b0b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_tray.h @@ -0,0 +1,544 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryTray + * + * SDL offers a way to add items to the "system tray" (more correctly called + * the "notification area" on Windows). On platforms that offer this concept, + * an SDL app can add a tray icon, submenus, checkboxes, and clickable + * entries, and register a callback that is fired when the user clicks on + * these pieces. + */ + +#ifndef SDL_tray_h_ +#define SDL_tray_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque handle representing a toplevel system tray object. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Tray SDL_Tray; + +/** + * An opaque handle representing a menu/submenu on a system tray object. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TrayMenu SDL_TrayMenu; + +/** + * An opaque handle representing an entry on a system tray object. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TrayEntry SDL_TrayEntry; + +/** + * Flags that control the creation of system tray entries. + * + * Some of these flags are required; exactly one of them must be specified at + * the time a tray entry is created. Other flags are optional; zero or more of + * those can be OR'ed together with the required flag. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + */ +typedef Uint32 SDL_TrayEntryFlags; + +#define SDL_TRAYENTRY_BUTTON 0x00000001u /**< Make the entry a simple button. Required. */ +#define SDL_TRAYENTRY_CHECKBOX 0x00000002u /**< Make the entry a checkbox. Required. */ +#define SDL_TRAYENTRY_SUBMENU 0x00000004u /**< Prepare the entry to have a submenu. Required */ +#define SDL_TRAYENTRY_DISABLED 0x80000000u /**< Make the entry disabled. Optional. */ +#define SDL_TRAYENTRY_CHECKED 0x40000000u /**< Make the entry checked. This is valid only for checkboxes. Optional. */ + +/** + * A callback that is invoked when a tray entry is selected. + * + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param entry the tray entry that was selected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetTrayEntryCallback + */ +typedef void (SDLCALL *SDL_TrayCallback)(void *userdata, SDL_TrayEntry *entry); + +/** + * Create an icon to be placed in the operating system's tray, or equivalent. + * + * Many platforms advise not using a system tray unless persistence is a + * necessary feature. Avoid needlessly creating a tray icon, as the user may + * feel like it clutters their interface. + * + * Using tray icons require the video subsystem. + * + * \param icon a surface to be used as icon. May be NULL. + * \param tooltip a tooltip to be displayed when the mouse hovers the icon in + * UTF-8 encoding. Not supported on all platforms. May be NULL. + * \returns The newly created system tray icon. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTrayMenu + * \sa SDL_GetTrayMenu + * \sa SDL_DestroyTray + */ +extern SDL_DECLSPEC SDL_Tray * SDLCALL SDL_CreateTray(SDL_Surface *icon, const char *tooltip); + +/** + * Updates the system tray icon's icon. + * + * \param tray the tray icon to be updated. + * \param icon the new icon. May be NULL. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayIcon(SDL_Tray *tray, SDL_Surface *icon); + +/** + * Updates the system tray icon's tooltip. + * + * \param tray the tray icon to be updated. + * \param tooltip the new tooltip in UTF-8 encoding. May be NULL. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayTooltip(SDL_Tray *tray, const char *tooltip); + +/** + * Create a menu for a system tray. + * + * This should be called at most once per tray icon. + * + * This function does the same thing as SDL_CreateTraySubmenu(), except that + * it takes a SDL_Tray instead of a SDL_TrayEntry. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param tray the tray to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + * \sa SDL_GetTrayMenu + * \sa SDL_GetTrayMenuParentTray + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_CreateTrayMenu(SDL_Tray *tray); + +/** + * Create a submenu for a system tray entry. + * + * This should be called at most once per tray entry. + * + * This function does the same thing as SDL_CreateTrayMenu, except that it + * takes a SDL_TrayEntry instead of a SDL_Tray. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param entry the tray entry to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTraySubmenu + * \sa SDL_GetTrayMenuParentEntry + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_CreateTraySubmenu(SDL_TrayEntry *entry); + +/** + * Gets a previously created tray menu. + * + * You should have called SDL_CreateTrayMenu() on the tray object. This + * function allows you to fetch it again later. + * + * This function does the same thing as SDL_GetTraySubmenu(), except that it + * takes a SDL_Tray instead of a SDL_TrayEntry. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param tray the tray entry to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + * \sa SDL_CreateTrayMenu + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_GetTrayMenu(SDL_Tray *tray); + +/** + * Gets a previously created tray entry submenu. + * + * You should have called SDL_CreateTraySubmenu() on the entry object. This + * function allows you to fetch it again later. + * + * This function does the same thing as SDL_GetTrayMenu(), except that it + * takes a SDL_TrayEntry instead of a SDL_Tray. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param entry the tray entry to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + * \sa SDL_CreateTraySubmenu + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_GetTraySubmenu(SDL_TrayEntry *entry); + +/** + * Returns a list of entries in the menu, in order. + * + * \param menu The menu to get entries from. + * \param count An optional pointer to obtain the number of entries in the + * menu. + * \returns a NULL-terminated list of entries within the given menu. The + * pointer becomes invalid when any function that inserts or deletes + * entries in the menu is called. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveTrayEntry + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC const SDL_TrayEntry ** SDLCALL SDL_GetTrayEntries(SDL_TrayMenu *menu, int *count); + +/** + * Removes a tray entry. + * + * \param entry The entry to be deleted. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveTrayEntry(SDL_TrayEntry *entry); + +/** + * Insert a tray entry at a given position. + * + * If label is NULL, the entry will be a separator. Many functions won't work + * for an entry that is a separator. + * + * An entry does not need to be destroyed; it will be destroyed with the tray. + * + * \param menu the menu to append the entry to. + * \param pos the desired position for the new entry. Entries at or following + * this place will be moved. If pos is -1, the entry is appended. + * \param label the text to be displayed on the entry, in UTF-8 encoding, or + * NULL for a separator. + * \param flags a combination of flags, some of which are mandatory. + * \returns the newly created entry, or NULL if pos is out of bounds. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TrayEntryFlags + * \sa SDL_GetTrayEntries + * \sa SDL_RemoveTrayEntry + * \sa SDL_GetTrayEntryParent + */ +extern SDL_DECLSPEC SDL_TrayEntry * SDLCALL SDL_InsertTrayEntryAt(SDL_TrayMenu *menu, int pos, const char *label, SDL_TrayEntryFlags flags); + +/** + * Sets the label of an entry. + * + * An entry cannot change between a separator and an ordinary entry; that is, + * it is not possible to set a non-NULL label on an entry that has a NULL + * label (separators), or to set a NULL label to an entry that has a non-NULL + * label. The function will silently fail if that happens. + * + * \param entry the entry to be updated. + * \param label the new label for the entry in UTF-8 encoding. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTrayEntryLabel + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryLabel(SDL_TrayEntry *entry, const char *label); + +/** + * Gets the label of an entry. + * + * If the returned value is NULL, the entry is a separator. + * + * \param entry the entry to be read. + * \returns the label of the entry in UTF-8 encoding. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_SetTrayEntryLabel + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetTrayEntryLabel(SDL_TrayEntry *entry); + +/** + * Sets whether or not an entry is checked. + * + * The entry must have been created with the SDL_TRAYENTRY_CHECKBOX flag. + * + * \param entry the entry to be updated. + * \param checked true if the entry should be checked; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTrayEntryChecked + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryChecked(SDL_TrayEntry *entry, bool checked); + +/** + * Gets whether or not an entry is checked. + * + * The entry must have been created with the SDL_TRAYENTRY_CHECKBOX flag. + * + * \param entry the entry to be read. + * \returns true if the entry is checked; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_SetTrayEntryChecked + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTrayEntryChecked(SDL_TrayEntry *entry); + +/** + * Sets whether or not an entry is enabled. + * + * \param entry the entry to be updated. + * \param enabled true if the entry should be enabled; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTrayEntryEnabled + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryEnabled(SDL_TrayEntry *entry, bool enabled); + +/** + * Gets whether or not an entry is enabled. + * + * \param entry the entry to be read. + * \returns true if the entry is enabled; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_SetTrayEntryEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTrayEntryEnabled(SDL_TrayEntry *entry); + +/** + * Sets a callback to be invoked when the entry is selected. + * + * \param entry the entry to be updated. + * \param callback a callback to be invoked when the entry is selected. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryCallback(SDL_TrayEntry *entry, SDL_TrayCallback callback, void *userdata); + +/** + * Simulate a click on a tray entry. + * + * \param entry The entry to activate. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ClickTrayEntry(SDL_TrayEntry *entry); + +/** + * Destroys a tray object. + * + * This also destroys all associated menus and entries. + * + * \param tray the tray icon to be destroyed. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyTray(SDL_Tray *tray); + +/** + * Gets the menu containing a certain tray entry. + * + * \param entry the entry for which to get the parent menu. + * \returns the parent menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_GetTrayEntryParent(SDL_TrayEntry *entry); + +/** + * Gets the entry for which the menu is a submenu, if the current menu is a + * submenu. + * + * Either this function or SDL_GetTrayMenuParentTray() will return non-NULL + * for any given menu. + * + * \param menu the menu for which to get the parent entry. + * \returns the parent entry, or NULL if this menu is not a submenu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTraySubmenu + * \sa SDL_GetTrayMenuParentTray + */ +extern SDL_DECLSPEC SDL_TrayEntry * SDLCALL SDL_GetTrayMenuParentEntry(SDL_TrayMenu *menu); + +/** + * Gets the tray for which this menu is the first-level menu, if the current + * menu isn't a submenu. + * + * Either this function or SDL_GetTrayMenuParentEntry() will return non-NULL + * for any given menu. + * + * \param menu the menu for which to get the parent enttrayry. + * \returns the parent tray, or NULL if this menu is a submenu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTrayMenu + * \sa SDL_GetTrayMenuParentEntry + */ +extern SDL_DECLSPEC SDL_Tray * SDLCALL SDL_GetTrayMenuParentTray(SDL_TrayMenu *menu); + +/** + * Update the trays. + * + * This is called automatically by the event loop and is only needed if you're + * using trays but aren't handling SDL events. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateTrays(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_tray_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_version.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_version.h new file mode 100644 index 0000000..7443d52 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_version.h @@ -0,0 +1,183 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryVersion + * + * Functionality to query the current SDL version, both as headers the app was + * compiled against, and a library the app is linked to. + */ + +#ifndef SDL_version_h_ +#define SDL_version_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The current major version of SDL headers. + * + * If this were SDL version 3.2.1, this value would be 3. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MAJOR_VERSION 3 + +/** + * The current minor version of the SDL headers. + * + * If this were SDL version 3.2.1, this value would be 2. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MINOR_VERSION 2 + +/** + * The current micro (or patchlevel) version of the SDL headers. + * + * If this were SDL version 3.2.1, this value would be 1. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MICRO_VERSION 20 + +/** + * This macro turns the version numbers into a numeric value. + * + * (1,2,3) becomes 1002003. + * + * \param major the major version number. + * \param minor the minorversion number. + * \param patch the patch version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM(major, minor, patch) \ + ((major) * 1000000 + (minor) * 1000 + (patch)) + +/** + * This macro extracts the major version from a version number + * + * 1002003 becomes 1. + * + * \param version the version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM_MAJOR(version) ((version) / 1000000) + +/** + * This macro extracts the minor version from a version number + * + * 1002003 becomes 2. + * + * \param version the version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM_MINOR(version) (((version) / 1000) % 1000) + +/** + * This macro extracts the micro version from a version number + * + * 1002003 becomes 3. + * + * \param version the version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM_MICRO(version) ((version) % 1000) + +/** + * This is the version number macro for the current SDL version. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_GetVersion + */ +#define SDL_VERSION \ + SDL_VERSIONNUM(SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_MICRO_VERSION) + +/** + * This macro will evaluate to true if compiled with SDL at least X.Y.Z. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSION_ATLEAST(X, Y, Z) \ + (SDL_VERSION >= SDL_VERSIONNUM(X, Y, Z)) + +/** + * Get the version of SDL that is linked against your program. + * + * If you are linking to SDL dynamically, then it is possible that the current + * version will be different than the version you compiled against. This + * function returns the current version, while SDL_VERSION is the version you + * compiled with. + * + * This function may be called safely at any time, even before SDL_Init(). + * + * \returns the version of the linked library. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRevision + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetVersion(void); + +/** + * Get the code revision of SDL that is linked against your program. + * + * This value is the revision of the code you are linked with and may be + * different from the code you are compiling with, which is found in the + * constant SDL_REVISION. + * + * The revision is arbitrary string (a hash value) uniquely identifying the + * exact revision of the SDL library in use, and is only useful in comparing + * against other revisions. It is NOT an incrementing number. + * + * If SDL wasn't built from a git repository with the appropriate tools, this + * will return an empty string. + * + * You shouldn't use this function for anything but logging it for debugging + * purposes. The string is not intended to be reliable in any way. + * + * \returns an arbitrary string, uniquely identifying the exact revision of + * the SDL library in use. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetVersion + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetRevision(void); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_version_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_video.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_video.h new file mode 100644 index 0000000..3b3676d --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_video.h @@ -0,0 +1,3311 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryVideo + * + * SDL's video subsystem is largely interested in abstracting window + * management from the underlying operating system. You can create windows, + * manage them in various ways, set them fullscreen, and get events when + * interesting things happen with them, such as the mouse or keyboard + * interacting with a window. + * + * The video subsystem is also interested in abstracting away some + * platform-specific differences in OpenGL: context creation, swapping + * buffers, etc. This may be crucial to your app, but also you are not + * required to use OpenGL at all. In fact, SDL can provide rendering to those + * windows as well, either with an easy-to-use + * [2D API](https://wiki.libsdl.org/SDL3/CategoryRender) + * or with a more-powerful + * [GPU API](https://wiki.libsdl.org/SDL3/CategoryGPU) + * . Of course, it can simply get out of your way and give you the window + * handles you need to use Vulkan, Direct3D, Metal, or whatever else you like + * directly, too. + * + * The video subsystem covers a lot of functionality, out of necessity, so it + * is worth perusing the list of functions just to see what's available, but + * most apps can get by with simply creating a window and listening for + * events, so start with SDL_CreateWindow() and SDL_PollEvent(). + */ + +#ifndef SDL_video_h_ +#define SDL_video_h_ + +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a display for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the display is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_DisplayID; + +/** + * This is a unique ID for a window. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_WindowID; + +/* Global video properties... */ + +/** + * The pointer to the global `wl_display` object used by the Wayland video + * backend. + * + * Can be set before the video subsystem is initialized to import an external + * `wl_display` object from an application or toolkit for use in SDL, or read + * after initialization to export the `wl_display` used by the Wayland video + * backend. Setting this property after the video subsystem has been + * initialized has no effect, and reading it when the video subsystem is + * uninitialized will either return the user provided value, if one was set + * prior to initialization, or NULL. See docs/README-wayland.md for more + * information. + */ +#define SDL_PROP_GLOBAL_VIDEO_WAYLAND_WL_DISPLAY_POINTER "SDL.video.wayland.wl_display" + +/** + * System theme. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_SystemTheme +{ + SDL_SYSTEM_THEME_UNKNOWN, /**< Unknown system theme */ + SDL_SYSTEM_THEME_LIGHT, /**< Light colored system theme */ + SDL_SYSTEM_THEME_DARK /**< Dark colored system theme */ +} SDL_SystemTheme; + +/** + * Internal display mode data. + * + * This lives as a field in SDL_DisplayMode, as opaque data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DisplayMode + */ +typedef struct SDL_DisplayModeData SDL_DisplayModeData; + +/** + * The structure that defines a display mode. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetFullscreenDisplayModes + * \sa SDL_GetDesktopDisplayMode + * \sa SDL_GetCurrentDisplayMode + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_GetWindowFullscreenMode + */ +typedef struct SDL_DisplayMode +{ + SDL_DisplayID displayID; /**< the display this mode is associated with */ + SDL_PixelFormat format; /**< pixel format */ + int w; /**< width */ + int h; /**< height */ + float pixel_density; /**< scale converting size to pixels (e.g. a 1920x1080 mode with 2.0 scale would have 3840x2160 pixels) */ + float refresh_rate; /**< refresh rate (or 0.0f for unspecified) */ + int refresh_rate_numerator; /**< precise refresh rate numerator (or 0 for unspecified) */ + int refresh_rate_denominator; /**< precise refresh rate denominator */ + + SDL_DisplayModeData *internal; /**< Private */ + +} SDL_DisplayMode; + +/** + * Display orientation values; the way a display is rotated. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_DisplayOrientation +{ + SDL_ORIENTATION_UNKNOWN, /**< The display orientation can't be determined */ + SDL_ORIENTATION_LANDSCAPE, /**< The display is in landscape mode, with the right side up, relative to portrait mode */ + SDL_ORIENTATION_LANDSCAPE_FLIPPED, /**< The display is in landscape mode, with the left side up, relative to portrait mode */ + SDL_ORIENTATION_PORTRAIT, /**< The display is in portrait mode */ + SDL_ORIENTATION_PORTRAIT_FLIPPED /**< The display is in portrait mode, upside down */ +} SDL_DisplayOrientation; + +/** + * The struct used as an opaque handle to a window. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + */ +typedef struct SDL_Window SDL_Window; + +/** + * The flags on a window. + * + * These cover a lot of true/false, or on/off, window state. Some of it is + * immutable after being set through SDL_CreateWindow(), some of it can be + * changed on existing windows by the app, and some of it might be altered by + * the user or system outside of the app's control. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +typedef Uint64 SDL_WindowFlags; + +#define SDL_WINDOW_FULLSCREEN SDL_UINT64_C(0x0000000000000001) /**< window is in fullscreen mode */ +#define SDL_WINDOW_OPENGL SDL_UINT64_C(0x0000000000000002) /**< window usable with OpenGL context */ +#define SDL_WINDOW_OCCLUDED SDL_UINT64_C(0x0000000000000004) /**< window is occluded */ +#define SDL_WINDOW_HIDDEN SDL_UINT64_C(0x0000000000000008) /**< window is neither mapped onto the desktop nor shown in the taskbar/dock/window list; SDL_ShowWindow() is required for it to become visible */ +#define SDL_WINDOW_BORDERLESS SDL_UINT64_C(0x0000000000000010) /**< no window decoration */ +#define SDL_WINDOW_RESIZABLE SDL_UINT64_C(0x0000000000000020) /**< window can be resized */ +#define SDL_WINDOW_MINIMIZED SDL_UINT64_C(0x0000000000000040) /**< window is minimized */ +#define SDL_WINDOW_MAXIMIZED SDL_UINT64_C(0x0000000000000080) /**< window is maximized */ +#define SDL_WINDOW_MOUSE_GRABBED SDL_UINT64_C(0x0000000000000100) /**< window has grabbed mouse input */ +#define SDL_WINDOW_INPUT_FOCUS SDL_UINT64_C(0x0000000000000200) /**< window has input focus */ +#define SDL_WINDOW_MOUSE_FOCUS SDL_UINT64_C(0x0000000000000400) /**< window has mouse focus */ +#define SDL_WINDOW_EXTERNAL SDL_UINT64_C(0x0000000000000800) /**< window not created by SDL */ +#define SDL_WINDOW_MODAL SDL_UINT64_C(0x0000000000001000) /**< window is modal */ +#define SDL_WINDOW_HIGH_PIXEL_DENSITY SDL_UINT64_C(0x0000000000002000) /**< window uses high pixel density back buffer if possible */ +#define SDL_WINDOW_MOUSE_CAPTURE SDL_UINT64_C(0x0000000000004000) /**< window has mouse captured (unrelated to MOUSE_GRABBED) */ +#define SDL_WINDOW_MOUSE_RELATIVE_MODE SDL_UINT64_C(0x0000000000008000) /**< window has relative mode enabled */ +#define SDL_WINDOW_ALWAYS_ON_TOP SDL_UINT64_C(0x0000000000010000) /**< window should always be above others */ +#define SDL_WINDOW_UTILITY SDL_UINT64_C(0x0000000000020000) /**< window should be treated as a utility window, not showing in the task bar and window list */ +#define SDL_WINDOW_TOOLTIP SDL_UINT64_C(0x0000000000040000) /**< window should be treated as a tooltip and does not get mouse or keyboard focus, requires a parent window */ +#define SDL_WINDOW_POPUP_MENU SDL_UINT64_C(0x0000000000080000) /**< window should be treated as a popup menu, requires a parent window */ +#define SDL_WINDOW_KEYBOARD_GRABBED SDL_UINT64_C(0x0000000000100000) /**< window has grabbed keyboard input */ +#define SDL_WINDOW_VULKAN SDL_UINT64_C(0x0000000010000000) /**< window usable for Vulkan surface */ +#define SDL_WINDOW_METAL SDL_UINT64_C(0x0000000020000000) /**< window usable for Metal view */ +#define SDL_WINDOW_TRANSPARENT SDL_UINT64_C(0x0000000040000000) /**< window with transparent buffer */ +#define SDL_WINDOW_NOT_FOCUSABLE SDL_UINT64_C(0x0000000080000000) /**< window should not be focusable */ + + +/** + * A magic value used with SDL_WINDOWPOS_UNDEFINED. + * + * Generally this macro isn't used directly, but rather through + * SDL_WINDOWPOS_UNDEFINED or SDL_WINDOWPOS_UNDEFINED_DISPLAY. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_UNDEFINED_MASK 0x1FFF0000u + +/** + * Used to indicate that you don't care what the window position is. + * + * If you _really_ don't care, SDL_WINDOWPOS_UNDEFINED is the same, but always + * uses the primary display instead of specifying one. + * + * \param X the SDL_DisplayID of the display to use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_UNDEFINED_DISPLAY(X) (SDL_WINDOWPOS_UNDEFINED_MASK|(X)) + +/** + * Used to indicate that you don't care what the window position/display is. + * + * This always uses the primary display. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_UNDEFINED SDL_WINDOWPOS_UNDEFINED_DISPLAY(0) + +/** + * A macro to test if the window position is marked as "undefined." + * + * \param X the window position value. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_ISUNDEFINED(X) (((X)&0xFFFF0000) == SDL_WINDOWPOS_UNDEFINED_MASK) + +/** + * A magic value used with SDL_WINDOWPOS_CENTERED. + * + * Generally this macro isn't used directly, but rather through + * SDL_WINDOWPOS_CENTERED or SDL_WINDOWPOS_CENTERED_DISPLAY. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_CENTERED_MASK 0x2FFF0000u + +/** + * Used to indicate that the window position should be centered. + * + * SDL_WINDOWPOS_CENTERED is the same, but always uses the primary display + * instead of specifying one. + * + * \param X the SDL_DisplayID of the display to use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_CENTERED_DISPLAY(X) (SDL_WINDOWPOS_CENTERED_MASK|(X)) + +/** + * Used to indicate that the window position should be centered. + * + * This always uses the primary display. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_CENTERED SDL_WINDOWPOS_CENTERED_DISPLAY(0) + +/** + * A macro to test if the window position is marked as "centered." + * + * \param X the window position value. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_ISCENTERED(X) \ + (((X)&0xFFFF0000) == SDL_WINDOWPOS_CENTERED_MASK) + + +/** + * Window flash operation. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_FlashOperation +{ + SDL_FLASH_CANCEL, /**< Cancel any window flash state */ + SDL_FLASH_BRIEFLY, /**< Flash the window briefly to get attention */ + SDL_FLASH_UNTIL_FOCUSED /**< Flash the window until it gets focus */ +} SDL_FlashOperation; + +/** + * An opaque handle to an OpenGL context. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GL_CreateContext + */ +typedef struct SDL_GLContextState *SDL_GLContext; + +/** + * Opaque type for an EGL display. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_EGLDisplay; + +/** + * Opaque type for an EGL config. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_EGLConfig; + +/** + * Opaque type for an EGL surface. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_EGLSurface; + +/** + * An EGL attribute, used when creating an EGL context. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef intptr_t SDL_EGLAttrib; + +/** + * An EGL integer attribute, used when creating an EGL surface. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef int SDL_EGLint; + +/** + * EGL platform attribute initialization callback. + * + * This is called when SDL is attempting to create an EGL context, to let the + * app add extra attributes to its eglGetPlatformDisplay() call. + * + * The callback should return a pointer to an EGL attribute array terminated + * with `EGL_NONE`. If this function returns NULL, the SDL_CreateWindow + * process will fail gracefully. + * + * The returned pointer should be allocated with SDL_malloc() and will be + * passed to SDL_free(). + * + * The arrays returned by each callback will be appended to the existing + * attribute arrays defined by SDL. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \returns a newly-allocated array of attributes, terminated with `EGL_NONE`. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EGL_SetAttributeCallbacks + */ +typedef SDL_EGLAttrib *(SDLCALL *SDL_EGLAttribArrayCallback)(void *userdata); + +/** + * EGL surface/context attribute initialization callback types. + * + * This is called when SDL is attempting to create an EGL surface, to let the + * app add extra attributes to its eglCreateWindowSurface() or + * eglCreateContext calls. + * + * For convenience, the EGLDisplay and EGLConfig to use are provided to the + * callback. + * + * The callback should return a pointer to an EGL attribute array terminated + * with `EGL_NONE`. If this function returns NULL, the SDL_CreateWindow + * process will fail gracefully. + * + * The returned pointer should be allocated with SDL_malloc() and will be + * passed to SDL_free(). + * + * The arrays returned by each callback will be appended to the existing + * attribute arrays defined by SDL. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \param display the EGL display to be used. + * \param config the EGL config to be used. + * \returns a newly-allocated array of attributes, terminated with `EGL_NONE`. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EGL_SetAttributeCallbacks + */ +typedef SDL_EGLint *(SDLCALL *SDL_EGLIntArrayCallback)(void *userdata, SDL_EGLDisplay display, SDL_EGLConfig config); + +/** + * An enumeration of OpenGL configuration attributes. + * + * While you can set most OpenGL attributes normally, the attributes listed + * above must be known before SDL creates the window that will be used with + * the OpenGL context. These attributes are set and read with + * SDL_GL_SetAttribute() and SDL_GL_GetAttribute(). + * + * In some cases, these attributes are minimum requests; the GL does not + * promise to give you exactly what you asked for. It's possible to ask for a + * 16-bit depth buffer and get a 24-bit one instead, for example, or to ask + * for no stencil buffer and still have one available. Context creation should + * fail if the GL can't provide your requested attributes at a minimum, but + * you should check to see exactly what you got. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GLAttr +{ + SDL_GL_RED_SIZE, /**< the minimum number of bits for the red channel of the color buffer; defaults to 8. */ + SDL_GL_GREEN_SIZE, /**< the minimum number of bits for the green channel of the color buffer; defaults to 8. */ + SDL_GL_BLUE_SIZE, /**< the minimum number of bits for the blue channel of the color buffer; defaults to 8. */ + SDL_GL_ALPHA_SIZE, /**< the minimum number of bits for the alpha channel of the color buffer; defaults to 8. */ + SDL_GL_BUFFER_SIZE, /**< the minimum number of bits for frame buffer size; defaults to 0. */ + SDL_GL_DOUBLEBUFFER, /**< whether the output is single or double buffered; defaults to double buffering on. */ + SDL_GL_DEPTH_SIZE, /**< the minimum number of bits in the depth buffer; defaults to 16. */ + SDL_GL_STENCIL_SIZE, /**< the minimum number of bits in the stencil buffer; defaults to 0. */ + SDL_GL_ACCUM_RED_SIZE, /**< the minimum number of bits for the red channel of the accumulation buffer; defaults to 0. */ + SDL_GL_ACCUM_GREEN_SIZE, /**< the minimum number of bits for the green channel of the accumulation buffer; defaults to 0. */ + SDL_GL_ACCUM_BLUE_SIZE, /**< the minimum number of bits for the blue channel of the accumulation buffer; defaults to 0. */ + SDL_GL_ACCUM_ALPHA_SIZE, /**< the minimum number of bits for the alpha channel of the accumulation buffer; defaults to 0. */ + SDL_GL_STEREO, /**< whether the output is stereo 3D; defaults to off. */ + SDL_GL_MULTISAMPLEBUFFERS, /**< the number of buffers used for multisample anti-aliasing; defaults to 0. */ + SDL_GL_MULTISAMPLESAMPLES, /**< the number of samples used around the current pixel used for multisample anti-aliasing. */ + SDL_GL_ACCELERATED_VISUAL, /**< set to 1 to require hardware acceleration, set to 0 to force software rendering; defaults to allow either. */ + SDL_GL_RETAINED_BACKING, /**< not used (deprecated). */ + SDL_GL_CONTEXT_MAJOR_VERSION, /**< OpenGL context major version. */ + SDL_GL_CONTEXT_MINOR_VERSION, /**< OpenGL context minor version. */ + SDL_GL_CONTEXT_FLAGS, /**< some combination of 0 or more of elements of the SDL_GLContextFlag enumeration; defaults to 0. */ + SDL_GL_CONTEXT_PROFILE_MASK, /**< type of GL context (Core, Compatibility, ES). See SDL_GLProfile; default value depends on platform. */ + SDL_GL_SHARE_WITH_CURRENT_CONTEXT, /**< OpenGL context sharing; defaults to 0. */ + SDL_GL_FRAMEBUFFER_SRGB_CAPABLE, /**< requests sRGB capable visual; defaults to 0. */ + SDL_GL_CONTEXT_RELEASE_BEHAVIOR, /**< sets context the release behavior. See SDL_GLContextReleaseFlag; defaults to FLUSH. */ + SDL_GL_CONTEXT_RESET_NOTIFICATION, /**< set context reset notification. See SDL_GLContextResetNotification; defaults to NO_NOTIFICATION. */ + SDL_GL_CONTEXT_NO_ERROR, + SDL_GL_FLOATBUFFERS, + SDL_GL_EGL_PLATFORM +} SDL_GLAttr; + +/** + * Possible values to be set for the SDL_GL_CONTEXT_PROFILE_MASK attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLProfile; + +#define SDL_GL_CONTEXT_PROFILE_CORE 0x0001 /**< OpenGL Core Profile context */ +#define SDL_GL_CONTEXT_PROFILE_COMPATIBILITY 0x0002 /**< OpenGL Compatibility Profile context */ +#define SDL_GL_CONTEXT_PROFILE_ES 0x0004 /**< GLX_CONTEXT_ES2_PROFILE_BIT_EXT */ + + +/** + * Possible flags to be set for the SDL_GL_CONTEXT_FLAGS attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLContextFlag; + +#define SDL_GL_CONTEXT_DEBUG_FLAG 0x0001 +#define SDL_GL_CONTEXT_FORWARD_COMPATIBLE_FLAG 0x0002 +#define SDL_GL_CONTEXT_ROBUST_ACCESS_FLAG 0x0004 +#define SDL_GL_CONTEXT_RESET_ISOLATION_FLAG 0x0008 + + +/** + * Possible values to be set for the SDL_GL_CONTEXT_RELEASE_BEHAVIOR + * attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLContextReleaseFlag; + +#define SDL_GL_CONTEXT_RELEASE_BEHAVIOR_NONE 0x0000 +#define SDL_GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH 0x0001 + + +/** + * Possible values to be set SDL_GL_CONTEXT_RESET_NOTIFICATION attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLContextResetNotification; + +#define SDL_GL_CONTEXT_RESET_NO_NOTIFICATION 0x0000 +#define SDL_GL_CONTEXT_RESET_LOSE_CONTEXT 0x0001 + + +/* Function prototypes */ + +/** + * Get the number of video drivers compiled into SDL. + * + * \returns the number of built in video drivers. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetVideoDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumVideoDrivers(void); + +/** + * Get the name of a built in video driver. + * + * The video drivers are presented in the order in which they are normally + * checked during initialization. + * + * The names of drivers are all simple, low-ASCII identifiers, like "cocoa", + * "x11" or "windows". These never have Unicode characters, and are not meant + * to be proper names. + * + * \param index the index of a video driver. + * \returns the name of the video driver with the given **index**. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumVideoDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetVideoDriver(int index); + +/** + * Get the name of the currently initialized video driver. + * + * The names of drivers are all simple, low-ASCII identifiers, like "cocoa", + * "x11" or "windows". These never have Unicode characters, and are not meant + * to be proper names. + * + * \returns the name of the current video driver or NULL if no driver has been + * initialized. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumVideoDrivers + * \sa SDL_GetVideoDriver + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCurrentVideoDriver(void); + +/** + * Get the current system theme. + * + * \returns the current system theme, light, dark, or unknown. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SystemTheme SDLCALL SDL_GetSystemTheme(void); + +/** + * Get a list of currently connected displays. + * + * \param count a pointer filled in with the number of displays returned, may + * be NULL. + * \returns a 0 terminated array of display instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_DisplayID * SDLCALL SDL_GetDisplays(int *count); + +/** + * Return the primary display. + * + * \returns the instance ID of the primary display on success or 0 on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetPrimaryDisplay(void); + +/** + * Get the properties associated with a display. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_DISPLAY_HDR_ENABLED_BOOLEAN`: true if the display has HDR + * headroom above the SDR white point. This is for informational and + * diagnostic purposes only, as not all platforms provide this information + * at the display level. + * + * On KMS/DRM: + * + * - `SDL_PROP_DISPLAY_KMSDRM_PANEL_ORIENTATION_NUMBER`: the "panel + * orientation" property for the display in degrees of clockwise rotation. + * Note that this is provided only as a hint, and the application is + * responsible for any coordinate transformations needed to conform to the + * requested display orientation. + * + * \param displayID the instance ID of the display to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetDisplayProperties(SDL_DisplayID displayID); + +#define SDL_PROP_DISPLAY_HDR_ENABLED_BOOLEAN "SDL.display.HDR_enabled" +#define SDL_PROP_DISPLAY_KMSDRM_PANEL_ORIENTATION_NUMBER "SDL.display.KMSDRM.panel_orientation" + +/** + * Get the name of a display in UTF-8 encoding. + * + * \param displayID the instance ID of the display to query. + * \returns the name of a display or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetDisplayName(SDL_DisplayID displayID); + +/** + * Get the desktop area represented by a display. + * + * The primary display is often located at (0,0), but may be placed at a + * different location depending on monitor layout. + * + * \param displayID the instance ID of the display to query. + * \param rect the SDL_Rect structure filled in with the display bounds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayUsableBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDisplayBounds(SDL_DisplayID displayID, SDL_Rect *rect); + +/** + * Get the usable desktop area represented by a display, in screen + * coordinates. + * + * This is the same area as SDL_GetDisplayBounds() reports, but with portions + * reserved by the system removed. For example, on Apple's macOS, this + * subtracts the area occupied by the menu bar and dock. + * + * Setting a window to be fullscreen generally bypasses these unusable areas, + * so these are good guidelines for the maximum space available to a + * non-fullscreen window. + * + * \param displayID the instance ID of the display to query. + * \param rect the SDL_Rect structure filled in with the display bounds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDisplayUsableBounds(SDL_DisplayID displayID, SDL_Rect *rect); + +/** + * Get the orientation of a display when it is unrotated. + * + * \param displayID the instance ID of the display to query. + * \returns the SDL_DisplayOrientation enum value of the display, or + * `SDL_ORIENTATION_UNKNOWN` if it isn't available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayOrientation SDLCALL SDL_GetNaturalDisplayOrientation(SDL_DisplayID displayID); + +/** + * Get the orientation of a display. + * + * \param displayID the instance ID of the display to query. + * \returns the SDL_DisplayOrientation enum value of the display, or + * `SDL_ORIENTATION_UNKNOWN` if it isn't available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayOrientation SDLCALL SDL_GetCurrentDisplayOrientation(SDL_DisplayID displayID); + +/** + * Get the content scale of a display. + * + * The content scale is the expected scale for content based on the DPI + * settings of the display. For example, a 4K display might have a 2.0 (200%) + * display scale, which means that the user expects UI elements to be twice as + * big on this display, to aid in readability. + * + * After window creation, SDL_GetWindowDisplayScale() should be used to query + * the content scale factor for individual windows instead of querying the + * display for a window and calling this function, as the per-window content + * scale factor may differ from the base value of the display it is on, + * particularly on high-DPI and/or multi-monitor desktop configurations. + * + * \param displayID the instance ID of the display to query. + * \returns the content scale of the display, or 0.0f on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowDisplayScale + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetDisplayContentScale(SDL_DisplayID displayID); + +/** + * Get a list of fullscreen display modes available on a display. + * + * The display modes are sorted in this priority: + * + * - w -> largest to smallest + * - h -> largest to smallest + * - bits per pixel -> more colors to fewer colors + * - packed pixel layout -> largest to smallest + * - refresh rate -> highest to lowest + * - pixel density -> lowest to highest + * + * \param displayID the instance ID of the display to query. + * \param count a pointer filled in with the number of display modes returned, + * may be NULL. + * \returns a NULL terminated array of display mode pointers or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayMode ** SDLCALL SDL_GetFullscreenDisplayModes(SDL_DisplayID displayID, int *count); + +/** + * Get the closest match to the requested display mode. + * + * The available display modes are scanned and `closest` is filled in with the + * closest mode matching the requested mode and returned. The mode format and + * refresh rate default to the desktop mode if they are set to 0. The modes + * are scanned with size being first priority, format being second priority, + * and finally checking the refresh rate. If all the available modes are too + * small, then false is returned. + * + * \param displayID the instance ID of the display to query. + * \param w the width in pixels of the desired display mode. + * \param h the height in pixels of the desired display mode. + * \param refresh_rate the refresh rate of the desired display mode, or 0.0f + * for the desktop refresh rate. + * \param include_high_density_modes boolean to include high density modes in + * the search. + * \param closest a pointer filled in with the closest display mode equal to + * or larger than the desired mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + * \sa SDL_GetFullscreenDisplayModes + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetClosestFullscreenDisplayMode(SDL_DisplayID displayID, int w, int h, float refresh_rate, bool include_high_density_modes, SDL_DisplayMode *closest); + +/** + * Get information about the desktop's display mode. + * + * There's a difference between this function and SDL_GetCurrentDisplayMode() + * when SDL runs fullscreen and has changed the resolution. In that case this + * function will return the previous native display mode, and not the current + * display mode. + * + * \param displayID the instance ID of the display to query. + * \returns a pointer to the desktop display mode or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentDisplayMode + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC const SDL_DisplayMode * SDLCALL SDL_GetDesktopDisplayMode(SDL_DisplayID displayID); + +/** + * Get information about the current display mode. + * + * There's a difference between this function and SDL_GetDesktopDisplayMode() + * when SDL runs fullscreen and has changed the resolution. In that case this + * function will return the current display mode, and not the previous native + * display mode. + * + * \param displayID the instance ID of the display to query. + * \returns a pointer to the desktop display mode or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDesktopDisplayMode + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC const SDL_DisplayMode * SDLCALL SDL_GetCurrentDisplayMode(SDL_DisplayID displayID); + +/** + * Get the display containing a point. + * + * \param point the point to query. + * \returns the instance ID of the display containing the point or 0 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetDisplayForPoint(const SDL_Point *point); + +/** + * Get the display primarily containing a rect. + * + * \param rect the rect to query. + * \returns the instance ID of the display entirely containing the rect or + * closest to the center of the rect on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetDisplayForRect(const SDL_Rect *rect); + +/** + * Get the display associated with a window. + * + * \param window the window to query. + * \returns the instance ID of the display containing the center of the window + * on success or 0 on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetDisplayForWindow(SDL_Window *window); + +/** + * Get the pixel density of a window. + * + * This is a ratio of pixel size to window size. For example, if the window is + * 1920x1080 and it has a high density back buffer of 3840x2160 pixels, it + * would have a pixel density of 2.0. + * + * \param window the window to query. + * \returns the pixel density or 0.0f on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowDisplayScale + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetWindowPixelDensity(SDL_Window *window); + +/** + * Get the content display scale relative to a window's pixel size. + * + * This is a combination of the window pixel density and the display content + * scale, and is the expected scale for displaying content in this window. For + * example, if a 3840x2160 window had a display scale of 2.0, the user expects + * the content to take twice as many pixels and be the same physical size as + * if it were being displayed in a 1920x1080 window with a display scale of + * 1.0. + * + * Conceptually this value corresponds to the scale display setting, and is + * updated when that setting is changed, or the window moves to a display with + * a different scale setting. + * + * \param window the window to query. + * \returns the display scale, or 0.0f on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetWindowDisplayScale(SDL_Window *window); + +/** + * Set the display mode to use when a window is visible and fullscreen. + * + * This only affects the display mode used when the window is fullscreen. To + * change the window size when the window is not fullscreen, use + * SDL_SetWindowSize(). + * + * If the window is currently in the fullscreen state, this request is + * asynchronous on some windowing systems and the new mode dimensions may not + * be applied immediately upon the return of this function. If an immediate + * change is required, call SDL_SyncWindow() to block until the changes have + * taken effect. + * + * When the new mode takes effect, an SDL_EVENT_WINDOW_RESIZED and/or an + * SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED event will be emitted with the new mode + * dimensions. + * + * \param window the window to affect. + * \param mode a pointer to the display mode to use, which can be NULL for + * borderless fullscreen desktop mode, or one of the fullscreen + * modes returned by SDL_GetFullscreenDisplayModes() to set an + * exclusive fullscreen mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFullscreenMode + * \sa SDL_SetWindowFullscreen + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowFullscreenMode(SDL_Window *window, const SDL_DisplayMode *mode); + +/** + * Query the display mode to use when a window is visible at fullscreen. + * + * \param window the window to query. + * \returns a pointer to the exclusive fullscreen mode to use or NULL for + * borderless fullscreen desktop mode. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_SetWindowFullscreen + */ +extern SDL_DECLSPEC const SDL_DisplayMode * SDLCALL SDL_GetWindowFullscreenMode(SDL_Window *window); + +/** + * Get the raw ICC profile data for the screen the window is currently on. + * + * \param window the window to query. + * \param size the size of the ICC profile. + * \returns the raw ICC profile data on success or NULL on failure; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetWindowICCProfile(SDL_Window *window, size_t *size); + +/** + * Get the pixel format associated with the window. + * + * \param window the window to query. + * \returns the pixel format of the window on success or + * SDL_PIXELFORMAT_UNKNOWN on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PixelFormat SDLCALL SDL_GetWindowPixelFormat(SDL_Window *window); + +/** + * Get a list of valid windows. + * + * \param count a pointer filled in with the number of windows returned, may + * be NULL. + * \returns a NULL terminated array of SDL_Window pointers or NULL on failure; + * call SDL_GetError() for more information. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window ** SDLCALL SDL_GetWindows(int *count); + +/** + * Create a window with the specified dimensions and flags. + * + * The window size is a request and may be different than expected based on + * the desktop layout and window manager policies. Your application should be + * prepared to handle a window of any size. + * + * `flags` may be any of the following OR'd together: + * + * - `SDL_WINDOW_FULLSCREEN`: fullscreen window at desktop resolution + * - `SDL_WINDOW_OPENGL`: window usable with an OpenGL context + * - `SDL_WINDOW_OCCLUDED`: window partially or completely obscured by another + * window + * - `SDL_WINDOW_HIDDEN`: window is not visible + * - `SDL_WINDOW_BORDERLESS`: no window decoration + * - `SDL_WINDOW_RESIZABLE`: window can be resized + * - `SDL_WINDOW_MINIMIZED`: window is minimized + * - `SDL_WINDOW_MAXIMIZED`: window is maximized + * - `SDL_WINDOW_MOUSE_GRABBED`: window has grabbed mouse focus + * - `SDL_WINDOW_INPUT_FOCUS`: window has input focus + * - `SDL_WINDOW_MOUSE_FOCUS`: window has mouse focus + * - `SDL_WINDOW_EXTERNAL`: window not created by SDL + * - `SDL_WINDOW_MODAL`: window is modal + * - `SDL_WINDOW_HIGH_PIXEL_DENSITY`: window uses high pixel density back + * buffer if possible + * - `SDL_WINDOW_MOUSE_CAPTURE`: window has mouse captured (unrelated to + * MOUSE_GRABBED) + * - `SDL_WINDOW_ALWAYS_ON_TOP`: window should always be above others + * - `SDL_WINDOW_UTILITY`: window should be treated as a utility window, not + * showing in the task bar and window list + * - `SDL_WINDOW_TOOLTIP`: window should be treated as a tooltip and does not + * get mouse or keyboard focus, requires a parent window + * - `SDL_WINDOW_POPUP_MENU`: window should be treated as a popup menu, + * requires a parent window + * - `SDL_WINDOW_KEYBOARD_GRABBED`: window has grabbed keyboard input + * - `SDL_WINDOW_VULKAN`: window usable with a Vulkan instance + * - `SDL_WINDOW_METAL`: window usable with a Metal instance + * - `SDL_WINDOW_TRANSPARENT`: window with transparent buffer + * - `SDL_WINDOW_NOT_FOCUSABLE`: window should not be focusable + * + * The SDL_Window is implicitly shown if SDL_WINDOW_HIDDEN is not set. + * + * On Apple's macOS, you **must** set the NSHighResolutionCapable Info.plist + * property to YES, otherwise you will not receive a High-DPI OpenGL canvas. + * + * The window pixel size may differ from its window coordinate size if the + * window is on a high pixel density display. Use SDL_GetWindowSize() to query + * the client area's size in window coordinates, and + * SDL_GetWindowSizeInPixels() or SDL_GetRenderOutputSize() to query the + * drawable size in pixels. Note that the drawable size can vary after the + * window is created and should be queried again if you get an + * SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED event. + * + * If the window is created with any of the SDL_WINDOW_OPENGL or + * SDL_WINDOW_VULKAN flags, then the corresponding LoadLibrary function + * (SDL_GL_LoadLibrary or SDL_Vulkan_LoadLibrary) is called and the + * corresponding UnloadLibrary function is called by SDL_DestroyWindow(). + * + * If SDL_WINDOW_VULKAN is specified and there isn't a working Vulkan driver, + * SDL_CreateWindow() will fail, because SDL_Vulkan_LoadLibrary() will fail. + * + * If SDL_WINDOW_METAL is specified on an OS that does not support Metal, + * SDL_CreateWindow() will fail. + * + * If you intend to use this window with an SDL_Renderer, you should use + * SDL_CreateWindowAndRenderer() instead of this function, to avoid window + * flicker. + * + * On non-Apple devices, SDL requires you to either not link to the Vulkan + * loader or link to a dynamic library version. This limitation may be removed + * in a future version of SDL. + * + * \param title the title of the window, in UTF-8 encoding. + * \param w the width of the window. + * \param h the height of the window. + * \param flags 0, or one or more SDL_WindowFlags OR'd together. + * \returns the window that was created or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindowAndRenderer + * \sa SDL_CreatePopupWindow + * \sa SDL_CreateWindowWithProperties + * \sa SDL_DestroyWindow + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_CreateWindow(const char *title, int w, int h, SDL_WindowFlags flags); + +/** + * Create a child popup window of the specified parent window. + * + * The window size is a request and may be different than expected based on + * the desktop layout and window manager policies. Your application should be + * prepared to handle a window of any size. + * + * The flags parameter **must** contain at least one of the following: + * + * - `SDL_WINDOW_TOOLTIP`: The popup window is a tooltip and will not pass any + * input events. + * - `SDL_WINDOW_POPUP_MENU`: The popup window is a popup menu. The topmost + * popup menu will implicitly gain the keyboard focus. + * + * The following flags are not relevant to popup window creation and will be + * ignored: + * + * - `SDL_WINDOW_MINIMIZED` + * - `SDL_WINDOW_MAXIMIZED` + * - `SDL_WINDOW_FULLSCREEN` + * - `SDL_WINDOW_BORDERLESS` + * + * The following flags are incompatible with popup window creation and will + * cause it to fail: + * + * - `SDL_WINDOW_UTILITY` + * - `SDL_WINDOW_MODAL` + * + * The parent parameter **must** be non-null and a valid window. The parent of + * a popup window can be either a regular, toplevel window, or another popup + * window. + * + * Popup windows cannot be minimized, maximized, made fullscreen, raised, + * flash, be made a modal window, be the parent of a toplevel window, or grab + * the mouse and/or keyboard. Attempts to do so will fail. + * + * Popup windows implicitly do not have a border/decorations and do not appear + * on the taskbar/dock or in lists of windows such as alt-tab menus. + * + * By default, popup window positions will automatically be constrained to keep + * the entire window within display bounds. This can be overridden with the + * `SDL_PROP_WINDOW_CREATE_CONSTRAIN_POPUP_BOOLEAN` property. + * + * By default, popup menus will automatically grab keyboard focus from the parent + * when shown. This behavior can be overridden by setting the `SDL_WINDOW_NOT_FOCUSABLE` + * flag, setting the `SDL_PROP_WINDOW_CREATE_FOCUSABLE_BOOLEAN` property to false, or + * toggling it after creation via the `SDL_SetWindowFocusable()` function. + * + * If a parent window is hidden or destroyed, any child popup windows will be + * recursively hidden or destroyed as well. Child popup windows not explicitly + * hidden will be restored when the parent is shown. + * + * \param parent the parent of the window, must not be NULL. + * \param offset_x the x position of the popup window relative to the origin + * of the parent. + * \param offset_y the y position of the popup window relative to the origin + * of the parent window. + * \param w the width of the window. + * \param h the height of the window. + * \param flags SDL_WINDOW_TOOLTIP or SDL_WINDOW_POPUP_MENU, and zero or more + * additional SDL_WindowFlags OR'd together. + * \returns the window that was created or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + * \sa SDL_CreateWindowWithProperties + * \sa SDL_DestroyWindow + * \sa SDL_GetWindowParent + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_CreatePopupWindow(SDL_Window *parent, int offset_x, int offset_y, int w, int h, SDL_WindowFlags flags); + +/** + * Create a window with the specified properties. + * + * The window size is a request and may be different than expected based on + * the desktop layout and window manager policies. Your application should be + * prepared to handle a window of any size. + * + * These are the supported properties: + * + * - `SDL_PROP_WINDOW_CREATE_ALWAYS_ON_TOP_BOOLEAN`: true if the window should + * be always on top + * - `SDL_PROP_WINDOW_CREATE_BORDERLESS_BOOLEAN`: true if the window has no + * window decoration + * - `SDL_PROP_WINDOW_CREATE_CONSTRAIN_POPUP_BOOLEAN`: true if the "tooltip" and + * "menu" window types should be automatically constrained to be entirely within + * display bounds (default), false if no constraints on the position are desired. + * - `SDL_PROP_WINDOW_CREATE_EXTERNAL_GRAPHICS_CONTEXT_BOOLEAN`: true if the + * window will be used with an externally managed graphics context. + * - `SDL_PROP_WINDOW_CREATE_FOCUSABLE_BOOLEAN`: true if the window should + * accept keyboard input (defaults true) + * - `SDL_PROP_WINDOW_CREATE_FULLSCREEN_BOOLEAN`: true if the window should + * start in fullscreen mode at desktop resolution + * - `SDL_PROP_WINDOW_CREATE_HEIGHT_NUMBER`: the height of the window + * - `SDL_PROP_WINDOW_CREATE_HIDDEN_BOOLEAN`: true if the window should start + * hidden + * - `SDL_PROP_WINDOW_CREATE_HIGH_PIXEL_DENSITY_BOOLEAN`: true if the window + * uses a high pixel density buffer if possible + * - `SDL_PROP_WINDOW_CREATE_MAXIMIZED_BOOLEAN`: true if the window should + * start maximized + * - `SDL_PROP_WINDOW_CREATE_MENU_BOOLEAN`: true if the window is a popup menu + * - `SDL_PROP_WINDOW_CREATE_METAL_BOOLEAN`: true if the window will be used + * with Metal rendering + * - `SDL_PROP_WINDOW_CREATE_MINIMIZED_BOOLEAN`: true if the window should + * start minimized + * - `SDL_PROP_WINDOW_CREATE_MODAL_BOOLEAN`: true if the window is modal to + * its parent + * - `SDL_PROP_WINDOW_CREATE_MOUSE_GRABBED_BOOLEAN`: true if the window starts + * with grabbed mouse focus + * - `SDL_PROP_WINDOW_CREATE_OPENGL_BOOLEAN`: true if the window will be used + * with OpenGL rendering + * - `SDL_PROP_WINDOW_CREATE_PARENT_POINTER`: an SDL_Window that will be the + * parent of this window, required for windows with the "tooltip", "menu", + * and "modal" properties + * - `SDL_PROP_WINDOW_CREATE_RESIZABLE_BOOLEAN`: true if the window should be + * resizable + * - `SDL_PROP_WINDOW_CREATE_TITLE_STRING`: the title of the window, in UTF-8 + * encoding + * - `SDL_PROP_WINDOW_CREATE_TRANSPARENT_BOOLEAN`: true if the window show + * transparent in the areas with alpha of 0 + * - `SDL_PROP_WINDOW_CREATE_TOOLTIP_BOOLEAN`: true if the window is a tooltip + * - `SDL_PROP_WINDOW_CREATE_UTILITY_BOOLEAN`: true if the window is a utility + * window, not showing in the task bar and window list + * - `SDL_PROP_WINDOW_CREATE_VULKAN_BOOLEAN`: true if the window will be used + * with Vulkan rendering + * - `SDL_PROP_WINDOW_CREATE_WIDTH_NUMBER`: the width of the window + * - `SDL_PROP_WINDOW_CREATE_X_NUMBER`: the x position of the window, or + * `SDL_WINDOWPOS_CENTERED`, defaults to `SDL_WINDOWPOS_UNDEFINED`. This is + * relative to the parent for windows with the "tooltip" or "menu" property + * set. + * - `SDL_PROP_WINDOW_CREATE_Y_NUMBER`: the y position of the window, or + * `SDL_WINDOWPOS_CENTERED`, defaults to `SDL_WINDOWPOS_UNDEFINED`. This is + * relative to the parent for windows with the "tooltip" or "menu" property + * set. + * + * These are additional supported properties on macOS: + * + * - `SDL_PROP_WINDOW_CREATE_COCOA_WINDOW_POINTER`: the + * `(__unsafe_unretained)` NSWindow associated with the window, if you want + * to wrap an existing window. + * - `SDL_PROP_WINDOW_CREATE_COCOA_VIEW_POINTER`: the `(__unsafe_unretained)` + * NSView associated with the window, defaults to `[window contentView]` + * + * These are additional supported properties on Wayland: + * + * - `SDL_PROP_WINDOW_CREATE_WAYLAND_SURFACE_ROLE_CUSTOM_BOOLEAN` - true if + * the application wants to use the Wayland surface for a custom role and + * does not want it attached to an XDG toplevel window. See + * [README/wayland](README/wayland) for more information on using custom + * surfaces. + * - `SDL_PROP_WINDOW_CREATE_WAYLAND_CREATE_EGL_WINDOW_BOOLEAN` - true if the + * application wants an associated `wl_egl_window` object to be created and + * attached to the window, even if the window does not have the OpenGL + * property or `SDL_WINDOW_OPENGL` flag set. + * - `SDL_PROP_WINDOW_CREATE_WAYLAND_WL_SURFACE_POINTER` - the wl_surface + * associated with the window, if you want to wrap an existing window. See + * [README/wayland](README/wayland) for more information. + * + * These are additional supported properties on Windows: + * + * - `SDL_PROP_WINDOW_CREATE_WIN32_HWND_POINTER`: the HWND associated with the + * window, if you want to wrap an existing window. + * - `SDL_PROP_WINDOW_CREATE_WIN32_PIXEL_FORMAT_HWND_POINTER`: optional, + * another window to share pixel format with, useful for OpenGL windows + * + * These are additional supported properties with X11: + * + * - `SDL_PROP_WINDOW_CREATE_X11_WINDOW_NUMBER`: the X11 Window associated + * with the window, if you want to wrap an existing window. + * + * The window is implicitly shown if the "hidden" property is not set. + * + * Windows with the "tooltip" and "menu" properties are popup windows and have + * the behaviors and guidelines outlined in SDL_CreatePopupWindow(). + * + * If this window is being created to be used with an SDL_Renderer, you should + * not add a graphics API specific property + * (`SDL_PROP_WINDOW_CREATE_OPENGL_BOOLEAN`, etc), as SDL will handle that + * internally when it chooses a renderer. However, SDL might need to recreate + * your window at that point, which may cause the window to appear briefly, + * and then flicker as it is recreated. The correct approach to this is to + * create the window with the `SDL_PROP_WINDOW_CREATE_HIDDEN_BOOLEAN` property + * set to true, then create the renderer, then show the window with + * SDL_ShowWindow(). + * + * \param props the properties to use. + * \returns the window that was created or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + * \sa SDL_CreateWindow + * \sa SDL_DestroyWindow + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_CreateWindowWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_WINDOW_CREATE_ALWAYS_ON_TOP_BOOLEAN "SDL.window.create.always_on_top" +#define SDL_PROP_WINDOW_CREATE_BORDERLESS_BOOLEAN "SDL.window.create.borderless" +#define SDL_PROP_WINDOW_CREATE_CONSTRAIN_POPUP_BOOLEAN "SDL.window.create.constrain_popup" +#define SDL_PROP_WINDOW_CREATE_FOCUSABLE_BOOLEAN "SDL.window.create.focusable" +#define SDL_PROP_WINDOW_CREATE_EXTERNAL_GRAPHICS_CONTEXT_BOOLEAN "SDL.window.create.external_graphics_context" +#define SDL_PROP_WINDOW_CREATE_FLAGS_NUMBER "SDL.window.create.flags" +#define SDL_PROP_WINDOW_CREATE_FULLSCREEN_BOOLEAN "SDL.window.create.fullscreen" +#define SDL_PROP_WINDOW_CREATE_HEIGHT_NUMBER "SDL.window.create.height" +#define SDL_PROP_WINDOW_CREATE_HIDDEN_BOOLEAN "SDL.window.create.hidden" +#define SDL_PROP_WINDOW_CREATE_HIGH_PIXEL_DENSITY_BOOLEAN "SDL.window.create.high_pixel_density" +#define SDL_PROP_WINDOW_CREATE_MAXIMIZED_BOOLEAN "SDL.window.create.maximized" +#define SDL_PROP_WINDOW_CREATE_MENU_BOOLEAN "SDL.window.create.menu" +#define SDL_PROP_WINDOW_CREATE_METAL_BOOLEAN "SDL.window.create.metal" +#define SDL_PROP_WINDOW_CREATE_MINIMIZED_BOOLEAN "SDL.window.create.minimized" +#define SDL_PROP_WINDOW_CREATE_MODAL_BOOLEAN "SDL.window.create.modal" +#define SDL_PROP_WINDOW_CREATE_MOUSE_GRABBED_BOOLEAN "SDL.window.create.mouse_grabbed" +#define SDL_PROP_WINDOW_CREATE_OPENGL_BOOLEAN "SDL.window.create.opengl" +#define SDL_PROP_WINDOW_CREATE_PARENT_POINTER "SDL.window.create.parent" +#define SDL_PROP_WINDOW_CREATE_RESIZABLE_BOOLEAN "SDL.window.create.resizable" +#define SDL_PROP_WINDOW_CREATE_TITLE_STRING "SDL.window.create.title" +#define SDL_PROP_WINDOW_CREATE_TRANSPARENT_BOOLEAN "SDL.window.create.transparent" +#define SDL_PROP_WINDOW_CREATE_TOOLTIP_BOOLEAN "SDL.window.create.tooltip" +#define SDL_PROP_WINDOW_CREATE_UTILITY_BOOLEAN "SDL.window.create.utility" +#define SDL_PROP_WINDOW_CREATE_VULKAN_BOOLEAN "SDL.window.create.vulkan" +#define SDL_PROP_WINDOW_CREATE_WIDTH_NUMBER "SDL.window.create.width" +#define SDL_PROP_WINDOW_CREATE_X_NUMBER "SDL.window.create.x" +#define SDL_PROP_WINDOW_CREATE_Y_NUMBER "SDL.window.create.y" +#define SDL_PROP_WINDOW_CREATE_COCOA_WINDOW_POINTER "SDL.window.create.cocoa.window" +#define SDL_PROP_WINDOW_CREATE_COCOA_VIEW_POINTER "SDL.window.create.cocoa.view" +#define SDL_PROP_WINDOW_CREATE_WAYLAND_SURFACE_ROLE_CUSTOM_BOOLEAN "SDL.window.create.wayland.surface_role_custom" +#define SDL_PROP_WINDOW_CREATE_WAYLAND_CREATE_EGL_WINDOW_BOOLEAN "SDL.window.create.wayland.create_egl_window" +#define SDL_PROP_WINDOW_CREATE_WAYLAND_WL_SURFACE_POINTER "SDL.window.create.wayland.wl_surface" +#define SDL_PROP_WINDOW_CREATE_WIN32_HWND_POINTER "SDL.window.create.win32.hwnd" +#define SDL_PROP_WINDOW_CREATE_WIN32_PIXEL_FORMAT_HWND_POINTER "SDL.window.create.win32.pixel_format_hwnd" +#define SDL_PROP_WINDOW_CREATE_X11_WINDOW_NUMBER "SDL.window.create.x11.window" + +/** + * Get the numeric ID of a window. + * + * The numeric ID is what SDL_WindowEvent references, and is necessary to map + * these events to specific SDL_Window objects. + * + * \param window the window to query. + * \returns the ID of the window on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFromID + */ +extern SDL_DECLSPEC SDL_WindowID SDLCALL SDL_GetWindowID(SDL_Window *window); + +/** + * Get a window from a stored ID. + * + * The numeric ID is what SDL_WindowEvent references, and is necessary to map + * these events to specific SDL_Window objects. + * + * \param id the ID of the window. + * \returns the window associated with `id` or NULL if it doesn't exist; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowID + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetWindowFromID(SDL_WindowID id); + +/** + * Get parent of a window. + * + * \param window the window to query. + * \returns the parent of the window on success or NULL if the window has no + * parent. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePopupWindow + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetWindowParent(SDL_Window *window); + +/** + * Get the properties associated with a window. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_WINDOW_SHAPE_POINTER`: the surface associated with a shaped + * window + * - `SDL_PROP_WINDOW_HDR_ENABLED_BOOLEAN`: true if the window has HDR + * headroom above the SDR white point. This property can change dynamically + * when SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_WINDOW_SDR_WHITE_LEVEL_FLOAT`: the value of SDR white in the + * SDL_COLORSPACE_SRGB_LINEAR colorspace. On Windows this corresponds to the + * SDR white level in scRGB colorspace, and on Apple platforms this is + * always 1.0 for EDR content. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_WINDOW_HDR_HEADROOM_FLOAT`: the additional high dynamic range + * that can be displayed, in terms of the SDR white point. When HDR is not + * enabled, this will be 1.0. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * + * On Android: + * + * - `SDL_PROP_WINDOW_ANDROID_WINDOW_POINTER`: the ANativeWindow associated + * with the window + * - `SDL_PROP_WINDOW_ANDROID_SURFACE_POINTER`: the EGLSurface associated with + * the window + * + * On iOS: + * + * - `SDL_PROP_WINDOW_UIKIT_WINDOW_POINTER`: the `(__unsafe_unretained)` + * UIWindow associated with the window + * - `SDL_PROP_WINDOW_UIKIT_METAL_VIEW_TAG_NUMBER`: the NSInteger tag + * associated with metal views on the window + * - `SDL_PROP_WINDOW_UIKIT_OPENGL_FRAMEBUFFER_NUMBER`: the OpenGL view's + * framebuffer object. It must be bound when rendering to the screen using + * OpenGL. + * - `SDL_PROP_WINDOW_UIKIT_OPENGL_RENDERBUFFER_NUMBER`: the OpenGL view's + * renderbuffer object. It must be bound when SDL_GL_SwapWindow is called. + * - `SDL_PROP_WINDOW_UIKIT_OPENGL_RESOLVE_FRAMEBUFFER_NUMBER`: the OpenGL + * view's resolve framebuffer, when MSAA is used. + * + * On KMS/DRM: + * + * - `SDL_PROP_WINDOW_KMSDRM_DEVICE_INDEX_NUMBER`: the device index associated + * with the window (e.g. the X in /dev/dri/cardX) + * - `SDL_PROP_WINDOW_KMSDRM_DRM_FD_NUMBER`: the DRM FD associated with the + * window + * - `SDL_PROP_WINDOW_KMSDRM_GBM_DEVICE_POINTER`: the GBM device associated + * with the window + * + * On macOS: + * + * - `SDL_PROP_WINDOW_COCOA_WINDOW_POINTER`: the `(__unsafe_unretained)` + * NSWindow associated with the window + * - `SDL_PROP_WINDOW_COCOA_METAL_VIEW_TAG_NUMBER`: the NSInteger tag + * assocated with metal views on the window + * + * On OpenVR: + * + * - `SDL_PROP_WINDOW_OPENVR_OVERLAY_ID`: the OpenVR Overlay Handle ID for the + * associated overlay window. + * + * On Vivante: + * + * - `SDL_PROP_WINDOW_VIVANTE_DISPLAY_POINTER`: the EGLNativeDisplayType + * associated with the window + * - `SDL_PROP_WINDOW_VIVANTE_WINDOW_POINTER`: the EGLNativeWindowType + * associated with the window + * - `SDL_PROP_WINDOW_VIVANTE_SURFACE_POINTER`: the EGLSurface associated with + * the window + * + * On Windows: + * + * - `SDL_PROP_WINDOW_WIN32_HWND_POINTER`: the HWND associated with the window + * - `SDL_PROP_WINDOW_WIN32_HDC_POINTER`: the HDC associated with the window + * - `SDL_PROP_WINDOW_WIN32_INSTANCE_POINTER`: the HINSTANCE associated with + * the window + * + * On Wayland: + * + * Note: The `xdg_*` window objects do not internally persist across window + * show/hide calls. They will be null if the window is hidden and must be + * queried each time it is shown. + * + * - `SDL_PROP_WINDOW_WAYLAND_DISPLAY_POINTER`: the wl_display associated with + * the window + * - `SDL_PROP_WINDOW_WAYLAND_SURFACE_POINTER`: the wl_surface associated with + * the window + * - `SDL_PROP_WINDOW_WAYLAND_VIEWPORT_POINTER`: the wp_viewport associated + * with the window + * - `SDL_PROP_WINDOW_WAYLAND_EGL_WINDOW_POINTER`: the wl_egl_window + * associated with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_SURFACE_POINTER`: the xdg_surface associated + * with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_POINTER`: the xdg_toplevel role + * associated with the window + * - 'SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_EXPORT_HANDLE_STRING': the export + * handle associated with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_POPUP_POINTER`: the xdg_popup role + * associated with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_POSITIONER_POINTER`: the xdg_positioner + * associated with the window, in popup mode + * + * On X11: + * + * - `SDL_PROP_WINDOW_X11_DISPLAY_POINTER`: the X11 Display associated with + * the window + * - `SDL_PROP_WINDOW_X11_SCREEN_NUMBER`: the screen number associated with + * the window + * - `SDL_PROP_WINDOW_X11_WINDOW_NUMBER`: the X11 Window associated with the + * window + * + * \param window the window to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetWindowProperties(SDL_Window *window); + +#define SDL_PROP_WINDOW_SHAPE_POINTER "SDL.window.shape" +#define SDL_PROP_WINDOW_HDR_ENABLED_BOOLEAN "SDL.window.HDR_enabled" +#define SDL_PROP_WINDOW_SDR_WHITE_LEVEL_FLOAT "SDL.window.SDR_white_level" +#define SDL_PROP_WINDOW_HDR_HEADROOM_FLOAT "SDL.window.HDR_headroom" +#define SDL_PROP_WINDOW_ANDROID_WINDOW_POINTER "SDL.window.android.window" +#define SDL_PROP_WINDOW_ANDROID_SURFACE_POINTER "SDL.window.android.surface" +#define SDL_PROP_WINDOW_UIKIT_WINDOW_POINTER "SDL.window.uikit.window" +#define SDL_PROP_WINDOW_UIKIT_METAL_VIEW_TAG_NUMBER "SDL.window.uikit.metal_view_tag" +#define SDL_PROP_WINDOW_UIKIT_OPENGL_FRAMEBUFFER_NUMBER "SDL.window.uikit.opengl.framebuffer" +#define SDL_PROP_WINDOW_UIKIT_OPENGL_RENDERBUFFER_NUMBER "SDL.window.uikit.opengl.renderbuffer" +#define SDL_PROP_WINDOW_UIKIT_OPENGL_RESOLVE_FRAMEBUFFER_NUMBER "SDL.window.uikit.opengl.resolve_framebuffer" +#define SDL_PROP_WINDOW_KMSDRM_DEVICE_INDEX_NUMBER "SDL.window.kmsdrm.dev_index" +#define SDL_PROP_WINDOW_KMSDRM_DRM_FD_NUMBER "SDL.window.kmsdrm.drm_fd" +#define SDL_PROP_WINDOW_KMSDRM_GBM_DEVICE_POINTER "SDL.window.kmsdrm.gbm_dev" +#define SDL_PROP_WINDOW_COCOA_WINDOW_POINTER "SDL.window.cocoa.window" +#define SDL_PROP_WINDOW_COCOA_METAL_VIEW_TAG_NUMBER "SDL.window.cocoa.metal_view_tag" +#define SDL_PROP_WINDOW_OPENVR_OVERLAY_ID "SDL.window.openvr.overlay_id" +#define SDL_PROP_WINDOW_VIVANTE_DISPLAY_POINTER "SDL.window.vivante.display" +#define SDL_PROP_WINDOW_VIVANTE_WINDOW_POINTER "SDL.window.vivante.window" +#define SDL_PROP_WINDOW_VIVANTE_SURFACE_POINTER "SDL.window.vivante.surface" +#define SDL_PROP_WINDOW_WIN32_HWND_POINTER "SDL.window.win32.hwnd" +#define SDL_PROP_WINDOW_WIN32_HDC_POINTER "SDL.window.win32.hdc" +#define SDL_PROP_WINDOW_WIN32_INSTANCE_POINTER "SDL.window.win32.instance" +#define SDL_PROP_WINDOW_WAYLAND_DISPLAY_POINTER "SDL.window.wayland.display" +#define SDL_PROP_WINDOW_WAYLAND_SURFACE_POINTER "SDL.window.wayland.surface" +#define SDL_PROP_WINDOW_WAYLAND_VIEWPORT_POINTER "SDL.window.wayland.viewport" +#define SDL_PROP_WINDOW_WAYLAND_EGL_WINDOW_POINTER "SDL.window.wayland.egl_window" +#define SDL_PROP_WINDOW_WAYLAND_XDG_SURFACE_POINTER "SDL.window.wayland.xdg_surface" +#define SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_POINTER "SDL.window.wayland.xdg_toplevel" +#define SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_EXPORT_HANDLE_STRING "SDL.window.wayland.xdg_toplevel_export_handle" +#define SDL_PROP_WINDOW_WAYLAND_XDG_POPUP_POINTER "SDL.window.wayland.xdg_popup" +#define SDL_PROP_WINDOW_WAYLAND_XDG_POSITIONER_POINTER "SDL.window.wayland.xdg_positioner" +#define SDL_PROP_WINDOW_X11_DISPLAY_POINTER "SDL.window.x11.display" +#define SDL_PROP_WINDOW_X11_SCREEN_NUMBER "SDL.window.x11.screen" +#define SDL_PROP_WINDOW_X11_WINDOW_NUMBER "SDL.window.x11.window" + +/** + * Get the window flags. + * + * \param window the window to query. + * \returns a mask of the SDL_WindowFlags associated with `window`. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + * \sa SDL_HideWindow + * \sa SDL_MaximizeWindow + * \sa SDL_MinimizeWindow + * \sa SDL_SetWindowFullscreen + * \sa SDL_SetWindowMouseGrab + * \sa SDL_ShowWindow + */ +extern SDL_DECLSPEC SDL_WindowFlags SDLCALL SDL_GetWindowFlags(SDL_Window *window); + +/** + * Set the title of a window. + * + * This string is expected to be in UTF-8 encoding. + * + * \param window the window to change. + * \param title the desired window title in UTF-8 format. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowTitle + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowTitle(SDL_Window *window, const char *title); + +/** + * Get the title of a window. + * + * \param window the window to query. + * \returns the title of the window in UTF-8 format or "" if there is no + * title. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowTitle + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetWindowTitle(SDL_Window *window); + +/** + * Set the icon for a window. + * + * If this function is passed a surface with alternate representations, the + * surface will be interpreted as the content to be used for 100% display + * scale, and the alternate representations will be used for high DPI + * situations. For example, if the original surface is 32x32, then on a 2x + * macOS display or 200% display scale on Windows, a 64x64 version of the + * image will be used, if available. If a matching version of the image isn't + * available, the closest larger size image will be downscaled to the + * appropriate size and be used instead, if available. Otherwise, the closest + * smaller image will be upscaled and be used instead. + * + * \param window the window to change. + * \param icon an SDL_Surface structure containing the icon for the window. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowIcon(SDL_Window *window, SDL_Surface *icon); + +/** + * Request that the window's position be set. + * + * If the window is in an exclusive fullscreen or maximized state, this + * request has no effect. + * + * This can be used to reposition fullscreen-desktop windows onto a different + * display, however, as exclusive fullscreen windows are locked to a specific + * display, they can only be repositioned programmatically via + * SDL_SetWindowFullscreenMode(). + * + * On some windowing systems this request is asynchronous and the new + * coordinates may not have have been applied immediately upon the return of + * this function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window position changes, an SDL_EVENT_WINDOW_MOVED event will be + * emitted with the window's new coordinates. Note that the new coordinates + * may not match the exact coordinates requested, as some windowing systems + * can restrict the position of the window in certain scenarios (e.g. + * constraining the position so the window is always within desktop bounds). + * Additionally, as this is just a request, it can be denied by the windowing + * system. + * + * \param window the window to reposition. + * \param x the x coordinate of the window, or `SDL_WINDOWPOS_CENTERED` or + * `SDL_WINDOWPOS_UNDEFINED`. + * \param y the y coordinate of the window, or `SDL_WINDOWPOS_CENTERED` or + * `SDL_WINDOWPOS_UNDEFINED`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowPosition + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowPosition(SDL_Window *window, int x, int y); + +/** + * Get the position of a window. + * + * This is the current position of the window as last reported by the + * windowing system. + * + * If you do not need the value for one of the positions a NULL may be passed + * in the `x` or `y` parameter. + * + * \param window the window to query. + * \param x a pointer filled in with the x position of the window, may be + * NULL. + * \param y a pointer filled in with the y position of the window, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowPosition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowPosition(SDL_Window *window, int *x, int *y); + +/** + * Request that the size of a window's client area be set. + * + * If the window is in a fullscreen or maximized state, this request has no + * effect. + * + * To change the exclusive fullscreen mode of a window, use + * SDL_SetWindowFullscreenMode(). + * + * On some windowing systems, this request is asynchronous and the new window + * size may not have have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window size changes, an SDL_EVENT_WINDOW_RESIZED event will be + * emitted with the new window dimensions. Note that the new dimensions may + * not match the exact size requested, as some windowing systems can restrict + * the window size in certain scenarios (e.g. constraining the size of the + * content area to remain within the usable desktop bounds). Additionally, as + * this is just a request, it can be denied by the windowing system. + * + * \param window the window to change. + * \param w the width of the window, must be > 0. + * \param h the height of the window, must be > 0. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSize + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowSize(SDL_Window *window, int w, int h); + +/** + * Get the size of a window's client area. + * + * The window pixel size may differ from its window coordinate size if the + * window is on a high pixel density display. Use SDL_GetWindowSizeInPixels() + * or SDL_GetRenderOutputSize() to get the real client area size in pixels. + * + * \param window the window to query the width and height from. + * \param w a pointer filled in with the width of the window, may be NULL. + * \param h a pointer filled in with the height of the window, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderOutputSize + * \sa SDL_GetWindowSizeInPixels + * \sa SDL_SetWindowSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSize(SDL_Window *window, int *w, int *h); + +/** + * Get the safe area for this window. + * + * Some devices have portions of the screen which are partially obscured or + * not interactive, possibly due to on-screen controls, curved edges, camera + * notches, TV overscan, etc. This function provides the area of the window + * which is safe to have interactable content. You should continue rendering + * into the rest of the window, but it should not contain visually important + * or interactible content. + * + * \param window the window to query. + * \param rect a pointer filled in with the client area that is safe for + * interactive content. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSafeArea(SDL_Window *window, SDL_Rect *rect); + +/** + * Request that the aspect ratio of a window's client area be set. + * + * The aspect ratio is the ratio of width divided by height, e.g. 2560x1600 + * would be 1.6. Larger aspect ratios are wider and smaller aspect ratios are + * narrower. + * + * If, at the time of this request, the window in a fixed-size state, such as + * maximized or fullscreen, the request will be deferred until the window + * exits this state and becomes resizable again. + * + * On some windowing systems, this request is asynchronous and the new window + * aspect ratio may not have have been applied immediately upon the return of + * this function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window size changes, an SDL_EVENT_WINDOW_RESIZED event will be + * emitted with the new window dimensions. Note that the new dimensions may + * not match the exact aspect ratio requested, as some windowing systems can + * restrict the window size in certain scenarios (e.g. constraining the size + * of the content area to remain within the usable desktop bounds). + * Additionally, as this is just a request, it can be denied by the windowing + * system. + * + * \param window the window to change. + * \param min_aspect the minimum aspect ratio of the window, or 0.0f for no + * limit. + * \param max_aspect the maximum aspect ratio of the window, or 0.0f for no + * limit. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowAspectRatio + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowAspectRatio(SDL_Window *window, float min_aspect, float max_aspect); + +/** + * Get the size of a window's client area. + * + * \param window the window to query the width and height from. + * \param min_aspect a pointer filled in with the minimum aspect ratio of the + * window, may be NULL. + * \param max_aspect a pointer filled in with the maximum aspect ratio of the + * window, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowAspectRatio + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowAspectRatio(SDL_Window *window, float *min_aspect, float *max_aspect); + +/** + * Get the size of a window's borders (decorations) around the client area. + * + * Note: If this function fails (returns false), the size values will be + * initialized to 0, 0, 0, 0 (if a non-NULL pointer is provided), as if the + * window in question was borderless. + * + * Note: This function may fail on systems where the window has not yet been + * decorated by the display server (for example, immediately after calling + * SDL_CreateWindow). It is recommended that you wait at least until the + * window has been presented and composited, so that the window system has a + * chance to decorate the window and provide the border dimensions to SDL. + * + * This function also returns false if getting the information is not + * supported. + * + * \param window the window to query the size values of the border + * (decorations) from. + * \param top pointer to variable for storing the size of the top border; NULL + * is permitted. + * \param left pointer to variable for storing the size of the left border; + * NULL is permitted. + * \param bottom pointer to variable for storing the size of the bottom + * border; NULL is permitted. + * \param right pointer to variable for storing the size of the right border; + * NULL is permitted. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowBordersSize(SDL_Window *window, int *top, int *left, int *bottom, int *right); + +/** + * Get the size of a window's client area, in pixels. + * + * \param window the window from which the drawable size should be queried. + * \param w a pointer to variable for storing the width in pixels, may be + * NULL. + * \param h a pointer to variable for storing the height in pixels, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + * \sa SDL_GetWindowSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSizeInPixels(SDL_Window *window, int *w, int *h); + +/** + * Set the minimum size of a window's client area. + * + * \param window the window to change. + * \param min_w the minimum width of the window, or 0 for no limit. + * \param min_h the minimum height of the window, or 0 for no limit. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMinimumSize + * \sa SDL_SetWindowMaximumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMinimumSize(SDL_Window *window, int min_w, int min_h); + +/** + * Get the minimum size of a window's client area. + * + * \param window the window to query. + * \param w a pointer filled in with the minimum width of the window, may be + * NULL. + * \param h a pointer filled in with the minimum height of the window, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMaximumSize + * \sa SDL_SetWindowMinimumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowMinimumSize(SDL_Window *window, int *w, int *h); + +/** + * Set the maximum size of a window's client area. + * + * \param window the window to change. + * \param max_w the maximum width of the window, or 0 for no limit. + * \param max_h the maximum height of the window, or 0 for no limit. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMaximumSize + * \sa SDL_SetWindowMinimumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMaximumSize(SDL_Window *window, int max_w, int max_h); + +/** + * Get the maximum size of a window's client area. + * + * \param window the window to query. + * \param w a pointer filled in with the maximum width of the window, may be + * NULL. + * \param h a pointer filled in with the maximum height of the window, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMinimumSize + * \sa SDL_SetWindowMaximumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowMaximumSize(SDL_Window *window, int *w, int *h); + +/** + * Set the border state of a window. + * + * This will add or remove the window's `SDL_WINDOW_BORDERLESS` flag and add + * or remove the border from the actual window. This is a no-op if the + * window's border already matches the requested state. + * + * You can't change the border state of a fullscreen window. + * + * \param window the window of which to change the border state. + * \param bordered false to remove border, true to add border. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowBordered(SDL_Window *window, bool bordered); + +/** + * Set the user-resizable state of a window. + * + * This will add or remove the window's `SDL_WINDOW_RESIZABLE` flag and + * allow/disallow user resizing of the window. This is a no-op if the window's + * resizable state already matches the requested state. + * + * You can't change the resizable state of a fullscreen window. + * + * \param window the window of which to change the resizable state. + * \param resizable true to allow resizing, false to disallow. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowResizable(SDL_Window *window, bool resizable); + +/** + * Set the window to always be above the others. + * + * This will add or remove the window's `SDL_WINDOW_ALWAYS_ON_TOP` flag. This + * will bring the window to the front and keep the window above the rest. + * + * \param window the window of which to change the always on top state. + * \param on_top true to set the window always on top, false to disable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowAlwaysOnTop(SDL_Window *window, bool on_top); + +/** + * Show a window. + * + * \param window the window to show. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HideWindow + * \sa SDL_RaiseWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowWindow(SDL_Window *window); + +/** + * Hide a window. + * + * \param window the window to hide. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShowWindow + * \sa SDL_WINDOW_HIDDEN + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HideWindow(SDL_Window *window); + +/** + * Request that a window be raised above other windows and gain the input + * focus. + * + * The result of this request is subject to desktop window manager policy, + * particularly if raising the requested window would result in stealing focus + * from another application. If the window is successfully raised and gains + * input focus, an SDL_EVENT_WINDOW_FOCUS_GAINED event will be emitted, and + * the window will have the SDL_WINDOW_INPUT_FOCUS flag set. + * + * \param window the window to raise. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RaiseWindow(SDL_Window *window); + +/** + * Request that the window be made as large as possible. + * + * Non-resizable windows can't be maximized. The window must have the + * SDL_WINDOW_RESIZABLE flag set, or this will have no effect. + * + * On some windowing systems this request is asynchronous and the new window + * state may not have have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_MAXIMIZED event will be + * emitted. Note that, as this is just a request, the windowing system can + * deny the state change. + * + * When maximizing a window, whether the constraints set via + * SDL_SetWindowMaximumSize() are honored depends on the policy of the window + * manager. Win32 and macOS enforce the constraints when maximizing, while X11 + * and Wayland window managers may vary. + * + * \param window the window to maximize. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MinimizeWindow + * \sa SDL_RestoreWindow + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_MaximizeWindow(SDL_Window *window); + +/** + * Request that the window be minimized to an iconic representation. + * + * If the window is in a fullscreen state, this request has no direct effect. + * It may alter the state the window is returned to when leaving fullscreen. + * + * On some windowing systems this request is asynchronous and the new window + * state may not have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_MINIMIZED event will be + * emitted. Note that, as this is just a request, the windowing system can + * deny the state change. + * + * \param window the window to minimize. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MaximizeWindow + * \sa SDL_RestoreWindow + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_MinimizeWindow(SDL_Window *window); + +/** + * Request that the size and position of a minimized or maximized window be + * restored. + * + * If the window is in a fullscreen state, this request has no direct effect. + * It may alter the state the window is returned to when leaving fullscreen. + * + * On some windowing systems this request is asynchronous and the new window + * state may not have have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_RESTORED event will be + * emitted. Note that, as this is just a request, the windowing system can + * deny the state change. + * + * \param window the window to restore. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MaximizeWindow + * \sa SDL_MinimizeWindow + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RestoreWindow(SDL_Window *window); + +/** + * Request that the window's fullscreen state be changed. + * + * By default a window in fullscreen state uses borderless fullscreen desktop + * mode, but a specific exclusive display mode can be set using + * SDL_SetWindowFullscreenMode(). + * + * On some windowing systems this request is asynchronous and the new + * fullscreen state may not have have been applied immediately upon the return + * of this function. If an immediate change is required, call SDL_SyncWindow() + * to block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_ENTER_FULLSCREEN or + * SDL_EVENT_WINDOW_LEAVE_FULLSCREEN event will be emitted. Note that, as this + * is just a request, it can be denied by the windowing system. + * + * \param window the window to change. + * \param fullscreen true for fullscreen mode, false for windowed mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFullscreenMode + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_SyncWindow + * \sa SDL_WINDOW_FULLSCREEN + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowFullscreen(SDL_Window *window, bool fullscreen); + +/** + * Block until any pending window state is finalized. + * + * On asynchronous windowing systems, this acts as a synchronization barrier + * for pending window state. It will attempt to wait until any pending window + * state has been applied and is guaranteed to return within finite time. Note + * that for how long it can potentially block depends on the underlying window + * system, as window state changes may involve somewhat lengthy animations + * that must complete before the window is in its final requested state. + * + * On windowing systems where changes are immediate, this does nothing. + * + * \param window the window for which to wait for the pending state to be + * applied. + * \returns true on success or false if the operation timed out before the + * window was in the requested state. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowSize + * \sa SDL_SetWindowPosition + * \sa SDL_SetWindowFullscreen + * \sa SDL_MinimizeWindow + * \sa SDL_MaximizeWindow + * \sa SDL_RestoreWindow + * \sa SDL_HINT_VIDEO_SYNC_WINDOW_OPERATIONS + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SyncWindow(SDL_Window *window); + +/** + * Return whether the window has a surface associated with it. + * + * \param window the window to query. + * \returns true if there is a surface associated with the window, or false + * otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WindowHasSurface(SDL_Window *window); + +/** + * Get the SDL surface associated with the window. + * + * A new surface will be created with the optimal format for the window, if + * necessary. This surface will be freed when the window is destroyed. Do not + * free this surface. + * + * This surface will be invalidated if the window is resized. After resizing a + * window this function must be called again to return a valid surface. + * + * You may not combine this with 3D or the rendering API on this window. + * + * This function is affected by `SDL_HINT_FRAMEBUFFER_ACCELERATION`. + * + * \param window the window to query. + * \returns the surface associated with the window, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyWindowSurface + * \sa SDL_WindowHasSurface + * \sa SDL_UpdateWindowSurface + * \sa SDL_UpdateWindowSurfaceRects + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_GetWindowSurface(SDL_Window *window); + +/** + * Toggle VSync for the window surface. + * + * When a window surface is created, vsync defaults to + * SDL_WINDOW_SURFACE_VSYNC_DISABLED. + * + * The `vsync` parameter can be 1 to synchronize present with every vertical + * refresh, 2 to synchronize present with every second vertical refresh, etc., + * SDL_WINDOW_SURFACE_VSYNC_ADAPTIVE for late swap tearing (adaptive vsync), + * or SDL_WINDOW_SURFACE_VSYNC_DISABLED to disable. Not every value is + * supported by every driver, so you should check the return value to see + * whether the requested setting is supported. + * + * \param window the window. + * \param vsync the vertical refresh sync interval. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurfaceVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowSurfaceVSync(SDL_Window *window, int vsync); + +#define SDL_WINDOW_SURFACE_VSYNC_DISABLED 0 +#define SDL_WINDOW_SURFACE_VSYNC_ADAPTIVE (-1) + +/** + * Get VSync for the window surface. + * + * \param window the window to query. + * \param vsync an int filled with the current vertical refresh sync interval. + * See SDL_SetWindowSurfaceVSync() for the meaning of the value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowSurfaceVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSurfaceVSync(SDL_Window *window, int *vsync); + +/** + * Copy the window surface to the screen. + * + * This is the function you use to reflect any changes to the surface on the + * screen. + * + * This function is equivalent to the SDL 1.2 API SDL_Flip(). + * + * \param window the window to update. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + * \sa SDL_UpdateWindowSurfaceRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateWindowSurface(SDL_Window *window); + +/** + * Copy areas of the window surface to the screen. + * + * This is the function you use to reflect changes to portions of the surface + * on the screen. + * + * This function is equivalent to the SDL 1.2 API SDL_UpdateRects(). + * + * Note that this function will update _at least_ the rectangles specified, + * but this is only intended as an optimization; in practice, this might + * update more of the screen (or all of the screen!), depending on what method + * SDL uses to send pixels to the system. + * + * \param window the window to update. + * \param rects an array of SDL_Rect structures representing areas of the + * surface to copy, in pixels. + * \param numrects the number of rectangles. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + * \sa SDL_UpdateWindowSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateWindowSurfaceRects(SDL_Window *window, const SDL_Rect *rects, int numrects); + +/** + * Destroy the surface associated with the window. + * + * \param window the window to update. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + * \sa SDL_WindowHasSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DestroyWindowSurface(SDL_Window *window); + +/** + * Set a window's keyboard grab mode. + * + * Keyboard grab enables capture of system keyboard shortcuts like Alt+Tab or + * the Meta/Super key. Note that not all system keyboard shortcuts can be + * captured by applications (one example is Ctrl+Alt+Del on Windows). + * + * This is primarily intended for specialized applications such as VNC clients + * or VM frontends. Normal games should not use keyboard grab. + * + * When keyboard grab is enabled, SDL will continue to handle Alt+Tab when the + * window is full-screen to ensure the user is not trapped in your + * application. If you have a custom keyboard shortcut to exit fullscreen + * mode, you may suppress this behavior with + * `SDL_HINT_ALLOW_ALT_TAB_WHILE_GRABBED`. + * + * If the caller enables a grab while another window is currently grabbed, the + * other window loses its grab in favor of the caller's window. + * + * \param window the window for which the keyboard grab mode should be set. + * \param grabbed this is true to grab keyboard, and false to release. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowKeyboardGrab + * \sa SDL_SetWindowMouseGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowKeyboardGrab(SDL_Window *window, bool grabbed); + +/** + * Set a window's mouse grab mode. + * + * Mouse grab confines the mouse cursor to the window. + * + * \param window the window for which the mouse grab mode should be set. + * \param grabbed this is true to grab mouse, and false to release. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMouseRect + * \sa SDL_SetWindowMouseRect + * \sa SDL_SetWindowMouseGrab + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMouseGrab(SDL_Window *window, bool grabbed); + +/** + * Get a window's keyboard grab mode. + * + * \param window the window to query. + * \returns true if keyboard is grabbed, and false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowKeyboardGrab(SDL_Window *window); + +/** + * Get a window's mouse grab mode. + * + * \param window the window to query. + * \returns true if mouse is grabbed, and false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMouseRect + * \sa SDL_SetWindowMouseRect + * \sa SDL_SetWindowMouseGrab + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowMouseGrab(SDL_Window *window); + +/** + * Get the window that currently has an input grab enabled. + * + * \returns the window if input is grabbed or NULL otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowMouseGrab + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetGrabbedWindow(void); + +/** + * Confines the cursor to the specified area of a window. + * + * Note that this does NOT grab the cursor, it only defines the area a cursor + * is restricted to when the window has mouse focus. + * + * \param window the window that will be associated with the barrier. + * \param rect a rectangle area in window-relative coordinates. If NULL the + * barrier for the specified window will be destroyed. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMouseRect + * \sa SDL_GetWindowMouseGrab + * \sa SDL_SetWindowMouseGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMouseRect(SDL_Window *window, const SDL_Rect *rect); + +/** + * Get the mouse confinement rectangle of a window. + * + * \param window the window to query. + * \returns a pointer to the mouse confinement rectangle of a window, or NULL + * if there isn't one. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowMouseRect + * \sa SDL_GetWindowMouseGrab + * \sa SDL_SetWindowMouseGrab + */ +extern SDL_DECLSPEC const SDL_Rect * SDLCALL SDL_GetWindowMouseRect(SDL_Window *window); + +/** + * Set the opacity for a window. + * + * The parameter `opacity` will be clamped internally between 0.0f + * (transparent) and 1.0f (opaque). + * + * This function also returns false if setting the opacity isn't supported. + * + * \param window the window which will be made transparent or opaque. + * \param opacity the opacity value (0.0f - transparent, 1.0f - opaque). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowOpacity + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowOpacity(SDL_Window *window, float opacity); + +/** + * Get the opacity of a window. + * + * If transparency isn't supported on this platform, opacity will be returned + * as 1.0f without error. + * + * \param window the window to get the current opacity value from. + * \returns the opacity, (0.0f - transparent, 1.0f - opaque), or -1.0f on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowOpacity + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetWindowOpacity(SDL_Window *window); + +/** + * Set the window as a child of a parent window. + * + * If the window is already the child of an existing window, it will be + * reparented to the new owner. Setting the parent window to NULL unparents + * the window and removes child window status. + * + * If a parent window is hidden or destroyed, the operation will be + * recursively applied to child windows. Child windows hidden with the parent + * that did not have their hidden status explicitly set will be restored when + * the parent is shown. + * + * Attempting to set the parent of a window that is currently in the modal + * state will fail. Use SDL_SetWindowModal() to cancel the modal status before + * attempting to change the parent. + * + * Popup windows cannot change parents and attempts to do so will fail. + * + * Setting a parent window that is currently the sibling or descendent of the + * child window results in undefined behavior. + * + * \param window the window that should become the child of a parent. + * \param parent the new parent window for the child window. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowModal + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowParent(SDL_Window *window, SDL_Window *parent); + +/** + * Toggle the state of the window as modal. + * + * To enable modal status on a window, the window must currently be the child + * window of a parent, or toggling modal status on will fail. + * + * \param window the window on which to set the modal state. + * \param modal true to toggle modal status on, false to toggle it off. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowParent + * \sa SDL_WINDOW_MODAL + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowModal(SDL_Window *window, bool modal); + +/** + * Set whether the window may have input focus. + * + * \param window the window to set focusable state. + * \param focusable true to allow input focus, false to not allow input focus. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowFocusable(SDL_Window *window, bool focusable); + + +/** + * Display the system-level window menu. + * + * This default window menu is provided by the system and on some platforms + * provides functionality for setting or changing privileged state on the + * window, such as moving it between workspaces or displays, or toggling the + * always-on-top property. + * + * On platforms or desktops where this is unsupported, this function does + * nothing. + * + * \param window the window for which the menu will be displayed. + * \param x the x coordinate of the menu, relative to the origin (top-left) of + * the client area. + * \param y the y coordinate of the menu, relative to the origin (top-left) of + * the client area. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowWindowSystemMenu(SDL_Window *window, int x, int y); + +/** + * Possible return values from the SDL_HitTest callback. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_HitTest + */ +typedef enum SDL_HitTestResult +{ + SDL_HITTEST_NORMAL, /**< Region is normal. No special properties. */ + SDL_HITTEST_DRAGGABLE, /**< Region can drag entire window. */ + SDL_HITTEST_RESIZE_TOPLEFT, /**< Region is the resizable top-left corner border. */ + SDL_HITTEST_RESIZE_TOP, /**< Region is the resizable top border. */ + SDL_HITTEST_RESIZE_TOPRIGHT, /**< Region is the resizable top-right corner border. */ + SDL_HITTEST_RESIZE_RIGHT, /**< Region is the resizable right border. */ + SDL_HITTEST_RESIZE_BOTTOMRIGHT, /**< Region is the resizable bottom-right corner border. */ + SDL_HITTEST_RESIZE_BOTTOM, /**< Region is the resizable bottom border. */ + SDL_HITTEST_RESIZE_BOTTOMLEFT, /**< Region is the resizable bottom-left corner border. */ + SDL_HITTEST_RESIZE_LEFT /**< Region is the resizable left border. */ +} SDL_HitTestResult; + +/** + * Callback used for hit-testing. + * + * \param win the SDL_Window where hit-testing was set on. + * \param area an SDL_Point which should be hit-tested. + * \param data what was passed as `callback_data` to SDL_SetWindowHitTest(). + * \returns an SDL_HitTestResult value. + * + * \sa SDL_SetWindowHitTest + */ +typedef SDL_HitTestResult (SDLCALL *SDL_HitTest)(SDL_Window *win, + const SDL_Point *area, + void *data); + +/** + * Provide a callback that decides if a window region has special properties. + * + * Normally windows are dragged and resized by decorations provided by the + * system window manager (a title bar, borders, etc), but for some apps, it + * makes sense to drag them from somewhere else inside the window itself; for + * example, one might have a borderless window that wants to be draggable from + * any part, or simulate its own title bar, etc. + * + * This function lets the app provide a callback that designates pieces of a + * given window as special. This callback is run during event processing if we + * need to tell the OS to treat a region of the window specially; the use of + * this callback is known as "hit testing." + * + * Mouse input may not be delivered to your application if it is within a + * special area; the OS will often apply that input to moving the window or + * resizing the window and not deliver it to the application. + * + * Specifying NULL for a callback disables hit-testing. Hit-testing is + * disabled by default. + * + * Platforms that don't support this functionality will return false + * unconditionally, even if you're attempting to disable hit-testing. + * + * Your callback may fire at any time, and its firing does not indicate any + * specific behavior (for example, on Windows, this certainly might fire when + * the OS is deciding whether to drag your window, but it fires for lots of + * other reasons, too, some unrelated to anything you probably care about _and + * when the mouse isn't actually at the location it is testing_). Since this + * can fire at any time, you should try to keep your callback efficient, + * devoid of allocations, etc. + * + * \param window the window to set hit-testing on. + * \param callback the function to call when doing a hit-test. + * \param callback_data an app-defined void pointer passed to **callback**. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowHitTest(SDL_Window *window, SDL_HitTest callback, void *callback_data); + +/** + * Set the shape of a transparent window. + * + * This sets the alpha channel of a transparent window and any fully + * transparent areas are also transparent to mouse clicks. If you are using + * something besides the SDL render API, then you are responsible for drawing + * the alpha channel of the window to match the shape alpha channel to get + * consistent cross-platform results. + * + * The shape is copied inside this function, so you can free it afterwards. If + * your shape surface changes, you should call SDL_SetWindowShape() again to + * update the window. This is an expensive operation, so should be done + * sparingly. + * + * The window must have been created with the SDL_WINDOW_TRANSPARENT flag. + * + * \param window the window. + * \param shape the surface representing the shape of the window, or NULL to + * remove any current shape. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowShape(SDL_Window *window, SDL_Surface *shape); + +/** + * Request a window to demand attention from the user. + * + * \param window the window to be flashed. + * \param operation the operation to perform. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlashWindow(SDL_Window *window, SDL_FlashOperation operation); + +/** + * Destroy a window. + * + * Any child windows owned by the window will be recursively destroyed as + * well. + * + * Note that on some platforms, the visible window may not actually be removed + * from the screen until the SDL event loop is pumped again, even though the + * SDL_Window is no longer valid after this call. + * + * \param window the window to destroy. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePopupWindow + * \sa SDL_CreateWindow + * \sa SDL_CreateWindowWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyWindow(SDL_Window *window); + + +/** + * Check whether the screensaver is currently enabled. + * + * The screensaver is disabled by default. + * + * The default can also be changed using `SDL_HINT_VIDEO_ALLOW_SCREENSAVER`. + * + * \returns true if the screensaver is enabled, false if it is disabled. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DisableScreenSaver + * \sa SDL_EnableScreenSaver + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ScreenSaverEnabled(void); + +/** + * Allow the screen to be blanked by a screen saver. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DisableScreenSaver + * \sa SDL_ScreenSaverEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnableScreenSaver(void); + +/** + * Prevent the screen from being blanked by a screen saver. + * + * If you disable the screensaver, it is automatically re-enabled when SDL + * quits. + * + * The screensaver is disabled by default, but this may by changed by + * SDL_HINT_VIDEO_ALLOW_SCREENSAVER. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EnableScreenSaver + * \sa SDL_ScreenSaverEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DisableScreenSaver(void); + + +/** + * \name OpenGL support functions + */ +/* @{ */ + +/** + * Dynamically load an OpenGL library. + * + * This should be done after initializing the video driver, but before + * creating any OpenGL windows. If no OpenGL library is loaded, the default + * library will be loaded upon creation of the first OpenGL window. + * + * If you do this, you need to retrieve all of the GL functions used in your + * program from the dynamic library using SDL_GL_GetProcAddress(). + * + * \param path the platform dependent OpenGL library name, or NULL to open the + * default OpenGL library. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetProcAddress + * \sa SDL_GL_UnloadLibrary + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_LoadLibrary(const char *path); + +/** + * Get an OpenGL function by name. + * + * If the GL library is loaded at runtime with SDL_GL_LoadLibrary(), then all + * GL functions must be retrieved this way. Usually this is used to retrieve + * function pointers to OpenGL extensions. + * + * There are some quirks to looking up OpenGL functions that require some + * extra care from the application. If you code carefully, you can handle + * these quirks without any platform-specific code, though: + * + * - On Windows, function pointers are specific to the current GL context; + * this means you need to have created a GL context and made it current + * before calling SDL_GL_GetProcAddress(). If you recreate your context or + * create a second context, you should assume that any existing function + * pointers aren't valid to use with it. This is (currently) a + * Windows-specific limitation, and in practice lots of drivers don't suffer + * this limitation, but it is still the way the wgl API is documented to + * work and you should expect crashes if you don't respect it. Store a copy + * of the function pointers that comes and goes with context lifespan. + * - On X11, function pointers returned by this function are valid for any + * context, and can even be looked up before a context is created at all. + * This means that, for at least some common OpenGL implementations, if you + * look up a function that doesn't exist, you'll get a non-NULL result that + * is _NOT_ safe to call. You must always make sure the function is actually + * available for a given GL context before calling it, by checking for the + * existence of the appropriate extension with SDL_GL_ExtensionSupported(), + * or verifying that the version of OpenGL you're using offers the function + * as core functionality. + * - Some OpenGL drivers, on all platforms, *will* return NULL if a function + * isn't supported, but you can't count on this behavior. Check for + * extensions you use, and if you get a NULL anyway, act as if that + * extension wasn't available. This is probably a bug in the driver, but you + * can code defensively for this scenario anyhow. + * - Just because you're on Linux/Unix, don't assume you'll be using X11. + * Next-gen display servers are waiting to replace it, and may or may not + * make the same promises about function pointers. + * - OpenGL function pointers must be declared `APIENTRY` as in the example + * code. This will ensure the proper calling convention is followed on + * platforms where this matters (Win32) thereby avoiding stack corruption. + * + * \param proc the name of an OpenGL function. + * \returns a pointer to the named OpenGL function. The returned pointer + * should be cast to the appropriate function signature. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_ExtensionSupported + * \sa SDL_GL_LoadLibrary + * \sa SDL_GL_UnloadLibrary + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_GL_GetProcAddress(const char *proc); + +/** + * Get an EGL library function by name. + * + * If an EGL library is loaded, this function allows applications to get entry + * points for EGL functions. This is useful to provide to an EGL API and + * extension loader. + * + * \param proc the name of an EGL function. + * \returns a pointer to the named EGL function. The returned pointer should + * be cast to the appropriate function signature. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EGL_GetCurrentDisplay + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_EGL_GetProcAddress(const char *proc); + +/** + * Unload the OpenGL library previously loaded by SDL_GL_LoadLibrary(). + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_LoadLibrary + */ +extern SDL_DECLSPEC void SDLCALL SDL_GL_UnloadLibrary(void); + +/** + * Check if an OpenGL extension is supported for the current context. + * + * This function operates on the current GL context; you must have created a + * context and it must be current before calling this function. Do not assume + * that all contexts you create will have the same set of extensions + * available, or that recreating an existing context will offer the same + * extensions again. + * + * While it's probably not a massive overhead, this function is not an O(1) + * operation. Check the extensions you care about after creating the GL + * context and save that information somewhere instead of calling the function + * every time you need to know. + * + * \param extension the name of the extension to check. + * \returns true if the extension is supported, false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_ExtensionSupported(const char *extension); + +/** + * Reset all previously set OpenGL context attributes to their default values. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetAttribute + * \sa SDL_GL_SetAttribute + */ +extern SDL_DECLSPEC void SDLCALL SDL_GL_ResetAttributes(void); + +/** + * Set an OpenGL window attribute before window creation. + * + * This function sets the OpenGL attribute `attr` to `value`. The requested + * attributes should be set before creating an OpenGL window. You should use + * SDL_GL_GetAttribute() to check the values after creating the OpenGL + * context, since the values obtained can differ from the requested ones. + * + * \param attr an SDL_GLAttr enum value specifying the OpenGL attribute to + * set. + * \param value the desired value for the attribute. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetAttribute + * \sa SDL_GL_ResetAttributes + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_SetAttribute(SDL_GLAttr attr, int value); + +/** + * Get the actual value for an attribute from the current context. + * + * \param attr an SDL_GLAttr enum value specifying the OpenGL attribute to + * get. + * \param value a pointer filled in with the current value of `attr`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_ResetAttributes + * \sa SDL_GL_SetAttribute + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_GetAttribute(SDL_GLAttr attr, int *value); + +/** + * Create an OpenGL context for an OpenGL window, and make it current. + * + * Windows users new to OpenGL should note that, for historical reasons, GL + * functions added after OpenGL version 1.1 are not available by default. + * Those functions must be loaded at run-time, either with an OpenGL + * extension-handling library or with SDL_GL_GetProcAddress() and its related + * functions. + * + * SDL_GLContext is opaque to the application. + * + * \param window the window to associate with the context. + * \returns the OpenGL context associated with `window` or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_DestroyContext + * \sa SDL_GL_MakeCurrent + */ +extern SDL_DECLSPEC SDL_GLContext SDLCALL SDL_GL_CreateContext(SDL_Window *window); + +/** + * Set up an OpenGL context for rendering into an OpenGL window. + * + * The context must have been created with a compatible window. + * + * \param window the window to associate with the context. + * \param context the OpenGL context to associate with the window. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_CreateContext + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_MakeCurrent(SDL_Window *window, SDL_GLContext context); + +/** + * Get the currently active OpenGL window. + * + * \returns the currently active OpenGL window on success or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GL_GetCurrentWindow(void); + +/** + * Get the currently active OpenGL context. + * + * \returns the currently active OpenGL context or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_MakeCurrent + */ +extern SDL_DECLSPEC SDL_GLContext SDLCALL SDL_GL_GetCurrentContext(void); + +/** + * Get the currently active EGL display. + * + * \returns the currently active EGL display or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_EGLDisplay SDLCALL SDL_EGL_GetCurrentDisplay(void); + +/** + * Get the currently active EGL config. + * + * \returns the currently active EGL config or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_EGLConfig SDLCALL SDL_EGL_GetCurrentConfig(void); + +/** + * Get the EGL surface associated with the window. + * + * \param window the window to query. + * \returns the EGLSurface pointer associated with the window, or NULL on + * failure. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_EGLSurface SDLCALL SDL_EGL_GetWindowSurface(SDL_Window *window); + +/** + * Sets the callbacks for defining custom EGLAttrib arrays for EGL + * initialization. + * + * Callbacks that aren't needed can be set to NULL. + * + * NOTE: These callback pointers will be reset after SDL_GL_ResetAttributes. + * + * \param platformAttribCallback callback for attributes to pass to + * eglGetPlatformDisplay. May be NULL. + * \param surfaceAttribCallback callback for attributes to pass to + * eglCreateSurface. May be NULL. + * \param contextAttribCallback callback for attributes to pass to + * eglCreateContext. May be NULL. + * \param userdata a pointer that is passed to the callbacks. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EGL_SetAttributeCallbacks(SDL_EGLAttribArrayCallback platformAttribCallback, + SDL_EGLIntArrayCallback surfaceAttribCallback, + SDL_EGLIntArrayCallback contextAttribCallback, void *userdata); + +/** + * Set the swap interval for the current OpenGL context. + * + * Some systems allow specifying -1 for the interval, to enable adaptive + * vsync. Adaptive vsync works the same as vsync, but if you've already missed + * the vertical retrace for a given frame, it swaps buffers immediately, which + * might be less jarring for the user during occasional framerate drops. If an + * application requests adaptive vsync and the system does not support it, + * this function will fail and return false. In such a case, you should + * probably retry the call with 1 for the interval. + * + * Adaptive vsync is implemented for some glX drivers with + * GLX_EXT_swap_control_tear, and for some Windows drivers with + * WGL_EXT_swap_control_tear. + * + * Read more on the Khronos wiki: + * https://www.khronos.org/opengl/wiki/Swap_Interval#Adaptive_Vsync + * + * \param interval 0 for immediate updates, 1 for updates synchronized with + * the vertical retrace, -1 for adaptive vsync. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetSwapInterval + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_SetSwapInterval(int interval); + +/** + * Get the swap interval for the current OpenGL context. + * + * If the system can't determine the swap interval, or there isn't a valid + * current context, this function will set *interval to 0 as a safe default. + * + * \param interval output interval value. 0 if there is no vertical retrace + * synchronization, 1 if the buffer swap is synchronized with + * the vertical retrace, and -1 if late swaps happen + * immediately instead of waiting for the next retrace. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_SetSwapInterval + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_GetSwapInterval(int *interval); + +/** + * Update a window with OpenGL rendering. + * + * This is used with double-buffered OpenGL contexts, which are the default. + * + * On macOS, make sure you bind 0 to the draw framebuffer before swapping the + * window, otherwise nothing will happen. If you aren't using + * glBindFramebuffer(), this is the default and you won't have to do anything + * extra. + * + * \param window the window to change. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_SwapWindow(SDL_Window *window); + +/** + * Delete an OpenGL context. + * + * \param context the OpenGL context to be deleted. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_CreateContext + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_DestroyContext(SDL_GLContext context); + +/* @} *//* OpenGL support functions */ + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_video_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_vulkan.h b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_vulkan.h new file mode 100644 index 0000000..e91e148 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Headers/SDL_vulkan.h @@ -0,0 +1,287 @@ +/* + Simple DirectMedia Layer + Copyright (C) 2017, Mark Callow + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryVulkan + * + * Functions for creating Vulkan surfaces on SDL windows. + * + * For the most part, Vulkan operates independent of SDL, but it benefits from + * a little support during setup. + * + * Use SDL_Vulkan_GetInstanceExtensions() to get platform-specific bits for + * creating a VkInstance, then SDL_Vulkan_GetVkGetInstanceProcAddr() to get + * the appropriate function for querying Vulkan entry points. Then + * SDL_Vulkan_CreateSurface() will get you the final pieces you need to + * prepare for rendering into an SDL_Window with Vulkan. + * + * Unlike OpenGL, most of the details of "context" creation and window buffer + * swapping are handled by the Vulkan API directly, so SDL doesn't provide + * Vulkan equivalents of SDL_GL_SwapWindow(), etc; they aren't necessary. + */ + +#ifndef SDL_vulkan_h_ +#define SDL_vulkan_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Avoid including vulkan_core.h, don't define VkInstance if it's already included */ +#ifdef VULKAN_CORE_H_ +#define NO_SDL_VULKAN_TYPEDEFS +#endif +#ifndef NO_SDL_VULKAN_TYPEDEFS +#define VK_DEFINE_HANDLE(object) typedef struct object##_T* object; + +#if defined(__LP64__) || defined(_WIN64) || (defined(__x86_64__) && !defined(__ILP32__)) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__) || (defined(__riscv) && __riscv_xlen == 64) +#define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef struct object##_T *object; +#else +#define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef uint64_t object; +#endif + +VK_DEFINE_HANDLE(VkInstance) +VK_DEFINE_HANDLE(VkPhysicalDevice) +VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkSurfaceKHR) +struct VkAllocationCallbacks; + +/* Make sure to undef to avoid issues in case of later vulkan include */ +#undef VK_DEFINE_HANDLE +#undef VK_DEFINE_NON_DISPATCHABLE_HANDLE + +#endif /* !NO_SDL_VULKAN_TYPEDEFS */ + +/** + * \name Vulkan support functions + */ +/* @{ */ + +/** + * Dynamically load the Vulkan loader library. + * + * This should be called after initializing the video driver, but before + * creating any Vulkan windows. If no Vulkan loader library is loaded, the + * default library will be loaded upon creation of the first Vulkan window. + * + * SDL keeps a counter of how many times this function has been successfully + * called, so it is safe to call this function multiple times, so long as it + * is eventually paired with an equivalent number of calls to + * SDL_Vulkan_UnloadLibrary. The `path` argument is ignored unless there is no + * library currently loaded, and and the library isn't actually unloaded until + * there have been an equivalent number of calls to SDL_Vulkan_UnloadLibrary. + * + * It is fairly common for Vulkan applications to link with libvulkan instead + * of explicitly loading it at run time. This will work with SDL provided the + * application links to a dynamic library and both it and SDL use the same + * search path. + * + * If you specify a non-NULL `path`, an application should retrieve all of the + * Vulkan functions it uses from the dynamic library using + * SDL_Vulkan_GetVkGetInstanceProcAddr unless you can guarantee `path` points + * to the same vulkan loader library the application linked to. + * + * On Apple devices, if `path` is NULL, SDL will attempt to find the + * `vkGetInstanceProcAddr` address within all the Mach-O images of the current + * process. This is because it is fairly common for Vulkan applications to + * link with libvulkan (and historically MoltenVK was provided as a static + * library). If it is not found, on macOS, SDL will attempt to load + * `vulkan.framework/vulkan`, `libvulkan.1.dylib`, + * `MoltenVK.framework/MoltenVK`, and `libMoltenVK.dylib`, in that order. On + * iOS, SDL will attempt to load `libMoltenVK.dylib`. Applications using a + * dynamic framework or .dylib must ensure it is included in its application + * bundle. + * + * On non-Apple devices, application linking with a static libvulkan is not + * supported. Either do not link to the Vulkan loader or link to a dynamic + * library version. + * + * \param path the platform dependent Vulkan loader library name or NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetVkGetInstanceProcAddr + * \sa SDL_Vulkan_UnloadLibrary + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Vulkan_LoadLibrary(const char *path); + +/** + * Get the address of the `vkGetInstanceProcAddr` function. + * + * This should be called after either calling SDL_Vulkan_LoadLibrary() or + * creating an SDL_Window with the `SDL_WINDOW_VULKAN` flag. + * + * The actual type of the returned function pointer is + * PFN_vkGetInstanceProcAddr, but that isn't available because the Vulkan + * headers are not included here. You should cast the return value of this + * function to that type, e.g. + * + * `vkGetInstanceProcAddr = + * (PFN_vkGetInstanceProcAddr)SDL_Vulkan_GetVkGetInstanceProcAddr();` + * + * \returns the function pointer for `vkGetInstanceProcAddr` or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_Vulkan_GetVkGetInstanceProcAddr(void); + +/** + * Unload the Vulkan library previously loaded by SDL_Vulkan_LoadLibrary(). + * + * SDL keeps a counter of how many times this function has been called, so it + * is safe to call this function multiple times, so long as it is paired with + * an equivalent number of calls to SDL_Vulkan_LoadLibrary. The library isn't + * actually unloaded until there have been an equivalent number of calls to + * SDL_Vulkan_UnloadLibrary. + * + * Once the library has actually been unloaded, if any Vulkan instances + * remain, they will likely crash the program. Clean up any existing Vulkan + * resources, and destroy appropriate windows, renderers and GPU devices + * before calling this function. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_LoadLibrary + */ +extern SDL_DECLSPEC void SDLCALL SDL_Vulkan_UnloadLibrary(void); + +/** + * Get the Vulkan instance extensions needed for vkCreateInstance. + * + * This should be called after either calling SDL_Vulkan_LoadLibrary() or + * creating an SDL_Window with the `SDL_WINDOW_VULKAN` flag. + * + * On return, the variable pointed to by `count` will be set to the number of + * elements returned, suitable for using with + * VkInstanceCreateInfo::enabledExtensionCount, and the returned array can be + * used with VkInstanceCreateInfo::ppEnabledExtensionNames, for calling + * Vulkan's vkCreateInstance API. + * + * You should not free the returned array; it is owned by SDL. + * + * \param count a pointer filled in with the number of extensions returned. + * \returns an array of extension name strings on success, NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_CreateSurface + */ +extern SDL_DECLSPEC char const * const * SDLCALL SDL_Vulkan_GetInstanceExtensions(Uint32 *count); + +/** + * Create a Vulkan rendering surface for a window. + * + * The `window` must have been created with the `SDL_WINDOW_VULKAN` flag and + * `instance` must have been created with extensions returned by + * SDL_Vulkan_GetInstanceExtensions() enabled. + * + * If `allocator` is NULL, Vulkan will use the system default allocator. This + * argument is passed directly to Vulkan and isn't used by SDL itself. + * + * \param window the window to which to attach the Vulkan surface. + * \param instance the Vulkan instance handle. + * \param allocator a VkAllocationCallbacks struct, which lets the app set the + * allocator that creates the surface. Can be NULL. + * \param surface a pointer to a VkSurfaceKHR handle to output the newly + * created surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetInstanceExtensions + * \sa SDL_Vulkan_DestroySurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Vulkan_CreateSurface(SDL_Window *window, + VkInstance instance, + const struct VkAllocationCallbacks *allocator, + VkSurfaceKHR *surface); + +/** + * Destroy the Vulkan rendering surface of a window. + * + * This should be called before SDL_DestroyWindow, if SDL_Vulkan_CreateSurface + * was called after SDL_CreateWindow. + * + * The `instance` must have been created with extensions returned by + * SDL_Vulkan_GetInstanceExtensions() enabled and `surface` must have been + * created successfully by an SDL_Vulkan_CreateSurface() call. + * + * If `allocator` is NULL, Vulkan will use the system default allocator. This + * argument is passed directly to Vulkan and isn't used by SDL itself. + * + * \param instance the Vulkan instance handle. + * \param surface vkSurfaceKHR handle to destroy. + * \param allocator a VkAllocationCallbacks struct, which lets the app set the + * allocator that destroys the surface. Can be NULL. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetInstanceExtensions + * \sa SDL_Vulkan_CreateSurface + */ +extern SDL_DECLSPEC void SDLCALL SDL_Vulkan_DestroySurface(VkInstance instance, + VkSurfaceKHR surface, + const struct VkAllocationCallbacks *allocator); + +/** + * Query support for presentation via a given physical device and queue + * family. + * + * The `instance` must have been created with extensions returned by + * SDL_Vulkan_GetInstanceExtensions() enabled. + * + * \param instance the Vulkan instance handle. + * \param physicalDevice a valid Vulkan physical device handle. + * \param queueFamilyIndex a valid queue family index for the given physical + * device. + * \returns true if supported, false if unsupported or an error occurred. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetInstanceExtensions + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Vulkan_GetPresentationSupport(VkInstance instance, + VkPhysicalDevice physicalDevice, + Uint32 queueFamilyIndex); + +/* @} *//* Vulkan support functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_vulkan_h_ */ diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/INSTALL.md b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/INSTALL.md new file mode 100644 index 0000000..97e4ab6 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/INSTALL.md @@ -0,0 +1,41 @@ + +# Using this package + +This package contains SDL built for Xcode. + +To use this package in Xcode, drag `SDL3.framework` into your project. + +# Documentation + +An API reference, tutorials, and additional documentation is available at: + +https://wiki.libsdl.org/SDL3 + +# Example code + +There are simple example programs available at: + +https://examples.libsdl.org/SDL3 + +# Discussions + +## Discord + +You can join the official Discord server at: + +https://discord.com/invite/BwpFGBWsv8 + +## Forums/mailing lists + +You can join SDL development discussions at: + +https://discourse.libsdl.org/ + +Once you sign up, you can use the forum through the website or as a mailing list from your email client. + +## Announcement list + +You can sign up for the low traffic announcement list at: + +https://www.libsdl.org/mailing-list.php + diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Info.plist b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Info.plist new file mode 100644 index 0000000000000000000000000000000000000000..e8f43d228a3ab3f7d053f74614ad21736201a10e GIT binary patch literal 835 zcmZ8ezi-n(81)@c3I*acw4|jap_Jd?+6ieS)TwbpLz_0jZqlNt*2TUgr=EYvu^YmG z#Kgvk)CH+x?8*Qe3qq*>0AfLmEd3ier#1mR`1`*1z4z|)uHjJ9@kH?lKMvrDlc$DG z51%3Sa@CO zPZ~c_C@%VzL9vW?F|{2NTiz4gBDSURqtR~Z8Po0Q2 zU>2lFu&eRY5jkMWME964a(h+mc34-Bwrj{_&WUKOAbkh5u-bDNIvJr#+jhNB866t` zvm`AGdA|FPz;_%b!A6B5uW7qxN8@9WAT)X^s|DM12n}uv1o9jv_-rgv&)QOIZ$RxB^&19G7GxN12tHqwU z&D>VAEbq4GIS=RNy4|ioNuy&>!FE~RG4_vufT_$2qQ)l`VmcJ3W#VGpD`SJ8^eXCM zS1p!nE7h!!5i(-nytzNaJV>Q&TbOBl7Lm;&n9*%hKn}AISl7>`BT%|)3OYqrOOP~i zBO?{_`9SOh;!Y%1rM!@1ulOGvpsJL6AXcSZF)JCWBnjgFJsxnwT%Id)gnPlg;SRV% z?i+UmMnDQIfHklMcEEG+8tj30-~fC8hu}N-34VbiI0Tb$3g+PgEWl;>7}nuS_zLd9 ax9~mu2tUEk@C(=fAULkv{ji1we*F!;lmzbp literal 0 HcmV?d00001 diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/LICENSE.txt b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/LICENSE.txt new file mode 100644 index 0000000..23abb73 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/LICENSE.txt @@ -0,0 +1,18 @@ +Copyright (C) 1997-2025 Sam Lantinga + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/README.md b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/README.md new file mode 100644 index 0000000..68b0923 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/README.md @@ -0,0 +1,17 @@ + +Simple DirectMedia Layer (SDL for short) is a cross-platform library +designed to make it easy to write multi-media software, such as games +and emulators. + +You can find the latest release and additional information at: +https://www.libsdl.org/ + +Installation instructions and a quick introduction is available in +[INSTALL.md](INSTALL.md) + +This library is distributed under the terms of the zlib license, +available in [LICENSE.txt](LICENSE.txt). + +Enjoy! + +Sam Lantinga (slouken@libsdl.org) diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/SDL3 b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/SDL3 new file mode 100644 index 0000000000000000000000000000000000000000..f9b6061f61c7dbc40f42918aa4d80cacf565011b GIT binary patch literal 3665536 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

p6u=;q705IXHB#m_jg?-XHve)@Q-0GxiJ8UJ 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�IoE~7Zgf{PKKPPIi#YS*(DGS)2j&3=x_ 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�MYZ!&W%eyD%EYopqz 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%0Dk^MhhLl)s#z2RXrJK`EDc-dUrgOG{L0 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°^hmeom=IhF8VVY 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
7ILqtiz4yUWM_tAhXB{1Sg!>Qfm#JE9MISH@C| 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

nnqz>iCM1TG?^rl+ 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 z z!*T1`VvjUZHSV8P8_NcrA>R%6$+!H`?)OEd&(J}i+bHNZ*d0V9NC(?Z0wu(Xo_-L% zvM#7mDG>JBJ)B1|Al|ygSKQe96cft_FxCbo>sy2m)m>8OA?77wSZ7efRngN3&!mt* z4xSHuxC(t9R^_)G^98GD01%`vAt#9^SPGcn6rg&^UV4cXpkfBA0*+`k{pR!nOeUuQ zm*sZ#>tKEi0x)ts-=tbg;K(?&U6VzBI(w#R>+^FZbxSKI?Z4_jo|km&$Hj}K7>HRb zr415!r2x`I-g=MVaY0vw2jd`@J_!MbfQY!Lj?_T}O~$CQMWq_-k@WH_mv~pR%UxyQ zJ_=)Iz4IAdNYG-##Ig%dD8Yp{;hdto?IJnOP&`M5YiB5Rc%L-tk6iJ+ceLkgCv3aX z?H!{HL!wN!x=@TQ2BCV;wSQ2rTncr_KFF)Mk>XsJy^nVZ`;aH6z?2!xQvKe(W@qGj zIgN9jB=`e?R4g=pVEfSc57~{}ZhP3M5OHUIY+pB6j5^qA6aJIwfLMo^zhxeG$i7My z@h#WIF?!qE`g6k?J;D|HmLI@}IXxEUB_?@Mpt zP(|x&k?rE=fqU4b9>=bb!Dm*ZoMf{n{IHmZg4QFq zWD`;b8#!y+tRDlC;n{u)n8YXeuf#)-2ssgHN(tE|vJK|2dJG{H5vjbR zs`bMcshH;YN`^y34}&nN#nZWUK`)(Ji4kBpjxx1>WK8dpR)o#?3EHhHV(t#mBI=Wg z0amERU+5jyC+uP7G(ys))7MnTm9#HcqCS$ONdaI`l_ID%q?ZN~oe=TK=Ef zt3rPe)jnFZ)=7Du&c92CzV3wPIQdidf|Y~WXtN&!1x8rxe#cdnxGG0M4*TsYWjIyI zQ9x{s8|)F7l2_f`CDA)FXiXq9AtbZMk&hMi%jCW2@}Cp&b3l2rF0w=wsil+hZSe3+ zoEH}!Z0TqKKPnf?oe=?8Hm?0S44BuaWPtaz$`bBSY>>E~cxmd*IaRDL@P$*;82Lm3 zB0Kx9$tqE3?0^E`PLJGWujgHyB=GvQ?`Lsq5MR)8zIZ(S_R98N)c2~W;L)O*&orgK zyi3vl&pNbiwGM3}ROPSUTOfAJa{pZfTZrI3nL>8L@k6IpM#F%7gaM-$ZLIKt2nEUu zRfhQ#RNo-51-Q57XLN z>#zEH#SNk2hN&I7T+v&7WOQY``bh7}FX4=ME6K>|3iC^U^_LhMejW4%4G__xKbS)2>Zy9^sA>N5=zS;2)!=4&N+;laX9_J@y9Gt%Qmdo^yf z*&LN21DC5`*;hSyAfc1@q^CIc_JhrS`vu7@w=*ia8|W0=z9|4g#cS^Vlq0ywv+o@6 zFvZOyS6+hI`}b3fHEW*zCvcIM_QS=h&fc0@)t+mN=&Z$zWgp!tmXOq77WX^+EF-Ecb%mp|-U>%=T#Q8_ z-XZtL&uW(MTBCT5Y?8POiIv@g{rO}GnZ4VrD_k2tqd9%y!BDRs4EKKR51_Kn8XkSC z`skcHPJ?SIKb?1~GO~^DWO1zqOz{SIG|}4Sx}zs9#4@I?GPl-$)2g&;eO>9ii>p4p zqH0~$ykTzTs5ZVxug8%-LHbKbpE>nGN#CCIyGifl{qhRFt4ilhb0-00tbl1;>dY0n zvb^`mdf^JE@C3)C?h6qh*-s(sJ_i(Fn?W59J0l4@b48ZG&IZ65lr|i-o{1;RrQu%R zFdo};SoDYS=neZspEyX{?Omv8eD=?mDh`O{8c~puJj>pMllN1 zhlK;y$N$prSCKPG-I8A^kT426*sr(PpwK@bt}D%6Q#$V=oI(}Su<~r?7m?p;{KGc6 zubezFzZYYZq=S=ak^g$>@w2ugr*a-RobW4dfEVX&0I`E*x$X!~E)sE;U}tT&*RyJ+ zg%?N9iC+`kLrZvTRvuK;`M&>lEKt}9IoXW@~U8T*XnA9?|U5u349wt_r?!Yag zbxQvxe_u2eX7l!j156gTAFdVSM{vL z8RD8);sy~{l%s}&9h~Xu!(Gv@?F+gOI&1;z)t9L8k#UHN9F!C4RC`039OO!OX$q{d zF<;@)fz2rVC(0&E^;?)*rJV;#*Ju8OK8(n}F(8kkKA66X=JMz?HJ%R9q049L&?-Xz zcjM`74`7qysar#9+NtEVgvKreVoUx|@GZ~VtuPXVzcMhC>{a#^gNx^11XZj~@dG}C z+f6+k)c;I9e2JHSFu`=PW>d? zTl?Eq{#iya*hjFJKbms75-qwt2vhAu4xruG+16q7CseL%h9mk{lhVI_1RfIx1|@Ej z`8+wkgrb4&GV(T=^;P}6y(3-LWO?Zch8wNOs6OJp<72f8Hmk`VR+I#WrXXE^{99|X zTC*`$-n1q_NjPYKhh>m(^nytrh*J&CFPz-DRfNb9$qhrJ;Bg(tnmjd?`_eA2kvSsa zEMGA3`^N4^0H2LWq9)L)6W{J58d2R|v*%v)Gnc{_a&)z?ec>g5i~7F8doq(->iqd_ zoY7ewKV2qz3A^kfjjLTw9(?RG166uNx|f({ezqro9QUHNwI2d{b>ECgmMlrwwYscT zf_l{Vhh$k5u{$U%O`g~ns{Au_t|2Ecm5jpo_^<{s_Y(uCs zMkaaDqJI)5YTpJYco5`X>B6$h{-{8Wn3XDxynOP@;V z$%C#Hs~a+9VTHrrZ5uL0onj@3E?SmtObjk^t$V!0$W%_VbNK$F^SzMxE_}~(zERrC z^0|e@IXo*vR%vQ~f7nn)alb4o>AMUI6Slv%=7myt0cNft3VKJU)9}0OQ=u^&73poS zyij=hoQS{NEiJ}SZMP;Te)P#FNw{AzVRt78wkVUlU2amdt;*JF23^_vriQG{-mdsB zCGMvS>4cL3Nhkc9^s=aL%WxTabdyv}hA675vGSmrLt)kYqxeJIRPGnC|69(>>4Uzv zYkVt57~*cWDnAR*%iBof^WRX~sF-egSM()Y0dt}1hBvDdm)!A<;eGnZ)YJGqI<*78 z$EJO_R5e^1+QOsU3;WGhGX4!-DeYosI|W@~EOY0$TrvkT)Exym6nWDE?}`EzI?j;- z)-0_)_A6DucMA0P(>~Rp@l9`LYBzriq!u8Jl18OO4`G4gDmVrWYOmR#kIZ@aMwf!r z=OeOrQ=-e7wHIY*xBc)1!iSXuWf8#g40$~hx>}LFcCG^9`~5H>ZNNN;gv*%ZoI=b| zMML<-B~nh&O_HcC_UX+s9oub8tW*3nzWj6LzN#H?4=qo^eS?-;;*S42#V;%hcxxU6 zqvnpw-H4)Rvc7iASia=pt>@Y8F6<=Nc^&#n`FCz&L;4DCK|h1}9TTP9j5_>}EUH;s zInM4%0V2u9g(hwgJVL#&-k4p=dg_$APj2!a^PJg1_G7nZ?)Totb4uNrxN9rp5`bx4 zETfA#=q#(Wr|JgrKGbmiWvYh%yjs=JMGftLK{4UlKigma8akq?`W{r#_9qkJJ$3zE z8skZ|q>Wl>kIS-()k>fKwr^)6_@wsD(Eznp;0~=`TFyy83k)bB_{`;eBXT{o1U#N7`+B z+U0$)K6|70wY6@JUZjm5=Dw)0zxv4jJLJNL7|zeth;~X^nMMM4^YfpinP~4=JId}e zUoJPS-kmA(`|=Q&bLW=ZD;dfW*!G_Gp`4hJ( zVy{xf-devtV`)F)<{s+_#qa1?zb>n=ZthVbd395XP&>u%!VfLzedkbz-hcgVsvw+= z2)%zr?V$IaZU3*++k5}}LRd}nc|!2$lr}>1vhSkz;R!Iof>}r$mQAedS{uJgZ#eu? z`klLRV&fDNxQ|Rcs2XQYhIi$`iN{p)9IOAPYki^<*H%uf7r#)(#P1}#cp|U=ric5e zdtJc2>d;pARt5Rx%Q9SsdyO&o*o32PUEcd22PGpq|BoI#{Vso~d+0&=XPAw~p-;sZ z-o}{W-l)8qN3-4|smth9&#FpC!y`G;8{cRn1p7Z|{EkDM#_xDjs!f*t79@>c-<^P( zx!<)!6urLAC0?$pEDvG0pRcIIM?^wBrrsm01>^C=}K3SJX`-_;k91AL|&)n*x zbOZA+y*2Xdi4DTJ9>uuz^=mWc9??>wzP>Tbr-ejacBA*TI`^6&7J7JynSGYO_`5l$ zi3=fYzoyEL>n;boHStk=S^A64^6?GK{mQZI%c(xnZ>rqbw%K8EA#5;4yybFH!k=9eY5>=|B0QUgk^hJNk(Y*Soh>1Y-LE+gz^tv_#1ifWD zqJKzo?KWflCS&3z;k%HzDO7(Hw*Be~?xGA#+$4vcsNPugLwp zT;z6#&sdf@tG)*chzqYChBw@3EdBYO%Xf&y5RN?!?_hMgc97`du(Y~;+jvoxSpmru z5~fDp^?Klq)l*$H{xF;_r)j77+HQMV52S|ss9~ys)Tlq&%5bj&%c{%Y|M=x6-G-a_ z+QG^U(OS5gL#)3{W+Q3ig;D=yKErXFea5nXHgp}j|N1X76uM>g#FNLx=C`__YWT?dv%G*61*~AN_X&^heGvxvSjUy3*J-x zXOMOGdD-@PLLtO@J6xOQlo#)b*zru!CdIF>GZ9F`SD#Od7Jc^s`qyu!s|gmr6sL@n)r0vuTqQ>UxBNjDN9t-#FdjI`a}{%JJj(IcTCOrvsH7dn?oCtI%pm$t=hAzw5nlcX;tEk zsh>q>H}TST>W)(HYX_sVH*=xc)b-WJuCH8MeXJz%J9WWm)!nBiN+L@|E+)@@u|IJg z8nannSXXuT>4_2w9w_CrgqTbd^$cl78x&K2LjPehrd3{SR3BsUHAW3&g%Y7%dT>ov z1XcM+*lY~prx#beA*STs+FG*5-V_0^vb@$Zi$3&!l5BaTi;35PP}GkpHK)afWCbTS zU3I}z?*`Ets}^;puXPHxSrweP>Y<|h&h!^H`RnUCltpu^=B~P7((o_Sk*M(jh(%R3 z-D;-q04vuVV2w7j{1bO*z?%eceY{hk&E~+w%^L0|fBhA9k~U{~ecNWL6p>6OkYAVn^Iqc}_U$ zr~B3W>p#hsz+-_njk4CiK(^>S0Cx`INv&PdlJW|GM775&%N5KDIGIAHOa2uokeGB{F&`?>+bCAm9V61 z1$pt0)KyQ8`>>*7pLQBo1DOK~WMXorngh$7fp(o&?ZoDWtl0(jL!^YW1A8I^co)|XkX!GQPKIpXX zuCNc8^|qRmszqyUZ;-yfikSx!wwI}*%*D`BYhLBO++1H?i(|KC>isPaC!yGwv#=Bt zuf@SeO_+H?n0J1m2;;381+lPIu|{mE`rge|JLXWf0VZI(!lk#egE6+0r9Ch-hH}9M z<_y;8oV`9Id**2zF*C=g|RF(esjSk-!QY2a9C(=3o488(#@WEL0Mj&NK@ zb=kL0WF(i3ja5788M^)|Wy1d8Y?e|)B}^j#!?#|a`ET045FV|!+o3d& zSM68?n)|0(|5bf76yh>Ju1rF`de3hjke+JIDX=psJ=HJ}hz2Q;ps25GK(mUPGzN*i za-C|BTbM)B|4t!^YJdv;-S%Wz=8`3ik?uLmVWgK}1vmy?;x0DPonRxyGl6+y^Tp#G zL2{pUwQ3)iw{|W8MpU;X{kHCe!-nc=my*-A&Q#T|?4k6X29DkL zW#2fm4OCeko7GN<6j)@Jy^)l%E~Z^zi3aDirfC0^4wW3kpLf!yIC#|f3 zea!*wIbCiJU}Jw^PlL-qcycgvKo@V$z*6$(^F5UB0wpA$Iz_rsnd%AT7(^E^;5B(V zU7>7bxwWE>BE%vz_)bw4AGop_$2a4uO@0e!dvqwS;W~+wCFyLEZN-2sZV(Qg>YoXnkvDEtL|s?Oyq#) zjDX-7o#D0*oTj_k#n`K0I+YKUv-Ai_b=lS^Tw8ALE;qlkcOGU=`HEPBwG;E4(OtCv zClhyEjPcmk+siPCh+l#rtYX>%CMIPnVK+s8pY1=1e0+F>Y;k;kqHqA;^uJ`YsX2~4 zn<%!nZ_)BXxZeJaQ;|`kh|KROiUu*3QB1NWpeIgP$NZ2f-iPyfEz_@D z&g1E+UNghyv;uBM#ZQ02{sKVK-nRhVVY#&Z7qt{!z{2lSe@$A#*wlZ!jiLM#8}}xb zKrU}hTf~LkzL2$~I##<6XD_2sUCeozb}3!UTV8K^-jF=oI?(M+&r;sO)LV0(RP5@u zD)5D5;Cup?xT}4CApjvSickt_tS`yO1lJwEMV+gBoG*Y)BpHOOo+EjS6 znCbYgYb62L9%+x`XRfDrLY~fI);E8{-bBI^07SympWpap>@W8ch;*?W+bbwFcybAl zKjJ*8xFu4D2G2h3z?Q$lo!-~je)GM>xBXja0=1_6C24zNN7^Z|U7(iQ?Rj}}cCJeD zsrGj0i#)JAB~B(2i!RIeh=7|xQB}TYd38sIHk9>M>j_p_PS~1)7`@ycNj#zuabGqe zWZf%pd7UD)%);Nwgpm1^gdw)F?a6IOOP(9Z6MI5ZMmE^%kSvzNG4yt?LmPTaE+ z*r@ydWAYxB_XdwCDflDF?<6>qrGoErf*U+lskd8GZxd2){hhZpp6lfeIeiw-!h@<~ zE(3=a`#BY{dr^M~3MBOtHn3ZMqnS0wH}hw_3m$x{6rS_~mmo=pJ*;|zZ|x@_{tw=( zd>`=2nDzi8Cg%A=!3CF_k+Ov6RU)Y4bLvs_2Oi4{BJg(Jy1fajgM25}njIeCiGuQP z)^nG{Lq{y~EVQ(H2nV>Lqil0LO=_1m9ll`6S zpQ3|Zta7^}y$N;<`wr4KLL7@RLM4IjrSZ#`xD~{%;|?V9xA$?!MK3wOIr*h*+cYPS zuo;KGg;u$8tg<)ZHe>cT{J`rgsN3_vI3(_s4QnJ?ONo7{h?i&??v?}H5uu9v@Pu=SN>1)@W(t9&yWbo|emh-~_7wjK-N&hu zSc$xu{~vpA0w8Hp)rp77C^PFYgDC2X@^wQo-80qIb#+foLC;K9W>!_wS(!O`RChCs zX;$V}l}Tr1=H$^;g@EiT$~bbUpy;lm>ovNoi@4q*;03GVvI+_~D&E}!o-3<=bo>AN zy@>d({Ia@dXgvP=pXrKxU)=HHMZ}92FJ2%I+Mr;#v5_UIIZlu|h15ub@pkHiXC(=4 z>|Fi4bRg9S0%e+1PxH%s+%NM3FEnL-Rv`8Jbn2(G#y9CQ-wRF)Wqu*b{Ktw(^1g5N ztNAzrUXVus>_5O8J!r0~JbLP557;`w3sxA??|=ho5jZ+LCh*0t0C&e}>D;e_S%t^O zd*QerfV2BPIHSieKNnR1W_OXV#;H)x-(dxE?4IN5hlBPlq(2JWS3L5G)T3wK_q$Kw zLmI&5#;?K|z4x}`?ppvmrmq5eZbvP?YK}bj(qD0S`~nb>Ms2?|{Wxk%==NLh zWgU;D(U1%8yzMxDZ?B*&7x19o(<>jioc~;TAmP?8LNq+G@$SF5?fk9J5cugE$mI5$ zZqWfCz+<<51Ngh!&b=FbaNDtmkkik7=+kaH_8YfV-g{g5gSTyd=(gkZygmJ18kGE{ zk1#_J=3nD+gwLdtdn$<)e=wo+rzvi^K6LplxZCA@&EYWz)c^9Ay8%yWJpCWPTo3sZ z*=*S5Y{;8rES0#t81iQa(f?O3KMVdKih?DIIC*ODJzQ`6R`dvlyy5?V&Tf4Z>6c>{ zVw=by4${EeP%>x$1|m-VSrPLJFL}Q6oAr?3YZdR1u0rT@vobEe2Vs((T;alf`J5!e z&eM#G$2czDf&?FVP(qCNPr&C}FwXUuvh%__7*FRQ@$_uL8;!rX7RmSBxcD_|3x7YU z3lFyI`0qyi_pb)>#@=uA7+&ANSY*VX0A?#_$n6i21YJ2bT1Lz z4+-yh^~0g{B8uNH&@ zLyrbuFGu1CF#=y#KN!Z>eV4C+ucu);c>?(QJyZzMExx{HHjJ;gyvX2d5A{I2H6UW~ zf*|Q_Z}5=x(vMmsIhhzF@u`zPeaO(#$1k@*RzTLPZ2EX)`TPj!3wB7c1;zgA>6k}< z8=d&Bn|_~rQv4Sboe94u`-v-jHp1|Cvbn<2{RNNw$|LVjJo51bZ8P2U#;@0VQ7{pZ z{GItxWOsFR8qkk0g1fm^^x`l1kmY{`~B7Zy%ijOQcCiwAb$W;#&~;wr_jKM}8CK{rPW6 zdAC7ciSk~D@*chQ58x+xzv8<;^481PwPH_wKUSVAH=|Y|{@CMpffjI)H@*7x1{t`l z{OC<@W!~uRoA3WB2=81BOtj!-h@ys1L-2r+AGzu4Lb2{+EWC+60|I*2yTFe@fs{xf zd-fcL!MNXRPNf6ERBe~wry!W81+O`^5(vh|AHLLm&IEklE56ta{$=*&%Xqd3!yPf! z0x^CFG1eb>6>dXox#IWgD5*dcTxVw#-td+Re5HF`%exTC|L5(vME;Y80<5GF#-GY*0;KWzO!3KGU$>^F%-IsMq>F9mD2 z{)qef%p-pUC8qn=zw*O>nK=%v>_5VU1m*b0E?zVpPVsTCY|aBuuQ z8csRf9Y1D2oRwcnIkUvzC;nU~{RMUvD|Hctvr><|YwqKs414*f5yaf7G>f;8A4xyP zh_42dBi<`u9ig88*yTN4|KW>8c&{t}9qW%)9?L%R`ob&-uf9eMrw)fPll~+S>aR<=$1{8u(-+CVhiO|m_Z9M9}9z#pLMvp_@b%Rcp`vHH|{rSth$$xdq zeI1OeOznu<68ECGyW)1meOTOqxFd1*#61xA%f)@UxL+aezZ3T>#eJ2yUnA}#;yxxL+^sH;Vg4alcvIZxQ!Di2H5gzFFMw6!*Kt{T^|@Pu%Yp_dkpKgW~>Iaer9c z9})LQ#r<({e^T6^7WZx9zFpjRiu?28{-U_=68FE0`zzwUN8JA*?*A0`H^hCvxW6Ut z2gUtuaeqhL-xK%u#r;EZ|5)5V759p`9})Ls;{JuWe*rUffTJ`;X#Y z75CFHqh6i*3~_G~_p`*kS=@gk?ych9ChpV4eTKN7C+_Eq`-S3uk+@$h?z6=`BJOj< zof7vBagU38m$)ayJt^*-xC`Q*68CO#?-BR;;+_%rK5-M`CdEyQyC!Z%+_U0th?^Jp z0dY&>R>VCg?geol6!#%7GwirW?UVR5-mU7Z?r z%f%{$falcXAH;Vhs;(m*`|3Tbu6Zg&Hey6zK zCGPi#`+eemzqtQd+#eM8zl!_A;{J%ZKPv8zi~Ez}{TZ;Sgo;{Kkvzc20|iu=dn{;9ZE#Qli49~1X4 z#QiIA|3=)u759IO`}g90Lfn58_o}#`2DS(EFYZm^ewMg5i~DcHy;a=X#C^KB&k*ouJ+%w|d zCvHOAq_}Bu*Tl_;dsf^Har5FnAZ|(Ain!;*y&&#`aI>%Z;_^cD!h6M(76!{Q#k#BlI1FK1}GF2>l(Q zuOoCD7MLslo)DHbb%o1d6E}JACLf_~LVSj^NjqFuurs*Y{5C=bLhmHBO6Ye9y@1f) z6PhRV3@mY1juE<#(3cQu68c<1uO&p2!%g1wxuOXD2BD9Gk8FNAScWSfCGNlT`mHo;lp=m-{LK#9UgmwtgepQqAeXqUUnX=P zAsT>e<_P^5p%)YSFN9iz{u7}~gx*BxRfJwk=o<)q6`}7S^io1UOsGfb-GsIYeUQ+L z3H>plBB8$~v`*+|@Say-N(H?|2-jwTXF_)pA`5#3>U5|9p=T0$1EJ3*^kalRozSlm zqCxcLxjCiHWJ{)Es^5W49WKtDw2d4#^3P=?UA5^4~7J)u_;`f5VoOz35V-bScT=ywS< z3H=?RFD3N(P;9zVCX^ubLPA|a_Y-<0q0@xkOlX?Wj}SUa=rW5&B$0A0u=Nq0e|4AVug|ggy>i1K^aq6cgg!v% zHH3bR&|`#tfzZ1M;obJD&A%e_7DCU0$ok6n5=s&JkAxl~^bLfDgkDYP>j=Gq(036U z68a57FCp}YguaZ>Ul7_P^bdrxgq{gu_>~nx%Y>E)y_nDpp)V)&TtaUm^lu5hmC)^k zevQy)68adSf535F^RplbyzleH z|3c^kg#HtuzajJ{LQjKI-Ido8nkIz1<`^G@UP`D*s7L5)3GooI`Tc}mOz0O06$$+z zp>;w}c?O_+2~81NB$Om{C!rc4htMTL&m{B)LZ40Ot%N?E(615tJE%rA|Af$=6Z$xz zKO*#*(3ZIJAwr)==)HuVOX!yfEfD${LJ2}|B~&2v7@;bmZzt3x^aet&CG@p~evr^B z3H=PAON4%n5Z;Qt+WZ|tcw-DBl+bxXA19O}bQ4r!uA~Tk4xwd2M+nUlnkDo+LiZ7R z7NH!W&mmML^i)D!LU>f{YV#`y{VzhVCG=;6zMasA3H=bE-z4<2gnpIKdkFm;p~ngR z1fh=+`XNI9K2E6Ba|i7CsZTUB(zKDO9{P{P?^xH z3B8ceHxs&_&|`#76Z$Da(}aGR&{0AkB=iMmu+?2!Lj4ZPGc|}_pEdVqh7DuAG!@^FzRpD>aMfh?eErxYOmE8Hk~`2 zrrX+S4xPR3sNHb7m)!n#ySryX?{em%0VaA($OY#vrxJ~>J@0ZhqXD+~#b`jUUF*20 z*H}QgSsOatp4+btTip(E(diD+D$_m{Z0m)}rc>{B(3%0_3SN@(IV`mH-S(i02-RVi zKg)>N?)C>g;>J%C$(-n(oWtazmz}ABbK+jOYRw&@xB{Ce9TrWb`-KTYQ6HRtXxTX= zZZybmjY_$LVXLFj)oTswO(JdB?K*?qTDv{%xcfb~PSOBk+iq8J*)873cqV=i1yCE4U9Eo6Z7fP=8obV|lC{nqL#N)Xb#`2b zWTfeFc+hh>_)g%n?g~MzX0qwhg;F`aQC&%t($!R^SS?>Dq*dP?bVq%}+8T8lZCCYb zeYZ1IQ-hPL*6S$(`k#T+dVV9Va$V=S1RS?>snzdxc9F)pRO`2DTW!~=U8=R(gjA_^ z2|c!hX<>k&+-_iQ2#o^=Viprda8Kx(qxMYC0s^9fP8;|^^-d$nQH4;XZM{Z?nV9Sr5dVx$no%cJvep}9yY-7|bxy6$tJMXyx~Nu9 zsnyeJ^=`Ggq*m`i&@BECJ~yul#DMN6c2~FEmehsXXyB?$XW;gSYQ2l*6>2+frH2vS z#%iF_Krnq$-Mx+~a{g9XcYCPh8_{y3-8O4+);;Le8qP@z+-ZRm7P!j-=?+#I`!Q#M zc?&F9V9^4nEO6QacUxe|0{2*8)&eu2^G>BCIBnMkO_k{N+O4|GQL510^XqU12m<=% zfWJ8)a1I!p0}AJW!#N;v9!Q)gl7Z!U#G7AK>3z380(REjc28}%oslX5U3Dyr!){L{ zc51B-X17LHB}YS$VebGq93cK`3+UWn%FS+jv`ai|K+tJ$IBi>S#yOTKEzZs!NB;n2 zdU~z3ow>;OeB^r}^1T@OJ{9>s9r?aH^1T%KzDH#-XN^D=sEP;9`{05PF8bgpA3W`Y zcl+Ry58k5^?P0oK18tTL21WN_(0ixuwp9|VN1w#p?E~kS?`oJ0R32!~W4+eF&Phji zL9&l-L1)o5$es1*V-{e!*&PjPoyNe=Duuz1HOu!%j{2BX>j#xi3w>!mN~10LHn|?N z*&nySms{ZF7T}OJ(fx65JQ7}r1(Fs>Ss-nJRSTTY7cKau7MQZY3oLN21)k>t9`rKn z^)e4ywqDP%fS!j;P4Bn9M=Y@6?t<$3Zs5D<*0JgbJan&_ERZ14Xaqum%wfNV(c?$h z7`2D3Ui%>6m1+XK7p}Suu zIVU;nw>4C1wlL{&=5s)p8d$4j^o*$E$>iwhh#F>04KeBl7Ld{&c_US7yKYaNt6g+e z63c(bZDS%Zkjw-dc#^FK*5m+_3n7`L1q5oleas>BUd5cU+U@VvtVhw^lL>}_WnlDT z&fOpCxbj)(yO&y^c9)F z_$y0{2FN@QTkb%DF=EkZM3D6bzodVD+sXsf6KB#Xy4zrCB=$vKhphX#k;hcLwYacp7|djdpg)D8z^N`tG*d$EK$z%MW>*Vmg;f z7prT9N;Q>UsjM+&&@-DqS1shvrNK_1NK8cF!rZ1a{9E?A3bUl3N{{xiDPC7aUz7~f z!LU?%Gm}h@g=TV@awd_@yeLu541o-@vpRq}mMaI6TE}^=SD2&C=CN6-K*sKC8 zoC~B%pD(9#B^DAJyqZpwE5&qtpl&m&xRS-zqnOzQF%nJEz;Zs1y5ufY^D8e*C(D9Z z9kQA)ZY0W*WvNmqO1hd%6r}lyR0@a-w4qcft|riN?1Jjq^+3CG z$Z<1WJ(tO)FhVoAY6bf;6QfjF$rnISs81-3X-O(k_M&Q3g)y8d70{F6q*C1=m9WX< z?J2D%IGf})$AePEjjHLAjeIJznn662lSAVY7g)1UhC(Ij;zp*-9ts7mVpvy8$znR4 zLqIZHDG?FK)1b*jF0XTJRWs-g+Z5xK%A-(&n0z5!)XhqzSAh%^HWtFVL_-UiLOPp4 zJ{*o1H5kYbR5DB+s_P3Xor@jpT<#@4{ErLWk<;sUx3J4Sa2j3i9h+FgoEjuV{fn*6 zj`T_tEAJHZ6J1<*UZs*f;pnLQq@4RLi1pNeNa0kYu5mEr1YlW zJt%3h9Xr6EUG>r?i~m~INtb|=+MWmsj@3nwN0GoTSQ$#RIQu(w;gN^Ol|PkF%*4i# z2t*~B3|-DP<&k>1P&Vt;mAnVbYV1TJG+b=tPhhLnskhp(fl<$mQX=65^A!)hP@2rK z{DE9ryR9LpVc_&yJ+}>6DA!vwx_1!v5lK!k3Sa2+qd>+A2GltQ0ZXTGrqk`X$GtD{ z^FM11(3p)0wj%H`Y9D9u)lwG{+A3%im=_OjHiO?f0&uxQDUTl|&_UU01ls_0}cf8Cipx&0`CBJ*WI^W3f~zrz}>x>QR`xBXg(M_ z>@R&#z0`8|s>9ljgd4uaGFB2}rbh{`A%f(l$a7bOf59-#{B{B5XUuI=r}W}Kw?FqjVWhF(4hO?M~l=P={2M1_&k@yj)dxH zhIf+)2K5%*1D&xY!un`1?Cv_V`&0YJ!P?2(>OgjddXnuG5uNom7=d( z`Cw4{kR6^G4YyA$sU5fD_FKY{Ln8n9B?;{$#wg>a?v7XQ<}oc z;MR5_*y0bCNp24u6Gd+sB4NQwmKsJbI}VoHE#R@cEs}M~+IF=`2!!=|K!;jIsu4vyjvVyZBMTl%O$cg20IEc~ zhgm@Z#ZqmVl30Iwuu|edfF4@Rk5S-&)P^lgoSNVrAVh<4Wc^p`uFWEGAouNV=A|rtY7*U*R8iX4pex5(Ljv$56DB+$8_Ou+i#N zyFKoj;?f};JK{hD>^JfSI^0@S!5Wgo#l!9;@b($-_GmOEr}TU6px?D~6x&w?_ljL)4$L@q8fI6K#I_@iqgnZHc5Z%Q@zm+N zm+q-;)f?`%O^u!Mh{tUW9FI(6!o(!Ru^tK5YqgDq;|y|b5}6cCqE$nj|Hz7iGo+fo zy~nA6yTbv6g@)&~&atV1bHh`E3d-<3Max_CC52r&n;Y`KKKf+<0 zaAl~LrH-H*l;PMiJQ2nv*$XJWC0NFp5s$BlKeK+By@G5Kz~6(P2792HYf=wnonUn? zCV{Gxl^QF3#r;&+K|b=eZY&sjy+aa0XV}YPG?ayMx1H>WW_@62zmFrcqFP zjhH1(y1LBdZexX%o}%=xGHkU6+1i%d=0^0=#S%%u`scSOZOwt-(1A#q?lk=HKsp40 zHo(`%gj!1U8Kwp&m0j#fu!S9rT0`MudS;(z8TAe9fs^^%YG$n}dw2*a*3#9@O!{24 zbT0Fv7g25^q`vHMM$&LK+pRUSnh`gw{1KV3OfZOUlayx(89gf$PdyQ^E|%_Xuij zQSEuN#ykZmj7AL~J?0KDp=;3w*#z`8PU$GGZCK$+%LqK6{Nc$(IBoiRG{_SJ0i|Jp zR7V^+$cOW8DB2MbW+9#@2(AVs@tf39(t9YJmw=6z#G)B6&0QlF!x4F3atBzdq32-Z ztMR0UbFlg<7&)jJIAI(sIG8`VHc^Cggw;fgD;;pJ(7QmBFBXN%J`&i)Y-20x)H(+a z`e&fI6Fq1w1~3>r>I=`@1FX$d3}DV@AzidW=V@fqZaWuoeB@xQV!KelUhQCJ22$_I zx#`_yu)956+K%1DE(YDi=FM3@y-5j>fei>!!CVxe={XHdQsFZ(6TujPj`jEY_i+2orJif8TqG3 zxMOW`M!v?{5oe`~4OCz6DldUk!B)GrMS3A)66{s8=(oE&l%biq^$3ukpvVJDJPw?= zS=E99&VV)mQnq@()x!o4i$X9!ub7A_%Sb3aJwZk~Gd~`@WIgtL>>5;*eLs{9Wa`Dj zgqUOHGBR_Z>_q2`VvJ|OO0GPgO%X2n&0$0=xl+DPCugpSAvmojg-oVs@lEo`EE+XM zAzew!=z?JoT?MN{QC4hlxf}78&vG}IIMsq84bNJo9rg=N76l^X3rVIA2|BQA&0?Dc4S5y1-L@CSr;rKW$QO$fhJ%-6 z)fOt5t_EbawpJjakY<{!kO7s&Htza)!R z6CB2?@w8Y9ei}3xFN+aBU+ZHr7m4Vh&iIFLXZ(ERS&snrtXC9$Y~8sUW(#U3a)AP| z2c}1OLDDilWzy4|+rZE0*5h9;ZC0{p6S-=9hU#Pmo2$V|N@v{uNgn&11Pd*H&}6_WL2%*3 z!p!{4{On1{NKT^eCoc)>!JsNWtNL@MuCA}%wto6_gE*tm)^CljcPx`+u|=7UX#6^0 zb}=6d+a#JOJ7!k3F++F_YHmXa+!kRx@_KlL3C)GvXfz-%2|eSipQDyBdb%dkLF5v> zp44Xrp@M)Jsf}R+Ltzz9yuQ@}XS^$N0wEm}`-t-QeUvtEQaeiBK1y@-mgEF^EL308 zPU~YPP$cSZ@)%H<)a(w1p_oS$86FHl!JQsq&Mpo!oGsVc!Kq%yaj`!D16VV3tS1hK zY@qQeV}L=@;vL=?Q8+|#HHg=NL5lTx3UUPd0-WD;cRFBi8|H9I4iJu9Z)3LPlqtR~ zfz1i}ynzxzI}?Mhl|(TPOQTMUL)KL4Nfkg{R1{2Qe$$1NK2W(o)E`hd>kPo0Xhcd$ zFDf)6vx6MG6DgjZ+kV=$a?85X=sm;mP-)M zp4)<;85)lru&89-4$vJt*koM0p{6)Je538FwZY^x4m7IV#u24g&GAZm<36BT6+qne zBs3MNYI?^JhwRv)|K)duf3U_O3BfIU5JaQ<5YvoZg+iSc+4-AgNjEqWW=h=&l}hTa z4Y^MiO3{7JVU8hgYH)-{GR(^=m_cUd)x}IBn3ZwP2@R0(dYi<1ScYZt3Z|Z%%AeIS zVc7M{PGjxXMHdHo`TRz3r)f@yd9242X3TP{iS;?a>By#-OHww!wwB4QDd;M6`>o-D zf;6kW{h=O|)bps}h9*uKSnL#j?^jPE?|j z%H-8%CY8=Bt*xjsxdK$>%4z7OQTD`qQ0}s$GsAD-HU*cBY6t4A_LfFq>u;jrQVmU(0E^o>kFcErBH_=YE#N*D^&MW zSjgHu?FxuR>atCtz{pb=5gOaVhTGE(V5pu-6^I;qA4iUc796ust;$F^a@5XnA#Z%R z?G-Gh7fU=Fd2-y4VS|MKv1hE__>t0aq%ztatAdf94|EM9^|OI`yCGsqrP0!YXa{XA zdF&I_RqJ{vV;MI(eWoKY&Cg zbz0jz(AV-_=;~0#SOmm7QhS5qm*QB}U^!5TUI_+)9BUXh81@`dARS4eNpMW$EQ3xf znAt+@8KoY1lGxI`sBPhJgcs8+#goiL)a>ZcZqE-9`Io1pW)!D&r97te3D#9N?2x*e z9yYXg-5nt9EMu2~UNCAEW)~Be6I2&!jtSQX>DY@wjYkNQE3Ug=cfkV8otAt}o&4GV zP+FK=l|TkhumU$2v9Lu6nYZaUJ;d`FI^A*`|m zcr|rIR!lDS&>CY}1IG@oQVL>icd5#wcV^HPLS+Wn56H%)swVL?Vg`mfH+?e?Kl`Q^XD?SHK+zmn+xLD zMqqo0{jJ-_z{jLm?e=j-#F1-fwtLSwbDUPkGU8+*$2HJ5Guyj~arKVPOm;je!rm75 z2T;sfF;Q60Bumv&IS)N`;UQ8|t5Sm6|3zDNus2L&2FqqE7|GbATI`bI|G}Q z8Nqs!IVlq&O;X87>S+cvl`fRmQPp%VnaNhm(7Q>O<0>1%cx>Zs9YMmjZ_L3J7BbGy zR0KgFW=~t~`Uo`YH(lSgXaAYo`?eRLmxQA@uslyR;S12!rx%tMC!{-+OioWoWJq7H zxVDC*U#$IAjf7;rf=eJCkwuy*avROzV0ReU(Lqv8p+9Ya^7j(YtL2_0>a zh+80ziix7Vlqp?d)#LeX)p!fi`^4?!-#9K{ULiL1w{6M92k1&R5?t%Eqm3T>8MNgaGzAsCrMa5kpt0qVG-m^juI?@cFB;55SH730RnSL542+CRKDa+=0p+*5XJ0G;y|ic zUu3S8h615u1%@I)%>k7PtdACVW>)lx-3Dl+`u<#-ZP-|%U|=+%ppDwdsDNPu3Y<$K zD>S$EkhdScMB5=^r{;QaTBS;21=l?67Wo_m>#`h214@~VO16xP#`#K#!uV8GN9DxJ z<**c{G_zi`p48eB&Fjf7F9tn&8umV{YMiiyKKkNkUqjxu4{TcLA2iPIp146_Qkmv> z6Glv8jl9s1Fq&_E3G95^-=-e2BFSWF$HG{u7>c%yAwgM&+VaU^!s{KxQynkMBJ~8W zkk{@s&hoL`>oFOhmP(C&{mR|(ijFODK_R?OtxNS39=%2$Rxs_#5Iw6n*z_w9 zsrfar#O6nGGALk(p7+>9>3w>w@%AIclpC!cbenkO6Dr*70^|y$NLF<;k3NK2WL=vS zlgyOuEx7>}*kn=&B8ell@Djw%Y*q@!1wP0I2N*_jYH}RKCQ=(Vu2DR+i)jd>+Y6Mo z;bjAst1z0!akm;;SdgUomSQc2SV$>6Z$nobqGpG+!#IW)MI}>okQ3W#5X&jO@ zV`-I56pYUBHS*CNrc^D!!9GDk?ZU9v?1BCv!eh)*=~LMO?!wBg`fJ1*^jiH( z*ND^D-_qu$d^=KB>ShaT?6=z2$YpnM%@{N^0W%O2G7^=&Zm+*>vj{?G}c-q-?gwGl($Henu0c z8YUqwCZ+_VSgSY6fqMDb`H`-p?6Js)l+H<(dy;D)g;Oh{#o)wdK>4ibXP6z7w{pg{ zd19jLs3{9NA^ISm-3B{~uT@kenJvsuW+q86P`D%lJ)LtrBK;&3bucf*nrFnA=8IvO7VMfi#>dU{JE!lQR(C2I@>s@IzG?Xf zTME4Ue`32QQ(JW{v604g*>W+T#ffhyG&8xR{KH#s z(VP=$tG2u~JH55MH8-tMvAlH}5V5hmwFpQMvb=Q);HbB}b@w!bOkXV57Ugq)xi%}n z!E$Zx71J912F=S`_h=6<%_;qjMDrR#s)bifOD8UGEluw)Z_Q61EN?9YE63i}6=Hua zH)m&9IjJV#C9k6RnAcSWG$)mUt#9dmuO`07+^jA3bg(dki5pi)0LwS1A(38)pd9TI zp8(DcdQS(?D>QlJdPrvZ%v=yZPqGa%SV>B(yx$4;=x>hP>!B~*GC%qCwN*wms65n; zC)m#u>;I&%A6uhO7PB$EJel^k<~USj3~kLVctdDwjzf!s9oU-K<_H1uGc*nO11m6| zNoz06<9UEg@+{cY6gG-gXnTu3Hv?$&p(Hc=4H)Y}W!Ftres}2UeICtUm^M>A;8Vc? z;9+G#&&%4wxhy&g`1w0wY|ABW{sOP2Ys^rZdr~%!%2sjw0!amfa7Emq*_ffAqw_$A;ie@9+M|! zTJMEvLXtzEPIf#V* zL|X<$J1hfgPYi@`u6PIH>g!hv8^)H zubb@E_xhV?(%(ICg?xeyZp1ZMk7sTUK8a0(?!|x7_L}i|&-L{5_6=;fq2uu>O%_Yd zO8wLHxWNEs7k~B|C-(W!5T5^(4B-gBbn4Iw;RPK2S6jMg38QaudTFIKOm&@&7G5!u z*Qu~fahjRqjvL$V@TL}DO{qhze$Oeke}V0vH|?jqLB^*vl`R2+ zxU5K(0aG*~+mU&T0W&7OMHlT0kSH1##K&EbGw?e!^S;7x3FJ3?hQVx`1E@W1P^pQ3 zE;3);Rg0aWJz<7W%My`$_l-jC!q!qPh}=?cVHVGsbng-bFSxU_pE3e7b0Ekoh+b}! zV$d6w11-!w;rTC33oQO~9w9{+Jv*Ox zYkN6gFt$wjnZi-pH0M>8>KXe2tc!EFK@50snQg(hDSx`6s&& zd&F_~^-?@@zhSv6cZB+<+Wk({GXfLt^8|@3pLEr z6WTKe_mDS;@C`P%xBrQ-d4sm27Oiv9UC}3jR?QWBa(G=dlBjxp_8!i~-ke-0Ek>x) zoY4L&XQg808RJ+G>YAJWzZwf3Q+=bcaD&Fw7>A-g>}i{Pc~ZgHJ+hTQ#PiotsxWiT zji-u#iTDT|ip0pjEOOk_vvoajmisq3bDkR*Uye&2BLhvs%qfpNA@#lg3Q}*ExsFXL7eT z%v1eyu3rAR;H)p^^UeZ!E@;JnJQp-#QeXb}Nw5g9t6da}W}g4lWAO&jt&dKNHlE8) zK4$$?uM-xZa|@O#4fh~aS;EU^?!YJ|mY6NwLyVNUGbE-8n)l#tL z2i@@6);@Kj5BAld+c|)(;^7byS5c7|cDuN$410@Z$X*Oh~Ab0gQ1K7rNyzM(jUb+;LzI9Qy0Hh0j{TvEaGiCY^rT3wX{ln`hN*3p8u5G0%zcyK9D`d%#7 z;!*E%dX0~t z5eC7b;?Ky?_NRGpeED}B1~6hQwRB81aeG+TQ^?DY=sk@ZioNX6q|2y}YZAN~?caX5 zc0!Q7hg!$&_iH6=?)Adj>i2##JIS?fhM<3vUnCvE}igB zGN@4OiUu!>+5t13BG@oXsR25}6TsBBO;^|RFfU9KNuarWQ8}OFf9lfQX}pYl|Irsz zGBn@fGyY{74HxU?$u0DdwtY(-)+2r7G+Wd$xnk9oG_O z1>Eg~m1qnBZK>QdZH`d{gOv@~0|2cWOXIW=43yQqeE2a9d$Dp^2iJuI7w&Ko6($sk z%uEh%TFU#MtFSQ-oYez|FJv7>%3kZJDp3T9q>+aY0vJLajQo^GzK~jZawM?XpA9~`wA|0gI~e0L?(E{x!)j5L5pTRTm|Qoec)=aEXf7C zgX>MQy&V%1CnS(rAZI+LJ;IB7eZGNlcszMUJSIx8o+JOQw(-|uxqgM4i0j@kwA5!k zU=Yi^i0hl+H<%XWu8PH|JErcx15YJ8^m0xR>3A~C>ky?QVdu;Dj3gPfG*(Y17v@jQ z-Mw(?#Nxu-!ikl|+4&O-OL(JqZecEcYIVUR!^+mjvW-6F@Mqp8@xq~rO{B#`BVqXw zx`5fXF5ds#F;7V2b;9<@**buE;J_qp9}J(nNBQZxjs8Ndpvfo-$BZChplb!0hn`zOI^jn7ey>Mm-~<7&Rzr6 ztTn1b*y0DTsTU;Q00fK&aHjGs7nL*REcOs`ts7f`2nU5Z(PO73zTxiWg?oWTn^h=f z+~e*o;nVHZPW2Aq+@JWmYO}ESok6%XW{k_3c&@3bx^28}fZq-*!SPp{tr)=i+yP7- z&$&`F!S>G z1x#&a~lA$03Xa#cb-vo@SD4?;%#Boto5)esCD^S zb~a$gkn1Nm_BAZk3^ZKOj2G#JmXp-+m-=gK#!KA9Dgq1`nyA=0ITzj3LnrVKWWsc|irAw37vN$8)tul9~*7hTs z{JhFN_p)k^}Bfe$|pg-Q~__5dUHD&>4R#+n}$9h6qPZV&q5_kVIxhf3h zdWe}=GgA`Sp>7=m)9w4^B|N{wO0~3ctrB`QdB$xf`0!KET9DzwZFYtmHyCG!26u7b z2t(9o+G#oRsgVp(y@Meo`RuR8PvU&Kq-OW0n)@fUJJlRbbv$g@CCii!aS+VIZ{xAl z8I|YLDpYyZn^k$_4F-$I729p8?g_m6lg^bBd`zdL9F+wJ3zoO%W*0JkdO zQ{u8e=8+|uk`yICC>D*Ks`W4WVc8m9#cJw@ArUq3xd95=9qr~zFa;~?Oej>I8VdR3 zeF22uVc{%uxQ`b00TNu0xVG5<(yL^!y-(qcbO+NoWGC~GovbW*X=p_8V5?i}Hzcd6 z`%j!Yz0?G=e7{&@N~Xl8m?* z!ntG3#;!?6D!A@N&V<2i#v(!T#_Wv^6fuJa_8Zn?YV!15Xm%zI&VZ2^Vx8Na!SjzU zUemDekcI;XLx@@>3apg?%Y5DqJ2O~%;5-89UB|LTWSk7EjP1kD2%>O@NyrhC>x8|Dqgw`iY-6h@ zD|TAsm}swbh`h>1p^J_fh{4SVaSh3IY`Aov-ByjIuD4<0&Fs0x0tcoWv7kh<4k4s* zfYXFleWu=oIhb*L*S{H)Udf%UmNG9&D|7~q7+O0W zY`x77t?R))%RVOnKVi98$w4a0_s(GR3Iecxt3Fib2TW2A7NRh~32m`5eoDv;%eqL| z8pVXe!R^&YS0$U-$dnZhaC|X0(N11Z$k+EKDL8Bd-X+1_q8~`%2T`;uoQIN_-lwH> zV!}Dbu~l=<)h_W7%3Uewcpy93R!Dl#tEBMPHf*lqQ?v77A&w7#q3)7O29q_&-=IKd`$%n=b2MsUWuEEOhLLspIfWA1 z;7J+#7?+N~xRT20Dlkz1Q-XNO2o2M1u+{gL#;~^on%u!|^%xJ|2D{k61TjCJpI^%$ z)}}@$wt&q-azjf?*o`gv$d$^Q1D7bxX%@Zwe`^%>$%ZxWmkxt$-i%a0&>-n?wRO%lI}$GdQ$Sk;qC@ zJo!R9VOplnCvoKJCnfE!POi-%IRXMihb@%y6DeIx-P=$n8LJZG&o-(Ydlmel@=BXv%NkiWPoXm zJ$w$g1ym`UmS`I}FY2Q&bAY<0EjecRWa)#0HrTMK#zTCVSQYR`V~z?s1TZcrY+@mE zKApu2z#9pkL8sE^=dz`h2_YMkLgpu?nV*KwUvd1`LX(*hyNn} z8xL4nE5-*P#oVb=r(#pY2H*j~_%h(1h%F;Asc`sDNHM8aECaQj8>=qMh^;Qmh)sd4 zPMscaH{!>6Bli3_S`j(Mm%Xrr|Hdi_|MRf{=aErt0Q}=quoq%ez&{ZiKn%qOz&}0( z+c7_f%hq$VV@+X=Cxx+Y6T=Qkhh&T6NJD}cUpDjfc!#j)7;iQ)#+xXK@s@g2SMjh| zd92-1n+ajMP7?xk%_aou`b`MbwVV)$GVeJ(Aq=@r3}apA=9ea(J; zvoTPY7PQ{lTJo%`MXpll(WU#3t|ciy)>neH8m$hRJN@wd;tE!}ZhvP6N5O+ed!|KA z!mM{TZ9X+HcN+TAEZPFVBR}=e z!n}!YfrWV!T?5GyVkb){jLR^7F%f@Hh~^$f2tOCa&$uS$qKUca$Lv9j2ODv~jGEdu zXFUV(&3KOr$2m9y6x}3I2r@Edqn>PznxKmScDExETG?ZghmAymR-)Sv#~Ae>vB7Rt zpO#W@F&ZP3hpmy8MG2csl~I%43)REy;U%l~z0NaRXi_w0Mm;j)ZT&$jOMy>0*Yrb0 zhh7JBlJQQ-HdZrgW3}ZNrdIJ6WOzbmgz_dH%G$`|q$yGIlGtkCX>G_{!K`plU}WV= zDTq`-gixY53PO=<1+W$)fJ#B%vee|>e^I4iv%IvPPoCAjPz3<1EOy0d>&Wp3hMH_^ z1O_a?lw&%osg;0fnnO|?pB%=#TK$%zugnEuX!5kC?i@Jg;U2W^xZ<&%Q*J^qrqw9* zF<-<}pWH;Fo_7+^r5wwl(i`)V1HowW3p%;vJywG;UtNVUZ&Qace^g@3PiisdYpUT* zTU2{>1Pfs=NvOhpru48UiVk~7xnVC;XtE~i#%(7YYOrYkui@bE%W?Fs3m z{^jlnmhyp`Ib2eceh>JVoC7{m$-uX+Sil3t1-`;X%#Rf@??j83*L~#WG4Di*n0JCj z%sWzqFJhBpH>;Mh3{C13Pa@Co9D)XRjH3@dGFMJj5II z-Kyq^v=GA!)HCu7^z*RTS2g#)MIDS*mSF!SbCV|&q3mTdBEu=@ z9fS55e2*jAU^tl7VKt9dxvGiJV3A5@W+?KN8B5%drFI(f;2Csy+O9yd!y2d_pFU9+ zz}JDRxuC!B1|z>J`fF2vZR#)EUAnnOv+BU%&Xnp2vKg(IB>0uwC#2yflWBOKP7GJG zV5Ll4)_!Q{#=e@S)c`2Wwi%M^r37EkMBba!m^bZE^rDVMV}a)R?nE+)orHOh9djf$ ziyW)CM?$q1YT%0U0H*3eZ5!{GVYrLlGxlxv%AeF<4_$fVN7Rdi?qs}Gb&z*mYAnQ4 zNn+{2B&$JvB^{{q!X)Z#e(e;YL-|CmZLjRxNIroMU5`W>-1Q~#2*su zsuzjv#H)2WWRt2PP;l6G?l4|=aPFapxl)*vVJyc~2#|Y+Tq@1+N(ecg4rd&3_syI) zb7^qU(Jus<**}}frLoT|ujf-T2+h>%XVT`=<-wrn0P&`2(H=D#tCGMg)z8hJDZIc? ze(XRwZQ-hpb25ANvVr@Zn5Uqf1F;28381QhPjKLvgiV$4BpQV1`dG}&6?RrNw+pxU zcqO~I*4aVN*-)+)R`)0pr6gJgI4zgUvcjsc*EvKgaxaI|r<_a$GqJNmB#Nnp4dwXQ zXzk0DK#oQzFm$jRb3~QJE&z;_-h`rH^?^#d!Uv0?j>5+>N^H6#L5>7L`&O&3IOs5a zI(b6BjVPxXN$4B!#wS+>yu`;{to7kd1L%9tklUdkKB3d^q|SZ9%?b_I;%9R&V?8%QO|*>Vmi_AS97Xrd2Vo^(j>;i;Im#1>ZGR0&+4hp^s4B zc2IXgCuItnEyMw|aCduWpc|?Qs?{LOL%TDm0ktaT&P??LmuqFm=wpLPi`#P;qZ_;r?AQNX21rKp zaA#vBkvzLr%vW+UhE1hXnbcvyf#f)7N*|IuHaMG4CUE)&i4SlbEVhKVT+$oW@_HKA zO2>n7vvVU+hzUq$Gli9WqL?zo7ig)Os>+c2rptVWyOfUNP*cbmbY-CPf{3-uZhAA5 zghrTT;o~wKn$4p({Xo!HA)B~R4QT8}deCb2l3;{XSrJ1qyax!{0m%kP)KI*i6oe9S2|KRp8+d^}tq1ftf^=Xu4IRJn zz}0*bkJqn3cudzM4*DWQB^h3tVg$8!#5cy~UY3rUrMg zMt#(yVe}s(^I$MPSiOK50&*U>5ixm5CPR%TK}iHn9WdtsD$WbozIR+HnOvbVwr&KL z3%}06j?qIaI!$Ze@xIdjkbYBV_>eY4`)lOvpPAZm4(RNoALK*-j#tLmTe)tU&}LoO zD;{;!anN=VxC@j!v7Au<>js`%PlK_$p7#08;?^I6x+;7q;?o~!FnB9_lm%)%uAr3- zO#MqL>b&82RO%EYOFtPS%zvx z)S=}iuu14VY_bb6KVA*S2ap$Jwjjy;Mj@Ln2bVSTaBYYTO5Q%nh6a&1F*Jl1n=(4q zt^ass10jh*A+$)?pldfnOf6Kg3Z}qM+pZX|aXDW}uH(Jl_@%&h)zBOta9C;U7=$q7 zwmG+Ki@qo}pjZpGgY;r+>lG4<7%$Y&_;@Atw$O6$(fPqvQrj6}#mE^yIQtN5Cg7Y8 z&JzsQaTR+a-cOHN38mFsciJ!lk>pNf;-36gGN8)p-4#+X49DZ zPbe$etl+c|rO)fn)mTakE~yg=3iV6MYOMl!q<76AO_V)&v>VJ@@*vj~z?Ar{q#=Ka zdd5tj5*hm`uyEi}{Eju6y?TRu*i=5E3{4C;?Z|>XA&c?pGE{=mZXMqrB=J~vF=5Q& zRil$}ICQ*>a5!e=Vq_Z~j)3iECN!w8Zw9;8yrpNe1%EbM^ubelViWO`)ym?f5V@|a zC3-yHn!?e+uu0KxwZBIZBgDonJZ*2T?nC})gwk%qSu0c=3ilx8#U-{@XI7={Evwcp zY{}@W6LQQm?cfFn%~;883VreuP$d^Ryp}rSK$T)^2g-Joa*D6|cGF4R_7Pb;8`iz=}N1v!<` zw-^&Tf%&@SmZ<>>=fF&qAm%K?79=BYNy5HlqKl~NB2>a_r?y6-b3Z91os?2f>by_t zlJv)Y&V#kBek<`1Ob@BPY6Y^P0S53H4orFZ4WGu1z19vk0lLk=2HHy$DK=jmn1R|* zIFk|iFMA2M6=hx?I4c_kQR7Dp4agZ02%kF$@8lEWVw`3k$Neg2tJjl6LQObs8ap`E zH*I4tyN1RW$by%c`#d`UJ*~8G*PPcK<)YkSF_Z0ng=YJ7#6vIkD#(h_E=~Cud$fVW zBQmY1DfgRdAWrCM+A|`a1oh;A*bTN8>RWE~TAO#cZwIw5M$UeTCLt9RUoG*zY&N}? zNM5Mw8CvU^$pGK2U38svVl9h$VE?v{bHNdCg5z6ie8QW`pib79#CZvBOkrpP={Su+ z3S12vwzgV0gE>&N*Ma!y5)N@@rg-PcQi*zGvFHiwR($cM)S!Q0cIQR`xBI797| zo%W1eV#DR&ZC9%>XijV<6i1&&T{F_43v+1INQRC!v!+jOd{qg1S*EhFaiLm7iDEKAX=o;S)|xE7W(3+a_Jy-v zRx4SYSJ8+_d`4rz6S7&&X4clrhtw!0!i222|4mj_JY&q^mPJFunGj=k|Ga_2B}p6g z3@7n0QC`QHr5JD%wp&yB#Lx+uh%hc5m7$;s$zPN%=Br5&mZu?IFctAg80#qKW8YSe zU?ZP1=3{uwi<4jo(M#M;%QFie`K%rEm7bm5!Ms|- zNhajVqDE7NDL@?WKY2sWUbaC?&N%QN%)^-TS~gvpH#$8Ls<)hE6fkAR5+%P^!4-*OluCxgty9u;)|P%ykqhRj<)zoh61%BdSn>36?%yyGVpd z86BR>q)?hRAL@3MMq7T@AkyrvOs6W2 zI@p%r4roK{PqUUdMZ-PLVl@x>38d|{I&B&mpw=R)Re?$|lpLf* z*z>cbit7qHsEZm^0r3J3b}9HU9pFRNQ2@RKSeu#wfW@=l+7I!sCbhrdo86Jd6_1j@ znbWY2D3$EM(o?Nb5S<(lj%mD%DnGz@r?gI{H|F$pAZ&>m;C-+~;4T5X;PcD|BCE{= zbU4InRqz|Wm2}Vp=!8)#&OAs3K~)t;jz&{LYXX|RC3R3N(*ea24oK`OU^5ZCxxVzo zK7#$;l4i=Z;-!m@?Qsi;b=|VsmQ-^02bFgP1A8#d#V=S7f$>W07dkN6%v&{@Wz(EmB8x-kgxDg3#2mN%R#qUw z(M;_C_9v))r@sn#%Lta)Ano8cl*V9w#X|t5&{2D+jHY0n8#;AtIt3#ZAgsXx6>D4XYXoBf^8Rz4kw7E>K4yX@z88r34Q(s)oC5KrsxN>QgWc z_eO18ZxL5E722Xa?&@=1lO405(3fgp1@k_P2AMI;Ci-Qd{Vk(>V47&YWV0?xkX&KSO@USeDq&E-b%@YBwsuknUHfT42(<)z&4U4M z5w=Y#@XoN!4|>y^0~~>(mv*s>#{qI@hvubh_FSVdQwP(hx+XGVkb;OQ2)%-xCM%C7y^6lOtUpSj z54nKn6KP4V>IJ^##$D(em*@QN)krwLL*Z7)S%LvAch}U9_uNDu(U55<5TjMgmo4T% z-VJRtFVsAr=Czc9w5CyLqGRMw#{Cs&quHz@=LJd@3f9ABd4#+Y##{I)`AwM4txi19&n; z`l%(x(_A zNe1p(zt+Q9?x0|bcoJK+o!;o=E(ulkX!z2mnP+zOT^}|?3*=(kF@`yVtZ`gfZkV$b z28q3pU=E*F7S|Swi;2Z*1urpe==)^Bo!VGAKulS)!bbvfQH&btJ}qE835joia1wGS z*f2l2*X>_q8|4q{H&%Iq3nvz4=4a+-Pl9VZ=_3PH$yrk@)$p5X+OaKzS&P9T`GFS3 z@F0cbLt_iw*1O)WK@1M**8%1atWDD9-bl{@cJaZzeP^&&>tQv-?F!mWM>n9p(?$*_ z7c*o@;em$9@(6C)+9aeevsaPX#NXEzK)0BqWP1<^GE1=7yYzC>yyBq+dzS!T0L+^$ z)rz2*561Aa@WSa?`Q@GALTLeii}-`#6uBAobZM+#NPy|Z)bEW3DiR5qAImGz;FWt^K8hwX^$b1|DJb%C zjOjO4b`>{3Pvp0^gBcR<0o2+)^0JEb^(r?IxD>JIY}T+laaOtq(cHYG_ZPrJMMF1Q zv>uB)k?97`eFH6%ig3n-=3mr5x0;<;d9S!+ZMPdnLnL=tG3F&v&>c=zVde~vHAJay zE?ROK&mDEPQ7I?XKT=t2yq&bzZ(nv2cyqOSVXSpn8iPGkJpC{~u?d?nF#th_ zNX?@ZzJYU5>=n-96dBw4NQ=C-Z@?fK$DYHNTEa*Gx74U%)>|X%6b?%ETf2CA&naS$ z#kzXg;T0!Z#y`i)li`p8PB3U^aHUO?%b`STO>U}U(iFKvWfjINSA?P0PF!YbG0>UE zi(EUA8c@6|5A00BMX`GTgcU}8*b|W&p2ce2K%LjYkbpy-lunvf8|;pwqlBB^mSR+V$w5U;l=ibzCXk* z_25Va#tI$Wgzxj_Gw>bPQZIuD$?&P7gr)#5N-(_+Uxf{P5Db>B$av7ff~bDYfgKxa z8H5LapoGZGY4u3zcxEZ0MM54Sm&c8WHChwWN{G1DWmD{eliZIa$#!=@yXFlYY|M<| z61|Uu2*7Gu%%~+Cl&88**~P0|*rk>dCG#`W*>VaG8DOajd8rLZ@{_gUOM&6~jQ8c+0P%CQMn+T)hnATH%Id>l z5m<0^pMu3qVQ%=k8|0o4w1EK8sf`g2UO{Z?fkbX4;Z#ZqR4|)V4}h3!0Z;l_`4ici z5UG_yYq!`)0s3O!+V*Q6Zz{#!IqZrBCt;N|n<=0tt0k2fzE=Y5;gII7Fc>JkW2AL4 zVk4kF?%{hzwO-3^cFosI%o89gus<(z3z&ss3s6N_FmKpNchPM-%yaCB*>LyN#=`4& z4Hw5ao}7#4u^u1G(PE`tAyL^SNu_C5E-D%i*-JyMq#=3K8V~?ORmi+6sD+XGu$m8j zR?USIPZ+I52|9w7S?U`oJku^pOH59oE3;PWX2K+%IZNjqS$ngVhTE}0RN-@VR!@Y{ z+&bw-P)v_&$#ZjB#;IVPYW@V-_u9~EN#N!ObRwXR13{(T{#R}JkbfD1Zgp^Y4qSk? zd)?j$vSh82qimJ^)D}mw3kWtrZ<1z)Ek0Gq&NNLk{`)b0u%I~>&%fUvPH*J=;|T%= z2Er+@kAt-)yjp})6xq(=;6=1h6t3@Mg)?o`Qh9Bh&x+jbyuBgIrRlf;kki7(KJJj}9M;Z>tUq(eY_0 z!(7Xnr-`&sC7~jo*xNxei$+46)Fm@?m#ElAyLlfv*k`}h?hz3kow0pFw!oM;0(SXif*CuYELy4mXqq9xO(4=!<=){NgEjbFze5| z+|;uv+dJjl3L_E2v^J!u7P6j@qMEk=v|$2#Fl)Hcto4=a_^i!!Y*Dln`{-bCbl!nN zq4s6kLb)?p|0tT|5+ZIBr!|&*(;iYq5#Z}~1`oK*h@E!8q(PG$iL};YbhI!Tj) zd;RV<1-s)hASdXzaKp&e<%r&*Rl_rkU-XdH6g?iQk8H!iu%&-qR$Fh9vqWXy4(m83 zfgT$QA~n*U=cz{ujf8L(wgNCu6vc%~L|`~&7?KlX|Cz)VIi3-MU39SRDJZGH+z#er z(g($4a#5|1)o-i}B`2Q}y>8C^lE00fn7s3bveN%+l3;_WV8B=~>XdmDhL zs=R;v4l~S*Fbo4C4l=+XXqa!qiwMfg41mfdjMw=vToPmY_xoG~KHM^}cfk@S{%; z59ExNIgmTO1-aMP0CDI=Fi;%Q*h&Mog$wZ%T^(-)$M+q;1549*I0h~*jC_`ZH$X3l z0b*j$0gdnm@L5IA&VZ$~dR6h=;2~fd)AKTbVor4K7y)pvMvUZ^EC%_AHo|Ig8#Fv3 zkDh0V-1$y~{DmD1Z6g>(F?xEpUwFDf0V}!Z!hKSuoA9s>vTmI^6>KC@%ruK<(BRST zkvWpY9xC%7*67u`CYak(H{fY=JxZjweuL8YOnackgwt_=&&`2IP6`O1OW+oU`XY+V zzb}PF^b>c?Wq!&{+@t52PSI!Lxo!54z(b~=UFiJ+Qy;3;6wv*!UCMa#%}^}@H895M z98nSSa;$`7UXB^+VhkRk=HL6}C(jP&?3-_;XB=8dz;`9?Hh1{}{N@_6r{C(C@OgYm zl!UdETTD|xr|e~Xdpze(nFYEMIQBo~?a`ug&FCH_9~@~@kg+MVZ$OsK^5+F^!wDFT}86!<}0DT!mXicU3hkP*z#KsZ+MeA9O>3OCE zjh5aXTn|du>Cv23w4%JMWJUQn&s@|?7aPaB;?v@*O3U!r!2vIC{P3)<;wALCM+`W) z7K|WXg@qnYgEy9!cjJAidp~K07U&JZJ*xboSC6i>p0No=$GCTf`^AzRguD!TJMU4^ znsLkXOI9(Uhps}arjcPWLmDtGt4ebqNho8q+FOVn53!$C3$6|NA~2)!4YRYEoOO#= zEcZs_%H0S->C`C(sz`h!^p=_6iWLJSE6Hb;EraGW@3Nm_3d})YP$!>(O=D#}(2J?n9B(i28V7IOzQ%C|97^hM0E~ z*42AXFmFX1t)W-pIi2@SgB#`{RV)#BMs*0SrF?L*`ZR27;0KTy40(Ao!}-$r^la{s zu2TvI7iE-lDD`Oh@Cu;E>c%ckO-@KnuuNE(q>b|`F^3-UQIsfuZCVKebAFc>$DZWfwL~k)PG;Y@xw{r)sG`i-Lu~QIC$cRKo ztEQQ>iRkK5;FgD|rSvbJd??|=X0jsBJKG|xEc)UNWdglDUUJZ;gLe<9F}ejaAu2%n z8Y_K8+Ow#IW8@Q)PFk%+#cE#}H(nMi{ ziooRvx>P*dXgyzs_vXtx{p9qr^c@+X7wzdNF;%DA;g!Df1;x7#NC)(8f#Sn>W=TYVU*GcSOXmNDwi0>WWgMcL?QqGRa_ zu(v?9XC9}mF3*!9wP%h`)9*sKeQ!qkCFA+TmWR^N^A%Wc4rtZ6=kf#Ou#bPgbg#a? z2~~n}F>+N)_rWY$QA{7C!qxC(Q@g^GOgve9ahB^SJRYb)P-d|JR9@7_l^&%2uHIrD zC>dJR;o@VdDSr)E*S)kO;xm*9s5`VjbqQpe`~;KshGNXSWE4}tJ?weNec?QE#Pr(R z>v_}j1e=ZZ4-kDlnlwptSg2hPKQ=z$&M|m?QC*-R(jJZ_Og7}_{ez8IGC(l!srrP& znu3;k7%ms+6Fkfpt}RaP^+5juJ%-@WEF(oWvn|E66oKA{V)FMe39t2Q=GHq{;PQH{ z=mm5S_?Yg1sc<**b5g;|W6!=)Z;9!~CM2RLeokzxq7vn-PZ2H9jh&GCGvk+m?}^T} zfBand1Q(OrJ`O4`-f&n|yKxlWHoYrS+)5h_PZ^>!n=j8mai-r)>k{68yk=`WSJ)k_X`YPv(`bK)=eu&yDj`6 zuEeXUeBCU(`+CE09mhbP!~o5mJIpxfi#II!Nw7U9bRZWE^6?YY;}f8Bfe|wzAHgX@=Q4?})L%ZxFAxbZ zVjq#vpUx#RsjuAMZ;&ET86fgOW(9`MeWfzVAU}UOF0T+Fg20=hb6+Gd2nhrrfh(vz z;UB_MdG;|ip^s&3pAwq+!P+m=U)ncj?+uP;_aXp=%ltU+!@W3dy6_g?txmc8$P=FTAGnD*?wand7iQo2H*RhmBZW98m+b9V1tv-e5{A#c{)?Bmzmm1Rxoh2&4e1fDWJr5e~?KL4Xz*3#0=JfIERZfEZvha06fl#sK4h@c@}< zKo3y3SYQNj7cdgI5r_ju0Rvqx5ALIZ4Zyv?JpiRM2^bFC2c!WR0AHzSOj?Q~hFu6- z0{bLvU)W#3mU-QApL(RDN8a^FLy!B?BON``(dz*NkOdflY+wp76_^I(0MmgPz)WBx z(wzpeZ0JZ^70{;X28gKv&z;@s%UH-vfJqH-WvtKEMgMfM%ctXa)8I2Y`b>8}Jrz2zVQ42i^e= z1MdPIz?yjB!Dj<1!RC67zFqM{s1~*eE^^Y0s$2e1Ox+vfe>H_5DE+h)Ib<836z>!OEck~dFt)0aQjW>rki%d{jJQg?|lrvuQHF^ z@)!6^^^@;b>QB8Ls^2^&N{_gD_xbVqO*f_J6Mn1LGtBm>FE0NJY&L^ooVcC}XvFpH z027bv=!JkA+ZRnPhRLOTdJV8nu6%Z-hI7A*`QgeZSJw5U@NYf9fCa-H8HPLlG+t5#1rH7x5;{~J zHY{8d5gDb89v%}rV&n~Rqi!5MX6(4}y7+{|qzTCrQ&J~QPD{_o)Elyl*;A%Y%b7l7 z=B(K_-E5iz1@yPx_KV#4w=cNk&b#u=mWBC{Z!9iavh?oaWy@ETtOS>0)#^2C*R9`h z&%O6;WUUpp%Bt#`+D-RAP`CNPhwKkO^5~XdZv9pLV~;;mA_ID1y+wtC!_m6(? z;YXbxAN%C^r=NZ9?mBVu)af%{oc;2vKb$-N^*7z$e)s)_AO85i7ytClAFgcG*#e? ze2{z)AD(w(SvgH1I75EaKIp_p>>2RVvBX#6>$$$ipHH7ckUtsnmtaD|w=a*YC(oW^ zjDfuE5210~8&@jBg^^3%UqKTZoO$BWF9zDk1I64Nq84-szZT5*|0q zp91OFld8u}87RkyQuv1udOXVj-w#t?Oy^{}GqD>ei)v8fabVtj)N_C_6lZSmz5r^x zcD2_%z#Bp5Jx}+Zvk!S3q_8L~E!GFoTsrTT6(Bxx-)|{g%h1Ll)NzjCmK-f!T#@XG zLXCOm>5RE=PMKMj{?fKTUv62#)>IvgJ}+7J#_a4{ZkIC-r6=W^r%s)x_8boI3tH$c za@>y(*AAg6VqTRu7b-3nG$$W06E|nn{_*Hjv9Eoa;vSxEiyB^3t@(BK6*Qx_K7o( z&9pA^JDEIe^2^Uw56vE6fhcdakj`kSZb&oZQaf9BK=-+8iOit=2@Qzy&4m*;E8Jo;MM=-V=& zB!u*UaeG?(7Dj%>sSBeP8=kn~^TW2A)`~v-et%NR5I_G(%MU#M+T@4AZuS<&aA7W1 zdvl@n+Kre-kol>?;1r1roQ-*zH!-Jv7i5!lg}!-WMxpDa@5B$^+mQ3^6H#9{+*6-! z_hiG_CmR^-b0*GfJ28tOb9FYTk&YrCD3Kn5hRbgX#3SobU?O7SHD3ZRiIf6Q@CMeR zCmkR#_)7UJz<6PNxOl$QJ4+=Lk)F|ir2Uz5D7q?!2>~k6BI#X}WpsWv0S?q(EL7-X zS(R@a`9~`-$%3Q5Pc&|XVFm*-Ys|xjHpz6UDk1d|QKe#puRJVL^1wniWQtGLBmP-C zR0$y|a`jBVgt@gj_7JUcYVFfZSVER$y3+pe@K%#yjc zUZi}8?Ckw=*;-b%ZmsN|B5~PH*&20CvQD9nH>+Ln`<78|}&6*zh2YEAusw|~3~mySFY zt#OMYk+H-5ld6}km)ES!#SKzPu8*r(>8M$Qdqh#_WMy%(b#x)wy>T)okl7xI{4~2X zxXpG^oe5>~d>TvJ+PD_>i)uGW@{==kRVGW;$x2d>mo=6ioTq<>V&)@fzywX#(R z%>5!*sfq5T_ZPuT6l=ZUmr`S7rFu%dL`&u4IYmREOCU8WfuLr)>XTn){$Wg8_b;-O zf3mGA$ak)^ zbt+S|c|;CHWnMx{dKz}3oYk~;X%>Zu(rb+=l`VBy+yhWnzfy6A2|TY-USO4piYzpD zJTsa_I$tiBExcWv-eyd%6Q{SYtt&5)ZIH|G9F~-zb%|H6ttrvggtZ4L&)Jn-y1?bS zz?0p|Zj&-m)f({`dY|ZsW=rHE-KNQVY?C{TsZHXvJ+`z;@#OaIkkw|{h9cR-A~Y@8 zM7E~HUQ=S0p}DTU=!<06ur+yjO4T)`^)>72tz*9KR(|bP{@_%e(}@?hQD38J=YEe{ zH0Whotr3ST(hu#%)HY*kJ@>o2C1r~-rB*z7OUrm%^isv-qvFYpEsBFnYD#izN=t0z zMbxm%)ivdgny|yS1b)o~erHmivMW#O1G}`!bGQp_T*Pr#WV0a>&*yP#I&}@p=;K(M@Mv9 zr1Pq5DeWzj8;$8GkW0;Jr;L+paoSS1-w$_MgFd|+&s3bOwBCBhNtN=PQ+e8?{9YI1 zI%0@C)it!UE8;U`ASY~cqb5qVtCS~oN}PW0mVW70o-!#f>S9iuvuMy6b#@Is7aegX zI-)f?0yTIxI%<*j$;o?+>AS_LTWqQAxqDFixLI^8>vL+>l%Vu#l&4k7ZZ5aq=#<~v zl^0L~aXNWTxm`93pq3@2~Syy#!8ea1uM}}||Gd0WTxtmv%cIY(_lUa~osw{p?4CQLdg$W-*7;&6`G>RThSw&6 z8RS(*$1!U;{(b8lY6%b`R5&Ct@|g)04tb3H5YALFayhJ!82SD26%I|JB9DAp8#CpJ_X)O9X}A>L?iS7{PMa<-3YS4=$_d+57%lYV+rPNJd&y}8boARRnG zYB7!Yu({n)>B_D$sON2ZIW1BDdDSmPKU5i>`K4=-bkJ+%iTcGQmO}lL26e&hVa1E= zB@av#8>q8iqifMi%UId(M4E#u>3`U6Yn61pdH&Y$4lDl0U-X&LA&G0tF;|RRnE%S% zWlJ{1JfA=@tqNyceQU`zC|0be9+8C%U&A&=o2$Hl!cEl z*`8`Xa_WxG=HrLIYCe2u@3}*#&K&vd_|!okx}RxGO8wPKuO;tJdiCYsPE2{DY2s_I z&ygk>EM8i)QI#hlw0b zpk?i8J8YA;p;H#8J8Ws_pzSU6ZnJ0^rVjRCiD3-Q`DhT{I>Vv3pFJ*j=4PuTuG~tk zyg9d3rx07?eN+;|rKfaaomjt6${xTt{9DZ0#~{w|X>Im7q4IPbGVjJnw_@#rS+Q*S z5>PV1x}$wZrMGY#P_1$FXzjc#g8>b8EZV81Y;0LRq}pY1{b%;0`h^&a_8ylwpliaY z!4m2GXx1lcmpV%n@@MmYt)Ig!3$IA;)SY$3U2;`hLvp$TlO+v}(JIOs^Ly3ig6ScZ zFZ+w;sHYg>Y>Jlm>Q%K@#!0GH2KzQB5;Tf}EbZmc5cfX+hgVrlb5w`4;=yx9N=~ep z!d(8n>VMSruBjC5;i|_}wflyME`F0$>k8XtP@53a=&)LSe|a%5L2;)#SGQ?jfC$HG zvrZbCePV@?xolIsrQTxoedyvRD)!2_*6_d>J@n#l)? zw{+7v&E2S7(W=@kfZALxK!$8OFQF5dFu=PCz{N@7TzmcLl*03d(j`MS&C@ukC64bz z9_U_?hqbT->m;6zx#wMk29}&O7Bt1;!m&$Ml*K2G(~Z*+Gj}X4|NlHc^%4EN`DyjPV1BBr(=w~&hQDEcx=;~R8DB2-IU{#!eUEA|%^ogk*7-El zU7w%++vcZ%n4f-;)|nUdUiKZv;qFuq--DLn^b2kJIlmJzEWN;gWPU33RhzWe=clRH z=coTA^V1K}xckjdC)M5CcYZo$k=A}{RABI(wU6LEe|>(+%};x0m?``Ue)j4F%w9c{ zOWuv9jQ^LZD#ib2Pf{h`!QxNPQSa)0N5@)K(nLv%!uG``mqH?vnzcCHudv1&OWIA^ zO)u*b)teuUdpi+=C~l6rf|0G%*@jC8kC2*8Bi_Rtm33uXMV>io+-KSA$aVNT%){1I zzZ9LeinjjJx=8xgt0jqgi}}t%{lg-)d45>YB75=7iN<(YIo2afWQmG=EMJ;5PHwt- zaFaDWx5y#eTKKvsqC*sMv0{8%#mo-L=xfbbb+*JlGghYGj5X(4GuER6&seJ`m~F}Z zXROSB{halF^bP!+mF5=LnzL4gv0+SbB9jEcX5YDLTNs+;}De{`SwAtA6&Qb5-yle%4%7jd1*2mEueU$nbMn zIu_1VDGV91uQ68z-_tW!6*R2BXR1ocFv9uj1rR;xnm;B_)&Jc2s>&lzt?ZGfW?dyu z4HC*zqdoG}mB>?gvsa$ViuFEm!%0ktRsC*A_!=PX(+nhiEF$@6GNfQBSQe{EZmcPV za1COwBHM->l3bNDC-lm0Mopqez2++{n_Efrct)fp7pDfo$YTwfV@%{{5Y1X6N%H3) z;m9#wl=xGU*CH|2+t(C{A(t)D^$2~)#wzegq-?3IZQ4KnMp69YCe z&oT_^oLg{XHU;=hslw9o%X)M#Bohr0$V8im$62$~qBuuIT%FITEfu3QM}pX_xZ378 zd)BD><_677yX3lj^tycXKUzNeM{3u7<)eof#iBtT`KTczZ0<8@Qd@4-cRBJ~b#*VN zy!(CjN5nw_REus1L)RevJ22~V00BMWU+%LRIrf6w&4u2SSc*XVr%0o zSPdkz2^DNC&R~s6R4h_$b1B5b9_FY&~j~zb^6!&>mGpAL#5d;nOxo=g zwk{uc{+(r89Lfj%AiuTvmrZ`&fAZ+Ryvz%78*NXJAosv$$J|Fc5AFTTeHLQeGgHHe zTjH*VD0gV$>y59xN@-S@P|pADGTWPQ5B&TWFJY##5Hi`@rANykp)HW)OSJNei__A? z+?+QB{vP>k4kw@e;Cs83CP8_(&$}glLcgZ?cMEO#K4QRGZvwGW2TQ6R)5g6cF{~UZ zKa^-NIR;e(&sK#jsc_61Ey>kY4Ka>!HjgTn&#<)U{a$AM!mEozO%`L4UlZ%sWcO=w z_%${9H97s7I{cd4eofs7aJ!@G)=pKc53`}#m=MRtAJj>XYK?kznZjz#?Wo--6~%ja zTnp~k?yPDFMK1cwF2DQH`Cu@@{~Xz6IKuJsL5ed8AakwxAcY}AcK`Vxxj}Zhp8R`- z;(Yo3eN#f=d{Bps{?vR>0+!Iv;@7G@^TF1h`QXB<=Yuf#GK3ITBM9+LM7xTdz zug?env*v@6pEDn9bgBK!qUQpn7RKMSO#bKzYF9FI05fQ3ElpZMIdfvZ$??zzA|G!j z1~c)MyNLgG%*iqLx`?X#b#z1N8dUk#&HE0LzWwJp-nhY}1mX=g32sBwiNlNKxnT+LvxxtNvTsg&nU%4JO8H+JRMdg4PaGZBCFJfD6g zEj84Gr)r$M#Tf2vq051*iS)P7`U9>=bXLlMF{NIt2WvF&v?p;SXjXndP@cIocN-`e;sY;$+u2Ar_+2;gFhOVi2KR`fFe}fPh^LMV{TUaHWU@gIORK~J z3+`8()?}DmNu}q#qhiw|R4q|#GV>v0XP4Rk~u;gqhY<9-IEooReQu1ykSkbiZL+hOh!)rb3J~6cJ6XWH^*J0hK zb(X5hrEuzeM2Z->bN-Q#InAeDk?B-HUnCuoBt2RQK{X5u5@E`W$A{0TzqE1qi<|DR z{XFvWk~&769ar(dj#1ky-?}n_T^Bn1&%cTHF{`>%hk_(ly;?q^Q0`N))lw;n%YHv8 zAhi(bIEEwhWfDVB9QzzT^=JG={NorCu`eei%{DFwdc69LRG(J4Ya;0OE%GdNh;Ne0 z8a#@TFVVG81V!cc)STFN?z#;LoNE`~k zom#)A^nOp9{eBZ7j}XOG_AH5pX z+Jbb@HV(x^&vWSxok)9k@SQg|#&tGAx5WR8YiIltS>MI6tp<~k#J><-1s?P z|8+OvS{a2CB=xrvK>q)-!bZj9UHPL!&&Nr<4haQm+$!N1@26Wc;NBak)cYaRvRE4$ zD2%Q`C4EO;5mxKMXd)#>Zt1SmR*I4;91MYh_FAyR0qJ#Mt{fqzGg< zAw3-4Zr)LGyCV-TzgSf4Jn1-BkgGag?VR>E@sc?1ZqG zL*&s4L&xTk5@)SzWve##;=vPA!$MKafEyJ9|3u3Tjxrzo+ zH^VJtYl}i3ue#l5ivAC|VwF6GX+3Pv-;^)S57KKjlDeSo?&seBRBaveMtXoWU-G-# zpFclwYRAFt4{XerERTBN)$w&ftX6*FbG3EdZ=XN6IjA+Q^NY{a)=v&@KfgI>&xYGS zgU{i|%jD7+hFegLRdW%LeX$<18--KTsyXG-bc-e=LfKg&lOI5}mRH=ZlxpQKrm9)(?lWfHhfGEJ6E>0j z$TB$Ryq2o2o3JY;@)dLAgKOI>T$4`3`%5XAlU)d3SCh|F=pr9<<=W~WSaQWW;@t!L zbk98h_+OfHTQVQL{EdHk!2N&vsClL0&u}>Y+LEvQUkLwh&-m`tKb(x>)`b&LhFp75 zwsKk?KKTCcS`$W{Bz26G7d6gSb+Aup9fpYpy?8|hEB#y|3UHcnU}=nYR0Xt*xsWxs zSe=r$vnt@>F_*H&UaA;-sd?-rpK+J6#$Boycd2>YC7Eb<(3vkxzFhzE-krO zbw{U;Z5e;Ixmu*T&oVSw;qLZ-wb8=VsA2BQSRv)usn&eh@)GG?B zN|DgyDv)kaA9E`^Ss!zqTAd@WsM=WmtgcS2;SP(RSLs9b?#zWH+Gu&`<(FQ_GJOo% z(-Z?X=Gd>)TCJ66meXYZu38s&cyOe@s{kaaGR3C}el~@5qAXc*Dzi<+iXyOg=RUpc z6-l#xidJ%&IcK?Oo9FQLW8*bJjn*!W(AQP-ww1mQkG;vd%@tP&5g>deh0+3Ics-PHb&a~8Aj0+ozQ_!8%K011bz zw)<^Rn+-z`AmR4-PJ`3mrf@|xR`^z72a#l5huT2^Q8$MwTY{`(<1WX)-J!D%dR2S*70H7E zuQG@vN?uvV-1t)qV0xBsLXwiiwDPuFGxmS zs<`-WaCY(~A4KxhWKKd*E~7lbSD)yEY)1KtFVv9Hf6#> z$#~FrWNRfZvbLw_^AtT*mnTWESZCGl^Gy(;hCV~lm1Ips(WS>PWVs7=ZJBBgj-|Vn z+}s{~587jtsbXTAs;LsEO|CIUb(1Jlk#M16X61hVDJdLg&1sL{m8~1fUuWo2MNIrb ztz>b$H}fl>ooWa!Q)IEBsEt|m`?W@sa?wjQqHz~0lDG!?y8D46XrN_^l%R|7wGUoy zF$@Qb&~?+E{oeNa+RFBXMypzqFK;Qr-ImbZio@y*W}iDyWQH*QfzR2~Tkd;hLohf@7XdkSt{Z^5mTthZS2 zLcy)4f-BOY;V#l{b7_ph^#{~hg~QPLizpq3bcw27I}GVG_N4R3hMsg(_eh?yxQdX@ zQQ%1RV-0$Y1!%u@G0v|IBFXXF8QLdF!uo` zDaL@YXc?vq_F%~jZtv&_9ETicu6iNcq<9y5-n1flg_ho@A?-{%V@ee3K6JjkIBw(4 zyaQkT>ep|iY{(B-AMo|=-<)`T*~S&WKJwJW4;v51Kd^p@{HfosdF`d88}kDej(g^> zvaM<1SDNczT>7xx`7_UsZ(82={a)u6yB^wzJlPZ< zy{DL#JKOVGK<~0ujsA5;fr|*LqL_DrV_Sk2grN1b*d;ANPtuWij-;pUM%{B*V+`5R z^Ab2Mvvjw|%S99Uwrp)y>(Q1w-U$vt-RMhN)LGrqe2n(dA6R-G*M}=qJ&*s>dR)kQ z11@A+DX}SPrb&}`S}!ipN!=^<4?|-pWI)6{m3dGrbwwhp`3`BQ7W`V(7T2)$U=1!} zt~JEJ&BlI=Mj>6nUt;A4S=5x5s%o40M{$+EF${S%MDUls<8@QLOJh@Yy2cn1Ou_an zw_gRTNB^jjt+8W#wGwqoYgC?noqv$48y{z7c4ByW_I56Y4cVlQ#-9Wzg1n}Dlwwhu zWNv`X%SUN%=2Wjc?@wVoSD_=%{!QMd6>HktN%2UQ&D)&24okmqBfUVpP404pzY}h> zFv#1y`!cvu8obTBlb$7#5c4+gz6EZSH{Rym8{kHJR(YG;Nh2?mm2&CxHXr_NxYIMp z+r0aya3kIjZ}aZmUU%N+-Nh(7k~i}ilu56Bi|NS_(L~k`-&l3C|Z< z7MAf2NRl?0j9WEsN&L7)ylVkI>BFUg{3MVLiFNZltefoBiFu32^jvTezHi1y>$zIr z>vPxZ=R~o3oIG=yJns}HFQH)E>Lg_N?~|odISb|K7o&e#p1$*+EKgrfZGz`lUzev7 z?fE~9U;Q)X>ER?#*9Pb_ zlLFmG1IU-1)u&Xf@6L)O#ugy`jw(s46&;mEP4^099m7fV5B|R>3R3&8ToF(ea<#s* z+STAZaC;ES&;W|W8+ufy?XJOU9W>Bs1J7OG1o3~~1mTFI8p_1LfRn9D^9P~slGSxk zHupQj5>J&KW2kq1E};5*zBa4B{816So)f`G-|vaO#YKwepoi{=l~ln%$(=y%em~^y z3oFc;!9E39_F3vJRgdYC{1c-~M#=+|qH8(1`y9M`epK%6{&{kD^;9*hiCeV&jFog3 z9)OB12X>=Gf`oHHA4nPip?XUcWio4GX9ta#wfEfKi0Bltweo~ITVMHv1OiN|-= zUOeCR>jQGuAQ_P|yN@LQKJER?Igi)K-8r0Bo=^Sa=o~8;hh>J#xO(92zJVoo8XGa_7goK1P#1(Ce(buWAV6O=F zlx#E1Z$A@sQ@{s|dq-2;neXJoo)bBz|3R`+v;_ELHr3+~2IOeOUcKMbKR@ zLHhsy-oBaZvj0_{ojCvA-8GzWKXJvPMP-HMp5wKN&?;HFWG(cC;|taJ0$c(2OKT3^ zH3B;PNs_>PZ{UQ2JWFY*W!=>@f?IFvO{j-RfOo{Ho%n&#Rg_2%%PYdSx#Z1ZX)*G} z%w~*gz#kCdSc_v<5<(n>=R7!=$zcK$kxP zazR~lWH-nKI~ry8fLt(&0)Sj_N;dS5vaqPL)>pf-!Y*0E&UwiN-PX8n!?2y!xNXqW zCkk)Zo_AF}mi3Hmy<^!MCh0R~>2`aQ^`ta0ZfCa?(M6irmF_l|V#bYo3<$)?-qNI$ z>x|p|R@uL`M#ipoA9pEoAZ#9cs(D;@*7%Ff3S(49^Z0qgn1w8{5*9i)30Mg{LqV_? z=^3ZrF8##&tiktL0>Mz|z7|8lFyywbKAVzm>&sAZ47mnFq2wA2g}X$d3;Qt?D)RpO z`3ayQKo(%&WC6r++(G<=Cli^<2bqoq5Yl&(kiJauFnBH^PG0WWrQ{K%XGfkgppDWq zL3%oRWYeLww5*FNwQxEm@ibk{XAo-r|A){SuBo~M9EUP_&5)MVdRxjab%zU^@Auo4 zXY|U^(pBK&cWNCisl}?J(Gkg#FB>f;88!j%oQFo~N>%!nSCXpVlRh;_q+94#LvXl6 zFPmHNrs!yz{5#IIT2%)D>k(TNF8r*k! zeVbPBzBbu!@HiQxy-!NLcfv&W?CZ7u}v*o7f$XJEkU`Ev1l3QG-_SQ>nJ}gXfH8L`MZYfho1V^kvb|P zx~&nHL__}jNF69odUg_F|3i2kl@l+Hl&@fZG)P_Yh9AAfCJ`=ZfSweu-2AP zuiaw}E0!Oyv_NaOUKuWZF`~_448i6OT7tuljIXg4$11c>qcdG^&0G{>C|Bp z$F7!Y?7I;~BrCpgEAgm6$%d&WfR+SPi`7uveb~~{P3hoP!0kA!Rc80&cI@J~9UnTB z=RDkwX~gZQ6OD#w^&l8VT~QXdpQu120ppwZf=}^8qeczK-Y}D>GJzHZYMjq$b0X06fvjx|8^C$I#}dKmJejy-pK^ z9kWQp81K75JkzP0!PH`PaK7$S>}qd z5V%|OZDWZe!WE_L05~GA5l6&R_#e)cyr!G!21mp%CJ7t`yE0#1Uv`A?6)$MAF)Wb07;1C(cKvZB??9vLN;ehDT2%<;) z!4jow2CC<5M_{Oiq^&z`nRV(AT-&uZ6gB({-+Z}v7MKQCh?3G$=sWU~jmR5(cIy}P zw7t+fBwC9o2a;SZiS;}6zK-1H2?w=-qMPcXbz{L1aa2!6~$xlXO+u4395R453-!T9hzIIj(B0pmmNn$Ksx{DnF8R*0D$ zpe<+zFGBrnvCThcDe>Q<3!nxHqQ?m$dT7KqN$!E~smcYpcH-1D4qg%OX|GQ#2dAbO z5^#013Umt59dx&PX}+qSAzFqBbP7*1>0HrM?zgR#th5;JK)J7^axWx0MZVVV(zN7C zo&~e!;{K9s`%r4N+pJ-dk*BIqunreraMh7L1^0BM^{!mUP!!xMM%d*>C6}=UrOn` z2#O6?o`%!YN`|hYLYQ)QdvK$R>cFDil z9kmTZA4$DO65j1kREDf#PQSC4-?5hX9ZuqRoFIP3cf{{7M-soIgZLd4>xtiC4kUiZ zSH$nIrW3zoC&%yjBk?;NSd%7W(O%8(80g*n{yFUsy z;&<>i@9uyb@jG~%+=<`uI@~CI-sZy}f*U=9yv@5Gha2%bc$;_s#_P`8yt@y|E*gHk z&AZ3Iop>L-&AY>i<9*x-8+CVv=Y0sLMb~K`(D=eH(|E`qy$dt{0A7fY53*zUPxC># z{>glhWz<%#^Few(n)d%bA4E%hkmenp&HdLIK>u+JAiLVfqfw*LmC~~v-yPFNy?7ui znU_s^1@Iv$H@Gd_*JB2tlQ8cQ-DVlSOjV-nazdvG zA%^+{&|A`&pVF+*hk)}V>>m2Qo+kq;<(WQe8=$J8zUA5~7QR-Ij)7&@P^;id+tHGW zslVMAeir&3T7HD!104zY;1xrPCBEpdp#dLE!&kX>L3M;JZ4cN+ympFSWtO;*En|zA zl`(Syk)JMnG;koL5#d`-QMJe%0qg`O)^W@nCu(Fqz!DVkLE_rED$|EEcQZNq-?@r< zYEzd=KACWjySfU(@1G_=!YGonJGkg<0_l^mrW`d+Y80oV^q^c5=Erp~R5~8hru67w zpz+X;azQ%&U0jd>2p?)M;bRO`Hh}QqAi{@z9ta<`Abi*-fbby_#}VP9$wTgeLPX5dWM)%sECxLGw{>#6o2t5v0{`BD=^LRZD!(|MM`p^TM9tVA2Jq|N`e9Z8np+Bd` zAw;N5;aK#`LMjIII7lT+pZpocd4Yb_~eg_&d~Qg3$N@Jq5(~ zFp=(vVfD}*5eD56h0qgYGnuHM09T5iI5rxnlu?4y#Or$#^47wu< z?c|UQhfm;80*8*x+FjO(6^+u*<;_s;hM!9Mfoh88VRiIlr=Kk@g)LIDLD%AxWq}2v z06oMZyANOS1P$b(;47ZBQ5Ox{+f^5u6}3@gW<45rIMLWFGqvVyIx#CTc0DtvZp*v} zCy0k#G(=q#ee?tUez7SFzyG_Ler3`f9kTnJRfbU)tWhNk&3;e^dtAMZyrxMLa~vg> z2K%2xQAJOrY%#>u8=_(tyB#jY{ZaOcC@7h=XWe+wHLTI4m>YG6`o@BLoU&t6m4&R| zBE8@A@Ra2`+jhSd6y0eEmOZFxckF5or$8n4R%;?O+wRiK9*gQW%#}SD(av7-!Dp6J z@X6e5;z{kgOV;r_S|BBB*STGjnwk~jgUT0l#&X&D4!`qmzw_OG=NbR=D*y9Z|MNQk z^Lqb8#n&Cm7fq{~TG23~jey~@kkfO~@3)ARdj6N=Ta6KCt%dW~J0J5I-RSe_Mc)}0 ztI|7dlbqs+l5)3nPxLkP-C9GJ_NA6A=u0hehhBqP;=Bg6q|`8Ub$@C}IojQSyY7pR zaSwwfQ#fu3t>IP@x8#?JOu>Up-3STu!U&V3Q2&jGU}Dm=x-{Zbt*%_LP6g!{eK((a zRXJe$DSgLOCv(X_W!k83rrCl=ex3xIlb?sSaom%9v!$Mt#16&h`%z00`-r=`XFCFUi&`UP=&`XjR5(xc7u1o26VbZrw;Zp+oN;Dlhp;C*g_z1XsK_@qCJzO5O%f7J!?iNFQ-e|=Wg8ue;OLCHCB zbKnBM#FRgZx@yKw3HJofQa*T}{*q;;RW>bCd%5xHZrf8)s*SjcN9MN|V?H4tXCC-C zq-2GAykeN7ccEnE(SIEuCp+StA>!hHF&~F|mT>8sqMBcH>UJ9^cQjW+=WTRoGQDPA zZnTuttgf#LfL>Gam}2$uhKSoy{C@-IrP6g{kNi7tw8ZYK>S0XW^MYz#GCnyxN5yR? z_wqY}q%YG>bWU7&Pm^j^=&Tc&2Rp_#KvBTjGBc<#Xse*MX^l=r`N>JuJPau_ij?HrEi++E6{GsEVjBG13{qHc)V$Obz)o9=sS) zI19c?BilSi6c7H4c%))lr6`IB8KzmTNa?K(U*ffZ48pmYHMq7#_AK<33@K^Q5KF)o zA$bGYJ1!cXYa*6_U4}=e1G-&`TthoSmN{o>^erhOttf3wRmB(&Yr}9Luyu@hI9MCO zsbFoqK&%bhBa)F#q)22;aucUW#3QdA9+c|_561hX8-AJX207<#y{{v-BH^IJPc*qM zy0{ChnNE&16EL{m><2jhLjWv7E(W7~sMz}je*zXR6Bjuy2~ z*bcB}x;fU2{$_LYcv4eQ&@#SxQit-DJ1|DNAG|1g!~XcUyKe>ef&tUSl}X%- zlKIv_SBRw3=_O3md=SbL9b`X*igI$9;1erEIYgL92JvER$vg3FMi$ygX3a$T$B}*x z+g9I^4$?+a%(FMP-r3W7L++A{vKVH7y)lZ|8=s*33o4R9m6!m^#RpJ|q8dz;i}E|n zS+j_6G|}6jEq^7YC|oCPsG6!B9NGq@DB8hLisDAm`Q1>CqU#tOBW>ddUq_ZmMjGg@ zXLPrYaZNM@T@;O23li1Li>;svwI@^>!n<3v#__webNQ#FcxO;;tEOd!WF^mmdFj~$ zI?`WK63R22!tV}=B^4({sExMD`KX`M=Fko5<38hO*{FfC{%@v$`VxPT9W2U&Z)#U) zXe_ae&b2P^w%4uUP&^S{YtU8eDnT$|IHHQ(rIw6z5>aIfPcW%D9o|#!zLADIa#bLz z816v18^S;^Ii!{s=nm>a4NJi_x({5VQ&q$@T5OhD2dyKfP?3%=xF-+x6x`F(9799T zR$W}+7>a^pp=E?!C~b!Fh*;~Ay6Ab&Af4K3N@uAZ>1?NT?(Rv))tk;+({#f^>#Cv5 zVi;+qp>!URRt%$b?&e8HITwSDPq`C?u-U%kRb$esMo2Fip^4;*60# zl#}+|TR!34ay1m3#4S8qRiKP=NiX@3;uBRkrzOlIZ--8kYja+9b2?2p&WnlTyqqP@ zi-F_3I5^JB55#$4e}wZg(EG3Dznb$B-jDNgaAZHu%S#Xc9L|fOp_lVwdRG4r)@kAy zb)D|dc{%uMf6hzsn|}-Ew5n(^%6tr>OW-bgon&1T$ah|Ku&eM>XuoqRguyCa)3HiV4Jc<=MKGH(4` znHjGzroa2Y?`MQbLNoog1ZRwx9-QI-OhQKC+A!#CHyLXdpU?3BC?@@wcx=YhmyTy_{?&^a2WS3oMs8|SM#Sv}85@^s zGQ-DznsMQ;Ntye#Oa^W-!}@tx#-rcoW^AghO@ClXYR0+MC(}tE zv9u_o`!`cFroQ@p`h~yFLmGS1Z+T>AhO_nSjJMMR(ii)T%lOj|pWs+L{p5?u4K=CLm{Yd6oUFm zA*jC;g8EJ&s2>%A`cxsPe-$G2$+_F7e*UnxzjX8VKCZsl+w`2x@a~>7{IcF7uidTp zob$HZ={e_Yz39mpI`40DK|1=GLH&$hKeMl&@$F}R-OqIQGq3kEf9hwR?PuQVXV`v* z&%Wn=@&5N3{+!P)e=hYJ{+!P)f6m`Nf6ix@KmW7W@aKGX`Ex$I{5j(zk;?rPJuGw@ z+6oN~duZv6x9PaQAvfNgwl6WK#eFJ%e!V>ZM zBAW+!^X`-!3-C6%(>ZU`u#C=moAOHMyiM7obKa(Oh|b=}c=OC(ll;6+p7Egs4qnhb zQ@EZok%+;X5lisXW9X2A(>3Xs!t>`iWb%PUz!IPsSO^pXMZn!a0YKBYr2uVR7y{e~ z&~|}Q0MYbE0z}mr0n7!=0I5;R18xFn`@n2q0dNao0mx9kDKC7!$gRKO{U|JNgl-g{ z%7NO1cUa5^>#=_TW8UUlA9w_~2cRt-_W@R*0(cVmHP8S&1w0M>26z^D9(V!xE$|ZX z3h+DNHQ;{$2e2L30Xzfj1fBzS0WSiLz{@}r@G7ty=y>~y$?pM2fcJr;zz4vGz(+tQ z@G)=<_yjl(dDS$V9$|~IlC9CyMd=ZG z42vUz$6VPs4F%j2o;oP5lj8lI8?zZgkJ*UZBzO(^aq+o)Oym195xn_h2HhYZoK`1f zQeTO`-ynIQGC;vj^ZfDtEW;iYqQ{*N2T$Q2YxMl_;TV=}=>xBaAe;_P0yuH+y;~evG*sK?J;F3ZkN7g+*qj1%`|{WM0TyVv1sBU}jln zMudq+o$r6n_kAvS=Gp7=uC?~s>-MhMYYnjts%>i=LfN*4 z?Ew5+;BF6YMtrCXZD51F1vw~BzT*a|);s%aI5pxC>L!=m39I?&7CJ-kWSR!$*flVbYF|bVH zDg(d2m8VvWSPCe}n;Vq(q2RVHT#(_mtpL=Flw5Gx8Z65AAJB2G}4LY%9xK;jaG z1rt{(ES$JOVNt|fAd4YZ0$CifEs#whP6%X)#JPcNDsf35%OtJ}WZA?Gfh>=h3uXnx zN-!%Twgs~d#0kNylsGq-l@pf)vkKy>U{*=o5X`EHxo}oXtc0^O#I|r&N1PDO8i{km zSrc(dIBO=Z!WLWNhH$2J&Ri5TPz6w;n332P#Z1HrQA{DujbeesB~dJxxGIW;6E{S$ zC}J*##SkkoERNU~!zK_X#IQu-+!!{MxFm*U5?95rY~qF(mPgFRu>xWxjujEx;@Ae_ zgg918oEyi=iA&;G1#wjzt0ZoSW7Wjm1XfF|Okih-Z4+1>al!=FNSr%?H4&FgV9mr; z6Y!n}xM2d*6ca9y89ZTE5}A?MmdH%R35iT0&P`;2#3hL=n7AsDg%dX%w@6yVkMIm5!*7^2I7QFR!W?k z$;ydKGFb(2RVJ$>ZpdWS#9TJ3C04T88Dd*Dt0PXxW{t$T*{q4UB%3u8S7kFs+>p&Q zWt+=m25R_99>Y(6Lq3n0h!gUdLY$k&0*OoVSTJ!_9t$UK$YW8&Tmg$ARti`gv8{kj zAWkS?iNv`DY$|a{0m~$=Dqz{f4FxQZm@8rh#7Yq>BDNK=4a5mWtduynh?NtU6tN28 zsv=fN+)%`-iMb7|mRQ-q&Jf!+usY&|4XlwkcLQr8F4@4EiK{j+t)pw$z_dkGu9O*k z;jWZ2BeAWNnTQignL?af$^wZ?N?9;*RVfQ6ZYX6@#9TRxAy&#+9I>sOO(0GvXNknQ z}q1;k1PD)dlP{|sJb1PXBaY-d>Ca$VvjJTnaX=l50)yzO0zEaJM#I|Z? zB2K7g3UO{V3nVV7X2HZ&)hwL2p_)YzbG0mnSgB=k#I{;CfjFU-B@*Y>vZ=%+wJejk zs+MIFH`KB`V(ttpAXd(>B4XPawt+a|3@athJ;Tb0OU|$g;;J*OlDOdvt0v~^SS_(q z$IcMj>R26dLLF-)&aGoj#3gmCnYgNsX#-qC9plWfbB)YEtTZwsv8|Drh!Yx_LY&*k z0*Ol+Suk-`BMT>PXk<~uToa2SR+?BGv8{M4NWYM zm}_PQ#7Z+OBDOWN4a5n}tduynnUxclG_wlgs%BP6+|bObiJ@%O5-W_IA+|AAN1VV| zBXKTcO~fUPH4|4sK_hO^hC$a{+rTjX!x$OHe;AC73B(H1z7W6|r+pECu?piq491QI zVvHR`TnsZP#Bt1EBc8wvnmqc}T(VDPh7#gTX3*rbnL(3BpF_^*LyQV>5i{C|H!!0n zk2a~vmouX#U%`x;d?hn#@~Ep69Cgs75T9Wt8*v>oY4UiMntT&8Y4Xhs?_@=`ccG`D_-b$)it2a84>F+>2xn26e3WzUXTTglA@?{IV=EIh$pbAntURgs>x#xpvh;lshWH?o2tp@Ip@Tl7#lVD zB9^JiZ(y04d@0M+KKa~||@|f#r^4Y9Flh1R``HcmvNR!7LK$G9ViZuCBR;0<7 zvm#9%W27cu$%-`jYNxJXtYsTCd5j&Jd>z}M$v3hMntT)6pvj|e)#Mr5K=QtvQ^)W% zuu_uuh0a0pz9v>m^1ccyC3)XKR!Z`|n3I#dZ#XN} zvT{v+Dl6CIF_+Wivst+&pXbzRd<$5GCXYFeCclAIX!513LX$6N6`DNe0GfOytI*`D zow|^3EvwYzF*a)Qb*xg8Z)BC4d=snGiQ};5(uv&%O<5;bY7;|z>K9SXG@>5x@CZEY_HF?Zg zHTgWJ&SolLXEgaDc1DxOTuzfOWoI<`a&|_OuV801dCYY*`D&-GXR2j&n*147r^#au zpvgC~I!(Tb)oJq0tWJ~17)kPG&Z#4s4Xlym%|_Np@@D9cByUz&BgvZsStH4tgIOcV zo1t52@=;FR(j3E@6mpMaO*Ufa9GZM0YtrPWvL;PFlQn7bn3HSrc}|_wT)>(&`6AY= z$z!gn$(OQbO}?BpYw{JWS(C?HPLr>8>aylqrYY;@GmL5SnB!>jjf`pXO^j*s&5UXC zm;*rGHTYj&0Jy#YfJ%FP0pR)q0L{j)F92L$03faE`U1fJ_5}buWcM84`T~HWpfs*8 z09;=Hu%RAYUjVqi06+@V^#y?I3jmq|{l9Yo05u#3b=l~X46WtUSHq+QD8O+gZQvy1 zo*so!=jSMSd%twPclJgkyfj1adeA!`ZsYATZoA%P-1dd6?cY+a?Vp#oXUFy(4DCGh zl1>mgezD8AHf+hd3K| z71kQw%2x3BJ_M%G^%u%N!*fE4z=?qH3?Irnee@{7c6h_70~VG$Vn>D%J3V}`E2Aq8 z1Tf?Msh-$D6UYT&55jF+1Q*SX#M?pR@kPrtylJ!qyF)f&SH(f@ZKU!St}9|4!)NmA z_``e?uL$=FPYCY{W^uZBMD&*)lLTF!&gkLrxL4oVP;WTWuCo294$O13*M9HOo%B9U zz8+o2bvxgEv%K5yhTbOvK2{$H9u>B4;LfO_BNp8~>%Lp!Po^ej(R(J1+je@4PjZMvXU&G*O^fj3k{{Yq6e?Ww7=!ns= z_uT(bLUQViS+nOqlDll>qiddeW@E|bt=o3)-hZ&_*ol*;-#b^=(D-@NH_bmY_x?3w zXWuTS8_lxP)4xwZU$vh#q<`3e+am_sqK6J25i|O(*tl``j-T-0!|{oeQl?Cuo|c}G zHD}&}g^O~QEM2~0)#}FzpD0?pZvBSmiZ_*(ZP{ABZTrrO-Fx>RIC!Y)=&|D`YEGUy z{qB2b&z-NUZ@AQW`SUAHSHJnL`NyAsW!QlxN;(g{phYi1D#K@RY zqwl=y?$|MLW5?Zd?|tL%pYXtg4?R3FJ|Qt_QgX`VDXCMZO`nlAGksP@X4dREbLY)p zkiGDcMT>KCm*g#7wmg5u%2frcAARic!ZlAkS@hJ}r`J8R{@D#1pL@QzWYY_!o6GE5 zUfk*^e`(vx+js2TRq@L1J$v`jlFEm`d^hx8Vmp}Xbiz{C?eRcKgZ@&HR`{o~h{ORXke*Fu*t0$p_ zc%ohSV(Hn8KE@yK#i@8 zQ~4SEEPggWpMQkU<(Kg*`A7LR{8Q)wHu5F>X8uL~C4LA03cru9L`$va-{5QcxA`;t z2mD9;1^yHMGyY5dYyNxwC;l(IAb1Gv1uvnq&_%dWkcFN?AEB?%PY4mhgxiI|LbNbk zh!O4*;?UYB2oDR1=wqe|X+nlDM_3>%5|#+dg;m01=n2*e>xJipO+uNlRoEu%6m|>y zg@Zzsa7;KMoD@zA?+NFGI-x;m6h0T4gl~jq;b-ADK@dH}_M(^AS?nU-D9U0_v5(kS z>?ekZVdCxLU@=-8F2;y=iE-k6;sfGDF-e>(P7`N}nc`eATU;#WiTPrI__+9___X+} z_`LXnXcryg%i=C^kNB$i8hWPJ#W%&b#COE^#Sg`g#f##n;uqpq;xsf|IEsuzK=H2}RLLPrL_UN^~g8Gm(iKfVrAM6~w)iY^O zR8rZXRpFB&Uyk}XqC=lW5!r|BgTlQhqkp+(?t6GeWZ;#=%A*T<9Y{J;e4xO-G&0kB z<$*Jo&)mN1iNb-OW-e+Ie)UEr^7zwR2LCiAc+mbOj}B@-d0OPlH{BjFZTRwtKwHJ2 zJ;RdQgdaQpV&qT0*4HvVs;E2^+56ztpPr7ii%qx%BEfg zn*WMho;)y~*(*&Gv)Y7z`f+Qd*?-*N=@SA6@iT57G%P1Oa{8{|h$_>X{gjr2q2exik;^luz9 z;b70{22Gyqg~588J8j}WO8?e}Pq@;^i5$7ncJTcdu4>PS(qEF<)RMkI$*IJ95U&v^ zu6YZb_uoI~eJu>x&rh)(?D>~IE&lTsw6jrIw`nc!zW+5}9&n|R6DivR4z{1tS(7LK zU7laN{G9LnbCrKi zijCr-_$Xd7#FS6BF-1h+)hH7e7Upyb3tNo8FwS$ZC|fOfsV*thgR8+PQcuLW?{%I4LuG=H$Vg zrx)#Fh~(r@tJx#e$<|Pr8xRo|y4X68ixe$ZvYS0bODH%p6cHc+85XkRW3biaMQOE$ z2c<&!(~?IHa7`&wI(QY*6X|DXXNxlDi3lP?L%GP5l))(}kz7QID2gc&oFyzJB_+(l zEgs%Q?lOF_lRdmO|ICzyT&N}%%E^>{Pnnx%MK+P2$thuSSjuG18^tp`WigjDck$wB zNl9GN%OV0!GA^FgO@&L_Fa&oBNYXIG6kTYI*!$eYgh~ATf^t8ou z5g#H!T;z@{$lT(jVAE)%Cu`>?$Q<3gHQvU_v@ygaa|Q~0%`i``Y{)^j4#soUdwAgf zY3s2ZDkA*>Ryf0*?2#xZbC?Hii5gNGmAFOk5tf#M{CaZq0AF$U{6n#o*#)(K1hrz7VdvBRaO*$ zc1v(ae(;>TdG?9q26%evJv|5D>weT~fGlw0(&*M;oX+I8NE8=g&rDb!Zx3zAO&T0F zn95U*q#Ep&UwF(M7G_3WbBc2j(a$Wy@6$&_goU9;fvHIeO{vkYBCS@9wU3DCjhi=a zj*eL5a-vx166qofi#Ri?VFc`8D|u+|=TZO;^=`0-_}hmc)}1|jmK+e?WlUDt;HkaY zhv(spk3;Gy$lQ^n(8?>#--_UDI9wHvCRKb`-k5{B?m^E}Pc?6G66T#wHiw}Jz>ad! zI7xF(qGp5#9?C65^9v2lbk+u>tLGv;WDk_Di#T}A>nbf{elW&V07z$0&6p<2PLVlbak>X@6KS_hRBe0S`7iLD)#d!>2=r6*0Kn~@D z_L=Tt^f{V6RI4Yl=1x7DH&th!PiTg`)(#-AG2~Mgc|_3tX?DG<9hhA_ILVAEME=h9(cP;%;zhm3 zrX$o?+JugV06RqpMg`Lt_wRIf*|o|-H6T7>&Z4vk56D3rwQ7KqA?LKancTJZfC3nd z?w8zQzh|rSkH!K5nby}%7jiVT6U6o%B%NnR551Rn4xCz}tu053gGL0`xHrT(mbu3? zVoe;>!gy2B`HF{&b6WH7{3z^V5_U6P|69%faebGb&%e`b!Tz`%z#gCyI0n20ya!Od z5QScto||3H_$qsxub!E8`VhvKDl$WAjCx1G|Ua^s+DP<)+mMe&il zJG>9B$(Z0zTMH;3bRTqIH-ITD-Lvd^M(!}=M{#y_`BQmQ9?4GSO)}))&2>$3WT!a* z<&WekJlU!I$&K0y$i84B-@E6OwFi^7w=kIRkxZ^AXDMgC#PBVAMe$&lQSaG^RD zg-^Qw&H$AmmD6B^AUl;2`BPqR1StPhE`tyg<-0pT?qsKYQ{A9EkAV#3R{`Ah#qH+j za-;i-MeZnnJplzEKe|UscMakozg_^PLt!W{bf3Ke$}8oC@=A6JNB(r*0RZKd?uGJ3 z@dN_oPT{GX$d1)B45O5jYo=FfTGI5{laiH)8Od1*(vn4X$AxcxQv%+wi^ZlRBU zQwFzhKRYuuZL*S?oGJfsqp@&o@X=WO%X!;nY`(_3y!Tnt2+~Vgdj6oEAKRgDd zuj{DdQ=(7S+g_JC{+|wd+L|mruFzkb&^MF^2kN>O-lVXpC|9#}tPA6ojGvkNnAx#sIQY zd6FCXQ=d%N6gSzaPo#1pc?wT(DxobpZM4dvNAp3rzhZe-kUR3FHV(shq9 zG_JVkGjxx1U+ytR!8N5rVQ38T1NQ`4kB4Me0QY!8V+hqf8c(PU$o~JwcoICIbszk% z9ZzmWpZi}KPyUgCg5v)DKtUb1b6BL&?6x)`g0Gm~e>7a& z`nQIQTQM+cBTDFP&SB(l4;O9p6)WlxnSXA)pkACq>%iF{e`CC$c@NEZ+|o+=ORDV~~4XBRf4$a&wP!^gL-iaO-zBl= z$*ZnwlK;OjPPxa@zPMj17aH@Z41xd}f2nNTVfwk;S0D_P&n*DSkvoljRLEAWpk#^IcMvj&N(K#Zu8ngbkg7x1wAhsm0+7>J=BQ!)JUpxRphqWK${e{MY0Yh!8a@w6S{pi!27eV*KDeoJEpxziXyhU^r^ zZU1M-4C;prkf%P&J%1)Ur9p1wPkJWxVQzo2Q<~)VXZ@CY&PwZM6rS2G#Y=W~yTzqu z{>AOLMPF|-Yen0lg@dG-(`P!>`@g%`&>tefRNY&ebMd$YKKJ&{g$< z|4iv`UEkd6bN^g@GvLW`8r<_YdN$P8l8*BC>KxT^(oJYAqdG`-KY$F`DW2Bz8jAD3 ztB!UvkhO)~&<4^;FVZ-D}0<@78@OEz)1<`7Lv$P0x|Sle@c3lUwUH z{U6+(L;h_2lE$}SQVClc{56g6pKkD~g2hOz*d>QdiqI6!!OFzoP()|MDm#q|r! zQB;AfA5C2M`-(-QQ4uMDyj={R`RYp8q@g7xy?$eFCN7 z?g!lc4Y|Af0di~I55TIK|K$GQ561U4^WFck{lTAh1TD?~&!!pf$H!R~){CuC_X|#j zY6U+`CR*dGN80}RNp1fuKi2D8qwWX9*9v}^gto?4*=_&)3~m2@`|UTbHE=#K*9I87 z+O>@E&NWw>H@U%SZ*bOQxO2ktBm7$7nvXLCJ~2JM2FtGq-wM}!oS|Mc-1tRnT=sp@ z&>G2~JXhZu&($CA)EXOaJn~a(9Qo;Zr`DJzo$A~gr#ip&S!-w$HJYrsfzm;5(SjV8 zaX;{xUE2OF`nm1j1asTJC%_(fisz_NZEPj@U{IZe|uv}tE_R@fFMZHI7yZ*vZ_9)IvgLm zr+&_0sQfzV9!bLQa0RIksbzM%eXHZ#wJ-uNcu4n3X1Ryl!*YYApZc)+qT_=We}NZy zy>y@Cq0{Tk7GKLP>O{5FzS+LTaaIfCA?O88ij{7ZyUX1zK9&G=y!x`^;}&@d`$KqX zjKt}9-Hn#cmO%A>b(8%C`!+|N76zNH1VM_EOma85o28SbuR1|}$?;K(ya%u6MQJR8 zi8_-4eziv=h9fhb3S62Ki>cPq;qnz3NN$=|YL)Z7ocDz60+qO_aQJ z-nzbi)3}?|`_yuKf>7)@rTKda-hx3IFLjoEWJQft9rgzWyW{Vrk!-ZWYD$K z`Ke>nt@ae5%<HBQ~^IMd=s`S;?z`3}+pQhQwoT`zU4y2bvY zz0~n;OPJ1rkKilym%LIXWobJD%~b^(RI~%S|m$|-(7wc_E+qC9hbFmU4*WJ zQL;+ynXu9Sv+#qz8LL`IS zPHt!6Ej#S_LZ#!&7XL1MSKdbol{)KubOyY;xZVDoaKLe;#s5a3yI__gBoA3H?{Zx9 zG0`q0X^>>r_0S!(zh>X*XlMyb_k-WN7i4L$B*{8?hvS0JjeK|BB1OV#(H*c?+P6FE z+k}?|i(rxlNP;ZNdmNwon6byHn-ngYblr6O?XTK*I~v=BHw!(48>QPNPUhuT9H02e zyoK*B4U}%wb=U2+@3U7pF0~2YQ|Kl5OGBl>a-){vVU~{SAa%Jt-@eMR-{~(r$M=zjOA+!Qd64B+iHfhw|J|O>QehM`wGWi&A*Rulb}d8>2`UbJP>cH8q@*mlCr$A#~rU} z{{Gm{DOwsJhs)uXU`u=Tb~UFgx9m|z zr89p1Ccc+6MCz&Qr5j+eS~{o$)f{`SeYN9&=HFMiSx}|XQkZ<3EUEp~$I2cr%X93~ z{OEZF&~7s6PD#}T>2&I?>JrD!7C+5j2o(BBcS-%_TV)S5OkG{}XxXFoWFgnF!x=w+ zGk=S8x71H}i%zfJrsg=dw~_BB+#&=>Bcu=+FTtu-byZnGS%H1EJ>RiM3#Vc)Tc9*j z3eW}Wcr{pE?%3T%UKN6bzEX^2m4jtL4N+H=tt?ySc%>ywKmHc}W@(hvS9h~cR72IJ zj*1pP%72IuD%`3|*7cKbk#DiwWHGCw)wN|$mp$uvQw!H$H%Zse(#O(6y;EIlf7-s@ zaiWd9RR|Vt(@oZ?a*!Nk>5W0)F14uasj_DrZ)o8{u;(>Qm!eZG{uYaRx4O=8yp4RY zEtc`!v3WFImgKsKgxfoE=d<4 z2g-pKKg*43j9OT>rfj35wk1p$e;Xg7OVkBe6iat?lv-$CW8dJYY4H!|Z|83plGQ=F z8M;35O|q{#RDIHMq{V-r5Fte9rt5A{hpErmpSM5ZsA}<}^at`0e57us&R^~=cTtC{ zYaEB$_z%{l>AI?Ss2l7X?S+m*K7;td{9qwP4cDdWddj_IqiR#vmpxndwBvP6Zh&rz zu9F(2uD3sHU+XyL6Up27fx2lrMfQ_BtI_JZvS-Ska#XjZF-Ta?->#dg^HGPW>+H|i ziyTK={3w4>d^A5yH(U3xJW-x#xzCc|H_MOQ-DZf8!w=PE>Eiv;{bs0RgdzM;{tn$- z-GlN&@ir*Z+Y3g(}Mi?dBse43suY8}J>NnqSlKO}+TDMR)#c!S#euOYmxLdbaH%`7s zp5~YB7sHR@@6s*OP4!#gH(8yc-X+{EjMUB7#mQsk8GeuW#j6SGXzT|ap_`|h?zhly zv~Z^|N|&vRmB+|4{TBNrs?%ETmGXNRe>WeaTcAtxTjZCdKGNeJ-7?)>^4)SQc9f3O zE!B;d@09Pf46`g!BZcqn&GtBcEPt{WgPaP#_Do( zF_vh{SnTy4A&-bB|;*f#2>X6 z+2f@IX@Q(APr}~UD*F+8qLd`fljqAR{AB)+{jhzyG((yr&y}ZOXKb1@Q_7NO%TxJj z{1how%8)bV>DVtjRhlNH%d_M+>?iDL{7gPenk}WtGv%3<$(X%fGwIk_n}OY>X_ger zd-nJ3bELV_ba{q6!;);tz~1+Cah5pUGRcxI&61|d)8uKEBuf_d;?BW-)Tx$4ONNvw zO_5XOR7-+o4nLQlVu`n$vcGMg&oAH?N{>h>@??1)&$w)UA-_mkEKQP=-OIUJCLZAz z@r$uLb)Ga|N|cl2#e62WK+2ZlM%5loeQ#6{^nhCR%y#TxNR^E<`>d!T&{{{;Ue zcKa4dPf3r-kIM(tO0|%GKzKsjDTdi^vp>nl3v0w3;#%oxX|?>Qyxaej|3URNb&vns z{{8K@+MmWg;X-MRw8A{9Y?WLf?^XAyMSPO5R@^Oy*hB44^HYSU#8<>8q$i~n@=AHX z`l`B?PZf&93R01{XR*t8gS1gvYL1qc%lYyF|M&bW)K^;aybimv*NgkbW$>@`f8T$w zJyN?*k|pyD`jO|P=cVQ57-^}zOg`v;)_=FU=bF5@SIjpjNw4{T;2&WhWZ%eV2+w0* z^E&AnDaRZlEs^u&z5b{Dx2roenGO6*;W_c3m}~AY?el-f|91PpHt9Xj&lWa{mEwBo zS!s!Ru#_X`%KQD__1~%Pa>|Pb#5{A9^s4_E{{i-J`wQ4XT`Fyswi}H>2j$n~)#{@y zd87OnW5@XpW2c}>^IwbyE&Ie0@vvAX*`=Mv&OrywzZnn6m2#fnQoqO4$2GZ4{0n@s zcu3r3^a*;+%#3#I&n}iqqza>N&|dS8#{KfE@~f6vmKEwsEqp2VvzLj-#8-?r1no2b zWZZ8_Z_{4w{1$$*SS@anUXXShy9Dhw|7_eV@00ggc34)a1!@_eBb16q#XZKZL3=IR zEidwUf&)9k%cYm3y+%_|h50+F@N7u|6df}5VuJ$OZ$yC z2JJRC8!O~j9)hrC41Q@8Oegx8Fgpk3x~+r+nnUnNvXuSms4 zE~wmm#kfs=S>B*-R7;F}&`ahojl1{?ez&wo+GG@hwwarZ7NbL#WzPQE~R!6*j3 zZ2qcEe6R4k`R&pUsnjS1Z82XqZj~MKI`tX#74Cqz*{BP8(fnDP@O$_tgq_kZsm$mR zwAK8%af|$-yk31)wHx(84)Yhr15%~5#b^jBHD5B8$#%I&eM;SnlLuZjwhP*9{=|4t zdQIADY#&r+ZZww4o8`6Y)2hSRA;@n2R7+>Cv`;EGdIlAn>y4Y_7vw^9jd}p*7QAHa z7*t}uVB9agDs3}*1#L1n7>nf+`3dz&^<|@X&G%Z_jtx!0xR(jJ>HKo?suq#FwoZ@i~Crd1{FSchm zHu>~n!(03)zvsB0xexjCe4X^MbX2aEAFfos~Y2s^lYbwtb;}uEXxriw$Xs^CNsKP=|9YYK=iba~x$pJy~>%AEj5v{l=Y> zK9mm0hvje7Z`Jws1@_sF%|3oCiq-KS^XJ8n#4JZ?%N+ZX^ojJF%;cl~b^bMKtvbBy zj+VMl@zvwRkOrKZQSJY+|8V;q_D1Pb=~wwL@-hE<|C8!l>d>-bZNfM37x{Yeg7~`s z1^=P;VfK3Ig7mZei~Nh_5z8U}bNd`mQssZ%|AhLcYAcIsk#FQb^{wa<6* z_wq^q%l^mI*VWNwcecoX&VRvQ7C#ez^ttNumj7q|qwROLk-sc`CVeA+D6o2*k&gV`4Py9#NN481tYyMmQJL!9=N&ZScuYRQ7TXtXBz4rTB!hDVKxmo%_ zx*~rm*Qp|x6j@zu46S#vy0agO{iO*t9VV~%LhH)*-Dy#wS6W3!! zVV}4a`o=XMXAJA)xmO2y}wEa=Yeyb?bxXK@B`xmGf3wUQ~*N@h3iGFm)_ zyNnj!L;TTVqoo?3&A8)eQTQcA`!z#+2db6aQ(DPw)=G|tUusJdOSSSV(#o$?E58a$ zIm+y)Wg9*(Sq_Un;&+ylREm&G;qtVSdr~X87qpVwrIq&)t-Qb0%DXG>VutH3mT2Yq zgjSxLwDR1E8RkB*3S-AU@f-9?`$UglGI82dmtPj)-gC8*U89w3iB_^Y&G!bxISp}s zjM|jR#o}Il#2l@Z3$;=%)=JqIp_1E_-yW@;_KB}+CACj{2k99^UVLBUXz?OqBKxNr zM~gpb<+o21wYyE_;Q&jJOvy8R(tYX4X^7!33Q?gDlL zb-*#837Cttp9AuNZNOtl^Ca*bPzP)Snt-iH`vkBbI0uYI+S7ptfrUT^q#Xow2L=Ip z#C;3U6^I0G0`3O(03QRd1787ikmg2UIq(wjIMR9xcpmr|cp3N#a3IY$fmeYKfjg1r z4B#Q)5uiQNRDm0T2!KP}0e}%004Tr+U^{RYI0ReWAQ#vItO51{E0Fea zU>$H4*aBPz%8`c}-~ezQh(R8v0uz7*Ku6@^7N7?Z3GhfG5alCC0Vz)Q$OEl>%31dKu+rU4HC*?=eV&<`*J zg8>0)^aVNtw*x(a7+@!G4yXb?2TlV&1DQyBJ&*@%1y&)=6To`l9IzGm9N31mPXY&l zI$#9So&t;q<^kSFI~cG4QGnZsNaJR}2N($S0!9J5fDeHqz!$(fz%M`s^6(6>1b7j6 z0@w!>AP;W>&jKF;4&V#mW#r{8;5Fc5U?lRA3fvFO2fUCMDi$=0o#F7z;L9M0^AGC0Wgi@dI6n)P{0ou z0(3+gw*ozYVL&DD2~Z1s4=hBQF9557UBEJ=RSi4^oB=iip8zFD^DwXjcpJC_X-)?2 z1Lgu8(&`Bqfe=6eq5&_Y5eCS>aNr=&2%H3(fyGF(40s&a4J=1m$AGoKdq5e`2y8-{ zRlrW*G%yrtP6EaOS%8SNdILVdt$^EjBaPbt3vdVU8t^Ib7VrbG2x)Ex9s^zh@{!i- zz|+9{fF1Z0cmZi10d@iJ0K<@GGH?$t8xWADKhPQI-zt3r(y#(1zy|CE>Vf0HRbW2S zECyBr+kqUUbqFW~P65S0J+K|P3X~%4qd*1lE)b2h6M;A&1JEJun}8dD+kkdRBN*rg zL;?GN3&0z|*T6ia`8==!cp1n=8i#>3z}r9xZ~@o>d<|?yn$^H7z!_i&(o6!z0-1n> zH2VO)Kp4;-X@meb0@1*JpaD1md;=^&oK?URz-eF;&;aZNz5&XR#xY{(l`P<3A_Wm09*v@Nb7ZA z5AZ$^g|rfYF~BUq18D^SU4Q`quN@=mp?ALROSO;QekYSN*a@c%pElqSpuJ;9FPiWG z&er8bfQ~2A0}`Mkdk)?;208$GzyLT+P9(>T!q-37!g%2t?}oI2fGUL}fphTl&pGt- z&oDfo1KI%{k?|ayf0~2yPjhhoDV#V!0t|p>4&+71>mlC(^4>UGI0t78=iv9GbMSl8 z2-7Ay=Z`Uaz_~qu=y2~Rfx9@D$zg5(u)NUbub#F2qvD#tea=p^S$MZ|6lS=evKs9N zlx+AN@b6dyo2$8Ja^J8zmXB0y+{4`W>_awROOc*}k_)VHmYp#N?=%#`4pzWqs7zbJ z!2U;J$ju$5wLHb|ekPi`D=jU&E1lM1v~*ozD1CQYZNiY8I}FmLcqv?)Fs=OmW<0oO zEgn}s{wN+~zr_eGR||%=TyosRR@dB}<3>lLx8o$2<5ExO#dx>f#g|-6c_wqkNiD77 zJD0tXUQ&nQfu+D*QFjjW=7!InK0PxjBRM(kUL3^0jk`Z~7y^ul8aqPaeqDc-`7UYN zx*|liw101y+HL+R@qDynf8u=~89KhESneD;7C(0Ej`!~2!^gSbGp2OfntO-EjWytI zoM*udyKCq;0^M6{t~=CK%cU>evv7qr#-fKDs=E~qXrf%Ar`12ls5?&nekhN%D98?i zA7XXBAFt2twI=GgG}6Nu68;3g)U&tF&`p*K5_62hgy<(aL@zal_zp0bMzs%#UNNH3 zR~a&V#b&NsNVGK4tFTkgqp?wAa#vr-`(%~mH{4?kZe}{-?Y_VtZ;Rm_u|jT@K|e1? zKYyNn;S@1*i+-*tKg_D1HzjY5LBGJJ&yg>c$R~K^oL`UgB^}R}m{0nd&z5w&Qer-q zE7wKI=j!Ftx#r7!4;&@pF?U{mm@$9B2>qPm{H*l+`J91Vtor$e{5b*nVLAD8N9gAk z=Vuh=hXv^8jL4tEU5=7JFEMjfJ?ct2)JIlfm($~fpSgxF*3aLPpW%!g5nA)-Bj-8!VN>$ci}hJ;;ymwXKA#|;J7lge z>3Ggh%jbf^`~?B}ob>#;Q}X7I$j?mA&rtHiPEoGruKUA#KYsy9%a{Dj^}LLXo&0@N z>+}l@`Lo932B{bq1mw>u&Yz2WL{V7vnF0Fwl#u?B06n%)Y?6_ms>5d7W(_Z&EACO1 zE1z=TQJ9H-%9VNNNU_~l(`$ZAZxaIWxVVvcZd6x%mc&OZqYWP9wo-BK#R%zXXs1kC zCi(O%U5by3OG^rUJC9zmy2H|?qm2VXxg!R_y4uFwYj~y?m)FyC%nkgCG)2)(d5rU2 z-pQc-qB-YtFnxr6{&w;9DS7ER`g!sB8B_AI=H<^{kr$pW4#2-wR&%!KsaDL>&p(^q z{gYE3SBv#?Z2AT9`Yi2YMxocNV*Nb)pYr%DN54S(C&zgG0wd~#9v84?DteSlMzJ0j zu(pXIzO8Tk?|i-6L>2FyVQUptymyDqeIi&!EZxhsPXvo4sRgY*DK<`@VWY^?6)GR6bw<4xC4tze z1Ugj}p1dQdz<;Rp_JN`OJFeugriO=#5eZ|S->jzHNFRUCjNKwB3BCJ9`K zyw0;*r_qJ0+x5BQm^5Tl&w$)$6R-3bwL-!io8vYkOsFBpeDs1j#g`wnV#t7{M^;B` z^)qwbEYC*H`%9zOcR606p3$g{sM6*Xt4<4+*S$s@bbQF5)#9L6(uM1Z1G^_W;t6o=Qy+Vygd(@$4@as{PAg5SY4m^-I@YIm- z3Nhk9Uc^#yV9izEIq~}JDf-){pla!F%gIkK%ukQk&p|)%qYlx|&B>pLMr6v*SeHM4 zU9Q@6)vKxA>-$4qSFB>qg@9=g!m5 zTQ_F(cZJ?m0`gS(M1uLUAN5p=cyycQ8owS_6FkN(%NtO0WZ?E8gHRy9Rz+MIGH?Z~ zM^;z2$DQV*zs*9M3eab)%YE>o(d)_~uTNsVzP0u`d^$?LbfN3n3q9(Pff3yXZqFN3 zk=K3ckpZiRgx4I2*n2qq_z~P=M9qkbSq43FHB0M-x_x-e>q@-$m-QZ374J{1-k&Jm z&9Po-Mz4!jFIc~=_xP;d>r$-OkJerdR}#!sxjoKa=z7JkN26blqkcW`1TXtpQk0DY z4-6T!R}3%83$Gb}08bw`y8!tdkv}&brI+vZiP7t-mfNqaUf&jaeTNbVup08S3iY>H z^B1I3ADA^yKljIFndn!yprEMQa`P1qzl(tSyWZd{EL(lk@ZrZhg-m+4&*jm07vdX_ z>SJr7h7R)xwH`ZV6vhr6rC|Kd#0gGwlcpqOXeTp8rKeAK9W$lilqK?1LPM+}q5Z-K zC;{50>y+dmw@cuibc$6%YDT}LnKRN;rziKDl$nM5{-rX?*F3n*Kv#JwiRZbz7IaTIzGTXIR*)VNdVAZRhQ~L%N3U-o9(!n5Cl! zE_<|gTW#-0%WED@D~f-$w|eKv>TRRb`h8hDqbO%!Us#s~)qGjr?@IZVH{I^VuLi@@UE|hgzpbIFh&SPJ$Mm)Rc~;I_89@_1M~~V zr>{f3JA&30e(K1QM)R?fj+i5$i$e8uwyiGxFUEU)8jB|DeTf>b_ouO5-)+yy)z1&m zdX#zjXbse!#;0#MGN6JVSeiGe=!h^4os;?e1@n2ud?|rGFXzft3FcEJ=Ht#rkZ_py z{!a0}5bKS85n1BiMmJ0Yt-dCrG;iPrbS&ba;=BlSGKEKIzL}sn^X?->snlcB9>}4g zTtzRgw=F_H#?uheg_n*+Sw*X09nLLLRxI`n<&xSdh9!zA2cPxUwdBeKIQ&-271l)c zfArf^HHd}dz8`&G)aG6u$BawjFIZl`p(fa$ALmo%cF6Bi6YQBgiSPAW7i)dwaijHJ zWyqn}T^&dBHDOY8Au=~han2V)yo^1ULQ~fw#YZycmsH-J#i9VZ2bxom-2k8oYV+vv zU^2us^sFEYOb}qvuAF;5DLfgsKV4IJx6uj_7Gj#qaQ@C~+M7jg#N=*(JDG=&H`>F6 zyp@x^?JS;J0!~Sz#?UXNUrK05zuEm#Lqpsx9o}L6gA%BB2uhuqiLHk?%Pa`z)Xkor zkTo-d;`<}>dwnE_9wdyr401FZzQ=Vjl@poEPHNFduDa}nwBZAW$~FfeeWU{yJv}vR zc*e{bAwyld2=CNIxJ~s}o*Nple_GE?onG6P{Qkn{QV)0R@Z&q%_w@bRcHot*E?vYG z=f7GPNvFLhFn^|ttV9L*hjbBNr!G?3qKm}+l`gWTwJs9q)J5`8M%}Aiy2yCZCiLw| zvuupIS1~~@!DQL|N0av{q+Wz!mO21UK0j=Geuhb#mQKmb9ziq9EUv-kb(J&G%-v@G z9K%{J&D<^%aU$1z&SpWb>i)LwB0`Tz$5b5((172oK8f;W zKl8DK9=Ji2Borx^u7;vG?3_k*L_*&|@rvM9V62{RfSU40s?XW_cH(yKoQYf?r6_5t_d9Bf)IBUx7~T&5JC{$&4QMb@9nhYS;T zboOZIzrvW96D36th*{q=X5Fugdv05~YQ@L$Z>g&}(@^V@g3`cEOW$CFeVs>Bj4Bc zsDF#d%D+gKNLZ)_&RNsbHEIu@h)+*ZeWH^;N7 zolD2^?bdm71k|k4#SxvOdwb^kj?N0M*%V)!(I0aEQ}nKk zIlIrxz)`z@qM#)ur)5ENL-=&4mFdYzS*dgWzM@9q(`HU=CE`-roVp@;yR=3+R+y|f ztT=%VB}Q&0IhDSQtA=-*fNK)EUWXr0Zsq4tQs3 z`sn02$$5}L=Y$M)3XXI7UJIV#Iy1!SJywe%gFBjtiUng`V)g80xS{_N zD-_ou!Aq=AV>`gn+{++_EV26cGUS2OP|s<`?T0;wbT_0~Nue!2eB*(`p3)AFnO8kR zrE1UI;34TXu?lP}Lx$ArL;YuNw?6u0L~MWYv`1WM@AgA$ZI!v^1BYLDgFbiF=5{~8 zzyCHqbAPB+UW!VtKK#AMjGW|6oX0GqM@HcazQ0Fkz-*hx``s&|y7{MY8xMP~>|RWP z3QPG?k5J!YWBV6u?KfMGaQemZ?a%P$*Jo+}`*ORF$Ku}F#l^PUDGm0_PROqh3>ug<~>k#`qG0} zPF!j{U3Y$XyQ}qENI~9h-Lq@|_FX$~c{OC;zKYxSj9C(~_YYO-DDUPR@5kDWdNMQk z$qoajX>nR<`t(0uuTI82xbf{O94{QxbHv@`_STX6 zO?_}s(aafXsp&Jb(3TZiG8&soHCP#P^Ucb*=%^^v(jc^ggv_AKq?zf-nE}@nGg_o+ z?H7b*6AH1Q%`rQ)s$0|53D(O0jf7Ww&=osaAAMu+9eGQ4UFkq~I?TtgD&APnRCeu*E zl4XlWOtdDR^7S)##F_?lJgkl`PJf{tUl?Wcr1Q2OcuYCIY)IF_ht6hrM)foA&$&{y z_M&0Yg;TmoU3dGwv7^I^epJlATURKha4H3U%Y9} z!^__^>elvud26L}5yBnuzj_gZrs?!h{%jHAIXwOAix7YP?dkPJh=0!_L|-(lKV5{# z`bQQa?rgINu}E3PU3vbP0qYaJ_KwiJCJO5&`)yi$V=vC5ld;4UwKSvii{ZjiLvC#+ z>4>2!cI})eOikgO$KjqiQ9BKyv4>$qZZNdeJi`*}3eJ#c$g>L97bN~&U+li+T98N` zBgGHtSwF@(7D}i(@gu%l%1crXE){?q(sRIGe?|MMfx2x|=Z#gvcpj4+t+&rP>XEyt z7(L+q%HLn4Sn67&Xu7^gas7+n|M)M0c~tkmUZnW>&lf4?U0z|Uv{<2F=>n@10lf@IK-TMv75~Q< zE7CDk|Jh;%z87*WR;>TE8%{tzA*1&`if+)Hn|mum|iT7~+`lo9jt(Qc!cQTys zXZ%0DnL!!m{_1`4?MA1&){bzQY`FL!)syZp)>Z-~>^?_E6q$>uLV`2W~@69BiW>VN#cHJQmw4YCyki7g`A z7t#&NKxt;C3jQJ2uKhW z6qg`^_yr-LA}G@T=iKGx)Vq&)UYJG{ z&wsROLco8Z&&I3; z|6B_Q+x0y7Y@GV2`3!tEp8N;5S_Co(T?N``q7A|>ww`1br{};qt8tz3Mk7oignxsF+J|`#> z$hz@OAYZC8f&5?b?U=Qoft6#{KhC$q>(8Onr6By2z2Y2!;*FZ(r|cE~?ZID@cu@L- zkiCM^lD(qUG2C>H_9g0_IWBtPf=_=jK6C5f*Y^6>iCg~DxcS^qT>RSIfBw`_&-yOE z>y|Ip$9JQH6D8M;42pOm6{>47#pU%KP51fDYk-lwbTyvyPvwNBS3)-lAEF%vtr?AJK{kv|n(6;cO zY8&~Va}K$3vAvuBmWT3ZYkNmS7g(Qty5`|__s}cR&95L_J`h}&_@tDqr9vCBP%23oOSqg-}S6zrWp_WKHYLwsQIgr zZK3J5y$ik6;|GVB)9n-R$nNXduc}?^JA0oS?q1iy;=!OXo(1Rgjs<5Zn7ilNz=MYk z9rUxxQ`Q3V1i|l&(9S!toCx}zaboEKopNF!x&9M>^c&BKg?DPi6C_&zIkC_)eWhJN z3MVHPIxQyA6;$C78LprTM=*C{nGOgimbVF4PAt^vYs-goZ-*9;f0_5nSpSs|c8vz`Dl~+9YpClf3*@Gx8*@NC)R|gGl_+0qOz*_wS<}*fPz3cSsK{(Jp2!(_8Kd z-5r9wlZK&xkzwd@Wf(edkA>`r{q<=U%b`6Y_+uYg@c7h-+p*{@Pl~YbKZh+Y0@|}X&m~$WE^UI+vn|xjYGNiukV9v{gbaGnS3RQOS^X& zhyMQiJ}#G+$=g1YuO`{yD?e|+Lahu$d*ONZ$FAKCJ}=L_`#}A_`&%QS;8nsNWVXlb z-isMbMcdEcMHr3VdJh?j%x$^5_c?EB_UB{=I_*!7wrBgwTQk9Zr)Gb-&w?i}+;*hz z@zLJuqwVLlPd#tjk_sb(np;lAeX`S#Y|w`@DZJU`OX65H*n*xFrS(m6S7+xGEf3ew0n zbbw8Uqx3d17JXkBi+rH_oiZ4awcr)HN#eBmpdVT6=tu9>p`Vw(;-k_Fs@lI^ zdawK{f3JKs4&o^!1Kua$GzqDb&<}ls|K2YlH8}k~AONHH{LqiAko0@608U3$!_x`lEVNf7DOie^kHp_dlJkr{nGIr{ixE{?5f; z9)F*~-*x!A1%D;{mGSo^{t`#Mz5R~1x3@pk{`U5#@b?@1SqO*NPPtV1)HtI!svr6( zC@}Hwff9*IxLLyKcwM1*lVWJ`lAh%YyL%P_CO5tg& zM>of^*^y-5Xf}cGLiEoJ#d_4o6g*M05!Ig>N{x8JDG4@~ovGAF{OIP5v5_sw;X%P` zW8;X~p^b`D^Tt#%4ylsE2OiXXR&xlyTB6XrI@T09IMfqOWs)R0V%-G^9ZY%7KCmYL zp&`7={?O2j!@>t0%{lYLc&}hLUMY&yh!EjY8lIgj;Z{!%R>e{+PFYP@3goqDBsSPd z6$ZvmfhA+r9`e12GZ&yNa(7;D<9|b;(A|*M=_^iY4AZ5r~PijJ(tgn&7 z8r0WeF;u2AF6+AKcr__%^#68!zVlj{us$Y;>=`|}d7|izwP;KBsc#L%w?{zKP$9l6avyZL7D`u2eU#WgBY|t?C`@wixb&Uc3mQL^6E9Ajj^H8 zL?*t;`PiZjPav2jcaCGmn37nmqZ);c3Mcm2#e#9$KX2du)LX!Dnxyu-IadFl z3Riahunag(!s_&F*M~nf_2KUx`H?w*IG@VV>k#M{dFIUX?vijm55Ye}FnGJ|nfoD( z&MpYjnS~p=pH*DtutW!r$2uAN#@+bq5cczLAWZz)qg||X@k-dt*3h>SP9$tjJM@`iL(2$`J!0zF(A1rV~TR zEF(BXkv6>!UpX3brS8rqVjDVB!`YG4&=B&94Go=;*uqnwXNby(#xj`&iA+C|<71jC zG3p|Xh&Un`eR(q}zHD@2a%gBFeN1UlY9ui@k{TV3^EO%5y>v87J&2#WPCK-d8k-tA z!}?&nO^o2f6p?Amx|jEnP4}4P-Sm;(bc{Z>%iGJTPEWJJ=9^6ocZkHI4@^6B<)NKS zM4U_!Ffz{SSvk4^NtdQvMHr$lER7@w2NNSaoS_Jb!PLl><><)xIMPIEk!+nOF+M0f zJern?dPbA$lUaOcW_WOjim9qC6CYYb-5Z|~!Dp+6Gp=sCx~sc?B#{`Fq@zhxIZzf) zpjA@+#CUZVC9buX!xg34(wB;j#Ovdcmc}+O$?C2XF=kRqlF{TQj4rjBgdEV{x{sgHxgi!)U8SoUP*{AGwH#;f*t9A}kY+ zWn(G~OD9VXC$oI0@^T@^F0|A#mdr#)Qk&8KD-K=B)+e@fV$88sYtLG`a8>(~p6+!q z48f@C%kx&8GF!%|u+CWjy2Lz1uR^=CXw0q2WOBv9TTk1{1x7X2#)SG5SJyCA8H8DT z78#>EQO1!NxDkRbo7lYd;3P-dv#AZq{;uKdyyVuk^Z9?S6y5k}*j7O(SWv(`WRKrg z51k6`TDvj1Vui@6dvs(V)}Po~kDW62EE%x`<6cUoNGYXAMUh*#p5{h(K>N=jJviAh zrmDsSh!U<^M_)eM+LaV&bR@YE?Io&i0s76>tyqfWI>|5)J7U`tCGAAtV?Z3bkWj59|k@y8OLnShG|IEmJ3BX9Hq0e;lb{H z7_8VZ=8wb(b>EIuY6$&>^Fw##W97I6%?Av_y+1j0TneK`EJjJ{;fJoFr4j)rCga(4 zAW{=?TRa)ZBG6CtSc~{jZDXrfE^#kt>Cw!(1^E2<;9|_C7^k%0v5~|EBvK=^jrDk^ zd@(<*gV3~Itmn&JqoqR3F&VKOdKQCBB10#HSm^ktm+4v5^m1-4WiXiv92J__3?W2& zEsdoqs#C0vOEH=eHIRtWhvZf!(y5UwMY|S1M61~X5ld3>rODyWA-GIYM1%GM(bC%L z1EOR`)C8({St^?xkZVzf@`)xlCx);X!IlfkI+cTBM-tFTMiTMvEtvK;EKX!dNP?I2G#IVAMXV4=(v5S|OlpMGD3G9gK_Ni}WwNp1EYGnUJuA`94<-cxbOz8MACgC^ z2dnTocqf*xa1<$KX#Raa5h*l)3>K2bTSii=)0k2*n^UgN;+u^P@&Ku1uxx6ye_dA` zMXu$+M*#if9!5R&9sEq$s)zM&-i($MA0&jn*hS~#Y}Is3&RlEZ`XK-Cpjv$(jiad? zqx8TiU)6`BJjPkQl}aNPigDWw8IfixdY6;fTi2`j+(He(XH+r#MGNC}J4@mc7df`a zGOM+V96l<=l4Rcqj)2`64~Za*1!#QGp_aymQ7v3Kqda7*x>Kn3P_r1MXFkbyxXGPPaH{R6N~Bw9JSoe>X34b#^P}- zc32E$PX>#H?Tb;H2;7_{CF?|*+R*h0CmnD>GTxEs$AG2IzcJw+ilkmZyTjD5ij+WA zirRz`qc1nmw8!;BMJ`mv1xYRfT12HoPf#D@lZsxu$Utd;^IbaNNfb4n4oFT1o-r;o z#|gDRoXmI<(FX@nQ&K-yiDh%INyZZ?TGf`1W}% zq>^y8l14JsyHMI?()vK2p4tUvSBfP~#gbSlmm5geiqq#q+p}5dQTWoROyW`&nQK=< zO|%Lh8%Si^G7z;Na~+qhrd`gbeI!c^i%E^Ego~3I8X$|3i6P8O{iB&g{LnSjYuq7h zfKSqn7O9p5z?CT|b69;=qN0>SN$SHEsFZQI>h$A7seIC-$Tey(Co?o>wr`9jhp5ky zeo6aVR2-JuF^d^i@_&xf$;W~-uo>pV)F>7Tsc*KA#*?W9TuZN0I)z$=+%bqvPO%*A7VCOsZ-fb()%xn-nz>yd*V< zRd>i$9B6P<-AadxjbN`&yhmxpEoeDb)a5uwDD)FS1p<=))1)JoDJ8vogmt? zC*mDKorl)#-cgDbNvP8Gs11d-Nk*G~t7#Va#()BQE>9KQNa>!$V65**0{8QrbJhal$oMQdDjKIvBt>+l0V#qzku41! znTIPR3Y~OAEtsqG@E9Upy^Az^nP)mpR@;?{3_cOxNOgCacOk*>KypxuhU!N3&{T#R z?#7lxZET#$%555^v>+T!tVUz;e3IEMnE9z!b5UyDqh?Pg6A30$s0_5b8O?OWM))2U zZ8jm%@{uH#sagq@eVUtG(C6YXMevNF8S;G-RXJH6sUOyJhEmWE%c{G4nK49*pk=N~ zQD^a%karu}?aPVV!(Aj?nHYo(k6X=G!nBjE+dO56#X_+xdQ-!unpw9bhUIu2H!x+_ zN#pex2{FU0W zFe)|mCwGau6ItqzV;f1>PwKi~9Z&Q#OmAXFqdM<`b&$+S=oFX~#@1YIC zS)x~_G16h997wr_``^I7L96^-@;2c2w+Xy(BWg8+xr5XwaYO`@r!)>()rQ}$?QUPFJvVd`!ZQfN@-gB-Th6ZpkpnWd0i|W^iU>BpKTbK zNsW&5C)!<|I5s>ix3=|}!9w?XtoWZAtAI!XU%7PIz-9hF+9T|^_0I`IxhVP;)w zbSU1A6Q)g0HAGX%;jF9k*Of*j5VNPdFnkuRFGd|{cLJ9Aol4Lh+qlzoJH=J#bO~Y4 zqGJ}<>OdV)?565vhmm3g2Ca5zM(J$lP---ej)KFekpxvL8A0RFlj_ruGC@m#u*(pg zTx4jWt<`5V234P*EY~OBgjIOQYh42>S8>|nN^PiXG@fXp#c2$+IQy3J?_iN6?u&MA zC4zwv3YyR|>Pqi19=hf6M0t~Ws?1dx9wrOPoLQT6CXV&y;whguS}vMPv3QScIWaae zj0MP(K_iknHaG^&LYGR!NdvDHS{bm$r#%t%FD$RChhq)NF@ex1AH^9abRuW~LtFTA z2E`la{g@)iS)zWy6iMWacpT24VIv&PVj@bOIaaOehU&=AU52x(k{ie=0UBGKz$7DY z0E{>37~rlSibiL1G|-9S#_(O07}-F3U#Qu&$(1-d5lEs8%+AK5K7b1E4dFHigsaPC z85ZNFG-18x>h#Dcw_t$CT{l8kMM;<9s$fi++$s2U%=)-Jeh~~ZS=25x3n;h@qZtk4 zGFJ<)kuky2Y(aw`c5US-!{>r}uaUkX+5q!DB&H4IfkRT^Wz+%$&UovorkgkhaWIqN-Q;PW!ztfOtD zu5^jS9Z98y4MUn521Zik zOT+g=4O57;J4i#iUxu!!(isXZ-dJ)dcWI&W9Q@RySXET^T+6~Fvb-P5E~&4zQh^(^ zr`jPF-(!h{6BE%+Xbhd)){JG@kUERmA(N%E-DCz6q7)acIx!nq>|LV8;=r@XOoB|2 zG+DN-?C$PrR4iv(Mvda)Fm7&Qi_pHTv%7Ax!%%jm_SWAfF?rGWmReAKZJ-$hUlq%z zM|nWLfFEFB)!=FY>sKSQU0JO9hu~+0^BkBXGX04-=4+F^x`g zkbt@edRMlMhU6M<;^|MNw;*+T%OV8H0V@=8aqitFkPe!6AneN2CQk@I2bW=V`L->a zqI!Z(+eWA5()QX7LqlDFILvoZKtF*CAXUuxvSd?ILU%gubkUZftewP40wKJ}Ts(_> zWeG)=l1RutZU(L_-IdWGSk%ZrKo(UBS03-A9_gr@FV!7e7Q#)38@9;VhMYptZKa`* ztY_TR4DU09F654wL?jd;n4*}75jJaz!H9&$=p0F4A|-#%PU?^}Km;l*6bf6oU?p^= z_(&?XK?Tv0uAZfhQK8Cpl(rI-A+PW@Snl~@K%BgO7D&%a>>zMZI}jTk%65uTs1`&g z7_wn?mqf}zA)X+&J7>~x&KLNhujmAFp5P(k;HgiztDrr&*QdxkgMAG~Pt6ZYn$ZQ| zIs}zL)Q6hSMI^Zdi6?H$a%n~I#G=g+R3S<$bh8XCSCH6gF)X%A;qHWK1#97OmIgF6 zf|v)|a6CPNv96AQiq*eO`7Zs;uw|e9qCM4mb<^vMB@r>OiOv-?1Gn34q6=1xllQOO~6te z6G43PQd%_1Pch=DQRs3)NyCvJx)(Wj(mxp%hrc&JFiFJWnzw=LBAGViOYcaaQN$m) zV#}Xuf~kWSDHU8?k!3$t3QE<7bGbGAbcR1d(czIO`1twlR3`5FAlb%N56_~$EH0v* zOGC>_VlyU{k!+iI7RB=N9*=HpWz^RIxhd2QFzIz)KPY7&tw9X?3DSWw@V5}FFl{?A zeUOj&KvL-2uuJi0;o=6Rek1|?QrN~R0+U7}&QBq^o(-2c?jDI@f??PXK3t7ZLxtvo zF{g=xF#SWHj5@x0 zOq&y_&9ss4^5T)$MjTIIgCNYsuER3Kx+XAS1XUUixm9nMS=O9SJrR7n8soFAHw`9NUTdBd zC|8Eg(Wwpic4ACs&QW_E$v~>+vBjOf`9G96nQgKWys3L zCrUv?;dLuxt({de>899*lNuaT!bYJwc#VT=#TcS95ITI~B8f>{xM4L2k%!+ZCteYJ zP9mk4ADCufFCKzT1S=GFH!cfYU7AdrD}mg9C<1w;Rga3YI3fxf5jX<#V{({GS=4SL z9m#B_ZIJ)l$N!D-f5j3{aX4Bc$7CLwS-H5QZ3EPZq&U~6RhBC>wX&mC)F~2<3r7-TwyM#g=6IxmEEx$U9wNpxJ4QyK&d@3U2F%rTwzg;}hO;_VYcUF@GB9hyf4NF$g+h5brl zWcaHmrx2JkanO&&CM%RoJkp`5Tq3xaGWq5uMtH%cn_kzzvP1$mUnDC11u~3WUHCu3 ze#ak$y%Y*K_k*c<-q)k91abffdhF1gYe+)>XG1hf*ib4KmxChS1}zQ7D`x{uanxf# zL=)PXupGNIb|;XpuE5rlj_cm>qdweM@B~7-G{U_OuJn4V4sOF^^e9)d4YBoPK*ln; z25%FC`hv*Ke5P7SofZfTnHzWjDZ4nWfeBIt<0V);4a9<)fy*`gpOKWhXS4xJ=}Bsvd0NGEYTI_~*+cKnC%Ogl%I3@Dj=ga;Aqlu%iR2c_qn#9;8CdncqCkzd!w z1OiaOaI6#BHjN~y_&7ZRkqgM1w_8m3P*t=1yh`;8as~s9a^E8se7dDT>GjT+L$ayK zHL5TJES=O8sb`Zg?i(Dk&iMK}l-P(j-?e4P;)1;y zfEjMh`-YO#|34bYrO!zK7m` zO=wav1tSL!u`4b%fPD!z2{9CR0y0+$FWK_prI@J1{+iqVWv+BpVl_1Bp#?B+a^}+7 z@4k*zZwsLPi!vU_ZVZ_kB&&_H1_p%*Q+5sa55Ze3u8a*k$`Mwjeg7jJah=M zWM*f36y?C;Kcoh8Jr#Kha?5!`$%M(e&as9DECj2soW{IGYHnTln^M$jvN3;t$>p7} zuS+lycgI>UX2x2TIT4NPtP2MkxRU^#3bQ%SjV2;^EQ^!34E42jTQYR|%GWH|$Z3nt z9G5|Ep9Jb$SYz_KlmK01ePLNRneKf;6YeZ>y%+PE&4KdClq^h!6S2=`??`c zfKpN`meF#Ly@YE`GGAQbmYiy|WM5J12rSjlOxIL^%!vkOEY}MUWS~$9yUAA-o(*L0s5LOT zi(zS%o!@Pz;>rncm$9ZTW#*E{DAY;#?NF{3Ay?8UJSX=ESmi408w_CCgo4)LFT>F}}8hU=M-~2mev$Jv2sJ)CJ!N1OC zhK%&wkAdM##ACWg5XKG$soQ5qgvrZZBT%}A5-tM*Mo4_6%Y1-7!bzwl-Np!_t20Fq z;V>P=wDlzha8L`oA135XYyfYhNW@@=P0;P#Iu!FgEuXlpBs6%wrQrq`hJR_o9j_`K zeVpj%oR<1{6b%MF6$&4{)j=ZGDnlZa4#3^xJfwH$cB58$@PFn2y!gw+E= zkl!KoN1>X#-3vLTV>!Vdn>**I^_19n?V>z|8qw+;3WT`u4EqCZLO>x@4m@N<5ae_o zr6%D7Kt6u++6i!0JCTa~4sqa2*Y`-Nr}_aemmj?hz>SvLQwJoAL&Xtp<070p&SU23 zgl`i$$FyOYt$*MZA&4=t!1YEn8Vf@V~OH(io!KO(*Fmyyf z9Rs%VhF(04ql71qio=Lk-aJlF{ndXJJRIkx@mR@Xbib%Z;+2b^9gewoLlX0tjEu_g zX_4OsXV~5gl$3^VcLb&IqEWkECk!48jl$|S zv65KMoeCpmg>T2z4J(q??Wo`oibKk143>)8{TD%v1sU)-eb^9FB6YYT<6sb|J=L5=+#73=3WOcW811RCOXTHigZBx&h=DUjbmveq z?a0R40xK#E+w~R6Bgpp#`b7OWYWU0+Xj{P{uKzWRr3RQfoUMvT-_*6*PSE79)!n<_Tv)kQ8+4#vfgi z9&A?p!ldZ?jYdU1#dxDbQPuTV73j97)NZ<=dK(dV$DN{)CX$BfWn6=#P`9XWfQfoN z%kp7zo#$Z~5Z);b3n350q(P=v08T4S4=d=^Trz;aK1e+Cm#c_Je!3!{ z8aWT|f+>-XXW-PGsZF9%_ky%!)FG!kA$!+2ZxrFI(ELI#s2k7-b-fBk5%M5s8Q~+8 zN4ZoQ{$>#w2#c0@f@PN$S8^kSaALzDR8Us{tx^*8m}`0H(%2wW1nl4>wz(Y}t`yuR z(xQ-f&5AodnXbohZp#l_mXoRw%!jyw zM~vuDAhU#Dk{qBgbBo<5a{xO@%EUCv7&>%h@Ebxe$VM8>fZ5|my*z1 zaklWi9QoFG>^EFO*erS3qZ%qoGHxZ!0hkVjpO(ro zU8e?sG|f9WuPnSPDqTN8lhHz~O&)8LpdaB!t5iYqESMfQCC@w)o)ko}%G+nCHAM^_ zq}JVp z(79DPZ@~ox)mejD;qMsgc5c2>9x$izV$wrD)Gp;ODdV^!6fZpD#W*^V-eI;-zV30s z7Fg4g{d~fet<2f+J16pq-W4Jq>77$@MjYtgvY{_EB)qz~Gf&**@Wq@EbthYfC|@{% za{nJZs(VY^EClNV4;W`IV6@j}uvNfUz2?wXvyNrRbC2zpaXii@2S#p5hnX!#4p zjcXYQmn(keEYNyG3MF&DpN-SN)t6ra;|S>vs3#(H`aGdHBd344A=+&O%XnuMkfrci zJ^V9{6`GyXRSceIBo59eoS2i}q(qjGrWB!stOaq)#783z~B?+HdYfo+P-^?z>l`4qo zXnL8hVWBx?Mq!&p_mWx`#y#=jEZ}%YqfJbMV^c~iH~E{YhN~r|10d|IHsIZe3uX4y zHlk0GJ*=LTukORy9gxBRi$jm(Fp=?{qQk^7&5FUz_et)^g>Z*$l*knht8a$3S57kd zX0lp<&^yMFKtytrl#7Q5b>-saCZ-lwidCq6r!*qmSrK_+bcmS?YRd=Js@rh0iQXyN zwoYu3#nA(ne=t%Pt;7oj5 z8RWFV7kY-*G>`IkX-a_QO?b#bm2$ri8>2(ex$QwRi0??`v)cQ!QPL>zFCEYhq~rtk z4+F65cH!M@8|s6^+2cn3Hg>!fAue8D!!~lYqSoeYBUH3hx0;jc_d*%O;@ph>K_!Y^ zsWLY^p)e=#XR$#Mh6El!u5q<@(cmbF`ot#mv05PiC?Z{NqG3$g)N~1sW|-qqK@%OO za5&7#*4adA!Fc;lYTh=sxqWjo!?y5$&%|s`AA;7-*I10Pm|YIAYqZmT5MXa<58&1K z_ZU}bKMt@bO?=k$S@Uo_US{EIzu&fY`F?;sWZ^~p&se*G`j6Ih#;&qIgvTppTf>y?2HefY*%UgJ^kB1y|19z?}I>;Jg@EcOUt-XoAr!kJfmGlA9-ck)*FasyB1|VjPr&ii}4 z+Z9gJDP~L_@$OwXo7G)-bA$5=P6{Gh--x`qP4CX8+Y1!Fx{H#F<pjvHJQttN>KCIbVHqKsr1e;)}uu4_TZl7;I2miGm)PNus`LSfow zogKBqNQb66`J1ePe}@|A=l$P#c`aMrCC!?AD8{&@+v&A4YJ)|n*?gQBH5PJl!N`%< zYR21>)F`+~fOfHB6HL6sAjOu0TqGfp>*U-Kg$C!6c=ZNGH z;p7pslSj-=9yv34`a`DB8H;#)LMr1aqy_?U0^fbTN(9hRC$vC7WLXYEE1%EZto6C*@1-sfQc z!R^30oR;7<29&LEf_RSr$~-T2RRptU@-Bz((`uqR=^8WvzQCWu=0Bva9 znX_3(Z3YEOBLfjEQb!Y+&4-ytfhd&-%Yb^ML~GOxy!Nb~W!)ddHf;v*%JMFyhB8Q}b4=*a|6UhgoEz$QmDa5vRG-a>`#V z9%I6#6rOOmNS-LKe3(IH!AMdNlcjB%lz7K!xmkJ|lB#lel3;aM-KET8F6BrXcZUa$ zorda@&FOv@_~bj(@u8)EgLkM?=bOd5JQn-4^Jj+FZk#!nZ4|@Ir8r?&V6;iS01A?v zo`k|X*_i(>jVb0X_bNHrLXKwj?=jp+S9R@~rm?m2F)>4-ajyvoaVGA`q4sb1?FqG} z(SEP?$r{>u)P24NGpW)XXc5G6PHU-{U6E9Tv5j;1MnD9_XU*&Y!R*;CIxP5N`W1Uj z`Z!XZ`!Uxcl&;Vql6sSC2ZbeB$<>GzdZ^1fhXve|92tS%GJe6dPB&cs-4c6 zA8b#f)kjv-PNkI92th@9SA8~0Pc>X$Y-E@e+u#n~#$yV{$0!_g#V4XTCVbBteGasy z;?>m$Uw%d7*XNGD0nvr}Ma@-f+?w5#bXBK(yiK`s>?wyJlC34$vR0$ACyvd#vqN6A zkFaz1No&kDWDfZ$$^s)wmaok3q zcFK`Q&Yd~C^R#I(yapqaA&=N;XZ48hK=!~f9ml!x9=tR)vAHJ;COtUyn|21EpqO^b zoFn>A+q#vVGBezH8oE|pr{TD#uCWUdjqgk*0lp6>BKa=W9y*m9W<}6 zs9C|>=0wp2K+pk+2SjHga#szwrRL#63!~+MEEkSpxpp*3QI4@o410D4+LE@c#CQ!3 zGHdqWX=>{%mJHYaw6@C7BI2|^Up<@vOm>(aF`sh&;IX56;Z5UN$mY{Z=5TQGjm)3z z>>q@5k@=KYtvAjGw-q%MSiPv6TvjVe?y_^!GAC^YR44T@RDbnr+=QgKhDJS3?d%(} z6EwtF?x7(yO0C4*K^m7ZQ~|Z|Rxh_|jM{h^6YtdXm>hSe;l^W3Rk#{Q|8-a9rAHng zjN>OnP17Vt-C`mlv1sgw%2iJjldkUKUQ2Fyxd=6DMt#k>8V=nFr5&3b($7C;V`ToZ zuFgEBl0AItx)~VM_d7JR&PHh|;V$)-{I57KaPG z;#g|F@w&NZz{2y$`9uU7QRLFWa~Yq5GY(aP9nv=_il@DZg<2}d7HnGAGMdYWv!bJo zTWKybQIv?25}xt!3d|&?QBG>!Ymk%kNlMh>gfo|%i$F$o>RA{jsywAlQVn$CJbwgh z^u$>Ss)ayG0VjlZ5=U+VFxAe3{WteQp$y7On!Fw%@8g)`wn z+HpuwYt-7R-#EgEBXH<66C|vOj!r1M5cM5Wx6m)-(H<@{j>PKD{0P;jDN;%)-eEh+-4|Z9AifxX<x@6Adt2H1gsy;FB%9|FuBx*K~6kjm1+{%SDpt<1D4oP6`UF|CLKMfPV}{md*q$n@aDOv{y-RrmqZ3MgRZM~HipY5AWq zR{R;N?m5Ig57)XEm{xj$S;gNnE&UScUSf9nHRSPoW>!EJ)-|naYpn2Yz^`bm@-@w> z+^Ff{n=}@^Niz$8<(o7u_)U$azlpeSX-4VWnwI~LX7=8pY2oi`EL75rVhOEvw`N4{ z*0c!Rli9t1ztC9kFElM((O9mcX_YrMv;1e|@n=m7?WUW(yXjhZPn|{g)J-;3*U|^+ zdiY>nD;}=1^5MD_oT2M%rf%hC>1K2`p6BRheh%o4)ES$ro8`H>5j;vai%03Kbd;|3 zw&{AgP1kZq>#T6Ju0@a0&EP!1V|CVhtgZ#4ItzE}MsbzSB5T0^WZkHotm}mjg5N2+ zUOGkBLZ^ZDG~EiVMO=@rMfxCLpKcWT!2fie_uJ6zpPu4S9CK})s1Ks<*Mp> z=r!F)zXsV~Lz#cC>%l+hM)?mq3;q#hcpdOhx|#lyu9x1>jnJDY%bU7h1nm8@Zl!gD z<#a<&8-~eDgGEfkteS>aXhql*!z@oRSaph_l}|EQh4;p&$6oZvdG0gC( zh8{f4Fmr1Sqqx?v3OxqOZ)nAsVTAe&7Vb05-hS}tH;i)JV8w)Ch6W5RgbX7YLkpgb zJkK$-%K6Cm3PX!*1CNIcz5KADRUb82>HCINdJOrN4c1#W%*x|PTQT(9GX^XC%Fyz! zLC!yd_6^AKXG3GAX;n;9OE;Tlso7+eW>bqyH(7MLsj&~3X89mf4~rWqMAStx7j zr7Y5pB7W3lRlx8@IOK0M&HN@)E1d~=mZ=3VGxg$CrWw83)bpP;wdnPxRlN!E-v%<_9I zBf5{Jh2C%J<@Z}Ge}JXs4zyVLFw5*c+|r9-%gE2L7@KKnm01?c%|`m8Kz9_vkG8bx zJd1_qTUsGvu~Nh`a~(+A0lo{6W}&5*7Ft?lm1Px9vGm?k5q_$r6?^deL8Mt{8HIJ09v(toL!jFL`c0OZ-wavKLi|?n*b2VqAkU9kR`p^_W0zW1 z{&L8DCGxr2(u4nHS?o)e)_c9BhrR;2zGCV5TP@TV@Y^BZ?MVL}OUvJZeD47Lofhl8 z6Yy?}h3-Lq_kjLh@O{8Cb5B@$?n&@|*)rHGmR5eZRHKy2${AX_Ssr-ifsnpg|OXhgY9mcrQL04P<@3Pje8}<<+vxp>?Js=P_Vr!> z`U?<#k(#bdxf=C$zmJ6;@M+}-eR}Uh zKBM%Ik5wM>S-s!$X{CpKxYB~~M|>>(h|df@3izncECW^^^=Z+^eMa?hpB{O_$MR43 ztjG_M=1HGke#&PBf9f;SKSlUY5mxcBO2vnH!)KJA0sXI#=d(T|_blR{_37!~`m~ba zw@S@^t#GVg&vp5={IK6-DL>1l{8m2gH_B(|&uzh2$w*Fxv|jox$pjGgB< zLg)Ee_&kJN?AO^R5dI0jUik!gUgFnFdB0V-6g)5Uv+8AjBXYT)r7!oJmCOA`{tCYp z`V`V!>9^8XBF&Y4GjbL9d>TAH?PrBg`_1w-epdQC^1mKwt_Qr)?=Rm3UN`xDepbB0k9o(>LihWP z!u`PS_nW~7fIoopJ?uB54@1U>{aUUJo@JEpag^_Izg2h~<@kYLul@k?KH+D%Cy?(C z5&lES_(Q)IebUc*pY-d&r~GE`Q{ep+o`34Mia+&h#i#vN^kI=x{CBK<|$q&U0@OMb}JMer9a{Se= z^_opq)ofxxt4T}ynv9~a2|8Aj*4xy?a!pNIX-<<>IHrjek7?42^P9|a1R7&|laX%+ z9bl-V$trd>X>4(mnOh9H#Z5-#xF$2))nxS^-=wo8O=fUulaXH9WR?JXmo=H`mB{ad zcs>nrJxxZiuZe|+L6d4?q0uHSat*@1(4?2Y*rXL6M%W`wX5`T(EBaWI7JdThf83;p zo@!!|r<$z7Pn%fjr;y|6CRTVFc|YA`7Jk;GRe#-NrJrkJ`RAJS%5zOx@P#J5_XU*o z1@NpknUzyY_R;QL0C$=(F*n@v^;F!X2S_va=({};&mR+Aq7 zEAsqnlfm9@GK+76$9BlK9dcpeER>p|k2PDRdzvwiHnZxz&3g2{X1nnHX07+}W|n`v z*{lMxA2e&hCz@IGiDsknM6+G}akG_s67f$qYx$>|S?MXH`)RWoe7c#1p9a6Do3+Z% zn)S%fo3-jMn_0R7_#Dzd-)vQ$Z)U;YH0$XXnyu(>n_2m{hPuYghBE1(sp1z31GU^t+MX9TR`?0_Df6VO6k0VA>` zU`3Z9etE#itq8Evihvnh8PIxHA>UP?SrcHv_rib?{aC;(eGIZ+1iFjB`{Mx?yd+=*^N{gU@VPXg z6)p?tq03QsR|bsIl>sgC*?^JzEaD3Rvsgfx3IUCM9(jKuU`4(VFhgI2>|a7TuLJGP z0oHqSKns37V5YwTe%}a~(OUz0{+j`_`ptk5`Zm(uhP-bB|Jxzg?EyVVodBLo zTC{3+ixFMb!h$D)=EN2)9BVOhu@)=X*J4Kc!7qV)2U_&p0MaE}w893+Fx;X=HzRyY zi&iSsYKvLA0r`Ht z#j1P*`QFvS$|dmmUW*kjw;1^{;(m#^XIix2i!FNoC6w#s7OVPl3#-0{@ZYy+r8gk+ zpOJQtR+ithRV%-@)r{`fszpPstQ2asdJk_kOW{^6IIER~W&s}4YNn5A)vJKfd98YB zUaJ|N-)fa2t*jhr)kB@FEZhmYu2vT9YBfq-h&#TOu@hRY^a-tc?^4h$Z8fUP@SH&S z0GtY8LQMuf}xzrv-gX4>e&=KZRMP zcVWN&E~bTW2|2n8_V&BOrm+XpqSFvQ4YY?aBYFs9g)p_wzK>h@?*Z^a}0j8G+m{A;LW_TUatz%XZunZVU zLXOkHH^nfwF|(Lq(7zz#DARHq87ppPS_yZz*?%IB4>K0|Ff+;@hCDf>Ih*O}vysO+ zknLPNpNF*Pf%bf+=g((G^dsQ&5oWRrm=?T{vG9e+{}QGL^GqvV%B<2SnO^)9WG*m0 z`gzpd=TY7-F|&LfvkG5fTI2?l<0j;P3uL_od3=Lm9z!|4g}iTLdf|3vMebmF`MW3s z>@lHj;Qs)4JjBfOBTTP63LZaZR`E&je2N*7pMcj-Ap1{|_tW6{G|KoqW5ws0R(+8f zy)Q9V_#MjgGSa=mSnn%L>wOh;uObe%ne^*SEBuLB;kWSo7UTd7Zbv)8?!~YbiddSN zZqoEnvu5T3n$B7^ExHG6ID5gqvbV;nd&A~354N3SHM4Xq>^H{(U#YSDO3f;DgLaK( z6xP6|)334KeoZgNHLIG?w9=raN0YDvovxYD^{~?nX?kQ>gYFC)Pf9b3fR&U69a_^u z8O;o3HO4k+dU`Y9nVJy2iFFN18CX~r6Tz4&y?C{DLn88EWHWmfjLSapBIy&rqd11#2i0OA45fawol z4|AyxlRS&Q!PEX7J2ttRv`x2`z$luZy9;)_rr0^OvkbR&RTYO zlcg0euEBo^{~O5nf~AFCM4m4K z!ak6G-O|di2NeE{u)hGlWoZ>=>lMS+LO$$iVFM`aVYA?#wvpe{X5~Gx*PV)e^TnP5ykgcWPXS4J)+X_tw&*?}5 znBU*ld*6@n_uE?Z5L>Svf_?U(zz?;J%AvNI`w#5D!?szSfqZ5m|5@0J&$6xb9NR1$ z0bX;#W3H_gkG9RoG2nR&@}6h2!aU>$`$0Nlo4xI}5$>?9DC`Hl3vE_eXj{R>kgE&% z9B*R|w~gXT$kdHIyKRfD#xraOxivN`t+CD0$+jN;pluaTMR{RA=r60Hj8Y64d5)>>iv+dS3U$8w%S_ZJR9?{ZH7LIa(vV_suw`+ z3qf}w%Kb6O@^Q%d36%E};C-2GlrOXO=;f%(E0FF=l;tzF5&EocrVD`ABCl(0qw+b_ z+vjaF{{>smU57Tf-iAHZHrbbLBmHGtk9@^8@?SxoUq#$k0dIh8Hz57j0KbNEe9hL= zH$t8pZKHG(;7yRFi07iMhi z1`OY2v*=wY3t;gs$g&M#ccTsOvGvluc)kzm?z6SR_iPq?80C7@hF!xp%79hC!uM_1 zK5Z-i82CK~*&nyD*Rr+TlaS*n+lu}KdH)1$@KfaTQ`@KjmY=q@^qUBK%Qho_wT=AS z$XD~3Ap>>~(`N>49}C+)y=wc6h|i}5n-Sg&TS~Lfh_?7xZ;Q{U?BcW7u0Acio6oB5 z?qh5ZpAp>C$0AdG2HVSLmG<)KmAw&vAi@sxS%rgrdhsyC9S)mH*k@K|!ag(0XQXGt zzA_iKn>OHWJ}rMVcpr`DWAHo=aS_;i7W-Il7i2je;m7;T{0XqfEb*D)r9LaS9QK$M zJ}a~e@}1(dDyRC)=vtqa?g8&!(8o}&KA)A2`=C#t90{MAeOl-epHaTV$D(=E!)1V%p{`^t=TL^vp?&}(U-0SCFQQ() zh_qkwnd~~`f1Qt2uJdV?8+=yz7UX}M&*;6)r&n+HX^}fnmb<{`9`L>gGTrNAq5F{b zKJa@Gay^LrU?U5D&&P_ekFjTbEclF1E5MFbc^2t@4f^MNdgyr{D?JZ>FZx*YMV}FR z$)`tt=VRfQeR}?7&{Ta|?p4&!tB~O}pWgd>(EI^1{K04DUI+dsA4~rQ`Ty0&a&P;r z%G;1Z_v=Li_94@+RV_dpb|jzQ2>bn3p~-JlnqZe{hMlJwb|Bc%N&(n*TKs19U4A_s z^c&?M>^i%^&a?}jck!E%U149^)ersDZ$mmPo-g4g5?(Fg=Oz4_gx`{In}iQb_#+8_DdBG={Jn&KmC*O7D9;cXJ$BjKYGJ}Kcd622(mA0^x_VH1pb^xIX!eI@*Wgfk>OTEc}AE|>6R z3Hv47AmJtn&zA5a2|p>}H4=VV!mmsCT?rqM@No&Bmhd?VUy<-l35~}^Ia(#$Q^NO2 zc!-2^B%Ci{mxSFCo+ja-gl9;2mW1a^c!`8pOZa&Szb4_gB-|$9!xH{T!e2`GTM2(J z;a?^6{Xmpw7YW}Z;rk^#T*9Ly?38e+geOWElW@I+qY{2t!V4w5T*A*vc%6hdOZXiL z@00K`34bEtvl9MJ!aqr+-Pr}6#u8{B)2@?{gB-|q5xe|U{ z!Yd`bR>H4Jc&mhWN%)Y2Pe}N434bHus}lZ2LhFa3JnxclFA1kh_#YA;DPg;WCrG$j z!X62e5@saaD&a>Zyi~$ZOZY_zZ<6pf3Gb2cQ3;=v@EHkTl<N1{BtO1Q6t zACPc{ghxxbP{QRBo-AR%gc~H>B;nZ-UL@fsCA>z$FH87!3B9TV_G$cA4PsMFadI5u9 z7O?zP0V_8Mn7&cKVo|{AEdok5EOe{D!{3zfHUXozOS(G*EZ!+#dYcTtS3=1seZRo- z4+$9jo`jD`_?Uor2QW_&`H_I(r)0R~6M9{E~ptR|Hh$ zDs930obj95CZGyeFeD$AB=%H6UdYE~7-y z20IgeYMgTf|BT1anKwNA4oL~Q+awJ23HhQDM*0PwkJrns^7F##bxrj_Z(xo?(f30r zH(aspco{SQpVQ@kE9f0Nl!qRql9)fS;tuEqbuEMPj_5rZRK4_E%JKj4meSu2KDX>D~Mq(MNtaF@JY@%HB)wju$c_MEuXCRrIxPREsBicX~Jf z8a-z-?mrXNXCwaJ`ccA?9F64n(!1qtM6b##;z;bBE3cw=^Pi}_oc{0P->Cm6c^c94 znaeePNZQb=qCeE?za~GY{}9F}gx!yb@hiRNr5EAj{p)S7&?{nI3ce;_`c(lVzZEc7 z6|f>6LX=da>FI8MCk z597tF^yiF|Ud3NCPW<~nF62_<>ktnU^Q=*m?QUY2x)KMH({ zhfdW==nWA+7n$(<-xT=4z*YW4oBy*2$CqX}UHGp8zgyCgjQqD)SIVam7FEiH}NL zl_%}N^B%nD!OI@J>cN8nA&=r8_TW*8tNxRgxGI0%Ltpg7mp$=SPkgY&(>@Yc{G$?A z@})iTc~5-N6JM6NlE3PS54L*p_ux?vo|d?hFYm#N5?Ae6lDLw;;)$#lKhLDt*oqpZCOHFL9->l_c)S=Sg3cxGJytE+HSyTl5P`T*(vi;9-fY^a~`e z@{fAr)1LG>iL3lB@Zfn5eZhklC9d+j!-GHQ!GGw%D-u`h#jho<-H`eQu&BcAvr5?B3il?Ol7L%+_0=OnJi;}xFxg2Wa7qQsT_B@caB;%fe> zdg$4^MSZFCL5ZvS3Q1ha6Y5CrvvM0XcNzZok)VIV{{$Yu${G$?A`d-?T zKIcjQ8Hua*D@t6I|3OcDMdB*IKX~HV?)CLIRpN?&*b{%8#8vx7J@M;2>2sd=t32^V zPyB-tSNzKoSMvYblfLSSH}??bQR#ycSLyecxKln)`~pwFC9dM5p7^vUKJSSydg9BT_^JmFzQdoFJ@I*o|9|Yg2Ygi3);@eDjf4_HNeF$U z>$L=I*sducpdgV1#G08T1BoP)VUkeZTO6<88~dPmjqN&iEa+H3Ea)JXU>z(7s5tg0 zq9X_f75LUZ`&l#R?Bp26_x1bz|KI22cjn0|d+oJ*Is2TU$87bF-7f7h9R$sLM|p=x zInzPVy%9ctn3OXe2F>;y!_D$2Xtw7WVYVLyO^*ZXAJ0fBXF3Wx7Jifx9<XwNrxd>12KJkCsCa*UbwU1FxkH<@XAnl;^M zk6!L(qEoez8Akb>CNtfn&>6P6Or!n~g&w2OeUr@kefyZ{qzW^gu3c-g-|TGqrqMmp7DrnQ;#`WofO zr5`iENNY2nwHxW$vp1RPSIzYB)QXWt{YKCuUYG4){iRWp{E&5KI@vz#aAWwS;R-#{ zOebr;OO5*J$xTg0dLXs8VTSgWN$tx>znD5T)kwdj(648h<$-Qyy7*t?yBNbSxztSi zmYC^F6gn%jcXwm>J_?D(jDbTYLMWBgqdx~oFZr21#nzfhs) zDD)DA{%?i8LZNR}=zv1+Ao@r{d48wJ2ieU24Oi%Lg{~ypXwQ}(>Sat{a@xGUMtO=t zrz&)sLT4znt;f8+M*B$$ou<&~3Z0?QS)I^*6nSzlbNsfHaoI+H=*4X&nqC@UqPr+` zx6hF0p6HV>kNGB6*EDw$P1CyL+qdcd_(s4$4KZQ=QO>8vE zM`)Kd8^ezz+9?0B`_$AU4E1kk4>MhsX{Ix%{TTHtsJq|L;=&$Y+BDJL$moWFtL_<|jt_nxqSL`ULdn*DCZf(9<9f zfaWOgP~`V3bpI~WK8GLtLaizOAqqWIp$io{h2}#>|8pjd?_#8L6?&9Hk5TC36neZu z=PUH6C(ZGF|D2gldd*BHEA;rE%cG@)MtLgDhm3R|&=;Y6hJwBX z^hnS*fgTO|G0M|0q8T3{vp)_LeqF=)Yne^JljZj zRp=~*{{FcmbBy}hzROLtO`)~@X8C}WDg8zG#mJu|ZRJ3ty<~;XiJIlP3f*6!4^imh z3O!PxM=SIgg+5ZDk5lOJ3Vnh?pQzBMDD+8_HieDaKtS?%LnNC*dt_nRsp>I@ZZKm0t zO`($%I$5F96uO5(XDW2MLT4$ocAnXvB!x~^=#&f0`al0{rhifBUln?vLho1T8&aal zcJ90gd((Q%NN=S1fS~X+*^zmJc`Ede`pMo9+`zL`u0rZKWNk#um1br^# zr-7~oeIDqgpw9=r0`vu-Uj|(U`ZLfD(7%9og6{X0On*7(LqS)7E&yE#dNybm=tj_U zK>I<@1-%+{D$Nh34KhW%70Cb zbAG%Cn$!OhXpaA7(41edfadhIfIb2KZUB8Y=vP6{2mP8tzXAGc$lnBg59qf*KMVRj z&~Jl2jpnbSKDRPW^Hn3g75duSGCwzg9t3&|=mO9cG`|$#`7>9c7b)~h3SCU|Q9B1F z%<$~aGSYn%TI)J4+bB;~=)MY_tN2hjY&s6SwqLeEy{bIkN%3O!)4S)OEXIl^c^ZLFD|kv8H;qdYgq zOgAZXFIuk{^)>n!=YMz7e85Qe?Q32SoglLKkZzjxv__kqW&`q5F5qGu02VzibR2Qs^0& zkBE9CK0KaFO4GVf`Pi8tT*Li0cs$;-${pmtoe9Fr=EUCxAlNCiUbl;X@L5LdbvqM; z_bYTaB|X<9tsH374=A)Y(=7jf=7W0w!BJ!=?Y&yd8ELfVNPg5rCl4ETxKZ9q$?p<{ zeo~<|&76NJN`9s*v~8DJKagaeKUa9o^my8jGx~QZ?Y9|e+mB}Y1*Lpi6#6ZN?nmv_ zXm5~04^!wog?^hp#_$7fF7IKa2P(9dsp<0t4WGl5`pNTImh*g;X`Zh#{g_f;c|ON- zp1(28^Eak>zQy#7O8a?Qp*Jh^9Z3gF?Qd?nT%WPMQ+tMU>`V||tJELcZaIHq6`S@@ z>IfzXlN375{?F9W26-2v#~A2zq7OCD8AOjV(Cf(m!wmFw3cZJDqyC3PA8ye1QF$4| zU!u@U6nd#bUq-ai{(md-CWU@L@vql?o9xE;dn1+*$SPb(76h2(>^-d7+;b? zCoA+XbTH&EhWxVi+BPQ1Kqo15szRqJ^Z}xc_dg01xvlrMF?_a1M3bb@sYF|xohcUj z#V^V?ck=Uov)+;O_Bp^>;C}&q!25wKfe~OUa1Zbog-(B0+Rp(F1&#xr1YEvFzE@^C z=vv@>pbvPNLN5o+;hXXNU!?4}pa09hEn8%V=KGJt@a+<_?vSVp4PTBsCBOI{iP3vO zuTb>=Cgb(}SI6;BcwFYkdEd+QhPFuhM$lJ8C4Dt;8E`q!_oxgPeoUh0ao7RoKLI|l zc$K6b7U%;ddDxrI?a_#&BpzaY07U;L0; zjW4%D&gY6b8qU8JkXyB{s~e?%R`ug{$gRegAmmo#=Npi#vjq0N?HGmYdxXE@|BR!;($Pwe|(h;Z(K_l!+&s% zlv~ALeyx;SrSEdct=iXhkXwzPH$rX||6Pz<)xVXU$e)DVD*xYr+^YR-hdj+9e|JJ| zl|Kg{w`$)5{W5>8Tg{IaLT;7*t0A{)KX*fJ)jvMjN&K&OV*fM9t^C{D zN%*W~GXLavypXv5kAb{TT%`ZU@{=LAiho8Y_Ai3mDu4dbN&L$ow<^DTA-C%Pp6n$4 zS39x)G2~YDe;?#l^|SwVGUu(vx8oqUvR?|h)%@QLxmEmEKyKAP-`a`%VaTo4H_t(C zmH%%+ZZ$vos1y4;Ah+`WKqvBE*US93^8XOXt^6Mcxt0Iw5EGZu_473lE zd=Ic0*a{p!T*`w$ZG@!90E>Ywz}%5iUImN*^F~Sj8qi_TZNSN+rMwx~3LHO1@`J$5 zz$}O4Z^nD1JfOqCR;QHDE|(ZE?DynTPb214Vs7jFSk`b?rhH#j;0-zBy@5cC?dtgc zZMxKJSuK%Ne)A*Z5p%>nAINxW5l;y5{P4cyKLx(_u8jX9g`Wlf5ucd#^T2OPmHw=Q z9S8WiJEcDJ!|zG^yKQFu;3moc8}ftoqwh=pKi)Ol@oka(pB^;xi?>St5vwJC1N^an zAo<;2m;8<3=YzlhH8Z~${5g-A?K{A?Q=W>ky?BT$-&50MdbYr>*jEs9o7pUf9aY{0 zc^T5D$|plUGA#X2Ju+S2A;0|KU##c{!S_6C)(?SSspv<*4=eVg;Llg|vp$sV?h{4d4*q`>{e18< ze=_@14E_W~-vj<~#l8>xRf>K9{A-l-2Eng+TE@%y83zAe#eM|*8H#=FBbnZ(75yym zk41gli*m^W{}iM*si&+b`QYE6*e?d(rsR(U{QDJsANc8yn)A~S{-F;@ekS4#g8%Gy zl3xLS2>d&qH|vMN|5DM9fdBqiQlI~nt+fc$Ob$9sx=1>{da{*59JLY@QrT9zy?w!a4Q*^m!b~X*FEyfFO_un90+^%;(pWE$6pt)UM0)1|G^U$8ST{)kW{&Ktd7UK=Kiyi21czp3u z+Qp|I#seM~(w~v_OiDGaZLOJ(JTGah@nyj87+=KNc%9Op1kfG_EB#Lp{MQxzF!+Zn z`VsIi-z@Wo`v>h~*$?d9CHdSxWP!gL?cxj6D?9kb;O_uG5BwFMNjt2c5B@pme^|d5 z{H%>qzYTUA;J^BV;GU0RB(AC7;LZAovdG zcSF2k@Y6BA90Gm>e6|0Kf^Vm?6nkaqXn!X>C*xD+Ygv##jr>&QxsY!~`&Q+4$WKK7 zqxR2ZARmBsb0Ylb{xc8q%MrgS9}oE=#DBUHJ|FTzi~eykAM(jJ z@ySDb=5}4R&fFi2UvH)zFG_kDh3#lvdGzn-A4HycJ~!8Ad#Wf&I#-DH#q~K4d^^cR z3oqt!Ksi?_giXsdiU?RVsZSm#}e^&_XZ z_-?r~{8Wp%UHk8md_UG}7a`rn_e%bF^m`?}WjY+-+bIr_AG48ft5Gjb?IZQL{cygq z{WnnGtn!W1>wnptZ*2-~e?`iz^6kRkk#8bBN4+8QXINipKTN-kEI#b7C~M<~<7t6E zMp;Myi#WuG_iH32_g}>NeQvUhHxKc%yfsPkxjdPFvxWXp@Kyce!C$M`KO6R6Q}{_1 zc9vMgyUKz;1om4M`)k2Z&6erobX{k`?*qNR09CpO{0lAgSpPc6-%yathxgIgAFFvx zty0gz8_en8@Qh-eEY9myd?f2x*Bq&z^@Xfw?e>qplKeMP%;g^hzyJ5r&We6g9tMBG z0m>LF@@JtxzZb@P)-V1>>JP^L67wD4PsKhO&sQ}1EphSj ze=Ystd5InT^A*1M?Q!wR1)uFW!2g?~9|Hfat>*NG!T(~LQ4E z?UDSk*nea{L*Nfp_*$FP{{iV`eFyljEA7|^{&HoX)c&iqa|`BwJl_rOmwdIK2!pS- zd(Q!>ziqqB2hN`m_zxjJw{iaHqo}4`gZy9IU)IxN@IQzDJn!^?{}%F@=be7=laN0= zj}L;s0{O%F90LDN*x~tc1pMu&Cu}DQ{xBtfG@Be5)cI}}_;#ujV&B_?@$%SBGGF=) zl=1&XcyD%SD<$lPy{!LN*3qj8H&1yc* z;a^`P^MUKhDcDbA|DV8on(d9nJ_GxIHS`0>?~lFI@{9(JhE%Jxu$D-a^ zPjv2VYk6eYVpmE97Eds}SRoI`9AKEt!74A4{tGCmH+O zY>)Z(pkF;nnP;yC|1^ca7yMF%|32C+kCSZQ1wUPieuD-74vYh8x_V;#@F;eMgRiE` zjehfQivDw0=c@XL!4A(K+5b;5?^vSP;r>_E=YCktf9{Xfc)7f}e^%w9pAr2c$M<{t zd(Kbxi{s&P=W^z9<#Ob5WBfPrfy;sIa6U85`NH|eG{^rS>@e~=s-tzTkUfZc9qZ>& zKqCJ{%eVq^bzS)Ro3cHm4mP*r)0vO;9L#Blz)pWfzYh8;|2FUsQ}p|SU!d@3Sok>u zdUe3tfL{aq4Uzsco&|atko7np`8)@w%WAy&3jLh@U1{I3*_=-to>AntI8$~u=8Ie& z(e<)_y6p*b|LcEQ@=LL9cme)~!C#GjoYxKh*QNd>W!)KhL-N&n5PDPc)$;VcCHd{j zGc5UPz3_prmUG_QQvWO57vOn));p5lfcpaMza9K7ihdsW<%)hj_^GHb+Jh2O<Osd3;yjE_77O_ofiD7 zE$nZ!(9c79RX=aA$hW~3b~1;`@)!-A3Y@RdcY$Wy1lkI-?9whH$8#F^T>fF4*W>cF z>gTgi&scBrHgmmVKBMU8#R<$+*eBzD!~U-9_m0PYB(Kv#;4j2|M&1|kzbEyt`bO5H zf5QJT_?6#D{^j8NHc9>I;5UP>y)XIWvF?4B^}$!`W8P+|uht9yR>@cEV*q@$J{E72 z`f7c2d@A{Bea!nz^23rEiswQ;;5jK*#|=B=1JOUL@-dLNVE(V}2jxNjF2*HQJ|6P(;os@-kH@8a$WMm+ zTtz+^^7|0KD(7*D>qpZ=GM!v6(r~|v%l!n5J6x_mVZ7sVI|=#lzcns3Q5lKPIP@3X zZ>&In!TrYONW9$i0G~>l`=yS?C9#f4ZI$VD8_HdT9}oV;3jaLt)qc9kf`2u_e+N8z znDmR0{p0h^y6^O5)o-rtZceA~Gc(QM8AZP-o*8)i1DVdN5P#kQ*-p;-S@Ly(NE@!q3Z*{BrCw@qSgPzvMp-KBp@%K=Rvge~SHa z43zxS;6L+&gC##p;cIruKV0D#50iYgzm9-!r#dIvV-@W!plC)Jn@QumP>c6hk0I=wO8^Bl>J&e_)D-4#rpZ+AG=?c3%8?U@UK_&J>bt&^nKu~ z^~4Xpol+^v%7b!bzte}y{Ni$41UdWJSCRW5XTOe8E?2`Q&{oYk8EG0DQGRhQPOzuOfe&P@go+6Q^`gpM)OAd!Up1H=J+&Z_MSL zzuin%fwrnI<9JGQ<6Up;5x0pF@V zayqiUHK(6k?eHV&y*N*|3h~Fv8S%V=bF$2jfY0->j^>NUlfAkP=KhT%zq&>8FF?67 zKjnpv`8%M`^^Em*yxOt-5ifOY=OOUtDe+zl{>2LaQ49Zv<35DykKe+dpI?#w_!aw^ z>m*-2pY<;E?@;u=#=fn}x2>0Uc)r2;vmW`W@?S>0Du1?x{!teEnTYpI#m~|gr9Yo3 z{1ot2{kvgD)&Cdb{Y9}e;ALsQ#|U%%-iC5i^;aQYm4B**euYIj&gXiftaI8d>=#?q zpPMlLsrAQZ5$}5zb`D298KmUH6y%TEzHWfNx_;Ylp?{AB{{pl}wf>x7QLi>x*!eFD z{!teF!xO0ghbig38u6;@%yAa&!ijuP{a*z8YW`GNq$>~Q#rNm9-SK%5?k}0o=bhAY z7xO34mvXq9a6kTJq;r;n%xAm=@_T?=fGk%rbEIrHM*`1K@V`NafL{Q+jgsMx16Bcp zz@*VqUIe@qxDmJ;c>EZtHy6nMJpg*6!e_aPeGip(P6Cz#?^W=1(2S~_!|#ONxWlAf z7w|e@2x$L{lurO&2=oAXT;%7kx%{o>eN!>-*o^Ud%#YGOhf|T)Cu^|p!1KE(#^u*q zW&g`WpFB>Z|qDvs?1hvA@gh#|OSTj{5dUeRVz<0N+jt6M5yw zeDF-1<5SlsqJ4;Y7W-L+_VK^9Zzk-E51$9(@@PUiaCsE(HkZpH&{p%w`rk316gf66 zRmQ{R7rI}*Y2|J7i_G^wDES-F4>3Og{y2;q%nyS9n4%v7zboc7tRDvd8pTco{0xO3 z1%K%_S^sz*t34$Btim};-Y3rj-%e>3^`IH`AQ#WisQbIzPqO`2v9IK(uwqRnSK;&z zKAiuKJ?3(o{gavYfwpR&SNzU${14VGoS%`;Wj>sXd{~P9Li+*Pa#0V2F6Yb5E2JGx_Z_GgoUY;6-%|G* zZb7+n`HpEb*9-ezGu;H*s-E2TJL-ve$H|pgC$2?0J;=`-?CWg=-|>SiuU+5D^fEtd zr{t^kEq|Bf&x@GrLm2#idnBLdBN6a7V_f0-qx~rDbVI#m{Ved`N59SbdEjqQ^z*^L z3;wgd1N=TeoBi>Cuhus|_;$)Wu@AZi^~HmJ<71`1gdjg3_q9}c3*`T?kcT1v0Qa5L z@S;8nKRBQ3R>^d5KAr%Y^XXXh3!D%0L38~aL$<^xi2B6!s`zJfef0lgrgMLlv{n6l z?03{pkuLQ)6~}w>&3_@>2jFrHgMW`wj#2Q{a?IK!?bs;}(f@BoK7WUN-ldcy_x~L4 zy@q@fGBGa_A0Ed!y;0~1I_z?>U(h__schNS&j4SkgpNNF2|>$h)48a zpP;|*dN}-fK*po)KZd|>ROSU)4@!MM+3ILtlKq;z-<)36AEvG9&AY#&-iY~H2=@(+ zNBZo?$Tzx8!8(ik5&N-{&(BG4eTsnpD(=^^eiZz6_31ci$4+sJ`V>KZ>VbBxK7YaW ziQ|0@;|;e%Ar~L6Pn-{94w&S4WCn)F4 zLg0_yY3^sk;J@~cS(75V=Y+H(`a^Ee-c{4?|; zw<_{B$gf4YyrIZN`3PH_FVA7V!RdYo{Vt~~9rr)EeC-rgeA4kg6fT!VnmnH-r8Lj5 znQ1?0QOCrmqy0~@pBj8a=I583Z@RXo{nLVVKqG)(3v>ch8YB9Z~T4x#Fwy&~Du3cBxn35;V0X_V5Q90|LOYAPc}ur$?cr})jyn%VdNj@V{x)MKNo?{$NaMa^UevN zze0VhK>bcb`&|G!8}<6Hn14?Lo(rr2@;sK`>v0|Uw*glHUj;^hZk#Xq2J~)VzvpHC z6#>r#o(uEn zA|0o^CjB`R=m0JP@^kRFfqoVE0q`5(`$$*+*QLEtz@veDUWd<*@_C+{Ab$wB8n_mi zgZ`%PgVJsb`0oI>0mnk`2f$8WcvVp^a{M`Cf(B;6-fxiNsu+QgYH@qeN z`T}?>;^pT~c>S;s@}6O--xqj1a3XLj&<(s2xC+SUq;?>l*Wu4r$aetu08=)~`1pMl zqd}hnECjv@?Dn?QzY&;&@oNx|V?Za+2fP+|8!!lb7RckpR?s~EwP8HX1&#vpbHP0B z%*Or{KR3ef59I#qMug+@%11vW)A1bm?*jJ%N4+QIrvp8}e*sqmKLzr9W--c?kY1pUe0~`e8b^1fArJY4c?@^GS1S|#4 z2QCDDjBxzklbgYR2*~#*KL*_$>sLOP#ph1X0-v7;zX^U+ga6;a8-RNdFTXG49`JeJ zmDhLtJm>+)yJ9@$^IUv>i_dHE`K)`P$M=tU9Oij5Kj;1-^nL{P!McI>i%LMdfd2qK z3gq)_yx!pVaXPW@!21t;zxqe;d*WOHpBFv@G{4V)pZDbR2hET_0$c@r7Pt|(6SxnU zvrX2Ep}^yS{G8kwppU{n&iSDE`83`S{15p2-1i00{~YD~4CMUWJU^G)>tnF`_cHlX#D;( zeyGl3xv) z-$!&QXg<%$=QsJhCZErI8+!IHq@5SAFU;?M`w}$oo9+euL@V@xd_Ub%L6R2&M z;kyMT_63~>{41~=xDa>~kl$;u19Z~2(hfh@dK_p6a1PK5JRI@*K>r)a`+uuIKM(v8 z$oss!4}9tl8E*;jzko}DR|5IG>dT<{xoUonx)lEGgq-)&_`cpa?ECX`9Q>TeBJeK* z^17Sv6Wk2`gFt?dXBafUr}HP!w(n(n_`NpopxjRb-w9jVblwC4C1F%mv05q@L`ME^i zhdT@MD&S%u-;cT%^rOIcfc##?%pYZZM*&NKb--(Y&A^9%>wueq{GP+zptar7F5jo% z_qLn}eld{mzw!OZrQq{>a2^KzJdp2WYy;g2`w*uh|2{*x@%@z}_DH`@0!{;- z2doDE6Sy46@BQWX`SN>@`F+Ox-ei8?GQXFX-(Sq{-R1WU^LsP-eVF{--zh&y|M>Y< zelGSh@NWP<3H%tC(k80d4_)1KbDX`%#DfEaS}w@^c_%pkIf-{{($0{JI%5 z-w$~d^h-eAxBU$CZeYJ(WPFDJPX^8e&I4Wyybky{@J--1z?5I5y=>qx;CA?ZH~i)E zyfYxb09XZV0A{Y0_LhRa2FUNh;`cOt0{#oIzXNp2J{dj}$nSyS_nq)L`ZFP)4IH^v zhVy{F7Wg=@1^5AQA8^2a8IIrg#pmuPgI@+*0_1ZqAH(mPz~}e8-Us>>AiwXU6?Do0 z8Q(DAXdu52WfEv7Z~<^Buo-wia5ZopFbv!T+z#aTswCmOHoyPvP|$mko|8cHbNc)~ zvJ1gq4CM3I{{j6JFa+EJ`~}#g`1g0L z^i;n3`!}lGiss+P;or;Qc)7eef4O|Qyg0wP9JpN6d{xuU=~Mk>KgPq+5kNlI!N02| z?mdYQ|4!TClGO5m{QFgQ(Bgib`0)KI4$m~p?YfqH*RuGR?Xf@kkWU5{17`yrz$%~z zxCqGc@_9RX$}^shgY}2)FtVRxm3XY|vA_Ay9|PocP6j;{=l~W2IbIdHJgnkn{bD?C zT?woL)&OgP9^fLN57?P~jz`sFz7<;Ot9(21f%&RE=I1K;m52Ma+-@L_!6N+L3^Stm zeJrLKTMzPgq(ZPa8}V{@6*q_E_^9$#+P+Tet?0yF+lvQhFaIT}*Vc(W?d5~BHyL`9 z@jGOy|4fg6McNB>qSp#N4rhfv=w;$a**-nckbnE<+-pZa3}Cb;2vNb@Mqw! z!2Lk&18FA-m;y`#rUSbIy8|RltjYH9$Ae16&OJJMd!Qzko}D zO~5OG*8rCRmjj!Dw*mvehk#E4*8*PzZUBaX?*l&oeh&Nw_&xAP;7`B}PT<49CxB~#>wqr-Hvr!NZUnvu+yeXv z_zCa};Mc$%z}>)~fd_zTAIW^_2J8jQ0S*8T1&#zB20RKl9%$7M6hS@}cmc2$_z&RK zz}tW;fop+p06zlm0JZ^>x5@Nm0{a6;0FMHm2%HEk2A%_S0Ota0f!to}LH`4I3Gg!D za^THCt9<#N@&mB{0B{ws1-J$HC2$Y$05JVyv;7H(cz*B*ffoB2F1y%rSfD3^> z;N`&UfVTke20jdY61WcdD)1d(1o$;@Com}@)6oYw95@y@0eCjB3Rn;H0j~oFfGdH| z0@d<*3;Zp>&w)FDdw{l2q<=kt{eY^y|6A!pkeT8@AE z{bvsRnFD|3z@ItrXAT@x4ty=OUdOl>{X{^$F_Vo}m8s3F@DiotXc(CaC{Ig8GN$B<4?fg8DZmsJ}Tu{XzW_^Z&dA z^>0d0|I-BZ56w-?|M~>=pHEQ#K!W;z?Vp(cz6ABxC#at~ATfVVOi+LGpZf8|PzV1d znm_vnCRScY4oXblnV|jy3F_}jP=Cze#Qa~Bp#B31>TgR>fAo;V{C6j)|9pb_sY4U= z=TH3(T5X)=PB4Ee?1|<7!wKpq>d(=KB<9a$3F;^6PonyN=4ZSvcJyDO`FZWI#OlMJ z_B+b;I4{xsNpwDN`|!ldYh!}?$B#(N{-p`(Z~y<9{;eYu%g;pf=a06ZX#LC{l~{V6 z3F`klLH$sI`hT=P`~F~mP92?C{{PYW^S1>3`9Cdxo=njHMC(tY`SVBnlW2QCW=vxB z?ZO20Z%I%;QU5azP0at%3F=QzQ2*}<>OY#G{*MXj7aW#Y{?sR^zac^W0e?x%pFi6E zeF^%LX#G6;@Wj&lf13UK|6u=;Kr}@7t|Cj7&fi&Il*-o=x_bIeF_Bb`G zT!wQ1J@-m`aSi$3(hT`LVqQzf&m~T_;5%T*gXeu!yS|`&vfK|00mHxuFz->Rmk%rk zI)Gtd-eXeF2h4f`G%yNutdjgNFmJV_v!0Sz4D-+_N}J9$2Ma93$}GM-E3@Qe;CJ`}tn68eIte#Cnw#?f^&UB}RMEM3OWYu#nKA{NhKw^{HVFyg@T(MFr%{~Wih zXEsG}0e%-EYe&cVIY!~n-YNAQu;T%(nAPa<%ZmlirvEC2cz=jb(;m>q-!eZ*|J_$3 zCt3eR1tTX-lf6YeR2NPB8ii4(m)1++2-5$yd~?Jy;Pt>8fdOC;7zSp&Bg6TDv3%Mm ze}^dlfW%^;1Ly$;fgxZRXvdpY9Kawj0t|GKZ~pM7OY~((jC7T#b(0tcW_6deqbD#+ zqIlfZMo!yT$=|o(e&yuVvfS+-N`5R|dfrjJcuLAa#^87hz8xBYIp*hcofi5&3;xNl zW1nlbv%*4ug9TsK0jd{OW;?sA^q=lHy?lopS!Eg`8*(Zu{MydJ(<0`XV~g8bF>~k2hvqR z*F|(KqU#E}uA=J!x^~bt$kwCh5W1Gom6A5Euhw;3_9@Yo1Cw^I9GF5^8eQ4VBmXhvh{Aw6l}ZQl_VLeRO(C_6xNsv&%0{y|(JoRFCJ<)c%1> zQ^($MX==uum!@U~FHP-DS0B0#88*Jl63_0eQMSRuN7H4~4nJ-wl~XT~zx4SmH?`Xr zbfxuA?KYdP+ySZG2GBK#t`v&vkUPhBSxVu#LR3;&U$A<5%7t`Q(p61YEiN}<9bF6Q zx|ptIbX`Z+zv-Gz{yOM#(p65^9J=PxRYg}dUA1(%>GIOGoUR+_YNqQZx^AZH7P^vO ztxXx0dTGkcyDm)`M`=Bpt|Urt5~VYhu5`LG=*p$brahUNLRTtXX>@g=s~25%x^A>R znR!j}lbOkx#7jNUD|jHI_qjd7Ic0P?=yKAf?K*mdjjm+6(!~GCImaZ?rD^VClITjI zE0wM^y2gzQr1r_XR_|c#t9t5Lwcr`q&!pt$l?ewEtuoL;Wna_R(niW3mcy2cHV}9PM@L@l2hndfQ`tDZvupeAu z04>$v!9WN6+Y~Qf@VJZnf18BhoAl@&3yJV_>{tj{m5G8&ob4|;0tCx`>DOC z@Y&Co%zXAU`ijDbpZTww`Rr%$n+hNH^WHY{4fS)Ana_S^ZC3c~=N2XR7+s%CTGw`j#haJy%WI%F&!Ao5v!5f)eD*UqTH(XK|1U;x z%x6DC=PP{J*PKRvyncpUWG+qKAMP*O>Y2XZ~7+&wj2q^V!en z%L*U%^ItRaOC_^_|FGJk=oen!7F z^V!e*?-V|#cc+=pe&+2__*_4KHuGbC{;Kd{-=p=G{l8uK8Lyv#6f>XwbfhVK*l~0< z^Vv^NroxAx(cWf0`x(eq_^|KmZ{Qp1XK=8Y&wgq{6+Y|~4>$AK&){f<4?jIen)&Rf zW30l5{lKwCe!PA}TM5g%3XiH<|e{KW|m| zu%CB_ksq(0+P!8z`x(4X;lob!K{KEI^aK??*U!~vKKp5ZTH(XK|2fImJEso5f-m*a zxglT}7y*j?SfRl08OUQB>3#M8@`23$qn^)a`v-d;Quxgu5tjFnPu(u}Gkh1x_X?={ z$m8)lz*!dWV;p0_cfdi1h5T&9>jY-ucYG1-Pxvzj{>*_tbKw88Ine8n&0QV8+KNgF zN(()?vkE-v=g?I$N#JbL-;5$p?u^2cBDxA^P4H!p@uWL?7M2v8C-f)GApQ)pAihn1 z1-?P)p4^fm5l{xFXo^Y;V}BIflZ7kS_wCZAPM zQb_p*?ek5PaL1E1qoCuz^9ww7io@>sXWVl8|3q9f3n)+Wblb6b&k-?6DxK0b$&*)N z5swl(g>nokAh!w?K><}7d&vaHsc|O|IhC!dYo;ANIV}_8f%(7oMoL+`G^R5fiFD*j zR^hBzN+}m9b&l+Kf+;f`Jt=Rgrg!3)+0FkkRYEw!KD9&_IQO=Rc>}gIWrP^pLRuZT>Li^mJ(gMfU)VxK$WYLgvON%^XW=^0QSxohE zA~lHKd7D$IS&J5Grw+hy87bydAktxqQEK{!S&rNZ)KO3$BdR)eK=d89Ns*|kWX5g*IDaoaCxUpko+m`2A8|Ox?yoqox8zXSEHRZ-*5BB!%bY^ayM9q(p1&b z#U7WmEDTn=8|xbDh0^rG(~HWArWTZxl#Q@-O7pF0PPS6kJ<)uvJV6&;c4*b?vgV6+ z8lu?QKw09}eCht|{IWAkCb;G}8*3V7G`gqO)p@4XRk}1^N>a6OSW^{8<<*G;j9s!br9>c#s+73 zjSG$iej^fS8sqZEGpt=wktdpO#cwFhoH14N`BK>BiIYpuDV|8>erCzUMHMcpj&+pR zD~uUhR#tQxRhaq)r@Nt~!CUQ~TU6t$ub<(XkHhA3p}2h>I$cfR(Fe3kPsBLUdH~M{IYpPvx=)1xoQd<=TOv> zUDb1|8qRQ`0L(&N@3cB^t+PSYdZ9($nRU*tu575%CH?ZtCKaKP)wsM9sw;_byDA#a ztZS&A6LT-{lc7E+0VY(}S9B1D+QFnEwDLx;p3EukIo0m!2A61gEUVY+3$^sgPIqOE zOK+9!WK&&p8l=3#ph8^gt)4sADLuA))gxBT2WdJfbH^uE~Y$$AOXsB}+$oLGL z!gic#E_Y))=5)QfwKq7so#r_P&V*_&6%EzXVrQk1-RP_-sj91(S6bItQRQ(~O6Pt{ zW4arqpu0XnHBh>+&JbGUFWGObspJgSL+ROG)mU3zPd)iOMZYvAXy;73;?k|@h0sAP zvT$P74ACf(cJZ_?Rz0HG<#mfF|ERK^R@aCMqX^8o6Aw^Y<#ieJ%^=|nqgGX3=k!)u zv?RUe8+3lF@l2yZ%Jo}zSi#zeX(STuwx-Uj`8NN%UEgeM)0(fvvKKY#6)dW**E3Fx zP)e6<)RP4xHPz8^QW0l{<_pGSRmRXsMS4;-e}5&KX{A$(>T0Pux{9kku9|AMYl5r3 z!dvZW5b0c`dPV9JsH3kcq1i=6b&XNCT?$BdhRaPgzLMsleuvr>C3#WmTGY_!HRVO%x4fR^@;0~@8DrlZ_jZ8dZczc% zH&2ao@ziSfJk3|7`dL&kv0&2Fsm{gJS@{ZMwtEie+Hn)-bam|;dr?b9+x&p69cp`KvtKIZ}L0Oq|fwQ{CSzayE zF6%6Xc8LLzR4b{eI2$Ue%4*5)viXANaxbX%(o~cFt)=WJYjD=jE30?a%%K@0HG}-h z#Wj@_Lt}Yad9~<LMAep$h+g2u|~x)N8tXck3OYv$H@7Z=o)S5s}IdF$?2C9%>i zrZ!vPuAJejsH1dI^c|ZNYUPv%)*78zD4}779cvejSlW5Ljr#n@*r?h^XVf%IWzAlT zDKciu(n1j}EcL!`L3M>o1S@Q;u4$O!7IT~;T4j2jqTC8*{gxihk6o-QvdK!fl&Ytv zs;;4qm4C}HO(Lm}KN!uKH4R?p!TKQd3fyz!mJJT0vQR%$?`oJ#vtXG;)2Q2VimaJM zVQHeLbSmZyrmEF`x}anUwdi*Jm!hK2Q5Lwoi{VoTv6^z(YGM&H%XW+l>2?W$Nj;rn z$veHVfhG%LzA`kwtf;V{l00gtu6NZ^8xnGTF>)r=60tb)MZPffN2aM%QK1+Eyv~}~ z$l|-PT@Dl#&YU@Af{4tXMX^nyX47!4%Uegg1;)W_UeP3dURL69R=6fEqNz!xtCGf6 zm(yD^V^SgIZ8}w0lh%~dnKR19jm^s|D?UqPq)Dg;^4ohWnNc)t8ZGJS+%b=XS10@J zeH1M*bc^L6O&~O1Q*7)Cw8mEY#xcaCZ6`))29OUw?3qdQ7X zQxI|zD9b|b&`7D*xlkt&bfP;RQvPod@HATM*Xupb+!}-HaAe#Bnf^&Gw<)Pa8!qo`?m1Cn2%(AJf*1pNMLQ97Q|soc?CQ9p%t2L8a*b+KbKP+} zGu_p5XzRsXmBl>SR7Uz1O$jYgT-DNp87^m~&O~}kDyr-2IT_Ap9zN0{*^D{^$ zP~{cXm9n4asA4-gWuDklb^rcA$ zM)b1pVAFTz6kQ_9LS%{(1C4~V#IB{?In5W2ujbn6(K5NgrEh)EiY2MNrzm%QQs+d@ zZI15%w@VrHXSn8yOt!RF(y*A8ZtdMJp_PG)3TI6`igqrGCMb7nG@q}7G8BEzY1OV8 zN_kWF_EG2==8Np&iFY6*mI_Mt2_<7SSo3X6eREG*o;=k)$k{aX)h(pO>en&V*1oJ} z9DZj`F?bmMnYBAsmENw1ZGW2$sctr7*gjx0`e+Wreg=)Tf@*%eGSlW&Ayvv+mz))t zru)7%#?_u0tfyXIIzM=y6al(A*lg`URo@%!fIrh?X7XOvbh-)#6m&zOzi};e_UE!>nakr=sL12wiFj)5#BDa z$V9p;Y6z+KLBctaLcL+M&!tkY9IlLa2lc3BE1l|E;HuF_E$NVfd#1QoRHON|`J21a zqCwwfIIGds=qjk89TlpFJPp_8N6ZS8m!3MYJEP5SHA^PC=L-w*kWsVzw3d%<($;Qbj#D(LgeDKCdFyJi^GK3tH+wIVOp{YG-XW$Dnf%tb5ok^+ zb`pe@w$5}}(bruXmAl@ul8DK=n8C)YOjE~NG7vQ{>ZnCuBVzVLRWv#>R6=8pyOP>0 z6*(mO4nRkVm_R}3qygRJ73zWRbhFiTua(Rd(hg*-8=z{@iO%#nw1XyYuW9px9jY#F zaMc&PyfZ}it<7K4iH^Zss3TQ*Ggw$^u@)PQggerjGQFhHJBRikgq_VDY3OMxq7hZE zFp-W_^t;N!Kx;eclzI_ftdyxrwUg3vX`YhFZS9n1x~Vr()qFkZju74OkWHavF-<{h zu^Y%!X6h_@=(iU1^&Zs~NtMvLy`qYaSX5E1koQ&VXp%uUv?kPvy;@m&dWd#mnqf@S z_n)bz^bmW{`WCX-#ioW-Mx8p1@*;^V+6yb=ePvLW&U7!Nd0rV!4H`vXPZdFDm(k{^ zSou*uA?aFIZH0$+&Z}rcmdaQ%_$_;>VaL0s%04p%2`pTr?iy` zTJ2F0=~TVgX{Tn*gf8-BicoYQLWr7}7$+!yjM6omnbfI(r0R5H1qfPrQX>%rof)Cx z733P7bjehOn9zf@=#ni_-Z@9y)*%CJCUzwyw~Uq(Gz18tuctALh)7M(9k=+5C`zey)48G7aO>lE#kx%J+> zSto1iWHSiFC_T~@I$2vsH!!H`Frkaq=oF_Yq*GLCx@HR~y(GdqQSWl;O=`2GXmue> zMs%vdRime(Ri_qu^+PMvE(A$lS1ivCx_atSsDV?%qJE7Q19Iz!3SNkb>7+P0 z$O_4$9Y`uz{698NP-|k8-Z(-ab)rQl^!2e&4aZ4cyjjrty-8;|C4^2_#JbilRhhF|)X|H73d51U8W#c#K|)1?Wv=8k3CKZg6##z2>u$KKMx~FNT=#5 zW%eZ+!jX>&x+$(@vV323oosEz;K%6I9fB7N6~M>YbrK#;v4HMQ>e9 z&>R!cZIrl`fPqc(7}kN)Zk3uj-i}lj0CSNh9skj??pB712F$ zy4f#8p_qsmG#@L7XP*$aSc{d+30rH@ZE{mSZjPx^h2lkJnVU{MG}O@v<}#6qBJxOF zPn0RGr0T@|0h$z>1)Sm0ID4_Xf({4p6hz@;(&o$N;%s!+JLkCQJZg2VA^ob`P1#gA z#gK@4>=(30t~{FYzg~+2I?+G}+?_f> zwVsxgBKd2K8e(}?R_>(=Q9--LLL6!*M*S1QmUcq+E!<8brr_AkXeSdLOyxo+roZjP zENL}KV)MSJkuB3NoNF_(#f*jye^iPakNQl?mm~5U*(#(SSA{rND?&CIWf#$H5yA8u zne$vU@sBystcoi2JB1=tz$mJv4to*xvU>X!(iQEcoPojiA~EcUP;1(Y8oY~H8fq_X z)K_RCXiGbxsYZo67E`rqz*fR$qlR~(J`x%d6zM?BDQfLN=B;G6qa8>oRdI#3jujSq z*@Ca1p+wbbRa&PXp; z!57V(hc?hW%(h6H$I-AP<&Gq+tt2VduEJPEC&fm)pju;;9QOrDv&foqxsZ&Ly4aVi zi>bNj^Bs@3npWU+NUYYmNEmCf5~HE$V!BfKnMrj0AS)a7SwJhu*cvDbMh%U@B7to&T88)a z7x~fPrFD>=evodS?|}A{d-ZZ`2F=a|K$8U#d6RGX zsMBEstur?3jK$*Yzn*UqrsevtHBOd`hkW!wAS#&HJ7~lIvMLM^0xzA;&{H0xbfI66 zG~C6@S}+#WyQ#*w8+4U`hP`H>>|XnX;sarkMH( zzRPXc)+?wH6J8pu^*vVYT3aa%g0t$JLS?1)kgcAk zHdCgH#OgV4TatbZXjZkifwrMfucK`{@c_YHN#cN`wknC@`(BhmaG59rdAyr8*R-3G zJ&VPy6Ych75`Lbo7m#*OvUFdUJWG=Bx4N@Cr`zhaO+s^zFy?C$-+@c|(RcV)dSgP8 zEY*5#XEKVjUTaI%lH^hBdhOd}ECKfulaH5cUnWzbq)?&k)=TLlVKnld(cHR}n7LO{ z;^v-7fw?y*bofU-^z(WupVPnBiEsZ#{d!pTZ#60$|Nt9Z*@g|EHQgirqE%tMX25fQsg-eZ39`9hfVde)jmuX z^?FMxW#WB$_I)DiY2g-+G`ZSVm(527h+jL%~_5m>i&*rC` zFv(k8sXdtn_S&>kY7~{)hP0V({n#x1|4EvbL@{zBdo+zVr=w)U_tOkbOA%`s;nWMs zVj#LDjkZa&Te|R!lJ3z}R_iN}C%RCkz95{AJSV<=_nfV1$u$*?HPjg5amYIZ;`WF3 zWfw90lE~clzwM$QE0xb7>=agm!d^7mL)gB)D}4uU$)Iol#+g*NYN|c*)+y~BYHy~~ zQLs9CoKc))csHHAxb|=nHh2_$ho3Fbv{Ykux1<+oThk}%`@n7Kyw=e6r*k$e$vccCyGnH*l3ulN%h0X9yr0Kg#baJ7$`wRV-M+*JN zg*Txl(a?jJ%%*SOx5LQ--4~%Pxa+#2o;7!+PDuMO11DI2%s|(p{hT2m^U{1>scXBe zYpg+E)wM+X59JIkQRMwb%4W(~IP+|}%c(t+K`o!|T`s0u>U6y6)eNy+`Dj?k4dyAOlO-#2Q52FZDltyRn%Bd-DaUU z`lsJVdx`YJ%SB-YUmGV9+EgI^zo)=Pf%Q9Uv=vO-wU>0K;`~vs!SCcNvfH|ADYCfq zo}ymc-A(V1#qBh4Ub~1kF6nqU)vtQ(mu@)L_21pO@a`hh!DXVHqBn~g6l@lqoNR)n zb!dwFyQA`#)^RIX(u0zEzo;?3y;M3WdQaNcT{MC#dZ3cf{R=JF16x*l6&LJite-Dv=PmMld#={2P_gW{Go3Jk z?_Ctg_nPPy1IvXXNh)a&r)q2#S?f_G>-7EGw3_=(2>Hi^`+wbKU4uU-)-I1 z6s*dkiPi`Ao`XF7W#2GeFtt9bvAg1`1UQ! zPtxZX8+#Qa_V-1g=cuq!d8pT(?^QRaVIj31S$WCwOTA=+pP)Z%NT*`7*LvaR;77gm zJ8Y-~Ka#cRb`iPnJ>Bzf#_ADrO@E=c7!nLc+|rx6$Ni$i4FA%DvWf0*izT_XOHpM0 zUZMZ1=-9&Y`t3K;mRY2|kr_|=2bmM);~HWN)jr7-&F#aUvcH>1 zCv@rl`E6OW-{o4Q-IZ0WZO@vaJ=m*6`?*)C_Au65d% zJ+Q3rt2dch)%Dfl5u|VWQb|51nr7rBeTJZahhEA~qPgHL*>sSfPKLU)JF+QDJ`ifY z@6;CjY__2Vzd(w?J)#DO9@g6^H`_0=WmDZw3XzvZBMn`tx4I3Y(nt4+AmN8arS}I! zb&uW^tJinuaJ_yYhZ?A?*Z;|(svOLr8hE{^%8}d0Qu)d{`%Vtm*)1dwy(sFe|HgdL zdNJSBcIBXg?In%KXL@BiFidF3Y4#2MM3LUok9>Mp6sCW5DbH-R$NFjA3bdB&BJGE4 zV_9966CY}>$}yGLbvd%cnsbV^^*J-Nk8?`2139JI9sN*ZYbYlFC1L=I+;9rHA)foB z`$)Ius#DfGb7?X`uHBa{H(OfziES}$MJ^?DWeJ53U!~6ymiDvJOiOQ2+NZgcYgE|s zNK%QDI%e&|T>TCtdCW7nRx;rWh`^!S`jHFh&Tj9|$SbPbnHy*;)-5HG=vBH)A3sI&v*SB<+JQAZu`pyP!5J>k{i+I#e9fnWOJ(LYTE{g zGeaWBJ|~6nN}&)WH7%JB!F)4-I*bZFZgF6MED<)lbRgx&W5VDh+6umMUa-mL4eN*{gD5k;6?38J^`f0c zUlAj3Xg7_#$?@Ld?m>p$?SVlUc;oWmAe#IrMg76RN|9w(45Aeoofi`43F4mrXOP@P zcWJB1f$*kdDY{8h%d}?(y0y;-iI-l;Blnfs?So1FtXQ>%pE-#ZI?odwr3ELA(#S0R zaL-GFDH?rxQm?&5Dv?`7w)nmk14PItCPJar$I^FX)v;t`$q-8Qt710jzlRzyra5vl zuz#>_M!RANP4boxi47Mw523-Wz6vd8=iq7&7gpO~ai1bEL`$NZ`R@&`(OQK0?{%NQ z6W@ONUu3Wv$;mZ5OzO$r#5wP79AoD})s096?6g`r&Q-W_VJbzct^^GKR+(!Dp@Oa7h= z1RvA;o%{9J9uzG*O4X1uUsT?txXEYjrl2p_N#zBhLe;g!PFCU67bJ+jSE^|l^5_b+ z58dnF&i4#h6Z$#WbqXp8lLq+x9J#;EH#;MiiUh!nW19ovVjT02K zQyv-`N4>V%UZQQci&Hf5F#E}i;8M|9g#IO3fuS}p877}HkSn8l?TTTP!B^|u%{AgX zc&!K^rP``t@>G^QAN0&H7EoVB@2n6zr~1lk#d(NTKW#Z?T}fx@EYm z{@ifx7(UrquRVnz%zc+aM(+}xMKG#YQ2jfqfBSzB)l?i6(gGvIkz|*4?+8*PHkGdY z-bpHH`T<|s!PJ(ID57D2wnHe$%_Bqs(&kGI-%@^PgkH7c99?hih||xULIaq#eniQH zGiW6)id@@35rvnFekio-M3D(QPb6RDyDYrgLnCLn^v5S28%YZ9>l1>v&LsuWfNC1F zH%99D{?1668U;O%>I@BlIoTSO-S(8f)n&vBtV`6qUnkVoN3X ziujJ`dqIJhX_1*CPNTYA^c0*&yMGia!y}_6i8E5GM(L*#pP|rxzgUpUM;O+P^3u@b z)xIKrWWR3p1@RqvQG7@JqDud$o_xz%+BtT#~e<*@lNl|j06LwA&ZENWCJ*45QLEh0X@$KNfH~7oSK}W z$r&0!P(f*ef*{z6C@NwLsDOz7@2mHES-szXR-5@$d{y--SJylPRiIPo`c-4r_7 z>ZyLdlZPz*??QI()q~S1S5XklsH*9qAyT>eE*dOtgd2Mi0?pM+1d<=$-pPw5fLyFAE~^JU8_P;ByA{689puW~q@O#rkEQUDSA{mM3eaYsgOyw1wR3v;0Yhvxt1K(bg|aHANzGcE zYJFDu^Shg?DfhHiZqvl=O>sKuM!@wO%qcP8` zh%^?Nhz`G3uMSSTmxhE`=t0zK4x9&D5T$ZIqdY}NUwBYK?Y{T_sv8ArKY7xFF&DY4 zu(+>_g5E(;{mM1KmLabT4K9b`9!wp7fO(=c=AzDv%CWL8hZ|qJG4s@9gPuZ~a@2d^XfKSdWF(S7{z^3unTDUYZZTnk%g>U9RqK+tZ|j>qEi zDuOqTTGy{pzvoLWI(ICfqN75bRGtP2E8x%BL7|$9$+tO|zI$^KM&~a2K>BI8ux4Gy zOBWpG59ReCF?9}Mx5vD#Q`-XdO?iFelX|NHifKCq;%}v=^??o$Pt35YsjU^L(GNA@ zg9-?s%S*Jr687jDE6|>ghfvHR+UHt&nhWS@e@Y?-!ziqp^zOJ-5s%RoVYXWff9zTs za;b?G3)DQAT5oD!>vdw_(uJ8nn9Q6Fq1it2&1Pd0;Jk zJF6&GfAw_+y-}e~!N_};0;KVqZt&0E2lel$`rePIwrR(UDCssf&|m@$kkQ}F`$aS6 z->-{t$^FpE<}Y!>qo&+X%0YRxip0-00y(*cEX4-S6%;h}=JYy!1`!8&@H*sDO5!amJ{hdAt|@KGeqvmUCiR>M=Up0+dmHIHBo1gjl1`X+@t z1S@-sw%SH3JJ=~zzdXb>`vQ48^eDVpd+2HJ(p#Uq$sJ^${BY5lJ>%j3so7&6rkXwP zVT7`h{5wA(A^)T09r>ptKJ99S*|?d_zebAtK+^OHv;5Boj>vq1L?2Sc-QFtbi; zv%{g;LYR3+bQJ69X}a|Ec0VfNd`Nyi3?twENLY#YlKEarl&-{IJQ7yobC8BA@svl3 zRN`fi6jtKRkDwC&0pGzsipk~p_J{Fpcob%9v<&ZsX1ihLe}f+uEu~xYFCMC*dO!Tv ziZSA048R}O?cG-oKaR5z=N?9O|M9R^l|hfB)rd#yx7Llqsz-HI-}0zbhW(EgsAGu2 z`7jEB>`}FmDDCUL$IzX3YDw?kee@Wz=6$jchS#PH8b(jsp{F|pK5}YwZV4Sd`55_R zH9qqgYs>k^3h=(Pit1(becFLK{+Qm_Q~gr#KaR$M?&&KL?_b6?ZVF3l`aFx;2A7US zYpKBwU1@gQYLF^X?-islHS17-Xp7w2sJ=_}D7s*Ykp_YY2GMBFJKYFRdmf2zo~7^p z&-8R1j1r@qlueZ{CFR}9oRl4vQQrJ@O=WspZZ~$mnyY@5^^33JkgPy0tV}POFRR>H z{a6|Cd_)5#ZwSR~52FDBzY~Z?4fF3RdTUX4{_t3Za-sSUxgc_@a95w9Ko0$QZ|_m)ed(BJ? zBi4ATLy_uW&{m+q`QJB_78X5+ZZ$rpvS&K+{qI%d(pQ6z9^vGRI66o3F z+cj{42{+Q{X+VJ*Ujy3w0cEH^k0#;ag6`@X^>G|g5A5|UZ6n;7GiWKt=O^|N6gF|` z{vE#t*B13P?nKo$Gtgx61o_xN9h%-hJ5_@krk=XSkEn?WX&YtNz zr#YRT*2a5vlN_!Z&aACs#UFv8uElxVto&mTqB^SKB4a)RBNAL zUDVU)kDsWozImd7e#1(gf1;5ZTw6v)Q)(lbt00t*+Jv3Fj&k}ztLMG({SD5@IrYYM3h?$JV4(ChPq z>gY5LuLG;?WT^X~F>E>urvCQp;lcicf(U-3r+0y#&R6<*rm+kI_Q7p%T)R3KnjNo$ zLcwaqLCp2jSW>3xrcTI7IQD+hfqhL+>(|iBgr^|gm*`{i^eFwEIwTLe>G$g3@ll

+9&X+7%SwC)BZ6KhV~-caom&dD>y2qYJt` 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%0Dit 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�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

EDID3f4|!V2`*$(eFvuw` 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
BQJ^ka_wzb-8Ej#nzHPfi~$JBo! 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ⅇ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 z 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 V0)PM@00;mAfB+x>2>ibm_#Yy$(Z~P* literal 0 HcmV?d00001 diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/_CodeSignature/CodeResources b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/_CodeSignature/CodeResources new file mode 100644 index 0000000..569365c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/_CodeSignature/CodeResources @@ -0,0 +1,982 @@ + + + + + files + + CMake/SDL3Config.cmake + + E+bsKFeYRozn4nSWM4OxBPxu3Wo= + + CMake/SDL3ConfigVersion.cmake + + gQ+LV+T54JMbmVqczZwWryOwVns= + + Headers/SDL.h + + Pma+lYokWtI90+9DktxI6iJq4NU= + + Headers/SDL_assert.h + + WoC50ZiTewl6MRRbyd1iiYZxtmY= + + Headers/SDL_asyncio.h + + fGXNFcOElD6IRbX9GcJubLmoorU= + + Headers/SDL_atomic.h + + w7g1yj6L70afQtydt00mSS3N1kY= + + Headers/SDL_audio.h + + kQUMG+NRIb2kBvugi4FmX/7uK9g= + + Headers/SDL_begin_code.h + + wsAzfk5ARMtwSG4xPvzg5m3Jz8U= + + Headers/SDL_bits.h + + 9cqOFvZxXmGK7a5xO8Lz50q6zok= + + Headers/SDL_blendmode.h + + usmRnfDgT4dxC8NUBkBLHOFce94= + + Headers/SDL_camera.h + + fTUHcRb+QyUyInZFFN1yUtLgZkE= + + Headers/SDL_clipboard.h + + BNaFPj+d/gkyl/l5FKtmGcf27vs= + + Headers/SDL_close_code.h + + 1vBg1G1kDxz48iNCRQzRs4JdJXo= + + Headers/SDL_copying.h + + qgiizcHDSADGW6sbUWVXBnHDWIM= + + Headers/SDL_cpuinfo.h + + rjGkZeoG408swy+z8MRwRTXE4/A= + + Headers/SDL_dialog.h + + 4InXRYSNfDKMAvT80hL41bK6VVo= + + Headers/SDL_egl.h + + 2TRm4qSC+lwUqk357LIp+9RA5D0= + + Headers/SDL_endian.h + + NwbtQQnGG5Cns1KLMuuUSxsnwb8= + + Headers/SDL_error.h + + 2qWxaJQ1wp4at9K8sk+FAfpf0ig= + + Headers/SDL_events.h + + lhihIBXL+L+ykQezT7seSFWerMA= + + Headers/SDL_filesystem.h + + x2Bf0NH1HhevHFcwIIhsi1nsUlk= + + Headers/SDL_gamepad.h + + S01uiHMyH08Lc5pM0LCunkm50Os= + + Headers/SDL_gpu.h + + BqU10vFWTFUmicaf/4SgyzGc4Vc= + + Headers/SDL_guid.h + + HeJSnwTAZ9v2B8pJaC66wZh2Hlc= + + Headers/SDL_haptic.h + + cnzDmGxX9Q613k0BUk0+kxDB/mY= + + Headers/SDL_hidapi.h + + s2YTW3pfACVyMAnkvHvbUGwbrAo= + + Headers/SDL_hints.h + + RenWo9sfYDl3XTl7VC+n5gwdu/c= + + Headers/SDL_init.h + + 3QbcJftBiMcJmO6MYqIVGedZe9E= + + Headers/SDL_intrin.h + + j14ekg6zAs7gojHrq8YuNsg5ftU= + + Headers/SDL_iostream.h + + INQzKo+TXazvwu2uSIXTk74A4Ms= + + Headers/SDL_joystick.h + + Dj3PmhA77DmQhaaO7TtlFVfr8Fk= + + Headers/SDL_keyboard.h + + TA2CXW0WZtojbbbD8QO5YbCtYk0= + + Headers/SDL_keycode.h + + Vep2hlXhJj2m5WJUv3YSjgwZJig= + + Headers/SDL_loadso.h + + 5kT/8rtuphyE7R7qRnWTSM3vZD8= + + Headers/SDL_locale.h + + wdVGs4oraONMu+OI1Vq89eCwgRI= + + Headers/SDL_log.h + + 9G0AhADJMg8pBbzn5whrZdznlJ0= + + Headers/SDL_main.h + + B7Ir+609KBRt1lqXkcnNqIgTP5Y= + + Headers/SDL_main_impl.h + + B5urjdx8niHPF6lzVXVl0e513EM= + + Headers/SDL_messagebox.h + + eLiKcRb2KqDF+NiOCLTypsmVW9c= + + Headers/SDL_metal.h + + JQbRAPxnIekwgyOzk9jNdyTrw5g= + + Headers/SDL_misc.h + + o0Zdf1k3zVEwjCK20nnKd0mE3Tk= + + Headers/SDL_mouse.h + + 3BDTwKcZEdiHtfNeBWTFiOBSX34= + + Headers/SDL_mutex.h + + zC93pUcPmlFIS9L8r4ciCvJm0mk= + + Headers/SDL_oldnames.h + + LVEh0rWKvPoz0Olpe7Opq43B+/Q= + + Headers/SDL_opengl.h + + nBXVdw/GJ7GDEMLjNVChtFKnnhc= + + Headers/SDL_opengl_glext.h + + TvPj1ofjtpSE6KgrLAh6PnGyZNQ= + + Headers/SDL_opengles.h + + GVQefc+XmHojZPonePHo3DmwzMw= + + Headers/SDL_opengles2.h + + y2MDVf0VqmkxR9HtNdwVas9bsig= + + Headers/SDL_opengles2_gl2.h + + GbD4M9ZIR9sxgLX4G8T/ojLVQJk= + + Headers/SDL_opengles2_gl2ext.h + + frTvd+EfShO/uonAvnnsnPkqc80= + + Headers/SDL_opengles2_gl2platform.h + + JO1DB28zz7TCz/P5YCSvV1PaqWg= + + Headers/SDL_opengles2_khrplatform.h + + mBjqEs+5bGC9u1ED2M93VNzONPQ= + + Headers/SDL_pen.h + + EXvVo7r3v4Js0CLNoAx2CfU2yFw= + + Headers/SDL_pixels.h + + Y/asiKu+9wzktXDsd5O48uOvPlE= + + Headers/SDL_platform.h + + O0WfapqV4/M3w8tAMcj2VbsPg5M= + + Headers/SDL_platform_defines.h + + UqKQte0bBjij15UTOIkYZ7lW92k= + + Headers/SDL_power.h + + WbOmhOGmtX5lQpTSgJ0T7vNqR+I= + + Headers/SDL_process.h + + X+s2+r9yj4HLOYM0nL9R+6ytICQ= + + Headers/SDL_properties.h + + gb6Lko32APlCWI0MC2wu4I/SQB4= + + Headers/SDL_rect.h + + KqEnITECLSg8s3dM0O/KDfOe1Io= + + Headers/SDL_render.h + + 2tJntukL2CUJsQnzN0UZxrlGZzQ= + + Headers/SDL_revision.h + + u/p3iA+tPSj0eHe3gQdNYn1dPqY= + + Headers/SDL_scancode.h + + DiDRvtpYhHsy3pBvqiuCLEnZ4Vg= + + Headers/SDL_sensor.h + + RwfqWMNjZi8O6c/e7f+l6jrWWtU= + + Headers/SDL_stdinc.h + + kzHSuCphZk7EqkObqcio5efwulQ= + + Headers/SDL_storage.h + + fks+w2A/Ft+GDR9RTPmBfNfp/g0= + + Headers/SDL_surface.h + + J4KJ0GGWyXwGzOLenUC0Y+JPoCc= + + Headers/SDL_system.h + + qqeS48QOHWmApVD4vlK6r0esuqM= + + Headers/SDL_thread.h + + d3QcKqWPS70d+wdUfTbVlzKBilg= + + Headers/SDL_time.h + + 8B2GEH3aRj2suI7hviE/di1h4Cw= + + Headers/SDL_timer.h + + Dw3rK6vs8TgCHBqN7xNPdWp1ea4= + + Headers/SDL_touch.h + + D8Tmyow63hNMy9jEvRnaAaO1FrQ= + + Headers/SDL_tray.h + + T1AxupswbGQchu1xtWk2wgWGKzI= + + Headers/SDL_version.h + + U1Oj1xCfxyhth0lSDljMQXBZfwk= + + Headers/SDL_video.h + + I7Brv5aheYGVMpO7a38O/k5EHRI= + + Headers/SDL_vulkan.h + + dKnu+JHbf0c23dHqi4+Gt3EhRdM= + + INSTALL.md + + fyUlqOEcE7zuLv8JGb0kUDRY4lc= + + Info.plist + + ++9FLNImEnsTFAKvMYg0MxQMODU= + + LICENSE.txt + + MV/H0zYdw5DZw6QWBIZwa65FY04= + + README.md + + ED8RfQwxZj7wFttxnetM9Q6jXX4= + + default.metallib + + aJK9hTQAkwuTq+nvDqxeToCP0m0= + + + files2 + + CMake/SDL3Config.cmake + + hash2 + + VxylhJ7S86lzsQJvXNKSHDGFR01PL4b7kLkIhMAayCI= + + + CMake/SDL3ConfigVersion.cmake + + hash2 + + o4od03lMXeFmSf7XQVrg+cMoEnzDAA0bJIE6oslEQe0= + + + Headers/SDL.h + + hash2 + + b14FzZsKmrDmlLiTjqPfVFdIvBdk1vtJJRs3wQLCdXs= + + + Headers/SDL_assert.h + + hash2 + + 23xjAAulwf/TPG8RyKcMmmR4FypXZagveCM0mgH1nvU= + + + Headers/SDL_asyncio.h + + hash2 + + 6eQHTxs1vaIfPh2XJZ8Dxl4txtqcXyGNKYkEdckwbaY= + + + Headers/SDL_atomic.h + + hash2 + + CB/5E61jeha5TKWHD7p9ntcQ6OjiCxuGb+rC3xmljxc= + + + Headers/SDL_audio.h + + hash2 + + nfL+V/SrMa6O4cjxFwmOmU/TmD6g5Iq9AUVBtWZBD80= + + + Headers/SDL_begin_code.h + + hash2 + + fxk2E7HjevknSqJuM6gdTVdk729oKqu6dGiIKlngKOI= + + + Headers/SDL_bits.h + + hash2 + + H88Gt0fGZ+U7ts+dAX1avFoprYg8Be7fz7AhxXG2FZI= + + + Headers/SDL_blendmode.h + + hash2 + + hAasxDnDlaxJ6necLTgqEtqXgyUxOY9o6DttaAzAP8U= + + + Headers/SDL_camera.h + + hash2 + + s9EmoTc6ncVTtp22vtX6f6Iycd7bqc8O/6RxEHWi6ag= + + + Headers/SDL_clipboard.h + + hash2 + + fCCxcYk+9gIKgTCbsKtlSHYkUToEMlKmYENXpVwbkgE= + + + Headers/SDL_close_code.h + + hash2 + + zjynPn/VKTMQ/RVWksWLXoLlFvGoJn+E0K9XLIOY4+k= + + + Headers/SDL_copying.h + + hash2 + + ZENtUHjWdC8RyLCs+LyHI30V2jZxbrJVKYaotFxBmWc= + + + Headers/SDL_cpuinfo.h + + hash2 + + wDNjucbJP3UbWyU9Y2IIuqnWZYxpJoArNRaXNrlvGu8= + + + Headers/SDL_dialog.h + + hash2 + + fWdNdINp9i4+55zpuS5nqJBBOvtlGljAX4xte6D/Te4= + + + Headers/SDL_egl.h + + hash2 + + ZI1DHIxRuv6skDbbF8PuX96mtre4/huG2LdUFjDXzds= + + + Headers/SDL_endian.h + + hash2 + + yMXqdfb/IZaz45jcQnZIH/qbZfg7X5bJgjjQUyKPvHw= + + + Headers/SDL_error.h + + hash2 + + fSlLo+mUuJpCvGNG5+Wb/4L7zi0FD3zbGJ2PRfMXlfI= + + + Headers/SDL_events.h + + hash2 + + ilhuR8Rl0tkJGmKtszG4Su88IRTbLtO3SgpMafptuas= + + + Headers/SDL_filesystem.h + + hash2 + + bR6AD/KyDeLQQW98aBfdbxGzufw7+4C+WDTjBpRmy9I= + + + Headers/SDL_gamepad.h + + hash2 + + L8Hbn3bNeMp6e1PfSnF7jw/nBHbT8RH4qSTMkM0XBKc= + + + Headers/SDL_gpu.h + + hash2 + + EihkVmVQ/tKFyZvC2t+jj7KtRGB2kyx9oKqgFupDYvM= + + + Headers/SDL_guid.h + + hash2 + + Bin1tfP91r/CUte+qxryFOEhRXTMUecoceLA+cMI5po= + + + Headers/SDL_haptic.h + + hash2 + + qLujijGSmObisRAEHA+3sUS2/sicBu5CiFRULbc9tw8= + + + Headers/SDL_hidapi.h + + hash2 + + BS/UNHgeoUgUP0ZE7Wr1ElicSkMtMcXZRy0vOU1OsWs= + + + Headers/SDL_hints.h + + hash2 + + vHbmQHG4ehFSeSoBFv7bq/Het5rQlkYSJM7Ln47iJao= + + + Headers/SDL_init.h + + hash2 + + Q/6gi1EsuqozGyGx+IW6mMiMiz3UI7zj6kbwwNDjU2w= + + + Headers/SDL_intrin.h + + hash2 + + YlLnI56pNm7vQnEwH6oDfki+eqMkQ0FPStKovXGGxmY= + + + Headers/SDL_iostream.h + + hash2 + + 2wZxMiUAboSqkmYgGObh9demGS4uXGetGIOddzOoBxU= + + + Headers/SDL_joystick.h + + hash2 + + r0aPy8paE7O55PiB3ku4l++dZITgfb2mBLYkZXPzg7U= + + + Headers/SDL_keyboard.h + + hash2 + + QMAEiiN+f9SUaPFtczb4DFrl44iMPNHXveQxWfYGgq0= + + + Headers/SDL_keycode.h + + hash2 + + CGHx7BS7/S7d8qMTXN1PVcyq+oGig+V0AjbvTRDo5wA= + + + Headers/SDL_loadso.h + + hash2 + + LucDpNvlT+qEmAE0wm0hy4fDDfS3r9+ho8xspu9k4J4= + + + Headers/SDL_locale.h + + hash2 + + s0UA/AyUaFIR/UxuFbAnLzul37UAYEB8OQHGyemDmFs= + + + Headers/SDL_log.h + + hash2 + + uPdwfHMobxYxKTt3Zu5oSraGuMXQClukWk9TzHOPutg= + + + Headers/SDL_main.h + + hash2 + + 6ij4ibmAqVTRApNnN6TFDCrFjwOHdaSmD1zlGfizN6o= + + + Headers/SDL_main_impl.h + + hash2 + + nLJhKmOzMf/3oNn8MHvp28Ph8hx7CuZOgYGvyxa0Fg8= + + + Headers/SDL_messagebox.h + + hash2 + + f9JqShergM7ApYxHQJp0rMwnRA2TW3m1COEQmJgrwMg= + + + Headers/SDL_metal.h + + hash2 + + 7Fs5+iU7qLHNh8XkDvbeNtwypYjyDVB4sBEoASSwgkA= + + + Headers/SDL_misc.h + + hash2 + + zlOAZjhmbs3kUq4/i86aZTyFOf54uMb9lYW9SIjsk+A= + + + Headers/SDL_mouse.h + + hash2 + + MlOYlWsvSYdPROdCRK3zBHOMR4tnoRiSSLX2tX6jk70= + + + Headers/SDL_mutex.h + + hash2 + + K0mA/DdrF5+fAYkt6vZ5qNonce+zAecF0f+2ay6eciU= + + + Headers/SDL_oldnames.h + + hash2 + + pGGsTEnGS1qN38nfrQooK1X/CM4p6EhYwHuSrUCuZCE= + + + Headers/SDL_opengl.h + + hash2 + + LqWxBvkb9UooP3YdPv2hhaUV7Z1hcCrHNXJ0kg5pIC4= + + + Headers/SDL_opengl_glext.h + + hash2 + + 2IXkrwf1MIPKwa6QphzLOTF5R+5z5SFlBvsl9q5QMyQ= + + + Headers/SDL_opengles.h + + hash2 + + q8cYr3RT0WnR58ff37XZOaJQUZvuAt99QuDWplt+DIU= + + + Headers/SDL_opengles2.h + + hash2 + + 0ENhHFweBuRmpiO4jR7kmHRilduMwfFfGHLBl0IEUhc= + + + Headers/SDL_opengles2_gl2.h + + hash2 + + 1uxEsdc/OvzjogrGl223+z2sZWxRkPC1Y+TOkNeaFao= + + + Headers/SDL_opengles2_gl2ext.h + + hash2 + + T8WwA03N6cElki4+cNAUiaazNQdoVu5mApThpjBaNxk= + + + Headers/SDL_opengles2_gl2platform.h + + hash2 + + R3m+mZrNGQRFgjjwnIaYO3lgrEDmEuBdstuX22FfHg8= + + + Headers/SDL_opengles2_khrplatform.h + + hash2 + + ex4Bqqetj2/DS1x733nr9RibsJ4sTS55/F01BiPRHoM= + + + Headers/SDL_pen.h + + hash2 + + kMVe4rIilC0D2bCBXaQuTbyJcfYuFB6NF2zY0GMHZSc= + + + Headers/SDL_pixels.h + + hash2 + + eCSeVfXrBb9lEOXeUyQutsk4yy569mZ2ssZOwQIX7po= + + + Headers/SDL_platform.h + + hash2 + + rJzzCb3cDnVV++HUJYN7rROraIegCilBvo1PzfSzERo= + + + Headers/SDL_platform_defines.h + + hash2 + + JmBmZtUwp3fLQOsnxG2IInhTnZZJsa06aSbCTBL4W80= + + + Headers/SDL_power.h + + hash2 + + CrwC8JYjRRi4dSfpF+uz/vFin8z5SllcSVOv0/hp6P8= + + + Headers/SDL_process.h + + hash2 + + onC1Bw1n1WHtkngzkWRJqUjbAxb9QnazDLWjfNn5HQQ= + + + Headers/SDL_properties.h + + hash2 + + FMSMnEfaIzvmuD/o5CBL6rhd6pXGuhrkjmSQ1F6mTt8= + + + Headers/SDL_rect.h + + hash2 + + jeGck0FYHHopFvmb2FU5lKLFWMIb006jcqASU53b+3Y= + + + Headers/SDL_render.h + + hash2 + + xgrnZk3ugjRZkSwbRT0Hqoh2Pxt8TlzImnvlFVyYCwM= + + + Headers/SDL_revision.h + + hash2 + + lVfkAs2nTN/ggogpOipOMvvzil7LFJ+RFT4fiCB+guQ= + + + Headers/SDL_scancode.h + + hash2 + + BVsEwii4ZFHpfJcmFKdssHhajYad9wuozvmLCpYjVBg= + + + Headers/SDL_sensor.h + + hash2 + + hkGEpyGOUWQhmMkuMasy86uqDchGDP1O8OLMic0d45M= + + + Headers/SDL_stdinc.h + + hash2 + + 85CO1MQfWl81J2QkPetxET1HC0gvdyndv3uIoFbZs+A= + + + Headers/SDL_storage.h + + hash2 + + dzxmg5+xagBNYyqw99NPt6O0NxEGtf/ikiVaFfAd3Z4= + + + Headers/SDL_surface.h + + hash2 + + l6TEe5JtABy9VsH3A4YQmf97J+Ecmi92UZ57Oy4bgYk= + + + Headers/SDL_system.h + + hash2 + + j+vc/6qa/tWwnNVuxFtl/+ZasjDpFiKIj/SWs9WvmoA= + + + Headers/SDL_thread.h + + hash2 + + +Ll2GtdwkIKBAtSax/AZYuS8kYtrGc+hw+ntYHqhmiE= + + + Headers/SDL_time.h + + hash2 + + 2uMjroK2pJQqTpQYR37U8oTurEuBWWavK4ypNIQrjiI= + + + Headers/SDL_timer.h + + hash2 + + 5hkyTURkMquzzC9SGKwImyNFwA5FTsUrX8cj8Tfkvzw= + + + Headers/SDL_touch.h + + hash2 + + IkjbfrMdhQ3G93hAl6yyUMG6/mUIs+kVUEeP//1GUmE= + + + Headers/SDL_tray.h + + hash2 + + ZddMsXJ698uQKcva2c1tCnuf54Lv7wX+yJ//JnykUDY= + + + Headers/SDL_version.h + + hash2 + + AlOPsnE7l/CDCthWtfMtYxQ3Wu+CTQfXh1XPrjUGzzE= + + + Headers/SDL_video.h + + hash2 + + uVRxAEcrEzyV65bJhFd4zGM3oSz8ETWnh/QtgqpoUTI= + + + Headers/SDL_vulkan.h + + hash2 + + oNG4xqKnmC5Bnb246mD84J6ZOQI4Y0yhF9gkQpU6Thw= + + + INSTALL.md + + hash2 + + cfN7quEEdthPBp+Ef9Fnvue8PyOFBgmdeNoftdFDzR8= + + + LICENSE.txt + + hash2 + + l/NbMCs2FoDsHokeldLVIJe7lav/NhQ0kW2Z3BMF8Sc= + + + README.md + + hash2 + + QboZO+koFZBptSlJqxoTwskW+z99BRNKDR6cxw1Mfrg= + + + default.metallib + + hash2 + + 5zQ2W5RhvGbUmNk9QzcZii90676kkTLdiAd2eAHYNsE= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/default.metallib b/release/frameworks/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/default.metallib new file mode 100644 index 0000000000000000000000000000000000000000..8e524d36fe48b0063ab4c0b5b4a7d8e292ec163f GIT binary patch literal 37843 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 j)5Ocvv_oB>=S_czw5lJYPm>X5*Il@Ug + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * Main include header for the SDL library, version 3.2.20 + * + * It is almost always best to include just this one header instead of + * picking out individual headers included here. There are exceptions to + * this rule--SDL_main.h is special and not included here--but usually + * letting SDL.h include the kitchen sink for you is the correct approach. + */ + +#ifndef SDL_h_ +#define SDL_h_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#endif /* SDL_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_assert.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_assert.h new file mode 100644 index 0000000..053af13 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_assert.h @@ -0,0 +1,662 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryAssert + * + * A helpful assertion macro! + * + * SDL assertions operate like your usual `assert` macro, but with some added + * features: + * + * - It uses a trick with the `sizeof` operator, so disabled assertions + * vaporize out of the compiled code, but variables only referenced in the + * assertion won't trigger compiler warnings about being unused. + * - It is safe to use with a dangling-else: `if (x) SDL_assert(y); else + * do_something();` + * - It works the same everywhere, instead of counting on various platforms' + * compiler and C runtime to behave. + * - It provides multiple levels of assertion (SDL_assert, SDL_assert_release, + * SDL_assert_paranoid) instead of a single all-or-nothing option. + * - It offers a variety of responses when an assertion fails (retry, trigger + * the debugger, abort the program, ignore the failure once, ignore it for + * the rest of the program's run). + * - It tries to show the user a dialog by default, if possible, but the app + * can provide a callback to handle assertion failures however they like. + * - It lets failed assertions be retried. Perhaps you had a network failure + * and just want to retry the test after plugging your network cable back + * in? You can. + * - It lets the user ignore an assertion failure, if there's a harmless + * problem that one can continue past. + * - It lets the user mark an assertion as ignored for the rest of the + * program's run; if there's a harmless problem that keeps popping up. + * - It provides statistics and data on all failed assertions to the app. + * - It allows the default assertion handler to be controlled with environment + * variables, in case an automated script needs to control it. + * - It can be used as an aid to Clang's static analysis; it will treat SDL + * assertions as universally true (under the assumption that you are serious + * about the asserted claims and that your debug builds will detect when + * these claims were wrong). This can help the analyzer avoid false + * positives. + * + * To use it: compile a debug build and just sprinkle around tests to check + * your code! + */ + +#ifndef SDL_assert_h_ +#define SDL_assert_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * The level of assertion aggressiveness. + * + * This value changes depending on compiler options and other preprocessor + * defines. + * + * It is currently one of the following values, but future SDL releases might + * add more: + * + * - 0: All SDL assertion macros are disabled. + * - 1: Release settings: SDL_assert disabled, SDL_assert_release enabled. + * - 2: Debug settings: SDL_assert and SDL_assert_release enabled. + * - 3: Paranoid settings: All SDL assertion macros enabled, including + * SDL_assert_paranoid. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ASSERT_LEVEL SomeNumberBasedOnVariousFactors + +#elif !defined(SDL_ASSERT_LEVEL) +#ifdef SDL_DEFAULT_ASSERT_LEVEL +#define SDL_ASSERT_LEVEL SDL_DEFAULT_ASSERT_LEVEL +#elif defined(_DEBUG) || defined(DEBUG) || \ + (defined(__GNUC__) && !defined(__OPTIMIZE__)) +#define SDL_ASSERT_LEVEL 2 +#else +#define SDL_ASSERT_LEVEL 1 +#endif +#endif + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Attempt to tell an attached debugger to pause. + * + * This allows an app to programmatically halt ("break") the debugger as if it + * had hit a breakpoint, allowing the developer to examine program state, etc. + * + * This is a macro--not a function--so that the debugger breaks on the source + * code line that used SDL_TriggerBreakpoint and not in some random guts of + * SDL. SDL_assert uses this macro for the same reason. + * + * If the program is not running under a debugger, SDL_TriggerBreakpoint will + * likely terminate the app, possibly without warning. If the current platform + * isn't supported, this macro is left undefined. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TriggerBreakpoint() TriggerABreakpointInAPlatformSpecificManner + +#elif defined(_MSC_VER) && _MSC_VER >= 1310 + /* Don't include intrin.h here because it contains C++ code */ + extern void __cdecl __debugbreak(void); + #define SDL_TriggerBreakpoint() __debugbreak() +#elif defined(_MSC_VER) && defined(_M_IX86) + #define SDL_TriggerBreakpoint() { _asm { int 0x03 } } +#elif defined(ANDROID) + #include + #define SDL_TriggerBreakpoint() assert(0) +#elif SDL_HAS_BUILTIN(__builtin_debugtrap) + #define SDL_TriggerBreakpoint() __builtin_debugtrap() +#elif SDL_HAS_BUILTIN(__builtin_trap) + #define SDL_TriggerBreakpoint() __builtin_trap() +#elif (defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__)) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "int $3\n\t" ) +#elif (defined(__GNUC__) || defined(__clang__)) && defined(__riscv) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "ebreak\n\t" ) +#elif ( defined(SDL_PLATFORM_APPLE) && (defined(__arm64__) || defined(__aarch64__)) ) /* this might work on other ARM targets, but this is a known quantity... */ + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "brk #22\n\t" ) +#elif defined(SDL_PLATFORM_APPLE) && defined(__arm__) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "bkpt #22\n\t" ) +#elif defined(_WIN32) && ((defined(__GNUC__) || defined(__clang__)) && (defined(__arm64__) || defined(__aarch64__)) ) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "brk #0xF000\n\t" ) +#elif defined(__GNUC__) || defined(__clang__) + #define SDL_TriggerBreakpoint() __builtin_trap() /* older gcc may not support SDL_HAS_BUILTIN(__builtin_trap) above */ +#elif defined(__386__) && defined(__WATCOMC__) + #define SDL_TriggerBreakpoint() { _asm { int 0x03 } } +#elif defined(HAVE_SIGNAL_H) && !defined(__WATCOMC__) + #include + #define SDL_TriggerBreakpoint() raise(SIGTRAP) +#else + /* SDL_TriggerBreakpoint is intentionally left undefined on unknown platforms. */ +#endif + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro that reports the current function being compiled. + * + * If SDL can't figure how the compiler reports this, it will use "???". + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FUNCTION __FUNCTION__ + +#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 supports __func__ as a standard. */ +# define SDL_FUNCTION __func__ +#elif ((defined(__GNUC__) && (__GNUC__ >= 2)) || defined(_MSC_VER) || defined (__WATCOMC__)) +# define SDL_FUNCTION __FUNCTION__ +#else +# define SDL_FUNCTION "???" +#endif + +/** + * A macro that reports the current file being compiled. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FILE __FILE__ + +/** + * A macro that reports the current line number of the file being compiled. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_LINE __LINE__ + +/* +sizeof (x) makes the compiler still parse the expression even without +assertions enabled, so the code is always checked at compile time, but +doesn't actually generate code for it, so there are no side effects or +expensive checks at run time, just the constant size of what x WOULD be, +which presumably gets optimized out as unused. +This also solves the problem of... + + int somevalue = blah(); + SDL_assert(somevalue == 1); + +...which would cause compiles to complain that somevalue is unused if we +disable assertions. +*/ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro for wrapping code in `do {} while (0);` without compiler warnings. + * + * Visual Studio with really aggressive warnings enabled needs this to avoid + * compiler complaints. + * + * the `do {} while (0);` trick is useful for wrapping code in a macro that + * may or may not be a single statement, to avoid various C language + * accidents. + * + * To use: + * + * ```c + * do { SomethingOnce(); } while (SDL_NULL_WHILE_LOOP_CONDITION (0)); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NULL_WHILE_LOOP_CONDITION (0) + +#elif defined(_MSC_VER) /* Avoid /W4 warnings. */ +/* "while (0,0)" fools Microsoft's compiler's /W4 warning level into thinking + this condition isn't constant. And looks like an owl's face! */ +#define SDL_NULL_WHILE_LOOP_CONDITION (0,0) +#else +#define SDL_NULL_WHILE_LOOP_CONDITION (0) +#endif + +/** + * The macro used when an assertion is disabled. + * + * This isn't for direct use by apps, but this is the code that is inserted + * when an SDL_assert is disabled (perhaps in a release build). + * + * The code does nothing, but wraps `condition` in a sizeof operator, which + * generates no code and has no side effects, but avoid compiler warnings + * about unused variables. + * + * \param condition the condition to assert (but not actually run here). + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_disabled_assert(condition) \ + do { (void) sizeof ((condition)); } while (SDL_NULL_WHILE_LOOP_CONDITION) + +/** + * Possible outcomes from a triggered assertion. + * + * When an enabled assertion triggers, it may call the assertion handler + * (possibly one provided by the app via SDL_SetAssertionHandler), which will + * return one of these values, possibly after asking the user. + * + * Then SDL will respond based on this outcome (loop around to retry the + * condition, try to break in a debugger, kill the program, or ignore the + * problem). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AssertState +{ + SDL_ASSERTION_RETRY, /**< Retry the assert immediately. */ + SDL_ASSERTION_BREAK, /**< Make the debugger trigger a breakpoint. */ + SDL_ASSERTION_ABORT, /**< Terminate the program. */ + SDL_ASSERTION_IGNORE, /**< Ignore the assert. */ + SDL_ASSERTION_ALWAYS_IGNORE /**< Ignore the assert from now on. */ +} SDL_AssertState; + +/** + * Information about an assertion failure. + * + * This structure is filled in with information about a triggered assertion, + * used by the assertion handler, then added to the assertion report. This is + * returned as a linked list from SDL_GetAssertionReport(). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_AssertData +{ + bool always_ignore; /**< true if app should always continue when assertion is triggered. */ + unsigned int trigger_count; /**< Number of times this assertion has been triggered. */ + const char *condition; /**< A string of this assert's test code. */ + const char *filename; /**< The source file where this assert lives. */ + int linenum; /**< The line in `filename` where this assert lives. */ + const char *function; /**< The name of the function where this assert lives. */ + const struct SDL_AssertData *next; /**< next item in the linked list. */ +} SDL_AssertData; + +/** + * Never call this directly. + * + * Use the SDL_assert macros instead. + * + * \param data assert data structure. + * \param func function name. + * \param file file name. + * \param line line number. + * \returns assert state. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_AssertState SDLCALL SDL_ReportAssertion(SDL_AssertData *data, + const char *func, + const char *file, int line) SDL_ANALYZER_NORETURN; + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * The macro used when an assertion triggers a breakpoint. + * + * This isn't for direct use by apps; use SDL_assert or SDL_TriggerBreakpoint + * instead. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AssertBreakpoint() SDL_TriggerBreakpoint() + +#elif !defined(SDL_AssertBreakpoint) +# if defined(ANDROID) && defined(assert) + /* Define this as empty in case assert() is defined as SDL_assert */ +# define SDL_AssertBreakpoint() +# else +# define SDL_AssertBreakpoint() SDL_TriggerBreakpoint() +# endif +#endif /* !SDL_AssertBreakpoint */ + +/** + * The macro used when an assertion is enabled. + * + * This isn't for direct use by apps, but this is the code that is inserted + * when an SDL_assert is enabled. + * + * The `do {} while(0)` avoids dangling else problems: + * + * ```c + * if (x) SDL_assert(y); else blah(); + * ``` + * + * ... without the do/while, the "else" could attach to this macro's "if". We + * try to handle just the minimum we need here in a macro...the loop, the + * static vars, and break points. The heavy lifting is handled in + * SDL_ReportAssertion(). + * + * \param condition the condition to assert. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_enabled_assert(condition) \ + do { \ + while ( !(condition) ) { \ + static struct SDL_AssertData sdl_assert_data = { false, 0, #condition, NULL, 0, NULL, NULL }; \ + const SDL_AssertState sdl_assert_state = SDL_ReportAssertion(&sdl_assert_data, SDL_FUNCTION, SDL_FILE, SDL_LINE); \ + if (sdl_assert_state == SDL_ASSERTION_RETRY) { \ + continue; /* go again. */ \ + } else if (sdl_assert_state == SDL_ASSERTION_BREAK) { \ + SDL_AssertBreakpoint(); \ + } \ + break; /* not retrying. */ \ + } \ + } while (SDL_NULL_WHILE_LOOP_CONDITION) + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * An assertion test that is normally performed only in debug builds. + * + * This macro is enabled when the SDL_ASSERT_LEVEL is >= 2, otherwise it is + * disabled. This is meant to only do these tests in debug builds, so they can + * tend to be more expensive, and they are meant to bring everything to a halt + * when they fail, with the programmer there to assess the problem. + * + * In short: you can sprinkle these around liberally and assume they will + * evaporate out of the build when building for end-users. + * + * When assertions are disabled, this wraps `condition` in a `sizeof` + * operator, which means any function calls and side effects will not run, but + * the compiler will not complain about any otherwise-unused variables that + * are only referenced in the assertion. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert(condition) if (assertion_enabled && (condition)) { trigger_assertion; } + +/** + * An assertion test that is performed even in release builds. + * + * This macro is enabled when the SDL_ASSERT_LEVEL is >= 1, otherwise it is + * disabled. This is meant to be for tests that are cheap to make and + * extremely unlikely to fail; generally it is frowned upon to have an + * assertion failure in a release build, so these assertions generally need to + * be of more than life-and-death importance if there's a chance they might + * trigger. You should almost always consider handling these cases more + * gracefully than an assert allows. + * + * When assertions are disabled, this wraps `condition` in a `sizeof` + * operator, which means any function calls and side effects will not run, but + * the compiler will not complain about any otherwise-unused variables that + * are only referenced in the assertion. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * * + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert_release(condition) SDL_disabled_assert(condition) + +/** + * An assertion test that is performed only when built with paranoid settings. + * + * This macro is enabled when the SDL_ASSERT_LEVEL is >= 3, otherwise it is + * disabled. This is a higher level than both release and debug, so these + * tests are meant to be expensive and only run when specifically looking for + * extremely unexpected failure cases in a special build. + * + * When assertions are disabled, this wraps `condition` in a `sizeof` + * operator, which means any function calls and side effects will not run, but + * the compiler will not complain about any otherwise-unused variables that + * are only referenced in the assertion. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) + +/* Enable various levels of assertions. */ +#elif SDL_ASSERT_LEVEL == 0 /* assertions disabled */ +# define SDL_assert(condition) SDL_disabled_assert(condition) +# define SDL_assert_release(condition) SDL_disabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 1 /* release settings. */ +# define SDL_assert(condition) SDL_disabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 2 /* debug settings. */ +# define SDL_assert(condition) SDL_enabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 3 /* paranoid settings. */ +# define SDL_assert(condition) SDL_enabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_enabled_assert(condition) +#else +# error Unknown assertion level. +#endif + +/** + * An assertion test that is always performed. + * + * This macro is always enabled no matter what SDL_ASSERT_LEVEL is set to. You + * almost never want to use this, as it could trigger on an end-user's system, + * crashing your program. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert_always(condition) SDL_enabled_assert(condition) + + +/** + * A callback that fires when an SDL assertion fails. + * + * \param data a pointer to the SDL_AssertData structure corresponding to the + * current assertion. + * \param userdata what was passed as `userdata` to SDL_SetAssertionHandler(). + * \returns an SDL_AssertState value indicating how to handle the failure. + * + * \threadsafety This callback may be called from any thread that triggers an + * assert at any time. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AssertState (SDLCALL *SDL_AssertionHandler)( + const SDL_AssertData *data, void *userdata); + +/** + * Set an application-defined assertion handler. + * + * This function allows an application to show its own assertion UI and/or + * force the response to an assertion failure. If the application doesn't + * provide this, SDL will try to do the right thing, popping up a + * system-specific GUI dialog, and probably minimizing any fullscreen windows. + * + * This callback may fire from any thread, but it runs wrapped in a mutex, so + * it will only fire from one thread at a time. + * + * This callback is NOT reset to SDL's internal handler upon SDL_Quit()! + * + * \param handler the SDL_AssertionHandler function to call when an assertion + * fails or NULL for the default handler. + * \param userdata a pointer that is passed to `handler`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAssertionHandler + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetAssertionHandler( + SDL_AssertionHandler handler, + void *userdata); + +/** + * Get the default assertion handler. + * + * This returns the function pointer that is called by default when an + * assertion is triggered. This is an internal function provided by SDL, that + * is used for assertions when SDL_SetAssertionHandler() hasn't been used to + * provide a different function. + * + * \returns the default SDL_AssertionHandler that is called when an assert + * triggers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAssertionHandler + */ +extern SDL_DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetDefaultAssertionHandler(void); + +/** + * Get the current assertion handler. + * + * This returns the function pointer that is called when an assertion is + * triggered. This is either the value last passed to + * SDL_SetAssertionHandler(), or if no application-specified function is set, + * is equivalent to calling SDL_GetDefaultAssertionHandler(). + * + * The parameter `puserdata` is a pointer to a void*, which will store the + * "userdata" pointer that was passed to SDL_SetAssertionHandler(). This value + * will always be NULL for the default handler. If you don't care about this + * data, it is safe to pass a NULL pointer to this function to ignore it. + * + * \param puserdata pointer which is filled with the "userdata" pointer that + * was passed to SDL_SetAssertionHandler(). + * \returns the SDL_AssertionHandler that is called when an assert triggers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAssertionHandler + */ +extern SDL_DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetAssertionHandler(void **puserdata); + +/** + * Get a list of all assertion failures. + * + * This function gets all assertions triggered since the last call to + * SDL_ResetAssertionReport(), or the start of the program. + * + * The proper way to examine this data looks something like this: + * + * ```c + * const SDL_AssertData *item = SDL_GetAssertionReport(); + * while (item) { + * printf("'%s', %s (%s:%d), triggered %u times, always ignore: %s.\\n", + * item->condition, item->function, item->filename, + * item->linenum, item->trigger_count, + * item->always_ignore ? "yes" : "no"); + * item = item->next; + * } + * ``` + * + * \returns a list of all failed assertions or NULL if the list is empty. This + * memory should not be modified or freed by the application. This + * pointer remains valid until the next call to SDL_Quit() or + * SDL_ResetAssertionReport(). + * + * \threadsafety This function is not thread safe. Other threads calling + * SDL_ResetAssertionReport() simultaneously, may render the + * returned pointer invalid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResetAssertionReport + */ +extern SDL_DECLSPEC const SDL_AssertData * SDLCALL SDL_GetAssertionReport(void); + +/** + * Clear the list of all assertion failures. + * + * This function will clear the list of all assertions triggered up to that + * point. Immediately following this call, SDL_GetAssertionReport will return + * no items. In addition, any previously-triggered assertions will be reset to + * a trigger_count of zero, and their always_ignore state will be false. + * + * \threadsafety This function is not thread safe. Other threads triggering an + * assertion, or simultaneously calling this function may cause + * memory leaks or crashes. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAssertionReport + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetAssertionReport(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_assert_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_asyncio.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_asyncio.h new file mode 100644 index 0000000..b36cb07 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_asyncio.h @@ -0,0 +1,546 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: AsyncIO */ + +/** + * # CategoryAsyncIO + * + * SDL offers a way to perform I/O asynchronously. This allows an app to read + * or write files without waiting for data to actually transfer; the functions + * that request I/O never block while the request is fulfilled. + * + * Instead, the data moves in the background and the app can check for results + * at their leisure. + * + * This is more complicated than just reading and writing files in a + * synchronous way, but it can allow for more efficiency, and never having + * framerate drops as the hard drive catches up, etc. + * + * The general usage pattern for async I/O is: + * + * - Create one or more SDL_AsyncIOQueue objects. + * - Open files with SDL_AsyncIOFromFile. + * - Start I/O tasks to the files with SDL_ReadAsyncIO or SDL_WriteAsyncIO, + * putting those tasks into one of the queues. + * - Later on, use SDL_GetAsyncIOResult on a queue to see if any task is + * finished without blocking. Tasks might finish in any order with success + * or failure. + * - When all your tasks are done, close the file with SDL_CloseAsyncIO. This + * also generates a task, since it might flush data to disk! + * + * This all works, without blocking, in a single thread, but one can also wait + * on a queue in a background thread, sleeping until new results have arrived: + * + * - Call SDL_WaitAsyncIOResult from one or more threads to efficiently block + * until new tasks complete. + * - When shutting down, call SDL_SignalAsyncIOQueue to unblock any sleeping + * threads despite there being no new tasks completed. + * + * And, of course, to match the synchronous SDL_LoadFile, we offer + * SDL_LoadFileAsync as a convenience function. This will handle allocating a + * buffer, slurping in the file data, and null-terminating it; you still check + * for results later. + * + * Behind the scenes, SDL will use newer, efficient APIs on platforms that + * support them: Linux's io_uring and Windows 11's IoRing, for example. If + * those technologies aren't available, SDL will offload the work to a thread + * pool that will manage otherwise-synchronous loads without blocking the app. + * + * ## Best Practices + * + * Simple non-blocking I/O--for an app that just wants to pick up data + * whenever it's ready without losing framerate waiting on disks to spin--can + * use whatever pattern works well for the program. In this case, simply call + * SDL_ReadAsyncIO, or maybe SDL_LoadFileAsync, as needed. Once a frame, call + * SDL_GetAsyncIOResult to check for any completed tasks and deal with the + * data as it arrives. + * + * If two separate pieces of the same program need their own I/O, it is legal + * for each to create their own queue. This will prevent either piece from + * accidentally consuming the other's completed tasks. Each queue does require + * some amount of resources, but it is not an overwhelming cost. Do not make a + * queue for each task, however. It is better to put many tasks into a single + * queue. They will be reported in order of completion, not in the order they + * were submitted, so it doesn't generally matter what order tasks are + * started. + * + * One async I/O queue can be shared by multiple threads, or one thread can + * have more than one queue, but the most efficient way--if ruthless + * efficiency is the goal--is to have one queue per thread, with multiple + * threads working in parallel, and attempt to keep each queue loaded with + * tasks that are both started by and consumed by the same thread. On modern + * platforms that can use newer interfaces, this can keep data flowing as + * efficiently as possible all the way from storage hardware to the app, with + * no contention between threads for access to the same queue. + * + * Written data is not guaranteed to make it to physical media by the time a + * closing task is completed, unless SDL_CloseAsyncIO is called with its + * `flush` parameter set to true, which is to say that a successful result + * here can still result in lost data during an unfortunately-timed power + * outage if not flushed. However, flushing will take longer and may be + * unnecessary, depending on the app's needs. + */ + +#ifndef SDL_asyncio_h_ +#define SDL_asyncio_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The asynchronous I/O operation structure. + * + * This operates as an opaque handle. One can then request read or write + * operations on it. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AsyncIOFromFile + */ +typedef struct SDL_AsyncIO SDL_AsyncIO; + +/** + * Types of asynchronous I/O tasks. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AsyncIOTaskType +{ + SDL_ASYNCIO_TASK_READ, /**< A read operation. */ + SDL_ASYNCIO_TASK_WRITE, /**< A write operation. */ + SDL_ASYNCIO_TASK_CLOSE /**< A close operation. */ +} SDL_AsyncIOTaskType; + +/** + * Possible outcomes of an asynchronous I/O task. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AsyncIOResult +{ + SDL_ASYNCIO_COMPLETE, /**< request was completed without error */ + SDL_ASYNCIO_FAILURE, /**< request failed for some reason; check SDL_GetError()! */ + SDL_ASYNCIO_CANCELED /**< request was canceled before completing. */ +} SDL_AsyncIOResult; + +/** + * Information about a completed asynchronous I/O request. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_AsyncIOOutcome +{ + SDL_AsyncIO *asyncio; /**< what generated this task. This pointer will be invalid if it was closed! */ + SDL_AsyncIOTaskType type; /**< What sort of task was this? Read, write, etc? */ + SDL_AsyncIOResult result; /**< the result of the work (success, failure, cancellation). */ + void *buffer; /**< buffer where data was read/written. */ + Uint64 offset; /**< offset in the SDL_AsyncIO where data was read/written. */ + Uint64 bytes_requested; /**< number of bytes the task was to read/write. */ + Uint64 bytes_transferred; /**< actual number of bytes that were read/written. */ + void *userdata; /**< pointer provided by the app when starting the task */ +} SDL_AsyncIOOutcome; + +/** + * A queue of completed asynchronous I/O tasks. + * + * When starting an asynchronous operation, you specify a queue for the new + * task. A queue can be asked later if any tasks in it have completed, + * allowing an app to manage multiple pending tasks in one place, in whatever + * order they complete. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateAsyncIOQueue + * \sa SDL_ReadAsyncIO + * \sa SDL_WriteAsyncIO + * \sa SDL_GetAsyncIOResult + * \sa SDL_WaitAsyncIOResult + */ +typedef struct SDL_AsyncIOQueue SDL_AsyncIOQueue; + +/** + * Use this function to create a new SDL_AsyncIO object for reading from + * and/or writing to a named file. + * + * The `mode` string understands the following values: + * + * - "r": Open a file for reading only. It must exist. + * - "w": Open a file for writing only. It will create missing files or + * truncate existing ones. + * - "r+": Open a file for update both reading and writing. The file must + * exist. + * - "w+": Create an empty file for both reading and writing. If a file with + * the same name already exists its content is erased and the file is + * treated as a new empty file. + * + * There is no "b" mode, as there is only "binary" style I/O, and no "a" mode + * for appending, since you specify the position when starting a task. + * + * This function supports Unicode filenames, but they must be encoded in UTF-8 + * format, regardless of the underlying operating system. + * + * This call is _not_ asynchronous; it will open the file before returning, + * under the assumption that doing so is generally a fast operation. Future + * reads and writes to the opened file will be async, however. + * + * \param file a UTF-8 string representing the filename to open. + * \param mode an ASCII string representing the mode to be used for opening + * the file. + * \returns a pointer to the SDL_AsyncIO structure that is created or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseAsyncIO + * \sa SDL_ReadAsyncIO + * \sa SDL_WriteAsyncIO + */ +extern SDL_DECLSPEC SDL_AsyncIO * SDLCALL SDL_AsyncIOFromFile(const char *file, const char *mode); + +/** + * Use this function to get the size of the data stream in an SDL_AsyncIO. + * + * This call is _not_ asynchronous; it assumes that obtaining this info is a + * non-blocking operation in most reasonable cases. + * + * \param asyncio the SDL_AsyncIO to get the size of the data stream from. + * \returns the size of the data stream in the SDL_IOStream on success or a + * negative error code on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_GetAsyncIOSize(SDL_AsyncIO *asyncio); + +/** + * Start an async read. + * + * This function reads up to `size` bytes from `offset` position in the data + * source to the area pointed at by `ptr`. This function may read less bytes + * than requested. + * + * This function returns as quickly as possible; it does not wait for the read + * to complete. On a successful return, this work will continue in the + * background. If the work begins, even failure is asynchronous: a failing + * return value from this function only means the work couldn't start at all. + * + * `ptr` must remain available until the work is done, and may be accessed by + * the system at any time until then. Do not allocate it on the stack, as this + * might take longer than the life of the calling function to complete! + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param asyncio a pointer to an SDL_AsyncIO structure. + * \param ptr a pointer to a buffer to read data into. + * \param offset the position to start reading in the data source. + * \param size the number of bytes to read from the data source. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WriteAsyncIO + * \sa SDL_CreateAsyncIOQueue + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadAsyncIO(SDL_AsyncIO *asyncio, void *ptr, Uint64 offset, Uint64 size, SDL_AsyncIOQueue *queue, void *userdata); + +/** + * Start an async write. + * + * This function writes `size` bytes from `offset` position in the data source + * to the area pointed at by `ptr`. + * + * This function returns as quickly as possible; it does not wait for the + * write to complete. On a successful return, this work will continue in the + * background. If the work begins, even failure is asynchronous: a failing + * return value from this function only means the work couldn't start at all. + * + * `ptr` must remain available until the work is done, and may be accessed by + * the system at any time until then. Do not allocate it on the stack, as this + * might take longer than the life of the calling function to complete! + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param asyncio a pointer to an SDL_AsyncIO structure. + * \param ptr a pointer to a buffer to write data from. + * \param offset the position to start writing to the data source. + * \param size the number of bytes to write to the data source. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ReadAsyncIO + * \sa SDL_CreateAsyncIOQueue + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteAsyncIO(SDL_AsyncIO *asyncio, void *ptr, Uint64 offset, Uint64 size, SDL_AsyncIOQueue *queue, void *userdata); + +/** + * Close and free any allocated resources for an async I/O object. + * + * Closing a file is _also_ an asynchronous task! If a write failure were to + * happen during the closing process, for example, the task results will + * report it as usual. + * + * Closing a file that has been written to does not guarantee the data has + * made it to physical media; it may remain in the operating system's file + * cache, for later writing to disk. This means that a successfully-closed + * file can be lost if the system crashes or loses power in this small window. + * To prevent this, call this function with the `flush` parameter set to true. + * This will make the operation take longer, and perhaps increase system load + * in general, but a successful result guarantees that the data has made it to + * physical storage. Don't use this for temporary files, caches, and + * unimportant data, and definitely use it for crucial irreplaceable files, + * like game saves. + * + * This function guarantees that the close will happen after any other pending + * tasks to `asyncio`, so it's safe to open a file, start several operations, + * close the file immediately, then check for all results later. This function + * will not block until the tasks have completed. + * + * Once this function returns true, `asyncio` is no longer valid, regardless + * of any future outcomes. Any completed tasks might still contain this + * pointer in their SDL_AsyncIOOutcome data, in case the app was using this + * value to track information, but it should not be used again. + * + * If this function returns false, the close wasn't started at all, and it's + * safe to attempt to close again later. + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param asyncio a pointer to an SDL_AsyncIO structure to close. + * \param flush true if data should sync to disk before the task completes. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, but two + * threads should not attempt to close the same object. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CloseAsyncIO(SDL_AsyncIO *asyncio, bool flush, SDL_AsyncIOQueue *queue, void *userdata); + +/** + * Create a task queue for tracking multiple I/O operations. + * + * Async I/O operations are assigned to a queue when started. The queue can be + * checked for completed tasks thereafter. + * + * \returns a new task queue object or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyAsyncIOQueue + * \sa SDL_GetAsyncIOResult + * \sa SDL_WaitAsyncIOResult + */ +extern SDL_DECLSPEC SDL_AsyncIOQueue * SDLCALL SDL_CreateAsyncIOQueue(void); + +/** + * Destroy a previously-created async I/O task queue. + * + * If there are still tasks pending for this queue, this call will block until + * those tasks are finished. All those tasks will be deallocated. Their + * results will be lost to the app. + * + * Any pending reads from SDL_LoadFileAsync() that are still in this queue + * will have their buffers deallocated by this function, to prevent a memory + * leak. + * + * Once this function is called, the queue is no longer valid and should not + * be used, including by other threads that might access it while destruction + * is blocking on pending tasks. + * + * Do not destroy a queue that still has threads waiting on it through + * SDL_WaitAsyncIOResult(). You can call SDL_SignalAsyncIOQueue() first to + * unblock those threads, and take measures (such as SDL_WaitThread()) to make + * sure they have finished their wait and won't wait on the queue again. + * + * \param queue the task queue to destroy. + * + * \threadsafety It is safe to call this function from any thread, so long as + * no other thread is waiting on the queue with + * SDL_WaitAsyncIOResult. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyAsyncIOQueue(SDL_AsyncIOQueue *queue); + +/** + * Query an async I/O task queue for completed tasks. + * + * If a task assigned to this queue has finished, this will return true and + * fill in `outcome` with the details of the task. If no task in the queue has + * finished, this function will return false. This function does not block. + * + * If a task has completed, this function will free its resources and the task + * pointer will no longer be valid. The task will be removed from the queue. + * + * It is safe for multiple threads to call this function on the same queue at + * once; a completed task will only go to one of the threads. + * + * \param queue the async I/O task queue to query. + * \param outcome details of a finished task will be written here. May not be + * NULL. + * \returns true if a task has completed, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAsyncIOResult + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetAsyncIOResult(SDL_AsyncIOQueue *queue, SDL_AsyncIOOutcome *outcome); + +/** + * Block until an async I/O task queue has a completed task. + * + * This function puts the calling thread to sleep until there a task assigned + * to the queue that has finished. + * + * If a task assigned to the queue has finished, this will return true and + * fill in `outcome` with the details of the task. If no task in the queue has + * finished, this function will return false. + * + * If a task has completed, this function will free its resources and the task + * pointer will no longer be valid. The task will be removed from the queue. + * + * It is safe for multiple threads to call this function on the same queue at + * once; a completed task will only go to one of the threads. + * + * Note that by the nature of various platforms, more than one waiting thread + * may wake to handle a single task, but only one will obtain it, so + * `timeoutMS` is a _maximum_ wait time, and this function may return false + * sooner. + * + * This function may return false if there was a system error, the OS + * inadvertently awoke multiple threads, or if SDL_SignalAsyncIOQueue() was + * called to wake up all waiting threads without a finished task. + * + * A timeout can be used to specify a maximum wait time, but rather than + * polling, it is possible to have a timeout of -1 to wait forever, and use + * SDL_SignalAsyncIOQueue() to wake up the waiting threads later. + * + * \param queue the async I/O task queue to wait on. + * \param outcome details of a finished task will be written here. May not be + * NULL. + * \param timeoutMS the maximum time to wait, in milliseconds, or -1 to wait + * indefinitely. + * \returns true if task has completed, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalAsyncIOQueue + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitAsyncIOResult(SDL_AsyncIOQueue *queue, SDL_AsyncIOOutcome *outcome, Sint32 timeoutMS); + +/** + * Wake up any threads that are blocking in SDL_WaitAsyncIOResult(). + * + * This will unblock any threads that are sleeping in a call to + * SDL_WaitAsyncIOResult for the specified queue, and cause them to return + * from that function. + * + * This can be useful when destroying a queue to make sure nothing is touching + * it indefinitely. In this case, once this call completes, the caller should + * take measures to make sure any previously-blocked threads have returned + * from their wait and will not touch the queue again (perhaps by setting a + * flag to tell the threads to terminate and then using SDL_WaitThread() to + * make sure they've done so). + * + * \param queue the async I/O task queue to signal. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAsyncIOResult + */ +extern SDL_DECLSPEC void SDLCALL SDL_SignalAsyncIOQueue(SDL_AsyncIOQueue *queue); + +/** + * Load all the data from a file path, asynchronously. + * + * This function returns as quickly as possible; it does not wait for the read + * to complete. On a successful return, this work will continue in the + * background. If the work begins, even failure is asynchronous: a failing + * return value from this function only means the work couldn't start at all. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in SDL_AsyncIOOutcome's + * bytes_transferred value. + * + * This function will allocate the buffer to contain the file. It must be + * deallocated by calling SDL_free() on SDL_AsyncIOOutcome's buffer field + * after completion. + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param file the path to read all available data from. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFile_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LoadFileAsync(const char *file, SDL_AsyncIOQueue *queue, void *userdata); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_asyncio_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_atomic.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_atomic.h new file mode 100644 index 0000000..78b5e0f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_atomic.h @@ -0,0 +1,664 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryAtomic + * + * Atomic operations. + * + * IMPORTANT: If you are not an expert in concurrent lockless programming, you + * should not be using any functions in this file. You should be protecting + * your data structures with full mutexes instead. + * + * ***Seriously, here be dragons!*** + * + * You can find out a little more about lockless programming and the subtle + * issues that can arise here: + * https://learn.microsoft.com/en-us/windows/win32/dxtecharts/lockless-programming + * + * There's also lots of good information here: + * + * - https://www.1024cores.net/home/lock-free-algorithms + * - https://preshing.com/ + * + * These operations may or may not actually be implemented using processor + * specific atomic operations. When possible they are implemented as true + * processor specific atomic operations. When that is not possible the are + * implemented using locks that *do* use the available atomic operations. + * + * All of the atomic operations that modify memory are full memory barriers. + */ + +#ifndef SDL_atomic_h_ +#define SDL_atomic_h_ + +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An atomic spinlock. + * + * The atomic locks are efficient spinlocks using CPU instructions, but are + * vulnerable to starvation and can spin forever if a thread holding a lock + * has been terminated. For this reason you should minimize the code executed + * inside an atomic lock and never do expensive things like API or system + * calls while holding them. + * + * They are also vulnerable to starvation if the thread holding the lock is + * lower priority than other threads and doesn't get scheduled. In general you + * should use mutexes instead, since they have better performance and + * contention behavior. + * + * The atomic locks are not safe to lock recursively. + * + * Porting Note: The spin lock functions and type are required and can not be + * emulated because they are used in the atomic emulation code. + */ +typedef int SDL_SpinLock; + +/** + * Try to lock a spin lock by setting it to a non-zero value. + * + * ***Please note that spinlocks are dangerous if you don't know what you're + * doing. Please be careful using any sort of spinlock!*** + * + * \param lock a pointer to a lock variable. + * \returns true if the lock succeeded, false if the lock is already held. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockSpinlock + * \sa SDL_UnlockSpinlock + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockSpinlock(SDL_SpinLock *lock); + +/** + * Lock a spin lock by setting it to a non-zero value. + * + * ***Please note that spinlocks are dangerous if you don't know what you're + * doing. Please be careful using any sort of spinlock!*** + * + * \param lock a pointer to a lock variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TryLockSpinlock + * \sa SDL_UnlockSpinlock + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockSpinlock(SDL_SpinLock *lock); + +/** + * Unlock a spin lock by setting it to 0. + * + * Always returns immediately. + * + * ***Please note that spinlocks are dangerous if you don't know what you're + * doing. Please be careful using any sort of spinlock!*** + * + * \param lock a pointer to a lock variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockSpinlock + * \sa SDL_TryLockSpinlock + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockSpinlock(SDL_SpinLock *lock); + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Mark a compiler barrier. + * + * A compiler barrier prevents the compiler from reordering reads and writes + * to globally visible variables across the call. + * + * This macro only prevents the compiler from reordering reads and writes, it + * does not prevent the CPU from reordering reads and writes. However, all of + * the atomic operations that modify memory are full memory barriers. + * + * \threadsafety Obviously this macro is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CompilerBarrier() DoCompilerSpecificReadWriteBarrier() + +#elif defined(_MSC_VER) && (_MSC_VER > 1200) && !defined(__clang__) +void _ReadWriteBarrier(void); +#pragma intrinsic(_ReadWriteBarrier) +#define SDL_CompilerBarrier() _ReadWriteBarrier() +#elif (defined(__GNUC__) && !defined(SDL_PLATFORM_EMSCRIPTEN)) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x5120)) +/* This is correct for all CPUs when using GCC or Solaris Studio 12.1+. */ +#define SDL_CompilerBarrier() __asm__ __volatile__ ("" : : : "memory") +#elif defined(__WATCOMC__) +extern __inline void SDL_CompilerBarrier(void); +#pragma aux SDL_CompilerBarrier = "" parm [] modify exact []; +#else +#define SDL_CompilerBarrier() \ +{ SDL_SpinLock _tmp = 0; SDL_LockSpinlock(&_tmp); SDL_UnlockSpinlock(&_tmp); } +#endif + +/** + * Insert a memory release barrier (function version). + * + * Please refer to SDL_MemoryBarrierRelease for details. This is a function + * version, which might be useful if you need to use this functionality from a + * scripting language, etc. Also, some of the macro versions call this + * function behind the scenes, where more heavy lifting can happen inside of + * SDL. Generally, though, an app written in C/C++/etc should use the macro + * version, as it will be more efficient. + * + * \threadsafety Obviously this function is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierRelease + */ +extern SDL_DECLSPEC void SDLCALL SDL_MemoryBarrierReleaseFunction(void); + +/** + * Insert a memory acquire barrier (function version). + * + * Please refer to SDL_MemoryBarrierRelease for details. This is a function + * version, which might be useful if you need to use this functionality from a + * scripting language, etc. Also, some of the macro versions call this + * function behind the scenes, where more heavy lifting can happen inside of + * SDL. Generally, though, an app written in C/C++/etc should use the macro + * version, as it will be more efficient. + * + * \threadsafety Obviously this function is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierAcquire + */ +extern SDL_DECLSPEC void SDLCALL SDL_MemoryBarrierAcquireFunction(void); + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Insert a memory release barrier (macro version). + * + * Memory barriers are designed to prevent reads and writes from being + * reordered by the compiler and being seen out of order on multi-core CPUs. + * + * A typical pattern would be for thread A to write some data and a flag, and + * for thread B to read the flag and get the data. In this case you would + * insert a release barrier between writing the data and the flag, + * guaranteeing that the data write completes no later than the flag is + * written, and you would insert an acquire barrier between reading the flag + * and reading the data, to ensure that all the reads associated with the flag + * have completed. + * + * In this pattern you should always see a release barrier paired with an + * acquire barrier and you should gate the data reads/writes with a single + * flag variable. + * + * For more information on these semantics, take a look at the blog post: + * http://preshing.com/20120913/acquire-and-release-semantics + * + * This is the macro version of this functionality; if possible, SDL will use + * compiler intrinsics or inline assembly, but some platforms might need to + * call the function version of this, SDL_MemoryBarrierReleaseFunction to do + * the heavy lifting. Apps that can use the macro should favor it over the + * function. + * + * \threadsafety Obviously this macro is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierAcquire + * \sa SDL_MemoryBarrierReleaseFunction + */ +#define SDL_MemoryBarrierRelease() SDL_MemoryBarrierReleaseFunction() + +/** + * Insert a memory acquire barrier (macro version). + * + * Please see SDL_MemoryBarrierRelease for the details on what memory barriers + * are and when to use them. + * + * This is the macro version of this functionality; if possible, SDL will use + * compiler intrinsics or inline assembly, but some platforms might need to + * call the function version of this, SDL_MemoryBarrierAcquireFunction, to do + * the heavy lifting. Apps that can use the macro should favor it over the + * function. + * + * \threadsafety Obviously this macro is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierRelease + * \sa SDL_MemoryBarrierAcquireFunction + */ +#define SDL_MemoryBarrierAcquire() SDL_MemoryBarrierAcquireFunction() + +#elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__)) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("lwsync" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("lwsync" : : : "memory") +#elif defined(__GNUC__) && defined(__aarch64__) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory") +#elif defined(__GNUC__) && defined(__arm__) +#if 0 /* defined(SDL_PLATFORM_LINUX) || defined(SDL_PLATFORM_ANDROID) */ +/* Information from: + https://chromium.googlesource.com/chromium/chromium/+/trunk/base/atomicops_internals_arm_gcc.h#19 + + The Linux kernel provides a helper function which provides the right code for a memory barrier, + hard-coded at address 0xffff0fa0 +*/ +typedef void (*SDL_KernelMemoryBarrierFunc)(); +#define SDL_MemoryBarrierRelease() ((SDL_KernelMemoryBarrierFunc)0xffff0fa0)() +#define SDL_MemoryBarrierAcquire() ((SDL_KernelMemoryBarrierFunc)0xffff0fa0)() +#else +#if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7EM__) || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7S__) || defined(__ARM_ARCH_8A__) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory") +#elif defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6T2__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) +#ifdef __thumb__ +/* The mcr instruction isn't available in thumb mode, use real functions */ +#define SDL_MEMORY_BARRIER_USES_FUNCTION +#define SDL_MemoryBarrierRelease() SDL_MemoryBarrierReleaseFunction() +#define SDL_MemoryBarrierAcquire() SDL_MemoryBarrierAcquireFunction() +#else +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory") +#endif /* __thumb__ */ +#else +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("" : : : "memory") +#endif /* SDL_PLATFORM_LINUX || SDL_PLATFORM_ANDROID */ +#endif /* __GNUC__ && __arm__ */ +#else +#if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x5120)) +/* This is correct for all CPUs on Solaris when using Solaris Studio 12.1+. */ +#include +#define SDL_MemoryBarrierRelease() __machine_rel_barrier() +#define SDL_MemoryBarrierAcquire() __machine_acq_barrier() +#else +/* This is correct for the x86 and x64 CPUs, and we'll expand this over time. */ +#define SDL_MemoryBarrierRelease() SDL_CompilerBarrier() +#define SDL_MemoryBarrierAcquire() SDL_CompilerBarrier() +#endif +#endif + +/* "REP NOP" is PAUSE, coded for tools that don't know it by that name. */ +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to insert a CPU-specific "pause" instruction into the program. + * + * This can be useful in busy-wait loops, as it serves as a hint to the CPU as + * to the program's intent; some CPUs can use this to do more efficient + * processing. On some platforms, this doesn't do anything, so using this + * macro might just be a harmless no-op. + * + * Note that if you are busy-waiting, there are often more-efficient + * approaches with other synchronization primitives: mutexes, semaphores, + * condition variables, etc. + * + * \threadsafety This macro is safe to use from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CPUPauseInstruction() DoACPUPauseInACompilerAndArchitectureSpecificWay + +#elif (defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__)) + #define SDL_CPUPauseInstruction() __asm__ __volatile__("pause\n") /* Some assemblers can't do REP NOP, so go with PAUSE. */ +#elif (defined(__arm__) && defined(__ARM_ARCH) && __ARM_ARCH >= 7) || defined(__aarch64__) + #define SDL_CPUPauseInstruction() __asm__ __volatile__("yield" ::: "memory") +#elif (defined(__powerpc__) || defined(__powerpc64__)) + #define SDL_CPUPauseInstruction() __asm__ __volatile__("or 27,27,27"); +#elif (defined(__riscv) && __riscv_xlen == 64) + #define SDL_CPUPauseInstruction() __asm__ __volatile__(".insn i 0x0F, 0, x0, x0, 0x010"); +#elif defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64)) + #define SDL_CPUPauseInstruction() _mm_pause() /* this is actually "rep nop" and not a SIMD instruction. No inline asm in MSVC x86-64! */ +#elif defined(_MSC_VER) && (defined(_M_ARM) || defined(_M_ARM64)) + #define SDL_CPUPauseInstruction() __yield() +#elif defined(__WATCOMC__) && defined(__386__) + extern __inline void SDL_CPUPauseInstruction(void); + #pragma aux SDL_CPUPauseInstruction = ".686p" ".xmm2" "pause" +#else + #define SDL_CPUPauseInstruction() +#endif + + +/** + * A type representing an atomic integer value. + * + * This can be used to manage a value that is synchronized across multiple + * CPUs without a race condition; when an app sets a value with + * SDL_SetAtomicInt all other threads, regardless of the CPU it is running on, + * will see that value when retrieved with SDL_GetAtomicInt, regardless of CPU + * caches, etc. + * + * This is also useful for atomic compare-and-swap operations: a thread can + * change the value as long as its current value matches expectations. When + * done in a loop, one can guarantee data consistency across threads without a + * lock (but the usual warnings apply: if you don't know what you're doing, or + * you don't do it carefully, you can confidently cause any number of + * disasters with this, so in most cases, you _should_ use a mutex instead of + * this!). + * + * This is a struct so people don't accidentally use numeric operations on it + * directly. You have to use SDL atomic functions. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicInt + * \sa SDL_GetAtomicInt + * \sa SDL_SetAtomicInt + * \sa SDL_AddAtomicInt + */ +typedef struct SDL_AtomicInt { int value; } SDL_AtomicInt; + +/** + * Set an atomic variable to a new value if it is currently an old value. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable to be modified. + * \param oldval the old value. + * \param newval the new value. + * \returns true if the atomic variable was set, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicInt + * \sa SDL_SetAtomicInt + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CompareAndSwapAtomicInt(SDL_AtomicInt *a, int oldval, int newval); + +/** + * Set an atomic variable to a value. + * + * This function also acts as a full memory barrier. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable to be modified. + * \param v the desired value. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicInt + */ +extern SDL_DECLSPEC int SDLCALL SDL_SetAtomicInt(SDL_AtomicInt *a, int v); + +/** + * Get the value of an atomic variable. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable. + * \returns the current value of an atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAtomicInt + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAtomicInt(SDL_AtomicInt *a); + +/** + * Add to an atomic variable. + * + * This function also acts as a full memory barrier. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable to be modified. + * \param v the desired value to add. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AtomicDecRef + * \sa SDL_AtomicIncRef + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddAtomicInt(SDL_AtomicInt *a, int v); + +#ifndef SDL_AtomicIncRef + +/** + * Increment an atomic variable used as a reference count. + * + * ***Note: If you don't know what this macro is for, you shouldn't use it!*** + * + * \param a a pointer to an SDL_AtomicInt to increment. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AtomicDecRef + */ +#define SDL_AtomicIncRef(a) SDL_AddAtomicInt(a, 1) +#endif + +#ifndef SDL_AtomicDecRef + +/** + * Decrement an atomic variable used as a reference count. + * + * ***Note: If you don't know what this macro is for, you shouldn't use it!*** + * + * \param a a pointer to an SDL_AtomicInt to decrement. + * \returns true if the variable reached zero after decrementing, false + * otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AtomicIncRef + */ +#define SDL_AtomicDecRef(a) (SDL_AddAtomicInt(a, -1) == 1) +#endif + +/** + * A type representing an atomic unsigned 32-bit value. + * + * This can be used to manage a value that is synchronized across multiple + * CPUs without a race condition; when an app sets a value with + * SDL_SetAtomicU32 all other threads, regardless of the CPU it is running on, + * will see that value when retrieved with SDL_GetAtomicU32, regardless of CPU + * caches, etc. + * + * This is also useful for atomic compare-and-swap operations: a thread can + * change the value as long as its current value matches expectations. When + * done in a loop, one can guarantee data consistency across threads without a + * lock (but the usual warnings apply: if you don't know what you're doing, or + * you don't do it carefully, you can confidently cause any number of + * disasters with this, so in most cases, you _should_ use a mutex instead of + * this!). + * + * This is a struct so people don't accidentally use numeric operations on it + * directly. You have to use SDL atomic functions. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicU32 + * \sa SDL_GetAtomicU32 + * \sa SDL_SetAtomicU32 + */ +typedef struct SDL_AtomicU32 { Uint32 value; } SDL_AtomicU32; + +/** + * Set an atomic variable to a new value if it is currently an old value. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicU32 variable to be modified. + * \param oldval the old value. + * \param newval the new value. + * \returns true if the atomic variable was set, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicU32 + * \sa SDL_SetAtomicU32 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CompareAndSwapAtomicU32(SDL_AtomicU32 *a, Uint32 oldval, Uint32 newval); + +/** + * Set an atomic variable to a value. + * + * This function also acts as a full memory barrier. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicU32 variable to be modified. + * \param v the desired value. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicU32 + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_SetAtomicU32(SDL_AtomicU32 *a, Uint32 v); + +/** + * Get the value of an atomic variable. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicU32 variable. + * \returns the current value of an atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAtomicU32 + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetAtomicU32(SDL_AtomicU32 *a); + +/** + * Set a pointer to a new value if it is currently an old value. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to a pointer. + * \param oldval the old pointer value. + * \param newval the new pointer value. + * \returns true if the pointer was set, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicInt + * \sa SDL_GetAtomicPointer + * \sa SDL_SetAtomicPointer + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CompareAndSwapAtomicPointer(void **a, void *oldval, void *newval); + +/** + * Set a pointer to a value atomically. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to a pointer. + * \param v the desired pointer value. + * \returns the previous value of the pointer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicPointer + * \sa SDL_GetAtomicPointer + */ +extern SDL_DECLSPEC void * SDLCALL SDL_SetAtomicPointer(void **a, void *v); + +/** + * Get the value of a pointer atomically. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to a pointer. + * \returns the current value of a pointer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicPointer + * \sa SDL_SetAtomicPointer + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetAtomicPointer(void **a); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif + +#include + +#endif /* SDL_atomic_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_audio.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_audio.h new file mode 100644 index 0000000..51af40e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_audio.h @@ -0,0 +1,2203 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryAudio + * + * Audio functionality for the SDL library. + * + * All audio in SDL3 revolves around SDL_AudioStream. Whether you want to play + * or record audio, convert it, stream it, buffer it, or mix it, you're going + * to be passing it through an audio stream. + * + * Audio streams are quite flexible; they can accept any amount of data at a + * time, in any supported format, and output it as needed in any other format, + * even if the data format changes on either side halfway through. + * + * An app opens an audio device and binds any number of audio streams to it, + * feeding more data to the streams as available. When the device needs more + * data, it will pull it from all bound streams and mix them together for + * playback. + * + * Audio streams can also use an app-provided callback to supply data + * on-demand, which maps pretty closely to the SDL2 audio model. + * + * SDL also provides a simple .WAV loader in SDL_LoadWAV (and SDL_LoadWAV_IO + * if you aren't reading from a file) as a basic means to load sound data into + * your program. + * + * ## Logical audio devices + * + * In SDL3, opening a physical device (like a SoundBlaster 16 Pro) gives you a + * logical device ID that you can bind audio streams to. In almost all cases, + * logical devices can be used anywhere in the API that a physical device is + * normally used. However, since each device opening generates a new logical + * device, different parts of the program (say, a VoIP library, or + * text-to-speech framework, or maybe some other sort of mixer on top of SDL) + * can have their own device opens that do not interfere with each other; each + * logical device will mix its separate audio down to a single buffer, fed to + * the physical device, behind the scenes. As many logical devices as you like + * can come and go; SDL will only have to open the physical device at the OS + * level once, and will manage all the logical devices on top of it + * internally. + * + * One other benefit of logical devices: if you don't open a specific physical + * device, instead opting for the default, SDL can automatically migrate those + * logical devices to different hardware as circumstances change: a user + * plugged in headphones? The system default changed? SDL can transparently + * migrate the logical devices to the correct physical device seamlessly and + * keep playing; the app doesn't even have to know it happened if it doesn't + * want to. + * + * ## Simplified audio + * + * As a simplified model for when a single source of audio is all that's + * needed, an app can use SDL_OpenAudioDeviceStream, which is a single + * function to open an audio device, create an audio stream, bind that stream + * to the newly-opened device, and (optionally) provide a callback for + * obtaining audio data. When using this function, the primary interface is + * the SDL_AudioStream and the device handle is mostly hidden away; destroying + * a stream created through this function will also close the device, stream + * bindings cannot be changed, etc. One other quirk of this is that the device + * is started in a _paused_ state and must be explicitly resumed; this is + * partially to offer a clean migration for SDL2 apps and partially because + * the app might have to do more setup before playback begins; in the + * non-simplified form, nothing will play until a stream is bound to a device, + * so they start _unpaused_. + * + * ## Channel layouts + * + * Audio data passing through SDL is uncompressed PCM data, interleaved. One + * can provide their own decompression through an MP3, etc, decoder, but SDL + * does not provide this directly. Each interleaved channel of data is meant + * to be in a specific order. + * + * Abbreviations: + * + * - FRONT = single mono speaker + * - FL = front left speaker + * - FR = front right speaker + * - FC = front center speaker + * - BL = back left speaker + * - BR = back right speaker + * - SR = surround right speaker + * - SL = surround left speaker + * - BC = back center speaker + * - LFE = low-frequency speaker + * + * These are listed in the order they are laid out in memory, so "FL, FR" + * means "the front left speaker is laid out in memory first, then the front + * right, then it repeats for the next audio frame". + * + * - 1 channel (mono) layout: FRONT + * - 2 channels (stereo) layout: FL, FR + * - 3 channels (2.1) layout: FL, FR, LFE + * - 4 channels (quad) layout: FL, FR, BL, BR + * - 5 channels (4.1) layout: FL, FR, LFE, BL, BR + * - 6 channels (5.1) layout: FL, FR, FC, LFE, BL, BR (last two can also be + * SL, SR) + * - 7 channels (6.1) layout: FL, FR, FC, LFE, BC, SL, SR + * - 8 channels (7.1) layout: FL, FR, FC, LFE, BL, BR, SL, SR + * + * This is the same order as DirectSound expects, but applied to all + * platforms; SDL will swizzle the channels as necessary if a platform expects + * something different. + * + * SDL_AudioStream can also be provided channel maps to change this ordering + * to whatever is necessary, in other audio processing scenarios. + */ + +#ifndef SDL_audio_h_ +#define SDL_audio_h_ + +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Mask of bits in an SDL_AudioFormat that contains the format bit size. + * + * Generally one should use SDL_AUDIO_BITSIZE instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_BITSIZE (0xFFu) + +/** + * Mask of bits in an SDL_AudioFormat that contain the floating point flag. + * + * Generally one should use SDL_AUDIO_ISFLOAT instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_FLOAT (1u<<8) + +/** + * Mask of bits in an SDL_AudioFormat that contain the bigendian flag. + * + * Generally one should use SDL_AUDIO_ISBIGENDIAN or SDL_AUDIO_ISLITTLEENDIAN + * instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_BIG_ENDIAN (1u<<12) + +/** + * Mask of bits in an SDL_AudioFormat that contain the signed data flag. + * + * Generally one should use SDL_AUDIO_ISSIGNED instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_SIGNED (1u<<15) + +/** + * Define an SDL_AudioFormat value. + * + * SDL does not support custom audio formats, so this macro is not of much use + * externally, but it can be illustrative as to what the various bits of an + * SDL_AudioFormat mean. + * + * For example, SDL_AUDIO_S32LE looks like this: + * + * ```c + * SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 32) + * ``` + * + * \param signed 1 for signed data, 0 for unsigned data. + * \param bigendian 1 for bigendian data, 0 for littleendian data. + * \param flt 1 for floating point data, 0 for integer data. + * \param size number of bits per sample. + * \returns a format value in the style of SDL_AudioFormat. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_AUDIO_FORMAT(signed, bigendian, flt, size) \ + (((Uint16)(signed) << 15) | ((Uint16)(bigendian) << 12) | ((Uint16)(flt) << 8) | ((size) & SDL_AUDIO_MASK_BITSIZE)) + +/** + * Audio format. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_AUDIO_BITSIZE + * \sa SDL_AUDIO_BYTESIZE + * \sa SDL_AUDIO_ISINT + * \sa SDL_AUDIO_ISFLOAT + * \sa SDL_AUDIO_ISBIGENDIAN + * \sa SDL_AUDIO_ISLITTLEENDIAN + * \sa SDL_AUDIO_ISSIGNED + * \sa SDL_AUDIO_ISUNSIGNED + */ +typedef enum SDL_AudioFormat +{ + SDL_AUDIO_UNKNOWN = 0x0000u, /**< Unspecified audio format */ + SDL_AUDIO_U8 = 0x0008u, /**< Unsigned 8-bit samples */ + /* SDL_DEFINE_AUDIO_FORMAT(0, 0, 0, 8), */ + SDL_AUDIO_S8 = 0x8008u, /**< Signed 8-bit samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 8), */ + SDL_AUDIO_S16LE = 0x8010u, /**< Signed 16-bit samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 16), */ + SDL_AUDIO_S16BE = 0x9010u, /**< As above, but big-endian byte order */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 0, 16), */ + SDL_AUDIO_S32LE = 0x8020u, /**< 32-bit integer samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 32), */ + SDL_AUDIO_S32BE = 0x9020u, /**< As above, but big-endian byte order */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 0, 32), */ + SDL_AUDIO_F32LE = 0x8120u, /**< 32-bit floating point samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 1, 32), */ + SDL_AUDIO_F32BE = 0x9120u, /**< As above, but big-endian byte order */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 1, 32), */ + + /* These represent the current system's byteorder. */ + #if SDL_BYTEORDER == SDL_LIL_ENDIAN + SDL_AUDIO_S16 = SDL_AUDIO_S16LE, + SDL_AUDIO_S32 = SDL_AUDIO_S32LE, + SDL_AUDIO_F32 = SDL_AUDIO_F32LE + #else + SDL_AUDIO_S16 = SDL_AUDIO_S16BE, + SDL_AUDIO_S32 = SDL_AUDIO_S32BE, + SDL_AUDIO_F32 = SDL_AUDIO_F32BE + #endif +} SDL_AudioFormat; + + +/** + * Retrieve the size, in bits, from an SDL_AudioFormat. + * + * For example, `SDL_AUDIO_BITSIZE(SDL_AUDIO_S16)` returns 16. + * + * \param x an SDL_AudioFormat value. + * \returns data size in bits. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_BITSIZE(x) ((x) & SDL_AUDIO_MASK_BITSIZE) + +/** + * Retrieve the size, in bytes, from an SDL_AudioFormat. + * + * For example, `SDL_AUDIO_BYTESIZE(SDL_AUDIO_S16)` returns 2. + * + * \param x an SDL_AudioFormat value. + * \returns data size in bytes. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_BYTESIZE(x) (SDL_AUDIO_BITSIZE(x) / 8) + +/** + * Determine if an SDL_AudioFormat represents floating point data. + * + * For example, `SDL_AUDIO_ISFLOAT(SDL_AUDIO_S16)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is floating point, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISFLOAT(x) ((x) & SDL_AUDIO_MASK_FLOAT) + +/** + * Determine if an SDL_AudioFormat represents bigendian data. + * + * For example, `SDL_AUDIO_ISBIGENDIAN(SDL_AUDIO_S16LE)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is bigendian, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISBIGENDIAN(x) ((x) & SDL_AUDIO_MASK_BIG_ENDIAN) + +/** + * Determine if an SDL_AudioFormat represents littleendian data. + * + * For example, `SDL_AUDIO_ISLITTLEENDIAN(SDL_AUDIO_S16BE)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is littleendian, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISLITTLEENDIAN(x) (!SDL_AUDIO_ISBIGENDIAN(x)) + +/** + * Determine if an SDL_AudioFormat represents signed data. + * + * For example, `SDL_AUDIO_ISSIGNED(SDL_AUDIO_U8)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is signed, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISSIGNED(x) ((x) & SDL_AUDIO_MASK_SIGNED) + +/** + * Determine if an SDL_AudioFormat represents integer data. + * + * For example, `SDL_AUDIO_ISINT(SDL_AUDIO_F32)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is integer, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISINT(x) (!SDL_AUDIO_ISFLOAT(x)) + +/** + * Determine if an SDL_AudioFormat represents unsigned data. + * + * For example, `SDL_AUDIO_ISUNSIGNED(SDL_AUDIO_S16)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is unsigned, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISUNSIGNED(x) (!SDL_AUDIO_ISSIGNED(x)) + + +/** + * SDL Audio Device instance IDs. + * + * Zero is used to signify an invalid/null device. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_AudioDeviceID; + +/** + * A value used to request a default playback audio device. + * + * Several functions that require an SDL_AudioDeviceID will accept this value + * to signify the app just wants the system to choose a default device instead + * of the app providing a specific one. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK ((SDL_AudioDeviceID) 0xFFFFFFFFu) + +/** + * A value used to request a default recording audio device. + * + * Several functions that require an SDL_AudioDeviceID will accept this value + * to signify the app just wants the system to choose a default device instead + * of the app providing a specific one. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_DEVICE_DEFAULT_RECORDING ((SDL_AudioDeviceID) 0xFFFFFFFEu) + +/** + * Format specifier for audio data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AudioFormat + */ +typedef struct SDL_AudioSpec +{ + SDL_AudioFormat format; /**< Audio data format */ + int channels; /**< Number of channels: 1 mono, 2 stereo, etc */ + int freq; /**< sample rate: sample frames per second */ +} SDL_AudioSpec; + +/** + * Calculate the size of each audio frame (in bytes) from an SDL_AudioSpec. + * + * This reports on the size of an audio sample frame: stereo Sint16 data (2 + * channels of 2 bytes each) would be 4 bytes per frame, for example. + * + * \param x an SDL_AudioSpec to query. + * \returns the number of bytes used per sample frame. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_FRAMESIZE(x) (SDL_AUDIO_BYTESIZE((x).format) * (x).channels) + +/** + * The opaque handle that represents an audio stream. + * + * SDL_AudioStream is an audio conversion interface. + * + * - It can handle resampling data in chunks without generating artifacts, + * when it doesn't have the complete buffer available. + * - It can handle incoming data in any variable size. + * - It can handle input/output format changes on the fly. + * - It can remap audio channels between inputs and outputs. + * - You push data as you have it, and pull it when you need it + * - It can also function as a basic audio data queue even if you just have + * sound that needs to pass from one place to another. + * - You can hook callbacks up to them when more data is added or requested, + * to manage data on-the-fly. + * + * Audio streams are the core of the SDL3 audio interface. You create one or + * more of them, bind them to an opened audio device, and feed data to them + * (or for recording, consume data from them). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateAudioStream + */ +typedef struct SDL_AudioStream SDL_AudioStream; + + +/* Function prototypes */ + +/** + * Use this function to get the number of built-in audio drivers. + * + * This function returns a hardcoded number. This never returns a negative + * value; if there are no drivers compiled into this build of SDL, this + * function returns zero. The presence of a driver in this list does not mean + * it will function, it just means SDL is capable of interacting with that + * interface. For example, a build of SDL might have esound support, but if + * there's no esound server available, SDL's esound driver would fail if used. + * + * By default, SDL tries all drivers, in its preferred order, until one is + * found to be usable. + * + * \returns the number of built-in audio drivers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumAudioDrivers(void); + +/** + * Use this function to get the name of a built in audio driver. + * + * The list of audio drivers is given in the order that they are normally + * initialized by default; the drivers that seem more reasonable to choose + * first (as far as the SDL developers believe) are earlier in the list. + * + * The names of drivers are all simple, low-ASCII identifiers, like "alsa", + * "coreaudio" or "wasapi". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of the audio driver; the value ranges from 0 to + * SDL_GetNumAudioDrivers() - 1. + * \returns the name of the audio driver at the requested index, or NULL if an + * invalid index was specified. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumAudioDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioDriver(int index); + +/** + * Get the name of the current audio driver. + * + * The names of drivers are all simple, low-ASCII identifiers, like "alsa", + * "coreaudio" or "wasapi". These never have Unicode characters, and are not + * meant to be proper names. + * + * \returns the name of the current audio driver or NULL if no driver has been + * initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCurrentAudioDriver(void); + +/** + * Get a list of currently-connected audio playback devices. + * + * This returns of list of available devices that play sound, perhaps to + * speakers or headphones ("playback" devices). If you want devices that + * record audio, like a microphone ("recording" devices), use + * SDL_GetAudioRecordingDevices() instead. + * + * This only returns a list of physical devices; it will not have any device + * IDs returned by SDL_OpenAudioDevice(). + * + * If this function returns NULL, to signify an error, `*count` will be set to + * zero. + * + * \param count a pointer filled in with the number of devices returned, may + * be NULL. + * \returns a 0 terminated array of device instance IDs or NULL on error; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenAudioDevice + * \sa SDL_GetAudioRecordingDevices + */ +extern SDL_DECLSPEC SDL_AudioDeviceID * SDLCALL SDL_GetAudioPlaybackDevices(int *count); + +/** + * Get a list of currently-connected audio recording devices. + * + * This returns of list of available devices that record audio, like a + * microphone ("recording" devices). If you want devices that play sound, + * perhaps to speakers or headphones ("playback" devices), use + * SDL_GetAudioPlaybackDevices() instead. + * + * This only returns a list of physical devices; it will not have any device + * IDs returned by SDL_OpenAudioDevice(). + * + * If this function returns NULL, to signify an error, `*count` will be set to + * zero. + * + * \param count a pointer filled in with the number of devices returned, may + * be NULL. + * \returns a 0 terminated array of device instance IDs, or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenAudioDevice + * \sa SDL_GetAudioPlaybackDevices + */ +extern SDL_DECLSPEC SDL_AudioDeviceID * SDLCALL SDL_GetAudioRecordingDevices(int *count); + +/** + * Get the human-readable name of a specific audio device. + * + * \param devid the instance ID of the device to query. + * \returns the name of the audio device, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioPlaybackDevices + * \sa SDL_GetAudioRecordingDevices + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioDeviceName(SDL_AudioDeviceID devid); + +/** + * Get the current audio format of a specific audio device. + * + * For an opened device, this will report the format the device is currently + * using. If the device isn't yet opened, this will report the device's + * preferred format (or a reasonable default if this can't be determined). + * + * You may also specify SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK or + * SDL_AUDIO_DEVICE_DEFAULT_RECORDING here, which is useful for getting a + * reasonable recommendation before opening the system-recommended default + * device. + * + * You can also use this to request the current device buffer size. This is + * specified in sample frames and represents the amount of data SDL will feed + * to the physical hardware in each chunk. This can be converted to + * milliseconds of audio with the following equation: + * + * `ms = (int) ((((Sint64) frames) * 1000) / spec.freq);` + * + * Buffer size is only important if you need low-level control over the audio + * playback timing. Most apps do not need this. + * + * \param devid the instance ID of the device to query. + * \param spec on return, will be filled with device details. + * \param sample_frames pointer to store device buffer size, in sample frames. + * Can be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetAudioDeviceFormat(SDL_AudioDeviceID devid, SDL_AudioSpec *spec, int *sample_frames); + +/** + * Get the current channel map of an audio device. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * Audio devices usually have no remapping applied. This is represented by + * returning NULL, and does not signify an error. + * + * \param devid the instance ID of the device to query. + * \param count On output, set to number of channels in the map. Can be NULL. + * \returns an array of the current channel mapping, with as many elements as + * the current output spec's channels, or NULL if default. This + * should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioDeviceChannelMap(SDL_AudioDeviceID devid, int *count); + +/** + * Open a specific audio device. + * + * You can open both playback and recording devices through this function. + * Playback devices will take data from bound audio streams, mix it, and send + * it to the hardware. Recording devices will feed any bound audio streams + * with a copy of any incoming data. + * + * An opened audio device starts out with no audio streams bound. To start + * audio playing, bind a stream and supply audio data to it. Unlike SDL2, + * there is no audio callback; you only bind audio streams and make sure they + * have data flowing into them (however, you can simulate SDL2's semantics + * fairly closely by using SDL_OpenAudioDeviceStream instead of this + * function). + * + * If you don't care about opening a specific device, pass a `devid` of either + * `SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK` or + * `SDL_AUDIO_DEVICE_DEFAULT_RECORDING`. In this case, SDL will try to pick + * the most reasonable default, and may also switch between physical devices + * seamlessly later, if the most reasonable default changes during the + * lifetime of this opened device (user changed the default in the OS's system + * preferences, the default got unplugged so the system jumped to a new + * default, the user plugged in headphones on a mobile device, etc). Unless + * you have a good reason to choose a specific device, this is probably what + * you want. + * + * You may request a specific format for the audio device, but there is no + * promise the device will honor that request for several reasons. As such, + * it's only meant to be a hint as to what data your app will provide. Audio + * streams will accept data in whatever format you specify and manage + * conversion for you as appropriate. SDL_GetAudioDeviceFormat can tell you + * the preferred format for the device before opening and the actual format + * the device is using after opening. + * + * It's legal to open the same device ID more than once; each successful open + * will generate a new logical SDL_AudioDeviceID that is managed separately + * from others on the same physical device. This allows libraries to open a + * device separately from the main app and bind its own streams without + * conflicting. + * + * It is also legal to open a device ID returned by a previous call to this + * function; doing so just creates another logical device on the same physical + * device. This may be useful for making logical groupings of audio streams. + * + * This function returns the opened device ID on success. This is a new, + * unique SDL_AudioDeviceID that represents a logical device. + * + * Some backends might offer arbitrary devices (for example, a networked audio + * protocol that can connect to an arbitrary server). For these, as a change + * from SDL2, you should open a default device ID and use an SDL hint to + * specify the target if you care, or otherwise let the backend figure out a + * reasonable default. Most backends don't offer anything like this, and often + * this would be an end user setting an environment variable for their custom + * need, and not something an application should specifically manage. + * + * When done with an audio device, possibly at the end of the app's life, one + * should call SDL_CloseAudioDevice() on the returned device id. + * + * \param devid the device instance id to open, or + * SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK or + * SDL_AUDIO_DEVICE_DEFAULT_RECORDING for the most reasonable + * default device. + * \param spec the requested device configuration. Can be NULL to use + * reasonable defaults. + * \returns the device ID on success or 0 on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseAudioDevice + * \sa SDL_GetAudioDeviceFormat + */ +extern SDL_DECLSPEC SDL_AudioDeviceID SDLCALL SDL_OpenAudioDevice(SDL_AudioDeviceID devid, const SDL_AudioSpec *spec); + +/** + * Determine if an audio device is physical (instead of logical). + * + * An SDL_AudioDeviceID that represents physical hardware is a physical + * device; there is one for each piece of hardware that SDL can see. Logical + * devices are created by calling SDL_OpenAudioDevice or + * SDL_OpenAudioDeviceStream, and while each is associated with a physical + * device, there can be any number of logical devices on one physical device. + * + * For the most part, logical and physical IDs are interchangeable--if you try + * to open a logical device, SDL understands to assign that effort to the + * underlying physical device, etc. However, it might be useful to know if an + * arbitrary device ID is physical or logical. This function reports which. + * + * This function may return either true or false for invalid device IDs. + * + * \param devid the device ID to query. + * \returns true if devid is a physical device, false if it is logical. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsAudioDevicePhysical(SDL_AudioDeviceID devid); + +/** + * Determine if an audio device is a playback device (instead of recording). + * + * This function may return either true or false for invalid device IDs. + * + * \param devid the device ID to query. + * \returns true if devid is a playback device, false if it is recording. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsAudioDevicePlayback(SDL_AudioDeviceID devid); + +/** + * Use this function to pause audio playback on a specified device. + * + * This function pauses audio processing for a given device. Any bound audio + * streams will not progress, and no audio will be generated. Pausing one + * device does not prevent other unpaused devices from running. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. Pausing a paused device is + * a legal no-op. + * + * Pausing a device can be useful to halt all audio without unbinding all the + * audio streams. This might be useful while a game is paused, or a level is + * loading, etc. + * + * Physical devices can not be paused or unpaused, only logical devices + * created through SDL_OpenAudioDevice() can be. + * + * \param devid a device opened by SDL_OpenAudioDevice(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResumeAudioDevice + * \sa SDL_AudioDevicePaused + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PauseAudioDevice(SDL_AudioDeviceID devid); + +/** + * Use this function to unpause audio playback on a specified device. + * + * This function unpauses audio processing for a given device that has + * previously been paused with SDL_PauseAudioDevice(). Once unpaused, any + * bound audio streams will begin to progress again, and audio can be + * generated. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. Unpausing an unpaused + * device is a legal no-op. + * + * Physical devices can not be paused or unpaused, only logical devices + * created through SDL_OpenAudioDevice() can be. + * + * \param devid a device opened by SDL_OpenAudioDevice(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AudioDevicePaused + * \sa SDL_PauseAudioDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResumeAudioDevice(SDL_AudioDeviceID devid); + +/** + * Use this function to query if an audio device is paused. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. + * + * Physical devices can not be paused or unpaused, only logical devices + * created through SDL_OpenAudioDevice() can be. Physical and invalid device + * IDs will report themselves as unpaused here. + * + * \param devid a device opened by SDL_OpenAudioDevice(). + * \returns true if device is valid and paused, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseAudioDevice + * \sa SDL_ResumeAudioDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AudioDevicePaused(SDL_AudioDeviceID devid); + +/** + * Get the gain of an audio device. + * + * The gain of a device is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio devices default to a gain of 1.0f (no change in output). + * + * Physical devices may not have their gain changed, only logical devices, and + * this function will always return -1.0f when used on physical devices. + * + * \param devid the audio device to query. + * \returns the gain of the device or -1.0f on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioDeviceGain + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetAudioDeviceGain(SDL_AudioDeviceID devid); + +/** + * Change the gain of an audio device. + * + * The gain of a device is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio devices default to a gain of 1.0f (no change in output). + * + * Physical devices may not have their gain changed, only logical devices, and + * this function will always return false when used on physical devices. While + * it might seem attractive to adjust several logical devices at once in this + * way, it would allow an app or library to interfere with another portion of + * the program's otherwise-isolated devices. + * + * This is applied, along with any per-audiostream gain, during playback to + * the hardware, and can be continuously changed to create various effects. On + * recording devices, this will adjust the gain before passing the data into + * an audiostream; that recording audiostream can then adjust its gain further + * when outputting the data elsewhere, if it likes, but that second gain is + * not applied until the data leaves the audiostream again. + * + * \param devid the audio device on which to change gain. + * \param gain the gain. 1.0f is no change, 0.0f is silence. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioDeviceGain + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioDeviceGain(SDL_AudioDeviceID devid, float gain); + +/** + * Close a previously-opened audio device. + * + * The application should close open audio devices once they are no longer + * needed. + * + * This function may block briefly while pending audio data is played by the + * hardware, so that applications don't drop the last buffer of data they + * supplied if terminating immediately afterwards. + * + * \param devid an audio device id previously returned by + * SDL_OpenAudioDevice(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenAudioDevice + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseAudioDevice(SDL_AudioDeviceID devid); + +/** + * Bind a list of audio streams to an audio device. + * + * Audio data will flow through any bound streams. For a playback device, data + * for all bound streams will be mixed together and fed to the device. For a + * recording device, a copy of recorded data will be provided to each bound + * stream. + * + * Audio streams can only be bound to an open device. This operation is + * atomic--all streams bound in the same call will start processing at the + * same time, so they can stay in sync. Also: either all streams will be bound + * or none of them will be. + * + * It is an error to bind an already-bound stream; it must be explicitly + * unbound first. + * + * Binding a stream to a device will set its output format for playback + * devices, and its input format for recording devices, so they match the + * device's settings. The caller is welcome to change the other end of the + * stream's format at any time with SDL_SetAudioStreamFormat(). If the other + * end of the stream's format has never been set (the audio stream was created + * with a NULL audio spec), this function will set it to match the device + * end's format. + * + * \param devid an audio device to bind a stream to. + * \param streams an array of audio streams to bind. + * \param num_streams number streams listed in the `streams` array. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStreams + * \sa SDL_UnbindAudioStream + * \sa SDL_GetAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BindAudioStreams(SDL_AudioDeviceID devid, SDL_AudioStream * const *streams, int num_streams); + +/** + * Bind a single audio stream to an audio device. + * + * This is a convenience function, equivalent to calling + * `SDL_BindAudioStreams(devid, &stream, 1)`. + * + * \param devid an audio device to bind a stream to. + * \param stream an audio stream to bind to a device. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStreams + * \sa SDL_UnbindAudioStream + * \sa SDL_GetAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BindAudioStream(SDL_AudioDeviceID devid, SDL_AudioStream *stream); + +/** + * Unbind a list of audio streams from their audio devices. + * + * The streams being unbound do not all have to be on the same device. All + * streams on the same device will be unbound atomically (data will stop + * flowing through all unbound streams on the same device at the same time). + * + * Unbinding a stream that isn't bound to a device is a legal no-op. + * + * \param streams an array of audio streams to unbind. Can be NULL or contain + * NULL. + * \param num_streams number streams listed in the `streams` array. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStreams + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnbindAudioStreams(SDL_AudioStream * const *streams, int num_streams); + +/** + * Unbind a single audio stream from its audio device. + * + * This is a convenience function, equivalent to calling + * `SDL_UnbindAudioStreams(&stream, 1)`. + * + * \param stream an audio stream to unbind from a device. Can be NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStream + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnbindAudioStream(SDL_AudioStream *stream); + +/** + * Query an audio stream for its currently-bound device. + * + * This reports the logical audio device that an audio stream is currently bound to. + * + * If not bound, or invalid, this returns zero, which is not a valid device + * ID. + * + * \param stream the audio stream to query. + * \returns the bound audio device, or 0 if not bound or invalid. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStream + * \sa SDL_BindAudioStreams + */ +extern SDL_DECLSPEC SDL_AudioDeviceID SDLCALL SDL_GetAudioStreamDevice(SDL_AudioStream *stream); + +/** + * Create a new audio stream. + * + * \param src_spec the format details of the input audio. + * \param dst_spec the format details of the output audio. + * \returns a new audio stream on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PutAudioStreamData + * \sa SDL_GetAudioStreamData + * \sa SDL_GetAudioStreamAvailable + * \sa SDL_FlushAudioStream + * \sa SDL_ClearAudioStream + * \sa SDL_SetAudioStreamFormat + * \sa SDL_DestroyAudioStream + */ +extern SDL_DECLSPEC SDL_AudioStream * SDLCALL SDL_CreateAudioStream(const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec); + +/** + * Get the properties associated with an audio stream. + * + * \param stream the SDL_AudioStream to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetAudioStreamProperties(SDL_AudioStream *stream); + +/** + * Query the current format of an audio stream. + * + * \param stream the SDL_AudioStream to query. + * \param src_spec where to store the input audio format; ignored if NULL. + * \param dst_spec where to store the output audio format; ignored if NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamFormat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetAudioStreamFormat(SDL_AudioStream *stream, SDL_AudioSpec *src_spec, SDL_AudioSpec *dst_spec); + +/** + * Change the input and output formats of an audio stream. + * + * Future calls to and SDL_GetAudioStreamAvailable and SDL_GetAudioStreamData + * will reflect the new format, and future calls to SDL_PutAudioStreamData + * must provide data in the new input formats. + * + * Data that was previously queued in the stream will still be operated on in + * the format that was current when it was added, which is to say you can put + * the end of a sound file in one format to a stream, change formats for the + * next sound file, and start putting that new data while the previous sound + * file is still queued, and everything will still play back correctly. + * + * If a stream is bound to a device, then the format of the side of the stream + * bound to a device cannot be changed (src_spec for recording devices, + * dst_spec for playback devices). Attempts to make a change to this side will + * be ignored, but this will not report an error. The other side's format can + * be changed. + * + * \param stream the stream the format is being changed. + * \param src_spec the new format of the audio input; if NULL, it is not + * changed. + * \param dst_spec the new format of the audio output; if NULL, it is not + * changed. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamFormat + * \sa SDL_SetAudioStreamFrequencyRatio + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamFormat(SDL_AudioStream *stream, const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec); + +/** + * Get the frequency ratio of an audio stream. + * + * \param stream the SDL_AudioStream to query. + * \returns the frequency ratio of the stream or 0.0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamFrequencyRatio + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetAudioStreamFrequencyRatio(SDL_AudioStream *stream); + +/** + * Change the frequency ratio of an audio stream. + * + * The frequency ratio is used to adjust the rate at which input data is + * consumed. Changing this effectively modifies the speed and pitch of the + * audio. A value greater than 1.0 will play the audio faster, and at a higher + * pitch. A value less than 1.0 will play the audio slower, and at a lower + * pitch. + * + * This is applied during SDL_GetAudioStreamData, and can be continuously + * changed to create various effects. + * + * \param stream the stream the frequency ratio is being changed. + * \param ratio the frequency ratio. 1.0 is normal speed. Must be between 0.01 + * and 100. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamFrequencyRatio + * \sa SDL_SetAudioStreamFormat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamFrequencyRatio(SDL_AudioStream *stream, float ratio); + +/** + * Get the gain of an audio stream. + * + * The gain of a stream is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio streams default to a gain of 1.0f (no change in output). + * + * \param stream the SDL_AudioStream to query. + * \returns the gain of the stream or -1.0f on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamGain + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetAudioStreamGain(SDL_AudioStream *stream); + +/** + * Change the gain of an audio stream. + * + * The gain of a stream is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio streams default to a gain of 1.0f (no change in output). + * + * This is applied during SDL_GetAudioStreamData, and can be continuously + * changed to create various effects. + * + * \param stream the stream on which the gain is being changed. + * \param gain the gain. 1.0f is no change, 0.0f is silence. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamGain + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamGain(SDL_AudioStream *stream, float gain); + +/** + * Get the current input channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * Audio streams default to no remapping applied. This is represented by + * returning NULL, and does not signify an error. + * + * \param stream the SDL_AudioStream to query. + * \param count On output, set to number of channels in the map. Can be NULL. + * \returns an array of the current channel mapping, with as many elements as + * the current output spec's channels, or NULL if default. This + * should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioStreamInputChannelMap(SDL_AudioStream *stream, int *count); + +/** + * Get the current output channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * Audio streams default to no remapping applied. This is represented by + * returning NULL, and does not signify an error. + * + * \param stream the SDL_AudioStream to query. + * \param count On output, set to number of channels in the map. Can be NULL. + * \returns an array of the current channel mapping, with as many elements as + * the current output spec's channels, or NULL if default. This + * should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioStreamOutputChannelMap(SDL_AudioStream *stream, int *count); + +/** + * Set the current input channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * The input channel map reorders data that is added to a stream via + * SDL_PutAudioStreamData. Future calls to SDL_PutAudioStreamData must provide + * data in the new channel order. + * + * Each item in the array represents an input channel, and its value is the + * channel that it should be remapped to. To reverse a stereo signal's left + * and right values, you'd have an array of `{ 1, 0 }`. It is legal to remap + * multiple channels to the same thing, so `{ 1, 1 }` would duplicate the + * right channel to both channels of a stereo signal. An element in the + * channel map set to -1 instead of a valid channel will mute that channel, + * setting it to a silence value. + * + * You cannot change the number of channels through a channel map, just + * reorder/mute them. + * + * Data that was previously queued in the stream will still be operated on in + * the order that was current when it was added, which is to say you can put + * the end of a sound file in one order to a stream, change orders for the + * next sound file, and start putting that new data while the previous sound + * file is still queued, and everything will still play back correctly. + * + * Audio streams default to no remapping applied. Passing a NULL channel map + * is legal, and turns off remapping. + * + * SDL will copy the channel map; the caller does not have to save this array + * after this call. + * + * If `count` is not equal to the current number of channels in the audio + * stream's format, this will fail. This is a safety measure to make sure a + * race condition hasn't changed the format while this call is setting the + * channel map. + * + * Unlike attempting to change the stream's format, the input channel map on a + * stream bound to a recording device is permitted to change at any time; any + * data added to the stream from the device after this call will have the new + * mapping, but previously-added data will still have the prior mapping. + * + * \param stream the SDL_AudioStream to change. + * \param chmap the new channel map, NULL to reset to default. + * \param count The number of channels in the map. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. Don't change the + * stream's format to have a different number of channels from a + * a different thread at the same time, though! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamInputChannelMap(SDL_AudioStream *stream, const int *chmap, int count); + +/** + * Set the current output channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * The output channel map reorders data that leaving a stream via + * SDL_GetAudioStreamData. + * + * Each item in the array represents an input channel, and its value is the + * channel that it should be remapped to. To reverse a stereo signal's left + * and right values, you'd have an array of `{ 1, 0 }`. It is legal to remap + * multiple channels to the same thing, so `{ 1, 1 }` would duplicate the + * right channel to both channels of a stereo signal. An element in the + * channel map set to -1 instead of a valid channel will mute that channel, + * setting it to a silence value. + * + * You cannot change the number of channels through a channel map, just + * reorder/mute them. + * + * The output channel map can be changed at any time, as output remapping is + * applied during SDL_GetAudioStreamData. + * + * Audio streams default to no remapping applied. Passing a NULL channel map + * is legal, and turns off remapping. + * + * SDL will copy the channel map; the caller does not have to save this array + * after this call. + * + * If `count` is not equal to the current number of channels in the audio + * stream's format, this will fail. This is a safety measure to make sure a + * race condition hasn't changed the format while this call is setting the + * channel map. + * + * Unlike attempting to change the stream's format, the output channel map on + * a stream bound to a recording device is permitted to change at any time; + * any data added to the stream after this call will have the new mapping, but + * previously-added data will still have the prior mapping. When the channel + * map doesn't match the hardware's channel layout, SDL will convert the data + * before feeding it to the device for playback. + * + * \param stream the SDL_AudioStream to change. + * \param chmap the new channel map, NULL to reset to default. + * \param count The number of channels in the map. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. Don't change the + * stream's format to have a different number of channels from a + * a different thread at the same time, though! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamOutputChannelMap(SDL_AudioStream *stream, const int *chmap, int count); + +/** + * Add data to the stream. + * + * This data must match the format/channels/samplerate specified in the latest + * call to SDL_SetAudioStreamFormat, or the format specified when creating the + * stream if it hasn't been changed. + * + * Note that this call simply copies the unconverted data for later. This is + * different than SDL2, where data was converted during the Put call and the + * Get call would just dequeue the previously-converted data. + * + * \param stream the stream the audio data is being added to. + * \param buf a pointer to the audio data to add. + * \param len the number of bytes to write to the stream. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, but if the + * stream has a callback set, the caller might need to manage + * extra locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearAudioStream + * \sa SDL_FlushAudioStream + * \sa SDL_GetAudioStreamData + * \sa SDL_GetAudioStreamQueued + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PutAudioStreamData(SDL_AudioStream *stream, const void *buf, int len); + +/** + * Get converted/resampled data from the stream. + * + * The input/output data format/channels/samplerate is specified when creating + * the stream, and can be changed after creation by calling + * SDL_SetAudioStreamFormat. + * + * Note that any conversion and resampling necessary is done during this call, + * and SDL_PutAudioStreamData simply queues unconverted data for later. This + * is different than SDL2, where that work was done while inputting new data + * to the stream and requesting the output just copied the converted data. + * + * \param stream the stream the audio is being requested from. + * \param buf a buffer to fill with audio data. + * \param len the maximum number of bytes to fill. + * \returns the number of bytes read from the stream or -1 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread, but if the + * stream has a callback set, the caller might need to manage + * extra locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearAudioStream + * \sa SDL_GetAudioStreamAvailable + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamData(SDL_AudioStream *stream, void *buf, int len); + +/** + * Get the number of converted/resampled bytes available. + * + * The stream may be buffering data behind the scenes until it has enough to + * resample correctly, so this number might be lower than what you expect, or + * even be zero. Add more data or flush the stream if you need the data now. + * + * If the stream has so much data that it would overflow an int, the return + * value is clamped to a maximum value, but no queued data is lost; if there + * are gigabytes of data queued, the app might need to read some of it with + * SDL_GetAudioStreamData before this function's return value is no longer + * clamped. + * + * \param stream the audio stream to query. + * \returns the number of converted/resampled bytes available or -1 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamData + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamAvailable(SDL_AudioStream *stream); + + +/** + * Get the number of bytes currently queued. + * + * This is the number of bytes put into a stream as input, not the number that + * can be retrieved as output. Because of several details, it's not possible + * to calculate one number directly from the other. If you need to know how + * much usable data can be retrieved right now, you should use + * SDL_GetAudioStreamAvailable() and not this function. + * + * Note that audio streams can change their input format at any time, even if + * there is still data queued in a different format, so the returned byte + * count will not necessarily match the number of _sample frames_ available. + * Users of this API should be aware of format changes they make when feeding + * a stream and plan accordingly. + * + * Queued data is not converted until it is consumed by + * SDL_GetAudioStreamData, so this value should be representative of the exact + * data that was put into the stream. + * + * If the stream has so much data that it would overflow an int, the return + * value is clamped to a maximum value, but no queued data is lost; if there + * are gigabytes of data queued, the app might need to read some of it with + * SDL_GetAudioStreamData before this function's return value is no longer + * clamped. + * + * \param stream the audio stream to query. + * \returns the number of bytes queued or -1 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PutAudioStreamData + * \sa SDL_ClearAudioStream + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamQueued(SDL_AudioStream *stream); + + +/** + * Tell the stream that you're done sending data, and anything being buffered + * should be converted/resampled and made available immediately. + * + * It is legal to add more data to a stream after flushing, but there may be + * audio gaps in the output. Generally this is intended to signal the end of + * input, so the complete output becomes available. + * + * \param stream the audio stream to flush. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlushAudioStream(SDL_AudioStream *stream); + +/** + * Clear any pending data in the stream. + * + * This drops any queued data, so there will be nothing to read from the + * stream until more is added. + * + * \param stream the audio stream to clear. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamAvailable + * \sa SDL_GetAudioStreamData + * \sa SDL_GetAudioStreamQueued + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearAudioStream(SDL_AudioStream *stream); + +/** + * Use this function to pause audio playback on the audio device associated + * with an audio stream. + * + * This function pauses audio processing for a given device. Any bound audio + * streams will not progress, and no audio will be generated. Pausing one + * device does not prevent other unpaused devices from running. + * + * Pausing a device can be useful to halt all audio without unbinding all the + * audio streams. This might be useful while a game is paused, or a level is + * loading, etc. + * + * \param stream the audio stream associated with the audio device to pause. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResumeAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PauseAudioStreamDevice(SDL_AudioStream *stream); + +/** + * Use this function to unpause audio playback on the audio device associated + * with an audio stream. + * + * This function unpauses audio processing for a given device that has + * previously been paused. Once unpaused, any bound audio streams will begin + * to progress again, and audio can be generated. + * + * Remember, SDL_OpenAudioDeviceStream opens device in a paused state, so this + * function call is required for audio playback to begin on such device. + * + * \param stream the audio stream associated with the audio device to resume. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResumeAudioStreamDevice(SDL_AudioStream *stream); + +/** + * Use this function to query if an audio device associated with a stream is + * paused. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. + * + * \param stream the audio stream associated with the audio device to query. + * \returns true if device is valid and paused, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseAudioStreamDevice + * \sa SDL_ResumeAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AudioStreamDevicePaused(SDL_AudioStream *stream); + + +/** + * Lock an audio stream for serialized access. + * + * Each SDL_AudioStream has an internal mutex it uses to protect its data + * structures from threading conflicts. This function allows an app to lock + * that mutex, which could be useful if registering callbacks on this stream. + * + * One does not need to lock a stream to use in it most cases, as the stream + * manages this lock internally. However, this lock is held during callbacks, + * which may run from arbitrary threads at any time, so if an app needs to + * protect shared data during those callbacks, locking the stream guarantees + * that the callback is not running while the lock is held. + * + * As this is just a wrapper over SDL_LockMutex for an internal lock; it has + * all the same attributes (recursive locks are allowed, etc). + * + * \param stream the audio stream to lock. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UnlockAudioStream + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockAudioStream(SDL_AudioStream *stream); + + +/** + * Unlock an audio stream for serialized access. + * + * This unlocks an audio stream after a call to SDL_LockAudioStream. + * + * \param stream the audio stream to unlock. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety You should only call this from the same thread that + * previously called SDL_LockAudioStream. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockAudioStream + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UnlockAudioStream(SDL_AudioStream *stream); + +/** + * A callback that fires when data passes through an SDL_AudioStream. + * + * Apps can (optionally) register a callback with an audio stream that is + * called when data is added with SDL_PutAudioStreamData, or requested with + * SDL_GetAudioStreamData. + * + * Two values are offered here: one is the amount of additional data needed to + * satisfy the immediate request (which might be zero if the stream already + * has enough data queued) and the other is the total amount being requested. + * In a Get call triggering a Put callback, these values can be different. In + * a Put call triggering a Get callback, these values are always the same. + * + * Byte counts might be slightly overestimated due to buffering or resampling, + * and may change from call to call. + * + * This callback is not required to do anything. Generally this is useful for + * adding/reading data on demand, and the app will often put/get data as + * appropriate, but the system goes on with the data currently available to it + * if this callback does nothing. + * + * \param stream the SDL audio stream associated with this callback. + * \param additional_amount the amount of data, in bytes, that is needed right + * now. + * \param total_amount the total amount of data requested, in bytes, that is + * requested or available. + * \param userdata an opaque pointer provided by the app for their personal + * use. + * + * \threadsafety This callbacks may run from any thread, so if you need to + * protect shared data, you should use SDL_LockAudioStream to + * serialize access; this lock will be held before your callback + * is called, so your callback does not need to manage the lock + * explicitly. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamGetCallback + * \sa SDL_SetAudioStreamPutCallback + */ +typedef void (SDLCALL *SDL_AudioStreamCallback)(void *userdata, SDL_AudioStream *stream, int additional_amount, int total_amount); + +/** + * Set a callback that runs when data is requested from an audio stream. + * + * This callback is called _before_ data is obtained from the stream, giving + * the callback the chance to add more on-demand. + * + * The callback can (optionally) call SDL_PutAudioStreamData() to add more + * audio to the stream during this call; if needed, the request that triggered + * this callback will obtain the new data immediately. + * + * The callback's `additional_amount` argument is roughly how many bytes of + * _unconverted_ data (in the stream's input format) is needed by the caller, + * although this may overestimate a little for safety. This takes into account + * how much is already in the stream and only asks for any extra necessary to + * resolve the request, which means the callback may be asked for zero bytes, + * and a different amount on each call. + * + * The callback is not required to supply exact amounts; it is allowed to + * supply too much or too little or none at all. The caller will get what's + * available, up to the amount they requested, regardless of this callback's + * outcome. + * + * Clearing or flushing an audio stream does not call this callback. + * + * This function obtains the stream's lock, which means any existing callback + * (get or put) in progress will finish running before setting the new + * callback. + * + * Setting a NULL function turns off the callback. + * + * \param stream the audio stream to set the new callback on. + * \param callback the new callback function to call when data is requested + * from the stream. + * \param userdata an opaque pointer provided to the callback for its own + * personal use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. This only fails if `stream` is NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamPutCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamGetCallback(SDL_AudioStream *stream, SDL_AudioStreamCallback callback, void *userdata); + +/** + * Set a callback that runs when data is added to an audio stream. + * + * This callback is called _after_ the data is added to the stream, giving the + * callback the chance to obtain it immediately. + * + * The callback can (optionally) call SDL_GetAudioStreamData() to obtain audio + * from the stream during this call. + * + * The callback's `additional_amount` argument is how many bytes of + * _converted_ data (in the stream's output format) was provided by the + * caller, although this may underestimate a little for safety. This value + * might be less than what is currently available in the stream, if data was + * already there, and might be less than the caller provided if the stream + * needs to keep a buffer to aid in resampling. Which means the callback may + * be provided with zero bytes, and a different amount on each call. + * + * The callback may call SDL_GetAudioStreamAvailable to see the total amount + * currently available to read from the stream, instead of the total provided + * by the current call. + * + * The callback is not required to obtain all data. It is allowed to read less + * or none at all. Anything not read now simply remains in the stream for + * later access. + * + * Clearing or flushing an audio stream does not call this callback. + * + * This function obtains the stream's lock, which means any existing callback + * (get or put) in progress will finish running before setting the new + * callback. + * + * Setting a NULL function turns off the callback. + * + * \param stream the audio stream to set the new callback on. + * \param callback the new callback function to call when data is added to the + * stream. + * \param userdata an opaque pointer provided to the callback for its own + * personal use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. This only fails if `stream` is NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamGetCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamPutCallback(SDL_AudioStream *stream, SDL_AudioStreamCallback callback, void *userdata); + + +/** + * Free an audio stream. + * + * This will release all allocated data, including any audio that is still + * queued. You do not need to manually clear the stream first. + * + * If this stream was bound to an audio device, it is unbound during this + * call. If this stream was created with SDL_OpenAudioDeviceStream, the audio + * device that was opened alongside this stream's creation will be closed, + * too. + * + * \param stream the audio stream to destroy. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateAudioStream + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyAudioStream(SDL_AudioStream *stream); + + +/** + * Convenience function for straightforward audio init for the common case. + * + * If all your app intends to do is provide a single source of PCM audio, this + * function allows you to do all your audio setup in a single call. + * + * This is also intended to be a clean means to migrate apps from SDL2. + * + * This function will open an audio device, create a stream and bind it. + * Unlike other methods of setup, the audio device will be closed when this + * stream is destroyed, so the app can treat the returned SDL_AudioStream as + * the only object needed to manage audio playback. + * + * Also unlike other functions, the audio device begins paused. This is to map + * more closely to SDL2-style behavior, since there is no extra step here to + * bind a stream to begin audio flowing. The audio device should be resumed + * with `SDL_ResumeAudioStreamDevice(stream);` + * + * This function works with both playback and recording devices. + * + * The `spec` parameter represents the app's side of the audio stream. That + * is, for recording audio, this will be the output format, and for playing + * audio, this will be the input format. If spec is NULL, the system will + * choose the format, and the app can use SDL_GetAudioStreamFormat() to obtain + * this information later. + * + * If you don't care about opening a specific audio device, you can (and + * probably _should_), use SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK for playback and + * SDL_AUDIO_DEVICE_DEFAULT_RECORDING for recording. + * + * One can optionally provide a callback function; if NULL, the app is + * expected to queue audio data for playback (or unqueue audio data if + * capturing). Otherwise, the callback will begin to fire once the device is + * unpaused. + * + * Destroying the returned stream with SDL_DestroyAudioStream will also close + * the audio device associated with this stream. + * + * \param devid an audio device to open, or SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK + * or SDL_AUDIO_DEVICE_DEFAULT_RECORDING. + * \param spec the audio stream's data format. Can be NULL. + * \param callback a callback where the app will provide new data for + * playback, or receive new data for recording. Can be NULL, + * in which case the app will need to call + * SDL_PutAudioStreamData or SDL_GetAudioStreamData as + * necessary. + * \param userdata app-controlled pointer passed to callback. Can be NULL. + * Ignored if callback is NULL. + * \returns an audio stream on success, ready to use, or NULL on failure; call + * SDL_GetError() for more information. When done with this stream, + * call SDL_DestroyAudioStream to free resources and close the + * device. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamDevice + * \sa SDL_ResumeAudioStreamDevice + */ +extern SDL_DECLSPEC SDL_AudioStream * SDLCALL SDL_OpenAudioDeviceStream(SDL_AudioDeviceID devid, const SDL_AudioSpec *spec, SDL_AudioStreamCallback callback, void *userdata); + +/** + * A callback that fires when data is about to be fed to an audio device. + * + * This is useful for accessing the final mix, perhaps for writing a + * visualizer or applying a final effect to the audio data before playback. + * + * This callback should run as quickly as possible and not block for any + * significant time, as this callback delays submission of data to the audio + * device, which can cause audio playback problems. + * + * The postmix callback _must_ be able to handle any audio data format + * specified in `spec`, which can change between callbacks if the audio device + * changed. However, this only covers frequency and channel count; data is + * always provided here in SDL_AUDIO_F32 format. + * + * The postmix callback runs _after_ logical device gain and audiostream gain + * have been applied, which is to say you can make the output data louder at + * this point than the gain settings would suggest. + * + * \param userdata a pointer provided by the app through + * SDL_SetAudioPostmixCallback, for its own use. + * \param spec the current format of audio that is to be submitted to the + * audio device. + * \param buffer the buffer of audio samples to be submitted. The callback can + * inspect and/or modify this data. + * \param buflen the size of `buffer` in bytes. + * + * \threadsafety This will run from a background thread owned by SDL. The + * application is responsible for locking resources the callback + * touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetAudioPostmixCallback + */ +typedef void (SDLCALL *SDL_AudioPostmixCallback)(void *userdata, const SDL_AudioSpec *spec, float *buffer, int buflen); + +/** + * Set a callback that fires when data is about to be fed to an audio device. + * + * This is useful for accessing the final mix, perhaps for writing a + * visualizer or applying a final effect to the audio data before playback. + * + * The buffer is the final mix of all bound audio streams on an opened device; + * this callback will fire regularly for any device that is both opened and + * unpaused. If there is no new data to mix, either because no streams are + * bound to the device or all the streams are empty, this callback will still + * fire with the entire buffer set to silence. + * + * This callback is allowed to make changes to the data; the contents of the + * buffer after this call is what is ultimately passed along to the hardware. + * + * The callback is always provided the data in float format (values from -1.0f + * to 1.0f), but the number of channels or sample rate may be different than + * the format the app requested when opening the device; SDL might have had to + * manage a conversion behind the scenes, or the playback might have jumped to + * new physical hardware when a system default changed, etc. These details may + * change between calls. Accordingly, the size of the buffer might change + * between calls as well. + * + * This callback can run at any time, and from any thread; if you need to + * serialize access to your app's data, you should provide and use a mutex or + * other synchronization device. + * + * All of this to say: there are specific needs this callback can fulfill, but + * it is not the simplest interface. Apps should generally provide audio in + * their preferred format through an SDL_AudioStream and let SDL handle the + * difference. + * + * This function is extremely time-sensitive; the callback should do the least + * amount of work possible and return as quickly as it can. The longer the + * callback runs, the higher the risk of audio dropouts or other problems. + * + * This function will block until the audio device is in between iterations, + * so any existing callback that might be running will finish before this + * function sets the new callback and returns. + * + * Setting a NULL callback function disables any previously-set callback. + * + * \param devid the ID of an opened audio device. + * \param callback a callback function to be called. Can be NULL. + * \param userdata app-controlled pointer passed to callback. Can be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioPostmixCallback(SDL_AudioDeviceID devid, SDL_AudioPostmixCallback callback, void *userdata); + + +/** + * Load the audio data of a WAVE file into memory. + * + * Loading a WAVE file requires `src`, `spec`, `audio_buf` and `audio_len` to + * be valid pointers. The entire data portion of the file is then loaded into + * memory and decoded if necessary. + * + * Supported formats are RIFF WAVE files with the formats PCM (8, 16, 24, and + * 32 bits), IEEE Float (32 bits), Microsoft ADPCM and IMA ADPCM (4 bits), and + * A-law and mu-law (8 bits). Other formats are currently unsupported and + * cause an error. + * + * If this function succeeds, the return value is zero and the pointer to the + * audio data allocated by the function is written to `audio_buf` and its + * length in bytes to `audio_len`. The SDL_AudioSpec members `freq`, + * `channels`, and `format` are set to the values of the audio data in the + * buffer. + * + * It's necessary to use SDL_free() to free the audio data returned in + * `audio_buf` when it is no longer used. + * + * Because of the underspecification of the .WAV format, there are many + * problematic files in the wild that cause issues with strict decoders. To + * provide compatibility with these files, this decoder is lenient in regards + * to the truncation of the file, the fact chunk, and the size of the RIFF + * chunk. The hints `SDL_HINT_WAVE_RIFF_CHUNK_SIZE`, + * `SDL_HINT_WAVE_TRUNCATION`, and `SDL_HINT_WAVE_FACT_CHUNK` can be used to + * tune the behavior of the loading process. + * + * Any file that is invalid (due to truncation, corruption, or wrong values in + * the headers), too big, or unsupported causes an error. Additionally, any + * critical I/O error from the data source will terminate the loading process + * with an error. The function returns NULL on error and in all cases (with + * the exception of `src` being NULL), an appropriate error message will be + * set. + * + * It is required that the data source supports seeking. + * + * Example: + * + * ```c + * SDL_LoadWAV_IO(SDL_IOFromFile("sample.wav", "rb"), true, &spec, &buf, &len); + * ``` + * + * Note that the SDL_LoadWAV function does this same thing for you, but in a + * less messy way: + * + * ```c + * SDL_LoadWAV("sample.wav", &spec, &buf, &len); + * ``` + * + * \param src the data source for the WAVE data. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \param spec a pointer to an SDL_AudioSpec that will be set to the WAVE + * data's format details on successful return. + * \param audio_buf a pointer filled with the audio data, allocated by the + * function. + * \param audio_len a pointer filled with the length of the audio data buffer + * in bytes. + * \returns true on success. `audio_buf` will be filled with a pointer to an + * allocated buffer containing the audio data, and `audio_len` is + * filled with the length of that audio buffer in bytes. + * + * This function returns false if the .WAV file cannot be opened, + * uses an unknown data format, or is corrupt; call SDL_GetError() + * for more information. + * + * When the application is done with the data returned in + * `audio_buf`, it should call SDL_free() to dispose of it. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_LoadWAV + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LoadWAV_IO(SDL_IOStream *src, bool closeio, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); + +/** + * Loads a WAV from a file path. + * + * This is a convenience function that is effectively the same as: + * + * ```c + * SDL_LoadWAV_IO(SDL_IOFromFile(path, "rb"), true, spec, audio_buf, audio_len); + * ``` + * + * \param path the file path of the WAV file to open. + * \param spec a pointer to an SDL_AudioSpec that will be set to the WAVE + * data's format details on successful return. + * \param audio_buf a pointer filled with the audio data, allocated by the + * function. + * \param audio_len a pointer filled with the length of the audio data buffer + * in bytes. + * \returns true on success. `audio_buf` will be filled with a pointer to an + * allocated buffer containing the audio data, and `audio_len` is + * filled with the length of that audio buffer in bytes. + * + * This function returns false if the .WAV file cannot be opened, + * uses an unknown data format, or is corrupt; call SDL_GetError() + * for more information. + * + * When the application is done with the data returned in + * `audio_buf`, it should call SDL_free() to dispose of it. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_LoadWAV_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LoadWAV(const char *path, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); + +/** + * Mix audio data in a specified format. + * + * This takes an audio buffer `src` of `len` bytes of `format` data and mixes + * it into `dst`, performing addition, volume adjustment, and overflow + * clipping. The buffer pointed to by `dst` must also be `len` bytes of + * `format` data. + * + * This is provided for convenience -- you can mix your own audio data. + * + * Do not use this function for mixing together more than two streams of + * sample data. The output from repeated application of this function may be + * distorted by clipping, because there is no accumulator with greater range + * than the input (not to mention this being an inefficient way of doing it). + * + * It is a common misconception that this function is required to write audio + * data to an output stream in an audio callback. While you can do that, + * SDL_MixAudio() is really only needed when you're mixing a single audio + * stream with a volume adjustment. + * + * \param dst the destination for the mixed audio. + * \param src the source audio buffer to be mixed. + * \param format the SDL_AudioFormat structure representing the desired audio + * format. + * \param len the length of the audio buffer in bytes. + * \param volume ranges from 0.0 - 1.0, and should be set to 1.0 for full + * audio volume. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_MixAudio(Uint8 *dst, const Uint8 *src, SDL_AudioFormat format, Uint32 len, float volume); + +/** + * Convert some audio data of one format to another format. + * + * Please note that this function is for convenience, but should not be used + * to resample audio in blocks, as it will introduce audio artifacts on the + * boundaries. You should only use this function if you are converting audio + * data in its entirety in one call. If you want to convert audio in smaller + * chunks, use an SDL_AudioStream, which is designed for this situation. + * + * Internally, this function creates and destroys an SDL_AudioStream on each + * use, so it's also less efficient than using one directly, if you need to + * convert multiple times. + * + * \param src_spec the format details of the input audio. + * \param src_data the audio data to be converted. + * \param src_len the len of src_data. + * \param dst_spec the format details of the output audio. + * \param dst_data will be filled with a pointer to converted audio data, + * which should be freed with SDL_free(). On error, it will be + * NULL. + * \param dst_len will be filled with the len of dst_data. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertAudioSamples(const SDL_AudioSpec *src_spec, const Uint8 *src_data, int src_len, const SDL_AudioSpec *dst_spec, Uint8 **dst_data, int *dst_len); + +/** + * Get the human readable name of an audio format. + * + * \param format the audio format to query. + * \returns the human readable name of the specified audio format or + * "SDL_AUDIO_UNKNOWN" if the format isn't recognized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioFormatName(SDL_AudioFormat format); + +/** + * Get the appropriate memset value for silencing an audio format. + * + * The value returned by this function can be used as the second argument to + * memset (or SDL_memset) to set an audio buffer in a specific format to + * silence. + * + * \param format the audio data format to query. + * \returns a byte value that can be passed to memset. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSilenceValueForFormat(SDL_AudioFormat format); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_audio_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_begin_code.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_begin_code.h new file mode 100644 index 0000000..a6b47cf --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_begin_code.h @@ -0,0 +1,486 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: BeginCode */ + +/** + * # CategoryBeginCode + * + * `SDL_begin_code.h` sets things up for C dynamic library function + * definitions, static inlined functions, and structures aligned at 4-byte + * alignment. If you don't like ugly C preprocessor code, don't look at this + * file. :) + * + * SDL's headers use this; applications generally should not include this + * header directly. + */ + +/* This shouldn't be nested -- included it around code only. */ +#ifdef SDL_begin_code_h +#error Nested inclusion of SDL_begin_code.h +#endif +#define SDL_begin_code_h + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to tag a symbol as deprecated. + * + * A function is marked deprecated by adding this macro to its declaration: + * + * ```c + * extern SDL_DEPRECATED int ThisFunctionWasABadIdea(void); + * ``` + * + * Compilers with deprecation support can give a warning when a deprecated + * function is used. This symbol may be used in SDL's headers, but apps are + * welcome to use it for their own interfaces as well. + * + * SDL, on occasion, might deprecate a function for various reasons. However, + * SDL never removes symbols before major versions, so deprecated interfaces + * in SDL3 will remain available until SDL4, where it would be expected an app + * would have to take steps to migrate anyhow. + * + * On compilers without a deprecation mechanism, this is defined to nothing, + * and using a deprecated function will not generate a warning. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEPRECATED __attribute__((deprecated)) + +/** + * A macro to tag a symbol as a public API. + * + * SDL uses this macro for all its public functions. On some targets, it is + * used to signal to the compiler that this function needs to be exported from + * a shared library, but it might have other side effects. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DECLSPEC __attribute__ ((visibility("default"))) + +/** + * A macro to set a function's calling conventions. + * + * SDL uses this macro for all its public functions, and any callbacks it + * defines. This macro guarantees that calling conventions match between SDL + * and the app, even if the two were built with different compilers or + * optimization settings. + * + * When writing a callback function, it is very important for it to be + * correctly tagged with SDLCALL, as mismatched calling conventions can cause + * strange behaviors and can be difficult to diagnose. Plus, on many + * platforms, SDLCALL is defined to nothing, so compilers won't be able to + * warn that the tag is missing. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDLCALL __cdecl + +/** + * A macro to request a function be inlined. + * + * This is a hint to the compiler to inline a function. The compiler is free + * to ignore this request. On compilers without inline support, this is + * defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_INLINE __inline + +/** + * A macro to demand a function be inlined. + * + * This is a command to the compiler to inline a function. SDL uses this macro + * in its public headers for a handful of simple functions. On compilers + * without forceinline support, this is defined to `static SDL_INLINE`, which + * is often good enough. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FORCE_INLINE __forceinline + +/** + * A macro to tag a function as never-returning. + * + * This is a hint to the compiler that a function does not return. An example + * of a function like this is the C runtime's exit() function. + * + * This hint can lead to code optimizations, and help analyzers understand + * code flow better. On compilers without noreturn support, this is defined to + * nothing. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NORETURN __attribute__((noreturn)) + +/** + * A macro to tag a function as never-returning (for analysis purposes). + * + * This is almost identical to SDL_NORETURN, except functions marked with this + * _can_ actually return. The difference is that this isn't used for code + * generation, but rather static analyzers use this information to assume + * truths about program state and available code paths. Specifically, this tag + * is useful for writing an assertion mechanism. Indeed, SDL_assert uses this + * tag behind the scenes. Generally, apps that don't understand the specific + * use-case for this tag should avoid using it directly. + * + * On compilers without analyzer_noreturn support, this is defined to nothing. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ANALYZER_NORETURN __attribute__((analyzer_noreturn)) + + +/** + * A macro to signal that a case statement without a `break` is intentional. + * + * C compilers have gotten more aggressive about warning when a switch's + * `case` block does not end with a `break` or other flow control statement, + * flowing into the next case's code, as this is a common accident that leads + * to strange bugs. But sometimes falling through to the next case is the + * correct and desired behavior. This symbol lets an app communicate this + * intention to the compiler, so it doesn't generate a warning. + * + * It is used like this: + * + * ```c + * switch (x) { + * case 1: + * DoSomethingOnlyForOne(); + * SDL_FALLTHROUGH; // tell the compiler this was intentional. + * case 2: + * DoSomethingForOneAndTwo(); + * break; + * } + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FALLTHROUGH [[fallthrough]] + +/** + * A macro to tag a function's return value as critical. + * + * This is a hint to the compiler that a function's return value should not be + * ignored. + * + * If an NODISCARD function's return value is thrown away (the function is + * called as if it returns `void`), the compiler will issue a warning. + * + * While it's generally good practice to check return values for errors, often + * times legitimate programs do not for good reasons. Be careful about what + * functions are tagged as NODISCARD. It operates best when used on a function + * that's failure is surprising and catastrophic; a good example would be a + * program that checks the return values of all its file write function calls + * but not the call to close the file, which it assumes incorrectly never + * fails. + * + * Function callers that want to throw away a NODISCARD return value can call + * the function with a `(void)` cast, which informs the compiler the act is + * intentional. + * + * On compilers without nodiscard support, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NODISCARD [[nodiscard]] + +/** + * A macro to tag a function as an allocator. + * + * This is a hint to the compiler that a function is an allocator, like + * malloc(), with certain rules. A description of how GCC treats this hint is + * here: + * + * https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-malloc-function-attribute + * + * On compilers without allocator tag support, this is defined to nothing. + * + * Most apps don't need to, and should not, use this directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MALLOC __declspec(allocator) __desclspec(restrict) + +/** + * A macro to tag a function as returning a certain allocation. + * + * This is a hint to the compiler that a function allocates and returns a + * specific amount of memory based on one of its arguments. For example, the C + * runtime's malloc() function could use this macro with an argument of 1 + * (first argument to malloc is the size of the allocation). + * + * On compilers without alloc_size support, this is defined to nothing. + * + * Most apps don't need to, and should not, use this directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ALLOC_SIZE(p) __attribute__((alloc_size(p))) + +/** + * A macro to tag a pointer variable, to help with pointer aliasing. + * + * A good explanation of the restrict keyword is here: + * + * https://en.wikipedia.org/wiki/Restrict + * + * On compilers without restrict support, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RESTRICT __restrict__ + +/** + * Check if the compiler supports a given builtin functionality. + * + * This allows preprocessor checks for things that otherwise might fail to + * compile. + * + * Supported by virtually all clang versions and more-recent GCCs. Use this + * instead of checking the clang version if possible. + * + * On compilers without has_builtin support, this is defined to 0 (always + * false). + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAS_BUILTIN(x) __has_builtin(x) + +/* end of wiki documentation section. */ +#endif + +#ifndef SDL_HAS_BUILTIN +#ifdef __has_builtin +#define SDL_HAS_BUILTIN(x) __has_builtin(x) +#else +#define SDL_HAS_BUILTIN(x) 0 +#endif +#endif + +#ifndef SDL_DEPRECATED +# if defined(__GNUC__) && (__GNUC__ >= 4) /* technically, this arrived in gcc 3.1, but oh well. */ +# define SDL_DEPRECATED __attribute__((deprecated)) +# elif defined(_MSC_VER) +# define SDL_DEPRECATED __declspec(deprecated) +# else +# define SDL_DEPRECATED +# endif +#endif + +#ifndef SDL_UNUSED +# ifdef __GNUC__ +# define SDL_UNUSED __attribute__((unused)) +# else +# define SDL_UNUSED +# endif +#endif + +/* Some compilers use a special export keyword */ +#ifndef SDL_DECLSPEC +# if defined(SDL_PLATFORM_WINDOWS) +# ifdef DLL_EXPORT +# define SDL_DECLSPEC __declspec(dllexport) +# else +# define SDL_DECLSPEC +# endif +# else +# if defined(__GNUC__) && __GNUC__ >= 4 +# define SDL_DECLSPEC __attribute__ ((visibility("default"))) +# else +# define SDL_DECLSPEC +# endif +# endif +#endif + +/* By default SDL uses the C calling convention */ +#ifndef SDLCALL +#if defined(SDL_PLATFORM_WINDOWS) && !defined(__GNUC__) +#define SDLCALL __cdecl +#else +#define SDLCALL +#endif +#endif /* SDLCALL */ + +/* Force structure packing at 4 byte alignment. + This is necessary if the header is included in code which has structure + packing set to an alternate value, say for loading structures from disk. + The packing is reset to the previous value in SDL_close_code.h + */ +#if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__) +#ifdef _MSC_VER +#pragma warning(disable: 4103) +#endif +#ifdef __clang__ +#pragma clang diagnostic ignored "-Wpragma-pack" +#endif +#ifdef __BORLANDC__ +#pragma nopackwarning +#endif +#ifdef _WIN64 +/* Use 8-byte alignment on 64-bit architectures, so pointers are aligned */ +#pragma pack(push,8) +#else +#pragma pack(push,4) +#endif +#endif /* Compiler needs structure packing set */ + +#ifndef SDL_INLINE +#ifdef __GNUC__ +#define SDL_INLINE __inline__ +#elif defined(_MSC_VER) || defined(__BORLANDC__) || \ + defined(__DMC__) || defined(__SC__) || \ + defined(__WATCOMC__) || defined(__LCC__) || \ + defined(__DECC) || defined(__CC_ARM) +#define SDL_INLINE __inline +#ifndef __inline__ +#define __inline__ __inline +#endif +#else +#define SDL_INLINE inline +#ifndef __inline__ +#define __inline__ inline +#endif +#endif +#endif /* SDL_INLINE not defined */ + +#ifndef SDL_FORCE_INLINE +#ifdef _MSC_VER +#define SDL_FORCE_INLINE __forceinline +#elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) ) +#define SDL_FORCE_INLINE __attribute__((always_inline)) static __inline__ +#else +#define SDL_FORCE_INLINE static SDL_INLINE +#endif +#endif /* SDL_FORCE_INLINE not defined */ + +#ifndef SDL_NORETURN +#ifdef __GNUC__ +#define SDL_NORETURN __attribute__((noreturn)) +#elif defined(_MSC_VER) +#define SDL_NORETURN __declspec(noreturn) +#else +#define SDL_NORETURN +#endif +#endif /* SDL_NORETURN not defined */ + +#ifdef __clang__ +#if __has_feature(attribute_analyzer_noreturn) +#define SDL_ANALYZER_NORETURN __attribute__((analyzer_noreturn)) +#endif +#endif + +#ifndef SDL_ANALYZER_NORETURN +#define SDL_ANALYZER_NORETURN +#endif + +/* Apparently this is needed by several Windows compilers */ +#ifndef __MACH__ +#ifndef NULL +#ifdef __cplusplus +#define NULL 0 +#else +#define NULL ((void *)0) +#endif +#endif /* NULL */ +#endif /* ! macOS - breaks precompiled headers */ + +#ifndef SDL_FALLTHROUGH +#if (defined(__cplusplus) && __cplusplus >= 201703L) || \ + (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202000L) +#define SDL_FALLTHROUGH [[fallthrough]] +#else +#if defined(__has_attribute) && !defined(__SUNPRO_C) && !defined(__SUNPRO_CC) +#define SDL_HAS_FALLTHROUGH __has_attribute(__fallthrough__) +#else +#define SDL_HAS_FALLTHROUGH 0 +#endif /* __has_attribute */ +#if SDL_HAS_FALLTHROUGH && \ + ((defined(__GNUC__) && __GNUC__ >= 7) || \ + (defined(__clang_major__) && __clang_major__ >= 10)) +#define SDL_FALLTHROUGH __attribute__((__fallthrough__)) +#else +#define SDL_FALLTHROUGH do {} while (0) /* fallthrough */ +#endif /* SDL_HAS_FALLTHROUGH */ +#undef SDL_HAS_FALLTHROUGH +#endif /* C++17 or C2x */ +#endif /* SDL_FALLTHROUGH not defined */ + +#ifndef SDL_NODISCARD +#if (defined(__cplusplus) && __cplusplus >= 201703L) || \ + (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) +#define SDL_NODISCARD [[nodiscard]] +#elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) ) +#define SDL_NODISCARD __attribute__((warn_unused_result)) +#elif defined(_MSC_VER) && (_MSC_VER >= 1700) +#define SDL_NODISCARD _Check_return_ +#else +#define SDL_NODISCARD +#endif /* C++17 or C23 */ +#endif /* SDL_NODISCARD not defined */ + +#ifndef SDL_MALLOC +#if defined(__GNUC__) && (__GNUC__ >= 3) +#define SDL_MALLOC __attribute__((malloc)) +/** FIXME +#elif defined(_MSC_VER) +#define SDL_MALLOC __declspec(allocator) __desclspec(restrict) +**/ +#else +#define SDL_MALLOC +#endif +#endif /* SDL_MALLOC not defined */ + +#ifndef SDL_ALLOC_SIZE +#if (defined(__clang__) && __clang_major__ >= 4) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) +#define SDL_ALLOC_SIZE(p) __attribute__((alloc_size(p))) +#elif defined(_MSC_VER) +#define SDL_ALLOC_SIZE(p) +#else +#define SDL_ALLOC_SIZE(p) +#endif +#endif /* SDL_ALLOC_SIZE not defined */ + +#ifndef SDL_ALLOC_SIZE2 +#if (defined(__clang__) && __clang_major__ >= 4) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) +#define SDL_ALLOC_SIZE2(p1, p2) __attribute__((alloc_size(p1, p2))) +#elif defined(_MSC_VER) +#define SDL_ALLOC_SIZE2(p1, p2) +#else +#define SDL_ALLOC_SIZE2(p1, p2) +#endif +#endif /* SDL_ALLOC_SIZE2 not defined */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_bits.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_bits.h new file mode 100644 index 0000000..7435ce6 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_bits.h @@ -0,0 +1,147 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryBits + * + * Functions for fiddling with bits and bitmasks. + */ + +#ifndef SDL_bits_h_ +#define SDL_bits_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#if defined(__WATCOMC__) && defined(__386__) +extern __inline int _SDL_bsr_watcom(Uint32); +#pragma aux _SDL_bsr_watcom = \ + "bsr eax, eax" \ + parm [eax] nomemory \ + value [eax] \ + modify exact [eax] nomemory; +#endif + +/** + * Get the index of the most significant (set) bit in a 32-bit number. + * + * Result is undefined when called with 0. This operation can also be stated + * as "count leading zeroes" and "log base 2". + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the 32-bit value to examine. + * \returns the index of the most significant bit, or -1 if the value is 0. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE int SDL_MostSignificantBitIndex32(Uint32 x) +{ +#if defined(__GNUC__) && (__GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) + /* Count Leading Zeroes builtin in GCC. + * http://gcc.gnu.org/onlinedocs/gcc-4.3.4/gcc/Other-Builtins.html + */ + if (x == 0) { + return -1; + } + return 31 - __builtin_clz(x); +#elif defined(__WATCOMC__) && defined(__386__) + if (x == 0) { + return -1; + } + return _SDL_bsr_watcom(x); +#elif defined(_MSC_VER) && _MSC_VER >= 1400 + unsigned long index; + if (_BitScanReverse(&index, x)) { + return (int)index; + } + return -1; +#else + /* Based off of Bit Twiddling Hacks by Sean Eron Anderson + * , released in the public domain. + * http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog + */ + const Uint32 b[] = {0x2, 0xC, 0xF0, 0xFF00, 0xFFFF0000}; + const int S[] = {1, 2, 4, 8, 16}; + + int msbIndex = 0; + int i; + + if (x == 0) { + return -1; + } + + for (i = 4; i >= 0; i--) + { + if (x & b[i]) + { + x >>= S[i]; + msbIndex |= S[i]; + } + } + + return msbIndex; +#endif +} + +/** + * Determine if a unsigned 32-bit value has exactly one bit set. + * + * If there are no bits set (`x` is zero), or more than one bit set, this + * returns false. If any one bit is exclusively set, this returns true. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the 32-bit value to examine. + * \returns true if exactly one bit is set in `x`, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_HasExactlyOneBitSet32(Uint32 x) +{ + if (x && !(x & (x - 1))) { + return true; + } + return false; +} + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_bits_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_blendmode.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_blendmode.h new file mode 100644 index 0000000..8f00cbc --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_blendmode.h @@ -0,0 +1,202 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryBlendmode + * + * Blend modes decide how two colors will mix together. There are both + * standard modes for basic needs and a means to create custom modes, + * dictating what sort of math to do on what color components. + */ + +#ifndef SDL_blendmode_h_ +#define SDL_blendmode_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A set of blend modes used in drawing operations. + * + * These predefined blend modes are supported everywhere. + * + * Additional values may be obtained from SDL_ComposeCustomBlendMode. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_ComposeCustomBlendMode + */ +typedef Uint32 SDL_BlendMode; + +#define SDL_BLENDMODE_NONE 0x00000000u /**< no blending: dstRGBA = srcRGBA */ +#define SDL_BLENDMODE_BLEND 0x00000001u /**< alpha blending: dstRGB = (srcRGB * srcA) + (dstRGB * (1-srcA)), dstA = srcA + (dstA * (1-srcA)) */ +#define SDL_BLENDMODE_BLEND_PREMULTIPLIED 0x00000010u /**< pre-multiplied alpha blending: dstRGBA = srcRGBA + (dstRGBA * (1-srcA)) */ +#define SDL_BLENDMODE_ADD 0x00000002u /**< additive blending: dstRGB = (srcRGB * srcA) + dstRGB, dstA = dstA */ +#define SDL_BLENDMODE_ADD_PREMULTIPLIED 0x00000020u /**< pre-multiplied additive blending: dstRGB = srcRGB + dstRGB, dstA = dstA */ +#define SDL_BLENDMODE_MOD 0x00000004u /**< color modulate: dstRGB = srcRGB * dstRGB, dstA = dstA */ +#define SDL_BLENDMODE_MUL 0x00000008u /**< color multiply: dstRGB = (srcRGB * dstRGB) + (dstRGB * (1-srcA)), dstA = dstA */ +#define SDL_BLENDMODE_INVALID 0x7FFFFFFFu + +/** + * The blend operation used when combining source and destination pixel + * components. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_BlendOperation +{ + SDL_BLENDOPERATION_ADD = 0x1, /**< dst + src: supported by all renderers */ + SDL_BLENDOPERATION_SUBTRACT = 0x2, /**< src - dst : supported by D3D, OpenGL, OpenGLES, and Vulkan */ + SDL_BLENDOPERATION_REV_SUBTRACT = 0x3, /**< dst - src : supported by D3D, OpenGL, OpenGLES, and Vulkan */ + SDL_BLENDOPERATION_MINIMUM = 0x4, /**< min(dst, src) : supported by D3D, OpenGL, OpenGLES, and Vulkan */ + SDL_BLENDOPERATION_MAXIMUM = 0x5 /**< max(dst, src) : supported by D3D, OpenGL, OpenGLES, and Vulkan */ +} SDL_BlendOperation; + +/** + * The normalized factor used to multiply pixel components. + * + * The blend factors are multiplied with the pixels from a drawing operation + * (src) and the pixels from the render target (dst) before the blend + * operation. The comma-separated factors listed above are always applied in + * the component order red, green, blue, and alpha. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_BlendFactor +{ + SDL_BLENDFACTOR_ZERO = 0x1, /**< 0, 0, 0, 0 */ + SDL_BLENDFACTOR_ONE = 0x2, /**< 1, 1, 1, 1 */ + SDL_BLENDFACTOR_SRC_COLOR = 0x3, /**< srcR, srcG, srcB, srcA */ + SDL_BLENDFACTOR_ONE_MINUS_SRC_COLOR = 0x4, /**< 1-srcR, 1-srcG, 1-srcB, 1-srcA */ + SDL_BLENDFACTOR_SRC_ALPHA = 0x5, /**< srcA, srcA, srcA, srcA */ + SDL_BLENDFACTOR_ONE_MINUS_SRC_ALPHA = 0x6, /**< 1-srcA, 1-srcA, 1-srcA, 1-srcA */ + SDL_BLENDFACTOR_DST_COLOR = 0x7, /**< dstR, dstG, dstB, dstA */ + SDL_BLENDFACTOR_ONE_MINUS_DST_COLOR = 0x8, /**< 1-dstR, 1-dstG, 1-dstB, 1-dstA */ + SDL_BLENDFACTOR_DST_ALPHA = 0x9, /**< dstA, dstA, dstA, dstA */ + SDL_BLENDFACTOR_ONE_MINUS_DST_ALPHA = 0xA /**< 1-dstA, 1-dstA, 1-dstA, 1-dstA */ +} SDL_BlendFactor; + +/** + * Compose a custom blend mode for renderers. + * + * The functions SDL_SetRenderDrawBlendMode and SDL_SetTextureBlendMode accept + * the SDL_BlendMode returned by this function if the renderer supports it. + * + * A blend mode controls how the pixels from a drawing operation (source) get + * combined with the pixels from the render target (destination). First, the + * components of the source and destination pixels get multiplied with their + * blend factors. Then, the blend operation takes the two products and + * calculates the result that will get stored in the render target. + * + * Expressed in pseudocode, it would look like this: + * + * ```c + * dstRGB = colorOperation(srcRGB * srcColorFactor, dstRGB * dstColorFactor); + * dstA = alphaOperation(srcA * srcAlphaFactor, dstA * dstAlphaFactor); + * ``` + * + * Where the functions `colorOperation(src, dst)` and `alphaOperation(src, + * dst)` can return one of the following: + * + * - `src + dst` + * - `src - dst` + * - `dst - src` + * - `min(src, dst)` + * - `max(src, dst)` + * + * The red, green, and blue components are always multiplied with the first, + * second, and third components of the SDL_BlendFactor, respectively. The + * fourth component is not used. + * + * The alpha component is always multiplied with the fourth component of the + * SDL_BlendFactor. The other components are not used in the alpha + * calculation. + * + * Support for these blend modes varies for each renderer. To check if a + * specific SDL_BlendMode is supported, create a renderer and pass it to + * either SDL_SetRenderDrawBlendMode or SDL_SetTextureBlendMode. They will + * return with an error if the blend mode is not supported. + * + * This list describes the support of custom blend modes for each renderer. + * All renderers support the four blend modes listed in the SDL_BlendMode + * enumeration. + * + * - **direct3d**: Supports all operations with all factors. However, some + * factors produce unexpected results with `SDL_BLENDOPERATION_MINIMUM` and + * `SDL_BLENDOPERATION_MAXIMUM`. + * - **direct3d11**: Same as Direct3D 9. + * - **opengl**: Supports the `SDL_BLENDOPERATION_ADD` operation with all + * factors. OpenGL versions 1.1, 1.2, and 1.3 do not work correctly here. + * - **opengles2**: Supports the `SDL_BLENDOPERATION_ADD`, + * `SDL_BLENDOPERATION_SUBTRACT`, `SDL_BLENDOPERATION_REV_SUBTRACT` + * operations with all factors. + * - **psp**: No custom blend mode support. + * - **software**: No custom blend mode support. + * + * Some renderers do not provide an alpha component for the default render + * target. The `SDL_BLENDFACTOR_DST_ALPHA` and + * `SDL_BLENDFACTOR_ONE_MINUS_DST_ALPHA` factors do not have an effect in this + * case. + * + * \param srcColorFactor the SDL_BlendFactor applied to the red, green, and + * blue components of the source pixels. + * \param dstColorFactor the SDL_BlendFactor applied to the red, green, and + * blue components of the destination pixels. + * \param colorOperation the SDL_BlendOperation used to combine the red, + * green, and blue components of the source and + * destination pixels. + * \param srcAlphaFactor the SDL_BlendFactor applied to the alpha component of + * the source pixels. + * \param dstAlphaFactor the SDL_BlendFactor applied to the alpha component of + * the destination pixels. + * \param alphaOperation the SDL_BlendOperation used to combine the alpha + * component of the source and destination pixels. + * \returns an SDL_BlendMode that represents the chosen factors and + * operations. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawBlendMode + * \sa SDL_GetRenderDrawBlendMode + * \sa SDL_SetTextureBlendMode + * \sa SDL_GetTextureBlendMode + */ +extern SDL_DECLSPEC SDL_BlendMode SDLCALL SDL_ComposeCustomBlendMode(SDL_BlendFactor srcColorFactor, + SDL_BlendFactor dstColorFactor, + SDL_BlendOperation colorOperation, + SDL_BlendFactor srcAlphaFactor, + SDL_BlendFactor dstAlphaFactor, + SDL_BlendOperation alphaOperation); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_blendmode_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_camera.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_camera.h new file mode 100644 index 0000000..5f3911f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_camera.h @@ -0,0 +1,519 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryCamera + * + * Video capture for the SDL library. + * + * This API lets apps read input from video sources, like webcams. Camera + * devices can be enumerated, queried, and opened. Once opened, it will + * provide SDL_Surface objects as new frames of video come in. These surfaces + * can be uploaded to an SDL_Texture or processed as pixels in memory. + * + * Several platforms will alert the user if an app tries to access a camera, + * and some will present a UI asking the user if your application should be + * allowed to obtain images at all, which they can deny. A successfully opened + * camera will not provide images until permission is granted. Applications, + * after opening a camera device, can see if they were granted access by + * either polling with the SDL_GetCameraPermissionState() function, or waiting + * for an SDL_EVENT_CAMERA_DEVICE_APPROVED or SDL_EVENT_CAMERA_DEVICE_DENIED + * event. Platforms that don't have any user approval process will report + * approval immediately. + * + * Note that SDL cameras only provide video as individual frames; they will + * not provide full-motion video encoded in a movie file format, although an + * app is free to encode the acquired frames into any format it likes. It also + * does not provide audio from the camera hardware through this API; not only + * do many webcams not have microphones at all, many people--from streamers to + * people on Zoom calls--will want to use a separate microphone regardless of + * the camera. In any case, recorded audio will be available through SDL's + * audio API no matter what hardware provides the microphone. + * + * ## Camera gotchas + * + * Consumer-level camera hardware tends to take a little while to warm up, + * once the device has been opened. Generally most camera apps have some sort + * of UI to take a picture (a button to snap a pic while a preview is showing, + * some sort of multi-second countdown for the user to pose, like a photo + * booth), which puts control in the users' hands, or they are intended to + * stay on for long times (Pokemon Go, etc). + * + * It's not uncommon that a newly-opened camera will provide a couple of + * completely black frames, maybe followed by some under-exposed images. If + * taking a single frame automatically, or recording video from a camera's + * input without the user initiating it from a preview, it could be wise to + * drop the first several frames (if not the first several _seconds_ worth of + * frames!) before using images from a camera. + */ + +#ifndef SDL_camera_h_ +#define SDL_camera_h_ + +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a camera device for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the device is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + */ +typedef Uint32 SDL_CameraID; + +/** + * The opaque structure used to identify an opened SDL camera. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Camera SDL_Camera; + +/** + * The details of an output format for a camera device. + * + * Cameras often support multiple formats; each one will be encapsulated in + * this struct. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetCameraSupportedFormats + * \sa SDL_GetCameraFormat + */ +typedef struct SDL_CameraSpec +{ + SDL_PixelFormat format; /**< Frame format */ + SDL_Colorspace colorspace; /**< Frame colorspace */ + int width; /**< Frame width */ + int height; /**< Frame height */ + int framerate_numerator; /**< Frame rate numerator ((num / denom) == FPS, (denom / num) == duration in seconds) */ + int framerate_denominator; /**< Frame rate demoninator ((num / denom) == FPS, (denom / num) == duration in seconds) */ +} SDL_CameraSpec; + +/** + * The position of camera in relation to system device. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetCameraPosition + */ +typedef enum SDL_CameraPosition +{ + SDL_CAMERA_POSITION_UNKNOWN, + SDL_CAMERA_POSITION_FRONT_FACING, + SDL_CAMERA_POSITION_BACK_FACING +} SDL_CameraPosition; + + +/** + * Use this function to get the number of built-in camera drivers. + * + * This function returns a hardcoded number. This never returns a negative + * value; if there are no drivers compiled into this build of SDL, this + * function returns zero. The presence of a driver in this list does not mean + * it will function, it just means SDL is capable of interacting with that + * interface. For example, a build of SDL might have v4l2 support, but if + * there's no kernel support available, SDL's v4l2 driver would fail if used. + * + * By default, SDL tries all drivers, in its preferred order, until one is + * found to be usable. + * + * \returns the number of built-in camera drivers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameraDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumCameraDrivers(void); + +/** + * Use this function to get the name of a built in camera driver. + * + * The list of camera drivers is given in the order that they are normally + * initialized by default; the drivers that seem more reasonable to choose + * first (as far as the SDL developers believe) are earlier in the list. + * + * The names of drivers are all simple, low-ASCII identifiers, like "v4l2", + * "coremedia" or "android". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of the camera driver; the value ranges from 0 to + * SDL_GetNumCameraDrivers() - 1. + * \returns the name of the camera driver at the requested index, or NULL if + * an invalid index was specified. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumCameraDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCameraDriver(int index); + +/** + * Get the name of the current camera driver. + * + * The names of drivers are all simple, low-ASCII identifiers, like "v4l2", + * "coremedia" or "android". These never have Unicode characters, and are not + * meant to be proper names. + * + * \returns the name of the current camera driver or NULL if no driver has + * been initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCurrentCameraDriver(void); + +/** + * Get a list of currently connected camera devices. + * + * \param count a pointer filled in with the number of cameras returned, may + * be NULL. + * \returns a 0 terminated array of camera instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC SDL_CameraID * SDLCALL SDL_GetCameras(int *count); + +/** + * Get the list of native formats/sizes a camera supports. + * + * This returns a list of all formats and frame sizes that a specific camera + * can offer. This is useful if your app can accept a variety of image formats + * and sizes and so want to find the optimal spec that doesn't require + * conversion. + * + * This function isn't strictly required; if you call SDL_OpenCamera with a + * NULL spec, SDL will choose a native format for you, and if you instead + * specify a desired format, it will transparently convert to the requested + * format on your behalf. + * + * If `count` is not NULL, it will be filled with the number of elements in + * the returned array. + * + * Note that it's legal for a camera to supply an empty list. This is what + * will happen on Emscripten builds, since that platform won't tell _anything_ + * about available cameras until you've opened one, and won't even tell if + * there _is_ a camera until the user has given you permission to check + * through a scary warning popup. + * + * \param instance_id the camera device instance ID. + * \param count a pointer filled in with the number of elements in the list, + * may be NULL. + * \returns a NULL terminated array of pointers to SDL_CameraSpec or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC SDL_CameraSpec ** SDLCALL SDL_GetCameraSupportedFormats(SDL_CameraID instance_id, int *count); + +/** + * Get the human-readable device name for a camera. + * + * \param instance_id the camera device instance ID. + * \returns a human-readable device name or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCameraName(SDL_CameraID instance_id); + +/** + * Get the position of the camera in relation to the system. + * + * Most platforms will report UNKNOWN, but mobile devices, like phones, can + * often make a distinction between cameras on the front of the device (that + * points towards the user, for taking "selfies") and cameras on the back (for + * filming in the direction the user is facing). + * + * \param instance_id the camera device instance ID. + * \returns the position of the camera on the system hardware. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + */ +extern SDL_DECLSPEC SDL_CameraPosition SDLCALL SDL_GetCameraPosition(SDL_CameraID instance_id); + +/** + * Open a video recording device (a "camera"). + * + * You can open the device with any reasonable spec, and if the hardware can't + * directly support it, it will convert data seamlessly to the requested + * format. This might incur overhead, including scaling of image data. + * + * If you would rather accept whatever format the device offers, you can pass + * a NULL spec here and it will choose one for you (and you can use + * SDL_Surface's conversion/scaling functions directly if necessary). + * + * You can call SDL_GetCameraFormat() to get the actual data format if passing + * a NULL spec here. You can see the exact specs a device can support without + * conversion with SDL_GetCameraSupportedFormats(). + * + * SDL will not attempt to emulate framerate; it will try to set the hardware + * to the rate closest to the requested speed, but it won't attempt to limit + * or duplicate frames artificially; call SDL_GetCameraFormat() to see the + * actual framerate of the opened the device, and check your timestamps if + * this is crucial to your app! + * + * Note that the camera is not usable until the user approves its use! On some + * platforms, the operating system will prompt the user to permit access to + * the camera, and they can choose Yes or No at that point. Until they do, the + * camera will not be usable. The app should either wait for an + * SDL_EVENT_CAMERA_DEVICE_APPROVED (or SDL_EVENT_CAMERA_DEVICE_DENIED) event, + * or poll SDL_GetCameraPermissionState() occasionally until it returns + * non-zero. On platforms that don't require explicit user approval (and + * perhaps in places where the user previously permitted access), the approval + * event might come immediately, but it might come seconds, minutes, or hours + * later! + * + * \param instance_id the camera device instance ID. + * \param spec the desired format for data the device will provide. Can be + * NULL. + * \returns an SDL_Camera object or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + * \sa SDL_GetCameraFormat + */ +extern SDL_DECLSPEC SDL_Camera * SDLCALL SDL_OpenCamera(SDL_CameraID instance_id, const SDL_CameraSpec *spec); + +/** + * Query if camera access has been approved by the user. + * + * Cameras will not function between when the device is opened by the app and + * when the user permits access to the hardware. On some platforms, this + * presents as a popup dialog where the user has to explicitly approve access; + * on others the approval might be implicit and not alert the user at all. + * + * This function can be used to check the status of that approval. It will + * return 0 if still waiting for user response, 1 if the camera is approved + * for use, and -1 if the user denied access. + * + * Instead of polling with this function, you can wait for a + * SDL_EVENT_CAMERA_DEVICE_APPROVED (or SDL_EVENT_CAMERA_DEVICE_DENIED) event + * in the standard SDL event loop, which is guaranteed to be sent once when + * permission to use the camera is decided. + * + * If a camera is declined, there's nothing to be done but call + * SDL_CloseCamera() to dispose of it. + * + * \param camera the opened camera device to query. + * \returns -1 if user denied access to the camera, 1 if user approved access, + * 0 if no decision has been made yet. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + * \sa SDL_CloseCamera + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetCameraPermissionState(SDL_Camera *camera); + +/** + * Get the instance ID of an opened camera. + * + * \param camera an SDL_Camera to query. + * \returns the instance ID of the specified camera on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC SDL_CameraID SDLCALL SDL_GetCameraID(SDL_Camera *camera); + +/** + * Get the properties associated with an opened camera. + * + * \param camera the SDL_Camera obtained from SDL_OpenCamera(). + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetCameraProperties(SDL_Camera *camera); + +/** + * Get the spec that a camera is using when generating images. + * + * Note that this might not be the native format of the hardware, as SDL might + * be converting to this format behind the scenes. + * + * If the system is waiting for the user to approve access to the camera, as + * some platforms require, this will return false, but this isn't necessarily + * a fatal error; you should either wait for an + * SDL_EVENT_CAMERA_DEVICE_APPROVED (or SDL_EVENT_CAMERA_DEVICE_DENIED) event, + * or poll SDL_GetCameraPermissionState() occasionally until it returns + * non-zero. + * + * \param camera opened camera device. + * \param spec the SDL_CameraSpec to be initialized by this function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetCameraFormat(SDL_Camera *camera, SDL_CameraSpec *spec); + +/** + * Acquire a frame. + * + * The frame is a memory pointer to the image data, whose size and format are + * given by the spec requested when opening the device. + * + * This is a non blocking API. If there is a frame available, a non-NULL + * surface is returned, and timestampNS will be filled with a non-zero value. + * + * Note that an error case can also return NULL, but a NULL by itself is + * normal and just signifies that a new frame is not yet available. Note that + * even if a camera device fails outright (a USB camera is unplugged while in + * use, etc), SDL will send an event separately to notify the app, but + * continue to provide blank frames at ongoing intervals until + * SDL_CloseCamera() is called, so real failure here is almost always an out + * of memory condition. + * + * After use, the frame should be released with SDL_ReleaseCameraFrame(). If + * you don't do this, the system may stop providing more video! + * + * Do not call SDL_DestroySurface() on the returned surface! It must be given + * back to the camera subsystem with SDL_ReleaseCameraFrame! + * + * If the system is waiting for the user to approve access to the camera, as + * some platforms require, this will return NULL (no frames available); you + * should either wait for an SDL_EVENT_CAMERA_DEVICE_APPROVED (or + * SDL_EVENT_CAMERA_DEVICE_DENIED) event, or poll + * SDL_GetCameraPermissionState() occasionally until it returns non-zero. + * + * \param camera opened camera device. + * \param timestampNS a pointer filled in with the frame's timestamp, or 0 on + * error. Can be NULL. + * \returns a new frame of video on success, NULL if none is currently + * available. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ReleaseCameraFrame + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_AcquireCameraFrame(SDL_Camera *camera, Uint64 *timestampNS); + +/** + * Release a frame of video acquired from a camera. + * + * Let the back-end re-use the internal buffer for camera. + * + * This function _must_ be called only on surface objects returned by + * SDL_AcquireCameraFrame(). This function should be called as quickly as + * possible after acquisition, as SDL keeps a small FIFO queue of surfaces for + * video frames; if surfaces aren't released in a timely manner, SDL may drop + * upcoming video frames from the camera. + * + * If the app needs to keep the surface for a significant time, they should + * make a copy of it and release the original. + * + * The app should not use the surface again after calling this function; + * assume the surface is freed and the pointer is invalid. + * + * \param camera opened camera device. + * \param frame the video frame surface to release. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireCameraFrame + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseCameraFrame(SDL_Camera *camera, SDL_Surface *frame); + +/** + * Use this function to shut down camera processing and close the camera + * device. + * + * \param camera opened camera device. + * + * \threadsafety It is safe to call this function from any thread, but no + * thread may reference `device` once this function is called. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseCamera(SDL_Camera *camera); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_camera_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_clipboard.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_clipboard.h new file mode 100644 index 0000000..3ca56a4 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_clipboard.h @@ -0,0 +1,331 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryClipboard + * + * SDL provides access to the system clipboard, both for reading information + * from other processes and publishing information of its own. + * + * This is not just text! SDL apps can access and publish data by mimetype. + * + * ## Basic use (text) + * + * Obtaining and publishing simple text to the system clipboard is as easy as + * calling SDL_GetClipboardText() and SDL_SetClipboardText(), respectively. + * These deal with C strings in UTF-8 encoding. Data transmission and encoding + * conversion is completely managed by SDL. + * + * ## Clipboard callbacks (data other than text) + * + * Things get more complicated when the clipboard contains something other + * than text. Not only can the system clipboard contain data of any type, in + * some cases it can contain the same data in different formats! For example, + * an image painting app might let the user copy a graphic to the clipboard, + * and offers it in .BMP, .JPG, or .PNG format for other apps to consume. + * + * Obtaining clipboard data ("pasting") like this is a matter of calling + * SDL_GetClipboardData() and telling it the mimetype of the data you want. + * But how does one know if that format is available? SDL_HasClipboardData() + * can report if a specific mimetype is offered, and + * SDL_GetClipboardMimeTypes() can provide the entire list of mimetypes + * available, so the app can decide what to do with the data and what formats + * it can support. + * + * Setting the clipboard ("copying") to arbitrary data is done with + * SDL_SetClipboardData. The app does not provide the data in this call, but + * rather the mimetypes it is willing to provide and a callback function. + * During the callback, the app will generate the data. This allows massive + * data sets to be provided to the clipboard, without any data being copied + * before it is explicitly requested. More specifically, it allows an app to + * offer data in multiple formats without providing a copy of all of them + * upfront. If the app has an image that it could provide in PNG or JPG + * format, it doesn't have to encode it to either of those unless and until + * something tries to paste it. + * + * ## Primary Selection + * + * The X11 and Wayland video targets have a concept of the "primary selection" + * in addition to the usual clipboard. This is generally highlighted (but not + * explicitly copied) text from various apps. SDL offers APIs for this through + * SDL_GetPrimarySelectionText() and SDL_SetPrimarySelectionText(). SDL offers + * these APIs on platforms without this concept, too, but only so far that it + * will keep a copy of a string that the app sets for later retrieval; the + * operating system will not ever attempt to change the string externally if + * it doesn't support a primary selection. + */ + +#ifndef SDL_clipboard_h_ +#define SDL_clipboard_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Function prototypes */ + +/** + * Put UTF-8 text into the clipboard. + * + * \param text the text to store in the clipboard. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetClipboardText + * \sa SDL_HasClipboardText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetClipboardText(const char *text); + +/** + * Get UTF-8 text from the clipboard. + * + * This function returns an empty string if there is not enough memory left + * for a copy of the clipboard's content. + * + * \returns the clipboard text on success or an empty string on failure; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasClipboardText + * \sa SDL_SetClipboardText + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetClipboardText(void); + +/** + * Query whether the clipboard exists and contains a non-empty text string. + * + * \returns true if the clipboard has text, or false if it does not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetClipboardText + * \sa SDL_SetClipboardText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasClipboardText(void); + +/** + * Put UTF-8 text into the primary selection. + * + * \param text the text to store in the primary selection. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPrimarySelectionText + * \sa SDL_HasPrimarySelectionText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPrimarySelectionText(const char *text); + +/** + * Get UTF-8 text from the primary selection. + * + * This function returns an empty string if there is not enough memory left + * for a copy of the primary selection's content. + * + * \returns the primary selection text on success or an empty string on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasPrimarySelectionText + * \sa SDL_SetPrimarySelectionText + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetPrimarySelectionText(void); + +/** + * Query whether the primary selection exists and contains a non-empty text + * string. + * + * \returns true if the primary selection has text, or false if it does not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPrimarySelectionText + * \sa SDL_SetPrimarySelectionText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasPrimarySelectionText(void); + +/** + * Callback function that will be called when data for the specified mime-type + * is requested by the OS. + * + * The callback function is called with NULL as the mime_type when the + * clipboard is cleared or new data is set. The clipboard is automatically + * cleared in SDL_Quit(). + * + * \param userdata a pointer to the provided user data. + * \param mime_type the requested mime-type. + * \param size a pointer filled in with the length of the returned data. + * \returns a pointer to the data for the provided mime-type. Returning NULL + * or setting the length to 0 will cause no data to be sent to the + * "receiver". It is up to the receiver to handle this. Essentially + * returning no data is more or less undefined behavior and may cause + * breakage in receiving applications. The returned data will not be + * freed, so it needs to be retained and dealt with internally. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +typedef const void *(SDLCALL *SDL_ClipboardDataCallback)(void *userdata, const char *mime_type, size_t *size); + +/** + * Callback function that will be called when the clipboard is cleared, or when new + * data is set. + * + * \param userdata a pointer to the provided user data. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +typedef void (SDLCALL *SDL_ClipboardCleanupCallback)(void *userdata); + +/** + * Offer clipboard data to the OS. + * + * Tell the operating system that the application is offering clipboard data + * for each of the provided mime-types. Once another application requests the + * data the callback function will be called, allowing it to generate and + * respond with the data for the requested mime-type. + * + * The size of text data does not include any terminator, and the text does + * not need to be null-terminated (e.g., you can directly copy a portion of a + * document). + * + * \param callback a function pointer to the function that provides the + * clipboard data. + * \param cleanup a function pointer to the function that cleans up the + * clipboard data. + * \param userdata an opaque pointer that will be forwarded to the callbacks. + * \param mime_types a list of mime-types that are being offered. SDL copies the given list. + * \param num_mime_types the number of mime-types in the mime_types list. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearClipboardData + * \sa SDL_GetClipboardData + * \sa SDL_HasClipboardData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetClipboardData(SDL_ClipboardDataCallback callback, SDL_ClipboardCleanupCallback cleanup, void *userdata, const char **mime_types, size_t num_mime_types); + +/** + * Clear the clipboard data. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearClipboardData(void); + +/** + * Get the data from the clipboard for a given mime type. + * + * The size of text data does not include the terminator, but the text is + * guaranteed to be null-terminated. + * + * \param mime_type the mime type to read from the clipboard. + * \param size a pointer filled in with the length of the returned data. + * \returns the retrieved data buffer or NULL on failure; call SDL_GetError() + * for more information. This should be freed with SDL_free() when it + * is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasClipboardData + * \sa SDL_SetClipboardData + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetClipboardData(const char *mime_type, size_t *size); + +/** + * Query whether there is data in the clipboard for the provided mime type. + * + * \param mime_type the mime type to check for data. + * \returns true if data exists in the clipboard for the provided mime type, + * false if it does not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + * \sa SDL_GetClipboardData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasClipboardData(const char *mime_type); + +/** + * Retrieve the list of mime types available in the clipboard. + * + * \param num_mime_types a pointer filled with the number of mime types, may + * be NULL. + * \returns a null-terminated array of strings with mime types, or NULL on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GetClipboardMimeTypes(size_t *num_mime_types); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_clipboard_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_close_code.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_close_code.h new file mode 100644 index 0000000..da1dea7 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_close_code.h @@ -0,0 +1,41 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This file reverses the effects of SDL_begin_code.h and should be included + * after you finish any function and structure declarations in your headers. + * + * SDL's headers use this; applications generally should not include this + * header directly. + */ + +#ifndef SDL_begin_code_h +#error SDL_close_code.h included without matching SDL_begin_code.h +#endif +#undef SDL_begin_code_h + +/* Reset structure packing at previous byte alignment */ +#if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__) +#ifdef __BORLANDC__ +#pragma nopackwarning +#endif +#pragma pack(pop) +#endif /* Compiler needs structure packing set */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_copying.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_copying.h new file mode 100644 index 0000000..747bd35 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_copying.h @@ -0,0 +1,22 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* Header file containing SDL's license. */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_cpuinfo.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_cpuinfo.h new file mode 100644 index 0000000..1745bd9 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_cpuinfo.h @@ -0,0 +1,353 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: CPUInfo */ + +/** + * # CategoryCPUInfo + * + * CPU feature detection for SDL. + * + * These functions are largely concerned with reporting if the system has + * access to various SIMD instruction sets, but also has other important info + * to share, such as system RAM size and number of logical CPU cores. + * + * CPU instruction set checks, like SDL_HasSSE() and SDL_HasNEON(), are + * available on all platforms, even if they don't make sense (an ARM processor + * will never have SSE and an x86 processor will never have NEON, for example, + * but these functions still exist and will simply return false in these + * cases). + */ + +#ifndef SDL_cpuinfo_h_ +#define SDL_cpuinfo_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A guess for the cacheline size used for padding. + * + * Most x86 processors have a 64 byte cache line. The 64-bit PowerPC + * processors have a 128 byte cache line. We use the larger value to be + * generally safe. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CACHELINE_SIZE 128 + +/** + * Get the number of logical CPU cores available. + * + * \returns the total number of logical CPU cores. On CPUs that include + * technologies such as hyperthreading, the number of logical cores + * may be more than the number of physical cores. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumLogicalCPUCores(void); + +/** + * Determine the L1 cache line size of the CPU. + * + * This is useful for determining multi-threaded structure padding or SIMD + * prefetch sizes. + * + * \returns the L1 cache line size of the CPU, in bytes. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetCPUCacheLineSize(void); + +/** + * Determine whether the CPU has AltiVec features. + * + * This always returns false on CPUs that aren't using PowerPC instruction + * sets. + * + * \returns true if the CPU has AltiVec features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAltiVec(void); + +/** + * Determine whether the CPU has MMX features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has MMX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasMMX(void); + +/** + * Determine whether the CPU has SSE features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE41 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE(void); + +/** + * Determine whether the CPU has SSE2 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE2 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE41 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE2(void); + +/** + * Determine whether the CPU has SSE3 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE3 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE41 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE3(void); + +/** + * Determine whether the CPU has SSE4.1 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE4.1 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE41(void); + +/** + * Determine whether the CPU has SSE4.2 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE4.2 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE41 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE42(void); + +/** + * Determine whether the CPU has AVX features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has AVX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasAVX2 + * \sa SDL_HasAVX512F + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAVX(void); + +/** + * Determine whether the CPU has AVX2 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has AVX2 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasAVX + * \sa SDL_HasAVX512F + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAVX2(void); + +/** + * Determine whether the CPU has AVX-512F (foundation) features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has AVX-512F features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasAVX + * \sa SDL_HasAVX2 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAVX512F(void); + +/** + * Determine whether the CPU has ARM SIMD (ARMv6) features. + * + * This is different from ARM NEON, which is a different instruction set. + * + * This always returns false on CPUs that aren't using ARM instruction sets. + * + * \returns true if the CPU has ARM SIMD features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasNEON + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasARMSIMD(void); + +/** + * Determine whether the CPU has NEON (ARM SIMD) features. + * + * This always returns false on CPUs that aren't using ARM instruction sets. + * + * \returns true if the CPU has ARM NEON features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasNEON(void); + +/** + * Determine whether the CPU has LSX (LOONGARCH SIMD) features. + * + * This always returns false on CPUs that aren't using LOONGARCH instruction + * sets. + * + * \returns true if the CPU has LOONGARCH LSX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasLSX(void); + +/** + * Determine whether the CPU has LASX (LOONGARCH SIMD) features. + * + * This always returns false on CPUs that aren't using LOONGARCH instruction + * sets. + * + * \returns true if the CPU has LOONGARCH LASX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasLASX(void); + +/** + * Get the amount of RAM configured in the system. + * + * \returns the amount of RAM configured in the system in MiB. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSystemRAM(void); + +/** + * Report the alignment this system needs for SIMD allocations. + * + * This will return the minimum number of bytes to which a pointer must be + * aligned to be compatible with SIMD instructions on the current machine. For + * example, if the machine supports SSE only, it will return 16, but if it + * supports AVX-512F, it'll return 64 (etc). This only reports values for + * instruction sets SDL knows about, so if your SDL build doesn't have + * SDL_HasAVX512F(), then it might return 16 for the SSE support it sees and + * not 64 for the AVX-512 instructions that exist but SDL doesn't know about. + * Plan accordingly. + * + * \returns the alignment in bytes needed for available, known SIMD + * instructions. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_aligned_alloc + * \sa SDL_aligned_free + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_GetSIMDAlignment(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_cpuinfo_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_dialog.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_dialog.h new file mode 100644 index 0000000..ddb9e24 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_dialog.h @@ -0,0 +1,341 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryDialog + * + * File dialog support. + * + * SDL offers file dialogs, to let users select files with native GUI + * interfaces. There are "open" dialogs, "save" dialogs, and folder selection + * dialogs. The app can control some details, such as filtering to specific + * files, or whether multiple files can be selected by the user. + * + * Note that launching a file dialog is a non-blocking operation; control + * returns to the app immediately, and a callback is called later (possibly in + * another thread) when the user makes a choice. + */ + +#ifndef SDL_dialog_h_ +#define SDL_dialog_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An entry for filters for file dialogs. + * + * `name` is a user-readable label for the filter (for example, "Office + * document"). + * + * `pattern` is a semicolon-separated list of file extensions (for example, + * "doc;docx"). File extensions may only contain alphanumeric characters, + * hyphens, underscores and periods. Alternatively, the whole string can be a + * single asterisk ("*"), which serves as an "All files" filter. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +typedef struct SDL_DialogFileFilter +{ + const char *name; + const char *pattern; +} SDL_DialogFileFilter; + +/** + * Callback used by file dialog functions. + * + * The specific usage is described in each function. + * + * If `filelist` is: + * + * - NULL, an error occurred. Details can be obtained with SDL_GetError(). + * - A pointer to NULL, the user either didn't choose any file or canceled the + * dialog. + * - A pointer to non-`NULL`, the user chose one or more files. The argument + * is a null-terminated array of pointers to UTF-8 encoded strings, each + * containing a path. + * + * The filelist argument should not be freed; it will automatically be freed + * when the callback returns. + * + * The filter argument is the index of the filter that was selected, or -1 if + * no filter was selected or if the platform or method doesn't support + * fetching the selected filter. + * + * In Android, the `filelist` are `content://` URIs. They should be opened + * using SDL_IOFromFile() with appropriate modes. This applies both to open + * and save file dialog. + * + * \param userdata an app-provided pointer, for the callback's use. + * \param filelist the file(s) chosen by the user. + * \param filter index of the selected filter. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_DialogFileFilter + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +typedef void (SDLCALL *SDL_DialogFileCallback)(void *userdata, const char * const *filelist, int filter); + +/** + * Displays a dialog that lets the user select a file on their filesystem. + * + * This is an asynchronous function; it will return immediately, and the + * result will be passed to the callback. + * + * The callback will be invoked with a null-terminated list of files the user + * chose. The list will be empty if the user canceled the dialog, and it will + * be NULL if an error occurred. + * + * Note that the callback may be called from a different thread than the one + * the function was invoked on. + * + * Depending on the platform, the user may be allowed to input paths that + * don't yet exist. + * + * On Linux, dialogs may require XDG Portals, which requires DBus, which + * requires an event-handling loop. Apps that do not use SDL to handle events + * should add a call to SDL_PumpEvents in their main loop. + * + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param window the window that the dialog should be modal for, may be NULL. + * Not all platforms support this option. + * \param filters a list of filters, may be NULL. Not all platforms support + * this option, and platforms that do support it may allow the + * user to ignore the filters. If non-NULL, it must remain + * valid at least until the callback is invoked. + * \param nfilters the number of filters. Ignored if filters is NULL. + * \param default_location the default folder or file to start the dialog at, + * may be NULL. Not all platforms support this option. + * \param allow_many if non-zero, the user will be allowed to select multiple + * entries. Not all platforms support this option. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_DialogFileFilter + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowOpenFileDialog(SDL_DialogFileCallback callback, void *userdata, SDL_Window *window, const SDL_DialogFileFilter *filters, int nfilters, const char *default_location, bool allow_many); + +/** + * Displays a dialog that lets the user choose a new or existing file on their + * filesystem. + * + * This is an asynchronous function; it will return immediately, and the + * result will be passed to the callback. + * + * The callback will be invoked with a null-terminated list of files the user + * chose. The list will be empty if the user canceled the dialog, and it will + * be NULL if an error occurred. + * + * Note that the callback may be called from a different thread than the one + * the function was invoked on. + * + * The chosen file may or may not already exist. + * + * On Linux, dialogs may require XDG Portals, which requires DBus, which + * requires an event-handling loop. Apps that do not use SDL to handle events + * should add a call to SDL_PumpEvents in their main loop. + * + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param window the window that the dialog should be modal for, may be NULL. + * Not all platforms support this option. + * \param filters a list of filters, may be NULL. Not all platforms support + * this option, and platforms that do support it may allow the + * user to ignore the filters. If non-NULL, it must remain + * valid at least until the callback is invoked. + * \param nfilters the number of filters. Ignored if filters is NULL. + * \param default_location the default folder or file to start the dialog at, + * may be NULL. Not all platforms support this option. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_DialogFileFilter + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowSaveFileDialog(SDL_DialogFileCallback callback, void *userdata, SDL_Window *window, const SDL_DialogFileFilter *filters, int nfilters, const char *default_location); + +/** + * Displays a dialog that lets the user select a folder on their filesystem. + * + * This is an asynchronous function; it will return immediately, and the + * result will be passed to the callback. + * + * The callback will be invoked with a null-terminated list of files the user + * chose. The list will be empty if the user canceled the dialog, and it will + * be NULL if an error occurred. + * + * Note that the callback may be called from a different thread than the one + * the function was invoked on. + * + * Depending on the platform, the user may be allowed to input paths that + * don't yet exist. + * + * On Linux, dialogs may require XDG Portals, which requires DBus, which + * requires an event-handling loop. Apps that do not use SDL to handle events + * should add a call to SDL_PumpEvents in their main loop. + * + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param window the window that the dialog should be modal for, may be NULL. + * Not all platforms support this option. + * \param default_location the default folder or file to start the dialog at, + * may be NULL. Not all platforms support this option. + * \param allow_many if non-zero, the user will be allowed to select multiple + * entries. Not all platforms support this option. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowFileDialogWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowOpenFolderDialog(SDL_DialogFileCallback callback, void *userdata, SDL_Window *window, const char *default_location, bool allow_many); + +/** + * Various types of file dialogs. + * + * This is used by SDL_ShowFileDialogWithProperties() to decide what kind of + * dialog to present to the user. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_ShowFileDialogWithProperties + */ +typedef enum SDL_FileDialogType +{ + SDL_FILEDIALOG_OPENFILE, + SDL_FILEDIALOG_SAVEFILE, + SDL_FILEDIALOG_OPENFOLDER +} SDL_FileDialogType; + +/** + * Create and launch a file dialog with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_FILE_DIALOG_FILTERS_POINTER`: a pointer to a list of + * SDL_DialogFileFilter structs, which will be used as filters for + * file-based selections. Ignored if the dialog is an "Open Folder" dialog. + * If non-NULL, the array of filters must remain valid at least until the + * callback is invoked. + * - `SDL_PROP_FILE_DIALOG_NFILTERS_NUMBER`: the number of filters in the + * array of filters, if it exists. + * - `SDL_PROP_FILE_DIALOG_WINDOW_POINTER`: the window that the dialog should + * be modal for. + * - `SDL_PROP_FILE_DIALOG_LOCATION_STRING`: the default folder or file to + * start the dialog at. + * - `SDL_PROP_FILE_DIALOG_MANY_BOOLEAN`: true to allow the user to select + * more than one entry. + * - `SDL_PROP_FILE_DIALOG_TITLE_STRING`: the title for the dialog. + * - `SDL_PROP_FILE_DIALOG_ACCEPT_STRING`: the label that the accept button + * should have. + * - `SDL_PROP_FILE_DIALOG_CANCEL_STRING`: the label that the cancel button + * should have. + * + * Note that each platform may or may not support any of the properties. + * + * \param type the type of file dialog. + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param props the properties to use. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FileDialogType + * \sa SDL_DialogFileCallback + * \sa SDL_DialogFileFilter + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowFileDialogWithProperties(SDL_FileDialogType type, SDL_DialogFileCallback callback, void *userdata, SDL_PropertiesID props); + +#define SDL_PROP_FILE_DIALOG_FILTERS_POINTER "SDL.filedialog.filters" +#define SDL_PROP_FILE_DIALOG_NFILTERS_NUMBER "SDL.filedialog.nfilters" +#define SDL_PROP_FILE_DIALOG_WINDOW_POINTER "SDL.filedialog.window" +#define SDL_PROP_FILE_DIALOG_LOCATION_STRING "SDL.filedialog.location" +#define SDL_PROP_FILE_DIALOG_MANY_BOOLEAN "SDL.filedialog.many" +#define SDL_PROP_FILE_DIALOG_TITLE_STRING "SDL.filedialog.title" +#define SDL_PROP_FILE_DIALOG_ACCEPT_STRING "SDL.filedialog.accept" +#define SDL_PROP_FILE_DIALOG_CANCEL_STRING "SDL.filedialog.cancel" + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_dialog_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_egl.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_egl.h new file mode 100644 index 0000000..65d4e96 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_egl.h @@ -0,0 +1,2355 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the EGL API headers. + */ + +#include + +#if !defined(_MSC_VER) && !defined(SDL_PLATFORM_ANDROID) && !defined(SDL_USE_BUILTIN_OPENGL_DEFINITIONS) + +#if defined(SDL_PLATFORM_VITA) +#include +#include +#include +#endif + +#include +#include + +#else /* _MSC_VER */ + +/* EGL headers for Visual Studio */ + +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ + + +#ifndef __eglplatform_h_ +#define __eglplatform_h_ + +/* +** Copyright 2007-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +*/ + +/* Platform-specific types and definitions for egl.h + * + * Adopters may modify khrplatform.h and this file to suit their platform. + * You are encouraged to submit all modifications to the Khronos group so that + * they can be included in future versions of this file. Please submit changes + * by filing an issue or pull request on the public Khronos EGL Registry, at + * https://www.github.com/KhronosGroup/EGL-Registry/ + */ + +/*#include */ + +/* Macros used in EGL function prototype declarations. + * + * EGL functions should be prototyped as: + * + * EGLAPI return-type EGLAPIENTRY eglFunction(arguments); + * typedef return-type (EXPAPIENTRYP PFNEGLFUNCTIONPROC) (arguments); + * + * KHRONOS_APICALL and KHRONOS_APIENTRY are defined in KHR/khrplatform.h + */ + +#ifndef EGLAPI +#define EGLAPI KHRONOS_APICALL +#endif + +#ifndef EGLAPIENTRY +#define EGLAPIENTRY KHRONOS_APIENTRY +#endif +#define EGLAPIENTRYP EGLAPIENTRY* + +/* The types NativeDisplayType, NativeWindowType, and NativePixmapType + * are aliases of window-system-dependent types, such as X Display * or + * Windows Device Context. They must be defined in platform-specific + * code below. The EGL-prefixed versions of Native*Type are the same + * types, renamed in EGL 1.3 so all types in the API start with "EGL". + * + * Khronos STRONGLY RECOMMENDS that you use the default definitions + * provided below, since these changes affect both binary and source + * portability of applications using EGL running on different EGL + * implementations. + */ + +#if defined(EGL_NO_PLATFORM_SPECIFIC_TYPES) + +typedef void *EGLNativeDisplayType; +typedef void *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(_WIN32) || defined(__VC32__) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) /* Win32 and WinCE */ +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN 1 +#endif +#include + +typedef HDC EGLNativeDisplayType; +typedef HBITMAP EGLNativePixmapType; +typedef HWND EGLNativeWindowType; + +#elif defined(SDL_PLATFORM_EMSCRIPTEN) + +typedef int EGLNativeDisplayType; +typedef int EGLNativePixmapType; +typedef int EGLNativeWindowType; + +#elif defined(__WINSCW__) || defined(__SYMBIAN32__) /* Symbian */ + +typedef int EGLNativeDisplayType; +typedef void *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(WL_EGL_PLATFORM) + +typedef struct wl_display *EGLNativeDisplayType; +typedef struct wl_egl_pixmap *EGLNativePixmapType; +typedef struct wl_egl_window *EGLNativeWindowType; + +#elif defined(__GBM__) + +typedef struct gbm_device *EGLNativeDisplayType; +typedef struct gbm_bo *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(__ANDROID__) || defined(ANDROID) + +struct ANativeWindow; +struct egl_native_pixmap_t; + +typedef void* EGLNativeDisplayType; +typedef struct egl_native_pixmap_t* EGLNativePixmapType; +typedef struct ANativeWindow* EGLNativeWindowType; + +#elif defined(USE_OZONE) + +typedef intptr_t EGLNativeDisplayType; +typedef intptr_t EGLNativePixmapType; +typedef intptr_t EGLNativeWindowType; + +#elif defined(USE_X11) + +/* X11 (tentative) */ +#include +#include + +typedef Display *EGLNativeDisplayType; +typedef Pixmap EGLNativePixmapType; +typedef Window EGLNativeWindowType; + +#elif defined(__unix__) + +typedef void *EGLNativeDisplayType; +typedef khronos_uintptr_t EGLNativePixmapType; +typedef khronos_uintptr_t EGLNativeWindowType; + +#elif defined(__APPLE__) + +typedef int EGLNativeDisplayType; +typedef void *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(__HAIKU__) + +#include + +typedef void *EGLNativeDisplayType; +typedef khronos_uintptr_t EGLNativePixmapType; +typedef khronos_uintptr_t EGLNativeWindowType; + +#elif defined(__Fuchsia__) + +typedef void *EGLNativeDisplayType; +typedef khronos_uintptr_t EGLNativePixmapType; +typedef khronos_uintptr_t EGLNativeWindowType; + +#else +#error "Platform not recognized" +#endif + +/* EGL 1.2 types, renamed for consistency in EGL 1.3 */ +typedef EGLNativeDisplayType NativeDisplayType; +typedef EGLNativePixmapType NativePixmapType; +typedef EGLNativeWindowType NativeWindowType; + + +/* Define EGLint. This must be a signed integral type large enough to contain + * all legal attribute names and values passed into and out of EGL, whether + * their type is boolean, bitmask, enumerant (symbolic constant), integer, + * handle, or other. While in general a 32-bit integer will suffice, if + * handles are 64 bit types, then EGLint should be defined as a signed 64-bit + * integer type. + */ +typedef khronos_int32_t EGLint; + + +/* C++ / C typecast macros for special EGL handle values */ +#if defined(__cplusplus) +#define EGL_CAST(type, value) (static_cast(value)) +#else +#define EGL_CAST(type, value) ((type) (value)) +#endif + +#endif /* __eglplatform_h */ + + +#ifndef __egl_h_ +#define __egl_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +** +** This header is generated from the Khronos EGL XML API Registry. +** The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** http://www.khronos.org/registry/egl +** +** Khronos $Git commit SHA1: 6fb1daea15 $ on $Git commit date: 2022-05-25 09:41:13 -0600 $ +*/ + +/*#include */ + +#ifndef EGL_EGL_PROTOTYPES +#define EGL_EGL_PROTOTYPES 1 +#endif + +/* Generated on date 20220525 */ + +/* Generated C header for: + * API: egl + * Versions considered: .* + * Versions emitted: .* + * Default extensions included: None + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef EGL_VERSION_1_0 +#define EGL_VERSION_1_0 1 +typedef unsigned int EGLBoolean; +typedef void *EGLDisplay; +/*#include */ +/*#include */ +typedef void *EGLConfig; +typedef void *EGLSurface; +typedef void *EGLContext; +typedef void (*__eglMustCastToProperFunctionPointerType)(void); +#define EGL_ALPHA_SIZE 0x3021 +#define EGL_BAD_ACCESS 0x3002 +#define EGL_BAD_ALLOC 0x3003 +#define EGL_BAD_ATTRIBUTE 0x3004 +#define EGL_BAD_CONFIG 0x3005 +#define EGL_BAD_CONTEXT 0x3006 +#define EGL_BAD_CURRENT_SURFACE 0x3007 +#define EGL_BAD_DISPLAY 0x3008 +#define EGL_BAD_MATCH 0x3009 +#define EGL_BAD_NATIVE_PIXMAP 0x300A +#define EGL_BAD_NATIVE_WINDOW 0x300B +#define EGL_BAD_PARAMETER 0x300C +#define EGL_BAD_SURFACE 0x300D +#define EGL_BLUE_SIZE 0x3022 +#define EGL_BUFFER_SIZE 0x3020 +#define EGL_CONFIG_CAVEAT 0x3027 +#define EGL_CONFIG_ID 0x3028 +#define EGL_CORE_NATIVE_ENGINE 0x305B +#define EGL_DEPTH_SIZE 0x3025 +#define EGL_DONT_CARE EGL_CAST(EGLint,-1) +#define EGL_DRAW 0x3059 +#define EGL_EXTENSIONS 0x3055 +#define EGL_FALSE 0 +#define EGL_GREEN_SIZE 0x3023 +#define EGL_HEIGHT 0x3056 +#define EGL_LARGEST_PBUFFER 0x3058 +#define EGL_LEVEL 0x3029 +#define EGL_MAX_PBUFFER_HEIGHT 0x302A +#define EGL_MAX_PBUFFER_PIXELS 0x302B +#define EGL_MAX_PBUFFER_WIDTH 0x302C +#define EGL_NATIVE_RENDERABLE 0x302D +#define EGL_NATIVE_VISUAL_ID 0x302E +#define EGL_NATIVE_VISUAL_TYPE 0x302F +#define EGL_NONE 0x3038 +#define EGL_NON_CONFORMANT_CONFIG 0x3051 +#define EGL_NOT_INITIALIZED 0x3001 +#define EGL_NO_CONTEXT EGL_CAST(EGLContext,0) +#define EGL_NO_DISPLAY EGL_CAST(EGLDisplay,0) +#define EGL_NO_SURFACE EGL_CAST(EGLSurface,0) +#define EGL_PBUFFER_BIT 0x0001 +#define EGL_PIXMAP_BIT 0x0002 +#define EGL_READ 0x305A +#define EGL_RED_SIZE 0x3024 +#define EGL_SAMPLES 0x3031 +#define EGL_SAMPLE_BUFFERS 0x3032 +#define EGL_SLOW_CONFIG 0x3050 +#define EGL_STENCIL_SIZE 0x3026 +#define EGL_SUCCESS 0x3000 +#define EGL_SURFACE_TYPE 0x3033 +#define EGL_TRANSPARENT_BLUE_VALUE 0x3035 +#define EGL_TRANSPARENT_GREEN_VALUE 0x3036 +#define EGL_TRANSPARENT_RED_VALUE 0x3037 +#define EGL_TRANSPARENT_RGB 0x3052 +#define EGL_TRANSPARENT_TYPE 0x3034 +#define EGL_TRUE 1 +#define EGL_VENDOR 0x3053 +#define EGL_VERSION 0x3054 +#define EGL_WIDTH 0x3057 +#define EGL_WINDOW_BIT 0x0004 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCHOOSECONFIGPROC) (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOPYBUFFERSPROC) (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target); +typedef EGLContext (EGLAPIENTRYP PFNEGLCREATECONTEXTPROC) (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPBUFFERSURFACEPROC) (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPIXMAPSURFACEPROC) (EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEWINDOWSURFACEPROC) (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSURFACEPROC) (EGLDisplay dpy, EGLSurface surface); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCONFIGATTRIBPROC) (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCONFIGSPROC) (EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config); +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETCURRENTDISPLAYPROC) (void); +typedef EGLSurface (EGLAPIENTRYP PFNEGLGETCURRENTSURFACEPROC) (EGLint readdraw); +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETDISPLAYPROC) (EGLNativeDisplayType display_id); +typedef EGLint (EGLAPIENTRYP PFNEGLGETERRORPROC) (void); +typedef __eglMustCastToProperFunctionPointerType (EGLAPIENTRYP PFNEGLGETPROCADDRESSPROC) (const char *procname); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLINITIALIZEPROC) (EGLDisplay dpy, EGLint *major, EGLint *minor); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLMAKECURRENTPROC) (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYSTRINGPROC) (EGLDisplay dpy, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSPROC) (EGLDisplay dpy, EGLSurface surface); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLTERMINATEPROC) (EGLDisplay dpy); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITGLPROC) (void); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITNATIVEPROC) (EGLint engine); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config); +EGLAPI EGLBoolean EGLAPIENTRY eglCopyBuffers (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target); +EGLAPI EGLContext EGLAPIENTRY eglCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurface (EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface (EGLDisplay dpy, EGLSurface surface); +EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigAttrib (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value); +EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigs (EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config); +EGLAPI EGLDisplay EGLAPIENTRY eglGetCurrentDisplay (void); +EGLAPI EGLSurface EGLAPIENTRY eglGetCurrentSurface (EGLint readdraw); +EGLAPI EGLDisplay EGLAPIENTRY eglGetDisplay (EGLNativeDisplayType display_id); +EGLAPI EGLint EGLAPIENTRY eglGetError (void); +EGLAPI __eglMustCastToProperFunctionPointerType EGLAPIENTRY eglGetProcAddress (const char *procname); +EGLAPI EGLBoolean EGLAPIENTRY eglInitialize (EGLDisplay dpy, EGLint *major, EGLint *minor); +EGLAPI EGLBoolean EGLAPIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value); +EGLAPI const char *EGLAPIENTRY eglQueryString (EGLDisplay dpy, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value); +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffers (EGLDisplay dpy, EGLSurface surface); +EGLAPI EGLBoolean EGLAPIENTRY eglTerminate (EGLDisplay dpy); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitGL (void); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitNative (EGLint engine); +#endif +#endif /* EGL_VERSION_1_0 */ + +#ifndef EGL_VERSION_1_1 +#define EGL_VERSION_1_1 1 +#define EGL_BACK_BUFFER 0x3084 +#define EGL_BIND_TO_TEXTURE_RGB 0x3039 +#define EGL_BIND_TO_TEXTURE_RGBA 0x303A +#define EGL_CONTEXT_LOST 0x300E +#define EGL_MIN_SWAP_INTERVAL 0x303B +#define EGL_MAX_SWAP_INTERVAL 0x303C +#define EGL_MIPMAP_TEXTURE 0x3082 +#define EGL_MIPMAP_LEVEL 0x3083 +#define EGL_NO_TEXTURE 0x305C +#define EGL_TEXTURE_2D 0x305F +#define EGL_TEXTURE_FORMAT 0x3080 +#define EGL_TEXTURE_RGB 0x305D +#define EGL_TEXTURE_RGBA 0x305E +#define EGL_TEXTURE_TARGET 0x3081 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDTEXIMAGEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLRELEASETEXIMAGEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSURFACEATTRIBPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPINTERVALPROC) (EGLDisplay dpy, EGLint interval); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +EGLAPI EGLBoolean EGLAPIENTRY eglReleaseTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +EGLAPI EGLBoolean EGLAPIENTRY eglSurfaceAttrib (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value); +EGLAPI EGLBoolean EGLAPIENTRY eglSwapInterval (EGLDisplay dpy, EGLint interval); +#endif +#endif /* EGL_VERSION_1_1 */ + +#ifndef EGL_VERSION_1_2 +#define EGL_VERSION_1_2 1 +typedef unsigned int EGLenum; +typedef void *EGLClientBuffer; +#define EGL_ALPHA_FORMAT 0x3088 +#define EGL_ALPHA_FORMAT_NONPRE 0x308B +#define EGL_ALPHA_FORMAT_PRE 0x308C +#define EGL_ALPHA_MASK_SIZE 0x303E +#define EGL_BUFFER_PRESERVED 0x3094 +#define EGL_BUFFER_DESTROYED 0x3095 +#define EGL_CLIENT_APIS 0x308D +#define EGL_COLORSPACE 0x3087 +#define EGL_COLORSPACE_sRGB 0x3089 +#define EGL_COLORSPACE_LINEAR 0x308A +#define EGL_COLOR_BUFFER_TYPE 0x303F +#define EGL_CONTEXT_CLIENT_TYPE 0x3097 +#define EGL_DISPLAY_SCALING 10000 +#define EGL_HORIZONTAL_RESOLUTION 0x3090 +#define EGL_LUMINANCE_BUFFER 0x308F +#define EGL_LUMINANCE_SIZE 0x303D +#define EGL_OPENGL_ES_BIT 0x0001 +#define EGL_OPENVG_BIT 0x0002 +#define EGL_OPENGL_ES_API 0x30A0 +#define EGL_OPENVG_API 0x30A1 +#define EGL_OPENVG_IMAGE 0x3096 +#define EGL_PIXEL_ASPECT_RATIO 0x3092 +#define EGL_RENDERABLE_TYPE 0x3040 +#define EGL_RENDER_BUFFER 0x3086 +#define EGL_RGB_BUFFER 0x308E +#define EGL_SINGLE_BUFFER 0x3085 +#define EGL_SWAP_BEHAVIOR 0x3093 +#define EGL_UNKNOWN EGL_CAST(EGLint,-1) +#define EGL_VERTICAL_RESOLUTION 0x3091 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDAPIPROC) (EGLenum api); +typedef EGLenum (EGLAPIENTRYP PFNEGLQUERYAPIPROC) (void); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPBUFFERFROMCLIENTBUFFERPROC) (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLRELEASETHREADPROC) (void); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITCLIENTPROC) (void); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglBindAPI (EGLenum api); +EGLAPI EGLenum EGLAPIENTRY eglQueryAPI (void); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferFromClientBuffer (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglReleaseThread (void); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitClient (void); +#endif +#endif /* EGL_VERSION_1_2 */ + +#ifndef EGL_VERSION_1_3 +#define EGL_VERSION_1_3 1 +#define EGL_CONFORMANT 0x3042 +#define EGL_CONTEXT_CLIENT_VERSION 0x3098 +#define EGL_MATCH_NATIVE_PIXMAP 0x3041 +#define EGL_OPENGL_ES2_BIT 0x0004 +#define EGL_VG_ALPHA_FORMAT 0x3088 +#define EGL_VG_ALPHA_FORMAT_NONPRE 0x308B +#define EGL_VG_ALPHA_FORMAT_PRE 0x308C +#define EGL_VG_ALPHA_FORMAT_PRE_BIT 0x0040 +#define EGL_VG_COLORSPACE 0x3087 +#define EGL_VG_COLORSPACE_sRGB 0x3089 +#define EGL_VG_COLORSPACE_LINEAR 0x308A +#define EGL_VG_COLORSPACE_LINEAR_BIT 0x0020 +#endif /* EGL_VERSION_1_3 */ + +#ifndef EGL_VERSION_1_4 +#define EGL_VERSION_1_4 1 +#define EGL_DEFAULT_DISPLAY EGL_CAST(EGLNativeDisplayType,0) +#define EGL_MULTISAMPLE_RESOLVE_BOX_BIT 0x0200 +#define EGL_MULTISAMPLE_RESOLVE 0x3099 +#define EGL_MULTISAMPLE_RESOLVE_DEFAULT 0x309A +#define EGL_MULTISAMPLE_RESOLVE_BOX 0x309B +#define EGL_OPENGL_API 0x30A2 +#define EGL_OPENGL_BIT 0x0008 +#define EGL_SWAP_BEHAVIOR_PRESERVED_BIT 0x0400 +typedef EGLContext (EGLAPIENTRYP PFNEGLGETCURRENTCONTEXTPROC) (void); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLContext EGLAPIENTRY eglGetCurrentContext (void); +#endif +#endif /* EGL_VERSION_1_4 */ + +#ifndef EGL_VERSION_1_5 +#define EGL_VERSION_1_5 1 +typedef void *EGLSync; +typedef intptr_t EGLAttrib; +typedef khronos_utime_nanoseconds_t EGLTime; +typedef void *EGLImage; +#define EGL_CONTEXT_MAJOR_VERSION 0x3098 +#define EGL_CONTEXT_MINOR_VERSION 0x30FB +#define EGL_CONTEXT_OPENGL_PROFILE_MASK 0x30FD +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY 0x31BD +#define EGL_NO_RESET_NOTIFICATION 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET 0x31BF +#define EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT 0x00000001 +#define EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT 0x00000002 +#define EGL_CONTEXT_OPENGL_DEBUG 0x31B0 +#define EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE 0x31B1 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS 0x31B2 +#define EGL_OPENGL_ES3_BIT 0x00000040 +#define EGL_CL_EVENT_HANDLE 0x309C +#define EGL_SYNC_CL_EVENT 0x30FE +#define EGL_SYNC_CL_EVENT_COMPLETE 0x30FF +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE 0x30F0 +#define EGL_SYNC_TYPE 0x30F7 +#define EGL_SYNC_STATUS 0x30F1 +#define EGL_SYNC_CONDITION 0x30F8 +#define EGL_SIGNALED 0x30F2 +#define EGL_UNSIGNALED 0x30F3 +#define EGL_SYNC_FLUSH_COMMANDS_BIT 0x0001 +#define EGL_FOREVER 0xFFFFFFFFFFFFFFFFull +#define EGL_TIMEOUT_EXPIRED 0x30F5 +#define EGL_CONDITION_SATISFIED 0x30F6 +#define EGL_NO_SYNC EGL_CAST(EGLSync,0) +#define EGL_SYNC_FENCE 0x30F9 +#define EGL_GL_COLORSPACE 0x309D +#define EGL_GL_COLORSPACE_SRGB 0x3089 +#define EGL_GL_COLORSPACE_LINEAR 0x308A +#define EGL_GL_RENDERBUFFER 0x30B9 +#define EGL_GL_TEXTURE_2D 0x30B1 +#define EGL_GL_TEXTURE_LEVEL 0x30BC +#define EGL_GL_TEXTURE_3D 0x30B2 +#define EGL_GL_TEXTURE_ZOFFSET 0x30BD +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x30B3 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x30B4 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x30B5 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x30B6 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x30B7 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x30B8 +#define EGL_IMAGE_PRESERVED 0x30D2 +#define EGL_NO_IMAGE EGL_CAST(EGLImage,0) +typedef EGLSync (EGLAPIENTRYP PFNEGLCREATESYNCPROC) (EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCPROC) (EGLDisplay dpy, EGLSync sync); +typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCPROC) (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBPROC) (EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value); +typedef EGLImage (EGLAPIENTRYP PFNEGLCREATEIMAGEPROC) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYIMAGEPROC) (EGLDisplay dpy, EGLImage image); +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETPLATFORMDISPLAYPROC) (EGLenum platform, void *native_display, const EGLAttrib *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMWINDOWSURFACEPROC) (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLAttrib *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMPIXMAPSURFACEPROC) (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITSYNCPROC) (EGLDisplay dpy, EGLSync sync, EGLint flags); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLSync EGLAPIENTRY eglCreateSync (EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySync (EGLDisplay dpy, EGLSync sync); +EGLAPI EGLint EGLAPIENTRY eglClientWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout); +EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttrib (EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value); +EGLAPI EGLImage EGLAPIENTRY eglCreateImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImage (EGLDisplay dpy, EGLImage image); +EGLAPI EGLDisplay EGLAPIENTRY eglGetPlatformDisplay (EGLenum platform, void *native_display, const EGLAttrib *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformWindowSurface (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLAttrib *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformPixmapSurface (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags); +#endif +#endif /* EGL_VERSION_1_5 */ + +#ifdef __cplusplus +} +#endif + +#endif /* __egl_h_ */ + + +#ifndef __eglext_h_ +#define __eglext_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +** +** This header is generated from the Khronos EGL XML API Registry. +** The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** http://www.khronos.org/registry/egl +** +** Khronos $Git commit SHA1: 6fb1daea15 $ on $Git commit date: 2022-05-25 09:41:13 -0600 $ +*/ + +/*#include */ + +#define EGL_EGLEXT_VERSION 20220525 + +/* Generated C header for: + * API: egl + * Versions considered: .* + * Versions emitted: _nomatch_^ + * Default extensions included: egl + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef EGL_KHR_cl_event +#define EGL_KHR_cl_event 1 +#define EGL_CL_EVENT_HANDLE_KHR 0x309C +#define EGL_SYNC_CL_EVENT_KHR 0x30FE +#define EGL_SYNC_CL_EVENT_COMPLETE_KHR 0x30FF +#endif /* EGL_KHR_cl_event */ + +#ifndef EGL_KHR_cl_event2 +#define EGL_KHR_cl_event2 1 +typedef void *EGLSyncKHR; +typedef intptr_t EGLAttribKHR; +typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNC64KHRPROC) (EGLDisplay dpy, EGLenum type, const EGLAttribKHR *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSync64KHR (EGLDisplay dpy, EGLenum type, const EGLAttribKHR *attrib_list); +#endif +#endif /* EGL_KHR_cl_event2 */ + +#ifndef EGL_KHR_client_get_all_proc_addresses +#define EGL_KHR_client_get_all_proc_addresses 1 +#endif /* EGL_KHR_client_get_all_proc_addresses */ + +#ifndef EGL_KHR_config_attribs +#define EGL_KHR_config_attribs 1 +#define EGL_CONFORMANT_KHR 0x3042 +#define EGL_VG_COLORSPACE_LINEAR_BIT_KHR 0x0020 +#define EGL_VG_ALPHA_FORMAT_PRE_BIT_KHR 0x0040 +#endif /* EGL_KHR_config_attribs */ + +#ifndef EGL_KHR_context_flush_control +#define EGL_KHR_context_flush_control 1 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_NONE_KHR 0 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_KHR 0x2097 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_KHR 0x2098 +#endif /* EGL_KHR_context_flush_control */ + +#ifndef EGL_KHR_create_context +#define EGL_KHR_create_context 1 +#define EGL_CONTEXT_MAJOR_VERSION_KHR 0x3098 +#define EGL_CONTEXT_MINOR_VERSION_KHR 0x30FB +#define EGL_CONTEXT_FLAGS_KHR 0x30FC +#define EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR 0x30FD +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_KHR 0x31BD +#define EGL_NO_RESET_NOTIFICATION_KHR 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET_KHR 0x31BF +#define EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR 0x00000001 +#define EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR 0x00000002 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR 0x00000004 +#define EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR 0x00000001 +#define EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT_KHR 0x00000002 +#define EGL_OPENGL_ES3_BIT_KHR 0x00000040 +#endif /* EGL_KHR_create_context */ + +#ifndef EGL_KHR_create_context_no_error +#define EGL_KHR_create_context_no_error 1 +#define EGL_CONTEXT_OPENGL_NO_ERROR_KHR 0x31B3 +#endif /* EGL_KHR_create_context_no_error */ + +#ifndef EGL_KHR_debug +#define EGL_KHR_debug 1 +typedef void *EGLLabelKHR; +typedef void *EGLObjectKHR; +typedef void (EGLAPIENTRY *EGLDEBUGPROCKHR)(EGLenum error,const char *command,EGLint messageType,EGLLabelKHR threadLabel,EGLLabelKHR objectLabel,const char* message); +#define EGL_OBJECT_THREAD_KHR 0x33B0 +#define EGL_OBJECT_DISPLAY_KHR 0x33B1 +#define EGL_OBJECT_CONTEXT_KHR 0x33B2 +#define EGL_OBJECT_SURFACE_KHR 0x33B3 +#define EGL_OBJECT_IMAGE_KHR 0x33B4 +#define EGL_OBJECT_SYNC_KHR 0x33B5 +#define EGL_OBJECT_STREAM_KHR 0x33B6 +#define EGL_DEBUG_MSG_CRITICAL_KHR 0x33B9 +#define EGL_DEBUG_MSG_ERROR_KHR 0x33BA +#define EGL_DEBUG_MSG_WARN_KHR 0x33BB +#define EGL_DEBUG_MSG_INFO_KHR 0x33BC +#define EGL_DEBUG_CALLBACK_KHR 0x33B8 +typedef EGLint (EGLAPIENTRYP PFNEGLDEBUGMESSAGECONTROLKHRPROC) (EGLDEBUGPROCKHR callback, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEBUGKHRPROC) (EGLint attribute, EGLAttrib *value); +typedef EGLint (EGLAPIENTRYP PFNEGLLABELOBJECTKHRPROC) (EGLDisplay display, EGLenum objectType, EGLObjectKHR object, EGLLabelKHR label); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLint EGLAPIENTRY eglDebugMessageControlKHR (EGLDEBUGPROCKHR callback, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDebugKHR (EGLint attribute, EGLAttrib *value); +EGLAPI EGLint EGLAPIENTRY eglLabelObjectKHR (EGLDisplay display, EGLenum objectType, EGLObjectKHR object, EGLLabelKHR label); +#endif +#endif /* EGL_KHR_debug */ + +#ifndef EGL_KHR_display_reference +#define EGL_KHR_display_reference 1 +#define EGL_TRACK_REFERENCES_KHR 0x3352 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBKHRPROC) (EGLDisplay dpy, EGLint name, EGLAttrib *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribKHR (EGLDisplay dpy, EGLint name, EGLAttrib *value); +#endif +#endif /* EGL_KHR_display_reference */ + +#ifndef EGL_KHR_fence_sync +#define EGL_KHR_fence_sync 1 +typedef khronos_utime_nanoseconds_t EGLTimeKHR; +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE_KHR 0x30F0 +#define EGL_SYNC_CONDITION_KHR 0x30F8 +#define EGL_SYNC_FENCE_KHR 0x30F9 +typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNCKHRPROC) (EGLDisplay dpy, EGLenum type, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync); +typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSyncKHR (EGLDisplay dpy, EGLenum type, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR (EGLDisplay dpy, EGLSyncKHR sync); +EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout); +EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_fence_sync */ + +#ifndef EGL_KHR_get_all_proc_addresses +#define EGL_KHR_get_all_proc_addresses 1 +#endif /* EGL_KHR_get_all_proc_addresses */ + +#ifndef EGL_KHR_gl_colorspace +#define EGL_KHR_gl_colorspace 1 +#define EGL_GL_COLORSPACE_KHR 0x309D +#define EGL_GL_COLORSPACE_SRGB_KHR 0x3089 +#define EGL_GL_COLORSPACE_LINEAR_KHR 0x308A +#endif /* EGL_KHR_gl_colorspace */ + +#ifndef EGL_KHR_gl_renderbuffer_image +#define EGL_KHR_gl_renderbuffer_image 1 +#define EGL_GL_RENDERBUFFER_KHR 0x30B9 +#endif /* EGL_KHR_gl_renderbuffer_image */ + +#ifndef EGL_KHR_gl_texture_2D_image +#define EGL_KHR_gl_texture_2D_image 1 +#define EGL_GL_TEXTURE_2D_KHR 0x30B1 +#define EGL_GL_TEXTURE_LEVEL_KHR 0x30BC +#endif /* EGL_KHR_gl_texture_2D_image */ + +#ifndef EGL_KHR_gl_texture_3D_image +#define EGL_KHR_gl_texture_3D_image 1 +#define EGL_GL_TEXTURE_3D_KHR 0x30B2 +#define EGL_GL_TEXTURE_ZOFFSET_KHR 0x30BD +#endif /* EGL_KHR_gl_texture_3D_image */ + +#ifndef EGL_KHR_gl_texture_cubemap_image +#define EGL_KHR_gl_texture_cubemap_image 1 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR 0x30B3 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X_KHR 0x30B4 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y_KHR 0x30B5 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_KHR 0x30B6 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z_KHR 0x30B7 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_KHR 0x30B8 +#endif /* EGL_KHR_gl_texture_cubemap_image */ + +#ifndef EGL_KHR_image +#define EGL_KHR_image 1 +typedef void *EGLImageKHR; +#define EGL_NATIVE_PIXMAP_KHR 0x30B0 +#define EGL_NO_IMAGE_KHR EGL_CAST(EGLImageKHR,0) +typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEIMAGEKHRPROC) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYIMAGEKHRPROC) (EGLDisplay dpy, EGLImageKHR image); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImageKHR (EGLDisplay dpy, EGLImageKHR image); +#endif +#endif /* EGL_KHR_image */ + +#ifndef EGL_KHR_image_base +#define EGL_KHR_image_base 1 +#define EGL_IMAGE_PRESERVED_KHR 0x30D2 +#endif /* EGL_KHR_image_base */ + +#ifndef EGL_KHR_image_pixmap +#define EGL_KHR_image_pixmap 1 +#endif /* EGL_KHR_image_pixmap */ + +#ifndef EGL_KHR_lock_surface +#define EGL_KHR_lock_surface 1 +#define EGL_READ_SURFACE_BIT_KHR 0x0001 +#define EGL_WRITE_SURFACE_BIT_KHR 0x0002 +#define EGL_LOCK_SURFACE_BIT_KHR 0x0080 +#define EGL_OPTIMAL_FORMAT_BIT_KHR 0x0100 +#define EGL_MATCH_FORMAT_KHR 0x3043 +#define EGL_FORMAT_RGB_565_EXACT_KHR 0x30C0 +#define EGL_FORMAT_RGB_565_KHR 0x30C1 +#define EGL_FORMAT_RGBA_8888_EXACT_KHR 0x30C2 +#define EGL_FORMAT_RGBA_8888_KHR 0x30C3 +#define EGL_MAP_PRESERVE_PIXELS_KHR 0x30C4 +#define EGL_LOCK_USAGE_HINT_KHR 0x30C5 +#define EGL_BITMAP_POINTER_KHR 0x30C6 +#define EGL_BITMAP_PITCH_KHR 0x30C7 +#define EGL_BITMAP_ORIGIN_KHR 0x30C8 +#define EGL_BITMAP_PIXEL_RED_OFFSET_KHR 0x30C9 +#define EGL_BITMAP_PIXEL_GREEN_OFFSET_KHR 0x30CA +#define EGL_BITMAP_PIXEL_BLUE_OFFSET_KHR 0x30CB +#define EGL_BITMAP_PIXEL_ALPHA_OFFSET_KHR 0x30CC +#define EGL_BITMAP_PIXEL_LUMINANCE_OFFSET_KHR 0x30CD +#define EGL_LOWER_LEFT_KHR 0x30CE +#define EGL_UPPER_LEFT_KHR 0x30CF +typedef EGLBoolean (EGLAPIENTRYP PFNEGLLOCKSURFACEKHRPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNLOCKSURFACEKHRPROC) (EGLDisplay dpy, EGLSurface surface); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglLockSurfaceKHR (EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglUnlockSurfaceKHR (EGLDisplay dpy, EGLSurface surface); +#endif +#endif /* EGL_KHR_lock_surface */ + +#ifndef EGL_KHR_lock_surface2 +#define EGL_KHR_lock_surface2 1 +#define EGL_BITMAP_PIXEL_SIZE_KHR 0x3110 +#endif /* EGL_KHR_lock_surface2 */ + +#ifndef EGL_KHR_lock_surface3 +#define EGL_KHR_lock_surface3 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACE64KHRPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLAttribKHR *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface64KHR (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLAttribKHR *value); +#endif +#endif /* EGL_KHR_lock_surface3 */ + +#ifndef EGL_KHR_mutable_render_buffer +#define EGL_KHR_mutable_render_buffer 1 +#define EGL_MUTABLE_RENDER_BUFFER_BIT_KHR 0x1000 +#endif /* EGL_KHR_mutable_render_buffer */ + +#ifndef EGL_KHR_no_config_context +#define EGL_KHR_no_config_context 1 +#define EGL_NO_CONFIG_KHR EGL_CAST(EGLConfig,0) +#endif /* EGL_KHR_no_config_context */ + +#ifndef EGL_KHR_partial_update +#define EGL_KHR_partial_update 1 +#define EGL_BUFFER_AGE_KHR 0x313D +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETDAMAGEREGIONKHRPROC) (EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSetDamageRegionKHR (EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects); +#endif +#endif /* EGL_KHR_partial_update */ + +#ifndef EGL_KHR_platform_android +#define EGL_KHR_platform_android 1 +#define EGL_PLATFORM_ANDROID_KHR 0x3141 +#endif /* EGL_KHR_platform_android */ + +#ifndef EGL_KHR_platform_gbm +#define EGL_KHR_platform_gbm 1 +#define EGL_PLATFORM_GBM_KHR 0x31D7 +#endif /* EGL_KHR_platform_gbm */ + +#ifndef EGL_KHR_platform_wayland +#define EGL_KHR_platform_wayland 1 +#define EGL_PLATFORM_WAYLAND_KHR 0x31D8 +#endif /* EGL_KHR_platform_wayland */ + +#ifndef EGL_KHR_platform_x11 +#define EGL_KHR_platform_x11 1 +#define EGL_PLATFORM_X11_KHR 0x31D5 +#define EGL_PLATFORM_X11_SCREEN_KHR 0x31D6 +#endif /* EGL_KHR_platform_x11 */ + +#ifndef EGL_KHR_reusable_sync +#define EGL_KHR_reusable_sync 1 +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_SYNC_STATUS_KHR 0x30F1 +#define EGL_SIGNALED_KHR 0x30F2 +#define EGL_UNSIGNALED_KHR 0x30F3 +#define EGL_TIMEOUT_EXPIRED_KHR 0x30F5 +#define EGL_CONDITION_SATISFIED_KHR 0x30F6 +#define EGL_SYNC_TYPE_KHR 0x30F7 +#define EGL_SYNC_REUSABLE_KHR 0x30FA +#define EGL_SYNC_FLUSH_COMMANDS_BIT_KHR 0x0001 +#define EGL_FOREVER_KHR 0xFFFFFFFFFFFFFFFFull +#define EGL_NO_SYNC_KHR EGL_CAST(EGLSyncKHR,0) +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSIGNALSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_reusable_sync */ + +#ifndef EGL_KHR_stream +#define EGL_KHR_stream 1 +typedef void *EGLStreamKHR; +typedef khronos_uint64_t EGLuint64KHR; +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_NO_STREAM_KHR EGL_CAST(EGLStreamKHR,0) +#define EGL_CONSUMER_LATENCY_USEC_KHR 0x3210 +#define EGL_PRODUCER_FRAME_KHR 0x3212 +#define EGL_CONSUMER_FRAME_KHR 0x3213 +#define EGL_STREAM_STATE_KHR 0x3214 +#define EGL_STREAM_STATE_CREATED_KHR 0x3215 +#define EGL_STREAM_STATE_CONNECTING_KHR 0x3216 +#define EGL_STREAM_STATE_EMPTY_KHR 0x3217 +#define EGL_STREAM_STATE_NEW_FRAME_AVAILABLE_KHR 0x3218 +#define EGL_STREAM_STATE_OLD_FRAME_AVAILABLE_KHR 0x3219 +#define EGL_STREAM_STATE_DISCONNECTED_KHR 0x321A +#define EGL_BAD_STREAM_KHR 0x321B +#define EGL_BAD_STATE_KHR 0x321C +typedef EGLStreamKHR (EGLAPIENTRYP PFNEGLCREATESTREAMKHRPROC) (EGLDisplay dpy, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSTREAMKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMU64KHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLuint64KHR *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLStreamKHR EGLAPIENTRY eglCreateStreamKHR (EGLDisplay dpy, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyStreamKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint *value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamu64KHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLuint64KHR *value); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_stream */ + +#ifndef EGL_KHR_stream_attrib +#define EGL_KHR_stream_attrib 1 +#ifdef KHRONOS_SUPPORT_INT64 +typedef EGLStreamKHR (EGLAPIENTRYP PFNEGLCREATESTREAMATTRIBKHRPROC) (EGLDisplay dpy, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERACQUIREATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERRELEASEATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLStreamKHR EGLAPIENTRY eglCreateStreamAttribKHR (EGLDisplay dpy, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglSetStreamAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib *value); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerAcquireAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerReleaseAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_stream_attrib */ + +#ifndef EGL_KHR_stream_consumer_gltexture +#define EGL_KHR_stream_consumer_gltexture 1 +#ifdef EGL_KHR_stream +#define EGL_CONSUMER_ACQUIRE_TIMEOUT_USEC_KHR 0x321E +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERGLTEXTUREEXTERNALKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERACQUIREKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERRELEASEKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerGLTextureExternalKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerAcquireKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerReleaseKHR (EGLDisplay dpy, EGLStreamKHR stream); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_consumer_gltexture */ + +#ifndef EGL_KHR_stream_cross_process_fd +#define EGL_KHR_stream_cross_process_fd 1 +typedef int EGLNativeFileDescriptorKHR; +#ifdef EGL_KHR_stream +#define EGL_NO_FILE_DESCRIPTOR_KHR EGL_CAST(EGLNativeFileDescriptorKHR,-1) +typedef EGLNativeFileDescriptorKHR (EGLAPIENTRYP PFNEGLGETSTREAMFILEDESCRIPTORKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLStreamKHR (EGLAPIENTRYP PFNEGLCREATESTREAMFROMFILEDESCRIPTORKHRPROC) (EGLDisplay dpy, EGLNativeFileDescriptorKHR file_descriptor); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLNativeFileDescriptorKHR EGLAPIENTRY eglGetStreamFileDescriptorKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLStreamKHR EGLAPIENTRY eglCreateStreamFromFileDescriptorKHR (EGLDisplay dpy, EGLNativeFileDescriptorKHR file_descriptor); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_cross_process_fd */ + +#ifndef EGL_KHR_stream_fifo +#define EGL_KHR_stream_fifo 1 +#ifdef EGL_KHR_stream +#define EGL_STREAM_FIFO_LENGTH_KHR 0x31FC +#define EGL_STREAM_TIME_NOW_KHR 0x31FD +#define EGL_STREAM_TIME_CONSUMER_KHR 0x31FE +#define EGL_STREAM_TIME_PRODUCER_KHR 0x31FF +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMTIMEKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLTimeKHR *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamTimeKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLTimeKHR *value); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_fifo */ + +#ifndef EGL_KHR_stream_producer_aldatalocator +#define EGL_KHR_stream_producer_aldatalocator 1 +#ifdef EGL_KHR_stream +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_producer_aldatalocator */ + +#ifndef EGL_KHR_stream_producer_eglsurface +#define EGL_KHR_stream_producer_eglsurface 1 +#ifdef EGL_KHR_stream +#define EGL_STREAM_BIT_KHR 0x0800 +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATESTREAMPRODUCERSURFACEKHRPROC) (EGLDisplay dpy, EGLConfig config, EGLStreamKHR stream, const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSurface EGLAPIENTRY eglCreateStreamProducerSurfaceKHR (EGLDisplay dpy, EGLConfig config, EGLStreamKHR stream, const EGLint *attrib_list); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_producer_eglsurface */ + +#ifndef EGL_KHR_surfaceless_context +#define EGL_KHR_surfaceless_context 1 +#endif /* EGL_KHR_surfaceless_context */ + +#ifndef EGL_KHR_swap_buffers_with_damage +#define EGL_KHR_swap_buffers_with_damage 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSWITHDAMAGEKHRPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersWithDamageKHR (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#endif +#endif /* EGL_KHR_swap_buffers_with_damage */ + +#ifndef EGL_KHR_vg_parent_image +#define EGL_KHR_vg_parent_image 1 +#define EGL_VG_PARENT_IMAGE_KHR 0x30BA +#endif /* EGL_KHR_vg_parent_image */ + +#ifndef EGL_KHR_wait_sync +#define EGL_KHR_wait_sync 1 +typedef EGLint (EGLAPIENTRYP PFNEGLWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLint EGLAPIENTRY eglWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags); +#endif +#endif /* EGL_KHR_wait_sync */ + +#ifndef EGL_ANDROID_GLES_layers +#define EGL_ANDROID_GLES_layers 1 +#endif /* EGL_ANDROID_GLES_layers */ + +#ifndef EGL_ANDROID_blob_cache +#define EGL_ANDROID_blob_cache 1 +typedef khronos_ssize_t EGLsizeiANDROID; +typedef void (*EGLSetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, const void *value, EGLsizeiANDROID valueSize); +typedef EGLsizeiANDROID (*EGLGetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, void *value, EGLsizeiANDROID valueSize); +typedef void (EGLAPIENTRYP PFNEGLSETBLOBCACHEFUNCSANDROIDPROC) (EGLDisplay dpy, EGLSetBlobFuncANDROID set, EGLGetBlobFuncANDROID get); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI void EGLAPIENTRY eglSetBlobCacheFuncsANDROID (EGLDisplay dpy, EGLSetBlobFuncANDROID set, EGLGetBlobFuncANDROID get); +#endif +#endif /* EGL_ANDROID_blob_cache */ + +#ifndef EGL_ANDROID_create_native_client_buffer +#define EGL_ANDROID_create_native_client_buffer 1 +#define EGL_NATIVE_BUFFER_USAGE_ANDROID 0x3143 +#define EGL_NATIVE_BUFFER_USAGE_PROTECTED_BIT_ANDROID 0x00000001 +#define EGL_NATIVE_BUFFER_USAGE_RENDERBUFFER_BIT_ANDROID 0x00000002 +#define EGL_NATIVE_BUFFER_USAGE_TEXTURE_BIT_ANDROID 0x00000004 +typedef EGLClientBuffer (EGLAPIENTRYP PFNEGLCREATENATIVECLIENTBUFFERANDROIDPROC) (const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLClientBuffer EGLAPIENTRY eglCreateNativeClientBufferANDROID (const EGLint *attrib_list); +#endif +#endif /* EGL_ANDROID_create_native_client_buffer */ + +#ifndef EGL_ANDROID_framebuffer_target +#define EGL_ANDROID_framebuffer_target 1 +#define EGL_FRAMEBUFFER_TARGET_ANDROID 0x3147 +#endif /* EGL_ANDROID_framebuffer_target */ + +#ifndef EGL_ANDROID_front_buffer_auto_refresh +#define EGL_ANDROID_front_buffer_auto_refresh 1 +#define EGL_FRONT_BUFFER_AUTO_REFRESH_ANDROID 0x314C +#endif /* EGL_ANDROID_front_buffer_auto_refresh */ + +#ifndef EGL_ANDROID_get_frame_timestamps +#define EGL_ANDROID_get_frame_timestamps 1 +typedef khronos_stime_nanoseconds_t EGLnsecsANDROID; +#define EGL_TIMESTAMP_PENDING_ANDROID EGL_CAST(EGLnsecsANDROID,-2) +#define EGL_TIMESTAMP_INVALID_ANDROID EGL_CAST(EGLnsecsANDROID,-1) +#define EGL_TIMESTAMPS_ANDROID 0x3430 +#define EGL_COMPOSITE_DEADLINE_ANDROID 0x3431 +#define EGL_COMPOSITE_INTERVAL_ANDROID 0x3432 +#define EGL_COMPOSITE_TO_PRESENT_LATENCY_ANDROID 0x3433 +#define EGL_REQUESTED_PRESENT_TIME_ANDROID 0x3434 +#define EGL_RENDERING_COMPLETE_TIME_ANDROID 0x3435 +#define EGL_COMPOSITION_LATCH_TIME_ANDROID 0x3436 +#define EGL_FIRST_COMPOSITION_START_TIME_ANDROID 0x3437 +#define EGL_LAST_COMPOSITION_START_TIME_ANDROID 0x3438 +#define EGL_FIRST_COMPOSITION_GPU_FINISHED_TIME_ANDROID 0x3439 +#define EGL_DISPLAY_PRESENT_TIME_ANDROID 0x343A +#define EGL_DEQUEUE_READY_TIME_ANDROID 0x343B +#define EGL_READS_DONE_TIME_ANDROID 0x343C +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCOMPOSITORTIMINGSUPPORTEDANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCOMPOSITORTIMINGANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETNEXTFRAMEIDANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR *frameId); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETFRAMETIMESTAMPSUPPORTEDANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint timestamp); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETFRAMETIMESTAMPSANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglGetCompositorTimingSupportedANDROID (EGLDisplay dpy, EGLSurface surface, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglGetCompositorTimingANDROID (EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values); +EGLAPI EGLBoolean EGLAPIENTRY eglGetNextFrameIdANDROID (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR *frameId); +EGLAPI EGLBoolean EGLAPIENTRY eglGetFrameTimestampSupportedANDROID (EGLDisplay dpy, EGLSurface surface, EGLint timestamp); +EGLAPI EGLBoolean EGLAPIENTRY eglGetFrameTimestampsANDROID (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values); +#endif +#endif /* EGL_ANDROID_get_frame_timestamps */ + +#ifndef EGL_ANDROID_get_native_client_buffer +#define EGL_ANDROID_get_native_client_buffer 1 +struct AHardwareBuffer; +typedef EGLClientBuffer (EGLAPIENTRYP PFNEGLGETNATIVECLIENTBUFFERANDROIDPROC) (const struct AHardwareBuffer *buffer); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLClientBuffer EGLAPIENTRY eglGetNativeClientBufferANDROID (const struct AHardwareBuffer *buffer); +#endif +#endif /* EGL_ANDROID_get_native_client_buffer */ + +#ifndef EGL_ANDROID_image_native_buffer +#define EGL_ANDROID_image_native_buffer 1 +#define EGL_NATIVE_BUFFER_ANDROID 0x3140 +#endif /* EGL_ANDROID_image_native_buffer */ + +#ifndef EGL_ANDROID_native_fence_sync +#define EGL_ANDROID_native_fence_sync 1 +#define EGL_SYNC_NATIVE_FENCE_ANDROID 0x3144 +#define EGL_SYNC_NATIVE_FENCE_FD_ANDROID 0x3145 +#define EGL_SYNC_NATIVE_FENCE_SIGNALED_ANDROID 0x3146 +#define EGL_NO_NATIVE_FENCE_FD_ANDROID -1 +typedef EGLint (EGLAPIENTRYP PFNEGLDUPNATIVEFENCEFDANDROIDPROC) (EGLDisplay dpy, EGLSyncKHR sync); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLint EGLAPIENTRY eglDupNativeFenceFDANDROID (EGLDisplay dpy, EGLSyncKHR sync); +#endif +#endif /* EGL_ANDROID_native_fence_sync */ + +#ifndef EGL_ANDROID_presentation_time +#define EGL_ANDROID_presentation_time 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLPRESENTATIONTIMEANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLnsecsANDROID time); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglPresentationTimeANDROID (EGLDisplay dpy, EGLSurface surface, EGLnsecsANDROID time); +#endif +#endif /* EGL_ANDROID_presentation_time */ + +#ifndef EGL_ANDROID_recordable +#define EGL_ANDROID_recordable 1 +#define EGL_RECORDABLE_ANDROID 0x3142 +#endif /* EGL_ANDROID_recordable */ + +#ifndef EGL_ANGLE_d3d_share_handle_client_buffer +#define EGL_ANGLE_d3d_share_handle_client_buffer 1 +#define EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE 0x3200 +#endif /* EGL_ANGLE_d3d_share_handle_client_buffer */ + +#ifndef EGL_ANGLE_device_d3d +#define EGL_ANGLE_device_d3d 1 +#define EGL_D3D9_DEVICE_ANGLE 0x33A0 +#define EGL_D3D11_DEVICE_ANGLE 0x33A1 +#endif /* EGL_ANGLE_device_d3d */ + +#ifndef EGL_ANGLE_query_surface_pointer +#define EGL_ANGLE_query_surface_pointer 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACEPOINTERANGLEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, void **value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurfacePointerANGLE (EGLDisplay dpy, EGLSurface surface, EGLint attribute, void **value); +#endif +#endif /* EGL_ANGLE_query_surface_pointer */ + +#ifndef EGL_ANGLE_surface_d3d_texture_2d_share_handle +#define EGL_ANGLE_surface_d3d_texture_2d_share_handle 1 +#endif /* EGL_ANGLE_surface_d3d_texture_2d_share_handle */ + +#ifndef EGL_ANGLE_sync_control_rate +#define EGL_ANGLE_sync_control_rate 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETMSCRATEANGLEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint *numerator, EGLint *denominator); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglGetMscRateANGLE (EGLDisplay dpy, EGLSurface surface, EGLint *numerator, EGLint *denominator); +#endif +#endif /* EGL_ANGLE_sync_control_rate */ + +#ifndef EGL_ANGLE_window_fixed_size +#define EGL_ANGLE_window_fixed_size 1 +#define EGL_FIXED_SIZE_ANGLE 0x3201 +#endif /* EGL_ANGLE_window_fixed_size */ + +#ifndef EGL_ARM_image_format +#define EGL_ARM_image_format 1 +#define EGL_COLOR_COMPONENT_TYPE_UNSIGNED_INTEGER_ARM 0x3287 +#define EGL_COLOR_COMPONENT_TYPE_INTEGER_ARM 0x3288 +#endif /* EGL_ARM_image_format */ + +#ifndef EGL_ARM_implicit_external_sync +#define EGL_ARM_implicit_external_sync 1 +#define EGL_SYNC_PRIOR_COMMANDS_IMPLICIT_EXTERNAL_ARM 0x328A +#endif /* EGL_ARM_implicit_external_sync */ + +#ifndef EGL_ARM_pixmap_multisample_discard +#define EGL_ARM_pixmap_multisample_discard 1 +#define EGL_DISCARD_SAMPLES_ARM 0x3286 +#endif /* EGL_ARM_pixmap_multisample_discard */ + +#ifndef EGL_EXT_bind_to_front +#define EGL_EXT_bind_to_front 1 +#define EGL_FRONT_BUFFER_EXT 0x3464 +#endif /* EGL_EXT_bind_to_front */ + +#ifndef EGL_EXT_buffer_age +#define EGL_EXT_buffer_age 1 +#define EGL_BUFFER_AGE_EXT 0x313D +#endif /* EGL_EXT_buffer_age */ + +#ifndef EGL_EXT_client_extensions +#define EGL_EXT_client_extensions 1 +#endif /* EGL_EXT_client_extensions */ + +#ifndef EGL_EXT_client_sync +#define EGL_EXT_client_sync 1 +#define EGL_SYNC_CLIENT_EXT 0x3364 +#define EGL_SYNC_CLIENT_SIGNAL_EXT 0x3365 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCLIENTSIGNALSYNCEXTPROC) (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglClientSignalSyncEXT (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#endif +#endif /* EGL_EXT_client_sync */ + +#ifndef EGL_EXT_compositor +#define EGL_EXT_compositor 1 +#define EGL_PRIMARY_COMPOSITOR_CONTEXT_EXT 0x3460 +#define EGL_EXTERNAL_REF_ID_EXT 0x3461 +#define EGL_COMPOSITOR_DROP_NEWEST_FRAME_EXT 0x3462 +#define EGL_COMPOSITOR_KEEP_NEWEST_FRAME_EXT 0x3463 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETCONTEXTLISTEXTPROC) (const EGLint *external_ref_ids, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETCONTEXTATTRIBUTESEXTPROC) (EGLint external_ref_id, const EGLint *context_attributes, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETWINDOWLISTEXTPROC) (EGLint external_ref_id, const EGLint *external_win_ids, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETWINDOWATTRIBUTESEXTPROC) (EGLint external_win_id, const EGLint *window_attributes, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORBINDTEXWINDOWEXTPROC) (EGLint external_win_id); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETSIZEEXTPROC) (EGLint external_win_id, EGLint width, EGLint height); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSWAPPOLICYEXTPROC) (EGLint external_win_id, EGLint policy); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetContextListEXT (const EGLint *external_ref_ids, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetContextAttributesEXT (EGLint external_ref_id, const EGLint *context_attributes, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetWindowListEXT (EGLint external_ref_id, const EGLint *external_win_ids, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetWindowAttributesEXT (EGLint external_win_id, const EGLint *window_attributes, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorBindTexWindowEXT (EGLint external_win_id); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetSizeEXT (EGLint external_win_id, EGLint width, EGLint height); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSwapPolicyEXT (EGLint external_win_id, EGLint policy); +#endif +#endif /* EGL_EXT_compositor */ + +#ifndef EGL_EXT_config_select_group +#define EGL_EXT_config_select_group 1 +#define EGL_CONFIG_SELECT_GROUP_EXT 0x34C0 +#endif /* EGL_EXT_config_select_group */ + +#ifndef EGL_EXT_create_context_robustness +#define EGL_EXT_create_context_robustness 1 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS_EXT 0x30BF +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_EXT 0x3138 +#define EGL_NO_RESET_NOTIFICATION_EXT 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET_EXT 0x31BF +#endif /* EGL_EXT_create_context_robustness */ + +#ifndef EGL_EXT_device_base +#define EGL_EXT_device_base 1 +typedef void *EGLDeviceEXT; +#define EGL_NO_DEVICE_EXT EGL_CAST(EGLDeviceEXT,0) +#define EGL_BAD_DEVICE_EXT 0x322B +#define EGL_DEVICE_EXT 0x322C +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEVICEATTRIBEXTPROC) (EGLDeviceEXT device, EGLint attribute, EGLAttrib *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYDEVICESTRINGEXTPROC) (EGLDeviceEXT device, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEVICESEXTPROC) (EGLint max_devices, EGLDeviceEXT *devices, EGLint *num_devices); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBEXTPROC) (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDeviceAttribEXT (EGLDeviceEXT device, EGLint attribute, EGLAttrib *value); +EGLAPI const char *EGLAPIENTRY eglQueryDeviceStringEXT (EGLDeviceEXT device, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDevicesEXT (EGLint max_devices, EGLDeviceEXT *devices, EGLint *num_devices); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribEXT (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +#endif +#endif /* EGL_EXT_device_base */ + +#ifndef EGL_EXT_device_drm +#define EGL_EXT_device_drm 1 +#define EGL_DRM_DEVICE_FILE_EXT 0x3233 +#define EGL_DRM_MASTER_FD_EXT 0x333C +#endif /* EGL_EXT_device_drm */ + +#ifndef EGL_EXT_device_drm_render_node +#define EGL_EXT_device_drm_render_node 1 +#define EGL_DRM_RENDER_NODE_FILE_EXT 0x3377 +#endif /* EGL_EXT_device_drm_render_node */ + +#ifndef EGL_EXT_device_enumeration +#define EGL_EXT_device_enumeration 1 +#endif /* EGL_EXT_device_enumeration */ + +#ifndef EGL_EXT_device_openwf +#define EGL_EXT_device_openwf 1 +#define EGL_OPENWF_DEVICE_ID_EXT 0x3237 +#define EGL_OPENWF_DEVICE_EXT 0x333D +#endif /* EGL_EXT_device_openwf */ + +#ifndef EGL_EXT_device_persistent_id +#define EGL_EXT_device_persistent_id 1 +#define EGL_DEVICE_UUID_EXT 0x335C +#define EGL_DRIVER_UUID_EXT 0x335D +#define EGL_DRIVER_NAME_EXT 0x335E +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEVICEBINARYEXTPROC) (EGLDeviceEXT device, EGLint name, EGLint max_size, void *value, EGLint *size); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDeviceBinaryEXT (EGLDeviceEXT device, EGLint name, EGLint max_size, void *value, EGLint *size); +#endif +#endif /* EGL_EXT_device_persistent_id */ + +#ifndef EGL_EXT_device_query +#define EGL_EXT_device_query 1 +#endif /* EGL_EXT_device_query */ + +#ifndef EGL_EXT_device_query_name +#define EGL_EXT_device_query_name 1 +#define EGL_RENDERER_EXT 0x335F +#endif /* EGL_EXT_device_query_name */ + +#ifndef EGL_EXT_explicit_device +#define EGL_EXT_explicit_device 1 +#endif /* EGL_EXT_explicit_device */ + +#ifndef EGL_EXT_gl_colorspace_bt2020_linear +#define EGL_EXT_gl_colorspace_bt2020_linear 1 +#define EGL_GL_COLORSPACE_BT2020_LINEAR_EXT 0x333F +#endif /* EGL_EXT_gl_colorspace_bt2020_linear */ + +#ifndef EGL_EXT_gl_colorspace_bt2020_pq +#define EGL_EXT_gl_colorspace_bt2020_pq 1 +#define EGL_GL_COLORSPACE_BT2020_PQ_EXT 0x3340 +#endif /* EGL_EXT_gl_colorspace_bt2020_pq */ + +#ifndef EGL_EXT_gl_colorspace_display_p3 +#define EGL_EXT_gl_colorspace_display_p3 1 +#define EGL_GL_COLORSPACE_DISPLAY_P3_EXT 0x3363 +#endif /* EGL_EXT_gl_colorspace_display_p3 */ + +#ifndef EGL_EXT_gl_colorspace_display_p3_linear +#define EGL_EXT_gl_colorspace_display_p3_linear 1 +#define EGL_GL_COLORSPACE_DISPLAY_P3_LINEAR_EXT 0x3362 +#endif /* EGL_EXT_gl_colorspace_display_p3_linear */ + +#ifndef EGL_EXT_gl_colorspace_display_p3_passthrough +#define EGL_EXT_gl_colorspace_display_p3_passthrough 1 +#define EGL_GL_COLORSPACE_DISPLAY_P3_PASSTHROUGH_EXT 0x3490 +#endif /* EGL_EXT_gl_colorspace_display_p3_passthrough */ + +#ifndef EGL_EXT_gl_colorspace_scrgb +#define EGL_EXT_gl_colorspace_scrgb 1 +#define EGL_GL_COLORSPACE_SCRGB_EXT 0x3351 +#endif /* EGL_EXT_gl_colorspace_scrgb */ + +#ifndef EGL_EXT_gl_colorspace_scrgb_linear +#define EGL_EXT_gl_colorspace_scrgb_linear 1 +#define EGL_GL_COLORSPACE_SCRGB_LINEAR_EXT 0x3350 +#endif /* EGL_EXT_gl_colorspace_scrgb_linear */ + +#ifndef EGL_EXT_image_dma_buf_import +#define EGL_EXT_image_dma_buf_import 1 +#define EGL_LINUX_DMA_BUF_EXT 0x3270 +#define EGL_LINUX_DRM_FOURCC_EXT 0x3271 +#define EGL_DMA_BUF_PLANE0_FD_EXT 0x3272 +#define EGL_DMA_BUF_PLANE0_OFFSET_EXT 0x3273 +#define EGL_DMA_BUF_PLANE0_PITCH_EXT 0x3274 +#define EGL_DMA_BUF_PLANE1_FD_EXT 0x3275 +#define EGL_DMA_BUF_PLANE1_OFFSET_EXT 0x3276 +#define EGL_DMA_BUF_PLANE1_PITCH_EXT 0x3277 +#define EGL_DMA_BUF_PLANE2_FD_EXT 0x3278 +#define EGL_DMA_BUF_PLANE2_OFFSET_EXT 0x3279 +#define EGL_DMA_BUF_PLANE2_PITCH_EXT 0x327A +#define EGL_YUV_COLOR_SPACE_HINT_EXT 0x327B +#define EGL_SAMPLE_RANGE_HINT_EXT 0x327C +#define EGL_YUV_CHROMA_HORIZONTAL_SITING_HINT_EXT 0x327D +#define EGL_YUV_CHROMA_VERTICAL_SITING_HINT_EXT 0x327E +#define EGL_ITU_REC601_EXT 0x327F +#define EGL_ITU_REC709_EXT 0x3280 +#define EGL_ITU_REC2020_EXT 0x3281 +#define EGL_YUV_FULL_RANGE_EXT 0x3282 +#define EGL_YUV_NARROW_RANGE_EXT 0x3283 +#define EGL_YUV_CHROMA_SITING_0_EXT 0x3284 +#define EGL_YUV_CHROMA_SITING_0_5_EXT 0x3285 +#endif /* EGL_EXT_image_dma_buf_import */ + +#ifndef EGL_EXT_image_dma_buf_import_modifiers +#define EGL_EXT_image_dma_buf_import_modifiers 1 +#define EGL_DMA_BUF_PLANE3_FD_EXT 0x3440 +#define EGL_DMA_BUF_PLANE3_OFFSET_EXT 0x3441 +#define EGL_DMA_BUF_PLANE3_PITCH_EXT 0x3442 +#define EGL_DMA_BUF_PLANE0_MODIFIER_LO_EXT 0x3443 +#define EGL_DMA_BUF_PLANE0_MODIFIER_HI_EXT 0x3444 +#define EGL_DMA_BUF_PLANE1_MODIFIER_LO_EXT 0x3445 +#define EGL_DMA_BUF_PLANE1_MODIFIER_HI_EXT 0x3446 +#define EGL_DMA_BUF_PLANE2_MODIFIER_LO_EXT 0x3447 +#define EGL_DMA_BUF_PLANE2_MODIFIER_HI_EXT 0x3448 +#define EGL_DMA_BUF_PLANE3_MODIFIER_LO_EXT 0x3449 +#define EGL_DMA_BUF_PLANE3_MODIFIER_HI_EXT 0x344A +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDMABUFFORMATSEXTPROC) (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDMABUFMODIFIERSEXTPROC) (EGLDisplay dpy, EGLint format, EGLint max_modifiers, EGLuint64KHR *modifiers, EGLBoolean *external_only, EGLint *num_modifiers); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDmaBufFormatsEXT (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDmaBufModifiersEXT (EGLDisplay dpy, EGLint format, EGLint max_modifiers, EGLuint64KHR *modifiers, EGLBoolean *external_only, EGLint *num_modifiers); +#endif +#endif /* EGL_EXT_image_dma_buf_import_modifiers */ + +#ifndef EGL_EXT_image_gl_colorspace +#define EGL_EXT_image_gl_colorspace 1 +#define EGL_GL_COLORSPACE_DEFAULT_EXT 0x314D +#endif /* EGL_EXT_image_gl_colorspace */ + +#ifndef EGL_EXT_image_implicit_sync_control +#define EGL_EXT_image_implicit_sync_control 1 +#define EGL_IMPORT_SYNC_TYPE_EXT 0x3470 +#define EGL_IMPORT_IMPLICIT_SYNC_EXT 0x3471 +#define EGL_IMPORT_EXPLICIT_SYNC_EXT 0x3472 +#endif /* EGL_EXT_image_implicit_sync_control */ + +#ifndef EGL_EXT_multiview_window +#define EGL_EXT_multiview_window 1 +#define EGL_MULTIVIEW_VIEW_COUNT_EXT 0x3134 +#endif /* EGL_EXT_multiview_window */ + +#ifndef EGL_EXT_output_base +#define EGL_EXT_output_base 1 +typedef void *EGLOutputLayerEXT; +typedef void *EGLOutputPortEXT; +#define EGL_NO_OUTPUT_LAYER_EXT EGL_CAST(EGLOutputLayerEXT,0) +#define EGL_NO_OUTPUT_PORT_EXT EGL_CAST(EGLOutputPortEXT,0) +#define EGL_BAD_OUTPUT_LAYER_EXT 0x322D +#define EGL_BAD_OUTPUT_PORT_EXT 0x322E +#define EGL_SWAP_INTERVAL_EXT 0x322F +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETOUTPUTLAYERSEXTPROC) (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputLayerEXT *layers, EGLint max_layers, EGLint *num_layers); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETOUTPUTPORTSEXTPROC) (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputPortEXT *ports, EGLint max_ports, EGLint *num_ports); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLOUTPUTLAYERATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYOUTPUTLAYERATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYOUTPUTLAYERSTRINGEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLOUTPUTPORTATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYOUTPUTPORTATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYOUTPUTPORTSTRINGEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint name); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglGetOutputLayersEXT (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputLayerEXT *layers, EGLint max_layers, EGLint *num_layers); +EGLAPI EGLBoolean EGLAPIENTRY eglGetOutputPortsEXT (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputPortEXT *ports, EGLint max_ports, EGLint *num_ports); +EGLAPI EGLBoolean EGLAPIENTRY eglOutputLayerAttribEXT (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryOutputLayerAttribEXT (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib *value); +EGLAPI const char *EGLAPIENTRY eglQueryOutputLayerStringEXT (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglOutputPortAttribEXT (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryOutputPortAttribEXT (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib *value); +EGLAPI const char *EGLAPIENTRY eglQueryOutputPortStringEXT (EGLDisplay dpy, EGLOutputPortEXT port, EGLint name); +#endif +#endif /* EGL_EXT_output_base */ + +#ifndef EGL_EXT_output_drm +#define EGL_EXT_output_drm 1 +#define EGL_DRM_CRTC_EXT 0x3234 +#define EGL_DRM_PLANE_EXT 0x3235 +#define EGL_DRM_CONNECTOR_EXT 0x3236 +#endif /* EGL_EXT_output_drm */ + +#ifndef EGL_EXT_output_openwf +#define EGL_EXT_output_openwf 1 +#define EGL_OPENWF_PIPELINE_ID_EXT 0x3238 +#define EGL_OPENWF_PORT_ID_EXT 0x3239 +#endif /* EGL_EXT_output_openwf */ + +#ifndef EGL_EXT_pixel_format_float +#define EGL_EXT_pixel_format_float 1 +#define EGL_COLOR_COMPONENT_TYPE_EXT 0x3339 +#define EGL_COLOR_COMPONENT_TYPE_FIXED_EXT 0x333A +#define EGL_COLOR_COMPONENT_TYPE_FLOAT_EXT 0x333B +#endif /* EGL_EXT_pixel_format_float */ + +#ifndef EGL_EXT_platform_base +#define EGL_EXT_platform_base 1 +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETPLATFORMDISPLAYEXTPROC) (EGLenum platform, void *native_display, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMWINDOWSURFACEEXTPROC) (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMPIXMAPSURFACEEXTPROC) (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLDisplay EGLAPIENTRY eglGetPlatformDisplayEXT (EGLenum platform, void *native_display, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformWindowSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformPixmapSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint *attrib_list); +#endif +#endif /* EGL_EXT_platform_base */ + +#ifndef EGL_EXT_platform_device +#define EGL_EXT_platform_device 1 +#define EGL_PLATFORM_DEVICE_EXT 0x313F +#endif /* EGL_EXT_platform_device */ + +#ifndef EGL_EXT_platform_wayland +#define EGL_EXT_platform_wayland 1 +#define EGL_PLATFORM_WAYLAND_EXT 0x31D8 +#endif /* EGL_EXT_platform_wayland */ + +#ifndef EGL_EXT_platform_x11 +#define EGL_EXT_platform_x11 1 +#define EGL_PLATFORM_X11_EXT 0x31D5 +#define EGL_PLATFORM_X11_SCREEN_EXT 0x31D6 +#endif /* EGL_EXT_platform_x11 */ + +#ifndef EGL_EXT_platform_xcb +#define EGL_EXT_platform_xcb 1 +#define EGL_PLATFORM_XCB_EXT 0x31DC +#define EGL_PLATFORM_XCB_SCREEN_EXT 0x31DE +#endif /* EGL_EXT_platform_xcb */ + +#ifndef EGL_EXT_present_opaque +#define EGL_EXT_present_opaque 1 +#define EGL_PRESENT_OPAQUE_EXT 0x31DF +#endif /* EGL_EXT_present_opaque */ + +#ifndef EGL_EXT_protected_content +#define EGL_EXT_protected_content 1 +#define EGL_PROTECTED_CONTENT_EXT 0x32C0 +#endif /* EGL_EXT_protected_content */ + +#ifndef EGL_EXT_protected_surface +#define EGL_EXT_protected_surface 1 +#endif /* EGL_EXT_protected_surface */ + +#ifndef EGL_EXT_stream_consumer_egloutput +#define EGL_EXT_stream_consumer_egloutput 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMEROUTPUTEXTPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLOutputLayerEXT layer); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerOutputEXT (EGLDisplay dpy, EGLStreamKHR stream, EGLOutputLayerEXT layer); +#endif +#endif /* EGL_EXT_stream_consumer_egloutput */ + +#ifndef EGL_EXT_surface_CTA861_3_metadata +#define EGL_EXT_surface_CTA861_3_metadata 1 +#define EGL_CTA861_3_MAX_CONTENT_LIGHT_LEVEL_EXT 0x3360 +#define EGL_CTA861_3_MAX_FRAME_AVERAGE_LEVEL_EXT 0x3361 +#endif /* EGL_EXT_surface_CTA861_3_metadata */ + +#ifndef EGL_EXT_surface_SMPTE2086_metadata +#define EGL_EXT_surface_SMPTE2086_metadata 1 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_RX_EXT 0x3341 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_RY_EXT 0x3342 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_GX_EXT 0x3343 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_GY_EXT 0x3344 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_BX_EXT 0x3345 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_BY_EXT 0x3346 +#define EGL_SMPTE2086_WHITE_POINT_X_EXT 0x3347 +#define EGL_SMPTE2086_WHITE_POINT_Y_EXT 0x3348 +#define EGL_SMPTE2086_MAX_LUMINANCE_EXT 0x3349 +#define EGL_SMPTE2086_MIN_LUMINANCE_EXT 0x334A +#define EGL_METADATA_SCALING_EXT 50000 +#endif /* EGL_EXT_surface_SMPTE2086_metadata */ + +#ifndef EGL_EXT_surface_compression +#define EGL_EXT_surface_compression 1 +#define EGL_SURFACE_COMPRESSION_EXT 0x34B0 +#define EGL_SURFACE_COMPRESSION_PLANE1_EXT 0x328E +#define EGL_SURFACE_COMPRESSION_PLANE2_EXT 0x328F +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_NONE_EXT 0x34B1 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_DEFAULT_EXT 0x34B2 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_1BPC_EXT 0x34B4 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_2BPC_EXT 0x34B5 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_3BPC_EXT 0x34B6 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_4BPC_EXT 0x34B7 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_5BPC_EXT 0x34B8 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_6BPC_EXT 0x34B9 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_7BPC_EXT 0x34BA +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_8BPC_EXT 0x34BB +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_9BPC_EXT 0x34BC +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_10BPC_EXT 0x34BD +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_11BPC_EXT 0x34BE +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_12BPC_EXT 0x34BF +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSUPPORTEDCOMPRESSIONRATESEXTPROC) (EGLDisplay dpy, EGLConfig config, const EGLAttrib *attrib_list, EGLint *rates, EGLint rate_size, EGLint *num_rates); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySupportedCompressionRatesEXT (EGLDisplay dpy, EGLConfig config, const EGLAttrib *attrib_list, EGLint *rates, EGLint rate_size, EGLint *num_rates); +#endif +#endif /* EGL_EXT_surface_compression */ + +#ifndef EGL_EXT_swap_buffers_with_damage +#define EGL_EXT_swap_buffers_with_damage 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSWITHDAMAGEEXTPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersWithDamageEXT (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#endif +#endif /* EGL_EXT_swap_buffers_with_damage */ + +#ifndef EGL_EXT_sync_reuse +#define EGL_EXT_sync_reuse 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNSIGNALSYNCEXTPROC) (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglUnsignalSyncEXT (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#endif +#endif /* EGL_EXT_sync_reuse */ + +#ifndef EGL_EXT_yuv_surface +#define EGL_EXT_yuv_surface 1 +#define EGL_YUV_ORDER_EXT 0x3301 +#define EGL_YUV_NUMBER_OF_PLANES_EXT 0x3311 +#define EGL_YUV_SUBSAMPLE_EXT 0x3312 +#define EGL_YUV_DEPTH_RANGE_EXT 0x3317 +#define EGL_YUV_CSC_STANDARD_EXT 0x330A +#define EGL_YUV_PLANE_BPP_EXT 0x331A +#define EGL_YUV_BUFFER_EXT 0x3300 +#define EGL_YUV_ORDER_YUV_EXT 0x3302 +#define EGL_YUV_ORDER_YVU_EXT 0x3303 +#define EGL_YUV_ORDER_YUYV_EXT 0x3304 +#define EGL_YUV_ORDER_UYVY_EXT 0x3305 +#define EGL_YUV_ORDER_YVYU_EXT 0x3306 +#define EGL_YUV_ORDER_VYUY_EXT 0x3307 +#define EGL_YUV_ORDER_AYUV_EXT 0x3308 +#define EGL_YUV_SUBSAMPLE_4_2_0_EXT 0x3313 +#define EGL_YUV_SUBSAMPLE_4_2_2_EXT 0x3314 +#define EGL_YUV_SUBSAMPLE_4_4_4_EXT 0x3315 +#define EGL_YUV_DEPTH_RANGE_LIMITED_EXT 0x3318 +#define EGL_YUV_DEPTH_RANGE_FULL_EXT 0x3319 +#define EGL_YUV_CSC_STANDARD_601_EXT 0x330B +#define EGL_YUV_CSC_STANDARD_709_EXT 0x330C +#define EGL_YUV_CSC_STANDARD_2020_EXT 0x330D +#define EGL_YUV_PLANE_BPP_0_EXT 0x331B +#define EGL_YUV_PLANE_BPP_8_EXT 0x331C +#define EGL_YUV_PLANE_BPP_10_EXT 0x331D +#endif /* EGL_EXT_yuv_surface */ + +#ifndef EGL_HI_clientpixmap +#define EGL_HI_clientpixmap 1 +struct EGLClientPixmapHI { + void *pData; + EGLint iWidth; + EGLint iHeight; + EGLint iStride; +}; +#define EGL_CLIENT_PIXMAP_POINTER_HI 0x8F74 +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPIXMAPSURFACEHIPROC) (EGLDisplay dpy, EGLConfig config, struct EGLClientPixmapHI *pixmap); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurfaceHI (EGLDisplay dpy, EGLConfig config, struct EGLClientPixmapHI *pixmap); +#endif +#endif /* EGL_HI_clientpixmap */ + +#ifndef EGL_HI_colorformats +#define EGL_HI_colorformats 1 +#define EGL_COLOR_FORMAT_HI 0x8F70 +#define EGL_COLOR_RGB_HI 0x8F71 +#define EGL_COLOR_RGBA_HI 0x8F72 +#define EGL_COLOR_ARGB_HI 0x8F73 +#endif /* EGL_HI_colorformats */ + +#ifndef EGL_IMG_context_priority +#define EGL_IMG_context_priority 1 +#define EGL_CONTEXT_PRIORITY_LEVEL_IMG 0x3100 +#define EGL_CONTEXT_PRIORITY_HIGH_IMG 0x3101 +#define EGL_CONTEXT_PRIORITY_MEDIUM_IMG 0x3102 +#define EGL_CONTEXT_PRIORITY_LOW_IMG 0x3103 +#endif /* EGL_IMG_context_priority */ + +#ifndef EGL_IMG_image_plane_attribs +#define EGL_IMG_image_plane_attribs 1 +#define EGL_NATIVE_BUFFER_MULTIPLANE_SEPARATE_IMG 0x3105 +#define EGL_NATIVE_BUFFER_PLANE_OFFSET_IMG 0x3106 +#endif /* EGL_IMG_image_plane_attribs */ + +#ifndef EGL_MESA_drm_image +#define EGL_MESA_drm_image 1 +#define EGL_DRM_BUFFER_FORMAT_MESA 0x31D0 +#define EGL_DRM_BUFFER_USE_MESA 0x31D1 +#define EGL_DRM_BUFFER_FORMAT_ARGB32_MESA 0x31D2 +#define EGL_DRM_BUFFER_MESA 0x31D3 +#define EGL_DRM_BUFFER_STRIDE_MESA 0x31D4 +#define EGL_DRM_BUFFER_USE_SCANOUT_MESA 0x00000001 +#define EGL_DRM_BUFFER_USE_SHARE_MESA 0x00000002 +#define EGL_DRM_BUFFER_USE_CURSOR_MESA 0x00000004 +typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEDRMIMAGEMESAPROC) (EGLDisplay dpy, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDRMIMAGEMESAPROC) (EGLDisplay dpy, EGLImageKHR image, EGLint *name, EGLint *handle, EGLint *stride); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLImageKHR EGLAPIENTRY eglCreateDRMImageMESA (EGLDisplay dpy, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglExportDRMImageMESA (EGLDisplay dpy, EGLImageKHR image, EGLint *name, EGLint *handle, EGLint *stride); +#endif +#endif /* EGL_MESA_drm_image */ + +#ifndef EGL_MESA_image_dma_buf_export +#define EGL_MESA_image_dma_buf_export 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDMABUFIMAGEQUERYMESAPROC) (EGLDisplay dpy, EGLImageKHR image, int *fourcc, int *num_planes, EGLuint64KHR *modifiers); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDMABUFIMAGEMESAPROC) (EGLDisplay dpy, EGLImageKHR image, int *fds, EGLint *strides, EGLint *offsets); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglExportDMABUFImageQueryMESA (EGLDisplay dpy, EGLImageKHR image, int *fourcc, int *num_planes, EGLuint64KHR *modifiers); +EGLAPI EGLBoolean EGLAPIENTRY eglExportDMABUFImageMESA (EGLDisplay dpy, EGLImageKHR image, int *fds, EGLint *strides, EGLint *offsets); +#endif +#endif /* EGL_MESA_image_dma_buf_export */ + +#ifndef EGL_MESA_platform_gbm +#define EGL_MESA_platform_gbm 1 +#define EGL_PLATFORM_GBM_MESA 0x31D7 +#endif /* EGL_MESA_platform_gbm */ + +#ifndef EGL_MESA_platform_surfaceless +#define EGL_MESA_platform_surfaceless 1 +#define EGL_PLATFORM_SURFACELESS_MESA 0x31DD +#endif /* EGL_MESA_platform_surfaceless */ + +#ifndef EGL_MESA_query_driver +#define EGL_MESA_query_driver 1 +typedef char *(EGLAPIENTRYP PFNEGLGETDISPLAYDRIVERCONFIGPROC) (EGLDisplay dpy); +typedef const char *(EGLAPIENTRYP PFNEGLGETDISPLAYDRIVERNAMEPROC) (EGLDisplay dpy); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI char *EGLAPIENTRY eglGetDisplayDriverConfig (EGLDisplay dpy); +EGLAPI const char *EGLAPIENTRY eglGetDisplayDriverName (EGLDisplay dpy); +#endif +#endif /* EGL_MESA_query_driver */ + +#ifndef EGL_NOK_swap_region +#define EGL_NOK_swap_region 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSREGIONNOKPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersRegionNOK (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#endif +#endif /* EGL_NOK_swap_region */ + +#ifndef EGL_NOK_swap_region2 +#define EGL_NOK_swap_region2 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSREGION2NOKPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersRegion2NOK (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#endif +#endif /* EGL_NOK_swap_region2 */ + +#ifndef EGL_NOK_texture_from_pixmap +#define EGL_NOK_texture_from_pixmap 1 +#define EGL_Y_INVERTED_NOK 0x307F +#endif /* EGL_NOK_texture_from_pixmap */ + +#ifndef EGL_NV_3dvision_surface +#define EGL_NV_3dvision_surface 1 +#define EGL_AUTO_STEREO_NV 0x3136 +#endif /* EGL_NV_3dvision_surface */ + +#ifndef EGL_NV_context_priority_realtime +#define EGL_NV_context_priority_realtime 1 +#define EGL_CONTEXT_PRIORITY_REALTIME_NV 0x3357 +#endif /* EGL_NV_context_priority_realtime */ + +#ifndef EGL_NV_coverage_sample +#define EGL_NV_coverage_sample 1 +#define EGL_COVERAGE_BUFFERS_NV 0x30E0 +#define EGL_COVERAGE_SAMPLES_NV 0x30E1 +#endif /* EGL_NV_coverage_sample */ + +#ifndef EGL_NV_coverage_sample_resolve +#define EGL_NV_coverage_sample_resolve 1 +#define EGL_COVERAGE_SAMPLE_RESOLVE_NV 0x3131 +#define EGL_COVERAGE_SAMPLE_RESOLVE_DEFAULT_NV 0x3132 +#define EGL_COVERAGE_SAMPLE_RESOLVE_NONE_NV 0x3133 +#endif /* EGL_NV_coverage_sample_resolve */ + +#ifndef EGL_NV_cuda_event +#define EGL_NV_cuda_event 1 +#define EGL_CUDA_EVENT_HANDLE_NV 0x323B +#define EGL_SYNC_CUDA_EVENT_NV 0x323C +#define EGL_SYNC_CUDA_EVENT_COMPLETE_NV 0x323D +#endif /* EGL_NV_cuda_event */ + +#ifndef EGL_NV_depth_nonlinear +#define EGL_NV_depth_nonlinear 1 +#define EGL_DEPTH_ENCODING_NV 0x30E2 +#define EGL_DEPTH_ENCODING_NONE_NV 0 +#define EGL_DEPTH_ENCODING_NONLINEAR_NV 0x30E3 +#endif /* EGL_NV_depth_nonlinear */ + +#ifndef EGL_NV_device_cuda +#define EGL_NV_device_cuda 1 +#define EGL_CUDA_DEVICE_NV 0x323A +#endif /* EGL_NV_device_cuda */ + +#ifndef EGL_NV_native_query +#define EGL_NV_native_query 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEDISPLAYNVPROC) (EGLDisplay dpy, EGLNativeDisplayType *display_id); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEWINDOWNVPROC) (EGLDisplay dpy, EGLSurface surf, EGLNativeWindowType *window); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEPIXMAPNVPROC) (EGLDisplay dpy, EGLSurface surf, EGLNativePixmapType *pixmap); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativeDisplayNV (EGLDisplay dpy, EGLNativeDisplayType *display_id); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativeWindowNV (EGLDisplay dpy, EGLSurface surf, EGLNativeWindowType *window); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativePixmapNV (EGLDisplay dpy, EGLSurface surf, EGLNativePixmapType *pixmap); +#endif +#endif /* EGL_NV_native_query */ + +#ifndef EGL_NV_post_convert_rounding +#define EGL_NV_post_convert_rounding 1 +#endif /* EGL_NV_post_convert_rounding */ + +#ifndef EGL_NV_post_sub_buffer +#define EGL_NV_post_sub_buffer 1 +#define EGL_POST_SUB_BUFFER_SUPPORTED_NV 0x30BE +typedef EGLBoolean (EGLAPIENTRYP PFNEGLPOSTSUBBUFFERNVPROC) (EGLDisplay dpy, EGLSurface surface, EGLint x, EGLint y, EGLint width, EGLint height); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglPostSubBufferNV (EGLDisplay dpy, EGLSurface surface, EGLint x, EGLint y, EGLint width, EGLint height); +#endif +#endif /* EGL_NV_post_sub_buffer */ + +#ifndef EGL_NV_quadruple_buffer +#define EGL_NV_quadruple_buffer 1 +#define EGL_QUADRUPLE_BUFFER_NV 0x3231 +#endif /* EGL_NV_quadruple_buffer */ + +#ifndef EGL_NV_robustness_video_memory_purge +#define EGL_NV_robustness_video_memory_purge 1 +#define EGL_GENERATE_RESET_ON_VIDEO_MEMORY_PURGE_NV 0x334C +#endif /* EGL_NV_robustness_video_memory_purge */ + +#ifndef EGL_NV_stream_consumer_eglimage +#define EGL_NV_stream_consumer_eglimage 1 +#define EGL_STREAM_CONSUMER_IMAGE_NV 0x3373 +#define EGL_STREAM_IMAGE_ADD_NV 0x3374 +#define EGL_STREAM_IMAGE_REMOVE_NV 0x3375 +#define EGL_STREAM_IMAGE_AVAILABLE_NV 0x3376 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMIMAGECONSUMERCONNECTNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLint num_modifiers, const EGLuint64KHR *modifiers, const EGLAttrib *attrib_list); +typedef EGLint (EGLAPIENTRYP PFNEGLQUERYSTREAMCONSUMEREVENTNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLTime timeout, EGLenum *event, EGLAttrib *aux); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMACQUIREIMAGENVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLImage *pImage, EGLSync sync); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMRELEASEIMAGENVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLImage image, EGLSync sync); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamImageConsumerConnectNV (EGLDisplay dpy, EGLStreamKHR stream, EGLint num_modifiers, const EGLuint64KHR *modifiers, const EGLAttrib *attrib_list); +EGLAPI EGLint EGLAPIENTRY eglQueryStreamConsumerEventNV (EGLDisplay dpy, EGLStreamKHR stream, EGLTime timeout, EGLenum *event, EGLAttrib *aux); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamAcquireImageNV (EGLDisplay dpy, EGLStreamKHR stream, EGLImage *pImage, EGLSync sync); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamReleaseImageNV (EGLDisplay dpy, EGLStreamKHR stream, EGLImage image, EGLSync sync); +#endif +#endif /* EGL_NV_stream_consumer_eglimage */ + +#ifndef EGL_NV_stream_consumer_gltexture_yuv +#define EGL_NV_stream_consumer_gltexture_yuv 1 +#define EGL_YUV_PLANE0_TEXTURE_UNIT_NV 0x332C +#define EGL_YUV_PLANE1_TEXTURE_UNIT_NV 0x332D +#define EGL_YUV_PLANE2_TEXTURE_UNIT_NV 0x332E +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERGLTEXTUREEXTERNALATTRIBSNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerGLTextureExternalAttribsNV (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#endif +#endif /* EGL_NV_stream_consumer_gltexture_yuv */ + +#ifndef EGL_NV_stream_cross_display +#define EGL_NV_stream_cross_display 1 +#define EGL_STREAM_CROSS_DISPLAY_NV 0x334E +#endif /* EGL_NV_stream_cross_display */ + +#ifndef EGL_NV_stream_cross_object +#define EGL_NV_stream_cross_object 1 +#define EGL_STREAM_CROSS_OBJECT_NV 0x334D +#endif /* EGL_NV_stream_cross_object */ + +#ifndef EGL_NV_stream_cross_partition +#define EGL_NV_stream_cross_partition 1 +#define EGL_STREAM_CROSS_PARTITION_NV 0x323F +#endif /* EGL_NV_stream_cross_partition */ + +#ifndef EGL_NV_stream_cross_process +#define EGL_NV_stream_cross_process 1 +#define EGL_STREAM_CROSS_PROCESS_NV 0x3245 +#endif /* EGL_NV_stream_cross_process */ + +#ifndef EGL_NV_stream_cross_system +#define EGL_NV_stream_cross_system 1 +#define EGL_STREAM_CROSS_SYSTEM_NV 0x334F +#endif /* EGL_NV_stream_cross_system */ + +#ifndef EGL_NV_stream_dma +#define EGL_NV_stream_dma 1 +#define EGL_STREAM_DMA_NV 0x3371 +#define EGL_STREAM_DMA_SERVER_NV 0x3372 +#endif /* EGL_NV_stream_dma */ + +#ifndef EGL_NV_stream_fifo_next +#define EGL_NV_stream_fifo_next 1 +#define EGL_PENDING_FRAME_NV 0x3329 +#define EGL_STREAM_TIME_PENDING_NV 0x332A +#endif /* EGL_NV_stream_fifo_next */ + +#ifndef EGL_NV_stream_fifo_synchronous +#define EGL_NV_stream_fifo_synchronous 1 +#define EGL_STREAM_FIFO_SYNCHRONOUS_NV 0x3336 +#endif /* EGL_NV_stream_fifo_synchronous */ + +#ifndef EGL_NV_stream_flush +#define EGL_NV_stream_flush 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMFLUSHNVPROC) (EGLDisplay dpy, EGLStreamKHR stream); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamFlushNV (EGLDisplay dpy, EGLStreamKHR stream); +#endif +#endif /* EGL_NV_stream_flush */ + +#ifndef EGL_NV_stream_frame_limits +#define EGL_NV_stream_frame_limits 1 +#define EGL_PRODUCER_MAX_FRAME_HINT_NV 0x3337 +#define EGL_CONSUMER_MAX_FRAME_HINT_NV 0x3338 +#endif /* EGL_NV_stream_frame_limits */ + +#ifndef EGL_NV_stream_metadata +#define EGL_NV_stream_metadata 1 +#define EGL_MAX_STREAM_METADATA_BLOCKS_NV 0x3250 +#define EGL_MAX_STREAM_METADATA_BLOCK_SIZE_NV 0x3251 +#define EGL_MAX_STREAM_METADATA_TOTAL_SIZE_NV 0x3252 +#define EGL_PRODUCER_METADATA_NV 0x3253 +#define EGL_CONSUMER_METADATA_NV 0x3254 +#define EGL_PENDING_METADATA_NV 0x3328 +#define EGL_METADATA0_SIZE_NV 0x3255 +#define EGL_METADATA1_SIZE_NV 0x3256 +#define EGL_METADATA2_SIZE_NV 0x3257 +#define EGL_METADATA3_SIZE_NV 0x3258 +#define EGL_METADATA0_TYPE_NV 0x3259 +#define EGL_METADATA1_TYPE_NV 0x325A +#define EGL_METADATA2_TYPE_NV 0x325B +#define EGL_METADATA3_TYPE_NV 0x325C +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBNVPROC) (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETSTREAMMETADATANVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLint n, EGLint offset, EGLint size, const void *data); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMMETADATANVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum name, EGLint n, EGLint offset, EGLint size, void *data); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribNV (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +EGLAPI EGLBoolean EGLAPIENTRY eglSetStreamMetadataNV (EGLDisplay dpy, EGLStreamKHR stream, EGLint n, EGLint offset, EGLint size, const void *data); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamMetadataNV (EGLDisplay dpy, EGLStreamKHR stream, EGLenum name, EGLint n, EGLint offset, EGLint size, void *data); +#endif +#endif /* EGL_NV_stream_metadata */ + +#ifndef EGL_NV_stream_origin +#define EGL_NV_stream_origin 1 +#define EGL_STREAM_FRAME_ORIGIN_X_NV 0x3366 +#define EGL_STREAM_FRAME_ORIGIN_Y_NV 0x3367 +#define EGL_STREAM_FRAME_MAJOR_AXIS_NV 0x3368 +#define EGL_CONSUMER_AUTO_ORIENTATION_NV 0x3369 +#define EGL_PRODUCER_AUTO_ORIENTATION_NV 0x336A +#define EGL_LEFT_NV 0x336B +#define EGL_RIGHT_NV 0x336C +#define EGL_TOP_NV 0x336D +#define EGL_BOTTOM_NV 0x336E +#define EGL_X_AXIS_NV 0x336F +#define EGL_Y_AXIS_NV 0x3370 +#endif /* EGL_NV_stream_origin */ + +#ifndef EGL_NV_stream_remote +#define EGL_NV_stream_remote 1 +#define EGL_STREAM_STATE_INITIALIZING_NV 0x3240 +#define EGL_STREAM_TYPE_NV 0x3241 +#define EGL_STREAM_PROTOCOL_NV 0x3242 +#define EGL_STREAM_ENDPOINT_NV 0x3243 +#define EGL_STREAM_LOCAL_NV 0x3244 +#define EGL_STREAM_PRODUCER_NV 0x3247 +#define EGL_STREAM_CONSUMER_NV 0x3248 +#define EGL_STREAM_PROTOCOL_FD_NV 0x3246 +#endif /* EGL_NV_stream_remote */ + +#ifndef EGL_NV_stream_reset +#define EGL_NV_stream_reset 1 +#define EGL_SUPPORT_RESET_NV 0x3334 +#define EGL_SUPPORT_REUSE_NV 0x3335 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLRESETSTREAMNVPROC) (EGLDisplay dpy, EGLStreamKHR stream); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglResetStreamNV (EGLDisplay dpy, EGLStreamKHR stream); +#endif +#endif /* EGL_NV_stream_reset */ + +#ifndef EGL_NV_stream_socket +#define EGL_NV_stream_socket 1 +#define EGL_STREAM_PROTOCOL_SOCKET_NV 0x324B +#define EGL_SOCKET_HANDLE_NV 0x324C +#define EGL_SOCKET_TYPE_NV 0x324D +#endif /* EGL_NV_stream_socket */ + +#ifndef EGL_NV_stream_socket_inet +#define EGL_NV_stream_socket_inet 1 +#define EGL_SOCKET_TYPE_INET_NV 0x324F +#endif /* EGL_NV_stream_socket_inet */ + +#ifndef EGL_NV_stream_socket_unix +#define EGL_NV_stream_socket_unix 1 +#define EGL_SOCKET_TYPE_UNIX_NV 0x324E +#endif /* EGL_NV_stream_socket_unix */ + +#ifndef EGL_NV_stream_sync +#define EGL_NV_stream_sync 1 +#define EGL_SYNC_NEW_FRAME_NV 0x321F +typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESTREAMSYNCNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum type, const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateStreamSyncNV (EGLDisplay dpy, EGLStreamKHR stream, EGLenum type, const EGLint *attrib_list); +#endif +#endif /* EGL_NV_stream_sync */ + +#ifndef EGL_NV_sync +#define EGL_NV_sync 1 +typedef void *EGLSyncNV; +typedef khronos_utime_nanoseconds_t EGLTimeNV; +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE_NV 0x30E6 +#define EGL_SYNC_STATUS_NV 0x30E7 +#define EGL_SIGNALED_NV 0x30E8 +#define EGL_UNSIGNALED_NV 0x30E9 +#define EGL_SYNC_FLUSH_COMMANDS_BIT_NV 0x0001 +#define EGL_FOREVER_NV 0xFFFFFFFFFFFFFFFFull +#define EGL_ALREADY_SIGNALED_NV 0x30EA +#define EGL_TIMEOUT_EXPIRED_NV 0x30EB +#define EGL_CONDITION_SATISFIED_NV 0x30EC +#define EGL_SYNC_TYPE_NV 0x30ED +#define EGL_SYNC_CONDITION_NV 0x30EE +#define EGL_SYNC_FENCE_NV 0x30EF +#define EGL_NO_SYNC_NV EGL_CAST(EGLSyncNV,0) +typedef EGLSyncNV (EGLAPIENTRYP PFNEGLCREATEFENCESYNCNVPROC) (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCNVPROC) (EGLSyncNV sync); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLFENCENVPROC) (EGLSyncNV sync); +typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCNVPROC) (EGLSyncNV sync, EGLint flags, EGLTimeNV timeout); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSIGNALSYNCNVPROC) (EGLSyncNV sync, EGLenum mode); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBNVPROC) (EGLSyncNV sync, EGLint attribute, EGLint *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncNV EGLAPIENTRY eglCreateFenceSyncNV (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncNV (EGLSyncNV sync); +EGLAPI EGLBoolean EGLAPIENTRY eglFenceNV (EGLSyncNV sync); +EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncNV (EGLSyncNV sync, EGLint flags, EGLTimeNV timeout); +EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncNV (EGLSyncNV sync, EGLenum mode); +EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribNV (EGLSyncNV sync, EGLint attribute, EGLint *value); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_NV_sync */ + +#ifndef EGL_NV_system_time +#define EGL_NV_system_time 1 +typedef khronos_utime_nanoseconds_t EGLuint64NV; +#ifdef KHRONOS_SUPPORT_INT64 +typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMEFREQUENCYNVPROC) (void); +typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMENVPROC) (void); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeFrequencyNV (void); +EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeNV (void); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_NV_system_time */ + +#ifndef EGL_NV_triple_buffer +#define EGL_NV_triple_buffer 1 +#define EGL_TRIPLE_BUFFER_NV 0x3230 +#endif /* EGL_NV_triple_buffer */ + +#ifndef EGL_TIZEN_image_native_buffer +#define EGL_TIZEN_image_native_buffer 1 +#define EGL_NATIVE_BUFFER_TIZEN 0x32A0 +#endif /* EGL_TIZEN_image_native_buffer */ + +#ifndef EGL_TIZEN_image_native_surface +#define EGL_TIZEN_image_native_surface 1 +#define EGL_NATIVE_SURFACE_TIZEN 0x32A1 +#endif /* EGL_TIZEN_image_native_surface */ + +#ifndef EGL_WL_bind_wayland_display +#define EGL_WL_bind_wayland_display 1 +#define PFNEGLBINDWAYLANDDISPLAYWL PFNEGLBINDWAYLANDDISPLAYWLPROC +#define PFNEGLUNBINDWAYLANDDISPLAYWL PFNEGLUNBINDWAYLANDDISPLAYWLPROC +#define PFNEGLQUERYWAYLANDBUFFERWL PFNEGLQUERYWAYLANDBUFFERWLPROC +struct wl_display; +struct wl_resource; +#define EGL_WAYLAND_BUFFER_WL 0x31D5 +#define EGL_WAYLAND_PLANE_WL 0x31D6 +#define EGL_TEXTURE_Y_U_V_WL 0x31D7 +#define EGL_TEXTURE_Y_UV_WL 0x31D8 +#define EGL_TEXTURE_Y_XUXV_WL 0x31D9 +#define EGL_TEXTURE_EXTERNAL_WL 0x31DA +#define EGL_WAYLAND_Y_INVERTED_WL 0x31DB +typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDWAYLANDDISPLAYWLPROC) (EGLDisplay dpy, struct wl_display *display); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNBINDWAYLANDDISPLAYWLPROC) (EGLDisplay dpy, struct wl_display *display); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYWAYLANDBUFFERWLPROC) (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglBindWaylandDisplayWL (EGLDisplay dpy, struct wl_display *display); +EGLAPI EGLBoolean EGLAPIENTRY eglUnbindWaylandDisplayWL (EGLDisplay dpy, struct wl_display *display); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryWaylandBufferWL (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value); +#endif +#endif /* EGL_WL_bind_wayland_display */ + +#ifndef EGL_WL_create_wayland_buffer_from_image +#define EGL_WL_create_wayland_buffer_from_image 1 +#define PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWL PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWLPROC +struct wl_buffer; +typedef struct wl_buffer *(EGLAPIENTRYP PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWLPROC) (EGLDisplay dpy, EGLImageKHR image); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI struct wl_buffer *EGLAPIENTRY eglCreateWaylandBufferFromImageWL (EGLDisplay dpy, EGLImageKHR image); +#endif +#endif /* EGL_WL_create_wayland_buffer_from_image */ + +#ifdef __cplusplus +} +#endif + +#endif /* __eglext_h_ */ + +#endif /* _MSC_VER */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_endian.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_endian.h new file mode 100644 index 0000000..2a9b8a3 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_endian.h @@ -0,0 +1,645 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryEndian + * + * Functions converting endian-specific values to different byte orders. + * + * These functions either unconditionally swap byte order (SDL_Swap16, + * SDL_Swap32, SDL_Swap64, SDL_SwapFloat), or they swap to/from the system's + * native byte order (SDL_Swap16LE, SDL_Swap16BE, SDL_Swap32LE, SDL_Swap32BE, + * SDL_Swap32LE, SDL_Swap32BE, SDL_SwapFloatLE, SDL_SwapFloatBE). In the + * latter case, the functionality is provided by macros that become no-ops if + * a swap isn't necessary: on an x86 (littleendian) processor, SDL_Swap32LE + * does nothing, but SDL_Swap32BE reverses the bytes of the data. On a PowerPC + * processor (bigendian), the macros behavior is reversed. + * + * The swap routines are inline functions, and attempt to use compiler + * intrinsics, inline assembly, and other magic to make byteswapping + * efficient. + */ + +#ifndef SDL_endian_h_ +#define SDL_endian_h_ + +#include + +#if defined(_MSC_VER) && (_MSC_VER >= 1400) +/* As of Clang 11, '_m_prefetchw' is conflicting with the winnt.h's version, + so we define the needed '_m_prefetch' here as a pseudo-header, until the issue is fixed. */ +#ifdef __clang__ +#ifndef __PRFCHWINTRIN_H +#define __PRFCHWINTRIN_H +static __inline__ void __attribute__((__always_inline__, __nodebug__)) +_m_prefetch(void *__P) +{ + __builtin_prefetch(__P, 0, 3 /* _MM_HINT_T0 */); +} +#endif /* __PRFCHWINTRIN_H */ +#endif /* __clang__ */ + +#include +#endif + +/** + * \name The two types of endianness + */ +/* @{ */ + + +/** + * A value to represent littleendian byteorder. + * + * This is used with the preprocessor macro SDL_BYTEORDER, to determine a + * platform's byte ordering: + * + * ```c + * #if SDL_BYTEORDER == SDL_LIL_ENDIAN + * SDL_Log("This system is littleendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BYTEORDER + * \sa SDL_BIG_ENDIAN + */ +#define SDL_LIL_ENDIAN 1234 + +/** + * A value to represent bigendian byteorder. + * + * This is used with the preprocessor macro SDL_BYTEORDER, to determine a + * platform's byte ordering: + * + * ```c + * #if SDL_BYTEORDER == SDL_BIG_ENDIAN + * SDL_Log("This system is bigendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BYTEORDER + * \sa SDL_LIL_ENDIAN + */ +#define SDL_BIG_ENDIAN 4321 + +/* @} */ + +#ifndef SDL_BYTEORDER +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro that reports the target system's byte order. + * + * This is set to either SDL_LIL_ENDIAN or SDL_BIG_ENDIAN (and maybe other + * values in the future, if something else becomes popular). This can be + * tested with the preprocessor, so decisions can be made at compile time. + * + * ```c + * #if SDL_BYTEORDER == SDL_BIG_ENDIAN + * SDL_Log("This system is bigendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LIL_ENDIAN + * \sa SDL_BIG_ENDIAN + */ +#define SDL_BYTEORDER SDL_LIL_ENDIAN___or_maybe___SDL_BIG_ENDIAN +#elif defined(SDL_PLATFORM_LINUX) +#include +#define SDL_BYTEORDER __BYTE_ORDER +#elif defined(SDL_PLATFORM_SOLARIS) +#include +#if defined(_LITTLE_ENDIAN) +#define SDL_BYTEORDER SDL_LIL_ENDIAN +#elif defined(_BIG_ENDIAN) +#define SDL_BYTEORDER SDL_BIG_ENDIAN +#else +#error Unsupported endianness +#endif +#elif defined(SDL_PLATFORM_OPENBSD) || defined(__DragonFly__) +#include +#define SDL_BYTEORDER BYTE_ORDER +#elif defined(SDL_PLATFORM_FREEBSD) || defined(SDL_PLATFORM_NETBSD) +#include +#define SDL_BYTEORDER BYTE_ORDER +/* predefs from newer gcc and clang versions: */ +#elif defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__) && defined(__BYTE_ORDER__) +#if (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) +#define SDL_BYTEORDER SDL_LIL_ENDIAN +#elif (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__) +#define SDL_BYTEORDER SDL_BIG_ENDIAN +#else +#error Unsupported endianness +#endif /**/ +#else +#if defined(__hppa__) || \ + defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \ + (defined(__MIPS__) && defined(__MIPSEB__)) || \ + defined(__ppc__) || defined(__POWERPC__) || defined(__powerpc__) || defined(__PPC__) || \ + defined(__sparc__) || defined(__sparc) +#define SDL_BYTEORDER SDL_BIG_ENDIAN +#else +#define SDL_BYTEORDER SDL_LIL_ENDIAN +#endif +#endif /* SDL_PLATFORM_LINUX */ +#endif /* !SDL_BYTEORDER */ + +#ifndef SDL_FLOATWORDORDER +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro that reports the target system's floating point word order. + * + * This is set to either SDL_LIL_ENDIAN or SDL_BIG_ENDIAN (and maybe other + * values in the future, if something else becomes popular). This can be + * tested with the preprocessor, so decisions can be made at compile time. + * + * ```c + * #if SDL_FLOATWORDORDER == SDL_BIG_ENDIAN + * SDL_Log("This system's floats are bigendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LIL_ENDIAN + * \sa SDL_BIG_ENDIAN + */ +#define SDL_FLOATWORDORDER SDL_LIL_ENDIAN___or_maybe___SDL_BIG_ENDIAN +/* predefs from newer gcc versions: */ +#elif defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__) && defined(__FLOAT_WORD_ORDER__) +#if (__FLOAT_WORD_ORDER__ == __ORDER_LITTLE_ENDIAN__) +#define SDL_FLOATWORDORDER SDL_LIL_ENDIAN +#elif (__FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__) +#define SDL_FLOATWORDORDER SDL_BIG_ENDIAN +#else +#error Unsupported endianness +#endif /**/ +#elif defined(__MAVERICK__) +/* For Maverick, float words are always little-endian. */ +#define SDL_FLOATWORDORDER SDL_LIL_ENDIAN +#elif (defined(__arm__) || defined(__thumb__)) && !defined(__VFP_FP__) && !defined(__ARM_EABI__) +/* For FPA, float words are always big-endian. */ +#define SDL_FLOATWORDORDER SDL_BIG_ENDIAN +#else +/* By default, assume that floats words follow the memory system mode. */ +#define SDL_FLOATWORDORDER SDL_BYTEORDER +#endif /* __FLOAT_WORD_ORDER__ */ +#endif /* !SDL_FLOATWORDORDER */ + + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* various modern compilers may have builtin swap */ +#if defined(__GNUC__) || defined(__clang__) +# define HAS_BUILTIN_BSWAP16 (SDL_HAS_BUILTIN(__builtin_bswap16)) || \ + (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)) +# define HAS_BUILTIN_BSWAP32 (SDL_HAS_BUILTIN(__builtin_bswap32)) || \ + (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) +# define HAS_BUILTIN_BSWAP64 (SDL_HAS_BUILTIN(__builtin_bswap64)) || \ + (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) + + /* this one is broken */ +# define HAS_BROKEN_BSWAP (__GNUC__ == 2 && __GNUC_MINOR__ <= 95) +#else +# define HAS_BUILTIN_BSWAP16 0 +# define HAS_BUILTIN_BSWAP32 0 +# define HAS_BUILTIN_BSWAP64 0 +# define HAS_BROKEN_BSWAP 0 +#endif + +/* Byte swap 16-bit integer. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if HAS_BUILTIN_BSWAP16 +#define SDL_Swap16(x) __builtin_bswap16(x) +#elif (defined(_MSC_VER) && (_MSC_VER >= 1400)) && !defined(__ICL) +#pragma intrinsic(_byteswap_ushort) +#define SDL_Swap16(x) _byteswap_ushort(x) +#elif defined(__i386__) && !HAS_BROKEN_BSWAP +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + __asm__("xchgb %b0,%h0": "=q"(x):"0"(x)); + return x; +} +#elif defined(__x86_64__) +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + __asm__("xchgb %b0,%h0": "=Q"(x):"0"(x)); + return x; +} +#elif (defined(__powerpc__) || defined(__ppc__)) +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + int result; + + __asm__("rlwimi %0,%2,8,16,23": "=&r"(result):"0"(x >> 8), "r"(x)); + return (Uint16)result; +} +#elif (defined(__m68k__) && !defined(__mcoldfire__)) +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + __asm__("rorw #8,%0": "=d"(x): "0"(x):"cc"); + return x; +} +#elif defined(__WATCOMC__) && defined(__386__) +extern __inline Uint16 SDL_Swap16(Uint16); +#pragma aux SDL_Swap16 = \ + "xchg al, ah" \ + parm [ax] \ + modify [ax]; +#else +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + return SDL_static_cast(Uint16, ((x << 8) | (x >> 8))); +} +#endif +#endif + +/* Byte swap 32-bit integer. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if HAS_BUILTIN_BSWAP32 +#define SDL_Swap32(x) __builtin_bswap32(x) +#elif (defined(_MSC_VER) && (_MSC_VER >= 1400)) && !defined(__ICL) +#pragma intrinsic(_byteswap_ulong) +#define SDL_Swap32(x) _byteswap_ulong(x) +#elif defined(__i386__) && !HAS_BROKEN_BSWAP +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + __asm__("bswap %0": "=r"(x):"0"(x)); + return x; +} +#elif defined(__x86_64__) +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + __asm__("bswapl %0": "=r"(x):"0"(x)); + return x; +} +#elif (defined(__powerpc__) || defined(__ppc__)) +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + Uint32 result; + + __asm__("rlwimi %0,%2,24,16,23": "=&r"(result): "0" (x>>24), "r"(x)); + __asm__("rlwimi %0,%2,8,8,15" : "=&r"(result): "0" (result), "r"(x)); + __asm__("rlwimi %0,%2,24,0,7" : "=&r"(result): "0" (result), "r"(x)); + return result; +} +#elif (defined(__m68k__) && !defined(__mcoldfire__)) +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + __asm__("rorw #8,%0\n\tswap %0\n\trorw #8,%0": "=d"(x): "0"(x):"cc"); + return x; +} +#elif defined(__WATCOMC__) && defined(__386__) +extern __inline Uint32 SDL_Swap32(Uint32); +#pragma aux SDL_Swap32 = \ + "bswap eax" \ + parm [eax] \ + modify [eax]; +#else +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + return SDL_static_cast(Uint32, ((x << 24) | ((x << 8) & 0x00FF0000) | + ((x >> 8) & 0x0000FF00) | (x >> 24))); +} +#endif +#endif + +/* Byte swap 64-bit integer. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if HAS_BUILTIN_BSWAP64 +#define SDL_Swap64(x) __builtin_bswap64(x) +#elif (defined(_MSC_VER) && (_MSC_VER >= 1400)) && !defined(__ICL) +#pragma intrinsic(_byteswap_uint64) +#define SDL_Swap64(x) _byteswap_uint64(x) +#elif defined(__i386__) && !HAS_BROKEN_BSWAP +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) +{ + union { + struct { + Uint32 a, b; + } s; + Uint64 u; + } v; + v.u = x; + __asm__("bswapl %0 ; bswapl %1 ; xchgl %0,%1" + : "=r"(v.s.a), "=r"(v.s.b) + : "0" (v.s.a), "1"(v.s.b)); + return v.u; +} +#elif defined(__x86_64__) +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) +{ + __asm__("bswapq %0": "=r"(x):"0"(x)); + return x; +} +#elif defined(__WATCOMC__) && defined(__386__) +extern __inline Uint64 SDL_Swap64(Uint64); +#pragma aux SDL_Swap64 = \ + "bswap eax" \ + "bswap edx" \ + "xchg eax,edx" \ + parm [eax edx] \ + modify [eax edx]; +#else +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) +{ + Uint32 hi, lo; + + /* Separate into high and low 32-bit values and swap them */ + lo = SDL_static_cast(Uint32, x & 0xFFFFFFFF); + x >>= 32; + hi = SDL_static_cast(Uint32, x & 0xFFFFFFFF); + x = SDL_Swap32(lo); + x <<= 32; + x |= SDL_Swap32(hi); + return (x); +} +#endif +#endif + +/** + * Byte-swap a floating point number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_SwapFloatLE or + * SDL_SwapFloatBE instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns x, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE float SDL_SwapFloat(float x) +{ + union { + float f; + Uint32 ui32; + } swapper; + swapper.f = x; + swapper.ui32 = SDL_Swap32(swapper.ui32); + return swapper.f; +} + +/* remove extra macros */ +#undef HAS_BROKEN_BSWAP +#undef HAS_BUILTIN_BSWAP16 +#undef HAS_BUILTIN_BSWAP32 +#undef HAS_BUILTIN_BSWAP64 + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Byte-swap an unsigned 16-bit number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_Swap16LE or SDL_Swap16BE + * instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns `x`, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) { return x_but_byteswapped; } + +/** + * Byte-swap an unsigned 32-bit number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_Swap32LE or SDL_Swap32BE + * instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns `x`, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) { return x_but_byteswapped; } + +/** + * Byte-swap an unsigned 64-bit number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_Swap64LE or SDL_Swap64BE + * instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns `x`, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) { return x_but_byteswapped; } + +/** + * Swap a 16-bit value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap16LE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 32-bit value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap32LE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 64-bit value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap64LE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a floating point value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SwapFloatLE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 16-bit value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap16BE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 32-bit value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap32BE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 64-bit value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap64BE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a floating point value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SwapFloatBE(x) SwapOnlyIfNecessary(x) + +#elif SDL_BYTEORDER == SDL_LIL_ENDIAN +#define SDL_Swap16LE(x) (x) +#define SDL_Swap32LE(x) (x) +#define SDL_Swap64LE(x) (x) +#define SDL_SwapFloatLE(x) (x) +#define SDL_Swap16BE(x) SDL_Swap16(x) +#define SDL_Swap32BE(x) SDL_Swap32(x) +#define SDL_Swap64BE(x) SDL_Swap64(x) +#define SDL_SwapFloatBE(x) SDL_SwapFloat(x) +#else +#define SDL_Swap16LE(x) SDL_Swap16(x) +#define SDL_Swap32LE(x) SDL_Swap32(x) +#define SDL_Swap64LE(x) SDL_Swap64(x) +#define SDL_SwapFloatLE(x) SDL_SwapFloat(x) +#define SDL_Swap16BE(x) (x) +#define SDL_Swap32BE(x) (x) +#define SDL_Swap64BE(x) (x) +#define SDL_SwapFloatBE(x) (x) +#endif + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_endian_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_error.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_error.h new file mode 100644 index 0000000..934967c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_error.h @@ -0,0 +1,226 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryError + * + * Simple error message routines for SDL. + * + * Most apps will interface with these APIs in exactly one function: when + * almost any SDL function call reports failure, you can get a human-readable + * string of the problem from SDL_GetError(). + * + * These strings are maintained per-thread, and apps are welcome to set their + * own errors, which is popular when building libraries on top of SDL for + * other apps to consume. These strings are set by calling SDL_SetError(). + * + * A common usage pattern is to have a function that returns true for success + * and false for failure, and do this when something fails: + * + * ```c + * if (something_went_wrong) { + * return SDL_SetError("The thing broke in this specific way: %d", errcode); + * } + * ``` + * + * It's also common to just return `false` in this case if the failing thing + * is known to call SDL_SetError(), so errors simply propagate through. + */ + +#ifndef SDL_error_h_ +#define SDL_error_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Public functions */ + + +/** + * Set the SDL error message for the current thread. + * + * Calling this function will replace any previous error message that was set. + * + * This function always returns false, since SDL frequently uses false to + * signify a failing result, leading to this idiom: + * + * ```c + * if (error_code) { + * return SDL_SetError("This operation has failed: %d", error_code); + * } + * ``` + * + * \param fmt a printf()-style message format string. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * \returns false. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearError + * \sa SDL_GetError + * \sa SDL_SetErrorV + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetError(SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(1); + +/** + * Set the SDL error message for the current thread. + * + * Calling this function will replace any previous error message that was set. + * + * \param fmt a printf()-style message format string. + * \param ap a variable argument list. + * \returns false. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearError + * \sa SDL_GetError + * \sa SDL_SetError + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetErrorV(SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(1); + +/** + * Set an error indicating that memory allocation failed. + * + * This function does not do any memory allocation. + * + * \returns false. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_OutOfMemory(void); + +/** + * Retrieve a message about the last error that occurred on the current + * thread. + * + * It is possible for multiple errors to occur before calling SDL_GetError(). + * Only the last error is returned. + * + * The message is only applicable when an SDL function has signaled an error. + * You must check the return values of SDL function calls to determine when to + * appropriately call SDL_GetError(). You should *not* use the results of + * SDL_GetError() to decide if an error has occurred! Sometimes SDL will set + * an error string even when reporting success. + * + * SDL will *not* clear the error string for successful API calls. You *must* + * check return values for failure cases before you can assume the error + * string applies. + * + * Error strings are set per-thread, so an error set in a different thread + * will not interfere with the current thread's operation. + * + * The returned value is a thread-local string which will remain valid until + * the current thread's error string is changed. The caller should make a copy + * if the value is needed after the next SDL API call. + * + * \returns a message with information about the specific error that occurred, + * or an empty string if there hasn't been an error message set since + * the last call to SDL_ClearError(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearError + * \sa SDL_SetError + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetError(void); + +/** + * Clear any previous error message for this thread. + * + * \returns true. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetError + * \sa SDL_SetError + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearError(void); + +/** + * \name Internal error functions + * + * \internal + * Private error reporting function - used internally. + */ +/* @{ */ + +/** + * A macro to standardize error reporting on unsupported operations. + * + * This simply calls SDL_SetError() with a standardized error string, for + * convenience, consistency, and clarity. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Unsupported() SDL_SetError("That operation is not supported") + +/** + * A macro to standardize error reporting on unsupported operations. + * + * This simply calls SDL_SetError() with a standardized error string, for + * convenience, consistency, and clarity. + * + * A common usage pattern inside SDL is this: + * + * ```c + * bool MyFunction(const char *str) { + * if (!str) { + * return SDL_InvalidParamError("str"); // returns false. + * } + * DoSomething(str); + * return true; + * } + * ``` + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_InvalidParamError(param) SDL_SetError("Parameter '%s' is invalid", (param)) + +/* @} *//* Internal error functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_error_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_events.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_events.h new file mode 100644 index 0000000..d267f05 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_events.h @@ -0,0 +1,1576 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryEvents + * + * Event queue management. + * + * It's extremely common--often required--that an app deal with SDL's event + * queue. Almost all useful information about interactions with the real world + * flow through here: the user interacting with the computer and app, hardware + * coming and going, the system changing in some way, etc. + * + * An app generally takes a moment, perhaps at the start of a new frame, to + * examine any events that have occured since the last time and process or + * ignore them. This is generally done by calling SDL_PollEvent() in a loop + * until it returns false (or, if using the main callbacks, events are + * provided one at a time in calls to SDL_AppEvent() before the next call to + * SDL_AppIterate(); in this scenario, the app does not call SDL_PollEvent() + * at all). + * + * There is other forms of control, too: SDL_PeepEvents() has more + * functionality at the cost of more complexity, and SDL_WaitEvent() can block + * the process until something interesting happens, which might be beneficial + * for certain types of programs on low-power hardware. One may also call + * SDL_AddEventWatch() to set a callback when new events arrive. + * + * The app is free to generate their own events, too: SDL_PushEvent allows the + * app to put events onto the queue for later retrieval; SDL_RegisterEvents + * can guarantee that these events have a type that isn't in use by other + * parts of the system. + */ + +#ifndef SDL_events_h_ +#define SDL_events_h_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* General keyboard/mouse/pen state definitions */ + +/** + * The types of events that can be delivered. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_EventType +{ + SDL_EVENT_FIRST = 0, /**< Unused (do not remove) */ + + /* Application events */ + SDL_EVENT_QUIT = 0x100, /**< User-requested quit */ + + /* These application events have special meaning on iOS and Android, see README-ios.md and README-android.md for details */ + SDL_EVENT_TERMINATING, /**< The application is being terminated by the OS. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationWillTerminate() + Called on Android in onDestroy() + */ + SDL_EVENT_LOW_MEMORY, /**< The application is low on memory, free memory if possible. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationDidReceiveMemoryWarning() + Called on Android in onTrimMemory() + */ + SDL_EVENT_WILL_ENTER_BACKGROUND, /**< The application is about to enter the background. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationWillResignActive() + Called on Android in onPause() + */ + SDL_EVENT_DID_ENTER_BACKGROUND, /**< The application did enter the background and may not get CPU for some time. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationDidEnterBackground() + Called on Android in onPause() + */ + SDL_EVENT_WILL_ENTER_FOREGROUND, /**< The application is about to enter the foreground. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationWillEnterForeground() + Called on Android in onResume() + */ + SDL_EVENT_DID_ENTER_FOREGROUND, /**< The application is now interactive. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationDidBecomeActive() + Called on Android in onResume() + */ + + SDL_EVENT_LOCALE_CHANGED, /**< The user's locale preferences have changed. */ + + SDL_EVENT_SYSTEM_THEME_CHANGED, /**< The system theme changed */ + + /* Display events */ + /* 0x150 was SDL_DISPLAYEVENT, reserve the number for sdl2-compat */ + SDL_EVENT_DISPLAY_ORIENTATION = 0x151, /**< Display orientation has changed to data1 */ + SDL_EVENT_DISPLAY_ADDED, /**< Display has been added to the system */ + SDL_EVENT_DISPLAY_REMOVED, /**< Display has been removed from the system */ + SDL_EVENT_DISPLAY_MOVED, /**< Display has changed position */ + SDL_EVENT_DISPLAY_DESKTOP_MODE_CHANGED, /**< Display has changed desktop mode */ + SDL_EVENT_DISPLAY_CURRENT_MODE_CHANGED, /**< Display has changed current mode */ + SDL_EVENT_DISPLAY_CONTENT_SCALE_CHANGED, /**< Display has changed content scale */ + SDL_EVENT_DISPLAY_FIRST = SDL_EVENT_DISPLAY_ORIENTATION, + SDL_EVENT_DISPLAY_LAST = SDL_EVENT_DISPLAY_CONTENT_SCALE_CHANGED, + + /* Window events */ + /* 0x200 was SDL_WINDOWEVENT, reserve the number for sdl2-compat */ + /* 0x201 was SDL_SYSWMEVENT, reserve the number for sdl2-compat */ + SDL_EVENT_WINDOW_SHOWN = 0x202, /**< Window has been shown */ + SDL_EVENT_WINDOW_HIDDEN, /**< Window has been hidden */ + SDL_EVENT_WINDOW_EXPOSED, /**< Window has been exposed and should be redrawn, and can be redrawn directly from event watchers for this event */ + SDL_EVENT_WINDOW_MOVED, /**< Window has been moved to data1, data2 */ + SDL_EVENT_WINDOW_RESIZED, /**< Window has been resized to data1xdata2 */ + SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED,/**< The pixel size of the window has changed to data1xdata2 */ + SDL_EVENT_WINDOW_METAL_VIEW_RESIZED,/**< The pixel size of a Metal view associated with the window has changed */ + SDL_EVENT_WINDOW_MINIMIZED, /**< Window has been minimized */ + SDL_EVENT_WINDOW_MAXIMIZED, /**< Window has been maximized */ + SDL_EVENT_WINDOW_RESTORED, /**< Window has been restored to normal size and position */ + SDL_EVENT_WINDOW_MOUSE_ENTER, /**< Window has gained mouse focus */ + SDL_EVENT_WINDOW_MOUSE_LEAVE, /**< Window has lost mouse focus */ + SDL_EVENT_WINDOW_FOCUS_GAINED, /**< Window has gained keyboard focus */ + SDL_EVENT_WINDOW_FOCUS_LOST, /**< Window has lost keyboard focus */ + SDL_EVENT_WINDOW_CLOSE_REQUESTED, /**< The window manager requests that the window be closed */ + SDL_EVENT_WINDOW_HIT_TEST, /**< Window had a hit test that wasn't SDL_HITTEST_NORMAL */ + SDL_EVENT_WINDOW_ICCPROF_CHANGED, /**< The ICC profile of the window's display has changed */ + SDL_EVENT_WINDOW_DISPLAY_CHANGED, /**< Window has been moved to display data1 */ + SDL_EVENT_WINDOW_DISPLAY_SCALE_CHANGED, /**< Window display scale has been changed */ + SDL_EVENT_WINDOW_SAFE_AREA_CHANGED, /**< The window safe area has been changed */ + SDL_EVENT_WINDOW_OCCLUDED, /**< The window has been occluded */ + SDL_EVENT_WINDOW_ENTER_FULLSCREEN, /**< The window has entered fullscreen mode */ + SDL_EVENT_WINDOW_LEAVE_FULLSCREEN, /**< The window has left fullscreen mode */ + SDL_EVENT_WINDOW_DESTROYED, /**< The window with the associated ID is being or has been destroyed. If this message is being handled + in an event watcher, the window handle is still valid and can still be used to retrieve any properties + associated with the window. Otherwise, the handle has already been destroyed and all resources + associated with it are invalid */ + SDL_EVENT_WINDOW_HDR_STATE_CHANGED, /**< Window HDR properties have changed */ + SDL_EVENT_WINDOW_FIRST = SDL_EVENT_WINDOW_SHOWN, + SDL_EVENT_WINDOW_LAST = SDL_EVENT_WINDOW_HDR_STATE_CHANGED, + + /* Keyboard events */ + SDL_EVENT_KEY_DOWN = 0x300, /**< Key pressed */ + SDL_EVENT_KEY_UP, /**< Key released */ + SDL_EVENT_TEXT_EDITING, /**< Keyboard text editing (composition) */ + SDL_EVENT_TEXT_INPUT, /**< Keyboard text input */ + SDL_EVENT_KEYMAP_CHANGED, /**< Keymap changed due to a system event such as an + input language or keyboard layout change. */ + SDL_EVENT_KEYBOARD_ADDED, /**< A new keyboard has been inserted into the system */ + SDL_EVENT_KEYBOARD_REMOVED, /**< A keyboard has been removed */ + SDL_EVENT_TEXT_EDITING_CANDIDATES, /**< Keyboard text editing candidates */ + + /* Mouse events */ + SDL_EVENT_MOUSE_MOTION = 0x400, /**< Mouse moved */ + SDL_EVENT_MOUSE_BUTTON_DOWN, /**< Mouse button pressed */ + SDL_EVENT_MOUSE_BUTTON_UP, /**< Mouse button released */ + SDL_EVENT_MOUSE_WHEEL, /**< Mouse wheel motion */ + SDL_EVENT_MOUSE_ADDED, /**< A new mouse has been inserted into the system */ + SDL_EVENT_MOUSE_REMOVED, /**< A mouse has been removed */ + + /* Joystick events */ + SDL_EVENT_JOYSTICK_AXIS_MOTION = 0x600, /**< Joystick axis motion */ + SDL_EVENT_JOYSTICK_BALL_MOTION, /**< Joystick trackball motion */ + SDL_EVENT_JOYSTICK_HAT_MOTION, /**< Joystick hat position change */ + SDL_EVENT_JOYSTICK_BUTTON_DOWN, /**< Joystick button pressed */ + SDL_EVENT_JOYSTICK_BUTTON_UP, /**< Joystick button released */ + SDL_EVENT_JOYSTICK_ADDED, /**< A new joystick has been inserted into the system */ + SDL_EVENT_JOYSTICK_REMOVED, /**< An opened joystick has been removed */ + SDL_EVENT_JOYSTICK_BATTERY_UPDATED, /**< Joystick battery level change */ + SDL_EVENT_JOYSTICK_UPDATE_COMPLETE, /**< Joystick update is complete */ + + /* Gamepad events */ + SDL_EVENT_GAMEPAD_AXIS_MOTION = 0x650, /**< Gamepad axis motion */ + SDL_EVENT_GAMEPAD_BUTTON_DOWN, /**< Gamepad button pressed */ + SDL_EVENT_GAMEPAD_BUTTON_UP, /**< Gamepad button released */ + SDL_EVENT_GAMEPAD_ADDED, /**< A new gamepad has been inserted into the system */ + SDL_EVENT_GAMEPAD_REMOVED, /**< A gamepad has been removed */ + SDL_EVENT_GAMEPAD_REMAPPED, /**< The gamepad mapping was updated */ + SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN, /**< Gamepad touchpad was touched */ + SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION, /**< Gamepad touchpad finger was moved */ + SDL_EVENT_GAMEPAD_TOUCHPAD_UP, /**< Gamepad touchpad finger was lifted */ + SDL_EVENT_GAMEPAD_SENSOR_UPDATE, /**< Gamepad sensor was updated */ + SDL_EVENT_GAMEPAD_UPDATE_COMPLETE, /**< Gamepad update is complete */ + SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED, /**< Gamepad Steam handle has changed */ + + /* Touch events */ + SDL_EVENT_FINGER_DOWN = 0x700, + SDL_EVENT_FINGER_UP, + SDL_EVENT_FINGER_MOTION, + SDL_EVENT_FINGER_CANCELED, + + /* 0x800, 0x801, and 0x802 were the Gesture events from SDL2. Do not reuse these values! sdl2-compat needs them! */ + + /* Clipboard events */ + SDL_EVENT_CLIPBOARD_UPDATE = 0x900, /**< The clipboard or primary selection changed */ + + /* Drag and drop events */ + SDL_EVENT_DROP_FILE = 0x1000, /**< The system requests a file open */ + SDL_EVENT_DROP_TEXT, /**< text/plain drag-and-drop event */ + SDL_EVENT_DROP_BEGIN, /**< A new set of drops is beginning (NULL filename) */ + SDL_EVENT_DROP_COMPLETE, /**< Current set of drops is now complete (NULL filename) */ + SDL_EVENT_DROP_POSITION, /**< Position while moving over the window */ + + /* Audio hotplug events */ + SDL_EVENT_AUDIO_DEVICE_ADDED = 0x1100, /**< A new audio device is available */ + SDL_EVENT_AUDIO_DEVICE_REMOVED, /**< An audio device has been removed. */ + SDL_EVENT_AUDIO_DEVICE_FORMAT_CHANGED, /**< An audio device's format has been changed by the system. */ + + /* Sensor events */ + SDL_EVENT_SENSOR_UPDATE = 0x1200, /**< A sensor was updated */ + + /* Pressure-sensitive pen events */ + SDL_EVENT_PEN_PROXIMITY_IN = 0x1300, /**< Pressure-sensitive pen has become available */ + SDL_EVENT_PEN_PROXIMITY_OUT, /**< Pressure-sensitive pen has become unavailable */ + SDL_EVENT_PEN_DOWN, /**< Pressure-sensitive pen touched drawing surface */ + SDL_EVENT_PEN_UP, /**< Pressure-sensitive pen stopped touching drawing surface */ + SDL_EVENT_PEN_BUTTON_DOWN, /**< Pressure-sensitive pen button pressed */ + SDL_EVENT_PEN_BUTTON_UP, /**< Pressure-sensitive pen button released */ + SDL_EVENT_PEN_MOTION, /**< Pressure-sensitive pen is moving on the tablet */ + SDL_EVENT_PEN_AXIS, /**< Pressure-sensitive pen angle/pressure/etc changed */ + + /* Camera hotplug events */ + SDL_EVENT_CAMERA_DEVICE_ADDED = 0x1400, /**< A new camera device is available */ + SDL_EVENT_CAMERA_DEVICE_REMOVED, /**< A camera device has been removed. */ + SDL_EVENT_CAMERA_DEVICE_APPROVED, /**< A camera device has been approved for use by the user. */ + SDL_EVENT_CAMERA_DEVICE_DENIED, /**< A camera device has been denied for use by the user. */ + + /* Render events */ + SDL_EVENT_RENDER_TARGETS_RESET = 0x2000, /**< The render targets have been reset and their contents need to be updated */ + SDL_EVENT_RENDER_DEVICE_RESET, /**< The device has been reset and all textures need to be recreated */ + SDL_EVENT_RENDER_DEVICE_LOST, /**< The device has been lost and can't be recovered. */ + + /* Reserved events for private platforms */ + SDL_EVENT_PRIVATE0 = 0x4000, + SDL_EVENT_PRIVATE1, + SDL_EVENT_PRIVATE2, + SDL_EVENT_PRIVATE3, + + /* Internal events */ + SDL_EVENT_POLL_SENTINEL = 0x7F00, /**< Signals the end of an event poll cycle */ + + /** Events SDL_EVENT_USER through SDL_EVENT_LAST are for your use, + * and should be allocated with SDL_RegisterEvents() + */ + SDL_EVENT_USER = 0x8000, + + /** + * This last event is only for bounding internal arrays + */ + SDL_EVENT_LAST = 0xFFFF, + + /* This just makes sure the enum is the size of Uint32 */ + SDL_EVENT_ENUM_PADDING = 0x7FFFFFFF + +} SDL_EventType; + +/** + * Fields shared by every event + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_CommonEvent +{ + Uint32 type; /**< Event type, shared with all events, Uint32 to cover user events which are not in the SDL_EventType enumeration */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ +} SDL_CommonEvent; + +/** + * Display state change event data (event.display.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_DisplayEvent +{ + SDL_EventType type; /**< SDL_DISPLAYEVENT_* */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_DisplayID displayID;/**< The associated display */ + Sint32 data1; /**< event dependent data */ + Sint32 data2; /**< event dependent data */ +} SDL_DisplayEvent; + +/** + * Window state change event data (event.window.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_WindowEvent +{ + SDL_EventType type; /**< SDL_EVENT_WINDOW_* */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The associated window */ + Sint32 data1; /**< event dependent data */ + Sint32 data2; /**< event dependent data */ +} SDL_WindowEvent; + +/** + * Keyboard device event structure (event.kdevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_KeyboardDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_KEYBOARD_ADDED or SDL_EVENT_KEYBOARD_REMOVED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_KeyboardID which; /**< The keyboard instance id */ +} SDL_KeyboardDeviceEvent; + +/** + * Keyboard button event structure (event.key.*) + * + * The `key` is the base SDL_Keycode generated by pressing the `scancode` + * using the current keyboard layout, applying any options specified in + * SDL_HINT_KEYCODE_OPTIONS. You can get the SDL_Keycode corresponding to the + * event scancode and modifiers directly from the keyboard layout, bypassing + * SDL_HINT_KEYCODE_OPTIONS, by calling SDL_GetKeyFromScancode(). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromScancode + * \sa SDL_HINT_KEYCODE_OPTIONS + */ +typedef struct SDL_KeyboardEvent +{ + SDL_EventType type; /**< SDL_EVENT_KEY_DOWN or SDL_EVENT_KEY_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + SDL_KeyboardID which; /**< The keyboard instance id, or 0 if unknown or virtual */ + SDL_Scancode scancode; /**< SDL physical key code */ + SDL_Keycode key; /**< SDL virtual key code */ + SDL_Keymod mod; /**< current key modifiers */ + Uint16 raw; /**< The platform dependent scancode for this event */ + bool down; /**< true if the key is pressed */ + bool repeat; /**< true if this is a key repeat */ +} SDL_KeyboardEvent; + +/** + * Keyboard text editing event structure (event.edit.*) + * + * The start cursor is the position, in UTF-8 characters, where new typing + * will be inserted into the editing text. The length is the number of UTF-8 + * characters that will be replaced by new typing. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TextEditingEvent +{ + SDL_EventType type; /**< SDL_EVENT_TEXT_EDITING */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + const char *text; /**< The editing text */ + Sint32 start; /**< The start cursor of selected editing text, or -1 if not set */ + Sint32 length; /**< The length of selected editing text, or -1 if not set */ +} SDL_TextEditingEvent; + +/** + * Keyboard IME candidates event structure (event.edit_candidates.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TextEditingCandidatesEvent +{ + SDL_EventType type; /**< SDL_EVENT_TEXT_EDITING_CANDIDATES */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + const char * const *candidates; /**< The list of candidates, or NULL if there are no candidates available */ + Sint32 num_candidates; /**< The number of strings in `candidates` */ + Sint32 selected_candidate; /**< The index of the selected candidate, or -1 if no candidate is selected */ + bool horizontal; /**< true if the list is horizontal, false if it's vertical */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_TextEditingCandidatesEvent; + +/** + * Keyboard text input event structure (event.text.*) + * + * This event will never be delivered unless text input is enabled by calling + * SDL_StartTextInput(). Text input is disabled by default! + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + * \sa SDL_StopTextInput + */ +typedef struct SDL_TextInputEvent +{ + SDL_EventType type; /**< SDL_EVENT_TEXT_INPUT */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + const char *text; /**< The input text, UTF-8 encoded */ +} SDL_TextInputEvent; + +/** + * Mouse device event structure (event.mdevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_ADDED or SDL_EVENT_MOUSE_REMOVED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_MouseID which; /**< The mouse instance id */ +} SDL_MouseDeviceEvent; + +/** + * Mouse motion event structure (event.motion.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseMotionEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_MouseID which; /**< The mouse instance id in relative mode, SDL_TOUCH_MOUSEID for touch events, or 0 */ + SDL_MouseButtonFlags state; /**< The current button state */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + float xrel; /**< The relative motion in the X direction */ + float yrel; /**< The relative motion in the Y direction */ +} SDL_MouseMotionEvent; + +/** + * Mouse button event structure (event.button.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_BUTTON_DOWN or SDL_EVENT_MOUSE_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_MouseID which; /**< The mouse instance id in relative mode, SDL_TOUCH_MOUSEID for touch events, or 0 */ + Uint8 button; /**< The mouse button index */ + bool down; /**< true if the button is pressed */ + Uint8 clicks; /**< 1 for single-click, 2 for double-click, etc. */ + Uint8 padding; + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ +} SDL_MouseButtonEvent; + +/** + * Mouse wheel event structure (event.wheel.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseWheelEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_WHEEL */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_MouseID which; /**< The mouse instance id in relative mode or 0 */ + float x; /**< The amount scrolled horizontally, positive to the right and negative to the left */ + float y; /**< The amount scrolled vertically, positive away from the user and negative toward the user */ + SDL_MouseWheelDirection direction; /**< Set to one of the SDL_MOUSEWHEEL_* defines. When FLIPPED the values in X and Y will be opposite. Multiply by -1 to change them back */ + float mouse_x; /**< X coordinate, relative to window */ + float mouse_y; /**< Y coordinate, relative to window */ + Sint32 integer_x; /**< The amount scrolled horizontally, accumulated to whole scroll "ticks" (added in 3.2.12) */ + Sint32 integer_y; /**< The amount scrolled vertically, accumulated to whole scroll "ticks" (added in 3.2.12) */ +} SDL_MouseWheelEvent; + +/** + * Joystick axis motion event structure (event.jaxis.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyAxisEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_AXIS_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 axis; /**< The joystick axis index */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 value; /**< The axis value (range: -32768 to 32767) */ + Uint16 padding4; +} SDL_JoyAxisEvent; + +/** + * Joystick trackball motion event structure (event.jball.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyBallEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_BALL_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 ball; /**< The joystick trackball index */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 xrel; /**< The relative motion in the X direction */ + Sint16 yrel; /**< The relative motion in the Y direction */ +} SDL_JoyBallEvent; + +/** + * Joystick hat position change event structure (event.jhat.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyHatEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_HAT_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 hat; /**< The joystick hat index */ + Uint8 value; /**< The hat position value. + * \sa SDL_HAT_LEFTUP SDL_HAT_UP SDL_HAT_RIGHTUP + * \sa SDL_HAT_LEFT SDL_HAT_CENTERED SDL_HAT_RIGHT + * \sa SDL_HAT_LEFTDOWN SDL_HAT_DOWN SDL_HAT_RIGHTDOWN + * + * Note that zero means the POV is centered. + */ + Uint8 padding1; + Uint8 padding2; +} SDL_JoyHatEvent; + +/** + * Joystick button event structure (event.jbutton.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_BUTTON_DOWN or SDL_EVENT_JOYSTICK_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 button; /**< The joystick button index */ + bool down; /**< true if the button is pressed */ + Uint8 padding1; + Uint8 padding2; +} SDL_JoyButtonEvent; + +/** + * Joystick device event structure (event.jdevice.*) + * + * SDL will send JOYSTICK_ADDED events for devices that are already plugged in + * during SDL_Init. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GamepadDeviceEvent + */ +typedef struct SDL_JoyDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_ADDED or SDL_EVENT_JOYSTICK_REMOVED or SDL_EVENT_JOYSTICK_UPDATE_COMPLETE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ +} SDL_JoyDeviceEvent; + +/** + * Joystick battery level change event structure (event.jbattery.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyBatteryEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_BATTERY_UPDATED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + SDL_PowerState state; /**< The joystick battery state */ + int percent; /**< The joystick battery percent charge remaining */ +} SDL_JoyBatteryEvent; + +/** + * Gamepad axis motion event structure (event.gaxis.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadAxisEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_AXIS_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 axis; /**< The gamepad axis (SDL_GamepadAxis) */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 value; /**< The axis value (range: -32768 to 32767) */ + Uint16 padding4; +} SDL_GamepadAxisEvent; + + +/** + * Gamepad button event structure (event.gbutton.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_BUTTON_DOWN or SDL_EVENT_GAMEPAD_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 button; /**< The gamepad button (SDL_GamepadButton) */ + bool down; /**< true if the button is pressed */ + Uint8 padding1; + Uint8 padding2; +} SDL_GamepadButtonEvent; + + +/** + * Gamepad device event structure (event.gdevice.*) + * + * Joysticks that are supported gamepads receive both an SDL_JoyDeviceEvent + * and an SDL_GamepadDeviceEvent. + * + * SDL will send GAMEPAD_ADDED events for joysticks that are already plugged + * in during SDL_Init() and are recognized as gamepads. It will also send + * events for joysticks that get gamepad mappings at runtime. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_JoyDeviceEvent + */ +typedef struct SDL_GamepadDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_ADDED, SDL_EVENT_GAMEPAD_REMOVED, or SDL_EVENT_GAMEPAD_REMAPPED, SDL_EVENT_GAMEPAD_UPDATE_COMPLETE or SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ +} SDL_GamepadDeviceEvent; + +/** + * Gamepad touchpad event structure (event.gtouchpad.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadTouchpadEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN or SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION or SDL_EVENT_GAMEPAD_TOUCHPAD_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Sint32 touchpad; /**< The index of the touchpad */ + Sint32 finger; /**< The index of the finger on the touchpad */ + float x; /**< Normalized in the range 0...1 with 0 being on the left */ + float y; /**< Normalized in the range 0...1 with 0 being at the top */ + float pressure; /**< Normalized in the range 0...1 */ +} SDL_GamepadTouchpadEvent; + +/** + * Gamepad sensor event structure (event.gsensor.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadSensorEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_SENSOR_UPDATE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Sint32 sensor; /**< The type of the sensor, one of the values of SDL_SensorType */ + float data[3]; /**< Up to 3 values from the sensor, as defined in SDL_sensor.h */ + Uint64 sensor_timestamp; /**< The timestamp of the sensor reading in nanoseconds, not necessarily synchronized with the system clock */ +} SDL_GamepadSensorEvent; + +/** + * Audio device event structure (event.adevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_AudioDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_AUDIO_DEVICE_ADDED, or SDL_EVENT_AUDIO_DEVICE_REMOVED, or SDL_EVENT_AUDIO_DEVICE_FORMAT_CHANGED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_AudioDeviceID which; /**< SDL_AudioDeviceID for the device being added or removed or changing */ + bool recording; /**< false if a playback device, true if a recording device. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_AudioDeviceEvent; + +/** + * Camera device event structure (event.cdevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_CameraDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_CAMERA_DEVICE_ADDED, SDL_EVENT_CAMERA_DEVICE_REMOVED, SDL_EVENT_CAMERA_DEVICE_APPROVED, SDL_EVENT_CAMERA_DEVICE_DENIED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_CameraID which; /**< SDL_CameraID for the device being added or removed or changing */ +} SDL_CameraDeviceEvent; + + +/** + * Renderer event structure (event.render.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_RenderEvent +{ + SDL_EventType type; /**< SDL_EVENT_RENDER_TARGETS_RESET, SDL_EVENT_RENDER_DEVICE_RESET, SDL_EVENT_RENDER_DEVICE_LOST */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window containing the renderer in question. */ +} SDL_RenderEvent; + + +/** + * Touch finger event structure (event.tfinger.*) + * + * Coordinates in this event are normalized. `x` and `y` are normalized to a + * range between 0.0f and 1.0f, relative to the window, so (0,0) is the top + * left and (1,1) is the bottom right. Delta coordinates `dx` and `dy` are + * normalized in the ranges of -1.0f (traversed all the way from the bottom or + * right to all the way up or left) to 1.0f (traversed all the way from the + * top or left to all the way down or right). + * + * Note that while the coordinates are _normalized_, they are not _clamped_, + * which means in some circumstances you can get a value outside of this + * range. For example, a renderer using logical presentation might give a + * negative value when the touch is in the letterboxing. Some platforms might + * report a touch outside of the window, which will also be outside of the + * range. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TouchFingerEvent +{ + SDL_EventType type; /**< SDL_EVENT_FINGER_DOWN, SDL_EVENT_FINGER_UP, SDL_EVENT_FINGER_MOTION, or SDL_EVENT_FINGER_CANCELED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_TouchID touchID; /**< The touch device id */ + SDL_FingerID fingerID; + float x; /**< Normalized in the range 0...1 */ + float y; /**< Normalized in the range 0...1 */ + float dx; /**< Normalized in the range -1...1 */ + float dy; /**< Normalized in the range -1...1 */ + float pressure; /**< Normalized in the range 0...1 */ + SDL_WindowID windowID; /**< The window underneath the finger, if any */ +} SDL_TouchFingerEvent; + +/** + * Pressure-sensitive pen proximity event structure (event.pmotion.*) + * + * When a pen becomes visible to the system (it is close enough to a tablet, + * etc), SDL will send an SDL_EVENT_PEN_PROXIMITY_IN event with the new pen's + * ID. This ID is valid until the pen leaves proximity again (has been removed + * from the tablet's area, the tablet has been unplugged, etc). If the same + * pen reenters proximity again, it will be given a new ID. + * + * Note that "proximity" means "close enough for the tablet to know the tool + * is there." The pen touching and lifting off from the tablet while not + * leaving the area are handled by SDL_EVENT_PEN_DOWN and SDL_EVENT_PEN_UP. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenProximityEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_PROXIMITY_IN or SDL_EVENT_PEN_PROXIMITY_OUT */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ +} SDL_PenProximityEvent; + +/** + * Pressure-sensitive pen motion event structure (event.pmotion.*) + * + * Depending on the hardware, you may get motion events when the pen is not + * touching a tablet, for tracking a pen even when it isn't drawing. You + * should listen for SDL_EVENT_PEN_DOWN and SDL_EVENT_PEN_UP events, or check + * `pen_state & SDL_PEN_INPUT_DOWN` to decide if a pen is "drawing" when + * dealing with pen motion. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenMotionEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ +} SDL_PenMotionEvent; + +/** + * Pressure-sensitive pen touched event structure (event.ptouch.*) + * + * These events come when a pen touches a surface (a tablet, etc), or lifts + * off from one. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenTouchEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_DOWN or SDL_EVENT_PEN_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + bool eraser; /**< true if eraser end is used (not all pens support this). */ + bool down; /**< true if the pen is touching or false if the pen is lifted off */ +} SDL_PenTouchEvent; + +/** + * Pressure-sensitive pen button event structure (event.pbutton.*) + * + * This is for buttons on the pen itself that the user might click. The pen + * itself pressing down to draw triggers a SDL_EVENT_PEN_DOWN event instead. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_BUTTON_DOWN or SDL_EVENT_PEN_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + Uint8 button; /**< The pen button index (first button is 1). */ + bool down; /**< true if the button is pressed */ +} SDL_PenButtonEvent; + +/** + * Pressure-sensitive pen pressure / angle event structure (event.paxis.*) + * + * You might get some of these events even if the pen isn't touching the + * tablet. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenAxisEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_AXIS */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + SDL_PenAxis axis; /**< Axis that has changed */ + float value; /**< New value of axis */ +} SDL_PenAxisEvent; + +/** + * An event used to drop text or request a file open by the system + * (event.drop.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_DropEvent +{ + SDL_EventType type; /**< SDL_EVENT_DROP_BEGIN or SDL_EVENT_DROP_FILE or SDL_EVENT_DROP_TEXT or SDL_EVENT_DROP_COMPLETE or SDL_EVENT_DROP_POSITION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window that was dropped on, if any */ + float x; /**< X coordinate, relative to window (not on begin) */ + float y; /**< Y coordinate, relative to window (not on begin) */ + const char *source; /**< The source app that sent this drop event, or NULL if that isn't available */ + const char *data; /**< The text for SDL_EVENT_DROP_TEXT and the file name for SDL_EVENT_DROP_FILE, NULL for other events */ +} SDL_DropEvent; + +/** + * An event triggered when the clipboard contents have changed + * (event.clipboard.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_ClipboardEvent +{ + SDL_EventType type; /**< SDL_EVENT_CLIPBOARD_UPDATE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + bool owner; /**< are we owning the clipboard (internal update) */ + Sint32 num_mime_types; /**< number of mime types */ + const char **mime_types; /**< current mime types */ +} SDL_ClipboardEvent; + +/** + * Sensor event structure (event.sensor.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_SensorEvent +{ + SDL_EventType type; /**< SDL_EVENT_SENSOR_UPDATE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_SensorID which; /**< The instance ID of the sensor */ + float data[6]; /**< Up to 6 values from the sensor - additional values can be queried using SDL_GetSensorData() */ + Uint64 sensor_timestamp; /**< The timestamp of the sensor reading in nanoseconds, not necessarily synchronized with the system clock */ +} SDL_SensorEvent; + +/** + * The "quit requested" event + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_QuitEvent +{ + SDL_EventType type; /**< SDL_EVENT_QUIT */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ +} SDL_QuitEvent; + +/** + * A user-defined event type (event.user.*) + * + * This event is unique; it is never created by SDL, but only by the + * application. The event can be pushed onto the event queue using + * SDL_PushEvent(). The contents of the structure members are completely up to + * the programmer; the only requirement is that '''type''' is a value obtained + * from SDL_RegisterEvents(). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_UserEvent +{ + Uint32 type; /**< SDL_EVENT_USER through SDL_EVENT_LAST-1, Uint32 because these are not in the SDL_EventType enumeration */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The associated window if any */ + Sint32 code; /**< User defined event code */ + void *data1; /**< User defined data pointer */ + void *data2; /**< User defined data pointer */ +} SDL_UserEvent; + + +/** + * The structure for all events in SDL. + * + * The SDL_Event structure is the core of all event handling in SDL. SDL_Event + * is a union of all event structures used in SDL. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef union SDL_Event +{ + Uint32 type; /**< Event type, shared with all events, Uint32 to cover user events which are not in the SDL_EventType enumeration */ + SDL_CommonEvent common; /**< Common event data */ + SDL_DisplayEvent display; /**< Display event data */ + SDL_WindowEvent window; /**< Window event data */ + SDL_KeyboardDeviceEvent kdevice; /**< Keyboard device change event data */ + SDL_KeyboardEvent key; /**< Keyboard event data */ + SDL_TextEditingEvent edit; /**< Text editing event data */ + SDL_TextEditingCandidatesEvent edit_candidates; /**< Text editing candidates event data */ + SDL_TextInputEvent text; /**< Text input event data */ + SDL_MouseDeviceEvent mdevice; /**< Mouse device change event data */ + SDL_MouseMotionEvent motion; /**< Mouse motion event data */ + SDL_MouseButtonEvent button; /**< Mouse button event data */ + SDL_MouseWheelEvent wheel; /**< Mouse wheel event data */ + SDL_JoyDeviceEvent jdevice; /**< Joystick device change event data */ + SDL_JoyAxisEvent jaxis; /**< Joystick axis event data */ + SDL_JoyBallEvent jball; /**< Joystick ball event data */ + SDL_JoyHatEvent jhat; /**< Joystick hat event data */ + SDL_JoyButtonEvent jbutton; /**< Joystick button event data */ + SDL_JoyBatteryEvent jbattery; /**< Joystick battery event data */ + SDL_GamepadDeviceEvent gdevice; /**< Gamepad device event data */ + SDL_GamepadAxisEvent gaxis; /**< Gamepad axis event data */ + SDL_GamepadButtonEvent gbutton; /**< Gamepad button event data */ + SDL_GamepadTouchpadEvent gtouchpad; /**< Gamepad touchpad event data */ + SDL_GamepadSensorEvent gsensor; /**< Gamepad sensor event data */ + SDL_AudioDeviceEvent adevice; /**< Audio device event data */ + SDL_CameraDeviceEvent cdevice; /**< Camera device event data */ + SDL_SensorEvent sensor; /**< Sensor event data */ + SDL_QuitEvent quit; /**< Quit request event data */ + SDL_UserEvent user; /**< Custom event data */ + SDL_TouchFingerEvent tfinger; /**< Touch finger event data */ + SDL_PenProximityEvent pproximity; /**< Pen proximity event data */ + SDL_PenTouchEvent ptouch; /**< Pen tip touching event data */ + SDL_PenMotionEvent pmotion; /**< Pen motion event data */ + SDL_PenButtonEvent pbutton; /**< Pen button event data */ + SDL_PenAxisEvent paxis; /**< Pen axis event data */ + SDL_RenderEvent render; /**< Render event data */ + SDL_DropEvent drop; /**< Drag and drop event data */ + SDL_ClipboardEvent clipboard; /**< Clipboard event data */ + + /* This is necessary for ABI compatibility between Visual C++ and GCC. + Visual C++ will respect the push pack pragma and use 52 bytes (size of + SDL_TextEditingEvent, the largest structure for 32-bit and 64-bit + architectures) for this union, and GCC will use the alignment of the + largest datatype within the union, which is 8 bytes on 64-bit + architectures. + + So... we'll add padding to force the size to be the same for both. + + On architectures where pointers are 16 bytes, this needs rounding up to + the next multiple of 16, 64, and on architectures where pointers are + even larger the size of SDL_UserEvent will dominate as being 3 pointers. + */ + Uint8 padding[128]; +} SDL_Event; + +/* Make sure we haven't broken binary compatibility */ +SDL_COMPILE_TIME_ASSERT(SDL_Event, sizeof(SDL_Event) == sizeof(((SDL_Event *)NULL)->padding)); + + +/* Function prototypes */ + +/** + * Pump the event loop, gathering events from the input devices. + * + * This function updates the event queue and internal input device state. + * + * SDL_PumpEvents() gathers all the pending input information from devices and + * places it in the event queue. Without calls to SDL_PumpEvents() no events + * would ever be placed on the queue. Often the need for calls to + * SDL_PumpEvents() is hidden from the user since SDL_PollEvent() and + * SDL_WaitEvent() implicitly call SDL_PumpEvents(). However, if you are not + * polling or waiting for events (e.g. you are filtering them), then you must + * call SDL_PumpEvents() to force an event queue update. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_WaitEvent + */ +extern SDL_DECLSPEC void SDLCALL SDL_PumpEvents(void); + +/* @{ */ + +/** + * The type of action to request from SDL_PeepEvents(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_EventAction +{ + SDL_ADDEVENT, /**< Add events to the back of the queue. */ + SDL_PEEKEVENT, /**< Check but don't remove events from the queue front. */ + SDL_GETEVENT /**< Retrieve/remove events from the front of the queue. */ +} SDL_EventAction; + +/** + * Check the event queue for messages and optionally return them. + * + * `action` may be any of the following: + * + * - `SDL_ADDEVENT`: up to `numevents` events will be added to the back of the + * event queue. + * - `SDL_PEEKEVENT`: `numevents` events at the front of the event queue, + * within the specified minimum and maximum type, will be returned to the + * caller and will _not_ be removed from the queue. If you pass NULL for + * `events`, then `numevents` is ignored and the total number of matching + * events will be returned. + * - `SDL_GETEVENT`: up to `numevents` events at the front of the event queue, + * within the specified minimum and maximum type, will be returned to the + * caller and will be removed from the queue. + * + * You may have to call SDL_PumpEvents() before calling this function. + * Otherwise, the events may not be ready to be filtered when you call + * SDL_PeepEvents(). + * + * \param events destination buffer for the retrieved events, may be NULL to + * leave the events in the queue and return the number of events + * that would have been stored. + * \param numevents if action is SDL_ADDEVENT, the number of events to add + * back to the event queue; if action is SDL_PEEKEVENT or + * SDL_GETEVENT, the maximum number of events to retrieve. + * \param action action to take; see [Remarks](#remarks) for details. + * \param minType minimum value of the event type to be considered; + * SDL_EVENT_FIRST is a safe choice. + * \param maxType maximum value of the event type to be considered; + * SDL_EVENT_LAST is a safe choice. + * \returns the number of events actually stored or -1 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_PumpEvents + * \sa SDL_PushEvent + */ +extern SDL_DECLSPEC int SDLCALL SDL_PeepEvents(SDL_Event *events, int numevents, SDL_EventAction action, Uint32 minType, Uint32 maxType); +/* @} */ + +/** + * Check for the existence of a certain event type in the event queue. + * + * If you need to check for a range of event types, use SDL_HasEvents() + * instead. + * + * \param type the type of event to be queried; see SDL_EventType for details. + * \returns true if events matching `type` are present, or false if events + * matching `type` are not present. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasEvents + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasEvent(Uint32 type); + + +/** + * Check for the existence of certain event types in the event queue. + * + * If you need to check for a single event type, use SDL_HasEvent() instead. + * + * \param minType the low end of event type to be queried, inclusive; see + * SDL_EventType for details. + * \param maxType the high end of event type to be queried, inclusive; see + * SDL_EventType for details. + * \returns true if events with type >= `minType` and <= `maxType` are + * present, or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasEvents + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasEvents(Uint32 minType, Uint32 maxType); + +/** + * Clear events of a specific type from the event queue. + * + * This will unconditionally remove any events from the queue that match + * `type`. If you need to remove a range of event types, use SDL_FlushEvents() + * instead. + * + * It's also normal to just ignore events you don't care about in your event + * loop without calling this function. + * + * This function only affects currently queued events. If you want to make + * sure that all pending OS events are flushed, you can call SDL_PumpEvents() + * on the main thread immediately before the flush call. + * + * If you have user events with custom data that needs to be freed, you should + * use SDL_PeepEvents() to remove and clean up those events before calling + * this function. + * + * \param type the type of event to be cleared; see SDL_EventType for details. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FlushEvents + */ +extern SDL_DECLSPEC void SDLCALL SDL_FlushEvent(Uint32 type); + +/** + * Clear events of a range of types from the event queue. + * + * This will unconditionally remove any events from the queue that are in the + * range of `minType` to `maxType`, inclusive. If you need to remove a single + * event type, use SDL_FlushEvent() instead. + * + * It's also normal to just ignore events you don't care about in your event + * loop without calling this function. + * + * This function only affects currently queued events. If you want to make + * sure that all pending OS events are flushed, you can call SDL_PumpEvents() + * on the main thread immediately before the flush call. + * + * \param minType the low end of event type to be cleared, inclusive; see + * SDL_EventType for details. + * \param maxType the high end of event type to be cleared, inclusive; see + * SDL_EventType for details. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FlushEvent + */ +extern SDL_DECLSPEC void SDLCALL SDL_FlushEvents(Uint32 minType, Uint32 maxType); + +/** + * Poll for currently pending events. + * + * If `event` is not NULL, the next event is removed from the queue and stored + * in the SDL_Event structure pointed to by `event`. The 1 returned refers to + * this event, immediately stored in the SDL Event structure -- not an event + * to follow. + * + * If `event` is NULL, it simply returns 1 if there is an event in the queue, + * but will not remove it from the queue. + * + * As this function may implicitly call SDL_PumpEvents(), you can only call + * this function in the thread that set the video mode. + * + * SDL_PollEvent() is the favored way of receiving system events since it can + * be done from the main loop and does not suspend the main loop while waiting + * on an event to be posted. + * + * The common practice is to fully process the event queue once every frame, + * usually as a first step before updating the game's state: + * + * ```c + * while (game_is_still_running) { + * SDL_Event event; + * while (SDL_PollEvent(&event)) { // poll until all events are handled! + * // decide what to do with this event. + * } + * + * // update game state, draw the current frame + * } + * ``` + * + * \param event the SDL_Event structure to be filled with the next event from + * the queue, or NULL. + * \returns true if this got an event or false if there are none available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PushEvent + * \sa SDL_WaitEvent + * \sa SDL_WaitEventTimeout + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PollEvent(SDL_Event *event); + +/** + * Wait indefinitely for the next available event. + * + * If `event` is not NULL, the next event is removed from the queue and stored + * in the SDL_Event structure pointed to by `event`. + * + * As this function may implicitly call SDL_PumpEvents(), you can only call + * this function in the thread that initialized the video subsystem. + * + * \param event the SDL_Event structure to be filled in with the next event + * from the queue, or NULL. + * \returns true on success or false if there was an error while waiting for + * events; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_PushEvent + * \sa SDL_WaitEventTimeout + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitEvent(SDL_Event *event); + +/** + * Wait until the specified timeout (in milliseconds) for the next available + * event. + * + * If `event` is not NULL, the next event is removed from the queue and stored + * in the SDL_Event structure pointed to by `event`. + * + * As this function may implicitly call SDL_PumpEvents(), you can only call + * this function in the thread that initialized the video subsystem. + * + * The timeout is not guaranteed, the actual wait time could be longer due to + * system scheduling. + * + * \param event the SDL_Event structure to be filled in with the next event + * from the queue, or NULL. + * \param timeoutMS the maximum number of milliseconds to wait for the next + * available event. + * \returns true if this got an event or false if the timeout elapsed without + * any events available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_PushEvent + * \sa SDL_WaitEvent + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitEventTimeout(SDL_Event *event, Sint32 timeoutMS); + +/** + * Add an event to the event queue. + * + * The event queue can actually be used as a two way communication channel. + * Not only can events be read from the queue, but the user can also push + * their own events onto it. `event` is a pointer to the event structure you + * wish to push onto the queue. The event is copied into the queue, and the + * caller may dispose of the memory pointed to after SDL_PushEvent() returns. + * + * Note: Pushing device input events onto the queue doesn't modify the state + * of the device within SDL. + * + * Note: Events pushed onto the queue with SDL_PushEvent() get passed through + * the event filter but events added with SDL_PeepEvents() do not. + * + * For pushing application-specific events, please use SDL_RegisterEvents() to + * get an event type that does not conflict with other code that also wants + * its own custom event types. + * + * \param event the SDL_Event to be added to the queue. + * \returns true on success, false if the event was filtered or on failure; + * call SDL_GetError() for more information. A common reason for + * error is the event queue being full. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PeepEvents + * \sa SDL_PollEvent + * \sa SDL_RegisterEvents + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PushEvent(SDL_Event *event); + +/** + * A function pointer used for callbacks that watch the event queue. + * + * \param userdata what was passed as `userdata` to SDL_SetEventFilter() or + * SDL_AddEventWatch, etc. + * \param event the event that triggered the callback. + * \returns true to permit event to be added to the queue, and false to + * disallow it. When used with SDL_AddEventWatch, the return value is + * ignored. + * + * \threadsafety SDL may call this callback at any time from any thread; the + * application is responsible for locking resources the callback + * touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetEventFilter + * \sa SDL_AddEventWatch + */ +typedef bool (SDLCALL *SDL_EventFilter)(void *userdata, SDL_Event *event); + +/** + * Set up a filter to process all events before they are added to the internal + * event queue. + * + * If you just want to see events without modifying them or preventing them + * from being queued, you should use SDL_AddEventWatch() instead. + * + * If the filter function returns true when called, then the event will be + * added to the internal queue. If it returns false, then the event will be + * dropped from the queue, but the internal state will still be updated. This + * allows selective filtering of dynamically arriving events. + * + * **WARNING**: Be very careful of what you do in the event filter function, + * as it may run in a different thread! + * + * On platforms that support it, if the quit event is generated by an + * interrupt signal (e.g. pressing Ctrl-C), it will be delivered to the + * application at the next event poll. + * + * Note: Disabled events never make it to the event filter function; see + * SDL_SetEventEnabled(). + * + * Note: Events pushed onto the queue with SDL_PushEvent() get passed through + * the event filter, but events pushed onto the queue with SDL_PeepEvents() do + * not. + * + * \param filter an SDL_EventFilter function to call when an event happens. + * \param userdata a pointer that is passed to `filter`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + * \sa SDL_SetEventEnabled + * \sa SDL_GetEventFilter + * \sa SDL_PeepEvents + * \sa SDL_PushEvent + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetEventFilter(SDL_EventFilter filter, void *userdata); + +/** + * Query the current event filter. + * + * This function can be used to "chain" filters, by saving the existing filter + * before replacing it with a function that will call that saved filter. + * + * \param filter the current callback function will be stored here. + * \param userdata the pointer that is passed to the current event filter will + * be stored here. + * \returns true on success or false if there is no event filter set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetEventFilter + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetEventFilter(SDL_EventFilter *filter, void **userdata); + +/** + * Add a callback to be triggered when an event is added to the event queue. + * + * `filter` will be called when an event happens, and its return value is + * ignored. + * + * **WARNING**: Be very careful of what you do in the event filter function, + * as it may run in a different thread! + * + * If the quit event is generated by a signal (e.g. SIGINT), it will bypass + * the internal queue and be delivered to the watch callback immediately, and + * arrive at the next event poll. + * + * Note: the callback is called for events posted by the user through + * SDL_PushEvent(), but not for disabled events, nor for events by a filter + * callback set with SDL_SetEventFilter(), nor for events posted by the user + * through SDL_PeepEvents(). + * + * \param filter an SDL_EventFilter function to call when an event happens. + * \param userdata a pointer that is passed to `filter`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveEventWatch + * \sa SDL_SetEventFilter + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddEventWatch(SDL_EventFilter filter, void *userdata); + +/** + * Remove an event watch callback added with SDL_AddEventWatch(). + * + * This function takes the same input as SDL_AddEventWatch() to identify and + * delete the corresponding callback. + * + * \param filter the function originally passed to SDL_AddEventWatch(). + * \param userdata the pointer originally passed to SDL_AddEventWatch(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveEventWatch(SDL_EventFilter filter, void *userdata); + +/** + * Run a specific filter function on the current event queue, removing any + * events for which the filter returns false. + * + * See SDL_SetEventFilter() for more information. Unlike SDL_SetEventFilter(), + * this function does not change the filter permanently, it only uses the + * supplied filter until this function returns. + * + * \param filter the SDL_EventFilter function to call when an event happens. + * \param userdata a pointer that is passed to `filter`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEventFilter + * \sa SDL_SetEventFilter + */ +extern SDL_DECLSPEC void SDLCALL SDL_FilterEvents(SDL_EventFilter filter, void *userdata); + +/** + * Set the state of processing events by type. + * + * \param type the type of event; see SDL_EventType for details. + * \param enabled whether to process the event or not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EventEnabled + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetEventEnabled(Uint32 type, bool enabled); + +/** + * Query the state of processing events by type. + * + * \param type the type of event; see SDL_EventType for details. + * \returns true if the event is being processed, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetEventEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EventEnabled(Uint32 type); + +/** + * Allocate a set of user-defined events, and return the beginning event + * number for that set of events. + * + * \param numevents the number of events to be allocated. + * \returns the beginning event number, or 0 if numevents is invalid or if + * there are not enough user-defined events left. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PushEvent + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_RegisterEvents(int numevents); + +/** + * Get window associated with an event. + * + * \param event an event containing a `windowID`. + * \returns the associated window on success or NULL if there is none. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_WaitEvent + * \sa SDL_WaitEventTimeout + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetWindowFromEvent(const SDL_Event *event); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_events_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_filesystem.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_filesystem.h new file mode 100644 index 0000000..af3ca27 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_filesystem.h @@ -0,0 +1,503 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryFilesystem + * + * SDL offers an API for examining and manipulating the system's filesystem. + * This covers most things one would need to do with directories, except for + * actual file I/O (which is covered by [CategoryIOStream](CategoryIOStream) + * and [CategoryAsyncIO](CategoryAsyncIO) instead). + * + * There are functions to answer necessary path questions: + * + * - Where is my app's data? SDL_GetBasePath(). + * - Where can I safely write files? SDL_GetPrefPath(). + * - Where are paths like Downloads, Desktop, Music? SDL_GetUserFolder(). + * - What is this thing at this location? SDL_GetPathInfo(). + * - What items live in this folder? SDL_EnumerateDirectory(). + * - What items live in this folder by wildcard? SDL_GlobDirectory(). + * - What is my current working directory? SDL_GetCurrentDirectory(). + * + * SDL also offers functions to manipulate the directory tree: renaming, + * removing, copying files. + */ + +#ifndef SDL_filesystem_h_ +#define SDL_filesystem_h_ + +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Get the directory where the application was run from. + * + * SDL caches the result of this call internally, but the first call to this + * function is not necessarily fast, so plan accordingly. + * + * **macOS and iOS Specific Functionality**: If the application is in a ".app" + * bundle, this function returns the Resource directory (e.g. + * MyApp.app/Contents/Resources/). This behaviour can be overridden by adding + * a property to the Info.plist file. Adding a string key with the name + * SDL_FILESYSTEM_BASE_DIR_TYPE with a supported value will change the + * behaviour. + * + * Supported values for the SDL_FILESYSTEM_BASE_DIR_TYPE property (Given an + * application in /Applications/SDLApp/MyApp.app): + * + * - `resource`: bundle resource directory (the default). For example: + * `/Applications/SDLApp/MyApp.app/Contents/Resources` + * - `bundle`: the Bundle directory. For example: + * `/Applications/SDLApp/MyApp.app/` + * - `parent`: the containing directory of the bundle. For example: + * `/Applications/SDLApp/` + * + * **Nintendo 3DS Specific Functionality**: This function returns "romfs" + * directory of the application as it is uncommon to store resources outside + * the executable. As such it is not a writable directory. + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * \returns an absolute path in UTF-8 encoding to the application data + * directory. NULL will be returned on error or when the platform + * doesn't implement this functionality, call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPrefPath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetBasePath(void); + +/** + * Get the user-and-app-specific path where files can be written. + * + * Get the "pref dir". This is meant to be where users can write personal + * files (preferences and save games, etc) that are specific to your + * application. This directory is unique per user, per application. + * + * This function will decide the appropriate location in the native + * filesystem, create the directory if necessary, and return a string of the + * absolute path to the directory in UTF-8 encoding. + * + * On Windows, the string might look like: + * + * `C:\\Users\\bob\\AppData\\Roaming\\My Company\\My Program Name\\` + * + * On Linux, the string might look like: + * + * `/home/bob/.local/share/My Program Name/` + * + * On macOS, the string might look like: + * + * `/Users/bob/Library/Application Support/My Program Name/` + * + * You should assume the path returned by this function is the only safe place + * to write files (and that SDL_GetBasePath(), while it might be writable, or + * even the parent of the returned path, isn't where you should be writing + * things). + * + * Both the org and app strings may become part of a directory name, so please + * follow these rules: + * + * - Try to use the same org string (_including case-sensitivity_) for all + * your applications that use this function. + * - Always use a unique app string for each one, and make sure it never + * changes for an app once you've decided on it. + * - Unicode characters are legal, as long as they are UTF-8 encoded, but... + * - ...only use letters, numbers, and spaces. Avoid punctuation like "Game + * Name 2: Bad Guy's Revenge!" ... "Game Name 2" is sufficient. + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * \param org the name of your organization. + * \param app the name of your application. + * \returns a UTF-8 string of the user directory in platform-dependent + * notation. NULL if there's a problem (creating directory failed, + * etc.). This should be freed with SDL_free() when it is no longer + * needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetBasePath + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetPrefPath(const char *org, const char *app); + +/** + * The type of the OS-provided default folder for a specific purpose. + * + * Note that the Trash folder isn't included here, because trashing files + * usually involves extra OS-specific functionality to remember the file's + * original location. + * + * The folders supported per platform are: + * + * | | Windows | macOS/iOS | tvOS | Unix (XDG) | Haiku | Emscripten | + * | ----------- | ------- | --------- | ---- | ---------- | ----- | ---------- | + * | HOME | X | X | | X | X | X | + * | DESKTOP | X | X | | X | X | | + * | DOCUMENTS | X | X | | X | | | + * | DOWNLOADS | Vista+ | X | | X | | | + * | MUSIC | X | X | | X | | | + * | PICTURES | X | X | | X | | | + * | PUBLICSHARE | | X | | X | | | + * | SAVEDGAMES | Vista+ | | | | | | + * | SCREENSHOTS | Vista+ | | | | | | + * | TEMPLATES | X | X | | X | | | + * | VIDEOS | X | X* | | X | | | + * + * Note that on macOS/iOS, the Videos folder is called "Movies". + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetUserFolder + */ +typedef enum SDL_Folder +{ + SDL_FOLDER_HOME, /**< The folder which contains all of the current user's data, preferences, and documents. It usually contains most of the other folders. If a requested folder does not exist, the home folder can be considered a safe fallback to store a user's documents. */ + SDL_FOLDER_DESKTOP, /**< The folder of files that are displayed on the desktop. Note that the existence of a desktop folder does not guarantee that the system does show icons on its desktop; certain GNU/Linux distros with a graphical environment may not have desktop icons. */ + SDL_FOLDER_DOCUMENTS, /**< User document files, possibly application-specific. This is a good place to save a user's projects. */ + SDL_FOLDER_DOWNLOADS, /**< Standard folder for user files downloaded from the internet. */ + SDL_FOLDER_MUSIC, /**< Music files that can be played using a standard music player (mp3, ogg...). */ + SDL_FOLDER_PICTURES, /**< Image files that can be displayed using a standard viewer (png, jpg...). */ + SDL_FOLDER_PUBLICSHARE, /**< Files that are meant to be shared with other users on the same computer. */ + SDL_FOLDER_SAVEDGAMES, /**< Save files for games. */ + SDL_FOLDER_SCREENSHOTS, /**< Application screenshots. */ + SDL_FOLDER_TEMPLATES, /**< Template files to be used when the user requests the desktop environment to create a new file in a certain folder, such as "New Text File.txt". Any file in the Templates folder can be used as a starting point for a new file. */ + SDL_FOLDER_VIDEOS, /**< Video files that can be played using a standard video player (mp4, webm...). */ + SDL_FOLDER_COUNT /**< Total number of types in this enum, not a folder type by itself. */ +} SDL_Folder; + +/** + * Finds the most suitable user folder for a specific purpose. + * + * Many OSes provide certain standard folders for certain purposes, such as + * storing pictures, music or videos for a certain user. This function gives + * the path for many of those special locations. + * + * This function is specifically for _user_ folders, which are meant for the + * user to access and manage. For application-specific folders, meant to hold + * data for the application to manage, see SDL_GetBasePath() and + * SDL_GetPrefPath(). + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * If NULL is returned, the error may be obtained with SDL_GetError(). + * + * \param folder the type of folder to find. + * \returns either a null-terminated C string containing the full path to the + * folder, or NULL if an error happened. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetUserFolder(SDL_Folder folder); + + +/* Abstract filesystem interface */ + +/** + * Types of filesystem entries. + * + * Note that there may be other sorts of items on a filesystem: devices, + * symlinks, named pipes, etc. They are currently reported as + * SDL_PATHTYPE_OTHER. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_PathInfo + */ +typedef enum SDL_PathType +{ + SDL_PATHTYPE_NONE, /**< path does not exist */ + SDL_PATHTYPE_FILE, /**< a normal file */ + SDL_PATHTYPE_DIRECTORY, /**< a directory */ + SDL_PATHTYPE_OTHER /**< something completely different like a device node (not a symlink, those are always followed) */ +} SDL_PathType; + +/** + * Information about a path on the filesystem. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetPathInfo + * \sa SDL_GetStoragePathInfo + */ +typedef struct SDL_PathInfo +{ + SDL_PathType type; /**< the path type */ + Uint64 size; /**< the file size in bytes */ + SDL_Time create_time; /**< the time when the path was created */ + SDL_Time modify_time; /**< the last time the path was modified */ + SDL_Time access_time; /**< the last time the path was read */ +} SDL_PathInfo; + +/** + * Flags for path matching. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GlobDirectory + * \sa SDL_GlobStorageDirectory + */ +typedef Uint32 SDL_GlobFlags; + +#define SDL_GLOB_CASEINSENSITIVE (1u << 0) + +/** + * Create a directory, and any missing parent directories. + * + * This reports success if `path` already exists as a directory. + * + * If parent directories are missing, it will also create them. Note that if + * this fails, it will not remove any parent directories it already made. + * + * \param path the path of the directory to create. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CreateDirectory(const char *path); + +/** + * Possible results from an enumeration callback. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_EnumerateDirectoryCallback + */ +typedef enum SDL_EnumerationResult +{ + SDL_ENUM_CONTINUE, /**< Value that requests that enumeration continue. */ + SDL_ENUM_SUCCESS, /**< Value that requests that enumeration stop, successfully. */ + SDL_ENUM_FAILURE /**< Value that requests that enumeration stop, as a failure. */ +} SDL_EnumerationResult; + +/** + * Callback for directory enumeration. + * + * Enumeration of directory entries will continue until either all entries + * have been provided to the callback, or the callback has requested a stop + * through its return value. + * + * Returning SDL_ENUM_CONTINUE will let enumeration proceed, calling the + * callback with further entries. SDL_ENUM_SUCCESS and SDL_ENUM_FAILURE will + * terminate the enumeration early, and dictate the return value of the + * enumeration function itself. + * + * `dirname` is guaranteed to end with a path separator ('\\' on Windows, '/' + * on most other platforms). + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \param dirname the directory that is being enumerated. + * \param fname the next entry in the enumeration. + * \returns how the enumeration should proceed. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EnumerateDirectory + */ +typedef SDL_EnumerationResult (SDLCALL *SDL_EnumerateDirectoryCallback)(void *userdata, const char *dirname, const char *fname); + +/** + * Enumerate a directory through a callback function. + * + * This function provides every directory entry through an app-provided + * callback, called once for each directory entry, until all results have been + * provided or the callback returns either SDL_ENUM_SUCCESS or + * SDL_ENUM_FAILURE. + * + * This will return false if there was a system problem in general, or if a + * callback returns SDL_ENUM_FAILURE. A successful return means a callback + * returned SDL_ENUM_SUCCESS to halt enumeration, or all directory entries + * were enumerated. + * + * \param path the path of the directory to enumerate. + * \param callback a function that is called for each entry in the directory. + * \param userdata a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnumerateDirectory(const char *path, SDL_EnumerateDirectoryCallback callback, void *userdata); + +/** + * Remove a file or an empty directory. + * + * Directories that are not empty will fail; this function will not recursely + * delete directory trees. + * + * \param path the path to remove from the filesystem. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RemovePath(const char *path); + +/** + * Rename a file or directory. + * + * If the file at `newpath` already exists, it will replaced. + * + * Note that this will not copy files across filesystems/drives/volumes, as + * that is a much more complicated (and possibly time-consuming) operation. + * + * Which is to say, if this function fails, SDL_CopyFile() to a temporary file + * in the same directory as `newpath`, then SDL_RenamePath() from the + * temporary file to `newpath` and SDL_RemovePath() on `oldpath` might work + * for files. Renaming a non-empty directory across filesystems is + * dramatically more complex, however. + * + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenamePath(const char *oldpath, const char *newpath); + +/** + * Copy a file. + * + * If the file at `newpath` already exists, it will be overwritten with the + * contents of the file at `oldpath`. + * + * This function will block until the copy is complete, which might be a + * significant time for large files on slow disks. On some platforms, the copy + * can be handed off to the OS itself, but on others SDL might just open both + * paths, and read from one and write to the other. + * + * Note that this is not an atomic operation! If something tries to read from + * `newpath` while the copy is in progress, it will see an incomplete copy of + * the data, and if the calling thread terminates (or the power goes out) + * during the copy, `newpath`'s previous contents will be gone, replaced with + * an incomplete copy of the data. To avoid this risk, it is recommended that + * the app copy to a temporary file in the same directory as `newpath`, and if + * the copy is successful, use SDL_RenamePath() to replace `newpath` with the + * temporary file. This will ensure that reads of `newpath` will either see a + * complete copy of the data, or it will see the pre-copy state of `newpath`. + * + * This function attempts to synchronize the newly-copied data to disk before + * returning, if the platform allows it, so that the renaming trick will not + * have a problem in a system crash or power failure, where the file could be + * renamed but the contents never made it from the system file cache to the + * physical disk. + * + * If the copy fails for any reason, the state of `newpath` is undefined. It + * might be half a copy, it might be the untouched data of what was already + * there, or it might be a zero-byte file, etc. + * + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CopyFile(const char *oldpath, const char *newpath); + +/** + * Get information about a filesystem path. + * + * \param path the path to query. + * \param info a pointer filled in with information about the path, or NULL to + * check for the existence of a file. + * \returns true on success or false if the file doesn't exist, or another + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetPathInfo(const char *path, SDL_PathInfo *info); + +/** + * Enumerate a directory tree, filtered by pattern, and return a list. + * + * Files are filtered out if they don't match the string in `pattern`, which + * may contain wildcard characters '\*' (match everything) and '?' (match one + * character). If pattern is NULL, no filtering is done and all results are + * returned. Subdirectories are permitted, and are specified with a path + * separator of '/'. Wildcard characters '\*' and '?' never match a path + * separator. + * + * `flags` may be set to SDL_GLOB_CASEINSENSITIVE to make the pattern matching + * case-insensitive. + * + * The returned array is always NULL-terminated, for your iterating + * convenience, but if `count` is non-NULL, on return it will contain the + * number of items in the array, not counting the NULL terminator. + * + * \param path the path of the directory to enumerate. + * \param pattern the pattern that files in the directory must match. Can be + * NULL. + * \param flags `SDL_GLOB_*` bitflags that affect this search. + * \param count on return, will be set to the number of items in the returned + * array. Can be NULL. + * \returns an array of strings on success or NULL on failure; call + * SDL_GetError() for more information. This is a single allocation + * that should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GlobDirectory(const char *path, const char *pattern, SDL_GlobFlags flags, int *count); + +/** + * Get what the system believes is the "current working directory." + * + * For systems without a concept of a current working directory, this will + * still attempt to provide something reasonable. + * + * SDL does not provide a means to _change_ the current working directory; for + * platforms without this concept, this would cause surprises with file access + * outside of SDL. + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * \returns a UTF-8 string of the current working directory in + * platform-dependent notation. NULL if there's a problem. This + * should be freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetCurrentDirectory(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_filesystem_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_gamepad.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_gamepad.h new file mode 100644 index 0000000..99f8b65 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_gamepad.h @@ -0,0 +1,1509 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryGamepad + * + * SDL provides a low-level joystick API, which just treats joysticks as an + * arbitrary pile of buttons, axes, and hat switches. If you're planning to + * write your own control configuration screen, this can give you a lot of + * flexibility, but that's a lot of work, and most things that we consider + * "joysticks" now are actually console-style gamepads. So SDL provides the + * gamepad API on top of the lower-level joystick functionality. + * + * The difference between a joystick and a gamepad is that a gamepad tells you + * _where_ a button or axis is on the device. You don't speak to gamepads in + * terms of arbitrary numbers like "button 3" or "axis 2" but in standard + * locations: the d-pad, the shoulder buttons, triggers, A/B/X/Y (or + * X/O/Square/Triangle, if you will). + * + * One turns a joystick into a gamepad by providing a magic configuration + * string, which tells SDL the details of a specific device: when you see this + * specific hardware, if button 2 gets pressed, this is actually D-Pad Up, + * etc. + * + * SDL has many popular controllers configured out of the box, and users can + * add their own controller details through an environment variable if it's + * otherwise unknown to SDL. + * + * In order to use these functions, SDL_Init() must have been called with the + * SDL_INIT_GAMEPAD flag. This causes SDL to scan the system for gamepads, and + * load appropriate drivers. + * + * If you would like to receive gamepad updates while the application is in + * the background, you should set the following hint before calling + * SDL_Init(): SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS + * + * Gamepads support various optional features such as rumble, color LEDs, + * touchpad, gyro, etc. The support for these features varies depending on the + * controller and OS support available. You can check for LED and rumble + * capabilities at runtime by calling SDL_GetGamepadProperties() and checking + * the various capability properties. You can check for touchpad by calling + * SDL_GetNumGamepadTouchpads() and check for gyro and accelerometer by + * calling SDL_GamepadHasSensor(). + * + * By default SDL will try to use the most capable driver available, but you + * can tune which OS drivers to use with the various joystick hints in + * SDL_hints.h. + * + * Your application should always support gamepad hotplugging. On some + * platforms like Xbox, Steam Deck, etc., this is a requirement for + * certification. On other platforms, like macOS and Windows when using + * Windows.Gaming.Input, controllers may not be available at startup and will + * come in at some point after you've started processing events. + */ + +#ifndef SDL_gamepad_h_ +#define SDL_gamepad_h_ + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The structure used to identify an SDL gamepad + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Gamepad SDL_Gamepad; + +/** + * Standard gamepad types. + * + * This type does not necessarily map to first-party controllers from + * Microsoft/Sony/Nintendo; in many cases, third-party controllers can report + * as these, either because they were designed for a specific console, or they + * simply most closely match that console's controllers (does it have A/B/X/Y + * buttons or X/O/Square/Triangle? Does it have a touchpad? etc). + */ +typedef enum SDL_GamepadType +{ + SDL_GAMEPAD_TYPE_UNKNOWN = 0, + SDL_GAMEPAD_TYPE_STANDARD, + SDL_GAMEPAD_TYPE_XBOX360, + SDL_GAMEPAD_TYPE_XBOXONE, + SDL_GAMEPAD_TYPE_PS3, + SDL_GAMEPAD_TYPE_PS4, + SDL_GAMEPAD_TYPE_PS5, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_PRO, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_LEFT, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_PAIR, + SDL_GAMEPAD_TYPE_COUNT +} SDL_GamepadType; + +/** + * The list of buttons available on a gamepad + * + * For controllers that use a diamond pattern for the face buttons, the + * south/east/west/north buttons below correspond to the locations in the + * diamond pattern. For Xbox controllers, this would be A/B/X/Y, for Nintendo + * Switch controllers, this would be B/A/Y/X, for PlayStation controllers this + * would be Cross/Circle/Square/Triangle. + * + * For controllers that don't use a diamond pattern for the face buttons, the + * south/east/west/north buttons indicate the buttons labeled A, B, C, D, or + * 1, 2, 3, 4, or for controllers that aren't labeled, they are the primary, + * secondary, etc. buttons. + * + * The activate action is often the south button and the cancel action is + * often the east button, but in some regions this is reversed, so your game + * should allow remapping actions based on user preferences. + * + * You can query the labels for the face buttons using + * SDL_GetGamepadButtonLabel() + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadButton +{ + SDL_GAMEPAD_BUTTON_INVALID = -1, + SDL_GAMEPAD_BUTTON_SOUTH, /**< Bottom face button (e.g. Xbox A button) */ + SDL_GAMEPAD_BUTTON_EAST, /**< Right face button (e.g. Xbox B button) */ + SDL_GAMEPAD_BUTTON_WEST, /**< Left face button (e.g. Xbox X button) */ + SDL_GAMEPAD_BUTTON_NORTH, /**< Top face button (e.g. Xbox Y button) */ + SDL_GAMEPAD_BUTTON_BACK, + SDL_GAMEPAD_BUTTON_GUIDE, + SDL_GAMEPAD_BUTTON_START, + SDL_GAMEPAD_BUTTON_LEFT_STICK, + SDL_GAMEPAD_BUTTON_RIGHT_STICK, + SDL_GAMEPAD_BUTTON_LEFT_SHOULDER, + SDL_GAMEPAD_BUTTON_RIGHT_SHOULDER, + SDL_GAMEPAD_BUTTON_DPAD_UP, + SDL_GAMEPAD_BUTTON_DPAD_DOWN, + SDL_GAMEPAD_BUTTON_DPAD_LEFT, + SDL_GAMEPAD_BUTTON_DPAD_RIGHT, + SDL_GAMEPAD_BUTTON_MISC1, /**< Additional button (e.g. Xbox Series X share button, PS5 microphone button, Nintendo Switch Pro capture button, Amazon Luna microphone button, Google Stadia capture button) */ + SDL_GAMEPAD_BUTTON_RIGHT_PADDLE1, /**< Upper or primary paddle, under your right hand (e.g. Xbox Elite paddle P1) */ + SDL_GAMEPAD_BUTTON_LEFT_PADDLE1, /**< Upper or primary paddle, under your left hand (e.g. Xbox Elite paddle P3) */ + SDL_GAMEPAD_BUTTON_RIGHT_PADDLE2, /**< Lower or secondary paddle, under your right hand (e.g. Xbox Elite paddle P2) */ + SDL_GAMEPAD_BUTTON_LEFT_PADDLE2, /**< Lower or secondary paddle, under your left hand (e.g. Xbox Elite paddle P4) */ + SDL_GAMEPAD_BUTTON_TOUCHPAD, /**< PS4/PS5 touchpad button */ + SDL_GAMEPAD_BUTTON_MISC2, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC3, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC4, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC5, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC6, /**< Additional button */ + SDL_GAMEPAD_BUTTON_COUNT +} SDL_GamepadButton; + +/** + * The set of gamepad button labels + * + * This isn't a complete set, just the face buttons to make it easy to show + * button prompts. + * + * For a complete set, you should look at the button and gamepad type and have + * a set of symbols that work well with your art style. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadButtonLabel +{ + SDL_GAMEPAD_BUTTON_LABEL_UNKNOWN, + SDL_GAMEPAD_BUTTON_LABEL_A, + SDL_GAMEPAD_BUTTON_LABEL_B, + SDL_GAMEPAD_BUTTON_LABEL_X, + SDL_GAMEPAD_BUTTON_LABEL_Y, + SDL_GAMEPAD_BUTTON_LABEL_CROSS, + SDL_GAMEPAD_BUTTON_LABEL_CIRCLE, + SDL_GAMEPAD_BUTTON_LABEL_SQUARE, + SDL_GAMEPAD_BUTTON_LABEL_TRIANGLE +} SDL_GamepadButtonLabel; + +/** + * The list of axes available on a gamepad + * + * Thumbstick axis values range from SDL_JOYSTICK_AXIS_MIN to + * SDL_JOYSTICK_AXIS_MAX, and are centered within ~8000 of zero, though + * advanced UI will allow users to set or autodetect the dead zone, which + * varies between gamepads. + * + * Trigger axis values range from 0 (released) to SDL_JOYSTICK_AXIS_MAX (fully + * pressed) when reported by SDL_GetGamepadAxis(). Note that this is not the + * same range that will be reported by the lower-level SDL_GetJoystickAxis(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadAxis +{ + SDL_GAMEPAD_AXIS_INVALID = -1, + SDL_GAMEPAD_AXIS_LEFTX, + SDL_GAMEPAD_AXIS_LEFTY, + SDL_GAMEPAD_AXIS_RIGHTX, + SDL_GAMEPAD_AXIS_RIGHTY, + SDL_GAMEPAD_AXIS_LEFT_TRIGGER, + SDL_GAMEPAD_AXIS_RIGHT_TRIGGER, + SDL_GAMEPAD_AXIS_COUNT +} SDL_GamepadAxis; + +/** + * Types of gamepad control bindings. + * + * A gamepad is a collection of bindings that map arbitrary joystick buttons, + * axes and hat switches to specific positions on a generic console-style + * gamepad. This enum is used as part of SDL_GamepadBinding to specify those + * mappings. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadBindingType +{ + SDL_GAMEPAD_BINDTYPE_NONE = 0, + SDL_GAMEPAD_BINDTYPE_BUTTON, + SDL_GAMEPAD_BINDTYPE_AXIS, + SDL_GAMEPAD_BINDTYPE_HAT +} SDL_GamepadBindingType; + +/** + * A mapping between one joystick input to a gamepad control. + * + * A gamepad has a collection of several bindings, to say, for example, when + * joystick button number 5 is pressed, that should be treated like the + * gamepad's "start" button. + * + * SDL has these bindings built-in for many popular controllers, and can add + * more with a simple text string. Those strings are parsed into a collection + * of these structs to make it easier to operate on the data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadBindings + */ +typedef struct SDL_GamepadBinding +{ + SDL_GamepadBindingType input_type; + union + { + int button; + + struct + { + int axis; + int axis_min; + int axis_max; + } axis; + + struct + { + int hat; + int hat_mask; + } hat; + + } input; + + SDL_GamepadBindingType output_type; + union + { + SDL_GamepadButton button; + + struct + { + SDL_GamepadAxis axis; + int axis_min; + int axis_max; + } axis; + + } output; +} SDL_GamepadBinding; + + +/** + * Add support for gamepads that SDL is unaware of or change the binding of an + * existing gamepad. + * + * The mapping string has the format "GUID,name,mapping", where GUID is the + * string value from SDL_GUIDToString(), name is the human readable string for + * the device and mappings are gamepad mappings to joystick ones. Under + * Windows there is a reserved GUID of "xinput" that covers all XInput + * devices. The mapping format for joystick is: + * + * - `bX`: a joystick button, index X + * - `hX.Y`: hat X with value Y + * - `aX`: axis X of the joystick + * + * Buttons can be used as a gamepad axes and vice versa. + * + * If a device with this GUID is already plugged in, SDL will generate an + * SDL_EVENT_GAMEPAD_ADDED event. + * + * This string shows an example of a valid mapping for a gamepad: + * + * ```c + * "341a3608000000000000504944564944,Afterglow PS3 Controller,a:b1,b:b2,y:b3,x:b0,start:b9,guide:b12,back:b8,dpup:h0.1,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,leftshoulder:b4,rightshoulder:b5,leftstick:b10,rightstick:b11,leftx:a0,lefty:a1,rightx:a2,righty:a3,lefttrigger:b6,righttrigger:b7" + * ``` + * + * \param mapping the mapping string. + * \returns 1 if a new mapping is added, 0 if an existing mapping is updated, + * -1 on failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMappingsFromFile + * \sa SDL_AddGamepadMappingsFromIO + * \sa SDL_GetGamepadMapping + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_HINT_GAMECONTROLLERCONFIG + * \sa SDL_HINT_GAMECONTROLLERCONFIG_FILE + * \sa SDL_EVENT_GAMEPAD_ADDED + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddGamepadMapping(const char *mapping); + +/** + * Load a set of gamepad mappings from an SDL_IOStream. + * + * You can call this function several times, if needed, to load different + * database files. + * + * If a new mapping is loaded for an already known gamepad GUID, the later + * version will overwrite the one currently loaded. + * + * Any new mappings for already plugged in controllers will generate + * SDL_EVENT_GAMEPAD_ADDED events. + * + * Mappings not belonging to the current platform or with no platform field + * specified will be ignored (i.e. mappings for Linux will be ignored in + * Windows, etc). + * + * This function will load the text database entirely in memory before + * processing it, so take this into consideration if you are in a memory + * constrained environment. + * + * \param src the data stream for the mappings to be added. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns the number of mappings added or -1 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_AddGamepadMappingsFromFile + * \sa SDL_GetGamepadMapping + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_HINT_GAMECONTROLLERCONFIG + * \sa SDL_HINT_GAMECONTROLLERCONFIG_FILE + * \sa SDL_EVENT_GAMEPAD_ADDED + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddGamepadMappingsFromIO(SDL_IOStream *src, bool closeio); + +/** + * Load a set of gamepad mappings from a file. + * + * You can call this function several times, if needed, to load different + * database files. + * + * If a new mapping is loaded for an already known gamepad GUID, the later + * version will overwrite the one currently loaded. + * + * Any new mappings for already plugged in controllers will generate + * SDL_EVENT_GAMEPAD_ADDED events. + * + * Mappings not belonging to the current platform or with no platform field + * specified will be ignored (i.e. mappings for Linux will be ignored in + * Windows, etc). + * + * \param file the mappings file to load. + * \returns the number of mappings added or -1 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_AddGamepadMappingsFromIO + * \sa SDL_GetGamepadMapping + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_HINT_GAMECONTROLLERCONFIG + * \sa SDL_HINT_GAMECONTROLLERCONFIG_FILE + * \sa SDL_EVENT_GAMEPAD_ADDED + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddGamepadMappingsFromFile(const char *file); + +/** + * Reinitialize the SDL mapping database to its initial state. + * + * This will generate gamepad events as needed if device mappings change. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReloadGamepadMappings(void); + +/** + * Get the current gamepad mappings. + * + * \param count a pointer filled in with the number of mappings returned, can + * be NULL. + * \returns an array of the mapping strings, NULL-terminated, or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GetGamepadMappings(int *count); + +/** + * Get the gamepad mapping string for a given GUID. + * + * \param guid a structure containing the GUID for which a mapping is desired. + * \returns a mapping string or NULL on failure; call SDL_GetError() for more + * information. This should be freed with SDL_free() when it is no + * longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUIDForID + * \sa SDL_GetJoystickGUID + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetGamepadMappingForGUID(SDL_GUID guid); + +/** + * Get the current mapping of a gamepad. + * + * Details about mappings are discussed with SDL_AddGamepadMapping(). + * + * \param gamepad the gamepad you want to get the current mapping for. + * \returns a string that has the gamepad's mapping or NULL if no mapping is + * available; call SDL_GetError() for more information. This should + * be freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_GetGamepadMappingForID + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_SetGamepadMapping + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetGamepadMapping(SDL_Gamepad *gamepad); + +/** + * Set the current mapping of a joystick or gamepad. + * + * Details about mappings are discussed with SDL_AddGamepadMapping(). + * + * \param instance_id the joystick instance ID. + * \param mapping the mapping to use for this device, or NULL to clear the + * mapping. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_GetGamepadMapping + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadMapping(SDL_JoystickID instance_id, const char *mapping); + +/** + * Return whether a gamepad is currently connected. + * + * \returns true if a gamepad is connected, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasGamepad(void); + +/** + * Get a list of currently connected gamepads. + * + * \param count a pointer filled in with the number of gamepads returned, may + * be NULL. + * \returns a 0 terminated array of joystick instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasGamepad + * \sa SDL_OpenGamepad + */ +extern SDL_DECLSPEC SDL_JoystickID * SDLCALL SDL_GetGamepads(int *count); + +/** + * Check if the given joystick is supported by the gamepad interface. + * + * \param instance_id the joystick instance ID. + * \returns true if the given joystick is supported by the gamepad interface, + * false if it isn't or it's an invalid index. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoysticks + * \sa SDL_OpenGamepad + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsGamepad(SDL_JoystickID instance_id); + +/** + * Get the implementation dependent name of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the name of the selected gamepad. If no name can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadName + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadNameForID(SDL_JoystickID instance_id); + +/** + * Get the implementation dependent path of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the path of the selected gamepad. If no path can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPath + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadPathForID(SDL_JoystickID instance_id); + +/** + * Get the player index of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the player index of a gamepad, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPlayerIndex + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetGamepadPlayerIndexForID(SDL_JoystickID instance_id); + +/** + * Get the implementation-dependent GUID of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the GUID of the selected gamepad. If called on an invalid index, + * this function returns a zero GUID. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GUIDToString + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_GetGamepadGUIDForID(SDL_JoystickID instance_id); + +/** + * Get the USB vendor ID of a gamepad, if available. + * + * This can be called before any gamepads are opened. If the vendor ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB vendor ID of the selected gamepad. If called on an invalid + * index, this function returns zero. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadVendor + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadVendorForID(SDL_JoystickID instance_id); + +/** + * Get the USB product ID of a gamepad, if available. + * + * This can be called before any gamepads are opened. If the product ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB product ID of the selected gamepad. If called on an + * invalid index, this function returns zero. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProduct + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProductForID(SDL_JoystickID instance_id); + +/** + * Get the product version of a gamepad, if available. + * + * This can be called before any gamepads are opened. If the product version + * isn't available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the product version of the selected gamepad. If called on an + * invalid index, this function returns zero. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProductVersion + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProductVersionForID(SDL_JoystickID instance_id); + +/** + * Get the type of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the gamepad type. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadType + * \sa SDL_GetGamepads + * \sa SDL_GetRealGamepadTypeForID + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadTypeForID(SDL_JoystickID instance_id); + +/** + * Get the type of a gamepad, ignoring any mapping override. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the gamepad type. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTypeForID + * \sa SDL_GetGamepads + * \sa SDL_GetRealGamepadType + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetRealGamepadTypeForID(SDL_JoystickID instance_id); + +/** + * Get the mapping of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the mapping string. Returns NULL if no mapping is available. This + * should be freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepads + * \sa SDL_GetGamepadMapping + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetGamepadMappingForID(SDL_JoystickID instance_id); + +/** + * Open a gamepad for use. + * + * \param instance_id the joystick instance ID. + * \returns a gamepad identifier or NULL if an error occurred; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseGamepad + * \sa SDL_IsGamepad + */ +extern SDL_DECLSPEC SDL_Gamepad * SDLCALL SDL_OpenGamepad(SDL_JoystickID instance_id); + +/** + * Get the SDL_Gamepad associated with a joystick instance ID, if it has been + * opened. + * + * \param instance_id the joystick instance ID of the gamepad. + * \returns an SDL_Gamepad on success or NULL on failure or if it hasn't been + * opened yet; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Gamepad * SDLCALL SDL_GetGamepadFromID(SDL_JoystickID instance_id); + +/** + * Get the SDL_Gamepad associated with a player index. + * + * \param player_index the player index, which different from the instance ID. + * \returns the SDL_Gamepad associated with a player index. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPlayerIndex + * \sa SDL_SetGamepadPlayerIndex + */ +extern SDL_DECLSPEC SDL_Gamepad * SDLCALL SDL_GetGamepadFromPlayerIndex(int player_index); + +/** + * Get the properties associated with an opened gamepad. + * + * These properties are shared with the underlying joystick object. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_GAMEPAD_CAP_MONO_LED_BOOLEAN`: true if this gamepad has an LED + * that has adjustable brightness + * - `SDL_PROP_GAMEPAD_CAP_RGB_LED_BOOLEAN`: true if this gamepad has an LED + * that has adjustable color + * - `SDL_PROP_GAMEPAD_CAP_PLAYER_LED_BOOLEAN`: true if this gamepad has a + * player LED + * - `SDL_PROP_GAMEPAD_CAP_RUMBLE_BOOLEAN`: true if this gamepad has + * left/right rumble + * - `SDL_PROP_GAMEPAD_CAP_TRIGGER_RUMBLE_BOOLEAN`: true if this gamepad has + * simple trigger rumble + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetGamepadProperties(SDL_Gamepad *gamepad); + +#define SDL_PROP_GAMEPAD_CAP_MONO_LED_BOOLEAN SDL_PROP_JOYSTICK_CAP_MONO_LED_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_RGB_LED_BOOLEAN SDL_PROP_JOYSTICK_CAP_RGB_LED_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_PLAYER_LED_BOOLEAN SDL_PROP_JOYSTICK_CAP_PLAYER_LED_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_RUMBLE_BOOLEAN SDL_PROP_JOYSTICK_CAP_RUMBLE_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_TRIGGER_RUMBLE_BOOLEAN SDL_PROP_JOYSTICK_CAP_TRIGGER_RUMBLE_BOOLEAN + +/** + * Get the instance ID of an opened gamepad. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns the instance ID of the specified gamepad on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickID SDLCALL SDL_GetGamepadID(SDL_Gamepad *gamepad); + +/** + * Get the implementation-dependent name for an opened gamepad. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns the implementation dependent name for the gamepad, or NULL if + * there is no name or the identifier passed is invalid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadNameForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadName(SDL_Gamepad *gamepad); + +/** + * Get the implementation-dependent path for an opened gamepad. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns the implementation dependent path for the gamepad, or NULL if + * there is no path or the identifier passed is invalid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPathForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadPath(SDL_Gamepad *gamepad); + +/** + * Get the type of an opened gamepad. + * + * \param gamepad the gamepad object to query. + * \returns the gamepad type, or SDL_GAMEPAD_TYPE_UNKNOWN if it's not + * available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTypeForID + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadType(SDL_Gamepad *gamepad); + +/** + * Get the type of an opened gamepad, ignoring any mapping override. + * + * \param gamepad the gamepad object to query. + * \returns the gamepad type, or SDL_GAMEPAD_TYPE_UNKNOWN if it's not + * available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRealGamepadTypeForID + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetRealGamepadType(SDL_Gamepad *gamepad); + +/** + * Get the player index of an opened gamepad. + * + * For XInput gamepads this returns the XInput user index. + * + * \param gamepad the gamepad object to query. + * \returns the player index for gamepad, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetGamepadPlayerIndex + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetGamepadPlayerIndex(SDL_Gamepad *gamepad); + +/** + * Set the player index of an opened gamepad. + * + * \param gamepad the gamepad object to adjust. + * \param player_index player index to assign to this gamepad, or -1 to clear + * the player index and turn off player LEDs. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPlayerIndex + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadPlayerIndex(SDL_Gamepad *gamepad, int player_index); + +/** + * Get the USB vendor ID of an opened gamepad, if available. + * + * If the vendor ID isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the USB vendor ID, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadVendorForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadVendor(SDL_Gamepad *gamepad); + +/** + * Get the USB product ID of an opened gamepad, if available. + * + * If the product ID isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the USB product ID, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProductForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProduct(SDL_Gamepad *gamepad); + +/** + * Get the product version of an opened gamepad, if available. + * + * If the product version isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the USB product version, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProductVersionForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProductVersion(SDL_Gamepad *gamepad); + +/** + * Get the firmware version of an opened gamepad, if available. + * + * If the firmware version isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the gamepad firmware version, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadFirmwareVersion(SDL_Gamepad *gamepad); + +/** + * Get the serial number of an opened gamepad, if available. + * + * Returns the serial number of the gamepad, or NULL if it is not available. + * + * \param gamepad the gamepad object to query. + * \returns the serial number, or NULL if unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadSerial(SDL_Gamepad *gamepad); + +/** + * Get the Steam Input handle of an opened gamepad, if available. + * + * Returns an InputHandle_t for the gamepad that can be used with Steam Input + * API: https://partner.steamgames.com/doc/api/ISteamInput + * + * \param gamepad the gamepad object to query. + * \returns the gamepad handle, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetGamepadSteamHandle(SDL_Gamepad *gamepad); + +/** + * Get the connection state of a gamepad. + * + * \param gamepad the gamepad object to query. + * \returns the connection state on success or + * `SDL_JOYSTICK_CONNECTION_INVALID` on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickConnectionState SDLCALL SDL_GetGamepadConnectionState(SDL_Gamepad *gamepad); + +/** + * Get the battery state of a gamepad. + * + * You should never take a battery status as absolute truth. Batteries + * (especially failing batteries) are delicate hardware, and the values + * reported here are best estimates based on what that hardware reports. It's + * not uncommon for older batteries to lose stored power much faster than it + * reports, or completely drain when reporting it has 20 percent left, etc. + * + * \param gamepad the gamepad object to query. + * \param percent a pointer filled in with the percentage of battery life + * left, between 0 and 100, or NULL to ignore. This will be + * filled in with -1 we can't determine a value or there is no + * battery. + * \returns the current battery state. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PowerState SDLCALL SDL_GetGamepadPowerInfo(SDL_Gamepad *gamepad, int *percent); + +/** + * Check if a gamepad has been opened and is currently connected. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns true if the gamepad has been opened and is currently connected, or + * false if not. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadConnected(SDL_Gamepad *gamepad); + +/** + * Get the underlying joystick from a gamepad. + * + * This function will give you a SDL_Joystick object, which allows you to use + * the SDL_Joystick functions with a SDL_Gamepad object. This would be useful + * for getting a joystick's position at any given time, even if it hasn't + * moved (moving it would produce an event, which would have the axis' value). + * + * The pointer returned is owned by the SDL_Gamepad. You should not call + * SDL_CloseJoystick() on it, for example, since doing so will likely cause + * SDL to crash. + * + * \param gamepad the gamepad object that you want to get a joystick from. + * \returns an SDL_Joystick object, or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_GetGamepadJoystick(SDL_Gamepad *gamepad); + +/** + * Set the state of gamepad event processing. + * + * If gamepad events are disabled, you must call SDL_UpdateGamepads() yourself + * and check the state of the gamepad when you want gamepad information. + * + * \param enabled whether to process gamepad events or not. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadEventsEnabled + * \sa SDL_UpdateGamepads + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGamepadEventsEnabled(bool enabled); + +/** + * Query the state of gamepad event processing. + * + * If gamepad events are disabled, you must call SDL_UpdateGamepads() yourself + * and check the state of the gamepad when you want gamepad information. + * + * \returns true if gamepad events are being processed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetGamepadEventsEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadEventsEnabled(void); + +/** + * Get the SDL joystick layer bindings for a gamepad. + * + * \param gamepad a gamepad. + * \param count a pointer filled in with the number of bindings returned. + * \returns a NULL terminated array of pointers to bindings or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GamepadBinding ** SDLCALL SDL_GetGamepadBindings(SDL_Gamepad *gamepad, int *count); + +/** + * Manually pump gamepad updates if not using the loop. + * + * This function is called automatically by the event loop if events are + * enabled. Under such circumstances, it will not be necessary to call this + * function. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateGamepads(void); + +/** + * Convert a string into SDL_GamepadType enum. + * + * This function is called internally to translate SDL_Gamepad mapping strings + * for the underlying joystick device into the consistent SDL_Gamepad mapping. + * You do not normally need to call this function unless you are parsing + * SDL_Gamepad mappings in your own code. + * + * \param str string representing a SDL_GamepadType type. + * \returns the SDL_GamepadType enum corresponding to the input string, or + * `SDL_GAMEPAD_TYPE_UNKNOWN` if no match was found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadStringForType + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadTypeFromString(const char *str); + +/** + * Convert from an SDL_GamepadType enum to a string. + * + * \param type an enum value for a given SDL_GamepadType. + * \returns a string for the given type, or NULL if an invalid type is + * specified. The string returned is of the format used by + * SDL_Gamepad mapping strings. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTypeFromString + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadStringForType(SDL_GamepadType type); + +/** + * Convert a string into SDL_GamepadAxis enum. + * + * This function is called internally to translate SDL_Gamepad mapping strings + * for the underlying joystick device into the consistent SDL_Gamepad mapping. + * You do not normally need to call this function unless you are parsing + * SDL_Gamepad mappings in your own code. + * + * Note specially that "righttrigger" and "lefttrigger" map to + * `SDL_GAMEPAD_AXIS_RIGHT_TRIGGER` and `SDL_GAMEPAD_AXIS_LEFT_TRIGGER`, + * respectively. + * + * \param str string representing a SDL_Gamepad axis. + * \returns the SDL_GamepadAxis enum corresponding to the input string, or + * `SDL_GAMEPAD_AXIS_INVALID` if no match was found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadStringForAxis + */ +extern SDL_DECLSPEC SDL_GamepadAxis SDLCALL SDL_GetGamepadAxisFromString(const char *str); + +/** + * Convert from an SDL_GamepadAxis enum to a string. + * + * \param axis an enum value for a given SDL_GamepadAxis. + * \returns a string for the given axis, or NULL if an invalid axis is + * specified. The string returned is of the format used by + * SDL_Gamepad mapping strings. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadAxisFromString + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadStringForAxis(SDL_GamepadAxis axis); + +/** + * Query whether a gamepad has a given axis. + * + * This merely reports whether the gamepad's mapping defined this axis, as + * that is all the information SDL has about the physical device. + * + * \param gamepad a gamepad. + * \param axis an axis enum value (an SDL_GamepadAxis value). + * \returns true if the gamepad has this axis, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasButton + * \sa SDL_GetGamepadAxis + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadHasAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis); + +/** + * Get the current state of an axis control on a gamepad. + * + * The axis indices start at index 0. + * + * For thumbsticks, the state is a value ranging from -32768 (up/left) to + * 32767 (down/right). + * + * Triggers range from 0 when released to 32767 when fully pressed, and never + * return a negative value. Note that this differs from the value reported by + * the lower-level SDL_GetJoystickAxis(), which normally uses the full range. + * + * \param gamepad a gamepad. + * \param axis an axis index (one of the SDL_GamepadAxis values). + * \returns axis state (including 0) on success or 0 (also) on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasAxis + * \sa SDL_GetGamepadButton + */ +extern SDL_DECLSPEC Sint16 SDLCALL SDL_GetGamepadAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis); + +/** + * Convert a string into an SDL_GamepadButton enum. + * + * This function is called internally to translate SDL_Gamepad mapping strings + * for the underlying joystick device into the consistent SDL_Gamepad mapping. + * You do not normally need to call this function unless you are parsing + * SDL_Gamepad mappings in your own code. + * + * \param str string representing a SDL_Gamepad axis. + * \returns the SDL_GamepadButton enum corresponding to the input string, or + * `SDL_GAMEPAD_BUTTON_INVALID` if no match was found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadStringForButton + */ +extern SDL_DECLSPEC SDL_GamepadButton SDLCALL SDL_GetGamepadButtonFromString(const char *str); + +/** + * Convert from an SDL_GamepadButton enum to a string. + * + * \param button an enum value for a given SDL_GamepadButton. + * \returns a string for the given button, or NULL if an invalid button is + * specified. The string returned is of the format used by + * SDL_Gamepad mapping strings. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadButtonFromString + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadStringForButton(SDL_GamepadButton button); + +/** + * Query whether a gamepad has a given button. + * + * This merely reports whether the gamepad's mapping defined this button, as + * that is all the information SDL has about the physical device. + * + * \param gamepad a gamepad. + * \param button a button enum value (an SDL_GamepadButton value). + * \returns true if the gamepad has this button, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasAxis + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadHasButton(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Get the current state of a button on a gamepad. + * + * \param gamepad a gamepad. + * \param button a button index (one of the SDL_GamepadButton values). + * \returns true if the button is pressed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasButton + * \sa SDL_GetGamepadAxis + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGamepadButton(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Get the label of a button on a gamepad. + * + * \param type the type of gamepad to check. + * \param button a button index (one of the SDL_GamepadButton values). + * \returns the SDL_GamepadButtonLabel enum corresponding to the button label. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadButtonLabel + */ +extern SDL_DECLSPEC SDL_GamepadButtonLabel SDLCALL SDL_GetGamepadButtonLabelForType(SDL_GamepadType type, SDL_GamepadButton button); + +/** + * Get the label of a button on a gamepad. + * + * \param gamepad a gamepad. + * \param button a button index (one of the SDL_GamepadButton values). + * \returns the SDL_GamepadButtonLabel enum corresponding to the button label. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadButtonLabelForType + */ +extern SDL_DECLSPEC SDL_GamepadButtonLabel SDLCALL SDL_GetGamepadButtonLabel(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Get the number of touchpads on a gamepad. + * + * \param gamepad a gamepad. + * \returns number of touchpads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumGamepadTouchpadFingers + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumGamepadTouchpads(SDL_Gamepad *gamepad); + +/** + * Get the number of supported simultaneous fingers on a touchpad on a game + * gamepad. + * + * \param gamepad a gamepad. + * \param touchpad a touchpad. + * \returns number of supported simultaneous fingers. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTouchpadFinger + * \sa SDL_GetNumGamepadTouchpads + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumGamepadTouchpadFingers(SDL_Gamepad *gamepad, int touchpad); + +/** + * Get the current state of a finger on a touchpad on a gamepad. + * + * \param gamepad a gamepad. + * \param touchpad a touchpad. + * \param finger a finger. + * \param down a pointer filled with true if the finger is down, false + * otherwise, may be NULL. + * \param x a pointer filled with the x position, normalized 0 to 1, with the + * origin in the upper left, may be NULL. + * \param y a pointer filled with the y position, normalized 0 to 1, with the + * origin in the upper left, may be NULL. + * \param pressure a pointer filled with pressure value, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumGamepadTouchpadFingers + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGamepadTouchpadFinger(SDL_Gamepad *gamepad, int touchpad, int finger, bool *down, float *x, float *y, float *pressure); + +/** + * Return whether a gamepad has a particular sensor. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \returns true if the sensor exists, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadSensorData + * \sa SDL_GetGamepadSensorDataRate + * \sa SDL_SetGamepadSensorEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadHasSensor(SDL_Gamepad *gamepad, SDL_SensorType type); + +/** + * Set whether data reporting for a gamepad sensor is enabled. + * + * \param gamepad the gamepad to update. + * \param type the type of sensor to enable/disable. + * \param enabled whether data reporting should be enabled. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasSensor + * \sa SDL_GamepadSensorEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadSensorEnabled(SDL_Gamepad *gamepad, SDL_SensorType type, bool enabled); + +/** + * Query whether sensor data reporting is enabled for a gamepad. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \returns true if the sensor is enabled, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetGamepadSensorEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadSensorEnabled(SDL_Gamepad *gamepad, SDL_SensorType type); + +/** + * Get the data rate (number of events per second) of a gamepad sensor. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \returns the data rate, or 0.0f if the data rate is not available. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetGamepadSensorDataRate(SDL_Gamepad *gamepad, SDL_SensorType type); + +/** + * Get the current state of a gamepad sensor. + * + * The number of values and interpretation of the data is sensor dependent. + * See SDL_sensor.h for the details for each type of sensor. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \param data a pointer filled with the current sensor state. + * \param num_values the number of values to write to data. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGamepadSensorData(SDL_Gamepad *gamepad, SDL_SensorType type, float *data, int num_values); + +/** + * Start a rumble effect on a gamepad. + * + * Each call to this function cancels any previous rumble effect, and calling + * it with 0 intensity stops any rumbling. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param gamepad the gamepad to vibrate. + * \param low_frequency_rumble the intensity of the low frequency (left) + * rumble motor, from 0 to 0xFFFF. + * \param high_frequency_rumble the intensity of the high frequency (right) + * rumble motor, from 0 to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleGamepad(SDL_Gamepad *gamepad, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble, Uint32 duration_ms); + +/** + * Start a rumble effect in the gamepad's triggers. + * + * Each call to this function cancels any previous trigger rumble effect, and + * calling it with 0 intensity stops any rumbling. + * + * Note that this is rumbling of the _triggers_ and not the gamepad as a + * whole. This is currently only supported on Xbox One gamepads. If you want + * the (more common) whole-gamepad rumble, use SDL_RumbleGamepad() instead. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param gamepad the gamepad to vibrate. + * \param left_rumble the intensity of the left trigger rumble motor, from 0 + * to 0xFFFF. + * \param right_rumble the intensity of the right trigger rumble motor, from 0 + * to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RumbleGamepad + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleGamepadTriggers(SDL_Gamepad *gamepad, Uint16 left_rumble, Uint16 right_rumble, Uint32 duration_ms); + +/** + * Update a gamepad's LED color. + * + * An example of a joystick LED is the light on the back of a PlayStation 4's + * DualShock 4 controller. + * + * For gamepads with a single color LED, the maximum of the RGB values will be + * used as the LED brightness. + * + * \param gamepad the gamepad to update. + * \param red the intensity of the red LED. + * \param green the intensity of the green LED. + * \param blue the intensity of the blue LED. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadLED(SDL_Gamepad *gamepad, Uint8 red, Uint8 green, Uint8 blue); + +/** + * Send a gamepad specific effect packet. + * + * \param gamepad the gamepad to affect. + * \param data the data to send to the gamepad. + * \param size the size of the data to send to the gamepad. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendGamepadEffect(SDL_Gamepad *gamepad, const void *data, int size); + +/** + * Close a gamepad previously opened with SDL_OpenGamepad(). + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenGamepad + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseGamepad(SDL_Gamepad *gamepad); + +/** + * Return the sfSymbolsName for a given button on a gamepad on Apple + * platforms. + * + * \param gamepad the gamepad to query. + * \param button a button on the gamepad. + * \returns the sfSymbolsName or NULL if the name can't be found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadAppleSFSymbolsNameForAxis + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadAppleSFSymbolsNameForButton(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Return the sfSymbolsName for a given axis on a gamepad on Apple platforms. + * + * \param gamepad the gamepad to query. + * \param axis an axis on the gamepad. + * \returns the sfSymbolsName or NULL if the name can't be found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadAppleSFSymbolsNameForButton + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadAppleSFSymbolsNameForAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_gamepad_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_gpu.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_gpu.h new file mode 100644 index 0000000..4a5e32f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_gpu.h @@ -0,0 +1,4213 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: GPU */ + +/** + * # CategoryGPU + * + * The GPU API offers a cross-platform way for apps to talk to modern graphics + * hardware. It offers both 3D graphics and compute support, in the style of + * Metal, Vulkan, and Direct3D 12. + * + * A basic workflow might be something like this: + * + * The app creates a GPU device with SDL_CreateGPUDevice(), and assigns it to + * a window with SDL_ClaimWindowForGPUDevice()--although strictly speaking you + * can render offscreen entirely, perhaps for image processing, and not use a + * window at all. + * + * Next, the app prepares static data (things that are created once and used + * over and over). For example: + * + * - Shaders (programs that run on the GPU): use SDL_CreateGPUShader(). + * - Vertex buffers (arrays of geometry data) and other rendering data: use + * SDL_CreateGPUBuffer() and SDL_UploadToGPUBuffer(). + * - Textures (images): use SDL_CreateGPUTexture() and + * SDL_UploadToGPUTexture(). + * - Samplers (how textures should be read from): use SDL_CreateGPUSampler(). + * - Render pipelines (precalculated rendering state): use + * SDL_CreateGPUGraphicsPipeline() + * + * To render, the app creates one or more command buffers, with + * SDL_AcquireGPUCommandBuffer(). Command buffers collect rendering + * instructions that will be submitted to the GPU in batch. Complex scenes can + * use multiple command buffers, maybe configured across multiple threads in + * parallel, as long as they are submitted in the correct order, but many apps + * will just need one command buffer per frame. + * + * Rendering can happen to a texture (what other APIs call a "render target") + * or it can happen to the swapchain texture (which is just a special texture + * that represents a window's contents). The app can use + * SDL_WaitAndAcquireGPUSwapchainTexture() to render to the window. + * + * Rendering actually happens in a Render Pass, which is encoded into a + * command buffer. One can encode multiple render passes (or alternate between + * render and compute passes) in a single command buffer, but many apps might + * simply need a single render pass in a single command buffer. Render Passes + * can render to up to four color textures and one depth texture + * simultaneously. If the set of textures being rendered to needs to change, + * the Render Pass must be ended and a new one must be begun. + * + * The app calls SDL_BeginGPURenderPass(). Then it sets states it needs for + * each draw: + * + * - SDL_BindGPUGraphicsPipeline() + * - SDL_SetGPUViewport() + * - SDL_BindGPUVertexBuffers() + * - SDL_BindGPUVertexSamplers() + * - etc + * + * Then, make the actual draw commands with these states: + * + * - SDL_DrawGPUPrimitives() + * - SDL_DrawGPUPrimitivesIndirect() + * - SDL_DrawGPUIndexedPrimitivesIndirect() + * - etc + * + * After all the drawing commands for a pass are complete, the app should call + * SDL_EndGPURenderPass(). Once a render pass ends all render-related state is + * reset. + * + * The app can begin new Render Passes and make new draws in the same command + * buffer until the entire scene is rendered. + * + * Once all of the render commands for the scene are complete, the app calls + * SDL_SubmitGPUCommandBuffer() to send it to the GPU for processing. + * + * If the app needs to read back data from texture or buffers, the API has an + * efficient way of doing this, provided that the app is willing to tolerate + * some latency. When the app uses SDL_DownloadFromGPUTexture() or + * SDL_DownloadFromGPUBuffer(), submitting the command buffer with + * SDL_SubmitGPUCommandBufferAndAcquireFence() will return a fence handle that + * the app can poll or wait on in a thread. Once the fence indicates that the + * command buffer is done processing, it is safe to read the downloaded data. + * Make sure to call SDL_ReleaseGPUFence() when done with the fence. + * + * The API also has "compute" support. The app calls SDL_BeginGPUComputePass() + * with compute-writeable textures and/or buffers, which can be written to in + * a compute shader. Then it sets states it needs for the compute dispatches: + * + * - SDL_BindGPUComputePipeline() + * - SDL_BindGPUComputeStorageBuffers() + * - SDL_BindGPUComputeStorageTextures() + * + * Then, dispatch compute work: + * + * - SDL_DispatchGPUCompute() + * + * For advanced users, this opens up powerful GPU-driven workflows. + * + * Graphics and compute pipelines require the use of shaders, which as + * mentioned above are small programs executed on the GPU. Each backend + * (Vulkan, Metal, D3D12) requires a different shader format. When the app + * creates the GPU device, the app lets the device know which shader formats + * the app can provide. It will then select the appropriate backend depending + * on the available shader formats and the backends available on the platform. + * When creating shaders, the app must provide the correct shader format for + * the selected backend. If you would like to learn more about why the API + * works this way, there is a detailed + * [blog post](https://moonside.games/posts/layers-all-the-way-down/) + * explaining this situation. + * + * It is optimal for apps to pre-compile the shader formats they might use, + * but for ease of use SDL provides a separate project, + * [SDL_shadercross](https://github.com/libsdl-org/SDL_shadercross) + * , for performing runtime shader cross-compilation. It also has a CLI + * interface for offline precompilation as well. + * + * This is an extremely quick overview that leaves out several important + * details. Already, though, one can see that GPU programming can be quite + * complex! If you just need simple 2D graphics, the + * [Render API](https://wiki.libsdl.org/SDL3/CategoryRender) + * is much easier to use but still hardware-accelerated. That said, even for + * 2D applications the performance benefits and expressiveness of the GPU API + * are significant. + * + * The GPU API targets a feature set with a wide range of hardware support and + * ease of portability. It is designed so that the app won't have to branch + * itself by querying feature support. If you need cutting-edge features with + * limited hardware support, this API is probably not for you. + * + * Examples demonstrating proper usage of this API can be found + * [here](https://github.com/TheSpydog/SDL_gpu_examples) + * . + * + * ## Performance considerations + * + * Here are some basic tips for maximizing your rendering performance. + * + * - Beginning a new render pass is relatively expensive. Use as few render + * passes as you can. + * - Minimize the amount of state changes. For example, binding a pipeline is + * relatively cheap, but doing it hundreds of times when you don't need to + * will slow the performance significantly. + * - Perform your data uploads as early as possible in the frame. + * - Don't churn resources. Creating and releasing resources is expensive. + * It's better to create what you need up front and cache it. + * - Don't use uniform buffers for large amounts of data (more than a matrix + * or so). Use a storage buffer instead. + * - Use cycling correctly. There is a detailed explanation of cycling further + * below. + * - Use culling techniques to minimize pixel writes. The less writing the GPU + * has to do the better. Culling can be a very advanced topic but even + * simple culling techniques can boost performance significantly. + * + * In general try to remember the golden rule of performance: doing things is + * more expensive than not doing things. Don't Touch The Driver! + * + * ## FAQ + * + * **Question: When are you adding more advanced features, like ray tracing or + * mesh shaders?** + * + * Answer: We don't have immediate plans to add more bleeding-edge features, + * but we certainly might in the future, when these features prove worthwhile, + * and reasonable to implement across several platforms and underlying APIs. + * So while these things are not in the "never" category, they are definitely + * not "near future" items either. + * + * **Question: Why is my shader not working?** + * + * Answer: A common oversight when using shaders is not properly laying out + * the shader resources/registers correctly. The GPU API is very strict with + * how it wants resources to be laid out and it's difficult for the API to + * automatically validate shaders to see if they have a compatible layout. See + * the documentation for SDL_CreateGPUShader() and + * SDL_CreateGPUComputePipeline() for information on the expected layout. + * + * Another common issue is not setting the correct number of samplers, + * textures, and buffers in SDL_GPUShaderCreateInfo. If possible use shader + * reflection to extract the required information from the shader + * automatically instead of manually filling in the struct's values. + * + * **Question: My application isn't performing very well. Is this the GPU + * API's fault?** + * + * Answer: No. Long answer: The GPU API is a relatively thin layer over the + * underlying graphics API. While it's possible that we have done something + * inefficiently, it's very unlikely especially if you are relatively + * inexperienced with GPU rendering. Please see the performance tips above and + * make sure you are following them. Additionally, tools like RenderDoc can be + * very helpful for diagnosing incorrect behavior and performance issues. + * + * ## System Requirements + * + * **Vulkan:** Supported on Windows, Linux, Nintendo Switch, and certain + * Android devices. Requires Vulkan 1.0 with the following extensions and + * device features: + * + * - `VK_KHR_swapchain` + * - `VK_KHR_maintenance1` + * - `independentBlend` + * - `imageCubeArray` + * - `depthClamp` + * - `shaderClipDistance` + * - `drawIndirectFirstInstance` + * + * **D3D12:** Supported on Windows 10 or newer, Xbox One (GDK), and Xbox + * Series X|S (GDK). Requires a GPU that supports DirectX 12 Feature Level + * 11_1. + * + * **Metal:** Supported on macOS 10.14+ and iOS/tvOS 13.0+. Hardware + * requirements vary by operating system: + * + * - macOS requires an Apple Silicon or + * [Intel Mac2 family](https://developer.apple.com/documentation/metal/mtlfeatureset/mtlfeatureset_macos_gpufamily2_v1?language=objc) + * GPU + * - iOS/tvOS requires an A9 GPU or newer + * - iOS Simulator and tvOS Simulator are unsupported + * + * ## Uniform Data + * + * Uniforms are for passing data to shaders. The uniform data will be constant + * across all executions of the shader. + * + * There are 4 available uniform slots per shader stage (where the stages are + * vertex, fragment, and compute). Uniform data pushed to a slot on a stage + * keeps its value throughout the command buffer until you call the relevant + * Push function on that slot again. + * + * For example, you could write your vertex shaders to read a camera matrix + * from uniform binding slot 0, push the camera matrix at the start of the + * command buffer, and that data will be used for every subsequent draw call. + * + * It is valid to push uniform data during a render or compute pass. + * + * Uniforms are best for pushing small amounts of data. If you are pushing + * more than a matrix or two per call you should consider using a storage + * buffer instead. + * + * ## A Note On Cycling + * + * When using a command buffer, operations do not occur immediately - they + * occur some time after the command buffer is submitted. + * + * When a resource is used in a pending or active command buffer, it is + * considered to be "bound". When a resource is no longer used in any pending + * or active command buffers, it is considered to be "unbound". + * + * If data resources are bound, it is unspecified when that data will be + * unbound unless you acquire a fence when submitting the command buffer and + * wait on it. However, this doesn't mean you need to track resource usage + * manually. + * + * All of the functions and structs that involve writing to a resource have a + * "cycle" bool. SDL_GPUTransferBuffer, SDL_GPUBuffer, and SDL_GPUTexture all + * effectively function as ring buffers on internal resources. When cycle is + * true, if the resource is bound, the cycle rotates to the next unbound + * internal resource, or if none are available, a new one is created. This + * means you don't have to worry about complex state tracking and + * synchronization as long as cycling is correctly employed. + * + * For example: you can call SDL_MapGPUTransferBuffer(), write texture data, + * SDL_UnmapGPUTransferBuffer(), and then SDL_UploadToGPUTexture(). The next + * time you write texture data to the transfer buffer, if you set the cycle + * param to true, you don't have to worry about overwriting any data that is + * not yet uploaded. + * + * Another example: If you are using a texture in a render pass every frame, + * this can cause a data dependency between frames. If you set cycle to true + * in the SDL_GPUColorTargetInfo struct, you can prevent this data dependency. + * + * Cycling will never undefine already bound data. When cycling, all data in + * the resource is considered to be undefined for subsequent commands until + * that data is written again. You must take care not to read undefined data. + * + * Note that when cycling a texture, the entire texture will be cycled, even + * if only part of the texture is used in the call, so you must consider the + * entire texture to contain undefined data after cycling. + * + * You must also take care not to overwrite a section of data that has been + * referenced in a command without cycling first. It is OK to overwrite + * unreferenced data in a bound resource without cycling, but overwriting a + * section of data that has already been referenced will produce unexpected + * results. + */ + +#ifndef SDL_gpu_h_ +#define SDL_gpu_h_ + +#include +#include +#include +#include +#include +#include + +#include +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/* Type Declarations */ + +/** + * An opaque handle representing the SDL_GPU context. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GPUDevice SDL_GPUDevice; + +/** + * An opaque handle representing a buffer. + * + * Used for vertices, indices, indirect draw commands, and general compute + * data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_CopyGPUBufferToBuffer + * \sa SDL_BindGPUVertexBuffers + * \sa SDL_BindGPUIndexBuffer + * \sa SDL_BindGPUVertexStorageBuffers + * \sa SDL_BindGPUFragmentStorageBuffers + * \sa SDL_DrawGPUPrimitivesIndirect + * \sa SDL_DrawGPUIndexedPrimitivesIndirect + * \sa SDL_BindGPUComputeStorageBuffers + * \sa SDL_DispatchGPUComputeIndirect + * \sa SDL_ReleaseGPUBuffer + */ +typedef struct SDL_GPUBuffer SDL_GPUBuffer; + +/** + * An opaque handle representing a transfer buffer. + * + * Used for transferring data to and from the device. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTransferBuffer + * \sa SDL_MapGPUTransferBuffer + * \sa SDL_UnmapGPUTransferBuffer + * \sa SDL_UploadToGPUBuffer + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_ReleaseGPUTransferBuffer + */ +typedef struct SDL_GPUTransferBuffer SDL_GPUTransferBuffer; + +/** + * An opaque handle representing a texture. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_CopyGPUTextureToTexture + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUVertexStorageTextures + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_BindGPUFragmentStorageTextures + * \sa SDL_BindGPUComputeStorageTextures + * \sa SDL_GenerateMipmapsForGPUTexture + * \sa SDL_BlitGPUTexture + * \sa SDL_ReleaseGPUTexture + */ +typedef struct SDL_GPUTexture SDL_GPUTexture; + +/** + * An opaque handle representing a sampler. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_ReleaseGPUSampler + */ +typedef struct SDL_GPUSampler SDL_GPUSampler; + +/** + * An opaque handle representing a compiled shader object. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_ReleaseGPUShader + */ +typedef struct SDL_GPUShader SDL_GPUShader; + +/** + * An opaque handle representing a compute pipeline. + * + * Used during compute passes. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUComputePipeline + * \sa SDL_BindGPUComputePipeline + * \sa SDL_ReleaseGPUComputePipeline + */ +typedef struct SDL_GPUComputePipeline SDL_GPUComputePipeline; + +/** + * An opaque handle representing a graphics pipeline. + * + * Used during render passes. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_BindGPUGraphicsPipeline + * \sa SDL_ReleaseGPUGraphicsPipeline + */ +typedef struct SDL_GPUGraphicsPipeline SDL_GPUGraphicsPipeline; + +/** + * An opaque handle representing a command buffer. + * + * Most state is managed via command buffers. When setting state using a + * command buffer, that state is local to the command buffer. + * + * Commands only begin execution on the GPU once SDL_SubmitGPUCommandBuffer is + * called. Once the command buffer is submitted, it is no longer valid to use + * it. + * + * Command buffers are executed in submission order. If you submit command + * buffer A and then command buffer B all commands in A will begin executing + * before any command in B begins executing. + * + * In multi-threading scenarios, you should only access a command buffer on + * the thread you acquired it from. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +typedef struct SDL_GPUCommandBuffer SDL_GPUCommandBuffer; + +/** + * An opaque handle representing a render pass. + * + * This handle is transient and should not be held or referenced after + * SDL_EndGPURenderPass is called. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + * \sa SDL_EndGPURenderPass + */ +typedef struct SDL_GPURenderPass SDL_GPURenderPass; + +/** + * An opaque handle representing a compute pass. + * + * This handle is transient and should not be held or referenced after + * SDL_EndGPUComputePass is called. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUComputePass + * \sa SDL_EndGPUComputePass + */ +typedef struct SDL_GPUComputePass SDL_GPUComputePass; + +/** + * An opaque handle representing a copy pass. + * + * This handle is transient and should not be held or referenced after + * SDL_EndGPUCopyPass is called. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUCopyPass + * \sa SDL_EndGPUCopyPass + */ +typedef struct SDL_GPUCopyPass SDL_GPUCopyPass; + +/** + * An opaque handle representing a fence. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_QueryGPUFence + * \sa SDL_WaitForGPUFences + * \sa SDL_ReleaseGPUFence + */ +typedef struct SDL_GPUFence SDL_GPUFence; + +/** + * Specifies the primitive topology of a graphics pipeline. + * + * If you are using POINTLIST you must include a point size output in the + * vertex shader. + * + * - For HLSL compiling to SPIRV you must decorate a float output with + * [[vk::builtin("PointSize")]]. + * - For GLSL you must set the gl_PointSize builtin. + * - For MSL you must include a float output with the [[point_size]] + * decorator. + * + * Note that sized point topology is totally unsupported on D3D12. Any size + * other than 1 will be ignored. In general, you should avoid using point + * topology for both compatibility and performance reasons. You WILL regret + * using it. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUPrimitiveType +{ + SDL_GPU_PRIMITIVETYPE_TRIANGLELIST, /**< A series of separate triangles. */ + SDL_GPU_PRIMITIVETYPE_TRIANGLESTRIP, /**< A series of connected triangles. */ + SDL_GPU_PRIMITIVETYPE_LINELIST, /**< A series of separate lines. */ + SDL_GPU_PRIMITIVETYPE_LINESTRIP, /**< A series of connected lines. */ + SDL_GPU_PRIMITIVETYPE_POINTLIST /**< A series of separate points. */ +} SDL_GPUPrimitiveType; + +/** + * Specifies how the contents of a texture attached to a render pass are + * treated at the beginning of the render pass. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef enum SDL_GPULoadOp +{ + SDL_GPU_LOADOP_LOAD, /**< The previous contents of the texture will be preserved. */ + SDL_GPU_LOADOP_CLEAR, /**< The contents of the texture will be cleared to a color. */ + SDL_GPU_LOADOP_DONT_CARE /**< The previous contents of the texture need not be preserved. The contents will be undefined. */ +} SDL_GPULoadOp; + +/** + * Specifies how the contents of a texture attached to a render pass are + * treated at the end of the render pass. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef enum SDL_GPUStoreOp +{ + SDL_GPU_STOREOP_STORE, /**< The contents generated during the render pass will be written to memory. */ + SDL_GPU_STOREOP_DONT_CARE, /**< The contents generated during the render pass are not needed and may be discarded. The contents will be undefined. */ + SDL_GPU_STOREOP_RESOLVE, /**< The multisample contents generated during the render pass will be resolved to a non-multisample texture. The contents in the multisample texture may then be discarded and will be undefined. */ + SDL_GPU_STOREOP_RESOLVE_AND_STORE /**< The multisample contents generated during the render pass will be resolved to a non-multisample texture. The contents in the multisample texture will be written to memory. */ +} SDL_GPUStoreOp; + +/** + * Specifies the size of elements in an index buffer. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUIndexElementSize +{ + SDL_GPU_INDEXELEMENTSIZE_16BIT, /**< The index elements are 16-bit. */ + SDL_GPU_INDEXELEMENTSIZE_32BIT /**< The index elements are 32-bit. */ +} SDL_GPUIndexElementSize; + +/** + * Specifies the pixel format of a texture. + * + * Texture format support varies depending on driver, hardware, and usage + * flags. In general, you should use SDL_GPUTextureSupportsFormat to query if + * a format is supported before using it. However, there are a few guaranteed + * formats. + * + * FIXME: Check universal support for 32-bit component formats FIXME: Check + * universal support for SIMULTANEOUS_READ_WRITE + * + * For SAMPLER usage, the following formats are universally supported: + * + * - R8G8B8A8_UNORM + * - B8G8R8A8_UNORM + * - R8_UNORM + * - R8_SNORM + * - R8G8_UNORM + * - R8G8_SNORM + * - R8G8B8A8_SNORM + * - R16_FLOAT + * - R16G16_FLOAT + * - R16G16B16A16_FLOAT + * - R32_FLOAT + * - R32G32_FLOAT + * - R32G32B32A32_FLOAT + * - R11G11B10_UFLOAT + * - R8G8B8A8_UNORM_SRGB + * - B8G8R8A8_UNORM_SRGB + * - D16_UNORM + * + * For COLOR_TARGET usage, the following formats are universally supported: + * + * - R8G8B8A8_UNORM + * - B8G8R8A8_UNORM + * - R8_UNORM + * - R16_FLOAT + * - R16G16_FLOAT + * - R16G16B16A16_FLOAT + * - R32_FLOAT + * - R32G32_FLOAT + * - R32G32B32A32_FLOAT + * - R8_UINT + * - R8G8_UINT + * - R8G8B8A8_UINT + * - R16_UINT + * - R16G16_UINT + * - R16G16B16A16_UINT + * - R8_INT + * - R8G8_INT + * - R8G8B8A8_INT + * - R16_INT + * - R16G16_INT + * - R16G16B16A16_INT + * - R8G8B8A8_UNORM_SRGB + * - B8G8R8A8_UNORM_SRGB + * + * For STORAGE usages, the following formats are universally supported: + * + * - R8G8B8A8_UNORM + * - R8G8B8A8_SNORM + * - R16G16B16A16_FLOAT + * - R32_FLOAT + * - R32G32_FLOAT + * - R32G32B32A32_FLOAT + * - R8G8B8A8_UINT + * - R16G16B16A16_UINT + * - R8G8B8A8_INT + * - R16G16B16A16_INT + * + * For DEPTH_STENCIL_TARGET usage, the following formats are universally + * supported: + * + * - D16_UNORM + * - Either (but not necessarily both!) D24_UNORM or D32_FLOAT + * - Either (but not necessarily both!) D24_UNORM_S8_UINT or D32_FLOAT_S8_UINT + * + * Unless D16_UNORM is sufficient for your purposes, always check which of + * D24/D32 is supported before creating a depth-stencil texture! + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_GPUTextureSupportsFormat + */ +typedef enum SDL_GPUTextureFormat +{ + SDL_GPU_TEXTUREFORMAT_INVALID, + + /* Unsigned Normalized Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_A8_UNORM, + SDL_GPU_TEXTUREFORMAT_R8_UNORM, + SDL_GPU_TEXTUREFORMAT_R8G8_UNORM, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UNORM, + SDL_GPU_TEXTUREFORMAT_R16_UNORM, + SDL_GPU_TEXTUREFORMAT_R16G16_UNORM, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_UNORM, + SDL_GPU_TEXTUREFORMAT_R10G10B10A2_UNORM, + SDL_GPU_TEXTUREFORMAT_B5G6R5_UNORM, + SDL_GPU_TEXTUREFORMAT_B5G5R5A1_UNORM, + SDL_GPU_TEXTUREFORMAT_B4G4R4A4_UNORM, + SDL_GPU_TEXTUREFORMAT_B8G8R8A8_UNORM, + /* Compressed Unsigned Normalized Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC1_RGBA_UNORM, + SDL_GPU_TEXTUREFORMAT_BC2_RGBA_UNORM, + SDL_GPU_TEXTUREFORMAT_BC3_RGBA_UNORM, + SDL_GPU_TEXTUREFORMAT_BC4_R_UNORM, + SDL_GPU_TEXTUREFORMAT_BC5_RG_UNORM, + SDL_GPU_TEXTUREFORMAT_BC7_RGBA_UNORM, + /* Compressed Signed Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC6H_RGB_FLOAT, + /* Compressed Unsigned Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC6H_RGB_UFLOAT, + /* Signed Normalized Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8_SNORM, + SDL_GPU_TEXTUREFORMAT_R8G8_SNORM, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_SNORM, + SDL_GPU_TEXTUREFORMAT_R16_SNORM, + SDL_GPU_TEXTUREFORMAT_R16G16_SNORM, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_SNORM, + /* Signed Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_R16_FLOAT, + SDL_GPU_TEXTUREFORMAT_R16G16_FLOAT, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_FLOAT, + SDL_GPU_TEXTUREFORMAT_R32_FLOAT, + SDL_GPU_TEXTUREFORMAT_R32G32_FLOAT, + SDL_GPU_TEXTUREFORMAT_R32G32B32A32_FLOAT, + /* Unsigned Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_R11G11B10_UFLOAT, + /* Unsigned Integer Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8_UINT, + SDL_GPU_TEXTUREFORMAT_R8G8_UINT, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UINT, + SDL_GPU_TEXTUREFORMAT_R16_UINT, + SDL_GPU_TEXTUREFORMAT_R16G16_UINT, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_UINT, + SDL_GPU_TEXTUREFORMAT_R32_UINT, + SDL_GPU_TEXTUREFORMAT_R32G32_UINT, + SDL_GPU_TEXTUREFORMAT_R32G32B32A32_UINT, + /* Signed Integer Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8_INT, + SDL_GPU_TEXTUREFORMAT_R8G8_INT, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_INT, + SDL_GPU_TEXTUREFORMAT_R16_INT, + SDL_GPU_TEXTUREFORMAT_R16G16_INT, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_INT, + SDL_GPU_TEXTUREFORMAT_R32_INT, + SDL_GPU_TEXTUREFORMAT_R32G32_INT, + SDL_GPU_TEXTUREFORMAT_R32G32B32A32_INT, + /* SRGB Unsigned Normalized Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_B8G8R8A8_UNORM_SRGB, + /* Compressed SRGB Unsigned Normalized Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC1_RGBA_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_BC2_RGBA_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_BC3_RGBA_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_BC7_RGBA_UNORM_SRGB, + /* Depth Formats */ + SDL_GPU_TEXTUREFORMAT_D16_UNORM, + SDL_GPU_TEXTUREFORMAT_D24_UNORM, + SDL_GPU_TEXTUREFORMAT_D32_FLOAT, + SDL_GPU_TEXTUREFORMAT_D24_UNORM_S8_UINT, + SDL_GPU_TEXTUREFORMAT_D32_FLOAT_S8_UINT, + /* Compressed ASTC Normalized Float Color Formats*/ + SDL_GPU_TEXTUREFORMAT_ASTC_4x4_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_5x4_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_5x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_6x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_6x6_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_8x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_8x6_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_8x8_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x6_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x8_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x10_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_12x10_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_12x12_UNORM, + /* Compressed SRGB ASTC Normalized Float Color Formats*/ + SDL_GPU_TEXTUREFORMAT_ASTC_4x4_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_5x4_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_5x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_6x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_6x6_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_8x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_8x6_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_8x8_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x6_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x8_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x10_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_12x10_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_12x12_UNORM_SRGB, + /* Compressed ASTC Signed Float Color Formats*/ + SDL_GPU_TEXTUREFORMAT_ASTC_4x4_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_5x4_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_5x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_6x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_6x6_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_8x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_8x6_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_8x8_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x6_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x8_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x10_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_12x10_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_12x12_FLOAT +} SDL_GPUTextureFormat; + +/** + * Specifies how a texture is intended to be used by the client. + * + * A texture must have at least one usage flag. Note that some usage flag + * combinations are invalid. + * + * With regards to compute storage usage, READ | WRITE means that you can have + * shader A that only writes into the texture and shader B that only reads + * from the texture and bind the same texture to either shader respectively. + * SIMULTANEOUS means that you can do reads and writes within the same shader + * or compute pass. It also implies that atomic ops can be used, since those + * are read-modify-write operations. If you use SIMULTANEOUS, you are + * responsible for avoiding data races, as there is no data synchronization + * within a compute pass. Note that SIMULTANEOUS usage is only supported by a + * limited number of texture formats. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + */ +typedef Uint32 SDL_GPUTextureUsageFlags; + +#define SDL_GPU_TEXTUREUSAGE_SAMPLER (1u << 0) /**< Texture supports sampling. */ +#define SDL_GPU_TEXTUREUSAGE_COLOR_TARGET (1u << 1) /**< Texture is a color render target. */ +#define SDL_GPU_TEXTUREUSAGE_DEPTH_STENCIL_TARGET (1u << 2) /**< Texture is a depth stencil target. */ +#define SDL_GPU_TEXTUREUSAGE_GRAPHICS_STORAGE_READ (1u << 3) /**< Texture supports storage reads in graphics stages. */ +#define SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_READ (1u << 4) /**< Texture supports storage reads in the compute stage. */ +#define SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_WRITE (1u << 5) /**< Texture supports storage writes in the compute stage. */ +#define SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE (1u << 6) /**< Texture supports reads and writes in the same compute shader. This is NOT equivalent to READ | WRITE. */ + +/** + * Specifies the type of a texture. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + */ +typedef enum SDL_GPUTextureType +{ + SDL_GPU_TEXTURETYPE_2D, /**< The texture is a 2-dimensional image. */ + SDL_GPU_TEXTURETYPE_2D_ARRAY, /**< The texture is a 2-dimensional array image. */ + SDL_GPU_TEXTURETYPE_3D, /**< The texture is a 3-dimensional image. */ + SDL_GPU_TEXTURETYPE_CUBE, /**< The texture is a cube image. */ + SDL_GPU_TEXTURETYPE_CUBE_ARRAY /**< The texture is a cube array image. */ +} SDL_GPUTextureType; + +/** + * Specifies the sample count of a texture. + * + * Used in multisampling. Note that this value only applies when the texture + * is used as a render target. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_GPUTextureSupportsSampleCount + */ +typedef enum SDL_GPUSampleCount +{ + SDL_GPU_SAMPLECOUNT_1, /**< No multisampling. */ + SDL_GPU_SAMPLECOUNT_2, /**< MSAA 2x */ + SDL_GPU_SAMPLECOUNT_4, /**< MSAA 4x */ + SDL_GPU_SAMPLECOUNT_8 /**< MSAA 8x */ +} SDL_GPUSampleCount; + + +/** + * Specifies the face of a cube map. + * + * Can be passed in as the layer field in texture-related structs. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GPUCubeMapFace +{ + SDL_GPU_CUBEMAPFACE_POSITIVEX, + SDL_GPU_CUBEMAPFACE_NEGATIVEX, + SDL_GPU_CUBEMAPFACE_POSITIVEY, + SDL_GPU_CUBEMAPFACE_NEGATIVEY, + SDL_GPU_CUBEMAPFACE_POSITIVEZ, + SDL_GPU_CUBEMAPFACE_NEGATIVEZ +} SDL_GPUCubeMapFace; + +/** + * Specifies how a buffer is intended to be used by the client. + * + * A buffer must have at least one usage flag. Note that some usage flag + * combinations are invalid. + * + * Unlike textures, READ | WRITE can be used for simultaneous read-write + * usage. The same data synchronization concerns as textures apply. + * + * If you use a STORAGE flag, the data in the buffer must respect std140 + * layout conventions. In practical terms this means you must ensure that vec3 + * and vec4 fields are 16-byte aligned. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + */ +typedef Uint32 SDL_GPUBufferUsageFlags; + +#define SDL_GPU_BUFFERUSAGE_VERTEX (1u << 0) /**< Buffer is a vertex buffer. */ +#define SDL_GPU_BUFFERUSAGE_INDEX (1u << 1) /**< Buffer is an index buffer. */ +#define SDL_GPU_BUFFERUSAGE_INDIRECT (1u << 2) /**< Buffer is an indirect buffer. */ +#define SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ (1u << 3) /**< Buffer supports storage reads in graphics stages. */ +#define SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_READ (1u << 4) /**< Buffer supports storage reads in the compute stage. */ +#define SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_WRITE (1u << 5) /**< Buffer supports storage writes in the compute stage. */ + +/** + * Specifies how a transfer buffer is intended to be used by the client. + * + * Note that mapping and copying FROM an upload transfer buffer or TO a + * download transfer buffer is undefined behavior. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTransferBuffer + */ +typedef enum SDL_GPUTransferBufferUsage +{ + SDL_GPU_TRANSFERBUFFERUSAGE_UPLOAD, + SDL_GPU_TRANSFERBUFFERUSAGE_DOWNLOAD +} SDL_GPUTransferBufferUsage; + +/** + * Specifies which stage a shader program corresponds to. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +typedef enum SDL_GPUShaderStage +{ + SDL_GPU_SHADERSTAGE_VERTEX, + SDL_GPU_SHADERSTAGE_FRAGMENT +} SDL_GPUShaderStage; + +/** + * Specifies the format of shader code. + * + * Each format corresponds to a specific backend that accepts it. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +typedef Uint32 SDL_GPUShaderFormat; + +#define SDL_GPU_SHADERFORMAT_INVALID 0 +#define SDL_GPU_SHADERFORMAT_PRIVATE (1u << 0) /**< Shaders for NDA'd platforms. */ +#define SDL_GPU_SHADERFORMAT_SPIRV (1u << 1) /**< SPIR-V shaders for Vulkan. */ +#define SDL_GPU_SHADERFORMAT_DXBC (1u << 2) /**< DXBC SM5_1 shaders for D3D12. */ +#define SDL_GPU_SHADERFORMAT_DXIL (1u << 3) /**< DXIL SM6_0 shaders for D3D12. */ +#define SDL_GPU_SHADERFORMAT_MSL (1u << 4) /**< MSL shaders for Metal. */ +#define SDL_GPU_SHADERFORMAT_METALLIB (1u << 5) /**< Precompiled metallib shaders for Metal. */ + +/** + * Specifies the format of a vertex attribute. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUVertexElementFormat +{ + SDL_GPU_VERTEXELEMENTFORMAT_INVALID, + + /* 32-bit Signed Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_INT, + SDL_GPU_VERTEXELEMENTFORMAT_INT2, + SDL_GPU_VERTEXELEMENTFORMAT_INT3, + SDL_GPU_VERTEXELEMENTFORMAT_INT4, + + /* 32-bit Unsigned Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_UINT, + SDL_GPU_VERTEXELEMENTFORMAT_UINT2, + SDL_GPU_VERTEXELEMENTFORMAT_UINT3, + SDL_GPU_VERTEXELEMENTFORMAT_UINT4, + + /* 32-bit Floats */ + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT, + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT2, + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT3, + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT4, + + /* 8-bit Signed Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_BYTE2, + SDL_GPU_VERTEXELEMENTFORMAT_BYTE4, + + /* 8-bit Unsigned Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE2, + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE4, + + /* 8-bit Signed Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_BYTE2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_BYTE4_NORM, + + /* 8-bit Unsigned Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE4_NORM, + + /* 16-bit Signed Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_SHORT2, + SDL_GPU_VERTEXELEMENTFORMAT_SHORT4, + + /* 16-bit Unsigned Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_USHORT2, + SDL_GPU_VERTEXELEMENTFORMAT_USHORT4, + + /* 16-bit Signed Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_SHORT2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_SHORT4_NORM, + + /* 16-bit Unsigned Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_USHORT2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_USHORT4_NORM, + + /* 16-bit Floats */ + SDL_GPU_VERTEXELEMENTFORMAT_HALF2, + SDL_GPU_VERTEXELEMENTFORMAT_HALF4 +} SDL_GPUVertexElementFormat; + +/** + * Specifies the rate at which vertex attributes are pulled from buffers. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUVertexInputRate +{ + SDL_GPU_VERTEXINPUTRATE_VERTEX, /**< Attribute addressing is a function of the vertex index. */ + SDL_GPU_VERTEXINPUTRATE_INSTANCE /**< Attribute addressing is a function of the instance index. */ +} SDL_GPUVertexInputRate; + +/** + * Specifies the fill mode of the graphics pipeline. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUFillMode +{ + SDL_GPU_FILLMODE_FILL, /**< Polygons will be rendered via rasterization. */ + SDL_GPU_FILLMODE_LINE /**< Polygon edges will be drawn as line segments. */ +} SDL_GPUFillMode; + +/** + * Specifies the facing direction in which triangle faces will be culled. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUCullMode +{ + SDL_GPU_CULLMODE_NONE, /**< No triangles are culled. */ + SDL_GPU_CULLMODE_FRONT, /**< Front-facing triangles are culled. */ + SDL_GPU_CULLMODE_BACK /**< Back-facing triangles are culled. */ +} SDL_GPUCullMode; + +/** + * Specifies the vertex winding that will cause a triangle to be determined to + * be front-facing. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUFrontFace +{ + SDL_GPU_FRONTFACE_COUNTER_CLOCKWISE, /**< A triangle with counter-clockwise vertex winding will be considered front-facing. */ + SDL_GPU_FRONTFACE_CLOCKWISE /**< A triangle with clockwise vertex winding will be considered front-facing. */ +} SDL_GPUFrontFace; + +/** + * Specifies a comparison operator for depth, stencil and sampler operations. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUCompareOp +{ + SDL_GPU_COMPAREOP_INVALID, + SDL_GPU_COMPAREOP_NEVER, /**< The comparison always evaluates false. */ + SDL_GPU_COMPAREOP_LESS, /**< The comparison evaluates reference < test. */ + SDL_GPU_COMPAREOP_EQUAL, /**< The comparison evaluates reference == test. */ + SDL_GPU_COMPAREOP_LESS_OR_EQUAL, /**< The comparison evaluates reference <= test. */ + SDL_GPU_COMPAREOP_GREATER, /**< The comparison evaluates reference > test. */ + SDL_GPU_COMPAREOP_NOT_EQUAL, /**< The comparison evaluates reference != test. */ + SDL_GPU_COMPAREOP_GREATER_OR_EQUAL, /**< The comparison evalutes reference >= test. */ + SDL_GPU_COMPAREOP_ALWAYS /**< The comparison always evaluates true. */ +} SDL_GPUCompareOp; + +/** + * Specifies what happens to a stored stencil value if stencil tests fail or + * pass. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUStencilOp +{ + SDL_GPU_STENCILOP_INVALID, + SDL_GPU_STENCILOP_KEEP, /**< Keeps the current value. */ + SDL_GPU_STENCILOP_ZERO, /**< Sets the value to 0. */ + SDL_GPU_STENCILOP_REPLACE, /**< Sets the value to reference. */ + SDL_GPU_STENCILOP_INCREMENT_AND_CLAMP, /**< Increments the current value and clamps to the maximum value. */ + SDL_GPU_STENCILOP_DECREMENT_AND_CLAMP, /**< Decrements the current value and clamps to 0. */ + SDL_GPU_STENCILOP_INVERT, /**< Bitwise-inverts the current value. */ + SDL_GPU_STENCILOP_INCREMENT_AND_WRAP, /**< Increments the current value and wraps back to 0. */ + SDL_GPU_STENCILOP_DECREMENT_AND_WRAP /**< Decrements the current value and wraps to the maximum value. */ +} SDL_GPUStencilOp; + +/** + * Specifies the operator to be used when pixels in a render target are + * blended with existing pixels in the texture. + * + * The source color is the value written by the fragment shader. The + * destination color is the value currently existing in the texture. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUBlendOp +{ + SDL_GPU_BLENDOP_INVALID, + SDL_GPU_BLENDOP_ADD, /**< (source * source_factor) + (destination * destination_factor) */ + SDL_GPU_BLENDOP_SUBTRACT, /**< (source * source_factor) - (destination * destination_factor) */ + SDL_GPU_BLENDOP_REVERSE_SUBTRACT, /**< (destination * destination_factor) - (source * source_factor) */ + SDL_GPU_BLENDOP_MIN, /**< min(source, destination) */ + SDL_GPU_BLENDOP_MAX /**< max(source, destination) */ +} SDL_GPUBlendOp; + +/** + * Specifies a blending factor to be used when pixels in a render target are + * blended with existing pixels in the texture. + * + * The source color is the value written by the fragment shader. The + * destination color is the value currently existing in the texture. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUBlendFactor +{ + SDL_GPU_BLENDFACTOR_INVALID, + SDL_GPU_BLENDFACTOR_ZERO, /**< 0 */ + SDL_GPU_BLENDFACTOR_ONE, /**< 1 */ + SDL_GPU_BLENDFACTOR_SRC_COLOR, /**< source color */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_SRC_COLOR, /**< 1 - source color */ + SDL_GPU_BLENDFACTOR_DST_COLOR, /**< destination color */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_DST_COLOR, /**< 1 - destination color */ + SDL_GPU_BLENDFACTOR_SRC_ALPHA, /**< source alpha */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_SRC_ALPHA, /**< 1 - source alpha */ + SDL_GPU_BLENDFACTOR_DST_ALPHA, /**< destination alpha */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_DST_ALPHA, /**< 1 - destination alpha */ + SDL_GPU_BLENDFACTOR_CONSTANT_COLOR, /**< blend constant */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_CONSTANT_COLOR, /**< 1 - blend constant */ + SDL_GPU_BLENDFACTOR_SRC_ALPHA_SATURATE /**< min(source alpha, 1 - destination alpha) */ +} SDL_GPUBlendFactor; + +/** + * Specifies which color components are written in a graphics pipeline. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef Uint8 SDL_GPUColorComponentFlags; + +#define SDL_GPU_COLORCOMPONENT_R (1u << 0) /**< the red component */ +#define SDL_GPU_COLORCOMPONENT_G (1u << 1) /**< the green component */ +#define SDL_GPU_COLORCOMPONENT_B (1u << 2) /**< the blue component */ +#define SDL_GPU_COLORCOMPONENT_A (1u << 3) /**< the alpha component */ + +/** + * Specifies a filter operation used by a sampler. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + */ +typedef enum SDL_GPUFilter +{ + SDL_GPU_FILTER_NEAREST, /**< Point filtering. */ + SDL_GPU_FILTER_LINEAR /**< Linear filtering. */ +} SDL_GPUFilter; + +/** + * Specifies a mipmap mode used by a sampler. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + */ +typedef enum SDL_GPUSamplerMipmapMode +{ + SDL_GPU_SAMPLERMIPMAPMODE_NEAREST, /**< Point filtering. */ + SDL_GPU_SAMPLERMIPMAPMODE_LINEAR /**< Linear filtering. */ +} SDL_GPUSamplerMipmapMode; + +/** + * Specifies behavior of texture sampling when the coordinates exceed the 0-1 + * range. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + */ +typedef enum SDL_GPUSamplerAddressMode +{ + SDL_GPU_SAMPLERADDRESSMODE_REPEAT, /**< Specifies that the coordinates will wrap around. */ + SDL_GPU_SAMPLERADDRESSMODE_MIRRORED_REPEAT, /**< Specifies that the coordinates will wrap around mirrored. */ + SDL_GPU_SAMPLERADDRESSMODE_CLAMP_TO_EDGE /**< Specifies that the coordinates will clamp to the 0-1 range. */ +} SDL_GPUSamplerAddressMode; + +/** + * Specifies the timing that will be used to present swapchain textures to the + * OS. + * + * VSYNC mode will always be supported. IMMEDIATE and MAILBOX modes may not be + * supported on certain systems. + * + * It is recommended to query SDL_WindowSupportsGPUPresentMode after claiming + * the window if you wish to change the present mode to IMMEDIATE or MAILBOX. + * + * - VSYNC: Waits for vblank before presenting. No tearing is possible. If + * there is a pending image to present, the new image is enqueued for + * presentation. Disallows tearing at the cost of visual latency. + * - IMMEDIATE: Immediately presents. Lowest latency option, but tearing may + * occur. + * - MAILBOX: Waits for vblank before presenting. No tearing is possible. If + * there is a pending image to present, the pending image is replaced by the + * new image. Similar to VSYNC, but with reduced visual latency. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_SetGPUSwapchainParameters + * \sa SDL_WindowSupportsGPUPresentMode + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + */ +typedef enum SDL_GPUPresentMode +{ + SDL_GPU_PRESENTMODE_VSYNC, + SDL_GPU_PRESENTMODE_IMMEDIATE, + SDL_GPU_PRESENTMODE_MAILBOX +} SDL_GPUPresentMode; + +/** + * Specifies the texture format and colorspace of the swapchain textures. + * + * SDR will always be supported. Other compositions may not be supported on + * certain systems. + * + * It is recommended to query SDL_WindowSupportsGPUSwapchainComposition after + * claiming the window if you wish to change the swapchain composition from + * SDR. + * + * - SDR: B8G8R8A8 or R8G8B8A8 swapchain. Pixel values are in sRGB encoding. + * - SDR_LINEAR: B8G8R8A8_SRGB or R8G8B8A8_SRGB swapchain. Pixel values are + * stored in memory in sRGB encoding but accessed in shaders in "linear + * sRGB" encoding which is sRGB but with a linear transfer function. + * - HDR_EXTENDED_LINEAR: R16G16B16A16_FLOAT swapchain. Pixel values are in + * extended linear sRGB encoding and permits values outside of the [0, 1] + * range. + * - HDR10_ST2084: A2R10G10B10 or A2B10G10R10 swapchain. Pixel values are in + * BT.2020 ST2084 (PQ) encoding. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_SetGPUSwapchainParameters + * \sa SDL_WindowSupportsGPUSwapchainComposition + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + */ +typedef enum SDL_GPUSwapchainComposition +{ + SDL_GPU_SWAPCHAINCOMPOSITION_SDR, + SDL_GPU_SWAPCHAINCOMPOSITION_SDR_LINEAR, + SDL_GPU_SWAPCHAINCOMPOSITION_HDR_EXTENDED_LINEAR, + SDL_GPU_SWAPCHAINCOMPOSITION_HDR10_ST2084 +} SDL_GPUSwapchainComposition; + +/* Structures */ + +/** + * A structure specifying a viewport. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_SetGPUViewport + */ +typedef struct SDL_GPUViewport +{ + float x; /**< The left offset of the viewport. */ + float y; /**< The top offset of the viewport. */ + float w; /**< The width of the viewport. */ + float h; /**< The height of the viewport. */ + float min_depth; /**< The minimum depth of the viewport. */ + float max_depth; /**< The maximum depth of the viewport. */ +} SDL_GPUViewport; + +/** + * A structure specifying parameters related to transferring data to or from a + * texture. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + */ +typedef struct SDL_GPUTextureTransferInfo +{ + SDL_GPUTransferBuffer *transfer_buffer; /**< The transfer buffer used in the transfer operation. */ + Uint32 offset; /**< The starting byte of the image data in the transfer buffer. */ + Uint32 pixels_per_row; /**< The number of pixels from one row to the next. */ + Uint32 rows_per_layer; /**< The number of rows from one layer/depth-slice to the next. */ +} SDL_GPUTextureTransferInfo; + +/** + * A structure specifying a location in a transfer buffer. + * + * Used when transferring buffer data to or from a transfer buffer. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + */ +typedef struct SDL_GPUTransferBufferLocation +{ + SDL_GPUTransferBuffer *transfer_buffer; /**< The transfer buffer used in the transfer operation. */ + Uint32 offset; /**< The starting byte of the buffer data in the transfer buffer. */ +} SDL_GPUTransferBufferLocation; + +/** + * A structure specifying a location in a texture. + * + * Used when copying data from one texture to another. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CopyGPUTextureToTexture + */ +typedef struct SDL_GPUTextureLocation +{ + SDL_GPUTexture *texture; /**< The texture used in the copy operation. */ + Uint32 mip_level; /**< The mip level index of the location. */ + Uint32 layer; /**< The layer index of the location. */ + Uint32 x; /**< The left offset of the location. */ + Uint32 y; /**< The top offset of the location. */ + Uint32 z; /**< The front offset of the location. */ +} SDL_GPUTextureLocation; + +/** + * A structure specifying a region of a texture. + * + * Used when transferring data to or from a texture. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_CreateGPUTexture + */ +typedef struct SDL_GPUTextureRegion +{ + SDL_GPUTexture *texture; /**< The texture used in the copy operation. */ + Uint32 mip_level; /**< The mip level index to transfer. */ + Uint32 layer; /**< The layer index to transfer. */ + Uint32 x; /**< The left offset of the region. */ + Uint32 y; /**< The top offset of the region. */ + Uint32 z; /**< The front offset of the region. */ + Uint32 w; /**< The width of the region. */ + Uint32 h; /**< The height of the region. */ + Uint32 d; /**< The depth of the region. */ +} SDL_GPUTextureRegion; + +/** + * A structure specifying a region of a texture used in the blit operation. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BlitGPUTexture + */ +typedef struct SDL_GPUBlitRegion +{ + SDL_GPUTexture *texture; /**< The texture. */ + Uint32 mip_level; /**< The mip level index of the region. */ + Uint32 layer_or_depth_plane; /**< The layer index or depth plane of the region. This value is treated as a layer index on 2D array and cube textures, and as a depth plane on 3D textures. */ + Uint32 x; /**< The left offset of the region. */ + Uint32 y; /**< The top offset of the region. */ + Uint32 w; /**< The width of the region. */ + Uint32 h; /**< The height of the region. */ +} SDL_GPUBlitRegion; + +/** + * A structure specifying a location in a buffer. + * + * Used when copying data between buffers. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CopyGPUBufferToBuffer + */ +typedef struct SDL_GPUBufferLocation +{ + SDL_GPUBuffer *buffer; /**< The buffer. */ + Uint32 offset; /**< The starting byte within the buffer. */ +} SDL_GPUBufferLocation; + +/** + * A structure specifying a region of a buffer. + * + * Used when transferring data to or from buffers. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + */ +typedef struct SDL_GPUBufferRegion +{ + SDL_GPUBuffer *buffer; /**< The buffer. */ + Uint32 offset; /**< The starting byte within the buffer. */ + Uint32 size; /**< The size in bytes of the region. */ +} SDL_GPUBufferRegion; + +/** + * A structure specifying the parameters of an indirect draw command. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DrawGPUPrimitivesIndirect + */ +typedef struct SDL_GPUIndirectDrawCommand +{ + Uint32 num_vertices; /**< The number of vertices to draw. */ + Uint32 num_instances; /**< The number of instances to draw. */ + Uint32 first_vertex; /**< The index of the first vertex to draw. */ + Uint32 first_instance; /**< The ID of the first instance to draw. */ +} SDL_GPUIndirectDrawCommand; + +/** + * A structure specifying the parameters of an indexed indirect draw command. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DrawGPUIndexedPrimitivesIndirect + */ +typedef struct SDL_GPUIndexedIndirectDrawCommand +{ + Uint32 num_indices; /**< The number of indices to draw per instance. */ + Uint32 num_instances; /**< The number of instances to draw. */ + Uint32 first_index; /**< The base index within the index buffer. */ + Sint32 vertex_offset; /**< The value added to the vertex index before indexing into the vertex buffer. */ + Uint32 first_instance; /**< The ID of the first instance to draw. */ +} SDL_GPUIndexedIndirectDrawCommand; + +/** + * A structure specifying the parameters of an indexed dispatch command. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DispatchGPUComputeIndirect + */ +typedef struct SDL_GPUIndirectDispatchCommand +{ + Uint32 groupcount_x; /**< The number of local workgroups to dispatch in the X dimension. */ + Uint32 groupcount_y; /**< The number of local workgroups to dispatch in the Y dimension. */ + Uint32 groupcount_z; /**< The number of local workgroups to dispatch in the Z dimension. */ +} SDL_GPUIndirectDispatchCommand; + +/* State structures */ + +/** + * A structure specifying the parameters of a sampler. + * + * Note that mip_lod_bias is a no-op for the Metal driver. For Metal, LOD bias + * must be applied via shader instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + * \sa SDL_GPUFilter + * \sa SDL_GPUSamplerMipmapMode + * \sa SDL_GPUSamplerAddressMode + * \sa SDL_GPUCompareOp + */ +typedef struct SDL_GPUSamplerCreateInfo +{ + SDL_GPUFilter min_filter; /**< The minification filter to apply to lookups. */ + SDL_GPUFilter mag_filter; /**< The magnification filter to apply to lookups. */ + SDL_GPUSamplerMipmapMode mipmap_mode; /**< The mipmap filter to apply to lookups. */ + SDL_GPUSamplerAddressMode address_mode_u; /**< The addressing mode for U coordinates outside [0, 1). */ + SDL_GPUSamplerAddressMode address_mode_v; /**< The addressing mode for V coordinates outside [0, 1). */ + SDL_GPUSamplerAddressMode address_mode_w; /**< The addressing mode for W coordinates outside [0, 1). */ + float mip_lod_bias; /**< The bias to be added to mipmap LOD calculation. */ + float max_anisotropy; /**< The anisotropy value clamp used by the sampler. If enable_anisotropy is false, this is ignored. */ + SDL_GPUCompareOp compare_op; /**< The comparison operator to apply to fetched data before filtering. */ + float min_lod; /**< Clamps the minimum of the computed LOD value. */ + float max_lod; /**< Clamps the maximum of the computed LOD value. */ + bool enable_anisotropy; /**< true to enable anisotropic filtering. */ + bool enable_compare; /**< true to enable comparison against a reference value during lookups. */ + Uint8 padding1; + Uint8 padding2; + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUSamplerCreateInfo; + +/** + * A structure specifying the parameters of vertex buffers used in a graphics + * pipeline. + * + * When you call SDL_BindGPUVertexBuffers, you specify the binding slots of + * the vertex buffers. For example if you called SDL_BindGPUVertexBuffers with + * a first_slot of 2 and num_bindings of 3, the binding slots 2, 3, 4 would be + * used by the vertex buffers you pass in. + * + * Vertex attributes are linked to buffers via the buffer_slot field of + * SDL_GPUVertexAttribute. For example, if an attribute has a buffer_slot of + * 0, then that attribute belongs to the vertex buffer bound at slot 0. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUVertexAttribute + * \sa SDL_GPUVertexInputRate + */ +typedef struct SDL_GPUVertexBufferDescription +{ + Uint32 slot; /**< The binding slot of the vertex buffer. */ + Uint32 pitch; /**< The size of a single element + the offset between elements. */ + SDL_GPUVertexInputRate input_rate; /**< Whether attribute addressing is a function of the vertex index or instance index. */ + Uint32 instance_step_rate; /**< Reserved for future use. Must be set to 0. */ +} SDL_GPUVertexBufferDescription; + +/** + * A structure specifying a vertex attribute. + * + * All vertex attribute locations provided to an SDL_GPUVertexInputState must + * be unique. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUVertexBufferDescription + * \sa SDL_GPUVertexInputState + * \sa SDL_GPUVertexElementFormat + */ +typedef struct SDL_GPUVertexAttribute +{ + Uint32 location; /**< The shader input location index. */ + Uint32 buffer_slot; /**< The binding slot of the associated vertex buffer. */ + SDL_GPUVertexElementFormat format; /**< The size and type of the attribute data. */ + Uint32 offset; /**< The byte offset of this attribute relative to the start of the vertex element. */ +} SDL_GPUVertexAttribute; + +/** + * A structure specifying the parameters of a graphics pipeline vertex input + * state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + * \sa SDL_GPUVertexBufferDescription + * \sa SDL_GPUVertexAttribute + */ +typedef struct SDL_GPUVertexInputState +{ + const SDL_GPUVertexBufferDescription *vertex_buffer_descriptions; /**< A pointer to an array of vertex buffer descriptions. */ + Uint32 num_vertex_buffers; /**< The number of vertex buffer descriptions in the above array. */ + const SDL_GPUVertexAttribute *vertex_attributes; /**< A pointer to an array of vertex attribute descriptions. */ + Uint32 num_vertex_attributes; /**< The number of vertex attribute descriptions in the above array. */ +} SDL_GPUVertexInputState; + +/** + * A structure specifying the stencil operation state of a graphics pipeline. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUDepthStencilState + */ +typedef struct SDL_GPUStencilOpState +{ + SDL_GPUStencilOp fail_op; /**< The action performed on samples that fail the stencil test. */ + SDL_GPUStencilOp pass_op; /**< The action performed on samples that pass the depth and stencil tests. */ + SDL_GPUStencilOp depth_fail_op; /**< The action performed on samples that pass the stencil test and fail the depth test. */ + SDL_GPUCompareOp compare_op; /**< The comparison operator used in the stencil test. */ +} SDL_GPUStencilOpState; + +/** + * A structure specifying the blend state of a color target. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUColorTargetDescription + */ +typedef struct SDL_GPUColorTargetBlendState +{ + SDL_GPUBlendFactor src_color_blendfactor; /**< The value to be multiplied by the source RGB value. */ + SDL_GPUBlendFactor dst_color_blendfactor; /**< The value to be multiplied by the destination RGB value. */ + SDL_GPUBlendOp color_blend_op; /**< The blend operation for the RGB components. */ + SDL_GPUBlendFactor src_alpha_blendfactor; /**< The value to be multiplied by the source alpha. */ + SDL_GPUBlendFactor dst_alpha_blendfactor; /**< The value to be multiplied by the destination alpha. */ + SDL_GPUBlendOp alpha_blend_op; /**< The blend operation for the alpha component. */ + SDL_GPUColorComponentFlags color_write_mask; /**< A bitmask specifying which of the RGBA components are enabled for writing. Writes to all channels if enable_color_write_mask is false. */ + bool enable_blend; /**< Whether blending is enabled for the color target. */ + bool enable_color_write_mask; /**< Whether the color write mask is enabled. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPUColorTargetBlendState; + + +/** + * A structure specifying code and metadata for creating a shader object. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +typedef struct SDL_GPUShaderCreateInfo +{ + size_t code_size; /**< The size in bytes of the code pointed to. */ + const Uint8 *code; /**< A pointer to shader code. */ + const char *entrypoint; /**< A pointer to a null-terminated UTF-8 string specifying the entry point function name for the shader. */ + SDL_GPUShaderFormat format; /**< The format of the shader code. */ + SDL_GPUShaderStage stage; /**< The stage the shader program corresponds to. */ + Uint32 num_samplers; /**< The number of samplers defined in the shader. */ + Uint32 num_storage_textures; /**< The number of storage textures defined in the shader. */ + Uint32 num_storage_buffers; /**< The number of storage buffers defined in the shader. */ + Uint32 num_uniform_buffers; /**< The number of uniform buffers defined in the shader. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUShaderCreateInfo; + +/** + * A structure specifying the parameters of a texture. + * + * Usage flags can be bitwise OR'd together for combinations of usages. Note + * that certain usage combinations are invalid, for example SAMPLER and + * GRAPHICS_STORAGE. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_GPUTextureType + * \sa SDL_GPUTextureFormat + * \sa SDL_GPUTextureUsageFlags + * \sa SDL_GPUSampleCount + */ +typedef struct SDL_GPUTextureCreateInfo +{ + SDL_GPUTextureType type; /**< The base dimensionality of the texture. */ + SDL_GPUTextureFormat format; /**< The pixel format of the texture. */ + SDL_GPUTextureUsageFlags usage; /**< How the texture is intended to be used by the client. */ + Uint32 width; /**< The width of the texture. */ + Uint32 height; /**< The height of the texture. */ + Uint32 layer_count_or_depth; /**< The layer count or depth of the texture. This value is treated as a layer count on 2D array textures, and as a depth value on 3D textures. */ + Uint32 num_levels; /**< The number of mip levels in the texture. */ + SDL_GPUSampleCount sample_count; /**< The number of samples per texel. Only applies if the texture is used as a render target. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUTextureCreateInfo; + +/** + * A structure specifying the parameters of a buffer. + * + * Usage flags can be bitwise OR'd together for combinations of usages. Note + * that certain combinations are invalid, for example VERTEX and INDEX. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + * \sa SDL_GPUBufferUsageFlags + */ +typedef struct SDL_GPUBufferCreateInfo +{ + SDL_GPUBufferUsageFlags usage; /**< How the buffer is intended to be used by the client. */ + Uint32 size; /**< The size in bytes of the buffer. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUBufferCreateInfo; + +/** + * A structure specifying the parameters of a transfer buffer. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTransferBuffer + */ +typedef struct SDL_GPUTransferBufferCreateInfo +{ + SDL_GPUTransferBufferUsage usage; /**< How the transfer buffer is intended to be used by the client. */ + Uint32 size; /**< The size in bytes of the transfer buffer. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUTransferBufferCreateInfo; + +/* Pipeline state structures */ + +/** + * A structure specifying the parameters of the graphics pipeline rasterizer + * state. + * + * Note that SDL_GPU_FILLMODE_LINE is not supported on many Android devices. + * For those devices, the fill mode will automatically fall back to FILL. + * + * Also note that the D3D12 driver will enable depth clamping even if + * enable_depth_clip is true. If you need this clamp+clip behavior, consider + * enabling depth clip and then manually clamping depth in your fragment + * shaders on Metal and Vulkan. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + */ +typedef struct SDL_GPURasterizerState +{ + SDL_GPUFillMode fill_mode; /**< Whether polygons will be filled in or drawn as lines. */ + SDL_GPUCullMode cull_mode; /**< The facing direction in which triangles will be culled. */ + SDL_GPUFrontFace front_face; /**< The vertex winding that will cause a triangle to be determined as front-facing. */ + float depth_bias_constant_factor; /**< A scalar factor controlling the depth value added to each fragment. */ + float depth_bias_clamp; /**< The maximum depth bias of a fragment. */ + float depth_bias_slope_factor; /**< A scalar factor applied to a fragment's slope in depth calculations. */ + bool enable_depth_bias; /**< true to bias fragment depth values. */ + bool enable_depth_clip; /**< true to enable depth clip, false to enable depth clamp. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPURasterizerState; + +/** + * A structure specifying the parameters of the graphics pipeline multisample + * state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + */ +typedef struct SDL_GPUMultisampleState +{ + SDL_GPUSampleCount sample_count; /**< The number of samples to be used in rasterization. */ + Uint32 sample_mask; /**< Reserved for future use. Must be set to 0. */ + bool enable_mask; /**< Reserved for future use. Must be set to false. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUMultisampleState; + +/** + * A structure specifying the parameters of the graphics pipeline depth + * stencil state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + */ +typedef struct SDL_GPUDepthStencilState +{ + SDL_GPUCompareOp compare_op; /**< The comparison operator used for depth testing. */ + SDL_GPUStencilOpState back_stencil_state; /**< The stencil op state for back-facing triangles. */ + SDL_GPUStencilOpState front_stencil_state; /**< The stencil op state for front-facing triangles. */ + Uint8 compare_mask; /**< Selects the bits of the stencil values participating in the stencil test. */ + Uint8 write_mask; /**< Selects the bits of the stencil values updated by the stencil test. */ + bool enable_depth_test; /**< true enables the depth test. */ + bool enable_depth_write; /**< true enables depth writes. Depth writes are always disabled when enable_depth_test is false. */ + bool enable_stencil_test; /**< true enables the stencil test. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUDepthStencilState; + +/** + * A structure specifying the parameters of color targets used in a graphics + * pipeline. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineTargetInfo + */ +typedef struct SDL_GPUColorTargetDescription +{ + SDL_GPUTextureFormat format; /**< The pixel format of the texture to be used as a color target. */ + SDL_GPUColorTargetBlendState blend_state; /**< The blend state to be used for the color target. */ +} SDL_GPUColorTargetDescription; + +/** + * A structure specifying the descriptions of render targets used in a + * graphics pipeline. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + * \sa SDL_GPUColorTargetDescription + * \sa SDL_GPUTextureFormat + */ +typedef struct SDL_GPUGraphicsPipelineTargetInfo +{ + const SDL_GPUColorTargetDescription *color_target_descriptions; /**< A pointer to an array of color target descriptions. */ + Uint32 num_color_targets; /**< The number of color target descriptions in the above array. */ + SDL_GPUTextureFormat depth_stencil_format; /**< The pixel format of the depth-stencil target. Ignored if has_depth_stencil_target is false. */ + bool has_depth_stencil_target; /**< true specifies that the pipeline uses a depth-stencil target. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUGraphicsPipelineTargetInfo; + +/** + * A structure specifying the parameters of a graphics pipeline state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_GPUShader + * \sa SDL_GPUVertexInputState + * \sa SDL_GPUPrimitiveType + * \sa SDL_GPURasterizerState + * \sa SDL_GPUMultisampleState + * \sa SDL_GPUDepthStencilState + * \sa SDL_GPUGraphicsPipelineTargetInfo + */ +typedef struct SDL_GPUGraphicsPipelineCreateInfo +{ + SDL_GPUShader *vertex_shader; /**< The vertex shader used by the graphics pipeline. */ + SDL_GPUShader *fragment_shader; /**< The fragment shader used by the graphics pipeline. */ + SDL_GPUVertexInputState vertex_input_state; /**< The vertex layout of the graphics pipeline. */ + SDL_GPUPrimitiveType primitive_type; /**< The primitive topology of the graphics pipeline. */ + SDL_GPURasterizerState rasterizer_state; /**< The rasterizer state of the graphics pipeline. */ + SDL_GPUMultisampleState multisample_state; /**< The multisample state of the graphics pipeline. */ + SDL_GPUDepthStencilState depth_stencil_state; /**< The depth-stencil state of the graphics pipeline. */ + SDL_GPUGraphicsPipelineTargetInfo target_info; /**< Formats and blend modes for the render targets of the graphics pipeline. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUGraphicsPipelineCreateInfo; + +/** + * A structure specifying the parameters of a compute pipeline state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUComputePipeline + * \sa SDL_GPUShaderFormat + */ +typedef struct SDL_GPUComputePipelineCreateInfo +{ + size_t code_size; /**< The size in bytes of the compute shader code pointed to. */ + const Uint8 *code; /**< A pointer to compute shader code. */ + const char *entrypoint; /**< A pointer to a null-terminated UTF-8 string specifying the entry point function name for the shader. */ + SDL_GPUShaderFormat format; /**< The format of the compute shader code. */ + Uint32 num_samplers; /**< The number of samplers defined in the shader. */ + Uint32 num_readonly_storage_textures; /**< The number of readonly storage textures defined in the shader. */ + Uint32 num_readonly_storage_buffers; /**< The number of readonly storage buffers defined in the shader. */ + Uint32 num_readwrite_storage_textures; /**< The number of read-write storage textures defined in the shader. */ + Uint32 num_readwrite_storage_buffers; /**< The number of read-write storage buffers defined in the shader. */ + Uint32 num_uniform_buffers; /**< The number of uniform buffers defined in the shader. */ + Uint32 threadcount_x; /**< The number of threads in the X dimension. This should match the value in the shader. */ + Uint32 threadcount_y; /**< The number of threads in the Y dimension. This should match the value in the shader. */ + Uint32 threadcount_z; /**< The number of threads in the Z dimension. This should match the value in the shader. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUComputePipelineCreateInfo; + +/** + * A structure specifying the parameters of a color target used by a render + * pass. + * + * The load_op field determines what is done with the texture at the beginning + * of the render pass. + * + * - LOAD: Loads the data currently in the texture. Not recommended for + * multisample textures as it requires significant memory bandwidth. + * - CLEAR: Clears the texture to a single color. + * - DONT_CARE: The driver will do whatever it wants with the texture memory. + * This is a good option if you know that every single pixel will be touched + * in the render pass. + * + * The store_op field determines what is done with the color results of the + * render pass. + * + * - STORE: Stores the results of the render pass in the texture. Not + * recommended for multisample textures as it requires significant memory + * bandwidth. + * - DONT_CARE: The driver will do whatever it wants with the texture memory. + * This is often a good option for depth/stencil textures. + * - RESOLVE: Resolves a multisample texture into resolve_texture, which must + * have a sample count of 1. Then the driver may discard the multisample + * texture memory. This is the most performant method of resolving a + * multisample target. + * - RESOLVE_AND_STORE: Resolves a multisample texture into the + * resolve_texture, which must have a sample count of 1. Then the driver + * stores the multisample texture's contents. Not recommended as it requires + * significant memory bandwidth. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef struct SDL_GPUColorTargetInfo +{ + SDL_GPUTexture *texture; /**< The texture that will be used as a color target by a render pass. */ + Uint32 mip_level; /**< The mip level to use as a color target. */ + Uint32 layer_or_depth_plane; /**< The layer index or depth plane to use as a color target. This value is treated as a layer index on 2D array and cube textures, and as a depth plane on 3D textures. */ + SDL_FColor clear_color; /**< The color to clear the color target to at the start of the render pass. Ignored if SDL_GPU_LOADOP_CLEAR is not used. */ + SDL_GPULoadOp load_op; /**< What is done with the contents of the color target at the beginning of the render pass. */ + SDL_GPUStoreOp store_op; /**< What is done with the results of the render pass. */ + SDL_GPUTexture *resolve_texture; /**< The texture that will receive the results of a multisample resolve operation. Ignored if a RESOLVE* store_op is not used. */ + Uint32 resolve_mip_level; /**< The mip level of the resolve texture to use for the resolve operation. Ignored if a RESOLVE* store_op is not used. */ + Uint32 resolve_layer; /**< The layer index of the resolve texture to use for the resolve operation. Ignored if a RESOLVE* store_op is not used. */ + bool cycle; /**< true cycles the texture if the texture is bound and load_op is not LOAD */ + bool cycle_resolve_texture; /**< true cycles the resolve texture if the resolve texture is bound. Ignored if a RESOLVE* store_op is not used. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPUColorTargetInfo; + +/** + * A structure specifying the parameters of a depth-stencil target used by a + * render pass. + * + * The load_op field determines what is done with the depth contents of the + * texture at the beginning of the render pass. + * + * - LOAD: Loads the depth values currently in the texture. + * - CLEAR: Clears the texture to a single depth. + * - DONT_CARE: The driver will do whatever it wants with the memory. This is + * a good option if you know that every single pixel will be touched in the + * render pass. + * + * The store_op field determines what is done with the depth results of the + * render pass. + * + * - STORE: Stores the depth results in the texture. + * - DONT_CARE: The driver will do whatever it wants with the depth results. + * This is often a good option for depth/stencil textures that don't need to + * be reused again. + * + * The stencil_load_op field determines what is done with the stencil contents + * of the texture at the beginning of the render pass. + * + * - LOAD: Loads the stencil values currently in the texture. + * - CLEAR: Clears the stencil values to a single value. + * - DONT_CARE: The driver will do whatever it wants with the memory. This is + * a good option if you know that every single pixel will be touched in the + * render pass. + * + * The stencil_store_op field determines what is done with the stencil results + * of the render pass. + * + * - STORE: Stores the stencil results in the texture. + * - DONT_CARE: The driver will do whatever it wants with the stencil results. + * This is often a good option for depth/stencil textures that don't need to + * be reused again. + * + * Note that depth/stencil targets do not support multisample resolves. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef struct SDL_GPUDepthStencilTargetInfo +{ + SDL_GPUTexture *texture; /**< The texture that will be used as the depth stencil target by the render pass. */ + float clear_depth; /**< The value to clear the depth component to at the beginning of the render pass. Ignored if SDL_GPU_LOADOP_CLEAR is not used. */ + SDL_GPULoadOp load_op; /**< What is done with the depth contents at the beginning of the render pass. */ + SDL_GPUStoreOp store_op; /**< What is done with the depth results of the render pass. */ + SDL_GPULoadOp stencil_load_op; /**< What is done with the stencil contents at the beginning of the render pass. */ + SDL_GPUStoreOp stencil_store_op; /**< What is done with the stencil results of the render pass. */ + bool cycle; /**< true cycles the texture if the texture is bound and any load ops are not LOAD */ + Uint8 clear_stencil; /**< The value to clear the stencil component to at the beginning of the render pass. Ignored if SDL_GPU_LOADOP_CLEAR is not used. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPUDepthStencilTargetInfo; + +/** + * A structure containing parameters for a blit command. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BlitGPUTexture + */ +typedef struct SDL_GPUBlitInfo { + SDL_GPUBlitRegion source; /**< The source region for the blit. */ + SDL_GPUBlitRegion destination; /**< The destination region for the blit. */ + SDL_GPULoadOp load_op; /**< What is done with the contents of the destination before the blit. */ + SDL_FColor clear_color; /**< The color to clear the destination region to before the blit. Ignored if load_op is not SDL_GPU_LOADOP_CLEAR. */ + SDL_FlipMode flip_mode; /**< The flip mode for the source region. */ + SDL_GPUFilter filter; /**< The filter mode used when blitting. */ + bool cycle; /**< true cycles the destination texture if it is already bound. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUBlitInfo; + +/* Binding structs */ + +/** + * A structure specifying parameters in a buffer binding call. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BindGPUVertexBuffers + * \sa SDL_BindGPUIndexBuffer + */ +typedef struct SDL_GPUBufferBinding +{ + SDL_GPUBuffer *buffer; /**< The buffer to bind. Must have been created with SDL_GPU_BUFFERUSAGE_VERTEX for SDL_BindGPUVertexBuffers, or SDL_GPU_BUFFERUSAGE_INDEX for SDL_BindGPUIndexBuffer. */ + Uint32 offset; /**< The starting byte of the data to bind in the buffer. */ +} SDL_GPUBufferBinding; + +/** + * A structure specifying parameters in a sampler binding call. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUFragmentSamplers + */ +typedef struct SDL_GPUTextureSamplerBinding +{ + SDL_GPUTexture *texture; /**< The texture to bind. Must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. */ + SDL_GPUSampler *sampler; /**< The sampler to bind. */ +} SDL_GPUTextureSamplerBinding; + +/** + * A structure specifying parameters related to binding buffers in a compute + * pass. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUComputePass + */ +typedef struct SDL_GPUStorageBufferReadWriteBinding +{ + SDL_GPUBuffer *buffer; /**< The buffer to bind. Must have been created with SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_WRITE. */ + bool cycle; /**< true cycles the buffer if it is already bound. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUStorageBufferReadWriteBinding; + +/** + * A structure specifying parameters related to binding textures in a compute + * pass. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUComputePass + */ +typedef struct SDL_GPUStorageTextureReadWriteBinding +{ + SDL_GPUTexture *texture; /**< The texture to bind. Must have been created with SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_WRITE or SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE. */ + Uint32 mip_level; /**< The mip level index to bind. */ + Uint32 layer; /**< The layer index to bind. */ + bool cycle; /**< true cycles the texture if it is already bound. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUStorageTextureReadWriteBinding; + +/* Functions */ + +/* Device */ + +/** + * Checks for GPU runtime support. + * + * \param format_flags a bitflag indicating which shader formats the app is + * able to provide. + * \param name the preferred GPU driver, or NULL to let SDL pick the optimal + * driver. + * \returns true if supported, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUSupportsShaderFormats( + SDL_GPUShaderFormat format_flags, + const char *name); + +/** + * Checks for GPU runtime support. + * + * \param props the properties to use. + * \returns true if supported, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUDeviceWithProperties + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUSupportsProperties( + SDL_PropertiesID props); + +/** + * Creates a GPU context. + * + * \param format_flags a bitflag indicating which shader formats the app is + * able to provide. + * \param debug_mode enable debug mode properties and validations. + * \param name the preferred GPU driver, or NULL to let SDL pick the optimal + * driver. + * \returns a GPU context on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGPUShaderFormats + * \sa SDL_GetGPUDeviceDriver + * \sa SDL_DestroyGPUDevice + * \sa SDL_GPUSupportsShaderFormats + */ +extern SDL_DECLSPEC SDL_GPUDevice * SDLCALL SDL_CreateGPUDevice( + SDL_GPUShaderFormat format_flags, + bool debug_mode, + const char *name); + +/** + * Creates a GPU context. + * + * These are the supported properties: + * + * - `SDL_PROP_GPU_DEVICE_CREATE_DEBUGMODE_BOOLEAN`: enable debug mode + * properties and validations, defaults to true. + * - `SDL_PROP_GPU_DEVICE_CREATE_PREFERLOWPOWER_BOOLEAN`: enable to prefer + * energy efficiency over maximum GPU performance, defaults to false. + * - `SDL_PROP_GPU_DEVICE_CREATE_NAME_STRING`: the name of the GPU driver to + * use, if a specific one is desired. + * + * These are the current shader format properties: + * + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_PRIVATE_BOOLEAN`: The app is able to + * provide shaders for an NDA platform. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_SPIRV_BOOLEAN`: The app is able to + * provide SPIR-V shaders if applicable. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXBC_BOOLEAN`: The app is able to + * provide DXBC shaders if applicable + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXIL_BOOLEAN`: The app is able to + * provide DXIL shaders if applicable. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_MSL_BOOLEAN`: The app is able to + * provide MSL shaders if applicable. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_METALLIB_BOOLEAN`: The app is able to + * provide Metal shader libraries if applicable. + * + * With the D3D12 renderer: + * + * - `SDL_PROP_GPU_DEVICE_CREATE_D3D12_SEMANTIC_NAME_STRING`: the prefix to + * use for all vertex semantics, default is "TEXCOORD". + * + * \param props the properties to use. + * \returns a GPU context on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGPUShaderFormats + * \sa SDL_GetGPUDeviceDriver + * \sa SDL_DestroyGPUDevice + * \sa SDL_GPUSupportsProperties + */ +extern SDL_DECLSPEC SDL_GPUDevice * SDLCALL SDL_CreateGPUDeviceWithProperties( + SDL_PropertiesID props); + +#define SDL_PROP_GPU_DEVICE_CREATE_DEBUGMODE_BOOLEAN "SDL.gpu.device.create.debugmode" +#define SDL_PROP_GPU_DEVICE_CREATE_PREFERLOWPOWER_BOOLEAN "SDL.gpu.device.create.preferlowpower" +#define SDL_PROP_GPU_DEVICE_CREATE_NAME_STRING "SDL.gpu.device.create.name" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_PRIVATE_BOOLEAN "SDL.gpu.device.create.shaders.private" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_SPIRV_BOOLEAN "SDL.gpu.device.create.shaders.spirv" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXBC_BOOLEAN "SDL.gpu.device.create.shaders.dxbc" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXIL_BOOLEAN "SDL.gpu.device.create.shaders.dxil" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_MSL_BOOLEAN "SDL.gpu.device.create.shaders.msl" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_METALLIB_BOOLEAN "SDL.gpu.device.create.shaders.metallib" +#define SDL_PROP_GPU_DEVICE_CREATE_D3D12_SEMANTIC_NAME_STRING "SDL.gpu.device.create.d3d12.semantic" + +/** + * Destroys a GPU context previously returned by SDL_CreateGPUDevice. + * + * \param device a GPU Context to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUDevice + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyGPUDevice(SDL_GPUDevice *device); + +/** + * Get the number of GPU drivers compiled into SDL. + * + * \returns the number of built in GPU drivers. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGPUDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumGPUDrivers(void); + +/** + * Get the name of a built in GPU driver. + * + * The GPU drivers are presented in the order in which they are normally + * checked during initialization. + * + * The names of drivers are all simple, low-ASCII identifiers, like "vulkan", + * "metal" or "direct3d12". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of a GPU driver. + * \returns the name of the GPU driver with the given **index**. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumGPUDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGPUDriver(int index); + +/** + * Returns the name of the backend used to create this GPU context. + * + * \param device a GPU context to query. + * \returns the name of the device's driver, or NULL on error. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGPUDeviceDriver(SDL_GPUDevice *device); + +/** + * Returns the supported shader formats for this GPU context. + * + * \param device a GPU context to query. + * \returns a bitflag indicating which shader formats the driver is able to + * consume. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GPUShaderFormat SDLCALL SDL_GetGPUShaderFormats(SDL_GPUDevice *device); + +/* State Creation */ + +/** + * Creates a pipeline object to be used in a compute workflow. + * + * Shader resource bindings must be authored to follow a particular order + * depending on the shader format. + * + * For SPIR-V shaders, use the following resource sets: + * + * - 0: Sampled textures, followed by read-only storage textures, followed by + * read-only storage buffers + * - 1: Read-write storage textures, followed by read-write storage buffers + * - 2: Uniform buffers + * + * For DXBC and DXIL shaders, use the following register order: + * + * - (t[n], space0): Sampled textures, followed by read-only storage textures, + * followed by read-only storage buffers + * - (u[n], space1): Read-write storage textures, followed by read-write + * storage buffers + * - (b[n], space2): Uniform buffers + * + * For MSL/metallib, use the following order: + * + * - [[buffer]]: Uniform buffers, followed by read-only storage buffers, + * followed by read-write storage buffers + * - [[texture]]: Sampled textures, followed by read-only storage textures, + * followed by read-write storage textures + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_COMPUTEPIPELINE_CREATE_NAME_STRING`: a name that can be + * displayed in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the compute pipeline to + * create. + * \returns a compute pipeline object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindGPUComputePipeline + * \sa SDL_ReleaseGPUComputePipeline + */ +extern SDL_DECLSPEC SDL_GPUComputePipeline * SDLCALL SDL_CreateGPUComputePipeline( + SDL_GPUDevice *device, + const SDL_GPUComputePipelineCreateInfo *createinfo); + +#define SDL_PROP_GPU_COMPUTEPIPELINE_CREATE_NAME_STRING "SDL.gpu.computepipeline.create.name" + +/** + * Creates a pipeline object to be used in a graphics workflow. + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_GRAPHICSPIPELINE_CREATE_NAME_STRING`: a name that can be + * displayed in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the graphics pipeline to + * create. + * \returns a graphics pipeline object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + * \sa SDL_BindGPUGraphicsPipeline + * \sa SDL_ReleaseGPUGraphicsPipeline + */ +extern SDL_DECLSPEC SDL_GPUGraphicsPipeline * SDLCALL SDL_CreateGPUGraphicsPipeline( + SDL_GPUDevice *device, + const SDL_GPUGraphicsPipelineCreateInfo *createinfo); + +#define SDL_PROP_GPU_GRAPHICSPIPELINE_CREATE_NAME_STRING "SDL.gpu.graphicspipeline.create.name" + +/** + * Creates a sampler object to be used when binding textures in a graphics + * workflow. + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_SAMPLER_CREATE_NAME_STRING`: a name that can be displayed + * in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the sampler to create. + * \returns a sampler object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_ReleaseGPUSampler + */ +extern SDL_DECLSPEC SDL_GPUSampler * SDLCALL SDL_CreateGPUSampler( + SDL_GPUDevice *device, + const SDL_GPUSamplerCreateInfo *createinfo); + +#define SDL_PROP_GPU_SAMPLER_CREATE_NAME_STRING "SDL.gpu.sampler.create.name" + +/** + * Creates a shader to be used when creating a graphics pipeline. + * + * Shader resource bindings must be authored to follow a particular order + * depending on the shader format. + * + * For SPIR-V shaders, use the following resource sets: + * + * For vertex shaders: + * + * - 0: Sampled textures, followed by storage textures, followed by storage + * buffers + * - 1: Uniform buffers + * + * For fragment shaders: + * + * - 2: Sampled textures, followed by storage textures, followed by storage + * buffers + * - 3: Uniform buffers + * + * For DXBC and DXIL shaders, use the following register order: + * + * For vertex shaders: + * + * - (t[n], space0): Sampled textures, followed by storage textures, followed + * by storage buffers + * - (s[n], space0): Samplers with indices corresponding to the sampled + * textures + * - (b[n], space1): Uniform buffers + * + * For pixel shaders: + * + * - (t[n], space2): Sampled textures, followed by storage textures, followed + * by storage buffers + * - (s[n], space2): Samplers with indices corresponding to the sampled + * textures + * - (b[n], space3): Uniform buffers + * + * For MSL/metallib, use the following order: + * + * - [[texture]]: Sampled textures, followed by storage textures + * - [[sampler]]: Samplers with indices corresponding to the sampled textures + * - [[buffer]]: Uniform buffers, followed by storage buffers. Vertex buffer 0 + * is bound at [[buffer(14)]], vertex buffer 1 at [[buffer(15)]], and so on. + * Rather than manually authoring vertex buffer indices, use the + * [[stage_in]] attribute which will automatically use the vertex input + * information from the SDL_GPUGraphicsPipeline. + * + * Shader semantics other than system-value semantics do not matter in D3D12 + * and for ease of use the SDL implementation assumes that non system-value + * semantics will all be TEXCOORD. If you are using HLSL as the shader source + * language, your vertex semantics should start at TEXCOORD0 and increment + * like so: TEXCOORD1, TEXCOORD2, etc. If you wish to change the semantic + * prefix to something other than TEXCOORD you can use + * SDL_PROP_GPU_DEVICE_CREATE_D3D12_SEMANTIC_NAME_STRING with + * SDL_CreateGPUDeviceWithProperties(). + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_SHADER_CREATE_NAME_STRING`: a name that can be displayed in + * debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the shader to create. + * \returns a shader object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_ReleaseGPUShader + */ +extern SDL_DECLSPEC SDL_GPUShader * SDLCALL SDL_CreateGPUShader( + SDL_GPUDevice *device, + const SDL_GPUShaderCreateInfo *createinfo); + +#define SDL_PROP_GPU_SHADER_CREATE_NAME_STRING "SDL.gpu.shader.create.name" + +/** + * Creates a texture object to be used in graphics or compute workflows. + * + * The contents of this texture are undefined until data is written to the + * texture. + * + * Note that certain combinations of usage flags are invalid. For example, a + * texture cannot have both the SAMPLER and GRAPHICS_STORAGE_READ flags. + * + * If you request a sample count higher than the hardware supports, the + * implementation will automatically fall back to the highest available sample + * count. + * + * There are optional properties that can be provided through + * SDL_GPUTextureCreateInfo's `props`. These are the supported properties: + * + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_R_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this red intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_G_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this green intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_B_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this blue intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_A_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this alpha intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_DEPTH_FLOAT`: (Direct3D 12 only) + * if the texture usage is SDL_GPU_TEXTUREUSAGE_DEPTH_STENCIL_TARGET, clear + * the texture to a depth of this value. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_STENCIL_NUMBER`: (Direct3D 12 + * only) if the texture usage is SDL_GPU_TEXTUREUSAGE_DEPTH_STENCIL_TARGET, + * clear the texture to a stencil of this Uint8 value. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_NAME_STRING`: a name that can be displayed + * in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the texture to create. + * \returns a texture object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUVertexStorageTextures + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_BindGPUFragmentStorageTextures + * \sa SDL_BindGPUComputeStorageTextures + * \sa SDL_BlitGPUTexture + * \sa SDL_ReleaseGPUTexture + * \sa SDL_GPUTextureSupportsFormat + */ +extern SDL_DECLSPEC SDL_GPUTexture * SDLCALL SDL_CreateGPUTexture( + SDL_GPUDevice *device, + const SDL_GPUTextureCreateInfo *createinfo); + +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_R_FLOAT "SDL.gpu.texture.create.d3d12.clear.r" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_G_FLOAT "SDL.gpu.texture.create.d3d12.clear.g" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_B_FLOAT "SDL.gpu.texture.create.d3d12.clear.b" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_A_FLOAT "SDL.gpu.texture.create.d3d12.clear.a" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_DEPTH_FLOAT "SDL.gpu.texture.create.d3d12.clear.depth" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_STENCIL_NUMBER "SDL.gpu.texture.create.d3d12.clear.stencil" +#define SDL_PROP_GPU_TEXTURE_CREATE_NAME_STRING "SDL.gpu.texture.create.name" + +/** + * Creates a buffer object to be used in graphics or compute workflows. + * + * The contents of this buffer are undefined until data is written to the + * buffer. + * + * Note that certain combinations of usage flags are invalid. For example, a + * buffer cannot have both the VERTEX and INDEX flags. + * + * If you use a STORAGE flag, the data in the buffer must respect std140 + * layout conventions. In practical terms this means you must ensure that vec3 + * and vec4 fields are 16-byte aligned. + * + * For better understanding of underlying concepts and memory management with + * SDL GPU API, you may refer + * [this blog post](https://moonside.games/posts/sdl-gpu-concepts-cycling/) + * . + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_BUFFER_CREATE_NAME_STRING`: a name that can be displayed in + * debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the buffer to create. + * \returns a buffer object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_CopyGPUBufferToBuffer + * \sa SDL_BindGPUVertexBuffers + * \sa SDL_BindGPUIndexBuffer + * \sa SDL_BindGPUVertexStorageBuffers + * \sa SDL_BindGPUFragmentStorageBuffers + * \sa SDL_DrawGPUPrimitivesIndirect + * \sa SDL_DrawGPUIndexedPrimitivesIndirect + * \sa SDL_BindGPUComputeStorageBuffers + * \sa SDL_DispatchGPUComputeIndirect + * \sa SDL_ReleaseGPUBuffer + */ +extern SDL_DECLSPEC SDL_GPUBuffer * SDLCALL SDL_CreateGPUBuffer( + SDL_GPUDevice *device, + const SDL_GPUBufferCreateInfo *createinfo); + +#define SDL_PROP_GPU_BUFFER_CREATE_NAME_STRING "SDL.gpu.buffer.create.name" + +/** + * Creates a transfer buffer to be used when uploading to or downloading from + * graphics resources. + * + * Download buffers can be particularly expensive to create, so it is good + * practice to reuse them if data will be downloaded regularly. + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_TRANSFERBUFFER_CREATE_NAME_STRING`: a name that can be + * displayed in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the transfer buffer to + * create. + * \returns a transfer buffer on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_ReleaseGPUTransferBuffer + */ +extern SDL_DECLSPEC SDL_GPUTransferBuffer * SDLCALL SDL_CreateGPUTransferBuffer( + SDL_GPUDevice *device, + const SDL_GPUTransferBufferCreateInfo *createinfo); + +#define SDL_PROP_GPU_TRANSFERBUFFER_CREATE_NAME_STRING "SDL.gpu.transferbuffer.create.name" + +/* Debug Naming */ + +/** + * Sets an arbitrary string constant to label a buffer. + * + * You should use SDL_PROP_GPU_BUFFER_CREATE_NAME_STRING with + * SDL_CreateGPUBuffer instead of this function to avoid thread safety issues. + * + * \param device a GPU Context. + * \param buffer a buffer to attach the name to. + * \param text a UTF-8 string constant to mark as the name of the buffer. + * + * \threadsafety This function is not thread safe, you must make sure the + * buffer is not simultaneously used by any other thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUBufferName( + SDL_GPUDevice *device, + SDL_GPUBuffer *buffer, + const char *text); + +/** + * Sets an arbitrary string constant to label a texture. + * + * You should use SDL_PROP_GPU_TEXTURE_CREATE_NAME_STRING with + * SDL_CreateGPUTexture instead of this function to avoid thread safety + * issues. + * + * \param device a GPU Context. + * \param texture a texture to attach the name to. + * \param text a UTF-8 string constant to mark as the name of the texture. + * + * \threadsafety This function is not thread safe, you must make sure the + * texture is not simultaneously used by any other thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUTextureName( + SDL_GPUDevice *device, + SDL_GPUTexture *texture, + const char *text); + +/** + * Inserts an arbitrary string label into the command buffer callstream. + * + * Useful for debugging. + * + * \param command_buffer a command buffer. + * \param text a UTF-8 string constant to insert as the label. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_InsertGPUDebugLabel( + SDL_GPUCommandBuffer *command_buffer, + const char *text); + +/** + * Begins a debug group with an arbitary name. + * + * Used for denoting groups of calls when viewing the command buffer + * callstream in a graphics debugging tool. + * + * Each call to SDL_PushGPUDebugGroup must have a corresponding call to + * SDL_PopGPUDebugGroup. + * + * On some backends (e.g. Metal), pushing a debug group during a + * render/blit/compute pass will create a group that is scoped to the native + * pass rather than the command buffer. For best results, if you push a debug + * group during a pass, always pop it in the same pass. + * + * \param command_buffer a command buffer. + * \param name a UTF-8 string constant that names the group. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PopGPUDebugGroup + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUDebugGroup( + SDL_GPUCommandBuffer *command_buffer, + const char *name); + +/** + * Ends the most-recently pushed debug group. + * + * \param command_buffer a command buffer. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PushGPUDebugGroup + */ +extern SDL_DECLSPEC void SDLCALL SDL_PopGPUDebugGroup( + SDL_GPUCommandBuffer *command_buffer); + +/* Disposal */ + +/** + * Frees the given texture as soon as it is safe to do so. + * + * You must not reference the texture after calling this function. + * + * \param device a GPU context. + * \param texture a texture to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUTexture( + SDL_GPUDevice *device, + SDL_GPUTexture *texture); + +/** + * Frees the given sampler as soon as it is safe to do so. + * + * You must not reference the sampler after calling this function. + * + * \param device a GPU context. + * \param sampler a sampler to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUSampler( + SDL_GPUDevice *device, + SDL_GPUSampler *sampler); + +/** + * Frees the given buffer as soon as it is safe to do so. + * + * You must not reference the buffer after calling this function. + * + * \param device a GPU context. + * \param buffer a buffer to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUBuffer( + SDL_GPUDevice *device, + SDL_GPUBuffer *buffer); + +/** + * Frees the given transfer buffer as soon as it is safe to do so. + * + * You must not reference the transfer buffer after calling this function. + * + * \param device a GPU context. + * \param transfer_buffer a transfer buffer to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUTransferBuffer( + SDL_GPUDevice *device, + SDL_GPUTransferBuffer *transfer_buffer); + +/** + * Frees the given compute pipeline as soon as it is safe to do so. + * + * You must not reference the compute pipeline after calling this function. + * + * \param device a GPU context. + * \param compute_pipeline a compute pipeline to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUComputePipeline( + SDL_GPUDevice *device, + SDL_GPUComputePipeline *compute_pipeline); + +/** + * Frees the given shader as soon as it is safe to do so. + * + * You must not reference the shader after calling this function. + * + * \param device a GPU context. + * \param shader a shader to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUShader( + SDL_GPUDevice *device, + SDL_GPUShader *shader); + +/** + * Frees the given graphics pipeline as soon as it is safe to do so. + * + * You must not reference the graphics pipeline after calling this function. + * + * \param device a GPU context. + * \param graphics_pipeline a graphics pipeline to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUGraphicsPipeline( + SDL_GPUDevice *device, + SDL_GPUGraphicsPipeline *graphics_pipeline); + +/** + * Acquire a command buffer. + * + * This command buffer is managed by the implementation and should not be + * freed by the user. The command buffer may only be used on the thread it was + * acquired on. The command buffer should be submitted on the thread it was + * acquired on. + * + * It is valid to acquire multiple command buffers on the same thread at once. + * In fact a common design pattern is to acquire two command buffers per frame + * where one is dedicated to render and compute passes and the other is + * dedicated to copy passes and other preparatory work such as generating + * mipmaps. Interleaving commands between the two command buffers reduces the + * total amount of passes overall which improves rendering performance. + * + * \param device a GPU context. + * \returns a command buffer, or NULL on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC SDL_GPUCommandBuffer * SDLCALL SDL_AcquireGPUCommandBuffer( + SDL_GPUDevice *device); + +/* Uniform Data */ + +/** + * Pushes data to a vertex uniform slot on the command buffer. + * + * Subsequent draw calls will use this uniform data. + * + * The data being pushed must respect std140 layout conventions. In practical + * terms this means you must ensure that vec3 and vec4 fields are 16-byte + * aligned. + * + * \param command_buffer a command buffer. + * \param slot_index the vertex uniform slot to push data to. + * \param data client data to write. + * \param length the length of the data to write. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUVertexUniformData( + SDL_GPUCommandBuffer *command_buffer, + Uint32 slot_index, + const void *data, + Uint32 length); + +/** + * Pushes data to a fragment uniform slot on the command buffer. + * + * Subsequent draw calls will use this uniform data. + * + * The data being pushed must respect std140 layout conventions. In practical + * terms this means you must ensure that vec3 and vec4 fields are 16-byte + * aligned. + * + * \param command_buffer a command buffer. + * \param slot_index the fragment uniform slot to push data to. + * \param data client data to write. + * \param length the length of the data to write. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUFragmentUniformData( + SDL_GPUCommandBuffer *command_buffer, + Uint32 slot_index, + const void *data, + Uint32 length); + +/** + * Pushes data to a uniform slot on the command buffer. + * + * Subsequent draw calls will use this uniform data. + * + * The data being pushed must respect std140 layout conventions. In practical + * terms this means you must ensure that vec3 and vec4 fields are 16-byte + * aligned. + * + * \param command_buffer a command buffer. + * \param slot_index the uniform slot to push data to. + * \param data client data to write. + * \param length the length of the data to write. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUComputeUniformData( + SDL_GPUCommandBuffer *command_buffer, + Uint32 slot_index, + const void *data, + Uint32 length); + +/* Graphics State */ + +/** + * Begins a render pass on a command buffer. + * + * A render pass consists of a set of texture subresources (or depth slices in + * the 3D texture case) which will be rendered to during the render pass, + * along with corresponding clear values and load/store operations. All + * operations related to graphics pipelines must take place inside of a render + * pass. A default viewport and scissor state are automatically set when this + * is called. You cannot begin another render pass, or begin a compute pass or + * copy pass until you have ended the render pass. + * + * \param command_buffer a command buffer. + * \param color_target_infos an array of texture subresources with + * corresponding clear values and load/store ops. + * \param num_color_targets the number of color targets in the + * color_target_infos array. + * \param depth_stencil_target_info a texture subresource with corresponding + * clear value and load/store ops, may be + * NULL. + * \returns a render pass handle. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EndGPURenderPass + */ +extern SDL_DECLSPEC SDL_GPURenderPass * SDLCALL SDL_BeginGPURenderPass( + SDL_GPUCommandBuffer *command_buffer, + const SDL_GPUColorTargetInfo *color_target_infos, + Uint32 num_color_targets, + const SDL_GPUDepthStencilTargetInfo *depth_stencil_target_info); + +/** + * Binds a graphics pipeline on a render pass to be used in rendering. + * + * A graphics pipeline must be bound before making any draw calls. + * + * \param render_pass a render pass handle. + * \param graphics_pipeline the graphics pipeline to bind. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUGraphicsPipeline( + SDL_GPURenderPass *render_pass, + SDL_GPUGraphicsPipeline *graphics_pipeline); + +/** + * Sets the current viewport state on a command buffer. + * + * \param render_pass a render pass handle. + * \param viewport the viewport to set. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUViewport( + SDL_GPURenderPass *render_pass, + const SDL_GPUViewport *viewport); + +/** + * Sets the current scissor state on a command buffer. + * + * \param render_pass a render pass handle. + * \param scissor the scissor area to set. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUScissor( + SDL_GPURenderPass *render_pass, + const SDL_Rect *scissor); + +/** + * Sets the current blend constants on a command buffer. + * + * \param render_pass a render pass handle. + * \param blend_constants the blend constant color. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GPU_BLENDFACTOR_CONSTANT_COLOR + * \sa SDL_GPU_BLENDFACTOR_ONE_MINUS_CONSTANT_COLOR + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUBlendConstants( + SDL_GPURenderPass *render_pass, + SDL_FColor blend_constants); + +/** + * Sets the current stencil reference value on a command buffer. + * + * \param render_pass a render pass handle. + * \param reference the stencil reference value to set. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUStencilReference( + SDL_GPURenderPass *render_pass, + Uint8 reference); + +/** + * Binds vertex buffers on a command buffer for use with subsequent draw + * calls. + * + * \param render_pass a render pass handle. + * \param first_slot the vertex buffer slot to begin binding from. + * \param bindings an array of SDL_GPUBufferBinding structs containing vertex + * buffers and offset values. + * \param num_bindings the number of bindings in the bindings array. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexBuffers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + const SDL_GPUBufferBinding *bindings, + Uint32 num_bindings); + +/** + * Binds an index buffer on a command buffer for use with subsequent draw + * calls. + * + * \param render_pass a render pass handle. + * \param binding a pointer to a struct containing an index buffer and offset. + * \param index_element_size whether the index values in the buffer are 16- or + * 32-bit. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUIndexBuffer( + SDL_GPURenderPass *render_pass, + const SDL_GPUBufferBinding *binding, + SDL_GPUIndexElementSize index_element_size); + +/** + * Binds texture-sampler pairs for use on the vertex shader. + * + * The textures must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the vertex sampler slot to begin binding from. + * \param texture_sampler_bindings an array of texture-sampler binding + * structs. + * \param num_bindings the number of texture-sampler pairs to bind from the + * array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexSamplers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + const SDL_GPUTextureSamplerBinding *texture_sampler_bindings, + Uint32 num_bindings); + +/** + * Binds storage textures for use on the vertex shader. + * + * These textures must have been created with + * SDL_GPU_TEXTUREUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the vertex storage texture slot to begin binding from. + * \param storage_textures an array of storage textures. + * \param num_bindings the number of storage texture to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexStorageTextures( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUTexture *const *storage_textures, + Uint32 num_bindings); + +/** + * Binds storage buffers for use on the vertex shader. + * + * These buffers must have been created with + * SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the vertex storage buffer slot to begin binding from. + * \param storage_buffers an array of buffers. + * \param num_bindings the number of buffers to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexStorageBuffers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUBuffer *const *storage_buffers, + Uint32 num_bindings); + +/** + * Binds texture-sampler pairs for use on the fragment shader. + * + * The textures must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the fragment sampler slot to begin binding from. + * \param texture_sampler_bindings an array of texture-sampler binding + * structs. + * \param num_bindings the number of texture-sampler pairs to bind from the + * array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUFragmentSamplers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + const SDL_GPUTextureSamplerBinding *texture_sampler_bindings, + Uint32 num_bindings); + +/** + * Binds storage textures for use on the fragment shader. + * + * These textures must have been created with + * SDL_GPU_TEXTUREUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the fragment storage texture slot to begin binding from. + * \param storage_textures an array of storage textures. + * \param num_bindings the number of storage textures to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUFragmentStorageTextures( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUTexture *const *storage_textures, + Uint32 num_bindings); + +/** + * Binds storage buffers for use on the fragment shader. + * + * These buffers must have been created with + * SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the fragment storage buffer slot to begin binding from. + * \param storage_buffers an array of storage buffers. + * \param num_bindings the number of storage buffers to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUFragmentStorageBuffers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUBuffer *const *storage_buffers, + Uint32 num_bindings); + +/* Drawing */ + +/** + * Draws data using bound graphics state with an index buffer and instancing + * enabled. + * + * You must not call this function before binding a graphics pipeline. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \param render_pass a render pass handle. + * \param num_indices the number of indices to draw per instance. + * \param num_instances the number of instances to draw. + * \param first_index the starting index within the index buffer. + * \param vertex_offset value added to vertex index before indexing into the + * vertex buffer. + * \param first_instance the ID of the first instance to draw. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUIndexedPrimitives( + SDL_GPURenderPass *render_pass, + Uint32 num_indices, + Uint32 num_instances, + Uint32 first_index, + Sint32 vertex_offset, + Uint32 first_instance); + +/** + * Draws data using bound graphics state. + * + * You must not call this function before binding a graphics pipeline. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \param render_pass a render pass handle. + * \param num_vertices the number of vertices to draw. + * \param num_instances the number of instances that will be drawn. + * \param first_vertex the index of the first vertex to draw. + * \param first_instance the ID of the first instance to draw. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUPrimitives( + SDL_GPURenderPass *render_pass, + Uint32 num_vertices, + Uint32 num_instances, + Uint32 first_vertex, + Uint32 first_instance); + +/** + * Draws data using bound graphics state and with draw parameters set from a + * buffer. + * + * The buffer must consist of tightly-packed draw parameter sets that each + * match the layout of SDL_GPUIndirectDrawCommand. You must not call this + * function before binding a graphics pipeline. + * + * \param render_pass a render pass handle. + * \param buffer a buffer containing draw parameters. + * \param offset the offset to start reading from the draw buffer. + * \param draw_count the number of draw parameter sets that should be read + * from the draw buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUPrimitivesIndirect( + SDL_GPURenderPass *render_pass, + SDL_GPUBuffer *buffer, + Uint32 offset, + Uint32 draw_count); + +/** + * Draws data using bound graphics state with an index buffer enabled and with + * draw parameters set from a buffer. + * + * The buffer must consist of tightly-packed draw parameter sets that each + * match the layout of SDL_GPUIndexedIndirectDrawCommand. You must not call + * this function before binding a graphics pipeline. + * + * \param render_pass a render pass handle. + * \param buffer a buffer containing draw parameters. + * \param offset the offset to start reading from the draw buffer. + * \param draw_count the number of draw parameter sets that should be read + * from the draw buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUIndexedPrimitivesIndirect( + SDL_GPURenderPass *render_pass, + SDL_GPUBuffer *buffer, + Uint32 offset, + Uint32 draw_count); + +/** + * Ends the given render pass. + * + * All bound graphics state on the render pass command buffer is unset. The + * render pass handle is now invalid. + * + * \param render_pass a render pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EndGPURenderPass( + SDL_GPURenderPass *render_pass); + +/* Compute Pass */ + +/** + * Begins a compute pass on a command buffer. + * + * A compute pass is defined by a set of texture subresources and buffers that + * may be written to by compute pipelines. These textures and buffers must + * have been created with the COMPUTE_STORAGE_WRITE bit or the + * COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE bit. If you do not create a texture + * with COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE, you must not read from the + * texture in the compute pass. All operations related to compute pipelines + * must take place inside of a compute pass. You must not begin another + * compute pass, or a render pass or copy pass before ending the compute pass. + * + * A VERY IMPORTANT NOTE - Reads and writes in compute passes are NOT + * implicitly synchronized. This means you may cause data races by both + * reading and writing a resource region in a compute pass, or by writing + * multiple times to a resource region. If your compute work depends on + * reading the completed output from a previous dispatch, you MUST end the + * current compute pass and begin a new one before you can safely access the + * data. Otherwise you will receive unexpected results. Reading and writing a + * texture in the same compute pass is only supported by specific texture + * formats. Make sure you check the format support! + * + * \param command_buffer a command buffer. + * \param storage_texture_bindings an array of writeable storage texture + * binding structs. + * \param num_storage_texture_bindings the number of storage textures to bind + * from the array. + * \param storage_buffer_bindings an array of writeable storage buffer binding + * structs. + * \param num_storage_buffer_bindings the number of storage buffers to bind + * from the array. + * \returns a compute pass handle. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EndGPUComputePass + */ +extern SDL_DECLSPEC SDL_GPUComputePass * SDLCALL SDL_BeginGPUComputePass( + SDL_GPUCommandBuffer *command_buffer, + const SDL_GPUStorageTextureReadWriteBinding *storage_texture_bindings, + Uint32 num_storage_texture_bindings, + const SDL_GPUStorageBufferReadWriteBinding *storage_buffer_bindings, + Uint32 num_storage_buffer_bindings); + +/** + * Binds a compute pipeline on a command buffer for use in compute dispatch. + * + * \param compute_pass a compute pass handle. + * \param compute_pipeline a compute pipeline to bind. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputePipeline( + SDL_GPUComputePass *compute_pass, + SDL_GPUComputePipeline *compute_pipeline); + +/** + * Binds texture-sampler pairs for use on the compute shader. + * + * The textures must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param compute_pass a compute pass handle. + * \param first_slot the compute sampler slot to begin binding from. + * \param texture_sampler_bindings an array of texture-sampler binding + * structs. + * \param num_bindings the number of texture-sampler bindings to bind from the + * array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputeSamplers( + SDL_GPUComputePass *compute_pass, + Uint32 first_slot, + const SDL_GPUTextureSamplerBinding *texture_sampler_bindings, + Uint32 num_bindings); + +/** + * Binds storage textures as readonly for use on the compute pipeline. + * + * These textures must have been created with + * SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param compute_pass a compute pass handle. + * \param first_slot the compute storage texture slot to begin binding from. + * \param storage_textures an array of storage textures. + * \param num_bindings the number of storage textures to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputeStorageTextures( + SDL_GPUComputePass *compute_pass, + Uint32 first_slot, + SDL_GPUTexture *const *storage_textures, + Uint32 num_bindings); + +/** + * Binds storage buffers as readonly for use on the compute pipeline. + * + * These buffers must have been created with + * SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param compute_pass a compute pass handle. + * \param first_slot the compute storage buffer slot to begin binding from. + * \param storage_buffers an array of storage buffer binding structs. + * \param num_bindings the number of storage buffers to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputeStorageBuffers( + SDL_GPUComputePass *compute_pass, + Uint32 first_slot, + SDL_GPUBuffer *const *storage_buffers, + Uint32 num_bindings); + +/** + * Dispatches compute work. + * + * You must not call this function before binding a compute pipeline. + * + * A VERY IMPORTANT NOTE If you dispatch multiple times in a compute pass, and + * the dispatches write to the same resource region as each other, there is no + * guarantee of which order the writes will occur. If the write order matters, + * you MUST end the compute pass and begin another one. + * + * \param compute_pass a compute pass handle. + * \param groupcount_x number of local workgroups to dispatch in the X + * dimension. + * \param groupcount_y number of local workgroups to dispatch in the Y + * dimension. + * \param groupcount_z number of local workgroups to dispatch in the Z + * dimension. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DispatchGPUCompute( + SDL_GPUComputePass *compute_pass, + Uint32 groupcount_x, + Uint32 groupcount_y, + Uint32 groupcount_z); + +/** + * Dispatches compute work with parameters set from a buffer. + * + * The buffer layout should match the layout of + * SDL_GPUIndirectDispatchCommand. You must not call this function before + * binding a compute pipeline. + * + * A VERY IMPORTANT NOTE If you dispatch multiple times in a compute pass, and + * the dispatches write to the same resource region as each other, there is no + * guarantee of which order the writes will occur. If the write order matters, + * you MUST end the compute pass and begin another one. + * + * \param compute_pass a compute pass handle. + * \param buffer a buffer containing dispatch parameters. + * \param offset the offset to start reading from the dispatch buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DispatchGPUComputeIndirect( + SDL_GPUComputePass *compute_pass, + SDL_GPUBuffer *buffer, + Uint32 offset); + +/** + * Ends the current compute pass. + * + * All bound compute state on the command buffer is unset. The compute pass + * handle is now invalid. + * + * \param compute_pass a compute pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EndGPUComputePass( + SDL_GPUComputePass *compute_pass); + +/* TransferBuffer Data */ + +/** + * Maps a transfer buffer into application address space. + * + * You must unmap the transfer buffer before encoding upload commands. The + * memory is owned by the graphics driver - do NOT call SDL_free() on the + * returned pointer. + * + * \param device a GPU context. + * \param transfer_buffer a transfer buffer. + * \param cycle if true, cycles the transfer buffer if it is already bound. + * \returns the address of the mapped transfer buffer memory, or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_MapGPUTransferBuffer( + SDL_GPUDevice *device, + SDL_GPUTransferBuffer *transfer_buffer, + bool cycle); + +/** + * Unmaps a previously mapped transfer buffer. + * + * \param device a GPU context. + * \param transfer_buffer a previously mapped transfer buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnmapGPUTransferBuffer( + SDL_GPUDevice *device, + SDL_GPUTransferBuffer *transfer_buffer); + +/* Copy Pass */ + +/** + * Begins a copy pass on a command buffer. + * + * All operations related to copying to or from buffers or textures take place + * inside a copy pass. You must not begin another copy pass, or a render pass + * or compute pass before ending the copy pass. + * + * \param command_buffer a command buffer. + * \returns a copy pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GPUCopyPass * SDLCALL SDL_BeginGPUCopyPass( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Uploads data from a transfer buffer to a texture. + * + * The upload occurs on the GPU timeline. You may assume that the upload has + * finished in subsequent commands. + * + * You must align the data in the transfer buffer to a multiple of the texel + * size of the texture format. + * + * \param copy_pass a copy pass handle. + * \param source the source transfer buffer with image layout information. + * \param destination the destination texture region. + * \param cycle if true, cycles the texture if the texture is bound, otherwise + * overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UploadToGPUTexture( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTextureTransferInfo *source, + const SDL_GPUTextureRegion *destination, + bool cycle); + +/** + * Uploads data from a transfer buffer to a buffer. + * + * The upload occurs on the GPU timeline. You may assume that the upload has + * finished in subsequent commands. + * + * \param copy_pass a copy pass handle. + * \param source the source transfer buffer with offset. + * \param destination the destination buffer with offset and size. + * \param cycle if true, cycles the buffer if it is already bound, otherwise + * overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UploadToGPUBuffer( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTransferBufferLocation *source, + const SDL_GPUBufferRegion *destination, + bool cycle); + +/** + * Performs a texture-to-texture copy. + * + * This copy occurs on the GPU timeline. You may assume the copy has finished + * in subsequent commands. + * + * \param copy_pass a copy pass handle. + * \param source a source texture region. + * \param destination a destination texture region. + * \param w the width of the region to copy. + * \param h the height of the region to copy. + * \param d the depth of the region to copy. + * \param cycle if true, cycles the destination texture if the destination + * texture is bound, otherwise overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CopyGPUTextureToTexture( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTextureLocation *source, + const SDL_GPUTextureLocation *destination, + Uint32 w, + Uint32 h, + Uint32 d, + bool cycle); + +/** + * Performs a buffer-to-buffer copy. + * + * This copy occurs on the GPU timeline. You may assume the copy has finished + * in subsequent commands. + * + * \param copy_pass a copy pass handle. + * \param source the buffer and offset to copy from. + * \param destination the buffer and offset to copy to. + * \param size the length of the buffer to copy. + * \param cycle if true, cycles the destination buffer if it is already bound, + * otherwise overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CopyGPUBufferToBuffer( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUBufferLocation *source, + const SDL_GPUBufferLocation *destination, + Uint32 size, + bool cycle); + +/** + * Copies data from a texture to a transfer buffer on the GPU timeline. + * + * This data is not guaranteed to be copied until the command buffer fence is + * signaled. + * + * \param copy_pass a copy pass handle. + * \param source the source texture region. + * \param destination the destination transfer buffer with image layout + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DownloadFromGPUTexture( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTextureRegion *source, + const SDL_GPUTextureTransferInfo *destination); + +/** + * Copies data from a buffer to a transfer buffer on the GPU timeline. + * + * This data is not guaranteed to be copied until the command buffer fence is + * signaled. + * + * \param copy_pass a copy pass handle. + * \param source the source buffer with offset and size. + * \param destination the destination transfer buffer with offset. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DownloadFromGPUBuffer( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUBufferRegion *source, + const SDL_GPUTransferBufferLocation *destination); + +/** + * Ends the current copy pass. + * + * \param copy_pass a copy pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EndGPUCopyPass( + SDL_GPUCopyPass *copy_pass); + +/** + * Generates mipmaps for the given texture. + * + * This function must not be called inside of any pass. + * + * \param command_buffer a command_buffer. + * \param texture a texture with more than 1 mip level. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_GenerateMipmapsForGPUTexture( + SDL_GPUCommandBuffer *command_buffer, + SDL_GPUTexture *texture); + +/** + * Blits from a source texture region to a destination texture region. + * + * This function must not be called inside of any pass. + * + * \param command_buffer a command buffer. + * \param info the blit info struct containing the blit parameters. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BlitGPUTexture( + SDL_GPUCommandBuffer *command_buffer, + const SDL_GPUBlitInfo *info); + +/* Submission/Presentation */ + +/** + * Determines whether a swapchain composition is supported by the window. + * + * The window must be claimed before calling this function. + * + * \param device a GPU context. + * \param window an SDL_Window. + * \param swapchain_composition the swapchain composition to check. + * \returns true if supported, false if unsupported. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WindowSupportsGPUSwapchainComposition( + SDL_GPUDevice *device, + SDL_Window *window, + SDL_GPUSwapchainComposition swapchain_composition); + +/** + * Determines whether a presentation mode is supported by the window. + * + * The window must be claimed before calling this function. + * + * \param device a GPU context. + * \param window an SDL_Window. + * \param present_mode the presentation mode to check. + * \returns true if supported, false if unsupported. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WindowSupportsGPUPresentMode( + SDL_GPUDevice *device, + SDL_Window *window, + SDL_GPUPresentMode present_mode); + +/** + * Claims a window, creating a swapchain structure for it. + * + * This must be called before SDL_AcquireGPUSwapchainTexture is called using + * the window. You should only call this function from the thread that created + * the window. + * + * The swapchain will be created with SDL_GPU_SWAPCHAINCOMPOSITION_SDR and + * SDL_GPU_PRESENTMODE_VSYNC. If you want to have different swapchain + * parameters, you must call SDL_SetGPUSwapchainParameters after claiming the + * window. + * + * \param device a GPU context. + * \param window an SDL_Window. + * \returns true on success, or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_ReleaseWindowFromGPUDevice + * \sa SDL_WindowSupportsGPUPresentMode + * \sa SDL_WindowSupportsGPUSwapchainComposition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClaimWindowForGPUDevice( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Unclaims a window, destroying its swapchain structure. + * + * \param device a GPU context. + * \param window an SDL_Window that has been claimed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseWindowFromGPUDevice( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Changes the swapchain parameters for the given claimed window. + * + * This function will fail if the requested present mode or swapchain + * composition are unsupported by the device. Check if the parameters are + * supported via SDL_WindowSupportsGPUPresentMode / + * SDL_WindowSupportsGPUSwapchainComposition prior to calling this function. + * + * SDL_GPU_PRESENTMODE_VSYNC with SDL_GPU_SWAPCHAINCOMPOSITION_SDR are always + * supported. + * + * \param device a GPU context. + * \param window an SDL_Window that has been claimed. + * \param swapchain_composition the desired composition of the swapchain. + * \param present_mode the desired present mode for the swapchain. + * \returns true if successful, false on error; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WindowSupportsGPUPresentMode + * \sa SDL_WindowSupportsGPUSwapchainComposition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGPUSwapchainParameters( + SDL_GPUDevice *device, + SDL_Window *window, + SDL_GPUSwapchainComposition swapchain_composition, + SDL_GPUPresentMode present_mode); + +/** + * Configures the maximum allowed number of frames in flight. + * + * The default value when the device is created is 2. This means that after + * you have submitted 2 frames for presentation, if the GPU has not finished + * working on the first frame, SDL_AcquireGPUSwapchainTexture() will fill the + * swapchain texture pointer with NULL, and + * SDL_WaitAndAcquireGPUSwapchainTexture() will block. + * + * Higher values increase throughput at the expense of visual latency. Lower + * values decrease visual latency at the expense of throughput. + * + * Note that calling this function will stall and flush the command queue to + * prevent synchronization issues. + * + * The minimum value of allowed frames in flight is 1, and the maximum is 3. + * + * \param device a GPU context. + * \param allowed_frames_in_flight the maximum number of frames that can be + * pending on the GPU. + * \returns true if successful, false on error; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGPUAllowedFramesInFlight( + SDL_GPUDevice *device, + Uint32 allowed_frames_in_flight); + +/** + * Obtains the texture format of the swapchain for the given window. + * + * Note that this format can change if the swapchain parameters change. + * + * \param device a GPU context. + * \param window an SDL_Window that has been claimed. + * \returns the texture format of the swapchain. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GPUTextureFormat SDLCALL SDL_GetGPUSwapchainTextureFormat( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Acquire a texture to use in presentation. + * + * When a swapchain texture is acquired on a command buffer, it will + * automatically be submitted for presentation when the command buffer is + * submitted. The swapchain texture should only be referenced by the command + * buffer used to acquire it. + * + * This function will fill the swapchain texture handle with NULL if too many + * frames are in flight. This is not an error. + * + * If you use this function, it is possible to create a situation where many + * command buffers are allocated while the rendering context waits for the GPU + * to catch up, which will cause memory usage to grow. You should use + * SDL_WaitAndAcquireGPUSwapchainTexture() unless you know what you are doing + * with timing. + * + * The swapchain texture is managed by the implementation and must not be + * freed by the user. You MUST NOT call this function from any thread other + * than the one that created the window. + * + * \param command_buffer a command buffer. + * \param window a window that has been claimed. + * \param swapchain_texture a pointer filled in with a swapchain texture + * handle. + * \param swapchain_texture_width a pointer filled in with the swapchain + * texture width, may be NULL. + * \param swapchain_texture_height a pointer filled in with the swapchain + * texture height, may be NULL. + * \returns true on success, false on error; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_CancelGPUCommandBuffer + * \sa SDL_GetWindowSizeInPixels + * \sa SDL_WaitForGPUSwapchain + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_SetGPUAllowedFramesInFlight + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AcquireGPUSwapchainTexture( + SDL_GPUCommandBuffer *command_buffer, + SDL_Window *window, + SDL_GPUTexture **swapchain_texture, + Uint32 *swapchain_texture_width, + Uint32 *swapchain_texture_height); + +/** + * Blocks the thread until a swapchain texture is available to be acquired. + * + * \param device a GPU context. + * \param window a window that has been claimed. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUSwapchainTexture + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_SetGPUAllowedFramesInFlight + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitForGPUSwapchain( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Blocks the thread until a swapchain texture is available to be acquired, + * and then acquires it. + * + * When a swapchain texture is acquired on a command buffer, it will + * automatically be submitted for presentation when the command buffer is + * submitted. The swapchain texture should only be referenced by the command + * buffer used to acquire it. It is an error to call + * SDL_CancelGPUCommandBuffer() after a swapchain texture is acquired. + * + * This function can fill the swapchain texture handle with NULL in certain + * cases, for example if the window is minimized. This is not an error. You + * should always make sure to check whether the pointer is NULL before + * actually using it. + * + * The swapchain texture is managed by the implementation and must not be + * freed by the user. You MUST NOT call this function from any thread other + * than the one that created the window. + * + * The swapchain texture is write-only and cannot be used as a sampler or for + * another reading operation. + * + * \param command_buffer a command buffer. + * \param window a window that has been claimed. + * \param swapchain_texture a pointer filled in with a swapchain texture + * handle. + * \param swapchain_texture_width a pointer filled in with the swapchain + * texture width, may be NULL. + * \param swapchain_texture_height a pointer filled in with the swapchain + * texture height, may be NULL. + * \returns true on success, false on error; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_AcquireGPUSwapchainTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitAndAcquireGPUSwapchainTexture( + SDL_GPUCommandBuffer *command_buffer, + SDL_Window *window, + SDL_GPUTexture **swapchain_texture, + Uint32 *swapchain_texture_width, + Uint32 *swapchain_texture_height); + +/** + * Submits a command buffer so its commands can be processed on the GPU. + * + * It is invalid to use the command buffer after this is called. + * + * This must be called from the thread the command buffer was acquired on. + * + * All commands in the submission are guaranteed to begin executing before any + * command in a subsequent submission begins executing. + * + * \param command_buffer a command buffer. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_AcquireGPUSwapchainTexture + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SubmitGPUCommandBuffer( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Submits a command buffer so its commands can be processed on the GPU, and + * acquires a fence associated with the command buffer. + * + * You must release this fence when it is no longer needed or it will cause a + * leak. It is invalid to use the command buffer after this is called. + * + * This must be called from the thread the command buffer was acquired on. + * + * All commands in the submission are guaranteed to begin executing before any + * command in a subsequent submission begins executing. + * + * \param command_buffer a command buffer. + * \returns a fence associated with the command buffer, or NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_AcquireGPUSwapchainTexture + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_ReleaseGPUFence + */ +extern SDL_DECLSPEC SDL_GPUFence * SDLCALL SDL_SubmitGPUCommandBufferAndAcquireFence( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Cancels a command buffer. + * + * None of the enqueued commands are executed. + * + * It is an error to call this function after a swapchain texture has been + * acquired. + * + * This must be called from the thread the command buffer was acquired on. + * + * You must not reference the command buffer after calling this function. + * + * \param command_buffer a command buffer. + * \returns true on success, false on error; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_AcquireGPUSwapchainTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CancelGPUCommandBuffer( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Blocks the thread until the GPU is completely idle. + * + * \param device a GPU context. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitForGPUFences + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitForGPUIdle( + SDL_GPUDevice *device); + +/** + * Blocks the thread until the given fences are signaled. + * + * \param device a GPU context. + * \param wait_all if 0, wait for any fence to be signaled, if 1, wait for all + * fences to be signaled. + * \param fences an array of fences to wait on. + * \param num_fences the number of fences in the fences array. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_WaitForGPUIdle + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitForGPUFences( + SDL_GPUDevice *device, + bool wait_all, + SDL_GPUFence *const *fences, + Uint32 num_fences); + +/** + * Checks the status of a fence. + * + * \param device a GPU context. + * \param fence a fence. + * \returns true if the fence is signaled, false if it is not. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC bool SDLCALL SDL_QueryGPUFence( + SDL_GPUDevice *device, + SDL_GPUFence *fence); + +/** + * Releases a fence obtained from SDL_SubmitGPUCommandBufferAndAcquireFence. + * + * You must not reference the fence after calling this function. + * + * \param device a GPU context. + * \param fence a fence. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUFence( + SDL_GPUDevice *device, + SDL_GPUFence *fence); + +/* Format Info */ + +/** + * Obtains the texel block size for a texture format. + * + * \param format the texture format you want to know the texel size of. + * \returns the texel block size of the texture format. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GPUTextureFormatTexelBlockSize( + SDL_GPUTextureFormat format); + +/** + * Determines whether a texture format is supported for a given type and + * usage. + * + * \param device a GPU context. + * \param format the texture format to check. + * \param type the type of texture (2D, 3D, Cube). + * \param usage a bitmask of all usage scenarios to check. + * \returns whether the texture format is supported for this type and usage. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUTextureSupportsFormat( + SDL_GPUDevice *device, + SDL_GPUTextureFormat format, + SDL_GPUTextureType type, + SDL_GPUTextureUsageFlags usage); + +/** + * Determines if a sample count for a texture format is supported. + * + * \param device a GPU context. + * \param format the texture format to check. + * \param sample_count the sample count to check. + * \returns whether the sample count is supported for this texture format. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUTextureSupportsSampleCount( + SDL_GPUDevice *device, + SDL_GPUTextureFormat format, + SDL_GPUSampleCount sample_count); + +/** + * Calculate the size in bytes of a texture format with dimensions. + * + * \param format a texture format. + * \param width width in pixels. + * \param height height in pixels. + * \param depth_or_layer_count depth for 3D textures or layer count otherwise. + * \returns the size of a texture with this format and dimensions. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_CalculateGPUTextureFormatSize( + SDL_GPUTextureFormat format, + Uint32 width, + Uint32 height, + Uint32 depth_or_layer_count); + +#ifdef SDL_PLATFORM_GDK + +/** + * Call this to suspend GPU operation on Xbox when you receive the + * SDL_EVENT_DID_ENTER_BACKGROUND event. + * + * Do NOT call any SDL_GPU functions after calling this function! This must + * also be called before calling SDL_GDKSuspendComplete. + * + * \param device a GPU context. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + */ +extern SDL_DECLSPEC void SDLCALL SDL_GDKSuspendGPU(SDL_GPUDevice *device); + +/** + * Call this to resume GPU operation on Xbox when you receive the + * SDL_EVENT_WILL_ENTER_FOREGROUND event. + * + * When resuming, this function MUST be called before calling any other + * SDL_GPU functions. + * + * \param device a GPU context. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + */ +extern SDL_DECLSPEC void SDLCALL SDL_GDKResumeGPU(SDL_GPUDevice *device); + +#endif /* SDL_PLATFORM_GDK */ + +#ifdef __cplusplus +} +#endif /* __cplusplus */ +#include + +#endif /* SDL_gpu_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_guid.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_guid.h new file mode 100644 index 0000000..312c42c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_guid.h @@ -0,0 +1,106 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: GUID */ + +/** + * # CategoryGUID + * + * A GUID is a 128-bit value that represents something that is uniquely + * identifiable by this value: "globally unique." + * + * SDL provides functions to convert a GUID to/from a string. + */ + +#ifndef SDL_guid_h_ +#define SDL_guid_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An SDL_GUID is a 128-bit identifier for an input device that identifies + * that device across runs of SDL programs on the same platform. + * + * If the device is detached and then re-attached to a different port, or if + * the base system is rebooted, the device should still report the same GUID. + * + * GUIDs are as precise as possible but are not guaranteed to distinguish + * physically distinct but equivalent devices. For example, two game + * controllers from the same vendor with the same product ID and revision may + * have the same GUID. + * + * GUIDs may be platform-dependent (i.e., the same device may report different + * GUIDs on different operating systems). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GUID { + Uint8 data[16]; +} SDL_GUID; + +/* Function prototypes */ + +/** + * Get an ASCII string representation for a given SDL_GUID. + * + * \param guid the SDL_GUID you wish to convert to string. + * \param pszGUID buffer in which to write the ASCII string. + * \param cbGUID the size of pszGUID, should be at least 33 bytes. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StringToGUID + */ +extern SDL_DECLSPEC void SDLCALL SDL_GUIDToString(SDL_GUID guid, char *pszGUID, int cbGUID); + +/** + * Convert a GUID string into a SDL_GUID structure. + * + * Performs no error checking. If this function is given a string containing + * an invalid GUID, the function will silently succeed, but the GUID generated + * will not be useful. + * + * \param pchGUID string containing an ASCII representation of a GUID. + * \returns a SDL_GUID structure. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GUIDToString + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_StringToGUID(const char *pchGUID); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_guid_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_haptic.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_haptic.h new file mode 100644 index 0000000..a45335b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_haptic.h @@ -0,0 +1,1441 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryHaptic + * + * The SDL haptic subsystem manages haptic (force feedback) devices. + * + * The basic usage is as follows: + * + * - Initialize the subsystem (SDL_INIT_HAPTIC). + * - Open a haptic device. + * - SDL_OpenHaptic() to open from index. + * - SDL_OpenHapticFromJoystick() to open from an existing joystick. + * - Create an effect (SDL_HapticEffect). + * - Upload the effect with SDL_CreateHapticEffect(). + * - Run the effect with SDL_RunHapticEffect(). + * - (optional) Free the effect with SDL_DestroyHapticEffect(). + * - Close the haptic device with SDL_CloseHaptic(). + * + * Simple rumble example: + * + * ```c + * SDL_Haptic *haptic = NULL; + * + * // Open the device + * SDL_HapticID *haptics = SDL_GetHaptics(NULL); + * if (haptics) { + * haptic = SDL_OpenHaptic(haptics[0]); + * SDL_free(haptics); + * } + * if (haptic == NULL) + * return; + * + * // Initialize simple rumble + * if (!SDL_InitHapticRumble(haptic)) + * return; + * + * // Play effect at 50% strength for 2 seconds + * if (!SDL_PlayHapticRumble(haptic, 0.5, 2000)) + * return; + * SDL_Delay(2000); + * + * // Clean up + * SDL_CloseHaptic(haptic); + * ``` + * + * Complete example: + * + * ```c + * bool test_haptic(SDL_Joystick *joystick) + * { + * SDL_Haptic *haptic; + * SDL_HapticEffect effect; + * int effect_id; + * + * // Open the device + * haptic = SDL_OpenHapticFromJoystick(joystick); + * if (haptic == NULL) return false; // Most likely joystick isn't haptic + * + * // See if it can do sine waves + * if ((SDL_GetHapticFeatures(haptic) & SDL_HAPTIC_SINE)==0) { + * SDL_CloseHaptic(haptic); // No sine effect + * return false; + * } + * + * // Create the effect + * SDL_memset(&effect, 0, sizeof(SDL_HapticEffect)); // 0 is safe default + * effect.type = SDL_HAPTIC_SINE; + * effect.periodic.direction.type = SDL_HAPTIC_POLAR; // Polar coordinates + * effect.periodic.direction.dir[0] = 18000; // Force comes from south + * effect.periodic.period = 1000; // 1000 ms + * effect.periodic.magnitude = 20000; // 20000/32767 strength + * effect.periodic.length = 5000; // 5 seconds long + * effect.periodic.attack_length = 1000; // Takes 1 second to get max strength + * effect.periodic.fade_length = 1000; // Takes 1 second to fade away + * + * // Upload the effect + * effect_id = SDL_CreateHapticEffect(haptic, &effect); + * + * // Test the effect + * SDL_RunHapticEffect(haptic, effect_id, 1); + * SDL_Delay(5000); // Wait for the effect to finish + * + * // We destroy the effect, although closing the device also does this + * SDL_DestroyHapticEffect(haptic, effect_id); + * + * // Close the device + * SDL_CloseHaptic(haptic); + * + * return true; // Success + * } + * ``` + * + * Note that the SDL haptic subsystem is not thread-safe. + */ + + +#ifndef SDL_haptic_h_ +#define SDL_haptic_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/* FIXME: + * + * At the moment the magnitude variables are mixed between signed/unsigned, and + * it is also not made clear that ALL of those variables expect a max of 0x7FFF. + * + * Some platforms may have higher precision than that (Linux FF, Windows XInput) + * so we should fix the inconsistency in favor of higher possible precision, + * adjusting for platforms that use different scales. + * -flibit + */ + +/** + * The haptic structure used to identify an SDL haptic. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_OpenHaptic + * \sa SDL_OpenHapticFromJoystick + * \sa SDL_CloseHaptic + */ +typedef struct SDL_Haptic SDL_Haptic; + + +/** + * \name Haptic features + * + * Different haptic features a device can have. + */ +/* @{ */ + +/** + * \name Haptic effects + */ +/* @{ */ + +/** + * Constant effect supported. + * + * Constant haptic effect. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_CONSTANT (1u<<0) + +/** + * Sine wave effect supported. + * + * Periodic haptic effect that simulates sine waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SINE (1u<<1) + +/** + * Square wave effect supported. + * + * Periodic haptic effect that simulates square waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SQUARE (1u<<2) + +/** + * Triangle wave effect supported. + * + * Periodic haptic effect that simulates triangular waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_TRIANGLE (1u<<3) + +/** + * Sawtoothup wave effect supported. + * + * Periodic haptic effect that simulates saw tooth up waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SAWTOOTHUP (1u<<4) + +/** + * Sawtoothdown wave effect supported. + * + * Periodic haptic effect that simulates saw tooth down waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SAWTOOTHDOWN (1u<<5) + +/** + * Ramp effect supported. + * + * Ramp haptic effect. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticRamp + */ +#define SDL_HAPTIC_RAMP (1u<<6) + +/** + * Spring effect supported - uses axes position. + * + * Condition haptic effect that simulates a spring. Effect is based on the + * axes position. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_SPRING (1u<<7) + +/** + * Damper effect supported - uses axes velocity. + * + * Condition haptic effect that simulates dampening. Effect is based on the + * axes velocity. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_DAMPER (1u<<8) + +/** + * Inertia effect supported - uses axes acceleration. + * + * Condition haptic effect that simulates inertia. Effect is based on the axes + * acceleration. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_INERTIA (1u<<9) + +/** + * Friction effect supported - uses axes movement. + * + * Condition haptic effect that simulates friction. Effect is based on the + * axes movement. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_FRICTION (1u<<10) + +/** + * Left/Right effect supported. + * + * Haptic effect for direct control over high/low frequency motors. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticLeftRight + */ +#define SDL_HAPTIC_LEFTRIGHT (1u<<11) + +/** + * Reserved for future use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_RESERVED1 (1u<<12) + +/** + * Reserved for future use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_RESERVED2 (1u<<13) + +/** + * Reserved for future use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_RESERVED3 (1u<<14) + +/** + * Custom effect is supported. + * + * User defined custom haptic effect. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_CUSTOM (1u<<15) + +/* @} *//* Haptic effects */ + +/* These last few are features the device has, not effects */ + +/** + * Device can set global gain. + * + * Device supports setting the global gain. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SetHapticGain + */ +#define SDL_HAPTIC_GAIN (1u<<16) + +/** + * Device can set autocenter. + * + * Device supports setting autocenter. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SetHapticAutocenter + */ +#define SDL_HAPTIC_AUTOCENTER (1u<<17) + +/** + * Device can be queried for effect status. + * + * Device supports querying effect status. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_GetHapticEffectStatus + */ +#define SDL_HAPTIC_STATUS (1u<<18) + +/** + * Device can be paused. + * + * Devices supports being paused. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PauseHaptic + * \sa SDL_ResumeHaptic + */ +#define SDL_HAPTIC_PAUSE (1u<<19) + + +/** + * \name Direction encodings + */ +/* @{ */ + +/** + * Uses polar coordinates for the direction. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_POLAR 0 + +/** + * Uses cartesian coordinates for the direction. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_CARTESIAN 1 + +/** + * Uses spherical coordinates for the direction. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_SPHERICAL 2 + +/** + * Use this value to play an effect on the steering wheel axis. + * + * This provides better compatibility across platforms and devices as SDL will + * guess the correct axis. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_STEERING_AXIS 3 + +/* @} *//* Direction encodings */ + +/* @} *//* Haptic features */ + +/* + * Misc defines. + */ + +/** + * Used to play a device an infinite number of times. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_RunHapticEffect + */ +#define SDL_HAPTIC_INFINITY 4294967295U + + +/** + * Structure that represents a haptic direction. + * + * This is the direction where the force comes from, instead of the direction + * in which the force is exerted. + * + * Directions can be specified by: + * + * - SDL_HAPTIC_POLAR : Specified by polar coordinates. + * - SDL_HAPTIC_CARTESIAN : Specified by cartesian coordinates. + * - SDL_HAPTIC_SPHERICAL : Specified by spherical coordinates. + * + * Cardinal directions of the haptic device are relative to the positioning of + * the device. North is considered to be away from the user. + * + * The following diagram represents the cardinal directions: + * + * ``` + * .--. + * |__| .-------. + * |=.| |.-----.| + * |--| || || + * | | |'-----'| + * |__|~')_____(' + * [ COMPUTER ] + * + * + * North (0,-1) + * ^ + * | + * | + * (-1,0) West <----[ HAPTIC ]----> East (1,0) + * | + * | + * v + * South (0,1) + * + * + * [ USER ] + * \|||/ + * (o o) + * ---ooO-(_)-Ooo--- + * ``` + * + * If type is SDL_HAPTIC_POLAR, direction is encoded by hundredths of a degree + * starting north and turning clockwise. SDL_HAPTIC_POLAR only uses the first + * `dir` parameter. The cardinal directions would be: + * + * - North: 0 (0 degrees) + * - East: 9000 (90 degrees) + * - South: 18000 (180 degrees) + * - West: 27000 (270 degrees) + * + * If type is SDL_HAPTIC_CARTESIAN, direction is encoded by three positions (X + * axis, Y axis and Z axis (with 3 axes)). SDL_HAPTIC_CARTESIAN uses the first + * three `dir` parameters. The cardinal directions would be: + * + * - North: 0,-1, 0 + * - East: 1, 0, 0 + * - South: 0, 1, 0 + * - West: -1, 0, 0 + * + * The Z axis represents the height of the effect if supported, otherwise it's + * unused. In cartesian encoding (1, 2) would be the same as (2, 4), you can + * use any multiple you want, only the direction matters. + * + * If type is SDL_HAPTIC_SPHERICAL, direction is encoded by two rotations. The + * first two `dir` parameters are used. The `dir` parameters are as follows + * (all values are in hundredths of degrees): + * + * - Degrees from (1, 0) rotated towards (0, 1). + * - Degrees towards (0, 0, 1) (device needs at least 3 axes). + * + * Example of force coming from the south with all encodings (force coming + * from the south means the user will have to pull the stick to counteract): + * + * ```c + * SDL_HapticDirection direction; + * + * // Cartesian directions + * direction.type = SDL_HAPTIC_CARTESIAN; // Using cartesian direction encoding. + * direction.dir[0] = 0; // X position + * direction.dir[1] = 1; // Y position + * // Assuming the device has 2 axes, we don't need to specify third parameter. + * + * // Polar directions + * direction.type = SDL_HAPTIC_POLAR; // We'll be using polar direction encoding. + * direction.dir[0] = 18000; // Polar only uses first parameter + * + * // Spherical coordinates + * direction.type = SDL_HAPTIC_SPHERICAL; // Spherical encoding + * direction.dir[0] = 9000; // Since we only have two axes we don't need more parameters. + * ``` + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_POLAR + * \sa SDL_HAPTIC_CARTESIAN + * \sa SDL_HAPTIC_SPHERICAL + * \sa SDL_HAPTIC_STEERING_AXIS + * \sa SDL_HapticEffect + * \sa SDL_GetNumHapticAxes + */ +typedef struct SDL_HapticDirection +{ + Uint8 type; /**< The type of encoding. */ + Sint32 dir[3]; /**< The encoded direction. */ +} SDL_HapticDirection; + + +/** + * A structure containing a template for a Constant effect. + * + * This struct is exclusively for the SDL_HAPTIC_CONSTANT effect. + * + * A constant effect applies a constant force in the specified direction to + * the joystick. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_CONSTANT + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticConstant +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_CONSTANT */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Constant */ + Sint16 level; /**< Strength of the constant effect. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticConstant; + +/** + * A structure containing a template for a Periodic effect. + * + * The struct handles the following effects: + * + * - SDL_HAPTIC_SINE + * - SDL_HAPTIC_SQUARE + * - SDL_HAPTIC_TRIANGLE + * - SDL_HAPTIC_SAWTOOTHUP + * - SDL_HAPTIC_SAWTOOTHDOWN + * + * A periodic effect consists in a wave-shaped effect that repeats itself over + * time. The type determines the shape of the wave and the parameters + * determine the dimensions of the wave. + * + * Phase is given by hundredth of a degree meaning that giving the phase a + * value of 9000 will displace it 25% of its period. Here are sample values: + * + * - 0: No phase displacement. + * - 9000: Displaced 25% of its period. + * - 18000: Displaced 50% of its period. + * - 27000: Displaced 75% of its period. + * - 36000: Displaced 100% of its period, same as 0, but 0 is preferred. + * + * Examples: + * + * ``` + * SDL_HAPTIC_SINE + * __ __ __ __ + * / \ / \ / \ / + * / \__/ \__/ \__/ + * + * SDL_HAPTIC_SQUARE + * __ __ __ __ __ + * | | | | | | | | | | + * | |__| |__| |__| |__| | + * + * SDL_HAPTIC_TRIANGLE + * /\ /\ /\ /\ /\ + * / \ / \ / \ / \ / + * / \/ \/ \/ \/ + * + * SDL_HAPTIC_SAWTOOTHUP + * /| /| /| /| /| /| /| + * / | / | / | / | / | / | / | + * / |/ |/ |/ |/ |/ |/ | + * + * SDL_HAPTIC_SAWTOOTHDOWN + * \ |\ |\ |\ |\ |\ |\ | + * \ | \ | \ | \ | \ | \ | \ | + * \| \| \| \| \| \| \| + * ``` + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_SINE + * \sa SDL_HAPTIC_SQUARE + * \sa SDL_HAPTIC_TRIANGLE + * \sa SDL_HAPTIC_SAWTOOTHUP + * \sa SDL_HAPTIC_SAWTOOTHDOWN + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticPeriodic +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_SINE, SDL_HAPTIC_SQUARE + SDL_HAPTIC_TRIANGLE, SDL_HAPTIC_SAWTOOTHUP or + SDL_HAPTIC_SAWTOOTHDOWN */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Periodic */ + Uint16 period; /**< Period of the wave. */ + Sint16 magnitude; /**< Peak value; if negative, equivalent to 180 degrees extra phase shift. */ + Sint16 offset; /**< Mean value of the wave. */ + Uint16 phase; /**< Positive phase shift given by hundredth of a degree. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticPeriodic; + +/** + * A structure containing a template for a Condition effect. + * + * The struct handles the following effects: + * + * - SDL_HAPTIC_SPRING: Effect based on axes position. + * - SDL_HAPTIC_DAMPER: Effect based on axes velocity. + * - SDL_HAPTIC_INERTIA: Effect based on axes acceleration. + * - SDL_HAPTIC_FRICTION: Effect based on axes movement. + * + * Direction is handled by condition internals instead of a direction member. + * The condition effect specific members have three parameters. The first + * refers to the X axis, the second refers to the Y axis and the third refers + * to the Z axis. The right terms refer to the positive side of the axis and + * the left terms refer to the negative side of the axis. Please refer to the + * SDL_HapticDirection diagram for which side is positive and which is + * negative. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + * \sa SDL_HAPTIC_SPRING + * \sa SDL_HAPTIC_DAMPER + * \sa SDL_HAPTIC_INERTIA + * \sa SDL_HAPTIC_FRICTION + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticCondition +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_SPRING, SDL_HAPTIC_DAMPER, + SDL_HAPTIC_INERTIA or SDL_HAPTIC_FRICTION */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Condition */ + Uint16 right_sat[3]; /**< Level when joystick is to the positive side; max 0xFFFF. */ + Uint16 left_sat[3]; /**< Level when joystick is to the negative side; max 0xFFFF. */ + Sint16 right_coeff[3]; /**< How fast to increase the force towards the positive side. */ + Sint16 left_coeff[3]; /**< How fast to increase the force towards the negative side. */ + Uint16 deadband[3]; /**< Size of the dead zone; max 0xFFFF: whole axis-range when 0-centered. */ + Sint16 center[3]; /**< Position of the dead zone. */ +} SDL_HapticCondition; + +/** + * A structure containing a template for a Ramp effect. + * + * This struct is exclusively for the SDL_HAPTIC_RAMP effect. + * + * The ramp effect starts at start strength and ends at end strength. It + * augments in linear fashion. If you use attack and fade with a ramp the + * effects get added to the ramp effect making the effect become quadratic + * instead of linear. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_RAMP + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticRamp +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_RAMP */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Ramp */ + Sint16 start; /**< Beginning strength level. */ + Sint16 end; /**< Ending strength level. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticRamp; + +/** + * A structure containing a template for a Left/Right effect. + * + * This struct is exclusively for the SDL_HAPTIC_LEFTRIGHT effect. + * + * The Left/Right effect is used to explicitly control the large and small + * motors, commonly found in modern game controllers. The small (right) motor + * is high frequency, and the large (left) motor is low frequency. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_LEFTRIGHT + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticLeftRight +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_LEFTRIGHT */ + + /* Replay */ + Uint32 length; /**< Duration of the effect in milliseconds. */ + + /* Rumble */ + Uint16 large_magnitude; /**< Control of the large controller motor. */ + Uint16 small_magnitude; /**< Control of the small controller motor. */ +} SDL_HapticLeftRight; + +/** + * A structure containing a template for the SDL_HAPTIC_CUSTOM effect. + * + * This struct is exclusively for the SDL_HAPTIC_CUSTOM effect. + * + * A custom force feedback effect is much like a periodic effect, where the + * application can define its exact shape. You will have to allocate the data + * yourself. Data should consist of channels * samples Uint16 samples. + * + * If channels is one, the effect is rotated using the defined direction. + * Otherwise it uses the samples in data for the different axes. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_CUSTOM + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticCustom +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_CUSTOM */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Custom */ + Uint8 channels; /**< Axes to use, minimum of one. */ + Uint16 period; /**< Sample periods. */ + Uint16 samples; /**< Amount of samples. */ + Uint16 *data; /**< Should contain channels*samples items. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticCustom; + +/** + * The generic template for any haptic effect. + * + * All values max at 32767 (0x7FFF). Signed values also can be negative. Time + * values unless specified otherwise are in milliseconds. + * + * You can also pass SDL_HAPTIC_INFINITY to length instead of a 0-32767 value. + * Neither delay, interval, attack_length nor fade_length support + * SDL_HAPTIC_INFINITY. Fade will also not be used since effect never ends. + * + * Additionally, the SDL_HAPTIC_RAMP effect does not support a duration of + * SDL_HAPTIC_INFINITY. + * + * Button triggers may not be supported on all devices, it is advised to not + * use them if possible. Buttons start at index 1 instead of index 0 like the + * joystick. + * + * If both attack_length and fade_level are 0, the envelope is not used, + * otherwise both values are used. + * + * Common parts: + * + * ```c + * // Replay - All effects have this + * Uint32 length; // Duration of effect (ms). + * Uint16 delay; // Delay before starting effect. + * + * // Trigger - All effects have this + * Uint16 button; // Button that triggers effect. + * Uint16 interval; // How soon before effect can be triggered again. + * + * // Envelope - All effects except condition effects have this + * Uint16 attack_length; // Duration of the attack (ms). + * Uint16 attack_level; // Level at the start of the attack. + * Uint16 fade_length; // Duration of the fade out (ms). + * Uint16 fade_level; // Level at the end of the fade. + * ``` + * + * Here we have an example of a constant effect evolution in time: + * + * ``` + * Strength + * ^ + * | + * | effect level --> _________________ + * | / \ + * | / \ + * | / \ + * | / \ + * | attack_level --> | \ + * | | | <--- fade_level + * | + * +--------------------------------------------------> Time + * [--] [---] + * attack_length fade_length + * + * [------------------][-----------------------] + * delay length + * ``` + * + * Note either the attack_level or the fade_level may be above the actual + * effect level. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HapticConstant + * \sa SDL_HapticPeriodic + * \sa SDL_HapticCondition + * \sa SDL_HapticRamp + * \sa SDL_HapticLeftRight + * \sa SDL_HapticCustom + */ +typedef union SDL_HapticEffect +{ + /* Common for all force feedback effects */ + Uint16 type; /**< Effect type. */ + SDL_HapticConstant constant; /**< Constant effect. */ + SDL_HapticPeriodic periodic; /**< Periodic effect. */ + SDL_HapticCondition condition; /**< Condition effect. */ + SDL_HapticRamp ramp; /**< Ramp effect. */ + SDL_HapticLeftRight leftright; /**< Left/Right effect. */ + SDL_HapticCustom custom; /**< Custom effect. */ +} SDL_HapticEffect; + +/** + * This is a unique ID for a haptic device for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the haptic device is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_HapticID; + + +/* Function prototypes */ + +/** + * Get a list of currently connected haptic devices. + * + * \param count a pointer filled in with the number of haptic devices + * returned, may be NULL. + * \returns a 0 terminated array of haptic device instance IDs or NULL on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHaptic + */ +extern SDL_DECLSPEC SDL_HapticID * SDLCALL SDL_GetHaptics(int *count); + +/** + * Get the implementation dependent name of a haptic device. + * + * This can be called before any haptic devices are opened. + * + * \param instance_id the haptic device instance ID. + * \returns the name of the selected haptic device. If no name can be found, + * this function returns NULL; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticName + * \sa SDL_OpenHaptic + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetHapticNameForID(SDL_HapticID instance_id); + +/** + * Open a haptic device for use. + * + * The index passed as an argument refers to the N'th haptic device on this + * system. + * + * When opening a haptic device, its gain will be set to maximum and + * autocenter will be disabled. To modify these values use SDL_SetHapticGain() + * and SDL_SetHapticAutocenter(). + * + * \param instance_id the haptic device instance ID. + * \returns the device identifier or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseHaptic + * \sa SDL_GetHaptics + * \sa SDL_OpenHapticFromJoystick + * \sa SDL_OpenHapticFromMouse + * \sa SDL_SetHapticAutocenter + * \sa SDL_SetHapticGain + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_OpenHaptic(SDL_HapticID instance_id); + + +/** + * Get the SDL_Haptic associated with an instance ID, if it has been opened. + * + * \param instance_id the instance ID to get the SDL_Haptic for. + * \returns an SDL_Haptic on success or NULL on failure or if it hasn't been + * opened yet; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_GetHapticFromID(SDL_HapticID instance_id); + +/** + * Get the instance ID of an opened haptic device. + * + * \param haptic the SDL_Haptic device to query. + * \returns the instance ID of the specified haptic device on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_HapticID SDLCALL SDL_GetHapticID(SDL_Haptic *haptic); + +/** + * Get the implementation dependent name of a haptic device. + * + * \param haptic the SDL_Haptic obtained from SDL_OpenJoystick(). + * \returns the name of the selected haptic device. If no name can be found, + * this function returns NULL; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticNameForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetHapticName(SDL_Haptic *haptic); + +/** + * Query whether or not the current mouse has haptic capabilities. + * + * \returns true if the mouse is haptic or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHapticFromMouse + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsMouseHaptic(void); + +/** + * Try to open a haptic device from the current mouse. + * + * \returns the haptic device identifier or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseHaptic + * \sa SDL_IsMouseHaptic + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_OpenHapticFromMouse(void); + +/** + * Query if a joystick has haptic features. + * + * \param joystick the SDL_Joystick to test for haptic capabilities. + * \returns true if the joystick is haptic or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHapticFromJoystick + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsJoystickHaptic(SDL_Joystick *joystick); + +/** + * Open a haptic device for use from a joystick device. + * + * You must still close the haptic device separately. It will not be closed + * with the joystick. + * + * When opened from a joystick you should first close the haptic device before + * closing the joystick device. If not, on some implementations the haptic + * device will also get unallocated and you'll be unable to use force feedback + * on that device. + * + * \param joystick the SDL_Joystick to create a haptic device from. + * \returns a valid haptic device identifier on success or NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseHaptic + * \sa SDL_IsJoystickHaptic + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_OpenHapticFromJoystick(SDL_Joystick *joystick); + +/** + * Close a haptic device previously opened with SDL_OpenHaptic(). + * + * \param haptic the SDL_Haptic device to close. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHaptic + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseHaptic(SDL_Haptic *haptic); + +/** + * Get the number of effects a haptic device can store. + * + * On some platforms this isn't fully supported, and therefore is an + * approximation. Always check to see if your created effect was actually + * created and do not rely solely on SDL_GetMaxHapticEffects(). + * + * \param haptic the SDL_Haptic device to query. + * \returns the number of effects the haptic device can store or a negative + * error code on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMaxHapticEffectsPlaying + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetMaxHapticEffects(SDL_Haptic *haptic); + +/** + * Get the number of effects a haptic device can play at the same time. + * + * This is not supported on all platforms, but will always return a value. + * + * \param haptic the SDL_Haptic device to query maximum playing effects. + * \returns the number of effects the haptic device can play at the same time + * or -1 on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMaxHapticEffects + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetMaxHapticEffectsPlaying(SDL_Haptic *haptic); + +/** + * Get the haptic device's supported features in bitwise manner. + * + * \param haptic the SDL_Haptic device to query. + * \returns a list of supported haptic features in bitwise manner (OR'd), or 0 + * on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HapticEffectSupported + * \sa SDL_GetMaxHapticEffects + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetHapticFeatures(SDL_Haptic *haptic); + +/** + * Get the number of haptic axes the device has. + * + * The number of haptic axes might be useful if working with the + * SDL_HapticDirection effect. + * + * \param haptic the SDL_Haptic device to query. + * \returns the number of axes on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumHapticAxes(SDL_Haptic *haptic); + +/** + * Check to see if an effect is supported by a haptic device. + * + * \param haptic the SDL_Haptic device to query. + * \param effect the desired effect to query. + * \returns true if the effect is supported or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateHapticEffect + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HapticEffectSupported(SDL_Haptic *haptic, const SDL_HapticEffect *effect); + +/** + * Create a new haptic effect on a specified device. + * + * \param haptic an SDL_Haptic device to create the effect on. + * \param effect an SDL_HapticEffect structure containing the properties of + * the effect to create. + * \returns the ID of the effect on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyHapticEffect + * \sa SDL_RunHapticEffect + * \sa SDL_UpdateHapticEffect + */ +extern SDL_DECLSPEC int SDLCALL SDL_CreateHapticEffect(SDL_Haptic *haptic, const SDL_HapticEffect *effect); + +/** + * Update the properties of an effect. + * + * Can be used dynamically, although behavior when dynamically changing + * direction may be strange. Specifically the effect may re-upload itself and + * start playing from the start. You also cannot change the type either when + * running SDL_UpdateHapticEffect(). + * + * \param haptic the SDL_Haptic device that has the effect. + * \param effect the identifier of the effect to update. + * \param data an SDL_HapticEffect structure containing the new effect + * properties to use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateHapticEffect + * \sa SDL_RunHapticEffect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateHapticEffect(SDL_Haptic *haptic, int effect, const SDL_HapticEffect *data); + +/** + * Run the haptic effect on its associated haptic device. + * + * To repeat the effect over and over indefinitely, set `iterations` to + * `SDL_HAPTIC_INFINITY`. (Repeats the envelope - attack and fade.) To make + * one instance of the effect last indefinitely (so the effect does not fade), + * set the effect's `length` in its structure/union to `SDL_HAPTIC_INFINITY` + * instead. + * + * \param haptic the SDL_Haptic device to run the effect on. + * \param effect the ID of the haptic effect to run. + * \param iterations the number of iterations to run the effect; use + * `SDL_HAPTIC_INFINITY` to repeat forever. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticEffectStatus + * \sa SDL_StopHapticEffect + * \sa SDL_StopHapticEffects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RunHapticEffect(SDL_Haptic *haptic, int effect, Uint32 iterations); + +/** + * Stop the haptic effect on its associated haptic device. + * + * \param haptic the SDL_Haptic device to stop the effect on. + * \param effect the ID of the haptic effect to stop. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RunHapticEffect + * \sa SDL_StopHapticEffects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopHapticEffect(SDL_Haptic *haptic, int effect); + +/** + * Destroy a haptic effect on the device. + * + * This will stop the effect if it's running. Effects are automatically + * destroyed when the device is closed. + * + * \param haptic the SDL_Haptic device to destroy the effect on. + * \param effect the ID of the haptic effect to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateHapticEffect + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyHapticEffect(SDL_Haptic *haptic, int effect); + +/** + * Get the status of the current effect on the specified haptic device. + * + * Device must support the SDL_HAPTIC_STATUS feature. + * + * \param haptic the SDL_Haptic device to query for the effect status on. + * \param effect the ID of the haptic effect to query its status. + * \returns true if it is playing, false if it isn't playing or haptic status + * isn't supported. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetHapticEffectStatus(SDL_Haptic *haptic, int effect); + +/** + * Set the global gain of the specified haptic device. + * + * Device must support the SDL_HAPTIC_GAIN feature. + * + * The user may specify the maximum gain by setting the environment variable + * `SDL_HAPTIC_GAIN_MAX` which should be between 0 and 100. All calls to + * SDL_SetHapticGain() will scale linearly using `SDL_HAPTIC_GAIN_MAX` as the + * maximum. + * + * \param haptic the SDL_Haptic device to set the gain on. + * \param gain value to set the gain to, should be between 0 and 100 (0 - + * 100). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHapticGain(SDL_Haptic *haptic, int gain); + +/** + * Set the global autocenter of the device. + * + * Autocenter should be between 0 and 100. Setting it to 0 will disable + * autocentering. + * + * Device must support the SDL_HAPTIC_AUTOCENTER feature. + * + * \param haptic the SDL_Haptic device to set autocentering on. + * \param autocenter value to set autocenter to (0-100). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHapticAutocenter(SDL_Haptic *haptic, int autocenter); + +/** + * Pause a haptic device. + * + * Device must support the `SDL_HAPTIC_PAUSE` feature. Call SDL_ResumeHaptic() + * to resume playback. + * + * Do not modify the effects nor add new ones while the device is paused. That + * can cause all sorts of weird errors. + * + * \param haptic the SDL_Haptic device to pause. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResumeHaptic + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PauseHaptic(SDL_Haptic *haptic); + +/** + * Resume a haptic device. + * + * Call to unpause after SDL_PauseHaptic(). + * + * \param haptic the SDL_Haptic device to unpause. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseHaptic + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResumeHaptic(SDL_Haptic *haptic); + +/** + * Stop all the currently playing effects on a haptic device. + * + * \param haptic the SDL_Haptic device to stop. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RunHapticEffect + * \sa SDL_StopHapticEffects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopHapticEffects(SDL_Haptic *haptic); + +/** + * Check whether rumble is supported on a haptic device. + * + * \param haptic haptic device to check for rumble support. + * \returns true if the effect is supported or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InitHapticRumble + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HapticRumbleSupported(SDL_Haptic *haptic); + +/** + * Initialize a haptic device for simple rumble playback. + * + * \param haptic the haptic device to initialize for simple rumble playback. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PlayHapticRumble + * \sa SDL_StopHapticRumble + * \sa SDL_HapticRumbleSupported + */ +extern SDL_DECLSPEC bool SDLCALL SDL_InitHapticRumble(SDL_Haptic *haptic); + +/** + * Run a simple rumble effect on a haptic device. + * + * \param haptic the haptic device to play the rumble effect on. + * \param strength strength of the rumble to play as a 0-1 float value. + * \param length length of the rumble to play in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InitHapticRumble + * \sa SDL_StopHapticRumble + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PlayHapticRumble(SDL_Haptic *haptic, float strength, Uint32 length); + +/** + * Stop the simple rumble on a haptic device. + * + * \param haptic the haptic device to stop the rumble effect on. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PlayHapticRumble + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopHapticRumble(SDL_Haptic *haptic); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_haptic_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_hidapi.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_hidapi.h new file mode 100644 index 0000000..131b037 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_hidapi.h @@ -0,0 +1,552 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: HIDAPI */ + +/** + * # CategoryHIDAPI + * + * Header file for SDL HIDAPI functions. + * + * This is an adaptation of the original HIDAPI interface by Alan Ott, and + * includes source code licensed under the following license: + * + * ``` + * HIDAPI - Multi-Platform library for + * communication with HID devices. + * + * Copyright 2009, Alan Ott, Signal 11 Software. + * All Rights Reserved. + * + * This software may be used by anyone for any reason so + * long as the copyright notice in the source files + * remains intact. + * ``` + * + * (Note that this license is the same as item three of SDL's zlib license, so + * it adds no new requirements on the user.) + * + * If you would like a version of SDL without this code, you can build SDL + * with SDL_HIDAPI_DISABLED defined to 1. You might want to do this for + * example on iOS or tvOS to avoid a dependency on the CoreBluetooth + * framework. + */ + +#ifndef SDL_hidapi_h_ +#define SDL_hidapi_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque handle representing an open HID device. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_hid_device SDL_hid_device; + +/** + * HID underlying bus types. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_hid_bus_type { + /** Unknown bus type */ + SDL_HID_API_BUS_UNKNOWN = 0x00, + + /** USB bus + Specifications: + https://usb.org/hid */ + SDL_HID_API_BUS_USB = 0x01, + + /** Bluetooth or Bluetooth LE bus + Specifications: + https://www.bluetooth.com/specifications/specs/human-interface-device-profile-1-1-1/ + https://www.bluetooth.com/specifications/specs/hid-service-1-0/ + https://www.bluetooth.com/specifications/specs/hid-over-gatt-profile-1-0/ */ + SDL_HID_API_BUS_BLUETOOTH = 0x02, + + /** I2C bus + Specifications: + https://docs.microsoft.com/previous-versions/windows/hardware/design/dn642101(v=vs.85) */ + SDL_HID_API_BUS_I2C = 0x03, + + /** SPI bus + Specifications: + https://www.microsoft.com/download/details.aspx?id=103325 */ + SDL_HID_API_BUS_SPI = 0x04 + +} SDL_hid_bus_type; + +/** hidapi info structure */ + +/** + * Information about a connected HID device + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_hid_device_info +{ + /** Platform-specific device path */ + char *path; + /** Device Vendor ID */ + unsigned short vendor_id; + /** Device Product ID */ + unsigned short product_id; + /** Serial Number */ + wchar_t *serial_number; + /** Device Release Number in binary-coded decimal, + also known as Device Version Number */ + unsigned short release_number; + /** Manufacturer String */ + wchar_t *manufacturer_string; + /** Product string */ + wchar_t *product_string; + /** Usage Page for this Device/Interface + (Windows/Mac/hidraw only) */ + unsigned short usage_page; + /** Usage for this Device/Interface + (Windows/Mac/hidraw only) */ + unsigned short usage; + /** The USB interface which this logical device + represents. + + Valid only if the device is a USB HID device. + Set to -1 in all other cases. + */ + int interface_number; + + /** Additional information about the USB interface. + Valid on libusb and Android implementations. */ + int interface_class; + int interface_subclass; + int interface_protocol; + + /** Underlying bus type */ + SDL_hid_bus_type bus_type; + + /** Pointer to the next device */ + struct SDL_hid_device_info *next; + +} SDL_hid_device_info; + + +/** + * Initialize the HIDAPI library. + * + * This function initializes the HIDAPI library. Calling it is not strictly + * necessary, as it will be called automatically by SDL_hid_enumerate() and + * any of the SDL_hid_open_*() functions if it is needed. This function should + * be called at the beginning of execution however, if there is a chance of + * HIDAPI handles being opened by different threads simultaneously. + * + * Each call to this function should have a matching call to SDL_hid_exit() + * + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_exit + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_init(void); + +/** + * Finalize the HIDAPI library. + * + * This function frees all of the static data associated with HIDAPI. It + * should be called at the end of execution to avoid memory leaks. + * + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_init + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_exit(void); + +/** + * Check to see if devices may have been added or removed. + * + * Enumerating the HID devices is an expensive operation, so you can call this + * to see if there have been any system device changes since the last call to + * this function. A change in the counter returned doesn't necessarily mean + * that anything has changed, but you can call SDL_hid_enumerate() to get an + * updated device list. + * + * Calling this function for the first time may cause a thread or other system + * resource to be allocated to track device change notifications. + * + * \returns a change counter that is incremented with each potential device + * change, or 0 if device change detection isn't available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_enumerate + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_hid_device_change_count(void); + +/** + * Enumerate the HID Devices. + * + * This function returns a linked list of all the HID devices attached to the + * system which match vendor_id and product_id. If `vendor_id` is set to 0 + * then any vendor matches. If `product_id` is set to 0 then any product + * matches. If `vendor_id` and `product_id` are both set to 0, then all HID + * devices will be returned. + * + * By default SDL will only enumerate controllers, to reduce risk of hanging + * or crashing on bad drivers, but SDL_HINT_HIDAPI_ENUMERATE_ONLY_CONTROLLERS + * can be set to "0" to enumerate all HID devices. + * + * \param vendor_id the Vendor ID (VID) of the types of device to open, or 0 + * to match any vendor. + * \param product_id the Product ID (PID) of the types of device to open, or 0 + * to match any product. + * \returns a pointer to a linked list of type SDL_hid_device_info, containing + * information about the HID devices attached to the system, or NULL + * in the case of failure. Free this linked list by calling + * SDL_hid_free_enumeration(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_device_change_count + */ +extern SDL_DECLSPEC SDL_hid_device_info * SDLCALL SDL_hid_enumerate(unsigned short vendor_id, unsigned short product_id); + +/** + * Free an enumeration linked list. + * + * This function frees a linked list created by SDL_hid_enumerate(). + * + * \param devs pointer to a list of struct_device returned from + * SDL_hid_enumerate(). + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_hid_free_enumeration(SDL_hid_device_info *devs); + +/** + * Open a HID device using a Vendor ID (VID), Product ID (PID) and optionally + * a serial number. + * + * If `serial_number` is NULL, the first device with the specified VID and PID + * is opened. + * + * \param vendor_id the Vendor ID (VID) of the device to open. + * \param product_id the Product ID (PID) of the device to open. + * \param serial_number the Serial Number of the device to open (Optionally + * NULL). + * \returns a pointer to a SDL_hid_device object on success or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_hid_device * SDLCALL SDL_hid_open(unsigned short vendor_id, unsigned short product_id, const wchar_t *serial_number); + +/** + * Open a HID device by its path name. + * + * The path name be determined by calling SDL_hid_enumerate(), or a + * platform-specific path name can be used (eg: /dev/hidraw0 on Linux). + * + * \param path the path name of the device to open. + * \returns a pointer to a SDL_hid_device object on success or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_hid_device * SDLCALL SDL_hid_open_path(const char *path); + +/** + * Write an Output report to a HID device. + * + * The first byte of `data` must contain the Report ID. For devices which only + * support a single report, this must be set to 0x0. The remaining bytes + * contain the report data. Since the Report ID is mandatory, calls to + * SDL_hid_write() will always contain one more byte than the report contains. + * For example, if a hid report is 16 bytes long, 17 bytes must be passed to + * SDL_hid_write(), the Report ID (or 0x0, for devices with a single report), + * followed by the report data (16 bytes). In this example, the length passed + * in would be 17. + * + * SDL_hid_write() will send the data on the first OUT endpoint, if one + * exists. If it does not, it will send the data through the Control Endpoint + * (Endpoint 0). + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data the data to send, including the report number as the first + * byte. + * \param length the length in bytes of the data to send. + * \returns the actual number of bytes written and -1 on on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_write(SDL_hid_device *dev, const unsigned char *data, size_t length); + +/** + * Read an Input report from a HID device with timeout. + * + * Input reports are returned to the host through the INTERRUPT IN endpoint. + * The first byte will contain the Report number if the device uses numbered + * reports. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into. + * \param length the number of bytes to read. For devices with multiple + * reports, make sure to read an extra byte for the report + * number. + * \param milliseconds timeout in milliseconds or -1 for blocking wait. + * \returns the actual number of bytes read and -1 on on failure; call + * SDL_GetError() for more information. If no packet was available to + * be read within the timeout period, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_read_timeout(SDL_hid_device *dev, unsigned char *data, size_t length, int milliseconds); + +/** + * Read an Input report from a HID device. + * + * Input reports are returned to the host through the INTERRUPT IN endpoint. + * The first byte will contain the Report number if the device uses numbered + * reports. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into. + * \param length the number of bytes to read. For devices with multiple + * reports, make sure to read an extra byte for the report + * number. + * \returns the actual number of bytes read and -1 on failure; call + * SDL_GetError() for more information. If no packet was available to + * be read and the handle is in non-blocking mode, this function + * returns 0. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_read(SDL_hid_device *dev, unsigned char *data, size_t length); + +/** + * Set the device handle to be non-blocking. + * + * In non-blocking mode calls to SDL_hid_read() will return immediately with a + * value of 0 if there is no data to be read. In blocking mode, SDL_hid_read() + * will wait (block) until there is data to read before returning. + * + * Nonblocking can be turned on and off at any time. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param nonblock enable or not the nonblocking reads - 1 to enable + * nonblocking - 0 to disable nonblocking. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_set_nonblocking(SDL_hid_device *dev, int nonblock); + +/** + * Send a Feature report to the device. + * + * Feature reports are sent over the Control endpoint as a Set_Report + * transfer. The first byte of `data` must contain the Report ID. For devices + * which only support a single report, this must be set to 0x0. The remaining + * bytes contain the report data. Since the Report ID is mandatory, calls to + * SDL_hid_send_feature_report() will always contain one more byte than the + * report contains. For example, if a hid report is 16 bytes long, 17 bytes + * must be passed to SDL_hid_send_feature_report(): the Report ID (or 0x0, for + * devices which do not use numbered reports), followed by the report data (16 + * bytes). In this example, the length passed in would be 17. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data the data to send, including the report number as the first + * byte. + * \param length the length in bytes of the data to send, including the report + * number. + * \returns the actual number of bytes written and -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_send_feature_report(SDL_hid_device *dev, const unsigned char *data, size_t length); + +/** + * Get a feature report from a HID device. + * + * Set the first byte of `data` to the Report ID of the report to be read. + * Make sure to allow space for this extra byte in `data`. Upon return, the + * first byte will still contain the Report ID, and the report data will start + * in data[1]. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into, including the Report ID. + * Set the first byte of `data` to the Report ID of the report to + * be read, or set it to zero if your device does not use numbered + * reports. + * \param length the number of bytes to read, including an extra byte for the + * report ID. The buffer can be longer than the actual report. + * \returns the number of bytes read plus one for the report ID (which is + * still in the first byte), or -1 on on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_feature_report(SDL_hid_device *dev, unsigned char *data, size_t length); + +/** + * Get an input report from a HID device. + * + * Set the first byte of `data` to the Report ID of the report to be read. + * Make sure to allow space for this extra byte in `data`. Upon return, the + * first byte will still contain the Report ID, and the report data will start + * in data[1]. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into, including the Report ID. + * Set the first byte of `data` to the Report ID of the report to + * be read, or set it to zero if your device does not use numbered + * reports. + * \param length the number of bytes to read, including an extra byte for the + * report ID. The buffer can be longer than the actual report. + * \returns the number of bytes read plus one for the report ID (which is + * still in the first byte), or -1 on on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_input_report(SDL_hid_device *dev, unsigned char *data, size_t length); + +/** + * Close a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_close(SDL_hid_device *dev); + +/** + * Get The Manufacturer String from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_manufacturer_string(SDL_hid_device *dev, wchar_t *string, size_t maxlen); + +/** + * Get The Product String from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_product_string(SDL_hid_device *dev, wchar_t *string, size_t maxlen); + +/** + * Get The Serial Number String from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_serial_number_string(SDL_hid_device *dev, wchar_t *string, size_t maxlen); + +/** + * Get a string from a HID device, based on its string index. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string_index the index of the string to get. + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_indexed_string(SDL_hid_device *dev, int string_index, wchar_t *string, size_t maxlen); + +/** + * Get the device info from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \returns a pointer to the SDL_hid_device_info for this hid_device or NULL + * on failure; call SDL_GetError() for more information. This struct + * is valid until the device is closed with SDL_hid_close(). + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_hid_device_info * SDLCALL SDL_hid_get_device_info(SDL_hid_device *dev); + +/** + * Get a report descriptor from a HID device. + * + * User has to provide a preallocated buffer where descriptor will be copied + * to. The recommended size for a preallocated buffer is 4096 bytes. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param buf the buffer to copy descriptor into. + * \param buf_size the size of the buffer in bytes. + * \returns the number of bytes actually copied or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_report_descriptor(SDL_hid_device *dev, unsigned char *buf, size_t buf_size); + +/** + * Start or stop a BLE scan on iOS and tvOS to pair Steam Controllers. + * + * \param active true to start the scan, false to stop the scan. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_hid_ble_scan(bool active); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_hidapi_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_hints.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_hints.h new file mode 100644 index 0000000..a081535 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_hints.h @@ -0,0 +1,4486 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryHints + * + * This file contains functions to set and get configuration hints, as well as + * listing each of them alphabetically. + * + * The convention for naming hints is SDL_HINT_X, where "SDL_X" is the + * environment variable that can be used to override the default. + * + * In general these hints are just that - they may or may not be supported or + * applicable on any given platform, but they provide a way for an application + * or user to give the library a hint as to how they would like the library to + * work. + */ + +#ifndef SDL_hints_h_ +#define SDL_hints_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Specify the behavior of Alt+Tab while the keyboard is grabbed. + * + * By default, SDL emulates Alt+Tab functionality while the keyboard is + * grabbed and your window is full-screen. This prevents the user from getting + * stuck in your application if you've enabled keyboard grab. + * + * The variable can be set to the following values: + * + * - "0": SDL will not handle Alt+Tab. Your application is responsible for + * handling Alt+Tab while the keyboard is grabbed. + * - "1": SDL will minimize your window when Alt+Tab is pressed (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ALLOW_ALT_TAB_WHILE_GRABBED "SDL_ALLOW_ALT_TAB_WHILE_GRABBED" + +/** + * A variable to control whether the SDL activity is allowed to be re-created. + * + * If this hint is true, the activity can be recreated on demand by the OS, + * and Java static data and C++ static data remain with their current values. + * If this hint is false, then SDL will call exit() when you return from your + * main function and the application will be terminated and then started fresh + * each time. + * + * The variable can be set to the following values: + * + * - "0": The application starts fresh at each launch. (default) + * - "1": The application activity can be recreated by the OS. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_ALLOW_RECREATE_ACTIVITY "SDL_ANDROID_ALLOW_RECREATE_ACTIVITY" + +/** + * A variable to control whether the event loop will block itself when the app + * is paused. + * + * The variable can be set to the following values: + * + * - "0": Non blocking. + * - "1": Blocking. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_BLOCK_ON_PAUSE "SDL_ANDROID_BLOCK_ON_PAUSE" + +/** + * A variable to control whether low latency audio should be enabled. + * + * Some devices have poor quality output when this is enabled, but this is + * usually an improvement in audio latency. + * + * The variable can be set to the following values: + * + * - "0": Low latency audio is not enabled. + * - "1": Low latency audio is enabled. (default) + * + * This hint should be set before SDL audio is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_LOW_LATENCY_AUDIO "SDL_ANDROID_LOW_LATENCY_AUDIO" + +/** + * A variable to control whether we trap the Android back button to handle it + * manually. + * + * This is necessary for the right mouse button to work on some Android + * devices, or to be able to trap the back button for use in your code + * reliably. If this hint is true, the back button will show up as an + * SDL_EVENT_KEY_DOWN / SDL_EVENT_KEY_UP pair with a keycode of + * SDL_SCANCODE_AC_BACK. + * + * The variable can be set to the following values: + * + * - "0": Back button will be handled as usual for system. (default) + * - "1": Back button will be trapped, allowing you to handle the key press + * manually. (This will also let right mouse click work on systems where the + * right mouse button functions as back.) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_TRAP_BACK_BUTTON "SDL_ANDROID_TRAP_BACK_BUTTON" + +/** + * A variable setting the app ID string. + * + * This string is used by desktop compositors to identify and group windows + * together, as well as match applications with associated desktop settings + * and icons. + * + * This will override SDL_PROP_APP_METADATA_IDENTIFIER_STRING, if set by the + * application. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APP_ID "SDL_APP_ID" + +/** + * A variable setting the application name. + * + * This hint lets you specify the application name sent to the OS when + * required. For example, this will often appear in volume control applets for + * audio streams, and in lists of applications which are inhibiting the + * screensaver. You should use a string that describes your program ("My Game + * 2: The Revenge") + * + * This will override SDL_PROP_APP_METADATA_NAME_STRING, if set by the + * application. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APP_NAME "SDL_APP_NAME" + +/** + * A variable controlling whether controllers used with the Apple TV generate + * UI events. + * + * When UI events are generated by controller input, the app will be + * backgrounded when the Apple TV remote's menu button is pressed, and when + * the pause or B buttons on gamepads are pressed. + * + * More information about properly making use of controllers for the Apple TV + * can be found here: + * https://developer.apple.com/tvos/human-interface-guidelines/remote-and-controllers/ + * + * The variable can be set to the following values: + * + * - "0": Controller input does not generate UI events. (default) + * - "1": Controller input generates UI events. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APPLE_TV_CONTROLLER_UI_EVENTS "SDL_APPLE_TV_CONTROLLER_UI_EVENTS" + +/** + * A variable controlling whether the Apple TV remote's joystick axes will + * automatically match the rotation of the remote. + * + * The variable can be set to the following values: + * + * - "0": Remote orientation does not affect joystick axes. (default) + * - "1": Joystick axes are based on the orientation of the remote. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APPLE_TV_REMOTE_ALLOW_ROTATION "SDL_APPLE_TV_REMOTE_ALLOW_ROTATION" + +/** + * Specify the default ALSA audio device name. + * + * This variable is a specific audio device to open when the "default" audio + * device is used. + * + * This hint will be ignored when opening the default playback device if + * SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE is set, or when opening the + * default recording device if SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE is + * set. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE + */ +#define SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE "SDL_AUDIO_ALSA_DEFAULT_DEVICE" + +/** + * Specify the default ALSA audio playback device name. + * + * This variable is a specific audio device to open for playback, when the + * "default" audio device is used. + * + * If this hint isn't set, SDL will check SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + * before choosing a reasonable default. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + */ +#define SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE "SDL_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE" + +/** + * Specify the default ALSA audio recording device name. + * + * This variable is a specific audio device to open for recording, when the + * "default" audio device is used. + * + * If this hint isn't set, SDL will check SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + * before choosing a reasonable default. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + */ +#define SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE "SDL_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE" + +/** + * A variable controlling the audio category on iOS and macOS. + * + * The variable can be set to the following values: + * + * - "ambient": Use the AVAudioSessionCategoryAmbient audio category, will be + * muted by the phone mute switch (default) + * - "playback": Use the AVAudioSessionCategoryPlayback category. + * + * For more information, see Apple's documentation: + * https://developer.apple.com/library/content/documentation/Audio/Conceptual/AudioSessionProgrammingGuide/AudioSessionCategoriesandModes/AudioSessionCategoriesandModes.html + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_CATEGORY "SDL_AUDIO_CATEGORY" + +/** + * A variable controlling the default audio channel count. + * + * If the application doesn't specify the audio channel count when opening the + * device, this hint can be used to specify a default channel count that will + * be used. This defaults to "1" for recording and "2" for playback devices. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_CHANNELS "SDL_AUDIO_CHANNELS" + +/** + * Specify an application icon name for an audio device. + * + * Some audio backends (such as Pulseaudio and Pipewire) allow you to set an + * XDG icon name for your application. Among other things, this icon might + * show up in a system control panel that lets the user adjust the volume on + * specific audio streams instead of using one giant master volume slider. + * Note that this is unrelated to the icon used by the windowing system, which + * may be set with SDL_SetWindowIcon (or via desktop file on Wayland). + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default, "applications-games", which is likely to be installed. See + * https://specifications.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html + * and + * https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html + * for the relevant XDG icon specs. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_APP_ICON_NAME "SDL_AUDIO_DEVICE_APP_ICON_NAME" + +/** + * A variable controlling device buffer size. + * + * This hint is an integer > 0, that represents the size of the device's + * buffer in sample frames (stereo audio data in 16-bit format is 4 bytes per + * sample frame, for example). + * + * SDL3 generally decides this value on behalf of the app, but if for some + * reason the app needs to dictate this (because they want either lower + * latency or higher throughput AND ARE WILLING TO DEAL WITH what that might + * require of the app), they can specify it. + * + * SDL will try to accommodate this value, but there is no promise you'll get + * the buffer size requested. Many platforms won't honor this request at all, + * or might adjust it. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_SAMPLE_FRAMES "SDL_AUDIO_DEVICE_SAMPLE_FRAMES" + +/** + * Specify an audio stream name for an audio device. + * + * Some audio backends (such as PulseAudio) allow you to describe your audio + * stream. Among other things, this description might show up in a system + * control panel that lets the user adjust the volume on specific audio + * streams instead of using one giant master volume slider. + * + * This hints lets you transmit that information to the OS. The contents of + * this hint are used while opening an audio device. You should use a string + * that describes your what your program is playing ("audio stream" is + * probably sufficient in many cases, but this could be useful for something + * like "team chat" if you have a headset playing VoIP audio separately). + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default: "audio stream" or something similar. + * + * Note that while this talks about audio streams, this is an OS-level + * concept, so it applies to a physical audio device in this case, and not an + * SDL_AudioStream, nor an SDL logical audio device. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_STREAM_NAME "SDL_AUDIO_DEVICE_STREAM_NAME" + +/** + * Specify an application role for an audio device. + * + * Some audio backends (such as Pipewire) allow you to describe the role of + * your audio stream. Among other things, this description might show up in a + * system control panel or software for displaying and manipulating media + * playback/recording graphs. + * + * This hints lets you transmit that information to the OS. The contents of + * this hint are used while opening an audio device. You should use a string + * that describes your what your program is playing (Game, Music, Movie, + * etc...). + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default: "Game" or something similar. + * + * Note that while this talks about audio streams, this is an OS-level + * concept, so it applies to a physical audio device in this case, and not an + * SDL_AudioStream, nor an SDL logical audio device. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_STREAM_ROLE "SDL_AUDIO_DEVICE_STREAM_ROLE" + +/** + * Specify the input file when recording audio using the disk audio driver. + * + * This defaults to "sdlaudio-in.raw" + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DISK_INPUT_FILE "SDL_AUDIO_DISK_INPUT_FILE" + +/** + * Specify the output file when playing audio using the disk audio driver. + * + * This defaults to "sdlaudio.raw" + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DISK_OUTPUT_FILE "SDL_AUDIO_DISK_OUTPUT_FILE" + +/** + * A variable controlling the audio rate when using the disk audio driver. + * + * The disk audio driver normally simulates real-time for the audio rate that + * was specified, but you can use this variable to adjust this rate higher or + * lower down to 0. The default value is "1.0". + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DISK_TIMESCALE "SDL_AUDIO_DISK_TIMESCALE" + +/** + * A variable that specifies an audio backend to use. + * + * By default, SDL will try all available audio backends in a reasonable order + * until it finds one that can work, but this hint allows the app or user to + * force a specific driver, such as "pipewire" if, say, you are on PulseAudio + * but want to try talking to the lower level instead. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DRIVER "SDL_AUDIO_DRIVER" + +/** + * A variable controlling the audio rate when using the dummy audio driver. + * + * The dummy audio driver normally simulates real-time for the audio rate that + * was specified, but you can use this variable to adjust this rate higher or + * lower down to 0. The default value is "1.0". + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DUMMY_TIMESCALE "SDL_AUDIO_DUMMY_TIMESCALE" + +/** + * A variable controlling the default audio format. + * + * If the application doesn't specify the audio format when opening the + * device, this hint can be used to specify a default format that will be + * used. + * + * The variable can be set to the following values: + * + * - "U8": Unsigned 8-bit audio + * - "S8": Signed 8-bit audio + * - "S16LE": Signed 16-bit little-endian audio + * - "S16BE": Signed 16-bit big-endian audio + * - "S16": Signed 16-bit native-endian audio (default) + * - "S32LE": Signed 32-bit little-endian audio + * - "S32BE": Signed 32-bit big-endian audio + * - "S32": Signed 32-bit native-endian audio + * - "F32LE": Floating point little-endian audio + * - "F32BE": Floating point big-endian audio + * - "F32": Floating point native-endian audio + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_FORMAT "SDL_AUDIO_FORMAT" + +/** + * A variable controlling the default audio frequency. + * + * If the application doesn't specify the audio frequency when opening the + * device, this hint can be used to specify a default frequency that will be + * used. This defaults to "44100". + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_FREQUENCY "SDL_AUDIO_FREQUENCY" + +/** + * A variable that causes SDL to not ignore audio "monitors". + * + * This is currently only used by the PulseAudio driver. + * + * By default, SDL ignores audio devices that aren't associated with physical + * hardware. Changing this hint to "1" will expose anything SDL sees that + * appears to be an audio source or sink. This will add "devices" to the list + * that the user probably doesn't want or need, but it can be useful in + * scenarios where you want to hook up SDL to some sort of virtual device, + * etc. + * + * The variable can be set to the following values: + * + * - "0": Audio monitor devices will be ignored. (default) + * - "1": Audio monitor devices will show up in the device list. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_INCLUDE_MONITORS "SDL_AUDIO_INCLUDE_MONITORS" + +/** + * A variable controlling whether SDL updates joystick state when getting + * input events. + * + * The variable can be set to the following values: + * + * - "0": You'll call SDL_UpdateJoysticks() manually. + * - "1": SDL will automatically call SDL_UpdateJoysticks(). (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUTO_UPDATE_JOYSTICKS "SDL_AUTO_UPDATE_JOYSTICKS" + +/** + * A variable controlling whether SDL updates sensor state when getting input + * events. + * + * The variable can be set to the following values: + * + * - "0": You'll call SDL_UpdateSensors() manually. + * - "1": SDL will automatically call SDL_UpdateSensors(). (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUTO_UPDATE_SENSORS "SDL_AUTO_UPDATE_SENSORS" + +/** + * Prevent SDL from using version 4 of the bitmap header when saving BMPs. + * + * The bitmap header version 4 is required for proper alpha channel support + * and SDL will use it when required. Should this not be desired, this hint + * can force the use of the 40 byte header version which is supported + * everywhere. + * + * The variable can be set to the following values: + * + * - "0": Surfaces with a colorkey or an alpha channel are saved to a 32-bit + * BMP file with an alpha mask. SDL will use the bitmap header version 4 and + * set the alpha mask accordingly. (default) + * - "1": Surfaces with a colorkey or an alpha channel are saved to a 32-bit + * BMP file without an alpha mask. The alpha channel data will be in the + * file, but applications are going to ignore it. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_BMP_SAVE_LEGACY_FORMAT "SDL_BMP_SAVE_LEGACY_FORMAT" + +/** + * A variable that decides what camera backend to use. + * + * By default, SDL will try all available camera backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target, such as "directshow" if, say, you are on + * Windows Media Foundations but want to try DirectShow instead. + * + * The default value is unset, in which case SDL will try to figure out the + * best camera backend on your behalf. This hint needs to be set before + * SDL_Init() is called to be useful. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_CAMERA_DRIVER "SDL_CAMERA_DRIVER" + +/** + * A variable that limits what CPU features are available. + * + * By default, SDL marks all features the current CPU supports as available. + * This hint allows to limit these to a subset. + * + * When the hint is unset, or empty, SDL will enable all detected CPU + * features. + * + * The variable can be set to a comma separated list containing the following + * items: + * + * - "all" + * - "altivec" + * - "sse" + * - "sse2" + * - "sse3" + * - "sse41" + * - "sse42" + * - "avx" + * - "avx2" + * - "avx512f" + * - "arm-simd" + * - "neon" + * - "lsx" + * - "lasx" + * + * The items can be prefixed by '+'/'-' to add/remove features. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_CPU_FEATURE_MASK "SDL_CPU_FEATURE_MASK" + +/** + * A variable controlling whether DirectInput should be used for controllers. + * + * The variable can be set to the following values: + * + * - "0": Disable DirectInput detection. + * - "1": Enable DirectInput detection. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_DIRECTINPUT "SDL_JOYSTICK_DIRECTINPUT" + +/** + * A variable that specifies a dialog backend to use. + * + * By default, SDL will try all available dialog backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target. + * + * If the specified target does not exist or is not available, the + * dialog-related function calls will fail. + * + * This hint currently only applies to platforms using the generic "Unix" + * dialog implementation, but may be extended to more platforms in the future. + * Note that some Unix and Unix-like platforms have their own implementation, + * such as macOS and Haiku. + * + * The variable can be set to the following values: + * + * - NULL: Select automatically (default, all platforms) + * - "portal": Use XDG Portals through DBus (Unix only) + * - "zenity": Use the Zenity program (Unix only) + * + * More options may be added in the future. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_FILE_DIALOG_DRIVER "SDL_FILE_DIALOG_DRIVER" + +/** + * Override for SDL_GetDisplayUsableBounds(). + * + * If set, this hint will override the expected results for + * SDL_GetDisplayUsableBounds() for display index 0. Generally you don't want + * to do this, but this allows an embedded system to request that some of the + * screen be reserved for other uses when paired with a well-behaved + * application. + * + * The contents of this hint must be 4 comma-separated integers, the first is + * the bounds x, then y, width and height, in that order. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_DISPLAY_USABLE_BOUNDS "SDL_DISPLAY_USABLE_BOUNDS" + +/** + * Disable giving back control to the browser automatically when running with + * asyncify. + * + * With -s ASYNCIFY, SDL calls emscripten_sleep during operations such as + * refreshing the screen or polling events. + * + * This hint only applies to the emscripten platform. + * + * The variable can be set to the following values: + * + * - "0": Disable emscripten_sleep calls (if you give back browser control + * manually or use asyncify for other purposes). + * - "1": Enable emscripten_sleep calls. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EMSCRIPTEN_ASYNCIFY "SDL_EMSCRIPTEN_ASYNCIFY" + +/** + * Specify the CSS selector used for the "default" window/canvas. + * + * This hint only applies to the emscripten platform. + * + * The default value is "#canvas" + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EMSCRIPTEN_CANVAS_SELECTOR "SDL_EMSCRIPTEN_CANVAS_SELECTOR" + +/** + * Override the binding element for keyboard inputs for Emscripten builds. + * + * This hint only applies to the emscripten platform. + * + * The variable can be one of: + * + * - "#window": the javascript window object (default) + * - "#document": the javascript document object + * - "#screen": the javascript window.screen object + * - "#canvas": the WebGL canvas element + * - "#none": Don't bind anything at all + * - any other string without a leading # sign applies to the element on the + * page with that ID. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EMSCRIPTEN_KEYBOARD_ELEMENT "SDL_EMSCRIPTEN_KEYBOARD_ELEMENT" + +/** + * A variable that controls whether the on-screen keyboard should be shown + * when text input is active. + * + * The variable can be set to the following values: + * + * - "auto": The on-screen keyboard will be shown if there is no physical + * keyboard attached. (default) + * - "0": Do not show the on-screen keyboard. + * - "1": Show the on-screen keyboard, if available. + * + * This hint must be set before SDL_StartTextInput() is called + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ENABLE_SCREEN_KEYBOARD "SDL_ENABLE_SCREEN_KEYBOARD" + +/** + * A variable containing a list of evdev devices to use if udev is not + * available. + * + * The list of devices is in the form: + * + * deviceclass:path[,deviceclass:path[,...]] + * + * where device class is an integer representing the SDL_UDEV_deviceclass and + * path is the full path to the event device. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EVDEV_DEVICES "SDL_EVDEV_DEVICES" + +/** + * A variable controlling verbosity of the logging of SDL events pushed onto + * the internal queue. + * + * The variable can be set to the following values, from least to most + * verbose: + * + * - "0": Don't log any events. (default) + * - "1": Log most events (other than the really spammy ones). + * - "2": Include mouse and finger motion events. + * + * This is generally meant to be used to debug SDL itself, but can be useful + * for application developers that need better visibility into what is going + * on in the event queue. Logged events are sent through SDL_Log(), which + * means by default they appear on stdout on most platforms or maybe + * OutputDebugString() on Windows, and can be funneled by the app with + * SDL_SetLogOutputFunction(), etc. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EVENT_LOGGING "SDL_EVENT_LOGGING" + +/** + * A variable controlling whether raising the window should be done more + * forcefully. + * + * The variable can be set to the following values: + * + * - "0": Honor the OS policy for raising windows. (default) + * - "1": Force the window to be raised, overriding any OS policy. + * + * At present, this is only an issue under MS Windows, which makes it nearly + * impossible to programmatically move a window to the foreground, for + * "security" reasons. See http://stackoverflow.com/a/34414846 for a + * discussion. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_FORCE_RAISEWINDOW "SDL_FORCE_RAISEWINDOW" + +/** + * A variable controlling how 3D acceleration is used to accelerate the SDL + * screen surface. + * + * SDL can try to accelerate the SDL screen surface by using streaming + * textures with a 3D rendering engine. This variable controls whether and how + * this is done. + * + * The variable can be set to the following values: + * + * - "0": Disable 3D acceleration + * - "1": Enable 3D acceleration, using the default renderer. (default) + * - "X": Enable 3D acceleration, using X where X is one of the valid + * rendering drivers. (e.g. "direct3d", "opengl", etc.) + * + * This hint should be set before calling SDL_GetWindowSurface() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_FRAMEBUFFER_ACCELERATION "SDL_FRAMEBUFFER_ACCELERATION" + +/** + * A variable that lets you manually hint extra gamecontroller db entries. + * + * The variable should be newline delimited rows of gamecontroller config + * data, see SDL_gamepad.h + * + * You can update mappings after SDL is initialized with + * SDL_GetGamepadMappingForGUID() and SDL_AddGamepadMapping() + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLERCONFIG "SDL_GAMECONTROLLERCONFIG" + +/** + * A variable that lets you provide a file with extra gamecontroller db + * entries. + * + * The file should contain lines of gamecontroller config data, see + * SDL_gamepad.h + * + * You can update mappings after SDL is initialized with + * SDL_GetGamepadMappingForGUID() and SDL_AddGamepadMapping() + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLERCONFIG_FILE "SDL_GAMECONTROLLERCONFIG_FILE" + +/** + * A variable that overrides the automatic controller type detection. + * + * The variable should be comma separated entries, in the form: VID/PID=type + * + * The VID and PID should be hexadecimal with exactly 4 digits, e.g. 0x00fd + * + * This hint affects what low level protocol is used with the HIDAPI driver. + * + * The variable can be set to the following values: + * + * - "Xbox360" + * - "XboxOne" + * - "PS3" + * - "PS4" + * - "PS5" + * - "SwitchPro" + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLERTYPE "SDL_GAMECONTROLLERTYPE" + +/** + * A variable containing a list of devices to skip when scanning for game + * controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * 0xAAAA/0xBBBB,0xCCCC/0xDDDD + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLER_IGNORE_DEVICES "SDL_GAMECONTROLLER_IGNORE_DEVICES" + +/** + * If set, all devices will be skipped when scanning for game controllers + * except for the ones listed in this variable. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * 0xAAAA/0xBBBB,0xCCCC/0xDDDD + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLER_IGNORE_DEVICES_EXCEPT "SDL_GAMECONTROLLER_IGNORE_DEVICES_EXCEPT" + +/** + * A variable that controls whether the device's built-in accelerometer and + * gyro should be used as sensors for gamepads. + * + * The variable can be set to the following values: + * + * - "0": Sensor fusion is disabled + * - "1": Sensor fusion is enabled for all controllers that lack sensors + * + * Or the variable can be a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * 0xAAAA/0xBBBB,0xCCCC/0xDDDD + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before a gamepad is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLER_SENSOR_FUSION "SDL_GAMECONTROLLER_SENSOR_FUSION" + +/** + * This variable sets the default text of the TextInput window on GDK + * platforms. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_DEFAULT_TEXT "SDL_GDK_TEXTINPUT_DEFAULT_TEXT" + +/** + * This variable sets the description of the TextInput window on GDK + * platforms. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_DESCRIPTION "SDL_GDK_TEXTINPUT_DESCRIPTION" + +/** + * This variable sets the maximum input length of the TextInput window on GDK + * platforms. + * + * The value must be a stringified integer, for example "10" to allow for up + * to 10 characters of text input. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_MAX_LENGTH "SDL_GDK_TEXTINPUT_MAX_LENGTH" + +/** + * This variable sets the input scope of the TextInput window on GDK + * platforms. + * + * Set this hint to change the XGameUiTextEntryInputScope value that will be + * passed to the window creation function. The value must be a stringified + * integer, for example "0" for XGameUiTextEntryInputScope::Default. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_SCOPE "SDL_GDK_TEXTINPUT_SCOPE" + +/** + * This variable sets the title of the TextInput window on GDK platforms. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_TITLE "SDL_GDK_TEXTINPUT_TITLE" + +/** + * A variable to control whether HIDAPI uses libusb for device access. + * + * By default libusb will only be used for a few devices that require direct + * USB access, and this can be controlled with + * SDL_HINT_HIDAPI_LIBUSB_WHITELIST. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI will not use libusb for device access. + * - "1": HIDAPI will use libusb for device access if available. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_LIBUSB "SDL_HIDAPI_LIBUSB" + +/** + * A variable to control whether HIDAPI uses libusb only for whitelisted + * devices. + * + * By default libusb will only be used for a few devices that require direct + * USB access. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI will use libusb for all device access. + * - "1": HIDAPI will use libusb only for whitelisted devices. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_LIBUSB_WHITELIST "SDL_HIDAPI_LIBUSB_WHITELIST" + +/** + * A variable to control whether HIDAPI uses udev for device detection. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI will poll for device changes. + * - "1": HIDAPI will use udev for device detection. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_UDEV "SDL_HIDAPI_UDEV" + +/** + * A variable that specifies a GPU backend to use. + * + * By default, SDL will try all available GPU backends in a reasonable order + * until it finds one that can work, but this hint allows the app or user to + * force a specific target, such as "direct3d12" if, say, your hardware + * supports Vulkan but you want to try using D3D12 instead. + * + * This hint should be set before any GPU functions are called. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GPU_DRIVER "SDL_GPU_DRIVER" + +/** + * A variable to control whether SDL_hid_enumerate() enumerates all HID + * devices or only controllers. + * + * The variable can be set to the following values: + * + * - "0": SDL_hid_enumerate() will enumerate all HID devices. + * - "1": SDL_hid_enumerate() will only enumerate controllers. (default) + * + * By default SDL will only enumerate controllers, to reduce risk of hanging + * or crashing on devices with bad drivers and avoiding macOS keyboard capture + * permission prompts. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_ENUMERATE_ONLY_CONTROLLERS "SDL_HIDAPI_ENUMERATE_ONLY_CONTROLLERS" + +/** + * A variable containing a list of devices to ignore in SDL_hid_enumerate(). + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * For example, to ignore the Shanwan DS3 controller and any Valve controller, + * you might use the string "0x2563/0x0523,0x28de/0x0000" + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_IGNORE_DEVICES "SDL_HIDAPI_IGNORE_DEVICES" + +/** + * A variable describing what IME UI elements the application can display. + * + * By default IME UI is handled using native components by the OS where + * possible, however this can interfere with or not be visible when exclusive + * fullscreen mode is used. + * + * The variable can be set to a comma separated list containing the following + * items: + * + * - "none" or "0": The application can't render any IME elements, and native + * UI should be used. (default) + * - "composition": The application handles SDL_EVENT_TEXT_EDITING events and + * can render the composition text. + * - "candidates": The application handles SDL_EVENT_TEXT_EDITING_CANDIDATES + * and can render the candidate list. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_IME_IMPLEMENTED_UI "SDL_IME_IMPLEMENTED_UI" + +/** + * A variable controlling whether the home indicator bar on iPhone X should be + * hidden. + * + * The variable can be set to the following values: + * + * - "0": The indicator bar is not hidden. (default for windowed applications) + * - "1": The indicator bar is hidden and is shown when the screen is touched + * (useful for movie playback applications). + * - "2": The indicator bar is dim and the first swipe makes it visible and + * the second swipe performs the "home" action. (default for fullscreen + * applications) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_IOS_HIDE_HOME_INDICATOR "SDL_IOS_HIDE_HOME_INDICATOR" + +/** + * A variable that lets you enable joystick (and gamecontroller) events even + * when your app is in the background. + * + * The variable can be set to the following values: + * + * - "0": Disable joystick & gamecontroller input events when the application + * is in the background. (default) + * - "1": Enable joystick & gamecontroller input events when the application + * is in the background. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS "SDL_JOYSTICK_ALLOW_BACKGROUND_EVENTS" + +/** + * A variable containing a list of arcade stick style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ARCADESTICK_DEVICES "SDL_JOYSTICK_ARCADESTICK_DEVICES" + +/** + * A variable containing a list of devices that are not arcade stick style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_ARCADESTICK_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ARCADESTICK_DEVICES_EXCLUDED "SDL_JOYSTICK_ARCADESTICK_DEVICES_EXCLUDED" + +/** + * A variable containing a list of devices that should not be considered + * joysticks. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_BLACKLIST_DEVICES "SDL_JOYSTICK_BLACKLIST_DEVICES" + +/** + * A variable containing a list of devices that should be considered + * joysticks. + * + * This will override SDL_HINT_JOYSTICK_BLACKLIST_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_BLACKLIST_DEVICES_EXCLUDED "SDL_JOYSTICK_BLACKLIST_DEVICES_EXCLUDED" + +/** + * A variable containing a comma separated list of devices to open as + * joysticks. + * + * This variable is currently only used by the Linux joystick driver. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_DEVICE "SDL_JOYSTICK_DEVICE" + +/** + * A variable controlling whether enhanced reports should be used for + * controllers when using the HIDAPI driver. + * + * Enhanced reports allow rumble and effects on Bluetooth PlayStation + * controllers and gyro on Nintendo Switch controllers, but break Windows + * DirectInput for other applications that don't use SDL. + * + * Once enhanced reports are enabled, they can't be disabled on PlayStation + * controllers without power cycling the controller. + * + * The variable can be set to the following values: + * + * - "0": enhanced reports are not enabled. + * - "1": enhanced reports are enabled. (default) + * - "auto": enhanced features are advertised to the application, but SDL + * doesn't change the controller report mode unless the application uses + * them. + * + * This hint can be enabled anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ENHANCED_REPORTS "SDL_JOYSTICK_ENHANCED_REPORTS" + +/** + * A variable containing a list of flightstick style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of @file, in which case the named file + * will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_FLIGHTSTICK_DEVICES "SDL_JOYSTICK_FLIGHTSTICK_DEVICES" + +/** + * A variable containing a list of devices that are not flightstick style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_FLIGHTSTICK_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_FLIGHTSTICK_DEVICES_EXCLUDED "SDL_JOYSTICK_FLIGHTSTICK_DEVICES_EXCLUDED" + +/** + * A variable controlling whether GameInput should be used for controller + * handling on Windows. + * + * The variable can be set to the following values: + * + * - "0": GameInput is not used. + * - "1": GameInput is used. + * + * The default is "1" on GDK platforms, and "0" otherwise. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_GAMEINPUT "SDL_JOYSTICK_GAMEINPUT" + +/** + * A variable containing a list of devices known to have a GameCube form + * factor. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_GAMECUBE_DEVICES "SDL_JOYSTICK_GAMECUBE_DEVICES" + +/** + * A variable containing a list of devices known not to have a GameCube form + * factor. + * + * This will override SDL_HINT_JOYSTICK_GAMECUBE_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_GAMECUBE_DEVICES_EXCLUDED "SDL_JOYSTICK_GAMECUBE_DEVICES_EXCLUDED" + +/** + * A variable controlling whether the HIDAPI joystick drivers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI drivers are not used. + * - "1": HIDAPI drivers are used. (default) + * + * This variable is the default for all drivers, but can be overridden by the + * hints for specific drivers below. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI "SDL_JOYSTICK_HIDAPI" + +/** + * A variable controlling whether Nintendo Switch Joy-Con controllers will be + * combined into a single Pro-like controller when using the HIDAPI driver. + * + * The variable can be set to the following values: + * + * - "0": Left and right Joy-Con controllers will not be combined and each + * will be a mini-gamepad. + * - "1": Left and right Joy-Con controllers will be combined into a single + * controller. (default) + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_COMBINE_JOY_CONS "SDL_JOYSTICK_HIDAPI_COMBINE_JOY_CONS" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo GameCube + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE "SDL_JOYSTICK_HIDAPI_GAMECUBE" + +/** + * A variable controlling whether rumble is used to implement the GameCube + * controller's 3 rumble modes, Stop(0), Rumble(1), and StopHard(2). + * + * This is useful for applications that need full compatibility for things + * like ADSR envelopes. - Stop is implemented by setting low_frequency_rumble + * to 0 and high_frequency_rumble >0 - Rumble is both at any arbitrary value - + * StopHard is implemented by setting both low_frequency_rumble and + * high_frequency_rumble to 0 + * + * The variable can be set to the following values: + * + * - "0": Normal rumble behavior is behavior is used. (default) + * - "1": Proper GameCube controller rumble behavior is used. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE "SDL_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Switch + * Joy-Cons should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_JOY_CONS "SDL_JOYSTICK_HIDAPI_JOY_CONS" + +/** + * A variable controlling whether the Home button LED should be turned on when + * a Nintendo Switch Joy-Con controller is opened. + * + * The variable can be set to the following values: + * + * - "0": home button LED is turned off + * - "1": home button LED is turned on + * + * By default the Home button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Home button LED. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_JOYCON_HOME_LED "SDL_JOYSTICK_HIDAPI_JOYCON_HOME_LED" + +/** + * A variable controlling whether the HIDAPI driver for Amazon Luna + * controllers connected via Bluetooth should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_LUNA "SDL_JOYSTICK_HIDAPI_LUNA" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Online + * classic controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_NINTENDO_CLASSIC "SDL_JOYSTICK_HIDAPI_NINTENDO_CLASSIC" + +/** + * A variable controlling whether the HIDAPI driver for PS3 controllers should + * be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI on macOS, and "0" on + * other platforms. + * + * For official Sony driver (sixaxis.sys) use + * SDL_HINT_JOYSTICK_HIDAPI_PS3_SIXAXIS_DRIVER. See + * https://github.com/ViGEm/DsHidMini for an alternative driver on Windows. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS3 "SDL_JOYSTICK_HIDAPI_PS3" + +/** + * A variable controlling whether the Sony driver (sixaxis.sys) for PS3 + * controllers (Sixaxis/DualShock 3) should be used. + * + * The variable can be set to the following values: + * + * - "0": Sony driver (sixaxis.sys) is not used. + * - "1": Sony driver (sixaxis.sys) is used. + * + * The default value is 0. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS3_SIXAXIS_DRIVER "SDL_JOYSTICK_HIDAPI_PS3_SIXAXIS_DRIVER" + +/** + * A variable controlling whether the HIDAPI driver for PS4 controllers should + * be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS4 "SDL_JOYSTICK_HIDAPI_PS4" + +/** + * A variable controlling the update rate of the PS4 controller over Bluetooth + * when using the HIDAPI driver. + * + * This defaults to 4 ms, to match the behavior over USB, and to be more + * friendly to other Bluetooth devices and older Bluetooth hardware on the + * computer. It can be set to "1" (1000Hz), "2" (500Hz) and "4" (250Hz) + * + * This hint can be set anytime, but only takes effect when extended input + * reports are enabled. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS4_REPORT_INTERVAL "SDL_JOYSTICK_HIDAPI_PS4_REPORT_INTERVAL" + +/** + * A variable controlling whether the HIDAPI driver for PS5 controllers should + * be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS5 "SDL_JOYSTICK_HIDAPI_PS5" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with a PS5 controller. + * + * The variable can be set to the following values: + * + * - "0": player LEDs are not enabled. + * - "1": player LEDs are enabled. (default) + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS5_PLAYER_LED "SDL_JOYSTICK_HIDAPI_PS5_PLAYER_LED" + +/** + * A variable controlling whether the HIDAPI driver for NVIDIA SHIELD + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SHIELD "SDL_JOYSTICK_HIDAPI_SHIELD" + +/** + * A variable controlling whether the HIDAPI driver for Google Stadia + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STADIA "SDL_JOYSTICK_HIDAPI_STADIA" + +/** + * A variable controlling whether the HIDAPI driver for Bluetooth Steam + * Controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. (default) + * - "1": HIDAPI driver is used for Steam Controllers, which requires + * Bluetooth access and may prompt the user for permission on iOS and + * Android. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAM "SDL_JOYSTICK_HIDAPI_STEAM" + +/** + * A variable controlling whether the Steam button LED should be turned on + * when a Steam controller is opened. + * + * The variable can be set to the following values: + * + * - "0": Steam button LED is turned off. + * - "1": Steam button LED is turned on. + * + * By default the Steam button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Steam button LED. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAM_HOME_LED "SDL_JOYSTICK_HIDAPI_STEAM_HOME_LED" + +/** + * A variable controlling whether the HIDAPI driver for the Steam Deck builtin + * controller should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAMDECK "SDL_JOYSTICK_HIDAPI_STEAMDECK" + +/** + * A variable controlling whether the HIDAPI driver for HORI licensed Steam + * controllers should be used. + * + * This variable can be set to the following values: "0" - HIDAPI driver is + * not used "1" - HIDAPI driver is used + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAM_HORI "SDL_JOYSTICK_HIDAPI_STEAM_HORI" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Switch + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SWITCH "SDL_JOYSTICK_HIDAPI_SWITCH" + +/** + * A variable controlling whether the Home button LED should be turned on when + * a Nintendo Switch Pro controller is opened. + * + * The variable can be set to the following values: + * + * - "0": Home button LED is turned off. + * - "1": Home button LED is turned on. + * + * By default the Home button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Home button LED. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SWITCH_HOME_LED "SDL_JOYSTICK_HIDAPI_SWITCH_HOME_LED" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with a Nintendo Switch controller. + * + * The variable can be set to the following values: + * + * - "0": Player LEDs are not enabled. + * - "1": Player LEDs are enabled. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SWITCH_PLAYER_LED "SDL_JOYSTICK_HIDAPI_SWITCH_PLAYER_LED" + +/** + * A variable controlling whether Nintendo Switch Joy-Con controllers will be + * in vertical mode when using the HIDAPI driver. + * + * The variable can be set to the following values: + * + * - "0": Left and right Joy-Con controllers will not be in vertical mode. + * (default) + * - "1": Left and right Joy-Con controllers will be in vertical mode. + * + * This hint should be set before opening a Joy-Con controller. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_VERTICAL_JOY_CONS "SDL_JOYSTICK_HIDAPI_VERTICAL_JOY_CONS" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Wii and Wii U + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * This driver doesn't work with the dolphinbar, so the default is false for + * now. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_WII "SDL_JOYSTICK_HIDAPI_WII" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with a Wii controller. + * + * The variable can be set to the following values: + * + * - "0": Player LEDs are not enabled. + * - "1": Player LEDs are enabled. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_WII_PLAYER_LED "SDL_JOYSTICK_HIDAPI_WII_PLAYER_LED" + +/** + * A variable controlling whether the HIDAPI driver for XBox controllers + * should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is "0" on Windows, otherwise the value of + * SDL_HINT_JOYSTICK_HIDAPI + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX "SDL_JOYSTICK_HIDAPI_XBOX" + +/** + * A variable controlling whether the HIDAPI driver for XBox 360 controllers + * should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360 "SDL_JOYSTICK_HIDAPI_XBOX_360" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with an Xbox 360 controller. + * + * The variable can be set to the following values: + * + * - "0": Player LEDs are not enabled. + * - "1": Player LEDs are enabled. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360_PLAYER_LED "SDL_JOYSTICK_HIDAPI_XBOX_360_PLAYER_LED" + +/** + * A variable controlling whether the HIDAPI driver for XBox 360 wireless + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX_360 + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360_WIRELESS "SDL_JOYSTICK_HIDAPI_XBOX_360_WIRELESS" + +/** + * A variable controlling whether the HIDAPI driver for XBox One controllers + * should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_ONE "SDL_JOYSTICK_HIDAPI_XBOX_ONE" + +/** + * A variable controlling whether the Home button LED should be turned on when + * an Xbox One controller is opened. + * + * The variable can be set to the following values: + * + * - "0": Home button LED is turned off. + * - "1": Home button LED is turned on. + * + * By default the Home button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Home button LED. The default brightness is 0.4. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_ONE_HOME_LED "SDL_JOYSTICK_HIDAPI_XBOX_ONE_HOME_LED" + +/** + * A variable controlling whether IOKit should be used for controller + * handling. + * + * The variable can be set to the following values: + * + * - "0": IOKit is not used. + * - "1": IOKit is used. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_IOKIT "SDL_JOYSTICK_IOKIT" + +/** + * A variable controlling whether to use the classic /dev/input/js* joystick + * interface or the newer /dev/input/event* joystick interface on Linux. + * + * The variable can be set to the following values: + * + * - "0": Use /dev/input/event* (default) + * - "1": Use /dev/input/js* + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_CLASSIC "SDL_JOYSTICK_LINUX_CLASSIC" + +/** + * A variable controlling whether joysticks on Linux adhere to their + * HID-defined deadzones or return unfiltered values. + * + * The variable can be set to the following values: + * + * - "0": Return unfiltered joystick axis values. (default) + * - "1": Return axis values with deadzones taken into account. + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_DEADZONES "SDL_JOYSTICK_LINUX_DEADZONES" + +/** + * A variable controlling whether joysticks on Linux will always treat 'hat' + * axis inputs (ABS_HAT0X - ABS_HAT3Y) as 8-way digital hats without checking + * whether they may be analog. + * + * The variable can be set to the following values: + * + * - "0": Only map hat axis inputs to digital hat outputs if the input axes + * appear to actually be digital. (default) + * - "1": Always handle the input axes numbered ABS_HAT0X to ABS_HAT3Y as + * digital hats. + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_DIGITAL_HATS "SDL_JOYSTICK_LINUX_DIGITAL_HATS" + +/** + * A variable controlling whether digital hats on Linux will apply deadzones + * to their underlying input axes or use unfiltered values. + * + * The variable can be set to the following values: + * + * - "0": Return digital hat values based on unfiltered input axis values. + * - "1": Return digital hat values with deadzones on the input axes taken + * into account. (default) + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_HAT_DEADZONES "SDL_JOYSTICK_LINUX_HAT_DEADZONES" + +/** + * A variable controlling whether GCController should be used for controller + * handling. + * + * The variable can be set to the following values: + * + * - "0": GCController is not used. + * - "1": GCController is used. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_MFI "SDL_JOYSTICK_MFI" + +/** + * A variable controlling whether the RAWINPUT joystick drivers should be used + * for better handling XInput-capable devices. + * + * The variable can be set to the following values: + * + * - "0": RAWINPUT drivers are not used. (default) + * - "1": RAWINPUT drivers are used. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_RAWINPUT "SDL_JOYSTICK_RAWINPUT" + +/** + * A variable controlling whether the RAWINPUT driver should pull correlated + * data from XInput. + * + * The variable can be set to the following values: + * + * - "0": RAWINPUT driver will only use data from raw input APIs. + * - "1": RAWINPUT driver will also pull data from XInput and + * Windows.Gaming.Input, providing better trigger axes, guide button + * presses, and rumble support for Xbox controllers. (default) + * + * This hint should be set before a gamepad is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_RAWINPUT_CORRELATE_XINPUT "SDL_JOYSTICK_RAWINPUT_CORRELATE_XINPUT" + +/** + * A variable controlling whether the ROG Chakram mice should show up as + * joysticks. + * + * The variable can be set to the following values: + * + * - "0": ROG Chakram mice do not show up as joysticks. (default) + * - "1": ROG Chakram mice show up as joysticks. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ROG_CHAKRAM "SDL_JOYSTICK_ROG_CHAKRAM" + +/** + * A variable controlling whether a separate thread should be used for + * handling joystick detection and raw input messages on Windows. + * + * The variable can be set to the following values: + * + * - "0": A separate thread is not used. + * - "1": A separate thread is used for handling raw input messages. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_THREAD "SDL_JOYSTICK_THREAD" + +/** + * A variable containing a list of throttle style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_THROTTLE_DEVICES "SDL_JOYSTICK_THROTTLE_DEVICES" + +/** + * A variable containing a list of devices that are not throttle style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_THROTTLE_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_THROTTLE_DEVICES_EXCLUDED "SDL_JOYSTICK_THROTTLE_DEVICES_EXCLUDED" + +/** + * A variable controlling whether Windows.Gaming.Input should be used for + * controller handling. + * + * The variable can be set to the following values: + * + * - "0": WGI is not used. + * - "1": WGI is used. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_WGI "SDL_JOYSTICK_WGI" + +/** + * A variable containing a list of wheel style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_WHEEL_DEVICES "SDL_JOYSTICK_WHEEL_DEVICES" + +/** + * A variable containing a list of devices that are not wheel style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_WHEEL_DEVICES and the built in device + * list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_WHEEL_DEVICES_EXCLUDED "SDL_JOYSTICK_WHEEL_DEVICES_EXCLUDED" + +/** + * A variable containing a list of devices known to have all axes centered at + * zero. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ZERO_CENTERED_DEVICES "SDL_JOYSTICK_ZERO_CENTERED_DEVICES" + +/** + * A variable containing a list of devices and their desired number of haptic + * (force feedback) enabled axis. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form plus the number of desired axes, e.g. + * + * `0xAAAA/0xBBBB/1,0xCCCC/0xDDDD/3` + * + * This hint supports a "wildcard" device that will set the number of haptic + * axes on all initialized haptic devices which were not defined explicitly in + * this hint. + * + * `0xFFFF/0xFFFF/1` + * + * This hint should be set before a controller is opened. The number of haptic + * axes won't exceed the number of real axes found on the device. + * + * \since This hint is available since SDL 3.2.5. + */ +#define SDL_HINT_JOYSTICK_HAPTIC_AXES "SDL_JOYSTICK_HAPTIC_AXES" + +/** + * A variable that controls keycode representation in keyboard events. + * + * This variable is a comma separated set of options for translating keycodes + * in events: + * + * - "none": Keycode options are cleared, this overrides other options. + * - "hide_numpad": The numpad keysyms will be translated into their + * non-numpad versions based on the current NumLock state. For example, + * SDLK_KP_4 would become SDLK_4 if SDL_KMOD_NUM is set in the event + * modifiers, and SDLK_LEFT if it is unset. + * - "french_numbers": The number row on French keyboards is inverted, so + * pressing the 1 key would yield the keycode SDLK_1, or '1', instead of + * SDLK_AMPERSAND, or '&' + * - "latin_letters": For keyboards using non-Latin letters, such as Russian + * or Thai, the letter keys generate keycodes as though it had an en_US + * layout. e.g. pressing the key associated with SDL_SCANCODE_A on a Russian + * keyboard would yield 'a' instead of a Cyrillic letter. + * + * The default value for this hint is "french_numbers,latin_letters" + * + * Some platforms like Emscripten only provide modified keycodes and the + * options are not used. + * + * These options do not affect the return value of SDL_GetKeyFromScancode() or + * SDL_GetScancodeFromKey(), they just apply to the keycode included in key + * events. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_KEYCODE_OPTIONS "SDL_KEYCODE_OPTIONS" + +/** + * A variable that controls what KMSDRM device to use. + * + * SDL might open something like "/dev/dri/cardNN" to access KMSDRM + * functionality, where "NN" is a device index number. SDL makes a guess at + * the best index to use (usually zero), but the app or user can set this hint + * to a number between 0 and 99 to force selection. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_KMSDRM_DEVICE_INDEX "SDL_KMSDRM_DEVICE_INDEX" + +/** + * A variable that controls whether SDL requires DRM master access in order to + * initialize the KMSDRM video backend. + * + * The DRM subsystem has a concept of a "DRM master" which is a DRM client + * that has the ability to set planes, set cursor, etc. When SDL is DRM + * master, it can draw to the screen using the SDL rendering APIs. Without DRM + * master, SDL is still able to process input and query attributes of attached + * displays, but it cannot change display state or draw to the screen + * directly. + * + * In some cases, it can be useful to have the KMSDRM backend even if it + * cannot be used for rendering. An app may want to use SDL for input + * processing while using another rendering API (such as an MMAL overlay on + * Raspberry Pi) or using its own code to render to DRM overlays that SDL + * doesn't support. + * + * The variable can be set to the following values: + * + * - "0": SDL will allow usage of the KMSDRM backend without DRM master. + * - "1": SDL Will require DRM master to use the KMSDRM backend. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_KMSDRM_REQUIRE_DRM_MASTER "SDL_KMSDRM_REQUIRE_DRM_MASTER" + +/** + * A variable controlling the default SDL log levels. + * + * This variable is a comma separated set of category=level tokens that define + * the default logging levels for SDL applications. + * + * The category can be a numeric category, one of "app", "error", "assert", + * "system", "audio", "video", "render", "input", "test", or `*` for any + * unspecified category. + * + * The level can be a numeric level, one of "verbose", "debug", "info", + * "warn", "error", "critical", or "quiet" to disable that category. + * + * You can omit the category if you want to set the logging level for all + * categories. + * + * If this hint isn't set, the default log levels are equivalent to: + * + * `app=info,assert=warn,test=verbose,*=error` + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_LOGGING "SDL_LOGGING" + +/** + * A variable controlling whether to force the application to become the + * foreground process when launched on macOS. + * + * The variable can be set to the following values: + * + * - "0": The application is brought to the foreground when launched. + * (default) + * - "1": The application may remain in the background when launched. + * + * This hint needs to be set before SDL_Init(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_BACKGROUND_APP "SDL_MAC_BACKGROUND_APP" + +/** + * A variable that determines whether Ctrl+Click should generate a right-click + * event on macOS. + * + * The variable can be set to the following values: + * + * - "0": Ctrl+Click does not generate a right mouse button click event. + * (default) + * - "1": Ctrl+Click generated a right mouse button click event. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK "SDL_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK" + +/** + * A variable controlling whether dispatching OpenGL context updates should + * block the dispatching thread until the main thread finishes processing on + * macOS. + * + * The variable can be set to the following values: + * + * - "0": Dispatching OpenGL context updates will block the dispatching thread + * until the main thread finishes processing. (default) + * - "1": Dispatching OpenGL context updates will allow the dispatching thread + * to continue execution. + * + * Generally you want the default, but if you have OpenGL code in a background + * thread on a Mac, and the main thread hangs because it's waiting for that + * background thread, but that background thread is also hanging because it's + * waiting for the main thread to do an update, this might fix your issue. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_OPENGL_ASYNC_DISPATCH "SDL_MAC_OPENGL_ASYNC_DISPATCH" + +/** + * A variable controlling whether the Option key on macOS should be remapped + * to act as the Alt key. + * + * The variable can be set to the following values: + * + * - "none": The Option key is not remapped to Alt. (default) + * - "only_left": Only the left Option key is remapped to Alt. + * - "only_right": Only the right Option key is remapped to Alt. + * - "both": Both Option keys are remapped to Alt. + * + * This will prevent the triggering of key compositions that rely on the + * Option key, but will still send the Alt modifier for keyboard events. In + * the case that both Alt and Option are pressed, the Option key will be + * ignored. This is particularly useful for applications like terminal + * emulators and graphical user interfaces (GUIs) that rely on Alt key + * functionality for shortcuts or navigation. This does not apply to + * SDL_GetKeyFromScancode and only has an effect if IME is enabled. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_OPTION_AS_ALT "SDL_MAC_OPTION_AS_ALT" + +/** + * A variable controlling whether SDL_EVENT_MOUSE_WHEEL event values will have + * momentum on macOS. + * + * The variable can be set to the following values: + * + * - "0": The mouse wheel events will have no momentum. (default) + * - "1": The mouse wheel events will have momentum. + * + * This hint needs to be set before SDL_Init(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_SCROLL_MOMENTUM "SDL_MAC_SCROLL_MOMENTUM" + +/** + * Request SDL_AppIterate() be called at a specific rate. + * + * If this is set to a number, it represents Hz, so "60" means try to iterate + * 60 times per second. "0" means to iterate as fast as possible. Negative + * values are illegal, but reserved, in case they are useful in a future + * revision of SDL. + * + * There are other strings that have special meaning. If set to "waitevent", + * SDL_AppIterate will not be called until new event(s) have arrived (and been + * processed by SDL_AppEvent). This can be useful for apps that are completely + * idle except in response to input. + * + * On some platforms, or if you are using SDL_main instead of SDL_AppIterate, + * this hint is ignored. When the hint can be used, it is allowed to be + * changed at any time. + * + * This defaults to 0, and specifying NULL for the hint's value will restore + * the default. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAIN_CALLBACK_RATE "SDL_MAIN_CALLBACK_RATE" + +/** + * A variable controlling whether the mouse is captured while mouse buttons + * are pressed. + * + * The variable can be set to the following values: + * + * - "0": The mouse is not captured while mouse buttons are pressed. + * - "1": The mouse is captured while mouse buttons are pressed. + * + * By default the mouse is captured while mouse buttons are pressed so if the + * mouse is dragged outside the window, the application continues to receive + * mouse events until the button is released. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_AUTO_CAPTURE "SDL_MOUSE_AUTO_CAPTURE" + +/** + * A variable setting the double click radius, in pixels. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_DOUBLE_CLICK_RADIUS "SDL_MOUSE_DOUBLE_CLICK_RADIUS" + +/** + * A variable setting the double click time, in milliseconds. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_DOUBLE_CLICK_TIME "SDL_MOUSE_DOUBLE_CLICK_TIME" + +/** + * A variable setting which system cursor to use as the default cursor. + * + * This should be an integer corresponding to the SDL_SystemCursor enum. The + * default value is zero (SDL_SYSTEM_CURSOR_DEFAULT). + * + * This hint needs to be set before SDL_Init(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_DEFAULT_SYSTEM_CURSOR "SDL_MOUSE_DEFAULT_SYSTEM_CURSOR" + +/** + * A variable controlling whether warping a hidden mouse cursor will activate + * relative mouse mode. + * + * When this hint is set, the mouse cursor is hidden, and multiple warps to + * the window center occur within a short time period, SDL will emulate mouse + * warps using relative mouse mode. This can provide smoother and more + * reliable mouse motion for some older games, which continuously calculate + * the distance travelled by the mouse pointer and warp it back to the center + * of the window, rather than using relative mouse motion. + * + * Note that relative mouse mode may have different mouse acceleration + * behavior than pointer warps. + * + * If your application needs to repeatedly warp the hidden mouse cursor at a + * high-frequency for other purposes, it should disable this hint. + * + * The variable can be set to the following values: + * + * - "0": Attempts to warp the mouse will always be made. + * - "1": Some mouse warps will be emulated by forcing relative mouse mode. + * (default) + * + * If not set, this is automatically enabled unless an application uses + * relative mouse mode directly. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_EMULATE_WARP_WITH_RELATIVE "SDL_MOUSE_EMULATE_WARP_WITH_RELATIVE" + +/** + * Allow mouse click events when clicking to focus an SDL window. + * + * The variable can be set to the following values: + * + * - "0": Ignore mouse clicks that activate a window. (default) + * - "1": Generate events for mouse clicks that activate a window. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH "SDL_MOUSE_FOCUS_CLICKTHROUGH" + +/** + * A variable setting the speed scale for mouse motion, in floating point, + * when the mouse is not in relative mode. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_NORMAL_SPEED_SCALE "SDL_MOUSE_NORMAL_SPEED_SCALE" + +/** + * A variable controlling whether relative mouse mode constrains the mouse to + * the center of the window. + * + * Constraining to the center of the window works better for FPS games and + * when the application is running over RDP. Constraining to the whole window + * works better for 2D games and increases the chance that the mouse will be + * in the correct position when using high DPI mice. + * + * The variable can be set to the following values: + * + * - "0": Relative mouse mode constrains the mouse to the window. + * - "1": Relative mouse mode constrains the mouse to the center of the + * window. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_MODE_CENTER "SDL_MOUSE_RELATIVE_MODE_CENTER" + +/** + * A variable setting the scale for mouse motion, in floating point, when the + * mouse is in relative mode. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_SPEED_SCALE "SDL_MOUSE_RELATIVE_SPEED_SCALE" + +/** + * A variable controlling whether the system mouse acceleration curve is used + * for relative mouse motion. + * + * The variable can be set to the following values: + * + * - "0": Relative mouse motion will be unscaled. (default) + * - "1": Relative mouse motion will be scaled using the system mouse + * acceleration curve. + * + * If SDL_HINT_MOUSE_RELATIVE_SPEED_SCALE is set, that will be applied after + * system speed scale. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_SYSTEM_SCALE "SDL_MOUSE_RELATIVE_SYSTEM_SCALE" + +/** + * A variable controlling whether a motion event should be generated for mouse + * warping in relative mode. + * + * The variable can be set to the following values: + * + * - "0": Warping the mouse will not generate a motion event in relative mode + * - "1": Warping the mouse will generate a motion event in relative mode + * + * By default warping the mouse will not generate motion events in relative + * mode. This avoids the application having to filter out large relative + * motion due to warping. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_WARP_MOTION "SDL_MOUSE_RELATIVE_WARP_MOTION" + +/** + * A variable controlling whether the hardware cursor stays visible when + * relative mode is active. + * + * This variable can be set to the following values: + * + * - "0": The cursor will be hidden while relative mode is active (default) + * - "1": The cursor will remain visible while relative mode is active + * + * Note that for systems without raw hardware inputs, relative mode is + * implemented using warping, so the hardware cursor will visibly warp between + * frames if this is enabled on those systems. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_CURSOR_VISIBLE "SDL_MOUSE_RELATIVE_CURSOR_VISIBLE" + +/** + * A variable controlling whether mouse events should generate synthetic touch + * events. + * + * The variable can be set to the following values: + * + * - "0": Mouse events will not generate touch events. (default for desktop + * platforms) + * - "1": Mouse events will generate touch events. (default for mobile + * platforms, such as Android and iOS) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_TOUCH_EVENTS "SDL_MOUSE_TOUCH_EVENTS" + +/** + * A variable controlling whether the keyboard should be muted on the console. + * + * Normally the keyboard is muted while SDL applications are running so that + * keyboard input doesn't show up as key strokes on the console. This hint + * allows you to turn that off for debugging purposes. + * + * The variable can be set to the following values: + * + * - "0": Allow keystrokes to go through to the console. + * - "1": Mute keyboard input so it doesn't show up on the console. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MUTE_CONSOLE_KEYBOARD "SDL_MUTE_CONSOLE_KEYBOARD" + +/** + * Tell SDL not to catch the SIGINT or SIGTERM signals on POSIX platforms. + * + * The variable can be set to the following values: + * + * - "0": SDL will install a SIGINT and SIGTERM handler, and when it catches a + * signal, convert it into an SDL_EVENT_QUIT event. (default) + * - "1": SDL will not install a signal handler at all. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_NO_SIGNAL_HANDLERS "SDL_NO_SIGNAL_HANDLERS" + +/** + * Specify the OpenGL library to load. + * + * This hint should be set before creating an OpenGL window or creating an + * OpenGL context. If this hint isn't set, SDL will choose a reasonable + * default. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_OPENGL_LIBRARY "SDL_OPENGL_LIBRARY" + +/** + * Specify the EGL library to load. + * + * This hint should be set before creating an OpenGL window or creating an + * OpenGL context. This hint is only considered if SDL is using EGL to manage + * OpenGL contexts. If this hint isn't set, SDL will choose a reasonable + * default. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EGL_LIBRARY "SDL_EGL_LIBRARY" + +/** + * A variable controlling what driver to use for OpenGL ES contexts. + * + * On some platforms, currently Windows and X11, OpenGL drivers may support + * creating contexts with an OpenGL ES profile. By default SDL uses these + * profiles, when available, otherwise it attempts to load an OpenGL ES + * library, e.g. that provided by the ANGLE project. This variable controls + * whether SDL follows this default behaviour or will always load an OpenGL ES + * library. + * + * Circumstances where this is useful include - Testing an app with a + * particular OpenGL ES implementation, e.g ANGLE, or emulator, e.g. those + * from ARM, Imagination or Qualcomm. - Resolving OpenGL ES function addresses + * at link time by linking with the OpenGL ES library instead of querying them + * at run time with SDL_GL_GetProcAddress(). + * + * Caution: for an application to work with the default behaviour across + * different OpenGL drivers it must query the OpenGL ES function addresses at + * run time using SDL_GL_GetProcAddress(). + * + * This variable is ignored on most platforms because OpenGL ES is native or + * not supported. + * + * The variable can be set to the following values: + * + * - "0": Use ES profile of OpenGL, if available. (default) + * - "1": Load OpenGL ES library using the default library names. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_OPENGL_ES_DRIVER "SDL_OPENGL_ES_DRIVER" + +/** + * Mechanism to specify openvr_api library location + * + * By default, when using the OpenVR driver, it will search for the API + * library in the current folder. But, if you wish to use a system API you can + * specify that by using this hint. This should be the full or relative path + * to a .dll on Windows or .so on Linux. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_OPENVR_LIBRARY "SDL_OPENVR_LIBRARY" + +/** + * A variable controlling which orientations are allowed on iOS/Android. + * + * In some circumstances it is necessary to be able to explicitly control + * which UI orientations are allowed. + * + * This variable is a space delimited list of the following values: + * + * - "LandscapeLeft" + * - "LandscapeRight" + * - "Portrait" + * - "PortraitUpsideDown" + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ORIENTATIONS "SDL_ORIENTATIONS" + +/** + * A variable controlling the use of a sentinel event when polling the event + * queue. + * + * When polling for events, SDL_PumpEvents is used to gather new events from + * devices. If a device keeps producing new events between calls to + * SDL_PumpEvents, a poll loop will become stuck until the new events stop. + * This is most noticeable when moving a high frequency mouse. + * + * The variable can be set to the following values: + * + * - "0": Disable poll sentinels. + * - "1": Enable poll sentinels. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_POLL_SENTINEL "SDL_POLL_SENTINEL" + +/** + * Override for SDL_GetPreferredLocales(). + * + * If set, this will be favored over anything the OS might report for the + * user's preferred locales. Changing this hint at runtime will not generate a + * SDL_EVENT_LOCALE_CHANGED event (but if you can change the hint, you can + * push your own event, if you want). + * + * The format of this hint is a comma-separated list of language and locale, + * combined with an underscore, as is a common format: "en_GB". Locale is + * optional: "en". So you might have a list like this: "en_GB,jp,es_PT" + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_PREFERRED_LOCALES "SDL_PREFERRED_LOCALES" + +/** + * A variable that decides whether to send SDL_EVENT_QUIT when closing the + * last window. + * + * The variable can be set to the following values: + * + * - "0": SDL will not send an SDL_EVENT_QUIT event when the last window is + * requesting to close. Note that in this case, there are still other + * legitimate reasons one might get an SDL_EVENT_QUIT event: choosing "Quit" + * from the macOS menu bar, sending a SIGINT (ctrl-c) on Unix, etc. + * - "1": SDL will send a quit event when the last window is requesting to + * close. (default) + * + * If there is at least one active system tray icon, SDL_EVENT_QUIT will + * instead be sent when both the last window will be closed and the last tray + * icon will be destroyed. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_QUIT_ON_LAST_WINDOW_CLOSE "SDL_QUIT_ON_LAST_WINDOW_CLOSE" + +/** + * A variable controlling whether the Direct3D device is initialized for + * thread-safe operations. + * + * The variable can be set to the following values: + * + * - "0": Thread-safety is not enabled. (default) + * - "1": Thread-safety is enabled. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_DIRECT3D_THREADSAFE "SDL_RENDER_DIRECT3D_THREADSAFE" + +/** + * A variable controlling whether to enable Direct3D 11+'s Debug Layer. + * + * This variable does not have any effect on the Direct3D 9 based renderer. + * + * The variable can be set to the following values: + * + * - "0": Disable Debug Layer use. (default) + * - "1": Enable Debug Layer use. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_DIRECT3D11_DEBUG "SDL_RENDER_DIRECT3D11_DEBUG" + +/** + * A variable controlling whether to enable Vulkan Validation Layers. + * + * This variable can be set to the following values: + * + * - "0": Disable Validation Layer use + * - "1": Enable Validation Layer use + * + * By default, SDL does not use Vulkan Validation Layers. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_VULKAN_DEBUG "SDL_RENDER_VULKAN_DEBUG" + +/** + * A variable controlling whether to create the GPU device in debug mode. + * + * This variable can be set to the following values: + * + * - "0": Disable debug mode use (default) + * - "1": Enable debug mode use + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_GPU_DEBUG "SDL_RENDER_GPU_DEBUG" + +/** + * A variable controlling whether to prefer a low-power GPU on multi-GPU + * systems. + * + * This variable can be set to the following values: + * + * - "0": Prefer high-performance GPU (default) + * - "1": Prefer low-power GPU + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_GPU_LOW_POWER "SDL_RENDER_GPU_LOW_POWER" + +/** + * A variable specifying which render driver to use. + * + * If the application doesn't pick a specific renderer to use, this variable + * specifies the name of the preferred renderer. If the preferred renderer + * can't be initialized, creating a renderer will fail. + * + * This variable is case insensitive and can be set to the following values: + * + * - "direct3d" + * - "direct3d11" + * - "direct3d12" + * - "opengl" + * - "opengles2" + * - "opengles" + * - "metal" + * - "vulkan" + * - "gpu" + * - "software" + * + * This hint accepts a comma-separated list of driver names, and each will be + * tried in the order listed when creating a renderer until one succeeds or + * all of them fail. + * + * The default varies by platform, but it's the first one in the list that is + * available on the current platform. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_DRIVER "SDL_RENDER_DRIVER" + +/** + * A variable controlling how the 2D render API renders lines. + * + * The variable can be set to the following values: + * + * - "0": Use the default line drawing method (Bresenham's line algorithm) + * - "1": Use the driver point API using Bresenham's line algorithm (correct, + * draws many points) + * - "2": Use the driver line API (occasionally misses line endpoints based on + * hardware driver quirks + * - "3": Use the driver geometry API (correct, draws thicker diagonal lines) + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_LINE_METHOD "SDL_RENDER_LINE_METHOD" + +/** + * A variable controlling whether the Metal render driver select low power + * device over default one. + * + * The variable can be set to the following values: + * + * - "0": Use the preferred OS device. (default) + * - "1": Select a low power device. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_METAL_PREFER_LOW_POWER_DEVICE "SDL_RENDER_METAL_PREFER_LOW_POWER_DEVICE" + +/** + * A variable controlling whether updates to the SDL screen surface should be + * synchronized with the vertical refresh, to avoid tearing. + * + * This hint overrides the application preference when creating a renderer. + * + * The variable can be set to the following values: + * + * - "0": Disable vsync. (default) + * - "1": Enable vsync. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_VSYNC "SDL_RENDER_VSYNC" + +/** + * A variable to control whether the return key on the soft keyboard should + * hide the soft keyboard on Android and iOS. + * + * This hint sets the default value of SDL_PROP_TEXTINPUT_MULTILINE_BOOLEAN. + * + * The variable can be set to the following values: + * + * - "0": The return key will be handled as a key event. (default) + * - "1": The return key will hide the keyboard. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RETURN_KEY_HIDES_IME "SDL_RETURN_KEY_HIDES_IME" + +/** + * A variable containing a list of ROG gamepad capable mice. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_ROG_GAMEPAD_MICE_EXCLUDED + */ +#define SDL_HINT_ROG_GAMEPAD_MICE "SDL_ROG_GAMEPAD_MICE" + +/** + * A variable containing a list of devices that are not ROG gamepad capable + * mice. + * + * This will override SDL_HINT_ROG_GAMEPAD_MICE and the built in device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ROG_GAMEPAD_MICE_EXCLUDED "SDL_ROG_GAMEPAD_MICE_EXCLUDED" + +/** + * A variable controlling which Dispmanx layer to use on a Raspberry PI. + * + * Also known as Z-order. The variable can take a negative or positive value. + * The default is 10000. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RPI_VIDEO_LAYER "SDL_RPI_VIDEO_LAYER" + +/** + * Specify an "activity name" for screensaver inhibition. + * + * Some platforms, notably Linux desktops, list the applications which are + * inhibiting the screensaver or other power-saving features. + * + * This hint lets you specify the "activity name" sent to the OS when + * SDL_DisableScreenSaver() is used (or the screensaver is automatically + * disabled). The contents of this hint are used when the screensaver is + * disabled. You should use a string that describes what your program is doing + * (and, therefore, why the screensaver is disabled). For example, "Playing a + * game" or "Watching a video". + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default: "Playing a game" or something similar. + * + * This hint should be set before calling SDL_DisableScreenSaver() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_SCREENSAVER_INHIBIT_ACTIVITY_NAME "SDL_SCREENSAVER_INHIBIT_ACTIVITY_NAME" + +/** + * A variable controlling whether SDL calls dbus_shutdown() on quit. + * + * This is useful as a debug tool to validate memory leaks, but shouldn't ever + * be set in production applications, as other libraries used by the + * application might use dbus under the hood and this can cause crashes if + * they continue after SDL_Quit(). + * + * The variable can be set to the following values: + * + * - "0": SDL will not call dbus_shutdown() on quit. (default) + * - "1": SDL will call dbus_shutdown() on quit. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_SHUTDOWN_DBUS_ON_QUIT "SDL_SHUTDOWN_DBUS_ON_QUIT" + +/** + * A variable that specifies a backend to use for title storage. + * + * By default, SDL will try all available storage backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target, such as "pc" if, say, you are on Steam but + * want to avoid SteamRemoteStorage for title data. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_STORAGE_TITLE_DRIVER "SDL_STORAGE_TITLE_DRIVER" + +/** + * A variable that specifies a backend to use for user storage. + * + * By default, SDL will try all available storage backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target, such as "pc" if, say, you are on Steam but + * want to avoid SteamRemoteStorage for user data. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_STORAGE_USER_DRIVER "SDL_STORAGE_USER_DRIVER" + +/** + * Specifies whether SDL_THREAD_PRIORITY_TIME_CRITICAL should be treated as + * realtime. + * + * On some platforms, like Linux, a realtime priority thread may be subject to + * restrictions that require special handling by the application. This hint + * exists to let SDL know that the app is prepared to handle said + * restrictions. + * + * On Linux, SDL will apply the following configuration to any thread that + * becomes realtime: + * + * - The SCHED_RESET_ON_FORK bit will be set on the scheduling policy, + * - An RLIMIT_RTTIME budget will be configured to the rtkit specified limit. + * - Exceeding this limit will result in the kernel sending SIGKILL to the + * app, refer to the man pages for more information. + * + * The variable can be set to the following values: + * + * - "0": default platform specific behaviour + * - "1": Force SDL_THREAD_PRIORITY_TIME_CRITICAL to a realtime scheduling + * policy + * + * This hint should be set before calling SDL_SetCurrentThreadPriority() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_THREAD_FORCE_REALTIME_TIME_CRITICAL "SDL_THREAD_FORCE_REALTIME_TIME_CRITICAL" + +/** + * A string specifying additional information to use with + * SDL_SetCurrentThreadPriority. + * + * By default SDL_SetCurrentThreadPriority will make appropriate system + * changes in order to apply a thread priority. For example on systems using + * pthreads the scheduler policy is changed automatically to a policy that + * works well with a given priority. Code which has specific requirements can + * override SDL's default behavior with this hint. + * + * pthread hint values are "current", "other", "fifo" and "rr". Currently no + * other platform hint values are defined but may be in the future. + * + * On Linux, the kernel may send SIGKILL to realtime tasks which exceed the + * distro configured execution budget for rtkit. This budget can be queried + * through RLIMIT_RTTIME after calling SDL_SetCurrentThreadPriority(). + * + * This hint should be set before calling SDL_SetCurrentThreadPriority() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_THREAD_PRIORITY_POLICY "SDL_THREAD_PRIORITY_POLICY" + +/** + * A variable that controls the timer resolution, in milliseconds. + * + * The higher resolution the timer, the more frequently the CPU services timer + * interrupts, and the more precise delays are, but this takes up power and + * CPU time. This hint is only used on Windows. + * + * See this blog post for more information: + * http://randomascii.wordpress.com/2013/07/08/windows-timer-resolution-megawatts-wasted/ + * + * The default value is "1". + * + * If this variable is set to "0", the system timer resolution is not set. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TIMER_RESOLUTION "SDL_TIMER_RESOLUTION" + +/** + * A variable controlling whether touch events should generate synthetic mouse + * events. + * + * The variable can be set to the following values: + * + * - "0": Touch events will not generate mouse events. + * - "1": Touch events will generate mouse events. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TOUCH_MOUSE_EVENTS "SDL_TOUCH_MOUSE_EVENTS" + +/** + * A variable controlling whether trackpads should be treated as touch + * devices. + * + * On macOS (and possibly other platforms in the future), SDL will report + * touches on a trackpad as mouse input, which is generally what users expect + * from this device; however, these are often actually full multitouch-capable + * touch devices, so it might be preferable to some apps to treat them as + * such. + * + * The variable can be set to the following values: + * + * - "0": Trackpad will send mouse events. (default) + * - "1": Trackpad will send touch events. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TRACKPAD_IS_TOUCH_ONLY "SDL_TRACKPAD_IS_TOUCH_ONLY" + +/** + * A variable controlling whether the Android / tvOS remotes should be listed + * as joystick devices, instead of sending keyboard events. + * + * The variable can be set to the following values: + * + * - "0": Remotes send enter/escape/arrow key events. + * - "1": Remotes are available as 2 axis, 2 button joysticks. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TV_REMOTE_AS_JOYSTICK "SDL_TV_REMOTE_AS_JOYSTICK" + +/** + * A variable controlling whether the screensaver is enabled. + * + * The variable can be set to the following values: + * + * - "0": Disable screensaver. (default) + * - "1": Enable screensaver. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_ALLOW_SCREENSAVER "SDL_VIDEO_ALLOW_SCREENSAVER" + +/** + * A comma separated list containing the names of the displays that SDL should + * sort to the front of the display list. + * + * When this hint is set, displays with matching name strings will be + * prioritized in the list of displays, as exposed by calling + * SDL_GetDisplays(), with the first listed becoming the primary display. The + * naming convention can vary depending on the environment, but it is usually + * a connector name (e.g. 'DP-1', 'DP-2', 'HDMI-A-1',etc...). + * + * On Wayland and X11 desktops, the connector names associated with displays + * can typically be found by using the `xrandr` utility. + * + * This hint is currently supported on the following drivers: + * + * - KMSDRM (kmsdrm) + * - Wayland (wayland) + * - X11 (x11) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DISPLAY_PRIORITY "SDL_VIDEO_DISPLAY_PRIORITY" + +/** + * Tell the video driver that we only want a double buffer. + * + * By default, most lowlevel 2D APIs will use a triple buffer scheme that + * wastes no CPU time on waiting for vsync after issuing a flip, but + * introduces a frame of latency. On the other hand, using a double buffer + * scheme instead is recommended for cases where low latency is an important + * factor because we save a whole frame of latency. + * + * We do so by waiting for vsync immediately after issuing a flip, usually + * just after eglSwapBuffers call in the backend's *_SwapWindow function. + * + * This hint is currently supported on the following drivers: + * + * - Raspberry Pi (raspberrypi) + * - Wayland (wayland) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DOUBLE_BUFFER "SDL_VIDEO_DOUBLE_BUFFER" + +/** + * A variable that specifies a video backend to use. + * + * By default, SDL will try all available video backends in a reasonable order + * until it finds one that can work, but this hint allows the app or user to + * force a specific target, such as "x11" if, say, you are on Wayland but want + * to try talking to the X server instead. + * + * This hint accepts a comma-separated list of driver names, and each will be + * tried in the order listed during init, until one succeeds or all of them + * fail. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DRIVER "SDL_VIDEO_DRIVER" + +/** + * A variable controlling whether the dummy video driver saves output frames. + * + * - "0": Video frames are not saved to disk. (default) + * - "1": Video frames are saved to files in the format "SDL_windowX-Y.bmp", + * where X is the window ID, and Y is the frame number. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DUMMY_SAVE_FRAMES "SDL_VIDEO_DUMMY_SAVE_FRAMES" + +/** + * If eglGetPlatformDisplay fails, fall back to calling eglGetDisplay. + * + * The variable can be set to one of the following values: + * + * - "0": Do not fall back to eglGetDisplay. + * - "1": Fall back to eglGetDisplay if eglGetPlatformDisplay fails. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_EGL_ALLOW_GETDISPLAY_FALLBACK "SDL_VIDEO_EGL_ALLOW_GETDISPLAY_FALLBACK" + +/** + * A variable controlling whether the OpenGL context should be created with + * EGL. + * + * The variable can be set to the following values: + * + * - "0": Use platform-specific GL context creation API (GLX, WGL, CGL, etc). + * (default) + * - "1": Use EGL + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_FORCE_EGL "SDL_VIDEO_FORCE_EGL" + +/** + * A variable that specifies the policy for fullscreen Spaces on macOS. + * + * The variable can be set to the following values: + * + * - "0": Disable Spaces support (FULLSCREEN_DESKTOP won't use them and + * SDL_WINDOW_RESIZABLE windows won't offer the "fullscreen" button on their + * titlebars). + * - "1": Enable Spaces support (FULLSCREEN_DESKTOP will use them and + * SDL_WINDOW_RESIZABLE windows will offer the "fullscreen" button on their + * titlebars). (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_MAC_FULLSCREEN_SPACES "SDL_VIDEO_MAC_FULLSCREEN_SPACES" + +/** + * A variable that specifies the menu visibility when a window is fullscreen + * in Spaces on macOS. + * + * The variable can be set to the following values: + * + * - "0": The menu will be hidden when the window is in a fullscreen space, + * and not accessible by moving the mouse to the top of the screen. + * - "1": The menu will be accessible when the window is in a fullscreen + * space. + * - "auto": The menu will be hidden if fullscreen mode was toggled on + * programmatically via `SDL_SetWindowFullscreen()`, and accessible if + * fullscreen was entered via the "fullscreen" button on the window title + * bar. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_MAC_FULLSCREEN_MENU_VISIBILITY "SDL_VIDEO_MAC_FULLSCREEN_MENU_VISIBILITY" + +/** + * A variable controlling whether fullscreen windows are minimized when they + * lose focus. + * + * The variable can be set to the following values: + * + * - "0": Fullscreen windows will not be minimized when they lose focus. + * (default) + * - "1": Fullscreen windows are minimized when they lose focus. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS "SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS" + +/** + * A variable controlling whether the offscreen video driver saves output + * frames. + * + * This only saves frames that are generated using software rendering, not + * accelerated OpenGL rendering. + * + * - "0": Video frames are not saved to disk. (default) + * - "1": Video frames are saved to files in the format "SDL_windowX-Y.bmp", + * where X is the window ID, and Y is the frame number. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_OFFSCREEN_SAVE_FRAMES "SDL_VIDEO_OFFSCREEN_SAVE_FRAMES" + +/** + * A variable controlling whether all window operations will block until + * complete. + * + * Window systems that run asynchronously may not have the results of window + * operations that resize or move the window applied immediately upon the + * return of the requesting function. Setting this hint will cause such + * operations to block after every call until the pending operation has + * completed. Setting this to '1' is the equivalent of calling + * SDL_SyncWindow() after every function call. + * + * Be aware that amount of time spent blocking while waiting for window + * operations to complete can be quite lengthy, as animations may have to + * complete, which can take upwards of multiple seconds in some cases. + * + * The variable can be set to the following values: + * + * - "0": Window operations are non-blocking. (default) + * - "1": Window operations will block until completed. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_SYNC_WINDOW_OPERATIONS "SDL_VIDEO_SYNC_WINDOW_OPERATIONS" + +/** + * A variable controlling whether the libdecor Wayland backend is allowed to + * be used. + * + * libdecor is used over xdg-shell when xdg-decoration protocol is + * unavailable. + * + * The variable can be set to the following values: + * + * - "0": libdecor use is disabled. + * - "1": libdecor use is enabled. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_ALLOW_LIBDECOR "SDL_VIDEO_WAYLAND_ALLOW_LIBDECOR" + +/** + * A variable controlling whether video mode emulation is enabled under + * Wayland. + * + * When this hint is set, a standard set of emulated CVT video modes will be + * exposed for use by the application. If it is disabled, the only modes + * exposed will be the logical desktop size and, in the case of a scaled + * desktop, the native display resolution. + * + * The variable can be set to the following values: + * + * - "0": Video mode emulation is disabled. + * - "1": Video mode emulation is enabled. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_MODE_EMULATION "SDL_VIDEO_WAYLAND_MODE_EMULATION" + +/** + * A variable controlling how modes with a non-native aspect ratio are + * displayed under Wayland. + * + * When this hint is set, the requested scaling will be used when displaying + * fullscreen video modes that don't match the display's native aspect ratio. + * This is contingent on compositor viewport support. + * + * The variable can be set to the following values: + * + * - "aspect" - Video modes will be displayed scaled, in their proper aspect + * ratio, with black bars. + * - "stretch" - Video modes will be scaled to fill the entire display. + * (default) + * - "none" - Video modes will be displayed as 1:1 with no scaling. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_MODE_SCALING "SDL_VIDEO_WAYLAND_MODE_SCALING" + +/** + * A variable controlling whether the libdecor Wayland backend is preferred + * over native decorations. + * + * When this hint is set, libdecor will be used to provide window decorations, + * even if xdg-decoration is available. (Note that, by default, libdecor will + * use xdg-decoration itself if available). + * + * The variable can be set to the following values: + * + * - "0": libdecor is enabled only if server-side decorations are unavailable. + * (default) + * - "1": libdecor is always enabled if available. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_PREFER_LIBDECOR "SDL_VIDEO_WAYLAND_PREFER_LIBDECOR" + +/** + * A variable forcing non-DPI-aware Wayland windows to output at 1:1 scaling. + * + * This must be set before initializing the video subsystem. + * + * When this hint is set, Wayland windows that are not flagged as being + * DPI-aware will be output with scaling designed to force 1:1 pixel mapping. + * + * This is intended to allow legacy applications to be displayed without + * desktop scaling being applied, and has issues with certain display + * configurations, as this forces the window to behave in a way that Wayland + * desktops were not designed to accommodate: + * + * - Rounding errors can result with odd window sizes and/or desktop scales, + * which can cause the window contents to appear slightly blurry. + * - Positioning the window may be imprecise due to unit conversions and + * rounding. + * - The window may be unusably small on scaled desktops. + * - The window may jump in size when moving between displays of different + * scale factors. + * - Displays may appear to overlap when using a multi-monitor setup with + * scaling enabled. + * - Possible loss of cursor precision due to the logical size of the window + * being reduced. + * + * New applications should be designed with proper DPI awareness handling + * instead of enabling this. + * + * The variable can be set to the following values: + * + * - "0": Windows will be scaled normally. + * - "1": Windows will be forced to scale to achieve 1:1 output. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_SCALE_TO_DISPLAY "SDL_VIDEO_WAYLAND_SCALE_TO_DISPLAY" + +/** + * A variable specifying which shader compiler to preload when using the + * Chrome ANGLE binaries. + * + * SDL has EGL and OpenGL ES2 support on Windows via the ANGLE project. It can + * use two different sets of binaries, those compiled by the user from source + * or those provided by the Chrome browser. In the later case, these binaries + * require that SDL loads a DLL providing the shader compiler. + * + * The variable can be set to the following values: + * + * - "d3dcompiler_46.dll" - best for Vista or later. (default) + * - "d3dcompiler_43.dll" - for XP support. + * - "none" - do not load any library, useful if you compiled ANGLE from + * source and included the compiler in your binaries. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WIN_D3DCOMPILER "SDL_VIDEO_WIN_D3DCOMPILER" + +/** + * A variable controlling whether SDL should call XSelectInput() to enable + * input events on X11 windows wrapped by SDL windows. + * + * The variable can be set to the following values: + * + * - "0": Don't call XSelectInput(), assuming the native window code has done + * it already. + * - "1": Call XSelectInput() to enable input events. (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.10. + */ +#define SDL_HINT_VIDEO_X11_EXTERNAL_WINDOW_INPUT "SDL_VIDEO_X11_EXTERNAL_WINDOW_INPUT" + +/** + * A variable controlling whether the X11 _NET_WM_BYPASS_COMPOSITOR hint + * should be used. + * + * The variable can be set to the following values: + * + * - "0": Disable _NET_WM_BYPASS_COMPOSITOR. + * - "1": Enable _NET_WM_BYPASS_COMPOSITOR. (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR "SDL_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR" + +/** + * A variable controlling whether the X11 _NET_WM_PING protocol should be + * supported. + * + * By default SDL will use _NET_WM_PING, but for applications that know they + * will not always be able to respond to ping requests in a timely manner they + * can turn it off to avoid the window manager thinking the app is hung. + * + * The variable can be set to the following values: + * + * - "0": Disable _NET_WM_PING. + * - "1": Enable _NET_WM_PING. (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_NET_WM_PING "SDL_VIDEO_X11_NET_WM_PING" + +/** + * A variable controlling whether SDL uses DirectColor visuals. + * + * The variable can be set to the following values: + * + * - "0": Disable DirectColor visuals. + * - "1": Enable DirectColor visuals. (default) + * + * This hint should be set before initializing the video subsystem. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_NODIRECTCOLOR "SDL_VIDEO_X11_NODIRECTCOLOR" + +/** + * A variable forcing the content scaling factor for X11 displays. + * + * The variable can be set to a floating point value in the range 1.0-10.0f + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_SCALING_FACTOR "SDL_VIDEO_X11_SCALING_FACTOR" + +/** + * A variable forcing the visual ID used for X11 display modes. + * + * This hint should be set before initializing the video subsystem. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_VISUALID "SDL_VIDEO_X11_VISUALID" + +/** + * A variable forcing the visual ID chosen for new X11 windows. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_WINDOW_VISUALID "SDL_VIDEO_X11_WINDOW_VISUALID" + +/** + * A variable controlling whether the X11 XRandR extension should be used. + * + * The variable can be set to the following values: + * + * - "0": Disable XRandR. + * - "1": Enable XRandR. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_XRANDR "SDL_VIDEO_X11_XRANDR" + +/** + * A variable controlling whether touch should be enabled on the back panel of + * the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "0": Disable touch on the back panel. + * - "1": Enable touch on the back panel. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_ENABLE_BACK_TOUCH "SDL_VITA_ENABLE_BACK_TOUCH" + +/** + * A variable controlling whether touch should be enabled on the front panel + * of the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "0": Disable touch on the front panel. + * - "1": Enable touch on the front panel. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_ENABLE_FRONT_TOUCH "SDL_VITA_ENABLE_FRONT_TOUCH" + +/** + * A variable controlling the module path on the PlayStation Vita. + * + * This hint defaults to "app0:module" + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_MODULE_PATH "SDL_VITA_MODULE_PATH" + +/** + * A variable controlling whether to perform PVR initialization on the + * PlayStation Vita. + * + * - "0": Skip PVR initialization. + * - "1": Perform the normal PVR initialization. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_PVR_INIT "SDL_VITA_PVR_INIT" + +/** + * A variable overriding the resolution reported on the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "544": 544p (default) + * - "720": 725p for PSTV + * - "1080": 1088i for PSTV + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_RESOLUTION "SDL_VITA_RESOLUTION" + +/** + * A variable controlling whether OpenGL should be used instead of OpenGL ES + * on the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "0": Use OpenGL ES. (default) + * - "1": Use OpenGL. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_PVR_OPENGL "SDL_VITA_PVR_OPENGL" + +/** + * A variable controlling which touchpad should generate synthetic mouse + * events. + * + * The variable can be set to the following values: + * + * - "0": Only front touchpad should generate mouse events. (default) + * - "1": Only back touchpad should generate mouse events. + * - "2": Both touchpads should generate mouse events. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_TOUCH_MOUSE_DEVICE "SDL_VITA_TOUCH_MOUSE_DEVICE" + +/** + * A variable overriding the display index used in SDL_Vulkan_CreateSurface() + * + * The display index starts at 0, which is the default. + * + * This hint should be set before calling SDL_Vulkan_CreateSurface() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VULKAN_DISPLAY "SDL_VULKAN_DISPLAY" + +/** + * Specify the Vulkan library to load. + * + * This hint should be set before creating a Vulkan window or calling + * SDL_Vulkan_LoadLibrary(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VULKAN_LIBRARY "SDL_VULKAN_LIBRARY" + +/** + * A variable controlling how the fact chunk affects the loading of a WAVE + * file. + * + * The fact chunk stores information about the number of samples of a WAVE + * file. The Standards Update from Microsoft notes that this value can be used + * to 'determine the length of the data in seconds'. This is especially useful + * for compressed formats (for which this is a mandatory chunk) if they + * produce multiple sample frames per block and truncating the block is not + * allowed. The fact chunk can exactly specify how many sample frames there + * should be in this case. + * + * Unfortunately, most application seem to ignore the fact chunk and so SDL + * ignores it by default as well. + * + * The variable can be set to the following values: + * + * - "truncate" - Use the number of samples to truncate the wave data if the + * fact chunk is present and valid. + * - "strict" - Like "truncate", but raise an error if the fact chunk is + * invalid, not present for non-PCM formats, or if the data chunk doesn't + * have that many samples. + * - "ignorezero" - Like "truncate", but ignore fact chunk if the number of + * samples is zero. + * - "ignore" - Ignore fact chunk entirely. (default) + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_FACT_CHUNK "SDL_WAVE_FACT_CHUNK" + +/** + * A variable controlling the maximum number of chunks in a WAVE file. + * + * This sets an upper bound on the number of chunks in a WAVE file to avoid + * wasting time on malformed or corrupt WAVE files. This defaults to "10000". + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_CHUNK_LIMIT "SDL_WAVE_CHUNK_LIMIT" + +/** + * A variable controlling how the size of the RIFF chunk affects the loading + * of a WAVE file. + * + * The size of the RIFF chunk (which includes all the sub-chunks of the WAVE + * file) is not always reliable. In case the size is wrong, it's possible to + * just ignore it and step through the chunks until a fixed limit is reached. + * + * Note that files that have trailing data unrelated to the WAVE file or + * corrupt files may slow down the loading process without a reliable + * boundary. By default, SDL stops after 10000 chunks to prevent wasting time. + * Use SDL_HINT_WAVE_CHUNK_LIMIT to adjust this value. + * + * The variable can be set to the following values: + * + * - "force" - Always use the RIFF chunk size as a boundary for the chunk + * search. + * - "ignorezero" - Like "force", but a zero size searches up to 4 GiB. + * (default) + * - "ignore" - Ignore the RIFF chunk size and always search up to 4 GiB. + * - "maximum" - Search for chunks until the end of file. (not recommended) + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_RIFF_CHUNK_SIZE "SDL_WAVE_RIFF_CHUNK_SIZE" + +/** + * A variable controlling how a truncated WAVE file is handled. + * + * A WAVE file is considered truncated if any of the chunks are incomplete or + * the data chunk size is not a multiple of the block size. By default, SDL + * decodes until the first incomplete block, as most applications seem to do. + * + * The variable can be set to the following values: + * + * - "verystrict" - Raise an error if the file is truncated. + * - "strict" - Like "verystrict", but the size of the RIFF chunk is ignored. + * - "dropframe" - Decode until the first incomplete sample frame. + * - "dropblock" - Decode until the first incomplete block. (default) + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_TRUNCATION "SDL_WAVE_TRUNCATION" + +/** + * A variable controlling whether the window is activated when the + * SDL_RaiseWindow function is called. + * + * The variable can be set to the following values: + * + * - "0": The window is not activated when the SDL_RaiseWindow function is + * called. + * - "1": The window is activated when the SDL_RaiseWindow function is called. + * (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_ACTIVATE_WHEN_RAISED "SDL_WINDOW_ACTIVATE_WHEN_RAISED" + +/** + * A variable controlling whether the window is activated when the + * SDL_ShowWindow function is called. + * + * The variable can be set to the following values: + * + * - "0": The window is not activated when the SDL_ShowWindow function is + * called. + * - "1": The window is activated when the SDL_ShowWindow function is called. + * (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_ACTIVATE_WHEN_SHOWN "SDL_WINDOW_ACTIVATE_WHEN_SHOWN" + +/** + * If set to "0" then never set the top-most flag on an SDL Window even if the + * application requests it. + * + * This is a debugging aid for developers and not expected to be used by end + * users. + * + * The variable can be set to the following values: + * + * - "0": don't allow topmost + * - "1": allow topmost (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_ALLOW_TOPMOST "SDL_WINDOW_ALLOW_TOPMOST" + +/** + * A variable controlling whether the window frame and title bar are + * interactive when the cursor is hidden. + * + * The variable can be set to the following values: + * + * - "0": The window frame is not interactive when the cursor is hidden (no + * move, resize, etc). + * - "1": The window frame is interactive when the cursor is hidden. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN "SDL_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN" + +/** + * A variable controlling whether SDL generates window-close events for Alt+F4 + * on Windows. + * + * The variable can be set to the following values: + * + * - "0": SDL will only do normal key handling for Alt+F4. + * - "1": SDL will generate a window-close event when it sees Alt+F4. + * (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_CLOSE_ON_ALT_F4 "SDL_WINDOWS_CLOSE_ON_ALT_F4" + +/** + * A variable controlling whether menus can be opened with their keyboard + * shortcut (Alt+mnemonic). + * + * If the mnemonics are enabled, then menus can be opened by pressing the Alt + * key and the corresponding mnemonic (for example, Alt+F opens the File + * menu). However, in case an invalid mnemonic is pressed, Windows makes an + * audible beep to convey that nothing happened. This is true even if the + * window has no menu at all! + * + * Because most SDL applications don't have menus, and some want to use the + * Alt key for other purposes, SDL disables mnemonics (and the beeping) by + * default. + * + * Note: This also affects keyboard events: with mnemonics enabled, when a + * menu is opened from the keyboard, you will not receive a KEYUP event for + * the mnemonic key, and *might* not receive one for Alt. + * + * The variable can be set to the following values: + * + * - "0": Alt+mnemonic does nothing, no beeping. (default) + * - "1": Alt+mnemonic opens menus, invalid mnemonics produce a beep. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_ENABLE_MENU_MNEMONICS "SDL_WINDOWS_ENABLE_MENU_MNEMONICS" + +/** + * A variable controlling whether the windows message loop is processed by + * SDL. + * + * The variable can be set to the following values: + * + * - "0": The window message loop is not run. + * - "1": The window message loop is processed in SDL_PumpEvents(). (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP "SDL_WINDOWS_ENABLE_MESSAGELOOP" + +/** + * A variable controlling whether GameInput is used for raw keyboard and mouse + * on Windows. + * + * The variable can be set to the following values: + * + * - "0": GameInput is not used for raw keyboard and mouse events. + * - "1": GameInput is used for raw keyboard and mouse events, if available. + * (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_GAMEINPUT "SDL_WINDOWS_GAMEINPUT" + +/** + * A variable controlling whether raw keyboard events are used on Windows. + * + * The variable can be set to the following values: + * + * - "0": The Windows message loop is used for keyboard events. (default) + * - "1": Low latency raw keyboard events are used. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_RAW_KEYBOARD "SDL_WINDOWS_RAW_KEYBOARD" + +/** + * A variable controlling whether SDL uses Kernel Semaphores on Windows. + * + * Kernel Semaphores are inter-process and require a context switch on every + * interaction. On Windows 8 and newer, the WaitOnAddress API is available. + * Using that and atomics to implement semaphores increases performance. SDL + * will fall back to Kernel Objects on older OS versions or if forced to by + * this hint. + * + * The variable can be set to the following values: + * + * - "0": Use Atomics and WaitOnAddress API when available, otherwise fall + * back to Kernel Objects. (default) + * - "1": Force the use of Kernel Objects in all cases. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_FORCE_SEMAPHORE_KERNEL "SDL_WINDOWS_FORCE_SEMAPHORE_KERNEL" + +/** + * A variable to specify custom icon resource id from RC file on Windows + * platform. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_INTRESOURCE_ICON "SDL_WINDOWS_INTRESOURCE_ICON" + +/** + * A variable to specify custom icon resource id from RC file on Windows + * platform. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_INTRESOURCE_ICON_SMALL "SDL_WINDOWS_INTRESOURCE_ICON_SMALL" + +/** + * A variable controlling whether SDL uses the D3D9Ex API introduced in + * Windows Vista, instead of normal D3D9. + * + * Direct3D 9Ex contains changes to state management that can eliminate device + * loss errors during scenarios like Alt+Tab or UAC prompts. D3D9Ex may + * require some changes to your application to cope with the new behavior, so + * this is disabled by default. + * + * For more information on Direct3D 9Ex, see: + * + * - https://docs.microsoft.com/en-us/windows/win32/direct3darticles/graphics-apis-in-windows-vista#direct3d-9ex + * - https://docs.microsoft.com/en-us/windows/win32/direct3darticles/direct3d-9ex-improvements + * + * The variable can be set to the following values: + * + * - "0": Use the original Direct3D 9 API. (default) + * - "1": Use the Direct3D 9Ex API on Vista and later (and fall back if D3D9Ex + * is unavailable) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_USE_D3D9EX "SDL_WINDOWS_USE_D3D9EX" + +/** + * A variable controlling whether SDL will clear the window contents when the + * WM_ERASEBKGND message is received. + * + * The variable can be set to the following values: + * + * - "0"/"never": Never clear the window. + * - "1"/"initial": Clear the window when the first WM_ERASEBKGND event fires. + * (default) + * - "2"/"always": Clear the window on every WM_ERASEBKGND event. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_ERASE_BACKGROUND_MODE "SDL_WINDOWS_ERASE_BACKGROUND_MODE" + +/** + * A variable controlling whether X11 windows are marked as override-redirect. + * + * If set, this _might_ increase framerate at the expense of the desktop not + * working as expected. Override-redirect windows aren't noticed by the window + * manager at all. + * + * You should probably only use this for fullscreen windows, and you probably + * shouldn't even use it for that. But it's here if you want to try! + * + * The variable can be set to the following values: + * + * - "0": Do not mark the window as override-redirect. (default) + * - "1": Mark the window as override-redirect. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_X11_FORCE_OVERRIDE_REDIRECT "SDL_X11_FORCE_OVERRIDE_REDIRECT" + +/** + * A variable specifying the type of an X11 window. + * + * During SDL_CreateWindow, SDL uses the _NET_WM_WINDOW_TYPE X11 property to + * report to the window manager the type of window it wants to create. This + * might be set to various things if SDL_WINDOW_TOOLTIP or + * SDL_WINDOW_POPUP_MENU, etc, were specified. For "normal" windows that + * haven't set a specific type, this hint can be used to specify a custom + * type. For example, a dock window might set this to + * "_NET_WM_WINDOW_TYPE_DOCK". + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_X11_WINDOW_TYPE "SDL_X11_WINDOW_TYPE" + +/** + * Specify the XCB library to load for the X11 driver. + * + * The default is platform-specific, often "libX11-xcb.so.1". + * + * This hint should be set before initializing the video subsystem. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_X11_XCB_LIBRARY "SDL_X11_XCB_LIBRARY" + +/** + * A variable controlling whether XInput should be used for controller + * handling. + * + * The variable can be set to the following values: + * + * - "0": XInput is not enabled. + * - "1": XInput is enabled. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_XINPUT_ENABLED "SDL_XINPUT_ENABLED" + +/** + * A variable controlling response to SDL_assert failures. + * + * The variable can be set to the following case-sensitive values: + * + * - "abort": Program terminates immediately. + * - "break": Program triggers a debugger breakpoint. + * - "retry": Program reruns the SDL_assert's test again. + * - "ignore": Program continues on, ignoring this assertion failure this + * time. + * - "always_ignore": Program continues on, ignoring this assertion failure + * for the rest of the run. + * + * Note that SDL_SetAssertionHandler offers a programmatic means to deal with + * assertion failures through a callback, and this hint is largely intended to + * be used via environment variables by end users and automated tools. + * + * This hint should be set before an assertion failure is triggered and can be + * changed at any time. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ASSERT "SDL_ASSERT" + +/** + * A variable controlling whether pen events should generate synthetic mouse + * events. + * + * The variable can be set to the following values: + * + * - "0": Pen events will not generate mouse events. + * - "1": Pen events will generate mouse events. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_PEN_MOUSE_EVENTS "SDL_PEN_MOUSE_EVENTS" + +/** + * A variable controlling whether pen events should generate synthetic touch + * events. + * + * The variable can be set to the following values: + * + * - "0": Pen events will not generate touch events. + * - "1": Pen events will generate touch events. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_PEN_TOUCH_EVENTS "SDL_PEN_TOUCH_EVENTS" + + +/** + * An enumeration of hint priorities. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_HintPriority +{ + SDL_HINT_DEFAULT, + SDL_HINT_NORMAL, + SDL_HINT_OVERRIDE +} SDL_HintPriority; + +/** + * Set a hint with a specific priority. + * + * The priority controls the behavior when setting a hint that already has a + * value. Hints will replace existing hints of their priority and lower. + * Environment variables are considered to have override priority. + * + * \param name the hint to set. + * \param value the value of the hint variable. + * \param priority the SDL_HintPriority level for the hint. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHint + * \sa SDL_ResetHint + * \sa SDL_SetHint + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHintWithPriority(const char *name, const char *value, SDL_HintPriority priority); + +/** + * Set a hint with normal priority. + * + * Hints will not be set if there is an existing override hint or environment + * variable that takes precedence. You can use SDL_SetHintWithPriority() to + * set the hint with override priority instead. + * + * \param name the hint to set. + * \param value the value of the hint variable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHint + * \sa SDL_ResetHint + * \sa SDL_SetHintWithPriority + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHint(const char *name, const char *value); + +/** + * Reset a hint to the default value. + * + * This will reset a hint to the value of the environment variable, or NULL if + * the environment isn't set. Callbacks will be called normally with this + * change. + * + * \param name the hint to set. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetHint + * \sa SDL_ResetHints + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResetHint(const char *name); + +/** + * Reset all hints to the default values. + * + * This will reset all hints to the value of the associated environment + * variable, or NULL if the environment isn't set. Callbacks will be called + * normally with this change. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResetHint + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetHints(void); + +/** + * Get the value of a hint. + * + * \param name the hint to query. + * \returns the string value of a hint or NULL if the hint isn't set. + * + * \threadsafety It is safe to call this function from any thread, however the + * return value only remains valid until the hint is changed; if + * another thread might do so, the app should supply locks + * and/or make a copy of the string. Note that using a hint + * callback instead is always thread-safe, as SDL holds a lock + * on the thread subsystem during the callback. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetHint + * \sa SDL_SetHintWithPriority + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetHint(const char *name); + +/** + * Get the boolean value of a hint variable. + * + * \param name the name of the hint to get the boolean value from. + * \param default_value the value to return if the hint does not exist. + * \returns the boolean value of a hint or the provided default value if the + * hint does not exist. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHint + * \sa SDL_SetHint + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetHintBoolean(const char *name, bool default_value); + +/** + * A callback used to send notifications of hint value changes. + * + * This is called an initial time during SDL_AddHintCallback with the hint's + * current value, and then again each time the hint's value changes. + * + * \param userdata what was passed as `userdata` to SDL_AddHintCallback(). + * \param name what was passed as `name` to SDL_AddHintCallback(). + * \param oldValue the previous hint value. + * \param newValue the new value hint is to be set to. + * + * \threadsafety This callback is fired from whatever thread is setting a new + * hint value. SDL holds a lock on the hint subsystem when + * calling this callback. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_AddHintCallback + */ +typedef void(SDLCALL *SDL_HintCallback)(void *userdata, const char *name, const char *oldValue, const char *newValue); + +/** + * Add a function to watch a particular hint. + * + * The callback function is called _during_ this function, to provide it an + * initial value, and again each time the hint's value changes. + * + * \param name the hint to watch. + * \param callback An SDL_HintCallback function that will be called when the + * hint value changes. + * \param userdata a pointer to pass to the callback function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveHintCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddHintCallback(const char *name, SDL_HintCallback callback, void *userdata); + +/** + * Remove a function watching a particular hint. + * + * \param name the hint being watched. + * \param callback an SDL_HintCallback function that will be called when the + * hint value changes. + * \param userdata a pointer being passed to the callback function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddHintCallback + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveHintCallback(const char *name, + SDL_HintCallback callback, + void *userdata); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_hints_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_init.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_init.h new file mode 100644 index 0000000..27ebe4b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_init.h @@ -0,0 +1,497 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryInit + * + * All SDL programs need to initialize the library before starting to work + * with it. + * + * Almost everything can simply call SDL_Init() near startup, with a handful + * of flags to specify subsystems to touch. These are here to make sure SDL + * does not even attempt to touch low-level pieces of the operating system + * that you don't intend to use. For example, you might be using SDL for video + * and input but chose an external library for audio, and in this case you + * would just need to leave off the `SDL_INIT_AUDIO` flag to make sure that + * external library has complete control. + * + * Most apps, when terminating, should call SDL_Quit(). This will clean up + * (nearly) everything that SDL might have allocated, and crucially, it'll + * make sure that the display's resolution is back to what the user expects if + * you had previously changed it for your game. + * + * SDL3 apps are strongly encouraged to call SDL_SetAppMetadata() at startup + * to fill in details about the program. This is completely optional, but it + * helps in small ways (we can provide an About dialog box for the macOS menu, + * we can name the app in the system's audio mixer, etc). Those that want to + * provide a _lot_ of information should look at the more-detailed + * SDL_SetAppMetadataProperty(). + */ + +#ifndef SDL_init_h_ +#define SDL_init_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* As of version 0.5, SDL is loaded dynamically into the application */ + +/** + * Initialization flags for SDL_Init and/or SDL_InitSubSystem + * + * These are the flags which may be passed to SDL_Init(). You should specify + * the subsystems which you will be using in your application. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_Quit + * \sa SDL_InitSubSystem + * \sa SDL_QuitSubSystem + * \sa SDL_WasInit + */ +typedef Uint32 SDL_InitFlags; + +#define SDL_INIT_AUDIO 0x00000010u /**< `SDL_INIT_AUDIO` implies `SDL_INIT_EVENTS` */ +#define SDL_INIT_VIDEO 0x00000020u /**< `SDL_INIT_VIDEO` implies `SDL_INIT_EVENTS`, should be initialized on the main thread */ +#define SDL_INIT_JOYSTICK 0x00000200u /**< `SDL_INIT_JOYSTICK` implies `SDL_INIT_EVENTS` */ +#define SDL_INIT_HAPTIC 0x00001000u +#define SDL_INIT_GAMEPAD 0x00002000u /**< `SDL_INIT_GAMEPAD` implies `SDL_INIT_JOYSTICK` */ +#define SDL_INIT_EVENTS 0x00004000u +#define SDL_INIT_SENSOR 0x00008000u /**< `SDL_INIT_SENSOR` implies `SDL_INIT_EVENTS` */ +#define SDL_INIT_CAMERA 0x00010000u /**< `SDL_INIT_CAMERA` implies `SDL_INIT_EVENTS` */ + +/** + * Return values for optional main callbacks. + * + * Returning SDL_APP_SUCCESS or SDL_APP_FAILURE from SDL_AppInit, + * SDL_AppEvent, or SDL_AppIterate will terminate the program and report + * success/failure to the operating system. What that means is + * platform-dependent. On Unix, for example, on success, the process error + * code will be zero, and on failure it will be 1. This interface doesn't + * allow you to return specific exit codes, just whether there was an error + * generally or not. + * + * Returning SDL_APP_CONTINUE from these functions will let the app continue + * to run. + * + * See + * [Main callbacks in SDL3](https://wiki.libsdl.org/SDL3/README/main-functions#main-callbacks-in-sdl3) + * for complete details. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AppResult +{ + SDL_APP_CONTINUE, /**< Value that requests that the app continue from the main callbacks. */ + SDL_APP_SUCCESS, /**< Value that requests termination with success from the main callbacks. */ + SDL_APP_FAILURE /**< Value that requests termination with error from the main callbacks. */ +} SDL_AppResult; + +/** + * Function pointer typedef for SDL_AppInit. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppInit directly. + * + * \param appstate a place where the app can optionally store a pointer for + * future use. + * \param argc the standard ANSI C main's argc; number of elements in `argv`. + * \param argv the standard ANSI C main's argv; array of command line + * arguments. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AppResult (SDLCALL *SDL_AppInit_func)(void **appstate, int argc, char *argv[]); + +/** + * Function pointer typedef for SDL_AppIterate. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppIterate directly. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AppResult (SDLCALL *SDL_AppIterate_func)(void *appstate); + +/** + * Function pointer typedef for SDL_AppEvent. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppEvent directly. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param event the new event for the app to examine. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AppResult (SDLCALL *SDL_AppEvent_func)(void *appstate, SDL_Event *event); + +/** + * Function pointer typedef for SDL_AppQuit. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppEvent directly. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param result the result code that terminated the app (success or failure). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void (SDLCALL *SDL_AppQuit_func)(void *appstate, SDL_AppResult result); + + +/** + * Initialize the SDL library. + * + * SDL_Init() simply forwards to calling SDL_InitSubSystem(). Therefore, the + * two may be used interchangeably. Though for readability of your code + * SDL_InitSubSystem() might be preferred. + * + * The file I/O (for example: SDL_IOFromFile) and threading (SDL_CreateThread) + * subsystems are initialized by default. Message boxes + * (SDL_ShowSimpleMessageBox) also attempt to work without initializing the + * video subsystem, in hopes of being useful in showing an error dialog when + * SDL_Init fails. You must specifically initialize other subsystems if you + * use them in your application. + * + * Logging (such as SDL_Log) works without initialization, too. + * + * `flags` may be any of the following OR'd together: + * + * - `SDL_INIT_AUDIO`: audio subsystem; automatically initializes the events + * subsystem + * - `SDL_INIT_VIDEO`: video subsystem; automatically initializes the events + * subsystem, should be initialized on the main thread. + * - `SDL_INIT_JOYSTICK`: joystick subsystem; automatically initializes the + * events subsystem + * - `SDL_INIT_HAPTIC`: haptic (force feedback) subsystem + * - `SDL_INIT_GAMEPAD`: gamepad subsystem; automatically initializes the + * joystick subsystem + * - `SDL_INIT_EVENTS`: events subsystem + * - `SDL_INIT_SENSOR`: sensor subsystem; automatically initializes the events + * subsystem + * - `SDL_INIT_CAMERA`: camera subsystem; automatically initializes the events + * subsystem + * + * Subsystem initialization is ref-counted, you must call SDL_QuitSubSystem() + * for each SDL_InitSubSystem() to correctly shutdown a subsystem manually (or + * call SDL_Quit() to force shutdown). If a subsystem is already loaded then + * this call will increase the ref-count and return. + * + * Consider reporting some basic metadata about your application before + * calling SDL_Init, using either SDL_SetAppMetadata() or + * SDL_SetAppMetadataProperty(). + * + * \param flags subsystem initialization flags. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAppMetadata + * \sa SDL_SetAppMetadataProperty + * \sa SDL_InitSubSystem + * \sa SDL_Quit + * \sa SDL_SetMainReady + * \sa SDL_WasInit + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Init(SDL_InitFlags flags); + +/** + * Compatibility function to initialize the SDL library. + * + * This function and SDL_Init() are interchangeable. + * + * \param flags any of the flags used by SDL_Init(); see SDL_Init for details. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_Quit + * \sa SDL_QuitSubSystem + */ +extern SDL_DECLSPEC bool SDLCALL SDL_InitSubSystem(SDL_InitFlags flags); + +/** + * Shut down specific SDL subsystems. + * + * You still need to call SDL_Quit() even if you close all open subsystems + * with SDL_QuitSubSystem(). + * + * \param flags any of the flags used by SDL_Init(); see SDL_Init for details. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InitSubSystem + * \sa SDL_Quit + */ +extern SDL_DECLSPEC void SDLCALL SDL_QuitSubSystem(SDL_InitFlags flags); + +/** + * Get a mask of the specified subsystems which are currently initialized. + * + * \param flags any of the flags used by SDL_Init(); see SDL_Init for details. + * \returns a mask of all initialized subsystems if `flags` is 0, otherwise it + * returns the initialization status of the specified subsystems. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_InitSubSystem + */ +extern SDL_DECLSPEC SDL_InitFlags SDLCALL SDL_WasInit(SDL_InitFlags flags); + +/** + * Clean up all initialized subsystems. + * + * You should call this function even if you have already shutdown each + * initialized subsystem with SDL_QuitSubSystem(). It is safe to call this + * function even in the case of errors in initialization. + * + * You can use this function with atexit() to ensure that it is run when your + * application is shutdown, but it is not wise to do this from a library or + * other dynamically loaded code. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_QuitSubSystem + */ +extern SDL_DECLSPEC void SDLCALL SDL_Quit(void); + +/** + * Return whether this is the main thread. + * + * On Apple platforms, the main thread is the thread that runs your program's + * main() entry point. On other platforms, the main thread is the one that + * calls SDL_Init(SDL_INIT_VIDEO), which should usually be the one that runs + * your program's main() entry point. If you are using the main callbacks, + * SDL_AppInit(), SDL_AppIterate(), and SDL_AppQuit() are all called on the + * main thread. + * + * \returns true if this thread is the main thread, or false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RunOnMainThread + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsMainThread(void); + +/** + * Callback run on the main thread. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_RunOnMainThread + */ +typedef void (SDLCALL *SDL_MainThreadCallback)(void *userdata); + +/** + * Call a function on the main thread during event processing. + * + * If this is called on the main thread, the callback is executed immediately. + * If this is called on another thread, this callback is queued for execution + * on the main thread during event processing. + * + * Be careful of deadlocks when using this functionality. You should not have + * the main thread wait for the current thread while this function is being + * called with `wait_complete` true. + * + * \param callback the callback to call on the main thread. + * \param userdata a pointer that is passed to `callback`. + * \param wait_complete true to wait for the callback to complete, false to + * return immediately. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IsMainThread + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RunOnMainThread(SDL_MainThreadCallback callback, void *userdata, bool wait_complete); + +/** + * Specify basic metadata about your app. + * + * You can optionally provide metadata about your app to SDL. This is not + * required, but strongly encouraged. + * + * There are several locations where SDL can make use of metadata (an "About" + * box in the macOS menu bar, the name of the app can be shown on some audio + * mixers, etc). Any piece of metadata can be left as NULL, if a specific + * detail doesn't make sense for the app. + * + * This function should be called as early as possible, before SDL_Init. + * Multiple calls to this function are allowed, but various state might not + * change once it has been set up with a previous call to this function. + * + * Passing a NULL removes any previous metadata. + * + * This is a simplified interface for the most important information. You can + * supply significantly more detailed metadata with + * SDL_SetAppMetadataProperty(). + * + * \param appname The name of the application ("My Game 2: Bad Guy's + * Revenge!"). + * \param appversion The version of the application ("1.0.0beta5" or a git + * hash, or whatever makes sense). + * \param appidentifier A unique string in reverse-domain format that + * identifies this app ("com.example.mygame2"). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAppMetadataProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAppMetadata(const char *appname, const char *appversion, const char *appidentifier); + +/** + * Specify metadata about your app through a set of properties. + * + * You can optionally provide metadata about your app to SDL. This is not + * required, but strongly encouraged. + * + * There are several locations where SDL can make use of metadata (an "About" + * box in the macOS menu bar, the name of the app can be shown on some audio + * mixers, etc). Any piece of metadata can be left out, if a specific detail + * doesn't make sense for the app. + * + * This function should be called as early as possible, before SDL_Init. + * Multiple calls to this function are allowed, but various state might not + * change once it has been set up with a previous call to this function. + * + * Once set, this metadata can be read using SDL_GetAppMetadataProperty(). + * + * These are the supported properties: + * + * - `SDL_PROP_APP_METADATA_NAME_STRING`: The human-readable name of the + * application, like "My Game 2: Bad Guy's Revenge!". This will show up + * anywhere the OS shows the name of the application separately from window + * titles, such as volume control applets, etc. This defaults to "SDL + * Application". + * - `SDL_PROP_APP_METADATA_VERSION_STRING`: The version of the app that is + * running; there are no rules on format, so "1.0.3beta2" and "April 22nd, + * 2024" and a git hash are all valid options. This has no default. + * - `SDL_PROP_APP_METADATA_IDENTIFIER_STRING`: A unique string that + * identifies this app. This must be in reverse-domain format, like + * "com.example.mygame2". This string is used by desktop compositors to + * identify and group windows together, as well as match applications with + * associated desktop settings and icons. If you plan to package your + * application in a container such as Flatpak, the app ID should match the + * name of your Flatpak container as well. This has no default. + * - `SDL_PROP_APP_METADATA_CREATOR_STRING`: The human-readable name of the + * creator/developer/maker of this app, like "MojoWorkshop, LLC" + * - `SDL_PROP_APP_METADATA_COPYRIGHT_STRING`: The human-readable copyright + * notice, like "Copyright (c) 2024 MojoWorkshop, LLC" or whatnot. Keep this + * to one line, don't paste a copy of a whole software license in here. This + * has no default. + * - `SDL_PROP_APP_METADATA_URL_STRING`: A URL to the app on the web. Maybe a + * product page, or a storefront, or even a GitHub repository, for user's + * further information This has no default. + * - `SDL_PROP_APP_METADATA_TYPE_STRING`: The type of application this is. + * Currently this string can be "game" for a video game, "mediaplayer" for a + * media player, or generically "application" if nothing else applies. + * Future versions of SDL might add new types. This defaults to + * "application". + * + * \param name the name of the metadata property to set. + * \param value the value of the property, or NULL to remove that property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAppMetadataProperty + * \sa SDL_SetAppMetadata + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAppMetadataProperty(const char *name, const char *value); + +#define SDL_PROP_APP_METADATA_NAME_STRING "SDL.app.metadata.name" +#define SDL_PROP_APP_METADATA_VERSION_STRING "SDL.app.metadata.version" +#define SDL_PROP_APP_METADATA_IDENTIFIER_STRING "SDL.app.metadata.identifier" +#define SDL_PROP_APP_METADATA_CREATOR_STRING "SDL.app.metadata.creator" +#define SDL_PROP_APP_METADATA_COPYRIGHT_STRING "SDL.app.metadata.copyright" +#define SDL_PROP_APP_METADATA_URL_STRING "SDL.app.metadata.url" +#define SDL_PROP_APP_METADATA_TYPE_STRING "SDL.app.metadata.type" + +/** + * Get metadata about your app. + * + * This returns metadata previously set using SDL_SetAppMetadata() or + * SDL_SetAppMetadataProperty(). See SDL_SetAppMetadataProperty() for the list + * of available properties and their meanings. + * + * \param name the name of the metadata property to get. + * \returns the current value of the metadata property, or the default if it + * is not set, NULL for properties with no default. + * + * \threadsafety It is safe to call this function from any thread, although + * the string returned is not protected and could potentially be + * freed if you call SDL_SetAppMetadataProperty() to set that + * property from another thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAppMetadata + * \sa SDL_SetAppMetadataProperty + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAppMetadataProperty(const char *name); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_init_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_intrin.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_intrin.h new file mode 100644 index 0000000..bac6d7a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_intrin.h @@ -0,0 +1,407 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Intrinsics */ + +/** + * # CategoryIntrinsics + * + * SDL does some preprocessor gymnastics to determine if any CPU-specific + * compiler intrinsics are available, as this is not necessarily an easy thing + * to calculate, and sometimes depends on quirks of a system, versions of + * build tools, and other external forces. + * + * Apps including SDL's headers will be able to check consistent preprocessor + * definitions to decide if it's safe to use compiler intrinsics for a + * specific CPU architecture. This check only tells you that the compiler is + * capable of using those intrinsics; at runtime, you should still check if + * they are available on the current system with the + * [CPU info functions](https://wiki.libsdl.org/SDL3/CategoryCPUInfo) + * , such as SDL_HasSSE() or SDL_HasNEON(). Otherwise, the process might crash + * for using an unsupported CPU instruction. + * + * SDL only sets preprocessor defines for CPU intrinsics if they are + * supported, so apps should check with `#ifdef` and not `#if`. + * + * SDL will also include the appropriate instruction-set-specific support + * headers, so if SDL decides to define SDL_SSE2_INTRINSICS, it will also + * `#include ` as well. + */ + +#ifndef SDL_intrin_h_ +#define SDL_intrin_h_ + +#include + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Defined if (and only if) the compiler supports Loongarch LSX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LASX_INTRINSICS + */ +#define SDL_LSX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Loongarch LSX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LASX_INTRINSICS + */ +#define SDL_LASX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports ARM NEON intrinsics. + * + * If this macro is defined, SDL will have already included `` + * ``, ``, and ``, as appropriate. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NEON_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports PowerPC Altivec intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ALTIVEC_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel MMX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + */ +#define SDL_MMX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE2 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE2_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE3 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE3_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE4.1 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE4_1_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE4.2 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + */ +#define SDL_SSE4_2_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel AVX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AVX2_INTRINSICS + * \sa SDL_AVX512F_INTRINSICS + */ +#define SDL_AVX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel AVX2 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AVX_INTRINSICS + * \sa SDL_AVX512F_INTRINSICS + */ +#define SDL_AVX2_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel AVX-512F intrinsics. + * + * AVX-512F is also sometimes referred to as "AVX-512 Foundation." + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AVX_INTRINSICS + * \sa SDL_AVX2_INTRINSICS + */ +#define SDL_AVX512F_INTRINSICS 1 +#endif + +/* Need to do this here because intrin.h has C++ code in it */ +/* Visual Studio 2005 has a bug where intrin.h conflicts with winnt.h */ +#if defined(_MSC_VER) && (_MSC_VER >= 1500) && (defined(_M_IX86) || defined(_M_X64)) +#ifdef __clang__ +/* As of Clang 11, '_m_prefetchw' is conflicting with the winnt.h's version, + so we define the needed '_m_prefetch' here as a pseudo-header, until the issue is fixed. */ +#ifndef __PRFCHWINTRIN_H +#define __PRFCHWINTRIN_H +static __inline__ void __attribute__((__always_inline__, __nodebug__)) +_m_prefetch(void *__P) +{ + __builtin_prefetch (__P, 0, 3 /* _MM_HINT_T0 */); +} +#endif /* __PRFCHWINTRIN_H */ +#endif /* __clang__ */ +#include + +#elif defined(__MINGW64_VERSION_MAJOR) +#include +#if defined(__ARM_NEON) && !defined(SDL_DISABLE_NEON) +# define SDL_NEON_INTRINSICS 1 +# include +#endif + +#else +/* altivec.h redefining bool causes a number of problems, see bugs 3993 and 4392, so you need to explicitly define SDL_ENABLE_ALTIVEC to have it included. */ +#if defined(__ALTIVEC__) && defined(SDL_ENABLE_ALTIVEC) +#define SDL_ALTIVEC_INTRINSICS 1 +#include +#endif +#ifndef SDL_DISABLE_NEON +# ifdef __ARM_NEON +# define SDL_NEON_INTRINSICS 1 +# include +# elif defined(SDL_PLATFORM_WINDOWS) +/* Visual Studio doesn't define __ARM_ARCH, but _M_ARM (if set, always 7), and _M_ARM64 (if set, always 1). */ +# ifdef _M_ARM +# define SDL_NEON_INTRINSICS 1 +# include +# include +# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */ +# endif +# if defined (_M_ARM64) +# define SDL_NEON_INTRINSICS 1 +# include +# include +# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */ +# define __ARM_ARCH 8 +# endif +# endif +#endif +#endif /* compiler version */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION +/** + * A macro to decide if the compiler supports `__attribute__((target))`. + * + * Even though this is defined in SDL's public headers, it is generally not + * used directly by apps. Apps should probably just use SDL_TARGETING + * directly, instead. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_TARGETING + */ +#define SDL_HAS_TARGET_ATTRIBS + +#elif defined(__clang__) && defined(__has_attribute) +# if __has_attribute(target) +# define SDL_HAS_TARGET_ATTRIBS +# endif +#elif defined(__GNUC__) && (__GNUC__ + (__GNUC_MINOR__ >= 9) > 4) /* gcc >= 4.9 */ +# define SDL_HAS_TARGET_ATTRIBS +#elif defined(__ICC) && __ICC >= 1600 +# define SDL_HAS_TARGET_ATTRIBS +#endif + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to tag a function as targeting a specific CPU architecture. + * + * This is a hint to the compiler that a function should be built with support + * for a CPU instruction set that might be different than the rest of the + * program. + * + * The particulars of this are explained in the GCC documentation: + * + * https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-target-function-attribute + * + * An example of using this feature is to turn on SSE2 support for a specific + * function, even if the rest of the source code is not compiled to use SSE2 + * code: + * + * ```c + * #ifdef SDL_SSE2_INTRINSICS + * static void SDL_TARGETING("sse2") DoSomethingWithSSE2(char *x) { + * ...use SSE2 intrinsic functions, etc... + * } + * #endif + * + * // later... + * #ifdef SDL_SSE2_INTRINSICS + * if (SDL_HasSSE2()) { + * DoSomethingWithSSE2(str); + * } + * #endif + * ``` + * + * The application is, on a whole, built without SSE2 instructions, so it will + * run on Intel machines that don't support SSE2. But then at runtime, it + * checks if the system supports the instructions, and then calls into a + * function that uses SSE2 opcodes. The ifdefs make sure that this code isn't + * used on platforms that don't have SSE2 at all. + * + * On compilers without target support, this is defined to nothing. + * + * This symbol is used by SDL internally, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TARGETING(x) __attribute__((target(x))) + +#elif defined(SDL_HAS_TARGET_ATTRIBS) +# define SDL_TARGETING(x) __attribute__((target(x))) +#else +# define SDL_TARGETING(x) +#endif + +#ifdef __loongarch64 +# ifndef SDL_DISABLE_LSX +# define SDL_LSX_INTRINSICS 1 +# include +# endif +# ifndef SDL_DISABLE_LASX +# define SDL_LASX_INTRINSICS 1 +# include +# endif +#endif + +#if defined(__x86_64__) || defined(_M_X64) || defined(__i386__) || defined(_M_IX86) +# if ((defined(_MSC_VER) && !defined(_M_X64)) || defined(__MMX__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_MMX) +# define SDL_MMX_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE) +# define SDL_SSE_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE2__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE2) +# define SDL_SSE2_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE3__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE3) +# define SDL_SSE3_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE4_1__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE4_1) +# define SDL_SSE4_1_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE4_2__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE4_2) +# define SDL_SSE4_2_INTRINSICS 1 +# include +# endif +# if defined(__clang__) && (defined(_MSC_VER) || defined(__SCE__)) && !defined(__AVX__) && !defined(SDL_DISABLE_AVX) +# define SDL_DISABLE_AVX /* see https://reviews.llvm.org/D20291 and https://reviews.llvm.org/D79194 */ +# endif +# if (defined(_MSC_VER) || defined(__AVX__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(_M_ARM64EC) && !defined(SDL_DISABLE_AVX) +# define SDL_AVX_INTRINSICS 1 +# include +# endif +# if defined(__clang__) && (defined(_MSC_VER) || defined(__SCE__)) && !defined(__AVX2__) && !defined(SDL_DISABLE_AVX2) +# define SDL_DISABLE_AVX2 /* see https://reviews.llvm.org/D20291 and https://reviews.llvm.org/D79194 */ +# endif +# if (defined(_MSC_VER) || defined(__AVX2__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(_M_ARM64EC) && !defined(SDL_DISABLE_AVX2) +# define SDL_AVX2_INTRINSICS 1 +# include +# endif +# if defined(__clang__) && (defined(_MSC_VER) || defined(__SCE__)) && !defined(__AVX512F__) && !defined(SDL_DISABLE_AVX512F) +# define SDL_DISABLE_AVX512F /* see https://reviews.llvm.org/D20291 and https://reviews.llvm.org/D79194 */ +# endif +# if (defined(_MSC_VER) || defined(__AVX512F__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(_M_ARM64EC) && !defined(SDL_DISABLE_AVX512F) +# define SDL_AVX512F_INTRINSICS 1 +# include +# endif +#endif /* defined(__x86_64__) || defined(_M_X64) || defined(__i386__) || defined(_M_IX86) */ + +#endif /* SDL_intrin_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_iostream.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_iostream.h new file mode 100644 index 0000000..4ca1609 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_iostream.h @@ -0,0 +1,1354 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: IOStream */ + +/** + * # CategoryIOStream + * + * SDL provides an abstract interface for reading and writing data streams. It + * offers implementations for files, memory, etc, and the app can provide + * their own implementations, too. + * + * SDL_IOStream is not related to the standard C++ iostream class, other than + * both are abstract interfaces to read/write data. + */ + +#ifndef SDL_iostream_h_ +#define SDL_iostream_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SDL_IOStream status, set by a read or write operation. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_IOStatus +{ + SDL_IO_STATUS_READY, /**< Everything is ready (no errors and not EOF). */ + SDL_IO_STATUS_ERROR, /**< Read or write I/O error */ + SDL_IO_STATUS_EOF, /**< End of file */ + SDL_IO_STATUS_NOT_READY, /**< Non blocking I/O, not ready */ + SDL_IO_STATUS_READONLY, /**< Tried to write a read-only buffer */ + SDL_IO_STATUS_WRITEONLY /**< Tried to read a write-only buffer */ +} SDL_IOStatus; + +/** + * Possible `whence` values for SDL_IOStream seeking. + * + * These map to the same "whence" concept that `fseek` or `lseek` use in the + * standard C runtime. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_IOWhence +{ + SDL_IO_SEEK_SET, /**< Seek from the beginning of data */ + SDL_IO_SEEK_CUR, /**< Seek relative to current read point */ + SDL_IO_SEEK_END /**< Seek relative to the end of data */ +} SDL_IOWhence; + +/** + * The function pointers that drive an SDL_IOStream. + * + * Applications can provide this struct to SDL_OpenIO() to create their own + * implementation of SDL_IOStream. This is not necessarily required, as SDL + * already offers several common types of I/O streams, via functions like + * SDL_IOFromFile() and SDL_IOFromMem(). + * + * This structure should be initialized using SDL_INIT_INTERFACE() + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_INIT_INTERFACE + */ +typedef struct SDL_IOStreamInterface +{ + /* The version of this interface */ + Uint32 version; + + /** + * Return the number of bytes in this SDL_IOStream + * + * \return the total size of the data stream, or -1 on error. + */ + Sint64 (SDLCALL *size)(void *userdata); + + /** + * Seek to `offset` relative to `whence`, one of stdio's whence values: + * SDL_IO_SEEK_SET, SDL_IO_SEEK_CUR, SDL_IO_SEEK_END + * + * \return the final offset in the data stream, or -1 on error. + */ + Sint64 (SDLCALL *seek)(void *userdata, Sint64 offset, SDL_IOWhence whence); + + /** + * Read up to `size` bytes from the data stream to the area pointed + * at by `ptr`. + * + * On an incomplete read, you should set `*status` to a value from the + * SDL_IOStatus enum. You do not have to explicitly set this on + * a complete, successful read. + * + * \return the number of bytes read + */ + size_t (SDLCALL *read)(void *userdata, void *ptr, size_t size, SDL_IOStatus *status); + + /** + * Write exactly `size` bytes from the area pointed at by `ptr` + * to data stream. + * + * On an incomplete write, you should set `*status` to a value from the + * SDL_IOStatus enum. You do not have to explicitly set this on + * a complete, successful write. + * + * \return the number of bytes written + */ + size_t (SDLCALL *write)(void *userdata, const void *ptr, size_t size, SDL_IOStatus *status); + + /** + * If the stream is buffering, make sure the data is written out. + * + * On failure, you should set `*status` to a value from the + * SDL_IOStatus enum. You do not have to explicitly set this on + * a successful flush. + * + * \return true if successful or false on write error when flushing data. + */ + bool (SDLCALL *flush)(void *userdata, SDL_IOStatus *status); + + /** + * Close and free any allocated resources. + * + * This does not guarantee file writes will sync to physical media; they + * can be in the system's file cache, waiting to go to disk. + * + * The SDL_IOStream is still destroyed even if this fails, so clean up anything + * even if flushing buffers, etc, returns an error. + * + * \return true if successful or false on write error when flushing data. + */ + bool (SDLCALL *close)(void *userdata); + +} SDL_IOStreamInterface; + +/* Check the size of SDL_IOStreamInterface + * + * If this assert fails, either the compiler is padding to an unexpected size, + * or the interface has been updated and this should be updated to match and + * the code using this interface should be updated to handle the old version. + */ +SDL_COMPILE_TIME_ASSERT(SDL_IOStreamInterface_SIZE, + (sizeof(void *) == 4 && sizeof(SDL_IOStreamInterface) == 28) || + (sizeof(void *) == 8 && sizeof(SDL_IOStreamInterface) == 56)); + +/** + * The read/write operation structure. + * + * This operates as an opaque handle. There are several APIs to create various + * types of I/O streams, or an app can supply an SDL_IOStreamInterface to + * SDL_OpenIO() to provide their own stream implementation behind this + * struct's abstract interface. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_IOStream SDL_IOStream; + + +/** + * \name IOFrom functions + * + * Functions to create SDL_IOStream structures from various data streams. + */ +/* @{ */ + +/** + * Use this function to create a new SDL_IOStream structure for reading from + * and/or writing to a named file. + * + * The `mode` string is treated roughly the same as in a call to the C + * library's fopen(), even if SDL doesn't happen to use fopen() behind the + * scenes. + * + * Available `mode` strings: + * + * - "r": Open a file for reading. The file must exist. + * - "w": Create an empty file for writing. If a file with the same name + * already exists its content is erased and the file is treated as a new + * empty file. + * - "a": Append to a file. Writing operations append data at the end of the + * file. The file is created if it does not exist. + * - "r+": Open a file for update both reading and writing. The file must + * exist. + * - "w+": Create an empty file for both reading and writing. If a file with + * the same name already exists its content is erased and the file is + * treated as a new empty file. + * - "a+": Open a file for reading and appending. All writing operations are + * performed at the end of the file, protecting the previous content to be + * overwritten. You can reposition (fseek, rewind) the internal pointer to + * anywhere in the file for reading, but writing operations will move it + * back to the end of file. The file is created if it does not exist. + * + * **NOTE**: In order to open a file as a binary file, a "b" character has to + * be included in the `mode` string. This additional "b" character can either + * be appended at the end of the string (thus making the following compound + * modes: "rb", "wb", "ab", "r+b", "w+b", "a+b") or be inserted between the + * letter and the "+" sign for the mixed modes ("rb+", "wb+", "ab+"). + * Additional characters may follow the sequence, although they should have no + * effect. For example, "t" is sometimes appended to make explicit the file is + * a text file. + * + * This function supports Unicode filenames, but they must be encoded in UTF-8 + * format, regardless of the underlying operating system. + * + * In Android, SDL_IOFromFile() can be used to open content:// URIs. As a + * fallback, SDL_IOFromFile() will transparently open a matching filename in + * the app's `assets`. + * + * Closing the SDL_IOStream will close SDL's internal file handle. + * + * The following properties may be set at creation time by SDL: + * + * - `SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER`: a pointer, that can be cast + * to a win32 `HANDLE`, that this SDL_IOStream is using to access the + * filesystem. If the program isn't running on Windows, or SDL used some + * other method to access the filesystem, this property will not be set. + * - `SDL_PROP_IOSTREAM_STDIO_FILE_POINTER`: a pointer, that can be cast to a + * stdio `FILE *`, that this SDL_IOStream is using to access the filesystem. + * If SDL used some other method to access the filesystem, this property + * will not be set. PLEASE NOTE that if SDL is using a different C runtime + * than your app, trying to use this pointer will almost certainly result in + * a crash! This is mostly a problem on Windows; make sure you build SDL and + * your app with the same compiler and settings to avoid it. + * - `SDL_PROP_IOSTREAM_FILE_DESCRIPTOR_NUMBER`: a file descriptor that this + * SDL_IOStream is using to access the filesystem. + * - `SDL_PROP_IOSTREAM_ANDROID_AASSET_POINTER`: a pointer, that can be cast + * to an Android NDK `AAsset *`, that this SDL_IOStream is using to access + * the filesystem. If SDL used some other method to access the filesystem, + * this property will not be set. + * + * \param file a UTF-8 string representing the filename to open. + * \param mode an ASCII string representing the mode to be used for opening + * the file. + * \returns a pointer to the SDL_IOStream structure that is created or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseIO + * \sa SDL_FlushIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromFile(const char *file, const char *mode); + +#define SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER "SDL.iostream.windows.handle" +#define SDL_PROP_IOSTREAM_STDIO_FILE_POINTER "SDL.iostream.stdio.file" +#define SDL_PROP_IOSTREAM_FILE_DESCRIPTOR_NUMBER "SDL.iostream.file_descriptor" +#define SDL_PROP_IOSTREAM_ANDROID_AASSET_POINTER "SDL.iostream.android.aasset" + +/** + * Use this function to prepare a read-write memory buffer for use with + * SDL_IOStream. + * + * This function sets up an SDL_IOStream struct based on a memory area of a + * certain size, for both read and write access. + * + * This memory buffer is not copied by the SDL_IOStream; the pointer you + * provide must remain valid until you close the stream. Closing the stream + * will not free the original buffer. + * + * If you need to make sure the SDL_IOStream never writes to the memory + * buffer, you should use SDL_IOFromConstMem() with a read-only buffer of + * memory instead. + * + * The following properties will be set at creation time by SDL: + * + * - `SDL_PROP_IOSTREAM_MEMORY_POINTER`: this will be the `mem` parameter that + * was passed to this function. + * - `SDL_PROP_IOSTREAM_MEMORY_SIZE_NUMBER`: this will be the `size` parameter + * that was passed to this function. + * + * \param mem a pointer to a buffer to feed an SDL_IOStream stream. + * \param size the buffer size, in bytes. + * \returns a pointer to a new SDL_IOStream structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOFromConstMem + * \sa SDL_CloseIO + * \sa SDL_FlushIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromMem(void *mem, size_t size); + +#define SDL_PROP_IOSTREAM_MEMORY_POINTER "SDL.iostream.memory.base" +#define SDL_PROP_IOSTREAM_MEMORY_SIZE_NUMBER "SDL.iostream.memory.size" + +/** + * Use this function to prepare a read-only memory buffer for use with + * SDL_IOStream. + * + * This function sets up an SDL_IOStream struct based on a memory area of a + * certain size. It assumes the memory area is not writable. + * + * Attempting to write to this SDL_IOStream stream will report an error + * without writing to the memory buffer. + * + * This memory buffer is not copied by the SDL_IOStream; the pointer you + * provide must remain valid until you close the stream. Closing the stream + * will not free the original buffer. + * + * If you need to write to a memory buffer, you should use SDL_IOFromMem() + * with a writable buffer of memory instead. + * + * The following properties will be set at creation time by SDL: + * + * - `SDL_PROP_IOSTREAM_MEMORY_POINTER`: this will be the `mem` parameter that + * was passed to this function. + * - `SDL_PROP_IOSTREAM_MEMORY_SIZE_NUMBER`: this will be the `size` parameter + * that was passed to this function. + * + * \param mem a pointer to a read-only buffer to feed an SDL_IOStream stream. + * \param size the buffer size, in bytes. + * \returns a pointer to a new SDL_IOStream structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOFromMem + * \sa SDL_CloseIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromConstMem(const void *mem, size_t size); + +/** + * Use this function to create an SDL_IOStream that is backed by dynamically + * allocated memory. + * + * This supports the following properties to provide access to the memory and + * control over allocations: + * + * - `SDL_PROP_IOSTREAM_DYNAMIC_MEMORY_POINTER`: a pointer to the internal + * memory of the stream. This can be set to NULL to transfer ownership of + * the memory to the application, which should free the memory with + * SDL_free(). If this is done, the next operation on the stream must be + * SDL_CloseIO(). + * - `SDL_PROP_IOSTREAM_DYNAMIC_CHUNKSIZE_NUMBER`: memory will be allocated in + * multiples of this size, defaulting to 1024. + * + * \returns a pointer to a new SDL_IOStream structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromDynamicMem(void); + +#define SDL_PROP_IOSTREAM_DYNAMIC_MEMORY_POINTER "SDL.iostream.dynamic.memory" +#define SDL_PROP_IOSTREAM_DYNAMIC_CHUNKSIZE_NUMBER "SDL.iostream.dynamic.chunksize" + +/* @} *//* IOFrom functions */ + + +/** + * Create a custom SDL_IOStream. + * + * Applications do not need to use this function unless they are providing + * their own SDL_IOStream implementation. If you just need an SDL_IOStream to + * read/write a common data source, you should use the built-in + * implementations in SDL, like SDL_IOFromFile() or SDL_IOFromMem(), etc. + * + * This function makes a copy of `iface` and the caller does not need to keep + * it around after this call. + * + * \param iface the interface that implements this SDL_IOStream, initialized + * using SDL_INIT_INTERFACE(). + * \param userdata the pointer that will be passed to the interface functions. + * \returns a pointer to the allocated memory on success or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseIO + * \sa SDL_INIT_INTERFACE + * \sa SDL_IOFromConstMem + * \sa SDL_IOFromFile + * \sa SDL_IOFromMem + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_OpenIO(const SDL_IOStreamInterface *iface, void *userdata); + +/** + * Close and free an allocated SDL_IOStream structure. + * + * SDL_CloseIO() closes and cleans up the SDL_IOStream stream. It releases any + * resources used by the stream and frees the SDL_IOStream itself. This + * returns true on success, or false if the stream failed to flush to its + * output (e.g. to disk). + * + * Note that if this fails to flush the stream for any reason, this function + * reports an error, but the SDL_IOStream is still invalid once this function + * returns. + * + * This call flushes any buffered writes to the operating system, but there + * are no guarantees that those writes have gone to physical media; they might + * be in the OS's file cache, waiting to go to disk later. If it's absolutely + * crucial that writes go to disk immediately, so they are definitely stored + * even if the power fails before the file cache would have caught up, one + * should call SDL_FlushIO() before closing. Note that flushing takes time and + * makes the system and your app operate less efficiently, so do so sparingly. + * + * \param context SDL_IOStream structure to close. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenIO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CloseIO(SDL_IOStream *context); + +/** + * Get the properties associated with an SDL_IOStream. + * + * \param context a pointer to an SDL_IOStream structure. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetIOProperties(SDL_IOStream *context); + +/** + * Query the stream status of an SDL_IOStream. + * + * This information can be useful to decide if a short read or write was due + * to an error, an EOF, or a non-blocking operation that isn't yet ready to + * complete. + * + * An SDL_IOStream's status is only expected to change after a SDL_ReadIO or + * SDL_WriteIO call; don't expect it to change if you just call this query + * function in a tight loop. + * + * \param context the SDL_IOStream to query. + * \returns an SDL_IOStatus enum with the current state. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_IOStatus SDLCALL SDL_GetIOStatus(SDL_IOStream *context); + +/** + * Use this function to get the size of the data stream in an SDL_IOStream. + * + * \param context the SDL_IOStream to get the size of the data stream from. + * \returns the size of the data stream in the SDL_IOStream on success or a + * negative error code on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_GetIOSize(SDL_IOStream *context); + +/** + * Seek within an SDL_IOStream data stream. + * + * This function seeks to byte `offset`, relative to `whence`. + * + * `whence` may be any of the following values: + * + * - `SDL_IO_SEEK_SET`: seek from the beginning of data + * - `SDL_IO_SEEK_CUR`: seek relative to current read point + * - `SDL_IO_SEEK_END`: seek relative to the end of data + * + * If this stream can not seek, it will return -1. + * + * \param context a pointer to an SDL_IOStream structure. + * \param offset an offset in bytes, relative to `whence` location; can be + * negative. + * \param whence any of `SDL_IO_SEEK_SET`, `SDL_IO_SEEK_CUR`, + * `SDL_IO_SEEK_END`. + * \returns the final offset in the data stream after the seek or -1 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TellIO + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_SeekIO(SDL_IOStream *context, Sint64 offset, SDL_IOWhence whence); + +/** + * Determine the current read/write offset in an SDL_IOStream data stream. + * + * SDL_TellIO is actually a wrapper function that calls the SDL_IOStream's + * `seek` method, with an offset of 0 bytes from `SDL_IO_SEEK_CUR`, to + * simplify application development. + * + * \param context an SDL_IOStream data stream object from which to get the + * current offset. + * \returns the current offset in the stream, or -1 if the information can not + * be determined. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SeekIO + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_TellIO(SDL_IOStream *context); + +/** + * Read from a data source. + * + * This function reads up `size` bytes from the data source to the area + * pointed at by `ptr`. This function may read less bytes than requested. + * + * This function will return zero when the data stream is completely read, and + * SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If zero is returned and + * the stream is not at EOF, SDL_GetIOStatus() will return a different error + * value and SDL_GetError() will offer a human-readable message. + * + * \param context a pointer to an SDL_IOStream structure. + * \param ptr a pointer to a buffer to read data into. + * \param size the number of bytes to read from the data source. + * \returns the number of bytes read, or 0 on end of file or other failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WriteIO + * \sa SDL_GetIOStatus + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_ReadIO(SDL_IOStream *context, void *ptr, size_t size); + +/** + * Write to an SDL_IOStream data stream. + * + * This function writes exactly `size` bytes from the area pointed at by `ptr` + * to the stream. If this fails for any reason, it'll return less than `size` + * to demonstrate how far the write progressed. On success, it returns `size`. + * + * On error, this function still attempts to write as much as possible, so it + * might return a positive value less than the requested write size. + * + * The caller can use SDL_GetIOStatus() to determine if the problem is + * recoverable, such as a non-blocking write that can simply be retried later, + * or a fatal error. + * + * \param context a pointer to an SDL_IOStream structure. + * \param ptr a pointer to a buffer containing data to write. + * \param size the number of bytes to write. + * \returns the number of bytes written, which will be less than `size` on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOprintf + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_FlushIO + * \sa SDL_GetIOStatus + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_WriteIO(SDL_IOStream *context, const void *ptr, size_t size); + +/** + * Print to an SDL_IOStream data stream. + * + * This function does formatted printing to the stream. + * + * \param context a pointer to an SDL_IOStream structure. + * \param fmt a printf() style format string. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * \returns the number of bytes written or 0 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOvprintf + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_IOprintf(SDL_IOStream *context, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Print to an SDL_IOStream data stream. + * + * This function does formatted printing to the stream. + * + * \param context a pointer to an SDL_IOStream structure. + * \param fmt a printf() style format string. + * \param ap a variable argument list. + * \returns the number of bytes written or 0 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOprintf + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_IOvprintf(SDL_IOStream *context, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + +/** + * Flush any buffered data in the stream. + * + * This function makes sure that any buffered data is written to the stream. + * Normally this isn't necessary but if the stream is a pipe or socket it + * guarantees that any pending data is sent. + * + * \param context SDL_IOStream structure to flush. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlushIO(SDL_IOStream *context); + +/** + * Load all the data from an SDL data stream. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in the value reported via + * `datasize`. + * + * The data should be freed with SDL_free(). + * + * \param src the SDL_IOStream to read all available data from. + * \param datasize a pointer filled in with the number of bytes read, may be + * NULL. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns the data or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFile + * \sa SDL_SaveFile_IO + */ +extern SDL_DECLSPEC void * SDLCALL SDL_LoadFile_IO(SDL_IOStream *src, size_t *datasize, bool closeio); + +/** + * Load all the data from a file path. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in the value reported via + * `datasize`. + * + * The data should be freed with SDL_free(). + * + * \param file the path to read all available data from. + * \param datasize if not NULL, will store the number of bytes read. + * \returns the data or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFile_IO + * \sa SDL_SaveFile + */ +extern SDL_DECLSPEC void * SDLCALL SDL_LoadFile(const char *file, size_t *datasize); + +/** + * Save all the data into an SDL data stream. + * + * \param src the SDL_IOStream to write all data to. + * \param data the data to be written. If datasize is 0, may be NULL or a + * invalid pointer. + * \param datasize the number of bytes to be written. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SaveFile + * \sa SDL_LoadFile_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveFile_IO(SDL_IOStream *src, const void *data, size_t datasize, bool closeio); + +/** + * Save all the data into a file path. + * + * \param file the path to write all available data into. + * \param data the data to be written. If datasize is 0, may be NULL or a + * invalid pointer. + * \param datasize the number of bytes to be written. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SaveFile_IO + * \sa SDL_LoadFile + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveFile(const char *file, const void *data, size_t datasize); + +/** + * \name Read endian functions + * + * Read an item of the specified endianness and return in native format. + */ +/* @{ */ + +/** + * Use this function to read a byte from an SDL_IOStream. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the SDL_IOStream to read from. + * \param value a pointer filled in with the data read. + * \returns true on success or false on failure or EOF; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU8(SDL_IOStream *src, Uint8 *value); + +/** + * Use this function to read a signed byte from an SDL_IOStream. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the SDL_IOStream to read from. + * \param value a pointer filled in with the data read. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS8(SDL_IOStream *src, Sint8 *value); + +/** + * Use this function to read 16 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU16LE(SDL_IOStream *src, Uint16 *value); + +/** + * Use this function to read 16 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS16LE(SDL_IOStream *src, Sint16 *value); + +/** + * Use this function to read 16 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU16BE(SDL_IOStream *src, Uint16 *value); + +/** + * Use this function to read 16 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS16BE(SDL_IOStream *src, Sint16 *value); + +/** + * Use this function to read 32 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU32LE(SDL_IOStream *src, Uint32 *value); + +/** + * Use this function to read 32 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS32LE(SDL_IOStream *src, Sint32 *value); + +/** + * Use this function to read 32 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU32BE(SDL_IOStream *src, Uint32 *value); + +/** + * Use this function to read 32 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS32BE(SDL_IOStream *src, Sint32 *value); + +/** + * Use this function to read 64 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU64LE(SDL_IOStream *src, Uint64 *value); + +/** + * Use this function to read 64 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS64LE(SDL_IOStream *src, Sint64 *value); + +/** + * Use this function to read 64 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU64BE(SDL_IOStream *src, Uint64 *value); + +/** + * Use this function to read 64 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS64BE(SDL_IOStream *src, Sint64 *value); +/* @} *//* Read endian functions */ + +/** + * \name Write endian functions + * + * Write an item of native format to the specified endianness. + */ +/* @{ */ + +/** + * Use this function to write a byte to an SDL_IOStream. + * + * \param dst the SDL_IOStream to write to. + * \param value the byte value to write. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU8(SDL_IOStream *dst, Uint8 value); + +/** + * Use this function to write a signed byte to an SDL_IOStream. + * + * \param dst the SDL_IOStream to write to. + * \param value the byte value to write. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS8(SDL_IOStream *dst, Sint8 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU16LE(SDL_IOStream *dst, Uint16 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS16LE(SDL_IOStream *dst, Sint16 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU16BE(SDL_IOStream *dst, Uint16 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS16BE(SDL_IOStream *dst, Sint16 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU32LE(SDL_IOStream *dst, Uint32 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS32LE(SDL_IOStream *dst, Sint32 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU32BE(SDL_IOStream *dst, Uint32 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS32BE(SDL_IOStream *dst, Sint32 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU64LE(SDL_IOStream *dst, Uint64 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS64LE(SDL_IOStream *dst, Sint64 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU64BE(SDL_IOStream *dst, Uint64 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS64BE(SDL_IOStream *dst, Sint64 value); + +/* @} *//* Write endian functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_iostream_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_joystick.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_joystick.h new file mode 100644 index 0000000..d15668b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_joystick.h @@ -0,0 +1,1202 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryJoystick + * + * SDL joystick support. + * + * This is the lower-level joystick handling. If you want the simpler option, + * where what each button does is well-defined, you should use the gamepad API + * instead. + * + * The term "instance_id" is the current instantiation of a joystick device in + * the system, if the joystick is removed and then re-inserted then it will + * get a new instance_id, instance_id's are monotonically increasing + * identifiers of a joystick plugged in. + * + * The term "player_index" is the number assigned to a player on a specific + * controller. For XInput controllers this returns the XInput user index. Many + * joysticks will not be able to supply this information. + * + * SDL_GUID is used as a stable 128-bit identifier for a joystick device that + * does not change over time. It identifies class of the device (a X360 wired + * controller for example). This identifier is platform dependent. + * + * In order to use these functions, SDL_Init() must have been called with the + * SDL_INIT_JOYSTICK flag. This causes SDL to scan the system for joysticks, + * and load appropriate drivers. + * + * If you would like to receive joystick updates while the application is in + * the background, you should set the following hint before calling + * SDL_Init(): SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS + */ + +#ifndef SDL_joystick_h_ +#define SDL_joystick_h_ + +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef SDL_THREAD_SAFETY_ANALYSIS +/* + * This is not an exported symbol from SDL, this is only in the headers to + * help Clang's thread safety analysis tools to function. Do not attempt + * to access this symbol from your app, it will not work! + */ +extern SDL_Mutex *SDL_joystick_lock; +#endif + +/** + * The joystick structure used to identify an SDL joystick. + * + * This is opaque data. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Joystick SDL_Joystick; + +/** + * This is a unique ID for a joystick for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the joystick is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_JoystickID; + +/** + * An enum of some common joystick types. + * + * In some cases, SDL can identify a low-level joystick as being a certain + * type of device, and will report it through SDL_GetJoystickType (or + * SDL_GetJoystickTypeForID). + * + * This is by no means a complete list of everything that can be plugged into + * a computer. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_JoystickType +{ + SDL_JOYSTICK_TYPE_UNKNOWN, + SDL_JOYSTICK_TYPE_GAMEPAD, + SDL_JOYSTICK_TYPE_WHEEL, + SDL_JOYSTICK_TYPE_ARCADE_STICK, + SDL_JOYSTICK_TYPE_FLIGHT_STICK, + SDL_JOYSTICK_TYPE_DANCE_PAD, + SDL_JOYSTICK_TYPE_GUITAR, + SDL_JOYSTICK_TYPE_DRUM_KIT, + SDL_JOYSTICK_TYPE_ARCADE_PAD, + SDL_JOYSTICK_TYPE_THROTTLE, + SDL_JOYSTICK_TYPE_COUNT +} SDL_JoystickType; + +/** + * Possible connection states for a joystick device. + * + * This is used by SDL_GetJoystickConnectionState to report how a device is + * connected to the system. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_JoystickConnectionState +{ + SDL_JOYSTICK_CONNECTION_INVALID = -1, + SDL_JOYSTICK_CONNECTION_UNKNOWN, + SDL_JOYSTICK_CONNECTION_WIRED, + SDL_JOYSTICK_CONNECTION_WIRELESS +} SDL_JoystickConnectionState; + +/** + * The largest value an SDL_Joystick's axis can report. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_JOYSTICK_AXIS_MIN + */ +#define SDL_JOYSTICK_AXIS_MAX 32767 + +/** + * The smallest value an SDL_Joystick's axis can report. + * + * This is a negative number! + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_JOYSTICK_AXIS_MAX + */ +#define SDL_JOYSTICK_AXIS_MIN -32768 + + +/* Function prototypes */ + +/** + * Locking for atomic access to the joystick API. + * + * The SDL joystick functions are thread-safe, however you can lock the + * joysticks while processing to guarantee that the joystick list won't change + * and joystick and gamepad events will not be delivered. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockJoysticks(void) SDL_ACQUIRE(SDL_joystick_lock); + +/** + * Unlocking for atomic access to the joystick API. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockJoysticks(void) SDL_RELEASE(SDL_joystick_lock); + +/** + * Return whether a joystick is currently connected. + * + * \returns true if a joystick is connected, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasJoystick(void); + +/** + * Get a list of currently connected joysticks. + * + * \param count a pointer filled in with the number of joysticks returned, may + * be NULL. + * \returns a 0 terminated array of joystick instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasJoystick + * \sa SDL_OpenJoystick + */ +extern SDL_DECLSPEC SDL_JoystickID * SDLCALL SDL_GetJoysticks(int *count); + +/** + * Get the implementation dependent name of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the name of the selected joystick. If no name can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickName + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickNameForID(SDL_JoystickID instance_id); + +/** + * Get the implementation dependent path of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the path of the selected joystick. If no path can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPath + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickPathForID(SDL_JoystickID instance_id); + +/** + * Get the player index of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the player index of a joystick, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPlayerIndex + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetJoystickPlayerIndexForID(SDL_JoystickID instance_id); + +/** + * Get the implementation-dependent GUID of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the GUID of the selected joystick. If called with an invalid + * instance_id, this function returns a zero GUID. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUID + * \sa SDL_GUIDToString + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_GetJoystickGUIDForID(SDL_JoystickID instance_id); + +/** + * Get the USB vendor ID of a joystick, if available. + * + * This can be called before any joysticks are opened. If the vendor ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB vendor ID of the selected joystick. If called with an + * invalid instance_id, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickVendor + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickVendorForID(SDL_JoystickID instance_id); + +/** + * Get the USB product ID of a joystick, if available. + * + * This can be called before any joysticks are opened. If the product ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB product ID of the selected joystick. If called with an + * invalid instance_id, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProduct + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProductForID(SDL_JoystickID instance_id); + +/** + * Get the product version of a joystick, if available. + * + * This can be called before any joysticks are opened. If the product version + * isn't available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the product version of the selected joystick. If called with an + * invalid instance_id, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProductVersion + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProductVersionForID(SDL_JoystickID instance_id); + +/** + * Get the type of a joystick, if available. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the SDL_JoystickType of the selected joystick. If called with an + * invalid instance_id, this function returns + * `SDL_JOYSTICK_TYPE_UNKNOWN`. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickType + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC SDL_JoystickType SDLCALL SDL_GetJoystickTypeForID(SDL_JoystickID instance_id); + +/** + * Open a joystick for use. + * + * The joystick subsystem must be initialized before a joystick can be opened + * for use. + * + * \param instance_id the joystick instance ID. + * \returns a joystick identifier or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseJoystick + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_OpenJoystick(SDL_JoystickID instance_id); + +/** + * Get the SDL_Joystick associated with an instance ID, if it has been opened. + * + * \param instance_id the instance ID to get the SDL_Joystick for. + * \returns an SDL_Joystick on success or NULL on failure or if it hasn't been + * opened yet; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_GetJoystickFromID(SDL_JoystickID instance_id); + +/** + * Get the SDL_Joystick associated with a player index. + * + * \param player_index the player index to get the SDL_Joystick for. + * \returns an SDL_Joystick on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPlayerIndex + * \sa SDL_SetJoystickPlayerIndex + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_GetJoystickFromPlayerIndex(int player_index); + +/** + * The structure that describes a virtual joystick touchpad. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_VirtualJoystickDesc + */ +typedef struct SDL_VirtualJoystickTouchpadDesc +{ + Uint16 nfingers; /**< the number of simultaneous fingers on this touchpad */ + Uint16 padding[3]; +} SDL_VirtualJoystickTouchpadDesc; + +/** + * The structure that describes a virtual joystick sensor. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_VirtualJoystickDesc + */ +typedef struct SDL_VirtualJoystickSensorDesc +{ + SDL_SensorType type; /**< the type of this sensor */ + float rate; /**< the update frequency of this sensor, may be 0.0f */ +} SDL_VirtualJoystickSensorDesc; + +/** + * The structure that describes a virtual joystick. + * + * This structure should be initialized using SDL_INIT_INTERFACE(). All + * elements of this structure are optional. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AttachVirtualJoystick + * \sa SDL_INIT_INTERFACE + * \sa SDL_VirtualJoystickSensorDesc + * \sa SDL_VirtualJoystickTouchpadDesc + */ +typedef struct SDL_VirtualJoystickDesc +{ + Uint32 version; /**< the version of this interface */ + Uint16 type; /**< `SDL_JoystickType` */ + Uint16 padding; /**< unused */ + Uint16 vendor_id; /**< the USB vendor ID of this joystick */ + Uint16 product_id; /**< the USB product ID of this joystick */ + Uint16 naxes; /**< the number of axes on this joystick */ + Uint16 nbuttons; /**< the number of buttons on this joystick */ + Uint16 nballs; /**< the number of balls on this joystick */ + Uint16 nhats; /**< the number of hats on this joystick */ + Uint16 ntouchpads; /**< the number of touchpads on this joystick, requires `touchpads` to point at valid descriptions */ + Uint16 nsensors; /**< the number of sensors on this joystick, requires `sensors` to point at valid descriptions */ + Uint16 padding2[2]; /**< unused */ + Uint32 button_mask; /**< A mask of which buttons are valid for this controller + e.g. (1 << SDL_GAMEPAD_BUTTON_SOUTH) */ + Uint32 axis_mask; /**< A mask of which axes are valid for this controller + e.g. (1 << SDL_GAMEPAD_AXIS_LEFTX) */ + const char *name; /**< the name of the joystick */ + const SDL_VirtualJoystickTouchpadDesc *touchpads; /**< A pointer to an array of touchpad descriptions, required if `ntouchpads` is > 0 */ + const SDL_VirtualJoystickSensorDesc *sensors; /**< A pointer to an array of sensor descriptions, required if `nsensors` is > 0 */ + + void *userdata; /**< User data pointer passed to callbacks */ + void (SDLCALL *Update)(void *userdata); /**< Called when the joystick state should be updated */ + void (SDLCALL *SetPlayerIndex)(void *userdata, int player_index); /**< Called when the player index is set */ + bool (SDLCALL *Rumble)(void *userdata, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble); /**< Implements SDL_RumbleJoystick() */ + bool (SDLCALL *RumbleTriggers)(void *userdata, Uint16 left_rumble, Uint16 right_rumble); /**< Implements SDL_RumbleJoystickTriggers() */ + bool (SDLCALL *SetLED)(void *userdata, Uint8 red, Uint8 green, Uint8 blue); /**< Implements SDL_SetJoystickLED() */ + bool (SDLCALL *SendEffect)(void *userdata, const void *data, int size); /**< Implements SDL_SendJoystickEffect() */ + bool (SDLCALL *SetSensorsEnabled)(void *userdata, bool enabled); /**< Implements SDL_SetGamepadSensorEnabled() */ + void (SDLCALL *Cleanup)(void *userdata); /**< Cleans up the userdata when the joystick is detached */ +} SDL_VirtualJoystickDesc; + +/* Check the size of SDL_VirtualJoystickDesc + * + * If this assert fails, either the compiler is padding to an unexpected size, + * or the interface has been updated and this should be updated to match and + * the code using this interface should be updated to handle the old version. + */ +SDL_COMPILE_TIME_ASSERT(SDL_VirtualJoystickDesc_SIZE, + (sizeof(void *) == 4 && sizeof(SDL_VirtualJoystickDesc) == 84) || + (sizeof(void *) == 8 && sizeof(SDL_VirtualJoystickDesc) == 136)); + +/** + * Attach a new virtual joystick. + * + * \param desc joystick description, initialized using SDL_INIT_INTERFACE(). + * \returns the joystick instance ID, or 0 on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DetachVirtualJoystick + */ +extern SDL_DECLSPEC SDL_JoystickID SDLCALL SDL_AttachVirtualJoystick(const SDL_VirtualJoystickDesc *desc); + +/** + * Detach a virtual joystick. + * + * \param instance_id the joystick instance ID, previously returned from + * SDL_AttachVirtualJoystick(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AttachVirtualJoystick + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DetachVirtualJoystick(SDL_JoystickID instance_id); + +/** + * Query whether or not a joystick is virtual. + * + * \param instance_id the joystick instance ID. + * \returns true if the joystick is virtual, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsJoystickVirtual(SDL_JoystickID instance_id); + +/** + * Set the state of an axis on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * Note that when sending trigger axes, you should scale the value to the full + * range of Sint16. For example, a trigger at rest would have the value of + * `SDL_JOYSTICK_AXIS_MIN`. + * + * \param joystick the virtual joystick on which to set state. + * \param axis the index of the axis on the virtual joystick to update. + * \param value the new value for the specified axis. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualAxis(SDL_Joystick *joystick, int axis, Sint16 value); + +/** + * Generate ball motion on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param ball the index of the ball on the virtual joystick to update. + * \param xrel the relative motion on the X axis. + * \param yrel the relative motion on the Y axis. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualBall(SDL_Joystick *joystick, int ball, Sint16 xrel, Sint16 yrel); + +/** + * Set the state of a button on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param button the index of the button on the virtual joystick to update. + * \param down true if the button is pressed, false otherwise. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualButton(SDL_Joystick *joystick, int button, bool down); + +/** + * Set the state of a hat on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param hat the index of the hat on the virtual joystick to update. + * \param value the new value for the specified hat. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualHat(SDL_Joystick *joystick, int hat, Uint8 value); + +/** + * Set touchpad finger state on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param touchpad the index of the touchpad on the virtual joystick to + * update. + * \param finger the index of the finger on the touchpad to set. + * \param down true if the finger is pressed, false if the finger is released. + * \param x the x coordinate of the finger on the touchpad, normalized 0 to 1, + * with the origin in the upper left. + * \param y the y coordinate of the finger on the touchpad, normalized 0 to 1, + * with the origin in the upper left. + * \param pressure the pressure of the finger. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualTouchpad(SDL_Joystick *joystick, int touchpad, int finger, bool down, float x, float y, float pressure); + +/** + * Send a sensor update for an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param type the type of the sensor on the virtual joystick to update. + * \param sensor_timestamp a 64-bit timestamp in nanoseconds associated with + * the sensor reading. + * \param data the data associated with the sensor reading. + * \param num_values the number of values pointed to by `data`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendJoystickVirtualSensorData(SDL_Joystick *joystick, SDL_SensorType type, Uint64 sensor_timestamp, const float *data, int num_values); + +/** + * Get the properties associated with a joystick. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_JOYSTICK_CAP_MONO_LED_BOOLEAN`: true if this joystick has an + * LED that has adjustable brightness + * - `SDL_PROP_JOYSTICK_CAP_RGB_LED_BOOLEAN`: true if this joystick has an LED + * that has adjustable color + * - `SDL_PROP_JOYSTICK_CAP_PLAYER_LED_BOOLEAN`: true if this joystick has a + * player LED + * - `SDL_PROP_JOYSTICK_CAP_RUMBLE_BOOLEAN`: true if this joystick has + * left/right rumble + * - `SDL_PROP_JOYSTICK_CAP_TRIGGER_RUMBLE_BOOLEAN`: true if this joystick has + * simple trigger rumble + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetJoystickProperties(SDL_Joystick *joystick); + +#define SDL_PROP_JOYSTICK_CAP_MONO_LED_BOOLEAN "SDL.joystick.cap.mono_led" +#define SDL_PROP_JOYSTICK_CAP_RGB_LED_BOOLEAN "SDL.joystick.cap.rgb_led" +#define SDL_PROP_JOYSTICK_CAP_PLAYER_LED_BOOLEAN "SDL.joystick.cap.player_led" +#define SDL_PROP_JOYSTICK_CAP_RUMBLE_BOOLEAN "SDL.joystick.cap.rumble" +#define SDL_PROP_JOYSTICK_CAP_TRIGGER_RUMBLE_BOOLEAN "SDL.joystick.cap.trigger_rumble" + +/** + * Get the implementation dependent name of a joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the name of the selected joystick. If no name can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickNameForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickName(SDL_Joystick *joystick); + +/** + * Get the implementation dependent path of a joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the path of the selected joystick. If no path can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPathForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickPath(SDL_Joystick *joystick); + +/** + * Get the player index of an opened joystick. + * + * For XInput controllers this returns the XInput user index. Many joysticks + * will not be able to supply this information. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the player index, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetJoystickPlayerIndex + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetJoystickPlayerIndex(SDL_Joystick *joystick); + +/** + * Set the player index of an opened joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \param player_index player index to assign to this joystick, or -1 to clear + * the player index and turn off player LEDs. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPlayerIndex + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickPlayerIndex(SDL_Joystick *joystick, int player_index); + +/** + * Get the implementation-dependent GUID for the joystick. + * + * This function requires an open joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the GUID of the given joystick. If called on an invalid index, + * this function returns a zero GUID; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUIDForID + * \sa SDL_GUIDToString + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_GetJoystickGUID(SDL_Joystick *joystick); + +/** + * Get the USB vendor ID of an opened joystick, if available. + * + * If the vendor ID isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the USB vendor ID of the selected joystick, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickVendorForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickVendor(SDL_Joystick *joystick); + +/** + * Get the USB product ID of an opened joystick, if available. + * + * If the product ID isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the USB product ID of the selected joystick, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProductForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProduct(SDL_Joystick *joystick); + +/** + * Get the product version of an opened joystick, if available. + * + * If the product version isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the product version of the selected joystick, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProductVersionForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProductVersion(SDL_Joystick *joystick); + +/** + * Get the firmware version of an opened joystick, if available. + * + * If the firmware version isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the firmware version of the selected joystick, or 0 if + * unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickFirmwareVersion(SDL_Joystick *joystick); + +/** + * Get the serial number of an opened joystick, if available. + * + * Returns the serial number of the joystick, or NULL if it is not available. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the serial number of the selected joystick, or NULL if + * unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickSerial(SDL_Joystick *joystick); + +/** + * Get the type of an opened joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the SDL_JoystickType of the selected joystick. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickTypeForID + */ +extern SDL_DECLSPEC SDL_JoystickType SDLCALL SDL_GetJoystickType(SDL_Joystick *joystick); + +/** + * Get the device information encoded in a SDL_GUID structure. + * + * \param guid the SDL_GUID you wish to get info about. + * \param vendor a pointer filled in with the device VID, or 0 if not + * available. + * \param product a pointer filled in with the device PID, or 0 if not + * available. + * \param version a pointer filled in with the device version, or 0 if not + * available. + * \param crc16 a pointer filled in with a CRC used to distinguish different + * products with the same VID/PID, or 0 if not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUIDForID + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetJoystickGUIDInfo(SDL_GUID guid, Uint16 *vendor, Uint16 *product, Uint16 *version, Uint16 *crc16); + +/** + * Get the status of a specified joystick. + * + * \param joystick the joystick to query. + * \returns true if the joystick has been opened, false if it has not; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_JoystickConnected(SDL_Joystick *joystick); + +/** + * Get the instance ID of an opened joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the instance ID of the specified joystick on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickID SDLCALL SDL_GetJoystickID(SDL_Joystick *joystick); + +/** + * Get the number of general axis controls on a joystick. + * + * Often, the directional pad on a game controller will either look like 4 + * separate buttons or a POV hat, and not axes, but all of this is up to the + * device and platform. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of axis controls/number of axes on success or -1 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickAxis + * \sa SDL_GetNumJoystickBalls + * \sa SDL_GetNumJoystickButtons + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickAxes(SDL_Joystick *joystick); + +/** + * Get the number of trackballs on a joystick. + * + * Joystick trackballs have only relative motion events associated with them + * and their state cannot be polled. + * + * Most joysticks do not have trackballs. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of trackballs on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickBall + * \sa SDL_GetNumJoystickAxes + * \sa SDL_GetNumJoystickButtons + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickBalls(SDL_Joystick *joystick); + +/** + * Get the number of POV hats on a joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of POV hats on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickHat + * \sa SDL_GetNumJoystickAxes + * \sa SDL_GetNumJoystickBalls + * \sa SDL_GetNumJoystickButtons + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickHats(SDL_Joystick *joystick); + +/** + * Get the number of buttons on a joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of buttons on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickButton + * \sa SDL_GetNumJoystickAxes + * \sa SDL_GetNumJoystickBalls + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickButtons(SDL_Joystick *joystick); + +/** + * Set the state of joystick event processing. + * + * If joystick events are disabled, you must call SDL_UpdateJoysticks() + * yourself and check the state of the joystick when you want joystick + * information. + * + * \param enabled whether to process joystick events or not. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_JoystickEventsEnabled + * \sa SDL_UpdateJoysticks + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetJoystickEventsEnabled(bool enabled); + +/** + * Query the state of joystick event processing. + * + * If joystick events are disabled, you must call SDL_UpdateJoysticks() + * yourself and check the state of the joystick when you want joystick + * information. + * + * \returns true if joystick events are being processed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetJoystickEventsEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_JoystickEventsEnabled(void); + +/** + * Update the current state of the open joysticks. + * + * This is called automatically by the event loop if any joystick events are + * enabled. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateJoysticks(void); + +/** + * Get the current state of an axis control on a joystick. + * + * SDL makes no promises about what part of the joystick any given axis refers + * to. Your game should have some sort of configuration UI to let users + * specify what each axis should be bound to. Alternately, SDL's higher-level + * Game Controller API makes a great effort to apply order to this lower-level + * interface, so you know that a specific axis is the "left thumb stick," etc. + * + * The value returned by SDL_GetJoystickAxis() is a signed integer (-32768 to + * 32767) representing the current position of the axis. It may be necessary + * to impose certain tolerances on these values to account for jitter. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param axis the axis to query; the axis indices start at index 0. + * \returns a 16-bit signed integer representing the current position of the + * axis or 0 on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickAxes + */ +extern SDL_DECLSPEC Sint16 SDLCALL SDL_GetJoystickAxis(SDL_Joystick *joystick, int axis); + +/** + * Get the initial state of an axis control on a joystick. + * + * The state is a value ranging from -32768 to 32767. + * + * The axis indices start at index 0. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param axis the axis to query; the axis indices start at index 0. + * \param state upon return, the initial value is supplied here. + * \returns true if this axis has any initial value, or false if not. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetJoystickAxisInitialState(SDL_Joystick *joystick, int axis, Sint16 *state); + +/** + * Get the ball axis change since the last poll. + * + * Trackballs can only return relative motion since the last call to + * SDL_GetJoystickBall(), these motion deltas are placed into `dx` and `dy`. + * + * Most joysticks do not have trackballs. + * + * \param joystick the SDL_Joystick to query. + * \param ball the ball index to query; ball indices start at index 0. + * \param dx stores the difference in the x axis position since the last poll. + * \param dy stores the difference in the y axis position since the last poll. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickBalls + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetJoystickBall(SDL_Joystick *joystick, int ball, int *dx, int *dy); + +/** + * Get the current state of a POV hat on a joystick. + * + * The returned value will be one of the `SDL_HAT_*` values. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param hat the hat index to get the state from; indices start at index 0. + * \returns the current hat position. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC Uint8 SDLCALL SDL_GetJoystickHat(SDL_Joystick *joystick, int hat); + +#define SDL_HAT_CENTERED 0x00u +#define SDL_HAT_UP 0x01u +#define SDL_HAT_RIGHT 0x02u +#define SDL_HAT_DOWN 0x04u +#define SDL_HAT_LEFT 0x08u +#define SDL_HAT_RIGHTUP (SDL_HAT_RIGHT|SDL_HAT_UP) +#define SDL_HAT_RIGHTDOWN (SDL_HAT_RIGHT|SDL_HAT_DOWN) +#define SDL_HAT_LEFTUP (SDL_HAT_LEFT|SDL_HAT_UP) +#define SDL_HAT_LEFTDOWN (SDL_HAT_LEFT|SDL_HAT_DOWN) + +/** + * Get the current state of a button on a joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param button the button index to get the state from; indices start at + * index 0. + * \returns true if the button is pressed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickButtons + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetJoystickButton(SDL_Joystick *joystick, int button); + +/** + * Start a rumble effect. + * + * Each call to this function cancels any previous rumble effect, and calling + * it with 0 intensity stops any rumbling. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param joystick the joystick to vibrate. + * \param low_frequency_rumble the intensity of the low frequency (left) + * rumble motor, from 0 to 0xFFFF. + * \param high_frequency_rumble the intensity of the high frequency (right) + * rumble motor, from 0 to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true, or false if rumble isn't supported on this joystick. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleJoystick(SDL_Joystick *joystick, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble, Uint32 duration_ms); + +/** + * Start a rumble effect in the joystick's triggers. + * + * Each call to this function cancels any previous trigger rumble effect, and + * calling it with 0 intensity stops any rumbling. + * + * Note that this is rumbling of the _triggers_ and not the game controller as + * a whole. This is currently only supported on Xbox One controllers. If you + * want the (more common) whole-controller rumble, use SDL_RumbleJoystick() + * instead. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param joystick the joystick to vibrate. + * \param left_rumble the intensity of the left trigger rumble motor, from 0 + * to 0xFFFF. + * \param right_rumble the intensity of the right trigger rumble motor, from 0 + * to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RumbleJoystick + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleJoystickTriggers(SDL_Joystick *joystick, Uint16 left_rumble, Uint16 right_rumble, Uint32 duration_ms); + +/** + * Update a joystick's LED color. + * + * An example of a joystick LED is the light on the back of a PlayStation 4's + * DualShock 4 controller. + * + * For joysticks with a single color LED, the maximum of the RGB values will + * be used as the LED brightness. + * + * \param joystick the joystick to update. + * \param red the intensity of the red LED. + * \param green the intensity of the green LED. + * \param blue the intensity of the blue LED. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickLED(SDL_Joystick *joystick, Uint8 red, Uint8 green, Uint8 blue); + +/** + * Send a joystick specific effect packet. + * + * \param joystick the joystick to affect. + * \param data the data to send to the joystick. + * \param size the size of the data to send to the joystick. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendJoystickEffect(SDL_Joystick *joystick, const void *data, int size); + +/** + * Close a joystick previously opened with SDL_OpenJoystick(). + * + * \param joystick the joystick device to close. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenJoystick + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseJoystick(SDL_Joystick *joystick); + +/** + * Get the connection state of a joystick. + * + * \param joystick the joystick to query. + * \returns the connection state on success or + * `SDL_JOYSTICK_CONNECTION_INVALID` on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickConnectionState SDLCALL SDL_GetJoystickConnectionState(SDL_Joystick *joystick); + +/** + * Get the battery state of a joystick. + * + * You should never take a battery status as absolute truth. Batteries + * (especially failing batteries) are delicate hardware, and the values + * reported here are best estimates based on what that hardware reports. It's + * not uncommon for older batteries to lose stored power much faster than it + * reports, or completely drain when reporting it has 20 percent left, etc. + * + * \param joystick the joystick to query. + * \param percent a pointer filled in with the percentage of battery life + * left, between 0 and 100, or NULL to ignore. This will be + * filled in with -1 we can't determine a value or there is no + * battery. + * \returns the current battery state or `SDL_POWERSTATE_ERROR` on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PowerState SDLCALL SDL_GetJoystickPowerInfo(SDL_Joystick *joystick, int *percent); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_joystick_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_keyboard.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_keyboard.h new file mode 100644 index 0000000..afa77b6 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_keyboard.h @@ -0,0 +1,609 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryKeyboard + * + * SDL keyboard management. + * + * Please refer to the Best Keyboard Practices document for details on how + * best to accept keyboard input in various types of programs: + * + * https://wiki.libsdl.org/SDL3/BestKeyboardPractices + */ + +#ifndef SDL_keyboard_h_ +#define SDL_keyboard_h_ + +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a keyboard for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the keyboard is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_KeyboardID; + +/* Function prototypes */ + +/** + * Return whether a keyboard is currently connected. + * + * \returns true if a keyboard is connected, false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboards + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasKeyboard(void); + +/** + * Get a list of currently connected keyboards. + * + * Note that this will include any device or virtual driver that includes + * keyboard functionality, including some mice, KVM switches, motherboard + * power buttons, etc. You should wait for input from a device before you + * consider it actively in use. + * + * \param count a pointer filled in with the number of keyboards returned, may + * be NULL. + * \returns a 0 terminated array of keyboards instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboardNameForID + * \sa SDL_HasKeyboard + */ +extern SDL_DECLSPEC SDL_KeyboardID * SDLCALL SDL_GetKeyboards(int *count); + +/** + * Get the name of a keyboard. + * + * This function returns "" if the keyboard doesn't have a name. + * + * \param instance_id the keyboard instance ID. + * \returns the name of the selected keyboard or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboards + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetKeyboardNameForID(SDL_KeyboardID instance_id); + +/** + * Query the window which currently has keyboard focus. + * + * \returns the window with keyboard focus. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetKeyboardFocus(void); + +/** + * Get a snapshot of the current state of the keyboard. + * + * The pointer returned is a pointer to an internal SDL array. It will be + * valid for the whole lifetime of the application and should not be freed by + * the caller. + * + * A array element with a value of true means that the key is pressed and a + * value of false means that it is not. Indexes into this array are obtained + * by using SDL_Scancode values. + * + * Use SDL_PumpEvents() to update the state array. + * + * This function gives you the current state after all events have been + * processed, so if a key or button has been pressed and released before you + * process events, then the pressed state will never show up in the + * SDL_GetKeyboardState() calls. + * + * Note: This function doesn't take into account whether shift has been + * pressed or not. + * + * \param numkeys if non-NULL, receives the length of the returned array. + * \returns a pointer to an array of key states. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PumpEvents + * \sa SDL_ResetKeyboard + */ +extern SDL_DECLSPEC const bool * SDLCALL SDL_GetKeyboardState(int *numkeys); + +/** + * Clear the state of the keyboard. + * + * This function will generate key up events for all pressed keys. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboardState + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetKeyboard(void); + +/** + * Get the current key modifier state for the keyboard. + * + * \returns an OR'd combination of the modifier keys for the keyboard. See + * SDL_Keymod for details. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboardState + * \sa SDL_SetModState + */ +extern SDL_DECLSPEC SDL_Keymod SDLCALL SDL_GetModState(void); + +/** + * Set the current key modifier state for the keyboard. + * + * The inverse of SDL_GetModState(), SDL_SetModState() allows you to impose + * modifier key states on your application. Simply pass your desired modifier + * states into `modstate`. This value may be a bitwise, OR'd combination of + * SDL_Keymod values. + * + * This does not change the keyboard state, only the key modifier flags that + * SDL reports. + * + * \param modstate the desired SDL_Keymod for the keyboard. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetModState + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetModState(SDL_Keymod modstate); + +/** + * Get the key code corresponding to the given scancode according to the + * current keyboard layout. + * + * If you want to get the keycode as it would be delivered in key events, + * including options specified in SDL_HINT_KEYCODE_OPTIONS, then you should + * pass `key_event` as true. Otherwise this function simply translates the + * scancode based on the given modifier state. + * + * \param scancode the desired SDL_Scancode to query. + * \param modstate the modifier state to use when translating the scancode to + * a keycode. + * \param key_event true if the keycode will be used in key events. + * \returns the SDL_Keycode that corresponds to the given SDL_Scancode. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyName + * \sa SDL_GetScancodeFromKey + */ +extern SDL_DECLSPEC SDL_Keycode SDLCALL SDL_GetKeyFromScancode(SDL_Scancode scancode, SDL_Keymod modstate, bool key_event); + +/** + * Get the scancode corresponding to the given key code according to the + * current keyboard layout. + * + * Note that there may be multiple scancode+modifier states that can generate + * this keycode, this will just return the first one found. + * + * \param key the desired SDL_Keycode to query. + * \param modstate a pointer to the modifier state that would be used when the + * scancode generates this key, may be NULL. + * \returns the SDL_Scancode that corresponds to the given SDL_Keycode. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromScancode + * \sa SDL_GetScancodeName + */ +extern SDL_DECLSPEC SDL_Scancode SDLCALL SDL_GetScancodeFromKey(SDL_Keycode key, SDL_Keymod *modstate); + +/** + * Set a human-readable name for a scancode. + * + * \param scancode the desired SDL_Scancode. + * \param name the name to use for the scancode, encoded as UTF-8. The string + * is not copied, so the pointer given to this function must stay + * valid while SDL is being used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetScancodeName + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetScancodeName(SDL_Scancode scancode, const char *name); + +/** + * Get a human-readable name for a scancode. + * + * **Warning**: The returned name is by design not stable across platforms, + * e.g. the name for `SDL_SCANCODE_LGUI` is "Left GUI" under Linux but "Left + * Windows" under Microsoft Windows, and some scancodes like + * `SDL_SCANCODE_NONUSBACKSLASH` don't have any name at all. There are even + * scancodes that share names, e.g. `SDL_SCANCODE_RETURN` and + * `SDL_SCANCODE_RETURN2` (both called "Return"). This function is therefore + * unsuitable for creating a stable cross-platform two-way mapping between + * strings and scancodes. + * + * \param scancode the desired SDL_Scancode to query. + * \returns a pointer to the name for the scancode. If the scancode doesn't + * have a name this function returns an empty string (""). + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetScancodeFromKey + * \sa SDL_GetScancodeFromName + * \sa SDL_SetScancodeName + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetScancodeName(SDL_Scancode scancode); + +/** + * Get a scancode from a human-readable name. + * + * \param name the human-readable scancode name. + * \returns the SDL_Scancode, or `SDL_SCANCODE_UNKNOWN` if the name wasn't + * recognized; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromName + * \sa SDL_GetScancodeFromKey + * \sa SDL_GetScancodeName + */ +extern SDL_DECLSPEC SDL_Scancode SDLCALL SDL_GetScancodeFromName(const char *name); + +/** + * Get a human-readable name for a key. + * + * If the key doesn't have a name, this function returns an empty string (""). + * + * Letters will be presented in their uppercase form, if applicable. + * + * \param key the desired SDL_Keycode to query. + * \returns a UTF-8 encoded string of the key name. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromName + * \sa SDL_GetKeyFromScancode + * \sa SDL_GetScancodeFromKey + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetKeyName(SDL_Keycode key); + +/** + * Get a key code from a human-readable name. + * + * \param name the human-readable key name. + * \returns key code, or `SDLK_UNKNOWN` if the name wasn't recognized; call + * SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromScancode + * \sa SDL_GetKeyName + * \sa SDL_GetScancodeFromName + */ +extern SDL_DECLSPEC SDL_Keycode SDLCALL SDL_GetKeyFromName(const char *name); + +/** + * Start accepting Unicode text input events in a window. + * + * This function will enable text input (SDL_EVENT_TEXT_INPUT and + * SDL_EVENT_TEXT_EDITING events) in the specified window. Please use this + * function paired with SDL_StopTextInput(). + * + * Text input events are not received by default. + * + * On some platforms using this function shows the screen keyboard and/or + * activates an IME, which can prevent some key press events from being passed + * through. + * + * \param window the window to enable text input. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextInputArea + * \sa SDL_StartTextInputWithProperties + * \sa SDL_StopTextInput + * \sa SDL_TextInputActive + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StartTextInput(SDL_Window *window); + +/** + * Text input type. + * + * These are the valid values for SDL_PROP_TEXTINPUT_TYPE_NUMBER. Not every + * value is valid on every platform, but where a value isn't supported, a + * reasonable fallback will be used. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_StartTextInputWithProperties + */ +typedef enum SDL_TextInputType +{ + SDL_TEXTINPUT_TYPE_TEXT, /**< The input is text */ + SDL_TEXTINPUT_TYPE_TEXT_NAME, /**< The input is a person's name */ + SDL_TEXTINPUT_TYPE_TEXT_EMAIL, /**< The input is an e-mail address */ + SDL_TEXTINPUT_TYPE_TEXT_USERNAME, /**< The input is a username */ + SDL_TEXTINPUT_TYPE_TEXT_PASSWORD_HIDDEN, /**< The input is a secure password that is hidden */ + SDL_TEXTINPUT_TYPE_TEXT_PASSWORD_VISIBLE, /**< The input is a secure password that is visible */ + SDL_TEXTINPUT_TYPE_NUMBER, /**< The input is a number */ + SDL_TEXTINPUT_TYPE_NUMBER_PASSWORD_HIDDEN, /**< The input is a secure PIN that is hidden */ + SDL_TEXTINPUT_TYPE_NUMBER_PASSWORD_VISIBLE /**< The input is a secure PIN that is visible */ +} SDL_TextInputType; + +/** + * Auto capitalization type. + * + * These are the valid values for SDL_PROP_TEXTINPUT_CAPITALIZATION_NUMBER. + * Not every value is valid on every platform, but where a value isn't + * supported, a reasonable fallback will be used. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_StartTextInputWithProperties + */ +typedef enum SDL_Capitalization +{ + SDL_CAPITALIZE_NONE, /**< No auto-capitalization will be done */ + SDL_CAPITALIZE_SENTENCES, /**< The first letter of sentences will be capitalized */ + SDL_CAPITALIZE_WORDS, /**< The first letter of words will be capitalized */ + SDL_CAPITALIZE_LETTERS /**< All letters will be capitalized */ +} SDL_Capitalization; + +/** + * Start accepting Unicode text input events in a window, with properties + * describing the input. + * + * This function will enable text input (SDL_EVENT_TEXT_INPUT and + * SDL_EVENT_TEXT_EDITING events) in the specified window. Please use this + * function paired with SDL_StopTextInput(). + * + * Text input events are not received by default. + * + * On some platforms using this function shows the screen keyboard and/or + * activates an IME, which can prevent some key press events from being passed + * through. + * + * These are the supported properties: + * + * - `SDL_PROP_TEXTINPUT_TYPE_NUMBER` - an SDL_TextInputType value that + * describes text being input, defaults to SDL_TEXTINPUT_TYPE_TEXT. + * - `SDL_PROP_TEXTINPUT_CAPITALIZATION_NUMBER` - an SDL_Capitalization value + * that describes how text should be capitalized, defaults to + * SDL_CAPITALIZE_SENTENCES for normal text entry, SDL_CAPITALIZE_WORDS for + * SDL_TEXTINPUT_TYPE_TEXT_NAME, and SDL_CAPITALIZE_NONE for e-mail + * addresses, usernames, and passwords. + * - `SDL_PROP_TEXTINPUT_AUTOCORRECT_BOOLEAN` - true to enable auto completion + * and auto correction, defaults to true. + * - `SDL_PROP_TEXTINPUT_MULTILINE_BOOLEAN` - true if multiple lines of text + * are allowed. This defaults to true if SDL_HINT_RETURN_KEY_HIDES_IME is + * "0" or is not set, and defaults to false if SDL_HINT_RETURN_KEY_HIDES_IME + * is "1". + * + * On Android you can directly specify the input type: + * + * - `SDL_PROP_TEXTINPUT_ANDROID_INPUTTYPE_NUMBER` - the text input type to + * use, overriding other properties. This is documented at + * https://developer.android.com/reference/android/text/InputType + * + * \param window the window to enable text input. + * \param props the properties to use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextInputArea + * \sa SDL_StartTextInput + * \sa SDL_StopTextInput + * \sa SDL_TextInputActive + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StartTextInputWithProperties(SDL_Window *window, SDL_PropertiesID props); + +#define SDL_PROP_TEXTINPUT_TYPE_NUMBER "SDL.textinput.type" +#define SDL_PROP_TEXTINPUT_CAPITALIZATION_NUMBER "SDL.textinput.capitalization" +#define SDL_PROP_TEXTINPUT_AUTOCORRECT_BOOLEAN "SDL.textinput.autocorrect" +#define SDL_PROP_TEXTINPUT_MULTILINE_BOOLEAN "SDL.textinput.multiline" +#define SDL_PROP_TEXTINPUT_ANDROID_INPUTTYPE_NUMBER "SDL.textinput.android.inputtype" + +/** + * Check whether or not Unicode text input events are enabled for a window. + * + * \param window the window to check. + * \returns true if text input events are enabled else false. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TextInputActive(SDL_Window *window); + +/** + * Stop receiving any text input events in a window. + * + * If SDL_StartTextInput() showed the screen keyboard, this function will hide + * it. + * + * \param window the window to disable text input. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopTextInput(SDL_Window *window); + +/** + * Dismiss the composition window/IME without disabling the subsystem. + * + * \param window the window to affect. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + * \sa SDL_StopTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearComposition(SDL_Window *window); + +/** + * Set the area used to type Unicode text input. + * + * Native input methods may place a window with word suggestions near the + * cursor, without covering the text being entered. + * + * \param window the window for which to set the text input area. + * \param rect the SDL_Rect representing the text input area, in window + * coordinates, or NULL to clear it. + * \param cursor the offset of the current cursor location relative to + * `rect->x`, in window coordinates. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextInputArea + * \sa SDL_StartTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextInputArea(SDL_Window *window, const SDL_Rect *rect, int cursor); + +/** + * Get the area used to type Unicode text input. + * + * This returns the values previously set by SDL_SetTextInputArea(). + * + * \param window the window for which to query the text input area. + * \param rect a pointer to an SDL_Rect filled in with the text input area, + * may be NULL. + * \param cursor a pointer to the offset of the current cursor location + * relative to `rect->x`, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextInputArea + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextInputArea(SDL_Window *window, SDL_Rect *rect, int *cursor); + +/** + * Check whether the platform has screen keyboard support. + * + * \returns true if the platform has some screen keyboard support or false if + * not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + * \sa SDL_ScreenKeyboardShown + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasScreenKeyboardSupport(void); + +/** + * Check whether the screen keyboard is shown for given window. + * + * \param window the window for which screen keyboard should be queried. + * \returns true if screen keyboard is shown or false if not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasScreenKeyboardSupport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ScreenKeyboardShown(SDL_Window *window); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_keyboard_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_keycode.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_keycode.h new file mode 100644 index 0000000..61b68e7 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_keycode.h @@ -0,0 +1,343 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryKeycode + * + * Defines constants which identify keyboard keys and modifiers. + * + * Please refer to the Best Keyboard Practices document for details on what + * this information means and how best to use it. + * + * https://wiki.libsdl.org/SDL3/BestKeyboardPractices + */ + +#ifndef SDL_keycode_h_ +#define SDL_keycode_h_ + +#include +#include + +/** + * The SDL virtual key representation. + * + * Values of this type are used to represent keyboard keys using the current + * layout of the keyboard. These values include Unicode values representing + * the unmodified character that would be generated by pressing the key, or an + * `SDLK_*` constant for those keys that do not generate characters. + * + * A special exception is the number keys at the top of the keyboard which map + * to SDLK_0...SDLK_9 on AZERTY layouts. + * + * Keys with the `SDLK_EXTENDED_MASK` bit set do not map to a scancode or + * unicode code point. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_Keycode; + +#define SDLK_EXTENDED_MASK (1u << 29) +#define SDLK_SCANCODE_MASK (1u << 30) +#define SDL_SCANCODE_TO_KEYCODE(X) (X | SDLK_SCANCODE_MASK) +#define SDLK_UNKNOWN 0x00000000u /**< 0 */ +#define SDLK_RETURN 0x0000000du /**< '\r' */ +#define SDLK_ESCAPE 0x0000001bu /**< '\x1B' */ +#define SDLK_BACKSPACE 0x00000008u /**< '\b' */ +#define SDLK_TAB 0x00000009u /**< '\t' */ +#define SDLK_SPACE 0x00000020u /**< ' ' */ +#define SDLK_EXCLAIM 0x00000021u /**< '!' */ +#define SDLK_DBLAPOSTROPHE 0x00000022u /**< '"' */ +#define SDLK_HASH 0x00000023u /**< '#' */ +#define SDLK_DOLLAR 0x00000024u /**< '$' */ +#define SDLK_PERCENT 0x00000025u /**< '%' */ +#define SDLK_AMPERSAND 0x00000026u /**< '&' */ +#define SDLK_APOSTROPHE 0x00000027u /**< '\'' */ +#define SDLK_LEFTPAREN 0x00000028u /**< '(' */ +#define SDLK_RIGHTPAREN 0x00000029u /**< ')' */ +#define SDLK_ASTERISK 0x0000002au /**< '*' */ +#define SDLK_PLUS 0x0000002bu /**< '+' */ +#define SDLK_COMMA 0x0000002cu /**< ',' */ +#define SDLK_MINUS 0x0000002du /**< '-' */ +#define SDLK_PERIOD 0x0000002eu /**< '.' */ +#define SDLK_SLASH 0x0000002fu /**< '/' */ +#define SDLK_0 0x00000030u /**< '0' */ +#define SDLK_1 0x00000031u /**< '1' */ +#define SDLK_2 0x00000032u /**< '2' */ +#define SDLK_3 0x00000033u /**< '3' */ +#define SDLK_4 0x00000034u /**< '4' */ +#define SDLK_5 0x00000035u /**< '5' */ +#define SDLK_6 0x00000036u /**< '6' */ +#define SDLK_7 0x00000037u /**< '7' */ +#define SDLK_8 0x00000038u /**< '8' */ +#define SDLK_9 0x00000039u /**< '9' */ +#define SDLK_COLON 0x0000003au /**< ':' */ +#define SDLK_SEMICOLON 0x0000003bu /**< ';' */ +#define SDLK_LESS 0x0000003cu /**< '<' */ +#define SDLK_EQUALS 0x0000003du /**< '=' */ +#define SDLK_GREATER 0x0000003eu /**< '>' */ +#define SDLK_QUESTION 0x0000003fu /**< '?' */ +#define SDLK_AT 0x00000040u /**< '@' */ +#define SDLK_LEFTBRACKET 0x0000005bu /**< '[' */ +#define SDLK_BACKSLASH 0x0000005cu /**< '\\' */ +#define SDLK_RIGHTBRACKET 0x0000005du /**< ']' */ +#define SDLK_CARET 0x0000005eu /**< '^' */ +#define SDLK_UNDERSCORE 0x0000005fu /**< '_' */ +#define SDLK_GRAVE 0x00000060u /**< '`' */ +#define SDLK_A 0x00000061u /**< 'a' */ +#define SDLK_B 0x00000062u /**< 'b' */ +#define SDLK_C 0x00000063u /**< 'c' */ +#define SDLK_D 0x00000064u /**< 'd' */ +#define SDLK_E 0x00000065u /**< 'e' */ +#define SDLK_F 0x00000066u /**< 'f' */ +#define SDLK_G 0x00000067u /**< 'g' */ +#define SDLK_H 0x00000068u /**< 'h' */ +#define SDLK_I 0x00000069u /**< 'i' */ +#define SDLK_J 0x0000006au /**< 'j' */ +#define SDLK_K 0x0000006bu /**< 'k' */ +#define SDLK_L 0x0000006cu /**< 'l' */ +#define SDLK_M 0x0000006du /**< 'm' */ +#define SDLK_N 0x0000006eu /**< 'n' */ +#define SDLK_O 0x0000006fu /**< 'o' */ +#define SDLK_P 0x00000070u /**< 'p' */ +#define SDLK_Q 0x00000071u /**< 'q' */ +#define SDLK_R 0x00000072u /**< 'r' */ +#define SDLK_S 0x00000073u /**< 's' */ +#define SDLK_T 0x00000074u /**< 't' */ +#define SDLK_U 0x00000075u /**< 'u' */ +#define SDLK_V 0x00000076u /**< 'v' */ +#define SDLK_W 0x00000077u /**< 'w' */ +#define SDLK_X 0x00000078u /**< 'x' */ +#define SDLK_Y 0x00000079u /**< 'y' */ +#define SDLK_Z 0x0000007au /**< 'z' */ +#define SDLK_LEFTBRACE 0x0000007bu /**< '{' */ +#define SDLK_PIPE 0x0000007cu /**< '|' */ +#define SDLK_RIGHTBRACE 0x0000007du /**< '}' */ +#define SDLK_TILDE 0x0000007eu /**< '~' */ +#define SDLK_DELETE 0x0000007fu /**< '\x7F' */ +#define SDLK_PLUSMINUS 0x000000b1u /**< '\xB1' */ +#define SDLK_CAPSLOCK 0x40000039u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CAPSLOCK) */ +#define SDLK_F1 0x4000003au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F1) */ +#define SDLK_F2 0x4000003bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F2) */ +#define SDLK_F3 0x4000003cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F3) */ +#define SDLK_F4 0x4000003du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F4) */ +#define SDLK_F5 0x4000003eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F5) */ +#define SDLK_F6 0x4000003fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F6) */ +#define SDLK_F7 0x40000040u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F7) */ +#define SDLK_F8 0x40000041u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F8) */ +#define SDLK_F9 0x40000042u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F9) */ +#define SDLK_F10 0x40000043u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F10) */ +#define SDLK_F11 0x40000044u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F11) */ +#define SDLK_F12 0x40000045u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F12) */ +#define SDLK_PRINTSCREEN 0x40000046u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PRINTSCREEN) */ +#define SDLK_SCROLLLOCK 0x40000047u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SCROLLLOCK) */ +#define SDLK_PAUSE 0x40000048u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAUSE) */ +#define SDLK_INSERT 0x40000049u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_INSERT) */ +#define SDLK_HOME 0x4000004au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_HOME) */ +#define SDLK_PAGEUP 0x4000004bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAGEUP) */ +#define SDLK_END 0x4000004du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_END) */ +#define SDLK_PAGEDOWN 0x4000004eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAGEDOWN) */ +#define SDLK_RIGHT 0x4000004fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RIGHT) */ +#define SDLK_LEFT 0x40000050u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LEFT) */ +#define SDLK_DOWN 0x40000051u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_DOWN) */ +#define SDLK_UP 0x40000052u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_UP) */ +#define SDLK_NUMLOCKCLEAR 0x40000053u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_NUMLOCKCLEAR) */ +#define SDLK_KP_DIVIDE 0x40000054u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DIVIDE) */ +#define SDLK_KP_MULTIPLY 0x40000055u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MULTIPLY) */ +#define SDLK_KP_MINUS 0x40000056u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MINUS) */ +#define SDLK_KP_PLUS 0x40000057u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PLUS) */ +#define SDLK_KP_ENTER 0x40000058u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_ENTER) */ +#define SDLK_KP_1 0x40000059u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_1) */ +#define SDLK_KP_2 0x4000005au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_2) */ +#define SDLK_KP_3 0x4000005bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_3) */ +#define SDLK_KP_4 0x4000005cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_4) */ +#define SDLK_KP_5 0x4000005du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_5) */ +#define SDLK_KP_6 0x4000005eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_6) */ +#define SDLK_KP_7 0x4000005fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_7) */ +#define SDLK_KP_8 0x40000060u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_8) */ +#define SDLK_KP_9 0x40000061u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_9) */ +#define SDLK_KP_0 0x40000062u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_0) */ +#define SDLK_KP_PERIOD 0x40000063u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PERIOD) */ +#define SDLK_APPLICATION 0x40000065u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_APPLICATION) */ +#define SDLK_POWER 0x40000066u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_POWER) */ +#define SDLK_KP_EQUALS 0x40000067u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EQUALS) */ +#define SDLK_F13 0x40000068u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F13) */ +#define SDLK_F14 0x40000069u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F14) */ +#define SDLK_F15 0x4000006au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F15) */ +#define SDLK_F16 0x4000006bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F16) */ +#define SDLK_F17 0x4000006cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F17) */ +#define SDLK_F18 0x4000006du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F18) */ +#define SDLK_F19 0x4000006eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F19) */ +#define SDLK_F20 0x4000006fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F20) */ +#define SDLK_F21 0x40000070u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F21) */ +#define SDLK_F22 0x40000071u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F22) */ +#define SDLK_F23 0x40000072u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F23) */ +#define SDLK_F24 0x40000073u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F24) */ +#define SDLK_EXECUTE 0x40000074u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_EXECUTE) */ +#define SDLK_HELP 0x40000075u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_HELP) */ +#define SDLK_MENU 0x40000076u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MENU) */ +#define SDLK_SELECT 0x40000077u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SELECT) */ +#define SDLK_STOP 0x40000078u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_STOP) */ +#define SDLK_AGAIN 0x40000079u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AGAIN) */ +#define SDLK_UNDO 0x4000007au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_UNDO) */ +#define SDLK_CUT 0x4000007bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CUT) */ +#define SDLK_COPY 0x4000007cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_COPY) */ +#define SDLK_PASTE 0x4000007du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PASTE) */ +#define SDLK_FIND 0x4000007eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_FIND) */ +#define SDLK_MUTE 0x4000007fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MUTE) */ +#define SDLK_VOLUMEUP 0x40000080u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_VOLUMEUP) */ +#define SDLK_VOLUMEDOWN 0x40000081u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_VOLUMEDOWN) */ +#define SDLK_KP_COMMA 0x40000085u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_COMMA) */ +#define SDLK_KP_EQUALSAS400 0x40000086u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EQUALSAS400) */ +#define SDLK_ALTERASE 0x40000099u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_ALTERASE) */ +#define SDLK_SYSREQ 0x4000009au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SYSREQ) */ +#define SDLK_CANCEL 0x4000009bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CANCEL) */ +#define SDLK_CLEAR 0x4000009cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CLEAR) */ +#define SDLK_PRIOR 0x4000009du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PRIOR) */ +#define SDLK_RETURN2 0x4000009eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RETURN2) */ +#define SDLK_SEPARATOR 0x4000009fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SEPARATOR) */ +#define SDLK_OUT 0x400000a0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_OUT) */ +#define SDLK_OPER 0x400000a1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_OPER) */ +#define SDLK_CLEARAGAIN 0x400000a2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CLEARAGAIN) */ +#define SDLK_CRSEL 0x400000a3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CRSEL) */ +#define SDLK_EXSEL 0x400000a4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_EXSEL) */ +#define SDLK_KP_00 0x400000b0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_00) */ +#define SDLK_KP_000 0x400000b1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_000) */ +#define SDLK_THOUSANDSSEPARATOR 0x400000b2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_THOUSANDSSEPARATOR) */ +#define SDLK_DECIMALSEPARATOR 0x400000b3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_DECIMALSEPARATOR) */ +#define SDLK_CURRENCYUNIT 0x400000b4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CURRENCYUNIT) */ +#define SDLK_CURRENCYSUBUNIT 0x400000b5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CURRENCYSUBUNIT) */ +#define SDLK_KP_LEFTPAREN 0x400000b6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LEFTPAREN) */ +#define SDLK_KP_RIGHTPAREN 0x400000b7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_RIGHTPAREN) */ +#define SDLK_KP_LEFTBRACE 0x400000b8u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LEFTBRACE) */ +#define SDLK_KP_RIGHTBRACE 0x400000b9u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_RIGHTBRACE) */ +#define SDLK_KP_TAB 0x400000bau /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_TAB) */ +#define SDLK_KP_BACKSPACE 0x400000bbu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_BACKSPACE) */ +#define SDLK_KP_A 0x400000bcu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_A) */ +#define SDLK_KP_B 0x400000bdu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_B) */ +#define SDLK_KP_C 0x400000beu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_C) */ +#define SDLK_KP_D 0x400000bfu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_D) */ +#define SDLK_KP_E 0x400000c0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_E) */ +#define SDLK_KP_F 0x400000c1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_F) */ +#define SDLK_KP_XOR 0x400000c2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_XOR) */ +#define SDLK_KP_POWER 0x400000c3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_POWER) */ +#define SDLK_KP_PERCENT 0x400000c4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PERCENT) */ +#define SDLK_KP_LESS 0x400000c5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LESS) */ +#define SDLK_KP_GREATER 0x400000c6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_GREATER) */ +#define SDLK_KP_AMPERSAND 0x400000c7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_AMPERSAND) */ +#define SDLK_KP_DBLAMPERSAND 0x400000c8u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DBLAMPERSAND) */ +#define SDLK_KP_VERTICALBAR 0x400000c9u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_VERTICALBAR) */ +#define SDLK_KP_DBLVERTICALBAR 0x400000cau /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DBLVERTICALBAR) */ +#define SDLK_KP_COLON 0x400000cbu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_COLON) */ +#define SDLK_KP_HASH 0x400000ccu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_HASH) */ +#define SDLK_KP_SPACE 0x400000cdu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_SPACE) */ +#define SDLK_KP_AT 0x400000ceu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_AT) */ +#define SDLK_KP_EXCLAM 0x400000cfu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EXCLAM) */ +#define SDLK_KP_MEMSTORE 0x400000d0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMSTORE) */ +#define SDLK_KP_MEMRECALL 0x400000d1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMRECALL) */ +#define SDLK_KP_MEMCLEAR 0x400000d2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMCLEAR) */ +#define SDLK_KP_MEMADD 0x400000d3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMADD) */ +#define SDLK_KP_MEMSUBTRACT 0x400000d4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMSUBTRACT) */ +#define SDLK_KP_MEMMULTIPLY 0x400000d5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMMULTIPLY) */ +#define SDLK_KP_MEMDIVIDE 0x400000d6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMDIVIDE) */ +#define SDLK_KP_PLUSMINUS 0x400000d7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PLUSMINUS) */ +#define SDLK_KP_CLEAR 0x400000d8u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_CLEAR) */ +#define SDLK_KP_CLEARENTRY 0x400000d9u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_CLEARENTRY) */ +#define SDLK_KP_BINARY 0x400000dau /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_BINARY) */ +#define SDLK_KP_OCTAL 0x400000dbu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_OCTAL) */ +#define SDLK_KP_DECIMAL 0x400000dcu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DECIMAL) */ +#define SDLK_KP_HEXADECIMAL 0x400000ddu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_HEXADECIMAL) */ +#define SDLK_LCTRL 0x400000e0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LCTRL) */ +#define SDLK_LSHIFT 0x400000e1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LSHIFT) */ +#define SDLK_LALT 0x400000e2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LALT) */ +#define SDLK_LGUI 0x400000e3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LGUI) */ +#define SDLK_RCTRL 0x400000e4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RCTRL) */ +#define SDLK_RSHIFT 0x400000e5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RSHIFT) */ +#define SDLK_RALT 0x400000e6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RALT) */ +#define SDLK_RGUI 0x400000e7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RGUI) */ +#define SDLK_MODE 0x40000101u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MODE) */ +#define SDLK_SLEEP 0x40000102u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SLEEP) */ +#define SDLK_WAKE 0x40000103u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_WAKE) */ +#define SDLK_CHANNEL_INCREMENT 0x40000104u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CHANNEL_INCREMENT) */ +#define SDLK_CHANNEL_DECREMENT 0x40000105u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CHANNEL_DECREMENT) */ +#define SDLK_MEDIA_PLAY 0x40000106u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PLAY) */ +#define SDLK_MEDIA_PAUSE 0x40000107u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PAUSE) */ +#define SDLK_MEDIA_RECORD 0x40000108u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_RECORD) */ +#define SDLK_MEDIA_FAST_FORWARD 0x40000109u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_FAST_FORWARD) */ +#define SDLK_MEDIA_REWIND 0x4000010au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_REWIND) */ +#define SDLK_MEDIA_NEXT_TRACK 0x4000010bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_NEXT_TRACK) */ +#define SDLK_MEDIA_PREVIOUS_TRACK 0x4000010cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PREVIOUS_TRACK) */ +#define SDLK_MEDIA_STOP 0x4000010du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_STOP) */ +#define SDLK_MEDIA_EJECT 0x4000010eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_EJECT) */ +#define SDLK_MEDIA_PLAY_PAUSE 0x4000010fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PLAY_PAUSE) */ +#define SDLK_MEDIA_SELECT 0x40000110u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_SELECT) */ +#define SDLK_AC_NEW 0x40000111u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_NEW) */ +#define SDLK_AC_OPEN 0x40000112u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_OPEN) */ +#define SDLK_AC_CLOSE 0x40000113u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_CLOSE) */ +#define SDLK_AC_EXIT 0x40000114u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_EXIT) */ +#define SDLK_AC_SAVE 0x40000115u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_SAVE) */ +#define SDLK_AC_PRINT 0x40000116u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_PRINT) */ +#define SDLK_AC_PROPERTIES 0x40000117u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_PROPERTIES) */ +#define SDLK_AC_SEARCH 0x40000118u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_SEARCH) */ +#define SDLK_AC_HOME 0x40000119u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_HOME) */ +#define SDLK_AC_BACK 0x4000011au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_BACK) */ +#define SDLK_AC_FORWARD 0x4000011bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_FORWARD) */ +#define SDLK_AC_STOP 0x4000011cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_STOP) */ +#define SDLK_AC_REFRESH 0x4000011du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_REFRESH) */ +#define SDLK_AC_BOOKMARKS 0x4000011eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_BOOKMARKS) */ +#define SDLK_SOFTLEFT 0x4000011fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SOFTLEFT) */ +#define SDLK_SOFTRIGHT 0x40000120u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SOFTRIGHT) */ +#define SDLK_CALL 0x40000121u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CALL) */ +#define SDLK_ENDCALL 0x40000122u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_ENDCALL) */ +#define SDLK_LEFT_TAB 0x20000001u /**< Extended key Left Tab */ +#define SDLK_LEVEL5_SHIFT 0x20000002u /**< Extended key Level 5 Shift */ +#define SDLK_MULTI_KEY_COMPOSE 0x20000003u /**< Extended key Multi-key Compose */ +#define SDLK_LMETA 0x20000004u /**< Extended key Left Meta */ +#define SDLK_RMETA 0x20000005u /**< Extended key Right Meta */ +#define SDLK_LHYPER 0x20000006u /**< Extended key Left Hyper */ +#define SDLK_RHYPER 0x20000007u /**< Extended key Right Hyper */ + +/** + * Valid key modifiers (possibly OR'd together). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint16 SDL_Keymod; + +#define SDL_KMOD_NONE 0x0000u /**< no modifier is applicable. */ +#define SDL_KMOD_LSHIFT 0x0001u /**< the left Shift key is down. */ +#define SDL_KMOD_RSHIFT 0x0002u /**< the right Shift key is down. */ +#define SDL_KMOD_LEVEL5 0x0004u /**< the Level 5 Shift key is down. */ +#define SDL_KMOD_LCTRL 0x0040u /**< the left Ctrl (Control) key is down. */ +#define SDL_KMOD_RCTRL 0x0080u /**< the right Ctrl (Control) key is down. */ +#define SDL_KMOD_LALT 0x0100u /**< the left Alt key is down. */ +#define SDL_KMOD_RALT 0x0200u /**< the right Alt key is down. */ +#define SDL_KMOD_LGUI 0x0400u /**< the left GUI key (often the Windows key) is down. */ +#define SDL_KMOD_RGUI 0x0800u /**< the right GUI key (often the Windows key) is down. */ +#define SDL_KMOD_NUM 0x1000u /**< the Num Lock key (may be located on an extended keypad) is down. */ +#define SDL_KMOD_CAPS 0x2000u /**< the Caps Lock key is down. */ +#define SDL_KMOD_MODE 0x4000u /**< the !AltGr key is down. */ +#define SDL_KMOD_SCROLL 0x8000u /**< the Scroll Lock key is down. */ +#define SDL_KMOD_CTRL (SDL_KMOD_LCTRL | SDL_KMOD_RCTRL) /**< Any Ctrl key is down. */ +#define SDL_KMOD_SHIFT (SDL_KMOD_LSHIFT | SDL_KMOD_RSHIFT) /**< Any Shift key is down. */ +#define SDL_KMOD_ALT (SDL_KMOD_LALT | SDL_KMOD_RALT) /**< Any Alt key is down. */ +#define SDL_KMOD_GUI (SDL_KMOD_LGUI | SDL_KMOD_RGUI) /**< Any GUI key is down. */ + +#endif /* SDL_keycode_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_loadso.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_loadso.h new file mode 100644 index 0000000..f8649d7 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_loadso.h @@ -0,0 +1,145 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: SharedObject */ + +/** + * # CategorySharedObject + * + * System-dependent library loading routines. + * + * Shared objects are code that is programmatically loadable at runtime. + * Windows calls these "DLLs", Linux calls them "shared libraries", etc. + * + * To use them, build such a library, then call SDL_LoadObject() on it. Once + * loaded, you can use SDL_LoadFunction() on that object to find the address + * of its exported symbols. When done with the object, call SDL_UnloadObject() + * to dispose of it. + * + * Some things to keep in mind: + * + * - These functions only work on C function names. Other languages may have + * name mangling and intrinsic language support that varies from compiler to + * compiler. + * - Make sure you declare your function pointers with the same calling + * convention as the actual library function. Your code will crash + * mysteriously if you do not do this. + * - Avoid namespace collisions. If you load a symbol from the library, it is + * not defined whether or not it goes into the global symbol namespace for + * the application. If it does and it conflicts with symbols in your code or + * other shared libraries, you will not get the results you expect. :) + * - Once a library is unloaded, all pointers into it obtained through + * SDL_LoadFunction() become invalid, even if the library is later reloaded. + * Don't unload a library if you plan to use these pointers in the future. + * Notably: beware of giving one of these pointers to atexit(), since it may + * call that pointer after the library unloads. + */ + +#ifndef SDL_loadso_h_ +#define SDL_loadso_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque datatype that represents a loaded shared object. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_LoadObject + * \sa SDL_LoadFunction + * \sa SDL_UnloadObject + */ +typedef struct SDL_SharedObject SDL_SharedObject; + +/** + * Dynamically load a shared object. + * + * \param sofile a system-dependent name of the object file. + * \returns an opaque pointer to the object handle or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFunction + * \sa SDL_UnloadObject + */ +extern SDL_DECLSPEC SDL_SharedObject * SDLCALL SDL_LoadObject(const char *sofile); + +/** + * Look up the address of the named function in a shared object. + * + * This function pointer is no longer valid after calling SDL_UnloadObject(). + * + * This function can only look up C function names. Other languages may have + * name mangling and intrinsic language support that varies from compiler to + * compiler. + * + * Make sure you declare your function pointers with the same calling + * convention as the actual library function. Your code will crash + * mysteriously if you do not do this. + * + * If the requested function doesn't exist, NULL is returned. + * + * \param handle a valid shared object handle returned by SDL_LoadObject(). + * \param name the name of the function to look up. + * \returns a pointer to the function or NULL on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadObject + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_LoadFunction(SDL_SharedObject *handle, const char *name); + +/** + * Unload a shared object from memory. + * + * Note that any pointers from this object looked up through + * SDL_LoadFunction() will no longer be valid. + * + * \param handle a valid shared object handle returned by SDL_LoadObject(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadObject + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnloadObject(SDL_SharedObject *handle); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_loadso_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_locale.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_locale.h new file mode 100644 index 0000000..902843e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_locale.h @@ -0,0 +1,117 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryLocale + * + * SDL locale services. + * + * This provides a way to get a list of preferred locales (language plus + * country) for the user. There is exactly one function: + * SDL_GetPreferredLocales(), which handles all the heavy lifting, and offers + * documentation on all the strange ways humans might have configured their + * language settings. + */ + +#ifndef SDL_locale_h +#define SDL_locale_h + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +extern "C" { +/* *INDENT-ON* */ +#endif + +/** + * A struct to provide locale data. + * + * Locale data is split into a spoken language, like English, and an optional + * country, like Canada. The language will be in ISO-639 format (so English + * would be "en"), and the country, if not NULL, will be an ISO-3166 country + * code (so Canada would be "CA"). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPreferredLocales + */ +typedef struct SDL_Locale +{ + const char *language; /**< A language name, like "en" for English. */ + const char *country; /**< A country, like "US" for America. Can be NULL. */ +} SDL_Locale; + +/** + * Report the user's preferred locale. + * + * Returned language strings are in the format xx, where 'xx' is an ISO-639 + * language specifier (such as "en" for English, "de" for German, etc). + * Country strings are in the format YY, where "YY" is an ISO-3166 country + * code (such as "US" for the United States, "CA" for Canada, etc). Country + * might be NULL if there's no specific guidance on them (so you might get { + * "en", "US" } for American English, but { "en", NULL } means "English + * language, generically"). Language strings are never NULL, except to + * terminate the array. + * + * Please note that not all of these strings are 2 characters; some are three + * or more. + * + * The returned list of locales are in the order of the user's preference. For + * example, a German citizen that is fluent in US English and knows enough + * Japanese to navigate around Tokyo might have a list like: { "de", "en_US", + * "jp", NULL }. Someone from England might prefer British English (where + * "color" is spelled "colour", etc), but will settle for anything like it: { + * "en_GB", "en", NULL }. + * + * This function returns NULL on error, including when the platform does not + * supply this information at all. + * + * This might be a "slow" call that has to query the operating system. It's + * best to ask for this once and save the results. However, this list can + * change, usually because the user has changed a system preference outside of + * your program; SDL will send an SDL_EVENT_LOCALE_CHANGED event in this case, + * if possible, and you can call this function again to get an updated copy of + * preferred locales. + * + * \param count a pointer filled in with the number of locales returned, may + * be NULL. + * \returns a NULL terminated array of locale pointers, or NULL on failure; + * call SDL_GetError() for more information. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Locale ** SDLCALL SDL_GetPreferredLocales(int *count); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +} +/* *INDENT-ON* */ +#endif +#include + +#endif /* SDL_locale_h */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_log.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_log.h new file mode 100644 index 0000000..3fd7ec2 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_log.h @@ -0,0 +1,538 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryLog + * + * Simple log messages with priorities and categories. A message's + * SDL_LogPriority signifies how important the message is. A message's + * SDL_LogCategory signifies from what domain it belongs to. Every category + * has a minimum priority specified: when a message belongs to that category, + * it will only be sent out if it has that minimum priority or higher. + * + * SDL's own logs are sent below the default priority threshold, so they are + * quiet by default. + * + * You can change the log verbosity programmatically using + * SDL_SetLogPriority() or with SDL_SetHint(SDL_HINT_LOGGING, ...), or with + * the "SDL_LOGGING" environment variable. This variable is a comma separated + * set of category=level tokens that define the default logging levels for SDL + * applications. + * + * The category can be a numeric category, one of "app", "error", "assert", + * "system", "audio", "video", "render", "input", "test", or `*` for any + * unspecified category. + * + * The level can be a numeric level, one of "trace", "verbose", "debug", + * "info", "warn", "error", "critical", or "quiet" to disable that category. + * + * You can omit the category if you want to set the logging level for all + * categories. + * + * If this hint isn't set, the default log levels are equivalent to: + * + * `app=info,assert=warn,test=verbose,*=error` + * + * Here's where the messages go on different platforms: + * + * - Windows: debug output stream + * - Android: log output + * - Others: standard error output (stderr) + * + * You don't need to have a newline (`\n`) on the end of messages, the + * functions will do that for you. For consistent behavior cross-platform, you + * shouldn't have any newlines in messages, such as to log multiple lines in + * one call; unusual platform-specific behavior can be observed in such usage. + * Do one log call per line instead, with no newlines in messages. + * + * Each log call is atomic, so you won't see log messages cut off one another + * when logging from multiple threads. + */ + +#ifndef SDL_log_h_ +#define SDL_log_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The predefined log categories + * + * By default the application and gpu categories are enabled at the INFO + * level, the assert category is enabled at the WARN level, test is enabled at + * the VERBOSE level and all other categories are enabled at the ERROR level. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_LogCategory +{ + SDL_LOG_CATEGORY_APPLICATION, + SDL_LOG_CATEGORY_ERROR, + SDL_LOG_CATEGORY_ASSERT, + SDL_LOG_CATEGORY_SYSTEM, + SDL_LOG_CATEGORY_AUDIO, + SDL_LOG_CATEGORY_VIDEO, + SDL_LOG_CATEGORY_RENDER, + SDL_LOG_CATEGORY_INPUT, + SDL_LOG_CATEGORY_TEST, + SDL_LOG_CATEGORY_GPU, + + /* Reserved for future SDL library use */ + SDL_LOG_CATEGORY_RESERVED2, + SDL_LOG_CATEGORY_RESERVED3, + SDL_LOG_CATEGORY_RESERVED4, + SDL_LOG_CATEGORY_RESERVED5, + SDL_LOG_CATEGORY_RESERVED6, + SDL_LOG_CATEGORY_RESERVED7, + SDL_LOG_CATEGORY_RESERVED8, + SDL_LOG_CATEGORY_RESERVED9, + SDL_LOG_CATEGORY_RESERVED10, + + /* Beyond this point is reserved for application use, e.g. + enum { + MYAPP_CATEGORY_AWESOME1 = SDL_LOG_CATEGORY_CUSTOM, + MYAPP_CATEGORY_AWESOME2, + MYAPP_CATEGORY_AWESOME3, + ... + }; + */ + SDL_LOG_CATEGORY_CUSTOM +} SDL_LogCategory; + +/** + * The predefined log priorities + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_LogPriority +{ + SDL_LOG_PRIORITY_INVALID, + SDL_LOG_PRIORITY_TRACE, + SDL_LOG_PRIORITY_VERBOSE, + SDL_LOG_PRIORITY_DEBUG, + SDL_LOG_PRIORITY_INFO, + SDL_LOG_PRIORITY_WARN, + SDL_LOG_PRIORITY_ERROR, + SDL_LOG_PRIORITY_CRITICAL, + SDL_LOG_PRIORITY_COUNT +} SDL_LogPriority; + + +/** + * Set the priority of all log categories. + * + * \param priority the SDL_LogPriority to assign. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResetLogPriorities + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetLogPriorities(SDL_LogPriority priority); + +/** + * Set the priority of a particular log category. + * + * \param category the category to assign a priority to. + * \param priority the SDL_LogPriority to assign. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetLogPriority + * \sa SDL_ResetLogPriorities + * \sa SDL_SetLogPriorities + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetLogPriority(int category, SDL_LogPriority priority); + +/** + * Get the priority of a particular log category. + * + * \param category the category to query. + * \returns the SDL_LogPriority for the requested category. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC SDL_LogPriority SDLCALL SDL_GetLogPriority(int category); + +/** + * Reset all priorities to default. + * + * This is called by SDL_Quit(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogPriorities + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetLogPriorities(void); + +/** + * Set the text prepended to log messages of a given priority. + * + * By default SDL_LOG_PRIORITY_INFO and below have no prefix, and + * SDL_LOG_PRIORITY_WARN and higher have a prefix showing their priority, e.g. + * "WARNING: ". + * + * \param priority the SDL_LogPriority to modify. + * \param prefix the prefix to use for that log priority, or NULL to use no + * prefix. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogPriorities + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetLogPriorityPrefix(SDL_LogPriority priority, const char *prefix); + +/** + * Log a message with SDL_LOG_CATEGORY_APPLICATION and SDL_LOG_PRIORITY_INFO. + * + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_Log(SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(1); + +/** + * Log a message with SDL_LOG_PRIORITY_TRACE. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogTrace(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_VERBOSE. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogVerbose(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_DEBUG. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogDebug(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_INFO. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogInfo(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_WARN. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogWarn(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_ERROR. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogError(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_CRITICAL. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogCritical(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with the specified category and priority. + * + * \param category the category of the message. + * \param priority the priority of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogMessage(int category, + SDL_LogPriority priority, + SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(3); + +/** + * Log a message with the specified category and priority. + * + * \param category the category of the message. + * \param priority the priority of the message. + * \param fmt a printf() style message format string. + * \param ap a variable argument list. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogMessageV(int category, + SDL_LogPriority priority, + SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(3); + +/** + * The prototype for the log output callback function. + * + * This function is called by SDL when there is new text to be logged. A mutex + * is held so that this function is never called by more than one thread at + * once. + * + * \param userdata what was passed as `userdata` to + * SDL_SetLogOutputFunction(). + * \param category the category of the message. + * \param priority the priority of the message. + * \param message the message being output. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void (SDLCALL *SDL_LogOutputFunction)(void *userdata, int category, SDL_LogPriority priority, const char *message); + +/** + * Get the default log output function. + * + * \returns the default log output callback. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogOutputFunction + * \sa SDL_GetLogOutputFunction + */ +extern SDL_DECLSPEC SDL_LogOutputFunction SDLCALL SDL_GetDefaultLogOutputFunction(void); + +/** + * Get the current log output function. + * + * \param callback an SDL_LogOutputFunction filled in with the current log + * callback. + * \param userdata a pointer filled in with the pointer that is passed to + * `callback`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDefaultLogOutputFunction + * \sa SDL_SetLogOutputFunction + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetLogOutputFunction(SDL_LogOutputFunction *callback, void **userdata); + +/** + * Replace the default log output function with one of your own. + * + * \param callback an SDL_LogOutputFunction to call instead of the default. + * \param userdata a pointer that is passed to `callback`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDefaultLogOutputFunction + * \sa SDL_GetLogOutputFunction + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetLogOutputFunction(SDL_LogOutputFunction callback, void *userdata); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_log_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_main.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_main.h new file mode 100644 index 0000000..905d78e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_main.h @@ -0,0 +1,675 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMain + * + * Redefine main() if necessary so that it is called by SDL. + * + * In order to make this consistent on all platforms, the application's main() + * should look like this: + * + * ```c + * #include + * #include + * + * int main(int argc, char *argv[]) + * { + * } + * ``` + * + * SDL will take care of platform specific details on how it gets called. + * + * This is also where an app can be configured to use the main callbacks, via + * the SDL_MAIN_USE_CALLBACKS macro. + * + * SDL_main.h is a "single-header library," which is to say that including + * this header inserts code into your program, and you should only include it + * once in most cases. SDL.h does not include this header automatically. + * + * For more information, see: + * + * https://wiki.libsdl.org/SDL3/README/main-functions + */ + +#ifndef SDL_main_h_ +#define SDL_main_h_ + +#include +#include +#include +#include + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Inform SDL that the app is providing an entry point instead of SDL. + * + * SDL does not define this macro, but will check if it is defined when + * including `SDL_main.h`. If defined, SDL will expect the app to provide the + * proper entry point for the platform, and all the other magic details + * needed, like manually calling SDL_SetMainReady. + * + * Please see [README/main-functions](README/main-functions), (or + * docs/README-main-functions.md in the source tree) for a more detailed + * explanation. + * + * \since This macro is used by the headers since SDL 3.2.0. + */ +#define SDL_MAIN_HANDLED 1 + +/** + * Inform SDL to use the main callbacks instead of main. + * + * SDL does not define this macro, but will check if it is defined when + * including `SDL_main.h`. If defined, SDL will expect the app to provide + * several functions: SDL_AppInit, SDL_AppEvent, SDL_AppIterate, and + * SDL_AppQuit. The app should not provide a `main` function in this case, and + * doing so will likely cause the build to fail. + * + * Please see [README/main-functions](README/main-functions), (or + * docs/README-main-functions.md in the source tree) for a more detailed + * explanation. + * + * \since This macro is used by the headers since SDL 3.2.0. + * + * \sa SDL_AppInit + * \sa SDL_AppEvent + * \sa SDL_AppIterate + * \sa SDL_AppQuit + */ +#define SDL_MAIN_USE_CALLBACKS 1 + +/** + * Defined if the target platform offers a special mainline through SDL. + * + * This won't be defined otherwise. If defined, SDL's headers will redefine + * `main` to `SDL_main`. + * + * This macro is defined by `SDL_main.h`, which is not automatically included + * by `SDL.h`. + * + * Even if available, an app can define SDL_MAIN_HANDLED and provide their + * own, if they know what they're doing. + * + * This macro is used internally by SDL, and apps probably shouldn't rely on it. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MAIN_AVAILABLE + +/** + * Defined if the target platform _requires_ a special mainline through SDL. + * + * This won't be defined otherwise. If defined, SDL's headers will redefine + * `main` to `SDL_main`. + * + * This macro is defined by `SDL_main.h`, which is not automatically included + * by `SDL.h`. + * + * Even if required, an app can define SDL_MAIN_HANDLED and provide their + * own, if they know what they're doing. + * + * This macro is used internally by SDL, and apps probably shouldn't rely on it. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MAIN_NEEDED + +#endif + +#if defined(__has_include) + #if __has_include("SDL_main_private.h") && __has_include("SDL_main_impl_private.h") + #define SDL_PLATFORM_PRIVATE_MAIN + #endif +#endif + +#ifndef SDL_MAIN_HANDLED + #if defined(SDL_PLATFORM_PRIVATE_MAIN) + /* Private platforms may have their own ideas about entry points. */ + #include "SDL_main_private.h" + + #elif defined(SDL_PLATFORM_WIN32) + /* On Windows SDL provides WinMain(), which parses the command line and passes + the arguments to your main function. + + If you provide your own WinMain(), you may define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #elif defined(SDL_PLATFORM_GDK) + /* On GDK, SDL provides a main function that initializes the game runtime. + + If you prefer to write your own WinMain-function instead of having SDL + provide one that calls your main() function, + #define SDL_MAIN_HANDLED before #include'ing SDL_main.h + and call the SDL_RunApp function from your entry point. + */ + #define SDL_MAIN_NEEDED + + #elif defined(SDL_PLATFORM_IOS) + /* On iOS SDL provides a main function that creates an application delegate + and starts the iOS application run loop. + + To use it, just #include SDL_main.h in the source file that contains your + main() function. + + See src/video/uikit/SDL_uikitappdelegate.m for more details. + */ + #define SDL_MAIN_NEEDED + + #elif defined(SDL_PLATFORM_ANDROID) + /* On Android SDL provides a Java class in SDLActivity.java that is the + main activity entry point. + + See docs/README-android.md for more details on extending that class. + */ + #define SDL_MAIN_NEEDED + + /* As this is launched from Java, the real entry point (main() function) + is outside of the the binary built from this code. + This define makes sure that, unlike on other platforms, SDL_main.h + and SDL_main_impl.h export an `SDL_main()` function (to be called + from Java), but don't implement a native `int main(int argc, char* argv[])` + or similar. + */ + #define SDL_MAIN_EXPORTED + + #elif defined(SDL_PLATFORM_EMSCRIPTEN) + /* On Emscripten, SDL provides a main function that converts URL + parameters that start with "SDL_" to environment variables, so + they can be used as SDL hints, etc. + + This is 100% optional, so if you don't want this to happen, you may + define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #elif defined(SDL_PLATFORM_PSP) + /* On PSP SDL provides a main function that sets the module info, + activates the GPU and starts the thread required to be able to exit + the software. + + If you provide this yourself, you may define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #elif defined(SDL_PLATFORM_PS2) + #define SDL_MAIN_AVAILABLE + + #define SDL_PS2_SKIP_IOP_RESET() \ + void reset_IOP(); \ + void reset_IOP() {} + + #elif defined(SDL_PLATFORM_3DS) + /* + On N3DS, SDL provides a main function that sets up the screens + and storage. + + If you provide this yourself, you may define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #endif +#endif /* SDL_MAIN_HANDLED */ + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to tag a main entry point function as exported. + * + * Most platforms don't need this, and the macro will be defined to nothing. + * Some, like Android, keep the entry points in a shared library and need to + * explicitly export the symbols. + * + * External code rarely needs this, and if it needs something, it's almost + * always SDL_DECLSPEC instead. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_DECLSPEC + */ +#define SDLMAIN_DECLSPEC + +#elif defined(SDL_MAIN_EXPORTED) +/* We need to export SDL_main so it can be launched from external code, + like SDLActivity.java on Android */ +#define SDLMAIN_DECLSPEC SDL_DECLSPEC +#else +/* usually this is empty */ +#define SDLMAIN_DECLSPEC +#endif /* SDL_MAIN_EXPORTED */ + +#if defined(SDL_MAIN_NEEDED) || defined(SDL_MAIN_AVAILABLE) || defined(SDL_MAIN_USE_CALLBACKS) +#define main SDL_main +#endif + +#include +#include +#ifdef __cplusplus +extern "C" { +#endif + +/* + * You can (optionally!) define SDL_MAIN_USE_CALLBACKS before including + * SDL_main.h, and then your application will _not_ have a standard + * "main" entry point. Instead, it will operate as a collection of + * functions that are called as necessary by the system. On some + * platforms, this is just a layer where SDL drives your program + * instead of your program driving SDL, on other platforms this might + * hook into the OS to manage the lifecycle. Programs on most platforms + * can use whichever approach they prefer, but the decision boils down + * to: + * + * - Using a standard "main" function: this works like it always has for + * the past 50+ years in C programming, and your app is in control. + * - Using the callback functions: this might clean up some code, + * avoid some #ifdef blocks in your program for some platforms, be more + * resource-friendly to the system, and possibly be the primary way to + * access some future platforms (but none require this at the moment). + * + * This is up to the app; both approaches are considered valid and supported + * ways to write SDL apps. + * + * If using the callbacks, don't define a "main" function. Instead, implement + * the functions listed below in your program. + */ +#ifdef SDL_MAIN_USE_CALLBACKS + +/** + * App-implemented initial entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called by SDL once, at startup. The function should + * initialize whatever is necessary, possibly create windows and open audio + * devices, etc. The `argc` and `argv` parameters work like they would with a + * standard "main" function. + * + * This function should not go into an infinite mainloop; it should do any + * one-time setup it requires and then return. + * + * The app may optionally assign a pointer to `*appstate`. This pointer will + * be provided on every future call to the other entry points, to allow + * application state to be preserved between functions without the app needing + * to use a global variable. If this isn't set, the pointer will be NULL in + * future entry points. + * + * If this function returns SDL_APP_CONTINUE, the app will proceed to normal + * operation, and will begin receiving repeated calls to SDL_AppIterate and + * SDL_AppEvent for the life of the program. If this function returns + * SDL_APP_FAILURE, SDL will call SDL_AppQuit and terminate the process with + * an exit code that reports an error to the platform. If it returns + * SDL_APP_SUCCESS, SDL calls SDL_AppQuit and terminates with an exit code + * that reports success to the platform. + * + * This function is called by SDL on the main thread. + * + * \param appstate a place where the app can optionally store a pointer for + * future use. + * \param argc the standard ANSI C main's argc; number of elements in `argv`. + * \param argv the standard ANSI C main's argv; array of command line + * arguments. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppIterate + * \sa SDL_AppEvent + * \sa SDL_AppQuit + */ +extern SDLMAIN_DECLSPEC SDL_AppResult SDLCALL SDL_AppInit(void **appstate, int argc, char *argv[]); + +/** + * App-implemented iteration entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called repeatedly by SDL after SDL_AppInit returns 0. The + * function should operate as a single iteration the program's primary loop; + * it should update whatever state it needs and draw a new frame of video, + * usually. + * + * On some platforms, this function will be called at the refresh rate of the + * display (which might change during the life of your app!). There are no + * promises made about what frequency this function might run at. You should + * use SDL's timer functions if you need to see how much time has passed since + * the last iteration. + * + * There is no need to process the SDL event queue during this function; SDL + * will send events as they arrive in SDL_AppEvent, and in most cases the + * event queue will be empty when this function runs anyhow. + * + * This function should not go into an infinite mainloop; it should do one + * iteration of whatever the program does and return. + * + * The `appstate` parameter is an optional pointer provided by the app during + * SDL_AppInit(). If the app never provided a pointer, this will be NULL. + * + * If this function returns SDL_APP_CONTINUE, the app will continue normal + * operation, receiving repeated calls to SDL_AppIterate and SDL_AppEvent for + * the life of the program. If this function returns SDL_APP_FAILURE, SDL will + * call SDL_AppQuit and terminate the process with an exit code that reports + * an error to the platform. If it returns SDL_APP_SUCCESS, SDL calls + * SDL_AppQuit and terminates with an exit code that reports success to the + * platform. + * + * This function is called by SDL on the main thread. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \threadsafety This function may get called concurrently with SDL_AppEvent() + * for events not pushed on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppInit + * \sa SDL_AppEvent + */ +extern SDLMAIN_DECLSPEC SDL_AppResult SDLCALL SDL_AppIterate(void *appstate); + +/** + * App-implemented event entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called as needed by SDL after SDL_AppInit returns + * SDL_APP_CONTINUE. It is called once for each new event. + * + * There is (currently) no guarantee about what thread this will be called + * from; whatever thread pushes an event onto SDL's queue will trigger this + * function. SDL is responsible for pumping the event queue between each call + * to SDL_AppIterate, so in normal operation one should only get events in a + * serial fashion, but be careful if you have a thread that explicitly calls + * SDL_PushEvent. SDL itself will push events to the queue on the main thread. + * + * Events sent to this function are not owned by the app; if you need to save + * the data, you should copy it. + * + * This function should not go into an infinite mainloop; it should handle the + * provided event appropriately and return. + * + * The `appstate` parameter is an optional pointer provided by the app during + * SDL_AppInit(). If the app never provided a pointer, this will be NULL. + * + * If this function returns SDL_APP_CONTINUE, the app will continue normal + * operation, receiving repeated calls to SDL_AppIterate and SDL_AppEvent for + * the life of the program. If this function returns SDL_APP_FAILURE, SDL will + * call SDL_AppQuit and terminate the process with an exit code that reports + * an error to the platform. If it returns SDL_APP_SUCCESS, SDL calls + * SDL_AppQuit and terminates with an exit code that reports success to the + * platform. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param event the new event for the app to examine. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \threadsafety This function may get called concurrently with + * SDL_AppIterate() or SDL_AppQuit() for events not pushed from + * the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppInit + * \sa SDL_AppIterate + */ +extern SDLMAIN_DECLSPEC SDL_AppResult SDLCALL SDL_AppEvent(void *appstate, SDL_Event *event); + +/** + * App-implemented deinit entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called once by SDL before terminating the program. + * + * This function will be called no matter what, even if SDL_AppInit requests + * termination. + * + * This function should not go into an infinite mainloop; it should + * deinitialize any resources necessary, perform whatever shutdown activities, + * and return. + * + * You do not need to call SDL_Quit() in this function, as SDL will call it + * after this function returns and before the process terminates, but it is + * safe to do so. + * + * The `appstate` parameter is an optional pointer provided by the app during + * SDL_AppInit(). If the app never provided a pointer, this will be NULL. This + * function call is the last time this pointer will be provided, so any + * resources to it should be cleaned up here. + * + * This function is called by SDL on the main thread. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param result the result code that terminated the app (success or failure). + * + * \threadsafety SDL_AppEvent() may get called concurrently with this function + * if other threads that push events are still active. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppInit + */ +extern SDLMAIN_DECLSPEC void SDLCALL SDL_AppQuit(void *appstate, SDL_AppResult result); + +#endif /* SDL_MAIN_USE_CALLBACKS */ + + +/** + * The prototype for the application's main() function + * + * \param argc an ANSI-C style main function's argc. + * \param argv an ANSI-C style main function's argv. + * \returns an ANSI-C main return code; generally 0 is considered successful + * program completion, and small non-zero values are considered + * errors. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef int (SDLCALL *SDL_main_func)(int argc, char *argv[]); + +/** + * An app-supplied function for program entry. + * + * Apps do not directly create this function; they should create a standard + * ANSI-C `main` function instead. If SDL needs to insert some startup code + * before `main` runs, or the platform doesn't actually _use_ a function + * called "main", SDL will do some macro magic to redefine `main` to + * `SDL_main` and provide its own `main`. + * + * Apps should include `SDL_main.h` in the same file as their `main` function, + * and they should not use that symbol for anything else in that file, as it + * might get redefined. + * + * This function is only provided by the app if it isn't using + * SDL_MAIN_USE_CALLBACKS. + * + * Program startup is a surprisingly complex topic. Please see + * [README/main-functions](README/main-functions), (or + * docs/README-main-functions.md in the source tree) for a more detailed + * explanation. + * + * \param argc an ANSI-C style main function's argc. + * \param argv an ANSI-C style main function's argv. + * \returns an ANSI-C main return code; generally 0 is considered successful + * program completion, and small non-zero values are considered + * errors. + * + * \threadsafety This is the program entry point. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDLMAIN_DECLSPEC int SDLCALL SDL_main(int argc, char *argv[]); + +/** + * Circumvent failure of SDL_Init() when not using SDL_main() as an entry + * point. + * + * This function is defined in SDL_main.h, along with the preprocessor rule to + * redefine main() as SDL_main(). Thus to ensure that your main() function + * will not be changed it is necessary to define SDL_MAIN_HANDLED before + * including SDL.h. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetMainReady(void); + +/** + * Initializes and launches an SDL application, by doing platform-specific + * initialization before calling your mainFunction and cleanups after it + * returns, if that is needed for a specific platform, otherwise it just calls + * mainFunction. + * + * You can use this if you want to use your own main() implementation without + * using SDL_main (like when using SDL_MAIN_HANDLED). When using this, you do + * *not* need SDL_SetMainReady(). + * + * \param argc the argc parameter from the application's main() function, or 0 + * if the platform's main-equivalent has no argc. + * \param argv the argv parameter from the application's main() function, or + * NULL if the platform's main-equivalent has no argv. + * \param mainFunction your SDL app's C-style main(). NOT the function you're + * calling this from! Its name doesn't matter; it doesn't + * literally have to be `main`. + * \param reserved should be NULL (reserved for future use, will probably be + * platform-specific then). + * \returns the return value from mainFunction: 0 on success, otherwise + * failure; SDL_GetError() might have more information on the + * failure. + * + * \threadsafety Generally this is called once, near startup, from the + * process's initial thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_RunApp(int argc, char *argv[], SDL_main_func mainFunction, void *reserved); + +/** + * An entry point for SDL's use in SDL_MAIN_USE_CALLBACKS. + * + * Generally, you should not call this function directly. This only exists to + * hand off work into SDL as soon as possible, where it has a lot more control + * and functionality available, and make the inline code in SDL_main.h as + * small as possible. + * + * Not all platforms use this, it's actual use is hidden in a magic + * header-only library, and you should not call this directly unless you + * _really_ know what you're doing. + * + * \param argc standard Unix main argc. + * \param argv standard Unix main argv. + * \param appinit the application's SDL_AppInit function. + * \param appiter the application's SDL_AppIterate function. + * \param appevent the application's SDL_AppEvent function. + * \param appquit the application's SDL_AppQuit function. + * \returns standard Unix main return value. + * + * \threadsafety It is not safe to call this anywhere except as the only + * function call in SDL_main. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_EnterAppMainCallbacks(int argc, char *argv[], SDL_AppInit_func appinit, SDL_AppIterate_func appiter, SDL_AppEvent_func appevent, SDL_AppQuit_func appquit); + + +#if defined(SDL_PLATFORM_WINDOWS) + +/** + * Register a win32 window class for SDL's use. + * + * This can be called to set the application window class at startup. It is + * safe to call this multiple times, as long as every call is eventually + * paired with a call to SDL_UnregisterApp, but a second registration attempt + * while a previous registration is still active will be ignored, other than + * to increment a counter. + * + * Most applications do not need to, and should not, call this directly; SDL + * will call it when initializing the video subsystem. + * + * \param name the window class name, in UTF-8 encoding. If NULL, SDL + * currently uses "SDL_app" but this isn't guaranteed. + * \param style the value to use in WNDCLASSEX::style. If `name` is NULL, SDL + * currently uses `(CS_BYTEALIGNCLIENT | CS_OWNDC)` regardless of + * what is specified here. + * \param hInst the HINSTANCE to use in WNDCLASSEX::hInstance. If zero, SDL + * will use `GetModuleHandle(NULL)` instead. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RegisterApp(const char *name, Uint32 style, void *hInst); + +/** + * Deregister the win32 window class from an SDL_RegisterApp call. + * + * This can be called to undo the effects of SDL_RegisterApp. + * + * Most applications do not need to, and should not, call this directly; SDL + * will call it when deinitializing the video subsystem. + * + * It is safe to call this multiple times, as long as every call is eventually + * paired with a prior call to SDL_RegisterApp. The window class will only be + * deregistered when the registration counter in SDL_RegisterApp decrements to + * zero through calls to this function. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnregisterApp(void); + +#endif /* defined(SDL_PLATFORM_WINDOWS) */ + +/** + * Callback from the application to let the suspend continue. + * + * This function is only needed for Xbox GDK support; all other platforms will + * do nothing and set an "unsupported" error message. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_GDKSuspendComplete(void); + +#ifdef __cplusplus +} +#endif + +#include + +#if !defined(SDL_MAIN_HANDLED) && !defined(SDL_MAIN_NOIMPL) + /* include header-only SDL_main implementations */ + #if defined(SDL_MAIN_USE_CALLBACKS) || defined(SDL_MAIN_NEEDED) || defined(SDL_MAIN_AVAILABLE) + /* platforms which main (-equivalent) can be implemented in plain C */ + #include + #endif +#endif + +#endif /* SDL_main_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_main_impl.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_main_impl.h new file mode 100644 index 0000000..14ebb42 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_main_impl.h @@ -0,0 +1,151 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Main */ + +#ifndef SDL_main_impl_h_ +#define SDL_main_impl_h_ + +#ifndef SDL_main_h_ +#error "This header should not be included directly, but only via SDL_main.h!" +#endif + +/* if someone wants to include SDL_main.h but doesn't want the main handing magic, + (maybe to call SDL_RegisterApp()) they can #define SDL_MAIN_HANDLED first. + SDL_MAIN_NOIMPL is for SDL-internal usage (only affects implementation, + not definition of SDL_MAIN_AVAILABLE etc in SDL_main.h) and if the user wants + to have the SDL_main implementation (from this header) in another source file + than their main() function, for example if SDL_main requires C++ + and main() is implemented in plain C */ +#if !defined(SDL_MAIN_HANDLED) && !defined(SDL_MAIN_NOIMPL) + + /* the implementations below must be able to use the implement real main(), nothing renamed + (the user's main() will be renamed to SDL_main so it can be called from here) */ + #ifdef main + #undef main + #endif + + #ifdef SDL_MAIN_USE_CALLBACKS + + #if 0 + /* currently there are no platforms that _need_ a magic entry point here + for callbacks, but if one shows up, implement it here. */ + + #else /* use a standard SDL_main, which the app SHOULD NOT ALSO SUPPLY. */ + + /* this define makes the normal SDL_main entry point stuff work...we just provide SDL_main() instead of the app. */ + #define SDL_MAIN_CALLBACK_STANDARD 1 + + int SDL_main(int argc, char **argv) + { + return SDL_EnterAppMainCallbacks(argc, argv, SDL_AppInit, SDL_AppIterate, SDL_AppEvent, SDL_AppQuit); + } + + #endif /* platform-specific tests */ + + #endif /* SDL_MAIN_USE_CALLBACKS */ + + + /* set up the usual SDL_main stuff if we're not using callbacks or if we are but need the normal entry point, + unless the real entry point needs to be somewhere else entirely, like Android where it's in Java code */ + #if (!defined(SDL_MAIN_USE_CALLBACKS) || defined(SDL_MAIN_CALLBACK_STANDARD)) && !defined(SDL_MAIN_EXPORTED) + + #if defined(SDL_PLATFORM_PRIVATE_MAIN) + /* Private platforms may have their own ideas about entry points. */ + #include "SDL_main_impl_private.h" + + #elif defined(SDL_PLATFORM_WINDOWS) + + /* these defines/typedefs are needed for the WinMain() definition */ + #ifndef WINAPI + #define WINAPI __stdcall + #endif + + typedef struct HINSTANCE__ * HINSTANCE; + typedef char *LPSTR; + typedef wchar_t *PWSTR; + + /* The VC++ compiler needs main/wmain defined, but not for GDK */ + #if defined(_MSC_VER) && !defined(SDL_PLATFORM_GDK) + + /* This is where execution begins [console apps] */ + #if defined(UNICODE) && UNICODE + int wmain(int argc, wchar_t *wargv[], wchar_t *wenvp) + { + (void)argc; + (void)wargv; + (void)wenvp; + return SDL_RunApp(0, NULL, SDL_main, NULL); + } + #else /* ANSI */ + int main(int argc, char *argv[]) + { + (void)argc; + (void)argv; + return SDL_RunApp(0, NULL, SDL_main, NULL); + } + #endif /* UNICODE */ + + #endif /* _MSC_VER && ! SDL_PLATFORM_GDK */ + + /* This is where execution begins [windowed apps and GDK] */ + + #ifdef __cplusplus + extern "C" { + #endif + + #if defined(UNICODE) && UNICODE + int WINAPI wWinMain(HINSTANCE hInst, HINSTANCE hPrev, PWSTR szCmdLine, int sw) + #else /* ANSI */ + int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR szCmdLine, int sw) + #endif + { + (void)hInst; + (void)hPrev; + (void)szCmdLine; + (void)sw; + return SDL_RunApp(0, NULL, SDL_main, NULL); + } + + #ifdef __cplusplus + } /* extern "C" */ + #endif + + /* end of SDL_PLATFORM_WINDOWS impls */ + + #else /* platforms that use a standard main() and just call SDL_RunApp(), like iOS and 3DS */ + int main(int argc, char *argv[]) + { + return SDL_RunApp(argc, argv, SDL_main, NULL); + } + + /* end of impls for standard-conforming platforms */ + + #endif /* SDL_PLATFORM_WIN32 etc */ + + #endif /* !defined(SDL_MAIN_USE_CALLBACKS) || defined(SDL_MAIN_CALLBACK_STANDARD) */ + + /* rename users main() function to SDL_main() so it can be called from the wrappers above */ + #define main SDL_main + +#endif /* SDL_MAIN_HANDLED */ + +#endif /* SDL_main_impl_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_messagebox.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_messagebox.h new file mode 100644 index 0000000..365ae36 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_messagebox.h @@ -0,0 +1,226 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMessagebox + * + * SDL offers a simple message box API, which is useful for simple alerts, + * such as informing the user when something fatal happens at startup without + * the need to build a UI for it (or informing the user _before_ your UI is + * ready). + * + * These message boxes are native system dialogs where possible. + * + * There is both a customizable function (SDL_ShowMessageBox()) that offers + * lots of options for what to display and reports on what choice the user + * made, and also a much-simplified version (SDL_ShowSimpleMessageBox()), + * merely takes a text message and title, and waits until the user presses a + * single "OK" UI button. Often, this is all that is necessary. + */ + +#ifndef SDL_messagebox_h_ +#define SDL_messagebox_h_ + +#include +#include +#include /* For SDL_Window */ + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Message box flags. + * + * If supported will display warning icon, etc. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_MessageBoxFlags; + +#define SDL_MESSAGEBOX_ERROR 0x00000010u /**< error dialog */ +#define SDL_MESSAGEBOX_WARNING 0x00000020u /**< warning dialog */ +#define SDL_MESSAGEBOX_INFORMATION 0x00000040u /**< informational dialog */ +#define SDL_MESSAGEBOX_BUTTONS_LEFT_TO_RIGHT 0x00000080u /**< buttons placed left to right */ +#define SDL_MESSAGEBOX_BUTTONS_RIGHT_TO_LEFT 0x00000100u /**< buttons placed right to left */ + +/** + * SDL_MessageBoxButtonData flags. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_MessageBoxButtonFlags; + +#define SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT 0x00000001u /**< Marks the default button when return is hit */ +#define SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT 0x00000002u /**< Marks the default button when escape is hit */ + +/** + * Individual button data. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxButtonData +{ + SDL_MessageBoxButtonFlags flags; + int buttonID; /**< User defined button id (value returned via SDL_ShowMessageBox) */ + const char *text; /**< The UTF-8 button text */ +} SDL_MessageBoxButtonData; + +/** + * RGB value used in a message box color scheme + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxColor +{ + Uint8 r, g, b; +} SDL_MessageBoxColor; + +/** + * An enumeration of indices inside the colors array of + * SDL_MessageBoxColorScheme. + */ +typedef enum SDL_MessageBoxColorType +{ + SDL_MESSAGEBOX_COLOR_BACKGROUND, + SDL_MESSAGEBOX_COLOR_TEXT, + SDL_MESSAGEBOX_COLOR_BUTTON_BORDER, + SDL_MESSAGEBOX_COLOR_BUTTON_BACKGROUND, + SDL_MESSAGEBOX_COLOR_BUTTON_SELECTED, + SDL_MESSAGEBOX_COLOR_COUNT /**< Size of the colors array of SDL_MessageBoxColorScheme. */ +} SDL_MessageBoxColorType; + +/** + * A set of colors to use for message box dialogs + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxColorScheme +{ + SDL_MessageBoxColor colors[SDL_MESSAGEBOX_COLOR_COUNT]; +} SDL_MessageBoxColorScheme; + +/** + * MessageBox structure containing title, text, window, etc. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxData +{ + SDL_MessageBoxFlags flags; + SDL_Window *window; /**< Parent window, can be NULL */ + const char *title; /**< UTF-8 title */ + const char *message; /**< UTF-8 message text */ + + int numbuttons; + const SDL_MessageBoxButtonData *buttons; + + const SDL_MessageBoxColorScheme *colorScheme; /**< SDL_MessageBoxColorScheme, can be NULL to use system settings */ +} SDL_MessageBoxData; + +/** + * Create a modal message box. + * + * If your needs aren't complex, it might be easier to use + * SDL_ShowSimpleMessageBox. + * + * This function should be called on the thread that created the parent + * window, or on the main thread if the messagebox has no parent. It will + * block execution of that thread until the user clicks a button or closes the + * messagebox. + * + * This function may be called at any time, even before SDL_Init(). This makes + * it useful for reporting errors like a failure to create a renderer or + * OpenGL context. + * + * On X11, SDL rolls its own dialog box with X11 primitives instead of a + * formal toolkit like GTK+ or Qt. + * + * Note that if SDL_Init() would fail because there isn't any available video + * target, this function is likely to fail for the same reasons. If this is a + * concern, check the return value from this function and fall back to writing + * to stderr if you can. + * + * \param messageboxdata the SDL_MessageBoxData structure with title, text and + * other options. + * \param buttonid the pointer to which user id of hit button should be + * copied. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShowSimpleMessageBox + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid); + +/** + * Display a simple modal message box. + * + * If your needs aren't complex, this function is preferred over + * SDL_ShowMessageBox. + * + * `flags` may be any of the following: + * + * - `SDL_MESSAGEBOX_ERROR`: error dialog + * - `SDL_MESSAGEBOX_WARNING`: warning dialog + * - `SDL_MESSAGEBOX_INFORMATION`: informational dialog + * + * This function should be called on the thread that created the parent + * window, or on the main thread if the messagebox has no parent. It will + * block execution of that thread until the user clicks a button or closes the + * messagebox. + * + * This function may be called at any time, even before SDL_Init(). This makes + * it useful for reporting errors like a failure to create a renderer or + * OpenGL context. + * + * On X11, SDL rolls its own dialog box with X11 primitives instead of a + * formal toolkit like GTK+ or Qt. + * + * Note that if SDL_Init() would fail because there isn't any available video + * target, this function is likely to fail for the same reasons. If this is a + * concern, check the return value from this function and fall back to writing + * to stderr if you can. + * + * \param flags an SDL_MessageBoxFlags value. + * \param title UTF-8 title text. + * \param message UTF-8 message text. + * \param window the parent window, or NULL for no parent. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShowMessageBox + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowSimpleMessageBox(SDL_MessageBoxFlags flags, const char *title, const char *message, SDL_Window *window); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_messagebox_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_metal.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_metal.h new file mode 100644 index 0000000..14b1bc8 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_metal.h @@ -0,0 +1,107 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMetal + * + * Functions to creating Metal layers and views on SDL windows. + * + * This provides some platform-specific glue for Apple platforms. Most macOS + * and iOS apps can use SDL without these functions, but this API they can be + * useful for specific OS-level integration tasks. + */ + +#ifndef SDL_metal_h_ +#define SDL_metal_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A handle to a CAMetalLayer-backed NSView (macOS) or UIView (iOS/tvOS). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_MetalView; + +/** + * \name Metal support functions + */ +/* @{ */ + +/** + * Create a CAMetalLayer-backed NSView/UIView and attach it to the specified + * window. + * + * On macOS, this does *not* associate a MTLDevice with the CAMetalLayer on + * its own. It is up to user code to do that. + * + * The returned handle can be casted directly to a NSView or UIView. To access + * the backing CAMetalLayer, call SDL_Metal_GetLayer(). + * + * \param window the window. + * \returns handle NSView or UIView. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Metal_DestroyView + * \sa SDL_Metal_GetLayer + */ +extern SDL_DECLSPEC SDL_MetalView SDLCALL SDL_Metal_CreateView(SDL_Window *window); + +/** + * Destroy an existing SDL_MetalView object. + * + * This should be called before SDL_DestroyWindow, if SDL_Metal_CreateView was + * called after SDL_CreateWindow. + * + * \param view the SDL_MetalView object. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Metal_CreateView + */ +extern SDL_DECLSPEC void SDLCALL SDL_Metal_DestroyView(SDL_MetalView view); + +/** + * Get a pointer to the backing CAMetalLayer for the given view. + * + * \param view the SDL_MetalView object. + * \returns a pointer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_Metal_GetLayer(SDL_MetalView view); + +/* @} *//* Metal support functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_metal_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_misc.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_misc.h new file mode 100644 index 0000000..3dd6fcd --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_misc.h @@ -0,0 +1,78 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMisc + * + * SDL API functions that don't fit elsewhere. + */ + +#ifndef SDL_misc_h_ +#define SDL_misc_h_ + +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Open a URL/URI in the browser or other appropriate external application. + * + * Open a URL in a separate, system-provided application. How this works will + * vary wildly depending on the platform. This will likely launch what makes + * sense to handle a specific URL's protocol (a web browser for `http://`, + * etc), but it might also be able to launch file managers for directories and + * other things. + * + * What happens when you open a URL varies wildly as well: your game window + * may lose focus (and may or may not lose focus if your game was fullscreen + * or grabbing input at the time). On mobile devices, your app will likely + * move to the background or your process might be paused. Any given platform + * may or may not handle a given URL. + * + * If this is unimplemented (or simply unavailable) for a platform, this will + * fail with an error. A successful result does not mean the URL loaded, just + * that we launched _something_ to handle it (or at least believe we did). + * + * All this to say: this function can be useful, but you should definitely + * test it on every platform you target. + * + * \param url a valid URL/URI to open. Use `file:///full/path/to/file` for + * local files, if supported. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_OpenURL(const char *url); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_misc_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_mouse.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_mouse.h new file mode 100644 index 0000000..864135d --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_mouse.h @@ -0,0 +1,689 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMouse + * + * Any GUI application has to deal with the mouse, and SDL provides functions + * to manage mouse input and the displayed cursor. + * + * Most interactions with the mouse will come through the event subsystem. + * Moving a mouse generates an SDL_EVENT_MOUSE_MOTION event, pushing a button + * generates SDL_EVENT_MOUSE_BUTTON_DOWN, etc, but one can also query the + * current state of the mouse at any time with SDL_GetMouseState(). + * + * For certain games, it's useful to disassociate the mouse cursor from mouse + * input. An FPS, for example, would not want the player's motion to stop as + * the mouse hits the edge of the window. For these scenarios, use + * SDL_SetWindowRelativeMouseMode(), which hides the cursor, grabs mouse input + * to the window, and reads mouse input no matter how far it moves. + * + * Games that want the system to track the mouse but want to draw their own + * cursor can use SDL_HideCursor() and SDL_ShowCursor(). It might be more + * efficient to let the system manage the cursor, if possible, using + * SDL_SetCursor() with a custom image made through SDL_CreateColorCursor(), + * or perhaps just a specific system cursor from SDL_CreateSystemCursor(). + * + * SDL can, on many platforms, differentiate between multiple connected mice, + * allowing for interesting input scenarios and multiplayer games. They can be + * enumerated with SDL_GetMice(), and SDL will send SDL_EVENT_MOUSE_ADDED and + * SDL_EVENT_MOUSE_REMOVED events as they are connected and unplugged. + * + * Since many apps only care about basic mouse input, SDL offers a virtual + * mouse device for touch and pen input, which often can make a desktop + * application work on a touchscreen phone without any code changes. Apps that + * care about touch/pen separately from mouse input should filter out events + * with a `which` field of SDL_TOUCH_MOUSEID/SDL_PEN_MOUSEID. + */ + +#ifndef SDL_mouse_h_ +#define SDL_mouse_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a mouse for the time it is connected to the system, + * and is never reused for the lifetime of the application. + * + * If the mouse is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_MouseID; + +/** + * The structure used to identify an SDL cursor. + * + * This is opaque data. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Cursor SDL_Cursor; + +/** + * Cursor types for SDL_CreateSystemCursor(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_SystemCursor +{ + SDL_SYSTEM_CURSOR_DEFAULT, /**< Default cursor. Usually an arrow. */ + SDL_SYSTEM_CURSOR_TEXT, /**< Text selection. Usually an I-beam. */ + SDL_SYSTEM_CURSOR_WAIT, /**< Wait. Usually an hourglass or watch or spinning ball. */ + SDL_SYSTEM_CURSOR_CROSSHAIR, /**< Crosshair. */ + SDL_SYSTEM_CURSOR_PROGRESS, /**< Program is busy but still interactive. Usually it's WAIT with an arrow. */ + SDL_SYSTEM_CURSOR_NWSE_RESIZE, /**< Double arrow pointing northwest and southeast. */ + SDL_SYSTEM_CURSOR_NESW_RESIZE, /**< Double arrow pointing northeast and southwest. */ + SDL_SYSTEM_CURSOR_EW_RESIZE, /**< Double arrow pointing west and east. */ + SDL_SYSTEM_CURSOR_NS_RESIZE, /**< Double arrow pointing north and south. */ + SDL_SYSTEM_CURSOR_MOVE, /**< Four pointed arrow pointing north, south, east, and west. */ + SDL_SYSTEM_CURSOR_NOT_ALLOWED, /**< Not permitted. Usually a slashed circle or crossbones. */ + SDL_SYSTEM_CURSOR_POINTER, /**< Pointer that indicates a link. Usually a pointing hand. */ + SDL_SYSTEM_CURSOR_NW_RESIZE, /**< Window resize top-left. This may be a single arrow or a double arrow like NWSE_RESIZE. */ + SDL_SYSTEM_CURSOR_N_RESIZE, /**< Window resize top. May be NS_RESIZE. */ + SDL_SYSTEM_CURSOR_NE_RESIZE, /**< Window resize top-right. May be NESW_RESIZE. */ + SDL_SYSTEM_CURSOR_E_RESIZE, /**< Window resize right. May be EW_RESIZE. */ + SDL_SYSTEM_CURSOR_SE_RESIZE, /**< Window resize bottom-right. May be NWSE_RESIZE. */ + SDL_SYSTEM_CURSOR_S_RESIZE, /**< Window resize bottom. May be NS_RESIZE. */ + SDL_SYSTEM_CURSOR_SW_RESIZE, /**< Window resize bottom-left. May be NESW_RESIZE. */ + SDL_SYSTEM_CURSOR_W_RESIZE, /**< Window resize left. May be EW_RESIZE. */ + SDL_SYSTEM_CURSOR_COUNT +} SDL_SystemCursor; + +/** + * Scroll direction types for the Scroll event + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_MouseWheelDirection +{ + SDL_MOUSEWHEEL_NORMAL, /**< The scroll direction is normal */ + SDL_MOUSEWHEEL_FLIPPED /**< The scroll direction is flipped / natural */ +} SDL_MouseWheelDirection; + +/** + * A bitmask of pressed mouse buttons, as reported by SDL_GetMouseState, etc. + * + * - Button 1: Left mouse button + * - Button 2: Middle mouse button + * - Button 3: Right mouse button + * - Button 4: Side mouse button 1 + * - Button 5: Side mouse button 2 + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetMouseState + * \sa SDL_GetGlobalMouseState + * \sa SDL_GetRelativeMouseState + */ +typedef Uint32 SDL_MouseButtonFlags; + +#define SDL_BUTTON_LEFT 1 +#define SDL_BUTTON_MIDDLE 2 +#define SDL_BUTTON_RIGHT 3 +#define SDL_BUTTON_X1 4 +#define SDL_BUTTON_X2 5 + +#define SDL_BUTTON_MASK(X) (1u << ((X)-1)) +#define SDL_BUTTON_LMASK SDL_BUTTON_MASK(SDL_BUTTON_LEFT) +#define SDL_BUTTON_MMASK SDL_BUTTON_MASK(SDL_BUTTON_MIDDLE) +#define SDL_BUTTON_RMASK SDL_BUTTON_MASK(SDL_BUTTON_RIGHT) +#define SDL_BUTTON_X1MASK SDL_BUTTON_MASK(SDL_BUTTON_X1) +#define SDL_BUTTON_X2MASK SDL_BUTTON_MASK(SDL_BUTTON_X2) + + +/* Function prototypes */ + +/** + * Return whether a mouse is currently connected. + * + * \returns true if a mouse is connected, false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasMouse(void); + +/** + * Get a list of currently connected mice. + * + * Note that this will include any device or virtual driver that includes + * mouse functionality, including some game controllers, KVM switches, etc. + * You should wait for input from a device before you consider it actively in + * use. + * + * \param count a pointer filled in with the number of mice returned, may be + * NULL. + * \returns a 0 terminated array of mouse instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMouseNameForID + * \sa SDL_HasMouse + */ +extern SDL_DECLSPEC SDL_MouseID * SDLCALL SDL_GetMice(int *count); + +/** + * Get the name of a mouse. + * + * This function returns "" if the mouse doesn't have a name. + * + * \param instance_id the mouse instance ID. + * \returns the name of the selected mouse, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMice + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetMouseNameForID(SDL_MouseID instance_id); + +/** + * Get the window which currently has mouse focus. + * + * \returns the window with mouse focus. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetMouseFocus(void); + +/** + * Query SDL's cache for the synchronous mouse button state and the + * window-relative SDL-cursor position. + * + * This function returns the cached synchronous state as SDL understands it + * from the last pump of the event queue. + * + * To query the platform for immediate asynchronous state, use + * SDL_GetGlobalMouseState. + * + * Passing non-NULL pointers to `x` or `y` will write the destination with + * respective x or y coordinates relative to the focused window. + * + * In Relative Mode, the SDL-cursor's position usually contradicts the + * platform-cursor's position as manually calculated from + * SDL_GetGlobalMouseState() and SDL_GetWindowPosition. + * + * \param x a pointer to receive the SDL-cursor's x-position from the focused + * window's top left corner, can be NULL if unused. + * \param y a pointer to receive the SDL-cursor's y-position from the focused + * window's top left corner, can be NULL if unused. + * \returns a 32-bit bitmask of the button state that can be bitwise-compared + * against the SDL_BUTTON_MASK(X) macro. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGlobalMouseState + * \sa SDL_GetRelativeMouseState + */ +extern SDL_DECLSPEC SDL_MouseButtonFlags SDLCALL SDL_GetMouseState(float *x, float *y); + +/** + * Query the platform for the asynchronous mouse button state and the + * desktop-relative platform-cursor position. + * + * This function immediately queries the platform for the most recent + * asynchronous state, more costly than retrieving SDL's cached state in + * SDL_GetMouseState(). + * + * Passing non-NULL pointers to `x` or `y` will write the destination with + * respective x or y coordinates relative to the desktop. + * + * In Relative Mode, the platform-cursor's position usually contradicts the + * SDL-cursor's position as manually calculated from SDL_GetMouseState() and + * SDL_GetWindowPosition. + * + * This function can be useful if you need to track the mouse outside of a + * specific window and SDL_CaptureMouse() doesn't fit your needs. For example, + * it could be useful if you need to track the mouse while dragging a window, + * where coordinates relative to a window might not be in sync at all times. + * + * \param x a pointer to receive the platform-cursor's x-position from the + * desktop's top left corner, can be NULL if unused. + * \param y a pointer to receive the platform-cursor's y-position from the + * desktop's top left corner, can be NULL if unused. + * \returns a 32-bit bitmask of the button state that can be bitwise-compared + * against the SDL_BUTTON_MASK(X) macro. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CaptureMouse + * \sa SDL_GetMouseState + * \sa SDL_GetGlobalMouseState + */ +extern SDL_DECLSPEC SDL_MouseButtonFlags SDLCALL SDL_GetGlobalMouseState(float *x, float *y); + +/** + * Query SDL's cache for the synchronous mouse button state and accumulated + * mouse delta since last call. + * + * This function returns the cached synchronous state as SDL understands it + * from the last pump of the event queue. + * + * To query the platform for immediate asynchronous state, use + * SDL_GetGlobalMouseState. + * + * Passing non-NULL pointers to `x` or `y` will write the destination with + * respective x or y deltas accumulated since the last call to this function + * (or since event initialization). + * + * This function is useful for reducing overhead by processing relative mouse + * inputs in one go per-frame instead of individually per-event, at the + * expense of losing the order between events within the frame (e.g. quickly + * pressing and releasing a button within the same frame). + * + * \param x a pointer to receive the x mouse delta accumulated since last + * call, can be NULL if unused. + * \param y a pointer to receive the y mouse delta accumulated since last + * call, can be NULL if unused. + * \returns a 32-bit bitmask of the button state that can be bitwise-compared + * against the SDL_BUTTON_MASK(X) macro. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMouseState + * \sa SDL_GetGlobalMouseState + */ +extern SDL_DECLSPEC SDL_MouseButtonFlags SDLCALL SDL_GetRelativeMouseState(float *x, float *y); + +/** + * Move the mouse cursor to the given position within the window. + * + * This function generates a mouse motion event if relative mode is not + * enabled. If relative mode is enabled, you can force mouse events for the + * warp by setting the SDL_HINT_MOUSE_RELATIVE_WARP_MOTION hint. + * + * Note that this function will appear to succeed, but not actually move the + * mouse when used over Microsoft Remote Desktop. + * + * \param window the window to move the mouse into, or NULL for the current + * mouse focus. + * \param x the x coordinate within the window. + * \param y the y coordinate within the window. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WarpMouseGlobal + */ +extern SDL_DECLSPEC void SDLCALL SDL_WarpMouseInWindow(SDL_Window *window, + float x, float y); + +/** + * Move the mouse to the given position in global screen space. + * + * This function generates a mouse motion event. + * + * A failure of this function usually means that it is unsupported by a + * platform. + * + * Note that this function will appear to succeed, but not actually move the + * mouse when used over Microsoft Remote Desktop. + * + * \param x the x coordinate. + * \param y the y coordinate. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WarpMouseInWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WarpMouseGlobal(float x, float y); + +/** + * Set relative mouse mode for a window. + * + * While the window has focus and relative mouse mode is enabled, the cursor + * is hidden, the mouse position is constrained to the window, and SDL will + * report continuous relative mouse motion even if the mouse is at the edge of + * the window. + * + * If you'd like to keep the mouse position fixed while in relative mode you + * can use SDL_SetWindowMouseRect(). If you'd like the cursor to be at a + * specific location when relative mode ends, you should use + * SDL_WarpMouseInWindow() before disabling relative mode. + * + * This function will flush any pending mouse motion for this window. + * + * \param window the window to change. + * \param enabled true to enable relative mode, false to disable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowRelativeMouseMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowRelativeMouseMode(SDL_Window *window, bool enabled); + +/** + * Query whether relative mouse mode is enabled for a window. + * + * \param window the window to query. + * \returns true if relative mode is enabled for a window or false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowRelativeMouseMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowRelativeMouseMode(SDL_Window *window); + +/** + * Capture the mouse and to track input outside an SDL window. + * + * Capturing enables your app to obtain mouse events globally, instead of just + * within your window. Not all video targets support this function. When + * capturing is enabled, the current window will get all mouse events, but + * unlike relative mode, no change is made to the cursor and it is not + * restrained to your window. + * + * This function may also deny mouse input to other windows--both those in + * your application and others on the system--so you should use this function + * sparingly, and in small bursts. For example, you might want to track the + * mouse while the user is dragging something, until the user releases a mouse + * button. It is not recommended that you capture the mouse for long periods + * of time, such as the entire time your app is running. For that, you should + * probably use SDL_SetWindowRelativeMouseMode() or SDL_SetWindowMouseGrab(), + * depending on your goals. + * + * While captured, mouse events still report coordinates relative to the + * current (foreground) window, but those coordinates may be outside the + * bounds of the window (including negative values). Capturing is only allowed + * for the foreground window. If the window loses focus while capturing, the + * capture will be disabled automatically. + * + * While capturing is enabled, the current window will have the + * `SDL_WINDOW_MOUSE_CAPTURE` flag set. + * + * Please note that SDL will attempt to "auto capture" the mouse while the + * user is pressing a button; this is to try and make mouse behavior more + * consistent between platforms, and deal with the common case of a user + * dragging the mouse outside of the window. This means that if you are + * calling SDL_CaptureMouse() only to deal with this situation, you do not + * have to (although it is safe to do so). If this causes problems for your + * app, you can disable auto capture by setting the + * `SDL_HINT_MOUSE_AUTO_CAPTURE` hint to zero. + * + * \param enabled true to enable capturing, false to disable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGlobalMouseState + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CaptureMouse(bool enabled); + +/** + * Create a cursor using the specified bitmap data and mask (in MSB format). + * + * `mask` has to be in MSB (Most Significant Bit) format. + * + * The cursor width (`w`) must be a multiple of 8 bits. + * + * The cursor is created in black and white according to the following: + * + * - data=0, mask=1: white + * - data=1, mask=1: black + * - data=0, mask=0: transparent + * - data=1, mask=0: inverted color if possible, black if not. + * + * Cursors created with this function must be freed with SDL_DestroyCursor(). + * + * If you want to have a color cursor, or create your cursor from an + * SDL_Surface, you should use SDL_CreateColorCursor(). Alternately, you can + * hide the cursor and draw your own as part of your game's rendering, but it + * will be bound to the framerate. + * + * Also, SDL_CreateSystemCursor() is available, which provides several + * readily-available system cursors to pick from. + * + * \param data the color value for each pixel of the cursor. + * \param mask the mask value for each pixel of the cursor. + * \param w the width of the cursor. + * \param h the height of the cursor. + * \param hot_x the x-axis offset from the left of the cursor image to the + * mouse x position, in the range of 0 to `w` - 1. + * \param hot_y the y-axis offset from the top of the cursor image to the + * mouse y position, in the range of 0 to `h` - 1. + * \returns a new cursor with the specified parameters on success or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateColorCursor + * \sa SDL_CreateSystemCursor + * \sa SDL_DestroyCursor + * \sa SDL_SetCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_CreateCursor(const Uint8 *data, + const Uint8 *mask, + int w, int h, int hot_x, + int hot_y); + +/** + * Create a color cursor. + * + * If this function is passed a surface with alternate representations, the + * surface will be interpreted as the content to be used for 100% display + * scale, and the alternate representations will be used for high DPI + * situations. For example, if the original surface is 32x32, then on a 2x + * macOS display or 200% display scale on Windows, a 64x64 version of the + * image will be used, if available. If a matching version of the image isn't + * available, the closest larger size image will be downscaled to the + * appropriate size and be used instead, if available. Otherwise, the closest + * smaller image will be upscaled and be used instead. + * + * \param surface an SDL_Surface structure representing the cursor image. + * \param hot_x the x position of the cursor hot spot. + * \param hot_y the y position of the cursor hot spot. + * \returns the new cursor on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateCursor + * \sa SDL_CreateSystemCursor + * \sa SDL_DestroyCursor + * \sa SDL_SetCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_CreateColorCursor(SDL_Surface *surface, + int hot_x, + int hot_y); + +/** + * Create a system cursor. + * + * \param id an SDL_SystemCursor enum value. + * \returns a cursor on success or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_CreateSystemCursor(SDL_SystemCursor id); + +/** + * Set the active cursor. + * + * This function sets the currently active cursor to the specified one. If the + * cursor is currently visible, the change will be immediately represented on + * the display. SDL_SetCursor(NULL) can be used to force cursor redraw, if + * this is desired for any reason. + * + * \param cursor a cursor to make active. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetCursor(SDL_Cursor *cursor); + +/** + * Get the active cursor. + * + * This function returns a pointer to the current cursor which is owned by the + * library. It is not necessary to free the cursor with SDL_DestroyCursor(). + * + * \returns the active cursor or NULL if there is no mouse. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_GetCursor(void); + +/** + * Get the default cursor. + * + * You do not have to call SDL_DestroyCursor() on the return value, but it is + * safe to do so. + * + * \returns the default cursor on success or NULL on failuree; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_GetDefaultCursor(void); + +/** + * Free a previously-created cursor. + * + * Use this function to free cursor resources created with SDL_CreateCursor(), + * SDL_CreateColorCursor() or SDL_CreateSystemCursor(). + * + * \param cursor the cursor to free. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateColorCursor + * \sa SDL_CreateCursor + * \sa SDL_CreateSystemCursor + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyCursor(SDL_Cursor *cursor); + +/** + * Show the cursor. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CursorVisible + * \sa SDL_HideCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowCursor(void); + +/** + * Hide the cursor. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CursorVisible + * \sa SDL_ShowCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HideCursor(void); + +/** + * Return whether the cursor is currently being shown. + * + * \returns `true` if the cursor is being shown, or `false` if the cursor is + * hidden. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HideCursor + * \sa SDL_ShowCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CursorVisible(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_mouse_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_mutex.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_mutex.h new file mode 100644 index 0000000..c88ec15 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_mutex.h @@ -0,0 +1,1073 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_mutex_h_ +#define SDL_mutex_h_ + +/** + * # CategoryMutex + * + * SDL offers several thread synchronization primitives. This document can't + * cover the complicated topic of thread safety, but reading up on what each + * of these primitives are, why they are useful, and how to correctly use them + * is vital to writing correct and safe multithreaded programs. + * + * - Mutexes: SDL_CreateMutex() + * - Read/Write locks: SDL_CreateRWLock() + * - Semaphores: SDL_CreateSemaphore() + * - Condition variables: SDL_CreateCondition() + * + * SDL also offers a datatype, SDL_InitState, which can be used to make sure + * only one thread initializes/deinitializes some resource that several + * threads might try to use for the first time simultaneously. + */ + +#include +#include +#include +#include + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Enable thread safety attributes, only with clang. + * + * The attributes can be safely erased when compiling with other compilers. + * + * To enable analysis, set these environment variables before running cmake: + * + * ```bash + * export CC=clang + * export CFLAGS="-DSDL_THREAD_SAFETY_ANALYSIS -Wthread-safety" + * ``` + */ +#define SDL_THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) + +#elif defined(SDL_THREAD_SAFETY_ANALYSIS) && defined(__clang__) && (!defined(SWIG)) +#define SDL_THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) +#else +#define SDL_THREAD_ANNOTATION_ATTRIBUTE__(x) /* no-op */ +#endif + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCOPED_CAPABILITY \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(scoped_lockable) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_GUARDED_BY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PT_GUARDED_BY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(pt_guarded_by(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRED_BEFORE(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquired_before(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRED_AFTER(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquired_after(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_REQUIRES(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(requires_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_REQUIRES_SHARED(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(requires_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRE(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquire_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRE_SHARED(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquire_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RELEASE(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(release_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RELEASE_SHARED(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(release_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RELEASE_GENERIC(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(release_generic_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TRY_ACQUIRE(x, y) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_capability(x, y)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TRY_ACQUIRE_SHARED(x, y) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_shared_capability(x, y)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_EXCLUDES(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(locks_excluded(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ASSERT_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(assert_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ASSERT_SHARED_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(assert_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RETURN_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(lock_returned(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NO_THREAD_SAFETY_ANALYSIS \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(no_thread_safety_analysis) + +/******************************************************************************/ + + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \name Mutex functions + */ +/* @{ */ + +/** + * A means to serialize access to a resource between threads. + * + * Mutexes (short for "mutual exclusion") are a synchronization primitive that + * allows exactly one thread to proceed at a time. + * + * Wikipedia has a thorough explanation of the concept: + * + * https://en.wikipedia.org/wiki/Mutex + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Mutex SDL_Mutex; + +/** + * Create a new mutex. + * + * All newly-created mutexes begin in the _unlocked_ state. + * + * Calls to SDL_LockMutex() will not return while the mutex is locked by + * another thread. See SDL_TryLockMutex() to attempt to lock without blocking. + * + * SDL mutexes are reentrant. + * + * \returns the initialized and unlocked mutex or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyMutex + * \sa SDL_LockMutex + * \sa SDL_TryLockMutex + * \sa SDL_UnlockMutex + */ +extern SDL_DECLSPEC SDL_Mutex * SDLCALL SDL_CreateMutex(void); + +/** + * Lock the mutex. + * + * This will block until the mutex is available, which is to say it is in the + * unlocked state and the OS has chosen the caller as the next thread to lock + * it. Of all threads waiting to lock the mutex, only one may do so at a time. + * + * It is legal for the owning thread to lock an already-locked mutex. It must + * unlock it the same number of times before it is actually made available for + * other threads in the system (this is known as a "recursive mutex"). + * + * This function does not fail; if mutex is NULL, it will return immediately + * having locked nothing. If the mutex is valid, this function will always + * block until it can lock the mutex, and return with it locked. + * + * \param mutex the mutex to lock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TryLockMutex + * \sa SDL_UnlockMutex + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockMutex(SDL_Mutex *mutex) SDL_ACQUIRE(mutex); + +/** + * Try to lock a mutex without blocking. + * + * This works just like SDL_LockMutex(), but if the mutex is not available, + * this function returns false immediately. + * + * This technique is useful if you need exclusive access to a resource but + * don't want to wait for it, and will return to it to try again later. + * + * This function returns true if passed a NULL mutex. + * + * \param mutex the mutex to try to lock. + * \returns true on success, false if the mutex would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockMutex + * \sa SDL_UnlockMutex + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockMutex(SDL_Mutex *mutex) SDL_TRY_ACQUIRE(0, mutex); + +/** + * Unlock the mutex. + * + * It is legal for the owning thread to lock an already-locked mutex. It must + * unlock it the same number of times before it is actually made available for + * other threads in the system (this is known as a "recursive mutex"). + * + * It is illegal to unlock a mutex that has not been locked by the current + * thread, and doing so results in undefined behavior. + * + * \param mutex the mutex to unlock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockMutex + * \sa SDL_TryLockMutex + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockMutex(SDL_Mutex *mutex) SDL_RELEASE(mutex); + +/** + * Destroy a mutex created with SDL_CreateMutex(). + * + * This function must be called on any mutex that is no longer needed. Failure + * to destroy a mutex will result in a system memory or resource leak. While + * it is safe to destroy a mutex that is _unlocked_, it is not safe to attempt + * to destroy a locked mutex, and may result in undefined behavior depending + * on the platform. + * + * \param mutex the mutex to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateMutex + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyMutex(SDL_Mutex *mutex); + +/* @} *//* Mutex functions */ + + +/** + * \name Read/write lock functions + */ +/* @{ */ + +/** + * A mutex that allows read-only threads to run in parallel. + * + * A rwlock is roughly the same concept as SDL_Mutex, but allows threads that + * request read-only access to all hold the lock at the same time. If a thread + * requests write access, it will block until all read-only threads have + * released the lock, and no one else can hold the thread (for reading or + * writing) at the same time as the writing thread. + * + * This can be more efficient in cases where several threads need to access + * data frequently, but changes to that data are rare. + * + * There are other rules that apply to rwlocks that don't apply to mutexes, + * about how threads are scheduled and when they can be recursively locked. + * These are documented in the other rwlock functions. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_RWLock SDL_RWLock; + +/** + * Create a new read/write lock. + * + * A read/write lock is useful for situations where you have multiple threads + * trying to access a resource that is rarely updated. All threads requesting + * a read-only lock will be allowed to run in parallel; if a thread requests a + * write lock, it will be provided exclusive access. This makes it safe for + * multiple threads to use a resource at the same time if they promise not to + * change it, and when it has to be changed, the rwlock will serve as a + * gateway to make sure those changes can be made safely. + * + * In the right situation, a rwlock can be more efficient than a mutex, which + * only lets a single thread proceed at a time, even if it won't be modifying + * the data. + * + * All newly-created read/write locks begin in the _unlocked_ state. + * + * Calls to SDL_LockRWLockForReading() and SDL_LockRWLockForWriting will not + * return while the rwlock is locked _for writing_ by another thread. See + * SDL_TryLockRWLockForReading() and SDL_TryLockRWLockForWriting() to attempt + * to lock without blocking. + * + * SDL read/write locks are only recursive for read-only locks! They are not + * guaranteed to be fair, or provide access in a FIFO manner! They are not + * guaranteed to favor writers. You may not lock a rwlock for both read-only + * and write access at the same time from the same thread (so you can't + * promote your read-only lock to a write lock without unlocking first). + * + * \returns the initialized and unlocked read/write lock or NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyRWLock + * \sa SDL_LockRWLockForReading + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC SDL_RWLock * SDLCALL SDL_CreateRWLock(void); + +/** + * Lock the read/write lock for _read only_ operations. + * + * This will block until the rwlock is available, which is to say it is not + * locked for writing by any other thread. Of all threads waiting to lock the + * rwlock, all may do so at the same time as long as they are requesting + * read-only access; if a thread wants to lock for writing, only one may do so + * at a time, and no other threads, read-only or not, may hold the lock at the + * same time. + * + * It is legal for the owning thread to lock an already-locked rwlock for + * reading. It must unlock it the same number of times before it is actually + * made available for other threads in the system (this is known as a + * "recursive rwlock"). + * + * Note that locking for writing is not recursive (this is only available to + * read-only locks). + * + * It is illegal to request a read-only lock from a thread that already holds + * the write lock. Doing so results in undefined behavior. Unlock the write + * lock before requesting a read-only lock. (But, of course, if you have the + * write lock, you don't need further locks to read in any case.) + * + * This function does not fail; if rwlock is NULL, it will return immediately + * having locked nothing. If the rwlock is valid, this function will always + * block until it can lock the mutex, and return with it locked. + * + * \param rwlock the read/write lock to lock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockRWLockForReading(SDL_RWLock *rwlock) SDL_ACQUIRE_SHARED(rwlock); + +/** + * Lock the read/write lock for _write_ operations. + * + * This will block until the rwlock is available, which is to say it is not + * locked for reading or writing by any other thread. Only one thread may hold + * the lock when it requests write access; all other threads, whether they + * also want to write or only want read-only access, must wait until the + * writer thread has released the lock. + * + * It is illegal for the owning thread to lock an already-locked rwlock for + * writing (read-only may be locked recursively, writing can not). Doing so + * results in undefined behavior. + * + * It is illegal to request a write lock from a thread that already holds a + * read-only lock. Doing so results in undefined behavior. Unlock the + * read-only lock before requesting a write lock. + * + * This function does not fail; if rwlock is NULL, it will return immediately + * having locked nothing. If the rwlock is valid, this function will always + * block until it can lock the mutex, and return with it locked. + * + * \param rwlock the read/write lock to lock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockRWLockForWriting(SDL_RWLock *rwlock) SDL_ACQUIRE(rwlock); + +/** + * Try to lock a read/write lock _for reading_ without blocking. + * + * This works just like SDL_LockRWLockForReading(), but if the rwlock is not + * available, then this function returns false immediately. + * + * This technique is useful if you need access to a resource but don't want to + * wait for it, and will return to it to try again later. + * + * Trying to lock for read-only access can succeed if other threads are + * holding read-only locks, as this won't prevent access. + * + * This function returns true if passed a NULL rwlock. + * + * \param rwlock the rwlock to try to lock. + * \returns true on success, false if the lock would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockRWLockForReading(SDL_RWLock *rwlock) SDL_TRY_ACQUIRE_SHARED(0, rwlock); + +/** + * Try to lock a read/write lock _for writing_ without blocking. + * + * This works just like SDL_LockRWLockForWriting(), but if the rwlock is not + * available, then this function returns false immediately. + * + * This technique is useful if you need exclusive access to a resource but + * don't want to wait for it, and will return to it to try again later. + * + * It is illegal for the owning thread to lock an already-locked rwlock for + * writing (read-only may be locked recursively, writing can not). Doing so + * results in undefined behavior. + * + * It is illegal to request a write lock from a thread that already holds a + * read-only lock. Doing so results in undefined behavior. Unlock the + * read-only lock before requesting a write lock. + * + * This function returns true if passed a NULL rwlock. + * + * \param rwlock the rwlock to try to lock. + * \returns true on success, false if the lock would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockRWLockForWriting(SDL_RWLock *rwlock) SDL_TRY_ACQUIRE(0, rwlock); + +/** + * Unlock the read/write lock. + * + * Use this function to unlock the rwlock, whether it was locked for read-only + * or write operations. + * + * It is legal for the owning thread to lock an already-locked read-only lock. + * It must unlock it the same number of times before it is actually made + * available for other threads in the system (this is known as a "recursive + * rwlock"). + * + * It is illegal to unlock a rwlock that has not been locked by the current + * thread, and doing so results in undefined behavior. + * + * \param rwlock the rwlock to unlock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForReading + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockRWLock(SDL_RWLock *rwlock) SDL_RELEASE_GENERIC(rwlock); + +/** + * Destroy a read/write lock created with SDL_CreateRWLock(). + * + * This function must be called on any read/write lock that is no longer + * needed. Failure to destroy a rwlock will result in a system memory or + * resource leak. While it is safe to destroy a rwlock that is _unlocked_, it + * is not safe to attempt to destroy a locked rwlock, and may result in + * undefined behavior depending on the platform. + * + * \param rwlock the rwlock to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRWLock + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyRWLock(SDL_RWLock *rwlock); + +/* @} *//* Read/write lock functions */ + + +/** + * \name Semaphore functions + */ +/* @{ */ + +/** + * A means to manage access to a resource, by count, between threads. + * + * Semaphores (specifically, "counting semaphores"), let X number of threads + * request access at the same time, each thread granted access decrementing a + * counter. When the counter reaches zero, future requests block until a prior + * thread releases their request, incrementing the counter again. + * + * Wikipedia has a thorough explanation of the concept: + * + * https://en.wikipedia.org/wiki/Semaphore_(programming) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Semaphore SDL_Semaphore; + +/** + * Create a semaphore. + * + * This function creates a new semaphore and initializes it with the value + * `initial_value`. Each wait operation on the semaphore will atomically + * decrement the semaphore value and potentially block if the semaphore value + * is 0. Each post operation will atomically increment the semaphore value and + * wake waiting threads and allow them to retry the wait operation. + * + * \param initial_value the starting value of the semaphore. + * \returns a new semaphore or NULL on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySemaphore + * \sa SDL_SignalSemaphore + * \sa SDL_TryWaitSemaphore + * \sa SDL_GetSemaphoreValue + * \sa SDL_WaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC SDL_Semaphore * SDLCALL SDL_CreateSemaphore(Uint32 initial_value); + +/** + * Destroy a semaphore. + * + * It is not safe to destroy a semaphore if there are threads currently + * waiting on it. + * + * \param sem the semaphore to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSemaphore + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroySemaphore(SDL_Semaphore *sem); + +/** + * Wait until a semaphore has a positive value and then decrements it. + * + * This function suspends the calling thread until the semaphore pointed to by + * `sem` has a positive value, and then atomically decrement the semaphore + * value. + * + * This function is the equivalent of calling SDL_WaitSemaphoreTimeout() with + * a time length of -1. + * + * \param sem the semaphore wait on. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalSemaphore + * \sa SDL_TryWaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_WaitSemaphore(SDL_Semaphore *sem); + +/** + * See if a semaphore has a positive value and decrement it if it does. + * + * This function checks to see if the semaphore pointed to by `sem` has a + * positive value and atomically decrements the semaphore value if it does. If + * the semaphore doesn't have a positive value, the function immediately + * returns false. + * + * \param sem the semaphore to wait on. + * \returns true if the wait succeeds, false if the wait would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalSemaphore + * \sa SDL_WaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryWaitSemaphore(SDL_Semaphore *sem); + +/** + * Wait until a semaphore has a positive value and then decrements it. + * + * This function suspends the calling thread until either the semaphore + * pointed to by `sem` has a positive value or the specified time has elapsed. + * If the call is successful it will atomically decrement the semaphore value. + * + * \param sem the semaphore to wait on. + * \param timeoutMS the length of the timeout, in milliseconds, or -1 to wait + * indefinitely. + * \returns true if the wait succeeds or false if the wait times out. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalSemaphore + * \sa SDL_TryWaitSemaphore + * \sa SDL_WaitSemaphore + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitSemaphoreTimeout(SDL_Semaphore *sem, Sint32 timeoutMS); + +/** + * Atomically increment a semaphore's value and wake waiting threads. + * + * \param sem the semaphore to increment. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TryWaitSemaphore + * \sa SDL_WaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_SignalSemaphore(SDL_Semaphore *sem); + +/** + * Get the current value of a semaphore. + * + * \param sem the semaphore to query. + * \returns the current value of the semaphore. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetSemaphoreValue(SDL_Semaphore *sem); + +/* @} *//* Semaphore functions */ + + +/** + * \name Condition variable functions + */ +/* @{ */ + +/** + * A means to block multiple threads until a condition is satisfied. + * + * Condition variables, paired with an SDL_Mutex, let an app halt multiple + * threads until a condition has occurred, at which time the app can release + * one or all waiting threads. + * + * Wikipedia has a thorough explanation of the concept: + * + * https://en.wikipedia.org/wiki/Condition_variable + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Condition SDL_Condition; + +/** + * Create a condition variable. + * + * \returns a new condition variable or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_SignalCondition + * \sa SDL_WaitCondition + * \sa SDL_WaitConditionTimeout + * \sa SDL_DestroyCondition + */ +extern SDL_DECLSPEC SDL_Condition * SDLCALL SDL_CreateCondition(void); + +/** + * Destroy a condition variable. + * + * \param cond the condition variable to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateCondition + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyCondition(SDL_Condition *cond); + +/** + * Restart one of the threads that are waiting on the condition variable. + * + * \param cond the condition variable to signal. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_WaitCondition + * \sa SDL_WaitConditionTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_SignalCondition(SDL_Condition *cond); + +/** + * Restart all threads that are waiting on the condition variable. + * + * \param cond the condition variable to signal. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalCondition + * \sa SDL_WaitCondition + * \sa SDL_WaitConditionTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_BroadcastCondition(SDL_Condition *cond); + +/** + * Wait until a condition variable is signaled. + * + * This function unlocks the specified `mutex` and waits for another thread to + * call SDL_SignalCondition() or SDL_BroadcastCondition() on the condition + * variable `cond`. Once the condition variable is signaled, the mutex is + * re-locked and the function returns. + * + * The mutex must be locked before calling this function. Locking the mutex + * recursively (more than once) is not supported and leads to undefined + * behavior. + * + * This function is the equivalent of calling SDL_WaitConditionTimeout() with + * a time length of -1. + * + * \param cond the condition variable to wait on. + * \param mutex the mutex used to coordinate thread access. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_SignalCondition + * \sa SDL_WaitConditionTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_WaitCondition(SDL_Condition *cond, SDL_Mutex *mutex); + +/** + * Wait until a condition variable is signaled or a certain time has passed. + * + * This function unlocks the specified `mutex` and waits for another thread to + * call SDL_SignalCondition() or SDL_BroadcastCondition() on the condition + * variable `cond`, or for the specified time to elapse. Once the condition + * variable is signaled or the time elapsed, the mutex is re-locked and the + * function returns. + * + * The mutex must be locked before calling this function. Locking the mutex + * recursively (more than once) is not supported and leads to undefined + * behavior. + * + * \param cond the condition variable to wait on. + * \param mutex the mutex used to coordinate thread access. + * \param timeoutMS the maximum time to wait, in milliseconds, or -1 to wait + * indefinitely. + * \returns true if the condition variable is signaled, false if the condition + * is not signaled in the allotted time. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_SignalCondition + * \sa SDL_WaitCondition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitConditionTimeout(SDL_Condition *cond, + SDL_Mutex *mutex, Sint32 timeoutMS); + +/* @} *//* Condition variable functions */ + +/** + * \name Thread-safe initialization state functions + */ +/* @{ */ + +/** + * The current status of an SDL_InitState structure. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_InitStatus +{ + SDL_INIT_STATUS_UNINITIALIZED, + SDL_INIT_STATUS_INITIALIZING, + SDL_INIT_STATUS_INITIALIZED, + SDL_INIT_STATUS_UNINITIALIZING +} SDL_InitStatus; + +/** + * A structure used for thread-safe initialization and shutdown. + * + * Here is an example of using this: + * + * ```c + * static SDL_AtomicInitState init; + * + * bool InitSystem(void) + * { + * if (!SDL_ShouldInit(&init)) { + * // The system is initialized + * return true; + * } + * + * // At this point, you should not leave this function without calling SDL_SetInitialized() + * + * bool initialized = DoInitTasks(); + * SDL_SetInitialized(&init, initialized); + * return initialized; + * } + * + * bool UseSubsystem(void) + * { + * if (SDL_ShouldInit(&init)) { + * // Error, the subsystem isn't initialized + * SDL_SetInitialized(&init, false); + * return false; + * } + * + * // Do work using the initialized subsystem + * + * return true; + * } + * + * void QuitSystem(void) + * { + * if (!SDL_ShouldQuit(&init)) { + * // The system is not initialized + * return; + * } + * + * // At this point, you should not leave this function without calling SDL_SetInitialized() + * + * DoQuitTasks(); + * SDL_SetInitialized(&init, false); + * } + * ``` + * + * Note that this doesn't protect any resources created during initialization, + * or guarantee that nobody is using those resources during cleanup. You + * should use other mechanisms to protect those, if that's a concern for your + * code. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_InitState +{ + SDL_AtomicInt status; + SDL_ThreadID thread; + void *reserved; +} SDL_InitState; + +/** + * Return whether initialization should be done. + * + * This function checks the passed in state and if initialization should be + * done, sets the status to `SDL_INIT_STATUS_INITIALIZING` and returns true. + * If another thread is already modifying this state, it will wait until + * that's done before returning. + * + * If this function returns true, the calling code must call + * SDL_SetInitialized() to complete the initialization. + * + * \param state the initialization state to check. + * \returns true if initialization needs to be done, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetInitialized + * \sa SDL_ShouldQuit + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShouldInit(SDL_InitState *state); + +/** + * Return whether cleanup should be done. + * + * This function checks the passed in state and if cleanup should be done, + * sets the status to `SDL_INIT_STATUS_UNINITIALIZING` and returns true. + * + * If this function returns true, the calling code must call + * SDL_SetInitialized() to complete the cleanup. + * + * \param state the initialization state to check. + * \returns true if cleanup needs to be done, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetInitialized + * \sa SDL_ShouldInit + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShouldQuit(SDL_InitState *state); + +/** + * Finish an initialization state transition. + * + * This function sets the status of the passed in state to + * `SDL_INIT_STATUS_INITIALIZED` or `SDL_INIT_STATUS_UNINITIALIZED` and allows + * any threads waiting for the status to proceed. + * + * \param state the initialization state to check. + * \param initialized the new initialization state. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShouldInit + * \sa SDL_ShouldQuit + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetInitialized(SDL_InitState *state, bool initialized); + +/* @} *//* Thread-safe initialization state functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_mutex_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_oldnames.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_oldnames.h new file mode 100644 index 0000000..c93607e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_oldnames.h @@ -0,0 +1,1327 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * Definitions to ease transition from SDL2 code + */ + +#ifndef SDL_oldnames_h_ +#define SDL_oldnames_h_ + +#include + +/* The new function names are recommended, but if you want to have the + * old names available while you are in the process of migrating code + * to SDL3, you can define `SDL_ENABLE_OLD_NAMES` in your project. + * + * You can use https://github.com/libsdl-org/SDL/blob/main/build-scripts/rename_symbols.py to mass rename the symbols defined here in your codebase: + * rename_symbols.py --all-symbols source_code_path + */ +#ifdef SDL_ENABLE_OLD_NAMES + +/* ##SDL_atomic.h */ +#define SDL_AtomicAdd SDL_AddAtomicInt +#define SDL_AtomicCAS SDL_CompareAndSwapAtomicInt +#define SDL_AtomicCASPtr SDL_CompareAndSwapAtomicPointer +#define SDL_AtomicGet SDL_GetAtomicInt +#define SDL_AtomicGetPtr SDL_GetAtomicPointer +#define SDL_AtomicLock SDL_LockSpinlock +#define SDL_AtomicSet SDL_SetAtomicInt +#define SDL_AtomicSetPtr SDL_SetAtomicPointer +#define SDL_AtomicTryLock SDL_TryLockSpinlock +#define SDL_AtomicUnlock SDL_UnlockSpinlock +#define SDL_atomic_t SDL_AtomicInt + +/* ##SDL_audio.h */ +#define AUDIO_F32 SDL_AUDIO_F32LE +#define AUDIO_F32LSB SDL_AUDIO_F32LE +#define AUDIO_F32MSB SDL_AUDIO_F32BE +#define AUDIO_F32SYS SDL_AUDIO_F32 +#define AUDIO_S16 SDL_AUDIO_S16LE +#define AUDIO_S16LSB SDL_AUDIO_S16LE +#define AUDIO_S16MSB SDL_AUDIO_S16BE +#define AUDIO_S16SYS SDL_AUDIO_S16 +#define AUDIO_S32 SDL_AUDIO_S32LE +#define AUDIO_S32LSB SDL_AUDIO_S32LE +#define AUDIO_S32MSB SDL_AUDIO_S32BE +#define AUDIO_S32SYS SDL_AUDIO_S32 +#define AUDIO_S8 SDL_AUDIO_S8 +#define AUDIO_U8 SDL_AUDIO_U8 +#define SDL_AudioStreamAvailable SDL_GetAudioStreamAvailable +#define SDL_AudioStreamClear SDL_ClearAudioStream +#define SDL_AudioStreamFlush SDL_FlushAudioStream +#define SDL_AudioStreamGet SDL_GetAudioStreamData +#define SDL_AudioStreamPut SDL_PutAudioStreamData +#define SDL_FreeAudioStream SDL_DestroyAudioStream +#define SDL_FreeWAV SDL_free +#define SDL_LoadWAV_RW SDL_LoadWAV_IO +#define SDL_MixAudioFormat SDL_MixAudio +#define SDL_NewAudioStream SDL_CreateAudioStream + +/* ##SDL_cpuinfo.h */ +#define SDL_GetCPUCount SDL_GetNumLogicalCPUCores +#define SDL_SIMDGetAlignment SDL_GetSIMDAlignment + +/* ##SDL_endian.h */ +#define SDL_SwapBE16 SDL_Swap16BE +#define SDL_SwapBE32 SDL_Swap32BE +#define SDL_SwapBE64 SDL_Swap64BE +#define SDL_SwapLE16 SDL_Swap16LE +#define SDL_SwapLE32 SDL_Swap32LE +#define SDL_SwapLE64 SDL_Swap64LE + +/* ##SDL_events.h */ +#define SDL_APP_DIDENTERBACKGROUND SDL_EVENT_DID_ENTER_BACKGROUND +#define SDL_APP_DIDENTERFOREGROUND SDL_EVENT_DID_ENTER_FOREGROUND +#define SDL_APP_LOWMEMORY SDL_EVENT_LOW_MEMORY +#define SDL_APP_TERMINATING SDL_EVENT_TERMINATING +#define SDL_APP_WILLENTERBACKGROUND SDL_EVENT_WILL_ENTER_BACKGROUND +#define SDL_APP_WILLENTERFOREGROUND SDL_EVENT_WILL_ENTER_FOREGROUND +#define SDL_AUDIODEVICEADDED SDL_EVENT_AUDIO_DEVICE_ADDED +#define SDL_AUDIODEVICEREMOVED SDL_EVENT_AUDIO_DEVICE_REMOVED +#define SDL_CLIPBOARDUPDATE SDL_EVENT_CLIPBOARD_UPDATE +#define SDL_CONTROLLERAXISMOTION SDL_EVENT_GAMEPAD_AXIS_MOTION +#define SDL_CONTROLLERBUTTONDOWN SDL_EVENT_GAMEPAD_BUTTON_DOWN +#define SDL_CONTROLLERBUTTONUP SDL_EVENT_GAMEPAD_BUTTON_UP +#define SDL_CONTROLLERDEVICEADDED SDL_EVENT_GAMEPAD_ADDED +#define SDL_CONTROLLERDEVICEREMAPPED SDL_EVENT_GAMEPAD_REMAPPED +#define SDL_CONTROLLERDEVICEREMOVED SDL_EVENT_GAMEPAD_REMOVED +#define SDL_CONTROLLERSENSORUPDATE SDL_EVENT_GAMEPAD_SENSOR_UPDATE +#define SDL_CONTROLLERSTEAMHANDLEUPDATED SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED +#define SDL_CONTROLLERTOUCHPADDOWN SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN +#define SDL_CONTROLLERTOUCHPADMOTION SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION +#define SDL_CONTROLLERTOUCHPADUP SDL_EVENT_GAMEPAD_TOUCHPAD_UP +#define SDL_ControllerAxisEvent SDL_GamepadAxisEvent +#define SDL_ControllerButtonEvent SDL_GamepadButtonEvent +#define SDL_ControllerDeviceEvent SDL_GamepadDeviceEvent +#define SDL_ControllerSensorEvent SDL_GamepadSensorEvent +#define SDL_ControllerTouchpadEvent SDL_GamepadTouchpadEvent +#define SDL_DISPLAYEVENT_CONNECTED SDL_EVENT_DISPLAY_ADDED +#define SDL_DISPLAYEVENT_DISCONNECTED SDL_EVENT_DISPLAY_REMOVED +#define SDL_DISPLAYEVENT_MOVED SDL_EVENT_DISPLAY_MOVED +#define SDL_DISPLAYEVENT_ORIENTATION SDL_EVENT_DISPLAY_ORIENTATION +#define SDL_DROPBEGIN SDL_EVENT_DROP_BEGIN +#define SDL_DROPCOMPLETE SDL_EVENT_DROP_COMPLETE +#define SDL_DROPFILE SDL_EVENT_DROP_FILE +#define SDL_DROPTEXT SDL_EVENT_DROP_TEXT +#define SDL_DelEventWatch SDL_RemoveEventWatch +#define SDL_FINGERDOWN SDL_EVENT_FINGER_DOWN +#define SDL_FINGERMOTION SDL_EVENT_FINGER_MOTION +#define SDL_FINGERUP SDL_EVENT_FINGER_UP +#define SDL_FIRSTEVENT SDL_EVENT_FIRST +#define SDL_JOYAXISMOTION SDL_EVENT_JOYSTICK_AXIS_MOTION +#define SDL_JOYBATTERYUPDATED SDL_EVENT_JOYSTICK_BATTERY_UPDATED +#define SDL_JOYBUTTONDOWN SDL_EVENT_JOYSTICK_BUTTON_DOWN +#define SDL_JOYBUTTONUP SDL_EVENT_JOYSTICK_BUTTON_UP +#define SDL_JOYDEVICEADDED SDL_EVENT_JOYSTICK_ADDED +#define SDL_JOYDEVICEREMOVED SDL_EVENT_JOYSTICK_REMOVED +#define SDL_JOYBALLMOTION SDL_EVENT_JOYSTICK_BALL_MOTION +#define SDL_JOYHATMOTION SDL_EVENT_JOYSTICK_HAT_MOTION +#define SDL_KEYDOWN SDL_EVENT_KEY_DOWN +#define SDL_KEYMAPCHANGED SDL_EVENT_KEYMAP_CHANGED +#define SDL_KEYUP SDL_EVENT_KEY_UP +#define SDL_LASTEVENT SDL_EVENT_LAST +#define SDL_LOCALECHANGED SDL_EVENT_LOCALE_CHANGED +#define SDL_MOUSEBUTTONDOWN SDL_EVENT_MOUSE_BUTTON_DOWN +#define SDL_MOUSEBUTTONUP SDL_EVENT_MOUSE_BUTTON_UP +#define SDL_MOUSEMOTION SDL_EVENT_MOUSE_MOTION +#define SDL_MOUSEWHEEL SDL_EVENT_MOUSE_WHEEL +#define SDL_POLLSENTINEL SDL_EVENT_POLL_SENTINEL +#define SDL_QUIT SDL_EVENT_QUIT +#define SDL_RENDER_DEVICE_RESET SDL_EVENT_RENDER_DEVICE_RESET +#define SDL_RENDER_TARGETS_RESET SDL_EVENT_RENDER_TARGETS_RESET +#define SDL_SENSORUPDATE SDL_EVENT_SENSOR_UPDATE +#define SDL_TEXTEDITING SDL_EVENT_TEXT_EDITING +#define SDL_TEXTEDITING_EXT SDL_EVENT_TEXT_EDITING_EXT +#define SDL_TEXTINPUT SDL_EVENT_TEXT_INPUT +#define SDL_USEREVENT SDL_EVENT_USER +#define SDL_WINDOWEVENT_CLOSE SDL_EVENT_WINDOW_CLOSE_REQUESTED +#define SDL_WINDOWEVENT_DISPLAY_CHANGED SDL_EVENT_WINDOW_DISPLAY_CHANGED +#define SDL_WINDOWEVENT_ENTER SDL_EVENT_WINDOW_MOUSE_ENTER +#define SDL_WINDOWEVENT_EXPOSED SDL_EVENT_WINDOW_EXPOSED +#define SDL_WINDOWEVENT_FOCUS_GAINED SDL_EVENT_WINDOW_FOCUS_GAINED +#define SDL_WINDOWEVENT_FOCUS_LOST SDL_EVENT_WINDOW_FOCUS_LOST +#define SDL_WINDOWEVENT_HIDDEN SDL_EVENT_WINDOW_HIDDEN +#define SDL_WINDOWEVENT_HIT_TEST SDL_EVENT_WINDOW_HIT_TEST +#define SDL_WINDOWEVENT_ICCPROF_CHANGED SDL_EVENT_WINDOW_ICCPROF_CHANGED +#define SDL_WINDOWEVENT_LEAVE SDL_EVENT_WINDOW_MOUSE_LEAVE +#define SDL_WINDOWEVENT_MAXIMIZED SDL_EVENT_WINDOW_MAXIMIZED +#define SDL_WINDOWEVENT_MINIMIZED SDL_EVENT_WINDOW_MINIMIZED +#define SDL_WINDOWEVENT_MOVED SDL_EVENT_WINDOW_MOVED +#define SDL_WINDOWEVENT_RESIZED SDL_EVENT_WINDOW_RESIZED +#define SDL_WINDOWEVENT_RESTORED SDL_EVENT_WINDOW_RESTORED +#define SDL_WINDOWEVENT_SHOWN SDL_EVENT_WINDOW_SHOWN +#define SDL_WINDOWEVENT_SIZE_CHANGED SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED +#define SDL_eventaction SDL_EventAction + +/* ##SDL_gamecontroller.h */ +#define SDL_CONTROLLER_AXIS_INVALID SDL_GAMEPAD_AXIS_INVALID +#define SDL_CONTROLLER_AXIS_LEFTX SDL_GAMEPAD_AXIS_LEFTX +#define SDL_CONTROLLER_AXIS_LEFTY SDL_GAMEPAD_AXIS_LEFTY +#define SDL_CONTROLLER_AXIS_MAX SDL_GAMEPAD_AXIS_COUNT +#define SDL_CONTROLLER_AXIS_RIGHTX SDL_GAMEPAD_AXIS_RIGHTX +#define SDL_CONTROLLER_AXIS_RIGHTY SDL_GAMEPAD_AXIS_RIGHTY +#define SDL_CONTROLLER_AXIS_TRIGGERLEFT SDL_GAMEPAD_AXIS_LEFT_TRIGGER +#define SDL_CONTROLLER_AXIS_TRIGGERRIGHT SDL_GAMEPAD_AXIS_RIGHT_TRIGGER +#define SDL_CONTROLLER_BINDTYPE_AXIS SDL_GAMEPAD_BINDTYPE_AXIS +#define SDL_CONTROLLER_BINDTYPE_BUTTON SDL_GAMEPAD_BINDTYPE_BUTTON +#define SDL_CONTROLLER_BINDTYPE_HAT SDL_GAMEPAD_BINDTYPE_HAT +#define SDL_CONTROLLER_BINDTYPE_NONE SDL_GAMEPAD_BINDTYPE_NONE +#define SDL_CONTROLLER_BUTTON_A SDL_GAMEPAD_BUTTON_SOUTH +#define SDL_CONTROLLER_BUTTON_B SDL_GAMEPAD_BUTTON_EAST +#define SDL_CONTROLLER_BUTTON_BACK SDL_GAMEPAD_BUTTON_BACK +#define SDL_CONTROLLER_BUTTON_DPAD_DOWN SDL_GAMEPAD_BUTTON_DPAD_DOWN +#define SDL_CONTROLLER_BUTTON_DPAD_LEFT SDL_GAMEPAD_BUTTON_DPAD_LEFT +#define SDL_CONTROLLER_BUTTON_DPAD_RIGHT SDL_GAMEPAD_BUTTON_DPAD_RIGHT +#define SDL_CONTROLLER_BUTTON_DPAD_UP SDL_GAMEPAD_BUTTON_DPAD_UP +#define SDL_CONTROLLER_BUTTON_GUIDE SDL_GAMEPAD_BUTTON_GUIDE +#define SDL_CONTROLLER_BUTTON_INVALID SDL_GAMEPAD_BUTTON_INVALID +#define SDL_CONTROLLER_BUTTON_LEFTSHOULDER SDL_GAMEPAD_BUTTON_LEFT_SHOULDER +#define SDL_CONTROLLER_BUTTON_LEFTSTICK SDL_GAMEPAD_BUTTON_LEFT_STICK +#define SDL_CONTROLLER_BUTTON_MAX SDL_GAMEPAD_BUTTON_COUNT +#define SDL_CONTROLLER_BUTTON_MISC1 SDL_GAMEPAD_BUTTON_MISC1 +#define SDL_CONTROLLER_BUTTON_PADDLE1 SDL_GAMEPAD_BUTTON_RIGHT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE2 SDL_GAMEPAD_BUTTON_LEFT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE3 SDL_GAMEPAD_BUTTON_RIGHT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_PADDLE4 SDL_GAMEPAD_BUTTON_LEFT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_RIGHTSHOULDER SDL_GAMEPAD_BUTTON_RIGHT_SHOULDER +#define SDL_CONTROLLER_BUTTON_RIGHTSTICK SDL_GAMEPAD_BUTTON_RIGHT_STICK +#define SDL_CONTROLLER_BUTTON_START SDL_GAMEPAD_BUTTON_START +#define SDL_CONTROLLER_BUTTON_TOUCHPAD SDL_GAMEPAD_BUTTON_TOUCHPAD +#define SDL_CONTROLLER_BUTTON_X SDL_GAMEPAD_BUTTON_WEST +#define SDL_CONTROLLER_BUTTON_Y SDL_GAMEPAD_BUTTON_NORTH +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_LEFT SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_LEFT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_PAIR SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_PAIR +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_PRO +#define SDL_CONTROLLER_TYPE_PS3 SDL_GAMEPAD_TYPE_PS3 +#define SDL_CONTROLLER_TYPE_PS4 SDL_GAMEPAD_TYPE_PS4 +#define SDL_CONTROLLER_TYPE_PS5 SDL_GAMEPAD_TYPE_PS5 +#define SDL_CONTROLLER_TYPE_UNKNOWN SDL_GAMEPAD_TYPE_STANDARD +#define SDL_CONTROLLER_TYPE_VIRTUAL SDL_GAMEPAD_TYPE_VIRTUAL +#define SDL_CONTROLLER_TYPE_XBOX360 SDL_GAMEPAD_TYPE_XBOX360 +#define SDL_CONTROLLER_TYPE_XBOXONE SDL_GAMEPAD_TYPE_XBOXONE +#define SDL_GameController SDL_Gamepad +#define SDL_GameControllerAddMapping SDL_AddGamepadMapping +#define SDL_GameControllerAddMappingsFromFile SDL_AddGamepadMappingsFromFile +#define SDL_GameControllerAddMappingsFromRW SDL_AddGamepadMappingsFromIO +#define SDL_GameControllerAxis SDL_GamepadAxis +#define SDL_GameControllerBindType SDL_GamepadBindingType +#define SDL_GameControllerButton SDL_GamepadButton +#define SDL_GameControllerClose SDL_CloseGamepad +#define SDL_GameControllerFromInstanceID SDL_GetGamepadFromID +#define SDL_GameControllerFromPlayerIndex SDL_GetGamepadFromPlayerIndex +#define SDL_GameControllerGetAppleSFSymbolsNameForAxis SDL_GetGamepadAppleSFSymbolsNameForAxis +#define SDL_GameControllerGetAppleSFSymbolsNameForButton SDL_GetGamepadAppleSFSymbolsNameForButton +#define SDL_GameControllerGetAttached SDL_GamepadConnected +#define SDL_GameControllerGetAxis SDL_GetGamepadAxis +#define SDL_GameControllerGetAxisFromString SDL_GetGamepadAxisFromString +#define SDL_GameControllerGetButton SDL_GetGamepadButton +#define SDL_GameControllerGetButtonFromString SDL_GetGamepadButtonFromString +#define SDL_GameControllerGetFirmwareVersion SDL_GetGamepadFirmwareVersion +#define SDL_GameControllerGetJoystick SDL_GetGamepadJoystick +#define SDL_GameControllerGetNumTouchpadFingers SDL_GetNumGamepadTouchpadFingers +#define SDL_GameControllerGetNumTouchpads SDL_GetNumGamepadTouchpads +#define SDL_GameControllerGetPlayerIndex SDL_GetGamepadPlayerIndex +#define SDL_GameControllerGetProduct SDL_GetGamepadProduct +#define SDL_GameControllerGetProductVersion SDL_GetGamepadProductVersion +#define SDL_GameControllerGetSensorData SDL_GetGamepadSensorData +#define SDL_GameControllerGetSensorDataRate SDL_GetGamepadSensorDataRate +#define SDL_GameControllerGetSerial SDL_GetGamepadSerial +#define SDL_GameControllerGetSteamHandle SDL_GetGamepadSteamHandle +#define SDL_GameControllerGetStringForAxis SDL_GetGamepadStringForAxis +#define SDL_GameControllerGetStringForButton SDL_GetGamepadStringForButton +#define SDL_GameControllerGetTouchpadFinger SDL_GetGamepadTouchpadFinger +#define SDL_GameControllerGetType SDL_GetGamepadType +#define SDL_GameControllerGetVendor SDL_GetGamepadVendor +#define SDL_GameControllerHasAxis SDL_GamepadHasAxis +#define SDL_GameControllerHasButton SDL_GamepadHasButton +#define SDL_GameControllerHasSensor SDL_GamepadHasSensor +#define SDL_GameControllerIsSensorEnabled SDL_GamepadSensorEnabled +#define SDL_GameControllerMapping SDL_GetGamepadMapping +#define SDL_GameControllerMappingForGUID SDL_GetGamepadMappingForGUID +#define SDL_GameControllerName SDL_GetGamepadName +#define SDL_GameControllerOpen SDL_OpenGamepad +#define SDL_GameControllerPath SDL_GetGamepadPath +#define SDL_GameControllerRumble SDL_RumbleGamepad +#define SDL_GameControllerRumbleTriggers SDL_RumbleGamepadTriggers +#define SDL_GameControllerSendEffect SDL_SendGamepadEffect +#define SDL_GameControllerSetLED SDL_SetGamepadLED +#define SDL_GameControllerSetPlayerIndex SDL_SetGamepadPlayerIndex +#define SDL_GameControllerSetSensorEnabled SDL_SetGamepadSensorEnabled +#define SDL_GameControllerType SDL_GamepadType +#define SDL_GameControllerUpdate SDL_UpdateGamepads +#define SDL_INIT_GAMECONTROLLER SDL_INIT_GAMEPAD +#define SDL_IsGameController SDL_IsGamepad + +/* ##SDL_guid.h */ +#define SDL_GUIDFromString SDL_StringToGUID + +/* ##SDL_haptic.h */ +#define SDL_HapticClose SDL_CloseHaptic +#define SDL_HapticDestroyEffect SDL_DestroyHapticEffect +#define SDL_HapticGetEffectStatus SDL_GetHapticEffectStatus +#define SDL_HapticNewEffect SDL_CreateHapticEffect +#define SDL_HapticNumAxes SDL_GetNumHapticAxes +#define SDL_HapticNumEffects SDL_GetMaxHapticEffects +#define SDL_HapticNumEffectsPlaying SDL_GetMaxHapticEffectsPlaying +#define SDL_HapticOpen SDL_OpenHaptic +#define SDL_HapticOpenFromJoystick SDL_OpenHapticFromJoystick +#define SDL_HapticOpenFromMouse SDL_OpenHapticFromMouse +#define SDL_HapticPause SDL_PauseHaptic +#define SDL_HapticQuery SDL_GetHapticFeatures +#define SDL_HapticRumbleInit SDL_InitHapticRumble +#define SDL_HapticRumblePlay SDL_PlayHapticRumble +#define SDL_HapticRumbleStop SDL_StopHapticRumble +#define SDL_HapticRunEffect SDL_RunHapticEffect +#define SDL_HapticSetAutocenter SDL_SetHapticAutocenter +#define SDL_HapticSetGain SDL_SetHapticGain +#define SDL_HapticStopAll SDL_StopHapticEffects +#define SDL_HapticStopEffect SDL_StopHapticEffect +#define SDL_HapticUnpause SDL_ResumeHaptic +#define SDL_HapticUpdateEffect SDL_UpdateHapticEffect +#define SDL_JoystickIsHaptic SDL_IsJoystickHaptic +#define SDL_MouseIsHaptic SDL_IsMouseHaptic + +/* ##SDL_hints.h */ +#define SDL_DelHintCallback SDL_RemoveHintCallback +#define SDL_HINT_ALLOW_TOPMOST SDL_HINT_WINDOW_ALLOW_TOPMOST +#define SDL_HINT_DIRECTINPUT_ENABLED SDL_HINT_JOYSTICK_DIRECTINPUT +#define SDL_HINT_GDK_TEXTINPUT_DEFAULT SDL_HINT_GDK_TEXTINPUT_DEFAULT_TEXT +#define SDL_HINT_JOYSTICK_GAMECUBE_RUMBLE_BRAKE SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE +#define SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_LINUX_DIGITAL_HATS SDL_HINT_JOYSTICK_LINUX_DIGITAL_HATS +#define SDL_HINT_LINUX_HAT_DEADZONES SDL_HINT_JOYSTICK_LINUX_HAT_DEADZONES +#define SDL_HINT_LINUX_JOYSTICK_CLASSIC SDL_HINT_JOYSTICK_LINUX_CLASSIC +#define SDL_HINT_LINUX_JOYSTICK_DEADZONES SDL_HINT_JOYSTICK_LINUX_DEADZONES + +/* ##SDL_joystick.h */ +#define SDL_JOYSTICK_TYPE_GAMECONTROLLER SDL_JOYSTICK_TYPE_GAMEPAD +#define SDL_JoystickAttachVirtualEx SDL_AttachVirtualJoystick +#define SDL_JoystickClose SDL_CloseJoystick +#define SDL_JoystickDetachVirtual SDL_DetachVirtualJoystick +#define SDL_JoystickFromInstanceID SDL_GetJoystickFromID +#define SDL_JoystickFromPlayerIndex SDL_GetJoystickFromPlayerIndex +#define SDL_JoystickGUID SDL_GUID +#define SDL_JoystickGetAttached SDL_JoystickConnected +#define SDL_JoystickGetAxis SDL_GetJoystickAxis +#define SDL_JoystickGetAxisInitialState SDL_GetJoystickAxisInitialState +#define SDL_JoystickGetBall SDL_GetJoystickBall +#define SDL_JoystickGetButton SDL_GetJoystickButton +#define SDL_JoystickGetFirmwareVersion SDL_GetJoystickFirmwareVersion +#define SDL_JoystickGetGUID SDL_GetJoystickGUID +#define SDL_JoystickGetGUIDFromString SDL_StringToGUID +#define SDL_JoystickGetHat SDL_GetJoystickHat +#define SDL_JoystickGetPlayerIndex SDL_GetJoystickPlayerIndex +#define SDL_JoystickGetProduct SDL_GetJoystickProduct +#define SDL_JoystickGetProductVersion SDL_GetJoystickProductVersion +#define SDL_JoystickGetSerial SDL_GetJoystickSerial +#define SDL_JoystickGetType SDL_GetJoystickType +#define SDL_JoystickGetVendor SDL_GetJoystickVendor +#define SDL_JoystickInstanceID SDL_GetJoystickID +#define SDL_JoystickIsVirtual SDL_IsJoystickVirtual +#define SDL_JoystickName SDL_GetJoystickName +#define SDL_JoystickNumAxes SDL_GetNumJoystickAxes +#define SDL_JoystickNumBalls SDL_GetNumJoystickBalls +#define SDL_JoystickNumButtons SDL_GetNumJoystickButtons +#define SDL_JoystickNumHats SDL_GetNumJoystickHats +#define SDL_JoystickOpen SDL_OpenJoystick +#define SDL_JoystickPath SDL_GetJoystickPath +#define SDL_JoystickRumble SDL_RumbleJoystick +#define SDL_JoystickRumbleTriggers SDL_RumbleJoystickTriggers +#define SDL_JoystickSendEffect SDL_SendJoystickEffect +#define SDL_JoystickSetLED SDL_SetJoystickLED +#define SDL_JoystickSetPlayerIndex SDL_SetJoystickPlayerIndex +#define SDL_JoystickSetVirtualAxis SDL_SetJoystickVirtualAxis +#define SDL_JoystickSetVirtualButton SDL_SetJoystickVirtualButton +#define SDL_JoystickSetVirtualHat SDL_SetJoystickVirtualHat +#define SDL_JoystickUpdate SDL_UpdateJoysticks + +/* ##SDL_keyboard.h */ +#define SDL_IsScreenKeyboardShown SDL_ScreenKeyboardShown +#define SDL_IsTextInputActive SDL_TextInputActive + +/* ##SDL_keycode.h */ +#define KMOD_ALT SDL_KMOD_ALT +#define KMOD_CAPS SDL_KMOD_CAPS +#define KMOD_CTRL SDL_KMOD_CTRL +#define KMOD_GUI SDL_KMOD_GUI +#define KMOD_LALT SDL_KMOD_LALT +#define KMOD_LCTRL SDL_KMOD_LCTRL +#define KMOD_LGUI SDL_KMOD_LGUI +#define KMOD_LSHIFT SDL_KMOD_LSHIFT +#define KMOD_MODE SDL_KMOD_MODE +#define KMOD_NONE SDL_KMOD_NONE +#define KMOD_NUM SDL_KMOD_NUM +#define KMOD_RALT SDL_KMOD_RALT +#define KMOD_RCTRL SDL_KMOD_RCTRL +#define KMOD_RGUI SDL_KMOD_RGUI +#define KMOD_RSHIFT SDL_KMOD_RSHIFT +#define KMOD_SCROLL SDL_KMOD_SCROLL +#define KMOD_SHIFT SDL_KMOD_SHIFT +#define SDLK_AUDIOFASTFORWARD SDLK_MEDIA_FAST_FORWARD +#define SDLK_AUDIOMUTE SDLK_MUTE +#define SDLK_AUDIONEXT SDLK_MEDIA_NEXT_TRACK +#define SDLK_AUDIOPLAY SDLK_MEDIA_PLAY +#define SDLK_AUDIOPREV SDLK_MEDIA_PREVIOUS_TRACK +#define SDLK_AUDIOREWIND SDLK_MEDIA_REWIND +#define SDLK_AUDIOSTOP SDLK_MEDIA_STOP +#define SDLK_BACKQUOTE SDLK_GRAVE +#define SDLK_EJECT SDLK_MEDIA_EJECT +#define SDLK_MEDIASELECT SDLK_MEDIA_SELECT +#define SDLK_QUOTE SDLK_APOSTROPHE +#define SDLK_QUOTEDBL SDLK_DBLAPOSTROPHE +#define SDLK_a SDLK_A +#define SDLK_b SDLK_B +#define SDLK_c SDLK_C +#define SDLK_d SDLK_D +#define SDLK_e SDLK_E +#define SDLK_f SDLK_F +#define SDLK_g SDLK_G +#define SDLK_h SDLK_H +#define SDLK_i SDLK_I +#define SDLK_j SDLK_J +#define SDLK_k SDLK_K +#define SDLK_l SDLK_L +#define SDLK_m SDLK_M +#define SDLK_n SDLK_N +#define SDLK_o SDLK_O +#define SDLK_p SDLK_P +#define SDLK_q SDLK_Q +#define SDLK_r SDLK_R +#define SDLK_s SDLK_S +#define SDLK_t SDLK_T +#define SDLK_u SDLK_U +#define SDLK_v SDLK_V +#define SDLK_w SDLK_W +#define SDLK_x SDLK_X +#define SDLK_y SDLK_Y +#define SDLK_z SDLK_Z + +/* ##SDL_log.h */ +#define SDL_LogGetOutputFunction SDL_GetLogOutputFunction +#define SDL_LogGetPriority SDL_GetLogPriority +#define SDL_LogResetPriorities SDL_ResetLogPriorities +#define SDL_LogSetAllPriority SDL_SetLogPriorities +#define SDL_LogSetOutputFunction SDL_SetLogOutputFunction +#define SDL_LogSetPriority SDL_SetLogPriority +#define SDL_NUM_LOG_PRIORITIES SDL_LOG_PRIORITY_COUNT + +/* ##SDL_messagebox.h */ +#define SDL_MESSAGEBOX_COLOR_MAX SDL_MESSAGEBOX_COLOR_COUNT + +/* ##SDL_mouse.h */ +#define SDL_BUTTON SDL_BUTTON_MASK +#define SDL_FreeCursor SDL_DestroyCursor +#define SDL_NUM_SYSTEM_CURSORS SDL_SYSTEM_CURSOR_COUNT +#define SDL_SYSTEM_CURSOR_ARROW SDL_SYSTEM_CURSOR_DEFAULT +#define SDL_SYSTEM_CURSOR_HAND SDL_SYSTEM_CURSOR_POINTER +#define SDL_SYSTEM_CURSOR_IBEAM SDL_SYSTEM_CURSOR_TEXT +#define SDL_SYSTEM_CURSOR_NO SDL_SYSTEM_CURSOR_NOT_ALLOWED +#define SDL_SYSTEM_CURSOR_SIZEALL SDL_SYSTEM_CURSOR_MOVE +#define SDL_SYSTEM_CURSOR_SIZENESW SDL_SYSTEM_CURSOR_NESW_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENS SDL_SYSTEM_CURSOR_NS_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENWSE SDL_SYSTEM_CURSOR_NWSE_RESIZE +#define SDL_SYSTEM_CURSOR_SIZEWE SDL_SYSTEM_CURSOR_EW_RESIZE +#define SDL_SYSTEM_CURSOR_WAITARROW SDL_SYSTEM_CURSOR_PROGRESS +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOM SDL_SYSTEM_CURSOR_S_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMLEFT SDL_SYSTEM_CURSOR_SW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMRIGHT SDL_SYSTEM_CURSOR_SE_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_LEFT SDL_SYSTEM_CURSOR_W_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_RIGHT SDL_SYSTEM_CURSOR_E_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOP SDL_SYSTEM_CURSOR_N_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPLEFT SDL_SYSTEM_CURSOR_NW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPRIGHT SDL_SYSTEM_CURSOR_NE_RESIZE + +/* ##SDL_mutex.h */ +#define SDL_CondBroadcast SDL_BroadcastCondition +#define SDL_CondSignal SDL_SignalCondition +#define SDL_CondWait SDL_WaitCondition +#define SDL_CondWaitTimeout SDL_WaitConditionTimeout +#define SDL_CreateCond SDL_CreateCondition +#define SDL_DestroyCond SDL_DestroyCondition +#define SDL_SemPost SDL_SignalSemaphore +#define SDL_SemTryWait SDL_TryWaitSemaphore +#define SDL_SemValue SDL_GetSemaphoreValue +#define SDL_SemWait SDL_WaitSemaphore +#define SDL_SemWaitTimeout SDL_WaitSemaphoreTimeout + +/* ##SDL_mutex.h */ +#define SDL_cond SDL_Condition +#define SDL_mutex SDL_Mutex +#define SDL_sem SDL_Semaphore + +/* ##SDL_pixels.h */ +#define SDL_AllocFormat SDL_GetPixelFormatDetails +#define SDL_AllocPalette SDL_CreatePalette +#define SDL_Colour SDL_Color +#define SDL_FreePalette SDL_DestroyPalette +#define SDL_MasksToPixelFormatEnum SDL_GetPixelFormatForMasks +#define SDL_PIXELFORMAT_BGR444 SDL_PIXELFORMAT_XBGR4444 +#define SDL_PIXELFORMAT_BGR555 SDL_PIXELFORMAT_XBGR1555 +#define SDL_PIXELFORMAT_BGR888 SDL_PIXELFORMAT_XBGR8888 +#define SDL_PIXELFORMAT_RGB444 SDL_PIXELFORMAT_XRGB4444 +#define SDL_PIXELFORMAT_RGB555 SDL_PIXELFORMAT_XRGB1555 +#define SDL_PIXELFORMAT_RGB888 SDL_PIXELFORMAT_XRGB8888 +#define SDL_PixelFormatEnumToMasks SDL_GetMasksForPixelFormat + +/* ##SDL_rect.h */ +#define SDL_EncloseFPoints SDL_GetRectEnclosingPointsFloat +#define SDL_EnclosePoints SDL_GetRectEnclosingPoints +#define SDL_FRectEmpty SDL_RectEmptyFloat +#define SDL_FRectEquals SDL_RectsEqualFloat +#define SDL_FRectEqualsEpsilon SDL_RectsEqualEpsilon +#define SDL_HasIntersection SDL_HasRectIntersection +#define SDL_HasIntersectionF SDL_HasRectIntersectionFloat +#define SDL_IntersectFRect SDL_GetRectIntersectionFloat +#define SDL_IntersectFRectAndLine SDL_GetRectAndLineIntersectionFloat +#define SDL_IntersectRect SDL_GetRectIntersection +#define SDL_IntersectRectAndLine SDL_GetRectAndLineIntersection +#define SDL_PointInFRect SDL_PointInRectFloat +#define SDL_RectEquals SDL_RectsEqual +#define SDL_UnionFRect SDL_GetRectUnionFloat +#define SDL_UnionRect SDL_GetRectUnion + +/* ##SDL_render.h */ +#define SDL_GetRendererOutputSize SDL_GetCurrentRenderOutputSize +#define SDL_RenderCopy SDL_RenderTexture +#define SDL_RenderCopyEx SDL_RenderTextureRotated +#define SDL_RenderCopyExF SDL_RenderTextureRotated +#define SDL_RenderCopyF SDL_RenderTexture +#define SDL_RenderDrawLine SDL_RenderLine +#define SDL_RenderDrawLineF SDL_RenderLine +#define SDL_RenderDrawLines SDL_RenderLines +#define SDL_RenderDrawLinesF SDL_RenderLines +#define SDL_RenderDrawPoint SDL_RenderPoint +#define SDL_RenderDrawPointF SDL_RenderPoint +#define SDL_RenderDrawPoints SDL_RenderPoints +#define SDL_RenderDrawPointsF SDL_RenderPoints +#define SDL_RenderDrawRect SDL_RenderRect +#define SDL_RenderDrawRectF SDL_RenderRect +#define SDL_RenderDrawRects SDL_RenderRects +#define SDL_RenderDrawRectsF SDL_RenderRects +#define SDL_RenderFillRectF SDL_RenderFillRect +#define SDL_RenderFillRectsF SDL_RenderFillRects +#define SDL_RendererFlip SDL_FlipMode +#define SDL_RenderFlush SDL_FlushRenderer +#define SDL_RenderGetClipRect SDL_GetRenderClipRect +#define SDL_RenderGetLogicalSize SDL_GetRenderLogicalPresentation +#define SDL_RenderGetMetalCommandEncoder SDL_GetRenderMetalCommandEncoder +#define SDL_RenderGetMetalLayer SDL_GetRenderMetalLayer +#define SDL_RenderGetScale SDL_GetRenderScale +#define SDL_RenderGetViewport SDL_GetRenderViewport +#define SDL_RenderGetWindow SDL_GetRenderWindow +#define SDL_RenderIsClipEnabled SDL_RenderClipEnabled +#define SDL_RenderLogicalToWindow SDL_RenderCoordinatesToWindow +#define SDL_RenderSetClipRect SDL_SetRenderClipRect +#define SDL_RenderSetLogicalSize SDL_SetRenderLogicalPresentation +#define SDL_RenderSetScale SDL_SetRenderScale +#define SDL_RenderSetVSync SDL_SetRenderVSync +#define SDL_RenderSetViewport SDL_SetRenderViewport +#define SDL_RenderWindowToLogical SDL_RenderCoordinatesFromWindow +#define SDL_ScaleModeLinear SDL_SCALEMODE_LINEAR +#define SDL_ScaleModeNearest SDL_SCALEMODE_NEAREST + +/* ##SDL_rwops.h */ +#define RW_SEEK_CUR SDL_IO_SEEK_CUR +#define RW_SEEK_END SDL_IO_SEEK_END +#define RW_SEEK_SET SDL_IO_SEEK_SET +#define SDL_RWFromConstMem SDL_IOFromConstMem +#define SDL_RWFromFile SDL_IOFromFile +#define SDL_RWFromMem SDL_IOFromMem +#define SDL_RWclose SDL_CloseIO +#define SDL_RWops SDL_IOStream +#define SDL_RWread SDL_ReadIO +#define SDL_RWseek SDL_SeekIO +#define SDL_RWsize SDL_GetIOSize +#define SDL_RWtell SDL_TellIO +#define SDL_RWwrite SDL_WriteIO +#define SDL_ReadBE16 SDL_ReadU16BE +#define SDL_ReadBE32 SDL_ReadU32BE +#define SDL_ReadBE64 SDL_ReadU64BE +#define SDL_ReadLE16 SDL_ReadU16LE +#define SDL_ReadLE32 SDL_ReadU32LE +#define SDL_ReadLE64 SDL_ReadU64LE +#define SDL_WriteBE16 SDL_WriteU16BE +#define SDL_WriteBE32 SDL_WriteU32BE +#define SDL_WriteBE64 SDL_WriteU64BE +#define SDL_WriteLE16 SDL_WriteU16LE +#define SDL_WriteLE32 SDL_WriteU32LE +#define SDL_WriteLE64 SDL_WriteU64LE + +/* ##SDL_scancode.h */ +#define SDL_NUM_SCANCODES SDL_SCANCODE_COUNT +#define SDL_SCANCODE_AUDIOFASTFORWARD SDL_SCANCODE_MEDIA_FAST_FORWARD +#define SDL_SCANCODE_AUDIOMUTE SDL_SCANCODE_MUTE +#define SDL_SCANCODE_AUDIONEXT SDL_SCANCODE_MEDIA_NEXT_TRACK +#define SDL_SCANCODE_AUDIOPLAY SDL_SCANCODE_MEDIA_PLAY +#define SDL_SCANCODE_AUDIOPREV SDL_SCANCODE_MEDIA_PREVIOUS_TRACK +#define SDL_SCANCODE_AUDIOREWIND SDL_SCANCODE_MEDIA_REWIND +#define SDL_SCANCODE_AUDIOSTOP SDL_SCANCODE_MEDIA_STOP +#define SDL_SCANCODE_EJECT SDL_SCANCODE_MEDIA_EJECT +#define SDL_SCANCODE_MEDIASELECT SDL_SCANCODE_MEDIA_SELECT + +/* ##SDL_sensor.h */ +#define SDL_SensorClose SDL_CloseSensor +#define SDL_SensorFromInstanceID SDL_GetSensorFromID +#define SDL_SensorGetData SDL_GetSensorData +#define SDL_SensorGetInstanceID SDL_GetSensorID +#define SDL_SensorGetName SDL_GetSensorName +#define SDL_SensorGetNonPortableType SDL_GetSensorNonPortableType +#define SDL_SensorGetType SDL_GetSensorType +#define SDL_SensorOpen SDL_OpenSensor +#define SDL_SensorUpdate SDL_UpdateSensors + +/* ##SDL_stdinc.h */ +#define SDL_FALSE false +#define SDL_TABLESIZE SDL_arraysize +#define SDL_TRUE true +#define SDL_bool bool +#define SDL_size_add_overflow SDL_size_add_check_overflow +#define SDL_size_mul_overflow SDL_size_mul_check_overflow +#define SDL_strtokr SDL_strtok_r + +/* ##SDL_surface.h */ +#define SDL_BlitScaled SDL_BlitSurfaceScaled +#define SDL_ConvertSurfaceFormat SDL_ConvertSurface +#define SDL_FillRect SDL_FillSurfaceRect +#define SDL_FillRects SDL_FillSurfaceRects +#define SDL_FreeSurface SDL_DestroySurface +#define SDL_GetClipRect SDL_GetSurfaceClipRect +#define SDL_GetColorKey SDL_GetSurfaceColorKey +#define SDL_HasColorKey SDL_SurfaceHasColorKey +#define SDL_HasSurfaceRLE SDL_SurfaceHasRLE +#define SDL_LoadBMP_RW SDL_LoadBMP_IO +#define SDL_LowerBlit SDL_BlitSurfaceUnchecked +#define SDL_LowerBlitScaled SDL_BlitSurfaceUncheckedScaled +#define SDL_PREALLOC SDL_SURFACE_PREALLOCATED +#define SDL_SIMD_ALIGNED SDL_SURFACE_SIMD_ALIGNED +#define SDL_SaveBMP_RW SDL_SaveBMP_IO +#define SDL_SetClipRect SDL_SetSurfaceClipRect +#define SDL_SetColorKey SDL_SetSurfaceColorKey +#define SDL_UpperBlit SDL_BlitSurface +#define SDL_UpperBlitScaled SDL_BlitSurfaceScaled + +/* ##SDL_system.h */ +#define SDL_AndroidBackButton SDL_SendAndroidBackButton +#define SDL_AndroidGetActivity SDL_GetAndroidActivity +#define SDL_AndroidGetExternalStoragePath SDL_GetAndroidExternalStoragePath +#define SDL_AndroidGetExternalStorageState SDL_GetAndroidExternalStorageState +#define SDL_AndroidGetInternalStoragePath SDL_GetAndroidInternalStoragePath +#define SDL_AndroidGetJNIEnv SDL_GetAndroidJNIEnv +#define SDL_AndroidRequestPermission SDL_RequestAndroidPermission +#define SDL_AndroidRequestPermissionCallback SDL_RequestAndroidPermissionCallback +#define SDL_AndroidSendMessage SDL_SendAndroidMessage +#define SDL_AndroidShowToast SDL_ShowAndroidToast +#define SDL_DXGIGetOutputInfo SDL_GetDXGIOutputInfo +#define SDL_Direct3D9GetAdapterIndex SDL_GetDirect3D9AdapterIndex +#define SDL_GDKGetDefaultUser SDL_GetGDKDefaultUser +#define SDL_GDKGetTaskQueue SDL_GetGDKTaskQueue +#define SDL_LinuxSetThreadPriority SDL_SetLinuxThreadPriority +#define SDL_LinuxSetThreadPriorityAndPolicy SDL_SetLinuxThreadPriorityAndPolicy +#define SDL_OnApplicationDidBecomeActive SDL_OnApplicationDidEnterForeground +#define SDL_OnApplicationWillResignActive SDL_OnApplicationWillEnterBackground +#define SDL_iOSSetAnimationCallback SDL_SetiOSAnimationCallback +#define SDL_iOSSetEventPump SDL_SetiOSEventPump +#define SDL_iPhoneSetAnimationCallback SDL_SetiOSAnimationCallback +#define SDL_iPhoneSetEventPump SDL_SetiOSEventPump + +/* ##SDL_thread.h */ +#define SDL_SetThreadPriority SDL_SetCurrentThreadPriority +#define SDL_TLSCleanup SDL_CleanupTLS +#define SDL_TLSGet SDL_GetTLS +#define SDL_TLSSet SDL_SetTLS +#define SDL_threadID SDL_ThreadID + +/* ##SDL_timer.h */ +#define SDL_GetTicks64 SDL_GetTicks + +/* ##SDL_version.h */ +#define SDL_COMPILEDVERSION SDL_VERSION +#define SDL_PATCHLEVEL SDL_MICRO_VERSION + +/* ##SDL_video.h */ +#define SDL_GL_DeleteContext SDL_GL_DestroyContext +#define SDL_GLattr SDL_GLAttr +#define SDL_GLcontextFlag SDL_GLContextFlag +#define SDL_GLcontextReleaseFlag SDL_GLContextReleaseFlag +#define SDL_GLprofile SDL_GLProfile +#define SDL_GetClosestDisplayMode SDL_GetClosestFullscreenDisplayMode +#define SDL_GetDisplayOrientation SDL_GetCurrentDisplayOrientation +#define SDL_GetPointDisplayIndex SDL_GetDisplayForPoint +#define SDL_GetRectDisplayIndex SDL_GetDisplayForRect +#define SDL_GetWindowDisplayIndex SDL_GetDisplayForWindow +#define SDL_GetWindowDisplayMode SDL_GetWindowFullscreenMode +#define SDL_HasWindowSurface SDL_WindowHasSurface +#define SDL_IsScreenSaverEnabled SDL_ScreenSaverEnabled +#define SDL_SetWindowDisplayMode SDL_SetWindowFullscreenMode +#define SDL_WINDOW_ALLOW_HIGHDPI SDL_WINDOW_HIGH_PIXEL_DENSITY +#define SDL_WINDOW_INPUT_GRABBED SDL_WINDOW_MOUSE_GRABBED +#define SDL_WINDOW_SKIP_TASKBAR SDL_WINDOW_UTILITY + +#elif !defined(SDL_DISABLE_OLD_NAMES) + +/* ##SDL_atomic.h */ +#define SDL_AtomicAdd SDL_AtomicAdd_renamed_SDL_AddAtomicInt +#define SDL_AtomicCAS SDL_AtomicCAS_renamed_SDL_CompareAndSwapAtomicInt +#define SDL_AtomicCASPtr SDL_AtomicCASPtr_renamed_SDL_CompareAndSwapAtomicPointer +#define SDL_AtomicGet SDL_AtomicGet_renamed_SDL_GetAtomicInt +#define SDL_AtomicGetPtr SDL_AtomicGetPtr_renamed_SDL_GetAtomicPointer +#define SDL_AtomicLock SDL_AtomicLock_renamed_SDL_LockSpinlock +#define SDL_AtomicSet SDL_AtomicSet_renamed_SDL_SetAtomicInt +#define SDL_AtomicSetPtr SDL_AtomicSetPtr_renamed_SDL_SetAtomicPointer +#define SDL_AtomicTryLock SDL_AtomicTryLock_renamed_SDL_TryLockSpinlock +#define SDL_AtomicUnlock SDL_AtomicUnlock_renamed_SDL_UnlockSpinlock +#define SDL_atomic_t SDL_atomic_t_renamed_SDL_AtomicInt + +/* ##SDL_audio.h */ +#define AUDIO_F32 AUDIO_F32_renamed_SDL_AUDIO_F32LE +#define AUDIO_F32LSB AUDIO_F32LSB_renamed_SDL_AUDIO_F32LE +#define AUDIO_F32MSB AUDIO_F32MSB_renamed_SDL_AUDIO_F32BE +#define AUDIO_F32SYS AUDIO_F32SYS_renamed_SDL_AUDIO_F32 +#define AUDIO_S16 AUDIO_S16_renamed_SDL_AUDIO_S16LE +#define AUDIO_S16LSB AUDIO_S16LSB_renamed_SDL_AUDIO_S16LE +#define AUDIO_S16MSB AUDIO_S16MSB_renamed_SDL_AUDIO_S16BE +#define AUDIO_S16SYS AUDIO_S16SYS_renamed_SDL_AUDIO_S16 +#define AUDIO_S32 AUDIO_S32_renamed_SDL_AUDIO_S32LE +#define AUDIO_S32LSB AUDIO_S32LSB_renamed_SDL_AUDIO_S32LE +#define AUDIO_S32MSB AUDIO_S32MSB_renamed_SDL_AUDIO_S32BE +#define AUDIO_S32SYS AUDIO_S32SYS_renamed_SDL_AUDIO_S32 +#define AUDIO_S8 AUDIO_S8_renamed_SDL_AUDIO_S8 +#define AUDIO_U8 AUDIO_U8_renamed_SDL_AUDIO_U8 +#define SDL_AudioStreamAvailable SDL_AudioStreamAvailable_renamed_SDL_GetAudioStreamAvailable +#define SDL_AudioStreamClear SDL_AudioStreamClear_renamed_SDL_ClearAudioStream +#define SDL_AudioStreamFlush SDL_AudioStreamFlush_renamed_SDL_FlushAudioStream +#define SDL_AudioStreamGet SDL_AudioStreamGet_renamed_SDL_GetAudioStreamData +#define SDL_AudioStreamPut SDL_AudioStreamPut_renamed_SDL_PutAudioStreamData +#define SDL_FreeAudioStream SDL_FreeAudioStream_renamed_SDL_DestroyAudioStream +#define SDL_FreeWAV SDL_FreeWAV_renamed_SDL_free +#define SDL_LoadWAV_RW SDL_LoadWAV_RW_renamed_SDL_LoadWAV_IO +#define SDL_MixAudioFormat SDL_MixAudioFormat_renamed_SDL_MixAudio +#define SDL_NewAudioStream SDL_NewAudioStream_renamed_SDL_CreateAudioStream + +/* ##SDL_cpuinfo.h */ +#define SDL_GetCPUCount SDL_GetCPUCount_renamed_SDL_GetNumLogicalCPUCores +#define SDL_SIMDGetAlignment SDL_SIMDGetAlignment_renamed_SDL_GetSIMDAlignment + +/* ##SDL_endian.h */ +#define SDL_SwapBE16 SDL_SwapBE16_renamed_SDL_Swap16BE +#define SDL_SwapBE32 SDL_SwapBE32_renamed_SDL_Swap32BE +#define SDL_SwapBE64 SDL_SwapBE64_renamed_SDL_Swap64BE +#define SDL_SwapLE16 SDL_SwapLE16_renamed_SDL_Swap16LE +#define SDL_SwapLE32 SDL_SwapLE32_renamed_SDL_Swap32LE +#define SDL_SwapLE64 SDL_SwapLE64_renamed_SDL_Swap64LE + +/* ##SDL_events.h */ +#define SDL_APP_DIDENTERBACKGROUND SDL_APP_DIDENTERBACKGROUND_renamed_SDL_EVENT_DID_ENTER_BACKGROUND +#define SDL_APP_DIDENTERFOREGROUND SDL_APP_DIDENTERFOREGROUND_renamed_SDL_EVENT_DID_ENTER_FOREGROUND +#define SDL_APP_LOWMEMORY SDL_APP_LOWMEMORY_renamed_SDL_EVENT_LOW_MEMORY +#define SDL_APP_TERMINATING SDL_APP_TERMINATING_renamed_SDL_EVENT_TERMINATING +#define SDL_APP_WILLENTERBACKGROUND SDL_APP_WILLENTERBACKGROUND_renamed_SDL_EVENT_WILL_ENTER_BACKGROUND +#define SDL_APP_WILLENTERFOREGROUND SDL_APP_WILLENTERFOREGROUND_renamed_SDL_EVENT_WILL_ENTER_FOREGROUND +#define SDL_AUDIODEVICEADDED SDL_AUDIODEVICEADDED_renamed_SDL_EVENT_AUDIO_DEVICE_ADDED +#define SDL_AUDIODEVICEREMOVED SDL_AUDIODEVICEREMOVED_renamed_SDL_EVENT_AUDIO_DEVICE_REMOVED +#define SDL_CLIPBOARDUPDATE SDL_CLIPBOARDUPDATE_renamed_SDL_EVENT_CLIPBOARD_UPDATE +#define SDL_CONTROLLERAXISMOTION SDL_CONTROLLERAXISMOTION_renamed_SDL_EVENT_GAMEPAD_AXIS_MOTION +#define SDL_CONTROLLERBUTTONDOWN SDL_CONTROLLERBUTTONDOWN_renamed_SDL_EVENT_GAMEPAD_BUTTON_DOWN +#define SDL_CONTROLLERBUTTONUP SDL_CONTROLLERBUTTONUP_renamed_SDL_EVENT_GAMEPAD_BUTTON_UP +#define SDL_CONTROLLERDEVICEADDED SDL_CONTROLLERDEVICEADDED_renamed_SDL_EVENT_GAMEPAD_ADDED +#define SDL_CONTROLLERDEVICEREMAPPED SDL_CONTROLLERDEVICEREMAPPED_renamed_SDL_EVENT_GAMEPAD_REMAPPED +#define SDL_CONTROLLERDEVICEREMOVED SDL_CONTROLLERDEVICEREMOVED_renamed_SDL_EVENT_GAMEPAD_REMOVED +#define SDL_CONTROLLERSENSORUPDATE SDL_CONTROLLERSENSORUPDATE_renamed_SDL_EVENT_GAMEPAD_SENSOR_UPDATE +#define SDL_CONTROLLERSTEAMHANDLEUPDATED SDL_CONTROLLERSTEAMHANDLEUPDATED_renamed_SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED +#define SDL_CONTROLLERTOUCHPADDOWN SDL_CONTROLLERTOUCHPADDOWN_renamed_SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN +#define SDL_CONTROLLERTOUCHPADMOTION SDL_CONTROLLERTOUCHPADMOTION_renamed_SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION +#define SDL_CONTROLLERTOUCHPADUP SDL_CONTROLLERTOUCHPADUP_renamed_SDL_EVENT_GAMEPAD_TOUCHPAD_UP +#define SDL_ControllerAxisEvent SDL_ControllerAxisEvent_renamed_SDL_GamepadAxisEvent +#define SDL_ControllerButtonEvent SDL_ControllerButtonEvent_renamed_SDL_GamepadButtonEvent +#define SDL_ControllerDeviceEvent SDL_ControllerDeviceEvent_renamed_SDL_GamepadDeviceEvent +#define SDL_ControllerSensorEvent SDL_ControllerSensorEvent_renamed_SDL_GamepadSensorEvent +#define SDL_ControllerTouchpadEvent SDL_ControllerTouchpadEvent_renamed_SDL_GamepadTouchpadEvent +#define SDL_DISPLAYEVENT_CONNECTED SDL_DISPLAYEVENT_CONNECTED_renamed_SDL_EVENT_DISPLAY_ADDED +#define SDL_DISPLAYEVENT_DISCONNECTED SDL_DISPLAYEVENT_DISCONNECTED_renamed_SDL_EVENT_DISPLAY_REMOVED +#define SDL_DISPLAYEVENT_MOVED SDL_DISPLAYEVENT_MOVED_renamed_SDL_EVENT_DISPLAY_MOVED +#define SDL_DISPLAYEVENT_ORIENTATION SDL_DISPLAYEVENT_ORIENTATION_renamed_SDL_EVENT_DISPLAY_ORIENTATION +#define SDL_DROPBEGIN SDL_DROPBEGIN_renamed_SDL_EVENT_DROP_BEGIN +#define SDL_DROPCOMPLETE SDL_DROPCOMPLETE_renamed_SDL_EVENT_DROP_COMPLETE +#define SDL_DROPFILE SDL_DROPFILE_renamed_SDL_EVENT_DROP_FILE +#define SDL_DROPTEXT SDL_DROPTEXT_renamed_SDL_EVENT_DROP_TEXT +#define SDL_DelEventWatch SDL_DelEventWatch_renamed_SDL_RemoveEventWatch +#define SDL_FINGERDOWN SDL_FINGERDOWN_renamed_SDL_EVENT_FINGER_DOWN +#define SDL_FINGERMOTION SDL_FINGERMOTION_renamed_SDL_EVENT_FINGER_MOTION +#define SDL_FINGERUP SDL_FINGERUP_renamed_SDL_EVENT_FINGER_UP +#define SDL_FIRSTEVENT SDL_FIRSTEVENT_renamed_SDL_EVENT_FIRST +#define SDL_JOYAXISMOTION SDL_JOYAXISMOTION_renamed_SDL_EVENT_JOYSTICK_AXIS_MOTION +#define SDL_JOYBATTERYUPDATED SDL_JOYBATTERYUPDATED_renamed_SDL_EVENT_JOYSTICK_BATTERY_UPDATED +#define SDL_JOYBUTTONDOWN SDL_JOYBUTTONDOWN_renamed_SDL_EVENT_JOYSTICK_BUTTON_DOWN +#define SDL_JOYBUTTONUP SDL_JOYBUTTONUP_renamed_SDL_EVENT_JOYSTICK_BUTTON_UP +#define SDL_JOYDEVICEADDED SDL_JOYDEVICEADDED_renamed_SDL_EVENT_JOYSTICK_ADDED +#define SDL_JOYDEVICEREMOVED SDL_JOYDEVICEREMOVED_renamed_SDL_EVENT_JOYSTICK_REMOVED +#define SDL_JOYBALLMOTION SDL_JOYBALLMOTION_renamed_SDL_EVENT_JOYSTICK_BALL_MOTION +#define SDL_JOYHATMOTION SDL_JOYHATMOTION_renamed_SDL_EVENT_JOYSTICK_HAT_MOTION +#define SDL_KEYDOWN SDL_KEYDOWN_renamed_SDL_EVENT_KEY_DOWN +#define SDL_KEYMAPCHANGED SDL_KEYMAPCHANGED_renamed_SDL_EVENT_KEYMAP_CHANGED +#define SDL_KEYUP SDL_KEYUP_renamed_SDL_EVENT_KEY_UP +#define SDL_LASTEVENT SDL_LASTEVENT_renamed_SDL_EVENT_LAST +#define SDL_LOCALECHANGED SDL_LOCALECHANGED_renamed_SDL_EVENT_LOCALE_CHANGED +#define SDL_MOUSEBUTTONDOWN SDL_MOUSEBUTTONDOWN_renamed_SDL_EVENT_MOUSE_BUTTON_DOWN +#define SDL_MOUSEBUTTONUP SDL_MOUSEBUTTONUP_renamed_SDL_EVENT_MOUSE_BUTTON_UP +#define SDL_MOUSEMOTION SDL_MOUSEMOTION_renamed_SDL_EVENT_MOUSE_MOTION +#define SDL_MOUSEWHEEL SDL_MOUSEWHEEL_renamed_SDL_EVENT_MOUSE_WHEEL +#define SDL_POLLSENTINEL SDL_POLLSENTINEL_renamed_SDL_EVENT_POLL_SENTINEL +#define SDL_QUIT SDL_QUIT_renamed_SDL_EVENT_QUIT +#define SDL_RENDER_DEVICE_RESET SDL_RENDER_DEVICE_RESET_renamed_SDL_EVENT_RENDER_DEVICE_RESET +#define SDL_RENDER_TARGETS_RESET SDL_RENDER_TARGETS_RESET_renamed_SDL_EVENT_RENDER_TARGETS_RESET +#define SDL_SENSORUPDATE SDL_SENSORUPDATE_renamed_SDL_EVENT_SENSOR_UPDATE +#define SDL_TEXTEDITING SDL_TEXTEDITING_renamed_SDL_EVENT_TEXT_EDITING +#define SDL_TEXTEDITING_EXT SDL_TEXTEDITING_EXT_renamed_SDL_EVENT_TEXT_EDITING_EXT +#define SDL_TEXTINPUT SDL_TEXTINPUT_renamed_SDL_EVENT_TEXT_INPUT +#define SDL_USEREVENT SDL_USEREVENT_renamed_SDL_EVENT_USER +#define SDL_WINDOWEVENT_CLOSE SDL_WINDOWEVENT_CLOSE_renamed_SDL_EVENT_WINDOW_CLOSE_REQUESTED +#define SDL_WINDOWEVENT_DISPLAY_CHANGED SDL_WINDOWEVENT_DISPLAY_CHANGED_renamed_SDL_EVENT_WINDOW_DISPLAY_CHANGED +#define SDL_WINDOWEVENT_ENTER SDL_WINDOWEVENT_ENTER_renamed_SDL_EVENT_WINDOW_MOUSE_ENTER +#define SDL_WINDOWEVENT_EXPOSED SDL_WINDOWEVENT_EXPOSED_renamed_SDL_EVENT_WINDOW_EXPOSED +#define SDL_WINDOWEVENT_FOCUS_GAINED SDL_WINDOWEVENT_FOCUS_GAINED_renamed_SDL_EVENT_WINDOW_FOCUS_GAINED +#define SDL_WINDOWEVENT_FOCUS_LOST SDL_WINDOWEVENT_FOCUS_LOST_renamed_SDL_EVENT_WINDOW_FOCUS_LOST +#define SDL_WINDOWEVENT_HIDDEN SDL_WINDOWEVENT_HIDDEN_renamed_SDL_EVENT_WINDOW_HIDDEN +#define SDL_WINDOWEVENT_HIT_TEST SDL_WINDOWEVENT_HIT_TEST_renamed_SDL_EVENT_WINDOW_HIT_TEST +#define SDL_WINDOWEVENT_ICCPROF_CHANGED SDL_WINDOWEVENT_ICCPROF_CHANGED_renamed_SDL_EVENT_WINDOW_ICCPROF_CHANGED +#define SDL_WINDOWEVENT_LEAVE SDL_WINDOWEVENT_LEAVE_renamed_SDL_EVENT_WINDOW_MOUSE_LEAVE +#define SDL_WINDOWEVENT_MAXIMIZED SDL_WINDOWEVENT_MAXIMIZED_renamed_SDL_EVENT_WINDOW_MAXIMIZED +#define SDL_WINDOWEVENT_MINIMIZED SDL_WINDOWEVENT_MINIMIZED_renamed_SDL_EVENT_WINDOW_MINIMIZED +#define SDL_WINDOWEVENT_MOVED SDL_WINDOWEVENT_MOVED_renamed_SDL_EVENT_WINDOW_MOVED +#define SDL_WINDOWEVENT_RESIZED SDL_WINDOWEVENT_RESIZED_renamed_SDL_EVENT_WINDOW_RESIZED +#define SDL_WINDOWEVENT_RESTORED SDL_WINDOWEVENT_RESTORED_renamed_SDL_EVENT_WINDOW_RESTORED +#define SDL_WINDOWEVENT_SHOWN SDL_WINDOWEVENT_SHOWN_renamed_SDL_EVENT_WINDOW_SHOWN +#define SDL_WINDOWEVENT_SIZE_CHANGED SDL_WINDOWEVENT_SIZE_CHANGED_renamed_SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED +#define SDL_eventaction SDL_eventaction_renamed_SDL_EventAction + +/* ##SDL_gamecontroller.h */ +#define SDL_CONTROLLER_AXIS_INVALID SDL_CONTROLLER_AXIS_INVALID_renamed_SDL_GAMEPAD_AXIS_INVALID +#define SDL_CONTROLLER_AXIS_LEFTX SDL_CONTROLLER_AXIS_LEFTX_renamed_SDL_GAMEPAD_AXIS_LEFTX +#define SDL_CONTROLLER_AXIS_LEFTY SDL_CONTROLLER_AXIS_LEFTY_renamed_SDL_GAMEPAD_AXIS_LEFTY +#define SDL_CONTROLLER_AXIS_MAX SDL_CONTROLLER_AXIS_MAX_renamed_SDL_GAMEPAD_AXIS_COUNT +#define SDL_CONTROLLER_AXIS_RIGHTX SDL_CONTROLLER_AXIS_RIGHTX_renamed_SDL_GAMEPAD_AXIS_RIGHTX +#define SDL_CONTROLLER_AXIS_RIGHTY SDL_CONTROLLER_AXIS_RIGHTY_renamed_SDL_GAMEPAD_AXIS_RIGHTY +#define SDL_CONTROLLER_AXIS_TRIGGERLEFT SDL_CONTROLLER_AXIS_TRIGGERLEFT_renamed_SDL_GAMEPAD_AXIS_LEFT_TRIGGER +#define SDL_CONTROLLER_AXIS_TRIGGERRIGHT SDL_CONTROLLER_AXIS_TRIGGERRIGHT_renamed_SDL_GAMEPAD_AXIS_RIGHT_TRIGGER +#define SDL_CONTROLLER_BINDTYPE_AXIS SDL_CONTROLLER_BINDTYPE_AXIS_renamed_SDL_GAMEPAD_BINDTYPE_AXIS +#define SDL_CONTROLLER_BINDTYPE_BUTTON SDL_CONTROLLER_BINDTYPE_BUTTON_renamed_SDL_GAMEPAD_BINDTYPE_BUTTON +#define SDL_CONTROLLER_BINDTYPE_HAT SDL_CONTROLLER_BINDTYPE_HAT_renamed_SDL_GAMEPAD_BINDTYPE_HAT +#define SDL_CONTROLLER_BINDTYPE_NONE SDL_CONTROLLER_BINDTYPE_NONE_renamed_SDL_GAMEPAD_BINDTYPE_NONE +#define SDL_CONTROLLER_BUTTON_A SDL_CONTROLLER_BUTTON_A_renamed_SDL_GAMEPAD_BUTTON_SOUTH +#define SDL_CONTROLLER_BUTTON_B SDL_CONTROLLER_BUTTON_B_renamed_SDL_GAMEPAD_BUTTON_EAST +#define SDL_CONTROLLER_BUTTON_BACK SDL_CONTROLLER_BUTTON_BACK_renamed_SDL_GAMEPAD_BUTTON_BACK +#define SDL_CONTROLLER_BUTTON_DPAD_DOWN SDL_CONTROLLER_BUTTON_DPAD_DOWN_renamed_SDL_GAMEPAD_BUTTON_DPAD_DOWN +#define SDL_CONTROLLER_BUTTON_DPAD_LEFT SDL_CONTROLLER_BUTTON_DPAD_LEFT_renamed_SDL_GAMEPAD_BUTTON_DPAD_LEFT +#define SDL_CONTROLLER_BUTTON_DPAD_RIGHT SDL_CONTROLLER_BUTTON_DPAD_RIGHT_renamed_SDL_GAMEPAD_BUTTON_DPAD_RIGHT +#define SDL_CONTROLLER_BUTTON_DPAD_UP SDL_CONTROLLER_BUTTON_DPAD_UP_renamed_SDL_GAMEPAD_BUTTON_DPAD_UP +#define SDL_CONTROLLER_BUTTON_GUIDE SDL_CONTROLLER_BUTTON_GUIDE_renamed_SDL_GAMEPAD_BUTTON_GUIDE +#define SDL_CONTROLLER_BUTTON_INVALID SDL_CONTROLLER_BUTTON_INVALID_renamed_SDL_GAMEPAD_BUTTON_INVALID +#define SDL_CONTROLLER_BUTTON_LEFTSHOULDER SDL_CONTROLLER_BUTTON_LEFTSHOULDER_renamed_SDL_GAMEPAD_BUTTON_LEFT_SHOULDER +#define SDL_CONTROLLER_BUTTON_LEFTSTICK SDL_CONTROLLER_BUTTON_LEFTSTICK_renamed_SDL_GAMEPAD_BUTTON_LEFT_STICK +#define SDL_CONTROLLER_BUTTON_MAX SDL_CONTROLLER_BUTTON_MAX_renamed_SDL_GAMEPAD_BUTTON_COUNT +#define SDL_CONTROLLER_BUTTON_MISC1 SDL_CONTROLLER_BUTTON_MISC1_renamed_SDL_GAMEPAD_BUTTON_MISC1 +#define SDL_CONTROLLER_BUTTON_PADDLE1 SDL_CONTROLLER_BUTTON_PADDLE1_renamed_SDL_GAMEPAD_BUTTON_RIGHT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE2 SDL_CONTROLLER_BUTTON_PADDLE2_renamed_SDL_GAMEPAD_BUTTON_LEFT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE3 SDL_CONTROLLER_BUTTON_PADDLE3_renamed_SDL_GAMEPAD_BUTTON_RIGHT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_PADDLE4 SDL_CONTROLLER_BUTTON_PADDLE4_renamed_SDL_GAMEPAD_BUTTON_LEFT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_RIGHTSHOULDER SDL_CONTROLLER_BUTTON_RIGHTSHOULDER_renamed_SDL_GAMEPAD_BUTTON_RIGHT_SHOULDER +#define SDL_CONTROLLER_BUTTON_RIGHTSTICK SDL_CONTROLLER_BUTTON_RIGHTSTICK_renamed_SDL_GAMEPAD_BUTTON_RIGHT_STICK +#define SDL_CONTROLLER_BUTTON_START SDL_CONTROLLER_BUTTON_START_renamed_SDL_GAMEPAD_BUTTON_START +#define SDL_CONTROLLER_BUTTON_TOUCHPAD SDL_CONTROLLER_BUTTON_TOUCHPAD_renamed_SDL_GAMEPAD_BUTTON_TOUCHPAD +#define SDL_CONTROLLER_BUTTON_X SDL_CONTROLLER_BUTTON_X_renamed_SDL_GAMEPAD_BUTTON_WEST +#define SDL_CONTROLLER_BUTTON_Y SDL_CONTROLLER_BUTTON_Y_renamed_SDL_GAMEPAD_BUTTON_NORTH +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_LEFT SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_LEFT_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_LEFT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_PAIR SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_PAIR_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_PAIR +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_PRO +#define SDL_CONTROLLER_TYPE_PS3 SDL_CONTROLLER_TYPE_PS3_renamed_SDL_GAMEPAD_TYPE_PS3 +#define SDL_CONTROLLER_TYPE_PS4 SDL_CONTROLLER_TYPE_PS4_renamed_SDL_GAMEPAD_TYPE_PS4 +#define SDL_CONTROLLER_TYPE_PS5 SDL_CONTROLLER_TYPE_PS5_renamed_SDL_GAMEPAD_TYPE_PS5 +#define SDL_CONTROLLER_TYPE_UNKNOWN SDL_CONTROLLER_TYPE_UNKNOWN_renamed_SDL_GAMEPAD_TYPE_STANDARD +#define SDL_CONTROLLER_TYPE_VIRTUAL SDL_CONTROLLER_TYPE_VIRTUAL_renamed_SDL_GAMEPAD_TYPE_VIRTUAL +#define SDL_CONTROLLER_TYPE_XBOX360 SDL_CONTROLLER_TYPE_XBOX360_renamed_SDL_GAMEPAD_TYPE_XBOX360 +#define SDL_CONTROLLER_TYPE_XBOXONE SDL_CONTROLLER_TYPE_XBOXONE_renamed_SDL_GAMEPAD_TYPE_XBOXONE +#define SDL_GameController SDL_GameController_renamed_SDL_Gamepad +#define SDL_GameControllerAddMapping SDL_GameControllerAddMapping_renamed_SDL_AddGamepadMapping +#define SDL_GameControllerAddMappingsFromFile SDL_GameControllerAddMappingsFromFile_renamed_SDL_AddGamepadMappingsFromFile +#define SDL_GameControllerAddMappingsFromRW SDL_GameControllerAddMappingsFromRW_renamed_SDL_AddGamepadMappingsFromIO +#define SDL_GameControllerAxis SDL_GameControllerAxis_renamed_SDL_GamepadAxis +#define SDL_GameControllerBindType SDL_GameControllerBindType_renamed_SDL_GamepadBindingType +#define SDL_GameControllerButton SDL_GameControllerButton_renamed_SDL_GamepadButton +#define SDL_GameControllerClose SDL_GameControllerClose_renamed_SDL_CloseGamepad +#define SDL_GameControllerFromInstanceID SDL_GameControllerFromInstanceID_renamed_SDL_GetGamepadFromID +#define SDL_GameControllerFromPlayerIndex SDL_GameControllerFromPlayerIndex_renamed_SDL_GetGamepadFromPlayerIndex +#define SDL_GameControllerGetAppleSFSymbolsNameForAxis SDL_GameControllerGetAppleSFSymbolsNameForAxis_renamed_SDL_GetGamepadAppleSFSymbolsNameForAxis +#define SDL_GameControllerGetAppleSFSymbolsNameForButton SDL_GameControllerGetAppleSFSymbolsNameForButton_renamed_SDL_GetGamepadAppleSFSymbolsNameForButton +#define SDL_GameControllerGetAttached SDL_GameControllerGetAttached_renamed_SDL_GamepadConnected +#define SDL_GameControllerGetAxis SDL_GameControllerGetAxis_renamed_SDL_GetGamepadAxis +#define SDL_GameControllerGetAxisFromString SDL_GameControllerGetAxisFromString_renamed_SDL_GetGamepadAxisFromString +#define SDL_GameControllerGetButton SDL_GameControllerGetButton_renamed_SDL_GetGamepadButton +#define SDL_GameControllerGetButtonFromString SDL_GameControllerGetButtonFromString_renamed_SDL_GetGamepadButtonFromString +#define SDL_GameControllerGetFirmwareVersion SDL_GameControllerGetFirmwareVersion_renamed_SDL_GetGamepadFirmwareVersion +#define SDL_GameControllerGetJoystick SDL_GameControllerGetJoystick_renamed_SDL_GetGamepadJoystick +#define SDL_GameControllerGetNumTouchpadFingers SDL_GameControllerGetNumTouchpadFingers_renamed_SDL_GetNumGamepadTouchpadFingers +#define SDL_GameControllerGetNumTouchpads SDL_GameControllerGetNumTouchpads_renamed_SDL_GetNumGamepadTouchpads +#define SDL_GameControllerGetPlayerIndex SDL_GameControllerGetPlayerIndex_renamed_SDL_GetGamepadPlayerIndex +#define SDL_GameControllerGetProduct SDL_GameControllerGetProduct_renamed_SDL_GetGamepadProduct +#define SDL_GameControllerGetProductVersion SDL_GameControllerGetProductVersion_renamed_SDL_GetGamepadProductVersion +#define SDL_GameControllerGetSensorData SDL_GameControllerGetSensorData_renamed_SDL_GetGamepadSensorData +#define SDL_GameControllerGetSensorDataRate SDL_GameControllerGetSensorDataRate_renamed_SDL_GetGamepadSensorDataRate +#define SDL_GameControllerGetSerial SDL_GameControllerGetSerial_renamed_SDL_GetGamepadSerial +#define SDL_GameControllerGetSteamHandle SDL_GameControllerGetSteamHandle_renamed_SDL_GetGamepadSteamHandle +#define SDL_GameControllerGetStringForAxis SDL_GameControllerGetStringForAxis_renamed_SDL_GetGamepadStringForAxis +#define SDL_GameControllerGetStringForButton SDL_GameControllerGetStringForButton_renamed_SDL_GetGamepadStringForButton +#define SDL_GameControllerGetTouchpadFinger SDL_GameControllerGetTouchpadFinger_renamed_SDL_GetGamepadTouchpadFinger +#define SDL_GameControllerGetType SDL_GameControllerGetType_renamed_SDL_GetGamepadType +#define SDL_GameControllerGetVendor SDL_GameControllerGetVendor_renamed_SDL_GetGamepadVendor +#define SDL_GameControllerHasAxis SDL_GameControllerHasAxis_renamed_SDL_GamepadHasAxis +#define SDL_GameControllerHasButton SDL_GameControllerHasButton_renamed_SDL_GamepadHasButton +#define SDL_GameControllerHasSensor SDL_GameControllerHasSensor_renamed_SDL_GamepadHasSensor +#define SDL_GameControllerIsSensorEnabled SDL_GameControllerIsSensorEnabled_renamed_SDL_GamepadSensorEnabled +#define SDL_GameControllerMapping SDL_GameControllerMapping_renamed_SDL_GetGamepadMapping +#define SDL_GameControllerMappingForDeviceIndex SDL_GameControllerMappingForDeviceIndex_renamed_SDL_GetGamepadMappingForDeviceIndex +#define SDL_GameControllerMappingForGUID SDL_GameControllerMappingForGUID_renamed_SDL_GetGamepadMappingForGUID +#define SDL_GameControllerName SDL_GameControllerName_renamed_SDL_GetGamepadName +#define SDL_GameControllerOpen SDL_GameControllerOpen_renamed_SDL_OpenGamepad +#define SDL_GameControllerPath SDL_GameControllerPath_renamed_SDL_GetGamepadPath +#define SDL_GameControllerRumble SDL_GameControllerRumble_renamed_SDL_RumbleGamepad +#define SDL_GameControllerRumbleTriggers SDL_GameControllerRumbleTriggers_renamed_SDL_RumbleGamepadTriggers +#define SDL_GameControllerSendEffect SDL_GameControllerSendEffect_renamed_SDL_SendGamepadEffect +#define SDL_GameControllerSetLED SDL_GameControllerSetLED_renamed_SDL_SetGamepadLED +#define SDL_GameControllerSetPlayerIndex SDL_GameControllerSetPlayerIndex_renamed_SDL_SetGamepadPlayerIndex +#define SDL_GameControllerSetSensorEnabled SDL_GameControllerSetSensorEnabled_renamed_SDL_SetGamepadSensorEnabled +#define SDL_GameControllerType SDL_GameControllerType_renamed_SDL_GamepadType +#define SDL_GameControllerUpdate SDL_GameControllerUpdate_renamed_SDL_UpdateGamepads +#define SDL_INIT_GAMECONTROLLER SDL_INIT_GAMECONTROLLER_renamed_SDL_INIT_GAMEPAD +#define SDL_IsGameController SDL_IsGameController_renamed_SDL_IsGamepad + +/* ##SDL_guid.h */ +#define SDL_GUIDFromString SDL_GUIDFromString_renamed_SDL_StringToGUID + +/* ##SDL_haptic.h */ +#define SDL_HapticClose SDL_HapticClose_renamed_SDL_CloseHaptic +#define SDL_HapticDestroyEffect SDL_HapticDestroyEffect_renamed_SDL_DestroyHapticEffect +#define SDL_HapticGetEffectStatus SDL_HapticGetEffectStatus_renamed_SDL_GetHapticEffectStatus +#define SDL_HapticNewEffect SDL_HapticNewEffect_renamed_SDL_CreateHapticEffect +#define SDL_HapticNumAxes SDL_HapticNumAxes_renamed_SDL_GetNumHapticAxes +#define SDL_HapticNumEffects SDL_HapticNumEffects_renamed_SDL_GetMaxHapticEffects +#define SDL_HapticNumEffectsPlaying SDL_HapticNumEffectsPlaying_renamed_SDL_GetMaxHapticEffectsPlaying +#define SDL_HapticOpen SDL_HapticOpen_renamed_SDL_OpenHaptic +#define SDL_HapticOpenFromJoystick SDL_HapticOpenFromJoystick_renamed_SDL_OpenHapticFromJoystick +#define SDL_HapticOpenFromMouse SDL_HapticOpenFromMouse_renamed_SDL_OpenHapticFromMouse +#define SDL_HapticPause SDL_HapticPause_renamed_SDL_PauseHaptic +#define SDL_HapticQuery SDL_HapticQuery_renamed_SDL_GetHapticFeatures +#define SDL_HapticRumbleInit SDL_HapticRumbleInit_renamed_SDL_InitHapticRumble +#define SDL_HapticRumblePlay SDL_HapticRumblePlay_renamed_SDL_PlayHapticRumble +#define SDL_HapticRumbleStop SDL_HapticRumbleStop_renamed_SDL_StopHapticRumble +#define SDL_HapticRunEffect SDL_HapticRunEffect_renamed_SDL_RunHapticEffect +#define SDL_HapticSetAutocenter SDL_HapticSetAutocenter_renamed_SDL_SetHapticAutocenter +#define SDL_HapticSetGain SDL_HapticSetGain_renamed_SDL_SetHapticGain +#define SDL_HapticStopAll SDL_HapticStopAll_renamed_SDL_StopHapticEffects +#define SDL_HapticStopEffect SDL_HapticStopEffect_renamed_SDL_StopHapticEffect +#define SDL_HapticUnpause SDL_HapticUnpause_renamed_SDL_ResumeHaptic +#define SDL_HapticUpdateEffect SDL_HapticUpdateEffect_renamed_SDL_UpdateHapticEffect +#define SDL_JoystickIsHaptic SDL_JoystickIsHaptic_renamed_SDL_IsJoystickHaptic +#define SDL_MouseIsHaptic SDL_MouseIsHaptic_renamed_SDL_IsMouseHaptic + +/* ##SDL_hints.h */ +#define SDL_DelHintCallback SDL_DelHintCallback_renamed_SDL_RemoveHintCallback +#define SDL_HINT_ALLOW_TOPMOST SDL_HINT_ALLOW_TOPMOST_renamed_SDL_HINT_WINDOW_ALLOW_TOPMOST +#define SDL_HINT_DIRECTINPUT_ENABLED SDL_HINT_DIRECTINPUT_ENABLED_renamed_SDL_HINT_JOYSTICK_DIRECTINPUT +#define SDL_HINT_GDK_TEXTINPUT_DEFAULT SDL_HINT_GDK_TEXTINPUT_DEFAULT_renamed_SDL_HINT_GDK_TEXTINPUT_DEFAULT_TEXT +#define SDL_HINT_JOYSTICK_GAMECUBE_RUMBLE_BRAKE SDL_HINT_JOYSTICK_GAMECUBE_RUMBLE_BRAKE_renamed_SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE +#define SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE_renamed_SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE_renamed_SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_LINUX_DIGITAL_HATS SDL_HINT_LINUX_DIGITAL_HATS_renamed_SDL_HINT_JOYSTICK_LINUX_DIGITAL_HATS +#define SDL_HINT_LINUX_HAT_DEADZONES SDL_HINT_LINUX_HAT_DEADZONES_renamed_SDL_HINT_JOYSTICK_LINUX_HAT_DEADZONES +#define SDL_HINT_LINUX_JOYSTICK_CLASSIC SDL_HINT_LINUX_JOYSTICK_CLASSIC_renamed_SDL_HINT_JOYSTICK_LINUX_CLASSIC +#define SDL_HINT_LINUX_JOYSTICK_DEADZONES SDL_HINT_LINUX_JOYSTICK_DEADZONES_renamed_SDL_HINT_JOYSTICK_LINUX_DEADZONES + +/* ##SDL_joystick.h */ +#define SDL_JOYSTICK_TYPE_GAMECONTROLLER SDL_JOYSTICK_TYPE_GAMECONTROLLER_renamed_SDL_JOYSTICK_TYPE_GAMEPAD +#define SDL_JoystickAttachVirtualEx SDL_JoystickAttachVirtualEx_renamed_SDL_AttachVirtualJoystick +#define SDL_JoystickClose SDL_JoystickClose_renamed_SDL_CloseJoystick +#define SDL_JoystickDetachVirtual SDL_JoystickDetachVirtual_renamed_SDL_DetachVirtualJoystick +#define SDL_JoystickFromInstanceID SDL_JoystickFromInstanceID_renamed_SDL_GetJoystickFromID +#define SDL_JoystickFromPlayerIndex SDL_JoystickFromPlayerIndex_renamed_SDL_GetJoystickFromPlayerIndex +#define SDL_JoystickGUID SDL_JoystickGUID_renamed_SDL_GUID +#define SDL_JoystickGetAttached SDL_JoystickGetAttached_renamed_SDL_JoystickConnected +#define SDL_JoystickGetAxis SDL_JoystickGetAxis_renamed_SDL_GetJoystickAxis +#define SDL_JoystickGetAxisInitialState SDL_JoystickGetAxisInitialState_renamed_SDL_GetJoystickAxisInitialState +#define SDL_JoystickGetBall SDL_JoystickGetBall_renamed_SDL_GetJoystickBall +#define SDL_JoystickGetButton SDL_JoystickGetButton_renamed_SDL_GetJoystickButton +#define SDL_JoystickGetFirmwareVersion SDL_JoystickGetFirmwareVersion_renamed_SDL_GetJoystickFirmwareVersion +#define SDL_JoystickGetGUID SDL_JoystickGetGUID_renamed_SDL_GetJoystickGUID +#define SDL_JoystickGetGUIDFromString SDL_JoystickGetGUIDFromString_renamed_SDL_GUIDFromString +#define SDL_JoystickGetHat SDL_JoystickGetHat_renamed_SDL_GetJoystickHat +#define SDL_JoystickGetPlayerIndex SDL_JoystickGetPlayerIndex_renamed_SDL_GetJoystickPlayerIndex +#define SDL_JoystickGetProduct SDL_JoystickGetProduct_renamed_SDL_GetJoystickProduct +#define SDL_JoystickGetProductVersion SDL_JoystickGetProductVersion_renamed_SDL_GetJoystickProductVersion +#define SDL_JoystickGetSerial SDL_JoystickGetSerial_renamed_SDL_GetJoystickSerial +#define SDL_JoystickGetType SDL_JoystickGetType_renamed_SDL_GetJoystickType +#define SDL_JoystickGetVendor SDL_JoystickGetVendor_renamed_SDL_GetJoystickVendor +#define SDL_JoystickInstanceID SDL_JoystickInstanceID_renamed_SDL_GetJoystickID +#define SDL_JoystickIsVirtual SDL_JoystickIsVirtual_renamed_SDL_IsJoystickVirtual +#define SDL_JoystickName SDL_JoystickName_renamed_SDL_GetJoystickName +#define SDL_JoystickNumAxes SDL_JoystickNumAxes_renamed_SDL_GetNumJoystickAxes +#define SDL_JoystickNumBalls SDL_JoystickNumBalls_renamed_SDL_GetNumJoystickBalls +#define SDL_JoystickNumButtons SDL_JoystickNumButtons_renamed_SDL_GetNumJoystickButtons +#define SDL_JoystickNumHats SDL_JoystickNumHats_renamed_SDL_GetNumJoystickHats +#define SDL_JoystickOpen SDL_JoystickOpen_renamed_SDL_OpenJoystick +#define SDL_JoystickPath SDL_JoystickPath_renamed_SDL_GetJoystickPath +#define SDL_JoystickRumble SDL_JoystickRumble_renamed_SDL_RumbleJoystick +#define SDL_JoystickRumbleTriggers SDL_JoystickRumbleTriggers_renamed_SDL_RumbleJoystickTriggers +#define SDL_JoystickSendEffect SDL_JoystickSendEffect_renamed_SDL_SendJoystickEffect +#define SDL_JoystickSetLED SDL_JoystickSetLED_renamed_SDL_SetJoystickLED +#define SDL_JoystickSetPlayerIndex SDL_JoystickSetPlayerIndex_renamed_SDL_SetJoystickPlayerIndex +#define SDL_JoystickSetVirtualAxis SDL_JoystickSetVirtualAxis_renamed_SDL_SetJoystickVirtualAxis +#define SDL_JoystickSetVirtualButton SDL_JoystickSetVirtualButton_renamed_SDL_SetJoystickVirtualButton +#define SDL_JoystickSetVirtualHat SDL_JoystickSetVirtualHat_renamed_SDL_SetJoystickVirtualHat +#define SDL_JoystickUpdate SDL_JoystickUpdate_renamed_SDL_UpdateJoysticks + +/* ##SDL_keyboard.h */ +#define SDL_IsScreenKeyboardShown SDL_IsScreenKeyboardShown_renamed_SDL_ScreenKeyboardShown +#define SDL_IsTextInputActive SDL_IsTextInputActive_renamed_SDL_TextInputActive + +/* ##SDL_keycode.h */ +#define KMOD_ALT KMOD_ALT_renamed_SDL_KMOD_ALT +#define KMOD_CAPS KMOD_CAPS_renamed_SDL_KMOD_CAPS +#define KMOD_CTRL KMOD_CTRL_renamed_SDL_KMOD_CTRL +#define KMOD_GUI KMOD_GUI_renamed_SDL_KMOD_GUI +#define KMOD_LALT KMOD_LALT_renamed_SDL_KMOD_LALT +#define KMOD_LCTRL KMOD_LCTRL_renamed_SDL_KMOD_LCTRL +#define KMOD_LGUI KMOD_LGUI_renamed_SDL_KMOD_LGUI +#define KMOD_LSHIFT KMOD_LSHIFT_renamed_SDL_KMOD_LSHIFT +#define KMOD_MODE KMOD_MODE_renamed_SDL_KMOD_MODE +#define KMOD_NONE KMOD_NONE_renamed_SDL_KMOD_NONE +#define KMOD_NUM KMOD_NUM_renamed_SDL_KMOD_NUM +#define KMOD_RALT KMOD_RALT_renamed_SDL_KMOD_RALT +#define KMOD_RCTRL KMOD_RCTRL_renamed_SDL_KMOD_RCTRL +#define KMOD_RGUI KMOD_RGUI_renamed_SDL_KMOD_RGUI +#define KMOD_RSHIFT KMOD_RSHIFT_renamed_SDL_KMOD_RSHIFT +#define KMOD_SCROLL KMOD_SCROLL_renamed_SDL_KMOD_SCROLL +#define KMOD_SHIFT KMOD_SHIFT_renamed_SDL_KMOD_SHIFT +#define SDLK_AUDIOFASTFORWARD SDLK_AUDIOFASTFORWARD_renamed_SDLK_MEDIA_FAST_FORWARD +#define SDLK_AUDIOMUTE SDLK_AUDIOMUTE_renamed_SDLK_MUTE +#define SDLK_AUDIONEXT SDLK_AUDIONEXT_renamed_SDLK_MEDIA_NEXT_TRACK +#define SDLK_AUDIOPLAY SDLK_AUDIOPLAY_renamed_SDLK_MEDIA_PLAY +#define SDLK_AUDIOPREV SDLK_AUDIOPREV_renamed_SDLK_MEDIA_PREVIOUS_TRACK +#define SDLK_AUDIOREWIND SDLK_AUDIOREWIND_renamed_SDLK_MEDIA_REWIND +#define SDLK_AUDIOSTOP SDLK_AUDIOSTOP_renamed_SDLK_MEDIA_STOP +#define SDLK_BACKQUOTE SDLK_BACKQUOTE_renamed_SDLK_GRAVE +#define SDLK_EJECT SDLK_EJECT_renamed_SDLK_MEDIA_EJECT +#define SDLK_MEDIASELECT SDLK_MEDIASELECT_renamed_SDLK_MEDIA_SELECT +#define SDLK_QUOTE SDLK_QUOTE_renamed_SDLK_APOSTROPHE +#define SDLK_QUOTEDBL SDLK_QUOTEDBL_renamed_SDLK_DBLAPOSTROPHE +#define SDLK_a SDLK_a_renamed_SDLK_A +#define SDLK_b SDLK_b_renamed_SDLK_B +#define SDLK_c SDLK_c_renamed_SDLK_C +#define SDLK_d SDLK_d_renamed_SDLK_D +#define SDLK_e SDLK_e_renamed_SDLK_E +#define SDLK_f SDLK_f_renamed_SDLK_F +#define SDLK_g SDLK_g_renamed_SDLK_G +#define SDLK_h SDLK_h_renamed_SDLK_H +#define SDLK_i SDLK_i_renamed_SDLK_I +#define SDLK_j SDLK_j_renamed_SDLK_J +#define SDLK_k SDLK_k_renamed_SDLK_K +#define SDLK_l SDLK_l_renamed_SDLK_L +#define SDLK_m SDLK_m_renamed_SDLK_M +#define SDLK_n SDLK_n_renamed_SDLK_N +#define SDLK_o SDLK_o_renamed_SDLK_O +#define SDLK_p SDLK_p_renamed_SDLK_P +#define SDLK_q SDLK_q_renamed_SDLK_Q +#define SDLK_r SDLK_r_renamed_SDLK_R +#define SDLK_s SDLK_s_renamed_SDLK_S +#define SDLK_t SDLK_t_renamed_SDLK_T +#define SDLK_u SDLK_u_renamed_SDLK_U +#define SDLK_v SDLK_v_renamed_SDLK_V +#define SDLK_w SDLK_w_renamed_SDLK_W +#define SDLK_x SDLK_x_renamed_SDLK_X +#define SDLK_y SDLK_y_renamed_SDLK_Y +#define SDLK_z SDLK_z_renamed_SDLK_Z + +/* ##SDL_log.h */ +#define SDL_LogGetOutputFunction SDL_LogGetOutputFunction_renamed_SDL_GetLogOutputFunction +#define SDL_LogGetPriority SDL_LogGetPriority_renamed_SDL_GetLogPriority +#define SDL_LogResetPriorities SDL_LogResetPriorities_renamed_SDL_ResetLogPriorities +#define SDL_LogSetAllPriority SDL_LogSetAllPriority_renamed_SDL_SetLogPriorities +#define SDL_LogSetOutputFunction SDL_LogSetOutputFunction_renamed_SDL_SetLogOutputFunction +#define SDL_LogSetPriority SDL_LogSetPriority_renamed_SDL_SetLogPriority +#define SDL_NUM_LOG_PRIORITIES SDL_NUM_LOG_PRIORITIES_renamed_SDL_LOG_PRIORITY_COUNT + +/* ##SDL_messagebox.h */ +#define SDL_MESSAGEBOX_COLOR_MAX SDL_MESSAGEBOX_COLOR_MAX_renamed_SDL_MESSAGEBOX_COLOR_COUNT + +/* ##SDL_mouse.h */ +#define SDL_BUTTON SDL_BUTTON_renamed_SDL_BUTTON_MASK +#define SDL_FreeCursor SDL_FreeCursor_renamed_SDL_DestroyCursor +#define SDL_NUM_SYSTEM_CURSORS SDL_NUM_SYSTEM_CURSORS_renamed_SDL_SYSTEM_CURSOR_COUNT +#define SDL_SYSTEM_CURSOR_ARROW SDL_SYSTEM_CURSOR_ARROW_renamed_SDL_SYSTEM_CURSOR_DEFAULT +#define SDL_SYSTEM_CURSOR_HAND SDL_SYSTEM_CURSOR_HAND_renamed_SDL_SYSTEM_CURSOR_POINTER +#define SDL_SYSTEM_CURSOR_IBEAM SDL_SYSTEM_CURSOR_IBEAM_renamed_SDL_SYSTEM_CURSOR_TEXT +#define SDL_SYSTEM_CURSOR_NO SDL_SYSTEM_CURSOR_NO_renamed_SDL_SYSTEM_CURSOR_NOT_ALLOWED +#define SDL_SYSTEM_CURSOR_SIZEALL SDL_SYSTEM_CURSOR_SIZEALL_renamed_SDL_SYSTEM_CURSOR_MOVE +#define SDL_SYSTEM_CURSOR_SIZENESW SDL_SYSTEM_CURSOR_SIZENESW_renamed_SDL_SYSTEM_CURSOR_NESW_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENS SDL_SYSTEM_CURSOR_SIZENS_renamed_SDL_SYSTEM_CURSOR_NS_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENWSE SDL_SYSTEM_CURSOR_SIZENWSE_renamed_SDL_SYSTEM_CURSOR_NWSE_RESIZE +#define SDL_SYSTEM_CURSOR_SIZEWE SDL_SYSTEM_CURSOR_SIZEWE_renamed_SDL_SYSTEM_CURSOR_EW_RESIZE +#define SDL_SYSTEM_CURSOR_WAITARROW SDL_SYSTEM_CURSOR_WAITARROW_renamed_SDL_SYSTEM_CURSOR_PROGRESS +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOM SDL_SYSTEM_CURSOR_WINDOW_BOTTOM_renamed_SDL_SYSTEM_CURSOR_S_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMLEFT SDL_SYSTEM_CURSOR_WINDOW_BOTTOMLEFT_renamed_SDL_SYSTEM_CURSOR_SW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMRIGHT SDL_SYSTEM_CURSOR_WINDOW_BOTTOMRIGHT_renamed_SDL_SYSTEM_CURSOR_SE_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_LEFT SDL_SYSTEM_CURSOR_WINDOW_LEFT_renamed_SDL_SYSTEM_CURSOR_W_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_RIGHT SDL_SYSTEM_CURSOR_WINDOW_RIGHT_renamed_SDL_SYSTEM_CURSOR_E_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOP SDL_SYSTEM_CURSOR_WINDOW_TOP_renamed_SDL_SYSTEM_CURSOR_N_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPLEFT SDL_SYSTEM_CURSOR_WINDOW_TOPLEFT_renamed_SDL_SYSTEM_CURSOR_NW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPRIGHT SDL_SYSTEM_CURSOR_WINDOW_TOPRIGHT_renamed_SDL_SYSTEM_CURSOR_NE_RESIZE + +/* ##SDL_mutex.h */ +#define SDL_CondBroadcast SDL_CondBroadcast_renamed_SDL_BroadcastCondition +#define SDL_CondSignal SDL_CondSignal_renamed_SDL_SignalCondition +#define SDL_CondWait SDL_CondWait_renamed_SDL_WaitCondition +#define SDL_CondWaitTimeout SDL_CondWaitTimeout_renamed_SDL_WaitConditionTimeout +#define SDL_CreateCond SDL_CreateCond_renamed_SDL_CreateCondition +#define SDL_DestroyCond SDL_DestroyCond_renamed_SDL_DestroyCondition +#define SDL_SemPost SDL_SemPost_renamed_SDL_SignalSemaphore +#define SDL_SemTryWait SDL_SemTryWait_renamed_SDL_TryWaitSemaphore +#define SDL_SemValue SDL_SemValue_renamed_SDL_GetSemaphoreValue +#define SDL_SemWait SDL_SemWait_renamed_SDL_WaitSemaphore +#define SDL_SemWaitTimeout SDL_SemWaitTimeout_renamed_SDL_WaitSemaphoreTimeout + +/* ##SDL_mutex.h */ +#define SDL_cond SDL_cond_renamed_SDL_Condition +#define SDL_mutex SDL_mutex_renamed_SDL_Mutex +#define SDL_sem SDL_sem_renamed_SDL_Semaphore + +/* ##SDL_pixels.h */ +#define SDL_AllocFormat SDL_AllocFormat_renamed_SDL_GetPixelFormatDetails +#define SDL_AllocPalette SDL_AllocPalette_renamed_SDL_CreatePalette +#define SDL_Colour SDL_Colour_renamed_SDL_Color +#define SDL_FreePalette SDL_FreePalette_renamed_SDL_DestroyPalette +#define SDL_MasksToPixelFormatEnum SDL_MasksToPixelFormatEnum_renamed_SDL_GetPixelFormatForMasks +#define SDL_PIXELFORMAT_BGR444 SDL_PIXELFORMAT_BGR444_renamed_SDL_PIXELFORMAT_XBGR4444 +#define SDL_PIXELFORMAT_BGR555 SDL_PIXELFORMAT_BGR555_renamed_SDL_PIXELFORMAT_XBGR1555 +#define SDL_PIXELFORMAT_BGR888 SDL_PIXELFORMAT_BGR888_renamed_SDL_PIXELFORMAT_XBGR8888 +#define SDL_PIXELFORMAT_RGB444 SDL_PIXELFORMAT_RGB444_renamed_SDL_PIXELFORMAT_XRGB4444 +#define SDL_PIXELFORMAT_RGB555 SDL_PIXELFORMAT_RGB555_renamed_SDL_PIXELFORMAT_XRGB1555 +#define SDL_PIXELFORMAT_RGB888 SDL_PIXELFORMAT_RGB888_renamed_SDL_PIXELFORMAT_XRGB8888 +#define SDL_PixelFormatEnumToMasks SDL_PixelFormatEnumToMasks_renamed_SDL_GetMasksForPixelFormat + +/* ##SDL_rect.h */ +#define SDL_EncloseFPoints SDL_EncloseFPoints_renamed_SDL_GetRectEnclosingPointsFloat +#define SDL_EnclosePoints SDL_EnclosePoints_renamed_SDL_GetRectEnclosingPoints +#define SDL_FRectEmpty SDL_FRectEmpty_renamed_SDL_RectEmptyFloat +#define SDL_FRectEquals SDL_FRectEquals_renamed_SDL_RectsEqualFloat +#define SDL_FRectEqualsEpsilon SDL_FRectEqualsEpsilon_renamed_SDL_RectsEqualEpsilon +#define SDL_HasIntersection SDL_HasIntersection_renamed_SDL_HasRectIntersection +#define SDL_HasIntersectionF SDL_HasIntersectionF_renamed_SDL_HasRectIntersectionFloat +#define SDL_IntersectFRect SDL_IntersectFRect_renamed_SDL_GetRectIntersectionFloat +#define SDL_IntersectFRectAndLine SDL_IntersectFRectAndLine_renamed_SDL_GetRectAndLineIntersectionFloat +#define SDL_IntersectRect SDL_IntersectRect_renamed_SDL_GetRectIntersection +#define SDL_IntersectRectAndLine SDL_IntersectRectAndLine_renamed_SDL_GetRectAndLineIntersection +#define SDL_PointInFRect SDL_PointInFRect_renamed_SDL_PointInRectFloat +#define SDL_RectEquals SDL_RectEquals_renamed_SDL_RectsEqual +#define SDL_UnionFRect SDL_UnionFRect_renamed_SDL_GetRectUnionFloat +#define SDL_UnionRect SDL_UnionRect_renamed_SDL_GetRectUnion + +/* ##SDL_render.h */ +#define SDL_GetRendererOutputSize SDL_GetRendererOutputSize_renamed_SDL_GetCurrentRenderOutputSize +#define SDL_RenderCopy SDL_RenderCopy_renamed_SDL_RenderTexture +#define SDL_RenderCopyEx SDL_RenderCopyEx_renamed_SDL_RenderTextureRotated +#define SDL_RenderCopyExF SDL_RenderCopyExF_renamed_SDL_RenderTextureRotated +#define SDL_RenderCopyF SDL_RenderCopyF_renamed_SDL_RenderTexture +#define SDL_RenderDrawLine SDL_RenderDrawLine_renamed_SDL_RenderLine +#define SDL_RenderDrawLineF SDL_RenderDrawLineF_renamed_SDL_RenderLine +#define SDL_RenderDrawLines SDL_RenderDrawLines_renamed_SDL_RenderLines +#define SDL_RenderDrawLinesF SDL_RenderDrawLinesF_renamed_SDL_RenderLines +#define SDL_RenderDrawPoint SDL_RenderDrawPoint_renamed_SDL_RenderPoint +#define SDL_RenderDrawPointF SDL_RenderDrawPointF_renamed_SDL_RenderPoint +#define SDL_RenderDrawPoints SDL_RenderDrawPoints_renamed_SDL_RenderPoints +#define SDL_RenderDrawPointsF SDL_RenderDrawPointsF_renamed_SDL_RenderPoints +#define SDL_RenderDrawRect SDL_RenderDrawRect_renamed_SDL_RenderRect +#define SDL_RenderDrawRectF SDL_RenderDrawRectF_renamed_SDL_RenderRect +#define SDL_RenderDrawRects SDL_RenderDrawRects_renamed_SDL_RenderRects +#define SDL_RenderDrawRectsF SDL_RenderDrawRectsF_renamed_SDL_RenderRects +#define SDL_RenderFillRectF SDL_RenderFillRectF_renamed_SDL_RenderFillRect +#define SDL_RenderFillRectsF SDL_RenderFillRectsF_renamed_SDL_RenderFillRects +#define SDL_RendererFlip SDL_RendererFlip_renamed_SDL_FlipMode +#define SDL_RenderFlush SDL_RenderFlush_renamed_SDL_FlushRenderer +#define SDL_RenderGetClipRect SDL_RenderGetClipRect_renamed_SDL_GetRenderClipRect +#define SDL_RenderGetLogicalSize SDL_RenderGetLogicalSize_renamed_SDL_GetRenderLogicalPresentation +#define SDL_RenderGetMetalCommandEncoder SDL_RenderGetMetalCommandEncoder_renamed_SDL_GetRenderMetalCommandEncoder +#define SDL_RenderGetMetalLayer SDL_RenderGetMetalLayer_renamed_SDL_GetRenderMetalLayer +#define SDL_RenderGetScale SDL_RenderGetScale_renamed_SDL_GetRenderScale +#define SDL_RenderGetViewport SDL_RenderGetViewport_renamed_SDL_GetRenderViewport +#define SDL_RenderGetWindow SDL_RenderGetWindow_renamed_SDL_GetRenderWindow +#define SDL_RenderIsClipEnabled SDL_RenderIsClipEnabled_renamed_SDL_RenderClipEnabled +#define SDL_RenderLogicalToWindow SDL_RenderLogicalToWindow_renamed_SDL_RenderCoordinatesToWindow +#define SDL_RenderSetClipRect SDL_RenderSetClipRect_renamed_SDL_SetRenderClipRect +#define SDL_RenderSetLogicalSize SDL_RenderSetLogicalSize_renamed_SDL_SetRenderLogicalPresentation +#define SDL_RenderSetScale SDL_RenderSetScale_renamed_SDL_SetRenderScale +#define SDL_RenderSetVSync SDL_RenderSetVSync_renamed_SDL_SetRenderVSync +#define SDL_RenderSetViewport SDL_RenderSetViewport_renamed_SDL_SetRenderViewport +#define SDL_RenderWindowToLogical SDL_RenderWindowToLogical_renamed_SDL_RenderCoordinatesFromWindow +#define SDL_ScaleModeLinear SDL_ScaleModeLinear_renamed_SDL_SCALEMODE_LINEAR +#define SDL_ScaleModeNearest SDL_ScaleModeNearest_renamed_SDL_SCALEMODE_NEAREST + +/* ##SDL_rwops.h */ +#define RW_SEEK_CUR RW_SEEK_CUR_renamed_SDL_IO_SEEK_CUR +#define RW_SEEK_END RW_SEEK_END_renamed_SDL_IO_SEEK_END +#define RW_SEEK_SET RW_SEEK_SET_renamed_SDL_IO_SEEK_SET +#define SDL_RWFromConstMem SDL_RWFromConstMem_renamed_SDL_IOFromConstMem +#define SDL_RWFromFile SDL_RWFromFile_renamed_SDL_IOFromFile +#define SDL_RWFromMem SDL_RWFromMem_renamed_SDL_IOFromMem +#define SDL_RWclose SDL_RWclose_renamed_SDL_CloseIO +#define SDL_RWops SDL_RWops_renamed_SDL_IOStream +#define SDL_RWread SDL_RWread_renamed_SDL_ReadIO +#define SDL_RWseek SDL_RWseek_renamed_SDL_SeekIO +#define SDL_RWsize SDL_RWsize_renamed_SDL_GetIOSize +#define SDL_RWtell SDL_RWtell_renamed_SDL_TellIO +#define SDL_RWwrite SDL_RWwrite_renamed_SDL_WriteIO +#define SDL_ReadBE16 SDL_ReadBE16_renamed_SDL_ReadU16BE +#define SDL_ReadBE32 SDL_ReadBE32_renamed_SDL_ReadU32BE +#define SDL_ReadBE64 SDL_ReadBE64_renamed_SDL_ReadU64BE +#define SDL_ReadLE16 SDL_ReadLE16_renamed_SDL_ReadU16LE +#define SDL_ReadLE32 SDL_ReadLE32_renamed_SDL_ReadU32LE +#define SDL_ReadLE64 SDL_ReadLE64_renamed_SDL_ReadU64LE +#define SDL_WriteBE16 SDL_WriteBE16_renamed_SDL_WriteU16BE +#define SDL_WriteBE32 SDL_WriteBE32_renamed_SDL_WriteU32BE +#define SDL_WriteBE64 SDL_WriteBE64_renamed_SDL_WriteU64BE +#define SDL_WriteLE16 SDL_WriteLE16_renamed_SDL_WriteU16LE +#define SDL_WriteLE32 SDL_WriteLE32_renamed_SDL_WriteU32LE +#define SDL_WriteLE64 SDL_WriteLE64_renamed_SDL_WriteU64LE + +/* ##SDL_scancode.h */ +#define SDL_NUM_SCANCODES SDL_NUM_SCANCODES_renamed_SDL_SCANCODE_COUNT +#define SDL_SCANCODE_AUDIOFASTFORWARD SDL_SCANCODE_AUDIOFASTFORWARD_renamed_SDL_SCANCODE_MEDIA_FAST_FORWARD +#define SDL_SCANCODE_AUDIOMUTE SDL_SCANCODE_AUDIOMUTE_renamed_SDL_SCANCODE_MUTE +#define SDL_SCANCODE_AUDIONEXT SDL_SCANCODE_AUDIONEXT_renamed_SDL_SCANCODE_MEDIA_NEXT_TRACK +#define SDL_SCANCODE_AUDIOPLAY SDL_SCANCODE_AUDIOPLAY_renamed_SDL_SCANCODE_MEDIA_PLAY +#define SDL_SCANCODE_AUDIOPREV SDL_SCANCODE_AUDIOPREV_renamed_SDL_SCANCODE_MEDIA_PREVIOUS_TRACK +#define SDL_SCANCODE_AUDIOREWIND SDL_SCANCODE_AUDIOREWIND_renamed_SDL_SCANCODE_MEDIA_REWIND +#define SDL_SCANCODE_AUDIOSTOP SDL_SCANCODE_AUDIOSTOP_renamed_SDL_SCANCODE_MEDIA_STOP +#define SDL_SCANCODE_EJECT SDL_SCANCODE_EJECT_renamed_SDL_SCANCODE_MEDIA_EJECT +#define SDL_SCANCODE_MEDIASELECT SDL_SCANCODE_MEDIASELECT_renamed_SDL_SCANCODE_MEDIA_SELECT + +/* ##SDL_sensor.h */ +#define SDL_SensorClose SDL_SensorClose_renamed_SDL_CloseSensor +#define SDL_SensorFromInstanceID SDL_SensorFromInstanceID_renamed_SDL_GetSensorFromID +#define SDL_SensorGetData SDL_SensorGetData_renamed_SDL_GetSensorData +#define SDL_SensorGetInstanceID SDL_SensorGetInstanceID_renamed_SDL_GetSensorID +#define SDL_SensorGetName SDL_SensorGetName_renamed_SDL_GetSensorName +#define SDL_SensorGetNonPortableType SDL_SensorGetNonPortableType_renamed_SDL_GetSensorNonPortableType +#define SDL_SensorGetType SDL_SensorGetType_renamed_SDL_GetSensorType +#define SDL_SensorOpen SDL_SensorOpen_renamed_SDL_OpenSensor +#define SDL_SensorUpdate SDL_SensorUpdate_renamed_SDL_UpdateSensors + +/* ##SDL_stdinc.h */ +#define SDL_FALSE SDL_FALSE_renamed_false +#define SDL_TABLESIZE SDL_TABLESIZE_renamed_SDL_arraysize +#define SDL_TRUE SDL_TRUE_renamed_true +#define SDL_bool SDL_bool_renamed_bool +#define SDL_size_add_overflow SDL_size_add_overflow_renamed_SDL_size_add_check_overflow +#define SDL_size_mul_overflow SDL_size_mul_overflow_renamed_SDL_size_mul_check_overflow +#define SDL_strtokr SDL_strtokr_renamed_SDL_strtok_r + +/* ##SDL_surface.h */ +#define SDL_BlitScaled SDL_BlitScaled_renamed_SDL_BlitSurfaceScaled +#define SDL_ConvertSurfaceFormat SDL_ConvertSurfaceFormat_renamed_SDL_ConvertSurface +#define SDL_FillRect SDL_FillRect_renamed_SDL_FillSurfaceRect +#define SDL_FillRects SDL_FillRects_renamed_SDL_FillSurfaceRects +#define SDL_FreeSurface SDL_FreeSurface_renamed_SDL_DestroySurface +#define SDL_GetClipRect SDL_GetClipRect_renamed_SDL_GetSurfaceClipRect +#define SDL_GetColorKey SDL_GetColorKey_renamed_SDL_GetSurfaceColorKey +#define SDL_HasColorKey SDL_HasColorKey_renamed_SDL_SurfaceHasColorKey +#define SDL_HasSurfaceRLE SDL_HasSurfaceRLE_renamed_SDL_SurfaceHasRLE +#define SDL_LoadBMP_RW SDL_LoadBMP_RW_renamed_SDL_LoadBMP_IO +#define SDL_LowerBlit SDL_LowerBlit_renamed_SDL_BlitSurfaceUnchecked +#define SDL_LowerBlitScaled SDL_LowerBlitScaled_renamed_SDL_BlitSurfaceUncheckedScaled +#define SDL_PREALLOC SDL_PREALLOC_renamed_SDL_SURFACE_PREALLOCATED +#define SDL_SIMD_ALIGNED SDL_SIMD_ALIGNED_renamed_SDL_SURFACE_SIMD_ALIGNED +#define SDL_SaveBMP_RW SDL_SaveBMP_RW_renamed_SDL_SaveBMP_IO +#define SDL_SetClipRect SDL_SetClipRect_renamed_SDL_SetSurfaceClipRect +#define SDL_SetColorKey SDL_SetColorKey_renamed_SDL_SetSurfaceColorKey +#define SDL_UpperBlit SDL_UpperBlit_renamed_SDL_BlitSurface +#define SDL_UpperBlitScaled SDL_UpperBlitScaled_renamed_SDL_BlitSurfaceScaled + +/* ##SDL_system.h */ +#define SDL_AndroidBackButton SDL_AndroidBackButton_renamed_SDL_SendAndroidBackButton +#define SDL_AndroidGetActivity SDL_AndroidGetActivity_renamed_SDL_GetAndroidActivity +#define SDL_AndroidGetExternalStoragePath SDL_AndroidGetExternalStoragePath_renamed_SDL_GetAndroidExternalStoragePath +#define SDL_AndroidGetExternalStorageState SDL_AndroidGetExternalStorageState_renamed_SDL_GetAndroidExternalStorageState +#define SDL_AndroidGetInternalStoragePath SDL_AndroidGetInternalStoragePath_renamed_SDL_GetAndroidInternalStoragePath +#define SDL_AndroidGetJNIEnv SDL_AndroidGetJNIEnv_renamed_SDL_GetAndroidJNIEnv +#define SDL_AndroidRequestPermission SDL_AndroidRequestPermission_renamed_SDL_RequestAndroidPermission +#define SDL_AndroidRequestPermissionCallback SDL_AndroidRequestPermissionCallback_renamed_SDL_RequestAndroidPermissionCallback +#define SDL_AndroidSendMessage SDL_AndroidSendMessage_renamed_SDL_SendAndroidMessage +#define SDL_AndroidShowToast SDL_AndroidShowToast_renamed_SDL_ShowAndroidToast +#define SDL_DXGIGetOutputInfo SDL_DXGIGetOutputInfo_renamed_SDL_GetDXGIOutputInfo +#define SDL_Direct3D9GetAdapterIndex SDL_Direct3D9GetAdapterIndex_renamed_SDL_GetDirect3D9AdapterIndex +#define SDL_GDKGetDefaultUser SDL_GDKGetDefaultUser_renamed_SDL_GetGDKDefaultUser +#define SDL_GDKGetTaskQueue SDL_GDKGetTaskQueue_renamed_SDL_GetGDKTaskQueue +#define SDL_LinuxSetThreadPriority SDL_LinuxSetThreadPriority_renamed_SDL_SetLinuxThreadPriority +#define SDL_LinuxSetThreadPriorityAndPolicy SDL_LinuxSetThreadPriorityAndPolicy_renamed_SDL_SetLinuxThreadPriorityAndPolicy +#define SDL_OnApplicationDidBecomeActive SDL_OnApplicationDidBecomeActive_renamed_SDL_OnApplicationDidEnterForeground +#define SDL_OnApplicationWillResignActive SDL_OnApplicationWillResignActive_renamed_SDL_OnApplicationWillEnterBackground +#define SDL_iOSSetAnimationCallback SDL_iOSSetAnimationCallback_renamed_SDL_SetiOSAnimationCallback +#define SDL_iOSSetEventPump SDL_iOSSetEventPump_renamed_SDL_SetiOSEventPump +#define SDL_iPhoneSetAnimationCallback SDL_iPhoneSetAnimationCallback_renamed_SDL_iOSSetAnimationCallback +#define SDL_iPhoneSetEventPump SDL_iPhoneSetEventPump_renamed_SDL_iOSSetEventPump + +/* ##SDL_thread.h */ +#define SDL_SetThreadPriority SDL_SetThreadPriority_renamed_SDL_SetCurrentThreadPriority +#define SDL_TLSCleanup SDL_TLSCleanup_renamed_SDL_CleanupTLS +#define SDL_TLSGet SDL_TLSGet_renamed_SDL_GetTLS +#define SDL_TLSSet SDL_TLSSet_renamed_SDL_SetTLS +#define SDL_threadID SDL_threadID_renamed_SDL_ThreadID + +/* ##SDL_timer.h */ +#define SDL_GetTicks64 SDL_GetTicks64_renamed_SDL_GetTicks + +/* ##SDL_version.h */ +#define SDL_COMPILEDVERSION SDL_COMPILEDVERSION_renamed_SDL_VERSION +#define SDL_PATCHLEVEL SDL_PATCHLEVEL_renamed_SDL_MICRO_VERSION + +/* ##SDL_video.h */ +#define SDL_GL_DeleteContext SDL_GL_DeleteContext_renamed_SDL_GL_DestroyContext +#define SDL_GLattr SDL_GLattr_renamed_SDL_GLAttr +#define SDL_GLcontextFlag SDL_GLcontextFlag_renamed_SDL_GLContextFlag +#define SDL_GLcontextReleaseFlag SDL_GLcontextReleaseFlag_renamed_SDL_GLContextReleaseFlag +#define SDL_GLprofile SDL_GLprofile_renamed_SDL_GLProfile +#define SDL_GetClosestDisplayMode SDL_GetClosestDisplayMode_renamed_SDL_GetClosestFullscreenDisplayMode +#define SDL_GetDisplayOrientation SDL_GetDisplayOrientation_renamed_SDL_GetCurrentDisplayOrientation +#define SDL_GetPointDisplayIndex SDL_GetPointDisplayIndex_renamed_SDL_GetDisplayForPoint +#define SDL_GetRectDisplayIndex SDL_GetRectDisplayIndex_renamed_SDL_GetDisplayForRect +#define SDL_GetWindowDisplayIndex SDL_GetWindowDisplayIndex_renamed_SDL_GetDisplayForWindow +#define SDL_GetWindowDisplayMode SDL_GetWindowDisplayMode_renamed_SDL_GetWindowFullscreenMode +#define SDL_HasWindowSurface SDL_HasWindowSurface_renamed_SDL_WindowHasSurface +#define SDL_IsScreenSaverEnabled SDL_IsScreenSaverEnabled_renamed_SDL_ScreenSaverEnabled +#define SDL_SetWindowDisplayMode SDL_SetWindowDisplayMode_renamed_SDL_SetWindowFullscreenMode +#define SDL_WINDOW_ALLOW_HIGHDPI SDL_WINDOW_ALLOW_HIGHDPI_renamed_SDL_WINDOW_HIGH_PIXEL_DENSITY +#define SDL_WINDOW_INPUT_GRABBED SDL_WINDOW_INPUT_GRABBED_renamed_SDL_WINDOW_MOUSE_GRABBED +#define SDL_WINDOW_SKIP_TASKBAR SDL_WINDOW_SKIP_TASKBAR_renamed_SDL_WINDOW_UTILITY + +#endif /* SDL_ENABLE_OLD_NAMES */ + +#endif /* SDL_oldnames_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengl.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengl.h new file mode 100644 index 0000000..d1b8b02 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengl.h @@ -0,0 +1,3101 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the OpenGL API headers. + * + * Define NO_SDL_GLEXT if you have your own version of glext.h and want + * to disable the version included in SDL_opengl.h. + */ + +#ifndef SDL_opengl_h_ +#define SDL_opengl_h_ + +#include + +#ifndef SDL_PLATFORM_IOS /* No OpenGL on iOS. */ + +/* + * Mesa 3-D graphics library + * + * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. + * Copyright (C) 2009 VMware, Inc. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + */ + + +#ifndef __gl_h_ +#define __gl_h_ + +#ifdef USE_MGL_NAMESPACE +#include +#endif + + +/********************************************************************** + * Begin system-specific stuff. + */ + +#if defined(_WIN32) && !defined(__CYGWIN__) +# if (defined(_MSC_VER) || defined(__MINGW32__)) && defined(BUILD_GL32) /* tag specify we're building mesa as a DLL */ +# define GLAPI __declspec(dllexport) +# elif (defined(_MSC_VER) || defined(__MINGW32__)) && defined(_DLL) /* tag specifying we're building for DLL runtime support */ +# define GLAPI __declspec(dllimport) +# else /* for use with static link lib build of Win32 edition only */ +# define GLAPI extern +# endif /* _STATIC_MESA support */ +# if defined(__MINGW32__) && defined(GL_NO_STDCALL) || defined(UNDER_CE) /* The generated DLLs by MingW with STDCALL are not compatible with the ones done by Microsoft's compilers */ +# define GLAPIENTRY +# else +# define GLAPIENTRY __stdcall +# endif +#elif defined(__CYGWIN__) && defined(USE_OPENGL32) /* use native windows opengl32 */ +# define GLAPI extern +# define GLAPIENTRY __stdcall +#elif (defined(__GNUC__) && __GNUC__ >= 4) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) +# define GLAPI __attribute__((visibility("default"))) +# define GLAPIENTRY +#endif /* WIN32 && !CYGWIN */ + +/* + * WINDOWS: Include windows.h here to define APIENTRY. + * It is also useful when applications include this file by + * including only glut.h, since glut.h depends on windows.h. + * Applications needing to include windows.h with parms other + * than "WIN32_LEAN_AND_MEAN" may include windows.h before + * glut.h or gl.h. + */ +#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN 1 +#endif +#ifndef NOMINMAX /* don't define min() and max(). */ +#define NOMINMAX +#endif +#include +#endif + +#ifndef GLAPI +#define GLAPI extern +#endif + +#ifndef GLAPIENTRY +#define GLAPIENTRY +#endif + +#ifndef APIENTRY +#define APIENTRY GLAPIENTRY +#endif + +/* "P" suffix to be used for a pointer to a function */ +#ifndef APIENTRYP +#define APIENTRYP APIENTRY * +#endif + +#ifndef GLAPIENTRYP +#define GLAPIENTRYP GLAPIENTRY * +#endif + +#if defined(PRAGMA_EXPORT_SUPPORTED) +#pragma export on +#endif + +/* + * End system-specific stuff. + **********************************************************************/ + + + +#ifdef __cplusplus +extern "C" { +#endif + + + +#define GL_VERSION_1_1 1 +#define GL_VERSION_1_2 1 +#define GL_VERSION_1_3 1 +#define GL_ARB_imaging 1 + + +/* + * Datatypes + */ +typedef unsigned int GLenum; +typedef unsigned char GLboolean; +typedef unsigned int GLbitfield; +typedef void GLvoid; +typedef signed char GLbyte; /* 1-byte signed */ +typedef short GLshort; /* 2-byte signed */ +typedef int GLint; /* 4-byte signed */ +typedef unsigned char GLubyte; /* 1-byte unsigned */ +typedef unsigned short GLushort; /* 2-byte unsigned */ +typedef unsigned int GLuint; /* 4-byte unsigned */ +typedef int GLsizei; /* 4-byte signed */ +typedef float GLfloat; /* single precision float */ +typedef float GLclampf; /* single precision float in [0,1] */ +typedef double GLdouble; /* double precision float */ +typedef double GLclampd; /* double precision float in [0,1] */ + + + +/* + * Constants + */ + +/* Boolean values */ +#define GL_FALSE 0 +#define GL_TRUE 1 + +/* Data types */ +#define GL_BYTE 0x1400 +#define GL_UNSIGNED_BYTE 0x1401 +#define GL_SHORT 0x1402 +#define GL_UNSIGNED_SHORT 0x1403 +#define GL_INT 0x1404 +#define GL_UNSIGNED_INT 0x1405 +#define GL_FLOAT 0x1406 +#define GL_2_BYTES 0x1407 +#define GL_3_BYTES 0x1408 +#define GL_4_BYTES 0x1409 +#define GL_DOUBLE 0x140A + +/* Primitives */ +#define GL_POINTS 0x0000 +#define GL_LINES 0x0001 +#define GL_LINE_LOOP 0x0002 +#define GL_LINE_STRIP 0x0003 +#define GL_TRIANGLES 0x0004 +#define GL_TRIANGLE_STRIP 0x0005 +#define GL_TRIANGLE_FAN 0x0006 +#define GL_QUADS 0x0007 +#define GL_QUAD_STRIP 0x0008 +#define GL_POLYGON 0x0009 + +/* Vertex Arrays */ +#define GL_VERTEX_ARRAY 0x8074 +#define GL_NORMAL_ARRAY 0x8075 +#define GL_COLOR_ARRAY 0x8076 +#define GL_INDEX_ARRAY 0x8077 +#define GL_TEXTURE_COORD_ARRAY 0x8078 +#define GL_EDGE_FLAG_ARRAY 0x8079 +#define GL_VERTEX_ARRAY_SIZE 0x807A +#define GL_VERTEX_ARRAY_TYPE 0x807B +#define GL_VERTEX_ARRAY_STRIDE 0x807C +#define GL_NORMAL_ARRAY_TYPE 0x807E +#define GL_NORMAL_ARRAY_STRIDE 0x807F +#define GL_COLOR_ARRAY_SIZE 0x8081 +#define GL_COLOR_ARRAY_TYPE 0x8082 +#define GL_COLOR_ARRAY_STRIDE 0x8083 +#define GL_INDEX_ARRAY_TYPE 0x8085 +#define GL_INDEX_ARRAY_STRIDE 0x8086 +#define GL_TEXTURE_COORD_ARRAY_SIZE 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE 0x808A +#define GL_EDGE_FLAG_ARRAY_STRIDE 0x808C +#define GL_VERTEX_ARRAY_POINTER 0x808E +#define GL_NORMAL_ARRAY_POINTER 0x808F +#define GL_COLOR_ARRAY_POINTER 0x8090 +#define GL_INDEX_ARRAY_POINTER 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER 0x8093 +#define GL_V2F 0x2A20 +#define GL_V3F 0x2A21 +#define GL_C4UB_V2F 0x2A22 +#define GL_C4UB_V3F 0x2A23 +#define GL_C3F_V3F 0x2A24 +#define GL_N3F_V3F 0x2A25 +#define GL_C4F_N3F_V3F 0x2A26 +#define GL_T2F_V3F 0x2A27 +#define GL_T4F_V4F 0x2A28 +#define GL_T2F_C4UB_V3F 0x2A29 +#define GL_T2F_C3F_V3F 0x2A2A +#define GL_T2F_N3F_V3F 0x2A2B +#define GL_T2F_C4F_N3F_V3F 0x2A2C +#define GL_T4F_C4F_N3F_V4F 0x2A2D + +/* Matrix Mode */ +#define GL_MATRIX_MODE 0x0BA0 +#define GL_MODELVIEW 0x1700 +#define GL_PROJECTION 0x1701 +#define GL_TEXTURE 0x1702 + +/* Points */ +#define GL_POINT_SMOOTH 0x0B10 +#define GL_POINT_SIZE 0x0B11 +#define GL_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_POINT_SIZE_RANGE 0x0B12 + +/* Lines */ +#define GL_LINE_SMOOTH 0x0B20 +#define GL_LINE_STIPPLE 0x0B24 +#define GL_LINE_STIPPLE_PATTERN 0x0B25 +#define GL_LINE_STIPPLE_REPEAT 0x0B26 +#define GL_LINE_WIDTH 0x0B21 +#define GL_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_LINE_WIDTH_RANGE 0x0B22 + +/* Polygons */ +#define GL_POINT 0x1B00 +#define GL_LINE 0x1B01 +#define GL_FILL 0x1B02 +#define GL_CW 0x0900 +#define GL_CCW 0x0901 +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_POLYGON_MODE 0x0B40 +#define GL_POLYGON_SMOOTH 0x0B41 +#define GL_POLYGON_STIPPLE 0x0B42 +#define GL_EDGE_FLAG 0x0B43 +#define GL_CULL_FACE 0x0B44 +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_POLYGON_OFFSET_UNITS 0x2A00 +#define GL_POLYGON_OFFSET_POINT 0x2A01 +#define GL_POLYGON_OFFSET_LINE 0x2A02 +#define GL_POLYGON_OFFSET_FILL 0x8037 + +/* Display Lists */ +#define GL_COMPILE 0x1300 +#define GL_COMPILE_AND_EXECUTE 0x1301 +#define GL_LIST_BASE 0x0B32 +#define GL_LIST_INDEX 0x0B33 +#define GL_LIST_MODE 0x0B30 + +/* Depth buffer */ +#define GL_NEVER 0x0200 +#define GL_LESS 0x0201 +#define GL_EQUAL 0x0202 +#define GL_LEQUAL 0x0203 +#define GL_GREATER 0x0204 +#define GL_NOTEQUAL 0x0205 +#define GL_GEQUAL 0x0206 +#define GL_ALWAYS 0x0207 +#define GL_DEPTH_TEST 0x0B71 +#define GL_DEPTH_BITS 0x0D56 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_COMPONENT 0x1902 + +/* Lighting */ +#define GL_LIGHTING 0x0B50 +#define GL_LIGHT0 0x4000 +#define GL_LIGHT1 0x4001 +#define GL_LIGHT2 0x4002 +#define GL_LIGHT3 0x4003 +#define GL_LIGHT4 0x4004 +#define GL_LIGHT5 0x4005 +#define GL_LIGHT6 0x4006 +#define GL_LIGHT7 0x4007 +#define GL_SPOT_EXPONENT 0x1205 +#define GL_SPOT_CUTOFF 0x1206 +#define GL_CONSTANT_ATTENUATION 0x1207 +#define GL_LINEAR_ATTENUATION 0x1208 +#define GL_QUADRATIC_ATTENUATION 0x1209 +#define GL_AMBIENT 0x1200 +#define GL_DIFFUSE 0x1201 +#define GL_SPECULAR 0x1202 +#define GL_SHININESS 0x1601 +#define GL_EMISSION 0x1600 +#define GL_POSITION 0x1203 +#define GL_SPOT_DIRECTION 0x1204 +#define GL_AMBIENT_AND_DIFFUSE 0x1602 +#define GL_COLOR_INDEXES 0x1603 +#define GL_LIGHT_MODEL_TWO_SIDE 0x0B52 +#define GL_LIGHT_MODEL_LOCAL_VIEWER 0x0B51 +#define GL_LIGHT_MODEL_AMBIENT 0x0B53 +#define GL_FRONT_AND_BACK 0x0408 +#define GL_SHADE_MODEL 0x0B54 +#define GL_FLAT 0x1D00 +#define GL_SMOOTH 0x1D01 +#define GL_COLOR_MATERIAL 0x0B57 +#define GL_COLOR_MATERIAL_FACE 0x0B55 +#define GL_COLOR_MATERIAL_PARAMETER 0x0B56 +#define GL_NORMALIZE 0x0BA1 + +/* User clipping planes */ +#define GL_CLIP_PLANE0 0x3000 +#define GL_CLIP_PLANE1 0x3001 +#define GL_CLIP_PLANE2 0x3002 +#define GL_CLIP_PLANE3 0x3003 +#define GL_CLIP_PLANE4 0x3004 +#define GL_CLIP_PLANE5 0x3005 + +/* Accumulation buffer */ +#define GL_ACCUM_RED_BITS 0x0D58 +#define GL_ACCUM_GREEN_BITS 0x0D59 +#define GL_ACCUM_BLUE_BITS 0x0D5A +#define GL_ACCUM_ALPHA_BITS 0x0D5B +#define GL_ACCUM_CLEAR_VALUE 0x0B80 +#define GL_ACCUM 0x0100 +#define GL_ADD 0x0104 +#define GL_LOAD 0x0101 +#define GL_MULT 0x0103 +#define GL_RETURN 0x0102 + +/* Alpha testing */ +#define GL_ALPHA_TEST 0x0BC0 +#define GL_ALPHA_TEST_REF 0x0BC2 +#define GL_ALPHA_TEST_FUNC 0x0BC1 + +/* Blending */ +#define GL_BLEND 0x0BE2 +#define GL_BLEND_SRC 0x0BE1 +#define GL_BLEND_DST 0x0BE0 +#define GL_ZERO 0 +#define GL_ONE 1 +#define GL_SRC_COLOR 0x0300 +#define GL_ONE_MINUS_SRC_COLOR 0x0301 +#define GL_SRC_ALPHA 0x0302 +#define GL_ONE_MINUS_SRC_ALPHA 0x0303 +#define GL_DST_ALPHA 0x0304 +#define GL_ONE_MINUS_DST_ALPHA 0x0305 +#define GL_DST_COLOR 0x0306 +#define GL_ONE_MINUS_DST_COLOR 0x0307 +#define GL_SRC_ALPHA_SATURATE 0x0308 + +/* Render Mode */ +#define GL_FEEDBACK 0x1C01 +#define GL_RENDER 0x1C00 +#define GL_SELECT 0x1C02 + +/* Feedback */ +#define GL_2D 0x0600 +#define GL_3D 0x0601 +#define GL_3D_COLOR 0x0602 +#define GL_3D_COLOR_TEXTURE 0x0603 +#define GL_4D_COLOR_TEXTURE 0x0604 +#define GL_POINT_TOKEN 0x0701 +#define GL_LINE_TOKEN 0x0702 +#define GL_LINE_RESET_TOKEN 0x0707 +#define GL_POLYGON_TOKEN 0x0703 +#define GL_BITMAP_TOKEN 0x0704 +#define GL_DRAW_PIXEL_TOKEN 0x0705 +#define GL_COPY_PIXEL_TOKEN 0x0706 +#define GL_PASS_THROUGH_TOKEN 0x0700 +#define GL_FEEDBACK_BUFFER_POINTER 0x0DF0 +#define GL_FEEDBACK_BUFFER_SIZE 0x0DF1 +#define GL_FEEDBACK_BUFFER_TYPE 0x0DF2 + +/* Selection */ +#define GL_SELECTION_BUFFER_POINTER 0x0DF3 +#define GL_SELECTION_BUFFER_SIZE 0x0DF4 + +/* Fog */ +#define GL_FOG 0x0B60 +#define GL_FOG_MODE 0x0B65 +#define GL_FOG_DENSITY 0x0B62 +#define GL_FOG_COLOR 0x0B66 +#define GL_FOG_INDEX 0x0B61 +#define GL_FOG_START 0x0B63 +#define GL_FOG_END 0x0B64 +#define GL_LINEAR 0x2601 +#define GL_EXP 0x0800 +#define GL_EXP2 0x0801 + +/* Logic Ops */ +#define GL_LOGIC_OP 0x0BF1 +#define GL_INDEX_LOGIC_OP 0x0BF1 +#define GL_COLOR_LOGIC_OP 0x0BF2 +#define GL_LOGIC_OP_MODE 0x0BF0 +#define GL_CLEAR 0x1500 +#define GL_SET 0x150F +#define GL_COPY 0x1503 +#define GL_COPY_INVERTED 0x150C +#define GL_NOOP 0x1505 +#define GL_INVERT 0x150A +#define GL_AND 0x1501 +#define GL_NAND 0x150E +#define GL_OR 0x1507 +#define GL_NOR 0x1508 +#define GL_XOR 0x1506 +#define GL_EQUIV 0x1509 +#define GL_AND_REVERSE 0x1502 +#define GL_AND_INVERTED 0x1504 +#define GL_OR_REVERSE 0x150B +#define GL_OR_INVERTED 0x150D + +/* Stencil */ +#define GL_STENCIL_BITS 0x0D57 +#define GL_STENCIL_TEST 0x0B90 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#define GL_STENCIL_VALUE_MASK 0x0B93 +#define GL_STENCIL_FAIL 0x0B94 +#define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 +#define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 +#define GL_STENCIL_REF 0x0B97 +#define GL_STENCIL_WRITEMASK 0x0B98 +#define GL_STENCIL_INDEX 0x1901 +#define GL_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 + +/* Buffers, Pixel Drawing/Reading */ +#define GL_NONE 0 +#define GL_LEFT 0x0406 +#define GL_RIGHT 0x0407 +/*GL_FRONT 0x0404 */ +/*GL_BACK 0x0405 */ +/*GL_FRONT_AND_BACK 0x0408 */ +#define GL_FRONT_LEFT 0x0400 +#define GL_FRONT_RIGHT 0x0401 +#define GL_BACK_LEFT 0x0402 +#define GL_BACK_RIGHT 0x0403 +#define GL_AUX0 0x0409 +#define GL_AUX1 0x040A +#define GL_AUX2 0x040B +#define GL_AUX3 0x040C +#define GL_COLOR_INDEX 0x1900 +#define GL_RED 0x1903 +#define GL_GREEN 0x1904 +#define GL_BLUE 0x1905 +#define GL_ALPHA 0x1906 +#define GL_LUMINANCE 0x1909 +#define GL_LUMINANCE_ALPHA 0x190A +#define GL_ALPHA_BITS 0x0D55 +#define GL_RED_BITS 0x0D52 +#define GL_GREEN_BITS 0x0D53 +#define GL_BLUE_BITS 0x0D54 +#define GL_INDEX_BITS 0x0D51 +#define GL_SUBPIXEL_BITS 0x0D50 +#define GL_AUX_BUFFERS 0x0C00 +#define GL_READ_BUFFER 0x0C02 +#define GL_DRAW_BUFFER 0x0C01 +#define GL_DOUBLEBUFFER 0x0C32 +#define GL_STEREO 0x0C33 +#define GL_BITMAP 0x1A00 +#define GL_COLOR 0x1800 +#define GL_DEPTH 0x1801 +#define GL_STENCIL 0x1802 +#define GL_DITHER 0x0BD0 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 + +/* Implementation limits */ +#define GL_MAX_LIST_NESTING 0x0B31 +#define GL_MAX_EVAL_ORDER 0x0D30 +#define GL_MAX_LIGHTS 0x0D31 +#define GL_MAX_CLIP_PLANES 0x0D32 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_PIXEL_MAP_TABLE 0x0D34 +#define GL_MAX_ATTRIB_STACK_DEPTH 0x0D35 +#define GL_MAX_MODELVIEW_STACK_DEPTH 0x0D36 +#define GL_MAX_NAME_STACK_DEPTH 0x0D37 +#define GL_MAX_PROJECTION_STACK_DEPTH 0x0D38 +#define GL_MAX_TEXTURE_STACK_DEPTH 0x0D39 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_MAX_CLIENT_ATTRIB_STACK_DEPTH 0x0D3B + +/* Gets */ +#define GL_ATTRIB_STACK_DEPTH 0x0BB0 +#define GL_CLIENT_ATTRIB_STACK_DEPTH 0x0BB1 +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_CURRENT_INDEX 0x0B01 +#define GL_CURRENT_COLOR 0x0B00 +#define GL_CURRENT_NORMAL 0x0B02 +#define GL_CURRENT_RASTER_COLOR 0x0B04 +#define GL_CURRENT_RASTER_DISTANCE 0x0B09 +#define GL_CURRENT_RASTER_INDEX 0x0B05 +#define GL_CURRENT_RASTER_POSITION 0x0B07 +#define GL_CURRENT_RASTER_TEXTURE_COORDS 0x0B06 +#define GL_CURRENT_RASTER_POSITION_VALID 0x0B08 +#define GL_CURRENT_TEXTURE_COORDS 0x0B03 +#define GL_INDEX_CLEAR_VALUE 0x0C20 +#define GL_INDEX_MODE 0x0C30 +#define GL_INDEX_WRITEMASK 0x0C21 +#define GL_MODELVIEW_MATRIX 0x0BA6 +#define GL_MODELVIEW_STACK_DEPTH 0x0BA3 +#define GL_NAME_STACK_DEPTH 0x0D70 +#define GL_PROJECTION_MATRIX 0x0BA7 +#define GL_PROJECTION_STACK_DEPTH 0x0BA4 +#define GL_RENDER_MODE 0x0C40 +#define GL_RGBA_MODE 0x0C31 +#define GL_TEXTURE_MATRIX 0x0BA8 +#define GL_TEXTURE_STACK_DEPTH 0x0BA5 +#define GL_VIEWPORT 0x0BA2 + +/* Evaluators */ +#define GL_AUTO_NORMAL 0x0D80 +#define GL_MAP1_COLOR_4 0x0D90 +#define GL_MAP1_INDEX 0x0D91 +#define GL_MAP1_NORMAL 0x0D92 +#define GL_MAP1_TEXTURE_COORD_1 0x0D93 +#define GL_MAP1_TEXTURE_COORD_2 0x0D94 +#define GL_MAP1_TEXTURE_COORD_3 0x0D95 +#define GL_MAP1_TEXTURE_COORD_4 0x0D96 +#define GL_MAP1_VERTEX_3 0x0D97 +#define GL_MAP1_VERTEX_4 0x0D98 +#define GL_MAP2_COLOR_4 0x0DB0 +#define GL_MAP2_INDEX 0x0DB1 +#define GL_MAP2_NORMAL 0x0DB2 +#define GL_MAP2_TEXTURE_COORD_1 0x0DB3 +#define GL_MAP2_TEXTURE_COORD_2 0x0DB4 +#define GL_MAP2_TEXTURE_COORD_3 0x0DB5 +#define GL_MAP2_TEXTURE_COORD_4 0x0DB6 +#define GL_MAP2_VERTEX_3 0x0DB7 +#define GL_MAP2_VERTEX_4 0x0DB8 +#define GL_MAP1_GRID_DOMAIN 0x0DD0 +#define GL_MAP1_GRID_SEGMENTS 0x0DD1 +#define GL_MAP2_GRID_DOMAIN 0x0DD2 +#define GL_MAP2_GRID_SEGMENTS 0x0DD3 +#define GL_COEFF 0x0A00 +#define GL_ORDER 0x0A01 +#define GL_DOMAIN 0x0A02 + +/* Hints */ +#define GL_PERSPECTIVE_CORRECTION_HINT 0x0C50 +#define GL_POINT_SMOOTH_HINT 0x0C51 +#define GL_LINE_SMOOTH_HINT 0x0C52 +#define GL_POLYGON_SMOOTH_HINT 0x0C53 +#define GL_FOG_HINT 0x0C54 +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 + +/* Scissor box */ +#define GL_SCISSOR_BOX 0x0C10 +#define GL_SCISSOR_TEST 0x0C11 + +/* Pixel Mode / Transfer */ +#define GL_MAP_COLOR 0x0D10 +#define GL_MAP_STENCIL 0x0D11 +#define GL_INDEX_SHIFT 0x0D12 +#define GL_INDEX_OFFSET 0x0D13 +#define GL_RED_SCALE 0x0D14 +#define GL_RED_BIAS 0x0D15 +#define GL_GREEN_SCALE 0x0D18 +#define GL_GREEN_BIAS 0x0D19 +#define GL_BLUE_SCALE 0x0D1A +#define GL_BLUE_BIAS 0x0D1B +#define GL_ALPHA_SCALE 0x0D1C +#define GL_ALPHA_BIAS 0x0D1D +#define GL_DEPTH_SCALE 0x0D1E +#define GL_DEPTH_BIAS 0x0D1F +#define GL_PIXEL_MAP_S_TO_S_SIZE 0x0CB1 +#define GL_PIXEL_MAP_I_TO_I_SIZE 0x0CB0 +#define GL_PIXEL_MAP_I_TO_R_SIZE 0x0CB2 +#define GL_PIXEL_MAP_I_TO_G_SIZE 0x0CB3 +#define GL_PIXEL_MAP_I_TO_B_SIZE 0x0CB4 +#define GL_PIXEL_MAP_I_TO_A_SIZE 0x0CB5 +#define GL_PIXEL_MAP_R_TO_R_SIZE 0x0CB6 +#define GL_PIXEL_MAP_G_TO_G_SIZE 0x0CB7 +#define GL_PIXEL_MAP_B_TO_B_SIZE 0x0CB8 +#define GL_PIXEL_MAP_A_TO_A_SIZE 0x0CB9 +#define GL_PIXEL_MAP_S_TO_S 0x0C71 +#define GL_PIXEL_MAP_I_TO_I 0x0C70 +#define GL_PIXEL_MAP_I_TO_R 0x0C72 +#define GL_PIXEL_MAP_I_TO_G 0x0C73 +#define GL_PIXEL_MAP_I_TO_B 0x0C74 +#define GL_PIXEL_MAP_I_TO_A 0x0C75 +#define GL_PIXEL_MAP_R_TO_R 0x0C76 +#define GL_PIXEL_MAP_G_TO_G 0x0C77 +#define GL_PIXEL_MAP_B_TO_B 0x0C78 +#define GL_PIXEL_MAP_A_TO_A 0x0C79 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_PACK_LSB_FIRST 0x0D01 +#define GL_PACK_ROW_LENGTH 0x0D02 +#define GL_PACK_SKIP_PIXELS 0x0D04 +#define GL_PACK_SKIP_ROWS 0x0D03 +#define GL_PACK_SWAP_BYTES 0x0D00 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_UNPACK_LSB_FIRST 0x0CF1 +#define GL_UNPACK_ROW_LENGTH 0x0CF2 +#define GL_UNPACK_SKIP_PIXELS 0x0CF4 +#define GL_UNPACK_SKIP_ROWS 0x0CF3 +#define GL_UNPACK_SWAP_BYTES 0x0CF0 +#define GL_ZOOM_X 0x0D16 +#define GL_ZOOM_Y 0x0D17 + +/* Texture mapping */ +#define GL_TEXTURE_ENV 0x2300 +#define GL_TEXTURE_ENV_MODE 0x2200 +#define GL_TEXTURE_1D 0x0DE0 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_TEXTURE_WRAP_S 0x2802 +#define GL_TEXTURE_WRAP_T 0x2803 +#define GL_TEXTURE_MAG_FILTER 0x2800 +#define GL_TEXTURE_MIN_FILTER 0x2801 +#define GL_TEXTURE_ENV_COLOR 0x2201 +#define GL_TEXTURE_GEN_S 0x0C60 +#define GL_TEXTURE_GEN_T 0x0C61 +#define GL_TEXTURE_GEN_R 0x0C62 +#define GL_TEXTURE_GEN_Q 0x0C63 +#define GL_TEXTURE_GEN_MODE 0x2500 +#define GL_TEXTURE_BORDER_COLOR 0x1004 +#define GL_TEXTURE_WIDTH 0x1000 +#define GL_TEXTURE_HEIGHT 0x1001 +#define GL_TEXTURE_BORDER 0x1005 +#define GL_TEXTURE_COMPONENTS 0x1003 +#define GL_TEXTURE_RED_SIZE 0x805C +#define GL_TEXTURE_GREEN_SIZE 0x805D +#define GL_TEXTURE_BLUE_SIZE 0x805E +#define GL_TEXTURE_ALPHA_SIZE 0x805F +#define GL_TEXTURE_LUMINANCE_SIZE 0x8060 +#define GL_TEXTURE_INTENSITY_SIZE 0x8061 +#define GL_NEAREST_MIPMAP_NEAREST 0x2700 +#define GL_NEAREST_MIPMAP_LINEAR 0x2702 +#define GL_LINEAR_MIPMAP_NEAREST 0x2701 +#define GL_LINEAR_MIPMAP_LINEAR 0x2703 +#define GL_OBJECT_LINEAR 0x2401 +#define GL_OBJECT_PLANE 0x2501 +#define GL_EYE_LINEAR 0x2400 +#define GL_EYE_PLANE 0x2502 +#define GL_SPHERE_MAP 0x2402 +#define GL_DECAL 0x2101 +#define GL_MODULATE 0x2100 +#define GL_NEAREST 0x2600 +#define GL_REPEAT 0x2901 +#define GL_CLAMP 0x2900 +#define GL_S 0x2000 +#define GL_T 0x2001 +#define GL_R 0x2002 +#define GL_Q 0x2003 + +/* Utility */ +#define GL_VENDOR 0x1F00 +#define GL_RENDERER 0x1F01 +#define GL_VERSION 0x1F02 +#define GL_EXTENSIONS 0x1F03 + +/* Errors */ +#define GL_NO_ERROR 0 +#define GL_INVALID_ENUM 0x0500 +#define GL_INVALID_VALUE 0x0501 +#define GL_INVALID_OPERATION 0x0502 +#define GL_STACK_OVERFLOW 0x0503 +#define GL_STACK_UNDERFLOW 0x0504 +#define GL_OUT_OF_MEMORY 0x0505 + +/* glPush/PopAttrib bits */ +#define GL_CURRENT_BIT 0x00000001 +#define GL_POINT_BIT 0x00000002 +#define GL_LINE_BIT 0x00000004 +#define GL_POLYGON_BIT 0x00000008 +#define GL_POLYGON_STIPPLE_BIT 0x00000010 +#define GL_PIXEL_MODE_BIT 0x00000020 +#define GL_LIGHTING_BIT 0x00000040 +#define GL_FOG_BIT 0x00000080 +#define GL_DEPTH_BUFFER_BIT 0x00000100 +#define GL_ACCUM_BUFFER_BIT 0x00000200 +#define GL_STENCIL_BUFFER_BIT 0x00000400 +#define GL_VIEWPORT_BIT 0x00000800 +#define GL_TRANSFORM_BIT 0x00001000 +#define GL_ENABLE_BIT 0x00002000 +#define GL_COLOR_BUFFER_BIT 0x00004000 +#define GL_HINT_BIT 0x00008000 +#define GL_EVAL_BIT 0x00010000 +#define GL_LIST_BIT 0x00020000 +#define GL_TEXTURE_BIT 0x00040000 +#define GL_SCISSOR_BIT 0x00080000 +#define GL_ALL_ATTRIB_BITS 0x000FFFFF + + +/* OpenGL 1.1 */ +#define GL_PROXY_TEXTURE_1D 0x8063 +#define GL_PROXY_TEXTURE_2D 0x8064 +#define GL_TEXTURE_PRIORITY 0x8066 +#define GL_TEXTURE_RESIDENT 0x8067 +#define GL_TEXTURE_BINDING_1D 0x8068 +#define GL_TEXTURE_BINDING_2D 0x8069 +#define GL_TEXTURE_INTERNAL_FORMAT 0x1003 +#define GL_ALPHA4 0x803B +#define GL_ALPHA8 0x803C +#define GL_ALPHA12 0x803D +#define GL_ALPHA16 0x803E +#define GL_LUMINANCE4 0x803F +#define GL_LUMINANCE8 0x8040 +#define GL_LUMINANCE12 0x8041 +#define GL_LUMINANCE16 0x8042 +#define GL_LUMINANCE4_ALPHA4 0x8043 +#define GL_LUMINANCE6_ALPHA2 0x8044 +#define GL_LUMINANCE8_ALPHA8 0x8045 +#define GL_LUMINANCE12_ALPHA4 0x8046 +#define GL_LUMINANCE12_ALPHA12 0x8047 +#define GL_LUMINANCE16_ALPHA16 0x8048 +#define GL_INTENSITY 0x8049 +#define GL_INTENSITY4 0x804A +#define GL_INTENSITY8 0x804B +#define GL_INTENSITY12 0x804C +#define GL_INTENSITY16 0x804D +#define GL_R3_G3_B2 0x2A10 +#define GL_RGB4 0x804F +#define GL_RGB5 0x8050 +#define GL_RGB8 0x8051 +#define GL_RGB10 0x8052 +#define GL_RGB12 0x8053 +#define GL_RGB16 0x8054 +#define GL_RGBA2 0x8055 +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGBA8 0x8058 +#define GL_RGB10_A2 0x8059 +#define GL_RGBA12 0x805A +#define GL_RGBA16 0x805B +#define GL_CLIENT_PIXEL_STORE_BIT 0x00000001 +#define GL_CLIENT_VERTEX_ARRAY_BIT 0x00000002 +#define GL_ALL_CLIENT_ATTRIB_BITS 0xFFFFFFFF +#define GL_CLIENT_ALL_ATTRIB_BITS 0xFFFFFFFF + + + +/* + * Miscellaneous + */ + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES +GLAPI void GLAPIENTRY glClearIndex( GLfloat c ); + +GLAPI void GLAPIENTRY glClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ); + +GLAPI void GLAPIENTRY glClear( GLbitfield mask ); + +GLAPI void GLAPIENTRY glIndexMask( GLuint mask ); + +GLAPI void GLAPIENTRY glColorMask( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ); + +GLAPI void GLAPIENTRY glAlphaFunc( GLenum func, GLclampf ref ); + +GLAPI void GLAPIENTRY glBlendFunc( GLenum sfactor, GLenum dfactor ); + +GLAPI void GLAPIENTRY glLogicOp( GLenum opcode ); + +GLAPI void GLAPIENTRY glCullFace( GLenum mode ); + +GLAPI void GLAPIENTRY glFrontFace( GLenum mode ); + +GLAPI void GLAPIENTRY glPointSize( GLfloat size ); + +GLAPI void GLAPIENTRY glLineWidth( GLfloat width ); + +GLAPI void GLAPIENTRY glLineStipple( GLint factor, GLushort pattern ); + +GLAPI void GLAPIENTRY glPolygonMode( GLenum face, GLenum mode ); + +GLAPI void GLAPIENTRY glPolygonOffset( GLfloat factor, GLfloat units ); + +GLAPI void GLAPIENTRY glPolygonStipple( const GLubyte *mask ); + +GLAPI void GLAPIENTRY glGetPolygonStipple( GLubyte *mask ); + +GLAPI void GLAPIENTRY glEdgeFlag( GLboolean flag ); + +GLAPI void GLAPIENTRY glEdgeFlagv( const GLboolean *flag ); + +GLAPI void GLAPIENTRY glScissor( GLint x, GLint y, GLsizei width, GLsizei height); + +GLAPI void GLAPIENTRY glClipPlane( GLenum plane, const GLdouble *equation ); + +GLAPI void GLAPIENTRY glGetClipPlane( GLenum plane, GLdouble *equation ); + +GLAPI void GLAPIENTRY glDrawBuffer( GLenum mode ); + +GLAPI void GLAPIENTRY glReadBuffer( GLenum mode ); + +GLAPI void GLAPIENTRY glEnable( GLenum cap ); + +GLAPI void GLAPIENTRY glDisable( GLenum cap ); + +GLAPI GLboolean GLAPIENTRY glIsEnabled( GLenum cap ); + + +GLAPI void GLAPIENTRY glEnableClientState( GLenum cap ); /* 1.1 */ + +GLAPI void GLAPIENTRY glDisableClientState( GLenum cap ); /* 1.1 */ + + +GLAPI void GLAPIENTRY glGetBooleanv( GLenum pname, GLboolean *params ); + +GLAPI void GLAPIENTRY glGetDoublev( GLenum pname, GLdouble *params ); + +GLAPI void GLAPIENTRY glGetFloatv( GLenum pname, GLfloat *params ); + +GLAPI void GLAPIENTRY glGetIntegerv( GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glPushAttrib( GLbitfield mask ); + +GLAPI void GLAPIENTRY glPopAttrib( void ); + + +GLAPI void GLAPIENTRY glPushClientAttrib( GLbitfield mask ); /* 1.1 */ + +GLAPI void GLAPIENTRY glPopClientAttrib( void ); /* 1.1 */ + + +GLAPI GLint GLAPIENTRY glRenderMode( GLenum mode ); + +GLAPI GLenum GLAPIENTRY glGetError( void ); + +GLAPI const GLubyte * GLAPIENTRY glGetString( GLenum name ); + +GLAPI void GLAPIENTRY glFinish( void ); + +GLAPI void GLAPIENTRY glFlush( void ); + +GLAPI void GLAPIENTRY glHint( GLenum target, GLenum mode ); + + +/* + * Depth Buffer + */ + +GLAPI void GLAPIENTRY glClearDepth( GLclampd depth ); + +GLAPI void GLAPIENTRY glDepthFunc( GLenum func ); + +GLAPI void GLAPIENTRY glDepthMask( GLboolean flag ); + +GLAPI void GLAPIENTRY glDepthRange( GLclampd near_val, GLclampd far_val ); + + +/* + * Accumulation Buffer + */ + +GLAPI void GLAPIENTRY glClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ); + +GLAPI void GLAPIENTRY glAccum( GLenum op, GLfloat value ); + + +/* + * Transformation + */ + +GLAPI void GLAPIENTRY glMatrixMode( GLenum mode ); + +GLAPI void GLAPIENTRY glOrtho( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +GLAPI void GLAPIENTRY glFrustum( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +GLAPI void GLAPIENTRY glViewport( GLint x, GLint y, + GLsizei width, GLsizei height ); + +GLAPI void GLAPIENTRY glPushMatrix( void ); + +GLAPI void GLAPIENTRY glPopMatrix( void ); + +GLAPI void GLAPIENTRY glLoadIdentity( void ); + +GLAPI void GLAPIENTRY glLoadMatrixd( const GLdouble *m ); +GLAPI void GLAPIENTRY glLoadMatrixf( const GLfloat *m ); + +GLAPI void GLAPIENTRY glMultMatrixd( const GLdouble *m ); +GLAPI void GLAPIENTRY glMultMatrixf( const GLfloat *m ); + +GLAPI void GLAPIENTRY glRotated( GLdouble angle, + GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glRotatef( GLfloat angle, + GLfloat x, GLfloat y, GLfloat z ); + +GLAPI void GLAPIENTRY glScaled( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glScalef( GLfloat x, GLfloat y, GLfloat z ); + +GLAPI void GLAPIENTRY glTranslated( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glTranslatef( GLfloat x, GLfloat y, GLfloat z ); + + +/* + * Display Lists + */ + +GLAPI GLboolean GLAPIENTRY glIsList( GLuint list ); + +GLAPI void GLAPIENTRY glDeleteLists( GLuint list, GLsizei range ); + +GLAPI GLuint GLAPIENTRY glGenLists( GLsizei range ); + +GLAPI void GLAPIENTRY glNewList( GLuint list, GLenum mode ); + +GLAPI void GLAPIENTRY glEndList( void ); + +GLAPI void GLAPIENTRY glCallList( GLuint list ); + +GLAPI void GLAPIENTRY glCallLists( GLsizei n, GLenum type, + const GLvoid *lists ); + +GLAPI void GLAPIENTRY glListBase( GLuint base ); + + +/* + * Drawing Functions + */ + +GLAPI void GLAPIENTRY glBegin( GLenum mode ); + +GLAPI void GLAPIENTRY glEnd( void ); + + +GLAPI void GLAPIENTRY glVertex2d( GLdouble x, GLdouble y ); +GLAPI void GLAPIENTRY glVertex2f( GLfloat x, GLfloat y ); +GLAPI void GLAPIENTRY glVertex2i( GLint x, GLint y ); +GLAPI void GLAPIENTRY glVertex2s( GLshort x, GLshort y ); + +GLAPI void GLAPIENTRY glVertex3d( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glVertex3f( GLfloat x, GLfloat y, GLfloat z ); +GLAPI void GLAPIENTRY glVertex3i( GLint x, GLint y, GLint z ); +GLAPI void GLAPIENTRY glVertex3s( GLshort x, GLshort y, GLshort z ); + +GLAPI void GLAPIENTRY glVertex4d( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +GLAPI void GLAPIENTRY glVertex4f( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +GLAPI void GLAPIENTRY glVertex4i( GLint x, GLint y, GLint z, GLint w ); +GLAPI void GLAPIENTRY glVertex4s( GLshort x, GLshort y, GLshort z, GLshort w ); + +GLAPI void GLAPIENTRY glVertex2dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glVertex2fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glVertex2iv( const GLint *v ); +GLAPI void GLAPIENTRY glVertex2sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glVertex3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glVertex3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glVertex3iv( const GLint *v ); +GLAPI void GLAPIENTRY glVertex3sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glVertex4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glVertex4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glVertex4iv( const GLint *v ); +GLAPI void GLAPIENTRY glVertex4sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glNormal3b( GLbyte nx, GLbyte ny, GLbyte nz ); +GLAPI void GLAPIENTRY glNormal3d( GLdouble nx, GLdouble ny, GLdouble nz ); +GLAPI void GLAPIENTRY glNormal3f( GLfloat nx, GLfloat ny, GLfloat nz ); +GLAPI void GLAPIENTRY glNormal3i( GLint nx, GLint ny, GLint nz ); +GLAPI void GLAPIENTRY glNormal3s( GLshort nx, GLshort ny, GLshort nz ); + +GLAPI void GLAPIENTRY glNormal3bv( const GLbyte *v ); +GLAPI void GLAPIENTRY glNormal3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glNormal3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glNormal3iv( const GLint *v ); +GLAPI void GLAPIENTRY glNormal3sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glIndexd( GLdouble c ); +GLAPI void GLAPIENTRY glIndexf( GLfloat c ); +GLAPI void GLAPIENTRY glIndexi( GLint c ); +GLAPI void GLAPIENTRY glIndexs( GLshort c ); +GLAPI void GLAPIENTRY glIndexub( GLubyte c ); /* 1.1 */ + +GLAPI void GLAPIENTRY glIndexdv( const GLdouble *c ); +GLAPI void GLAPIENTRY glIndexfv( const GLfloat *c ); +GLAPI void GLAPIENTRY glIndexiv( const GLint *c ); +GLAPI void GLAPIENTRY glIndexsv( const GLshort *c ); +GLAPI void GLAPIENTRY glIndexubv( const GLubyte *c ); /* 1.1 */ + +GLAPI void GLAPIENTRY glColor3b( GLbyte red, GLbyte green, GLbyte blue ); +GLAPI void GLAPIENTRY glColor3d( GLdouble red, GLdouble green, GLdouble blue ); +GLAPI void GLAPIENTRY glColor3f( GLfloat red, GLfloat green, GLfloat blue ); +GLAPI void GLAPIENTRY glColor3i( GLint red, GLint green, GLint blue ); +GLAPI void GLAPIENTRY glColor3s( GLshort red, GLshort green, GLshort blue ); +GLAPI void GLAPIENTRY glColor3ub( GLubyte red, GLubyte green, GLubyte blue ); +GLAPI void GLAPIENTRY glColor3ui( GLuint red, GLuint green, GLuint blue ); +GLAPI void GLAPIENTRY glColor3us( GLushort red, GLushort green, GLushort blue ); + +GLAPI void GLAPIENTRY glColor4b( GLbyte red, GLbyte green, + GLbyte blue, GLbyte alpha ); +GLAPI void GLAPIENTRY glColor4d( GLdouble red, GLdouble green, + GLdouble blue, GLdouble alpha ); +GLAPI void GLAPIENTRY glColor4f( GLfloat red, GLfloat green, + GLfloat blue, GLfloat alpha ); +GLAPI void GLAPIENTRY glColor4i( GLint red, GLint green, + GLint blue, GLint alpha ); +GLAPI void GLAPIENTRY glColor4s( GLshort red, GLshort green, + GLshort blue, GLshort alpha ); +GLAPI void GLAPIENTRY glColor4ub( GLubyte red, GLubyte green, + GLubyte blue, GLubyte alpha ); +GLAPI void GLAPIENTRY glColor4ui( GLuint red, GLuint green, + GLuint blue, GLuint alpha ); +GLAPI void GLAPIENTRY glColor4us( GLushort red, GLushort green, + GLushort blue, GLushort alpha ); + + +GLAPI void GLAPIENTRY glColor3bv( const GLbyte *v ); +GLAPI void GLAPIENTRY glColor3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glColor3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glColor3iv( const GLint *v ); +GLAPI void GLAPIENTRY glColor3sv( const GLshort *v ); +GLAPI void GLAPIENTRY glColor3ubv( const GLubyte *v ); +GLAPI void GLAPIENTRY glColor3uiv( const GLuint *v ); +GLAPI void GLAPIENTRY glColor3usv( const GLushort *v ); + +GLAPI void GLAPIENTRY glColor4bv( const GLbyte *v ); +GLAPI void GLAPIENTRY glColor4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glColor4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glColor4iv( const GLint *v ); +GLAPI void GLAPIENTRY glColor4sv( const GLshort *v ); +GLAPI void GLAPIENTRY glColor4ubv( const GLubyte *v ); +GLAPI void GLAPIENTRY glColor4uiv( const GLuint *v ); +GLAPI void GLAPIENTRY glColor4usv( const GLushort *v ); + + +GLAPI void GLAPIENTRY glTexCoord1d( GLdouble s ); +GLAPI void GLAPIENTRY glTexCoord1f( GLfloat s ); +GLAPI void GLAPIENTRY glTexCoord1i( GLint s ); +GLAPI void GLAPIENTRY glTexCoord1s( GLshort s ); + +GLAPI void GLAPIENTRY glTexCoord2d( GLdouble s, GLdouble t ); +GLAPI void GLAPIENTRY glTexCoord2f( GLfloat s, GLfloat t ); +GLAPI void GLAPIENTRY glTexCoord2i( GLint s, GLint t ); +GLAPI void GLAPIENTRY glTexCoord2s( GLshort s, GLshort t ); + +GLAPI void GLAPIENTRY glTexCoord3d( GLdouble s, GLdouble t, GLdouble r ); +GLAPI void GLAPIENTRY glTexCoord3f( GLfloat s, GLfloat t, GLfloat r ); +GLAPI void GLAPIENTRY glTexCoord3i( GLint s, GLint t, GLint r ); +GLAPI void GLAPIENTRY glTexCoord3s( GLshort s, GLshort t, GLshort r ); + +GLAPI void GLAPIENTRY glTexCoord4d( GLdouble s, GLdouble t, GLdouble r, GLdouble q ); +GLAPI void GLAPIENTRY glTexCoord4f( GLfloat s, GLfloat t, GLfloat r, GLfloat q ); +GLAPI void GLAPIENTRY glTexCoord4i( GLint s, GLint t, GLint r, GLint q ); +GLAPI void GLAPIENTRY glTexCoord4s( GLshort s, GLshort t, GLshort r, GLshort q ); + +GLAPI void GLAPIENTRY glTexCoord1dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord1fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord1iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord1sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glTexCoord2dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord2fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord2iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord2sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glTexCoord3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord3iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord3sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glTexCoord4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord4iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord4sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glRasterPos2d( GLdouble x, GLdouble y ); +GLAPI void GLAPIENTRY glRasterPos2f( GLfloat x, GLfloat y ); +GLAPI void GLAPIENTRY glRasterPos2i( GLint x, GLint y ); +GLAPI void GLAPIENTRY glRasterPos2s( GLshort x, GLshort y ); + +GLAPI void GLAPIENTRY glRasterPos3d( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glRasterPos3f( GLfloat x, GLfloat y, GLfloat z ); +GLAPI void GLAPIENTRY glRasterPos3i( GLint x, GLint y, GLint z ); +GLAPI void GLAPIENTRY glRasterPos3s( GLshort x, GLshort y, GLshort z ); + +GLAPI void GLAPIENTRY glRasterPos4d( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +GLAPI void GLAPIENTRY glRasterPos4f( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +GLAPI void GLAPIENTRY glRasterPos4i( GLint x, GLint y, GLint z, GLint w ); +GLAPI void GLAPIENTRY glRasterPos4s( GLshort x, GLshort y, GLshort z, GLshort w ); + +GLAPI void GLAPIENTRY glRasterPos2dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glRasterPos2fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glRasterPos2iv( const GLint *v ); +GLAPI void GLAPIENTRY glRasterPos2sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glRasterPos3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glRasterPos3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glRasterPos3iv( const GLint *v ); +GLAPI void GLAPIENTRY glRasterPos3sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glRasterPos4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glRasterPos4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glRasterPos4iv( const GLint *v ); +GLAPI void GLAPIENTRY glRasterPos4sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glRectd( GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2 ); +GLAPI void GLAPIENTRY glRectf( GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2 ); +GLAPI void GLAPIENTRY glRecti( GLint x1, GLint y1, GLint x2, GLint y2 ); +GLAPI void GLAPIENTRY glRects( GLshort x1, GLshort y1, GLshort x2, GLshort y2 ); + + +GLAPI void GLAPIENTRY glRectdv( const GLdouble *v1, const GLdouble *v2 ); +GLAPI void GLAPIENTRY glRectfv( const GLfloat *v1, const GLfloat *v2 ); +GLAPI void GLAPIENTRY glRectiv( const GLint *v1, const GLint *v2 ); +GLAPI void GLAPIENTRY glRectsv( const GLshort *v1, const GLshort *v2 ); + + +/* + * Vertex Arrays (1.1) + */ + +GLAPI void GLAPIENTRY glVertexPointer( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glNormalPointer( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glColorPointer( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glIndexPointer( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glTexCoordPointer( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glEdgeFlagPointer( GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glGetPointerv( GLenum pname, GLvoid **params ); + +GLAPI void GLAPIENTRY glArrayElement( GLint i ); + +GLAPI void GLAPIENTRY glDrawArrays( GLenum mode, GLint first, GLsizei count ); + +GLAPI void GLAPIENTRY glDrawElements( GLenum mode, GLsizei count, + GLenum type, const GLvoid *indices ); + +GLAPI void GLAPIENTRY glInterleavedArrays( GLenum format, GLsizei stride, + const GLvoid *pointer ); + +/* + * Lighting + */ + +GLAPI void GLAPIENTRY glShadeModel( GLenum mode ); + +GLAPI void GLAPIENTRY glLightf( GLenum light, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glLighti( GLenum light, GLenum pname, GLint param ); +GLAPI void GLAPIENTRY glLightfv( GLenum light, GLenum pname, + const GLfloat *params ); +GLAPI void GLAPIENTRY glLightiv( GLenum light, GLenum pname, + const GLint *params ); + +GLAPI void GLAPIENTRY glGetLightfv( GLenum light, GLenum pname, + GLfloat *params ); +GLAPI void GLAPIENTRY glGetLightiv( GLenum light, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glLightModelf( GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glLightModeli( GLenum pname, GLint param ); +GLAPI void GLAPIENTRY glLightModelfv( GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glLightModeliv( GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glMaterialf( GLenum face, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glMateriali( GLenum face, GLenum pname, GLint param ); +GLAPI void GLAPIENTRY glMaterialfv( GLenum face, GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glMaterialiv( GLenum face, GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glGetMaterialfv( GLenum face, GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetMaterialiv( GLenum face, GLenum pname, GLint *params ); + +GLAPI void GLAPIENTRY glColorMaterial( GLenum face, GLenum mode ); + + +/* + * Raster functions + */ + +GLAPI void GLAPIENTRY glPixelZoom( GLfloat xfactor, GLfloat yfactor ); + +GLAPI void GLAPIENTRY glPixelStoref( GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glPixelStorei( GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glPixelTransferf( GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glPixelTransferi( GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glPixelMapfv( GLenum map, GLsizei mapsize, + const GLfloat *values ); +GLAPI void GLAPIENTRY glPixelMapuiv( GLenum map, GLsizei mapsize, + const GLuint *values ); +GLAPI void GLAPIENTRY glPixelMapusv( GLenum map, GLsizei mapsize, + const GLushort *values ); + +GLAPI void GLAPIENTRY glGetPixelMapfv( GLenum map, GLfloat *values ); +GLAPI void GLAPIENTRY glGetPixelMapuiv( GLenum map, GLuint *values ); +GLAPI void GLAPIENTRY glGetPixelMapusv( GLenum map, GLushort *values ); + +GLAPI void GLAPIENTRY glBitmap( GLsizei width, GLsizei height, + GLfloat xorig, GLfloat yorig, + GLfloat xmove, GLfloat ymove, + const GLubyte *bitmap ); + +GLAPI void GLAPIENTRY glReadPixels( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + GLvoid *pixels ); + +GLAPI void GLAPIENTRY glDrawPixels( GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glCopyPixels( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum type ); + +/* + * Stenciling + */ + +GLAPI void GLAPIENTRY glStencilFunc( GLenum func, GLint ref, GLuint mask ); + +GLAPI void GLAPIENTRY glStencilMask( GLuint mask ); + +GLAPI void GLAPIENTRY glStencilOp( GLenum fail, GLenum zfail, GLenum zpass ); + +GLAPI void GLAPIENTRY glClearStencil( GLint s ); + + + +/* + * Texture mapping + */ + +GLAPI void GLAPIENTRY glTexGend( GLenum coord, GLenum pname, GLdouble param ); +GLAPI void GLAPIENTRY glTexGenf( GLenum coord, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glTexGeni( GLenum coord, GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glTexGendv( GLenum coord, GLenum pname, const GLdouble *params ); +GLAPI void GLAPIENTRY glTexGenfv( GLenum coord, GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glTexGeniv( GLenum coord, GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glGetTexGendv( GLenum coord, GLenum pname, GLdouble *params ); +GLAPI void GLAPIENTRY glGetTexGenfv( GLenum coord, GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetTexGeniv( GLenum coord, GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glTexEnvf( GLenum target, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glTexEnvi( GLenum target, GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glTexEnvfv( GLenum target, GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glTexEnviv( GLenum target, GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glGetTexEnvfv( GLenum target, GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetTexEnviv( GLenum target, GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glTexParameterf( GLenum target, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glTexParameteri( GLenum target, GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glTexParameterfv( GLenum target, GLenum pname, + const GLfloat *params ); +GLAPI void GLAPIENTRY glTexParameteriv( GLenum target, GLenum pname, + const GLint *params ); + +GLAPI void GLAPIENTRY glGetTexParameterfv( GLenum target, + GLenum pname, GLfloat *params); +GLAPI void GLAPIENTRY glGetTexParameteriv( GLenum target, + GLenum pname, GLint *params ); + +GLAPI void GLAPIENTRY glGetTexLevelParameterfv( GLenum target, GLint level, + GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetTexLevelParameteriv( GLenum target, GLint level, + GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glTexImage1D( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glTexImage2D( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLint border, GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glGetTexImage( GLenum target, GLint level, + GLenum format, GLenum type, + GLvoid *pixels ); + + +/* 1.1 functions */ + +GLAPI void GLAPIENTRY glGenTextures( GLsizei n, GLuint *textures ); + +GLAPI void GLAPIENTRY glDeleteTextures( GLsizei n, const GLuint *textures); + +GLAPI void GLAPIENTRY glBindTexture( GLenum target, GLuint texture ); + +GLAPI void GLAPIENTRY glPrioritizeTextures( GLsizei n, + const GLuint *textures, + const GLclampf *priorities ); + +GLAPI GLboolean GLAPIENTRY glAreTexturesResident( GLsizei n, + const GLuint *textures, + GLboolean *residences ); + +GLAPI GLboolean GLAPIENTRY glIsTexture( GLuint texture ); + + +GLAPI void GLAPIENTRY glTexSubImage1D( GLenum target, GLint level, + GLint xoffset, + GLsizei width, GLenum format, + GLenum type, const GLvoid *pixels ); + + +GLAPI void GLAPIENTRY glTexSubImage2D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + + +GLAPI void GLAPIENTRY glCopyTexImage1D( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLint border ); + + +GLAPI void GLAPIENTRY glCopyTexImage2D( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLsizei height, + GLint border ); + + +GLAPI void GLAPIENTRY glCopyTexSubImage1D( GLenum target, GLint level, + GLint xoffset, GLint x, GLint y, + GLsizei width ); + + +GLAPI void GLAPIENTRY glCopyTexSubImage2D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint x, GLint y, + GLsizei width, GLsizei height ); + + +/* + * Evaluators + */ + +GLAPI void GLAPIENTRY glMap1d( GLenum target, GLdouble u1, GLdouble u2, + GLint stride, + GLint order, const GLdouble *points ); +GLAPI void GLAPIENTRY glMap1f( GLenum target, GLfloat u1, GLfloat u2, + GLint stride, + GLint order, const GLfloat *points ); + +GLAPI void GLAPIENTRY glMap2d( GLenum target, + GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, + GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, + const GLdouble *points ); +GLAPI void GLAPIENTRY glMap2f( GLenum target, + GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, + GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, + const GLfloat *points ); + +GLAPI void GLAPIENTRY glGetMapdv( GLenum target, GLenum query, GLdouble *v ); +GLAPI void GLAPIENTRY glGetMapfv( GLenum target, GLenum query, GLfloat *v ); +GLAPI void GLAPIENTRY glGetMapiv( GLenum target, GLenum query, GLint *v ); + +GLAPI void GLAPIENTRY glEvalCoord1d( GLdouble u ); +GLAPI void GLAPIENTRY glEvalCoord1f( GLfloat u ); + +GLAPI void GLAPIENTRY glEvalCoord1dv( const GLdouble *u ); +GLAPI void GLAPIENTRY glEvalCoord1fv( const GLfloat *u ); + +GLAPI void GLAPIENTRY glEvalCoord2d( GLdouble u, GLdouble v ); +GLAPI void GLAPIENTRY glEvalCoord2f( GLfloat u, GLfloat v ); + +GLAPI void GLAPIENTRY glEvalCoord2dv( const GLdouble *u ); +GLAPI void GLAPIENTRY glEvalCoord2fv( const GLfloat *u ); + +GLAPI void GLAPIENTRY glMapGrid1d( GLint un, GLdouble u1, GLdouble u2 ); +GLAPI void GLAPIENTRY glMapGrid1f( GLint un, GLfloat u1, GLfloat u2 ); + +GLAPI void GLAPIENTRY glMapGrid2d( GLint un, GLdouble u1, GLdouble u2, + GLint vn, GLdouble v1, GLdouble v2 ); +GLAPI void GLAPIENTRY glMapGrid2f( GLint un, GLfloat u1, GLfloat u2, + GLint vn, GLfloat v1, GLfloat v2 ); + +GLAPI void GLAPIENTRY glEvalPoint1( GLint i ); + +GLAPI void GLAPIENTRY glEvalPoint2( GLint i, GLint j ); + +GLAPI void GLAPIENTRY glEvalMesh1( GLenum mode, GLint i1, GLint i2 ); + +GLAPI void GLAPIENTRY glEvalMesh2( GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 ); + + +/* + * Fog + */ + +GLAPI void GLAPIENTRY glFogf( GLenum pname, GLfloat param ); + +GLAPI void GLAPIENTRY glFogi( GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glFogfv( GLenum pname, const GLfloat *params ); + +GLAPI void GLAPIENTRY glFogiv( GLenum pname, const GLint *params ); + + +/* + * Selection and Feedback + */ + +GLAPI void GLAPIENTRY glFeedbackBuffer( GLsizei size, GLenum type, GLfloat *buffer ); + +GLAPI void GLAPIENTRY glPassThrough( GLfloat token ); + +GLAPI void GLAPIENTRY glSelectBuffer( GLsizei size, GLuint *buffer ); + +GLAPI void GLAPIENTRY glInitNames( void ); + +GLAPI void GLAPIENTRY glLoadName( GLuint name ); + +GLAPI void GLAPIENTRY glPushName( GLuint name ); + +GLAPI void GLAPIENTRY glPopName( void ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLCLEARINDEXPROC) ( GLfloat c ); + +typedef void (APIENTRYP PFNGLCLEARCOLORPROC) ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ); + +typedef void (APIENTRYP PFNGLCLEARPROC) ( GLbitfield mask ); + +typedef void (APIENTRYP PFNGLINDEXMASKPROC) ( GLuint mask ); + +typedef void (APIENTRYP PFNGLCOLORMASKPROC) ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ); + +typedef void (APIENTRYP PFNGLALPHAFUNCPROC) ( GLenum func, GLclampf ref ); + +typedef void (APIENTRYP PFNGLBLENDFUNCPROC) ( GLenum sfactor, GLenum dfactor ); + +typedef void (APIENTRYP PFNGLLOGICOPPROC) ( GLenum opcode ); + +typedef void (APIENTRYP PFNGLCULLFACEPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLFRONTFACEPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLPOINTSIZEPROC) ( GLfloat size ); + +typedef void (APIENTRYP PFNGLLINEWIDTHPROC) ( GLfloat width ); + +typedef void (APIENTRYP PFNGLLINESTIPPLEPROC) ( GLint factor, GLushort pattern ); + +typedef void (APIENTRYP PFNGLPOLYGONMODEPROC) ( GLenum face, GLenum mode ); + +typedef void (APIENTRYP PFNGLPOLYGONOFFSETPROC) ( GLfloat factor, GLfloat units ); + +typedef void (APIENTRYP PFNGLPOLYGONSTIPPLEPROC) ( const GLubyte *mask ); + +typedef void (APIENTRYP PFNGLGETPOLYGONSTIPPLEPROC) ( GLubyte *mask ); + +typedef void (APIENTRYP PFNGLEDGEFLAGPROC) ( GLboolean flag ); + +typedef void (APIENTRYP PFNGLEDGEFLAGVPROC) ( const GLboolean *flag ); + +typedef void (APIENTRYP PFNGLSCISSORPROC) ( GLint x, GLint y, GLsizei width, GLsizei height); + +typedef void (APIENTRYP PFNGLCLIPPLANEPROC) ( GLenum plane, const GLdouble *equation ); + +typedef void (APIENTRYP PFNGLGETCLIPPLANEPROC) ( GLenum plane, GLdouble *equation ); + +typedef void (APIENTRYP PFNGLDRAWBUFFERPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLREADBUFFERPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLENABLEPROC) ( GLenum cap ); + +typedef void (APIENTRYP PFNGLDISABLEPROC) ( GLenum cap ); + +typedef GLboolean (APIENTRYP PFNGLISENABLEDPROC) ( GLenum cap ); + + +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEPROC) ( GLenum cap ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEPROC) ( GLenum cap ); /* 1.1 */ + + +typedef void (APIENTRYP PFNGLGETBOOLEANVPROC) ( GLenum pname, GLboolean *params ); + +typedef void (APIENTRYP PFNGLGETDOUBLEVPROC) ( GLenum pname, GLdouble *params ); + +typedef void (APIENTRYP PFNGLGETFLOATVPROC) ( GLenum pname, GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETINTEGERVPROC) ( GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLPUSHATTRIBPROC) ( GLbitfield mask ); + +typedef void (APIENTRYP PFNGLPOPATTRIBPROC) ( void ); + + +typedef void (APIENTRYP PFNGLPUSHCLIENTATTRIBPROC) ( GLbitfield mask ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLPOPCLIENTATTRIBPROC) ( void ); /* 1.1 */ + + +typedef GLint (APIENTRYP PFNGLRENDERMODEPROC) ( GLenum mode ); + +typedef GLenum (APIENTRYP PFNGLGETERRORPROC) ( void ); + +typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGPROC) ( GLenum name ); + +typedef void (APIENTRYP PFNGLFINISHPROC) ( void ); + +typedef void (APIENTRYP PFNGLFLUSHPROC) ( void ); + +typedef void (APIENTRYP PFNGLHINTPROC) ( GLenum target, GLenum mode ); + + +/* + * Depth Buffer + */ + +typedef void (APIENTRYP PFNGLCLEARDEPTHPROC) ( GLclampd depth ); + +typedef void (APIENTRYP PFNGLDEPTHFUNCPROC) ( GLenum func ); + +typedef void (APIENTRYP PFNGLDEPTHMASKPROC) ( GLboolean flag ); + +typedef void (APIENTRYP PFNGLDEPTHRANGEPROC) ( GLclampd near_val, GLclampd far_val ); + + +/* + * Accumulation Buffer + */ + +typedef void (APIENTRYP PFNGLCLEARACCUMPROC) ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ); + +typedef void (APIENTRYP PFNGLACCUMPROC) ( GLenum op, GLfloat value ); + + +/* + * Transformation + */ + +typedef void (APIENTRYP PFNGLMATRIXMODEPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLORTHOPROC) ( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +typedef void (APIENTRYP PFNGLFRUSTUMPROC) ( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +typedef void (APIENTRYP PFNGLVIEWPORTPROC) ( GLint x, GLint y, + GLsizei width, GLsizei height ); + +typedef void (APIENTRYP PFNGLPUSHMATRIXPROC) ( void ); + +typedef void (APIENTRYP PFNGLPOPMATRIXPROC) ( void ); + +typedef void (APIENTRYP PFNGLLOADIDENTITYPROC) ( void ); + +typedef void (APIENTRYP PFNGLLOADMATRIXDPROC) ( const GLdouble *m ); +typedef void (APIENTRYP PFNGLLOADMATRIXFPROC) ( const GLfloat *m ); + +typedef void (APIENTRYP PFNGLMULTMATRIXDPROC) ( const GLdouble *m ); +typedef void (APIENTRYP PFNGLMULTMATRIXFPROC) ( const GLfloat *m ); + +typedef void (APIENTRYP PFNGLROTATEDPROC) ( GLdouble angle, + GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLROTATEFPROC) ( GLfloat angle, + GLfloat x, GLfloat y, GLfloat z ); + +typedef void (APIENTRYP PFNGLSCALEDPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLSCALEFPROC) ( GLfloat x, GLfloat y, GLfloat z ); + +typedef void (APIENTRYP PFNGLTRANSLATEDPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLTRANSLATEFPROC) ( GLfloat x, GLfloat y, GLfloat z ); + + +/* + * Display Lists + */ + +typedef GLboolean (APIENTRYP PFNGLISLISTPROC) ( GLuint list ); + +typedef void (APIENTRYP PFNGLDELETELISTSPROC) ( GLuint list, GLsizei range ); + +typedef GLuint (APIENTRYP PFNGLGENLISTSPROC) ( GLsizei range ); + +typedef void (APIENTRYP PFNGLNEWLISTPROC) ( GLuint list, GLenum mode ); + +typedef void (APIENTRYP PFNGLENDLISTPROC) ( void ); + +typedef void (APIENTRYP PFNGLCALLLISTPROC) ( GLuint list ); + +typedef void (APIENTRYP PFNGLCALLLISTSPROC) ( GLsizei n, GLenum type, + const GLvoid *lists ); + +typedef void (APIENTRYP PFNGLLISTBASEPROC) ( GLuint base ); + + +/* + * Drawing Functions + */ + +typedef void (APIENTRYP PFNGLBEGINPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLENDPROC) ( void ); + + +typedef void (APIENTRYP PFNGLVERTEX2DPROC) ( GLdouble x, GLdouble y ); +typedef void (APIENTRYP PFNGLVERTEX2FPROC) ( GLfloat x, GLfloat y ); +typedef void (APIENTRYP PFNGLVERTEX2IPROC) ( GLint x, GLint y ); +typedef void (APIENTRYP PFNGLVERTEX2SPROC) ( GLshort x, GLshort y ); + +typedef void (APIENTRYP PFNGLVERTEX3DPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLVERTEX3FPROC) ( GLfloat x, GLfloat y, GLfloat z ); +typedef void (APIENTRYP PFNGLVERTEX3IPROC) ( GLint x, GLint y, GLint z ); +typedef void (APIENTRYP PFNGLVERTEX3SPROC) ( GLshort x, GLshort y, GLshort z ); + +typedef void (APIENTRYP PFNGLVERTEX4DPROC) ( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +typedef void (APIENTRYP PFNGLVERTEX4FPROC) ( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +typedef void (APIENTRYP PFNGLVERTEX4IPROC) ( GLint x, GLint y, GLint z, GLint w ); +typedef void (APIENTRYP PFNGLVERTEX4SPROC) ( GLshort x, GLshort y, GLshort z, GLshort w ); + +typedef void (APIENTRYP PFNGLVERTEX2DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLVERTEX2FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLVERTEX2IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLVERTEX2SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLVERTEX3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLVERTEX3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLVERTEX3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLVERTEX3SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLVERTEX4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLVERTEX4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLVERTEX4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLVERTEX4SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLNORMAL3BPROC) ( GLbyte nx, GLbyte ny, GLbyte nz ); +typedef void (APIENTRYP PFNGLNORMAL3DPROC) ( GLdouble nx, GLdouble ny, GLdouble nz ); +typedef void (APIENTRYP PFNGLNORMAL3FPROC) ( GLfloat nx, GLfloat ny, GLfloat nz ); +typedef void (APIENTRYP PFNGLNORMAL3IPROC) ( GLint nx, GLint ny, GLint nz ); +typedef void (APIENTRYP PFNGLNORMAL3SPROC) ( GLshort nx, GLshort ny, GLshort nz ); + +typedef void (APIENTRYP PFNGLNORMAL3BVPROC) ( const GLbyte *v ); +typedef void (APIENTRYP PFNGLNORMAL3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLNORMAL3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLNORMAL3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLNORMAL3SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLINDEXDPROC) ( GLdouble c ); +typedef void (APIENTRYP PFNGLINDEXFPROC) ( GLfloat c ); +typedef void (APIENTRYP PFNGLINDEXIPROC) ( GLint c ); +typedef void (APIENTRYP PFNGLINDEXSPROC) ( GLshort c ); +typedef void (APIENTRYP PFNGLINDEXUBPROC) ( GLubyte c ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLINDEXDVPROC) ( const GLdouble *c ); +typedef void (APIENTRYP PFNGLINDEXFVPROC) ( const GLfloat *c ); +typedef void (APIENTRYP PFNGLINDEXIVPROC) ( const GLint *c ); +typedef void (APIENTRYP PFNGLINDEXSVPROC) ( const GLshort *c ); +typedef void (APIENTRYP PFNGLINDEXUBVPROC) ( const GLubyte *c ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLCOLOR3BPROC) ( GLbyte red, GLbyte green, GLbyte blue ); +typedef void (APIENTRYP PFNGLCOLOR3DPROC) ( GLdouble red, GLdouble green, GLdouble blue ); +typedef void (APIENTRYP PFNGLCOLOR3FPROC) ( GLfloat red, GLfloat green, GLfloat blue ); +typedef void (APIENTRYP PFNGLCOLOR3IPROC) ( GLint red, GLint green, GLint blue ); +typedef void (APIENTRYP PFNGLCOLOR3SPROC) ( GLshort red, GLshort green, GLshort blue ); +typedef void (APIENTRYP PFNGLCOLOR3UBPROC) ( GLubyte red, GLubyte green, GLubyte blue ); +typedef void (APIENTRYP PFNGLCOLOR3UIPROC) ( GLuint red, GLuint green, GLuint blue ); +typedef void (APIENTRYP PFNGLCOLOR3USPROC) ( GLushort red, GLushort green, GLushort blue ); + +typedef void (APIENTRYP PFNGLCOLOR4BPROC) ( GLbyte red, GLbyte green, + GLbyte blue, GLbyte alpha ); +typedef void (APIENTRYP PFNGLCOLOR4DPROC) ( GLdouble red, GLdouble green, + GLdouble blue, GLdouble alpha ); +typedef void (APIENTRYP PFNGLCOLOR4FPROC) ( GLfloat red, GLfloat green, + GLfloat blue, GLfloat alpha ); +typedef void (APIENTRYP PFNGLCOLOR4IPROC) ( GLint red, GLint green, + GLint blue, GLint alpha ); +typedef void (APIENTRYP PFNGLCOLOR4SPROC) ( GLshort red, GLshort green, + GLshort blue, GLshort alpha ); +typedef void (APIENTRYP PFNGLCOLOR4UBPROC) ( GLubyte red, GLubyte green, + GLubyte blue, GLubyte alpha ); +typedef void (APIENTRYP PFNGLCOLOR4UIPROC) ( GLuint red, GLuint green, + GLuint blue, GLuint alpha ); +typedef void (APIENTRYP PFNGLCOLOR4USPROC) ( GLushort red, GLushort green, + GLushort blue, GLushort alpha ); + + +typedef void (APIENTRYP PFNGLCOLOR3BVPROC) ( const GLbyte *v ); +typedef void (APIENTRYP PFNGLCOLOR3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLCOLOR3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLCOLOR3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLCOLOR3SVPROC) ( const GLshort *v ); +typedef void (APIENTRYP PFNGLCOLOR3UBVPROC) ( const GLubyte *v ); +typedef void (APIENTRYP PFNGLCOLOR3UIVPROC) ( const GLuint *v ); +typedef void (APIENTRYP PFNGLCOLOR3USVPROC) ( const GLushort *v ); + +typedef void (APIENTRYP PFNGLCOLOR4BVPROC) ( const GLbyte *v ); +typedef void (APIENTRYP PFNGLCOLOR4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLCOLOR4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLCOLOR4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLCOLOR4SVPROC) ( const GLshort *v ); +typedef void (APIENTRYP PFNGLCOLOR4UBVPROC) ( const GLubyte *v ); +typedef void (APIENTRYP PFNGLCOLOR4UIVPROC) ( const GLuint *v ); +typedef void (APIENTRYP PFNGLCOLOR4USVPROC) ( const GLushort *v ); + + +typedef void (APIENTRYP PFNGLTEXCOORD1DPROC) ( GLdouble s ); +typedef void (APIENTRYP PFNGLTEXCOORD1FPROC) ( GLfloat s ); +typedef void (APIENTRYP PFNGLTEXCOORD1IPROC) ( GLint s ); +typedef void (APIENTRYP PFNGLTEXCOORD1SPROC) ( GLshort s ); + +typedef void (APIENTRYP PFNGLTEXCOORD2DPROC) ( GLdouble s, GLdouble t ); +typedef void (APIENTRYP PFNGLTEXCOORD2FPROC) ( GLfloat s, GLfloat t ); +typedef void (APIENTRYP PFNGLTEXCOORD2IPROC) ( GLint s, GLint t ); +typedef void (APIENTRYP PFNGLTEXCOORD2SPROC) ( GLshort s, GLshort t ); + +typedef void (APIENTRYP PFNGLTEXCOORD3DPROC) ( GLdouble s, GLdouble t, GLdouble r ); +typedef void (APIENTRYP PFNGLTEXCOORD3FPROC) ( GLfloat s, GLfloat t, GLfloat r ); +typedef void (APIENTRYP PFNGLTEXCOORD3IPROC) ( GLint s, GLint t, GLint r ); +typedef void (APIENTRYP PFNGLTEXCOORD3SPROC) ( GLshort s, GLshort t, GLshort r ); + +typedef void (APIENTRYP PFNGLTEXCOORD4DPROC) ( GLdouble s, GLdouble t, GLdouble r, GLdouble q ); +typedef void (APIENTRYP PFNGLTEXCOORD4FPROC) ( GLfloat s, GLfloat t, GLfloat r, GLfloat q ); +typedef void (APIENTRYP PFNGLTEXCOORD4IPROC) ( GLint s, GLint t, GLint r, GLint q ); +typedef void (APIENTRYP PFNGLTEXCOORD4SPROC) ( GLshort s, GLshort t, GLshort r, GLshort q ); + +typedef void (APIENTRYP PFNGLTEXCOORD1DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD1FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD1IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD1SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLTEXCOORD2DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD2FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD2IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD2SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLTEXCOORD3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD3SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLTEXCOORD4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD4SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLRASTERPOS2DPROC) ( GLdouble x, GLdouble y ); +typedef void (APIENTRYP PFNGLRASTERPOS2FPROC) ( GLfloat x, GLfloat y ); +typedef void (APIENTRYP PFNGLRASTERPOS2IPROC) ( GLint x, GLint y ); +typedef void (APIENTRYP PFNGLRASTERPOS2SPROC) ( GLshort x, GLshort y ); + +typedef void (APIENTRYP PFNGLRASTERPOS3DPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLRASTERPOS3FPROC) ( GLfloat x, GLfloat y, GLfloat z ); +typedef void (APIENTRYP PFNGLRASTERPOS3IPROC) ( GLint x, GLint y, GLint z ); +typedef void (APIENTRYP PFNGLRASTERPOS3SPROC) ( GLshort x, GLshort y, GLshort z ); + +typedef void (APIENTRYP PFNGLRASTERPOS4DPROC) ( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +typedef void (APIENTRYP PFNGLRASTERPOS4FPROC) ( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +typedef void (APIENTRYP PFNGLRASTERPOS4IPROC) ( GLint x, GLint y, GLint z, GLint w ); +typedef void (APIENTRYP PFNGLRASTERPOS4SPROC) ( GLshort x, GLshort y, GLshort z, GLshort w ); + +typedef void (APIENTRYP PFNGLRASTERPOS2DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLRASTERPOS2FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLRASTERPOS2IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLRASTERPOS2SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLRASTERPOS3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLRASTERPOS3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLRASTERPOS3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLRASTERPOS3SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLRASTERPOS4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLRASTERPOS4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLRASTERPOS4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLRASTERPOS4SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLRECTDPROC) ( GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2 ); +typedef void (APIENTRYP PFNGLRECTFPROC) ( GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2 ); +typedef void (APIENTRYP PFNGLRECTIPROC) ( GLint x1, GLint y1, GLint x2, GLint y2 ); +typedef void (APIENTRYP PFNGLRECTSPROC) ( GLshort x1, GLshort y1, GLshort x2, GLshort y2 ); + + +typedef void (APIENTRYP PFNGLRECTDVPROC) ( const GLdouble *v1, const GLdouble *v2 ); +typedef void (APIENTRYP PFNGLRECTFVPROC) ( const GLfloat *v1, const GLfloat *v2 ); +typedef void (APIENTRYP PFNGLRECTIVPROC) ( const GLint *v1, const GLint *v2 ); +typedef void (APIENTRYP PFNGLRECTSVPROC) ( const GLshort *v1, const GLshort *v2 ); + + +/* + * Vertex Arrays (1.1) + */ + +typedef void (APIENTRYP PFNGLVERTEXPOINTERPROC) ( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLNORMALPOINTERPROC) ( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLCOLORPOINTERPROC) ( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLINDEXPOINTERPROC) ( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERPROC) ( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTERPROC) ( GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLGETPOINTERVPROC) ( GLenum pname, GLvoid **params ); + +typedef void (APIENTRYP PFNGLARRAYELEMENTPROC) ( GLint i ); + +typedef void (APIENTRYP PFNGLDRAWARRAYSPROC) ( GLenum mode, GLint first, GLsizei count ); + +typedef void (APIENTRYP PFNGLDRAWELEMENTSPROC) ( GLenum mode, GLsizei count, + GLenum type, const GLvoid *indices ); + +typedef void (APIENTRYP PFNGLINTERLEAVEDARRAYSPROC) ( GLenum format, GLsizei stride, + const GLvoid *pointer ); + +/* + * Lighting + */ + +typedef void (APIENTRYP PFNGLSHADEMODELPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLLIGHTFPROC) ( GLenum light, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLLIGHTIPROC) ( GLenum light, GLenum pname, GLint param ); +typedef void (APIENTRYP PFNGLLIGHTFVPROC) ( GLenum light, GLenum pname, + const GLfloat *params ); +typedef void (APIENTRYP PFNGLLIGHTIVPROC) ( GLenum light, GLenum pname, + const GLint *params ); + +typedef void (APIENTRYP PFNGLGETLIGHTFVPROC) ( GLenum light, GLenum pname, + GLfloat *params ); +typedef void (APIENTRYP PFNGLGETLIGHTIVPROC) ( GLenum light, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLLIGHTMODELFPROC) ( GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLLIGHTMODELIPROC) ( GLenum pname, GLint param ); +typedef void (APIENTRYP PFNGLLIGHTMODELFVPROC) ( GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLLIGHTMODELIVPROC) ( GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLMATERIALFPROC) ( GLenum face, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLMATERIALIPROC) ( GLenum face, GLenum pname, GLint param ); +typedef void (APIENTRYP PFNGLMATERIALFVPROC) ( GLenum face, GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLMATERIALIVPROC) ( GLenum face, GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLGETMATERIALFVPROC) ( GLenum face, GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETMATERIALIVPROC) ( GLenum face, GLenum pname, GLint *params ); + +typedef void (APIENTRYP PFNGLCOLORMATERIALPROC) ( GLenum face, GLenum mode ); + + +/* + * Raster functions + */ + +typedef void (APIENTRYP PFNGLPIXELZOOMPROC) ( GLfloat xfactor, GLfloat yfactor ); + +typedef void (APIENTRYP PFNGLPIXELSTOREFPROC) ( GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLPIXELSTOREIPROC) ( GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLPIXELTRANSFERFPROC) ( GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLPIXELTRANSFERIPROC) ( GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLPIXELMAPFVPROC) ( GLenum map, GLsizei mapsize, + const GLfloat *values ); +typedef void (APIENTRYP PFNGLPIXELMAPUIVPROC) ( GLenum map, GLsizei mapsize, + const GLuint *values ); +typedef void (APIENTRYP PFNGLPIXELMAPUSVPROC) ( GLenum map, GLsizei mapsize, + const GLushort *values ); + +typedef void (APIENTRYP PFNGLGETPIXELMAPFVPROC) ( GLenum map, GLfloat *values ); +typedef void (APIENTRYP PFNGLGETPIXELMAPUIVPROC) ( GLenum map, GLuint *values ); +typedef void (APIENTRYP PFNGLGETPIXELMAPUSVPROC) ( GLenum map, GLushort *values ); + +typedef void (APIENTRYP PFNGLBITMAPPROC) ( GLsizei width, GLsizei height, + GLfloat xorig, GLfloat yorig, + GLfloat xmove, GLfloat ymove, + const GLubyte *bitmap ); + +typedef void (APIENTRYP PFNGLREADPIXELSPROC) ( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLDRAWPIXELSPROC) ( GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLCOPYPIXELSPROC) ( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum type ); + +/* + * Stenciling + */ + +typedef void (APIENTRYP PFNGLSTENCILFUNCPROC) ( GLenum func, GLint ref, GLuint mask ); + +typedef void (APIENTRYP PFNGLSTENCILMASKPROC) ( GLuint mask ); + +typedef void (APIENTRYP PFNGLSTENCILOPPROC) ( GLenum fail, GLenum zfail, GLenum zpass ); + +typedef void (APIENTRYP PFNGLCLEARSTENCILPROC) ( GLint s ); + + + +/* + * Texture mapping + */ + +typedef void (APIENTRYP PFNGLTEXGENDPROC) ( GLenum coord, GLenum pname, GLdouble param ); +typedef void (APIENTRYP PFNGLTEXGENFPROC) ( GLenum coord, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLTEXGENIPROC) ( GLenum coord, GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLTEXGENDVPROC) ( GLenum coord, GLenum pname, const GLdouble *params ); +typedef void (APIENTRYP PFNGLTEXGENFVPROC) ( GLenum coord, GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLTEXGENIVPROC) ( GLenum coord, GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXGENDVPROC) ( GLenum coord, GLenum pname, GLdouble *params ); +typedef void (APIENTRYP PFNGLGETTEXGENFVPROC) ( GLenum coord, GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETTEXGENIVPROC) ( GLenum coord, GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLTEXENVFPROC) ( GLenum target, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLTEXENVIPROC) ( GLenum target, GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLTEXENVFVPROC) ( GLenum target, GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLTEXENVIVPROC) ( GLenum target, GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXENVFVPROC) ( GLenum target, GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETTEXENVIVPROC) ( GLenum target, GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLTEXPARAMETERFPROC) ( GLenum target, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLTEXPARAMETERIPROC) ( GLenum target, GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLTEXPARAMETERFVPROC) ( GLenum target, GLenum pname, + const GLfloat *params ); +typedef void (APIENTRYP PFNGLTEXPARAMETERIVPROC) ( GLenum target, GLenum pname, + const GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXPARAMETERFVPROC) ( GLenum target, + GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIVPROC) ( GLenum target, + GLenum pname, GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERFVPROC) ( GLenum target, GLint level, + GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERIVPROC) ( GLenum target, GLint level, + GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLTEXIMAGE1DPROC) ( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLTEXIMAGE2DPROC) ( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLint border, GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLGETTEXIMAGEPROC) ( GLenum target, GLint level, + GLenum format, GLenum type, + GLvoid *pixels ); + + +/* 1.1 functions */ + +typedef void (APIENTRYP PFNGLGENTEXTURESPROC) ( GLsizei n, GLuint *textures ); + +typedef void (APIENTRYP PFNGLDELETETEXTURESPROC) ( GLsizei n, const GLuint *textures); + +typedef void (APIENTRYP PFNGLBINDTEXTUREPROC) ( GLenum target, GLuint texture ); + +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESPROC) ( GLsizei n, + const GLuint *textures, + const GLclampf *priorities ); + +typedef GLboolean (APIENTRYP PFNGLARETEXTURESRESIDENTPROC) ( GLsizei n, + const GLuint *textures, + GLboolean *residences ); + +typedef GLboolean (APIENTRYP PFNGLISTEXTUREPROC) ( GLuint texture ); + + +typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DPROC) ( GLenum target, GLint level, + GLint xoffset, + GLsizei width, GLenum format, + GLenum type, const GLvoid *pixels ); + + +typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + + +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DPROC) ( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLint border ); + + +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DPROC) ( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLsizei height, + GLint border ); + + +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint x, GLint y, + GLsizei width ); + + +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint x, GLint y, + GLsizei width, GLsizei height ); + + +/* + * Evaluators + */ + +typedef void (APIENTRYP PFNGLMAP1DPROC) ( GLenum target, GLdouble u1, GLdouble u2, + GLint stride, + GLint order, const GLdouble *points ); +typedef void (APIENTRYP PFNGLMAP1FPROC) ( GLenum target, GLfloat u1, GLfloat u2, + GLint stride, + GLint order, const GLfloat *points ); + +typedef void (APIENTRYP PFNGLMAP2DPROC) ( GLenum target, + GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, + GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, + const GLdouble *points ); +typedef void (APIENTRYP PFNGLMAP2FPROC) ( GLenum target, + GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, + GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, + const GLfloat *points ); + +typedef void (APIENTRYP PFNGLGETMAPDVPROC) ( GLenum target, GLenum query, GLdouble *v ); +typedef void (APIENTRYP PFNGLGETMAPFVPROC) ( GLenum target, GLenum query, GLfloat *v ); +typedef void (APIENTRYP PFNGLGETMAPIVPROC) ( GLenum target, GLenum query, GLint *v ); + +typedef void (APIENTRYP PFNGLEVALCOORD1DPROC) ( GLdouble u ); +typedef void (APIENTRYP PFNGLEVALCOORD1FPROC) ( GLfloat u ); + +typedef void (APIENTRYP PFNGLEVALCOORD1DVPROC) ( const GLdouble *u ); +typedef void (APIENTRYP PFNGLEVALCOORD1FVPROC) ( const GLfloat *u ); + +typedef void (APIENTRYP PFNGLEVALCOORD2DPROC) ( GLdouble u, GLdouble v ); +typedef void (APIENTRYP PFNGLEVALCOORD2FPROC) ( GLfloat u, GLfloat v ); + +typedef void (APIENTRYP PFNGLEVALCOORD2DVPROC) ( const GLdouble *u ); +typedef void (APIENTRYP PFNGLEVALCOORD2FVPROC) ( const GLfloat *u ); + +typedef void (APIENTRYP PFNGLMAPGRID1DPROC) ( GLint un, GLdouble u1, GLdouble u2 ); +typedef void (APIENTRYP PFNGLMAPGRID1FPROC) ( GLint un, GLfloat u1, GLfloat u2 ); + +typedef void (APIENTRYP PFNGLMAPGRID2DPROC) ( GLint un, GLdouble u1, GLdouble u2, + GLint vn, GLdouble v1, GLdouble v2 ); +typedef void (APIENTRYP PFNGLMAPGRID2FPROC) ( GLint un, GLfloat u1, GLfloat u2, + GLint vn, GLfloat v1, GLfloat v2 ); + +typedef void (APIENTRYP PFNGLEVALPOINT1PROC) ( GLint i ); + +typedef void (APIENTRYP PFNGLEVALPOINT2PROC) ( GLint i, GLint j ); + +typedef void (APIENTRYP PFNGLEVALMESH1PROC) ( GLenum mode, GLint i1, GLint i2 ); + +typedef void (APIENTRYP PFNGLEVALMESH2PROC) ( GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 ); + + +/* + * Fog + */ + +typedef void (APIENTRYP PFNGLFOGFPROC) ( GLenum pname, GLfloat param ); + +typedef void (APIENTRYP PFNGLFOGIPROC) ( GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLFOGFVPROC) ( GLenum pname, const GLfloat *params ); + +typedef void (APIENTRYP PFNGLFOGIVPROC) ( GLenum pname, const GLint *params ); + + +/* + * Selection and Feedback + */ + +typedef void (APIENTRYP PFNGLFEEDBACKBUFFERPROC) ( GLsizei size, GLenum type, GLfloat *buffer ); + +typedef void (APIENTRYP PFNGLPASSTHROUGHPROC) ( GLfloat token ); + +typedef void (APIENTRYP PFNGLSELECTBUFFERPROC) ( GLsizei size, GLuint *buffer ); + +typedef void (APIENTRYP PFNGLINITNAMESPROC) ( void ); + +typedef void (APIENTRYP PFNGLLOADNAMEPROC) ( GLuint name ); + +typedef void (APIENTRYP PFNGLPUSHNAMEPROC) ( GLuint name ); + +typedef void (APIENTRYP PFNGLPOPNAMEPROC) ( void ); +#endif + + +/* + * OpenGL 1.2 + */ + +#define GL_RESCALE_NORMAL 0x803A +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_MAX_ELEMENTS_VERTICES 0x80E8 +#define GL_MAX_ELEMENTS_INDICES 0x80E9 +#define GL_BGR 0x80E0 +#define GL_BGRA 0x80E1 +#define GL_UNSIGNED_BYTE_3_3_2 0x8032 +#define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 +#define GL_UNSIGNED_INT_8_8_8_8 0x8035 +#define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 +#define GL_UNSIGNED_INT_10_10_10_2 0x8036 +#define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 +#define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8 +#define GL_SINGLE_COLOR 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR 0x81FA +#define GL_TEXTURE_MIN_LOD 0x813A +#define GL_TEXTURE_MAX_LOD 0x813B +#define GL_TEXTURE_BASE_LEVEL 0x813C +#define GL_TEXTURE_MAX_LEVEL 0x813D +#define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 +#define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 +#define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_PACK_SKIP_IMAGES 0x806B +#define GL_PACK_IMAGE_HEIGHT 0x806C +#define GL_UNPACK_SKIP_IMAGES 0x806D +#define GL_UNPACK_IMAGE_HEIGHT 0x806E +#define GL_TEXTURE_3D 0x806F +#define GL_PROXY_TEXTURE_3D 0x8070 +#define GL_TEXTURE_DEPTH 0x8071 +#define GL_TEXTURE_WRAP_R 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE 0x8073 +#define GL_TEXTURE_BINDING_3D 0x806A + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glDrawRangeElements( GLenum mode, GLuint start, + GLuint end, GLsizei count, GLenum type, const GLvoid *indices ); + +GLAPI void GLAPIENTRY glTexImage3D( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLsizei depth, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glTexSubImage3D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLsizei width, + GLsizei height, GLsizei depth, + GLenum format, + GLenum type, const GLvoid *pixels); + +GLAPI void GLAPIENTRY glCopyTexSubImage3D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLint x, + GLint y, GLsizei width, + GLsizei height ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) ( GLenum mode, GLuint start, + GLuint end, GLsizei count, GLenum type, const GLvoid *indices ); + +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) ( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLsizei depth, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLsizei width, + GLsizei height, GLsizei depth, + GLenum format, + GLenum type, const GLvoid *pixels); + +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLint x, + GLint y, GLsizei width, + GLsizei height ); + +#endif + +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices); +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); + + +/* + * GL_ARB_imaging + */ + +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_COLOR_TABLE 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2 +#define GL_PROXY_COLOR_TABLE 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5 +#define GL_COLOR_TABLE_SCALE 0x80D6 +#define GL_COLOR_TABLE_BIAS 0x80D7 +#define GL_COLOR_TABLE_FORMAT 0x80D8 +#define GL_COLOR_TABLE_WIDTH 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF +#define GL_CONVOLUTION_1D 0x8010 +#define GL_CONVOLUTION_2D 0x8011 +#define GL_SEPARABLE_2D 0x8012 +#define GL_CONVOLUTION_BORDER_MODE 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS 0x8015 +#define GL_REDUCE 0x8016 +#define GL_CONVOLUTION_FORMAT 0x8017 +#define GL_CONVOLUTION_WIDTH 0x8018 +#define GL_CONVOLUTION_HEIGHT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023 +#define GL_CONSTANT_BORDER 0x8151 +#define GL_REPLICATE_BORDER 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR 0x8154 +#define GL_COLOR_MATRIX 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB +#define GL_HISTOGRAM 0x8024 +#define GL_PROXY_HISTOGRAM 0x8025 +#define GL_HISTOGRAM_WIDTH 0x8026 +#define GL_HISTOGRAM_FORMAT 0x8027 +#define GL_HISTOGRAM_RED_SIZE 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C +#define GL_HISTOGRAM_SINK 0x802D +#define GL_MINMAX 0x802E +#define GL_MINMAX_FORMAT 0x802F +#define GL_MINMAX_SINK 0x8030 +#define GL_TABLE_TOO_LARGE 0x8031 +#define GL_BLEND_EQUATION 0x8009 +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +#define GL_FUNC_ADD 0x8006 +#define GL_FUNC_SUBTRACT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_BLEND_COLOR 0x8005 + + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glColorTable( GLenum target, GLenum internalformat, + GLsizei width, GLenum format, + GLenum type, const GLvoid *table ); + +GLAPI void GLAPIENTRY glColorSubTable( GLenum target, + GLsizei start, GLsizei count, + GLenum format, GLenum type, + const GLvoid *data ); + +GLAPI void GLAPIENTRY glColorTableParameteriv(GLenum target, GLenum pname, + const GLint *params); + +GLAPI void GLAPIENTRY glColorTableParameterfv(GLenum target, GLenum pname, + const GLfloat *params); + +GLAPI void GLAPIENTRY glCopyColorSubTable( GLenum target, GLsizei start, + GLint x, GLint y, GLsizei width ); + +GLAPI void GLAPIENTRY glCopyColorTable( GLenum target, GLenum internalformat, + GLint x, GLint y, GLsizei width ); + +GLAPI void GLAPIENTRY glGetColorTable( GLenum target, GLenum format, + GLenum type, GLvoid *table ); + +GLAPI void GLAPIENTRY glGetColorTableParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetColorTableParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glBlendEquation( GLenum mode ); + +GLAPI void GLAPIENTRY glBlendColor( GLclampf red, GLclampf green, + GLclampf blue, GLclampf alpha ); + +GLAPI void GLAPIENTRY glHistogram( GLenum target, GLsizei width, + GLenum internalformat, GLboolean sink ); + +GLAPI void GLAPIENTRY glResetHistogram( GLenum target ); + +GLAPI void GLAPIENTRY glGetHistogram( GLenum target, GLboolean reset, + GLenum format, GLenum type, + GLvoid *values ); + +GLAPI void GLAPIENTRY glGetHistogramParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetHistogramParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glMinmax( GLenum target, GLenum internalformat, + GLboolean sink ); + +GLAPI void GLAPIENTRY glResetMinmax( GLenum target ); + +GLAPI void GLAPIENTRY glGetMinmax( GLenum target, GLboolean reset, + GLenum format, GLenum types, + GLvoid *values ); + +GLAPI void GLAPIENTRY glGetMinmaxParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetMinmaxParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glConvolutionFilter1D( GLenum target, + GLenum internalformat, GLsizei width, GLenum format, GLenum type, + const GLvoid *image ); + +GLAPI void GLAPIENTRY glConvolutionFilter2D( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *image ); + +GLAPI void GLAPIENTRY glConvolutionParameterf( GLenum target, GLenum pname, + GLfloat params ); + +GLAPI void GLAPIENTRY glConvolutionParameterfv( GLenum target, GLenum pname, + const GLfloat *params ); + +GLAPI void GLAPIENTRY glConvolutionParameteri( GLenum target, GLenum pname, + GLint params ); + +GLAPI void GLAPIENTRY glConvolutionParameteriv( GLenum target, GLenum pname, + const GLint *params ); + +GLAPI void GLAPIENTRY glCopyConvolutionFilter1D( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width ); + +GLAPI void GLAPIENTRY glCopyConvolutionFilter2D( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width, + GLsizei height); + +GLAPI void GLAPIENTRY glGetConvolutionFilter( GLenum target, GLenum format, + GLenum type, GLvoid *image ); + +GLAPI void GLAPIENTRY glGetConvolutionParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetConvolutionParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glSeparableFilter2D( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *row, const GLvoid *column ); + +GLAPI void GLAPIENTRY glGetSeparableFilter( GLenum target, GLenum format, + GLenum type, GLvoid *row, GLvoid *column, GLvoid *span ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLCOLORTABLEPROC) ( GLenum target, GLenum internalformat, + GLsizei width, GLenum format, + GLenum type, const GLvoid *table ); + +typedef void (APIENTRYP PFNGLCOLORSUBTABLEPROC) ( GLenum target, + GLsizei start, GLsizei count, + GLenum format, GLenum type, + const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, + const GLint *params); + +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, + const GLfloat *params); + +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEPROC) ( GLenum target, GLsizei start, + GLint x, GLint y, GLsizei width ); + +typedef void (APIENTRYP PFNGLCOPYCOLORTABLEPROC) ( GLenum target, GLenum internalformat, + GLint x, GLint y, GLsizei width ); + +typedef void (APIENTRYP PFNGLGETCOLORTABLEPROC) ( GLenum target, GLenum format, + GLenum type, GLvoid *table ); + +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLBLENDCOLORPROC) ( GLclampf red, GLclampf green, + GLclampf blue, GLclampf alpha ); + +typedef void (APIENTRYP PFNGLHISTOGRAMPROC) ( GLenum target, GLsizei width, + GLenum internalformat, GLboolean sink ); + +typedef void (APIENTRYP PFNGLRESETHISTOGRAMPROC) ( GLenum target ); + +typedef void (APIENTRYP PFNGLGETHISTOGRAMPROC) ( GLenum target, GLboolean reset, + GLenum format, GLenum type, + GLvoid *values ); + +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLMINMAXPROC) ( GLenum target, GLenum internalformat, + GLboolean sink ); + +typedef void (APIENTRYP PFNGLRESETMINMAXPROC) ( GLenum target ); + +typedef void (APIENTRYP PFNGLGETMINMAXPROC) ( GLenum target, GLboolean reset, + GLenum format, GLenum types, + GLvoid *values ); + +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DPROC) ( GLenum target, + GLenum internalformat, GLsizei width, GLenum format, GLenum type, + const GLvoid *image ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DPROC) ( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *image ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFPROC) ( GLenum target, GLenum pname, + GLfloat params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVPROC) ( GLenum target, GLenum pname, + const GLfloat *params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIPROC) ( GLenum target, GLenum pname, + GLint params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVPROC) ( GLenum target, GLenum pname, + const GLint *params ); + +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DPROC) ( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width ); + +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DPROC) ( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width, + GLsizei height); + +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTERPROC) ( GLenum target, GLenum format, + GLenum type, GLvoid *image ); + +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DPROC) ( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *row, const GLvoid *column ); + +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTERPROC) ( GLenum target, GLenum format, + GLenum type, GLvoid *row, GLvoid *column, GLvoid *span ); + +#endif + + + + +/* + * OpenGL 1.3 + */ + +/* multitexture */ +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE 0x84E1 +#define GL_MAX_TEXTURE_UNITS 0x84E2 +/* texture_cube_map */ +#define GL_NORMAL_MAP 0x8511 +#define GL_REFLECTION_MAP 0x8512 +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +/* texture_compression */ +#define GL_COMPRESSED_ALPHA 0x84E9 +#define GL_COMPRESSED_LUMINANCE 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB +#define GL_COMPRESSED_INTENSITY 0x84EC +#define GL_COMPRESSED_RGB 0x84ED +#define GL_COMPRESSED_RGBA 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 +#define GL_TEXTURE_COMPRESSED 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +/* multisample */ +#define GL_MULTISAMPLE 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE 0x809F +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_MULTISAMPLE_BIT 0x20000000 +/* transpose_matrix */ +#define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX 0x84E6 +/* texture_env_combine */ +#define GL_COMBINE 0x8570 +#define GL_COMBINE_RGB 0x8571 +#define GL_COMBINE_ALPHA 0x8572 +#define GL_SOURCE0_RGB 0x8580 +#define GL_SOURCE1_RGB 0x8581 +#define GL_SOURCE2_RGB 0x8582 +#define GL_SOURCE0_ALPHA 0x8588 +#define GL_SOURCE1_ALPHA 0x8589 +#define GL_SOURCE2_ALPHA 0x858A +#define GL_OPERAND0_RGB 0x8590 +#define GL_OPERAND1_RGB 0x8591 +#define GL_OPERAND2_RGB 0x8592 +#define GL_OPERAND0_ALPHA 0x8598 +#define GL_OPERAND1_ALPHA 0x8599 +#define GL_OPERAND2_ALPHA 0x859A +#define GL_RGB_SCALE 0x8573 +#define GL_ADD_SIGNED 0x8574 +#define GL_INTERPOLATE 0x8575 +#define GL_SUBTRACT 0x84E7 +#define GL_CONSTANT 0x8576 +#define GL_PRIMARY_COLOR 0x8577 +#define GL_PREVIOUS 0x8578 +/* texture_env_dot3 */ +#define GL_DOT3_RGB 0x86AE +#define GL_DOT3_RGBA 0x86AF +/* texture_border_clamp */ +#define GL_CLAMP_TO_BORDER 0x812D + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glActiveTexture( GLenum texture ); + +GLAPI void GLAPIENTRY glClientActiveTexture( GLenum texture ); + +GLAPI void GLAPIENTRY glCompressedTexImage1D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexImage2D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexImage3D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexSubImage1D( GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexSubImage2D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexSubImage3D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glGetCompressedTexImage( GLenum target, GLint lod, GLvoid *img ); + +GLAPI void GLAPIENTRY glMultiTexCoord1d( GLenum target, GLdouble s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord1f( GLenum target, GLfloat s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord1i( GLenum target, GLint s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord1s( GLenum target, GLshort s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1sv( GLenum target, const GLshort *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2d( GLenum target, GLdouble s, GLdouble t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2f( GLenum target, GLfloat s, GLfloat t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2i( GLenum target, GLint s, GLint t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2s( GLenum target, GLshort s, GLshort t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2sv( GLenum target, const GLshort *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3d( GLenum target, GLdouble s, GLdouble t, GLdouble r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3f( GLenum target, GLfloat s, GLfloat t, GLfloat r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3i( GLenum target, GLint s, GLint t, GLint r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3s( GLenum target, GLshort s, GLshort t, GLshort r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3sv( GLenum target, const GLshort *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4d( GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4f( GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4i( GLenum target, GLint s, GLint t, GLint r, GLint q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4s( GLenum target, GLshort s, GLshort t, GLshort r, GLshort q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4sv( GLenum target, const GLshort *v ); + + +GLAPI void GLAPIENTRY glLoadTransposeMatrixd( const GLdouble m[16] ); + +GLAPI void GLAPIENTRY glLoadTransposeMatrixf( const GLfloat m[16] ); + +GLAPI void GLAPIENTRY glMultTransposeMatrixd( const GLdouble m[16] ); + +GLAPI void GLAPIENTRY glMultTransposeMatrixf( const GLfloat m[16] ); + +GLAPI void GLAPIENTRY glSampleCoverage( GLclampf value, GLboolean invert ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) ( GLenum texture ); + +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREPROC) ( GLenum texture ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) ( GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) ( GLenum target, GLint lod, GLvoid *img ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DPROC) ( GLenum target, GLdouble s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FPROC) ( GLenum target, GLfloat s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IPROC) ( GLenum target, GLint s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SPROC) ( GLenum target, GLshort s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVPROC) ( GLenum target, const GLshort *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DPROC) ( GLenum target, GLdouble s, GLdouble t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FPROC) ( GLenum target, GLfloat s, GLfloat t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IPROC) ( GLenum target, GLint s, GLint t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SPROC) ( GLenum target, GLshort s, GLshort t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVPROC) ( GLenum target, const GLshort *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DPROC) ( GLenum target, GLdouble s, GLdouble t, GLdouble r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FPROC) ( GLenum target, GLfloat s, GLfloat t, GLfloat r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IPROC) ( GLenum target, GLint s, GLint t, GLint r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SPROC) ( GLenum target, GLshort s, GLshort t, GLshort r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVPROC) ( GLenum target, const GLshort *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DPROC) ( GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FPROC) ( GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IPROC) ( GLenum target, GLint s, GLint t, GLint r, GLint q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SPROC) ( GLenum target, GLshort s, GLshort t, GLshort r, GLshort q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVPROC) ( GLenum target, const GLshort *v ); + + +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDPROC) ( const GLdouble m[16] ); + +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFPROC) ( const GLfloat m[16] ); + +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDPROC) ( const GLdouble m[16] ); + +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFPROC) ( const GLfloat m[16] ); + +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) ( GLclampf value, GLboolean invert ); + +#endif + + +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, GLvoid *img); + + + +/* + * GL_ARB_multitexture (ARB extension 1 and OpenGL 1.2.1) + */ +#ifndef GL_ARB_multitexture +#define GL_ARB_multitexture 1 + +#define GL_TEXTURE0_ARB 0x84C0 +#define GL_TEXTURE1_ARB 0x84C1 +#define GL_TEXTURE2_ARB 0x84C2 +#define GL_TEXTURE3_ARB 0x84C3 +#define GL_TEXTURE4_ARB 0x84C4 +#define GL_TEXTURE5_ARB 0x84C5 +#define GL_TEXTURE6_ARB 0x84C6 +#define GL_TEXTURE7_ARB 0x84C7 +#define GL_TEXTURE8_ARB 0x84C8 +#define GL_TEXTURE9_ARB 0x84C9 +#define GL_TEXTURE10_ARB 0x84CA +#define GL_TEXTURE11_ARB 0x84CB +#define GL_TEXTURE12_ARB 0x84CC +#define GL_TEXTURE13_ARB 0x84CD +#define GL_TEXTURE14_ARB 0x84CE +#define GL_TEXTURE15_ARB 0x84CF +#define GL_TEXTURE16_ARB 0x84D0 +#define GL_TEXTURE17_ARB 0x84D1 +#define GL_TEXTURE18_ARB 0x84D2 +#define GL_TEXTURE19_ARB 0x84D3 +#define GL_TEXTURE20_ARB 0x84D4 +#define GL_TEXTURE21_ARB 0x84D5 +#define GL_TEXTURE22_ARB 0x84D6 +#define GL_TEXTURE23_ARB 0x84D7 +#define GL_TEXTURE24_ARB 0x84D8 +#define GL_TEXTURE25_ARB 0x84D9 +#define GL_TEXTURE26_ARB 0x84DA +#define GL_TEXTURE27_ARB 0x84DB +#define GL_TEXTURE28_ARB 0x84DC +#define GL_TEXTURE29_ARB 0x84DD +#define GL_TEXTURE30_ARB 0x84DE +#define GL_TEXTURE31_ARB 0x84DF +#define GL_ACTIVE_TEXTURE_ARB 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1 +#define GL_MAX_TEXTURE_UNITS_ARB 0x84E2 + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glActiveTextureARB(GLenum texture); +GLAPI void GLAPIENTRY glClientActiveTextureARB(GLenum texture); +GLAPI void GLAPIENTRY glMultiTexCoord1dARB(GLenum target, GLdouble s); +GLAPI void GLAPIENTRY glMultiTexCoord1dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord1fARB(GLenum target, GLfloat s); +GLAPI void GLAPIENTRY glMultiTexCoord1fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord1iARB(GLenum target, GLint s); +GLAPI void GLAPIENTRY glMultiTexCoord1ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord1sARB(GLenum target, GLshort s); +GLAPI void GLAPIENTRY glMultiTexCoord1svARB(GLenum target, const GLshort *v); +GLAPI void GLAPIENTRY glMultiTexCoord2dARB(GLenum target, GLdouble s, GLdouble t); +GLAPI void GLAPIENTRY glMultiTexCoord2dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord2fARB(GLenum target, GLfloat s, GLfloat t); +GLAPI void GLAPIENTRY glMultiTexCoord2fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord2iARB(GLenum target, GLint s, GLint t); +GLAPI void GLAPIENTRY glMultiTexCoord2ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord2sARB(GLenum target, GLshort s, GLshort t); +GLAPI void GLAPIENTRY glMultiTexCoord2svARB(GLenum target, const GLshort *v); +GLAPI void GLAPIENTRY glMultiTexCoord3dARB(GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void GLAPIENTRY glMultiTexCoord3dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord3fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void GLAPIENTRY glMultiTexCoord3fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord3iARB(GLenum target, GLint s, GLint t, GLint r); +GLAPI void GLAPIENTRY glMultiTexCoord3ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord3sARB(GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void GLAPIENTRY glMultiTexCoord3svARB(GLenum target, const GLshort *v); +GLAPI void GLAPIENTRY glMultiTexCoord4dARB(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void GLAPIENTRY glMultiTexCoord4dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord4fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void GLAPIENTRY glMultiTexCoord4fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord4iARB(GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void GLAPIENTRY glMultiTexCoord4ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord4sARB(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void GLAPIENTRY glMultiTexCoord4svARB(GLenum target, const GLshort *v); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); + +#endif + +typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); + +#endif /* GL_ARB_multitexture */ + + + +/* + * Define this token if you want "old-style" header file behaviour (extensions + * defined in gl.h). Otherwise, extensions will be included from glext.h. + */ +#if !defined(NO_SDL_GLEXT) && !defined(GL_GLEXT_LEGACY) +#include +#endif /* GL_GLEXT_LEGACY */ + + + +/********************************************************************** + * Begin system-specific stuff + */ +#if defined(PRAGMA_EXPORT_SUPPORTED) +#pragma export off +#endif + +/* + * End system-specific stuff + **********************************************************************/ + + +#ifdef __cplusplus +} +#endif + +#endif /* __gl_h_ */ + +#endif /* !SDL_PLATFORM_IOS */ + +#endif /* SDL_opengl_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengl_glext.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengl_glext.h new file mode 100644 index 0000000..fa0f6c2 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengl_glext.h @@ -0,0 +1,13213 @@ +/* SDL modified the include guard to be compatible with Mesa and Apple include guards: + * - Mesa uses: __gl_glext_h_ + * - Apple uses: __glext_h_ */ +#if !defined(__glext_h_) && !defined(__gl_glext_h_) +#define __glext_h_ 1 +#define __gl_glext_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN 1 +#endif +#include +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif +#ifndef APIENTRYP +#define APIENTRYP APIENTRY * +#endif +#ifndef GLAPI +#define GLAPI extern +#endif + +#define GL_GLEXT_VERSION 20220530 + +/*#include */ +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ + +/* Generated C header for: + * API: gl + * Profile: compatibility + * Versions considered: .* + * Versions emitted: 1\.[2-9]|[234]\.[0-9] + * Default extensions included: gl + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_VERSION_1_2 +#define GL_VERSION_1_2 1 +#define GL_UNSIGNED_BYTE_3_3_2 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2 0x8036 +#define GL_TEXTURE_BINDING_3D 0x806A +#define GL_PACK_SKIP_IMAGES 0x806B +#define GL_PACK_IMAGE_HEIGHT 0x806C +#define GL_UNPACK_SKIP_IMAGES 0x806D +#define GL_UNPACK_IMAGE_HEIGHT 0x806E +#define GL_TEXTURE_3D 0x806F +#define GL_PROXY_TEXTURE_3D 0x8070 +#define GL_TEXTURE_DEPTH 0x8071 +#define GL_TEXTURE_WRAP_R 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE 0x8073 +#define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 +#define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 +#define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 +#define GL_BGR 0x80E0 +#define GL_BGRA 0x80E1 +#define GL_MAX_ELEMENTS_VERTICES 0x80E8 +#define GL_MAX_ELEMENTS_INDICES 0x80E9 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_TEXTURE_MIN_LOD 0x813A +#define GL_TEXTURE_MAX_LOD 0x813B +#define GL_TEXTURE_BASE_LEVEL 0x813C +#define GL_TEXTURE_MAX_LEVEL 0x813D +#define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 +#define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 +#define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_RESCALE_NORMAL 0x803A +#define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8 +#define GL_SINGLE_COLOR 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR 0x81FA +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawRangeElements (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +GLAPI void APIENTRY glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#endif +#endif /* GL_VERSION_1_2 */ + +#ifndef GL_VERSION_1_3 +#define GL_VERSION_1_3 1 +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_MULTISAMPLE 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE 0x809F +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +#define GL_COMPRESSED_RGB 0x84ED +#define GL_COMPRESSED_RGBA 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 +#define GL_TEXTURE_COMPRESSED 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +#define GL_CLAMP_TO_BORDER 0x812D +#define GL_CLIENT_ACTIVE_TEXTURE 0x84E1 +#define GL_MAX_TEXTURE_UNITS 0x84E2 +#define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX 0x84E6 +#define GL_MULTISAMPLE_BIT 0x20000000 +#define GL_NORMAL_MAP 0x8511 +#define GL_REFLECTION_MAP 0x8512 +#define GL_COMPRESSED_ALPHA 0x84E9 +#define GL_COMPRESSED_LUMINANCE 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB +#define GL_COMPRESSED_INTENSITY 0x84EC +#define GL_COMBINE 0x8570 +#define GL_COMBINE_RGB 0x8571 +#define GL_COMBINE_ALPHA 0x8572 +#define GL_SOURCE0_RGB 0x8580 +#define GL_SOURCE1_RGB 0x8581 +#define GL_SOURCE2_RGB 0x8582 +#define GL_SOURCE0_ALPHA 0x8588 +#define GL_SOURCE1_ALPHA 0x8589 +#define GL_SOURCE2_ALPHA 0x858A +#define GL_OPERAND0_RGB 0x8590 +#define GL_OPERAND1_RGB 0x8591 +#define GL_OPERAND2_RGB 0x8592 +#define GL_OPERAND0_ALPHA 0x8598 +#define GL_OPERAND1_ALPHA 0x8599 +#define GL_OPERAND2_ALPHA 0x859A +#define GL_RGB_SCALE 0x8573 +#define GL_ADD_SIGNED 0x8574 +#define GL_INTERPOLATE 0x8575 +#define GL_SUBTRACT 0x84E7 +#define GL_CONSTANT 0x8576 +#define GL_PRIMARY_COLOR 0x8577 +#define GL_PREVIOUS 0x8578 +#define GL_DOT3_RGB 0x86AE +#define GL_DOT3_RGBA 0x86AF +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLfloat value, GLboolean invert); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, void *img); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDPROC) (const GLdouble *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDPROC) (const GLdouble *m); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveTexture (GLenum texture); +GLAPI void APIENTRY glSampleCoverage (GLfloat value, GLboolean invert); +GLAPI void APIENTRY glCompressedTexImage3D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage1D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage1D (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glGetCompressedTexImage (GLenum target, GLint level, void *img); +GLAPI void APIENTRY glClientActiveTexture (GLenum texture); +GLAPI void APIENTRY glMultiTexCoord1d (GLenum target, GLdouble s); +GLAPI void APIENTRY glMultiTexCoord1dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord1f (GLenum target, GLfloat s); +GLAPI void APIENTRY glMultiTexCoord1fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord1i (GLenum target, GLint s); +GLAPI void APIENTRY glMultiTexCoord1iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord1s (GLenum target, GLshort s); +GLAPI void APIENTRY glMultiTexCoord1sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord2d (GLenum target, GLdouble s, GLdouble t); +GLAPI void APIENTRY glMultiTexCoord2dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord2f (GLenum target, GLfloat s, GLfloat t); +GLAPI void APIENTRY glMultiTexCoord2fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord2i (GLenum target, GLint s, GLint t); +GLAPI void APIENTRY glMultiTexCoord2iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord2s (GLenum target, GLshort s, GLshort t); +GLAPI void APIENTRY glMultiTexCoord2sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord3d (GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void APIENTRY glMultiTexCoord3dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord3f (GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void APIENTRY glMultiTexCoord3fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord3i (GLenum target, GLint s, GLint t, GLint r); +GLAPI void APIENTRY glMultiTexCoord3iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord3s (GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void APIENTRY glMultiTexCoord3sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord4d (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void APIENTRY glMultiTexCoord4dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord4f (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void APIENTRY glMultiTexCoord4fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord4i (GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void APIENTRY glMultiTexCoord4iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord4s (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void APIENTRY glMultiTexCoord4sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glLoadTransposeMatrixf (const GLfloat *m); +GLAPI void APIENTRY glLoadTransposeMatrixd (const GLdouble *m); +GLAPI void APIENTRY glMultTransposeMatrixf (const GLfloat *m); +GLAPI void APIENTRY glMultTransposeMatrixd (const GLdouble *m); +#endif +#endif /* GL_VERSION_1_3 */ + +#ifndef GL_VERSION_1_4 +#define GL_VERSION_1_4 1 +#define GL_BLEND_DST_RGB 0x80C8 +#define GL_BLEND_SRC_RGB 0x80C9 +#define GL_BLEND_DST_ALPHA 0x80CA +#define GL_BLEND_SRC_ALPHA 0x80CB +#define GL_POINT_FADE_THRESHOLD_SIZE 0x8128 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_DEPTH_COMPONENT24 0x81A6 +#define GL_DEPTH_COMPONENT32 0x81A7 +#define GL_MIRRORED_REPEAT 0x8370 +#define GL_MAX_TEXTURE_LOD_BIAS 0x84FD +#define GL_TEXTURE_LOD_BIAS 0x8501 +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 +#define GL_TEXTURE_DEPTH_SIZE 0x884A +#define GL_TEXTURE_COMPARE_MODE 0x884C +#define GL_TEXTURE_COMPARE_FUNC 0x884D +#define GL_POINT_SIZE_MIN 0x8126 +#define GL_POINT_SIZE_MAX 0x8127 +#define GL_POINT_DISTANCE_ATTENUATION 0x8129 +#define GL_GENERATE_MIPMAP 0x8191 +#define GL_GENERATE_MIPMAP_HINT 0x8192 +#define GL_FOG_COORDINATE_SOURCE 0x8450 +#define GL_FOG_COORDINATE 0x8451 +#define GL_FRAGMENT_DEPTH 0x8452 +#define GL_CURRENT_FOG_COORDINATE 0x8453 +#define GL_FOG_COORDINATE_ARRAY_TYPE 0x8454 +#define GL_FOG_COORDINATE_ARRAY_STRIDE 0x8455 +#define GL_FOG_COORDINATE_ARRAY_POINTER 0x8456 +#define GL_FOG_COORDINATE_ARRAY 0x8457 +#define GL_COLOR_SUM 0x8458 +#define GL_CURRENT_SECONDARY_COLOR 0x8459 +#define GL_SECONDARY_COLOR_ARRAY_SIZE 0x845A +#define GL_SECONDARY_COLOR_ARRAY_TYPE 0x845B +#define GL_SECONDARY_COLOR_ARRAY_STRIDE 0x845C +#define GL_SECONDARY_COLOR_ARRAY_POINTER 0x845D +#define GL_SECONDARY_COLOR_ARRAY 0x845E +#define GL_TEXTURE_FILTER_CONTROL 0x8500 +#define GL_DEPTH_TEXTURE_MODE 0x884B +#define GL_COMPARE_R_TO_TEXTURE 0x884E +#define GL_BLEND_COLOR 0x8005 +#define GL_BLEND_EQUATION 0x8009 +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_FUNC_ADD 0x8006 +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_FUNC_SUBTRACT 0x800A +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIVPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFOGCOORDFPROC) (GLfloat coord); +typedef void (APIENTRYP PFNGLFOGCOORDFVPROC) (const GLfloat *coord); +typedef void (APIENTRYP PFNGLFOGCOORDDPROC) (GLdouble coord); +typedef void (APIENTRYP PFNGLFOGCOORDDVPROC) (const GLdouble *coord); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTERPROC) (GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BPROC) (GLbyte red, GLbyte green, GLbyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DPROC) (GLdouble red, GLdouble green, GLdouble blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FPROC) (GLfloat red, GLfloat green, GLfloat blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IPROC) (GLint red, GLint green, GLint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SPROC) (GLshort red, GLshort green, GLshort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBPROC) (GLubyte red, GLubyte green, GLubyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVPROC) (const GLubyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIPROC) (GLuint red, GLuint green, GLuint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVPROC) (const GLuint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USPROC) (GLushort red, GLushort green, GLushort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVPROC) (const GLushort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLWINDOWPOS2DPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLBLENDCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +GLAPI void APIENTRY glMultiDrawArrays (GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); +GLAPI void APIENTRY glMultiDrawElements (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount); +GLAPI void APIENTRY glPointParameterf (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfv (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glPointParameteri (GLenum pname, GLint param); +GLAPI void APIENTRY glPointParameteriv (GLenum pname, const GLint *params); +GLAPI void APIENTRY glFogCoordf (GLfloat coord); +GLAPI void APIENTRY glFogCoordfv (const GLfloat *coord); +GLAPI void APIENTRY glFogCoordd (GLdouble coord); +GLAPI void APIENTRY glFogCoorddv (const GLdouble *coord); +GLAPI void APIENTRY glFogCoordPointer (GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glSecondaryColor3b (GLbyte red, GLbyte green, GLbyte blue); +GLAPI void APIENTRY glSecondaryColor3bv (const GLbyte *v); +GLAPI void APIENTRY glSecondaryColor3d (GLdouble red, GLdouble green, GLdouble blue); +GLAPI void APIENTRY glSecondaryColor3dv (const GLdouble *v); +GLAPI void APIENTRY glSecondaryColor3f (GLfloat red, GLfloat green, GLfloat blue); +GLAPI void APIENTRY glSecondaryColor3fv (const GLfloat *v); +GLAPI void APIENTRY glSecondaryColor3i (GLint red, GLint green, GLint blue); +GLAPI void APIENTRY glSecondaryColor3iv (const GLint *v); +GLAPI void APIENTRY glSecondaryColor3s (GLshort red, GLshort green, GLshort blue); +GLAPI void APIENTRY glSecondaryColor3sv (const GLshort *v); +GLAPI void APIENTRY glSecondaryColor3ub (GLubyte red, GLubyte green, GLubyte blue); +GLAPI void APIENTRY glSecondaryColor3ubv (const GLubyte *v); +GLAPI void APIENTRY glSecondaryColor3ui (GLuint red, GLuint green, GLuint blue); +GLAPI void APIENTRY glSecondaryColor3uiv (const GLuint *v); +GLAPI void APIENTRY glSecondaryColor3us (GLushort red, GLushort green, GLushort blue); +GLAPI void APIENTRY glSecondaryColor3usv (const GLushort *v); +GLAPI void APIENTRY glSecondaryColorPointer (GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glWindowPos2d (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dv (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2f (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fv (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2i (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2iv (const GLint *v); +GLAPI void APIENTRY glWindowPos2s (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2sv (const GLshort *v); +GLAPI void APIENTRY glWindowPos3d (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dv (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3f (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fv (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3i (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3iv (const GLint *v); +GLAPI void APIENTRY glWindowPos3s (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3sv (const GLshort *v); +GLAPI void APIENTRY glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI void APIENTRY glBlendEquation (GLenum mode); +#endif +#endif /* GL_VERSION_1_4 */ + +#ifndef GL_VERSION_1_5 +#define GL_VERSION_1_5 1 +typedef khronos_ssize_t GLsizeiptr; +typedef khronos_intptr_t GLintptr; +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 +#define GL_QUERY_COUNTER_BITS 0x8864 +#define GL_CURRENT_QUERY 0x8865 +#define GL_QUERY_RESULT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE 0x8867 +#define GL_ARRAY_BUFFER 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER 0x8893 +#define GL_ARRAY_BUFFER_BINDING 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F +#define GL_READ_ONLY 0x88B8 +#define GL_WRITE_ONLY 0x88B9 +#define GL_READ_WRITE 0x88BA +#define GL_BUFFER_ACCESS 0x88BB +#define GL_BUFFER_MAPPED 0x88BC +#define GL_BUFFER_MAP_POINTER 0x88BD +#define GL_STREAM_DRAW 0x88E0 +#define GL_STREAM_READ 0x88E1 +#define GL_STREAM_COPY 0x88E2 +#define GL_STATIC_DRAW 0x88E4 +#define GL_STATIC_READ 0x88E5 +#define GL_STATIC_COPY 0x88E6 +#define GL_DYNAMIC_DRAW 0x88E8 +#define GL_DYNAMIC_READ 0x88E9 +#define GL_DYNAMIC_COPY 0x88EA +#define GL_SAMPLES_PASSED 0x8914 +#define GL_SRC1_ALPHA 0x8589 +#define GL_VERTEX_ARRAY_BUFFER_BINDING 0x8896 +#define GL_NORMAL_ARRAY_BUFFER_BINDING 0x8897 +#define GL_COLOR_ARRAY_BUFFER_BINDING 0x8898 +#define GL_INDEX_ARRAY_BUFFER_BINDING 0x8899 +#define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING 0x889A +#define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING 0x889B +#define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING 0x889C +#define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING 0x889D +#define GL_WEIGHT_ARRAY_BUFFER_BINDING 0x889E +#define GL_FOG_COORD_SRC 0x8450 +#define GL_FOG_COORD 0x8451 +#define GL_CURRENT_FOG_COORD 0x8453 +#define GL_FOG_COORD_ARRAY_TYPE 0x8454 +#define GL_FOG_COORD_ARRAY_STRIDE 0x8455 +#define GL_FOG_COORD_ARRAY_POINTER 0x8456 +#define GL_FOG_COORD_ARRAY 0x8457 +#define GL_FOG_COORD_ARRAY_BUFFER_BINDING 0x889D +#define GL_SRC0_RGB 0x8580 +#define GL_SRC1_RGB 0x8581 +#define GL_SRC2_RGB 0x8582 +#define GL_SRC0_ALPHA 0x8588 +#define GL_SRC2_ALPHA 0x858A +typedef void (APIENTRYP PFNGLGENQUERIESPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEQUERIESPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISQUERYPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINQUERYPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVPROC) (GLuint id, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer); +typedef void (APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers); +typedef void (APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef GLboolean (APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, void *data); +typedef void *(APIENTRYP PFNGLMAPBUFFERPROC) (GLenum target, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueries (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteQueries (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsQuery (GLuint id); +GLAPI void APIENTRY glBeginQuery (GLenum target, GLuint id); +GLAPI void APIENTRY glEndQuery (GLenum target); +GLAPI void APIENTRY glGetQueryiv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectiv (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectuiv (GLuint id, GLenum pname, GLuint *params); +GLAPI void APIENTRY glBindBuffer (GLenum target, GLuint buffer); +GLAPI void APIENTRY glDeleteBuffers (GLsizei n, const GLuint *buffers); +GLAPI void APIENTRY glGenBuffers (GLsizei n, GLuint *buffers); +GLAPI GLboolean APIENTRY glIsBuffer (GLuint buffer); +GLAPI void APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +GLAPI void APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glGetBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, void *data); +GLAPI void *APIENTRY glMapBuffer (GLenum target, GLenum access); +GLAPI GLboolean APIENTRY glUnmapBuffer (GLenum target); +GLAPI void APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetBufferPointerv (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_VERSION_1_5 */ + +#ifndef GL_VERSION_2_0 +#define GL_VERSION_2_0 1 +typedef char GLchar; +#define GL_BLEND_EQUATION_RGB 0x8009 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 +#define GL_VERTEX_PROGRAM_POINT_SIZE 0x8642 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_STENCIL_BACK_FUNC 0x8800 +#define GL_STENCIL_BACK_FAIL 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 +#define GL_MAX_DRAW_BUFFERS 0x8824 +#define GL_DRAW_BUFFER0 0x8825 +#define GL_DRAW_BUFFER1 0x8826 +#define GL_DRAW_BUFFER2 0x8827 +#define GL_DRAW_BUFFER3 0x8828 +#define GL_DRAW_BUFFER4 0x8829 +#define GL_DRAW_BUFFER5 0x882A +#define GL_DRAW_BUFFER6 0x882B +#define GL_DRAW_BUFFER7 0x882C +#define GL_DRAW_BUFFER8 0x882D +#define GL_DRAW_BUFFER9 0x882E +#define GL_DRAW_BUFFER10 0x882F +#define GL_DRAW_BUFFER11 0x8830 +#define GL_DRAW_BUFFER12 0x8831 +#define GL_DRAW_BUFFER13 0x8832 +#define GL_DRAW_BUFFER14 0x8833 +#define GL_DRAW_BUFFER15 0x8834 +#define GL_BLEND_EQUATION_ALPHA 0x883D +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS 0x8B49 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS 0x8B4A +#define GL_MAX_VARYING_FLOATS 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_SHADER_TYPE 0x8B4F +#define GL_FLOAT_VEC2 0x8B50 +#define GL_FLOAT_VEC3 0x8B51 +#define GL_FLOAT_VEC4 0x8B52 +#define GL_INT_VEC2 0x8B53 +#define GL_INT_VEC3 0x8B54 +#define GL_INT_VEC4 0x8B55 +#define GL_BOOL 0x8B56 +#define GL_BOOL_VEC2 0x8B57 +#define GL_BOOL_VEC3 0x8B58 +#define GL_BOOL_VEC4 0x8B59 +#define GL_FLOAT_MAT2 0x8B5A +#define GL_FLOAT_MAT3 0x8B5B +#define GL_FLOAT_MAT4 0x8B5C +#define GL_SAMPLER_1D 0x8B5D +#define GL_SAMPLER_2D 0x8B5E +#define GL_SAMPLER_3D 0x8B5F +#define GL_SAMPLER_CUBE 0x8B60 +#define GL_SAMPLER_1D_SHADOW 0x8B61 +#define GL_SAMPLER_2D_SHADOW 0x8B62 +#define GL_DELETE_STATUS 0x8B80 +#define GL_COMPILE_STATUS 0x8B81 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT 0x8B8B +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D +#define GL_POINT_SPRITE_COORD_ORIGIN 0x8CA0 +#define GL_LOWER_LEFT 0x8CA1 +#define GL_UPPER_LEFT 0x8CA2 +#define GL_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 +#define GL_VERTEX_PROGRAM_TWO_SIDE 0x8643 +#define GL_POINT_SPRITE 0x8861 +#define GL_COORD_REPLACE 0x8862 +#define GL_MAX_TEXTURE_COORDS 0x8871 +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLDRAWBUFFERSPROC) (GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum face, GLenum func, GLint ref, GLuint mask); +typedef void (APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask); +typedef void (APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name); +typedef void (APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader); +typedef GLuint (APIENTRYP PFNGLCREATEPROGRAMPROC) (void); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROC) (GLenum type); +typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader); +typedef void (APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params); +typedef void (APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMPROC) (GLuint program); +typedef GLboolean (APIENTRYP PFNGLISSHADERPROC) (GLuint shader); +typedef void (APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +typedef void (APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0); +typedef void (APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glDrawBuffers (GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GLAPI void APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask); +GLAPI void APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask); +GLAPI void APIENTRY glAttachShader (GLuint program, GLuint shader); +GLAPI void APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar *name); +GLAPI void APIENTRY glCompileShader (GLuint shader); +GLAPI GLuint APIENTRY glCreateProgram (void); +GLAPI GLuint APIENTRY glCreateShader (GLenum type); +GLAPI void APIENTRY glDeleteProgram (GLuint program); +GLAPI void APIENTRY glDeleteShader (GLuint shader); +GLAPI void APIENTRY glDetachShader (GLuint program, GLuint shader); +GLAPI void APIENTRY glDisableVertexAttribArray (GLuint index); +GLAPI void APIENTRY glEnableVertexAttribArray (GLuint index); +GLAPI void APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +GLAPI GLint APIENTRY glGetAttribLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +GLAPI GLint APIENTRY glGetUniformLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat *params); +GLAPI void APIENTRY glGetUniformiv (GLuint program, GLint location, GLint *params); +GLAPI void APIENTRY glGetVertexAttribdv (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer); +GLAPI GLboolean APIENTRY glIsProgram (GLuint program); +GLAPI GLboolean APIENTRY glIsShader (GLuint shader); +GLAPI void APIENTRY glLinkProgram (GLuint program); +GLAPI void APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +GLAPI void APIENTRY glUseProgram (GLuint program); +GLAPI void APIENTRY glUniform1f (GLint location, GLfloat v0); +GLAPI void APIENTRY glUniform2f (GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glUniform1i (GLint location, GLint v0); +GLAPI void APIENTRY glUniform2i (GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glUniform3i (GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glValidateProgram (GLuint program); +GLAPI void APIENTRY glVertexAttrib1d (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1f (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1s (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2d (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2s (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3d (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3s (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4Nbv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4Niv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4Nsv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4Nub (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4Nubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4Nuiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4Nusv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttrib4bv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4d (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4s (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4usv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +#endif +#endif /* GL_VERSION_2_0 */ + +#ifndef GL_VERSION_2_1 +#define GL_VERSION_2_1 1 +#define GL_PIXEL_PACK_BUFFER 0x88EB +#define GL_PIXEL_UNPACK_BUFFER 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING 0x88EF +#define GL_FLOAT_MAT2x3 0x8B65 +#define GL_FLOAT_MAT2x4 0x8B66 +#define GL_FLOAT_MAT3x2 0x8B67 +#define GL_FLOAT_MAT3x4 0x8B68 +#define GL_FLOAT_MAT4x2 0x8B69 +#define GL_FLOAT_MAT4x3 0x8B6A +#define GL_SRGB 0x8C40 +#define GL_SRGB8 0x8C41 +#define GL_SRGB_ALPHA 0x8C42 +#define GL_SRGB8_ALPHA8 0x8C43 +#define GL_COMPRESSED_SRGB 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA 0x8C49 +#define GL_CURRENT_RASTER_SECONDARY_COLOR 0x845F +#define GL_SLUMINANCE_ALPHA 0x8C44 +#define GL_SLUMINANCE8_ALPHA8 0x8C45 +#define GL_SLUMINANCE 0x8C46 +#define GL_SLUMINANCE8 0x8C47 +#define GL_COMPRESSED_SLUMINANCE 0x8C4A +#define GL_COMPRESSED_SLUMINANCE_ALPHA 0x8C4B +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniformMatrix2x3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3x2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix2x4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4x2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3x4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4x3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_VERSION_2_1 */ + +#ifndef GL_VERSION_3_0 +#define GL_VERSION_3_0 1 +typedef khronos_uint16_t GLhalf; +#define GL_COMPARE_REF_TO_TEXTURE 0x884E +#define GL_CLIP_DISTANCE0 0x3000 +#define GL_CLIP_DISTANCE1 0x3001 +#define GL_CLIP_DISTANCE2 0x3002 +#define GL_CLIP_DISTANCE3 0x3003 +#define GL_CLIP_DISTANCE4 0x3004 +#define GL_CLIP_DISTANCE5 0x3005 +#define GL_CLIP_DISTANCE6 0x3006 +#define GL_CLIP_DISTANCE7 0x3007 +#define GL_MAX_CLIP_DISTANCES 0x0D32 +#define GL_MAJOR_VERSION 0x821B +#define GL_MINOR_VERSION 0x821C +#define GL_NUM_EXTENSIONS 0x821D +#define GL_CONTEXT_FLAGS 0x821E +#define GL_COMPRESSED_RED 0x8225 +#define GL_COMPRESSED_RG 0x8226 +#define GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT 0x00000001 +#define GL_RGBA32F 0x8814 +#define GL_RGB32F 0x8815 +#define GL_RGBA16F 0x881A +#define GL_RGB16F 0x881B +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER 0x88FD +#define GL_MAX_ARRAY_TEXTURE_LAYERS 0x88FF +#define GL_MIN_PROGRAM_TEXEL_OFFSET 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET 0x8905 +#define GL_CLAMP_READ_COLOR 0x891C +#define GL_FIXED_ONLY 0x891D +#define GL_MAX_VARYING_COMPONENTS 0x8B4B +#define GL_TEXTURE_1D_ARRAY 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY 0x8C19 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY 0x8C1D +#define GL_R11F_G11F_B10F 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV 0x8C3B +#define GL_RGB9_E5 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV 0x8C3E +#define GL_TEXTURE_SHARED_SIZE 0x8C3F +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH 0x8C76 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE 0x8C85 +#define GL_PRIMITIVES_GENERATED 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN 0x8C88 +#define GL_RASTERIZER_DISCARD 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS 0x8C8B +#define GL_INTERLEAVED_ATTRIBS 0x8C8C +#define GL_SEPARATE_ATTRIBS 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING 0x8C8F +#define GL_RGBA32UI 0x8D70 +#define GL_RGB32UI 0x8D71 +#define GL_RGBA16UI 0x8D76 +#define GL_RGB16UI 0x8D77 +#define GL_RGBA8UI 0x8D7C +#define GL_RGB8UI 0x8D7D +#define GL_RGBA32I 0x8D82 +#define GL_RGB32I 0x8D83 +#define GL_RGBA16I 0x8D88 +#define GL_RGB16I 0x8D89 +#define GL_RGBA8I 0x8D8E +#define GL_RGB8I 0x8D8F +#define GL_RED_INTEGER 0x8D94 +#define GL_GREEN_INTEGER 0x8D95 +#define GL_BLUE_INTEGER 0x8D96 +#define GL_RGB_INTEGER 0x8D98 +#define GL_RGBA_INTEGER 0x8D99 +#define GL_BGR_INTEGER 0x8D9A +#define GL_BGRA_INTEGER 0x8D9B +#define GL_SAMPLER_1D_ARRAY 0x8DC0 +#define GL_SAMPLER_2D_ARRAY 0x8DC1 +#define GL_SAMPLER_1D_ARRAY_SHADOW 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW 0x8DC5 +#define GL_UNSIGNED_INT_VEC2 0x8DC6 +#define GL_UNSIGNED_INT_VEC3 0x8DC7 +#define GL_UNSIGNED_INT_VEC4 0x8DC8 +#define GL_INT_SAMPLER_1D 0x8DC9 +#define GL_INT_SAMPLER_2D 0x8DCA +#define GL_INT_SAMPLER_3D 0x8DCB +#define GL_INT_SAMPLER_CUBE 0x8DCC +#define GL_INT_SAMPLER_1D_ARRAY 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY 0x8DCF +#define GL_UNSIGNED_INT_SAMPLER_1D 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY 0x8DD7 +#define GL_QUERY_WAIT 0x8E13 +#define GL_QUERY_NO_WAIT 0x8E14 +#define GL_QUERY_BY_REGION_WAIT 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT 0x8E16 +#define GL_BUFFER_ACCESS_FLAGS 0x911F +#define GL_BUFFER_MAP_LENGTH 0x9120 +#define GL_BUFFER_MAP_OFFSET 0x9121 +#define GL_DEPTH_COMPONENT32F 0x8CAC +#define GL_DEPTH32F_STENCIL8 0x8CAD +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV 0x8DAD +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING 0x8210 +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE 0x8211 +#define GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE 0x8212 +#define GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE 0x8213 +#define GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE 0x8214 +#define GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE 0x8215 +#define GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE 0x8216 +#define GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE 0x8217 +#define GL_FRAMEBUFFER_DEFAULT 0x8218 +#define GL_FRAMEBUFFER_UNDEFINED 0x8219 +#define GL_DEPTH_STENCIL_ATTACHMENT 0x821A +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 +#define GL_DEPTH_STENCIL 0x84F9 +#define GL_UNSIGNED_INT_24_8 0x84FA +#define GL_DEPTH24_STENCIL8 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE 0x88F1 +#define GL_TEXTURE_RED_TYPE 0x8C10 +#define GL_TEXTURE_GREEN_TYPE 0x8C11 +#define GL_TEXTURE_BLUE_TYPE 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE 0x8C13 +#define GL_TEXTURE_DEPTH_TYPE 0x8C16 +#define GL_UNSIGNED_NORMALIZED 0x8C17 +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_DRAW_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_READ_FRAMEBUFFER 0x8CA8 +#define GL_DRAW_FRAMEBUFFER 0x8CA9 +#define GL_READ_FRAMEBUFFER_BINDING 0x8CAA +#define GL_RENDERBUFFER_SAMPLES 0x8CAB +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS 0x8CDF +#define GL_COLOR_ATTACHMENT0 0x8CE0 +#define GL_COLOR_ATTACHMENT1 0x8CE1 +#define GL_COLOR_ATTACHMENT2 0x8CE2 +#define GL_COLOR_ATTACHMENT3 0x8CE3 +#define GL_COLOR_ATTACHMENT4 0x8CE4 +#define GL_COLOR_ATTACHMENT5 0x8CE5 +#define GL_COLOR_ATTACHMENT6 0x8CE6 +#define GL_COLOR_ATTACHMENT7 0x8CE7 +#define GL_COLOR_ATTACHMENT8 0x8CE8 +#define GL_COLOR_ATTACHMENT9 0x8CE9 +#define GL_COLOR_ATTACHMENT10 0x8CEA +#define GL_COLOR_ATTACHMENT11 0x8CEB +#define GL_COLOR_ATTACHMENT12 0x8CEC +#define GL_COLOR_ATTACHMENT13 0x8CED +#define GL_COLOR_ATTACHMENT14 0x8CEE +#define GL_COLOR_ATTACHMENT15 0x8CEF +#define GL_COLOR_ATTACHMENT16 0x8CF0 +#define GL_COLOR_ATTACHMENT17 0x8CF1 +#define GL_COLOR_ATTACHMENT18 0x8CF2 +#define GL_COLOR_ATTACHMENT19 0x8CF3 +#define GL_COLOR_ATTACHMENT20 0x8CF4 +#define GL_COLOR_ATTACHMENT21 0x8CF5 +#define GL_COLOR_ATTACHMENT22 0x8CF6 +#define GL_COLOR_ATTACHMENT23 0x8CF7 +#define GL_COLOR_ATTACHMENT24 0x8CF8 +#define GL_COLOR_ATTACHMENT25 0x8CF9 +#define GL_COLOR_ATTACHMENT26 0x8CFA +#define GL_COLOR_ATTACHMENT27 0x8CFB +#define GL_COLOR_ATTACHMENT28 0x8CFC +#define GL_COLOR_ATTACHMENT29 0x8CFD +#define GL_COLOR_ATTACHMENT30 0x8CFE +#define GL_COLOR_ATTACHMENT31 0x8CFF +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#define GL_STENCIL_INDEX1 0x8D46 +#define GL_STENCIL_INDEX4 0x8D47 +#define GL_STENCIL_INDEX8 0x8D48 +#define GL_STENCIL_INDEX16 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE 0x8D56 +#define GL_MAX_SAMPLES 0x8D57 +#define GL_INDEX 0x8222 +#define GL_TEXTURE_LUMINANCE_TYPE 0x8C14 +#define GL_TEXTURE_INTENSITY_TYPE 0x8C15 +#define GL_FRAMEBUFFER_SRGB 0x8DB9 +#define GL_HALF_FLOAT 0x140B +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT 0x0020 +#define GL_COMPRESSED_RED_RGTC1 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1 0x8DBC +#define GL_COMPRESSED_RG_RGTC2 0x8DBD +#define GL_COMPRESSED_SIGNED_RG_RGTC2 0x8DBE +#define GL_RG 0x8227 +#define GL_RG_INTEGER 0x8228 +#define GL_R8 0x8229 +#define GL_R16 0x822A +#define GL_RG8 0x822B +#define GL_RG16 0x822C +#define GL_R16F 0x822D +#define GL_R32F 0x822E +#define GL_RG16F 0x822F +#define GL_RG32F 0x8230 +#define GL_R8I 0x8231 +#define GL_R8UI 0x8232 +#define GL_R16I 0x8233 +#define GL_R16UI 0x8234 +#define GL_R32I 0x8235 +#define GL_R32UI 0x8236 +#define GL_RG8I 0x8237 +#define GL_RG8UI 0x8238 +#define GL_RG16I 0x8239 +#define GL_RG16UI 0x823A +#define GL_RG32I 0x823B +#define GL_RG32UI 0x823C +#define GL_VERTEX_ARRAY_BINDING 0x85B5 +#define GL_CLAMP_VERTEX_COLOR 0x891A +#define GL_CLAMP_FRAGMENT_COLOR 0x891B +#define GL_ALPHA_INTEGER 0x8D97 +typedef void (APIENTRYP PFNGLCOLORMASKIPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef void (APIENTRYP PFNGLGETBOOLEANI_VPROC) (GLenum target, GLuint index, GLboolean *data); +typedef void (APIENTRYP PFNGLGETINTEGERI_VPROC) (GLenum target, GLuint index, GLint *data); +typedef void (APIENTRYP PFNGLENABLEIPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEIPROC) (GLenum target, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISENABLEDIPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGEPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFERBASEPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSPROC) (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLCLAMPCOLORPROC) (GLenum target, GLenum clamp); +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERPROC) (GLuint id, GLenum mode); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERPROC) (void); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVPROC) (GLuint index, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IPROC) (GLuint index, GLint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IPROC) (GLuint index, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IPROC) (GLuint index, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIPROC) (GLuint index, GLuint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIPROC) (GLuint index, GLuint x, GLuint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLGETUNIFORMUIVPROC) (GLuint program, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORM1UIPROC) (GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLUNIFORM2UIPROC) (GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLUNIFORM3UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLUNIFORM4UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLUNIFORM1UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM2UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM3UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM4UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLCLEARBUFFERIVPROC) (GLenum buffer, GLint drawbuffer, const GLint *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERUIVPROC) (GLenum buffer, GLint drawbuffer, const GLuint *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERFVPROC) (GLenum buffer, GLint drawbuffer, const GLfloat *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERFIPROC) (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +typedef const GLubyte *(APIENTRYP PFNGLGETSTRINGIPROC) (GLenum name, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFERPROC) (GLuint renderbuffer); +typedef void (APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLGENRENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFERPROC) (GLuint framebuffer); +typedef void (APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer); +typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATEMIPMAPPROC) (GLenum target); +typedef void (APIENTRYP PFNGLBLITFRAMEBUFFERPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void *(APIENTRYP PFNGLMAPBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLBINDVERTEXARRAYPROC) (GLuint array); +typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSPROC) (GLsizei n, const GLuint *arrays); +typedef void (APIENTRYP PFNGLGENVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYPROC) (GLuint array); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorMaski (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GLAPI void APIENTRY glGetBooleani_v (GLenum target, GLuint index, GLboolean *data); +GLAPI void APIENTRY glGetIntegeri_v (GLenum target, GLuint index, GLint *data); +GLAPI void APIENTRY glEnablei (GLenum target, GLuint index); +GLAPI void APIENTRY glDisablei (GLenum target, GLuint index); +GLAPI GLboolean APIENTRY glIsEnabledi (GLenum target, GLuint index); +GLAPI void APIENTRY glBeginTransformFeedback (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedback (void); +GLAPI void APIENTRY glBindBufferRange (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferBase (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryings (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +GLAPI void APIENTRY glGetTransformFeedbackVarying (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glClampColor (GLenum target, GLenum clamp); +GLAPI void APIENTRY glBeginConditionalRender (GLuint id, GLenum mode); +GLAPI void APIENTRY glEndConditionalRender (void); +GLAPI void APIENTRY glVertexAttribIPointer (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribIiv (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribIuiv (GLuint index, GLenum pname, GLuint *params); +GLAPI void APIENTRY glVertexAttribI1i (GLuint index, GLint x); +GLAPI void APIENTRY glVertexAttribI2i (GLuint index, GLint x, GLint y); +GLAPI void APIENTRY glVertexAttribI3i (GLuint index, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexAttribI4i (GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexAttribI1ui (GLuint index, GLuint x); +GLAPI void APIENTRY glVertexAttribI2ui (GLuint index, GLuint x, GLuint y); +GLAPI void APIENTRY glVertexAttribI3ui (GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI void APIENTRY glVertexAttribI4ui (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glVertexAttribI1iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI2iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI3iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI4iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI1uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI2uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI3uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4bv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttribI4sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttribI4ubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribI4usv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glGetUniformuiv (GLuint program, GLint location, GLuint *params); +GLAPI void APIENTRY glBindFragDataLocation (GLuint program, GLuint color, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glUniform1ui (GLint location, GLuint v0); +GLAPI void APIENTRY glUniform2ui (GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glUniform3ui (GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glUniform4ui (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glUniform1uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform2uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform3uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform4uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glTexParameterIiv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTexParameterIuiv (GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTexParameterIiv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTexParameterIuiv (GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glClearBufferiv (GLenum buffer, GLint drawbuffer, const GLint *value); +GLAPI void APIENTRY glClearBufferuiv (GLenum buffer, GLint drawbuffer, const GLuint *value); +GLAPI void APIENTRY glClearBufferfv (GLenum buffer, GLint drawbuffer, const GLfloat *value); +GLAPI void APIENTRY glClearBufferfi (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +GLAPI const GLubyte *APIENTRY glGetStringi (GLenum name, GLuint index); +GLAPI GLboolean APIENTRY glIsRenderbuffer (GLuint renderbuffer); +GLAPI void APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint *renderbuffers); +GLAPI void APIENTRY glGenRenderbuffers (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI GLboolean APIENTRY glIsFramebuffer (GLuint framebuffer); +GLAPI void APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer); +GLAPI void APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); +GLAPI void APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers); +GLAPI GLenum APIENTRY glCheckFramebufferStatus (GLenum target); +GLAPI void APIENTRY glFramebufferTexture1D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture3D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateMipmap (GLenum target); +GLAPI void APIENTRY glBlitFramebuffer (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI void APIENTRY glRenderbufferStorageMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void *APIENTRY glMapBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI void APIENTRY glFlushMappedBufferRange (GLenum target, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glBindVertexArray (GLuint array); +GLAPI void APIENTRY glDeleteVertexArrays (GLsizei n, const GLuint *arrays); +GLAPI void APIENTRY glGenVertexArrays (GLsizei n, GLuint *arrays); +GLAPI GLboolean APIENTRY glIsVertexArray (GLuint array); +#endif +#endif /* GL_VERSION_3_0 */ + +#ifndef GL_VERSION_3_1 +#define GL_VERSION_3_1 1 +#define GL_SAMPLER_2D_RECT 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW 0x8B64 +#define GL_SAMPLER_BUFFER 0x8DC2 +#define GL_INT_SAMPLER_2D_RECT 0x8DCD +#define GL_INT_SAMPLER_BUFFER 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER 0x8DD8 +#define GL_TEXTURE_BUFFER 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING 0x8C2D +#define GL_TEXTURE_RECTANGLE 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE 0x84F8 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGB8_SNORM 0x8F96 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM 0x8F98 +#define GL_RG16_SNORM 0x8F99 +#define GL_RGB16_SNORM 0x8F9A +#define GL_RGBA16_SNORM 0x8F9B +#define GL_SIGNED_NORMALIZED 0x8F9C +#define GL_PRIMITIVE_RESTART 0x8F9D +#define GL_PRIMITIVE_RESTART_INDEX 0x8F9E +#define GL_COPY_READ_BUFFER 0x8F36 +#define GL_COPY_WRITE_BUFFER 0x8F37 +#define GL_UNIFORM_BUFFER 0x8A11 +#define GL_UNIFORM_BUFFER_BINDING 0x8A28 +#define GL_UNIFORM_BUFFER_START 0x8A29 +#define GL_UNIFORM_BUFFER_SIZE 0x8A2A +#define GL_MAX_VERTEX_UNIFORM_BLOCKS 0x8A2B +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS 0x8A2C +#define GL_MAX_FRAGMENT_UNIFORM_BLOCKS 0x8A2D +#define GL_MAX_COMBINED_UNIFORM_BLOCKS 0x8A2E +#define GL_MAX_UNIFORM_BUFFER_BINDINGS 0x8A2F +#define GL_MAX_UNIFORM_BLOCK_SIZE 0x8A30 +#define GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS 0x8A31 +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS 0x8A32 +#define GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS 0x8A33 +#define GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT 0x8A34 +#define GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH 0x8A35 +#define GL_ACTIVE_UNIFORM_BLOCKS 0x8A36 +#define GL_UNIFORM_TYPE 0x8A37 +#define GL_UNIFORM_SIZE 0x8A38 +#define GL_UNIFORM_NAME_LENGTH 0x8A39 +#define GL_UNIFORM_BLOCK_INDEX 0x8A3A +#define GL_UNIFORM_OFFSET 0x8A3B +#define GL_UNIFORM_ARRAY_STRIDE 0x8A3C +#define GL_UNIFORM_MATRIX_STRIDE 0x8A3D +#define GL_UNIFORM_IS_ROW_MAJOR 0x8A3E +#define GL_UNIFORM_BLOCK_BINDING 0x8A3F +#define GL_UNIFORM_BLOCK_DATA_SIZE 0x8A40 +#define GL_UNIFORM_BLOCK_NAME_LENGTH 0x8A41 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS 0x8A42 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES 0x8A43 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER 0x8A44 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER 0x8A45 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER 0x8A46 +#define GL_INVALID_INDEX 0xFFFFFFFFu +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount); +typedef void (APIENTRYP PFNGLTEXBUFFERPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXPROC) (GLuint index); +typedef void (APIENTRYP PFNGLCOPYBUFFERSUBDATAPROC) (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLGETUNIFORMINDICESPROC) (GLuint program, GLsizei uniformCount, const GLchar *const*uniformNames, GLuint *uniformIndices); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMSIVPROC) (GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMNAMEPROC) (GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); +typedef GLuint (APIENTRYP PFNGLGETUNIFORMBLOCKINDEXPROC) (GLuint program, const GLchar *uniformBlockName); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKIVPROC) (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC) (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); +typedef void (APIENTRYP PFNGLUNIFORMBLOCKBINDINGPROC) (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstanced (GLenum mode, GLint first, GLsizei count, GLsizei instancecount); +GLAPI void APIENTRY glDrawElementsInstanced (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount); +GLAPI void APIENTRY glTexBuffer (GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glPrimitiveRestartIndex (GLuint index); +GLAPI void APIENTRY glCopyBufferSubData (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glGetUniformIndices (GLuint program, GLsizei uniformCount, const GLchar *const*uniformNames, GLuint *uniformIndices); +GLAPI void APIENTRY glGetActiveUniformsiv (GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetActiveUniformName (GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); +GLAPI GLuint APIENTRY glGetUniformBlockIndex (GLuint program, const GLchar *uniformBlockName); +GLAPI void APIENTRY glGetActiveUniformBlockiv (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetActiveUniformBlockName (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); +GLAPI void APIENTRY glUniformBlockBinding (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); +#endif +#endif /* GL_VERSION_3_1 */ + +#ifndef GL_VERSION_3_2 +#define GL_VERSION_3_2 1 +typedef struct __GLsync *GLsync; +typedef khronos_uint64_t GLuint64; +typedef khronos_int64_t GLint64; +#define GL_CONTEXT_CORE_PROFILE_BIT 0x00000001 +#define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x00000002 +#define GL_LINES_ADJACENCY 0x000A +#define GL_LINE_STRIP_ADJACENCY 0x000B +#define GL_TRIANGLES_ADJACENCY 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY 0x000D +#define GL_PROGRAM_POINT_SIZE 0x8642 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS 0x8DA8 +#define GL_GEOMETRY_SHADER 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT 0x8916 +#define GL_GEOMETRY_INPUT_TYPE 0x8917 +#define GL_GEOMETRY_OUTPUT_TYPE 0x8918 +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS 0x8DE1 +#define GL_MAX_VERTEX_OUTPUT_COMPONENTS 0x9122 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS 0x9124 +#define GL_MAX_FRAGMENT_INPUT_COMPONENTS 0x9125 +#define GL_CONTEXT_PROFILE_MASK 0x9126 +#define GL_DEPTH_CLAMP 0x864F +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION 0x8E4D +#define GL_LAST_VERTEX_CONVENTION 0x8E4E +#define GL_PROVOKING_VERTEX 0x8E4F +#define GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F +#define GL_MAX_SERVER_WAIT_TIMEOUT 0x9111 +#define GL_OBJECT_TYPE 0x9112 +#define GL_SYNC_CONDITION 0x9113 +#define GL_SYNC_STATUS 0x9114 +#define GL_SYNC_FLAGS 0x9115 +#define GL_SYNC_FENCE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE 0x9117 +#define GL_UNSIGNALED 0x9118 +#define GL_SIGNALED 0x9119 +#define GL_ALREADY_SIGNALED 0x911A +#define GL_TIMEOUT_EXPIRED 0x911B +#define GL_CONDITION_SATISFIED 0x911C +#define GL_WAIT_FAILED 0x911D +#define GL_TIMEOUT_IGNORED 0xFFFFFFFFFFFFFFFFull +#define GL_SYNC_FLUSH_COMMANDS_BIT 0x00000001 +#define GL_SAMPLE_POSITION 0x8E50 +#define GL_SAMPLE_MASK 0x8E51 +#define GL_SAMPLE_MASK_VALUE 0x8E52 +#define GL_MAX_SAMPLE_MASK_WORDS 0x8E59 +#define GL_TEXTURE_2D_MULTISAMPLE 0x9100 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE 0x9101 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9103 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE 0x9104 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY 0x9105 +#define GL_TEXTURE_SAMPLES 0x9106 +#define GL_TEXTURE_FIXED_SAMPLE_LOCATIONS 0x9107 +#define GL_SAMPLER_2D_MULTISAMPLE 0x9108 +#define GL_INT_SAMPLER_2D_MULTISAMPLE 0x9109 +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE 0x910A +#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910B +#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910C +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910D +#define GL_MAX_COLOR_TEXTURE_SAMPLES 0x910E +#define GL_MAX_DEPTH_TEXTURE_SAMPLES 0x910F +#define GL_MAX_INTEGER_SAMPLES 0x9110 +typedef void (APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +typedef void (APIENTRYP PFNGLPROVOKINGVERTEXPROC) (GLenum mode); +typedef GLsync (APIENTRYP PFNGLFENCESYNCPROC) (GLenum condition, GLbitfield flags); +typedef GLboolean (APIENTRYP PFNGLISSYNCPROC) (GLsync sync); +typedef void (APIENTRYP PFNGLDELETESYNCPROC) (GLsync sync); +typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (APIENTRYP PFNGLWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (APIENTRYP PFNGLGETINTEGER64VPROC) (GLenum pname, GLint64 *data); +typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC) (GLenum target, GLuint index, GLint64 *data); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC) (GLenum target, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVPROC) (GLenum pname, GLuint index, GLfloat *val); +typedef void (APIENTRYP PFNGLSAMPLEMASKIPROC) (GLuint maskNumber, GLbitfield mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawElementsBaseVertex (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GLAPI void APIENTRY glDrawRangeElementsBaseVertex (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GLAPI void APIENTRY glDrawElementsInstancedBaseVertex (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +GLAPI void APIENTRY glMultiDrawElementsBaseVertex (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +GLAPI void APIENTRY glProvokingVertex (GLenum mode); +GLAPI GLsync APIENTRY glFenceSync (GLenum condition, GLbitfield flags); +GLAPI GLboolean APIENTRY glIsSync (GLsync sync); +GLAPI void APIENTRY glDeleteSync (GLsync sync); +GLAPI GLenum APIENTRY glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI void APIENTRY glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI void APIENTRY glGetInteger64v (GLenum pname, GLint64 *data); +GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +GLAPI void APIENTRY glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data); +GLAPI void APIENTRY glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glFramebufferTexture (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glTexImage2DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTexImage3DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glGetMultisamplefv (GLenum pname, GLuint index, GLfloat *val); +GLAPI void APIENTRY glSampleMaski (GLuint maskNumber, GLbitfield mask); +#endif +#endif /* GL_VERSION_3_2 */ + +#ifndef GL_VERSION_3_3 +#define GL_VERSION_3_3 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR 0x88FE +#define GL_SRC1_COLOR 0x88F9 +#define GL_ONE_MINUS_SRC1_COLOR 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA 0x88FB +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS 0x88FC +#define GL_ANY_SAMPLES_PASSED 0x8C2F +#define GL_SAMPLER_BINDING 0x8919 +#define GL_RGB10_A2UI 0x906F +#define GL_TEXTURE_SWIZZLE_R 0x8E42 +#define GL_TEXTURE_SWIZZLE_G 0x8E43 +#define GL_TEXTURE_SWIZZLE_B 0x8E44 +#define GL_TEXTURE_SWIZZLE_A 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA 0x8E46 +#define GL_TIME_ELAPSED 0x88BF +#define GL_TIMESTAMP 0x8E28 +#define GL_INT_2_10_10_10_REV 0x8D9F +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDPROC) (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATAINDEXPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGENSAMPLERSPROC) (GLsizei count, GLuint *samplers); +typedef void (APIENTRYP PFNGLDELETESAMPLERSPROC) (GLsizei count, const GLuint *samplers); +typedef GLboolean (APIENTRYP PFNGLISSAMPLERPROC) (GLuint sampler); +typedef void (APIENTRYP PFNGLBINDSAMPLERPROC) (GLuint unit, GLuint sampler); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIPROC) (GLuint sampler, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFPROC) (GLuint sampler, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLQUERYCOUNTERPROC) (GLuint id, GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VPROC) (GLuint id, GLenum pname, GLuint64 *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORPROC) (GLuint index, GLuint divisor); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP2UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP2UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP3UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP3UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP4UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP4UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLTEXCOORDP1UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP1UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP2UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP2UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP3UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP3UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP4UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP4UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLNORMALP3UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLNORMALP3UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLCOLORP3UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLCOLORP3UIVPROC) (GLenum type, const GLuint *color); +typedef void (APIENTRYP PFNGLCOLORP4UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLCOLORP4UIVPROC) (GLenum type, const GLuint *color); +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIVPROC) (GLenum type, const GLuint *color); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindFragDataLocationIndexed (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataIndex (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGenSamplers (GLsizei count, GLuint *samplers); +GLAPI void APIENTRY glDeleteSamplers (GLsizei count, const GLuint *samplers); +GLAPI GLboolean APIENTRY glIsSampler (GLuint sampler); +GLAPI void APIENTRY glBindSampler (GLuint unit, GLuint sampler); +GLAPI void APIENTRY glSamplerParameteri (GLuint sampler, GLenum pname, GLint param); +GLAPI void APIENTRY glSamplerParameteriv (GLuint sampler, GLenum pname, const GLint *param); +GLAPI void APIENTRY glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param); +GLAPI void APIENTRY glSamplerParameterfv (GLuint sampler, GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glSamplerParameterIiv (GLuint sampler, GLenum pname, const GLint *param); +GLAPI void APIENTRY glSamplerParameterIuiv (GLuint sampler, GLenum pname, const GLuint *param); +GLAPI void APIENTRY glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSamplerParameterIiv (GLuint sampler, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetSamplerParameterIuiv (GLuint sampler, GLenum pname, GLuint *params); +GLAPI void APIENTRY glQueryCounter (GLuint id, GLenum target); +GLAPI void APIENTRY glGetQueryObjecti64v (GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetQueryObjectui64v (GLuint id, GLenum pname, GLuint64 *params); +GLAPI void APIENTRY glVertexAttribDivisor (GLuint index, GLuint divisor); +GLAPI void APIENTRY glVertexAttribP1ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP1uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP2ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP2uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP3ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP3uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP4ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP4uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexP2ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP2uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glVertexP3ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP3uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glVertexP4ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP4uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glTexCoordP1ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP1uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP2ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP2uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP3ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP3uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP4ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP4uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP1ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP1uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP2ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP2uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP3ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP3uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP4ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP4uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glNormalP3ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glNormalP3uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glColorP3ui (GLenum type, GLuint color); +GLAPI void APIENTRY glColorP3uiv (GLenum type, const GLuint *color); +GLAPI void APIENTRY glColorP4ui (GLenum type, GLuint color); +GLAPI void APIENTRY glColorP4uiv (GLenum type, const GLuint *color); +GLAPI void APIENTRY glSecondaryColorP3ui (GLenum type, GLuint color); +GLAPI void APIENTRY glSecondaryColorP3uiv (GLenum type, const GLuint *color); +#endif +#endif /* GL_VERSION_3_3 */ + +#ifndef GL_VERSION_4_0 +#define GL_VERSION_4_0 1 +#define GL_SAMPLE_SHADING 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE 0x8C37 +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5F +#define GL_TEXTURE_CUBE_MAP_ARRAY 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY 0x900A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY 0x900B +#define GL_SAMPLER_CUBE_MAP_ARRAY 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY 0x900F +#define GL_DRAW_INDIRECT_BUFFER 0x8F3F +#define GL_DRAW_INDIRECT_BUFFER_BINDING 0x8F43 +#define GL_GEOMETRY_SHADER_INVOCATIONS 0x887F +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS 0x8E5A +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET 0x8E5C +#define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS 0x8E5D +#define GL_MAX_VERTEX_STREAMS 0x8E71 +#define GL_DOUBLE_VEC2 0x8FFC +#define GL_DOUBLE_VEC3 0x8FFD +#define GL_DOUBLE_VEC4 0x8FFE +#define GL_DOUBLE_MAT2 0x8F46 +#define GL_DOUBLE_MAT3 0x8F47 +#define GL_DOUBLE_MAT4 0x8F48 +#define GL_DOUBLE_MAT2x3 0x8F49 +#define GL_DOUBLE_MAT2x4 0x8F4A +#define GL_DOUBLE_MAT3x2 0x8F4B +#define GL_DOUBLE_MAT3x4 0x8F4C +#define GL_DOUBLE_MAT4x2 0x8F4D +#define GL_DOUBLE_MAT4x3 0x8F4E +#define GL_ACTIVE_SUBROUTINES 0x8DE5 +#define GL_ACTIVE_SUBROUTINE_UNIFORMS 0x8DE6 +#define GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS 0x8E47 +#define GL_ACTIVE_SUBROUTINE_MAX_LENGTH 0x8E48 +#define GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH 0x8E49 +#define GL_MAX_SUBROUTINES 0x8DE7 +#define GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS 0x8DE8 +#define GL_NUM_COMPATIBLE_SUBROUTINES 0x8E4A +#define GL_COMPATIBLE_SUBROUTINES 0x8E4B +#define GL_PATCHES 0x000E +#define GL_PATCH_VERTICES 0x8E72 +#define GL_PATCH_DEFAULT_INNER_LEVEL 0x8E73 +#define GL_PATCH_DEFAULT_OUTER_LEVEL 0x8E74 +#define GL_TESS_CONTROL_OUTPUT_VERTICES 0x8E75 +#define GL_TESS_GEN_MODE 0x8E76 +#define GL_TESS_GEN_SPACING 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER 0x8E78 +#define GL_TESS_GEN_POINT_MODE 0x8E79 +#define GL_ISOLINES 0x8E7A +#define GL_FRACTIONAL_ODD 0x8E7B +#define GL_FRACTIONAL_EVEN 0x8E7C +#define GL_MAX_PATCH_VERTICES 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E1F +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER 0x84F0 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER 0x84F1 +#define GL_TESS_EVALUATION_SHADER 0x8E87 +#define GL_TESS_CONTROL_SHADER 0x8E88 +#define GL_TRANSFORM_FEEDBACK 0x8E22 +#define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED 0x8E23 +#define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE 0x8E24 +#define GL_TRANSFORM_FEEDBACK_BINDING 0x8E25 +#define GL_MAX_TRANSFORM_FEEDBACK_BUFFERS 0x8E70 +typedef void (APIENTRYP PFNGLMINSAMPLESHADINGPROC) (GLfloat value); +typedef void (APIENTRYP PFNGLBLENDEQUATIONIPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLBLENDFUNCIPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (APIENTRYP PFNGLDRAWARRAYSINDIRECTPROC) (GLenum mode, const void *indirect); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const void *indirect); +typedef void (APIENTRYP PFNGLUNIFORM1DPROC) (GLint location, GLdouble x); +typedef void (APIENTRYP PFNGLUNIFORM2DPROC) (GLint location, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLUNIFORM3DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLUNIFORM4DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLUNIFORM1DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM2DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM3DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM4DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLGETUNIFORMDVPROC) (GLuint program, GLint location, GLdouble *params); +typedef GLint (APIENTRYP PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC) (GLuint program, GLenum shadertype, const GLchar *name); +typedef GLuint (APIENTRYP PFNGLGETSUBROUTINEINDEXPROC) (GLuint program, GLenum shadertype, const GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC) (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINENAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORMSUBROUTINESUIVPROC) (GLenum shadertype, GLsizei count, const GLuint *indices); +typedef void (APIENTRYP PFNGLGETUNIFORMSUBROUTINEUIVPROC) (GLenum shadertype, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTAGEIVPROC) (GLuint program, GLenum shadertype, GLenum pname, GLint *values); +typedef void (APIENTRYP PFNGLPATCHPARAMETERIPROC) (GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLPATCHPARAMETERFVPROC) (GLenum pname, const GLfloat *values); +typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSPROC) (GLsizei n, const GLuint *ids); +typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKPROC) (GLuint id); +typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKPROC) (GLenum mode, GLuint id); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC) (GLenum mode, GLuint id, GLuint stream); +typedef void (APIENTRYP PFNGLBEGINQUERYINDEXEDPROC) (GLenum target, GLuint index, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYINDEXEDPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLGETQUERYINDEXEDIVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMinSampleShading (GLfloat value); +GLAPI void APIENTRY glBlendEquationi (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparatei (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glBlendFunci (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparatei (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GLAPI void APIENTRY glDrawArraysIndirect (GLenum mode, const void *indirect); +GLAPI void APIENTRY glDrawElementsIndirect (GLenum mode, GLenum type, const void *indirect); +GLAPI void APIENTRY glUniform1d (GLint location, GLdouble x); +GLAPI void APIENTRY glUniform2d (GLint location, GLdouble x, GLdouble y); +GLAPI void APIENTRY glUniform3d (GLint location, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glUniform4d (GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glUniform1dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform2dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform3dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform4dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2x3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2x4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3x2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3x4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4x2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4x3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glGetUniformdv (GLuint program, GLint location, GLdouble *params); +GLAPI GLint APIENTRY glGetSubroutineUniformLocation (GLuint program, GLenum shadertype, const GLchar *name); +GLAPI GLuint APIENTRY glGetSubroutineIndex (GLuint program, GLenum shadertype, const GLchar *name); +GLAPI void APIENTRY glGetActiveSubroutineUniformiv (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values); +GLAPI void APIENTRY glGetActiveSubroutineUniformName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glGetActiveSubroutineName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glUniformSubroutinesuiv (GLenum shadertype, GLsizei count, const GLuint *indices); +GLAPI void APIENTRY glGetUniformSubroutineuiv (GLenum shadertype, GLint location, GLuint *params); +GLAPI void APIENTRY glGetProgramStageiv (GLuint program, GLenum shadertype, GLenum pname, GLint *values); +GLAPI void APIENTRY glPatchParameteri (GLenum pname, GLint value); +GLAPI void APIENTRY glPatchParameterfv (GLenum pname, const GLfloat *values); +GLAPI void APIENTRY glBindTransformFeedback (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteTransformFeedbacks (GLsizei n, const GLuint *ids); +GLAPI void APIENTRY glGenTransformFeedbacks (GLsizei n, GLuint *ids); +GLAPI GLboolean APIENTRY glIsTransformFeedback (GLuint id); +GLAPI void APIENTRY glPauseTransformFeedback (void); +GLAPI void APIENTRY glResumeTransformFeedback (void); +GLAPI void APIENTRY glDrawTransformFeedback (GLenum mode, GLuint id); +GLAPI void APIENTRY glDrawTransformFeedbackStream (GLenum mode, GLuint id, GLuint stream); +GLAPI void APIENTRY glBeginQueryIndexed (GLenum target, GLuint index, GLuint id); +GLAPI void APIENTRY glEndQueryIndexed (GLenum target, GLuint index); +GLAPI void APIENTRY glGetQueryIndexediv (GLenum target, GLuint index, GLenum pname, GLint *params); +#endif +#endif /* GL_VERSION_4_0 */ + +#ifndef GL_VERSION_4_1 +#define GL_VERSION_4_1 1 +#define GL_FIXED 0x140C +#define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B +#define GL_LOW_FLOAT 0x8DF0 +#define GL_MEDIUM_FLOAT 0x8DF1 +#define GL_HIGH_FLOAT 0x8DF2 +#define GL_LOW_INT 0x8DF3 +#define GL_MEDIUM_INT 0x8DF4 +#define GL_HIGH_INT 0x8DF5 +#define GL_SHADER_COMPILER 0x8DFA +#define GL_SHADER_BINARY_FORMATS 0x8DF8 +#define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 +#define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB +#define GL_MAX_VARYING_VECTORS 0x8DFC +#define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD +#define GL_RGB565 0x8D62 +#define GL_PROGRAM_BINARY_RETRIEVABLE_HINT 0x8257 +#define GL_PROGRAM_BINARY_LENGTH 0x8741 +#define GL_NUM_PROGRAM_BINARY_FORMATS 0x87FE +#define GL_PROGRAM_BINARY_FORMATS 0x87FF +#define GL_VERTEX_SHADER_BIT 0x00000001 +#define GL_FRAGMENT_SHADER_BIT 0x00000002 +#define GL_GEOMETRY_SHADER_BIT 0x00000004 +#define GL_TESS_CONTROL_SHADER_BIT 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT 0x00000010 +#define GL_ALL_SHADER_BITS 0xFFFFFFFF +#define GL_PROGRAM_SEPARABLE 0x8258 +#define GL_ACTIVE_PROGRAM 0x8259 +#define GL_PROGRAM_PIPELINE_BINDING 0x825A +#define GL_MAX_VIEWPORTS 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE 0x825D +#define GL_LAYER_PROVOKING_VERTEX 0x825E +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX 0x825F +#define GL_UNDEFINED_VERTEX 0x8260 +typedef void (APIENTRYP PFNGLRELEASESHADERCOMPILERPROC) (void); +typedef void (APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +typedef void (APIENTRYP PFNGLDEPTHRANGEFPROC) (GLfloat n, GLfloat f); +typedef void (APIENTRYP PFNGLCLEARDEPTHFPROC) (GLfloat d); +typedef void (APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +typedef void (APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIPROC) (GLuint program, GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLUSEPROGRAMSTAGESPROC) (GLuint pipeline, GLbitfield stages, GLuint program); +typedef void (APIENTRYP PFNGLACTIVESHADERPROGRAMPROC) (GLuint pipeline, GLuint program); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMVPROC) (GLenum type, GLsizei count, const GLchar *const*strings); +typedef void (APIENTRYP PFNGLBINDPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLDELETEPROGRAMPIPELINESPROC) (GLsizei n, const GLuint *pipelines); +typedef void (APIENTRYP PFNGLGENPROGRAMPIPELINESPROC) (GLsizei n, GLuint *pipelines); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEIVPROC) (GLuint pipeline, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IPROC) (GLuint program, GLint location, GLint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DPROC) (GLuint program, GLint location, GLdouble v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIPROC) (GLuint program, GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLVIEWPORTARRAYVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLSCISSORARRAYVPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (APIENTRYP PFNGLSCISSORINDEXEDPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLSCISSORINDEXEDVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEARRAYVPROC) (GLuint first, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEINDEXEDPROC) (GLuint index, GLdouble n, GLdouble f); +typedef void (APIENTRYP PFNGLGETFLOATI_VPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (APIENTRYP PFNGLGETDOUBLEI_VPROC) (GLenum target, GLuint index, GLdouble *data); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReleaseShaderCompiler (void); +GLAPI void APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +GLAPI void APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +GLAPI void APIENTRY glDepthRangef (GLfloat n, GLfloat f); +GLAPI void APIENTRY glClearDepthf (GLfloat d); +GLAPI void APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +GLAPI void APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); +GLAPI void APIENTRY glProgramParameteri (GLuint program, GLenum pname, GLint value); +GLAPI void APIENTRY glUseProgramStages (GLuint pipeline, GLbitfield stages, GLuint program); +GLAPI void APIENTRY glActiveShaderProgram (GLuint pipeline, GLuint program); +GLAPI GLuint APIENTRY glCreateShaderProgramv (GLenum type, GLsizei count, const GLchar *const*strings); +GLAPI void APIENTRY glBindProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glDeleteProgramPipelines (GLsizei n, const GLuint *pipelines); +GLAPI void APIENTRY glGenProgramPipelines (GLsizei n, GLuint *pipelines); +GLAPI GLboolean APIENTRY glIsProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glGetProgramPipelineiv (GLuint pipeline, GLenum pname, GLint *params); +GLAPI void APIENTRY glProgramUniform1i (GLuint program, GLint location, GLint v0); +GLAPI void APIENTRY glProgramUniform1iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform1f (GLuint program, GLint location, GLfloat v0); +GLAPI void APIENTRY glProgramUniform1fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform1d (GLuint program, GLint location, GLdouble v0); +GLAPI void APIENTRY glProgramUniform1dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform1ui (GLuint program, GLint location, GLuint v0); +GLAPI void APIENTRY glProgramUniform1uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform2i (GLuint program, GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glProgramUniform2iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform2f (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glProgramUniform2fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform2d (GLuint program, GLint location, GLdouble v0, GLdouble v1); +GLAPI void APIENTRY glProgramUniform2dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform2ui (GLuint program, GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glProgramUniform2uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform3i (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glProgramUniform3iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform3f (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glProgramUniform3fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform3d (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2); +GLAPI void APIENTRY glProgramUniform3dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform3ui (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glProgramUniform3uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform4i (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glProgramUniform4iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform4f (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glProgramUniform4fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform4d (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3); +GLAPI void APIENTRY glProgramUniform4dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform4ui (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glProgramUniform4uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniformMatrix2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glValidateProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glGetProgramPipelineInfoLog (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glVertexAttribL1d (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttribL2d (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttribL3d (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttribL4d (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttribL1dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL2dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL3dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL4dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribLPointer (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribLdv (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glViewportArrayv (GLuint first, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glViewportIndexedf (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GLAPI void APIENTRY glViewportIndexedfv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glScissorArrayv (GLuint first, GLsizei count, const GLint *v); +GLAPI void APIENTRY glScissorIndexed (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GLAPI void APIENTRY glScissorIndexedv (GLuint index, const GLint *v); +GLAPI void APIENTRY glDepthRangeArrayv (GLuint first, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glDepthRangeIndexed (GLuint index, GLdouble n, GLdouble f); +GLAPI void APIENTRY glGetFloati_v (GLenum target, GLuint index, GLfloat *data); +GLAPI void APIENTRY glGetDoublei_v (GLenum target, GLuint index, GLdouble *data); +#endif +#endif /* GL_VERSION_4_1 */ + +#ifndef GL_VERSION_4_2 +#define GL_VERSION_4_2 1 +#define GL_COPY_READ_BUFFER_BINDING 0x8F36 +#define GL_COPY_WRITE_BUFFER_BINDING 0x8F37 +#define GL_TRANSFORM_FEEDBACK_ACTIVE 0x8E24 +#define GL_TRANSFORM_FEEDBACK_PAUSED 0x8E23 +#define GL_UNPACK_COMPRESSED_BLOCK_WIDTH 0x9127 +#define GL_UNPACK_COMPRESSED_BLOCK_HEIGHT 0x9128 +#define GL_UNPACK_COMPRESSED_BLOCK_DEPTH 0x9129 +#define GL_UNPACK_COMPRESSED_BLOCK_SIZE 0x912A +#define GL_PACK_COMPRESSED_BLOCK_WIDTH 0x912B +#define GL_PACK_COMPRESSED_BLOCK_HEIGHT 0x912C +#define GL_PACK_COMPRESSED_BLOCK_DEPTH 0x912D +#define GL_PACK_COMPRESSED_BLOCK_SIZE 0x912E +#define GL_NUM_SAMPLE_COUNTS 0x9380 +#define GL_MIN_MAP_BUFFER_ALIGNMENT 0x90BC +#define GL_ATOMIC_COUNTER_BUFFER 0x92C0 +#define GL_ATOMIC_COUNTER_BUFFER_BINDING 0x92C1 +#define GL_ATOMIC_COUNTER_BUFFER_START 0x92C2 +#define GL_ATOMIC_COUNTER_BUFFER_SIZE 0x92C3 +#define GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE 0x92C4 +#define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS 0x92C5 +#define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES 0x92C6 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER 0x92C7 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER 0x92C8 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER 0x92C9 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER 0x92CA +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER 0x92CB +#define GL_MAX_VERTEX_ATOMIC_COUNTER_BUFFERS 0x92CC +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS 0x92CE +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS 0x92CF +#define GL_MAX_FRAGMENT_ATOMIC_COUNTER_BUFFERS 0x92D0 +#define GL_MAX_COMBINED_ATOMIC_COUNTER_BUFFERS 0x92D1 +#define GL_MAX_VERTEX_ATOMIC_COUNTERS 0x92D2 +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS 0x92D4 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS 0x92D5 +#define GL_MAX_FRAGMENT_ATOMIC_COUNTERS 0x92D6 +#define GL_MAX_COMBINED_ATOMIC_COUNTERS 0x92D7 +#define GL_MAX_ATOMIC_COUNTER_BUFFER_SIZE 0x92D8 +#define GL_MAX_ATOMIC_COUNTER_BUFFER_BINDINGS 0x92DC +#define GL_ACTIVE_ATOMIC_COUNTER_BUFFERS 0x92D9 +#define GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX 0x92DA +#define GL_UNSIGNED_INT_ATOMIC_COUNTER 0x92DB +#define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT 0x00000001 +#define GL_ELEMENT_ARRAY_BARRIER_BIT 0x00000002 +#define GL_UNIFORM_BARRIER_BIT 0x00000004 +#define GL_TEXTURE_FETCH_BARRIER_BIT 0x00000008 +#define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT 0x00000020 +#define GL_COMMAND_BARRIER_BIT 0x00000040 +#define GL_PIXEL_BUFFER_BARRIER_BIT 0x00000080 +#define GL_TEXTURE_UPDATE_BARRIER_BIT 0x00000100 +#define GL_BUFFER_UPDATE_BARRIER_BIT 0x00000200 +#define GL_FRAMEBUFFER_BARRIER_BIT 0x00000400 +#define GL_TRANSFORM_FEEDBACK_BARRIER_BIT 0x00000800 +#define GL_ATOMIC_COUNTER_BARRIER_BIT 0x00001000 +#define GL_ALL_BARRIER_BITS 0xFFFFFFFF +#define GL_MAX_IMAGE_UNITS 0x8F38 +#define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS 0x8F39 +#define GL_IMAGE_BINDING_NAME 0x8F3A +#define GL_IMAGE_BINDING_LEVEL 0x8F3B +#define GL_IMAGE_BINDING_LAYERED 0x8F3C +#define GL_IMAGE_BINDING_LAYER 0x8F3D +#define GL_IMAGE_BINDING_ACCESS 0x8F3E +#define GL_IMAGE_1D 0x904C +#define GL_IMAGE_2D 0x904D +#define GL_IMAGE_3D 0x904E +#define GL_IMAGE_2D_RECT 0x904F +#define GL_IMAGE_CUBE 0x9050 +#define GL_IMAGE_BUFFER 0x9051 +#define GL_IMAGE_1D_ARRAY 0x9052 +#define GL_IMAGE_2D_ARRAY 0x9053 +#define GL_IMAGE_CUBE_MAP_ARRAY 0x9054 +#define GL_IMAGE_2D_MULTISAMPLE 0x9055 +#define GL_IMAGE_2D_MULTISAMPLE_ARRAY 0x9056 +#define GL_INT_IMAGE_1D 0x9057 +#define GL_INT_IMAGE_2D 0x9058 +#define GL_INT_IMAGE_3D 0x9059 +#define GL_INT_IMAGE_2D_RECT 0x905A +#define GL_INT_IMAGE_CUBE 0x905B +#define GL_INT_IMAGE_BUFFER 0x905C +#define GL_INT_IMAGE_1D_ARRAY 0x905D +#define GL_INT_IMAGE_2D_ARRAY 0x905E +#define GL_INT_IMAGE_CUBE_MAP_ARRAY 0x905F +#define GL_INT_IMAGE_2D_MULTISAMPLE 0x9060 +#define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY 0x9061 +#define GL_UNSIGNED_INT_IMAGE_1D 0x9062 +#define GL_UNSIGNED_INT_IMAGE_2D 0x9063 +#define GL_UNSIGNED_INT_IMAGE_3D 0x9064 +#define GL_UNSIGNED_INT_IMAGE_2D_RECT 0x9065 +#define GL_UNSIGNED_INT_IMAGE_CUBE 0x9066 +#define GL_UNSIGNED_INT_IMAGE_BUFFER 0x9067 +#define GL_UNSIGNED_INT_IMAGE_1D_ARRAY 0x9068 +#define GL_UNSIGNED_INT_IMAGE_2D_ARRAY 0x9069 +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY 0x906A +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE 0x906B +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY 0x906C +#define GL_MAX_IMAGE_SAMPLES 0x906D +#define GL_IMAGE_BINDING_FORMAT 0x906E +#define GL_IMAGE_FORMAT_COMPATIBILITY_TYPE 0x90C7 +#define GL_IMAGE_FORMAT_COMPATIBILITY_BY_SIZE 0x90C8 +#define GL_IMAGE_FORMAT_COMPATIBILITY_BY_CLASS 0x90C9 +#define GL_MAX_VERTEX_IMAGE_UNIFORMS 0x90CA +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS 0x90CC +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS 0x90CD +#define GL_MAX_FRAGMENT_IMAGE_UNIFORMS 0x90CE +#define GL_MAX_COMBINED_IMAGE_UNIFORMS 0x90CF +#define GL_COMPRESSED_RGBA_BPTC_UNORM 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT 0x8E8F +#define GL_TEXTURE_IMMUTABLE_FORMAT 0x912F +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +typedef void (APIENTRYP PFNGLGETINTERNALFORMATIVPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC) (GLuint program, GLuint bufferIndex, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLBINDIMAGETEXTUREPROC) (GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format); +typedef void (APIENTRYP PFNGLMEMORYBARRIERPROC) (GLbitfield barriers); +typedef void (APIENTRYP PFNGLTEXSTORAGE1DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXSTORAGE2DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXSTORAGE3DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC) (GLenum mode, GLuint id, GLsizei instancecount); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC) (GLenum mode, GLuint id, GLuint stream, GLsizei instancecount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedBaseInstance (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +GLAPI void APIENTRY glDrawElementsInstancedBaseInstance (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +GLAPI void APIENTRY glDrawElementsInstancedBaseVertexBaseInstance (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +GLAPI void APIENTRY glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params); +GLAPI void APIENTRY glGetActiveAtomicCounterBufferiv (GLuint program, GLuint bufferIndex, GLenum pname, GLint *params); +GLAPI void APIENTRY glBindImageTexture (GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format); +GLAPI void APIENTRY glMemoryBarrier (GLbitfield barriers); +GLAPI void APIENTRY glTexStorage1D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTexStorage2D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTexStorage3D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glDrawTransformFeedbackInstanced (GLenum mode, GLuint id, GLsizei instancecount); +GLAPI void APIENTRY glDrawTransformFeedbackStreamInstanced (GLenum mode, GLuint id, GLuint stream, GLsizei instancecount); +#endif +#endif /* GL_VERSION_4_2 */ + +#ifndef GL_VERSION_4_3 +#define GL_VERSION_4_3 1 +typedef void (APIENTRY *GLDEBUGPROC)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +#define GL_NUM_SHADING_LANGUAGE_VERSIONS 0x82E9 +#define GL_VERTEX_ATTRIB_ARRAY_LONG 0x874E +#define GL_COMPRESSED_RGB8_ETC2 0x9274 +#define GL_COMPRESSED_SRGB8_ETC2 0x9275 +#define GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 0x9276 +#define GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 0x9277 +#define GL_COMPRESSED_RGBA8_ETC2_EAC 0x9278 +#define GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC 0x9279 +#define GL_COMPRESSED_R11_EAC 0x9270 +#define GL_COMPRESSED_SIGNED_R11_EAC 0x9271 +#define GL_COMPRESSED_RG11_EAC 0x9272 +#define GL_COMPRESSED_SIGNED_RG11_EAC 0x9273 +#define GL_PRIMITIVE_RESTART_FIXED_INDEX 0x8D69 +#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE 0x8D6A +#define GL_MAX_ELEMENT_INDEX 0x8D6B +#define GL_COMPUTE_SHADER 0x91B9 +#define GL_MAX_COMPUTE_UNIFORM_BLOCKS 0x91BB +#define GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS 0x91BC +#define GL_MAX_COMPUTE_IMAGE_UNIFORMS 0x91BD +#define GL_MAX_COMPUTE_SHARED_MEMORY_SIZE 0x8262 +#define GL_MAX_COMPUTE_UNIFORM_COMPONENTS 0x8263 +#define GL_MAX_COMPUTE_ATOMIC_COUNTER_BUFFERS 0x8264 +#define GL_MAX_COMPUTE_ATOMIC_COUNTERS 0x8265 +#define GL_MAX_COMBINED_COMPUTE_UNIFORM_COMPONENTS 0x8266 +#define GL_MAX_COMPUTE_WORK_GROUP_INVOCATIONS 0x90EB +#define GL_MAX_COMPUTE_WORK_GROUP_COUNT 0x91BE +#define GL_MAX_COMPUTE_WORK_GROUP_SIZE 0x91BF +#define GL_COMPUTE_WORK_GROUP_SIZE 0x8267 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER 0x90EC +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER 0x90ED +#define GL_DISPATCH_INDIRECT_BUFFER 0x90EE +#define GL_DISPATCH_INDIRECT_BUFFER_BINDING 0x90EF +#define GL_COMPUTE_SHADER_BIT 0x00000020 +#define GL_DEBUG_OUTPUT_SYNCHRONOUS 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM 0x8245 +#define GL_DEBUG_SOURCE_API 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION 0x824A +#define GL_DEBUG_SOURCE_OTHER 0x824B +#define GL_DEBUG_TYPE_ERROR 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR 0x824E +#define GL_DEBUG_TYPE_PORTABILITY 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE 0x8250 +#define GL_DEBUG_TYPE_OTHER 0x8251 +#define GL_MAX_DEBUG_MESSAGE_LENGTH 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES 0x9145 +#define GL_DEBUG_SEVERITY_HIGH 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM 0x9147 +#define GL_DEBUG_SEVERITY_LOW 0x9148 +#define GL_DEBUG_TYPE_MARKER 0x8268 +#define GL_DEBUG_TYPE_PUSH_GROUP 0x8269 +#define GL_DEBUG_TYPE_POP_GROUP 0x826A +#define GL_DEBUG_SEVERITY_NOTIFICATION 0x826B +#define GL_MAX_DEBUG_GROUP_STACK_DEPTH 0x826C +#define GL_DEBUG_GROUP_STACK_DEPTH 0x826D +#define GL_BUFFER 0x82E0 +#define GL_SHADER 0x82E1 +#define GL_PROGRAM 0x82E2 +#define GL_QUERY 0x82E3 +#define GL_PROGRAM_PIPELINE 0x82E4 +#define GL_SAMPLER 0x82E6 +#define GL_MAX_LABEL_LENGTH 0x82E8 +#define GL_DEBUG_OUTPUT 0x92E0 +#define GL_CONTEXT_FLAG_DEBUG_BIT 0x00000002 +#define GL_MAX_UNIFORM_LOCATIONS 0x826E +#define GL_FRAMEBUFFER_DEFAULT_WIDTH 0x9310 +#define GL_FRAMEBUFFER_DEFAULT_HEIGHT 0x9311 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS 0x9312 +#define GL_FRAMEBUFFER_DEFAULT_SAMPLES 0x9313 +#define GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS 0x9314 +#define GL_MAX_FRAMEBUFFER_WIDTH 0x9315 +#define GL_MAX_FRAMEBUFFER_HEIGHT 0x9316 +#define GL_MAX_FRAMEBUFFER_LAYERS 0x9317 +#define GL_MAX_FRAMEBUFFER_SAMPLES 0x9318 +#define GL_INTERNALFORMAT_SUPPORTED 0x826F +#define GL_INTERNALFORMAT_PREFERRED 0x8270 +#define GL_INTERNALFORMAT_RED_SIZE 0x8271 +#define GL_INTERNALFORMAT_GREEN_SIZE 0x8272 +#define GL_INTERNALFORMAT_BLUE_SIZE 0x8273 +#define GL_INTERNALFORMAT_ALPHA_SIZE 0x8274 +#define GL_INTERNALFORMAT_DEPTH_SIZE 0x8275 +#define GL_INTERNALFORMAT_STENCIL_SIZE 0x8276 +#define GL_INTERNALFORMAT_SHARED_SIZE 0x8277 +#define GL_INTERNALFORMAT_RED_TYPE 0x8278 +#define GL_INTERNALFORMAT_GREEN_TYPE 0x8279 +#define GL_INTERNALFORMAT_BLUE_TYPE 0x827A +#define GL_INTERNALFORMAT_ALPHA_TYPE 0x827B +#define GL_INTERNALFORMAT_DEPTH_TYPE 0x827C +#define GL_INTERNALFORMAT_STENCIL_TYPE 0x827D +#define GL_MAX_WIDTH 0x827E +#define GL_MAX_HEIGHT 0x827F +#define GL_MAX_DEPTH 0x8280 +#define GL_MAX_LAYERS 0x8281 +#define GL_MAX_COMBINED_DIMENSIONS 0x8282 +#define GL_COLOR_COMPONENTS 0x8283 +#define GL_DEPTH_COMPONENTS 0x8284 +#define GL_STENCIL_COMPONENTS 0x8285 +#define GL_COLOR_RENDERABLE 0x8286 +#define GL_DEPTH_RENDERABLE 0x8287 +#define GL_STENCIL_RENDERABLE 0x8288 +#define GL_FRAMEBUFFER_RENDERABLE 0x8289 +#define GL_FRAMEBUFFER_RENDERABLE_LAYERED 0x828A +#define GL_FRAMEBUFFER_BLEND 0x828B +#define GL_READ_PIXELS 0x828C +#define GL_READ_PIXELS_FORMAT 0x828D +#define GL_READ_PIXELS_TYPE 0x828E +#define GL_TEXTURE_IMAGE_FORMAT 0x828F +#define GL_TEXTURE_IMAGE_TYPE 0x8290 +#define GL_GET_TEXTURE_IMAGE_FORMAT 0x8291 +#define GL_GET_TEXTURE_IMAGE_TYPE 0x8292 +#define GL_MIPMAP 0x8293 +#define GL_MANUAL_GENERATE_MIPMAP 0x8294 +#define GL_AUTO_GENERATE_MIPMAP 0x8295 +#define GL_COLOR_ENCODING 0x8296 +#define GL_SRGB_READ 0x8297 +#define GL_SRGB_WRITE 0x8298 +#define GL_FILTER 0x829A +#define GL_VERTEX_TEXTURE 0x829B +#define GL_TESS_CONTROL_TEXTURE 0x829C +#define GL_TESS_EVALUATION_TEXTURE 0x829D +#define GL_GEOMETRY_TEXTURE 0x829E +#define GL_FRAGMENT_TEXTURE 0x829F +#define GL_COMPUTE_TEXTURE 0x82A0 +#define GL_TEXTURE_SHADOW 0x82A1 +#define GL_TEXTURE_GATHER 0x82A2 +#define GL_TEXTURE_GATHER_SHADOW 0x82A3 +#define GL_SHADER_IMAGE_LOAD 0x82A4 +#define GL_SHADER_IMAGE_STORE 0x82A5 +#define GL_SHADER_IMAGE_ATOMIC 0x82A6 +#define GL_IMAGE_TEXEL_SIZE 0x82A7 +#define GL_IMAGE_COMPATIBILITY_CLASS 0x82A8 +#define GL_IMAGE_PIXEL_FORMAT 0x82A9 +#define GL_IMAGE_PIXEL_TYPE 0x82AA +#define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST 0x82AC +#define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST 0x82AD +#define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE 0x82AE +#define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE 0x82AF +#define GL_TEXTURE_COMPRESSED_BLOCK_WIDTH 0x82B1 +#define GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT 0x82B2 +#define GL_TEXTURE_COMPRESSED_BLOCK_SIZE 0x82B3 +#define GL_CLEAR_BUFFER 0x82B4 +#define GL_TEXTURE_VIEW 0x82B5 +#define GL_VIEW_COMPATIBILITY_CLASS 0x82B6 +#define GL_FULL_SUPPORT 0x82B7 +#define GL_CAVEAT_SUPPORT 0x82B8 +#define GL_IMAGE_CLASS_4_X_32 0x82B9 +#define GL_IMAGE_CLASS_2_X_32 0x82BA +#define GL_IMAGE_CLASS_1_X_32 0x82BB +#define GL_IMAGE_CLASS_4_X_16 0x82BC +#define GL_IMAGE_CLASS_2_X_16 0x82BD +#define GL_IMAGE_CLASS_1_X_16 0x82BE +#define GL_IMAGE_CLASS_4_X_8 0x82BF +#define GL_IMAGE_CLASS_2_X_8 0x82C0 +#define GL_IMAGE_CLASS_1_X_8 0x82C1 +#define GL_IMAGE_CLASS_11_11_10 0x82C2 +#define GL_IMAGE_CLASS_10_10_10_2 0x82C3 +#define GL_VIEW_CLASS_128_BITS 0x82C4 +#define GL_VIEW_CLASS_96_BITS 0x82C5 +#define GL_VIEW_CLASS_64_BITS 0x82C6 +#define GL_VIEW_CLASS_48_BITS 0x82C7 +#define GL_VIEW_CLASS_32_BITS 0x82C8 +#define GL_VIEW_CLASS_24_BITS 0x82C9 +#define GL_VIEW_CLASS_16_BITS 0x82CA +#define GL_VIEW_CLASS_8_BITS 0x82CB +#define GL_VIEW_CLASS_S3TC_DXT1_RGB 0x82CC +#define GL_VIEW_CLASS_S3TC_DXT1_RGBA 0x82CD +#define GL_VIEW_CLASS_S3TC_DXT3_RGBA 0x82CE +#define GL_VIEW_CLASS_S3TC_DXT5_RGBA 0x82CF +#define GL_VIEW_CLASS_RGTC1_RED 0x82D0 +#define GL_VIEW_CLASS_RGTC2_RG 0x82D1 +#define GL_VIEW_CLASS_BPTC_UNORM 0x82D2 +#define GL_VIEW_CLASS_BPTC_FLOAT 0x82D3 +#define GL_UNIFORM 0x92E1 +#define GL_UNIFORM_BLOCK 0x92E2 +#define GL_PROGRAM_INPUT 0x92E3 +#define GL_PROGRAM_OUTPUT 0x92E4 +#define GL_BUFFER_VARIABLE 0x92E5 +#define GL_SHADER_STORAGE_BLOCK 0x92E6 +#define GL_VERTEX_SUBROUTINE 0x92E8 +#define GL_TESS_CONTROL_SUBROUTINE 0x92E9 +#define GL_TESS_EVALUATION_SUBROUTINE 0x92EA +#define GL_GEOMETRY_SUBROUTINE 0x92EB +#define GL_FRAGMENT_SUBROUTINE 0x92EC +#define GL_COMPUTE_SUBROUTINE 0x92ED +#define GL_VERTEX_SUBROUTINE_UNIFORM 0x92EE +#define GL_TESS_CONTROL_SUBROUTINE_UNIFORM 0x92EF +#define GL_TESS_EVALUATION_SUBROUTINE_UNIFORM 0x92F0 +#define GL_GEOMETRY_SUBROUTINE_UNIFORM 0x92F1 +#define GL_FRAGMENT_SUBROUTINE_UNIFORM 0x92F2 +#define GL_COMPUTE_SUBROUTINE_UNIFORM 0x92F3 +#define GL_TRANSFORM_FEEDBACK_VARYING 0x92F4 +#define GL_ACTIVE_RESOURCES 0x92F5 +#define GL_MAX_NAME_LENGTH 0x92F6 +#define GL_MAX_NUM_ACTIVE_VARIABLES 0x92F7 +#define GL_MAX_NUM_COMPATIBLE_SUBROUTINES 0x92F8 +#define GL_NAME_LENGTH 0x92F9 +#define GL_TYPE 0x92FA +#define GL_ARRAY_SIZE 0x92FB +#define GL_OFFSET 0x92FC +#define GL_BLOCK_INDEX 0x92FD +#define GL_ARRAY_STRIDE 0x92FE +#define GL_MATRIX_STRIDE 0x92FF +#define GL_IS_ROW_MAJOR 0x9300 +#define GL_ATOMIC_COUNTER_BUFFER_INDEX 0x9301 +#define GL_BUFFER_BINDING 0x9302 +#define GL_BUFFER_DATA_SIZE 0x9303 +#define GL_NUM_ACTIVE_VARIABLES 0x9304 +#define GL_ACTIVE_VARIABLES 0x9305 +#define GL_REFERENCED_BY_VERTEX_SHADER 0x9306 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER 0x9308 +#define GL_REFERENCED_BY_GEOMETRY_SHADER 0x9309 +#define GL_REFERENCED_BY_FRAGMENT_SHADER 0x930A +#define GL_REFERENCED_BY_COMPUTE_SHADER 0x930B +#define GL_TOP_LEVEL_ARRAY_SIZE 0x930C +#define GL_TOP_LEVEL_ARRAY_STRIDE 0x930D +#define GL_LOCATION 0x930E +#define GL_LOCATION_INDEX 0x930F +#define GL_IS_PER_PATCH 0x92E7 +#define GL_SHADER_STORAGE_BUFFER 0x90D2 +#define GL_SHADER_STORAGE_BUFFER_BINDING 0x90D3 +#define GL_SHADER_STORAGE_BUFFER_START 0x90D4 +#define GL_SHADER_STORAGE_BUFFER_SIZE 0x90D5 +#define GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS 0x90D6 +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS 0x90D7 +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS 0x90D9 +#define GL_MAX_FRAGMENT_SHADER_STORAGE_BLOCKS 0x90DA +#define GL_MAX_COMPUTE_SHADER_STORAGE_BLOCKS 0x90DB +#define GL_MAX_COMBINED_SHADER_STORAGE_BLOCKS 0x90DC +#define GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS 0x90DD +#define GL_MAX_SHADER_STORAGE_BLOCK_SIZE 0x90DE +#define GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT 0x90DF +#define GL_SHADER_STORAGE_BARRIER_BIT 0x00002000 +#define GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES 0x8F39 +#define GL_DEPTH_STENCIL_TEXTURE_MODE 0x90EA +#define GL_TEXTURE_BUFFER_OFFSET 0x919D +#define GL_TEXTURE_BUFFER_SIZE 0x919E +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT 0x919F +#define GL_TEXTURE_VIEW_MIN_LEVEL 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS 0x82DE +#define GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF +#define GL_VERTEX_ATTRIB_BINDING 0x82D4 +#define GL_VERTEX_ATTRIB_RELATIVE_OFFSET 0x82D5 +#define GL_VERTEX_BINDING_DIVISOR 0x82D6 +#define GL_VERTEX_BINDING_OFFSET 0x82D7 +#define GL_VERTEX_BINDING_STRIDE 0x82D8 +#define GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET 0x82D9 +#define GL_MAX_VERTEX_ATTRIB_BINDINGS 0x82DA +#define GL_VERTEX_BINDING_BUFFER 0x8F4F +#define GL_DISPLAY_LIST 0x82E7 +typedef void (APIENTRYP PFNGLCLEARBUFFERDATAPROC) (GLenum target, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARBUFFERSUBDATAPROC) (GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEPROC) (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z); +typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEINDIRECTPROC) (GLintptr indirect); +typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATAPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +typedef void (APIENTRYP PFNGLFRAMEBUFFERPARAMETERIPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETINTERNALFORMATI64VPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint64 *params); +typedef void (APIENTRYP PFNGLINVALIDATETEXSUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLINVALIDATETEXIMAGEPROC) (GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLINVALIDATEBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLINVALIDATEBUFFERDATAPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLINVALIDATEFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments); +typedef void (APIENTRYP PFNGLINVALIDATESUBFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTPROC) (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLGETPROGRAMINTERFACEIVPROC) (GLuint program, GLenum programInterface, GLenum pname, GLint *params); +typedef GLuint (APIENTRYP PFNGLGETPROGRAMRESOURCEINDEXPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCENAMEPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCEIVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLint *params); +typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef void (APIENTRYP PFNGLSHADERSTORAGEBLOCKBINDINGPROC) (GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding); +typedef void (APIENTRYP PFNGLTEXBUFFERRANGEPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLTEXSTORAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXSTORAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTUREVIEWPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +typedef void (APIENTRYP PFNGLBINDVERTEXBUFFERPROC) (GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXATTRIBBINDINGPROC) (GLuint attribindex, GLuint bindingindex); +typedef void (APIENTRYP PFNGLVERTEXBINDINGDIVISORPROC) (GLuint bindingindex, GLuint divisor); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECONTROLPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKPROC) (GLDEBUGPROC callback, const void *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +typedef void (APIENTRYP PFNGLPUSHDEBUGGROUPPROC) (GLenum source, GLuint id, GLsizei length, const GLchar *message); +typedef void (APIENTRYP PFNGLPOPDEBUGGROUPPROC) (void); +typedef void (APIENTRYP PFNGLOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +typedef void (APIENTRYP PFNGLGETOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (APIENTRYP PFNGLOBJECTPTRLABELPROC) (const void *ptr, GLsizei length, const GLchar *label); +typedef void (APIENTRYP PFNGLGETOBJECTPTRLABELPROC) (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClearBufferData (GLenum target, GLenum internalformat, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearBufferSubData (GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glDispatchCompute (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z); +GLAPI void APIENTRY glDispatchComputeIndirect (GLintptr indirect); +GLAPI void APIENTRY glCopyImageSubData (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +GLAPI void APIENTRY glFramebufferParameteri (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glGetFramebufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetInternalformati64v (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint64 *params); +GLAPI void APIENTRY glInvalidateTexSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glInvalidateTexImage (GLuint texture, GLint level); +GLAPI void APIENTRY glInvalidateBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glInvalidateBufferData (GLuint buffer); +GLAPI void APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments); +GLAPI void APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glMultiDrawArraysIndirect (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirect (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +GLAPI void APIENTRY glGetProgramInterfaceiv (GLuint program, GLenum programInterface, GLenum pname, GLint *params); +GLAPI GLuint APIENTRY glGetProgramResourceIndex (GLuint program, GLenum programInterface, const GLchar *name); +GLAPI void APIENTRY glGetProgramResourceName (GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glGetProgramResourceiv (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLint *params); +GLAPI GLint APIENTRY glGetProgramResourceLocation (GLuint program, GLenum programInterface, const GLchar *name); +GLAPI GLint APIENTRY glGetProgramResourceLocationIndex (GLuint program, GLenum programInterface, const GLchar *name); +GLAPI void APIENTRY glShaderStorageBlockBinding (GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding); +GLAPI void APIENTRY glTexBufferRange (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glTexStorage2DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTexStorage3DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureView (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +GLAPI void APIENTRY glBindVertexBuffer (GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +GLAPI void APIENTRY glVertexAttribFormat (GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +GLAPI void APIENTRY glVertexAttribIFormat (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexAttribLFormat (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexAttribBinding (GLuint attribindex, GLuint bindingindex); +GLAPI void APIENTRY glVertexBindingDivisor (GLuint bindingindex, GLuint divisor); +GLAPI void APIENTRY glDebugMessageControl (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsert (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallback (GLDEBUGPROC callback, const void *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLog (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +GLAPI void APIENTRY glPushDebugGroup (GLenum source, GLuint id, GLsizei length, const GLchar *message); +GLAPI void APIENTRY glPopDebugGroup (void); +GLAPI void APIENTRY glObjectLabel (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +GLAPI void APIENTRY glGetObjectLabel (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +GLAPI void APIENTRY glObjectPtrLabel (const void *ptr, GLsizei length, const GLchar *label); +GLAPI void APIENTRY glGetObjectPtrLabel (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +#endif /* GL_VERSION_4_3 */ + +#ifndef GL_VERSION_4_4 +#define GL_VERSION_4_4 1 +#define GL_MAX_VERTEX_ATTRIB_STRIDE 0x82E5 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED 0x8221 +#define GL_TEXTURE_BUFFER_BINDING 0x8C2A +#define GL_MAP_PERSISTENT_BIT 0x0040 +#define GL_MAP_COHERENT_BIT 0x0080 +#define GL_DYNAMIC_STORAGE_BIT 0x0100 +#define GL_CLIENT_STORAGE_BIT 0x0200 +#define GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT 0x00004000 +#define GL_BUFFER_IMMUTABLE_STORAGE 0x821F +#define GL_BUFFER_STORAGE_FLAGS 0x8220 +#define GL_CLEAR_TEXTURE 0x9365 +#define GL_LOCATION_COMPONENT 0x934A +#define GL_TRANSFORM_FEEDBACK_BUFFER_INDEX 0x934B +#define GL_TRANSFORM_FEEDBACK_BUFFER_STRIDE 0x934C +#define GL_QUERY_BUFFER 0x9192 +#define GL_QUERY_BUFFER_BARRIER_BIT 0x00008000 +#define GL_QUERY_BUFFER_BINDING 0x9193 +#define GL_QUERY_RESULT_NO_WAIT 0x9194 +#define GL_MIRROR_CLAMP_TO_EDGE 0x8743 +typedef void (APIENTRYP PFNGLBUFFERSTORAGEPROC) (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (APIENTRYP PFNGLCLEARTEXIMAGEPROC) (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARTEXSUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLBINDBUFFERSBASEPROC) (GLenum target, GLuint first, GLsizei count, const GLuint *buffers); +typedef void (APIENTRYP PFNGLBINDBUFFERSRANGEPROC) (GLenum target, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizeiptr *sizes); +typedef void (APIENTRYP PFNGLBINDTEXTURESPROC) (GLuint first, GLsizei count, const GLuint *textures); +typedef void (APIENTRYP PFNGLBINDSAMPLERSPROC) (GLuint first, GLsizei count, const GLuint *samplers); +typedef void (APIENTRYP PFNGLBINDIMAGETEXTURESPROC) (GLuint first, GLsizei count, const GLuint *textures); +typedef void (APIENTRYP PFNGLBINDVERTEXBUFFERSPROC) (GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferStorage (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +GLAPI void APIENTRY glClearTexImage (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearTexSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glBindBuffersBase (GLenum target, GLuint first, GLsizei count, const GLuint *buffers); +GLAPI void APIENTRY glBindBuffersRange (GLenum target, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizeiptr *sizes); +GLAPI void APIENTRY glBindTextures (GLuint first, GLsizei count, const GLuint *textures); +GLAPI void APIENTRY glBindSamplers (GLuint first, GLsizei count, const GLuint *samplers); +GLAPI void APIENTRY glBindImageTextures (GLuint first, GLsizei count, const GLuint *textures); +GLAPI void APIENTRY glBindVertexBuffers (GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +#endif +#endif /* GL_VERSION_4_4 */ + +#ifndef GL_VERSION_4_5 +#define GL_VERSION_4_5 1 +#define GL_CONTEXT_LOST 0x0507 +#define GL_NEGATIVE_ONE_TO_ONE 0x935E +#define GL_ZERO_TO_ONE 0x935F +#define GL_CLIP_ORIGIN 0x935C +#define GL_CLIP_DEPTH_MODE 0x935D +#define GL_QUERY_WAIT_INVERTED 0x8E17 +#define GL_QUERY_NO_WAIT_INVERTED 0x8E18 +#define GL_QUERY_BY_REGION_WAIT_INVERTED 0x8E19 +#define GL_QUERY_BY_REGION_NO_WAIT_INVERTED 0x8E1A +#define GL_MAX_CULL_DISTANCES 0x82F9 +#define GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES 0x82FA +#define GL_TEXTURE_TARGET 0x1006 +#define GL_QUERY_TARGET 0x82EA +#define GL_GUILTY_CONTEXT_RESET 0x8253 +#define GL_INNOCENT_CONTEXT_RESET 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY 0x8256 +#define GL_LOSE_CONTEXT_ON_RESET 0x8252 +#define GL_NO_RESET_NOTIFICATION 0x8261 +#define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT 0x00000004 +#define GL_COLOR_TABLE 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2 +#define GL_PROXY_COLOR_TABLE 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5 +#define GL_CONVOLUTION_1D 0x8010 +#define GL_CONVOLUTION_2D 0x8011 +#define GL_SEPARABLE_2D 0x8012 +#define GL_HISTOGRAM 0x8024 +#define GL_PROXY_HISTOGRAM 0x8025 +#define GL_MINMAX 0x802E +#define GL_CONTEXT_RELEASE_BEHAVIOR 0x82FB +#define GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH 0x82FC +typedef void (APIENTRYP PFNGLCLIPCONTROLPROC) (GLenum origin, GLenum depth); +typedef void (APIENTRYP PFNGLCREATETRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKBUFFERBASEPROC) (GLuint xfb, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKBUFFERRANGEPROC) (GLuint xfb, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKIVPROC) (GLuint xfb, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint *param); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI64_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint64 *param); +typedef void (APIENTRYP PFNGLCREATEBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (APIENTRYP PFNGLNAMEDBUFFERDATAPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLCOPYNAMEDBUFFERSUBDATAPROC) (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERDATAPROC) (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERPROC) (GLuint buffer, GLenum access); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERRANGEPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef GLboolean (APIENTRYP PFNGLUNMAPNAMEDBUFFERPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERIVPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERI64VPROC) (GLuint buffer, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPOINTERVPROC) (GLuint buffer, GLenum pname, void **params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +typedef void (APIENTRYP PFNGLCREATEFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERRENDERBUFFERPROC) (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERPARAMETERIPROC) (GLuint framebuffer, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURELAYERPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERDRAWBUFFERPROC) (GLuint framebuffer, GLenum buf); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERDRAWBUFFERSPROC) (GLuint framebuffer, GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERREADBUFFERPROC) (GLuint framebuffer, GLenum src); +typedef void (APIENTRYP PFNGLINVALIDATENAMEDFRAMEBUFFERDATAPROC) (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments); +typedef void (APIENTRYP PFNGLINVALIDATENAMEDFRAMEBUFFERSUBDATAPROC) (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERIVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLint *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERUIVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERFVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLfloat *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERFIPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +typedef void (APIENTRYP PFNGLBLITNAMEDFRAMEBUFFERPROC) (GLuint readFramebuffer, GLuint drawFramebuffer, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef GLenum (APIENTRYP PFNGLCHECKNAMEDFRAMEBUFFERSTATUSPROC) (GLuint framebuffer, GLenum target); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVPROC) (GLuint framebuffer, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATERENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEPROC) (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETNAMEDRENDERBUFFERPARAMETERIVPROC) (GLuint renderbuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATETEXTURESPROC) (GLenum target, GLsizei n, GLuint *textures); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERPROC) (GLuint texture, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERRANGEPROC) (GLuint texture, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE1DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DMULTISAMPLEPROC) (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DMULTISAMPLEPROC) (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFPROC) (GLuint texture, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFVPROC) (GLuint texture, GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIPROC) (GLuint texture, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIIVPROC) (GLuint texture, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIUIVPROC) (GLuint texture, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIVPROC) (GLuint texture, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLGENERATETEXTUREMIPMAPPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLBINDTEXTUREUNITPROC) (GLuint unit, GLuint texture); +typedef void (APIENTRYP PFNGLGETTEXTUREIMAGEPROC) (GLuint texture, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTUREIMAGEPROC) (GLuint texture, GLint level, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERFVPROC) (GLuint texture, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERIVPROC) (GLuint texture, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERFVPROC) (GLuint texture, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIIVPROC) (GLuint texture, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIUIVPROC) (GLuint texture, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIVPROC) (GLuint texture, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATEVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays); +typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYATTRIBPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYATTRIBPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLVERTEXARRAYELEMENTBUFFERPROC) (GLuint vaobj, GLuint buffer); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBUFFERPROC) (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBUFFERSPROC) (GLuint vaobj, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBBINDINGPROC) (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBIFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBLFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYBINDINGDIVISORPROC) (GLuint vaobj, GLuint bindingindex, GLuint divisor); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYIVPROC) (GLuint vaobj, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINDEXEDIVPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINDEXED64IVPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint64 *param); +typedef void (APIENTRYP PFNGLCREATESAMPLERSPROC) (GLsizei n, GLuint *samplers); +typedef void (APIENTRYP PFNGLCREATEPROGRAMPIPELINESPROC) (GLsizei n, GLuint *pipelines); +typedef void (APIENTRYP PFNGLCREATEQUERIESPROC) (GLenum target, GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTI64VPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTIVPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTUI64VPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTUIVPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLMEMORYBARRIERBYREGIONPROC) (GLbitfield barriers); +typedef void (APIENTRYP PFNGLGETTEXTURESUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTURESUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei bufSize, void *pixels); +typedef GLenum (APIENTRYP PFNGLGETGRAPHICSRESETSTATUSPROC) (void); +typedef void (APIENTRYP PFNGLGETNCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint lod, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETNTEXIMAGEPROC) (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETNUNIFORMDVPROC) (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMFVPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMIVPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUIVPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +typedef void (APIENTRYP PFNGLREADNPIXELSPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (APIENTRYP PFNGLGETNMAPDVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +typedef void (APIENTRYP PFNGLGETNMAPFVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLGETNMAPIVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +typedef void (APIENTRYP PFNGLGETNPIXELMAPFVPROC) (GLenum map, GLsizei bufSize, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVPROC) (GLenum map, GLsizei bufSize, GLuint *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUSVPROC) (GLenum map, GLsizei bufSize, GLushort *values); +typedef void (APIENTRYP PFNGLGETNPOLYGONSTIPPLEPROC) (GLsizei bufSize, GLubyte *pattern); +typedef void (APIENTRYP PFNGLGETNCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +typedef void (APIENTRYP PFNGLGETNCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +typedef void (APIENTRYP PFNGLGETNSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +typedef void (APIENTRYP PFNGLGETNHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLGETNMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLTEXTUREBARRIERPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClipControl (GLenum origin, GLenum depth); +GLAPI void APIENTRY glCreateTransformFeedbacks (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glTransformFeedbackBufferBase (GLuint xfb, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackBufferRange (GLuint xfb, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glGetTransformFeedbackiv (GLuint xfb, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetTransformFeedbacki_v (GLuint xfb, GLenum pname, GLuint index, GLint *param); +GLAPI void APIENTRY glGetTransformFeedbacki64_v (GLuint xfb, GLenum pname, GLuint index, GLint64 *param); +GLAPI void APIENTRY glCreateBuffers (GLsizei n, GLuint *buffers); +GLAPI void APIENTRY glNamedBufferStorage (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +GLAPI void APIENTRY glNamedBufferData (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +GLAPI void APIENTRY glNamedBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glCopyNamedBufferSubData (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glClearNamedBufferData (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearNamedBufferSubData (GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +GLAPI void *APIENTRY glMapNamedBuffer (GLuint buffer, GLenum access); +GLAPI void *APIENTRY glMapNamedBufferRange (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI GLboolean APIENTRY glUnmapNamedBuffer (GLuint buffer); +GLAPI void APIENTRY glFlushMappedNamedBufferRange (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glGetNamedBufferParameteriv (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedBufferParameteri64v (GLuint buffer, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetNamedBufferPointerv (GLuint buffer, GLenum pname, void **params); +GLAPI void APIENTRY glGetNamedBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +GLAPI void APIENTRY glCreateFramebuffers (GLsizei n, GLuint *framebuffers); +GLAPI void APIENTRY glNamedFramebufferRenderbuffer (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glNamedFramebufferParameteri (GLuint framebuffer, GLenum pname, GLint param); +GLAPI void APIENTRY glNamedFramebufferTexture (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTextureLayer (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glNamedFramebufferDrawBuffer (GLuint framebuffer, GLenum buf); +GLAPI void APIENTRY glNamedFramebufferDrawBuffers (GLuint framebuffer, GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glNamedFramebufferReadBuffer (GLuint framebuffer, GLenum src); +GLAPI void APIENTRY glInvalidateNamedFramebufferData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments); +GLAPI void APIENTRY glInvalidateNamedFramebufferSubData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glClearNamedFramebufferiv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLint *value); +GLAPI void APIENTRY glClearNamedFramebufferuiv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value); +GLAPI void APIENTRY glClearNamedFramebufferfv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLfloat *value); +GLAPI void APIENTRY glClearNamedFramebufferfi (GLuint framebuffer, GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +GLAPI void APIENTRY glBlitNamedFramebuffer (GLuint readFramebuffer, GLuint drawFramebuffer, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI GLenum APIENTRY glCheckNamedFramebufferStatus (GLuint framebuffer, GLenum target); +GLAPI void APIENTRY glGetNamedFramebufferParameteriv (GLuint framebuffer, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetNamedFramebufferAttachmentParameteriv (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateRenderbuffers (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glNamedRenderbufferStorage (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisample (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetNamedRenderbufferParameteriv (GLuint renderbuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateTextures (GLenum target, GLsizei n, GLuint *textures); +GLAPI void APIENTRY glTextureBuffer (GLuint texture, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glTextureBufferRange (GLuint texture, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glTextureStorage1D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTextureStorage2D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureStorage3D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glTextureStorage2DMultisample (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureStorage3DMultisample (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCompressedTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCopyTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glCopyTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureParameterf (GLuint texture, GLenum pname, GLfloat param); +GLAPI void APIENTRY glTextureParameterfv (GLuint texture, GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glTextureParameteri (GLuint texture, GLenum pname, GLint param); +GLAPI void APIENTRY glTextureParameterIiv (GLuint texture, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureParameterIuiv (GLuint texture, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glTextureParameteriv (GLuint texture, GLenum pname, const GLint *param); +GLAPI void APIENTRY glGenerateTextureMipmap (GLuint texture); +GLAPI void APIENTRY glBindTextureUnit (GLuint unit, GLuint texture); +GLAPI void APIENTRY glGetTextureImage (GLuint texture, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetCompressedTextureImage (GLuint texture, GLint level, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetTextureLevelParameterfv (GLuint texture, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureLevelParameteriv (GLuint texture, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterfv (GLuint texture, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureParameterIiv (GLuint texture, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterIuiv (GLuint texture, GLenum pname, GLuint *params); +GLAPI void APIENTRY glGetTextureParameteriv (GLuint texture, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateVertexArrays (GLsizei n, GLuint *arrays); +GLAPI void APIENTRY glDisableVertexArrayAttrib (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glEnableVertexArrayAttrib (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glVertexArrayElementBuffer (GLuint vaobj, GLuint buffer); +GLAPI void APIENTRY glVertexArrayVertexBuffer (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +GLAPI void APIENTRY glVertexArrayVertexBuffers (GLuint vaobj, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +GLAPI void APIENTRY glVertexArrayAttribBinding (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +GLAPI void APIENTRY glVertexArrayAttribFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayAttribIFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayAttribLFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayBindingDivisor (GLuint vaobj, GLuint bindingindex, GLuint divisor); +GLAPI void APIENTRY glGetVertexArrayiv (GLuint vaobj, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayIndexediv (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayIndexed64iv (GLuint vaobj, GLuint index, GLenum pname, GLint64 *param); +GLAPI void APIENTRY glCreateSamplers (GLsizei n, GLuint *samplers); +GLAPI void APIENTRY glCreateProgramPipelines (GLsizei n, GLuint *pipelines); +GLAPI void APIENTRY glCreateQueries (GLenum target, GLsizei n, GLuint *ids); +GLAPI void APIENTRY glGetQueryBufferObjecti64v (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectiv (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectui64v (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectuiv (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glMemoryBarrierByRegion (GLbitfield barriers); +GLAPI void APIENTRY glGetTextureSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetCompressedTextureSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei bufSize, void *pixels); +GLAPI GLenum APIENTRY glGetGraphicsResetStatus (void); +GLAPI void APIENTRY glGetnCompressedTexImage (GLenum target, GLint lod, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetnTexImage (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetnUniformdv (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +GLAPI void APIENTRY glGetnUniformfv (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GLAPI void APIENTRY glGetnUniformiv (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GLAPI void APIENTRY glGetnUniformuiv (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +GLAPI void APIENTRY glReadnPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GLAPI void APIENTRY glGetnMapdv (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +GLAPI void APIENTRY glGetnMapfv (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glGetnMapiv (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +GLAPI void APIENTRY glGetnPixelMapfv (GLenum map, GLsizei bufSize, GLfloat *values); +GLAPI void APIENTRY glGetnPixelMapuiv (GLenum map, GLsizei bufSize, GLuint *values); +GLAPI void APIENTRY glGetnPixelMapusv (GLenum map, GLsizei bufSize, GLushort *values); +GLAPI void APIENTRY glGetnPolygonStipple (GLsizei bufSize, GLubyte *pattern); +GLAPI void APIENTRY glGetnColorTable (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +GLAPI void APIENTRY glGetnConvolutionFilter (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +GLAPI void APIENTRY glGetnSeparableFilter (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +GLAPI void APIENTRY glGetnHistogram (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glGetnMinmax (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glTextureBarrier (void); +#endif +#endif /* GL_VERSION_4_5 */ + +#ifndef GL_VERSION_4_6 +#define GL_VERSION_4_6 1 +#define GL_SHADER_BINARY_FORMAT_SPIR_V 0x9551 +#define GL_SPIR_V_BINARY 0x9552 +#define GL_PARAMETER_BUFFER 0x80EE +#define GL_PARAMETER_BUFFER_BINDING 0x80EF +#define GL_CONTEXT_FLAG_NO_ERROR_BIT 0x00000008 +#define GL_VERTICES_SUBMITTED 0x82EE +#define GL_PRIMITIVES_SUBMITTED 0x82EF +#define GL_VERTEX_SHADER_INVOCATIONS 0x82F0 +#define GL_TESS_CONTROL_SHADER_PATCHES 0x82F1 +#define GL_TESS_EVALUATION_SHADER_INVOCATIONS 0x82F2 +#define GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED 0x82F3 +#define GL_FRAGMENT_SHADER_INVOCATIONS 0x82F4 +#define GL_COMPUTE_SHADER_INVOCATIONS 0x82F5 +#define GL_CLIPPING_INPUT_PRIMITIVES 0x82F6 +#define GL_CLIPPING_OUTPUT_PRIMITIVES 0x82F7 +#define GL_POLYGON_OFFSET_CLAMP 0x8E1B +#define GL_SPIR_V_EXTENSIONS 0x9553 +#define GL_NUM_SPIR_V_EXTENSIONS 0x9554 +#define GL_TEXTURE_MAX_ANISOTROPY 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY 0x84FF +#define GL_TRANSFORM_FEEDBACK_OVERFLOW 0x82EC +#define GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW 0x82ED +typedef void (APIENTRYP PFNGLSPECIALIZESHADERPROC) (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTCOUNTPROC) (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTPROC) (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLPOLYGONOFFSETCLAMPPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpecializeShader (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +GLAPI void APIENTRY glMultiDrawArraysIndirectCount (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectCount (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glPolygonOffsetClamp (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_VERSION_4_6 */ + +#ifndef GL_ARB_ES2_compatibility +#define GL_ARB_ES2_compatibility 1 +#endif /* GL_ARB_ES2_compatibility */ + +#ifndef GL_ARB_ES3_1_compatibility +#define GL_ARB_ES3_1_compatibility 1 +#endif /* GL_ARB_ES3_1_compatibility */ + +#ifndef GL_ARB_ES3_2_compatibility +#define GL_ARB_ES3_2_compatibility 1 +#define GL_PRIMITIVE_BOUNDING_BOX_ARB 0x92BE +#define GL_MULTISAMPLE_LINE_WIDTH_RANGE_ARB 0x9381 +#define GL_MULTISAMPLE_LINE_WIDTH_GRANULARITY_ARB 0x9382 +typedef void (APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXARBPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPrimitiveBoundingBoxARB (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_ARB_ES3_2_compatibility */ + +#ifndef GL_ARB_ES3_compatibility +#define GL_ARB_ES3_compatibility 1 +#endif /* GL_ARB_ES3_compatibility */ + +#ifndef GL_ARB_arrays_of_arrays +#define GL_ARB_arrays_of_arrays 1 +#endif /* GL_ARB_arrays_of_arrays */ + +#ifndef GL_ARB_base_instance +#define GL_ARB_base_instance 1 +#endif /* GL_ARB_base_instance */ + +#ifndef GL_ARB_bindless_texture +#define GL_ARB_bindless_texture 1 +typedef khronos_uint64_t GLuint64EXT; +#define GL_UNSIGNED_INT64_ARB 0x140F +typedef GLuint64 (APIENTRYP PFNGLGETTEXTUREHANDLEARBPROC) (GLuint texture); +typedef GLuint64 (APIENTRYP PFNGLGETTEXTURESAMPLERHANDLEARBPROC) (GLuint texture, GLuint sampler); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLENONRESIDENTARBPROC) (GLuint64 handle); +typedef GLuint64 (APIENTRYP PFNGLGETIMAGEHANDLEARBPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLERESIDENTARBPROC) (GLuint64 handle, GLenum access); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLENONRESIDENTARBPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64ARBPROC) (GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64ARBPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +typedef GLboolean (APIENTRYP PFNGLISTEXTUREHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef GLboolean (APIENTRYP PFNGLISIMAGEHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64ARBPROC) (GLuint index, GLuint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64VARBPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLUI64VARBPROC) (GLuint index, GLenum pname, GLuint64EXT *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint64 APIENTRY glGetTextureHandleARB (GLuint texture); +GLAPI GLuint64 APIENTRY glGetTextureSamplerHandleARB (GLuint texture, GLuint sampler); +GLAPI void APIENTRY glMakeTextureHandleResidentARB (GLuint64 handle); +GLAPI void APIENTRY glMakeTextureHandleNonResidentARB (GLuint64 handle); +GLAPI GLuint64 APIENTRY glGetImageHandleARB (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +GLAPI void APIENTRY glMakeImageHandleResidentARB (GLuint64 handle, GLenum access); +GLAPI void APIENTRY glMakeImageHandleNonResidentARB (GLuint64 handle); +GLAPI void APIENTRY glUniformHandleui64ARB (GLint location, GLuint64 value); +GLAPI void APIENTRY glUniformHandleui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniformHandleui64ARB (GLuint program, GLint location, GLuint64 value); +GLAPI void APIENTRY glProgramUniformHandleui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +GLAPI GLboolean APIENTRY glIsTextureHandleResidentARB (GLuint64 handle); +GLAPI GLboolean APIENTRY glIsImageHandleResidentARB (GLuint64 handle); +GLAPI void APIENTRY glVertexAttribL1ui64ARB (GLuint index, GLuint64EXT x); +GLAPI void APIENTRY glVertexAttribL1ui64vARB (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glGetVertexAttribLui64vARB (GLuint index, GLenum pname, GLuint64EXT *params); +#endif +#endif /* GL_ARB_bindless_texture */ + +#ifndef GL_ARB_blend_func_extended +#define GL_ARB_blend_func_extended 1 +#endif /* GL_ARB_blend_func_extended */ + +#ifndef GL_ARB_buffer_storage +#define GL_ARB_buffer_storage 1 +#endif /* GL_ARB_buffer_storage */ + +#ifndef GL_ARB_cl_event +#define GL_ARB_cl_event 1 +struct _cl_context; +struct _cl_event; +#define GL_SYNC_CL_EVENT_ARB 0x8240 +#define GL_SYNC_CL_EVENT_COMPLETE_ARB 0x8241 +typedef GLsync (APIENTRYP PFNGLCREATESYNCFROMCLEVENTARBPROC) (struct _cl_context *context, struct _cl_event *event, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLsync APIENTRY glCreateSyncFromCLeventARB (struct _cl_context *context, struct _cl_event *event, GLbitfield flags); +#endif +#endif /* GL_ARB_cl_event */ + +#ifndef GL_ARB_clear_buffer_object +#define GL_ARB_clear_buffer_object 1 +#endif /* GL_ARB_clear_buffer_object */ + +#ifndef GL_ARB_clear_texture +#define GL_ARB_clear_texture 1 +#endif /* GL_ARB_clear_texture */ + +#ifndef GL_ARB_clip_control +#define GL_ARB_clip_control 1 +#endif /* GL_ARB_clip_control */ + +#ifndef GL_ARB_color_buffer_float +#define GL_ARB_color_buffer_float 1 +#define GL_RGBA_FLOAT_MODE_ARB 0x8820 +#define GL_CLAMP_VERTEX_COLOR_ARB 0x891A +#define GL_CLAMP_FRAGMENT_COLOR_ARB 0x891B +#define GL_CLAMP_READ_COLOR_ARB 0x891C +#define GL_FIXED_ONLY_ARB 0x891D +typedef void (APIENTRYP PFNGLCLAMPCOLORARBPROC) (GLenum target, GLenum clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClampColorARB (GLenum target, GLenum clamp); +#endif +#endif /* GL_ARB_color_buffer_float */ + +#ifndef GL_ARB_compatibility +#define GL_ARB_compatibility 1 +#endif /* GL_ARB_compatibility */ + +#ifndef GL_ARB_compressed_texture_pixel_storage +#define GL_ARB_compressed_texture_pixel_storage 1 +#endif /* GL_ARB_compressed_texture_pixel_storage */ + +#ifndef GL_ARB_compute_shader +#define GL_ARB_compute_shader 1 +#endif /* GL_ARB_compute_shader */ + +#ifndef GL_ARB_compute_variable_group_size +#define GL_ARB_compute_variable_group_size 1 +#define GL_MAX_COMPUTE_VARIABLE_GROUP_INVOCATIONS_ARB 0x9344 +#define GL_MAX_COMPUTE_FIXED_GROUP_INVOCATIONS_ARB 0x90EB +#define GL_MAX_COMPUTE_VARIABLE_GROUP_SIZE_ARB 0x9345 +#define GL_MAX_COMPUTE_FIXED_GROUP_SIZE_ARB 0x91BF +typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEGROUPSIZEARBPROC) (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z, GLuint group_size_x, GLuint group_size_y, GLuint group_size_z); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDispatchComputeGroupSizeARB (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z, GLuint group_size_x, GLuint group_size_y, GLuint group_size_z); +#endif +#endif /* GL_ARB_compute_variable_group_size */ + +#ifndef GL_ARB_conditional_render_inverted +#define GL_ARB_conditional_render_inverted 1 +#endif /* GL_ARB_conditional_render_inverted */ + +#ifndef GL_ARB_conservative_depth +#define GL_ARB_conservative_depth 1 +#endif /* GL_ARB_conservative_depth */ + +#ifndef GL_ARB_copy_buffer +#define GL_ARB_copy_buffer 1 +#endif /* GL_ARB_copy_buffer */ + +#ifndef GL_ARB_copy_image +#define GL_ARB_copy_image 1 +#endif /* GL_ARB_copy_image */ + +#ifndef GL_ARB_cull_distance +#define GL_ARB_cull_distance 1 +#endif /* GL_ARB_cull_distance */ + +#ifndef GL_ARB_debug_output +#define GL_ARB_debug_output 1 +typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +#define GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_ARB 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION_ARB 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM_ARB 0x8245 +#define GL_DEBUG_SOURCE_API_ARB 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_ARB 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER_ARB 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY_ARB 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION_ARB 0x824A +#define GL_DEBUG_SOURCE_OTHER_ARB 0x824B +#define GL_DEBUG_TYPE_ERROR_ARB 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB 0x824E +#define GL_DEBUG_TYPE_PORTABILITY_ARB 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE_ARB 0x8250 +#define GL_DEBUG_TYPE_OTHER_ARB 0x8251 +#define GL_MAX_DEBUG_MESSAGE_LENGTH_ARB 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_ARB 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_ARB 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_ARB 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_ARB 0x9147 +#define GL_DEBUG_SEVERITY_LOW_ARB 0x9148 +typedef void (APIENTRYP PFNGLDEBUGMESSAGECONTROLARBPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTARBPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKARBPROC) (GLDEBUGPROCARB callback, const void *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGARBPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDebugMessageControlARB (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsertARB (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallbackARB (GLDEBUGPROCARB callback, const void *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLogARB (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +#endif +#endif /* GL_ARB_debug_output */ + +#ifndef GL_ARB_depth_buffer_float +#define GL_ARB_depth_buffer_float 1 +#endif /* GL_ARB_depth_buffer_float */ + +#ifndef GL_ARB_depth_clamp +#define GL_ARB_depth_clamp 1 +#endif /* GL_ARB_depth_clamp */ + +#ifndef GL_ARB_depth_texture +#define GL_ARB_depth_texture 1 +#define GL_DEPTH_COMPONENT16_ARB 0x81A5 +#define GL_DEPTH_COMPONENT24_ARB 0x81A6 +#define GL_DEPTH_COMPONENT32_ARB 0x81A7 +#define GL_TEXTURE_DEPTH_SIZE_ARB 0x884A +#define GL_DEPTH_TEXTURE_MODE_ARB 0x884B +#endif /* GL_ARB_depth_texture */ + +#ifndef GL_ARB_derivative_control +#define GL_ARB_derivative_control 1 +#endif /* GL_ARB_derivative_control */ + +#ifndef GL_ARB_direct_state_access +#define GL_ARB_direct_state_access 1 +#endif /* GL_ARB_direct_state_access */ + +#ifndef GL_ARB_draw_buffers +#define GL_ARB_draw_buffers 1 +#define GL_MAX_DRAW_BUFFERS_ARB 0x8824 +#define GL_DRAW_BUFFER0_ARB 0x8825 +#define GL_DRAW_BUFFER1_ARB 0x8826 +#define GL_DRAW_BUFFER2_ARB 0x8827 +#define GL_DRAW_BUFFER3_ARB 0x8828 +#define GL_DRAW_BUFFER4_ARB 0x8829 +#define GL_DRAW_BUFFER5_ARB 0x882A +#define GL_DRAW_BUFFER6_ARB 0x882B +#define GL_DRAW_BUFFER7_ARB 0x882C +#define GL_DRAW_BUFFER8_ARB 0x882D +#define GL_DRAW_BUFFER9_ARB 0x882E +#define GL_DRAW_BUFFER10_ARB 0x882F +#define GL_DRAW_BUFFER11_ARB 0x8830 +#define GL_DRAW_BUFFER12_ARB 0x8831 +#define GL_DRAW_BUFFER13_ARB 0x8832 +#define GL_DRAW_BUFFER14_ARB 0x8833 +#define GL_DRAW_BUFFER15_ARB 0x8834 +typedef void (APIENTRYP PFNGLDRAWBUFFERSARBPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawBuffersARB (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_ARB_draw_buffers */ + +#ifndef GL_ARB_draw_buffers_blend +#define GL_ARB_draw_buffers_blend 1 +typedef void (APIENTRYP PFNGLBLENDEQUATIONIARBPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIARBPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLBLENDFUNCIARBPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIARBPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationiARB (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparateiARB (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glBlendFunciARB (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparateiARB (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +#endif +#endif /* GL_ARB_draw_buffers_blend */ + +#ifndef GL_ARB_draw_elements_base_vertex +#define GL_ARB_draw_elements_base_vertex 1 +#endif /* GL_ARB_draw_elements_base_vertex */ + +#ifndef GL_ARB_draw_indirect +#define GL_ARB_draw_indirect 1 +#endif /* GL_ARB_draw_indirect */ + +#ifndef GL_ARB_draw_instanced +#define GL_ARB_draw_instanced 1 +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDARBPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDARBPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedARB (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GLAPI void APIENTRY glDrawElementsInstancedARB (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_ARB_draw_instanced */ + +#ifndef GL_ARB_enhanced_layouts +#define GL_ARB_enhanced_layouts 1 +#endif /* GL_ARB_enhanced_layouts */ + +#ifndef GL_ARB_explicit_attrib_location +#define GL_ARB_explicit_attrib_location 1 +#endif /* GL_ARB_explicit_attrib_location */ + +#ifndef GL_ARB_explicit_uniform_location +#define GL_ARB_explicit_uniform_location 1 +#endif /* GL_ARB_explicit_uniform_location */ + +#ifndef GL_ARB_fragment_coord_conventions +#define GL_ARB_fragment_coord_conventions 1 +#endif /* GL_ARB_fragment_coord_conventions */ + +#ifndef GL_ARB_fragment_layer_viewport +#define GL_ARB_fragment_layer_viewport 1 +#endif /* GL_ARB_fragment_layer_viewport */ + +#ifndef GL_ARB_fragment_program +#define GL_ARB_fragment_program 1 +#define GL_FRAGMENT_PROGRAM_ARB 0x8804 +#define GL_PROGRAM_FORMAT_ASCII_ARB 0x8875 +#define GL_PROGRAM_LENGTH_ARB 0x8627 +#define GL_PROGRAM_FORMAT_ARB 0x8876 +#define GL_PROGRAM_BINDING_ARB 0x8677 +#define GL_PROGRAM_INSTRUCTIONS_ARB 0x88A0 +#define GL_MAX_PROGRAM_INSTRUCTIONS_ARB 0x88A1 +#define GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A2 +#define GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A3 +#define GL_PROGRAM_TEMPORARIES_ARB 0x88A4 +#define GL_MAX_PROGRAM_TEMPORARIES_ARB 0x88A5 +#define GL_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A6 +#define GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A7 +#define GL_PROGRAM_PARAMETERS_ARB 0x88A8 +#define GL_MAX_PROGRAM_PARAMETERS_ARB 0x88A9 +#define GL_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AA +#define GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AB +#define GL_PROGRAM_ATTRIBS_ARB 0x88AC +#define GL_MAX_PROGRAM_ATTRIBS_ARB 0x88AD +#define GL_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AE +#define GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AF +#define GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB 0x88B4 +#define GL_MAX_PROGRAM_ENV_PARAMETERS_ARB 0x88B5 +#define GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB 0x88B6 +#define GL_PROGRAM_ALU_INSTRUCTIONS_ARB 0x8805 +#define GL_PROGRAM_TEX_INSTRUCTIONS_ARB 0x8806 +#define GL_PROGRAM_TEX_INDIRECTIONS_ARB 0x8807 +#define GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x8808 +#define GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x8809 +#define GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x880A +#define GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB 0x880B +#define GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB 0x880C +#define GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB 0x880D +#define GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x880E +#define GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x880F +#define GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x8810 +#define GL_PROGRAM_STRING_ARB 0x8628 +#define GL_PROGRAM_ERROR_POSITION_ARB 0x864B +#define GL_CURRENT_MATRIX_ARB 0x8641 +#define GL_TRANSPOSE_CURRENT_MATRIX_ARB 0x88B7 +#define GL_CURRENT_MATRIX_STACK_DEPTH_ARB 0x8640 +#define GL_MAX_PROGRAM_MATRICES_ARB 0x862F +#define GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB 0x862E +#define GL_MAX_TEXTURE_COORDS_ARB 0x8871 +#define GL_MAX_TEXTURE_IMAGE_UNITS_ARB 0x8872 +#define GL_PROGRAM_ERROR_STRING_ARB 0x8874 +#define GL_MATRIX0_ARB 0x88C0 +#define GL_MATRIX1_ARB 0x88C1 +#define GL_MATRIX2_ARB 0x88C2 +#define GL_MATRIX3_ARB 0x88C3 +#define GL_MATRIX4_ARB 0x88C4 +#define GL_MATRIX5_ARB 0x88C5 +#define GL_MATRIX6_ARB 0x88C6 +#define GL_MATRIX7_ARB 0x88C7 +#define GL_MATRIX8_ARB 0x88C8 +#define GL_MATRIX9_ARB 0x88C9 +#define GL_MATRIX10_ARB 0x88CA +#define GL_MATRIX11_ARB 0x88CB +#define GL_MATRIX12_ARB 0x88CC +#define GL_MATRIX13_ARB 0x88CD +#define GL_MATRIX14_ARB 0x88CE +#define GL_MATRIX15_ARB 0x88CF +#define GL_MATRIX16_ARB 0x88D0 +#define GL_MATRIX17_ARB 0x88D1 +#define GL_MATRIX18_ARB 0x88D2 +#define GL_MATRIX19_ARB 0x88D3 +#define GL_MATRIX20_ARB 0x88D4 +#define GL_MATRIX21_ARB 0x88D5 +#define GL_MATRIX22_ARB 0x88D6 +#define GL_MATRIX23_ARB 0x88D7 +#define GL_MATRIX24_ARB 0x88D8 +#define GL_MATRIX25_ARB 0x88D9 +#define GL_MATRIX26_ARB 0x88DA +#define GL_MATRIX27_ARB 0x88DB +#define GL_MATRIX28_ARB 0x88DC +#define GL_MATRIX29_ARB 0x88DD +#define GL_MATRIX30_ARB 0x88DE +#define GL_MATRIX31_ARB 0x88DF +typedef void (APIENTRYP PFNGLPROGRAMSTRINGARBPROC) (GLenum target, GLenum format, GLsizei len, const void *string); +typedef void (APIENTRYP PFNGLBINDPROGRAMARBPROC) (GLenum target, GLuint program); +typedef void (APIENTRYP PFNGLDELETEPROGRAMSARBPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLGENPROGRAMSARBPROC) (GLsizei n, GLuint *programs); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGARBPROC) (GLenum target, GLenum pname, void *string); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMARBPROC) (GLuint program); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramStringARB (GLenum target, GLenum format, GLsizei len, const void *string); +GLAPI void APIENTRY glBindProgramARB (GLenum target, GLuint program); +GLAPI void APIENTRY glDeleteProgramsARB (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glGenProgramsARB (GLsizei n, GLuint *programs); +GLAPI void APIENTRY glProgramEnvParameter4dARB (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramEnvParameter4dvARB (GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glProgramEnvParameter4fARB (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramEnvParameter4fvARB (GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glProgramLocalParameter4dARB (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramLocalParameter4dvARB (GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glProgramLocalParameter4fARB (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramLocalParameter4fvARB (GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glGetProgramEnvParameterdvARB (GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetProgramEnvParameterfvARB (GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetProgramLocalParameterdvARB (GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetProgramLocalParameterfvARB (GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetProgramivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramStringARB (GLenum target, GLenum pname, void *string); +GLAPI GLboolean APIENTRY glIsProgramARB (GLuint program); +#endif +#endif /* GL_ARB_fragment_program */ + +#ifndef GL_ARB_fragment_program_shadow +#define GL_ARB_fragment_program_shadow 1 +#endif /* GL_ARB_fragment_program_shadow */ + +#ifndef GL_ARB_fragment_shader +#define GL_ARB_fragment_shader 1 +#define GL_FRAGMENT_SHADER_ARB 0x8B30 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB 0x8B49 +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB 0x8B8B +#endif /* GL_ARB_fragment_shader */ + +#ifndef GL_ARB_fragment_shader_interlock +#define GL_ARB_fragment_shader_interlock 1 +#endif /* GL_ARB_fragment_shader_interlock */ + +#ifndef GL_ARB_framebuffer_no_attachments +#define GL_ARB_framebuffer_no_attachments 1 +#endif /* GL_ARB_framebuffer_no_attachments */ + +#ifndef GL_ARB_framebuffer_object +#define GL_ARB_framebuffer_object 1 +#endif /* GL_ARB_framebuffer_object */ + +#ifndef GL_ARB_framebuffer_sRGB +#define GL_ARB_framebuffer_sRGB 1 +#endif /* GL_ARB_framebuffer_sRGB */ + +#ifndef GL_ARB_geometry_shader4 +#define GL_ARB_geometry_shader4 1 +#define GL_LINES_ADJACENCY_ARB 0x000A +#define GL_LINE_STRIP_ADJACENCY_ARB 0x000B +#define GL_TRIANGLES_ADJACENCY_ARB 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_ARB 0x000D +#define GL_PROGRAM_POINT_SIZE_ARB 0x8642 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_ARB 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB 0x8DA8 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB 0x8DA9 +#define GL_GEOMETRY_SHADER_ARB 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT_ARB 0x8DDA +#define GL_GEOMETRY_INPUT_TYPE_ARB 0x8DDB +#define GL_GEOMETRY_OUTPUT_TYPE_ARB 0x8DDC +#define GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB 0x8DDD +#define GL_MAX_VERTEX_VARYING_COMPONENTS_ARB 0x8DDE +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB 0x8DE1 +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIARBPROC) (GLuint program, GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREFACEARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramParameteriARB (GLuint program, GLenum pname, GLint value); +GLAPI void APIENTRY glFramebufferTextureARB (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTextureLayerARB (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glFramebufferTextureFaceARB (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#endif +#endif /* GL_ARB_geometry_shader4 */ + +#ifndef GL_ARB_get_program_binary +#define GL_ARB_get_program_binary 1 +#endif /* GL_ARB_get_program_binary */ + +#ifndef GL_ARB_get_texture_sub_image +#define GL_ARB_get_texture_sub_image 1 +#endif /* GL_ARB_get_texture_sub_image */ + +#ifndef GL_ARB_gl_spirv +#define GL_ARB_gl_spirv 1 +#define GL_SHADER_BINARY_FORMAT_SPIR_V_ARB 0x9551 +#define GL_SPIR_V_BINARY_ARB 0x9552 +typedef void (APIENTRYP PFNGLSPECIALIZESHADERARBPROC) (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpecializeShaderARB (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +#endif +#endif /* GL_ARB_gl_spirv */ + +#ifndef GL_ARB_gpu_shader5 +#define GL_ARB_gpu_shader5 1 +#endif /* GL_ARB_gpu_shader5 */ + +#ifndef GL_ARB_gpu_shader_fp64 +#define GL_ARB_gpu_shader_fp64 1 +#endif /* GL_ARB_gpu_shader_fp64 */ + +#ifndef GL_ARB_gpu_shader_int64 +#define GL_ARB_gpu_shader_int64 1 +#define GL_INT64_ARB 0x140E +#define GL_INT64_VEC2_ARB 0x8FE9 +#define GL_INT64_VEC3_ARB 0x8FEA +#define GL_INT64_VEC4_ARB 0x8FEB +#define GL_UNSIGNED_INT64_VEC2_ARB 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_ARB 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_ARB 0x8FF7 +typedef void (APIENTRYP PFNGLUNIFORM1I64ARBPROC) (GLint location, GLint64 x); +typedef void (APIENTRYP PFNGLUNIFORM2I64ARBPROC) (GLint location, GLint64 x, GLint64 y); +typedef void (APIENTRYP PFNGLUNIFORM3I64ARBPROC) (GLint location, GLint64 x, GLint64 y, GLint64 z); +typedef void (APIENTRYP PFNGLUNIFORM4I64ARBPROC) (GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +typedef void (APIENTRYP PFNGLUNIFORM1I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM2I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM3I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM4I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM1UI64ARBPROC) (GLint location, GLuint64 x); +typedef void (APIENTRYP PFNGLUNIFORM2UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y); +typedef void (APIENTRYP PFNGLUNIFORM3UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +typedef void (APIENTRYP PFNGLUNIFORM4UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +typedef void (APIENTRYP PFNGLUNIFORM1UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM2UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM3UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM4UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLGETUNIFORMI64VARBPROC) (GLuint program, GLint location, GLint64 *params); +typedef void (APIENTRYP PFNGLGETUNIFORMUI64VARBPROC) (GLuint program, GLint location, GLuint64 *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMI64VARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLint64 *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUI64VARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint64 *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64ARBPROC) (GLuint program, GLint location, GLint64 x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64ARBPROC) (GLuint program, GLint location, GLuint64 x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniform1i64ARB (GLint location, GLint64 x); +GLAPI void APIENTRY glUniform2i64ARB (GLint location, GLint64 x, GLint64 y); +GLAPI void APIENTRY glUniform3i64ARB (GLint location, GLint64 x, GLint64 y, GLint64 z); +GLAPI void APIENTRY glUniform4i64ARB (GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +GLAPI void APIENTRY glUniform1i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform2i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform3i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform4i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform1ui64ARB (GLint location, GLuint64 x); +GLAPI void APIENTRY glUniform2ui64ARB (GLint location, GLuint64 x, GLuint64 y); +GLAPI void APIENTRY glUniform3ui64ARB (GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +GLAPI void APIENTRY glUniform4ui64ARB (GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +GLAPI void APIENTRY glUniform1ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform2ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform3ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform4ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glGetUniformi64vARB (GLuint program, GLint location, GLint64 *params); +GLAPI void APIENTRY glGetUniformui64vARB (GLuint program, GLint location, GLuint64 *params); +GLAPI void APIENTRY glGetnUniformi64vARB (GLuint program, GLint location, GLsizei bufSize, GLint64 *params); +GLAPI void APIENTRY glGetnUniformui64vARB (GLuint program, GLint location, GLsizei bufSize, GLuint64 *params); +GLAPI void APIENTRY glProgramUniform1i64ARB (GLuint program, GLint location, GLint64 x); +GLAPI void APIENTRY glProgramUniform2i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y); +GLAPI void APIENTRY glProgramUniform3i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z); +GLAPI void APIENTRY glProgramUniform4i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +GLAPI void APIENTRY glProgramUniform1i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform2i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform3i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform4i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform1ui64ARB (GLuint program, GLint location, GLuint64 x); +GLAPI void APIENTRY glProgramUniform2ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y); +GLAPI void APIENTRY glProgramUniform3ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +GLAPI void APIENTRY glProgramUniform4ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +GLAPI void APIENTRY glProgramUniform1ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform2ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform3ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform4ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +#endif +#endif /* GL_ARB_gpu_shader_int64 */ + +#ifndef GL_ARB_half_float_pixel +#define GL_ARB_half_float_pixel 1 +typedef khronos_uint16_t GLhalfARB; +#define GL_HALF_FLOAT_ARB 0x140B +#endif /* GL_ARB_half_float_pixel */ + +#ifndef GL_ARB_half_float_vertex +#define GL_ARB_half_float_vertex 1 +#endif /* GL_ARB_half_float_vertex */ + +#ifndef GL_ARB_imaging +#define GL_ARB_imaging 1 +#define GL_CONVOLUTION_BORDER_MODE 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS 0x8015 +#define GL_REDUCE 0x8016 +#define GL_CONVOLUTION_FORMAT 0x8017 +#define GL_CONVOLUTION_WIDTH 0x8018 +#define GL_CONVOLUTION_HEIGHT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023 +#define GL_HISTOGRAM_WIDTH 0x8026 +#define GL_HISTOGRAM_FORMAT 0x8027 +#define GL_HISTOGRAM_RED_SIZE 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C +#define GL_HISTOGRAM_SINK 0x802D +#define GL_MINMAX_FORMAT 0x802F +#define GL_MINMAX_SINK 0x8030 +#define GL_TABLE_TOO_LARGE 0x8031 +#define GL_COLOR_MATRIX 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB +#define GL_COLOR_TABLE_SCALE 0x80D6 +#define GL_COLOR_TABLE_BIAS 0x80D7 +#define GL_COLOR_TABLE_FORMAT 0x80D8 +#define GL_COLOR_TABLE_WIDTH 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF +#define GL_CONSTANT_BORDER 0x8151 +#define GL_REPLICATE_BORDER 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR 0x8154 +typedef void (APIENTRYP PFNGLCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, void *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIPROC) (GLenum target, GLenum pname, GLint params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, void *image); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLHISTOGRAMPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLMINMAXPROC) (GLenum target, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLRESETHISTOGRAMPROC) (GLenum target); +typedef void (APIENTRYP PFNGLRESETMINMAXPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTable (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +GLAPI void APIENTRY glColorTableParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glColorTableParameteriv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyColorTable (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glGetColorTable (GLenum target, GLenum format, GLenum type, void *table); +GLAPI void APIENTRY glGetColorTableParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetColorTableParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glColorSubTable (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glCopyColorSubTable (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glConvolutionFilter1D (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionFilter2D (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionParameterf (GLenum target, GLenum pname, GLfloat params); +GLAPI void APIENTRY glConvolutionParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glConvolutionParameteri (GLenum target, GLenum pname, GLint params); +GLAPI void APIENTRY glConvolutionParameteriv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyConvolutionFilter1D (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyConvolutionFilter2D (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetConvolutionFilter (GLenum target, GLenum format, GLenum type, void *image); +GLAPI void APIENTRY glGetConvolutionParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetConvolutionParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSeparableFilter (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +GLAPI void APIENTRY glSeparableFilter2D (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +GLAPI void APIENTRY glGetHistogram (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetHistogramParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetHistogramParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMinmax (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetMinmaxParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMinmaxParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glHistogram (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glMinmax (GLenum target, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glResetHistogram (GLenum target); +GLAPI void APIENTRY glResetMinmax (GLenum target); +#endif +#endif /* GL_ARB_imaging */ + +#ifndef GL_ARB_indirect_parameters +#define GL_ARB_indirect_parameters 1 +#define GL_PARAMETER_BUFFER_ARB 0x80EE +#define GL_PARAMETER_BUFFER_BINDING_ARB 0x80EF +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTCOUNTARBPROC) (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTARBPROC) (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectCountARB (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectCountARB (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_ARB_indirect_parameters */ + +#ifndef GL_ARB_instanced_arrays +#define GL_ARB_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB 0x88FE +typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORARBPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribDivisorARB (GLuint index, GLuint divisor); +#endif +#endif /* GL_ARB_instanced_arrays */ + +#ifndef GL_ARB_internalformat_query +#define GL_ARB_internalformat_query 1 +#endif /* GL_ARB_internalformat_query */ + +#ifndef GL_ARB_internalformat_query2 +#define GL_ARB_internalformat_query2 1 +#define GL_SRGB_DECODE_ARB 0x8299 +#define GL_VIEW_CLASS_EAC_R11 0x9383 +#define GL_VIEW_CLASS_EAC_RG11 0x9384 +#define GL_VIEW_CLASS_ETC2_RGB 0x9385 +#define GL_VIEW_CLASS_ETC2_RGBA 0x9386 +#define GL_VIEW_CLASS_ETC2_EAC_RGBA 0x9387 +#define GL_VIEW_CLASS_ASTC_4x4_RGBA 0x9388 +#define GL_VIEW_CLASS_ASTC_5x4_RGBA 0x9389 +#define GL_VIEW_CLASS_ASTC_5x5_RGBA 0x938A +#define GL_VIEW_CLASS_ASTC_6x5_RGBA 0x938B +#define GL_VIEW_CLASS_ASTC_6x6_RGBA 0x938C +#define GL_VIEW_CLASS_ASTC_8x5_RGBA 0x938D +#define GL_VIEW_CLASS_ASTC_8x6_RGBA 0x938E +#define GL_VIEW_CLASS_ASTC_8x8_RGBA 0x938F +#define GL_VIEW_CLASS_ASTC_10x5_RGBA 0x9390 +#define GL_VIEW_CLASS_ASTC_10x6_RGBA 0x9391 +#define GL_VIEW_CLASS_ASTC_10x8_RGBA 0x9392 +#define GL_VIEW_CLASS_ASTC_10x10_RGBA 0x9393 +#define GL_VIEW_CLASS_ASTC_12x10_RGBA 0x9394 +#define GL_VIEW_CLASS_ASTC_12x12_RGBA 0x9395 +#endif /* GL_ARB_internalformat_query2 */ + +#ifndef GL_ARB_invalidate_subdata +#define GL_ARB_invalidate_subdata 1 +#endif /* GL_ARB_invalidate_subdata */ + +#ifndef GL_ARB_map_buffer_alignment +#define GL_ARB_map_buffer_alignment 1 +#endif /* GL_ARB_map_buffer_alignment */ + +#ifndef GL_ARB_map_buffer_range +#define GL_ARB_map_buffer_range 1 +#endif /* GL_ARB_map_buffer_range */ + +#ifndef GL_ARB_matrix_palette +#define GL_ARB_matrix_palette 1 +#define GL_MATRIX_PALETTE_ARB 0x8840 +#define GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB 0x8841 +#define GL_MAX_PALETTE_MATRICES_ARB 0x8842 +#define GL_CURRENT_PALETTE_MATRIX_ARB 0x8843 +#define GL_MATRIX_INDEX_ARRAY_ARB 0x8844 +#define GL_CURRENT_MATRIX_INDEX_ARB 0x8845 +#define GL_MATRIX_INDEX_ARRAY_SIZE_ARB 0x8846 +#define GL_MATRIX_INDEX_ARRAY_TYPE_ARB 0x8847 +#define GL_MATRIX_INDEX_ARRAY_STRIDE_ARB 0x8848 +#define GL_MATRIX_INDEX_ARRAY_POINTER_ARB 0x8849 +typedef void (APIENTRYP PFNGLCURRENTPALETTEMATRIXARBPROC) (GLint index); +typedef void (APIENTRYP PFNGLMATRIXINDEXUBVARBPROC) (GLint size, const GLubyte *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXUSVARBPROC) (GLint size, const GLushort *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXUIVARBPROC) (GLint size, const GLuint *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCurrentPaletteMatrixARB (GLint index); +GLAPI void APIENTRY glMatrixIndexubvARB (GLint size, const GLubyte *indices); +GLAPI void APIENTRY glMatrixIndexusvARB (GLint size, const GLushort *indices); +GLAPI void APIENTRY glMatrixIndexuivARB (GLint size, const GLuint *indices); +GLAPI void APIENTRY glMatrixIndexPointerARB (GLint size, GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_ARB_matrix_palette */ + +#ifndef GL_ARB_multi_bind +#define GL_ARB_multi_bind 1 +#endif /* GL_ARB_multi_bind */ + +#ifndef GL_ARB_multi_draw_indirect +#define GL_ARB_multi_draw_indirect 1 +#endif /* GL_ARB_multi_draw_indirect */ + +#ifndef GL_ARB_multisample +#define GL_ARB_multisample 1 +#define GL_MULTISAMPLE_ARB 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE_ARB 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_ARB 0x809F +#define GL_SAMPLE_COVERAGE_ARB 0x80A0 +#define GL_SAMPLE_BUFFERS_ARB 0x80A8 +#define GL_SAMPLES_ARB 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE_ARB 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT_ARB 0x80AB +#define GL_MULTISAMPLE_BIT_ARB 0x20000000 +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEARBPROC) (GLfloat value, GLboolean invert); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleCoverageARB (GLfloat value, GLboolean invert); +#endif +#endif /* GL_ARB_multisample */ + +#ifndef GL_ARB_multitexture +#define GL_ARB_multitexture 1 +#define GL_TEXTURE0_ARB 0x84C0 +#define GL_TEXTURE1_ARB 0x84C1 +#define GL_TEXTURE2_ARB 0x84C2 +#define GL_TEXTURE3_ARB 0x84C3 +#define GL_TEXTURE4_ARB 0x84C4 +#define GL_TEXTURE5_ARB 0x84C5 +#define GL_TEXTURE6_ARB 0x84C6 +#define GL_TEXTURE7_ARB 0x84C7 +#define GL_TEXTURE8_ARB 0x84C8 +#define GL_TEXTURE9_ARB 0x84C9 +#define GL_TEXTURE10_ARB 0x84CA +#define GL_TEXTURE11_ARB 0x84CB +#define GL_TEXTURE12_ARB 0x84CC +#define GL_TEXTURE13_ARB 0x84CD +#define GL_TEXTURE14_ARB 0x84CE +#define GL_TEXTURE15_ARB 0x84CF +#define GL_TEXTURE16_ARB 0x84D0 +#define GL_TEXTURE17_ARB 0x84D1 +#define GL_TEXTURE18_ARB 0x84D2 +#define GL_TEXTURE19_ARB 0x84D3 +#define GL_TEXTURE20_ARB 0x84D4 +#define GL_TEXTURE21_ARB 0x84D5 +#define GL_TEXTURE22_ARB 0x84D6 +#define GL_TEXTURE23_ARB 0x84D7 +#define GL_TEXTURE24_ARB 0x84D8 +#define GL_TEXTURE25_ARB 0x84D9 +#define GL_TEXTURE26_ARB 0x84DA +#define GL_TEXTURE27_ARB 0x84DB +#define GL_TEXTURE28_ARB 0x84DC +#define GL_TEXTURE29_ARB 0x84DD +#define GL_TEXTURE30_ARB 0x84DE +#define GL_TEXTURE31_ARB 0x84DF +#define GL_ACTIVE_TEXTURE_ARB 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1 +#define GL_MAX_TEXTURE_UNITS_ARB 0x84E2 +typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveTextureARB (GLenum texture); +GLAPI void APIENTRY glClientActiveTextureARB (GLenum texture); +GLAPI void APIENTRY glMultiTexCoord1dARB (GLenum target, GLdouble s); +GLAPI void APIENTRY glMultiTexCoord1dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord1fARB (GLenum target, GLfloat s); +GLAPI void APIENTRY glMultiTexCoord1fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord1iARB (GLenum target, GLint s); +GLAPI void APIENTRY glMultiTexCoord1ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord1sARB (GLenum target, GLshort s); +GLAPI void APIENTRY glMultiTexCoord1svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord2dARB (GLenum target, GLdouble s, GLdouble t); +GLAPI void APIENTRY glMultiTexCoord2dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord2fARB (GLenum target, GLfloat s, GLfloat t); +GLAPI void APIENTRY glMultiTexCoord2fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord2iARB (GLenum target, GLint s, GLint t); +GLAPI void APIENTRY glMultiTexCoord2ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord2sARB (GLenum target, GLshort s, GLshort t); +GLAPI void APIENTRY glMultiTexCoord2svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord3dARB (GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void APIENTRY glMultiTexCoord3dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord3fARB (GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void APIENTRY glMultiTexCoord3fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord3iARB (GLenum target, GLint s, GLint t, GLint r); +GLAPI void APIENTRY glMultiTexCoord3ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord3sARB (GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void APIENTRY glMultiTexCoord3svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord4dARB (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void APIENTRY glMultiTexCoord4dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord4fARB (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void APIENTRY glMultiTexCoord4fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord4iARB (GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void APIENTRY glMultiTexCoord4ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord4sARB (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void APIENTRY glMultiTexCoord4svARB (GLenum target, const GLshort *v); +#endif +#endif /* GL_ARB_multitexture */ + +#ifndef GL_ARB_occlusion_query +#define GL_ARB_occlusion_query 1 +#define GL_QUERY_COUNTER_BITS_ARB 0x8864 +#define GL_CURRENT_QUERY_ARB 0x8865 +#define GL_QUERY_RESULT_ARB 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_ARB 0x8867 +#define GL_SAMPLES_PASSED_ARB 0x8914 +typedef void (APIENTRYP PFNGLGENQUERIESARBPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEQUERIESARBPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISQUERYARBPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINQUERYARBPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYARBPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVARBPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVARBPROC) (GLuint id, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueriesARB (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteQueriesARB (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsQueryARB (GLuint id); +GLAPI void APIENTRY glBeginQueryARB (GLenum target, GLuint id); +GLAPI void APIENTRY glEndQueryARB (GLenum target); +GLAPI void APIENTRY glGetQueryivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectivARB (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectuivARB (GLuint id, GLenum pname, GLuint *params); +#endif +#endif /* GL_ARB_occlusion_query */ + +#ifndef GL_ARB_occlusion_query2 +#define GL_ARB_occlusion_query2 1 +#endif /* GL_ARB_occlusion_query2 */ + +#ifndef GL_ARB_parallel_shader_compile +#define GL_ARB_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_ARB 0x91B0 +#define GL_COMPLETION_STATUS_ARB 0x91B1 +typedef void (APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSARBPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMaxShaderCompilerThreadsARB (GLuint count); +#endif +#endif /* GL_ARB_parallel_shader_compile */ + +#ifndef GL_ARB_pipeline_statistics_query +#define GL_ARB_pipeline_statistics_query 1 +#define GL_VERTICES_SUBMITTED_ARB 0x82EE +#define GL_PRIMITIVES_SUBMITTED_ARB 0x82EF +#define GL_VERTEX_SHADER_INVOCATIONS_ARB 0x82F0 +#define GL_TESS_CONTROL_SHADER_PATCHES_ARB 0x82F1 +#define GL_TESS_EVALUATION_SHADER_INVOCATIONS_ARB 0x82F2 +#define GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED_ARB 0x82F3 +#define GL_FRAGMENT_SHADER_INVOCATIONS_ARB 0x82F4 +#define GL_COMPUTE_SHADER_INVOCATIONS_ARB 0x82F5 +#define GL_CLIPPING_INPUT_PRIMITIVES_ARB 0x82F6 +#define GL_CLIPPING_OUTPUT_PRIMITIVES_ARB 0x82F7 +#endif /* GL_ARB_pipeline_statistics_query */ + +#ifndef GL_ARB_pixel_buffer_object +#define GL_ARB_pixel_buffer_object 1 +#define GL_PIXEL_PACK_BUFFER_ARB 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_ARB 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_ARB 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_ARB 0x88EF +#endif /* GL_ARB_pixel_buffer_object */ + +#ifndef GL_ARB_point_parameters +#define GL_ARB_point_parameters 1 +#define GL_POINT_SIZE_MIN_ARB 0x8126 +#define GL_POINT_SIZE_MAX_ARB 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_ARB 0x8128 +#define GL_POINT_DISTANCE_ATTENUATION_ARB 0x8129 +typedef void (APIENTRYP PFNGLPOINTPARAMETERFARBPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVARBPROC) (GLenum pname, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfARB (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvARB (GLenum pname, const GLfloat *params); +#endif +#endif /* GL_ARB_point_parameters */ + +#ifndef GL_ARB_point_sprite +#define GL_ARB_point_sprite 1 +#define GL_POINT_SPRITE_ARB 0x8861 +#define GL_COORD_REPLACE_ARB 0x8862 +#endif /* GL_ARB_point_sprite */ + +#ifndef GL_ARB_polygon_offset_clamp +#define GL_ARB_polygon_offset_clamp 1 +#endif /* GL_ARB_polygon_offset_clamp */ + +#ifndef GL_ARB_post_depth_coverage +#define GL_ARB_post_depth_coverage 1 +#endif /* GL_ARB_post_depth_coverage */ + +#ifndef GL_ARB_program_interface_query +#define GL_ARB_program_interface_query 1 +#endif /* GL_ARB_program_interface_query */ + +#ifndef GL_ARB_provoking_vertex +#define GL_ARB_provoking_vertex 1 +#endif /* GL_ARB_provoking_vertex */ + +#ifndef GL_ARB_query_buffer_object +#define GL_ARB_query_buffer_object 1 +#endif /* GL_ARB_query_buffer_object */ + +#ifndef GL_ARB_robust_buffer_access_behavior +#define GL_ARB_robust_buffer_access_behavior 1 +#endif /* GL_ARB_robust_buffer_access_behavior */ + +#ifndef GL_ARB_robustness +#define GL_ARB_robustness 1 +#define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB 0x00000004 +#define GL_LOSE_CONTEXT_ON_RESET_ARB 0x8252 +#define GL_GUILTY_CONTEXT_RESET_ARB 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_ARB 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_ARB 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 +#define GL_NO_RESET_NOTIFICATION_ARB 0x8261 +typedef GLenum (APIENTRYP PFNGLGETGRAPHICSRESETSTATUSARBPROC) (void); +typedef void (APIENTRYP PFNGLGETNTEXIMAGEARBPROC) (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *img); +typedef void (APIENTRYP PFNGLREADNPIXELSARBPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (APIENTRYP PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint lod, GLsizei bufSize, void *img); +typedef void (APIENTRYP PFNGLGETNUNIFORMFVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMDVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNMAPDVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +typedef void (APIENTRYP PFNGLGETNMAPFVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLGETNMAPIVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +typedef void (APIENTRYP PFNGLGETNPIXELMAPFVARBPROC) (GLenum map, GLsizei bufSize, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVARBPROC) (GLenum map, GLsizei bufSize, GLuint *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUSVARBPROC) (GLenum map, GLsizei bufSize, GLushort *values); +typedef void (APIENTRYP PFNGLGETNPOLYGONSTIPPLEARBPROC) (GLsizei bufSize, GLubyte *pattern); +typedef void (APIENTRYP PFNGLGETNCOLORTABLEARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +typedef void (APIENTRYP PFNGLGETNCONVOLUTIONFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +typedef void (APIENTRYP PFNGLGETNSEPARABLEFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +typedef void (APIENTRYP PFNGLGETNHISTOGRAMARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLGETNMINMAXARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLenum APIENTRY glGetGraphicsResetStatusARB (void); +GLAPI void APIENTRY glGetnTexImageARB (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *img); +GLAPI void APIENTRY glReadnPixelsARB (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GLAPI void APIENTRY glGetnCompressedTexImageARB (GLenum target, GLint lod, GLsizei bufSize, void *img); +GLAPI void APIENTRY glGetnUniformfvARB (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GLAPI void APIENTRY glGetnUniformivARB (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GLAPI void APIENTRY glGetnUniformuivARB (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +GLAPI void APIENTRY glGetnUniformdvARB (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +GLAPI void APIENTRY glGetnMapdvARB (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +GLAPI void APIENTRY glGetnMapfvARB (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glGetnMapivARB (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +GLAPI void APIENTRY glGetnPixelMapfvARB (GLenum map, GLsizei bufSize, GLfloat *values); +GLAPI void APIENTRY glGetnPixelMapuivARB (GLenum map, GLsizei bufSize, GLuint *values); +GLAPI void APIENTRY glGetnPixelMapusvARB (GLenum map, GLsizei bufSize, GLushort *values); +GLAPI void APIENTRY glGetnPolygonStippleARB (GLsizei bufSize, GLubyte *pattern); +GLAPI void APIENTRY glGetnColorTableARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +GLAPI void APIENTRY glGetnConvolutionFilterARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +GLAPI void APIENTRY glGetnSeparableFilterARB (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +GLAPI void APIENTRY glGetnHistogramARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glGetnMinmaxARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +#endif +#endif /* GL_ARB_robustness */ + +#ifndef GL_ARB_robustness_isolation +#define GL_ARB_robustness_isolation 1 +#endif /* GL_ARB_robustness_isolation */ + +#ifndef GL_ARB_sample_locations +#define GL_ARB_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_ARB 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_ARB 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_ARB 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_ARB 0x9340 +#define GL_SAMPLE_LOCATION_ARB 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_ARB 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_ARB 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_ARB 0x9343 +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVARBPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVARBPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLEVALUATEDEPTHVALUESARBPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSampleLocationsfvARB (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glNamedFramebufferSampleLocationsfvARB (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glEvaluateDepthValuesARB (void); +#endif +#endif /* GL_ARB_sample_locations */ + +#ifndef GL_ARB_sample_shading +#define GL_ARB_sample_shading 1 +#define GL_SAMPLE_SHADING_ARB 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE_ARB 0x8C37 +typedef void (APIENTRYP PFNGLMINSAMPLESHADINGARBPROC) (GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMinSampleShadingARB (GLfloat value); +#endif +#endif /* GL_ARB_sample_shading */ + +#ifndef GL_ARB_sampler_objects +#define GL_ARB_sampler_objects 1 +#endif /* GL_ARB_sampler_objects */ + +#ifndef GL_ARB_seamless_cube_map +#define GL_ARB_seamless_cube_map 1 +#endif /* GL_ARB_seamless_cube_map */ + +#ifndef GL_ARB_seamless_cubemap_per_texture +#define GL_ARB_seamless_cubemap_per_texture 1 +#endif /* GL_ARB_seamless_cubemap_per_texture */ + +#ifndef GL_ARB_separate_shader_objects +#define GL_ARB_separate_shader_objects 1 +#endif /* GL_ARB_separate_shader_objects */ + +#ifndef GL_ARB_shader_atomic_counter_ops +#define GL_ARB_shader_atomic_counter_ops 1 +#endif /* GL_ARB_shader_atomic_counter_ops */ + +#ifndef GL_ARB_shader_atomic_counters +#define GL_ARB_shader_atomic_counters 1 +#endif /* GL_ARB_shader_atomic_counters */ + +#ifndef GL_ARB_shader_ballot +#define GL_ARB_shader_ballot 1 +#endif /* GL_ARB_shader_ballot */ + +#ifndef GL_ARB_shader_bit_encoding +#define GL_ARB_shader_bit_encoding 1 +#endif /* GL_ARB_shader_bit_encoding */ + +#ifndef GL_ARB_shader_clock +#define GL_ARB_shader_clock 1 +#endif /* GL_ARB_shader_clock */ + +#ifndef GL_ARB_shader_draw_parameters +#define GL_ARB_shader_draw_parameters 1 +#endif /* GL_ARB_shader_draw_parameters */ + +#ifndef GL_ARB_shader_group_vote +#define GL_ARB_shader_group_vote 1 +#endif /* GL_ARB_shader_group_vote */ + +#ifndef GL_ARB_shader_image_load_store +#define GL_ARB_shader_image_load_store 1 +#endif /* GL_ARB_shader_image_load_store */ + +#ifndef GL_ARB_shader_image_size +#define GL_ARB_shader_image_size 1 +#endif /* GL_ARB_shader_image_size */ + +#ifndef GL_ARB_shader_objects +#define GL_ARB_shader_objects 1 +#ifdef __APPLE__ +typedef void *GLhandleARB; +#else +typedef unsigned int GLhandleARB; +#endif +typedef char GLcharARB; +#define GL_PROGRAM_OBJECT_ARB 0x8B40 +#define GL_SHADER_OBJECT_ARB 0x8B48 +#define GL_OBJECT_TYPE_ARB 0x8B4E +#define GL_OBJECT_SUBTYPE_ARB 0x8B4F +#define GL_FLOAT_VEC2_ARB 0x8B50 +#define GL_FLOAT_VEC3_ARB 0x8B51 +#define GL_FLOAT_VEC4_ARB 0x8B52 +#define GL_INT_VEC2_ARB 0x8B53 +#define GL_INT_VEC3_ARB 0x8B54 +#define GL_INT_VEC4_ARB 0x8B55 +#define GL_BOOL_ARB 0x8B56 +#define GL_BOOL_VEC2_ARB 0x8B57 +#define GL_BOOL_VEC3_ARB 0x8B58 +#define GL_BOOL_VEC4_ARB 0x8B59 +#define GL_FLOAT_MAT2_ARB 0x8B5A +#define GL_FLOAT_MAT3_ARB 0x8B5B +#define GL_FLOAT_MAT4_ARB 0x8B5C +#define GL_SAMPLER_1D_ARB 0x8B5D +#define GL_SAMPLER_2D_ARB 0x8B5E +#define GL_SAMPLER_3D_ARB 0x8B5F +#define GL_SAMPLER_CUBE_ARB 0x8B60 +#define GL_SAMPLER_1D_SHADOW_ARB 0x8B61 +#define GL_SAMPLER_2D_SHADOW_ARB 0x8B62 +#define GL_SAMPLER_2D_RECT_ARB 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW_ARB 0x8B64 +#define GL_OBJECT_DELETE_STATUS_ARB 0x8B80 +#define GL_OBJECT_COMPILE_STATUS_ARB 0x8B81 +#define GL_OBJECT_LINK_STATUS_ARB 0x8B82 +#define GL_OBJECT_VALIDATE_STATUS_ARB 0x8B83 +#define GL_OBJECT_INFO_LOG_LENGTH_ARB 0x8B84 +#define GL_OBJECT_ATTACHED_OBJECTS_ARB 0x8B85 +#define GL_OBJECT_ACTIVE_UNIFORMS_ARB 0x8B86 +#define GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB 0x8B87 +#define GL_OBJECT_SHADER_SOURCE_LENGTH_ARB 0x8B88 +typedef void (APIENTRYP PFNGLDELETEOBJECTARBPROC) (GLhandleARB obj); +typedef GLhandleARB (APIENTRYP PFNGLGETHANDLEARBPROC) (GLenum pname); +typedef void (APIENTRYP PFNGLDETACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB attachedObj); +typedef GLhandleARB (APIENTRYP PFNGLCREATESHADEROBJECTARBPROC) (GLenum shaderType); +typedef void (APIENTRYP PFNGLSHADERSOURCEARBPROC) (GLhandleARB shaderObj, GLsizei count, const GLcharARB **string, const GLint *length); +typedef void (APIENTRYP PFNGLCOMPILESHADERARBPROC) (GLhandleARB shaderObj); +typedef GLhandleARB (APIENTRYP PFNGLCREATEPROGRAMOBJECTARBPROC) (void); +typedef void (APIENTRYP PFNGLATTACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB obj); +typedef void (APIENTRYP PFNGLLINKPROGRAMARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLUSEPROGRAMOBJECTARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLUNIFORM1FARBPROC) (GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLUNIFORM2FARBPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLUNIFORM3FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLUNIFORM4FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLUNIFORM1IARBPROC) (GLint location, GLint v0); +typedef void (APIENTRYP PFNGLUNIFORM2IARBPROC) (GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLUNIFORM3IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLUNIFORM4IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLUNIFORM1FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM2FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM3FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM4FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM1IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM2IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM3IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM4IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERFVARBPROC) (GLhandleARB obj, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVARBPROC) (GLhandleARB obj, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETINFOLOGARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog); +typedef void (APIENTRYP PFNGLGETATTACHEDOBJECTSARBPROC) (GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj); +typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +typedef void (APIENTRYP PFNGLGETUNIFORMFVARBPROC) (GLhandleARB programObj, GLint location, GLfloat *params); +typedef void (APIENTRYP PFNGLGETUNIFORMIVARBPROC) (GLhandleARB programObj, GLint location, GLint *params); +typedef void (APIENTRYP PFNGLGETSHADERSOURCEARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeleteObjectARB (GLhandleARB obj); +GLAPI GLhandleARB APIENTRY glGetHandleARB (GLenum pname); +GLAPI void APIENTRY glDetachObjectARB (GLhandleARB containerObj, GLhandleARB attachedObj); +GLAPI GLhandleARB APIENTRY glCreateShaderObjectARB (GLenum shaderType); +GLAPI void APIENTRY glShaderSourceARB (GLhandleARB shaderObj, GLsizei count, const GLcharARB **string, const GLint *length); +GLAPI void APIENTRY glCompileShaderARB (GLhandleARB shaderObj); +GLAPI GLhandleARB APIENTRY glCreateProgramObjectARB (void); +GLAPI void APIENTRY glAttachObjectARB (GLhandleARB containerObj, GLhandleARB obj); +GLAPI void APIENTRY glLinkProgramARB (GLhandleARB programObj); +GLAPI void APIENTRY glUseProgramObjectARB (GLhandleARB programObj); +GLAPI void APIENTRY glValidateProgramARB (GLhandleARB programObj); +GLAPI void APIENTRY glUniform1fARB (GLint location, GLfloat v0); +GLAPI void APIENTRY glUniform2fARB (GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glUniform3fARB (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glUniform4fARB (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glUniform1iARB (GLint location, GLint v0); +GLAPI void APIENTRY glUniform2iARB (GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glUniform3iARB (GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glUniform4iARB (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glUniform1fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform2fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform3fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform4fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform1ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform2ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform3ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform4ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniformMatrix2fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glGetObjectParameterfvARB (GLhandleARB obj, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetObjectParameterivARB (GLhandleARB obj, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetInfoLogARB (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog); +GLAPI void APIENTRY glGetAttachedObjectsARB (GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj); +GLAPI GLint APIENTRY glGetUniformLocationARB (GLhandleARB programObj, const GLcharARB *name); +GLAPI void APIENTRY glGetActiveUniformARB (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +GLAPI void APIENTRY glGetUniformfvARB (GLhandleARB programObj, GLint location, GLfloat *params); +GLAPI void APIENTRY glGetUniformivARB (GLhandleARB programObj, GLint location, GLint *params); +GLAPI void APIENTRY glGetShaderSourceARB (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source); +#endif +#endif /* GL_ARB_shader_objects */ + +#ifndef GL_ARB_shader_precision +#define GL_ARB_shader_precision 1 +#endif /* GL_ARB_shader_precision */ + +#ifndef GL_ARB_shader_stencil_export +#define GL_ARB_shader_stencil_export 1 +#endif /* GL_ARB_shader_stencil_export */ + +#ifndef GL_ARB_shader_storage_buffer_object +#define GL_ARB_shader_storage_buffer_object 1 +#endif /* GL_ARB_shader_storage_buffer_object */ + +#ifndef GL_ARB_shader_subroutine +#define GL_ARB_shader_subroutine 1 +#endif /* GL_ARB_shader_subroutine */ + +#ifndef GL_ARB_shader_texture_image_samples +#define GL_ARB_shader_texture_image_samples 1 +#endif /* GL_ARB_shader_texture_image_samples */ + +#ifndef GL_ARB_shader_texture_lod +#define GL_ARB_shader_texture_lod 1 +#endif /* GL_ARB_shader_texture_lod */ + +#ifndef GL_ARB_shader_viewport_layer_array +#define GL_ARB_shader_viewport_layer_array 1 +#endif /* GL_ARB_shader_viewport_layer_array */ + +#ifndef GL_ARB_shading_language_100 +#define GL_ARB_shading_language_100 1 +#define GL_SHADING_LANGUAGE_VERSION_ARB 0x8B8C +#endif /* GL_ARB_shading_language_100 */ + +#ifndef GL_ARB_shading_language_420pack +#define GL_ARB_shading_language_420pack 1 +#endif /* GL_ARB_shading_language_420pack */ + +#ifndef GL_ARB_shading_language_include +#define GL_ARB_shading_language_include 1 +#define GL_SHADER_INCLUDE_ARB 0x8DAE +#define GL_NAMED_STRING_LENGTH_ARB 0x8DE9 +#define GL_NAMED_STRING_TYPE_ARB 0x8DEA +typedef void (APIENTRYP PFNGLNAMEDSTRINGARBPROC) (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string); +typedef void (APIENTRYP PFNGLDELETENAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name); +typedef void (APIENTRYP PFNGLCOMPILESHADERINCLUDEARBPROC) (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); +typedef GLboolean (APIENTRYP PFNGLISNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name); +typedef void (APIENTRYP PFNGLGETNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string); +typedef void (APIENTRYP PFNGLGETNAMEDSTRINGIVARBPROC) (GLint namelen, const GLchar *name, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glNamedStringARB (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string); +GLAPI void APIENTRY glDeleteNamedStringARB (GLint namelen, const GLchar *name); +GLAPI void APIENTRY glCompileShaderIncludeARB (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); +GLAPI GLboolean APIENTRY glIsNamedStringARB (GLint namelen, const GLchar *name); +GLAPI void APIENTRY glGetNamedStringARB (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string); +GLAPI void APIENTRY glGetNamedStringivARB (GLint namelen, const GLchar *name, GLenum pname, GLint *params); +#endif +#endif /* GL_ARB_shading_language_include */ + +#ifndef GL_ARB_shading_language_packing +#define GL_ARB_shading_language_packing 1 +#endif /* GL_ARB_shading_language_packing */ + +#ifndef GL_ARB_shadow +#define GL_ARB_shadow 1 +#define GL_TEXTURE_COMPARE_MODE_ARB 0x884C +#define GL_TEXTURE_COMPARE_FUNC_ARB 0x884D +#define GL_COMPARE_R_TO_TEXTURE_ARB 0x884E +#endif /* GL_ARB_shadow */ + +#ifndef GL_ARB_shadow_ambient +#define GL_ARB_shadow_ambient 1 +#define GL_TEXTURE_COMPARE_FAIL_VALUE_ARB 0x80BF +#endif /* GL_ARB_shadow_ambient */ + +#ifndef GL_ARB_sparse_buffer +#define GL_ARB_sparse_buffer 1 +#define GL_SPARSE_STORAGE_BIT_ARB 0x0400 +#define GL_SPARSE_BUFFER_PAGE_SIZE_ARB 0x82F8 +typedef void (APIENTRYP PFNGLBUFFERPAGECOMMITMENTARBPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTARBPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferPageCommitmentARB (GLenum target, GLintptr offset, GLsizeiptr size, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentARB (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +#endif +#endif /* GL_ARB_sparse_buffer */ + +#ifndef GL_ARB_sparse_texture +#define GL_ARB_sparse_texture 1 +#define GL_TEXTURE_SPARSE_ARB 0x91A6 +#define GL_VIRTUAL_PAGE_SIZE_INDEX_ARB 0x91A7 +#define GL_NUM_SPARSE_LEVELS_ARB 0x91AA +#define GL_NUM_VIRTUAL_PAGE_SIZES_ARB 0x91A8 +#define GL_VIRTUAL_PAGE_SIZE_X_ARB 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_ARB 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_ARB 0x9197 +#define GL_MAX_SPARSE_TEXTURE_SIZE_ARB 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_ARB 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_ARB 0x919A +#define GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_ARB 0x91A9 +typedef void (APIENTRYP PFNGLTEXPAGECOMMITMENTARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexPageCommitmentARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#endif +#endif /* GL_ARB_sparse_texture */ + +#ifndef GL_ARB_sparse_texture2 +#define GL_ARB_sparse_texture2 1 +#endif /* GL_ARB_sparse_texture2 */ + +#ifndef GL_ARB_sparse_texture_clamp +#define GL_ARB_sparse_texture_clamp 1 +#endif /* GL_ARB_sparse_texture_clamp */ + +#ifndef GL_ARB_spirv_extensions +#define GL_ARB_spirv_extensions 1 +#endif /* GL_ARB_spirv_extensions */ + +#ifndef GL_ARB_stencil_texturing +#define GL_ARB_stencil_texturing 1 +#endif /* GL_ARB_stencil_texturing */ + +#ifndef GL_ARB_sync +#define GL_ARB_sync 1 +#endif /* GL_ARB_sync */ + +#ifndef GL_ARB_tessellation_shader +#define GL_ARB_tessellation_shader 1 +#endif /* GL_ARB_tessellation_shader */ + +#ifndef GL_ARB_texture_barrier +#define GL_ARB_texture_barrier 1 +#endif /* GL_ARB_texture_barrier */ + +#ifndef GL_ARB_texture_border_clamp +#define GL_ARB_texture_border_clamp 1 +#define GL_CLAMP_TO_BORDER_ARB 0x812D +#endif /* GL_ARB_texture_border_clamp */ + +#ifndef GL_ARB_texture_buffer_object +#define GL_ARB_texture_buffer_object 1 +#define GL_TEXTURE_BUFFER_ARB 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_ARB 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_ARB 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT_ARB 0x8C2E +typedef void (APIENTRYP PFNGLTEXBUFFERARBPROC) (GLenum target, GLenum internalformat, GLuint buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBufferARB (GLenum target, GLenum internalformat, GLuint buffer); +#endif +#endif /* GL_ARB_texture_buffer_object */ + +#ifndef GL_ARB_texture_buffer_object_rgb32 +#define GL_ARB_texture_buffer_object_rgb32 1 +#endif /* GL_ARB_texture_buffer_object_rgb32 */ + +#ifndef GL_ARB_texture_buffer_range +#define GL_ARB_texture_buffer_range 1 +#endif /* GL_ARB_texture_buffer_range */ + +#ifndef GL_ARB_texture_compression +#define GL_ARB_texture_compression 1 +#define GL_COMPRESSED_ALPHA_ARB 0x84E9 +#define GL_COMPRESSED_LUMINANCE_ARB 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA_ARB 0x84EB +#define GL_COMPRESSED_INTENSITY_ARB 0x84EC +#define GL_COMPRESSED_RGB_ARB 0x84ED +#define GL_COMPRESSED_RGBA_ARB 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT_ARB 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB 0x86A0 +#define GL_TEXTURE_COMPRESSED_ARB 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A3 +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DARBPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint level, void *img); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCompressedTexImage3DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage2DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage1DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage3DARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage2DARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage1DARB (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glGetCompressedTexImageARB (GLenum target, GLint level, void *img); +#endif +#endif /* GL_ARB_texture_compression */ + +#ifndef GL_ARB_texture_compression_bptc +#define GL_ARB_texture_compression_bptc 1 +#define GL_COMPRESSED_RGBA_BPTC_UNORM_ARB 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB 0x8E8F +#endif /* GL_ARB_texture_compression_bptc */ + +#ifndef GL_ARB_texture_compression_rgtc +#define GL_ARB_texture_compression_rgtc 1 +#endif /* GL_ARB_texture_compression_rgtc */ + +#ifndef GL_ARB_texture_cube_map +#define GL_ARB_texture_cube_map 1 +#define GL_NORMAL_MAP_ARB 0x8511 +#define GL_REFLECTION_MAP_ARB 0x8512 +#define GL_TEXTURE_CUBE_MAP_ARB 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARB 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARB 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB 0x851C +#endif /* GL_ARB_texture_cube_map */ + +#ifndef GL_ARB_texture_cube_map_array +#define GL_ARB_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_ARB 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB 0x900A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB 0x900B +#define GL_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900F +#endif /* GL_ARB_texture_cube_map_array */ + +#ifndef GL_ARB_texture_env_add +#define GL_ARB_texture_env_add 1 +#endif /* GL_ARB_texture_env_add */ + +#ifndef GL_ARB_texture_env_combine +#define GL_ARB_texture_env_combine 1 +#define GL_COMBINE_ARB 0x8570 +#define GL_COMBINE_RGB_ARB 0x8571 +#define GL_COMBINE_ALPHA_ARB 0x8572 +#define GL_SOURCE0_RGB_ARB 0x8580 +#define GL_SOURCE1_RGB_ARB 0x8581 +#define GL_SOURCE2_RGB_ARB 0x8582 +#define GL_SOURCE0_ALPHA_ARB 0x8588 +#define GL_SOURCE1_ALPHA_ARB 0x8589 +#define GL_SOURCE2_ALPHA_ARB 0x858A +#define GL_OPERAND0_RGB_ARB 0x8590 +#define GL_OPERAND1_RGB_ARB 0x8591 +#define GL_OPERAND2_RGB_ARB 0x8592 +#define GL_OPERAND0_ALPHA_ARB 0x8598 +#define GL_OPERAND1_ALPHA_ARB 0x8599 +#define GL_OPERAND2_ALPHA_ARB 0x859A +#define GL_RGB_SCALE_ARB 0x8573 +#define GL_ADD_SIGNED_ARB 0x8574 +#define GL_INTERPOLATE_ARB 0x8575 +#define GL_SUBTRACT_ARB 0x84E7 +#define GL_CONSTANT_ARB 0x8576 +#define GL_PRIMARY_COLOR_ARB 0x8577 +#define GL_PREVIOUS_ARB 0x8578 +#endif /* GL_ARB_texture_env_combine */ + +#ifndef GL_ARB_texture_env_crossbar +#define GL_ARB_texture_env_crossbar 1 +#endif /* GL_ARB_texture_env_crossbar */ + +#ifndef GL_ARB_texture_env_dot3 +#define GL_ARB_texture_env_dot3 1 +#define GL_DOT3_RGB_ARB 0x86AE +#define GL_DOT3_RGBA_ARB 0x86AF +#endif /* GL_ARB_texture_env_dot3 */ + +#ifndef GL_ARB_texture_filter_anisotropic +#define GL_ARB_texture_filter_anisotropic 1 +#endif /* GL_ARB_texture_filter_anisotropic */ + +#ifndef GL_ARB_texture_filter_minmax +#define GL_ARB_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_ARB 0x9366 +#define GL_WEIGHTED_AVERAGE_ARB 0x9367 +#endif /* GL_ARB_texture_filter_minmax */ + +#ifndef GL_ARB_texture_float +#define GL_ARB_texture_float 1 +#define GL_TEXTURE_RED_TYPE_ARB 0x8C10 +#define GL_TEXTURE_GREEN_TYPE_ARB 0x8C11 +#define GL_TEXTURE_BLUE_TYPE_ARB 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE_ARB 0x8C13 +#define GL_TEXTURE_LUMINANCE_TYPE_ARB 0x8C14 +#define GL_TEXTURE_INTENSITY_TYPE_ARB 0x8C15 +#define GL_TEXTURE_DEPTH_TYPE_ARB 0x8C16 +#define GL_UNSIGNED_NORMALIZED_ARB 0x8C17 +#define GL_RGBA32F_ARB 0x8814 +#define GL_RGB32F_ARB 0x8815 +#define GL_ALPHA32F_ARB 0x8816 +#define GL_INTENSITY32F_ARB 0x8817 +#define GL_LUMINANCE32F_ARB 0x8818 +#define GL_LUMINANCE_ALPHA32F_ARB 0x8819 +#define GL_RGBA16F_ARB 0x881A +#define GL_RGB16F_ARB 0x881B +#define GL_ALPHA16F_ARB 0x881C +#define GL_INTENSITY16F_ARB 0x881D +#define GL_LUMINANCE16F_ARB 0x881E +#define GL_LUMINANCE_ALPHA16F_ARB 0x881F +#endif /* GL_ARB_texture_float */ + +#ifndef GL_ARB_texture_gather +#define GL_ARB_texture_gather 1 +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5F +#define GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS_ARB 0x8F9F +#endif /* GL_ARB_texture_gather */ + +#ifndef GL_ARB_texture_mirror_clamp_to_edge +#define GL_ARB_texture_mirror_clamp_to_edge 1 +#endif /* GL_ARB_texture_mirror_clamp_to_edge */ + +#ifndef GL_ARB_texture_mirrored_repeat +#define GL_ARB_texture_mirrored_repeat 1 +#define GL_MIRRORED_REPEAT_ARB 0x8370 +#endif /* GL_ARB_texture_mirrored_repeat */ + +#ifndef GL_ARB_texture_multisample +#define GL_ARB_texture_multisample 1 +#endif /* GL_ARB_texture_multisample */ + +#ifndef GL_ARB_texture_non_power_of_two +#define GL_ARB_texture_non_power_of_two 1 +#endif /* GL_ARB_texture_non_power_of_two */ + +#ifndef GL_ARB_texture_query_levels +#define GL_ARB_texture_query_levels 1 +#endif /* GL_ARB_texture_query_levels */ + +#ifndef GL_ARB_texture_query_lod +#define GL_ARB_texture_query_lod 1 +#endif /* GL_ARB_texture_query_lod */ + +#ifndef GL_ARB_texture_rectangle +#define GL_ARB_texture_rectangle 1 +#define GL_TEXTURE_RECTANGLE_ARB 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE_ARB 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE_ARB 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB 0x84F8 +#endif /* GL_ARB_texture_rectangle */ + +#ifndef GL_ARB_texture_rg +#define GL_ARB_texture_rg 1 +#endif /* GL_ARB_texture_rg */ + +#ifndef GL_ARB_texture_rgb10_a2ui +#define GL_ARB_texture_rgb10_a2ui 1 +#endif /* GL_ARB_texture_rgb10_a2ui */ + +#ifndef GL_ARB_texture_stencil8 +#define GL_ARB_texture_stencil8 1 +#endif /* GL_ARB_texture_stencil8 */ + +#ifndef GL_ARB_texture_storage +#define GL_ARB_texture_storage 1 +#endif /* GL_ARB_texture_storage */ + +#ifndef GL_ARB_texture_storage_multisample +#define GL_ARB_texture_storage_multisample 1 +#endif /* GL_ARB_texture_storage_multisample */ + +#ifndef GL_ARB_texture_swizzle +#define GL_ARB_texture_swizzle 1 +#endif /* GL_ARB_texture_swizzle */ + +#ifndef GL_ARB_texture_view +#define GL_ARB_texture_view 1 +#endif /* GL_ARB_texture_view */ + +#ifndef GL_ARB_timer_query +#define GL_ARB_timer_query 1 +#endif /* GL_ARB_timer_query */ + +#ifndef GL_ARB_transform_feedback2 +#define GL_ARB_transform_feedback2 1 +#endif /* GL_ARB_transform_feedback2 */ + +#ifndef GL_ARB_transform_feedback3 +#define GL_ARB_transform_feedback3 1 +#endif /* GL_ARB_transform_feedback3 */ + +#ifndef GL_ARB_transform_feedback_instanced +#define GL_ARB_transform_feedback_instanced 1 +#endif /* GL_ARB_transform_feedback_instanced */ + +#ifndef GL_ARB_transform_feedback_overflow_query +#define GL_ARB_transform_feedback_overflow_query 1 +#define GL_TRANSFORM_FEEDBACK_OVERFLOW_ARB 0x82EC +#define GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW_ARB 0x82ED +#endif /* GL_ARB_transform_feedback_overflow_query */ + +#ifndef GL_ARB_transpose_matrix +#define GL_ARB_transpose_matrix 1 +#define GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX_ARB 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX_ARB 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX_ARB 0x84E6 +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFARBPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDARBPROC) (const GLdouble *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFARBPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDARBPROC) (const GLdouble *m); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLoadTransposeMatrixfARB (const GLfloat *m); +GLAPI void APIENTRY glLoadTransposeMatrixdARB (const GLdouble *m); +GLAPI void APIENTRY glMultTransposeMatrixfARB (const GLfloat *m); +GLAPI void APIENTRY glMultTransposeMatrixdARB (const GLdouble *m); +#endif +#endif /* GL_ARB_transpose_matrix */ + +#ifndef GL_ARB_uniform_buffer_object +#define GL_ARB_uniform_buffer_object 1 +#endif /* GL_ARB_uniform_buffer_object */ + +#ifndef GL_ARB_vertex_array_bgra +#define GL_ARB_vertex_array_bgra 1 +#endif /* GL_ARB_vertex_array_bgra */ + +#ifndef GL_ARB_vertex_array_object +#define GL_ARB_vertex_array_object 1 +#endif /* GL_ARB_vertex_array_object */ + +#ifndef GL_ARB_vertex_attrib_64bit +#define GL_ARB_vertex_attrib_64bit 1 +#endif /* GL_ARB_vertex_attrib_64bit */ + +#ifndef GL_ARB_vertex_attrib_binding +#define GL_ARB_vertex_attrib_binding 1 +#endif /* GL_ARB_vertex_attrib_binding */ + +#ifndef GL_ARB_vertex_blend +#define GL_ARB_vertex_blend 1 +#define GL_MAX_VERTEX_UNITS_ARB 0x86A4 +#define GL_ACTIVE_VERTEX_UNITS_ARB 0x86A5 +#define GL_WEIGHT_SUM_UNITY_ARB 0x86A6 +#define GL_VERTEX_BLEND_ARB 0x86A7 +#define GL_CURRENT_WEIGHT_ARB 0x86A8 +#define GL_WEIGHT_ARRAY_TYPE_ARB 0x86A9 +#define GL_WEIGHT_ARRAY_STRIDE_ARB 0x86AA +#define GL_WEIGHT_ARRAY_SIZE_ARB 0x86AB +#define GL_WEIGHT_ARRAY_POINTER_ARB 0x86AC +#define GL_WEIGHT_ARRAY_ARB 0x86AD +#define GL_MODELVIEW0_ARB 0x1700 +#define GL_MODELVIEW1_ARB 0x850A +#define GL_MODELVIEW2_ARB 0x8722 +#define GL_MODELVIEW3_ARB 0x8723 +#define GL_MODELVIEW4_ARB 0x8724 +#define GL_MODELVIEW5_ARB 0x8725 +#define GL_MODELVIEW6_ARB 0x8726 +#define GL_MODELVIEW7_ARB 0x8727 +#define GL_MODELVIEW8_ARB 0x8728 +#define GL_MODELVIEW9_ARB 0x8729 +#define GL_MODELVIEW10_ARB 0x872A +#define GL_MODELVIEW11_ARB 0x872B +#define GL_MODELVIEW12_ARB 0x872C +#define GL_MODELVIEW13_ARB 0x872D +#define GL_MODELVIEW14_ARB 0x872E +#define GL_MODELVIEW15_ARB 0x872F +#define GL_MODELVIEW16_ARB 0x8730 +#define GL_MODELVIEW17_ARB 0x8731 +#define GL_MODELVIEW18_ARB 0x8732 +#define GL_MODELVIEW19_ARB 0x8733 +#define GL_MODELVIEW20_ARB 0x8734 +#define GL_MODELVIEW21_ARB 0x8735 +#define GL_MODELVIEW22_ARB 0x8736 +#define GL_MODELVIEW23_ARB 0x8737 +#define GL_MODELVIEW24_ARB 0x8738 +#define GL_MODELVIEW25_ARB 0x8739 +#define GL_MODELVIEW26_ARB 0x873A +#define GL_MODELVIEW27_ARB 0x873B +#define GL_MODELVIEW28_ARB 0x873C +#define GL_MODELVIEW29_ARB 0x873D +#define GL_MODELVIEW30_ARB 0x873E +#define GL_MODELVIEW31_ARB 0x873F +typedef void (APIENTRYP PFNGLWEIGHTBVARBPROC) (GLint size, const GLbyte *weights); +typedef void (APIENTRYP PFNGLWEIGHTSVARBPROC) (GLint size, const GLshort *weights); +typedef void (APIENTRYP PFNGLWEIGHTIVARBPROC) (GLint size, const GLint *weights); +typedef void (APIENTRYP PFNGLWEIGHTFVARBPROC) (GLint size, const GLfloat *weights); +typedef void (APIENTRYP PFNGLWEIGHTDVARBPROC) (GLint size, const GLdouble *weights); +typedef void (APIENTRYP PFNGLWEIGHTUBVARBPROC) (GLint size, const GLubyte *weights); +typedef void (APIENTRYP PFNGLWEIGHTUSVARBPROC) (GLint size, const GLushort *weights); +typedef void (APIENTRYP PFNGLWEIGHTUIVARBPROC) (GLint size, const GLuint *weights); +typedef void (APIENTRYP PFNGLWEIGHTPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLVERTEXBLENDARBPROC) (GLint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWeightbvARB (GLint size, const GLbyte *weights); +GLAPI void APIENTRY glWeightsvARB (GLint size, const GLshort *weights); +GLAPI void APIENTRY glWeightivARB (GLint size, const GLint *weights); +GLAPI void APIENTRY glWeightfvARB (GLint size, const GLfloat *weights); +GLAPI void APIENTRY glWeightdvARB (GLint size, const GLdouble *weights); +GLAPI void APIENTRY glWeightubvARB (GLint size, const GLubyte *weights); +GLAPI void APIENTRY glWeightusvARB (GLint size, const GLushort *weights); +GLAPI void APIENTRY glWeightuivARB (GLint size, const GLuint *weights); +GLAPI void APIENTRY glWeightPointerARB (GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glVertexBlendARB (GLint count); +#endif +#endif /* GL_ARB_vertex_blend */ + +#ifndef GL_ARB_vertex_buffer_object +#define GL_ARB_vertex_buffer_object 1 +typedef khronos_ssize_t GLsizeiptrARB; +typedef khronos_intptr_t GLintptrARB; +#define GL_BUFFER_SIZE_ARB 0x8764 +#define GL_BUFFER_USAGE_ARB 0x8765 +#define GL_ARRAY_BUFFER_ARB 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER_ARB 0x8893 +#define GL_ARRAY_BUFFER_BINDING_ARB 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB 0x8895 +#define GL_VERTEX_ARRAY_BUFFER_BINDING_ARB 0x8896 +#define GL_NORMAL_ARRAY_BUFFER_BINDING_ARB 0x8897 +#define GL_COLOR_ARRAY_BUFFER_BINDING_ARB 0x8898 +#define GL_INDEX_ARRAY_BUFFER_BINDING_ARB 0x8899 +#define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB 0x889A +#define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB 0x889B +#define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB 0x889C +#define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB 0x889D +#define GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB 0x889E +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB 0x889F +#define GL_READ_ONLY_ARB 0x88B8 +#define GL_WRITE_ONLY_ARB 0x88B9 +#define GL_READ_WRITE_ARB 0x88BA +#define GL_BUFFER_ACCESS_ARB 0x88BB +#define GL_BUFFER_MAPPED_ARB 0x88BC +#define GL_BUFFER_MAP_POINTER_ARB 0x88BD +#define GL_STREAM_DRAW_ARB 0x88E0 +#define GL_STREAM_READ_ARB 0x88E1 +#define GL_STREAM_COPY_ARB 0x88E2 +#define GL_STATIC_DRAW_ARB 0x88E4 +#define GL_STATIC_READ_ARB 0x88E5 +#define GL_STATIC_COPY_ARB 0x88E6 +#define GL_DYNAMIC_DRAW_ARB 0x88E8 +#define GL_DYNAMIC_READ_ARB 0x88E9 +#define GL_DYNAMIC_COPY_ARB 0x88EA +typedef void (APIENTRYP PFNGLBINDBUFFERARBPROC) (GLenum target, GLuint buffer); +typedef void (APIENTRYP PFNGLDELETEBUFFERSARBPROC) (GLsizei n, const GLuint *buffers); +typedef void (APIENTRYP PFNGLGENBUFFERSARBPROC) (GLsizei n, GLuint *buffers); +typedef GLboolean (APIENTRYP PFNGLISBUFFERARBPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLBUFFERDATAARBPROC) (GLenum target, GLsizeiptrARB size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const void *data); +typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, void *data); +typedef void *(APIENTRYP PFNGLMAPBUFFERARBPROC) (GLenum target, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERARBPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVARBPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindBufferARB (GLenum target, GLuint buffer); +GLAPI void APIENTRY glDeleteBuffersARB (GLsizei n, const GLuint *buffers); +GLAPI void APIENTRY glGenBuffersARB (GLsizei n, GLuint *buffers); +GLAPI GLboolean APIENTRY glIsBufferARB (GLuint buffer); +GLAPI void APIENTRY glBufferDataARB (GLenum target, GLsizeiptrARB size, const void *data, GLenum usage); +GLAPI void APIENTRY glBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const void *data); +GLAPI void APIENTRY glGetBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, void *data); +GLAPI void *APIENTRY glMapBufferARB (GLenum target, GLenum access); +GLAPI GLboolean APIENTRY glUnmapBufferARB (GLenum target); +GLAPI void APIENTRY glGetBufferParameterivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetBufferPointervARB (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_ARB_vertex_buffer_object */ + +#ifndef GL_ARB_vertex_program +#define GL_ARB_vertex_program 1 +#define GL_COLOR_SUM_ARB 0x8458 +#define GL_VERTEX_PROGRAM_ARB 0x8620 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB_ARB 0x8626 +#define GL_VERTEX_PROGRAM_POINT_SIZE_ARB 0x8642 +#define GL_VERTEX_PROGRAM_TWO_SIDE_ARB 0x8643 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB 0x8645 +#define GL_MAX_VERTEX_ATTRIBS_ARB 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB 0x886A +#define GL_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B0 +#define GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B1 +#define GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B2 +#define GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B3 +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DARBPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FARBPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SARBPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DARBPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FARBPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SARBPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVARBPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVARBPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBARBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVARBPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVARBPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVARBPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVARBPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVARBPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVARBPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVARBPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVARBPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERARBPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVARBPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVARBPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVARBPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVARBPROC) (GLuint index, GLenum pname, void **pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttrib1dARB (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1fARB (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1sARB (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2dARB (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2fARB (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2sARB (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3dARB (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3fARB (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3sARB (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4NbvARB (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4NivARB (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4NsvARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4NubARB (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4NubvARB (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4NuivARB (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4NusvARB (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttrib4bvARB (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4dARB (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4fARB (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4ivARB (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4sARB (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubvARB (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4uivARB (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4usvARB (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribPointerARB (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glEnableVertexAttribArrayARB (GLuint index); +GLAPI void APIENTRY glDisableVertexAttribArrayARB (GLuint index); +GLAPI void APIENTRY glGetVertexAttribdvARB (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfvARB (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribivARB (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointervARB (GLuint index, GLenum pname, void **pointer); +#endif +#endif /* GL_ARB_vertex_program */ + +#ifndef GL_ARB_vertex_shader +#define GL_ARB_vertex_shader 1 +#define GL_VERTEX_SHADER_ARB 0x8B31 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB 0x8B4A +#define GL_MAX_VARYING_FLOATS_ARB 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB 0x8B4D +#define GL_OBJECT_ACTIVE_ATTRIBUTES_ARB 0x8B89 +#define GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB 0x8B8A +typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONARBPROC) (GLhandleARB programObj, GLuint index, const GLcharARB *name); +typedef void (APIENTRYP PFNGLGETACTIVEATTRIBARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindAttribLocationARB (GLhandleARB programObj, GLuint index, const GLcharARB *name); +GLAPI void APIENTRY glGetActiveAttribARB (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +GLAPI GLint APIENTRY glGetAttribLocationARB (GLhandleARB programObj, const GLcharARB *name); +#endif +#endif /* GL_ARB_vertex_shader */ + +#ifndef GL_ARB_vertex_type_10f_11f_11f_rev +#define GL_ARB_vertex_type_10f_11f_11f_rev 1 +#endif /* GL_ARB_vertex_type_10f_11f_11f_rev */ + +#ifndef GL_ARB_vertex_type_2_10_10_10_rev +#define GL_ARB_vertex_type_2_10_10_10_rev 1 +#endif /* GL_ARB_vertex_type_2_10_10_10_rev */ + +#ifndef GL_ARB_viewport_array +#define GL_ARB_viewport_array 1 +typedef void (APIENTRYP PFNGLDEPTHRANGEARRAYDVNVPROC) (GLuint first, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEINDEXEDDNVPROC) (GLuint index, GLdouble n, GLdouble f); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthRangeArraydvNV (GLuint first, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glDepthRangeIndexeddNV (GLuint index, GLdouble n, GLdouble f); +#endif +#endif /* GL_ARB_viewport_array */ + +#ifndef GL_ARB_window_pos +#define GL_ARB_window_pos 1 +typedef void (APIENTRYP PFNGLWINDOWPOS2DARBPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVARBPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FARBPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVARBPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IARBPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVARBPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SARBPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVARBPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DARBPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVARBPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FARBPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVARBPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IARBPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVARBPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SARBPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVARBPROC) (const GLshort *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowPos2dARB (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dvARB (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2fARB (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fvARB (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2iARB (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2ivARB (const GLint *v); +GLAPI void APIENTRY glWindowPos2sARB (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2svARB (const GLshort *v); +GLAPI void APIENTRY glWindowPos3dARB (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dvARB (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3fARB (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fvARB (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3iARB (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3ivARB (const GLint *v); +GLAPI void APIENTRY glWindowPos3sARB (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3svARB (const GLshort *v); +#endif +#endif /* GL_ARB_window_pos */ + +#ifndef GL_KHR_blend_equation_advanced +#define GL_KHR_blend_equation_advanced 1 +#define GL_MULTIPLY_KHR 0x9294 +#define GL_SCREEN_KHR 0x9295 +#define GL_OVERLAY_KHR 0x9296 +#define GL_DARKEN_KHR 0x9297 +#define GL_LIGHTEN_KHR 0x9298 +#define GL_COLORDODGE_KHR 0x9299 +#define GL_COLORBURN_KHR 0x929A +#define GL_HARDLIGHT_KHR 0x929B +#define GL_SOFTLIGHT_KHR 0x929C +#define GL_DIFFERENCE_KHR 0x929E +#define GL_EXCLUSION_KHR 0x92A0 +#define GL_HSL_HUE_KHR 0x92AD +#define GL_HSL_SATURATION_KHR 0x92AE +#define GL_HSL_COLOR_KHR 0x92AF +#define GL_HSL_LUMINOSITY_KHR 0x92B0 +typedef void (APIENTRYP PFNGLBLENDBARRIERKHRPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendBarrierKHR (void); +#endif +#endif /* GL_KHR_blend_equation_advanced */ + +#ifndef GL_KHR_blend_equation_advanced_coherent +#define GL_KHR_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_KHR 0x9285 +#endif /* GL_KHR_blend_equation_advanced_coherent */ + +#ifndef GL_KHR_context_flush_control +#define GL_KHR_context_flush_control 1 +#endif /* GL_KHR_context_flush_control */ + +#ifndef GL_KHR_debug +#define GL_KHR_debug 1 +#endif /* GL_KHR_debug */ + +#ifndef GL_KHR_no_error +#define GL_KHR_no_error 1 +#define GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 +#endif /* GL_KHR_no_error */ + +#ifndef GL_KHR_parallel_shader_compile +#define GL_KHR_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_KHR 0x91B0 +#define GL_COMPLETION_STATUS_KHR 0x91B1 +typedef void (APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSKHRPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMaxShaderCompilerThreadsKHR (GLuint count); +#endif +#endif /* GL_KHR_parallel_shader_compile */ + +#ifndef GL_KHR_robust_buffer_access_behavior +#define GL_KHR_robust_buffer_access_behavior 1 +#endif /* GL_KHR_robust_buffer_access_behavior */ + +#ifndef GL_KHR_robustness +#define GL_KHR_robustness 1 +#define GL_CONTEXT_ROBUST_ACCESS 0x90F3 +#endif /* GL_KHR_robustness */ + +#ifndef GL_KHR_shader_subgroup +#define GL_KHR_shader_subgroup 1 +#define GL_SUBGROUP_SIZE_KHR 0x9532 +#define GL_SUBGROUP_SUPPORTED_STAGES_KHR 0x9533 +#define GL_SUBGROUP_SUPPORTED_FEATURES_KHR 0x9534 +#define GL_SUBGROUP_QUAD_ALL_STAGES_KHR 0x9535 +#define GL_SUBGROUP_FEATURE_BASIC_BIT_KHR 0x00000001 +#define GL_SUBGROUP_FEATURE_VOTE_BIT_KHR 0x00000002 +#define GL_SUBGROUP_FEATURE_ARITHMETIC_BIT_KHR 0x00000004 +#define GL_SUBGROUP_FEATURE_BALLOT_BIT_KHR 0x00000008 +#define GL_SUBGROUP_FEATURE_SHUFFLE_BIT_KHR 0x00000010 +#define GL_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT_KHR 0x00000020 +#define GL_SUBGROUP_FEATURE_CLUSTERED_BIT_KHR 0x00000040 +#define GL_SUBGROUP_FEATURE_QUAD_BIT_KHR 0x00000080 +#endif /* GL_KHR_shader_subgroup */ + +#ifndef GL_KHR_texture_compression_astc_hdr +#define GL_KHR_texture_compression_astc_hdr 1 +#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 +#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1 +#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2 +#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3 +#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4 +#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5 +#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6 +#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7 +#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8 +#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 +#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA +#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB +#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC +#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD +#endif /* GL_KHR_texture_compression_astc_hdr */ + +#ifndef GL_KHR_texture_compression_astc_ldr +#define GL_KHR_texture_compression_astc_ldr 1 +#endif /* GL_KHR_texture_compression_astc_ldr */ + +#ifndef GL_KHR_texture_compression_astc_sliced_3d +#define GL_KHR_texture_compression_astc_sliced_3d 1 +#endif /* GL_KHR_texture_compression_astc_sliced_3d */ + +#ifndef GL_OES_byte_coordinates +#define GL_OES_byte_coordinates 1 +typedef void (APIENTRYP PFNGLMULTITEXCOORD1BOESPROC) (GLenum texture, GLbyte s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2BOESPROC) (GLenum texture, GLbyte s, GLbyte t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3BOESPROC) (GLenum texture, GLbyte s, GLbyte t, GLbyte r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4BOESPROC) (GLenum texture, GLbyte s, GLbyte t, GLbyte r, GLbyte q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD1BOESPROC) (GLbyte s); +typedef void (APIENTRYP PFNGLTEXCOORD1BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD2BOESPROC) (GLbyte s, GLbyte t); +typedef void (APIENTRYP PFNGLTEXCOORD2BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD3BOESPROC) (GLbyte s, GLbyte t, GLbyte r); +typedef void (APIENTRYP PFNGLTEXCOORD3BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD4BOESPROC) (GLbyte s, GLbyte t, GLbyte r, GLbyte q); +typedef void (APIENTRYP PFNGLTEXCOORD4BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLVERTEX2BOESPROC) (GLbyte x, GLbyte y); +typedef void (APIENTRYP PFNGLVERTEX2BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLVERTEX3BOESPROC) (GLbyte x, GLbyte y, GLbyte z); +typedef void (APIENTRYP PFNGLVERTEX3BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLVERTEX4BOESPROC) (GLbyte x, GLbyte y, GLbyte z, GLbyte w); +typedef void (APIENTRYP PFNGLVERTEX4BVOESPROC) (const GLbyte *coords); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiTexCoord1bOES (GLenum texture, GLbyte s); +GLAPI void APIENTRY glMultiTexCoord1bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glMultiTexCoord2bOES (GLenum texture, GLbyte s, GLbyte t); +GLAPI void APIENTRY glMultiTexCoord2bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glMultiTexCoord3bOES (GLenum texture, GLbyte s, GLbyte t, GLbyte r); +GLAPI void APIENTRY glMultiTexCoord3bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glMultiTexCoord4bOES (GLenum texture, GLbyte s, GLbyte t, GLbyte r, GLbyte q); +GLAPI void APIENTRY glMultiTexCoord4bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glTexCoord1bOES (GLbyte s); +GLAPI void APIENTRY glTexCoord1bvOES (const GLbyte *coords); +GLAPI void APIENTRY glTexCoord2bOES (GLbyte s, GLbyte t); +GLAPI void APIENTRY glTexCoord2bvOES (const GLbyte *coords); +GLAPI void APIENTRY glTexCoord3bOES (GLbyte s, GLbyte t, GLbyte r); +GLAPI void APIENTRY glTexCoord3bvOES (const GLbyte *coords); +GLAPI void APIENTRY glTexCoord4bOES (GLbyte s, GLbyte t, GLbyte r, GLbyte q); +GLAPI void APIENTRY glTexCoord4bvOES (const GLbyte *coords); +GLAPI void APIENTRY glVertex2bOES (GLbyte x, GLbyte y); +GLAPI void APIENTRY glVertex2bvOES (const GLbyte *coords); +GLAPI void APIENTRY glVertex3bOES (GLbyte x, GLbyte y, GLbyte z); +GLAPI void APIENTRY glVertex3bvOES (const GLbyte *coords); +GLAPI void APIENTRY glVertex4bOES (GLbyte x, GLbyte y, GLbyte z, GLbyte w); +GLAPI void APIENTRY glVertex4bvOES (const GLbyte *coords); +#endif +#endif /* GL_OES_byte_coordinates */ + +#ifndef GL_OES_compressed_paletted_texture +#define GL_OES_compressed_paletted_texture 1 +#define GL_PALETTE4_RGB8_OES 0x8B90 +#define GL_PALETTE4_RGBA8_OES 0x8B91 +#define GL_PALETTE4_R5_G6_B5_OES 0x8B92 +#define GL_PALETTE4_RGBA4_OES 0x8B93 +#define GL_PALETTE4_RGB5_A1_OES 0x8B94 +#define GL_PALETTE8_RGB8_OES 0x8B95 +#define GL_PALETTE8_RGBA8_OES 0x8B96 +#define GL_PALETTE8_R5_G6_B5_OES 0x8B97 +#define GL_PALETTE8_RGBA4_OES 0x8B98 +#define GL_PALETTE8_RGB5_A1_OES 0x8B99 +#endif /* GL_OES_compressed_paletted_texture */ + +#ifndef GL_OES_fixed_point +#define GL_OES_fixed_point 1 +typedef khronos_int32_t GLfixed; +#define GL_FIXED_OES 0x140C +typedef void (APIENTRYP PFNGLALPHAFUNCXOESPROC) (GLenum func, GLfixed ref); +typedef void (APIENTRYP PFNGLCLEARCOLORXOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLCLEARDEPTHXOESPROC) (GLfixed depth); +typedef void (APIENTRYP PFNGLCLIPPLANEXOESPROC) (GLenum plane, const GLfixed *equation); +typedef void (APIENTRYP PFNGLCOLOR4XOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLDEPTHRANGEXOESPROC) (GLfixed n, GLfixed f); +typedef void (APIENTRYP PFNGLFOGXOESPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLFOGXVOESPROC) (GLenum pname, const GLfixed *param); +typedef void (APIENTRYP PFNGLFRUSTUMXOESPROC) (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +typedef void (APIENTRYP PFNGLGETCLIPPLANEXOESPROC) (GLenum plane, GLfixed *equation); +typedef void (APIENTRYP PFNGLGETFIXEDVOESPROC) (GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETTEXENVXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLLIGHTMODELXOESPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLLIGHTMODELXVOESPROC) (GLenum pname, const GLfixed *param); +typedef void (APIENTRYP PFNGLLIGHTXOESPROC) (GLenum light, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLLIGHTXVOESPROC) (GLenum light, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLLINEWIDTHXOESPROC) (GLfixed width); +typedef void (APIENTRYP PFNGLLOADMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMATERIALXOESPROC) (GLenum face, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLMATERIALXVOESPROC) (GLenum face, GLenum pname, const GLfixed *param); +typedef void (APIENTRYP PFNGLMULTMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4XOESPROC) (GLenum texture, GLfixed s, GLfixed t, GLfixed r, GLfixed q); +typedef void (APIENTRYP PFNGLNORMAL3XOESPROC) (GLfixed nx, GLfixed ny, GLfixed nz); +typedef void (APIENTRYP PFNGLORTHOXOESPROC) (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +typedef void (APIENTRYP PFNGLPOINTPARAMETERXVOESPROC) (GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLPOINTSIZEXOESPROC) (GLfixed size); +typedef void (APIENTRYP PFNGLPOLYGONOFFSETXOESPROC) (GLfixed factor, GLfixed units); +typedef void (APIENTRYP PFNGLROTATEXOESPROC) (GLfixed angle, GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLSCALEXOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLTEXENVXOESPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLTEXENVXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERXOESPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLTEXPARAMETERXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLTRANSLATEXOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLACCUMXOESPROC) (GLenum op, GLfixed value); +typedef void (APIENTRYP PFNGLBITMAPXOESPROC) (GLsizei width, GLsizei height, GLfixed xorig, GLfixed yorig, GLfixed xmove, GLfixed ymove, const GLubyte *bitmap); +typedef void (APIENTRYP PFNGLBLENDCOLORXOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLCLEARACCUMXOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLCOLOR3XOESPROC) (GLfixed red, GLfixed green, GLfixed blue); +typedef void (APIENTRYP PFNGLCOLOR3XVOESPROC) (const GLfixed *components); +typedef void (APIENTRYP PFNGLCOLOR4XVOESPROC) (const GLfixed *components); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERXOESPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLEVALCOORD1XOESPROC) (GLfixed u); +typedef void (APIENTRYP PFNGLEVALCOORD1XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLEVALCOORD2XOESPROC) (GLfixed u, GLfixed v); +typedef void (APIENTRYP PFNGLEVALCOORD2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLFEEDBACKBUFFERXOESPROC) (GLsizei n, GLenum type, const GLfixed *buffer); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETLIGHTXOESPROC) (GLenum light, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETMAPXVOESPROC) (GLenum target, GLenum query, GLfixed *v); +typedef void (APIENTRYP PFNGLGETMATERIALXOESPROC) (GLenum face, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLGETPIXELMAPXVPROC) (GLenum map, GLint size, GLfixed *values); +typedef void (APIENTRYP PFNGLGETTEXGENXVOESPROC) (GLenum coord, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERXVOESPROC) (GLenum target, GLint level, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLINDEXXOESPROC) (GLfixed component); +typedef void (APIENTRYP PFNGLINDEXXVOESPROC) (const GLfixed *component); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMAP1XOESPROC) (GLenum target, GLfixed u1, GLfixed u2, GLint stride, GLint order, GLfixed points); +typedef void (APIENTRYP PFNGLMAP2XOESPROC) (GLenum target, GLfixed u1, GLfixed u2, GLint ustride, GLint uorder, GLfixed v1, GLfixed v2, GLint vstride, GLint vorder, GLfixed points); +typedef void (APIENTRYP PFNGLMAPGRID1XOESPROC) (GLint n, GLfixed u1, GLfixed u2); +typedef void (APIENTRYP PFNGLMAPGRID2XOESPROC) (GLint n, GLfixed u1, GLfixed u2, GLfixed v1, GLfixed v2); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1XOESPROC) (GLenum texture, GLfixed s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2XOESPROC) (GLenum texture, GLfixed s, GLfixed t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3XOESPROC) (GLenum texture, GLfixed s, GLfixed t, GLfixed r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLNORMAL3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLPASSTHROUGHXOESPROC) (GLfixed token); +typedef void (APIENTRYP PFNGLPIXELMAPXPROC) (GLenum map, GLint size, const GLfixed *values); +typedef void (APIENTRYP PFNGLPIXELSTOREXPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLPIXELTRANSFERXOESPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLPIXELZOOMXOESPROC) (GLfixed xfactor, GLfixed yfactor); +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESXOESPROC) (GLsizei n, const GLuint *textures, const GLfixed *priorities); +typedef void (APIENTRYP PFNGLRASTERPOS2XOESPROC) (GLfixed x, GLfixed y); +typedef void (APIENTRYP PFNGLRASTERPOS2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLRASTERPOS3XOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLRASTERPOS3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLRASTERPOS4XOESPROC) (GLfixed x, GLfixed y, GLfixed z, GLfixed w); +typedef void (APIENTRYP PFNGLRASTERPOS4XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLRECTXOESPROC) (GLfixed x1, GLfixed y1, GLfixed x2, GLfixed y2); +typedef void (APIENTRYP PFNGLRECTXVOESPROC) (const GLfixed *v1, const GLfixed *v2); +typedef void (APIENTRYP PFNGLTEXCOORD1XOESPROC) (GLfixed s); +typedef void (APIENTRYP PFNGLTEXCOORD1XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXCOORD2XOESPROC) (GLfixed s, GLfixed t); +typedef void (APIENTRYP PFNGLTEXCOORD2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXCOORD3XOESPROC) (GLfixed s, GLfixed t, GLfixed r); +typedef void (APIENTRYP PFNGLTEXCOORD3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXCOORD4XOESPROC) (GLfixed s, GLfixed t, GLfixed r, GLfixed q); +typedef void (APIENTRYP PFNGLTEXCOORD4XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXGENXOESPROC) (GLenum coord, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLTEXGENXVOESPROC) (GLenum coord, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLVERTEX2XOESPROC) (GLfixed x); +typedef void (APIENTRYP PFNGLVERTEX2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLVERTEX3XOESPROC) (GLfixed x, GLfixed y); +typedef void (APIENTRYP PFNGLVERTEX3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLVERTEX4XOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLVERTEX4XVOESPROC) (const GLfixed *coords); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAlphaFuncxOES (GLenum func, GLfixed ref); +GLAPI void APIENTRY glClearColorxOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glClearDepthxOES (GLfixed depth); +GLAPI void APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation); +GLAPI void APIENTRY glColor4xOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glDepthRangexOES (GLfixed n, GLfixed f); +GLAPI void APIENTRY glFogxOES (GLenum pname, GLfixed param); +GLAPI void APIENTRY glFogxvOES (GLenum pname, const GLfixed *param); +GLAPI void APIENTRY glFrustumxOES (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +GLAPI void APIENTRY glGetClipPlanexOES (GLenum plane, GLfixed *equation); +GLAPI void APIENTRY glGetFixedvOES (GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetTexEnvxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetTexParameterxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glLightModelxOES (GLenum pname, GLfixed param); +GLAPI void APIENTRY glLightModelxvOES (GLenum pname, const GLfixed *param); +GLAPI void APIENTRY glLightxOES (GLenum light, GLenum pname, GLfixed param); +GLAPI void APIENTRY glLightxvOES (GLenum light, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glLineWidthxOES (GLfixed width); +GLAPI void APIENTRY glLoadMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMaterialxOES (GLenum face, GLenum pname, GLfixed param); +GLAPI void APIENTRY glMaterialxvOES (GLenum face, GLenum pname, const GLfixed *param); +GLAPI void APIENTRY glMultMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMultiTexCoord4xOES (GLenum texture, GLfixed s, GLfixed t, GLfixed r, GLfixed q); +GLAPI void APIENTRY glNormal3xOES (GLfixed nx, GLfixed ny, GLfixed nz); +GLAPI void APIENTRY glOrthoxOES (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +GLAPI void APIENTRY glPointParameterxvOES (GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glPointSizexOES (GLfixed size); +GLAPI void APIENTRY glPolygonOffsetxOES (GLfixed factor, GLfixed units); +GLAPI void APIENTRY glRotatexOES (GLfixed angle, GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glScalexOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glTexEnvxOES (GLenum target, GLenum pname, GLfixed param); +GLAPI void APIENTRY glTexEnvxvOES (GLenum target, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glTexParameterxOES (GLenum target, GLenum pname, GLfixed param); +GLAPI void APIENTRY glTexParameterxvOES (GLenum target, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glTranslatexOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glAccumxOES (GLenum op, GLfixed value); +GLAPI void APIENTRY glBitmapxOES (GLsizei width, GLsizei height, GLfixed xorig, GLfixed yorig, GLfixed xmove, GLfixed ymove, const GLubyte *bitmap); +GLAPI void APIENTRY glBlendColorxOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glClearAccumxOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glColor3xOES (GLfixed red, GLfixed green, GLfixed blue); +GLAPI void APIENTRY glColor3xvOES (const GLfixed *components); +GLAPI void APIENTRY glColor4xvOES (const GLfixed *components); +GLAPI void APIENTRY glConvolutionParameterxOES (GLenum target, GLenum pname, GLfixed param); +GLAPI void APIENTRY glConvolutionParameterxvOES (GLenum target, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glEvalCoord1xOES (GLfixed u); +GLAPI void APIENTRY glEvalCoord1xvOES (const GLfixed *coords); +GLAPI void APIENTRY glEvalCoord2xOES (GLfixed u, GLfixed v); +GLAPI void APIENTRY glEvalCoord2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glFeedbackBufferxOES (GLsizei n, GLenum type, const GLfixed *buffer); +GLAPI void APIENTRY glGetConvolutionParameterxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetHistogramParameterxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetLightxOES (GLenum light, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetMapxvOES (GLenum target, GLenum query, GLfixed *v); +GLAPI void APIENTRY glGetMaterialxOES (GLenum face, GLenum pname, GLfixed param); +GLAPI void APIENTRY glGetPixelMapxv (GLenum map, GLint size, GLfixed *values); +GLAPI void APIENTRY glGetTexGenxvOES (GLenum coord, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetTexLevelParameterxvOES (GLenum target, GLint level, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glIndexxOES (GLfixed component); +GLAPI void APIENTRY glIndexxvOES (const GLfixed *component); +GLAPI void APIENTRY glLoadTransposeMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMap1xOES (GLenum target, GLfixed u1, GLfixed u2, GLint stride, GLint order, GLfixed points); +GLAPI void APIENTRY glMap2xOES (GLenum target, GLfixed u1, GLfixed u2, GLint ustride, GLint uorder, GLfixed v1, GLfixed v2, GLint vstride, GLint vorder, GLfixed points); +GLAPI void APIENTRY glMapGrid1xOES (GLint n, GLfixed u1, GLfixed u2); +GLAPI void APIENTRY glMapGrid2xOES (GLint n, GLfixed u1, GLfixed u2, GLfixed v1, GLfixed v2); +GLAPI void APIENTRY glMultTransposeMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMultiTexCoord1xOES (GLenum texture, GLfixed s); +GLAPI void APIENTRY glMultiTexCoord1xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glMultiTexCoord2xOES (GLenum texture, GLfixed s, GLfixed t); +GLAPI void APIENTRY glMultiTexCoord2xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glMultiTexCoord3xOES (GLenum texture, GLfixed s, GLfixed t, GLfixed r); +GLAPI void APIENTRY glMultiTexCoord3xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glMultiTexCoord4xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glNormal3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glPassThroughxOES (GLfixed token); +GLAPI void APIENTRY glPixelMapx (GLenum map, GLint size, const GLfixed *values); +GLAPI void APIENTRY glPixelStorex (GLenum pname, GLfixed param); +GLAPI void APIENTRY glPixelTransferxOES (GLenum pname, GLfixed param); +GLAPI void APIENTRY glPixelZoomxOES (GLfixed xfactor, GLfixed yfactor); +GLAPI void APIENTRY glPrioritizeTexturesxOES (GLsizei n, const GLuint *textures, const GLfixed *priorities); +GLAPI void APIENTRY glRasterPos2xOES (GLfixed x, GLfixed y); +GLAPI void APIENTRY glRasterPos2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glRasterPos3xOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glRasterPos3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glRasterPos4xOES (GLfixed x, GLfixed y, GLfixed z, GLfixed w); +GLAPI void APIENTRY glRasterPos4xvOES (const GLfixed *coords); +GLAPI void APIENTRY glRectxOES (GLfixed x1, GLfixed y1, GLfixed x2, GLfixed y2); +GLAPI void APIENTRY glRectxvOES (const GLfixed *v1, const GLfixed *v2); +GLAPI void APIENTRY glTexCoord1xOES (GLfixed s); +GLAPI void APIENTRY glTexCoord1xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexCoord2xOES (GLfixed s, GLfixed t); +GLAPI void APIENTRY glTexCoord2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexCoord3xOES (GLfixed s, GLfixed t, GLfixed r); +GLAPI void APIENTRY glTexCoord3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexCoord4xOES (GLfixed s, GLfixed t, GLfixed r, GLfixed q); +GLAPI void APIENTRY glTexCoord4xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexGenxOES (GLenum coord, GLenum pname, GLfixed param); +GLAPI void APIENTRY glTexGenxvOES (GLenum coord, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glVertex2xOES (GLfixed x); +GLAPI void APIENTRY glVertex2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glVertex3xOES (GLfixed x, GLfixed y); +GLAPI void APIENTRY glVertex3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glVertex4xOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glVertex4xvOES (const GLfixed *coords); +#endif +#endif /* GL_OES_fixed_point */ + +#ifndef GL_OES_query_matrix +#define GL_OES_query_matrix 1 +typedef GLbitfield (APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed *mantissa, GLint *exponent); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLbitfield APIENTRY glQueryMatrixxOES (GLfixed *mantissa, GLint *exponent); +#endif +#endif /* GL_OES_query_matrix */ + +#ifndef GL_OES_read_format +#define GL_OES_read_format 1 +#define GL_IMPLEMENTATION_COLOR_READ_TYPE_OES 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES 0x8B9B +#endif /* GL_OES_read_format */ + +#ifndef GL_OES_single_precision +#define GL_OES_single_precision 1 +typedef void (APIENTRYP PFNGLCLEARDEPTHFOESPROC) (GLclampf depth); +typedef void (APIENTRYP PFNGLCLIPPLANEFOESPROC) (GLenum plane, const GLfloat *equation); +typedef void (APIENTRYP PFNGLDEPTHRANGEFOESPROC) (GLclampf n, GLclampf f); +typedef void (APIENTRYP PFNGLFRUSTUMFOESPROC) (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +typedef void (APIENTRYP PFNGLGETCLIPPLANEFOESPROC) (GLenum plane, GLfloat *equation); +typedef void (APIENTRYP PFNGLORTHOFOESPROC) (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClearDepthfOES (GLclampf depth); +GLAPI void APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation); +GLAPI void APIENTRY glDepthRangefOES (GLclampf n, GLclampf f); +GLAPI void APIENTRY glFrustumfOES (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +GLAPI void APIENTRY glGetClipPlanefOES (GLenum plane, GLfloat *equation); +GLAPI void APIENTRY glOrthofOES (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +#endif +#endif /* GL_OES_single_precision */ + +#ifndef GL_3DFX_multisample +#define GL_3DFX_multisample 1 +#define GL_MULTISAMPLE_3DFX 0x86B2 +#define GL_SAMPLE_BUFFERS_3DFX 0x86B3 +#define GL_SAMPLES_3DFX 0x86B4 +#define GL_MULTISAMPLE_BIT_3DFX 0x20000000 +#endif /* GL_3DFX_multisample */ + +#ifndef GL_3DFX_tbuffer +#define GL_3DFX_tbuffer 1 +typedef void (APIENTRYP PFNGLTBUFFERMASK3DFXPROC) (GLuint mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTbufferMask3DFX (GLuint mask); +#endif +#endif /* GL_3DFX_tbuffer */ + +#ifndef GL_3DFX_texture_compression_FXT1 +#define GL_3DFX_texture_compression_FXT1 1 +#define GL_COMPRESSED_RGB_FXT1_3DFX 0x86B0 +#define GL_COMPRESSED_RGBA_FXT1_3DFX 0x86B1 +#endif /* GL_3DFX_texture_compression_FXT1 */ + +#ifndef GL_AMD_blend_minmax_factor +#define GL_AMD_blend_minmax_factor 1 +#define GL_FACTOR_MIN_AMD 0x901C +#define GL_FACTOR_MAX_AMD 0x901D +#endif /* GL_AMD_blend_minmax_factor */ + +#ifndef GL_AMD_conservative_depth +#define GL_AMD_conservative_depth 1 +#endif /* GL_AMD_conservative_depth */ + +#ifndef GL_AMD_debug_output +#define GL_AMD_debug_output 1 +typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,GLenum category,GLenum severity,GLsizei length,const GLchar *message,void *userParam); +#define GL_MAX_DEBUG_MESSAGE_LENGTH_AMD 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_AMD 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_AMD 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_AMD 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_AMD 0x9147 +#define GL_DEBUG_SEVERITY_LOW_AMD 0x9148 +#define GL_DEBUG_CATEGORY_API_ERROR_AMD 0x9149 +#define GL_DEBUG_CATEGORY_WINDOW_SYSTEM_AMD 0x914A +#define GL_DEBUG_CATEGORY_DEPRECATION_AMD 0x914B +#define GL_DEBUG_CATEGORY_UNDEFINED_BEHAVIOR_AMD 0x914C +#define GL_DEBUG_CATEGORY_PERFORMANCE_AMD 0x914D +#define GL_DEBUG_CATEGORY_SHADER_COMPILER_AMD 0x914E +#define GL_DEBUG_CATEGORY_APPLICATION_AMD 0x914F +#define GL_DEBUG_CATEGORY_OTHER_AMD 0x9150 +typedef void (APIENTRYP PFNGLDEBUGMESSAGEENABLEAMDPROC) (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTAMDPROC) (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKAMDPROC) (GLDEBUGPROCAMD callback, void *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGAMDPROC) (GLuint count, GLsizei bufSize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDebugMessageEnableAMD (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsertAMD (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallbackAMD (GLDEBUGPROCAMD callback, void *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLogAMD (GLuint count, GLsizei bufSize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); +#endif +#endif /* GL_AMD_debug_output */ + +#ifndef GL_AMD_depth_clamp_separate +#define GL_AMD_depth_clamp_separate 1 +#define GL_DEPTH_CLAMP_NEAR_AMD 0x901E +#define GL_DEPTH_CLAMP_FAR_AMD 0x901F +#endif /* GL_AMD_depth_clamp_separate */ + +#ifndef GL_AMD_draw_buffers_blend +#define GL_AMD_draw_buffers_blend 1 +typedef void (APIENTRYP PFNGLBLENDFUNCINDEXEDAMDPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (APIENTRYP PFNGLBLENDEQUATIONINDEXEDAMDPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncIndexedAMD (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparateIndexedAMD (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GLAPI void APIENTRY glBlendEquationIndexedAMD (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparateIndexedAMD (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +#endif +#endif /* GL_AMD_draw_buffers_blend */ + +#ifndef GL_AMD_framebuffer_multisample_advanced +#define GL_AMD_framebuffer_multisample_advanced 1 +#define GL_RENDERBUFFER_STORAGE_SAMPLES_AMD 0x91B2 +#define GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD 0x91B3 +#define GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD 0x91B4 +#define GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD 0x91B5 +#define GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B6 +#define GL_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B7 +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleAdvancedAMD (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleAdvancedAMD (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_AMD_framebuffer_multisample_advanced */ + +#ifndef GL_AMD_framebuffer_sample_positions +#define GL_AMD_framebuffer_sample_positions 1 +#define GL_SUBSAMPLE_DISTANCE_AMD 0x883F +#define GL_PIXELS_PER_SAMPLE_PATTERN_X_AMD 0x91AE +#define GL_PIXELS_PER_SAMPLE_PATTERN_Y_AMD 0x91AF +#define GL_ALL_PIXELS_AMD 0xFFFFFFFF +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC) (GLenum target, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC) (GLuint framebuffer, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERFVAMDPROC) (GLenum target, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERFVAMDPROC) (GLuint framebuffer, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSamplePositionsfvAMD (GLenum target, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +GLAPI void APIENTRY glNamedFramebufferSamplePositionsfvAMD (GLuint framebuffer, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +GLAPI void APIENTRY glGetFramebufferParameterfvAMD (GLenum target, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +GLAPI void APIENTRY glGetNamedFramebufferParameterfvAMD (GLuint framebuffer, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +#endif +#endif /* GL_AMD_framebuffer_sample_positions */ + +#ifndef GL_AMD_gcn_shader +#define GL_AMD_gcn_shader 1 +#endif /* GL_AMD_gcn_shader */ + +#ifndef GL_AMD_gpu_shader_half_float +#define GL_AMD_gpu_shader_half_float 1 +#define GL_FLOAT16_NV 0x8FF8 +#define GL_FLOAT16_VEC2_NV 0x8FF9 +#define GL_FLOAT16_VEC3_NV 0x8FFA +#define GL_FLOAT16_VEC4_NV 0x8FFB +#define GL_FLOAT16_MAT2_AMD 0x91C5 +#define GL_FLOAT16_MAT3_AMD 0x91C6 +#define GL_FLOAT16_MAT4_AMD 0x91C7 +#define GL_FLOAT16_MAT2x3_AMD 0x91C8 +#define GL_FLOAT16_MAT2x4_AMD 0x91C9 +#define GL_FLOAT16_MAT3x2_AMD 0x91CA +#define GL_FLOAT16_MAT3x4_AMD 0x91CB +#define GL_FLOAT16_MAT4x2_AMD 0x91CC +#define GL_FLOAT16_MAT4x3_AMD 0x91CD +#endif /* GL_AMD_gpu_shader_half_float */ + +#ifndef GL_AMD_gpu_shader_int16 +#define GL_AMD_gpu_shader_int16 1 +#endif /* GL_AMD_gpu_shader_int16 */ + +#ifndef GL_AMD_gpu_shader_int64 +#define GL_AMD_gpu_shader_int64 1 +typedef khronos_int64_t GLint64EXT; +#define GL_INT64_NV 0x140E +#define GL_UNSIGNED_INT64_NV 0x140F +#define GL_INT8_NV 0x8FE0 +#define GL_INT8_VEC2_NV 0x8FE1 +#define GL_INT8_VEC3_NV 0x8FE2 +#define GL_INT8_VEC4_NV 0x8FE3 +#define GL_INT16_NV 0x8FE4 +#define GL_INT16_VEC2_NV 0x8FE5 +#define GL_INT16_VEC3_NV 0x8FE6 +#define GL_INT16_VEC4_NV 0x8FE7 +#define GL_INT64_VEC2_NV 0x8FE9 +#define GL_INT64_VEC3_NV 0x8FEA +#define GL_INT64_VEC4_NV 0x8FEB +#define GL_UNSIGNED_INT8_NV 0x8FEC +#define GL_UNSIGNED_INT8_VEC2_NV 0x8FED +#define GL_UNSIGNED_INT8_VEC3_NV 0x8FEE +#define GL_UNSIGNED_INT8_VEC4_NV 0x8FEF +#define GL_UNSIGNED_INT16_NV 0x8FF0 +#define GL_UNSIGNED_INT16_VEC2_NV 0x8FF1 +#define GL_UNSIGNED_INT16_VEC3_NV 0x8FF2 +#define GL_UNSIGNED_INT16_VEC4_NV 0x8FF3 +#define GL_UNSIGNED_INT64_VEC2_NV 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_NV 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_NV 0x8FF7 +typedef void (APIENTRYP PFNGLUNIFORM1I64NVPROC) (GLint location, GLint64EXT x); +typedef void (APIENTRYP PFNGLUNIFORM2I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLUNIFORM3I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLUNIFORM4I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLUNIFORM1I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM2I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM3I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM4I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM1UI64NVPROC) (GLint location, GLuint64EXT x); +typedef void (APIENTRYP PFNGLUNIFORM2UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLUNIFORM3UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLUNIFORM4UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLUNIFORM1UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM2UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM3UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM4UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLGETUNIFORMI64VNVPROC) (GLuint program, GLint location, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64NVPROC) (GLuint program, GLint location, GLint64EXT x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniform1i64NV (GLint location, GLint64EXT x); +GLAPI void APIENTRY glUniform2i64NV (GLint location, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glUniform3i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glUniform4i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glUniform1i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform2i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform3i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform4i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform1ui64NV (GLint location, GLuint64EXT x); +GLAPI void APIENTRY glUniform2ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glUniform3ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glUniform4ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glUniform1ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform2ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform3ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform4ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glGetUniformi64vNV (GLuint program, GLint location, GLint64EXT *params); +GLAPI void APIENTRY glGetUniformui64vNV (GLuint program, GLint location, GLuint64EXT *params); +GLAPI void APIENTRY glProgramUniform1i64NV (GLuint program, GLint location, GLint64EXT x); +GLAPI void APIENTRY glProgramUniform2i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glProgramUniform3i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glProgramUniform4i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glProgramUniform1i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform2i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform3i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform4i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform1ui64NV (GLuint program, GLint location, GLuint64EXT x); +GLAPI void APIENTRY glProgramUniform2ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glProgramUniform3ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glProgramUniform4ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glProgramUniform1ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform2ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform3ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform4ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif +#endif /* GL_AMD_gpu_shader_int64 */ + +#ifndef GL_AMD_interleaved_elements +#define GL_AMD_interleaved_elements 1 +#define GL_VERTEX_ELEMENT_SWIZZLE_AMD 0x91A4 +#define GL_VERTEX_ID_SWIZZLE_AMD 0x91A5 +typedef void (APIENTRYP PFNGLVERTEXATTRIBPARAMETERIAMDPROC) (GLuint index, GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribParameteriAMD (GLuint index, GLenum pname, GLint param); +#endif +#endif /* GL_AMD_interleaved_elements */ + +#ifndef GL_AMD_multi_draw_indirect +#define GL_AMD_multi_draw_indirect 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTAMDPROC) (GLenum mode, const void *indirect, GLsizei primcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTAMDPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei primcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectAMD (GLenum mode, const void *indirect, GLsizei primcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectAMD (GLenum mode, GLenum type, const void *indirect, GLsizei primcount, GLsizei stride); +#endif +#endif /* GL_AMD_multi_draw_indirect */ + +#ifndef GL_AMD_name_gen_delete +#define GL_AMD_name_gen_delete 1 +#define GL_DATA_BUFFER_AMD 0x9151 +#define GL_PERFORMANCE_MONITOR_AMD 0x9152 +#define GL_QUERY_OBJECT_AMD 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_AMD 0x9154 +#define GL_SAMPLER_OBJECT_AMD 0x9155 +typedef void (APIENTRYP PFNGLGENNAMESAMDPROC) (GLenum identifier, GLuint num, GLuint *names); +typedef void (APIENTRYP PFNGLDELETENAMESAMDPROC) (GLenum identifier, GLuint num, const GLuint *names); +typedef GLboolean (APIENTRYP PFNGLISNAMEAMDPROC) (GLenum identifier, GLuint name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenNamesAMD (GLenum identifier, GLuint num, GLuint *names); +GLAPI void APIENTRY glDeleteNamesAMD (GLenum identifier, GLuint num, const GLuint *names); +GLAPI GLboolean APIENTRY glIsNameAMD (GLenum identifier, GLuint name); +#endif +#endif /* GL_AMD_name_gen_delete */ + +#ifndef GL_AMD_occlusion_query_event +#define GL_AMD_occlusion_query_event 1 +#define GL_OCCLUSION_QUERY_EVENT_MASK_AMD 0x874F +#define GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD 0x00000001 +#define GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD 0x00000002 +#define GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD 0x00000004 +#define GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD 0x00000008 +#define GL_QUERY_ALL_EVENT_BITS_AMD 0xFFFFFFFF +typedef void (APIENTRYP PFNGLQUERYOBJECTPARAMETERUIAMDPROC) (GLenum target, GLuint id, GLenum pname, GLuint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glQueryObjectParameteruiAMD (GLenum target, GLuint id, GLenum pname, GLuint param); +#endif +#endif /* GL_AMD_occlusion_query_event */ + +#ifndef GL_AMD_performance_monitor +#define GL_AMD_performance_monitor 1 +#define GL_COUNTER_TYPE_AMD 0x8BC0 +#define GL_COUNTER_RANGE_AMD 0x8BC1 +#define GL_UNSIGNED_INT64_AMD 0x8BC2 +#define GL_PERCENTAGE_AMD 0x8BC3 +#define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4 +#define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5 +#define GL_PERFMON_RESULT_AMD 0x8BC6 +typedef void (APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +typedef void (APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, void *data); +typedef void (APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +typedef void (APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor); +typedef void (APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +GLAPI void APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +GLAPI void APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +GLAPI void APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +GLAPI void APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, void *data); +GLAPI void APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors); +GLAPI void APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors); +GLAPI void APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +GLAPI void APIENTRY glBeginPerfMonitorAMD (GLuint monitor); +GLAPI void APIENTRY glEndPerfMonitorAMD (GLuint monitor); +GLAPI void APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#endif +#endif /* GL_AMD_performance_monitor */ + +#ifndef GL_AMD_pinned_memory +#define GL_AMD_pinned_memory 1 +#define GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD 0x9160 +#endif /* GL_AMD_pinned_memory */ + +#ifndef GL_AMD_query_buffer_object +#define GL_AMD_query_buffer_object 1 +#define GL_QUERY_BUFFER_AMD 0x9192 +#define GL_QUERY_BUFFER_BINDING_AMD 0x9193 +#define GL_QUERY_RESULT_NO_WAIT_AMD 0x9194 +#endif /* GL_AMD_query_buffer_object */ + +#ifndef GL_AMD_sample_positions +#define GL_AMD_sample_positions 1 +typedef void (APIENTRYP PFNGLSETMULTISAMPLEFVAMDPROC) (GLenum pname, GLuint index, const GLfloat *val); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSetMultisamplefvAMD (GLenum pname, GLuint index, const GLfloat *val); +#endif +#endif /* GL_AMD_sample_positions */ + +#ifndef GL_AMD_seamless_cubemap_per_texture +#define GL_AMD_seamless_cubemap_per_texture 1 +#endif /* GL_AMD_seamless_cubemap_per_texture */ + +#ifndef GL_AMD_shader_atomic_counter_ops +#define GL_AMD_shader_atomic_counter_ops 1 +#endif /* GL_AMD_shader_atomic_counter_ops */ + +#ifndef GL_AMD_shader_ballot +#define GL_AMD_shader_ballot 1 +#endif /* GL_AMD_shader_ballot */ + +#ifndef GL_AMD_shader_explicit_vertex_parameter +#define GL_AMD_shader_explicit_vertex_parameter 1 +#endif /* GL_AMD_shader_explicit_vertex_parameter */ + +#ifndef GL_AMD_shader_gpu_shader_half_float_fetch +#define GL_AMD_shader_gpu_shader_half_float_fetch 1 +#endif /* GL_AMD_shader_gpu_shader_half_float_fetch */ + +#ifndef GL_AMD_shader_image_load_store_lod +#define GL_AMD_shader_image_load_store_lod 1 +#endif /* GL_AMD_shader_image_load_store_lod */ + +#ifndef GL_AMD_shader_stencil_export +#define GL_AMD_shader_stencil_export 1 +#endif /* GL_AMD_shader_stencil_export */ + +#ifndef GL_AMD_shader_trinary_minmax +#define GL_AMD_shader_trinary_minmax 1 +#endif /* GL_AMD_shader_trinary_minmax */ + +#ifndef GL_AMD_sparse_texture +#define GL_AMD_sparse_texture 1 +#define GL_VIRTUAL_PAGE_SIZE_X_AMD 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_AMD 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_AMD 0x9197 +#define GL_MAX_SPARSE_TEXTURE_SIZE_AMD 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_AMD 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS 0x919A +#define GL_MIN_SPARSE_LEVEL_AMD 0x919B +#define GL_MIN_LOD_WARNING_AMD 0x919C +#define GL_TEXTURE_STORAGE_SPARSE_BIT_AMD 0x00000001 +typedef void (APIENTRYP PFNGLTEXSTORAGESPARSEAMDPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +typedef void (APIENTRYP PFNGLTEXTURESTORAGESPARSEAMDPROC) (GLuint texture, GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexStorageSparseAMD (GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +GLAPI void APIENTRY glTextureStorageSparseAMD (GLuint texture, GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +#endif +#endif /* GL_AMD_sparse_texture */ + +#ifndef GL_AMD_stencil_operation_extended +#define GL_AMD_stencil_operation_extended 1 +#define GL_SET_AMD 0x874A +#define GL_REPLACE_VALUE_AMD 0x874B +#define GL_STENCIL_OP_VALUE_AMD 0x874C +#define GL_STENCIL_BACK_OP_VALUE_AMD 0x874D +typedef void (APIENTRYP PFNGLSTENCILOPVALUEAMDPROC) (GLenum face, GLuint value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilOpValueAMD (GLenum face, GLuint value); +#endif +#endif /* GL_AMD_stencil_operation_extended */ + +#ifndef GL_AMD_texture_gather_bias_lod +#define GL_AMD_texture_gather_bias_lod 1 +#endif /* GL_AMD_texture_gather_bias_lod */ + +#ifndef GL_AMD_texture_texture4 +#define GL_AMD_texture_texture4 1 +#endif /* GL_AMD_texture_texture4 */ + +#ifndef GL_AMD_transform_feedback3_lines_triangles +#define GL_AMD_transform_feedback3_lines_triangles 1 +#endif /* GL_AMD_transform_feedback3_lines_triangles */ + +#ifndef GL_AMD_transform_feedback4 +#define GL_AMD_transform_feedback4 1 +#define GL_STREAM_RASTERIZATION_AMD 0x91A0 +#endif /* GL_AMD_transform_feedback4 */ + +#ifndef GL_AMD_vertex_shader_layer +#define GL_AMD_vertex_shader_layer 1 +#endif /* GL_AMD_vertex_shader_layer */ + +#ifndef GL_AMD_vertex_shader_tessellator +#define GL_AMD_vertex_shader_tessellator 1 +#define GL_SAMPLER_BUFFER_AMD 0x9001 +#define GL_INT_SAMPLER_BUFFER_AMD 0x9002 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_AMD 0x9003 +#define GL_TESSELLATION_MODE_AMD 0x9004 +#define GL_TESSELLATION_FACTOR_AMD 0x9005 +#define GL_DISCRETE_AMD 0x9006 +#define GL_CONTINUOUS_AMD 0x9007 +typedef void (APIENTRYP PFNGLTESSELLATIONFACTORAMDPROC) (GLfloat factor); +typedef void (APIENTRYP PFNGLTESSELLATIONMODEAMDPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTessellationFactorAMD (GLfloat factor); +GLAPI void APIENTRY glTessellationModeAMD (GLenum mode); +#endif +#endif /* GL_AMD_vertex_shader_tessellator */ + +#ifndef GL_AMD_vertex_shader_viewport_index +#define GL_AMD_vertex_shader_viewport_index 1 +#endif /* GL_AMD_vertex_shader_viewport_index */ + +#ifndef GL_APPLE_aux_depth_stencil +#define GL_APPLE_aux_depth_stencil 1 +#define GL_AUX_DEPTH_STENCIL_APPLE 0x8A14 +#endif /* GL_APPLE_aux_depth_stencil */ + +#ifndef GL_APPLE_client_storage +#define GL_APPLE_client_storage 1 +#define GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2 +#endif /* GL_APPLE_client_storage */ + +#ifndef GL_APPLE_element_array +#define GL_APPLE_element_array 1 +#define GL_ELEMENT_ARRAY_APPLE 0x8A0C +#define GL_ELEMENT_ARRAY_TYPE_APPLE 0x8A0D +#define GL_ELEMENT_ARRAY_POINTER_APPLE 0x8A0E +typedef void (APIENTRYP PFNGLELEMENTPOINTERAPPLEPROC) (GLenum type, const void *pointer); +typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (APIENTRYP PFNGLMULTIDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glElementPointerAPPLE (GLenum type, const void *pointer); +GLAPI void APIENTRY glDrawElementArrayAPPLE (GLenum mode, GLint first, GLsizei count); +GLAPI void APIENTRY glDrawRangeElementArrayAPPLE (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count); +GLAPI void APIENTRY glMultiDrawElementArrayAPPLE (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GLAPI void APIENTRY glMultiDrawRangeElementArrayAPPLE (GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount); +#endif +#endif /* GL_APPLE_element_array */ + +#ifndef GL_APPLE_fence +#define GL_APPLE_fence 1 +#define GL_DRAW_PIXELS_APPLE 0x8A0A +#define GL_FENCE_APPLE 0x8A0B +typedef void (APIENTRYP PFNGLGENFENCESAPPLEPROC) (GLsizei n, GLuint *fences); +typedef void (APIENTRYP PFNGLDELETEFENCESAPPLEPROC) (GLsizei n, const GLuint *fences); +typedef void (APIENTRYP PFNGLSETFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLISFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTFENCEAPPLEPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLFINISHFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTOBJECTAPPLEPROC) (GLenum object, GLuint name); +typedef void (APIENTRYP PFNGLFINISHOBJECTAPPLEPROC) (GLenum object, GLint name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenFencesAPPLE (GLsizei n, GLuint *fences); +GLAPI void APIENTRY glDeleteFencesAPPLE (GLsizei n, const GLuint *fences); +GLAPI void APIENTRY glSetFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glIsFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glTestFenceAPPLE (GLuint fence); +GLAPI void APIENTRY glFinishFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glTestObjectAPPLE (GLenum object, GLuint name); +GLAPI void APIENTRY glFinishObjectAPPLE (GLenum object, GLint name); +#endif +#endif /* GL_APPLE_fence */ + +#ifndef GL_APPLE_float_pixels +#define GL_APPLE_float_pixels 1 +#define GL_HALF_APPLE 0x140B +#define GL_RGBA_FLOAT32_APPLE 0x8814 +#define GL_RGB_FLOAT32_APPLE 0x8815 +#define GL_ALPHA_FLOAT32_APPLE 0x8816 +#define GL_INTENSITY_FLOAT32_APPLE 0x8817 +#define GL_LUMINANCE_FLOAT32_APPLE 0x8818 +#define GL_LUMINANCE_ALPHA_FLOAT32_APPLE 0x8819 +#define GL_RGBA_FLOAT16_APPLE 0x881A +#define GL_RGB_FLOAT16_APPLE 0x881B +#define GL_ALPHA_FLOAT16_APPLE 0x881C +#define GL_INTENSITY_FLOAT16_APPLE 0x881D +#define GL_LUMINANCE_FLOAT16_APPLE 0x881E +#define GL_LUMINANCE_ALPHA_FLOAT16_APPLE 0x881F +#define GL_COLOR_FLOAT_APPLE 0x8A0F +#endif /* GL_APPLE_float_pixels */ + +#ifndef GL_APPLE_flush_buffer_range +#define GL_APPLE_flush_buffer_range 1 +#define GL_BUFFER_SERIALIZED_MODIFY_APPLE 0x8A12 +#define GL_BUFFER_FLUSHING_UNMAP_APPLE 0x8A13 +typedef void (APIENTRYP PFNGLBUFFERPARAMETERIAPPLEPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEAPPLEPROC) (GLenum target, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferParameteriAPPLE (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glFlushMappedBufferRangeAPPLE (GLenum target, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_APPLE_flush_buffer_range */ + +#ifndef GL_APPLE_object_purgeable +#define GL_APPLE_object_purgeable 1 +#define GL_BUFFER_OBJECT_APPLE 0x85B3 +#define GL_RELEASED_APPLE 0x8A19 +#define GL_VOLATILE_APPLE 0x8A1A +#define GL_RETAINED_APPLE 0x8A1B +#define GL_UNDEFINED_APPLE 0x8A1C +#define GL_PURGEABLE_APPLE 0x8A1D +typedef GLenum (APIENTRYP PFNGLOBJECTPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option); +typedef GLenum (APIENTRYP PFNGLOBJECTUNPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVAPPLEPROC) (GLenum objectType, GLuint name, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLenum APIENTRY glObjectPurgeableAPPLE (GLenum objectType, GLuint name, GLenum option); +GLAPI GLenum APIENTRY glObjectUnpurgeableAPPLE (GLenum objectType, GLuint name, GLenum option); +GLAPI void APIENTRY glGetObjectParameterivAPPLE (GLenum objectType, GLuint name, GLenum pname, GLint *params); +#endif +#endif /* GL_APPLE_object_purgeable */ + +#ifndef GL_APPLE_rgb_422 +#define GL_APPLE_rgb_422 1 +#define GL_RGB_422_APPLE 0x8A1F +#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB +#define GL_RGB_RAW_422_APPLE 0x8A51 +#endif /* GL_APPLE_rgb_422 */ + +#ifndef GL_APPLE_row_bytes +#define GL_APPLE_row_bytes 1 +#define GL_PACK_ROW_BYTES_APPLE 0x8A15 +#define GL_UNPACK_ROW_BYTES_APPLE 0x8A16 +#endif /* GL_APPLE_row_bytes */ + +#ifndef GL_APPLE_specular_vector +#define GL_APPLE_specular_vector 1 +#define GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE 0x85B0 +#endif /* GL_APPLE_specular_vector */ + +#ifndef GL_APPLE_texture_range +#define GL_APPLE_texture_range 1 +#define GL_TEXTURE_RANGE_LENGTH_APPLE 0x85B7 +#define GL_TEXTURE_RANGE_POINTER_APPLE 0x85B8 +#define GL_TEXTURE_STORAGE_HINT_APPLE 0x85BC +#define GL_STORAGE_PRIVATE_APPLE 0x85BD +#define GL_STORAGE_CACHED_APPLE 0x85BE +#define GL_STORAGE_SHARED_APPLE 0x85BF +typedef void (APIENTRYP PFNGLTEXTURERANGEAPPLEPROC) (GLenum target, GLsizei length, const void *pointer); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERPOINTERVAPPLEPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureRangeAPPLE (GLenum target, GLsizei length, const void *pointer); +GLAPI void APIENTRY glGetTexParameterPointervAPPLE (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_APPLE_texture_range */ + +#ifndef GL_APPLE_transform_hint +#define GL_APPLE_transform_hint 1 +#define GL_TRANSFORM_HINT_APPLE 0x85B1 +#endif /* GL_APPLE_transform_hint */ + +#ifndef GL_APPLE_vertex_array_object +#define GL_APPLE_vertex_array_object 1 +#define GL_VERTEX_ARRAY_BINDING_APPLE 0x85B5 +typedef void (APIENTRYP PFNGLBINDVERTEXARRAYAPPLEPROC) (GLuint array); +typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint *arrays); +typedef void (APIENTRYP PFNGLGENVERTEXARRAYSAPPLEPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYAPPLEPROC) (GLuint array); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindVertexArrayAPPLE (GLuint array); +GLAPI void APIENTRY glDeleteVertexArraysAPPLE (GLsizei n, const GLuint *arrays); +GLAPI void APIENTRY glGenVertexArraysAPPLE (GLsizei n, GLuint *arrays); +GLAPI GLboolean APIENTRY glIsVertexArrayAPPLE (GLuint array); +#endif +#endif /* GL_APPLE_vertex_array_object */ + +#ifndef GL_APPLE_vertex_array_range +#define GL_APPLE_vertex_array_range 1 +#define GL_VERTEX_ARRAY_RANGE_APPLE 0x851D +#define GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE 0x851E +#define GL_VERTEX_ARRAY_STORAGE_HINT_APPLE 0x851F +#define GL_VERTEX_ARRAY_RANGE_POINTER_APPLE 0x8521 +#define GL_STORAGE_CLIENT_APPLE 0x85B4 +typedef void (APIENTRYP PFNGLVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, void *pointer); +typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, void *pointer); +typedef void (APIENTRYP PFNGLVERTEXARRAYPARAMETERIAPPLEPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexArrayRangeAPPLE (GLsizei length, void *pointer); +GLAPI void APIENTRY glFlushVertexArrayRangeAPPLE (GLsizei length, void *pointer); +GLAPI void APIENTRY glVertexArrayParameteriAPPLE (GLenum pname, GLint param); +#endif +#endif /* GL_APPLE_vertex_array_range */ + +#ifndef GL_APPLE_vertex_program_evaluators +#define GL_APPLE_vertex_program_evaluators 1 +#define GL_VERTEX_ATTRIB_MAP1_APPLE 0x8A00 +#define GL_VERTEX_ATTRIB_MAP2_APPLE 0x8A01 +#define GL_VERTEX_ATTRIB_MAP1_SIZE_APPLE 0x8A02 +#define GL_VERTEX_ATTRIB_MAP1_COEFF_APPLE 0x8A03 +#define GL_VERTEX_ATTRIB_MAP1_ORDER_APPLE 0x8A04 +#define GL_VERTEX_ATTRIB_MAP1_DOMAIN_APPLE 0x8A05 +#define GL_VERTEX_ATTRIB_MAP2_SIZE_APPLE 0x8A06 +#define GL_VERTEX_ATTRIB_MAP2_COEFF_APPLE 0x8A07 +#define GL_VERTEX_ATTRIB_MAP2_ORDER_APPLE 0x8A08 +#define GL_VERTEX_ATTRIB_MAP2_DOMAIN_APPLE 0x8A09 +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname); +typedef GLboolean (APIENTRYP PFNGLISVERTEXATTRIBENABLEDAPPLEPROC) (GLuint index, GLenum pname); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB1DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB1FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB2DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB2FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glEnableVertexAttribAPPLE (GLuint index, GLenum pname); +GLAPI void APIENTRY glDisableVertexAttribAPPLE (GLuint index, GLenum pname); +GLAPI GLboolean APIENTRY glIsVertexAttribEnabledAPPLE (GLuint index, GLenum pname); +GLAPI void APIENTRY glMapVertexAttrib1dAPPLE (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points); +GLAPI void APIENTRY glMapVertexAttrib1fAPPLE (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points); +GLAPI void APIENTRY glMapVertexAttrib2dAPPLE (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points); +GLAPI void APIENTRY glMapVertexAttrib2fAPPLE (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points); +#endif +#endif /* GL_APPLE_vertex_program_evaluators */ + +#ifndef GL_APPLE_ycbcr_422 +#define GL_APPLE_ycbcr_422 1 +#define GL_YCBCR_422_APPLE 0x85B9 +#endif /* GL_APPLE_ycbcr_422 */ + +#ifndef GL_ATI_draw_buffers +#define GL_ATI_draw_buffers 1 +#define GL_MAX_DRAW_BUFFERS_ATI 0x8824 +#define GL_DRAW_BUFFER0_ATI 0x8825 +#define GL_DRAW_BUFFER1_ATI 0x8826 +#define GL_DRAW_BUFFER2_ATI 0x8827 +#define GL_DRAW_BUFFER3_ATI 0x8828 +#define GL_DRAW_BUFFER4_ATI 0x8829 +#define GL_DRAW_BUFFER5_ATI 0x882A +#define GL_DRAW_BUFFER6_ATI 0x882B +#define GL_DRAW_BUFFER7_ATI 0x882C +#define GL_DRAW_BUFFER8_ATI 0x882D +#define GL_DRAW_BUFFER9_ATI 0x882E +#define GL_DRAW_BUFFER10_ATI 0x882F +#define GL_DRAW_BUFFER11_ATI 0x8830 +#define GL_DRAW_BUFFER12_ATI 0x8831 +#define GL_DRAW_BUFFER13_ATI 0x8832 +#define GL_DRAW_BUFFER14_ATI 0x8833 +#define GL_DRAW_BUFFER15_ATI 0x8834 +typedef void (APIENTRYP PFNGLDRAWBUFFERSATIPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawBuffersATI (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_ATI_draw_buffers */ + +#ifndef GL_ATI_element_array +#define GL_ATI_element_array 1 +#define GL_ELEMENT_ARRAY_ATI 0x8768 +#define GL_ELEMENT_ARRAY_TYPE_ATI 0x8769 +#define GL_ELEMENT_ARRAY_POINTER_ATI 0x876A +typedef void (APIENTRYP PFNGLELEMENTPOINTERATIPROC) (GLenum type, const void *pointer); +typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYATIPROC) (GLenum mode, GLsizei count); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYATIPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glElementPointerATI (GLenum type, const void *pointer); +GLAPI void APIENTRY glDrawElementArrayATI (GLenum mode, GLsizei count); +GLAPI void APIENTRY glDrawRangeElementArrayATI (GLenum mode, GLuint start, GLuint end, GLsizei count); +#endif +#endif /* GL_ATI_element_array */ + +#ifndef GL_ATI_envmap_bumpmap +#define GL_ATI_envmap_bumpmap 1 +#define GL_BUMP_ROT_MATRIX_ATI 0x8775 +#define GL_BUMP_ROT_MATRIX_SIZE_ATI 0x8776 +#define GL_BUMP_NUM_TEX_UNITS_ATI 0x8777 +#define GL_BUMP_TEX_UNITS_ATI 0x8778 +#define GL_DUDV_ATI 0x8779 +#define GL_DU8DV8_ATI 0x877A +#define GL_BUMP_ENVMAP_ATI 0x877B +#define GL_BUMP_TARGET_ATI 0x877C +typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERIVATIPROC) (GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERFVATIPROC) (GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERIVATIPROC) (GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERFVATIPROC) (GLenum pname, GLfloat *param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBumpParameterivATI (GLenum pname, const GLint *param); +GLAPI void APIENTRY glTexBumpParameterfvATI (GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glGetTexBumpParameterivATI (GLenum pname, GLint *param); +GLAPI void APIENTRY glGetTexBumpParameterfvATI (GLenum pname, GLfloat *param); +#endif +#endif /* GL_ATI_envmap_bumpmap */ + +#ifndef GL_ATI_fragment_shader +#define GL_ATI_fragment_shader 1 +#define GL_FRAGMENT_SHADER_ATI 0x8920 +#define GL_REG_0_ATI 0x8921 +#define GL_REG_1_ATI 0x8922 +#define GL_REG_2_ATI 0x8923 +#define GL_REG_3_ATI 0x8924 +#define GL_REG_4_ATI 0x8925 +#define GL_REG_5_ATI 0x8926 +#define GL_REG_6_ATI 0x8927 +#define GL_REG_7_ATI 0x8928 +#define GL_REG_8_ATI 0x8929 +#define GL_REG_9_ATI 0x892A +#define GL_REG_10_ATI 0x892B +#define GL_REG_11_ATI 0x892C +#define GL_REG_12_ATI 0x892D +#define GL_REG_13_ATI 0x892E +#define GL_REG_14_ATI 0x892F +#define GL_REG_15_ATI 0x8930 +#define GL_REG_16_ATI 0x8931 +#define GL_REG_17_ATI 0x8932 +#define GL_REG_18_ATI 0x8933 +#define GL_REG_19_ATI 0x8934 +#define GL_REG_20_ATI 0x8935 +#define GL_REG_21_ATI 0x8936 +#define GL_REG_22_ATI 0x8937 +#define GL_REG_23_ATI 0x8938 +#define GL_REG_24_ATI 0x8939 +#define GL_REG_25_ATI 0x893A +#define GL_REG_26_ATI 0x893B +#define GL_REG_27_ATI 0x893C +#define GL_REG_28_ATI 0x893D +#define GL_REG_29_ATI 0x893E +#define GL_REG_30_ATI 0x893F +#define GL_REG_31_ATI 0x8940 +#define GL_CON_0_ATI 0x8941 +#define GL_CON_1_ATI 0x8942 +#define GL_CON_2_ATI 0x8943 +#define GL_CON_3_ATI 0x8944 +#define GL_CON_4_ATI 0x8945 +#define GL_CON_5_ATI 0x8946 +#define GL_CON_6_ATI 0x8947 +#define GL_CON_7_ATI 0x8948 +#define GL_CON_8_ATI 0x8949 +#define GL_CON_9_ATI 0x894A +#define GL_CON_10_ATI 0x894B +#define GL_CON_11_ATI 0x894C +#define GL_CON_12_ATI 0x894D +#define GL_CON_13_ATI 0x894E +#define GL_CON_14_ATI 0x894F +#define GL_CON_15_ATI 0x8950 +#define GL_CON_16_ATI 0x8951 +#define GL_CON_17_ATI 0x8952 +#define GL_CON_18_ATI 0x8953 +#define GL_CON_19_ATI 0x8954 +#define GL_CON_20_ATI 0x8955 +#define GL_CON_21_ATI 0x8956 +#define GL_CON_22_ATI 0x8957 +#define GL_CON_23_ATI 0x8958 +#define GL_CON_24_ATI 0x8959 +#define GL_CON_25_ATI 0x895A +#define GL_CON_26_ATI 0x895B +#define GL_CON_27_ATI 0x895C +#define GL_CON_28_ATI 0x895D +#define GL_CON_29_ATI 0x895E +#define GL_CON_30_ATI 0x895F +#define GL_CON_31_ATI 0x8960 +#define GL_MOV_ATI 0x8961 +#define GL_ADD_ATI 0x8963 +#define GL_MUL_ATI 0x8964 +#define GL_SUB_ATI 0x8965 +#define GL_DOT3_ATI 0x8966 +#define GL_DOT4_ATI 0x8967 +#define GL_MAD_ATI 0x8968 +#define GL_LERP_ATI 0x8969 +#define GL_CND_ATI 0x896A +#define GL_CND0_ATI 0x896B +#define GL_DOT2_ADD_ATI 0x896C +#define GL_SECONDARY_INTERPOLATOR_ATI 0x896D +#define GL_NUM_FRAGMENT_REGISTERS_ATI 0x896E +#define GL_NUM_FRAGMENT_CONSTANTS_ATI 0x896F +#define GL_NUM_PASSES_ATI 0x8970 +#define GL_NUM_INSTRUCTIONS_PER_PASS_ATI 0x8971 +#define GL_NUM_INSTRUCTIONS_TOTAL_ATI 0x8972 +#define GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI 0x8973 +#define GL_NUM_LOOPBACK_COMPONENTS_ATI 0x8974 +#define GL_COLOR_ALPHA_PAIRING_ATI 0x8975 +#define GL_SWIZZLE_STR_ATI 0x8976 +#define GL_SWIZZLE_STQ_ATI 0x8977 +#define GL_SWIZZLE_STR_DR_ATI 0x8978 +#define GL_SWIZZLE_STQ_DQ_ATI 0x8979 +#define GL_SWIZZLE_STRQ_ATI 0x897A +#define GL_SWIZZLE_STRQ_DQ_ATI 0x897B +#define GL_RED_BIT_ATI 0x00000001 +#define GL_GREEN_BIT_ATI 0x00000002 +#define GL_BLUE_BIT_ATI 0x00000004 +#define GL_2X_BIT_ATI 0x00000001 +#define GL_4X_BIT_ATI 0x00000002 +#define GL_8X_BIT_ATI 0x00000004 +#define GL_HALF_BIT_ATI 0x00000008 +#define GL_QUARTER_BIT_ATI 0x00000010 +#define GL_EIGHTH_BIT_ATI 0x00000020 +#define GL_SATURATE_BIT_ATI 0x00000040 +#define GL_COMP_BIT_ATI 0x00000002 +#define GL_NEGATE_BIT_ATI 0x00000004 +#define GL_BIAS_BIT_ATI 0x00000008 +typedef GLuint (APIENTRYP PFNGLGENFRAGMENTSHADERSATIPROC) (GLuint range); +typedef void (APIENTRYP PFNGLBINDFRAGMENTSHADERATIPROC) (GLuint id); +typedef void (APIENTRYP PFNGLDELETEFRAGMENTSHADERATIPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINFRAGMENTSHADERATIPROC) (void); +typedef void (APIENTRYP PFNGLENDFRAGMENTSHADERATIPROC) (void); +typedef void (APIENTRYP PFNGLPASSTEXCOORDATIPROC) (GLuint dst, GLuint coord, GLenum swizzle); +typedef void (APIENTRYP PFNGLSAMPLEMAPATIPROC) (GLuint dst, GLuint interp, GLenum swizzle); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +typedef void (APIENTRYP PFNGLSETFRAGMENTSHADERCONSTANTATIPROC) (GLuint dst, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glGenFragmentShadersATI (GLuint range); +GLAPI void APIENTRY glBindFragmentShaderATI (GLuint id); +GLAPI void APIENTRY glDeleteFragmentShaderATI (GLuint id); +GLAPI void APIENTRY glBeginFragmentShaderATI (void); +GLAPI void APIENTRY glEndFragmentShaderATI (void); +GLAPI void APIENTRY glPassTexCoordATI (GLuint dst, GLuint coord, GLenum swizzle); +GLAPI void APIENTRY glSampleMapATI (GLuint dst, GLuint interp, GLenum swizzle); +GLAPI void APIENTRY glColorFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +GLAPI void APIENTRY glColorFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +GLAPI void APIENTRY glColorFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +GLAPI void APIENTRY glAlphaFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +GLAPI void APIENTRY glAlphaFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +GLAPI void APIENTRY glAlphaFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +GLAPI void APIENTRY glSetFragmentShaderConstantATI (GLuint dst, const GLfloat *value); +#endif +#endif /* GL_ATI_fragment_shader */ + +#ifndef GL_ATI_map_object_buffer +#define GL_ATI_map_object_buffer 1 +typedef void *(APIENTRYP PFNGLMAPOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLUNMAPOBJECTBUFFERATIPROC) (GLuint buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void *APIENTRY glMapObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glUnmapObjectBufferATI (GLuint buffer); +#endif +#endif /* GL_ATI_map_object_buffer */ + +#ifndef GL_ATI_meminfo +#define GL_ATI_meminfo 1 +#define GL_VBO_FREE_MEMORY_ATI 0x87FB +#define GL_TEXTURE_FREE_MEMORY_ATI 0x87FC +#define GL_RENDERBUFFER_FREE_MEMORY_ATI 0x87FD +#endif /* GL_ATI_meminfo */ + +#ifndef GL_ATI_pixel_format_float +#define GL_ATI_pixel_format_float 1 +#define GL_RGBA_FLOAT_MODE_ATI 0x8820 +#define GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI 0x8835 +#endif /* GL_ATI_pixel_format_float */ + +#ifndef GL_ATI_pn_triangles +#define GL_ATI_pn_triangles 1 +#define GL_PN_TRIANGLES_ATI 0x87F0 +#define GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F1 +#define GL_PN_TRIANGLES_POINT_MODE_ATI 0x87F2 +#define GL_PN_TRIANGLES_NORMAL_MODE_ATI 0x87F3 +#define GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F4 +#define GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI 0x87F5 +#define GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI 0x87F6 +#define GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI 0x87F7 +#define GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI 0x87F8 +typedef void (APIENTRYP PFNGLPNTRIANGLESIATIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPNTRIANGLESFATIPROC) (GLenum pname, GLfloat param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPNTrianglesiATI (GLenum pname, GLint param); +GLAPI void APIENTRY glPNTrianglesfATI (GLenum pname, GLfloat param); +#endif +#endif /* GL_ATI_pn_triangles */ + +#ifndef GL_ATI_separate_stencil +#define GL_ATI_separate_stencil 1 +#define GL_STENCIL_BACK_FUNC_ATI 0x8800 +#define GL_STENCIL_BACK_FAIL_ATI 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI 0x8803 +typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEATIPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEATIPROC) (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilOpSeparateATI (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GLAPI void APIENTRY glStencilFuncSeparateATI (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +#endif +#endif /* GL_ATI_separate_stencil */ + +#ifndef GL_ATI_text_fragment_shader +#define GL_ATI_text_fragment_shader 1 +#define GL_TEXT_FRAGMENT_SHADER_ATI 0x8200 +#endif /* GL_ATI_text_fragment_shader */ + +#ifndef GL_ATI_texture_env_combine3 +#define GL_ATI_texture_env_combine3 1 +#define GL_MODULATE_ADD_ATI 0x8744 +#define GL_MODULATE_SIGNED_ADD_ATI 0x8745 +#define GL_MODULATE_SUBTRACT_ATI 0x8746 +#endif /* GL_ATI_texture_env_combine3 */ + +#ifndef GL_ATI_texture_float +#define GL_ATI_texture_float 1 +#define GL_RGBA_FLOAT32_ATI 0x8814 +#define GL_RGB_FLOAT32_ATI 0x8815 +#define GL_ALPHA_FLOAT32_ATI 0x8816 +#define GL_INTENSITY_FLOAT32_ATI 0x8817 +#define GL_LUMINANCE_FLOAT32_ATI 0x8818 +#define GL_LUMINANCE_ALPHA_FLOAT32_ATI 0x8819 +#define GL_RGBA_FLOAT16_ATI 0x881A +#define GL_RGB_FLOAT16_ATI 0x881B +#define GL_ALPHA_FLOAT16_ATI 0x881C +#define GL_INTENSITY_FLOAT16_ATI 0x881D +#define GL_LUMINANCE_FLOAT16_ATI 0x881E +#define GL_LUMINANCE_ALPHA_FLOAT16_ATI 0x881F +#endif /* GL_ATI_texture_float */ + +#ifndef GL_ATI_texture_mirror_once +#define GL_ATI_texture_mirror_once 1 +#define GL_MIRROR_CLAMP_ATI 0x8742 +#define GL_MIRROR_CLAMP_TO_EDGE_ATI 0x8743 +#endif /* GL_ATI_texture_mirror_once */ + +#ifndef GL_ATI_vertex_array_object +#define GL_ATI_vertex_array_object 1 +#define GL_STATIC_ATI 0x8760 +#define GL_DYNAMIC_ATI 0x8761 +#define GL_PRESERVE_ATI 0x8762 +#define GL_DISCARD_ATI 0x8763 +#define GL_OBJECT_BUFFER_SIZE_ATI 0x8764 +#define GL_OBJECT_BUFFER_USAGE_ATI 0x8765 +#define GL_ARRAY_OBJECT_BUFFER_ATI 0x8766 +#define GL_ARRAY_OBJECT_OFFSET_ATI 0x8767 +typedef GLuint (APIENTRYP PFNGLNEWOBJECTBUFFERATIPROC) (GLsizei size, const void *pointer, GLenum usage); +typedef GLboolean (APIENTRYP PFNGLISOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLUPDATEOBJECTBUFFERATIPROC) (GLuint buffer, GLuint offset, GLsizei size, const void *pointer, GLenum preserve); +typedef void (APIENTRYP PFNGLGETOBJECTBUFFERFVATIPROC) (GLuint buffer, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETOBJECTBUFFERIVATIPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLFREEOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLARRAYOBJECTATIPROC) (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETARRAYOBJECTFVATIPROC) (GLenum array, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETARRAYOBJECTIVATIPROC) (GLenum array, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLVARIANTARRAYOBJECTATIPROC) (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTFVATIPROC) (GLuint id, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTIVATIPROC) (GLuint id, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glNewObjectBufferATI (GLsizei size, const void *pointer, GLenum usage); +GLAPI GLboolean APIENTRY glIsObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glUpdateObjectBufferATI (GLuint buffer, GLuint offset, GLsizei size, const void *pointer, GLenum preserve); +GLAPI void APIENTRY glGetObjectBufferfvATI (GLuint buffer, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetObjectBufferivATI (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glFreeObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glArrayObjectATI (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetArrayObjectfvATI (GLenum array, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetArrayObjectivATI (GLenum array, GLenum pname, GLint *params); +GLAPI void APIENTRY glVariantArrayObjectATI (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetVariantArrayObjectfvATI (GLuint id, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVariantArrayObjectivATI (GLuint id, GLenum pname, GLint *params); +#endif +#endif /* GL_ATI_vertex_array_object */ + +#ifndef GL_ATI_vertex_attrib_array_object +#define GL_ATI_vertex_attrib_array_object 1 +typedef void (APIENTRYP PFNGLVERTEXATTRIBARRAYOBJECTATIPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTFVATIPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTIVATIPROC) (GLuint index, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribArrayObjectATI (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetVertexAttribArrayObjectfvATI (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribArrayObjectivATI (GLuint index, GLenum pname, GLint *params); +#endif +#endif /* GL_ATI_vertex_attrib_array_object */ + +#ifndef GL_ATI_vertex_streams +#define GL_ATI_vertex_streams 1 +#define GL_MAX_VERTEX_STREAMS_ATI 0x876B +#define GL_VERTEX_STREAM0_ATI 0x876C +#define GL_VERTEX_STREAM1_ATI 0x876D +#define GL_VERTEX_STREAM2_ATI 0x876E +#define GL_VERTEX_STREAM3_ATI 0x876F +#define GL_VERTEX_STREAM4_ATI 0x8770 +#define GL_VERTEX_STREAM5_ATI 0x8771 +#define GL_VERTEX_STREAM6_ATI 0x8772 +#define GL_VERTEX_STREAM7_ATI 0x8773 +#define GL_VERTEX_SOURCE_ATI 0x8774 +typedef void (APIENTRYP PFNGLVERTEXSTREAM1SATIPROC) (GLenum stream, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1IATIPROC) (GLenum stream, GLint x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1FATIPROC) (GLenum stream, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1DATIPROC) (GLenum stream, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2SATIPROC) (GLenum stream, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2IATIPROC) (GLenum stream, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2FATIPROC) (GLenum stream, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2DATIPROC) (GLenum stream, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3IATIPROC) (GLenum stream, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4IATIPROC) (GLenum stream, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3BATIPROC) (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3BVATIPROC) (GLenum stream, const GLbyte *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3SATIPROC) (GLenum stream, GLshort nx, GLshort ny, GLshort nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3IATIPROC) (GLenum stream, GLint nx, GLint ny, GLint nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3FATIPROC) (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3DATIPROC) (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLCLIENTACTIVEVERTEXSTREAMATIPROC) (GLenum stream); +typedef void (APIENTRYP PFNGLVERTEXBLENDENVIATIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLVERTEXBLENDENVFATIPROC) (GLenum pname, GLfloat param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexStream1sATI (GLenum stream, GLshort x); +GLAPI void APIENTRY glVertexStream1svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream1iATI (GLenum stream, GLint x); +GLAPI void APIENTRY glVertexStream1ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream1fATI (GLenum stream, GLfloat x); +GLAPI void APIENTRY glVertexStream1fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream1dATI (GLenum stream, GLdouble x); +GLAPI void APIENTRY glVertexStream1dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream2sATI (GLenum stream, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexStream2svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream2iATI (GLenum stream, GLint x, GLint y); +GLAPI void APIENTRY glVertexStream2ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream2fATI (GLenum stream, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexStream2fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream2dATI (GLenum stream, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexStream2dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream3sATI (GLenum stream, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexStream3svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream3iATI (GLenum stream, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexStream3ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream3fATI (GLenum stream, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexStream3fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream3dATI (GLenum stream, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexStream3dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream4sATI (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexStream4svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream4iATI (GLenum stream, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexStream4ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream4fATI (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexStream4fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream4dATI (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexStream4dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glNormalStream3bATI (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz); +GLAPI void APIENTRY glNormalStream3bvATI (GLenum stream, const GLbyte *coords); +GLAPI void APIENTRY glNormalStream3sATI (GLenum stream, GLshort nx, GLshort ny, GLshort nz); +GLAPI void APIENTRY glNormalStream3svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glNormalStream3iATI (GLenum stream, GLint nx, GLint ny, GLint nz); +GLAPI void APIENTRY glNormalStream3ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glNormalStream3fATI (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz); +GLAPI void APIENTRY glNormalStream3fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glNormalStream3dATI (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz); +GLAPI void APIENTRY glNormalStream3dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glClientActiveVertexStreamATI (GLenum stream); +GLAPI void APIENTRY glVertexBlendEnviATI (GLenum pname, GLint param); +GLAPI void APIENTRY glVertexBlendEnvfATI (GLenum pname, GLfloat param); +#endif +#endif /* GL_ATI_vertex_streams */ + +#ifndef GL_EXT_422_pixels +#define GL_EXT_422_pixels 1 +#define GL_422_EXT 0x80CC +#define GL_422_REV_EXT 0x80CD +#define GL_422_AVERAGE_EXT 0x80CE +#define GL_422_REV_AVERAGE_EXT 0x80CF +#endif /* GL_EXT_422_pixels */ + +#ifndef GL_EXT_EGL_image_storage +#define GL_EXT_EGL_image_storage 1 +typedef void *GLeglImageOES; +typedef void (APIENTRYP PFNGLEGLIMAGETARGETTEXSTORAGEEXTPROC) (GLenum target, GLeglImageOES image, const GLint* attrib_list); +typedef void (APIENTRYP PFNGLEGLIMAGETARGETTEXTURESTORAGEEXTPROC) (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glEGLImageTargetTexStorageEXT (GLenum target, GLeglImageOES image, const GLint* attrib_list); +GLAPI void APIENTRY glEGLImageTargetTextureStorageEXT (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#endif +#endif /* GL_EXT_EGL_image_storage */ + +#ifndef GL_EXT_EGL_sync +#define GL_EXT_EGL_sync 1 +#endif /* GL_EXT_EGL_sync */ + +#ifndef GL_EXT_abgr +#define GL_EXT_abgr 1 +#define GL_ABGR_EXT 0x8000 +#endif /* GL_EXT_abgr */ + +#ifndef GL_EXT_bgra +#define GL_EXT_bgra 1 +#define GL_BGR_EXT 0x80E0 +#define GL_BGRA_EXT 0x80E1 +#endif /* GL_EXT_bgra */ + +#ifndef GL_EXT_bindable_uniform +#define GL_EXT_bindable_uniform 1 +#define GL_MAX_VERTEX_BINDABLE_UNIFORMS_EXT 0x8DE2 +#define GL_MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT 0x8DE3 +#define GL_MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT 0x8DE4 +#define GL_MAX_BINDABLE_UNIFORM_SIZE_EXT 0x8DED +#define GL_UNIFORM_BUFFER_EXT 0x8DEE +#define GL_UNIFORM_BUFFER_BINDING_EXT 0x8DEF +typedef void (APIENTRYP PFNGLUNIFORMBUFFEREXTPROC) (GLuint program, GLint location, GLuint buffer); +typedef GLint (APIENTRYP PFNGLGETUNIFORMBUFFERSIZEEXTPROC) (GLuint program, GLint location); +typedef GLintptr (APIENTRYP PFNGLGETUNIFORMOFFSETEXTPROC) (GLuint program, GLint location); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniformBufferEXT (GLuint program, GLint location, GLuint buffer); +GLAPI GLint APIENTRY glGetUniformBufferSizeEXT (GLuint program, GLint location); +GLAPI GLintptr APIENTRY glGetUniformOffsetEXT (GLuint program, GLint location); +#endif +#endif /* GL_EXT_bindable_uniform */ + +#ifndef GL_EXT_blend_color +#define GL_EXT_blend_color 1 +#define GL_CONSTANT_COLOR_EXT 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR_EXT 0x8002 +#define GL_CONSTANT_ALPHA_EXT 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA_EXT 0x8004 +#define GL_BLEND_COLOR_EXT 0x8005 +typedef void (APIENTRYP PFNGLBLENDCOLOREXTPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendColorEXT (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +#endif +#endif /* GL_EXT_blend_color */ + +#ifndef GL_EXT_blend_equation_separate +#define GL_EXT_blend_equation_separate 1 +#define GL_BLEND_EQUATION_RGB_EXT 0x8009 +#define GL_BLEND_EQUATION_ALPHA_EXT 0x883D +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEEXTPROC) (GLenum modeRGB, GLenum modeAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationSeparateEXT (GLenum modeRGB, GLenum modeAlpha); +#endif +#endif /* GL_EXT_blend_equation_separate */ + +#ifndef GL_EXT_blend_func_separate +#define GL_EXT_blend_func_separate 1 +#define GL_BLEND_DST_RGB_EXT 0x80C8 +#define GL_BLEND_SRC_RGB_EXT 0x80C9 +#define GL_BLEND_DST_ALPHA_EXT 0x80CA +#define GL_BLEND_SRC_ALPHA_EXT 0x80CB +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEEXTPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparateEXT (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#endif +#endif /* GL_EXT_blend_func_separate */ + +#ifndef GL_EXT_blend_logic_op +#define GL_EXT_blend_logic_op 1 +#endif /* GL_EXT_blend_logic_op */ + +#ifndef GL_EXT_blend_minmax +#define GL_EXT_blend_minmax 1 +#define GL_MIN_EXT 0x8007 +#define GL_MAX_EXT 0x8008 +#define GL_FUNC_ADD_EXT 0x8006 +#define GL_BLEND_EQUATION_EXT 0x8009 +typedef void (APIENTRYP PFNGLBLENDEQUATIONEXTPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationEXT (GLenum mode); +#endif +#endif /* GL_EXT_blend_minmax */ + +#ifndef GL_EXT_blend_subtract +#define GL_EXT_blend_subtract 1 +#define GL_FUNC_SUBTRACT_EXT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT_EXT 0x800B +#endif /* GL_EXT_blend_subtract */ + +#ifndef GL_EXT_clip_volume_hint +#define GL_EXT_clip_volume_hint 1 +#define GL_CLIP_VOLUME_CLIPPING_HINT_EXT 0x80F0 +#endif /* GL_EXT_clip_volume_hint */ + +#ifndef GL_EXT_cmyka +#define GL_EXT_cmyka 1 +#define GL_CMYK_EXT 0x800C +#define GL_CMYKA_EXT 0x800D +#define GL_PACK_CMYK_HINT_EXT 0x800E +#define GL_UNPACK_CMYK_HINT_EXT 0x800F +#endif /* GL_EXT_cmyka */ + +#ifndef GL_EXT_color_subtable +#define GL_EXT_color_subtable 1 +typedef void (APIENTRYP PFNGLCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorSubTableEXT (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glCopyColorSubTableEXT (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +#endif +#endif /* GL_EXT_color_subtable */ + +#ifndef GL_EXT_compiled_vertex_array +#define GL_EXT_compiled_vertex_array 1 +#define GL_ARRAY_ELEMENT_LOCK_FIRST_EXT 0x81A8 +#define GL_ARRAY_ELEMENT_LOCK_COUNT_EXT 0x81A9 +typedef void (APIENTRYP PFNGLLOCKARRAYSEXTPROC) (GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLUNLOCKARRAYSEXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLockArraysEXT (GLint first, GLsizei count); +GLAPI void APIENTRY glUnlockArraysEXT (void); +#endif +#endif /* GL_EXT_compiled_vertex_array */ + +#ifndef GL_EXT_convolution +#define GL_EXT_convolution 1 +#define GL_CONVOLUTION_1D_EXT 0x8010 +#define GL_CONVOLUTION_2D_EXT 0x8011 +#define GL_SEPARABLE_2D_EXT 0x8012 +#define GL_CONVOLUTION_BORDER_MODE_EXT 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE_EXT 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS_EXT 0x8015 +#define GL_REDUCE_EXT 0x8016 +#define GL_CONVOLUTION_FORMAT_EXT 0x8017 +#define GL_CONVOLUTION_WIDTH_EXT 0x8018 +#define GL_CONVOLUTION_HEIGHT_EXT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH_EXT 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT_EXT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE_EXT 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE_EXT 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE_EXT 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE_EXT 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS_EXT 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS_EXT 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS_EXT 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS_EXT 0x8023 +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, void *image); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConvolutionFilter1DEXT (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionFilter2DEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionParameterfEXT (GLenum target, GLenum pname, GLfloat params); +GLAPI void APIENTRY glConvolutionParameterfvEXT (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glConvolutionParameteriEXT (GLenum target, GLenum pname, GLint params); +GLAPI void APIENTRY glConvolutionParameterivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyConvolutionFilter1DEXT (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyConvolutionFilter2DEXT (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetConvolutionFilterEXT (GLenum target, GLenum format, GLenum type, void *image); +GLAPI void APIENTRY glGetConvolutionParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetConvolutionParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSeparableFilterEXT (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +GLAPI void APIENTRY glSeparableFilter2DEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +#endif +#endif /* GL_EXT_convolution */ + +#ifndef GL_EXT_coordinate_frame +#define GL_EXT_coordinate_frame 1 +#define GL_TANGENT_ARRAY_EXT 0x8439 +#define GL_BINORMAL_ARRAY_EXT 0x843A +#define GL_CURRENT_TANGENT_EXT 0x843B +#define GL_CURRENT_BINORMAL_EXT 0x843C +#define GL_TANGENT_ARRAY_TYPE_EXT 0x843E +#define GL_TANGENT_ARRAY_STRIDE_EXT 0x843F +#define GL_BINORMAL_ARRAY_TYPE_EXT 0x8440 +#define GL_BINORMAL_ARRAY_STRIDE_EXT 0x8441 +#define GL_TANGENT_ARRAY_POINTER_EXT 0x8442 +#define GL_BINORMAL_ARRAY_POINTER_EXT 0x8443 +#define GL_MAP1_TANGENT_EXT 0x8444 +#define GL_MAP2_TANGENT_EXT 0x8445 +#define GL_MAP1_BINORMAL_EXT 0x8446 +#define GL_MAP2_BINORMAL_EXT 0x8447 +typedef void (APIENTRYP PFNGLTANGENT3BEXTPROC) (GLbyte tx, GLbyte ty, GLbyte tz); +typedef void (APIENTRYP PFNGLTANGENT3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLTANGENT3DEXTPROC) (GLdouble tx, GLdouble ty, GLdouble tz); +typedef void (APIENTRYP PFNGLTANGENT3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLTANGENT3FEXTPROC) (GLfloat tx, GLfloat ty, GLfloat tz); +typedef void (APIENTRYP PFNGLTANGENT3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLTANGENT3IEXTPROC) (GLint tx, GLint ty, GLint tz); +typedef void (APIENTRYP PFNGLTANGENT3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLTANGENT3SEXTPROC) (GLshort tx, GLshort ty, GLshort tz); +typedef void (APIENTRYP PFNGLTANGENT3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLBINORMAL3BEXTPROC) (GLbyte bx, GLbyte by, GLbyte bz); +typedef void (APIENTRYP PFNGLBINORMAL3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLBINORMAL3DEXTPROC) (GLdouble bx, GLdouble by, GLdouble bz); +typedef void (APIENTRYP PFNGLBINORMAL3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLBINORMAL3FEXTPROC) (GLfloat bx, GLfloat by, GLfloat bz); +typedef void (APIENTRYP PFNGLBINORMAL3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLBINORMAL3IEXTPROC) (GLint bx, GLint by, GLint bz); +typedef void (APIENTRYP PFNGLBINORMAL3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLBINORMAL3SEXTPROC) (GLshort bx, GLshort by, GLshort bz); +typedef void (APIENTRYP PFNGLBINORMAL3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLTANGENTPOINTEREXTPROC) (GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLBINORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTangent3bEXT (GLbyte tx, GLbyte ty, GLbyte tz); +GLAPI void APIENTRY glTangent3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glTangent3dEXT (GLdouble tx, GLdouble ty, GLdouble tz); +GLAPI void APIENTRY glTangent3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glTangent3fEXT (GLfloat tx, GLfloat ty, GLfloat tz); +GLAPI void APIENTRY glTangent3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glTangent3iEXT (GLint tx, GLint ty, GLint tz); +GLAPI void APIENTRY glTangent3ivEXT (const GLint *v); +GLAPI void APIENTRY glTangent3sEXT (GLshort tx, GLshort ty, GLshort tz); +GLAPI void APIENTRY glTangent3svEXT (const GLshort *v); +GLAPI void APIENTRY glBinormal3bEXT (GLbyte bx, GLbyte by, GLbyte bz); +GLAPI void APIENTRY glBinormal3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glBinormal3dEXT (GLdouble bx, GLdouble by, GLdouble bz); +GLAPI void APIENTRY glBinormal3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glBinormal3fEXT (GLfloat bx, GLfloat by, GLfloat bz); +GLAPI void APIENTRY glBinormal3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glBinormal3iEXT (GLint bx, GLint by, GLint bz); +GLAPI void APIENTRY glBinormal3ivEXT (const GLint *v); +GLAPI void APIENTRY glBinormal3sEXT (GLshort bx, GLshort by, GLshort bz); +GLAPI void APIENTRY glBinormal3svEXT (const GLshort *v); +GLAPI void APIENTRY glTangentPointerEXT (GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glBinormalPointerEXT (GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_coordinate_frame */ + +#ifndef GL_EXT_copy_texture +#define GL_EXT_copy_texture 1 +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCopyTexImage1DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyTexImage2DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTexSubImage2DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glCopyTexSubImage3DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#endif +#endif /* GL_EXT_copy_texture */ + +#ifndef GL_EXT_cull_vertex +#define GL_EXT_cull_vertex 1 +#define GL_CULL_VERTEX_EXT 0x81AA +#define GL_CULL_VERTEX_EYE_POSITION_EXT 0x81AB +#define GL_CULL_VERTEX_OBJECT_POSITION_EXT 0x81AC +typedef void (APIENTRYP PFNGLCULLPARAMETERDVEXTPROC) (GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLCULLPARAMETERFVEXTPROC) (GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCullParameterdvEXT (GLenum pname, GLdouble *params); +GLAPI void APIENTRY glCullParameterfvEXT (GLenum pname, GLfloat *params); +#endif +#endif /* GL_EXT_cull_vertex */ + +#ifndef GL_EXT_debug_label +#define GL_EXT_debug_label 1 +#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F +#define GL_PROGRAM_OBJECT_EXT 0x8B40 +#define GL_SHADER_OBJECT_EXT 0x8B48 +#define GL_BUFFER_OBJECT_EXT 0x9151 +#define GL_QUERY_OBJECT_EXT 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154 +typedef void (APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label); +typedef void (APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label); +GLAPI void APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +#endif /* GL_EXT_debug_label */ + +#ifndef GL_EXT_debug_marker +#define GL_EXT_debug_marker 1 +typedef void (APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker); +GLAPI void APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker); +GLAPI void APIENTRY glPopGroupMarkerEXT (void); +#endif +#endif /* GL_EXT_debug_marker */ + +#ifndef GL_EXT_depth_bounds_test +#define GL_EXT_depth_bounds_test 1 +#define GL_DEPTH_BOUNDS_TEST_EXT 0x8890 +#define GL_DEPTH_BOUNDS_EXT 0x8891 +typedef void (APIENTRYP PFNGLDEPTHBOUNDSEXTPROC) (GLclampd zmin, GLclampd zmax); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthBoundsEXT (GLclampd zmin, GLclampd zmax); +#endif +#endif /* GL_EXT_depth_bounds_test */ + +#ifndef GL_EXT_direct_state_access +#define GL_EXT_direct_state_access 1 +#define GL_PROGRAM_MATRIX_EXT 0x8E2D +#define GL_TRANSPOSE_PROGRAM_MATRIX_EXT 0x8E2E +#define GL_PROGRAM_MATRIX_STACK_DEPTH_EXT 0x8E2F +typedef void (APIENTRYP PFNGLMATRIXLOADFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXMULTFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXLOADIDENTITYEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLMATRIXROTATEFEXTPROC) (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXROTATEDEXTPROC) (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXSCALEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXSCALEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXTRANSLATEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXTRANSLATEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXFRUSTUMEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLMATRIXORTHOEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLMATRIXPOPEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLMATRIXPUSHEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLPUSHCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLBINDMULTITEXTUREEXTPROC) (GLenum texunit, GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORDPOINTEREXTPROC) (GLenum texunit, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLMULTITEXENVFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXENVIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXGENDEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble param); +typedef void (APIENTRYP PFNGLMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params); +typedef void (APIENTRYP PFNGLMULTITEXGENFEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXGENIEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXLEVELPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXLEVELPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLGETFLOATINDEXEDVEXTPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (APIENTRYP PFNGLGETDOUBLEINDEXEDVEXTPROC) (GLenum target, GLuint index, GLdouble *data); +typedef void (APIENTRYP PFNGLGETPOINTERINDEXEDVEXTPROC) (GLenum target, GLuint index, void **data); +typedef void (APIENTRYP PFNGLENABLEINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISENABLEDINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLGETINTEGERINDEXEDVEXTPROC) (GLenum target, GLuint index, GLint *data); +typedef void (APIENTRYP PFNGLGETBOOLEANINDEXEDVEXTPROC) (GLenum target, GLuint index, GLboolean *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint lod, void *img); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint lod, void *img); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLNAMEDBUFFERDATAEXTPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFEREXTPROC) (GLuint buffer, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPNAMEDBUFFEREXTPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERIVEXTPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPOINTERVEXTPROC) (GLuint buffer, GLenum pname, void **params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLTEXTUREBUFFEREXTPROC) (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLMULTITEXBUFFEREXTPROC) (GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIEXTPROC) (GLuint program, GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4IEXTPROC) (GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERSI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERSI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERIIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERIUIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint *params); +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEIEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEIEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLGETFLOATI_VEXTPROC) (GLenum pname, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETDOUBLEI_VEXTPROC) (GLenum pname, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPOINTERI_VEXTPROC) (GLenum pname, GLuint index, void **params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum format, GLsizei len, const void *string); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4DEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4DVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4FEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4FVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERDVEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERFVEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMIVEXTPROC) (GLuint program, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum pname, void *string); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEEXTPROC) (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETNAMEDRENDERBUFFERPARAMETERIVEXTPROC) (GLuint renderbuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLECOVERAGEEXTPROC) (GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef GLenum (APIENTRYP PFNGLCHECKNAMEDFRAMEBUFFERSTATUSEXTPROC) (GLuint framebuffer, GLenum target); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE1DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE2DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE3DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERRENDERBUFFEREXTPROC) (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATETEXTUREMIPMAPEXTPROC) (GLuint texture, GLenum target); +typedef void (APIENTRYP PFNGLGENERATEMULTITEXMIPMAPEXTPROC) (GLenum texunit, GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERDRAWBUFFEREXTPROC) (GLuint framebuffer, GLenum mode); +typedef void (APIENTRYP PFNGLFRAMEBUFFERDRAWBUFFERSEXTPROC) (GLuint framebuffer, GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLFRAMEBUFFERREADBUFFEREXTPROC) (GLuint framebuffer, GLenum mode); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLNAMEDCOPYBUFFERSUBDATAEXTPROC) (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURELAYEREXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREFACEEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face); +typedef void (APIENTRYP PFNGLTEXTURERENDERBUFFEREXTPROC) (GLuint texture, GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLMULTITEXRENDERBUFFEREXTPROC) (GLenum texunit, GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYCOLOROFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYEDGEFLAGOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYINDEXOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYNORMALOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYTEXCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYMULTITEXCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum texunit, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYFOGCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYSECONDARYCOLOROFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBIOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYEXTPROC) (GLuint vaobj, GLenum array); +typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYEXTPROC) (GLuint vaobj, GLenum array); +typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYATTRIBEXTPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYATTRIBEXTPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINTEGERVEXTPROC) (GLuint vaobj, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYPOINTERVEXTPROC) (GLuint vaobj, GLenum pname, void **param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINTEGERI_VEXTPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYPOINTERI_VEXTPROC) (GLuint vaobj, GLuint index, GLenum pname, void **param); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERDATAEXTPROC) (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLenum internalformat, GLsizeiptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERPARAMETERIEXTPROC) (GLuint framebuffer, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DEXTPROC) (GLuint program, GLint location, GLdouble x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERRANGEEXTPROC) (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DMULTISAMPLEEXTPROC) (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DMULTISAMPLEEXTPROC) (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLVERTEXARRAYBINDVERTEXBUFFEREXTPROC) (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBIFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBLFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBBINDINGEXTPROC) (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBINDINGDIVISOREXTPROC) (GLuint vaobj, GLuint bindingindex, GLuint divisor); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBLOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLTEXTUREPAGECOMMITMENTEXTPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBDIVISOREXTPROC) (GLuint vaobj, GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMatrixLoadfEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoaddEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixMultfEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultdEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixLoadIdentityEXT (GLenum mode); +GLAPI void APIENTRY glMatrixRotatefEXT (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixRotatedEXT (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixScalefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixScaledEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixTranslatefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixTranslatedEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixFrustumEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glMatrixOrthoEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glMatrixPopEXT (GLenum mode); +GLAPI void APIENTRY glMatrixPushEXT (GLenum mode); +GLAPI void APIENTRY glClientAttribDefaultEXT (GLbitfield mask); +GLAPI void APIENTRY glPushClientAttribDefaultEXT (GLbitfield mask); +GLAPI void APIENTRY glTextureParameterfEXT (GLuint texture, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glTextureParameterfvEXT (GLuint texture, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glTextureParameteriEXT (GLuint texture, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glTextureParameterivEXT (GLuint texture, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetTextureImageEXT (GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +GLAPI void APIENTRY glGetTextureParameterfvEXT (GLuint texture, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureParameterivEXT (GLuint texture, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureLevelParameterfvEXT (GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureLevelParameterivEXT (GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glTextureImage3DEXT (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glBindMultiTextureEXT (GLenum texunit, GLenum target, GLuint texture); +GLAPI void APIENTRY glMultiTexCoordPointerEXT (GLenum texunit, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glMultiTexEnvfEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexEnvfvEXT (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexEnviEXT (GLenum texunit, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexEnvivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexGendEXT (GLenum texunit, GLenum coord, GLenum pname, GLdouble param); +GLAPI void APIENTRY glMultiTexGendvEXT (GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params); +GLAPI void APIENTRY glMultiTexGenfEXT (GLenum texunit, GLenum coord, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexGenfvEXT (GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexGeniEXT (GLenum texunit, GLenum coord, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexGenivEXT (GLenum texunit, GLenum coord, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetMultiTexEnvfvEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexEnvivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexGendvEXT (GLenum texunit, GLenum coord, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetMultiTexGenfvEXT (GLenum texunit, GLenum coord, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexGenivEXT (GLenum texunit, GLenum coord, GLenum pname, GLint *params); +GLAPI void APIENTRY glMultiTexParameteriEXT (GLenum texunit, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexParameterivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexParameterfEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexParameterfvEXT (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetMultiTexImageEXT (GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +GLAPI void APIENTRY glGetMultiTexParameterfvEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexParameterivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexLevelParameterfvEXT (GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexLevelParameterivEXT (GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glMultiTexImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glEnableClientStateIndexedEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glDisableClientStateIndexedEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glGetFloatIndexedvEXT (GLenum target, GLuint index, GLfloat *data); +GLAPI void APIENTRY glGetDoubleIndexedvEXT (GLenum target, GLuint index, GLdouble *data); +GLAPI void APIENTRY glGetPointerIndexedvEXT (GLenum target, GLuint index, void **data); +GLAPI void APIENTRY glEnableIndexedEXT (GLenum target, GLuint index); +GLAPI void APIENTRY glDisableIndexedEXT (GLenum target, GLuint index); +GLAPI GLboolean APIENTRY glIsEnabledIndexedEXT (GLenum target, GLuint index); +GLAPI void APIENTRY glGetIntegerIndexedvEXT (GLenum target, GLuint index, GLint *data); +GLAPI void APIENTRY glGetBooleanIndexedvEXT (GLenum target, GLuint index, GLboolean *data); +GLAPI void APIENTRY glCompressedTextureImage3DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glGetCompressedTextureImageEXT (GLuint texture, GLenum target, GLint lod, void *img); +GLAPI void APIENTRY glCompressedMultiTexImage3DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glGetCompressedMultiTexImageEXT (GLenum texunit, GLenum target, GLint lod, void *img); +GLAPI void APIENTRY glMatrixLoadTransposefEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoadTransposedEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixMultTransposefEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultTransposedEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glNamedBufferDataEXT (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +GLAPI void APIENTRY glNamedBufferSubDataEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void *APIENTRY glMapNamedBufferEXT (GLuint buffer, GLenum access); +GLAPI GLboolean APIENTRY glUnmapNamedBufferEXT (GLuint buffer); +GLAPI void APIENTRY glGetNamedBufferParameterivEXT (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedBufferPointervEXT (GLuint buffer, GLenum pname, void **params); +GLAPI void APIENTRY glGetNamedBufferSubDataEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +GLAPI void APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat v0); +GLAPI void APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint v0); +GLAPI void APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glTextureBufferEXT (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glMultiTexBufferEXT (GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glTextureParameterIivEXT (GLuint texture, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureParameterIuivEXT (GLuint texture, GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTextureParameterIivEXT (GLuint texture, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterIuivEXT (GLuint texture, GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glMultiTexParameterIivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexParameterIuivEXT (GLenum texunit, GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetMultiTexParameterIivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexParameterIuivEXT (GLenum texunit, GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glProgramUniform1uiEXT (GLuint program, GLint location, GLuint v0); +GLAPI void APIENTRY glProgramUniform2uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glProgramUniform3uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glProgramUniform4uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glProgramUniform1uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform2uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform3uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform4uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glNamedProgramLocalParameters4fvEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glNamedProgramLocalParameterI4iEXT (GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glNamedProgramLocalParameterI4ivEXT (GLuint program, GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glNamedProgramLocalParametersI4ivEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glNamedProgramLocalParameterI4uiEXT (GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glNamedProgramLocalParameterI4uivEXT (GLuint program, GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glNamedProgramLocalParametersI4uivEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterIivEXT (GLuint program, GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterIuivEXT (GLuint program, GLenum target, GLuint index, GLuint *params); +GLAPI void APIENTRY glEnableClientStateiEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glDisableClientStateiEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glGetFloati_vEXT (GLenum pname, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetDoublei_vEXT (GLenum pname, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetPointeri_vEXT (GLenum pname, GLuint index, void **params); +GLAPI void APIENTRY glNamedProgramStringEXT (GLuint program, GLenum target, GLenum format, GLsizei len, const void *string); +GLAPI void APIENTRY glNamedProgramLocalParameter4dEXT (GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glNamedProgramLocalParameter4dvEXT (GLuint program, GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glNamedProgramLocalParameter4fEXT (GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glNamedProgramLocalParameter4fvEXT (GLuint program, GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterdvEXT (GLuint program, GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterfvEXT (GLuint program, GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetNamedProgramivEXT (GLuint program, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedProgramStringEXT (GLuint program, GLenum target, GLenum pname, void *string); +GLAPI void APIENTRY glNamedRenderbufferStorageEXT (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetNamedRenderbufferParameterivEXT (GLuint renderbuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleEXT (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleCoverageEXT (GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI GLenum APIENTRY glCheckNamedFramebufferStatusEXT (GLuint framebuffer, GLenum target); +GLAPI void APIENTRY glNamedFramebufferTexture1DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTexture2DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTexture3DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glNamedFramebufferRenderbufferEXT (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetNamedFramebufferAttachmentParameterivEXT (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateTextureMipmapEXT (GLuint texture, GLenum target); +GLAPI void APIENTRY glGenerateMultiTexMipmapEXT (GLenum texunit, GLenum target); +GLAPI void APIENTRY glFramebufferDrawBufferEXT (GLuint framebuffer, GLenum mode); +GLAPI void APIENTRY glFramebufferDrawBuffersEXT (GLuint framebuffer, GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glFramebufferReadBufferEXT (GLuint framebuffer, GLenum mode); +GLAPI void APIENTRY glGetFramebufferParameterivEXT (GLuint framebuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glNamedCopyBufferSubDataEXT (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glNamedFramebufferTextureEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTextureLayerEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glNamedFramebufferTextureFaceEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face); +GLAPI void APIENTRY glTextureRenderbufferEXT (GLuint texture, GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glMultiTexRenderbufferEXT (GLenum texunit, GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glVertexArrayVertexOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayColorOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayEdgeFlagOffsetEXT (GLuint vaobj, GLuint buffer, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayIndexOffsetEXT (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayNormalOffsetEXT (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayTexCoordOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayMultiTexCoordOffsetEXT (GLuint vaobj, GLuint buffer, GLenum texunit, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayFogCoordOffsetEXT (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArraySecondaryColorOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayVertexAttribOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayVertexAttribIOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glEnableVertexArrayEXT (GLuint vaobj, GLenum array); +GLAPI void APIENTRY glDisableVertexArrayEXT (GLuint vaobj, GLenum array); +GLAPI void APIENTRY glEnableVertexArrayAttribEXT (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glDisableVertexArrayAttribEXT (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glGetVertexArrayIntegervEXT (GLuint vaobj, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayPointervEXT (GLuint vaobj, GLenum pname, void **param); +GLAPI void APIENTRY glGetVertexArrayIntegeri_vEXT (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayPointeri_vEXT (GLuint vaobj, GLuint index, GLenum pname, void **param); +GLAPI void *APIENTRY glMapNamedBufferRangeEXT (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI void APIENTRY glFlushMappedNamedBufferRangeEXT (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glNamedBufferStorageEXT (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +GLAPI void APIENTRY glClearNamedBufferDataEXT (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearNamedBufferSubDataEXT (GLuint buffer, GLenum internalformat, GLsizeiptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glNamedFramebufferParameteriEXT (GLuint framebuffer, GLenum pname, GLint param); +GLAPI void APIENTRY glGetNamedFramebufferParameterivEXT (GLuint framebuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glProgramUniform1dEXT (GLuint program, GLint location, GLdouble x); +GLAPI void APIENTRY glProgramUniform2dEXT (GLuint program, GLint location, GLdouble x, GLdouble y); +GLAPI void APIENTRY glProgramUniform3dEXT (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glProgramUniform4dEXT (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramUniform1dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform2dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform3dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform4dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glTextureBufferRangeEXT (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glTextureStorage1DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTextureStorage2DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureStorage3DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glTextureStorage2DMultisampleEXT (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureStorage3DMultisampleEXT (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glVertexArrayBindVertexBufferEXT (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +GLAPI void APIENTRY glVertexArrayVertexAttribFormatEXT (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayVertexAttribIFormatEXT (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayVertexAttribLFormatEXT (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayVertexAttribBindingEXT (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +GLAPI void APIENTRY glVertexArrayVertexBindingDivisorEXT (GLuint vaobj, GLuint bindingindex, GLuint divisor); +GLAPI void APIENTRY glVertexArrayVertexAttribLOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glTexturePageCommitmentEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +GLAPI void APIENTRY glVertexArrayVertexAttribDivisorEXT (GLuint vaobj, GLuint index, GLuint divisor); +#endif +#endif /* GL_EXT_direct_state_access */ + +#ifndef GL_EXT_draw_buffers2 +#define GL_EXT_draw_buffers2 1 +typedef void (APIENTRYP PFNGLCOLORMASKINDEXEDEXTPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorMaskIndexedEXT (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +#endif +#endif /* GL_EXT_draw_buffers2 */ + +#ifndef GL_EXT_draw_instanced +#define GL_EXT_draw_instanced 1 +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +GLAPI void APIENTRY glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_EXT_draw_instanced */ + +#ifndef GL_EXT_draw_range_elements +#define GL_EXT_draw_range_elements 1 +#define GL_MAX_ELEMENTS_VERTICES_EXT 0x80E8 +#define GL_MAX_ELEMENTS_INDICES_EXT 0x80E9 +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawRangeElementsEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +#endif +#endif /* GL_EXT_draw_range_elements */ + +#ifndef GL_EXT_external_buffer +#define GL_EXT_external_buffer 1 +typedef void *GLeglClientBufferEXT; +typedef void (APIENTRYP PFNGLBUFFERSTORAGEEXTERNALEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTERNALEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferStorageExternalEXT (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +GLAPI void APIENTRY glNamedBufferStorageExternalEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#endif +#endif /* GL_EXT_external_buffer */ + +#ifndef GL_EXT_fog_coord +#define GL_EXT_fog_coord 1 +#define GL_FOG_COORDINATE_SOURCE_EXT 0x8450 +#define GL_FOG_COORDINATE_EXT 0x8451 +#define GL_FRAGMENT_DEPTH_EXT 0x8452 +#define GL_CURRENT_FOG_COORDINATE_EXT 0x8453 +#define GL_FOG_COORDINATE_ARRAY_TYPE_EXT 0x8454 +#define GL_FOG_COORDINATE_ARRAY_STRIDE_EXT 0x8455 +#define GL_FOG_COORDINATE_ARRAY_POINTER_EXT 0x8456 +#define GL_FOG_COORDINATE_ARRAY_EXT 0x8457 +typedef void (APIENTRYP PFNGLFOGCOORDFEXTPROC) (GLfloat coord); +typedef void (APIENTRYP PFNGLFOGCOORDFVEXTPROC) (const GLfloat *coord); +typedef void (APIENTRYP PFNGLFOGCOORDDEXTPROC) (GLdouble coord); +typedef void (APIENTRYP PFNGLFOGCOORDDVEXTPROC) (const GLdouble *coord); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTEREXTPROC) (GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFogCoordfEXT (GLfloat coord); +GLAPI void APIENTRY glFogCoordfvEXT (const GLfloat *coord); +GLAPI void APIENTRY glFogCoorddEXT (GLdouble coord); +GLAPI void APIENTRY glFogCoorddvEXT (const GLdouble *coord); +GLAPI void APIENTRY glFogCoordPointerEXT (GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_fog_coord */ + +#ifndef GL_EXT_framebuffer_blit +#define GL_EXT_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_EXT 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_EXT 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_EXT 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_EXT 0x8CAA +typedef void (APIENTRYP PFNGLBLITFRAMEBUFFEREXTPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlitFramebufferEXT (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_EXT_framebuffer_blit */ + +#ifndef GL_EXT_framebuffer_multisample +#define GL_EXT_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 +#define GL_MAX_SAMPLES_EXT 0x8D57 +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_EXT_framebuffer_multisample */ + +#ifndef GL_EXT_framebuffer_multisample_blit_scaled +#define GL_EXT_framebuffer_multisample_blit_scaled 1 +#define GL_SCALED_RESOLVE_FASTEST_EXT 0x90BA +#define GL_SCALED_RESOLVE_NICEST_EXT 0x90BB +#endif /* GL_EXT_framebuffer_multisample_blit_scaled */ + +#ifndef GL_EXT_framebuffer_object +#define GL_EXT_framebuffer_object 1 +#define GL_INVALID_FRAMEBUFFER_OPERATION_EXT 0x0506 +#define GL_MAX_RENDERBUFFER_SIZE_EXT 0x84E8 +#define GL_FRAMEBUFFER_BINDING_EXT 0x8CA6 +#define GL_RENDERBUFFER_BINDING_EXT 0x8CA7 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE_EXT 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT 0x8CD9 +#define GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT 0x8CDA +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED_EXT 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF +#define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 +#define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 +#define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 +#define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 +#define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 +#define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 +#define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 +#define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 +#define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 +#define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 +#define GL_COLOR_ATTACHMENT10_EXT 0x8CEA +#define GL_COLOR_ATTACHMENT11_EXT 0x8CEB +#define GL_COLOR_ATTACHMENT12_EXT 0x8CEC +#define GL_COLOR_ATTACHMENT13_EXT 0x8CED +#define GL_COLOR_ATTACHMENT14_EXT 0x8CEE +#define GL_COLOR_ATTACHMENT15_EXT 0x8CEF +#define GL_DEPTH_ATTACHMENT_EXT 0x8D00 +#define GL_STENCIL_ATTACHMENT_EXT 0x8D20 +#define GL_FRAMEBUFFER_EXT 0x8D40 +#define GL_RENDERBUFFER_EXT 0x8D41 +#define GL_RENDERBUFFER_WIDTH_EXT 0x8D42 +#define GL_RENDERBUFFER_HEIGHT_EXT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT_EXT 0x8D44 +#define GL_STENCIL_INDEX1_EXT 0x8D46 +#define GL_STENCIL_INDEX4_EXT 0x8D47 +#define GL_STENCIL_INDEX8_EXT 0x8D48 +#define GL_STENCIL_INDEX16_EXT 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE_EXT 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE_EXT 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE_EXT 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE_EXT 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE_EXT 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE_EXT 0x8D55 +typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFEREXTPROC) (GLuint renderbuffer); +typedef void (APIENTRYP PFNGLBINDRENDERBUFFEREXTPROC) (GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSEXTPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLGENRENDERBUFFERSEXTPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFEREXTPROC) (GLuint framebuffer); +typedef void (APIENTRYP PFNGLBINDFRAMEBUFFEREXTPROC) (GLenum target, GLuint framebuffer); +typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSEXTPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSEXTPROC) (GLsizei n, GLuint *framebuffers); +typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC) (GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFEREXTPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATEMIPMAPEXTPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glIsRenderbufferEXT (GLuint renderbuffer); +GLAPI void APIENTRY glBindRenderbufferEXT (GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glDeleteRenderbuffersEXT (GLsizei n, const GLuint *renderbuffers); +GLAPI void APIENTRY glGenRenderbuffersEXT (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glRenderbufferStorageEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetRenderbufferParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI GLboolean APIENTRY glIsFramebufferEXT (GLuint framebuffer); +GLAPI void APIENTRY glBindFramebufferEXT (GLenum target, GLuint framebuffer); +GLAPI void APIENTRY glDeleteFramebuffersEXT (GLsizei n, const GLuint *framebuffers); +GLAPI void APIENTRY glGenFramebuffersEXT (GLsizei n, GLuint *framebuffers); +GLAPI GLenum APIENTRY glCheckFramebufferStatusEXT (GLenum target); +GLAPI void APIENTRY glFramebufferTexture1DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture2DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture3DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glFramebufferRenderbufferEXT (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetFramebufferAttachmentParameterivEXT (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateMipmapEXT (GLenum target); +#endif +#endif /* GL_EXT_framebuffer_object */ + +#ifndef GL_EXT_framebuffer_sRGB +#define GL_EXT_framebuffer_sRGB 1 +#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 +#define GL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x8DBA +#endif /* GL_EXT_framebuffer_sRGB */ + +#ifndef GL_EXT_geometry_shader4 +#define GL_EXT_geometry_shader4 1 +#define GL_GEOMETRY_SHADER_EXT 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT_EXT 0x8DDA +#define GL_GEOMETRY_INPUT_TYPE_EXT 0x8DDB +#define GL_GEOMETRY_OUTPUT_TYPE_EXT 0x8DDC +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29 +#define GL_MAX_GEOMETRY_VARYING_COMPONENTS_EXT 0x8DDD +#define GL_MAX_VERTEX_VARYING_COMPONENTS_EXT 0x8DDE +#define GL_MAX_VARYING_COMPONENTS_EXT 0x8B4B +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1 +#define GL_LINES_ADJACENCY_EXT 0x000A +#define GL_LINE_STRIP_ADJACENCY_EXT 0x000B +#define GL_TRIANGLES_ADJACENCY_EXT 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0x000D +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT 0x8DA9 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT 0x8CD4 +#define GL_PROGRAM_POINT_SIZE_EXT 0x8642 +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value); +#endif +#endif /* GL_EXT_geometry_shader4 */ + +#ifndef GL_EXT_gpu_program_parameters +#define GL_EXT_gpu_program_parameters 1 +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramEnvParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glProgramLocalParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +#endif +#endif /* GL_EXT_gpu_program_parameters */ + +#ifndef GL_EXT_gpu_shader4 +#define GL_EXT_gpu_shader4 1 +#define GL_SAMPLER_1D_ARRAY_EXT 0x8DC0 +#define GL_SAMPLER_2D_ARRAY_EXT 0x8DC1 +#define GL_SAMPLER_BUFFER_EXT 0x8DC2 +#define GL_SAMPLER_1D_ARRAY_SHADOW_EXT 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW_EXT 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW_EXT 0x8DC5 +#define GL_UNSIGNED_INT_VEC2_EXT 0x8DC6 +#define GL_UNSIGNED_INT_VEC3_EXT 0x8DC7 +#define GL_UNSIGNED_INT_VEC4_EXT 0x8DC8 +#define GL_INT_SAMPLER_1D_EXT 0x8DC9 +#define GL_INT_SAMPLER_2D_EXT 0x8DCA +#define GL_INT_SAMPLER_3D_EXT 0x8DCB +#define GL_INT_SAMPLER_CUBE_EXT 0x8DCC +#define GL_INT_SAMPLER_2D_RECT_EXT 0x8DCD +#define GL_INT_SAMPLER_1D_ARRAY_EXT 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY_EXT 0x8DCF +#define GL_INT_SAMPLER_BUFFER_EXT 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_1D_EXT 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D_EXT 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D_EXT 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE_EXT 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT_EXT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT 0x8DD7 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT 0x8DD8 +#define GL_MIN_PROGRAM_TEXEL_OFFSET_EXT 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET_EXT 0x8905 +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT 0x88FD +typedef void (APIENTRYP PFNGLGETUNIFORMUIVEXTPROC) (GLuint program, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONEXTPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONEXTPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORM1UIEXTPROC) (GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLUNIFORM2UIEXTPROC) (GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLUNIFORM3UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLUNIFORM4UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLUNIFORM1UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM2UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM3UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM4UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IEXTPROC) (GLuint index, GLint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IEXTPROC) (GLuint index, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IEXTPROC) (GLuint index, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IEXTPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIEXTPROC) (GLuint index, GLuint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIEXTPROC) (GLuint index, GLuint x, GLuint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVEXTPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVEXTPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVEXTPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVEXTPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVEXTPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVEXTPROC) (GLuint index, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetUniformuivEXT (GLuint program, GLint location, GLuint *params); +GLAPI void APIENTRY glBindFragDataLocationEXT (GLuint program, GLuint color, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataLocationEXT (GLuint program, const GLchar *name); +GLAPI void APIENTRY glUniform1uiEXT (GLint location, GLuint v0); +GLAPI void APIENTRY glUniform2uiEXT (GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glUniform3uiEXT (GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glUniform4uiEXT (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glUniform1uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform2uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform3uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform4uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glVertexAttribI1iEXT (GLuint index, GLint x); +GLAPI void APIENTRY glVertexAttribI2iEXT (GLuint index, GLint x, GLint y); +GLAPI void APIENTRY glVertexAttribI3iEXT (GLuint index, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexAttribI4iEXT (GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexAttribI1uiEXT (GLuint index, GLuint x); +GLAPI void APIENTRY glVertexAttribI2uiEXT (GLuint index, GLuint x, GLuint y); +GLAPI void APIENTRY glVertexAttribI3uiEXT (GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI void APIENTRY glVertexAttribI4uiEXT (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glVertexAttribI1ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI2ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI3ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI4ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI1uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI2uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI3uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4bvEXT (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttribI4svEXT (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttribI4ubvEXT (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribI4usvEXT (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribIPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribIivEXT (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribIuivEXT (GLuint index, GLenum pname, GLuint *params); +#endif +#endif /* GL_EXT_gpu_shader4 */ + +#ifndef GL_EXT_histogram +#define GL_EXT_histogram 1 +#define GL_HISTOGRAM_EXT 0x8024 +#define GL_PROXY_HISTOGRAM_EXT 0x8025 +#define GL_HISTOGRAM_WIDTH_EXT 0x8026 +#define GL_HISTOGRAM_FORMAT_EXT 0x8027 +#define GL_HISTOGRAM_RED_SIZE_EXT 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE_EXT 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE_EXT 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE_EXT 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE_EXT 0x802C +#define GL_HISTOGRAM_SINK_EXT 0x802D +#define GL_MINMAX_EXT 0x802E +#define GL_MINMAX_FORMAT_EXT 0x802F +#define GL_MINMAX_SINK_EXT 0x8030 +#define GL_TABLE_TOO_LARGE_EXT 0x8031 +typedef void (APIENTRYP PFNGLGETHISTOGRAMEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMINMAXEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLHISTOGRAMEXTPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLMINMAXEXTPROC) (GLenum target, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLRESETHISTOGRAMEXTPROC) (GLenum target); +typedef void (APIENTRYP PFNGLRESETMINMAXEXTPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetHistogramEXT (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetHistogramParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetHistogramParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMinmaxEXT (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetMinmaxParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMinmaxParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glHistogramEXT (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glMinmaxEXT (GLenum target, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glResetHistogramEXT (GLenum target); +GLAPI void APIENTRY glResetMinmaxEXT (GLenum target); +#endif +#endif /* GL_EXT_histogram */ + +#ifndef GL_EXT_index_array_formats +#define GL_EXT_index_array_formats 1 +#define GL_IUI_V2F_EXT 0x81AD +#define GL_IUI_V3F_EXT 0x81AE +#define GL_IUI_N3F_V2F_EXT 0x81AF +#define GL_IUI_N3F_V3F_EXT 0x81B0 +#define GL_T2F_IUI_V2F_EXT 0x81B1 +#define GL_T2F_IUI_V3F_EXT 0x81B2 +#define GL_T2F_IUI_N3F_V2F_EXT 0x81B3 +#define GL_T2F_IUI_N3F_V3F_EXT 0x81B4 +#endif /* GL_EXT_index_array_formats */ + +#ifndef GL_EXT_index_func +#define GL_EXT_index_func 1 +#define GL_INDEX_TEST_EXT 0x81B5 +#define GL_INDEX_TEST_FUNC_EXT 0x81B6 +#define GL_INDEX_TEST_REF_EXT 0x81B7 +typedef void (APIENTRYP PFNGLINDEXFUNCEXTPROC) (GLenum func, GLclampf ref); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIndexFuncEXT (GLenum func, GLclampf ref); +#endif +#endif /* GL_EXT_index_func */ + +#ifndef GL_EXT_index_material +#define GL_EXT_index_material 1 +#define GL_INDEX_MATERIAL_EXT 0x81B8 +#define GL_INDEX_MATERIAL_PARAMETER_EXT 0x81B9 +#define GL_INDEX_MATERIAL_FACE_EXT 0x81BA +typedef void (APIENTRYP PFNGLINDEXMATERIALEXTPROC) (GLenum face, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIndexMaterialEXT (GLenum face, GLenum mode); +#endif +#endif /* GL_EXT_index_material */ + +#ifndef GL_EXT_index_texture +#define GL_EXT_index_texture 1 +#endif /* GL_EXT_index_texture */ + +#ifndef GL_EXT_light_texture +#define GL_EXT_light_texture 1 +#define GL_FRAGMENT_MATERIAL_EXT 0x8349 +#define GL_FRAGMENT_NORMAL_EXT 0x834A +#define GL_FRAGMENT_COLOR_EXT 0x834C +#define GL_ATTENUATION_EXT 0x834D +#define GL_SHADOW_ATTENUATION_EXT 0x834E +#define GL_TEXTURE_APPLICATION_MODE_EXT 0x834F +#define GL_TEXTURE_LIGHT_EXT 0x8350 +#define GL_TEXTURE_MATERIAL_FACE_EXT 0x8351 +#define GL_TEXTURE_MATERIAL_PARAMETER_EXT 0x8352 +typedef void (APIENTRYP PFNGLAPPLYTEXTUREEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLTEXTURELIGHTEXTPROC) (GLenum pname); +typedef void (APIENTRYP PFNGLTEXTUREMATERIALEXTPROC) (GLenum face, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glApplyTextureEXT (GLenum mode); +GLAPI void APIENTRY glTextureLightEXT (GLenum pname); +GLAPI void APIENTRY glTextureMaterialEXT (GLenum face, GLenum mode); +#endif +#endif /* GL_EXT_light_texture */ + +#ifndef GL_EXT_memory_object +#define GL_EXT_memory_object 1 +#define GL_TEXTURE_TILING_EXT 0x9580 +#define GL_DEDICATED_MEMORY_OBJECT_EXT 0x9581 +#define GL_PROTECTED_MEMORY_OBJECT_EXT 0x959B +#define GL_NUM_TILING_TYPES_EXT 0x9582 +#define GL_TILING_TYPES_EXT 0x9583 +#define GL_OPTIMAL_TILING_EXT 0x9584 +#define GL_LINEAR_TILING_EXT 0x9585 +#define GL_NUM_DEVICE_UUIDS_EXT 0x9596 +#define GL_DEVICE_UUID_EXT 0x9597 +#define GL_DRIVER_UUID_EXT 0x9598 +#define GL_UUID_SIZE_EXT 16 +typedef void (APIENTRYP PFNGLGETUNSIGNEDBYTEVEXTPROC) (GLenum pname, GLubyte *data); +typedef void (APIENTRYP PFNGLGETUNSIGNEDBYTEI_VEXTPROC) (GLenum target, GLuint index, GLubyte *data); +typedef void (APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); +typedef GLboolean (APIENTRYP PFNGLISMEMORYOBJECTEXTPROC) (GLuint memoryObject); +typedef void (APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); +typedef void (APIENTRYP PFNGLMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM2DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM3DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLBUFFERSTORAGEMEMEXTPROC) (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM2DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM2DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM3DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM3DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEMEMEXTPROC) (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM1DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetUnsignedBytevEXT (GLenum pname, GLubyte *data); +GLAPI void APIENTRY glGetUnsignedBytei_vEXT (GLenum target, GLuint index, GLubyte *data); +GLAPI void APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); +GLAPI GLboolean APIENTRY glIsMemoryObjectEXT (GLuint memoryObject); +GLAPI void APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects); +GLAPI void APIENTRY glMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, GLint *params); +GLAPI void APIENTRY glTexStorageMem2DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem2DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem3DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem3DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glBufferStorageMemEXT (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem2DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem2DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem3DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem3DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glNamedBufferStorageMemEXT (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem1DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem1DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_EXT_memory_object */ + +#ifndef GL_EXT_memory_object_fd +#define GL_EXT_memory_object_fd 1 +#define GL_HANDLE_TYPE_OPAQUE_FD_EXT 0x9586 +typedef void (APIENTRYP PFNGLIMPORTMEMORYFDEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportMemoryFdEXT (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_memory_object_fd */ + +#ifndef GL_EXT_memory_object_win32 +#define GL_EXT_memory_object_win32 1 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_EXT 0x9587 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_KMT_EXT 0x9588 +#define GL_DEVICE_LUID_EXT 0x9599 +#define GL_DEVICE_NODE_MASK_EXT 0x959A +#define GL_LUID_SIZE_EXT 8 +#define GL_HANDLE_TYPE_D3D12_TILEPOOL_EXT 0x9589 +#define GL_HANDLE_TYPE_D3D12_RESOURCE_EXT 0x958A +#define GL_HANDLE_TYPE_D3D11_IMAGE_EXT 0x958B +#define GL_HANDLE_TYPE_D3D11_IMAGE_KMT_EXT 0x958C +typedef void (APIENTRYP PFNGLIMPORTMEMORYWIN32HANDLEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +typedef void (APIENTRYP PFNGLIMPORTMEMORYWIN32NAMEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportMemoryWin32HandleEXT (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +GLAPI void APIENTRY glImportMemoryWin32NameEXT (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_memory_object_win32 */ + +#ifndef GL_EXT_misc_attribute +#define GL_EXT_misc_attribute 1 +#endif /* GL_EXT_misc_attribute */ + +#ifndef GL_EXT_multi_draw_arrays +#define GL_EXT_multi_draw_arrays 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysEXT (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GLAPI void APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#endif +#endif /* GL_EXT_multi_draw_arrays */ + +#ifndef GL_EXT_multisample +#define GL_EXT_multisample 1 +#define GL_MULTISAMPLE_EXT 0x809D +#define GL_SAMPLE_ALPHA_TO_MASK_EXT 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F +#define GL_SAMPLE_MASK_EXT 0x80A0 +#define GL_1PASS_EXT 0x80A1 +#define GL_2PASS_0_EXT 0x80A2 +#define GL_2PASS_1_EXT 0x80A3 +#define GL_4PASS_0_EXT 0x80A4 +#define GL_4PASS_1_EXT 0x80A5 +#define GL_4PASS_2_EXT 0x80A6 +#define GL_4PASS_3_EXT 0x80A7 +#define GL_SAMPLE_BUFFERS_EXT 0x80A8 +#define GL_SAMPLES_EXT 0x80A9 +#define GL_SAMPLE_MASK_VALUE_EXT 0x80AA +#define GL_SAMPLE_MASK_INVERT_EXT 0x80AB +#define GL_SAMPLE_PATTERN_EXT 0x80AC +#define GL_MULTISAMPLE_BIT_EXT 0x20000000 +typedef void (APIENTRYP PFNGLSAMPLEMASKEXTPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLSAMPLEPATTERNEXTPROC) (GLenum pattern); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleMaskEXT (GLclampf value, GLboolean invert); +GLAPI void APIENTRY glSamplePatternEXT (GLenum pattern); +#endif +#endif /* GL_EXT_multisample */ + +#ifndef GL_EXT_multiview_tessellation_geometry_shader +#define GL_EXT_multiview_tessellation_geometry_shader 1 +#endif /* GL_EXT_multiview_tessellation_geometry_shader */ + +#ifndef GL_EXT_multiview_texture_multisample +#define GL_EXT_multiview_texture_multisample 1 +#endif /* GL_EXT_multiview_texture_multisample */ + +#ifndef GL_EXT_multiview_timer_query +#define GL_EXT_multiview_timer_query 1 +#endif /* GL_EXT_multiview_timer_query */ + +#ifndef GL_EXT_packed_depth_stencil +#define GL_EXT_packed_depth_stencil 1 +#define GL_DEPTH_STENCIL_EXT 0x84F9 +#define GL_UNSIGNED_INT_24_8_EXT 0x84FA +#define GL_DEPTH24_STENCIL8_EXT 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE_EXT 0x88F1 +#endif /* GL_EXT_packed_depth_stencil */ + +#ifndef GL_EXT_packed_float +#define GL_EXT_packed_float 1 +#define GL_R11F_G11F_B10F_EXT 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV_EXT 0x8C3B +#define GL_RGBA_SIGNED_COMPONENTS_EXT 0x8C3C +#endif /* GL_EXT_packed_float */ + +#ifndef GL_EXT_packed_pixels +#define GL_EXT_packed_pixels 1 +#define GL_UNSIGNED_BYTE_3_3_2_EXT 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4_EXT 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1_EXT 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8_EXT 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2_EXT 0x8036 +#endif /* GL_EXT_packed_pixels */ + +#ifndef GL_EXT_paletted_texture +#define GL_EXT_paletted_texture 1 +#define GL_COLOR_INDEX1_EXT 0x80E2 +#define GL_COLOR_INDEX2_EXT 0x80E3 +#define GL_COLOR_INDEX4_EXT 0x80E4 +#define GL_COLOR_INDEX8_EXT 0x80E5 +#define GL_COLOR_INDEX12_EXT 0x80E6 +#define GL_COLOR_INDEX16_EXT 0x80E7 +#define GL_TEXTURE_INDEX_SIZE_EXT 0x80ED +typedef void (APIENTRYP PFNGLCOLORTABLEEXTPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEEXTPROC) (GLenum target, GLenum format, GLenum type, void *data); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTableEXT (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const void *table); +GLAPI void APIENTRY glGetColorTableEXT (GLenum target, GLenum format, GLenum type, void *data); +GLAPI void APIENTRY glGetColorTableParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetColorTableParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +#endif +#endif /* GL_EXT_paletted_texture */ + +#ifndef GL_EXT_pixel_buffer_object +#define GL_EXT_pixel_buffer_object 1 +#define GL_PIXEL_PACK_BUFFER_EXT 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_EXT 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_EXT 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_EXT 0x88EF +#endif /* GL_EXT_pixel_buffer_object */ + +#ifndef GL_EXT_pixel_transform +#define GL_EXT_pixel_transform 1 +#define GL_PIXEL_TRANSFORM_2D_EXT 0x8330 +#define GL_PIXEL_MAG_FILTER_EXT 0x8331 +#define GL_PIXEL_MIN_FILTER_EXT 0x8332 +#define GL_PIXEL_CUBIC_WEIGHT_EXT 0x8333 +#define GL_CUBIC_EXT 0x8334 +#define GL_AVERAGE_EXT 0x8335 +#define GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8336 +#define GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8337 +#define GL_PIXEL_TRANSFORM_2D_MATRIX_EXT 0x8338 +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTransformParameteriEXT (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glPixelTransformParameterfEXT (GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glPixelTransformParameterivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glPixelTransformParameterfvEXT (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetPixelTransformParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetPixelTransformParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +#endif +#endif /* GL_EXT_pixel_transform */ + +#ifndef GL_EXT_pixel_transform_color_table +#define GL_EXT_pixel_transform_color_table 1 +#endif /* GL_EXT_pixel_transform_color_table */ + +#ifndef GL_EXT_point_parameters +#define GL_EXT_point_parameters 1 +#define GL_POINT_SIZE_MIN_EXT 0x8126 +#define GL_POINT_SIZE_MAX_EXT 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_EXT 0x8128 +#define GL_DISTANCE_ATTENUATION_EXT 0x8129 +typedef void (APIENTRYP PFNGLPOINTPARAMETERFEXTPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVEXTPROC) (GLenum pname, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfEXT (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvEXT (GLenum pname, const GLfloat *params); +#endif +#endif /* GL_EXT_point_parameters */ + +#ifndef GL_EXT_polygon_offset +#define GL_EXT_polygon_offset 1 +#define GL_POLYGON_OFFSET_EXT 0x8037 +#define GL_POLYGON_OFFSET_FACTOR_EXT 0x8038 +#define GL_POLYGON_OFFSET_BIAS_EXT 0x8039 +typedef void (APIENTRYP PFNGLPOLYGONOFFSETEXTPROC) (GLfloat factor, GLfloat bias); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPolygonOffsetEXT (GLfloat factor, GLfloat bias); +#endif +#endif /* GL_EXT_polygon_offset */ + +#ifndef GL_EXT_polygon_offset_clamp +#define GL_EXT_polygon_offset_clamp 1 +#define GL_POLYGON_OFFSET_CLAMP_EXT 0x8E1B +typedef void (APIENTRYP PFNGLPOLYGONOFFSETCLAMPEXTPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPolygonOffsetClampEXT (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_EXT_polygon_offset_clamp */ + +#ifndef GL_EXT_post_depth_coverage +#define GL_EXT_post_depth_coverage 1 +#endif /* GL_EXT_post_depth_coverage */ + +#ifndef GL_EXT_provoking_vertex +#define GL_EXT_provoking_vertex 1 +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E +#define GL_PROVOKING_VERTEX_EXT 0x8E4F +typedef void (APIENTRYP PFNGLPROVOKINGVERTEXEXTPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProvokingVertexEXT (GLenum mode); +#endif +#endif /* GL_EXT_provoking_vertex */ + +#ifndef GL_EXT_raster_multisample +#define GL_EXT_raster_multisample 1 +#define GL_RASTER_MULTISAMPLE_EXT 0x9327 +#define GL_RASTER_SAMPLES_EXT 0x9328 +#define GL_MAX_RASTER_SAMPLES_EXT 0x9329 +#define GL_RASTER_FIXED_SAMPLE_LOCATIONS_EXT 0x932A +#define GL_MULTISAMPLE_RASTERIZATION_ALLOWED_EXT 0x932B +#define GL_EFFECTIVE_RASTER_SAMPLES_EXT 0x932C +typedef void (APIENTRYP PFNGLRASTERSAMPLESEXTPROC) (GLuint samples, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRasterSamplesEXT (GLuint samples, GLboolean fixedsamplelocations); +#endif +#endif /* GL_EXT_raster_multisample */ + +#ifndef GL_EXT_rescale_normal +#define GL_EXT_rescale_normal 1 +#define GL_RESCALE_NORMAL_EXT 0x803A +#endif /* GL_EXT_rescale_normal */ + +#ifndef GL_EXT_secondary_color +#define GL_EXT_secondary_color 1 +#define GL_COLOR_SUM_EXT 0x8458 +#define GL_CURRENT_SECONDARY_COLOR_EXT 0x8459 +#define GL_SECONDARY_COLOR_ARRAY_SIZE_EXT 0x845A +#define GL_SECONDARY_COLOR_ARRAY_TYPE_EXT 0x845B +#define GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT 0x845C +#define GL_SECONDARY_COLOR_ARRAY_POINTER_EXT 0x845D +#define GL_SECONDARY_COLOR_ARRAY_EXT 0x845E +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BEXTPROC) (GLbyte red, GLbyte green, GLbyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DEXTPROC) (GLdouble red, GLdouble green, GLdouble blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FEXTPROC) (GLfloat red, GLfloat green, GLfloat blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IEXTPROC) (GLint red, GLint green, GLint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SEXTPROC) (GLshort red, GLshort green, GLshort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBEXTPROC) (GLubyte red, GLubyte green, GLubyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVEXTPROC) (const GLubyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIEXTPROC) (GLuint red, GLuint green, GLuint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVEXTPROC) (const GLuint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USEXTPROC) (GLushort red, GLushort green, GLushort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVEXTPROC) (const GLushort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSecondaryColor3bEXT (GLbyte red, GLbyte green, GLbyte blue); +GLAPI void APIENTRY glSecondaryColor3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glSecondaryColor3dEXT (GLdouble red, GLdouble green, GLdouble blue); +GLAPI void APIENTRY glSecondaryColor3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glSecondaryColor3fEXT (GLfloat red, GLfloat green, GLfloat blue); +GLAPI void APIENTRY glSecondaryColor3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glSecondaryColor3iEXT (GLint red, GLint green, GLint blue); +GLAPI void APIENTRY glSecondaryColor3ivEXT (const GLint *v); +GLAPI void APIENTRY glSecondaryColor3sEXT (GLshort red, GLshort green, GLshort blue); +GLAPI void APIENTRY glSecondaryColor3svEXT (const GLshort *v); +GLAPI void APIENTRY glSecondaryColor3ubEXT (GLubyte red, GLubyte green, GLubyte blue); +GLAPI void APIENTRY glSecondaryColor3ubvEXT (const GLubyte *v); +GLAPI void APIENTRY glSecondaryColor3uiEXT (GLuint red, GLuint green, GLuint blue); +GLAPI void APIENTRY glSecondaryColor3uivEXT (const GLuint *v); +GLAPI void APIENTRY glSecondaryColor3usEXT (GLushort red, GLushort green, GLushort blue); +GLAPI void APIENTRY glSecondaryColor3usvEXT (const GLushort *v); +GLAPI void APIENTRY glSecondaryColorPointerEXT (GLint size, GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_secondary_color */ + +#ifndef GL_EXT_semaphore +#define GL_EXT_semaphore 1 +#define GL_LAYOUT_GENERAL_EXT 0x958D +#define GL_LAYOUT_COLOR_ATTACHMENT_EXT 0x958E +#define GL_LAYOUT_DEPTH_STENCIL_ATTACHMENT_EXT 0x958F +#define GL_LAYOUT_DEPTH_STENCIL_READ_ONLY_EXT 0x9590 +#define GL_LAYOUT_SHADER_READ_ONLY_EXT 0x9591 +#define GL_LAYOUT_TRANSFER_SRC_EXT 0x9592 +#define GL_LAYOUT_TRANSFER_DST_EXT 0x9593 +#define GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT 0x9530 +#define GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT 0x9531 +typedef void (APIENTRYP PFNGLGENSEMAPHORESEXTPROC) (GLsizei n, GLuint *semaphores); +typedef void (APIENTRYP PFNGLDELETESEMAPHORESEXTPROC) (GLsizei n, const GLuint *semaphores); +typedef GLboolean (APIENTRYP PFNGLISSEMAPHOREEXTPROC) (GLuint semaphore); +typedef void (APIENTRYP PFNGLSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, const GLuint64 *params); +typedef void (APIENTRYP PFNGLGETSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, GLuint64 *params); +typedef void (APIENTRYP PFNGLWAITSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +typedef void (APIENTRYP PFNGLSIGNALSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenSemaphoresEXT (GLsizei n, GLuint *semaphores); +GLAPI void APIENTRY glDeleteSemaphoresEXT (GLsizei n, const GLuint *semaphores); +GLAPI GLboolean APIENTRY glIsSemaphoreEXT (GLuint semaphore); +GLAPI void APIENTRY glSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, const GLuint64 *params); +GLAPI void APIENTRY glGetSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, GLuint64 *params); +GLAPI void APIENTRY glWaitSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +GLAPI void APIENTRY glSignalSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#endif +#endif /* GL_EXT_semaphore */ + +#ifndef GL_EXT_semaphore_fd +#define GL_EXT_semaphore_fd 1 +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREFDEXTPROC) (GLuint semaphore, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportSemaphoreFdEXT (GLuint semaphore, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_semaphore_fd */ + +#ifndef GL_EXT_semaphore_win32 +#define GL_EXT_semaphore_win32 1 +#define GL_HANDLE_TYPE_D3D12_FENCE_EXT 0x9594 +#define GL_D3D12_FENCE_VALUE_EXT 0x9595 +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREWIN32HANDLEEXTPROC) (GLuint semaphore, GLenum handleType, void *handle); +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREWIN32NAMEEXTPROC) (GLuint semaphore, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportSemaphoreWin32HandleEXT (GLuint semaphore, GLenum handleType, void *handle); +GLAPI void APIENTRY glImportSemaphoreWin32NameEXT (GLuint semaphore, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_semaphore_win32 */ + +#ifndef GL_EXT_separate_shader_objects +#define GL_EXT_separate_shader_objects 1 +#define GL_ACTIVE_PROGRAM_EXT 0x8B8D +typedef void (APIENTRYP PFNGLUSESHADERPROGRAMEXTPROC) (GLenum type, GLuint program); +typedef void (APIENTRYP PFNGLACTIVEPROGRAMEXTPROC) (GLuint program); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMEXTPROC) (GLenum type, const GLchar *string); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUseShaderProgramEXT (GLenum type, GLuint program); +GLAPI void APIENTRY glActiveProgramEXT (GLuint program); +GLAPI GLuint APIENTRY glCreateShaderProgramEXT (GLenum type, const GLchar *string); +#endif +#endif /* GL_EXT_separate_shader_objects */ + +#ifndef GL_EXT_separate_specular_color +#define GL_EXT_separate_specular_color 1 +#define GL_LIGHT_MODEL_COLOR_CONTROL_EXT 0x81F8 +#define GL_SINGLE_COLOR_EXT 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR_EXT 0x81FA +#endif /* GL_EXT_separate_specular_color */ + +#ifndef GL_EXT_shader_framebuffer_fetch +#define GL_EXT_shader_framebuffer_fetch 1 +#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT 0x8A52 +#endif /* GL_EXT_shader_framebuffer_fetch */ + +#ifndef GL_EXT_shader_framebuffer_fetch_non_coherent +#define GL_EXT_shader_framebuffer_fetch_non_coherent 1 +typedef void (APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferFetchBarrierEXT (void); +#endif +#endif /* GL_EXT_shader_framebuffer_fetch_non_coherent */ + +#ifndef GL_EXT_shader_image_load_formatted +#define GL_EXT_shader_image_load_formatted 1 +#endif /* GL_EXT_shader_image_load_formatted */ + +#ifndef GL_EXT_shader_image_load_store +#define GL_EXT_shader_image_load_store 1 +#define GL_MAX_IMAGE_UNITS_EXT 0x8F38 +#define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS_EXT 0x8F39 +#define GL_IMAGE_BINDING_NAME_EXT 0x8F3A +#define GL_IMAGE_BINDING_LEVEL_EXT 0x8F3B +#define GL_IMAGE_BINDING_LAYERED_EXT 0x8F3C +#define GL_IMAGE_BINDING_LAYER_EXT 0x8F3D +#define GL_IMAGE_BINDING_ACCESS_EXT 0x8F3E +#define GL_IMAGE_1D_EXT 0x904C +#define GL_IMAGE_2D_EXT 0x904D +#define GL_IMAGE_3D_EXT 0x904E +#define GL_IMAGE_2D_RECT_EXT 0x904F +#define GL_IMAGE_CUBE_EXT 0x9050 +#define GL_IMAGE_BUFFER_EXT 0x9051 +#define GL_IMAGE_1D_ARRAY_EXT 0x9052 +#define GL_IMAGE_2D_ARRAY_EXT 0x9053 +#define GL_IMAGE_CUBE_MAP_ARRAY_EXT 0x9054 +#define GL_IMAGE_2D_MULTISAMPLE_EXT 0x9055 +#define GL_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9056 +#define GL_INT_IMAGE_1D_EXT 0x9057 +#define GL_INT_IMAGE_2D_EXT 0x9058 +#define GL_INT_IMAGE_3D_EXT 0x9059 +#define GL_INT_IMAGE_2D_RECT_EXT 0x905A +#define GL_INT_IMAGE_CUBE_EXT 0x905B +#define GL_INT_IMAGE_BUFFER_EXT 0x905C +#define GL_INT_IMAGE_1D_ARRAY_EXT 0x905D +#define GL_INT_IMAGE_2D_ARRAY_EXT 0x905E +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x905F +#define GL_INT_IMAGE_2D_MULTISAMPLE_EXT 0x9060 +#define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9061 +#define GL_UNSIGNED_INT_IMAGE_1D_EXT 0x9062 +#define GL_UNSIGNED_INT_IMAGE_2D_EXT 0x9063 +#define GL_UNSIGNED_INT_IMAGE_3D_EXT 0x9064 +#define GL_UNSIGNED_INT_IMAGE_2D_RECT_EXT 0x9065 +#define GL_UNSIGNED_INT_IMAGE_CUBE_EXT 0x9066 +#define GL_UNSIGNED_INT_IMAGE_BUFFER_EXT 0x9067 +#define GL_UNSIGNED_INT_IMAGE_1D_ARRAY_EXT 0x9068 +#define GL_UNSIGNED_INT_IMAGE_2D_ARRAY_EXT 0x9069 +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x906A +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_EXT 0x906B +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x906C +#define GL_MAX_IMAGE_SAMPLES_EXT 0x906D +#define GL_IMAGE_BINDING_FORMAT_EXT 0x906E +#define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT_EXT 0x00000001 +#define GL_ELEMENT_ARRAY_BARRIER_BIT_EXT 0x00000002 +#define GL_UNIFORM_BARRIER_BIT_EXT 0x00000004 +#define GL_TEXTURE_FETCH_BARRIER_BIT_EXT 0x00000008 +#define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT_EXT 0x00000020 +#define GL_COMMAND_BARRIER_BIT_EXT 0x00000040 +#define GL_PIXEL_BUFFER_BARRIER_BIT_EXT 0x00000080 +#define GL_TEXTURE_UPDATE_BARRIER_BIT_EXT 0x00000100 +#define GL_BUFFER_UPDATE_BARRIER_BIT_EXT 0x00000200 +#define GL_FRAMEBUFFER_BARRIER_BIT_EXT 0x00000400 +#define GL_TRANSFORM_FEEDBACK_BARRIER_BIT_EXT 0x00000800 +#define GL_ATOMIC_COUNTER_BARRIER_BIT_EXT 0x00001000 +#define GL_ALL_BARRIER_BITS_EXT 0xFFFFFFFF +typedef void (APIENTRYP PFNGLBINDIMAGETEXTUREEXTPROC) (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format); +typedef void (APIENTRYP PFNGLMEMORYBARRIEREXTPROC) (GLbitfield barriers); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindImageTextureEXT (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format); +GLAPI void APIENTRY glMemoryBarrierEXT (GLbitfield barriers); +#endif +#endif /* GL_EXT_shader_image_load_store */ + +#ifndef GL_EXT_shader_integer_mix +#define GL_EXT_shader_integer_mix 1 +#endif /* GL_EXT_shader_integer_mix */ + +#ifndef GL_EXT_shader_samples_identical +#define GL_EXT_shader_samples_identical 1 +#endif /* GL_EXT_shader_samples_identical */ + +#ifndef GL_EXT_shadow_funcs +#define GL_EXT_shadow_funcs 1 +#endif /* GL_EXT_shadow_funcs */ + +#ifndef GL_EXT_shared_texture_palette +#define GL_EXT_shared_texture_palette 1 +#define GL_SHARED_TEXTURE_PALETTE_EXT 0x81FB +#endif /* GL_EXT_shared_texture_palette */ + +#ifndef GL_EXT_sparse_texture2 +#define GL_EXT_sparse_texture2 1 +#endif /* GL_EXT_sparse_texture2 */ + +#ifndef GL_EXT_stencil_clear_tag +#define GL_EXT_stencil_clear_tag 1 +#define GL_STENCIL_TAG_BITS_EXT 0x88F2 +#define GL_STENCIL_CLEAR_TAG_VALUE_EXT 0x88F3 +typedef void (APIENTRYP PFNGLSTENCILCLEARTAGEXTPROC) (GLsizei stencilTagBits, GLuint stencilClearTag); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilClearTagEXT (GLsizei stencilTagBits, GLuint stencilClearTag); +#endif +#endif /* GL_EXT_stencil_clear_tag */ + +#ifndef GL_EXT_stencil_two_side +#define GL_EXT_stencil_two_side 1 +#define GL_STENCIL_TEST_TWO_SIDE_EXT 0x8910 +#define GL_ACTIVE_STENCIL_FACE_EXT 0x8911 +typedef void (APIENTRYP PFNGLACTIVESTENCILFACEEXTPROC) (GLenum face); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveStencilFaceEXT (GLenum face); +#endif +#endif /* GL_EXT_stencil_two_side */ + +#ifndef GL_EXT_stencil_wrap +#define GL_EXT_stencil_wrap 1 +#define GL_INCR_WRAP_EXT 0x8507 +#define GL_DECR_WRAP_EXT 0x8508 +#endif /* GL_EXT_stencil_wrap */ + +#ifndef GL_EXT_subtexture +#define GL_EXT_subtexture 1 +typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage2DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +#endif +#endif /* GL_EXT_subtexture */ + +#ifndef GL_EXT_texture +#define GL_EXT_texture 1 +#define GL_ALPHA4_EXT 0x803B +#define GL_ALPHA8_EXT 0x803C +#define GL_ALPHA12_EXT 0x803D +#define GL_ALPHA16_EXT 0x803E +#define GL_LUMINANCE4_EXT 0x803F +#define GL_LUMINANCE8_EXT 0x8040 +#define GL_LUMINANCE12_EXT 0x8041 +#define GL_LUMINANCE16_EXT 0x8042 +#define GL_LUMINANCE4_ALPHA4_EXT 0x8043 +#define GL_LUMINANCE6_ALPHA2_EXT 0x8044 +#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 +#define GL_LUMINANCE12_ALPHA4_EXT 0x8046 +#define GL_LUMINANCE12_ALPHA12_EXT 0x8047 +#define GL_LUMINANCE16_ALPHA16_EXT 0x8048 +#define GL_INTENSITY_EXT 0x8049 +#define GL_INTENSITY4_EXT 0x804A +#define GL_INTENSITY8_EXT 0x804B +#define GL_INTENSITY12_EXT 0x804C +#define GL_INTENSITY16_EXT 0x804D +#define GL_RGB2_EXT 0x804E +#define GL_RGB4_EXT 0x804F +#define GL_RGB5_EXT 0x8050 +#define GL_RGB8_EXT 0x8051 +#define GL_RGB10_EXT 0x8052 +#define GL_RGB12_EXT 0x8053 +#define GL_RGB16_EXT 0x8054 +#define GL_RGBA2_EXT 0x8055 +#define GL_RGBA4_EXT 0x8056 +#define GL_RGB5_A1_EXT 0x8057 +#define GL_RGBA8_EXT 0x8058 +#define GL_RGB10_A2_EXT 0x8059 +#define GL_RGBA12_EXT 0x805A +#define GL_RGBA16_EXT 0x805B +#define GL_TEXTURE_RED_SIZE_EXT 0x805C +#define GL_TEXTURE_GREEN_SIZE_EXT 0x805D +#define GL_TEXTURE_BLUE_SIZE_EXT 0x805E +#define GL_TEXTURE_ALPHA_SIZE_EXT 0x805F +#define GL_TEXTURE_LUMINANCE_SIZE_EXT 0x8060 +#define GL_TEXTURE_INTENSITY_SIZE_EXT 0x8061 +#define GL_REPLACE_EXT 0x8062 +#define GL_PROXY_TEXTURE_1D_EXT 0x8063 +#define GL_PROXY_TEXTURE_2D_EXT 0x8064 +#define GL_TEXTURE_TOO_LARGE_EXT 0x8065 +#endif /* GL_EXT_texture */ + +#ifndef GL_EXT_texture3D +#define GL_EXT_texture3D 1 +#define GL_PACK_SKIP_IMAGES_EXT 0x806B +#define GL_PACK_IMAGE_HEIGHT_EXT 0x806C +#define GL_UNPACK_SKIP_IMAGES_EXT 0x806D +#define GL_UNPACK_IMAGE_HEIGHT_EXT 0x806E +#define GL_TEXTURE_3D_EXT 0x806F +#define GL_PROXY_TEXTURE_3D_EXT 0x8070 +#define GL_TEXTURE_DEPTH_EXT 0x8071 +#define GL_TEXTURE_WRAP_R_EXT 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE_EXT 0x8073 +typedef void (APIENTRYP PFNGLTEXIMAGE3DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage3DEXT (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage3DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +#endif +#endif /* GL_EXT_texture3D */ + +#ifndef GL_EXT_texture_array +#define GL_EXT_texture_array 1 +#define GL_TEXTURE_1D_ARRAY_EXT 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY_EXT 0x8C19 +#define GL_TEXTURE_2D_ARRAY_EXT 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY_EXT 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY_EXT 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY_EXT 0x8C1D +#define GL_MAX_ARRAY_TEXTURE_LAYERS_EXT 0x88FF +#define GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT 0x884E +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYEREXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferTextureLayerEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +#endif +#endif /* GL_EXT_texture_array */ + +#ifndef GL_EXT_texture_buffer_object +#define GL_EXT_texture_buffer_object 1 +#define GL_TEXTURE_BUFFER_EXT 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT_EXT 0x8C2E +typedef void (APIENTRYP PFNGLTEXBUFFEREXTPROC) (GLenum target, GLenum internalformat, GLuint buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBufferEXT (GLenum target, GLenum internalformat, GLuint buffer); +#endif +#endif /* GL_EXT_texture_buffer_object */ + +#ifndef GL_EXT_texture_compression_latc +#define GL_EXT_texture_compression_latc 1 +#define GL_COMPRESSED_LUMINANCE_LATC1_EXT 0x8C70 +#define GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT 0x8C71 +#define GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT 0x8C72 +#define GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT 0x8C73 +#endif /* GL_EXT_texture_compression_latc */ + +#ifndef GL_EXT_texture_compression_rgtc +#define GL_EXT_texture_compression_rgtc 1 +#define GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC +#define GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD +#define GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE +#endif /* GL_EXT_texture_compression_rgtc */ + +#ifndef GL_EXT_texture_compression_s3tc +#define GL_EXT_texture_compression_s3tc 1 +#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 +#endif /* GL_EXT_texture_compression_s3tc */ + +#ifndef GL_EXT_texture_cube_map +#define GL_EXT_texture_cube_map 1 +#define GL_NORMAL_MAP_EXT 0x8511 +#define GL_REFLECTION_MAP_EXT 0x8512 +#define GL_TEXTURE_CUBE_MAP_EXT 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP_EXT 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP_EXT 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT 0x851C +#endif /* GL_EXT_texture_cube_map */ + +#ifndef GL_EXT_texture_env_add +#define GL_EXT_texture_env_add 1 +#endif /* GL_EXT_texture_env_add */ + +#ifndef GL_EXT_texture_env_combine +#define GL_EXT_texture_env_combine 1 +#define GL_COMBINE_EXT 0x8570 +#define GL_COMBINE_RGB_EXT 0x8571 +#define GL_COMBINE_ALPHA_EXT 0x8572 +#define GL_RGB_SCALE_EXT 0x8573 +#define GL_ADD_SIGNED_EXT 0x8574 +#define GL_INTERPOLATE_EXT 0x8575 +#define GL_CONSTANT_EXT 0x8576 +#define GL_PRIMARY_COLOR_EXT 0x8577 +#define GL_PREVIOUS_EXT 0x8578 +#define GL_SOURCE0_RGB_EXT 0x8580 +#define GL_SOURCE1_RGB_EXT 0x8581 +#define GL_SOURCE2_RGB_EXT 0x8582 +#define GL_SOURCE0_ALPHA_EXT 0x8588 +#define GL_SOURCE1_ALPHA_EXT 0x8589 +#define GL_SOURCE2_ALPHA_EXT 0x858A +#define GL_OPERAND0_RGB_EXT 0x8590 +#define GL_OPERAND1_RGB_EXT 0x8591 +#define GL_OPERAND2_RGB_EXT 0x8592 +#define GL_OPERAND0_ALPHA_EXT 0x8598 +#define GL_OPERAND1_ALPHA_EXT 0x8599 +#define GL_OPERAND2_ALPHA_EXT 0x859A +#endif /* GL_EXT_texture_env_combine */ + +#ifndef GL_EXT_texture_env_dot3 +#define GL_EXT_texture_env_dot3 1 +#define GL_DOT3_RGB_EXT 0x8740 +#define GL_DOT3_RGBA_EXT 0x8741 +#endif /* GL_EXT_texture_env_dot3 */ + +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_EXT_texture_filter_anisotropic 1 +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF +#endif /* GL_EXT_texture_filter_anisotropic */ + +#ifndef GL_EXT_texture_filter_minmax +#define GL_EXT_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_EXT 0x9366 +#define GL_WEIGHTED_AVERAGE_EXT 0x9367 +#endif /* GL_EXT_texture_filter_minmax */ + +#ifndef GL_EXT_texture_integer +#define GL_EXT_texture_integer 1 +#define GL_RGBA32UI_EXT 0x8D70 +#define GL_RGB32UI_EXT 0x8D71 +#define GL_ALPHA32UI_EXT 0x8D72 +#define GL_INTENSITY32UI_EXT 0x8D73 +#define GL_LUMINANCE32UI_EXT 0x8D74 +#define GL_LUMINANCE_ALPHA32UI_EXT 0x8D75 +#define GL_RGBA16UI_EXT 0x8D76 +#define GL_RGB16UI_EXT 0x8D77 +#define GL_ALPHA16UI_EXT 0x8D78 +#define GL_INTENSITY16UI_EXT 0x8D79 +#define GL_LUMINANCE16UI_EXT 0x8D7A +#define GL_LUMINANCE_ALPHA16UI_EXT 0x8D7B +#define GL_RGBA8UI_EXT 0x8D7C +#define GL_RGB8UI_EXT 0x8D7D +#define GL_ALPHA8UI_EXT 0x8D7E +#define GL_INTENSITY8UI_EXT 0x8D7F +#define GL_LUMINANCE8UI_EXT 0x8D80 +#define GL_LUMINANCE_ALPHA8UI_EXT 0x8D81 +#define GL_RGBA32I_EXT 0x8D82 +#define GL_RGB32I_EXT 0x8D83 +#define GL_ALPHA32I_EXT 0x8D84 +#define GL_INTENSITY32I_EXT 0x8D85 +#define GL_LUMINANCE32I_EXT 0x8D86 +#define GL_LUMINANCE_ALPHA32I_EXT 0x8D87 +#define GL_RGBA16I_EXT 0x8D88 +#define GL_RGB16I_EXT 0x8D89 +#define GL_ALPHA16I_EXT 0x8D8A +#define GL_INTENSITY16I_EXT 0x8D8B +#define GL_LUMINANCE16I_EXT 0x8D8C +#define GL_LUMINANCE_ALPHA16I_EXT 0x8D8D +#define GL_RGBA8I_EXT 0x8D8E +#define GL_RGB8I_EXT 0x8D8F +#define GL_ALPHA8I_EXT 0x8D90 +#define GL_INTENSITY8I_EXT 0x8D91 +#define GL_LUMINANCE8I_EXT 0x8D92 +#define GL_LUMINANCE_ALPHA8I_EXT 0x8D93 +#define GL_RED_INTEGER_EXT 0x8D94 +#define GL_GREEN_INTEGER_EXT 0x8D95 +#define GL_BLUE_INTEGER_EXT 0x8D96 +#define GL_ALPHA_INTEGER_EXT 0x8D97 +#define GL_RGB_INTEGER_EXT 0x8D98 +#define GL_RGBA_INTEGER_EXT 0x8D99 +#define GL_BGR_INTEGER_EXT 0x8D9A +#define GL_BGRA_INTEGER_EXT 0x8D9B +#define GL_LUMINANCE_INTEGER_EXT 0x8D9C +#define GL_LUMINANCE_ALPHA_INTEGER_EXT 0x8D9D +#define GL_RGBA_INTEGER_MODE_EXT 0x8D9E +typedef void (APIENTRYP PFNGLTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLCLEARCOLORIIEXTPROC) (GLint red, GLint green, GLint blue, GLint alpha); +typedef void (APIENTRYP PFNGLCLEARCOLORIUIEXTPROC) (GLuint red, GLuint green, GLuint blue, GLuint alpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexParameterIivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTexParameterIuivEXT (GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTexParameterIivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTexParameterIuivEXT (GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glClearColorIiEXT (GLint red, GLint green, GLint blue, GLint alpha); +GLAPI void APIENTRY glClearColorIuiEXT (GLuint red, GLuint green, GLuint blue, GLuint alpha); +#endif +#endif /* GL_EXT_texture_integer */ + +#ifndef GL_EXT_texture_lod_bias +#define GL_EXT_texture_lod_bias 1 +#define GL_MAX_TEXTURE_LOD_BIAS_EXT 0x84FD +#define GL_TEXTURE_FILTER_CONTROL_EXT 0x8500 +#define GL_TEXTURE_LOD_BIAS_EXT 0x8501 +#endif /* GL_EXT_texture_lod_bias */ + +#ifndef GL_EXT_texture_mirror_clamp +#define GL_EXT_texture_mirror_clamp 1 +#define GL_MIRROR_CLAMP_EXT 0x8742 +#define GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 +#define GL_MIRROR_CLAMP_TO_BORDER_EXT 0x8912 +#endif /* GL_EXT_texture_mirror_clamp */ + +#ifndef GL_EXT_texture_object +#define GL_EXT_texture_object 1 +#define GL_TEXTURE_PRIORITY_EXT 0x8066 +#define GL_TEXTURE_RESIDENT_EXT 0x8067 +#define GL_TEXTURE_1D_BINDING_EXT 0x8068 +#define GL_TEXTURE_2D_BINDING_EXT 0x8069 +#define GL_TEXTURE_3D_BINDING_EXT 0x806A +typedef GLboolean (APIENTRYP PFNGLARETEXTURESRESIDENTEXTPROC) (GLsizei n, const GLuint *textures, GLboolean *residences); +typedef void (APIENTRYP PFNGLBINDTEXTUREEXTPROC) (GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLDELETETEXTURESEXTPROC) (GLsizei n, const GLuint *textures); +typedef void (APIENTRYP PFNGLGENTEXTURESEXTPROC) (GLsizei n, GLuint *textures); +typedef GLboolean (APIENTRYP PFNGLISTEXTUREEXTPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESEXTPROC) (GLsizei n, const GLuint *textures, const GLclampf *priorities); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAreTexturesResidentEXT (GLsizei n, const GLuint *textures, GLboolean *residences); +GLAPI void APIENTRY glBindTextureEXT (GLenum target, GLuint texture); +GLAPI void APIENTRY glDeleteTexturesEXT (GLsizei n, const GLuint *textures); +GLAPI void APIENTRY glGenTexturesEXT (GLsizei n, GLuint *textures); +GLAPI GLboolean APIENTRY glIsTextureEXT (GLuint texture); +GLAPI void APIENTRY glPrioritizeTexturesEXT (GLsizei n, const GLuint *textures, const GLclampf *priorities); +#endif +#endif /* GL_EXT_texture_object */ + +#ifndef GL_EXT_texture_perturb_normal +#define GL_EXT_texture_perturb_normal 1 +#define GL_PERTURB_EXT 0x85AE +#define GL_TEXTURE_NORMAL_EXT 0x85AF +typedef void (APIENTRYP PFNGLTEXTURENORMALEXTPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureNormalEXT (GLenum mode); +#endif +#endif /* GL_EXT_texture_perturb_normal */ + +#ifndef GL_EXT_texture_sRGB +#define GL_EXT_texture_sRGB 1 +#define GL_SRGB_EXT 0x8C40 +#define GL_SRGB8_EXT 0x8C41 +#define GL_SRGB_ALPHA_EXT 0x8C42 +#define GL_SRGB8_ALPHA8_EXT 0x8C43 +#define GL_SLUMINANCE_ALPHA_EXT 0x8C44 +#define GL_SLUMINANCE8_ALPHA8_EXT 0x8C45 +#define GL_SLUMINANCE_EXT 0x8C46 +#define GL_SLUMINANCE8_EXT 0x8C47 +#define GL_COMPRESSED_SRGB_EXT 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA_EXT 0x8C49 +#define GL_COMPRESSED_SLUMINANCE_EXT 0x8C4A +#define GL_COMPRESSED_SLUMINANCE_ALPHA_EXT 0x8C4B +#define GL_COMPRESSED_SRGB_S3TC_DXT1_EXT 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT 0x8C4F +#endif /* GL_EXT_texture_sRGB */ + +#ifndef GL_EXT_texture_sRGB_R8 +#define GL_EXT_texture_sRGB_R8 1 +#define GL_SR8_EXT 0x8FBD +#endif /* GL_EXT_texture_sRGB_R8 */ + +#ifndef GL_EXT_texture_sRGB_RG8 +#define GL_EXT_texture_sRGB_RG8 1 +#define GL_SRG8_EXT 0x8FBE +#endif /* GL_EXT_texture_sRGB_RG8 */ + +#ifndef GL_EXT_texture_sRGB_decode +#define GL_EXT_texture_sRGB_decode 1 +#define GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 +#define GL_DECODE_EXT 0x8A49 +#define GL_SKIP_DECODE_EXT 0x8A4A +#endif /* GL_EXT_texture_sRGB_decode */ + +#ifndef GL_EXT_texture_shadow_lod +#define GL_EXT_texture_shadow_lod 1 +#endif /* GL_EXT_texture_shadow_lod */ + +#ifndef GL_EXT_texture_shared_exponent +#define GL_EXT_texture_shared_exponent 1 +#define GL_RGB9_E5_EXT 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV_EXT 0x8C3E +#define GL_TEXTURE_SHARED_SIZE_EXT 0x8C3F +#endif /* GL_EXT_texture_shared_exponent */ + +#ifndef GL_EXT_texture_snorm +#define GL_EXT_texture_snorm 1 +#define GL_ALPHA_SNORM 0x9010 +#define GL_LUMINANCE_SNORM 0x9011 +#define GL_LUMINANCE_ALPHA_SNORM 0x9012 +#define GL_INTENSITY_SNORM 0x9013 +#define GL_ALPHA8_SNORM 0x9014 +#define GL_LUMINANCE8_SNORM 0x9015 +#define GL_LUMINANCE8_ALPHA8_SNORM 0x9016 +#define GL_INTENSITY8_SNORM 0x9017 +#define GL_ALPHA16_SNORM 0x9018 +#define GL_LUMINANCE16_SNORM 0x9019 +#define GL_LUMINANCE16_ALPHA16_SNORM 0x901A +#define GL_INTENSITY16_SNORM 0x901B +#define GL_RED_SNORM 0x8F90 +#define GL_RG_SNORM 0x8F91 +#define GL_RGB_SNORM 0x8F92 +#define GL_RGBA_SNORM 0x8F93 +#endif /* GL_EXT_texture_snorm */ + +#ifndef GL_EXT_texture_storage +#define GL_EXT_texture_storage 1 +#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F +#define GL_RGBA32F_EXT 0x8814 +#define GL_RGB32F_EXT 0x8815 +#define GL_ALPHA32F_EXT 0x8816 +#define GL_LUMINANCE32F_EXT 0x8818 +#define GL_LUMINANCE_ALPHA32F_EXT 0x8819 +#define GL_RGBA16F_EXT 0x881A +#define GL_RGB16F_EXT 0x881B +#define GL_ALPHA16F_EXT 0x881C +#define GL_LUMINANCE16F_EXT 0x881E +#define GL_LUMINANCE_ALPHA16F_EXT 0x881F +#define GL_BGRA8_EXT 0x93A1 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B +#define GL_R32F_EXT 0x822E +#define GL_RG32F_EXT 0x8230 +#define GL_R16F_EXT 0x822D +#define GL_RG16F_EXT 0x822F +typedef void (APIENTRYP PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexStorage1DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTexStorage2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTexStorage3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_EXT_texture_storage */ + +#ifndef GL_EXT_texture_swizzle +#define GL_EXT_texture_swizzle 1 +#define GL_TEXTURE_SWIZZLE_R_EXT 0x8E42 +#define GL_TEXTURE_SWIZZLE_G_EXT 0x8E43 +#define GL_TEXTURE_SWIZZLE_B_EXT 0x8E44 +#define GL_TEXTURE_SWIZZLE_A_EXT 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA_EXT 0x8E46 +#endif /* GL_EXT_texture_swizzle */ + +#ifndef GL_EXT_timer_query +#define GL_EXT_timer_query 1 +#define GL_TIME_ELAPSED_EXT 0x88BF +typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64 *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64 *params); +#endif +#endif /* GL_EXT_timer_query */ + +#ifndef GL_EXT_transform_feedback +#define GL_EXT_transform_feedback 1 +#define GL_TRANSFORM_FEEDBACK_BUFFER_EXT 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT 0x8C85 +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT 0x8C8F +#define GL_INTERLEAVED_ATTRIBS_EXT 0x8C8C +#define GL_SEPARATE_ATTRIBS_EXT 0x8C8D +#define GL_PRIMITIVES_GENERATED_EXT 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT 0x8C88 +#define GL_RASTERIZER_DISCARD_EXT 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT 0x8C8B +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS_EXT 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT 0x8C7F +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT 0x8C76 +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKEXTPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKEXTPROC) (void); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGEEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFEROFFSETEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +typedef void (APIENTRYP PFNGLBINDBUFFERBASEEXTPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSEXTPROC) (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGEXTPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginTransformFeedbackEXT (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedbackEXT (void); +GLAPI void APIENTRY glBindBufferRangeEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferOffsetEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +GLAPI void APIENTRY glBindBufferBaseEXT (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryingsEXT (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +GLAPI void APIENTRY glGetTransformFeedbackVaryingEXT (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +#endif +#endif /* GL_EXT_transform_feedback */ + +#ifndef GL_EXT_vertex_array +#define GL_EXT_vertex_array 1 +#define GL_VERTEX_ARRAY_EXT 0x8074 +#define GL_NORMAL_ARRAY_EXT 0x8075 +#define GL_COLOR_ARRAY_EXT 0x8076 +#define GL_INDEX_ARRAY_EXT 0x8077 +#define GL_TEXTURE_COORD_ARRAY_EXT 0x8078 +#define GL_EDGE_FLAG_ARRAY_EXT 0x8079 +#define GL_VERTEX_ARRAY_SIZE_EXT 0x807A +#define GL_VERTEX_ARRAY_TYPE_EXT 0x807B +#define GL_VERTEX_ARRAY_STRIDE_EXT 0x807C +#define GL_VERTEX_ARRAY_COUNT_EXT 0x807D +#define GL_NORMAL_ARRAY_TYPE_EXT 0x807E +#define GL_NORMAL_ARRAY_STRIDE_EXT 0x807F +#define GL_NORMAL_ARRAY_COUNT_EXT 0x8080 +#define GL_COLOR_ARRAY_SIZE_EXT 0x8081 +#define GL_COLOR_ARRAY_TYPE_EXT 0x8082 +#define GL_COLOR_ARRAY_STRIDE_EXT 0x8083 +#define GL_COLOR_ARRAY_COUNT_EXT 0x8084 +#define GL_INDEX_ARRAY_TYPE_EXT 0x8085 +#define GL_INDEX_ARRAY_STRIDE_EXT 0x8086 +#define GL_INDEX_ARRAY_COUNT_EXT 0x8087 +#define GL_TEXTURE_COORD_ARRAY_SIZE_EXT 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE_EXT 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE_EXT 0x808A +#define GL_TEXTURE_COORD_ARRAY_COUNT_EXT 0x808B +#define GL_EDGE_FLAG_ARRAY_STRIDE_EXT 0x808C +#define GL_EDGE_FLAG_ARRAY_COUNT_EXT 0x808D +#define GL_VERTEX_ARRAY_POINTER_EXT 0x808E +#define GL_NORMAL_ARRAY_POINTER_EXT 0x808F +#define GL_COLOR_ARRAY_POINTER_EXT 0x8090 +#define GL_INDEX_ARRAY_POINTER_EXT 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER_EXT 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER_EXT 0x8093 +typedef void (APIENTRYP PFNGLARRAYELEMENTEXTPROC) (GLint i); +typedef void (APIENTRYP PFNGLCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLDRAWARRAYSEXTPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTEREXTPROC) (GLsizei stride, GLsizei count, const GLboolean *pointer); +typedef void (APIENTRYP PFNGLGETPOINTERVEXTPROC) (GLenum pname, void **params); +typedef void (APIENTRYP PFNGLINDEXPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLNORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLVERTEXPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glArrayElementEXT (GLint i); +GLAPI void APIENTRY glColorPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glDrawArraysEXT (GLenum mode, GLint first, GLsizei count); +GLAPI void APIENTRY glEdgeFlagPointerEXT (GLsizei stride, GLsizei count, const GLboolean *pointer); +GLAPI void APIENTRY glGetPointervEXT (GLenum pname, void **params); +GLAPI void APIENTRY glIndexPointerEXT (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glNormalPointerEXT (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glTexCoordPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glVertexPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +#endif +#endif /* GL_EXT_vertex_array */ + +#ifndef GL_EXT_vertex_array_bgra +#define GL_EXT_vertex_array_bgra 1 +#endif /* GL_EXT_vertex_array_bgra */ + +#ifndef GL_EXT_vertex_attrib_64bit +#define GL_EXT_vertex_attrib_64bit 1 +#define GL_DOUBLE_VEC2_EXT 0x8FFC +#define GL_DOUBLE_VEC3_EXT 0x8FFD +#define GL_DOUBLE_VEC4_EXT 0x8FFE +#define GL_DOUBLE_MAT2_EXT 0x8F46 +#define GL_DOUBLE_MAT3_EXT 0x8F47 +#define GL_DOUBLE_MAT4_EXT 0x8F48 +#define GL_DOUBLE_MAT2x3_EXT 0x8F49 +#define GL_DOUBLE_MAT2x4_EXT 0x8F4A +#define GL_DOUBLE_MAT3x2_EXT 0x8F4B +#define GL_DOUBLE_MAT3x4_EXT 0x8F4C +#define GL_DOUBLE_MAT4x2_EXT 0x8F4D +#define GL_DOUBLE_MAT4x3_EXT 0x8F4E +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DEXTPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DEXTPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVEXTPROC) (GLuint index, GLenum pname, GLdouble *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribL1dEXT (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttribL2dEXT (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttribL3dEXT (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttribL4dEXT (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttribL1dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL2dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL3dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL4dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribLPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribLdvEXT (GLuint index, GLenum pname, GLdouble *params); +#endif +#endif /* GL_EXT_vertex_attrib_64bit */ + +#ifndef GL_EXT_vertex_shader +#define GL_EXT_vertex_shader 1 +#define GL_VERTEX_SHADER_EXT 0x8780 +#define GL_VERTEX_SHADER_BINDING_EXT 0x8781 +#define GL_OP_INDEX_EXT 0x8782 +#define GL_OP_NEGATE_EXT 0x8783 +#define GL_OP_DOT3_EXT 0x8784 +#define GL_OP_DOT4_EXT 0x8785 +#define GL_OP_MUL_EXT 0x8786 +#define GL_OP_ADD_EXT 0x8787 +#define GL_OP_MADD_EXT 0x8788 +#define GL_OP_FRAC_EXT 0x8789 +#define GL_OP_MAX_EXT 0x878A +#define GL_OP_MIN_EXT 0x878B +#define GL_OP_SET_GE_EXT 0x878C +#define GL_OP_SET_LT_EXT 0x878D +#define GL_OP_CLAMP_EXT 0x878E +#define GL_OP_FLOOR_EXT 0x878F +#define GL_OP_ROUND_EXT 0x8790 +#define GL_OP_EXP_BASE_2_EXT 0x8791 +#define GL_OP_LOG_BASE_2_EXT 0x8792 +#define GL_OP_POWER_EXT 0x8793 +#define GL_OP_RECIP_EXT 0x8794 +#define GL_OP_RECIP_SQRT_EXT 0x8795 +#define GL_OP_SUB_EXT 0x8796 +#define GL_OP_CROSS_PRODUCT_EXT 0x8797 +#define GL_OP_MULTIPLY_MATRIX_EXT 0x8798 +#define GL_OP_MOV_EXT 0x8799 +#define GL_OUTPUT_VERTEX_EXT 0x879A +#define GL_OUTPUT_COLOR0_EXT 0x879B +#define GL_OUTPUT_COLOR1_EXT 0x879C +#define GL_OUTPUT_TEXTURE_COORD0_EXT 0x879D +#define GL_OUTPUT_TEXTURE_COORD1_EXT 0x879E +#define GL_OUTPUT_TEXTURE_COORD2_EXT 0x879F +#define GL_OUTPUT_TEXTURE_COORD3_EXT 0x87A0 +#define GL_OUTPUT_TEXTURE_COORD4_EXT 0x87A1 +#define GL_OUTPUT_TEXTURE_COORD5_EXT 0x87A2 +#define GL_OUTPUT_TEXTURE_COORD6_EXT 0x87A3 +#define GL_OUTPUT_TEXTURE_COORD7_EXT 0x87A4 +#define GL_OUTPUT_TEXTURE_COORD8_EXT 0x87A5 +#define GL_OUTPUT_TEXTURE_COORD9_EXT 0x87A6 +#define GL_OUTPUT_TEXTURE_COORD10_EXT 0x87A7 +#define GL_OUTPUT_TEXTURE_COORD11_EXT 0x87A8 +#define GL_OUTPUT_TEXTURE_COORD12_EXT 0x87A9 +#define GL_OUTPUT_TEXTURE_COORD13_EXT 0x87AA +#define GL_OUTPUT_TEXTURE_COORD14_EXT 0x87AB +#define GL_OUTPUT_TEXTURE_COORD15_EXT 0x87AC +#define GL_OUTPUT_TEXTURE_COORD16_EXT 0x87AD +#define GL_OUTPUT_TEXTURE_COORD17_EXT 0x87AE +#define GL_OUTPUT_TEXTURE_COORD18_EXT 0x87AF +#define GL_OUTPUT_TEXTURE_COORD19_EXT 0x87B0 +#define GL_OUTPUT_TEXTURE_COORD20_EXT 0x87B1 +#define GL_OUTPUT_TEXTURE_COORD21_EXT 0x87B2 +#define GL_OUTPUT_TEXTURE_COORD22_EXT 0x87B3 +#define GL_OUTPUT_TEXTURE_COORD23_EXT 0x87B4 +#define GL_OUTPUT_TEXTURE_COORD24_EXT 0x87B5 +#define GL_OUTPUT_TEXTURE_COORD25_EXT 0x87B6 +#define GL_OUTPUT_TEXTURE_COORD26_EXT 0x87B7 +#define GL_OUTPUT_TEXTURE_COORD27_EXT 0x87B8 +#define GL_OUTPUT_TEXTURE_COORD28_EXT 0x87B9 +#define GL_OUTPUT_TEXTURE_COORD29_EXT 0x87BA +#define GL_OUTPUT_TEXTURE_COORD30_EXT 0x87BB +#define GL_OUTPUT_TEXTURE_COORD31_EXT 0x87BC +#define GL_OUTPUT_FOG_EXT 0x87BD +#define GL_SCALAR_EXT 0x87BE +#define GL_VECTOR_EXT 0x87BF +#define GL_MATRIX_EXT 0x87C0 +#define GL_VARIANT_EXT 0x87C1 +#define GL_INVARIANT_EXT 0x87C2 +#define GL_LOCAL_CONSTANT_EXT 0x87C3 +#define GL_LOCAL_EXT 0x87C4 +#define GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87C5 +#define GL_MAX_VERTEX_SHADER_VARIANTS_EXT 0x87C6 +#define GL_MAX_VERTEX_SHADER_INVARIANTS_EXT 0x87C7 +#define GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87C8 +#define GL_MAX_VERTEX_SHADER_LOCALS_EXT 0x87C9 +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CA +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT 0x87CB +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87CC +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT 0x87CD +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT 0x87CE +#define GL_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CF +#define GL_VERTEX_SHADER_VARIANTS_EXT 0x87D0 +#define GL_VERTEX_SHADER_INVARIANTS_EXT 0x87D1 +#define GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87D2 +#define GL_VERTEX_SHADER_LOCALS_EXT 0x87D3 +#define GL_VERTEX_SHADER_OPTIMIZED_EXT 0x87D4 +#define GL_X_EXT 0x87D5 +#define GL_Y_EXT 0x87D6 +#define GL_Z_EXT 0x87D7 +#define GL_W_EXT 0x87D8 +#define GL_NEGATIVE_X_EXT 0x87D9 +#define GL_NEGATIVE_Y_EXT 0x87DA +#define GL_NEGATIVE_Z_EXT 0x87DB +#define GL_NEGATIVE_W_EXT 0x87DC +#define GL_ZERO_EXT 0x87DD +#define GL_ONE_EXT 0x87DE +#define GL_NEGATIVE_ONE_EXT 0x87DF +#define GL_NORMALIZED_RANGE_EXT 0x87E0 +#define GL_FULL_RANGE_EXT 0x87E1 +#define GL_CURRENT_VERTEX_EXT 0x87E2 +#define GL_MVP_MATRIX_EXT 0x87E3 +#define GL_VARIANT_VALUE_EXT 0x87E4 +#define GL_VARIANT_DATATYPE_EXT 0x87E5 +#define GL_VARIANT_ARRAY_STRIDE_EXT 0x87E6 +#define GL_VARIANT_ARRAY_TYPE_EXT 0x87E7 +#define GL_VARIANT_ARRAY_EXT 0x87E8 +#define GL_VARIANT_ARRAY_POINTER_EXT 0x87E9 +#define GL_INVARIANT_VALUE_EXT 0x87EA +#define GL_INVARIANT_DATATYPE_EXT 0x87EB +#define GL_LOCAL_CONSTANT_VALUE_EXT 0x87EC +#define GL_LOCAL_CONSTANT_DATATYPE_EXT 0x87ED +typedef void (APIENTRYP PFNGLBEGINVERTEXSHADEREXTPROC) (void); +typedef void (APIENTRYP PFNGLENDVERTEXSHADEREXTPROC) (void); +typedef void (APIENTRYP PFNGLBINDVERTEXSHADEREXTPROC) (GLuint id); +typedef GLuint (APIENTRYP PFNGLGENVERTEXSHADERSEXTPROC) (GLuint range); +typedef void (APIENTRYP PFNGLDELETEVERTEXSHADEREXTPROC) (GLuint id); +typedef void (APIENTRYP PFNGLSHADEROP1EXTPROC) (GLenum op, GLuint res, GLuint arg1); +typedef void (APIENTRYP PFNGLSHADEROP2EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2); +typedef void (APIENTRYP PFNGLSHADEROP3EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3); +typedef void (APIENTRYP PFNGLSWIZZLEEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +typedef void (APIENTRYP PFNGLWRITEMASKEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +typedef void (APIENTRYP PFNGLINSERTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); +typedef void (APIENTRYP PFNGLEXTRACTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); +typedef GLuint (APIENTRYP PFNGLGENSYMBOLSEXTPROC) (GLenum datatype, GLenum storagetype, GLenum range, GLuint components); +typedef void (APIENTRYP PFNGLSETINVARIANTEXTPROC) (GLuint id, GLenum type, const void *addr); +typedef void (APIENTRYP PFNGLSETLOCALCONSTANTEXTPROC) (GLuint id, GLenum type, const void *addr); +typedef void (APIENTRYP PFNGLVARIANTBVEXTPROC) (GLuint id, const GLbyte *addr); +typedef void (APIENTRYP PFNGLVARIANTSVEXTPROC) (GLuint id, const GLshort *addr); +typedef void (APIENTRYP PFNGLVARIANTIVEXTPROC) (GLuint id, const GLint *addr); +typedef void (APIENTRYP PFNGLVARIANTFVEXTPROC) (GLuint id, const GLfloat *addr); +typedef void (APIENTRYP PFNGLVARIANTDVEXTPROC) (GLuint id, const GLdouble *addr); +typedef void (APIENTRYP PFNGLVARIANTUBVEXTPROC) (GLuint id, const GLubyte *addr); +typedef void (APIENTRYP PFNGLVARIANTUSVEXTPROC) (GLuint id, const GLushort *addr); +typedef void (APIENTRYP PFNGLVARIANTUIVEXTPROC) (GLuint id, const GLuint *addr); +typedef void (APIENTRYP PFNGLVARIANTPOINTEREXTPROC) (GLuint id, GLenum type, GLuint stride, const void *addr); +typedef void (APIENTRYP PFNGLENABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); +typedef void (APIENTRYP PFNGLDISABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); +typedef GLuint (APIENTRYP PFNGLBINDLIGHTPARAMETEREXTPROC) (GLenum light, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDMATERIALPARAMETEREXTPROC) (GLenum face, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDTEXGENPARAMETEREXTPROC) (GLenum unit, GLenum coord, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDTEXTUREUNITPARAMETEREXTPROC) (GLenum unit, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDPARAMETEREXTPROC) (GLenum value); +typedef GLboolean (APIENTRYP PFNGLISVARIANTENABLEDEXTPROC) (GLuint id, GLenum cap); +typedef void (APIENTRYP PFNGLGETVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +typedef void (APIENTRYP PFNGLGETVARIANTPOINTERVEXTPROC) (GLuint id, GLenum value, void **data); +typedef void (APIENTRYP PFNGLGETINVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETINVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETINVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginVertexShaderEXT (void); +GLAPI void APIENTRY glEndVertexShaderEXT (void); +GLAPI void APIENTRY glBindVertexShaderEXT (GLuint id); +GLAPI GLuint APIENTRY glGenVertexShadersEXT (GLuint range); +GLAPI void APIENTRY glDeleteVertexShaderEXT (GLuint id); +GLAPI void APIENTRY glShaderOp1EXT (GLenum op, GLuint res, GLuint arg1); +GLAPI void APIENTRY glShaderOp2EXT (GLenum op, GLuint res, GLuint arg1, GLuint arg2); +GLAPI void APIENTRY glShaderOp3EXT (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3); +GLAPI void APIENTRY glSwizzleEXT (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +GLAPI void APIENTRY glWriteMaskEXT (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +GLAPI void APIENTRY glInsertComponentEXT (GLuint res, GLuint src, GLuint num); +GLAPI void APIENTRY glExtractComponentEXT (GLuint res, GLuint src, GLuint num); +GLAPI GLuint APIENTRY glGenSymbolsEXT (GLenum datatype, GLenum storagetype, GLenum range, GLuint components); +GLAPI void APIENTRY glSetInvariantEXT (GLuint id, GLenum type, const void *addr); +GLAPI void APIENTRY glSetLocalConstantEXT (GLuint id, GLenum type, const void *addr); +GLAPI void APIENTRY glVariantbvEXT (GLuint id, const GLbyte *addr); +GLAPI void APIENTRY glVariantsvEXT (GLuint id, const GLshort *addr); +GLAPI void APIENTRY glVariantivEXT (GLuint id, const GLint *addr); +GLAPI void APIENTRY glVariantfvEXT (GLuint id, const GLfloat *addr); +GLAPI void APIENTRY glVariantdvEXT (GLuint id, const GLdouble *addr); +GLAPI void APIENTRY glVariantubvEXT (GLuint id, const GLubyte *addr); +GLAPI void APIENTRY glVariantusvEXT (GLuint id, const GLushort *addr); +GLAPI void APIENTRY glVariantuivEXT (GLuint id, const GLuint *addr); +GLAPI void APIENTRY glVariantPointerEXT (GLuint id, GLenum type, GLuint stride, const void *addr); +GLAPI void APIENTRY glEnableVariantClientStateEXT (GLuint id); +GLAPI void APIENTRY glDisableVariantClientStateEXT (GLuint id); +GLAPI GLuint APIENTRY glBindLightParameterEXT (GLenum light, GLenum value); +GLAPI GLuint APIENTRY glBindMaterialParameterEXT (GLenum face, GLenum value); +GLAPI GLuint APIENTRY glBindTexGenParameterEXT (GLenum unit, GLenum coord, GLenum value); +GLAPI GLuint APIENTRY glBindTextureUnitParameterEXT (GLenum unit, GLenum value); +GLAPI GLuint APIENTRY glBindParameterEXT (GLenum value); +GLAPI GLboolean APIENTRY glIsVariantEnabledEXT (GLuint id, GLenum cap); +GLAPI void APIENTRY glGetVariantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetVariantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetVariantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +GLAPI void APIENTRY glGetVariantPointervEXT (GLuint id, GLenum value, void **data); +GLAPI void APIENTRY glGetInvariantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetInvariantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetInvariantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +GLAPI void APIENTRY glGetLocalConstantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetLocalConstantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetLocalConstantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +#endif +#endif /* GL_EXT_vertex_shader */ + +#ifndef GL_EXT_vertex_weighting +#define GL_EXT_vertex_weighting 1 +#define GL_MODELVIEW0_STACK_DEPTH_EXT 0x0BA3 +#define GL_MODELVIEW1_STACK_DEPTH_EXT 0x8502 +#define GL_MODELVIEW0_MATRIX_EXT 0x0BA6 +#define GL_MODELVIEW1_MATRIX_EXT 0x8506 +#define GL_VERTEX_WEIGHTING_EXT 0x8509 +#define GL_MODELVIEW0_EXT 0x1700 +#define GL_MODELVIEW1_EXT 0x850A +#define GL_CURRENT_VERTEX_WEIGHT_EXT 0x850B +#define GL_VERTEX_WEIGHT_ARRAY_EXT 0x850C +#define GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT 0x850D +#define GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT 0x850E +#define GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT 0x850F +#define GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT 0x8510 +typedef void (APIENTRYP PFNGLVERTEXWEIGHTFEXTPROC) (GLfloat weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTFVEXTPROC) (const GLfloat *weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexWeightfEXT (GLfloat weight); +GLAPI void APIENTRY glVertexWeightfvEXT (const GLfloat *weight); +GLAPI void APIENTRY glVertexWeightPointerEXT (GLint size, GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_vertex_weighting */ + +#ifndef GL_EXT_win32_keyed_mutex +#define GL_EXT_win32_keyed_mutex 1 +typedef GLboolean (APIENTRYP PFNGLACQUIREKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key, GLuint timeout); +typedef GLboolean (APIENTRYP PFNGLRELEASEKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAcquireKeyedMutexWin32EXT (GLuint memory, GLuint64 key, GLuint timeout); +GLAPI GLboolean APIENTRY glReleaseKeyedMutexWin32EXT (GLuint memory, GLuint64 key); +#endif +#endif /* GL_EXT_win32_keyed_mutex */ + +#ifndef GL_EXT_window_rectangles +#define GL_EXT_window_rectangles 1 +#define GL_INCLUSIVE_EXT 0x8F10 +#define GL_EXCLUSIVE_EXT 0x8F11 +#define GL_WINDOW_RECTANGLE_EXT 0x8F12 +#define GL_WINDOW_RECTANGLE_MODE_EXT 0x8F13 +#define GL_MAX_WINDOW_RECTANGLES_EXT 0x8F14 +#define GL_NUM_WINDOW_RECTANGLES_EXT 0x8F15 +typedef void (APIENTRYP PFNGLWINDOWRECTANGLESEXTPROC) (GLenum mode, GLsizei count, const GLint *box); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowRectanglesEXT (GLenum mode, GLsizei count, const GLint *box); +#endif +#endif /* GL_EXT_window_rectangles */ + +#ifndef GL_EXT_x11_sync_object +#define GL_EXT_x11_sync_object 1 +#define GL_SYNC_X11_FENCE_EXT 0x90E1 +typedef GLsync (APIENTRYP PFNGLIMPORTSYNCEXTPROC) (GLenum external_sync_type, GLintptr external_sync, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLsync APIENTRY glImportSyncEXT (GLenum external_sync_type, GLintptr external_sync, GLbitfield flags); +#endif +#endif /* GL_EXT_x11_sync_object */ + +#ifndef GL_GREMEDY_frame_terminator +#define GL_GREMEDY_frame_terminator 1 +typedef void (APIENTRYP PFNGLFRAMETERMINATORGREMEDYPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFrameTerminatorGREMEDY (void); +#endif +#endif /* GL_GREMEDY_frame_terminator */ + +#ifndef GL_GREMEDY_string_marker +#define GL_GREMEDY_string_marker 1 +typedef void (APIENTRYP PFNGLSTRINGMARKERGREMEDYPROC) (GLsizei len, const void *string); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStringMarkerGREMEDY (GLsizei len, const void *string); +#endif +#endif /* GL_GREMEDY_string_marker */ + +#ifndef GL_HP_convolution_border_modes +#define GL_HP_convolution_border_modes 1 +#define GL_IGNORE_BORDER_HP 0x8150 +#define GL_CONSTANT_BORDER_HP 0x8151 +#define GL_REPLICATE_BORDER_HP 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR_HP 0x8154 +#endif /* GL_HP_convolution_border_modes */ + +#ifndef GL_HP_image_transform +#define GL_HP_image_transform 1 +#define GL_IMAGE_SCALE_X_HP 0x8155 +#define GL_IMAGE_SCALE_Y_HP 0x8156 +#define GL_IMAGE_TRANSLATE_X_HP 0x8157 +#define GL_IMAGE_TRANSLATE_Y_HP 0x8158 +#define GL_IMAGE_ROTATE_ANGLE_HP 0x8159 +#define GL_IMAGE_ROTATE_ORIGIN_X_HP 0x815A +#define GL_IMAGE_ROTATE_ORIGIN_Y_HP 0x815B +#define GL_IMAGE_MAG_FILTER_HP 0x815C +#define GL_IMAGE_MIN_FILTER_HP 0x815D +#define GL_IMAGE_CUBIC_WEIGHT_HP 0x815E +#define GL_CUBIC_HP 0x815F +#define GL_AVERAGE_HP 0x8160 +#define GL_IMAGE_TRANSFORM_2D_HP 0x8161 +#define GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8162 +#define GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8163 +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIHPPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFHPPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImageTransformParameteriHP (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glImageTransformParameterfHP (GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glImageTransformParameterivHP (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glImageTransformParameterfvHP (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetImageTransformParameterivHP (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetImageTransformParameterfvHP (GLenum target, GLenum pname, GLfloat *params); +#endif +#endif /* GL_HP_image_transform */ + +#ifndef GL_HP_occlusion_test +#define GL_HP_occlusion_test 1 +#define GL_OCCLUSION_TEST_HP 0x8165 +#define GL_OCCLUSION_TEST_RESULT_HP 0x8166 +#endif /* GL_HP_occlusion_test */ + +#ifndef GL_HP_texture_lighting +#define GL_HP_texture_lighting 1 +#define GL_TEXTURE_LIGHTING_MODE_HP 0x8167 +#define GL_TEXTURE_POST_SPECULAR_HP 0x8168 +#define GL_TEXTURE_PRE_SPECULAR_HP 0x8169 +#endif /* GL_HP_texture_lighting */ + +#ifndef GL_IBM_cull_vertex +#define GL_IBM_cull_vertex 1 +#define GL_CULL_VERTEX_IBM 103050 +#endif /* GL_IBM_cull_vertex */ + +#ifndef GL_IBM_multimode_draw_arrays +#define GL_IBM_multimode_draw_arrays 1 +typedef void (APIENTRYP PFNGLMULTIMODEDRAWARRAYSIBMPROC) (const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); +typedef void (APIENTRYP PFNGLMULTIMODEDRAWELEMENTSIBMPROC) (const GLenum *mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount, GLint modestride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiModeDrawArraysIBM (const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); +GLAPI void APIENTRY glMultiModeDrawElementsIBM (const GLenum *mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount, GLint modestride); +#endif +#endif /* GL_IBM_multimode_draw_arrays */ + +#ifndef GL_IBM_rasterpos_clip +#define GL_IBM_rasterpos_clip 1 +#define GL_RASTER_POSITION_UNCLIPPED_IBM 0x19262 +#endif /* GL_IBM_rasterpos_clip */ + +#ifndef GL_IBM_static_data +#define GL_IBM_static_data 1 +#define GL_ALL_STATIC_DATA_IBM 103060 +#define GL_STATIC_VERTEX_ARRAY_IBM 103061 +typedef void (APIENTRYP PFNGLFLUSHSTATICDATAIBMPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushStaticDataIBM (GLenum target); +#endif +#endif /* GL_IBM_static_data */ + +#ifndef GL_IBM_texture_mirrored_repeat +#define GL_IBM_texture_mirrored_repeat 1 +#define GL_MIRRORED_REPEAT_IBM 0x8370 +#endif /* GL_IBM_texture_mirrored_repeat */ + +#ifndef GL_IBM_vertex_array_lists +#define GL_IBM_vertex_array_lists 1 +#define GL_VERTEX_ARRAY_LIST_IBM 103070 +#define GL_NORMAL_ARRAY_LIST_IBM 103071 +#define GL_COLOR_ARRAY_LIST_IBM 103072 +#define GL_INDEX_ARRAY_LIST_IBM 103073 +#define GL_TEXTURE_COORD_ARRAY_LIST_IBM 103074 +#define GL_EDGE_FLAG_ARRAY_LIST_IBM 103075 +#define GL_FOG_COORDINATE_ARRAY_LIST_IBM 103076 +#define GL_SECONDARY_COLOR_ARRAY_LIST_IBM 103077 +#define GL_VERTEX_ARRAY_LIST_STRIDE_IBM 103080 +#define GL_NORMAL_ARRAY_LIST_STRIDE_IBM 103081 +#define GL_COLOR_ARRAY_LIST_STRIDE_IBM 103082 +#define GL_INDEX_ARRAY_LIST_STRIDE_IBM 103083 +#define GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM 103084 +#define GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM 103085 +#define GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM 103086 +#define GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM 103087 +typedef void (APIENTRYP PFNGLCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTERLISTIBMPROC) (GLint stride, const GLboolean **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLINDEXPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLNORMALPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLVERTEXPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glSecondaryColorPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glEdgeFlagPointerListIBM (GLint stride, const GLboolean **pointer, GLint ptrstride); +GLAPI void APIENTRY glFogCoordPointerListIBM (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glIndexPointerListIBM (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glNormalPointerListIBM (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glTexCoordPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glVertexPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +#endif +#endif /* GL_IBM_vertex_array_lists */ + +#ifndef GL_INGR_blend_func_separate +#define GL_INGR_blend_func_separate 1 +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEINGRPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparateINGR (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#endif +#endif /* GL_INGR_blend_func_separate */ + +#ifndef GL_INGR_color_clamp +#define GL_INGR_color_clamp 1 +#define GL_RED_MIN_CLAMP_INGR 0x8560 +#define GL_GREEN_MIN_CLAMP_INGR 0x8561 +#define GL_BLUE_MIN_CLAMP_INGR 0x8562 +#define GL_ALPHA_MIN_CLAMP_INGR 0x8563 +#define GL_RED_MAX_CLAMP_INGR 0x8564 +#define GL_GREEN_MAX_CLAMP_INGR 0x8565 +#define GL_BLUE_MAX_CLAMP_INGR 0x8566 +#define GL_ALPHA_MAX_CLAMP_INGR 0x8567 +#endif /* GL_INGR_color_clamp */ + +#ifndef GL_INGR_interlace_read +#define GL_INGR_interlace_read 1 +#define GL_INTERLACE_READ_INGR 0x8568 +#endif /* GL_INGR_interlace_read */ + +#ifndef GL_INTEL_blackhole_render +#define GL_INTEL_blackhole_render 1 +#define GL_BLACKHOLE_RENDER_INTEL 0x83FC +#endif /* GL_INTEL_blackhole_render */ + +#ifndef GL_INTEL_conservative_rasterization +#define GL_INTEL_conservative_rasterization 1 +#define GL_CONSERVATIVE_RASTERIZATION_INTEL 0x83FE +#endif /* GL_INTEL_conservative_rasterization */ + +#ifndef GL_INTEL_fragment_shader_ordering +#define GL_INTEL_fragment_shader_ordering 1 +#endif /* GL_INTEL_fragment_shader_ordering */ + +#ifndef GL_INTEL_framebuffer_CMAA +#define GL_INTEL_framebuffer_CMAA 1 +typedef void (APIENTRYP PFNGLAPPLYFRAMEBUFFERATTACHMENTCMAAINTELPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glApplyFramebufferAttachmentCMAAINTEL (void); +#endif +#endif /* GL_INTEL_framebuffer_CMAA */ + +#ifndef GL_INTEL_map_texture +#define GL_INTEL_map_texture 1 +#define GL_TEXTURE_MEMORY_LAYOUT_INTEL 0x83FF +#define GL_LAYOUT_DEFAULT_INTEL 0 +#define GL_LAYOUT_LINEAR_INTEL 1 +#define GL_LAYOUT_LINEAR_CPU_CACHED_INTEL 2 +typedef void (APIENTRYP PFNGLSYNCTEXTUREINTELPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLUNMAPTEXTURE2DINTELPROC) (GLuint texture, GLint level); +typedef void *(APIENTRYP PFNGLMAPTEXTURE2DINTELPROC) (GLuint texture, GLint level, GLbitfield access, GLint *stride, GLenum *layout); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSyncTextureINTEL (GLuint texture); +GLAPI void APIENTRY glUnmapTexture2DINTEL (GLuint texture, GLint level); +GLAPI void *APIENTRY glMapTexture2DINTEL (GLuint texture, GLint level, GLbitfield access, GLint *stride, GLenum *layout); +#endif +#endif /* GL_INTEL_map_texture */ + +#ifndef GL_INTEL_parallel_arrays +#define GL_INTEL_parallel_arrays 1 +#define GL_PARALLEL_ARRAYS_INTEL 0x83F4 +#define GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL 0x83F5 +#define GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL 0x83F6 +#define GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL 0x83F7 +#define GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL 0x83F8 +typedef void (APIENTRYP PFNGLVERTEXPOINTERVINTELPROC) (GLint size, GLenum type, const void **pointer); +typedef void (APIENTRYP PFNGLNORMALPOINTERVINTELPROC) (GLenum type, const void **pointer); +typedef void (APIENTRYP PFNGLCOLORPOINTERVINTELPROC) (GLint size, GLenum type, const void **pointer); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERVINTELPROC) (GLint size, GLenum type, const void **pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexPointervINTEL (GLint size, GLenum type, const void **pointer); +GLAPI void APIENTRY glNormalPointervINTEL (GLenum type, const void **pointer); +GLAPI void APIENTRY glColorPointervINTEL (GLint size, GLenum type, const void **pointer); +GLAPI void APIENTRY glTexCoordPointervINTEL (GLint size, GLenum type, const void **pointer); +#endif +#endif /* GL_INTEL_parallel_arrays */ + +#ifndef GL_INTEL_performance_query +#define GL_INTEL_performance_query 1 +#define GL_PERFQUERY_SINGLE_CONTEXT_INTEL 0x00000000 +#define GL_PERFQUERY_GLOBAL_CONTEXT_INTEL 0x00000001 +#define GL_PERFQUERY_WAIT_INTEL 0x83FB +#define GL_PERFQUERY_FLUSH_INTEL 0x83FA +#define GL_PERFQUERY_DONOT_FLUSH_INTEL 0x83F9 +#define GL_PERFQUERY_COUNTER_EVENT_INTEL 0x94F0 +#define GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL 0x94F1 +#define GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL 0x94F2 +#define GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL 0x94F3 +#define GL_PERFQUERY_COUNTER_RAW_INTEL 0x94F4 +#define GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL 0x94F5 +#define GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL 0x94F8 +#define GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL 0x94F9 +#define GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL 0x94FA +#define GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL 0x94FB +#define GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL 0x94FC +#define GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL 0x94FD +#define GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL 0x94FE +#define GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL 0x94FF +#define GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL 0x9500 +typedef void (APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); +typedef void (APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (APIENTRYP PFNGLGETFIRSTPERFQUERYIDINTELPROC) (GLuint *queryId); +typedef void (APIENTRYP PFNGLGETNEXTPERFQUERYIDINTELPROC) (GLuint queryId, GLuint *nextQueryId); +typedef void (APIENTRYP PFNGLGETPERFCOUNTERINFOINTELPROC) (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +typedef void (APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +typedef void (APIENTRYP PFNGLGETPERFQUERYIDBYNAMEINTELPROC) (GLchar *queryName, GLuint *queryId); +typedef void (APIENTRYP PFNGLGETPERFQUERYINFOINTELPROC) (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); +GLAPI void APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); +GLAPI void APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); +GLAPI void APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); +GLAPI void APIENTRY glGetFirstPerfQueryIdINTEL (GLuint *queryId); +GLAPI void APIENTRY glGetNextPerfQueryIdINTEL (GLuint queryId, GLuint *nextQueryId); +GLAPI void APIENTRY glGetPerfCounterInfoINTEL (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +GLAPI void APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +GLAPI void APIENTRY glGetPerfQueryIdByNameINTEL (GLchar *queryName, GLuint *queryId); +GLAPI void APIENTRY glGetPerfQueryInfoINTEL (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#endif +#endif /* GL_INTEL_performance_query */ + +#ifndef GL_MESAX_texture_stack +#define GL_MESAX_texture_stack 1 +#define GL_TEXTURE_1D_STACK_MESAX 0x8759 +#define GL_TEXTURE_2D_STACK_MESAX 0x875A +#define GL_PROXY_TEXTURE_1D_STACK_MESAX 0x875B +#define GL_PROXY_TEXTURE_2D_STACK_MESAX 0x875C +#define GL_TEXTURE_1D_STACK_BINDING_MESAX 0x875D +#define GL_TEXTURE_2D_STACK_BINDING_MESAX 0x875E +#endif /* GL_MESAX_texture_stack */ + +#ifndef GL_MESA_framebuffer_flip_x +#define GL_MESA_framebuffer_flip_x 1 +#define GL_FRAMEBUFFER_FLIP_X_MESA 0x8BBC +#endif /* GL_MESA_framebuffer_flip_x */ + +#ifndef GL_MESA_framebuffer_flip_y +#define GL_MESA_framebuffer_flip_y 1 +#define GL_FRAMEBUFFER_FLIP_Y_MESA 0x8BBB +typedef void (APIENTRYP PFNGLFRAMEBUFFERPARAMETERIMESAPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVMESAPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferParameteriMESA (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glGetFramebufferParameterivMESA (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_MESA_framebuffer_flip_y */ + +#ifndef GL_MESA_framebuffer_swap_xy +#define GL_MESA_framebuffer_swap_xy 1 +#define GL_FRAMEBUFFER_SWAP_XY_MESA 0x8BBD +#endif /* GL_MESA_framebuffer_swap_xy */ + +#ifndef GL_MESA_pack_invert +#define GL_MESA_pack_invert 1 +#define GL_PACK_INVERT_MESA 0x8758 +#endif /* GL_MESA_pack_invert */ + +#ifndef GL_MESA_program_binary_formats +#define GL_MESA_program_binary_formats 1 +#define GL_PROGRAM_BINARY_FORMAT_MESA 0x875F +#endif /* GL_MESA_program_binary_formats */ + +#ifndef GL_MESA_resize_buffers +#define GL_MESA_resize_buffers 1 +typedef void (APIENTRYP PFNGLRESIZEBUFFERSMESAPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glResizeBuffersMESA (void); +#endif +#endif /* GL_MESA_resize_buffers */ + +#ifndef GL_MESA_shader_integer_functions +#define GL_MESA_shader_integer_functions 1 +#endif /* GL_MESA_shader_integer_functions */ + +#ifndef GL_MESA_tile_raster_order +#define GL_MESA_tile_raster_order 1 +#define GL_TILE_RASTER_ORDER_FIXED_MESA 0x8BB8 +#define GL_TILE_RASTER_ORDER_INCREASING_X_MESA 0x8BB9 +#define GL_TILE_RASTER_ORDER_INCREASING_Y_MESA 0x8BBA +#endif /* GL_MESA_tile_raster_order */ + +#ifndef GL_MESA_window_pos +#define GL_MESA_window_pos 1 +typedef void (APIENTRYP PFNGLWINDOWPOS2DMESAPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FMESAPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IMESAPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SMESAPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVMESAPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DMESAPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FMESAPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IMESAPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SMESAPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVMESAPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4DMESAPROC) (GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLWINDOWPOS4DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4FMESAPROC) (GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLWINDOWPOS4FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4IMESAPROC) (GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLWINDOWPOS4IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4SMESAPROC) (GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLWINDOWPOS4SVMESAPROC) (const GLshort *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowPos2dMESA (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2fMESA (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2iMESA (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos2sMESA (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2svMESA (const GLshort *v); +GLAPI void APIENTRY glWindowPos3dMESA (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3fMESA (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3iMESA (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos3sMESA (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3svMESA (const GLshort *v); +GLAPI void APIENTRY glWindowPos4dMESA (GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glWindowPos4dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos4fMESA (GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glWindowPos4fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos4iMESA (GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glWindowPos4ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos4sMESA (GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glWindowPos4svMESA (const GLshort *v); +#endif +#endif /* GL_MESA_window_pos */ + +#ifndef GL_MESA_ycbcr_texture +#define GL_MESA_ycbcr_texture 1 +#define GL_UNSIGNED_SHORT_8_8_MESA 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_MESA 0x85BB +#define GL_YCBCR_MESA 0x8757 +#endif /* GL_MESA_ycbcr_texture */ + +#ifndef GL_NVX_blend_equation_advanced_multi_draw_buffers +#define GL_NVX_blend_equation_advanced_multi_draw_buffers 1 +#endif /* GL_NVX_blend_equation_advanced_multi_draw_buffers */ + +#ifndef GL_NVX_conditional_render +#define GL_NVX_conditional_render 1 +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERNVXPROC) (GLuint id); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERNVXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginConditionalRenderNVX (GLuint id); +GLAPI void APIENTRY glEndConditionalRenderNVX (void); +#endif +#endif /* GL_NVX_conditional_render */ + +#ifndef GL_NVX_gpu_memory_info +#define GL_NVX_gpu_memory_info 1 +#define GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX 0x9047 +#define GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX 0x9048 +#define GL_GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX 0x9049 +#define GL_GPU_MEMORY_INFO_EVICTION_COUNT_NVX 0x904A +#define GL_GPU_MEMORY_INFO_EVICTED_MEMORY_NVX 0x904B +#endif /* GL_NVX_gpu_memory_info */ + +#ifndef GL_NVX_gpu_multicast2 +#define GL_NVX_gpu_multicast2 1 +#define GL_UPLOAD_GPU_MASK_NVX 0x954A +typedef void (APIENTRYP PFNGLUPLOADGPUMASKNVXPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLMULTICASTVIEWPORTARRAYVNVXPROC) (GLuint gpu, GLuint first, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTICASTVIEWPORTPOSITIONWSCALENVXPROC) (GLuint gpu, GLuint index, GLfloat xcoeff, GLfloat ycoeff); +typedef void (APIENTRYP PFNGLMULTICASTSCISSORARRAYVNVXPROC) (GLuint gpu, GLuint first, GLsizei count, const GLint *v); +typedef GLuint (APIENTRYP PFNGLASYNCCOPYBUFFERSUBDATANVXPROC) (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *fenceValueArray, GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +typedef GLuint (APIENTRYP PFNGLASYNCCOPYIMAGESUBDATANVXPROC) (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *waitValueArray, GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUploadGPUMaskNVX (GLbitfield mask); +GLAPI void APIENTRY glMulticastViewportArrayvNVX (GLuint gpu, GLuint first, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glMulticastViewportPositionWScaleNVX (GLuint gpu, GLuint index, GLfloat xcoeff, GLfloat ycoeff); +GLAPI void APIENTRY glMulticastScissorArrayvNVX (GLuint gpu, GLuint first, GLsizei count, const GLint *v); +GLAPI GLuint APIENTRY glAsyncCopyBufferSubDataNVX (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *fenceValueArray, GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +GLAPI GLuint APIENTRY glAsyncCopyImageSubDataNVX (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *waitValueArray, GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +#endif +#endif /* GL_NVX_gpu_multicast2 */ + +#ifndef GL_NVX_linked_gpu_multicast +#define GL_NVX_linked_gpu_multicast 1 +#define GL_LGPU_SEPARATE_STORAGE_BIT_NVX 0x0800 +#define GL_MAX_LGPU_GPUS_NVX 0x92BA +typedef void (APIENTRYP PFNGLLGPUNAMEDBUFFERSUBDATANVXPROC) (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLLGPUCOPYIMAGESUBDATANVXPROC) (GLuint sourceGPU, GLbitfield destinationGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srxY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLLGPUINTERLOCKNVXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLGPUNamedBufferSubDataNVX (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glLGPUCopyImageSubDataNVX (GLuint sourceGPU, GLbitfield destinationGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srxY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glLGPUInterlockNVX (void); +#endif +#endif /* GL_NVX_linked_gpu_multicast */ + +#ifndef GL_NVX_progress_fence +#define GL_NVX_progress_fence 1 +typedef GLuint (APIENTRYP PFNGLCREATEPROGRESSFENCENVXPROC) (void); +typedef void (APIENTRYP PFNGLSIGNALSEMAPHOREUI64NVXPROC) (GLuint signalGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +typedef void (APIENTRYP PFNGLWAITSEMAPHOREUI64NVXPROC) (GLuint waitGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +typedef void (APIENTRYP PFNGLCLIENTWAITSEMAPHOREUI64NVXPROC) (GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glCreateProgressFenceNVX (void); +GLAPI void APIENTRY glSignalSemaphoreui64NVX (GLuint signalGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +GLAPI void APIENTRY glWaitSemaphoreui64NVX (GLuint waitGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +GLAPI void APIENTRY glClientWaitSemaphoreui64NVX (GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +#endif +#endif /* GL_NVX_progress_fence */ + +#ifndef GL_NV_alpha_to_coverage_dither_control +#define GL_NV_alpha_to_coverage_dither_control 1 +#define GL_ALPHA_TO_COVERAGE_DITHER_DEFAULT_NV 0x934D +#define GL_ALPHA_TO_COVERAGE_DITHER_ENABLE_NV 0x934E +#define GL_ALPHA_TO_COVERAGE_DITHER_DISABLE_NV 0x934F +#define GL_ALPHA_TO_COVERAGE_DITHER_MODE_NV 0x92BF +typedef void (APIENTRYP PFNGLALPHATOCOVERAGEDITHERCONTROLNVPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAlphaToCoverageDitherControlNV (GLenum mode); +#endif +#endif /* GL_NV_alpha_to_coverage_dither_control */ + +#ifndef GL_NV_bindless_multi_draw_indirect +#define GL_NV_bindless_multi_draw_indirect 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSNVPROC) (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTBINDLESSNVPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectBindlessNV (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +GLAPI void APIENTRY glMultiDrawElementsIndirectBindlessNV (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +#endif +#endif /* GL_NV_bindless_multi_draw_indirect */ + +#ifndef GL_NV_bindless_multi_draw_indirect_count +#define GL_NV_bindless_multi_draw_indirect_count 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSCOUNTNVPROC) (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTBINDLESSCOUNTNVPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectBindlessCountNV (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +GLAPI void APIENTRY glMultiDrawElementsIndirectBindlessCountNV (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +#endif +#endif /* GL_NV_bindless_multi_draw_indirect_count */ + +#ifndef GL_NV_bindless_texture +#define GL_NV_bindless_texture 1 +typedef GLuint64 (APIENTRYP PFNGLGETTEXTUREHANDLENVPROC) (GLuint texture); +typedef GLuint64 (APIENTRYP PFNGLGETTEXTURESAMPLERHANDLENVPROC) (GLuint texture, GLuint sampler); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef GLuint64 (APIENTRYP PFNGLGETIMAGEHANDLENVPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle, GLenum access); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64NVPROC) (GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64VNVPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64NVPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +typedef GLboolean (APIENTRYP PFNGLISTEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef GLboolean (APIENTRYP PFNGLISIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint64 APIENTRY glGetTextureHandleNV (GLuint texture); +GLAPI GLuint64 APIENTRY glGetTextureSamplerHandleNV (GLuint texture, GLuint sampler); +GLAPI void APIENTRY glMakeTextureHandleResidentNV (GLuint64 handle); +GLAPI void APIENTRY glMakeTextureHandleNonResidentNV (GLuint64 handle); +GLAPI GLuint64 APIENTRY glGetImageHandleNV (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +GLAPI void APIENTRY glMakeImageHandleResidentNV (GLuint64 handle, GLenum access); +GLAPI void APIENTRY glMakeImageHandleNonResidentNV (GLuint64 handle); +GLAPI void APIENTRY glUniformHandleui64NV (GLint location, GLuint64 value); +GLAPI void APIENTRY glUniformHandleui64vNV (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniformHandleui64NV (GLuint program, GLint location, GLuint64 value); +GLAPI void APIENTRY glProgramUniformHandleui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +GLAPI GLboolean APIENTRY glIsTextureHandleResidentNV (GLuint64 handle); +GLAPI GLboolean APIENTRY glIsImageHandleResidentNV (GLuint64 handle); +#endif +#endif /* GL_NV_bindless_texture */ + +#ifndef GL_NV_blend_equation_advanced +#define GL_NV_blend_equation_advanced 1 +#define GL_BLEND_OVERLAP_NV 0x9281 +#define GL_BLEND_PREMULTIPLIED_SRC_NV 0x9280 +#define GL_BLUE_NV 0x1905 +#define GL_COLORBURN_NV 0x929A +#define GL_COLORDODGE_NV 0x9299 +#define GL_CONJOINT_NV 0x9284 +#define GL_CONTRAST_NV 0x92A1 +#define GL_DARKEN_NV 0x9297 +#define GL_DIFFERENCE_NV 0x929E +#define GL_DISJOINT_NV 0x9283 +#define GL_DST_ATOP_NV 0x928F +#define GL_DST_IN_NV 0x928B +#define GL_DST_NV 0x9287 +#define GL_DST_OUT_NV 0x928D +#define GL_DST_OVER_NV 0x9289 +#define GL_EXCLUSION_NV 0x92A0 +#define GL_GREEN_NV 0x1904 +#define GL_HARDLIGHT_NV 0x929B +#define GL_HARDMIX_NV 0x92A9 +#define GL_HSL_COLOR_NV 0x92AF +#define GL_HSL_HUE_NV 0x92AD +#define GL_HSL_LUMINOSITY_NV 0x92B0 +#define GL_HSL_SATURATION_NV 0x92AE +#define GL_INVERT_OVG_NV 0x92B4 +#define GL_INVERT_RGB_NV 0x92A3 +#define GL_LIGHTEN_NV 0x9298 +#define GL_LINEARBURN_NV 0x92A5 +#define GL_LINEARDODGE_NV 0x92A4 +#define GL_LINEARLIGHT_NV 0x92A7 +#define GL_MINUS_CLAMPED_NV 0x92B3 +#define GL_MINUS_NV 0x929F +#define GL_MULTIPLY_NV 0x9294 +#define GL_OVERLAY_NV 0x9296 +#define GL_PINLIGHT_NV 0x92A8 +#define GL_PLUS_CLAMPED_ALPHA_NV 0x92B2 +#define GL_PLUS_CLAMPED_NV 0x92B1 +#define GL_PLUS_DARKER_NV 0x9292 +#define GL_PLUS_NV 0x9291 +#define GL_RED_NV 0x1903 +#define GL_SCREEN_NV 0x9295 +#define GL_SOFTLIGHT_NV 0x929C +#define GL_SRC_ATOP_NV 0x928E +#define GL_SRC_IN_NV 0x928A +#define GL_SRC_NV 0x9286 +#define GL_SRC_OUT_NV 0x928C +#define GL_SRC_OVER_NV 0x9288 +#define GL_UNCORRELATED_NV 0x9282 +#define GL_VIVIDLIGHT_NV 0x92A6 +#define GL_XOR_NV 0x1506 +typedef void (APIENTRYP PFNGLBLENDPARAMETERINVPROC) (GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLBLENDBARRIERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendParameteriNV (GLenum pname, GLint value); +GLAPI void APIENTRY glBlendBarrierNV (void); +#endif +#endif /* GL_NV_blend_equation_advanced */ + +#ifndef GL_NV_blend_equation_advanced_coherent +#define GL_NV_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_NV 0x9285 +#endif /* GL_NV_blend_equation_advanced_coherent */ + +#ifndef GL_NV_blend_minmax_factor +#define GL_NV_blend_minmax_factor 1 +#endif /* GL_NV_blend_minmax_factor */ + +#ifndef GL_NV_blend_square +#define GL_NV_blend_square 1 +#endif /* GL_NV_blend_square */ + +#ifndef GL_NV_clip_space_w_scaling +#define GL_NV_clip_space_w_scaling 1 +#define GL_VIEWPORT_POSITION_W_SCALE_NV 0x937C +#define GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV 0x937D +#define GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV 0x937E +typedef void (APIENTRYP PFNGLVIEWPORTPOSITIONWSCALENVPROC) (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glViewportPositionWScaleNV (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#endif +#endif /* GL_NV_clip_space_w_scaling */ + +#ifndef GL_NV_command_list +#define GL_NV_command_list 1 +#define GL_TERMINATE_SEQUENCE_COMMAND_NV 0x0000 +#define GL_NOP_COMMAND_NV 0x0001 +#define GL_DRAW_ELEMENTS_COMMAND_NV 0x0002 +#define GL_DRAW_ARRAYS_COMMAND_NV 0x0003 +#define GL_DRAW_ELEMENTS_STRIP_COMMAND_NV 0x0004 +#define GL_DRAW_ARRAYS_STRIP_COMMAND_NV 0x0005 +#define GL_DRAW_ELEMENTS_INSTANCED_COMMAND_NV 0x0006 +#define GL_DRAW_ARRAYS_INSTANCED_COMMAND_NV 0x0007 +#define GL_ELEMENT_ADDRESS_COMMAND_NV 0x0008 +#define GL_ATTRIBUTE_ADDRESS_COMMAND_NV 0x0009 +#define GL_UNIFORM_ADDRESS_COMMAND_NV 0x000A +#define GL_BLEND_COLOR_COMMAND_NV 0x000B +#define GL_STENCIL_REF_COMMAND_NV 0x000C +#define GL_LINE_WIDTH_COMMAND_NV 0x000D +#define GL_POLYGON_OFFSET_COMMAND_NV 0x000E +#define GL_ALPHA_REF_COMMAND_NV 0x000F +#define GL_VIEWPORT_COMMAND_NV 0x0010 +#define GL_SCISSOR_COMMAND_NV 0x0011 +#define GL_FRONT_FACE_COMMAND_NV 0x0012 +typedef void (APIENTRYP PFNGLCREATESTATESNVPROC) (GLsizei n, GLuint *states); +typedef void (APIENTRYP PFNGLDELETESTATESNVPROC) (GLsizei n, const GLuint *states); +typedef GLboolean (APIENTRYP PFNGLISSTATENVPROC) (GLuint state); +typedef void (APIENTRYP PFNGLSTATECAPTURENVPROC) (GLuint state, GLenum mode); +typedef GLuint (APIENTRYP PFNGLGETCOMMANDHEADERNVPROC) (GLenum tokenID, GLuint size); +typedef GLushort (APIENTRYP PFNGLGETSTAGEINDEXNVPROC) (GLenum shadertype); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSNVPROC) (GLenum primitiveMode, GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSADDRESSNVPROC) (GLenum primitiveMode, const GLuint64 *indirects, const GLsizei *sizes, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSSTATESNVPROC) (GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSSTATESADDRESSNVPROC) (const GLuint64 *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLCREATECOMMANDLISTSNVPROC) (GLsizei n, GLuint *lists); +typedef void (APIENTRYP PFNGLDELETECOMMANDLISTSNVPROC) (GLsizei n, const GLuint *lists); +typedef GLboolean (APIENTRYP PFNGLISCOMMANDLISTNVPROC) (GLuint list); +typedef void (APIENTRYP PFNGLLISTDRAWCOMMANDSSTATESCLIENTNVPROC) (GLuint list, GLuint segment, const void **indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLCOMMANDLISTSEGMENTSNVPROC) (GLuint list, GLuint segments); +typedef void (APIENTRYP PFNGLCOMPILECOMMANDLISTNVPROC) (GLuint list); +typedef void (APIENTRYP PFNGLCALLCOMMANDLISTNVPROC) (GLuint list); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCreateStatesNV (GLsizei n, GLuint *states); +GLAPI void APIENTRY glDeleteStatesNV (GLsizei n, const GLuint *states); +GLAPI GLboolean APIENTRY glIsStateNV (GLuint state); +GLAPI void APIENTRY glStateCaptureNV (GLuint state, GLenum mode); +GLAPI GLuint APIENTRY glGetCommandHeaderNV (GLenum tokenID, GLuint size); +GLAPI GLushort APIENTRY glGetStageIndexNV (GLenum shadertype); +GLAPI void APIENTRY glDrawCommandsNV (GLenum primitiveMode, GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, GLuint count); +GLAPI void APIENTRY glDrawCommandsAddressNV (GLenum primitiveMode, const GLuint64 *indirects, const GLsizei *sizes, GLuint count); +GLAPI void APIENTRY glDrawCommandsStatesNV (GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glDrawCommandsStatesAddressNV (const GLuint64 *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glCreateCommandListsNV (GLsizei n, GLuint *lists); +GLAPI void APIENTRY glDeleteCommandListsNV (GLsizei n, const GLuint *lists); +GLAPI GLboolean APIENTRY glIsCommandListNV (GLuint list); +GLAPI void APIENTRY glListDrawCommandsStatesClientNV (GLuint list, GLuint segment, const void **indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glCommandListSegmentsNV (GLuint list, GLuint segments); +GLAPI void APIENTRY glCompileCommandListNV (GLuint list); +GLAPI void APIENTRY glCallCommandListNV (GLuint list); +#endif +#endif /* GL_NV_command_list */ + +#ifndef GL_NV_compute_program5 +#define GL_NV_compute_program5 1 +#define GL_COMPUTE_PROGRAM_NV 0x90FB +#define GL_COMPUTE_PROGRAM_PARAMETER_BUFFER_NV 0x90FC +#endif /* GL_NV_compute_program5 */ + +#ifndef GL_NV_compute_shader_derivatives +#define GL_NV_compute_shader_derivatives 1 +#endif /* GL_NV_compute_shader_derivatives */ + +#ifndef GL_NV_conditional_render +#define GL_NV_conditional_render 1 +#define GL_QUERY_WAIT_NV 0x8E13 +#define GL_QUERY_NO_WAIT_NV 0x8E14 +#define GL_QUERY_BY_REGION_WAIT_NV 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16 +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERNVPROC) (GLuint id, GLenum mode); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginConditionalRenderNV (GLuint id, GLenum mode); +GLAPI void APIENTRY glEndConditionalRenderNV (void); +#endif +#endif /* GL_NV_conditional_render */ + +#ifndef GL_NV_conservative_raster +#define GL_NV_conservative_raster 1 +#define GL_CONSERVATIVE_RASTERIZATION_NV 0x9346 +#define GL_SUBPIXEL_PRECISION_BIAS_X_BITS_NV 0x9347 +#define GL_SUBPIXEL_PRECISION_BIAS_Y_BITS_NV 0x9348 +#define GL_MAX_SUBPIXEL_PRECISION_BIAS_BITS_NV 0x9349 +typedef void (APIENTRYP PFNGLSUBPIXELPRECISIONBIASNVPROC) (GLuint xbits, GLuint ybits); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSubpixelPrecisionBiasNV (GLuint xbits, GLuint ybits); +#endif +#endif /* GL_NV_conservative_raster */ + +#ifndef GL_NV_conservative_raster_dilate +#define GL_NV_conservative_raster_dilate 1 +#define GL_CONSERVATIVE_RASTER_DILATE_NV 0x9379 +#define GL_CONSERVATIVE_RASTER_DILATE_RANGE_NV 0x937A +#define GL_CONSERVATIVE_RASTER_DILATE_GRANULARITY_NV 0x937B +typedef void (APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERFNVPROC) (GLenum pname, GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConservativeRasterParameterfNV (GLenum pname, GLfloat value); +#endif +#endif /* GL_NV_conservative_raster_dilate */ + +#ifndef GL_NV_conservative_raster_pre_snap +#define GL_NV_conservative_raster_pre_snap 1 +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV 0x9550 +#endif /* GL_NV_conservative_raster_pre_snap */ + +#ifndef GL_NV_conservative_raster_pre_snap_triangles +#define GL_NV_conservative_raster_pre_snap_triangles 1 +#define GL_CONSERVATIVE_RASTER_MODE_NV 0x954D +#define GL_CONSERVATIVE_RASTER_MODE_POST_SNAP_NV 0x954E +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_TRIANGLES_NV 0x954F +typedef void (APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERINVPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConservativeRasterParameteriNV (GLenum pname, GLint param); +#endif +#endif /* GL_NV_conservative_raster_pre_snap_triangles */ + +#ifndef GL_NV_conservative_raster_underestimation +#define GL_NV_conservative_raster_underestimation 1 +#endif /* GL_NV_conservative_raster_underestimation */ + +#ifndef GL_NV_copy_depth_to_color +#define GL_NV_copy_depth_to_color 1 +#define GL_DEPTH_STENCIL_TO_RGBA_NV 0x886E +#define GL_DEPTH_STENCIL_TO_BGRA_NV 0x886F +#endif /* GL_NV_copy_depth_to_color */ + +#ifndef GL_NV_copy_image +#define GL_NV_copy_image 1 +typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATANVPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCopyImageSubDataNV (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_NV_copy_image */ + +#ifndef GL_NV_deep_texture3D +#define GL_NV_deep_texture3D 1 +#define GL_MAX_DEEP_3D_TEXTURE_WIDTH_HEIGHT_NV 0x90D0 +#define GL_MAX_DEEP_3D_TEXTURE_DEPTH_NV 0x90D1 +#endif /* GL_NV_deep_texture3D */ + +#ifndef GL_NV_depth_buffer_float +#define GL_NV_depth_buffer_float 1 +#define GL_DEPTH_COMPONENT32F_NV 0x8DAB +#define GL_DEPTH32F_STENCIL8_NV 0x8DAC +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV_NV 0x8DAD +#define GL_DEPTH_BUFFER_FLOAT_MODE_NV 0x8DAF +typedef void (APIENTRYP PFNGLDEPTHRANGEDNVPROC) (GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLCLEARDEPTHDNVPROC) (GLdouble depth); +typedef void (APIENTRYP PFNGLDEPTHBOUNDSDNVPROC) (GLdouble zmin, GLdouble zmax); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthRangedNV (GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glClearDepthdNV (GLdouble depth); +GLAPI void APIENTRY glDepthBoundsdNV (GLdouble zmin, GLdouble zmax); +#endif +#endif /* GL_NV_depth_buffer_float */ + +#ifndef GL_NV_depth_clamp +#define GL_NV_depth_clamp 1 +#define GL_DEPTH_CLAMP_NV 0x864F +#endif /* GL_NV_depth_clamp */ + +#ifndef GL_NV_draw_texture +#define GL_NV_draw_texture 1 +typedef void (APIENTRYP PFNGLDRAWTEXTURENVPROC) (GLuint texture, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawTextureNV (GLuint texture, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +#endif +#endif /* GL_NV_draw_texture */ + +#ifndef GL_NV_draw_vulkan_image +#define GL_NV_draw_vulkan_image 1 +typedef void (APIENTRY *GLVULKANPROCNV)(void); +typedef void (APIENTRYP PFNGLDRAWVKIMAGENVPROC) (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +typedef GLVULKANPROCNV (APIENTRYP PFNGLGETVKPROCADDRNVPROC) (const GLchar *name); +typedef void (APIENTRYP PFNGLWAITVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (APIENTRYP PFNGLSIGNALVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (APIENTRYP PFNGLSIGNALVKFENCENVPROC) (GLuint64 vkFence); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawVkImageNV (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +GLAPI GLVULKANPROCNV APIENTRY glGetVkProcAddrNV (const GLchar *name); +GLAPI void APIENTRY glWaitVkSemaphoreNV (GLuint64 vkSemaphore); +GLAPI void APIENTRY glSignalVkSemaphoreNV (GLuint64 vkSemaphore); +GLAPI void APIENTRY glSignalVkFenceNV (GLuint64 vkFence); +#endif +#endif /* GL_NV_draw_vulkan_image */ + +#ifndef GL_NV_evaluators +#define GL_NV_evaluators 1 +#define GL_EVAL_2D_NV 0x86C0 +#define GL_EVAL_TRIANGULAR_2D_NV 0x86C1 +#define GL_MAP_TESSELLATION_NV 0x86C2 +#define GL_MAP_ATTRIB_U_ORDER_NV 0x86C3 +#define GL_MAP_ATTRIB_V_ORDER_NV 0x86C4 +#define GL_EVAL_FRACTIONAL_TESSELLATION_NV 0x86C5 +#define GL_EVAL_VERTEX_ATTRIB0_NV 0x86C6 +#define GL_EVAL_VERTEX_ATTRIB1_NV 0x86C7 +#define GL_EVAL_VERTEX_ATTRIB2_NV 0x86C8 +#define GL_EVAL_VERTEX_ATTRIB3_NV 0x86C9 +#define GL_EVAL_VERTEX_ATTRIB4_NV 0x86CA +#define GL_EVAL_VERTEX_ATTRIB5_NV 0x86CB +#define GL_EVAL_VERTEX_ATTRIB6_NV 0x86CC +#define GL_EVAL_VERTEX_ATTRIB7_NV 0x86CD +#define GL_EVAL_VERTEX_ATTRIB8_NV 0x86CE +#define GL_EVAL_VERTEX_ATTRIB9_NV 0x86CF +#define GL_EVAL_VERTEX_ATTRIB10_NV 0x86D0 +#define GL_EVAL_VERTEX_ATTRIB11_NV 0x86D1 +#define GL_EVAL_VERTEX_ATTRIB12_NV 0x86D2 +#define GL_EVAL_VERTEX_ATTRIB13_NV 0x86D3 +#define GL_EVAL_VERTEX_ATTRIB14_NV 0x86D4 +#define GL_EVAL_VERTEX_ATTRIB15_NV 0x86D5 +#define GL_MAX_MAP_TESSELLATION_NV 0x86D6 +#define GL_MAX_RATIONAL_EVAL_ORDER_NV 0x86D7 +typedef void (APIENTRYP PFNGLMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const void *points); +typedef void (APIENTRYP PFNGLMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, void *points); +typedef void (APIENTRYP PFNGLGETMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERIVNVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLEVALMAPSNVPROC) (GLenum target, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMapControlPointsNV (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const void *points); +GLAPI void APIENTRY glMapParameterivNV (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMapParameterfvNV (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetMapControlPointsNV (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, void *points); +GLAPI void APIENTRY glGetMapParameterivNV (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMapParameterfvNV (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMapAttribParameterivNV (GLenum target, GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMapAttribParameterfvNV (GLenum target, GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glEvalMapsNV (GLenum target, GLenum mode); +#endif +#endif /* GL_NV_evaluators */ + +#ifndef GL_NV_explicit_multisample +#define GL_NV_explicit_multisample 1 +#define GL_SAMPLE_POSITION_NV 0x8E50 +#define GL_SAMPLE_MASK_NV 0x8E51 +#define GL_SAMPLE_MASK_VALUE_NV 0x8E52 +#define GL_TEXTURE_BINDING_RENDERBUFFER_NV 0x8E53 +#define GL_TEXTURE_RENDERBUFFER_DATA_STORE_BINDING_NV 0x8E54 +#define GL_TEXTURE_RENDERBUFFER_NV 0x8E55 +#define GL_SAMPLER_RENDERBUFFER_NV 0x8E56 +#define GL_INT_SAMPLER_RENDERBUFFER_NV 0x8E57 +#define GL_UNSIGNED_INT_SAMPLER_RENDERBUFFER_NV 0x8E58 +#define GL_MAX_SAMPLE_MASK_WORDS_NV 0x8E59 +typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVNVPROC) (GLenum pname, GLuint index, GLfloat *val); +typedef void (APIENTRYP PFNGLSAMPLEMASKINDEXEDNVPROC) (GLuint index, GLbitfield mask); +typedef void (APIENTRYP PFNGLTEXRENDERBUFFERNVPROC) (GLenum target, GLuint renderbuffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetMultisamplefvNV (GLenum pname, GLuint index, GLfloat *val); +GLAPI void APIENTRY glSampleMaskIndexedNV (GLuint index, GLbitfield mask); +GLAPI void APIENTRY glTexRenderbufferNV (GLenum target, GLuint renderbuffer); +#endif +#endif /* GL_NV_explicit_multisample */ + +#ifndef GL_NV_fence +#define GL_NV_fence 1 +#define GL_ALL_COMPLETED_NV 0x84F2 +#define GL_FENCE_STATUS_NV 0x84F3 +#define GL_FENCE_CONDITION_NV 0x84F4 +typedef void (APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences); +typedef void (APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences); +typedef GLboolean (APIENTRYP PFNGLISFENCENVPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences); +GLAPI void APIENTRY glGenFencesNV (GLsizei n, GLuint *fences); +GLAPI GLboolean APIENTRY glIsFenceNV (GLuint fence); +GLAPI GLboolean APIENTRY glTestFenceNV (GLuint fence); +GLAPI void APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params); +GLAPI void APIENTRY glFinishFenceNV (GLuint fence); +GLAPI void APIENTRY glSetFenceNV (GLuint fence, GLenum condition); +#endif +#endif /* GL_NV_fence */ + +#ifndef GL_NV_fill_rectangle +#define GL_NV_fill_rectangle 1 +#define GL_FILL_RECTANGLE_NV 0x933C +#endif /* GL_NV_fill_rectangle */ + +#ifndef GL_NV_float_buffer +#define GL_NV_float_buffer 1 +#define GL_FLOAT_R_NV 0x8880 +#define GL_FLOAT_RG_NV 0x8881 +#define GL_FLOAT_RGB_NV 0x8882 +#define GL_FLOAT_RGBA_NV 0x8883 +#define GL_FLOAT_R16_NV 0x8884 +#define GL_FLOAT_R32_NV 0x8885 +#define GL_FLOAT_RG16_NV 0x8886 +#define GL_FLOAT_RG32_NV 0x8887 +#define GL_FLOAT_RGB16_NV 0x8888 +#define GL_FLOAT_RGB32_NV 0x8889 +#define GL_FLOAT_RGBA16_NV 0x888A +#define GL_FLOAT_RGBA32_NV 0x888B +#define GL_TEXTURE_FLOAT_COMPONENTS_NV 0x888C +#define GL_FLOAT_CLEAR_COLOR_VALUE_NV 0x888D +#define GL_FLOAT_RGBA_MODE_NV 0x888E +#endif /* GL_NV_float_buffer */ + +#ifndef GL_NV_fog_distance +#define GL_NV_fog_distance 1 +#define GL_FOG_DISTANCE_MODE_NV 0x855A +#define GL_EYE_RADIAL_NV 0x855B +#define GL_EYE_PLANE_ABSOLUTE_NV 0x855C +#endif /* GL_NV_fog_distance */ + +#ifndef GL_NV_fragment_coverage_to_color +#define GL_NV_fragment_coverage_to_color 1 +#define GL_FRAGMENT_COVERAGE_TO_COLOR_NV 0x92DD +#define GL_FRAGMENT_COVERAGE_COLOR_NV 0x92DE +typedef void (APIENTRYP PFNGLFRAGMENTCOVERAGECOLORNVPROC) (GLuint color); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFragmentCoverageColorNV (GLuint color); +#endif +#endif /* GL_NV_fragment_coverage_to_color */ + +#ifndef GL_NV_fragment_program +#define GL_NV_fragment_program 1 +#define GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV 0x8868 +#define GL_FRAGMENT_PROGRAM_NV 0x8870 +#define GL_MAX_TEXTURE_COORDS_NV 0x8871 +#define GL_MAX_TEXTURE_IMAGE_UNITS_NV 0x8872 +#define GL_FRAGMENT_PROGRAM_BINDING_NV 0x8873 +#define GL_PROGRAM_ERROR_STRING_NV 0x8874 +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v); +typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERFVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERDVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramNamedParameter4fNV (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramNamedParameter4fvNV (GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v); +GLAPI void APIENTRY glProgramNamedParameter4dNV (GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramNamedParameter4dvNV (GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v); +GLAPI void APIENTRY glGetProgramNamedParameterfvNV (GLuint id, GLsizei len, const GLubyte *name, GLfloat *params); +GLAPI void APIENTRY glGetProgramNamedParameterdvNV (GLuint id, GLsizei len, const GLubyte *name, GLdouble *params); +#endif +#endif /* GL_NV_fragment_program */ + +#ifndef GL_NV_fragment_program2 +#define GL_NV_fragment_program2 1 +#define GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 +#define GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 +#define GL_MAX_PROGRAM_IF_DEPTH_NV 0x88F6 +#define GL_MAX_PROGRAM_LOOP_DEPTH_NV 0x88F7 +#define GL_MAX_PROGRAM_LOOP_COUNT_NV 0x88F8 +#endif /* GL_NV_fragment_program2 */ + +#ifndef GL_NV_fragment_program4 +#define GL_NV_fragment_program4 1 +#endif /* GL_NV_fragment_program4 */ + +#ifndef GL_NV_fragment_program_option +#define GL_NV_fragment_program_option 1 +#endif /* GL_NV_fragment_program_option */ + +#ifndef GL_NV_fragment_shader_barycentric +#define GL_NV_fragment_shader_barycentric 1 +#endif /* GL_NV_fragment_shader_barycentric */ + +#ifndef GL_NV_fragment_shader_interlock +#define GL_NV_fragment_shader_interlock 1 +#endif /* GL_NV_fragment_shader_interlock */ + +#ifndef GL_NV_framebuffer_mixed_samples +#define GL_NV_framebuffer_mixed_samples 1 +#define GL_COVERAGE_MODULATION_TABLE_NV 0x9331 +#define GL_COLOR_SAMPLES_NV 0x8E20 +#define GL_DEPTH_SAMPLES_NV 0x932D +#define GL_STENCIL_SAMPLES_NV 0x932E +#define GL_MIXED_DEPTH_SAMPLES_SUPPORTED_NV 0x932F +#define GL_MIXED_STENCIL_SAMPLES_SUPPORTED_NV 0x9330 +#define GL_COVERAGE_MODULATION_NV 0x9332 +#define GL_COVERAGE_MODULATION_TABLE_SIZE_NV 0x9333 +typedef void (APIENTRYP PFNGLCOVERAGEMODULATIONTABLENVPROC) (GLsizei n, const GLfloat *v); +typedef void (APIENTRYP PFNGLGETCOVERAGEMODULATIONTABLENVPROC) (GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLCOVERAGEMODULATIONNVPROC) (GLenum components); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCoverageModulationTableNV (GLsizei n, const GLfloat *v); +GLAPI void APIENTRY glGetCoverageModulationTableNV (GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glCoverageModulationNV (GLenum components); +#endif +#endif /* GL_NV_framebuffer_mixed_samples */ + +#ifndef GL_NV_framebuffer_multisample_coverage +#define GL_NV_framebuffer_multisample_coverage 1 +#define GL_RENDERBUFFER_COVERAGE_SAMPLES_NV 0x8CAB +#define GL_RENDERBUFFER_COLOR_SAMPLES_NV 0x8E10 +#define GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV 0x8E11 +#define GL_MULTISAMPLE_COVERAGE_MODES_NV 0x8E12 +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_NV_framebuffer_multisample_coverage */ + +#ifndef GL_NV_geometry_program4 +#define GL_NV_geometry_program4 1 +#define GL_GEOMETRY_PROGRAM_NV 0x8C26 +#define GL_MAX_PROGRAM_OUTPUT_VERTICES_NV 0x8C27 +#define GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV 0x8C28 +typedef void (APIENTRYP PFNGLPROGRAMVERTEXLIMITNVPROC) (GLenum target, GLint limit); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREFACEEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramVertexLimitNV (GLenum target, GLint limit); +GLAPI void APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTextureFaceEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#endif +#endif /* GL_NV_geometry_program4 */ + +#ifndef GL_NV_geometry_shader4 +#define GL_NV_geometry_shader4 1 +#endif /* GL_NV_geometry_shader4 */ + +#ifndef GL_NV_geometry_shader_passthrough +#define GL_NV_geometry_shader_passthrough 1 +#endif /* GL_NV_geometry_shader_passthrough */ + +#ifndef GL_NV_gpu_multicast +#define GL_NV_gpu_multicast 1 +#define GL_PER_GPU_STORAGE_BIT_NV 0x0800 +#define GL_MULTICAST_GPUS_NV 0x92BA +#define GL_RENDER_GPU_MASK_NV 0x9558 +#define GL_PER_GPU_STORAGE_NV 0x9548 +#define GL_MULTICAST_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9549 +typedef void (APIENTRYP PFNGLRENDERGPUMASKNVPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLMULTICASTBUFFERSUBDATANVPROC) (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLMULTICASTCOPYBUFFERSUBDATANVPROC) (GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLMULTICASTCOPYIMAGESUBDATANVPROC) (GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +typedef void (APIENTRYP PFNGLMULTICASTBLITFRAMEBUFFERNVPROC) (GLuint srcGPU, GLuint dstGPU, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef void (APIENTRYP PFNGLMULTICASTFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint gpu, GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTICASTBARRIERNVPROC) (void); +typedef void (APIENTRYP PFNGLMULTICASTWAITSYNCNVPROC) (GLuint signalGPU, GLbitfield waitGPUMask); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTIVNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTUIVNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTI64VNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTUI64VNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLuint64 *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderGPUMaskNV (GLbitfield mask); +GLAPI void APIENTRY glMulticastBufferSubDataNV (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glMulticastCopyBufferSubDataNV (GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glMulticastCopyImageSubDataNV (GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +GLAPI void APIENTRY glMulticastBlitFramebufferNV (GLuint srcGPU, GLuint dstGPU, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI void APIENTRY glMulticastFramebufferSampleLocationsfvNV (GLuint gpu, GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glMulticastBarrierNV (void); +GLAPI void APIENTRY glMulticastWaitSyncNV (GLuint signalGPU, GLbitfield waitGPUMask); +GLAPI void APIENTRY glMulticastGetQueryObjectivNV (GLuint gpu, GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glMulticastGetQueryObjectuivNV (GLuint gpu, GLuint id, GLenum pname, GLuint *params); +GLAPI void APIENTRY glMulticastGetQueryObjecti64vNV (GLuint gpu, GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glMulticastGetQueryObjectui64vNV (GLuint gpu, GLuint id, GLenum pname, GLuint64 *params); +#endif +#endif /* GL_NV_gpu_multicast */ + +#ifndef GL_NV_gpu_program4 +#define GL_NV_gpu_program4 1 +#define GL_MIN_PROGRAM_TEXEL_OFFSET_NV 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET_NV 0x8905 +#define GL_PROGRAM_ATTRIB_COMPONENTS_NV 0x8906 +#define GL_PROGRAM_RESULT_COMPONENTS_NV 0x8907 +#define GL_MAX_PROGRAM_ATTRIB_COMPONENTS_NV 0x8908 +#define GL_MAX_PROGRAM_RESULT_COMPONENTS_NV 0x8909 +#define GL_MAX_PROGRAM_GENERIC_ATTRIBS_NV 0x8DA5 +#define GL_MAX_PROGRAM_GENERIC_RESULTS_NV 0x8DA6 +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERIIVNVPROC) (GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERIUIVNVPROC) (GLenum target, GLuint index, GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERIIVNVPROC) (GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERIUIVNVPROC) (GLenum target, GLuint index, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramLocalParameterI4iNV (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glProgramLocalParameterI4ivNV (GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glProgramLocalParametersI4ivNV (GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramLocalParameterI4uiNV (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glProgramLocalParameterI4uivNV (GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glProgramLocalParametersI4uivNV (GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glProgramEnvParameterI4iNV (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glProgramEnvParameterI4ivNV (GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glProgramEnvParametersI4ivNV (GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramEnvParameterI4uiNV (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glProgramEnvParameterI4uivNV (GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glProgramEnvParametersI4uivNV (GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetProgramLocalParameterIivNV (GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetProgramLocalParameterIuivNV (GLenum target, GLuint index, GLuint *params); +GLAPI void APIENTRY glGetProgramEnvParameterIivNV (GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetProgramEnvParameterIuivNV (GLenum target, GLuint index, GLuint *params); +#endif +#endif /* GL_NV_gpu_program4 */ + +#ifndef GL_NV_gpu_program5 +#define GL_NV_gpu_program5 1 +#define GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV 0x8E5A +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5C +#define GL_FRAGMENT_PROGRAM_INTERPOLATION_OFFSET_BITS_NV 0x8E5D +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5F +#define GL_MAX_PROGRAM_SUBROUTINE_PARAMETERS_NV 0x8F44 +#define GL_MAX_PROGRAM_SUBROUTINE_NUM_NV 0x8F45 +typedef void (APIENTRYP PFNGLPROGRAMSUBROUTINEPARAMETERSUIVNVPROC) (GLenum target, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSUBROUTINEPARAMETERUIVNVPROC) (GLenum target, GLuint index, GLuint *param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramSubroutineParametersuivNV (GLenum target, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetProgramSubroutineParameteruivNV (GLenum target, GLuint index, GLuint *param); +#endif +#endif /* GL_NV_gpu_program5 */ + +#ifndef GL_NV_gpu_program5_mem_extended +#define GL_NV_gpu_program5_mem_extended 1 +#endif /* GL_NV_gpu_program5_mem_extended */ + +#ifndef GL_NV_gpu_shader5 +#define GL_NV_gpu_shader5 1 +#endif /* GL_NV_gpu_shader5 */ + +#ifndef GL_NV_half_float +#define GL_NV_half_float 1 +typedef unsigned short GLhalfNV; +#define GL_HALF_FLOAT_NV 0x140B +typedef void (APIENTRYP PFNGLVERTEX2HNVPROC) (GLhalfNV x, GLhalfNV y); +typedef void (APIENTRYP PFNGLVERTEX2HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEX3HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z); +typedef void (APIENTRYP PFNGLVERTEX3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEX4HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +typedef void (APIENTRYP PFNGLVERTEX4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLNORMAL3HNVPROC) (GLhalfNV nx, GLhalfNV ny, GLhalfNV nz); +typedef void (APIENTRYP PFNGLNORMAL3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +typedef void (APIENTRYP PFNGLCOLOR3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLCOLOR4HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue, GLhalfNV alpha); +typedef void (APIENTRYP PFNGLCOLOR4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD1HNVPROC) (GLhalfNV s); +typedef void (APIENTRYP PFNGLTEXCOORD1HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD2HNVPROC) (GLhalfNV s, GLhalfNV t); +typedef void (APIENTRYP PFNGLTEXCOORD2HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD3HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r); +typedef void (APIENTRYP PFNGLTEXCOORD3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD4HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +typedef void (APIENTRYP PFNGLTEXCOORD4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1HNVPROC) (GLenum target, GLhalfNV s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLFOGCOORDHNVPROC) (GLhalfNV fog); +typedef void (APIENTRYP PFNGLFOGCOORDHVNVPROC) (const GLhalfNV *fog); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTHNVPROC) (GLhalfNV weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTHVNVPROC) (const GLhalfNV *weight); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1HNVPROC) (GLuint index, GLhalfNV x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertex2hNV (GLhalfNV x, GLhalfNV y); +GLAPI void APIENTRY glVertex2hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertex3hNV (GLhalfNV x, GLhalfNV y, GLhalfNV z); +GLAPI void APIENTRY glVertex3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertex4hNV (GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +GLAPI void APIENTRY glVertex4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glNormal3hNV (GLhalfNV nx, GLhalfNV ny, GLhalfNV nz); +GLAPI void APIENTRY glNormal3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glColor3hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +GLAPI void APIENTRY glColor3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glColor4hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue, GLhalfNV alpha); +GLAPI void APIENTRY glColor4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord1hNV (GLhalfNV s); +GLAPI void APIENTRY glTexCoord1hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord2hNV (GLhalfNV s, GLhalfNV t); +GLAPI void APIENTRY glTexCoord2hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord3hNV (GLhalfNV s, GLhalfNV t, GLhalfNV r); +GLAPI void APIENTRY glTexCoord3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord4hNV (GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +GLAPI void APIENTRY glTexCoord4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord1hNV (GLenum target, GLhalfNV s); +GLAPI void APIENTRY glMultiTexCoord1hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord2hNV (GLenum target, GLhalfNV s, GLhalfNV t); +GLAPI void APIENTRY glMultiTexCoord2hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord3hNV (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r); +GLAPI void APIENTRY glMultiTexCoord3hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord4hNV (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +GLAPI void APIENTRY glMultiTexCoord4hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glFogCoordhNV (GLhalfNV fog); +GLAPI void APIENTRY glFogCoordhvNV (const GLhalfNV *fog); +GLAPI void APIENTRY glSecondaryColor3hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +GLAPI void APIENTRY glSecondaryColor3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertexWeighthNV (GLhalfNV weight); +GLAPI void APIENTRY glVertexWeighthvNV (const GLhalfNV *weight); +GLAPI void APIENTRY glVertexAttrib1hNV (GLuint index, GLhalfNV x); +GLAPI void APIENTRY glVertexAttrib1hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib2hNV (GLuint index, GLhalfNV x, GLhalfNV y); +GLAPI void APIENTRY glVertexAttrib2hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib3hNV (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z); +GLAPI void APIENTRY glVertexAttrib3hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib4hNV (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +GLAPI void APIENTRY glVertexAttrib4hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs1hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs2hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs3hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs4hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +#endif +#endif /* GL_NV_half_float */ + +#ifndef GL_NV_internalformat_sample_query +#define GL_NV_internalformat_sample_query 1 +#define GL_MULTISAMPLES_NV 0x9371 +#define GL_SUPERSAMPLE_SCALE_X_NV 0x9372 +#define GL_SUPERSAMPLE_SCALE_Y_NV 0x9373 +#define GL_CONFORMANT_NV 0x9374 +typedef void (APIENTRYP PFNGLGETINTERNALFORMATSAMPLEIVNVPROC) (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetInternalformatSampleivNV (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#endif +#endif /* GL_NV_internalformat_sample_query */ + +#ifndef GL_NV_light_max_exponent +#define GL_NV_light_max_exponent 1 +#define GL_MAX_SHININESS_NV 0x8504 +#define GL_MAX_SPOT_EXPONENT_NV 0x8505 +#endif /* GL_NV_light_max_exponent */ + +#ifndef GL_NV_memory_attachment +#define GL_NV_memory_attachment 1 +#define GL_ATTACHED_MEMORY_OBJECT_NV 0x95A4 +#define GL_ATTACHED_MEMORY_OFFSET_NV 0x95A5 +#define GL_MEMORY_ATTACHABLE_ALIGNMENT_NV 0x95A6 +#define GL_MEMORY_ATTACHABLE_SIZE_NV 0x95A7 +#define GL_MEMORY_ATTACHABLE_NV 0x95A8 +#define GL_DETACHED_MEMORY_INCARNATION_NV 0x95A9 +#define GL_DETACHED_TEXTURES_NV 0x95AA +#define GL_DETACHED_BUFFERS_NV 0x95AB +#define GL_MAX_DETACHED_TEXTURES_NV 0x95AC +#define GL_MAX_DETACHED_BUFFERS_NV 0x95AD +typedef void (APIENTRYP PFNGLGETMEMORYOBJECTDETACHEDRESOURCESUIVNVPROC) (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +typedef void (APIENTRYP PFNGLRESETMEMORYOBJECTPARAMETERNVPROC) (GLuint memory, GLenum pname); +typedef void (APIENTRYP PFNGLTEXATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLBUFFERATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTUREATTACHMEMORYNVPROC) (GLuint texture, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLNAMEDBUFFERATTACHMEMORYNVPROC) (GLuint buffer, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetMemoryObjectDetachedResourcesuivNV (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +GLAPI void APIENTRY glResetMemoryObjectParameterNV (GLuint memory, GLenum pname); +GLAPI void APIENTRY glTexAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glBufferAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureAttachMemoryNV (GLuint texture, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glNamedBufferAttachMemoryNV (GLuint buffer, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_NV_memory_attachment */ + +#ifndef GL_NV_memory_object_sparse +#define GL_NV_memory_object_sparse 1 +typedef void (APIENTRYP PFNGLBUFFERPAGECOMMITMENTMEMNVPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (APIENTRYP PFNGLTEXPAGECOMMITMENTMEMNVPROC) (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTMEMNVPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (APIENTRYP PFNGLTEXTUREPAGECOMMITMENTMEMNVPROC) (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferPageCommitmentMemNV (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GLAPI void APIENTRY glTexPageCommitmentMemNV (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentMemNV (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GLAPI void APIENTRY glTexturePageCommitmentMemNV (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#endif +#endif /* GL_NV_memory_object_sparse */ + +#ifndef GL_NV_mesh_shader +#define GL_NV_mesh_shader 1 +#define GL_MESH_SHADER_NV 0x9559 +#define GL_TASK_SHADER_NV 0x955A +#define GL_MAX_MESH_UNIFORM_BLOCKS_NV 0x8E60 +#define GL_MAX_MESH_TEXTURE_IMAGE_UNITS_NV 0x8E61 +#define GL_MAX_MESH_IMAGE_UNIFORMS_NV 0x8E62 +#define GL_MAX_MESH_UNIFORM_COMPONENTS_NV 0x8E63 +#define GL_MAX_MESH_ATOMIC_COUNTER_BUFFERS_NV 0x8E64 +#define GL_MAX_MESH_ATOMIC_COUNTERS_NV 0x8E65 +#define GL_MAX_MESH_SHADER_STORAGE_BLOCKS_NV 0x8E66 +#define GL_MAX_COMBINED_MESH_UNIFORM_COMPONENTS_NV 0x8E67 +#define GL_MAX_TASK_UNIFORM_BLOCKS_NV 0x8E68 +#define GL_MAX_TASK_TEXTURE_IMAGE_UNITS_NV 0x8E69 +#define GL_MAX_TASK_IMAGE_UNIFORMS_NV 0x8E6A +#define GL_MAX_TASK_UNIFORM_COMPONENTS_NV 0x8E6B +#define GL_MAX_TASK_ATOMIC_COUNTER_BUFFERS_NV 0x8E6C +#define GL_MAX_TASK_ATOMIC_COUNTERS_NV 0x8E6D +#define GL_MAX_TASK_SHADER_STORAGE_BLOCKS_NV 0x8E6E +#define GL_MAX_COMBINED_TASK_UNIFORM_COMPONENTS_NV 0x8E6F +#define GL_MAX_MESH_WORK_GROUP_INVOCATIONS_NV 0x95A2 +#define GL_MAX_TASK_WORK_GROUP_INVOCATIONS_NV 0x95A3 +#define GL_MAX_MESH_TOTAL_MEMORY_SIZE_NV 0x9536 +#define GL_MAX_TASK_TOTAL_MEMORY_SIZE_NV 0x9537 +#define GL_MAX_MESH_OUTPUT_VERTICES_NV 0x9538 +#define GL_MAX_MESH_OUTPUT_PRIMITIVES_NV 0x9539 +#define GL_MAX_TASK_OUTPUT_COUNT_NV 0x953A +#define GL_MAX_DRAW_MESH_TASKS_COUNT_NV 0x953D +#define GL_MAX_MESH_VIEWS_NV 0x9557 +#define GL_MESH_OUTPUT_PER_VERTEX_GRANULARITY_NV 0x92DF +#define GL_MESH_OUTPUT_PER_PRIMITIVE_GRANULARITY_NV 0x9543 +#define GL_MAX_MESH_WORK_GROUP_SIZE_NV 0x953B +#define GL_MAX_TASK_WORK_GROUP_SIZE_NV 0x953C +#define GL_MESH_WORK_GROUP_SIZE_NV 0x953E +#define GL_TASK_WORK_GROUP_SIZE_NV 0x953F +#define GL_MESH_VERTICES_OUT_NV 0x9579 +#define GL_MESH_PRIMITIVES_OUT_NV 0x957A +#define GL_MESH_OUTPUT_TYPE_NV 0x957B +#define GL_UNIFORM_BLOCK_REFERENCED_BY_MESH_SHADER_NV 0x959C +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TASK_SHADER_NV 0x959D +#define GL_REFERENCED_BY_MESH_SHADER_NV 0x95A0 +#define GL_REFERENCED_BY_TASK_SHADER_NV 0x95A1 +#define GL_MESH_SHADER_BIT_NV 0x00000040 +#define GL_TASK_SHADER_BIT_NV 0x00000080 +#define GL_MESH_SUBROUTINE_NV 0x957C +#define GL_TASK_SUBROUTINE_NV 0x957D +#define GL_MESH_SUBROUTINE_UNIFORM_NV 0x957E +#define GL_TASK_SUBROUTINE_UNIFORM_NV 0x957F +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_MESH_SHADER_NV 0x959E +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TASK_SHADER_NV 0x959F +typedef void (APIENTRYP PFNGLDRAWMESHTASKSNVPROC) (GLuint first, GLuint count); +typedef void (APIENTRYP PFNGLDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect); +typedef void (APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect, GLsizei drawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTCOUNTNVPROC) (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawMeshTasksNV (GLuint first, GLuint count); +GLAPI void APIENTRY glDrawMeshTasksIndirectNV (GLintptr indirect); +GLAPI void APIENTRY glMultiDrawMeshTasksIndirectNV (GLintptr indirect, GLsizei drawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawMeshTasksIndirectCountNV (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_NV_mesh_shader */ + +#ifndef GL_NV_multisample_coverage +#define GL_NV_multisample_coverage 1 +#endif /* GL_NV_multisample_coverage */ + +#ifndef GL_NV_multisample_filter_hint +#define GL_NV_multisample_filter_hint 1 +#define GL_MULTISAMPLE_FILTER_HINT_NV 0x8534 +#endif /* GL_NV_multisample_filter_hint */ + +#ifndef GL_NV_occlusion_query +#define GL_NV_occlusion_query 1 +#define GL_PIXEL_COUNTER_BITS_NV 0x8864 +#define GL_CURRENT_OCCLUSION_QUERY_ID_NV 0x8865 +#define GL_PIXEL_COUNT_NV 0x8866 +#define GL_PIXEL_COUNT_AVAILABLE_NV 0x8867 +typedef void (APIENTRYP PFNGLGENOCCLUSIONQUERIESNVPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEOCCLUSIONQUERIESNVPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISOCCLUSIONQUERYNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINOCCLUSIONQUERYNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLENDOCCLUSIONQUERYNVPROC) (void); +typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYIVNVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYUIVNVPROC) (GLuint id, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenOcclusionQueriesNV (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteOcclusionQueriesNV (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsOcclusionQueryNV (GLuint id); +GLAPI void APIENTRY glBeginOcclusionQueryNV (GLuint id); +GLAPI void APIENTRY glEndOcclusionQueryNV (void); +GLAPI void APIENTRY glGetOcclusionQueryivNV (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetOcclusionQueryuivNV (GLuint id, GLenum pname, GLuint *params); +#endif +#endif /* GL_NV_occlusion_query */ + +#ifndef GL_NV_packed_depth_stencil +#define GL_NV_packed_depth_stencil 1 +#define GL_DEPTH_STENCIL_NV 0x84F9 +#define GL_UNSIGNED_INT_24_8_NV 0x84FA +#endif /* GL_NV_packed_depth_stencil */ + +#ifndef GL_NV_parameter_buffer_object +#define GL_NV_parameter_buffer_object 1 +#define GL_MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV 0x8DA0 +#define GL_MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV 0x8DA1 +#define GL_VERTEX_PROGRAM_PARAMETER_BUFFER_NV 0x8DA2 +#define GL_GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV 0x8DA3 +#define GL_FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV 0x8DA4 +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSFVNVPROC) (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSIIVNVPROC) (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSIUIVNVPROC) (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramBufferParametersfvNV (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glProgramBufferParametersIivNV (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramBufferParametersIuivNV (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLuint *params); +#endif +#endif /* GL_NV_parameter_buffer_object */ + +#ifndef GL_NV_parameter_buffer_object2 +#define GL_NV_parameter_buffer_object2 1 +#endif /* GL_NV_parameter_buffer_object2 */ + +#ifndef GL_NV_path_rendering +#define GL_NV_path_rendering 1 +#define GL_PATH_FORMAT_SVG_NV 0x9070 +#define GL_PATH_FORMAT_PS_NV 0x9071 +#define GL_STANDARD_FONT_NAME_NV 0x9072 +#define GL_SYSTEM_FONT_NAME_NV 0x9073 +#define GL_FILE_NAME_NV 0x9074 +#define GL_PATH_STROKE_WIDTH_NV 0x9075 +#define GL_PATH_END_CAPS_NV 0x9076 +#define GL_PATH_INITIAL_END_CAP_NV 0x9077 +#define GL_PATH_TERMINAL_END_CAP_NV 0x9078 +#define GL_PATH_JOIN_STYLE_NV 0x9079 +#define GL_PATH_MITER_LIMIT_NV 0x907A +#define GL_PATH_DASH_CAPS_NV 0x907B +#define GL_PATH_INITIAL_DASH_CAP_NV 0x907C +#define GL_PATH_TERMINAL_DASH_CAP_NV 0x907D +#define GL_PATH_DASH_OFFSET_NV 0x907E +#define GL_PATH_CLIENT_LENGTH_NV 0x907F +#define GL_PATH_FILL_MODE_NV 0x9080 +#define GL_PATH_FILL_MASK_NV 0x9081 +#define GL_PATH_FILL_COVER_MODE_NV 0x9082 +#define GL_PATH_STROKE_COVER_MODE_NV 0x9083 +#define GL_PATH_STROKE_MASK_NV 0x9084 +#define GL_COUNT_UP_NV 0x9088 +#define GL_COUNT_DOWN_NV 0x9089 +#define GL_PATH_OBJECT_BOUNDING_BOX_NV 0x908A +#define GL_CONVEX_HULL_NV 0x908B +#define GL_BOUNDING_BOX_NV 0x908D +#define GL_TRANSLATE_X_NV 0x908E +#define GL_TRANSLATE_Y_NV 0x908F +#define GL_TRANSLATE_2D_NV 0x9090 +#define GL_TRANSLATE_3D_NV 0x9091 +#define GL_AFFINE_2D_NV 0x9092 +#define GL_AFFINE_3D_NV 0x9094 +#define GL_TRANSPOSE_AFFINE_2D_NV 0x9096 +#define GL_TRANSPOSE_AFFINE_3D_NV 0x9098 +#define GL_UTF8_NV 0x909A +#define GL_UTF16_NV 0x909B +#define GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV 0x909C +#define GL_PATH_COMMAND_COUNT_NV 0x909D +#define GL_PATH_COORD_COUNT_NV 0x909E +#define GL_PATH_DASH_ARRAY_COUNT_NV 0x909F +#define GL_PATH_COMPUTED_LENGTH_NV 0x90A0 +#define GL_PATH_FILL_BOUNDING_BOX_NV 0x90A1 +#define GL_PATH_STROKE_BOUNDING_BOX_NV 0x90A2 +#define GL_SQUARE_NV 0x90A3 +#define GL_ROUND_NV 0x90A4 +#define GL_TRIANGULAR_NV 0x90A5 +#define GL_BEVEL_NV 0x90A6 +#define GL_MITER_REVERT_NV 0x90A7 +#define GL_MITER_TRUNCATE_NV 0x90A8 +#define GL_SKIP_MISSING_GLYPH_NV 0x90A9 +#define GL_USE_MISSING_GLYPH_NV 0x90AA +#define GL_PATH_ERROR_POSITION_NV 0x90AB +#define GL_ACCUM_ADJACENT_PAIRS_NV 0x90AD +#define GL_ADJACENT_PAIRS_NV 0x90AE +#define GL_FIRST_TO_REST_NV 0x90AF +#define GL_PATH_GEN_MODE_NV 0x90B0 +#define GL_PATH_GEN_COEFF_NV 0x90B1 +#define GL_PATH_GEN_COMPONENTS_NV 0x90B3 +#define GL_PATH_STENCIL_FUNC_NV 0x90B7 +#define GL_PATH_STENCIL_REF_NV 0x90B8 +#define GL_PATH_STENCIL_VALUE_MASK_NV 0x90B9 +#define GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV 0x90BD +#define GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV 0x90BE +#define GL_PATH_COVER_DEPTH_FUNC_NV 0x90BF +#define GL_PATH_DASH_OFFSET_RESET_NV 0x90B4 +#define GL_MOVE_TO_RESETS_NV 0x90B5 +#define GL_MOVE_TO_CONTINUES_NV 0x90B6 +#define GL_CLOSE_PATH_NV 0x00 +#define GL_MOVE_TO_NV 0x02 +#define GL_RELATIVE_MOVE_TO_NV 0x03 +#define GL_LINE_TO_NV 0x04 +#define GL_RELATIVE_LINE_TO_NV 0x05 +#define GL_HORIZONTAL_LINE_TO_NV 0x06 +#define GL_RELATIVE_HORIZONTAL_LINE_TO_NV 0x07 +#define GL_VERTICAL_LINE_TO_NV 0x08 +#define GL_RELATIVE_VERTICAL_LINE_TO_NV 0x09 +#define GL_QUADRATIC_CURVE_TO_NV 0x0A +#define GL_RELATIVE_QUADRATIC_CURVE_TO_NV 0x0B +#define GL_CUBIC_CURVE_TO_NV 0x0C +#define GL_RELATIVE_CUBIC_CURVE_TO_NV 0x0D +#define GL_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0E +#define GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0F +#define GL_SMOOTH_CUBIC_CURVE_TO_NV 0x10 +#define GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV 0x11 +#define GL_SMALL_CCW_ARC_TO_NV 0x12 +#define GL_RELATIVE_SMALL_CCW_ARC_TO_NV 0x13 +#define GL_SMALL_CW_ARC_TO_NV 0x14 +#define GL_RELATIVE_SMALL_CW_ARC_TO_NV 0x15 +#define GL_LARGE_CCW_ARC_TO_NV 0x16 +#define GL_RELATIVE_LARGE_CCW_ARC_TO_NV 0x17 +#define GL_LARGE_CW_ARC_TO_NV 0x18 +#define GL_RELATIVE_LARGE_CW_ARC_TO_NV 0x19 +#define GL_RESTART_PATH_NV 0xF0 +#define GL_DUP_FIRST_CUBIC_CURVE_TO_NV 0xF2 +#define GL_DUP_LAST_CUBIC_CURVE_TO_NV 0xF4 +#define GL_RECT_NV 0xF6 +#define GL_CIRCULAR_CCW_ARC_TO_NV 0xF8 +#define GL_CIRCULAR_CW_ARC_TO_NV 0xFA +#define GL_CIRCULAR_TANGENT_ARC_TO_NV 0xFC +#define GL_ARC_TO_NV 0xFE +#define GL_RELATIVE_ARC_TO_NV 0xFF +#define GL_BOLD_BIT_NV 0x01 +#define GL_ITALIC_BIT_NV 0x02 +#define GL_GLYPH_WIDTH_BIT_NV 0x01 +#define GL_GLYPH_HEIGHT_BIT_NV 0x02 +#define GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV 0x04 +#define GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV 0x08 +#define GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV 0x10 +#define GL_GLYPH_VERTICAL_BEARING_X_BIT_NV 0x20 +#define GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV 0x40 +#define GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV 0x80 +#define GL_GLYPH_HAS_KERNING_BIT_NV 0x100 +#define GL_FONT_X_MIN_BOUNDS_BIT_NV 0x00010000 +#define GL_FONT_Y_MIN_BOUNDS_BIT_NV 0x00020000 +#define GL_FONT_X_MAX_BOUNDS_BIT_NV 0x00040000 +#define GL_FONT_Y_MAX_BOUNDS_BIT_NV 0x00080000 +#define GL_FONT_UNITS_PER_EM_BIT_NV 0x00100000 +#define GL_FONT_ASCENDER_BIT_NV 0x00200000 +#define GL_FONT_DESCENDER_BIT_NV 0x00400000 +#define GL_FONT_HEIGHT_BIT_NV 0x00800000 +#define GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV 0x01000000 +#define GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV 0x02000000 +#define GL_FONT_UNDERLINE_POSITION_BIT_NV 0x04000000 +#define GL_FONT_UNDERLINE_THICKNESS_BIT_NV 0x08000000 +#define GL_FONT_HAS_KERNING_BIT_NV 0x10000000 +#define GL_ROUNDED_RECT_NV 0xE8 +#define GL_RELATIVE_ROUNDED_RECT_NV 0xE9 +#define GL_ROUNDED_RECT2_NV 0xEA +#define GL_RELATIVE_ROUNDED_RECT2_NV 0xEB +#define GL_ROUNDED_RECT4_NV 0xEC +#define GL_RELATIVE_ROUNDED_RECT4_NV 0xED +#define GL_ROUNDED_RECT8_NV 0xEE +#define GL_RELATIVE_ROUNDED_RECT8_NV 0xEF +#define GL_RELATIVE_RECT_NV 0xF7 +#define GL_FONT_GLYPHS_AVAILABLE_NV 0x9368 +#define GL_FONT_TARGET_UNAVAILABLE_NV 0x9369 +#define GL_FONT_UNAVAILABLE_NV 0x936A +#define GL_FONT_UNINTELLIGIBLE_NV 0x936B +#define GL_CONIC_CURVE_TO_NV 0x1A +#define GL_RELATIVE_CONIC_CURVE_TO_NV 0x1B +#define GL_FONT_NUM_GLYPH_INDICES_BIT_NV 0x20000000 +#define GL_STANDARD_FONT_FORMAT_NV 0x936C +#define GL_2_BYTES_NV 0x1407 +#define GL_3_BYTES_NV 0x1408 +#define GL_4_BYTES_NV 0x1409 +#define GL_EYE_LINEAR_NV 0x2400 +#define GL_OBJECT_LINEAR_NV 0x2401 +#define GL_CONSTANT_NV 0x8576 +#define GL_PATH_FOG_GEN_MODE_NV 0x90AC +#define GL_PRIMARY_COLOR_NV 0x852C +#define GL_SECONDARY_COLOR_NV 0x852D +#define GL_PATH_GEN_COLOR_FORMAT_NV 0x90B2 +#define GL_PATH_PROJECTION_NV 0x1701 +#define GL_PATH_MODELVIEW_NV 0x1700 +#define GL_PATH_MODELVIEW_STACK_DEPTH_NV 0x0BA3 +#define GL_PATH_MODELVIEW_MATRIX_NV 0x0BA6 +#define GL_PATH_MAX_MODELVIEW_STACK_DEPTH_NV 0x0D36 +#define GL_PATH_TRANSPOSE_MODELVIEW_MATRIX_NV 0x84E3 +#define GL_PATH_PROJECTION_STACK_DEPTH_NV 0x0BA4 +#define GL_PATH_PROJECTION_MATRIX_NV 0x0BA7 +#define GL_PATH_MAX_PROJECTION_STACK_DEPTH_NV 0x0D38 +#define GL_PATH_TRANSPOSE_PROJECTION_MATRIX_NV 0x84E4 +#define GL_FRAGMENT_INPUT_NV 0x936D +typedef GLuint (APIENTRYP PFNGLGENPATHSNVPROC) (GLsizei range); +typedef void (APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); +typedef GLboolean (APIENTRYP PFNGLISPATHNVPROC) (GLuint path); +typedef void (APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); +typedef void (APIENTRYP PFNGLPATHGLYPHSNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (APIENTRYP PFNGLPATHGLYPHRANGENVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (APIENTRYP PFNGLWEIGHTPATHSNVPROC) (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +typedef void (APIENTRYP PFNGLCOPYPATHNVPROC) (GLuint resultPath, GLuint srcPath); +typedef void (APIENTRYP PFNGLINTERPOLATEPATHSNVPROC) (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +typedef void (APIENTRYP PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, const GLint *value); +typedef void (APIENTRYP PFNGLPATHPARAMETERINVPROC) (GLuint path, GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, const GLfloat *value); +typedef void (APIENTRYP PFNGLPATHPARAMETERFNVPROC) (GLuint path, GLenum pname, GLfloat value); +typedef void (APIENTRYP PFNGLPATHDASHARRAYNVPROC) (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +typedef void (APIENTRYP PFNGLPATHSTENCILFUNCNVPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (APIENTRYP PFNGLPATHSTENCILDEPTHOFFSETNVPROC) (GLfloat factor, GLfloat units); +typedef void (APIENTRYP PFNGLSTENCILFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask); +typedef void (APIENTRYP PFNGLSTENCILSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask); +typedef void (APIENTRYP PFNGLSTENCILFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLSTENCILSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLPATHCOVERDEPTHFUNCNVPROC) (GLenum func); +typedef void (APIENTRYP PFNGLCOVERFILLPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (APIENTRYP PFNGLCOVERSTROKEPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (APIENTRYP PFNGLCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLGETPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, GLfloat *value); +typedef void (APIENTRYP PFNGLGETPATHCOMMANDSNVPROC) (GLuint path, GLubyte *commands); +typedef void (APIENTRYP PFNGLGETPATHCOORDSNVPROC) (GLuint path, GLfloat *coords); +typedef void (APIENTRYP PFNGLGETPATHDASHARRAYNVPROC) (GLuint path, GLfloat *dashArray); +typedef void (APIENTRYP PFNGLGETPATHMETRICSNVPROC) (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +typedef void (APIENTRYP PFNGLGETPATHMETRICRANGENVPROC) (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +typedef void (APIENTRYP PFNGLGETPATHSPACINGNVPROC) (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +typedef GLboolean (APIENTRYP PFNGLISPOINTINFILLPATHNVPROC) (GLuint path, GLuint mask, GLfloat x, GLfloat y); +typedef GLboolean (APIENTRYP PFNGLISPOINTINSTROKEPATHNVPROC) (GLuint path, GLfloat x, GLfloat y); +typedef GLfloat (APIENTRYP PFNGLGETPATHLENGTHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments); +typedef GLboolean (APIENTRYP PFNGLPOINTALONGPATHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +typedef void (APIENTRYP PFNGLMATRIXLOAD3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOAD3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULT3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULT3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef GLenum (APIENTRYP PFNGLPATHGLYPHINDEXRANGENVPROC) (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +typedef GLenum (APIENTRYP PFNGLPATHGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef GLenum (APIENTRYP PFNGLPATHMEMORYGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (APIENTRYP PFNGLPROGRAMPATHFRAGMENTINPUTGENNVPROC) (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCEFVNVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +typedef void (APIENTRYP PFNGLPATHCOLORGENNVPROC) (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLPATHTEXGENNVPROC) (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLPATHFOGGENNVPROC) (GLenum genMode); +typedef void (APIENTRYP PFNGLGETPATHCOLORGENIVNVPROC) (GLenum color, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHCOLORGENFVNVPROC) (GLenum color, GLenum pname, GLfloat *value); +typedef void (APIENTRYP PFNGLGETPATHTEXGENIVNVPROC) (GLenum texCoordSet, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHTEXGENFVNVPROC) (GLenum texCoordSet, GLenum pname, GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glGenPathsNV (GLsizei range); +GLAPI void APIENTRY glDeletePathsNV (GLuint path, GLsizei range); +GLAPI GLboolean APIENTRY glIsPathNV (GLuint path); +GLAPI void APIENTRY glPathCommandsNV (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathCoordsNV (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathSubCommandsNV (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathSubCoordsNV (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathStringNV (GLuint path, GLenum format, GLsizei length, const void *pathString); +GLAPI void APIENTRY glPathGlyphsNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI void APIENTRY glPathGlyphRangeNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI void APIENTRY glWeightPathsNV (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +GLAPI void APIENTRY glCopyPathNV (GLuint resultPath, GLuint srcPath); +GLAPI void APIENTRY glInterpolatePathsNV (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +GLAPI void APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glPathParameterivNV (GLuint path, GLenum pname, const GLint *value); +GLAPI void APIENTRY glPathParameteriNV (GLuint path, GLenum pname, GLint value); +GLAPI void APIENTRY glPathParameterfvNV (GLuint path, GLenum pname, const GLfloat *value); +GLAPI void APIENTRY glPathParameterfNV (GLuint path, GLenum pname, GLfloat value); +GLAPI void APIENTRY glPathDashArrayNV (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +GLAPI void APIENTRY glPathStencilFuncNV (GLenum func, GLint ref, GLuint mask); +GLAPI void APIENTRY glPathStencilDepthOffsetNV (GLfloat factor, GLfloat units); +GLAPI void APIENTRY glStencilFillPathNV (GLuint path, GLenum fillMode, GLuint mask); +GLAPI void APIENTRY glStencilStrokePathNV (GLuint path, GLint reference, GLuint mask); +GLAPI void APIENTRY glStencilFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glStencilStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glPathCoverDepthFuncNV (GLenum func); +GLAPI void APIENTRY glCoverFillPathNV (GLuint path, GLenum coverMode); +GLAPI void APIENTRY glCoverStrokePathNV (GLuint path, GLenum coverMode); +GLAPI void APIENTRY glCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glGetPathParameterivNV (GLuint path, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathParameterfvNV (GLuint path, GLenum pname, GLfloat *value); +GLAPI void APIENTRY glGetPathCommandsNV (GLuint path, GLubyte *commands); +GLAPI void APIENTRY glGetPathCoordsNV (GLuint path, GLfloat *coords); +GLAPI void APIENTRY glGetPathDashArrayNV (GLuint path, GLfloat *dashArray); +GLAPI void APIENTRY glGetPathMetricsNV (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +GLAPI void APIENTRY glGetPathMetricRangeNV (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +GLAPI void APIENTRY glGetPathSpacingNV (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +GLAPI GLboolean APIENTRY glIsPointInFillPathNV (GLuint path, GLuint mask, GLfloat x, GLfloat y); +GLAPI GLboolean APIENTRY glIsPointInStrokePathNV (GLuint path, GLfloat x, GLfloat y); +GLAPI GLfloat APIENTRY glGetPathLengthNV (GLuint path, GLsizei startSegment, GLsizei numSegments); +GLAPI GLboolean APIENTRY glPointAlongPathNV (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +GLAPI void APIENTRY glMatrixLoad3x2fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoad3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoadTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMult3x2fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMult3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glStencilThenCoverFillPathNV (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +GLAPI void APIENTRY glStencilThenCoverStrokePathNV (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +GLAPI void APIENTRY glStencilThenCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glStencilThenCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI GLenum APIENTRY glPathGlyphIndexRangeNV (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +GLAPI GLenum APIENTRY glPathGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI GLenum APIENTRY glPathMemoryGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI void APIENTRY glProgramPathFragmentInputGenNV (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +GLAPI void APIENTRY glGetProgramResourcefvNV (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +GLAPI void APIENTRY glPathColorGenNV (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat *coeffs); +GLAPI void APIENTRY glPathTexGenNV (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat *coeffs); +GLAPI void APIENTRY glPathFogGenNV (GLenum genMode); +GLAPI void APIENTRY glGetPathColorGenivNV (GLenum color, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathColorGenfvNV (GLenum color, GLenum pname, GLfloat *value); +GLAPI void APIENTRY glGetPathTexGenivNV (GLenum texCoordSet, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathTexGenfvNV (GLenum texCoordSet, GLenum pname, GLfloat *value); +#endif +#endif /* GL_NV_path_rendering */ + +#ifndef GL_NV_path_rendering_shared_edge +#define GL_NV_path_rendering_shared_edge 1 +#define GL_SHARED_EDGE_NV 0xC0 +#endif /* GL_NV_path_rendering_shared_edge */ + +#ifndef GL_NV_pixel_data_range +#define GL_NV_pixel_data_range 1 +#define GL_WRITE_PIXEL_DATA_RANGE_NV 0x8878 +#define GL_READ_PIXEL_DATA_RANGE_NV 0x8879 +#define GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV 0x887A +#define GL_READ_PIXEL_DATA_RANGE_LENGTH_NV 0x887B +#define GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV 0x887C +#define GL_READ_PIXEL_DATA_RANGE_POINTER_NV 0x887D +typedef void (APIENTRYP PFNGLPIXELDATARANGENVPROC) (GLenum target, GLsizei length, const void *pointer); +typedef void (APIENTRYP PFNGLFLUSHPIXELDATARANGENVPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelDataRangeNV (GLenum target, GLsizei length, const void *pointer); +GLAPI void APIENTRY glFlushPixelDataRangeNV (GLenum target); +#endif +#endif /* GL_NV_pixel_data_range */ + +#ifndef GL_NV_point_sprite +#define GL_NV_point_sprite 1 +#define GL_POINT_SPRITE_NV 0x8861 +#define GL_COORD_REPLACE_NV 0x8862 +#define GL_POINT_SPRITE_R_MODE_NV 0x8863 +typedef void (APIENTRYP PFNGLPOINTPARAMETERINVPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIVNVPROC) (GLenum pname, const GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameteriNV (GLenum pname, GLint param); +GLAPI void APIENTRY glPointParameterivNV (GLenum pname, const GLint *params); +#endif +#endif /* GL_NV_point_sprite */ + +#ifndef GL_NV_present_video +#define GL_NV_present_video 1 +#define GL_FRAME_NV 0x8E26 +#define GL_FIELDS_NV 0x8E27 +#define GL_CURRENT_TIME_NV 0x8E28 +#define GL_NUM_FILL_STREAMS_NV 0x8E29 +#define GL_PRESENT_TIME_NV 0x8E2A +#define GL_PRESENT_DURATION_NV 0x8E2B +typedef void (APIENTRYP PFNGLPRESENTFRAMEKEYEDNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1); +typedef void (APIENTRYP PFNGLPRESENTFRAMEDUALFILLNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLenum target1, GLuint fill1, GLenum target2, GLuint fill2, GLenum target3, GLuint fill3); +typedef void (APIENTRYP PFNGLGETVIDEOIVNVPROC) (GLuint video_slot, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOUIVNVPROC) (GLuint video_slot, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLGETVIDEOI64VNVPROC) (GLuint video_slot, GLenum pname, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETVIDEOUI64VNVPROC) (GLuint video_slot, GLenum pname, GLuint64EXT *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPresentFrameKeyedNV (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1); +GLAPI void APIENTRY glPresentFrameDualFillNV (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLenum target1, GLuint fill1, GLenum target2, GLuint fill2, GLenum target3, GLuint fill3); +GLAPI void APIENTRY glGetVideoivNV (GLuint video_slot, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideouivNV (GLuint video_slot, GLenum pname, GLuint *params); +GLAPI void APIENTRY glGetVideoi64vNV (GLuint video_slot, GLenum pname, GLint64EXT *params); +GLAPI void APIENTRY glGetVideoui64vNV (GLuint video_slot, GLenum pname, GLuint64EXT *params); +#endif +#endif /* GL_NV_present_video */ + +#ifndef GL_NV_primitive_restart +#define GL_NV_primitive_restart 1 +#define GL_PRIMITIVE_RESTART_NV 0x8558 +#define GL_PRIMITIVE_RESTART_INDEX_NV 0x8559 +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTNVPROC) (void); +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXNVPROC) (GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPrimitiveRestartNV (void); +GLAPI void APIENTRY glPrimitiveRestartIndexNV (GLuint index); +#endif +#endif /* GL_NV_primitive_restart */ + +#ifndef GL_NV_primitive_shading_rate +#define GL_NV_primitive_shading_rate 1 +#define GL_SHADING_RATE_IMAGE_PER_PRIMITIVE_NV 0x95B1 +#define GL_SHADING_RATE_IMAGE_PALETTE_COUNT_NV 0x95B2 +#endif /* GL_NV_primitive_shading_rate */ + +#ifndef GL_NV_query_resource +#define GL_NV_query_resource 1 +#define GL_QUERY_RESOURCE_TYPE_VIDMEM_ALLOC_NV 0x9540 +#define GL_QUERY_RESOURCE_MEMTYPE_VIDMEM_NV 0x9542 +#define GL_QUERY_RESOURCE_SYS_RESERVED_NV 0x9544 +#define GL_QUERY_RESOURCE_TEXTURE_NV 0x9545 +#define GL_QUERY_RESOURCE_RENDERBUFFER_NV 0x9546 +#define GL_QUERY_RESOURCE_BUFFEROBJECT_NV 0x9547 +typedef GLint (APIENTRYP PFNGLQUERYRESOURCENVPROC) (GLenum queryType, GLint tagId, GLuint count, GLint *buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLint APIENTRY glQueryResourceNV (GLenum queryType, GLint tagId, GLuint count, GLint *buffer); +#endif +#endif /* GL_NV_query_resource */ + +#ifndef GL_NV_query_resource_tag +#define GL_NV_query_resource_tag 1 +typedef void (APIENTRYP PFNGLGENQUERYRESOURCETAGNVPROC) (GLsizei n, GLint *tagIds); +typedef void (APIENTRYP PFNGLDELETEQUERYRESOURCETAGNVPROC) (GLsizei n, const GLint *tagIds); +typedef void (APIENTRYP PFNGLQUERYRESOURCETAGNVPROC) (GLint tagId, const GLchar *tagString); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueryResourceTagNV (GLsizei n, GLint *tagIds); +GLAPI void APIENTRY glDeleteQueryResourceTagNV (GLsizei n, const GLint *tagIds); +GLAPI void APIENTRY glQueryResourceTagNV (GLint tagId, const GLchar *tagString); +#endif +#endif /* GL_NV_query_resource_tag */ + +#ifndef GL_NV_register_combiners +#define GL_NV_register_combiners 1 +#define GL_REGISTER_COMBINERS_NV 0x8522 +#define GL_VARIABLE_A_NV 0x8523 +#define GL_VARIABLE_B_NV 0x8524 +#define GL_VARIABLE_C_NV 0x8525 +#define GL_VARIABLE_D_NV 0x8526 +#define GL_VARIABLE_E_NV 0x8527 +#define GL_VARIABLE_F_NV 0x8528 +#define GL_VARIABLE_G_NV 0x8529 +#define GL_CONSTANT_COLOR0_NV 0x852A +#define GL_CONSTANT_COLOR1_NV 0x852B +#define GL_SPARE0_NV 0x852E +#define GL_SPARE1_NV 0x852F +#define GL_DISCARD_NV 0x8530 +#define GL_E_TIMES_F_NV 0x8531 +#define GL_SPARE0_PLUS_SECONDARY_COLOR_NV 0x8532 +#define GL_UNSIGNED_IDENTITY_NV 0x8536 +#define GL_UNSIGNED_INVERT_NV 0x8537 +#define GL_EXPAND_NORMAL_NV 0x8538 +#define GL_EXPAND_NEGATE_NV 0x8539 +#define GL_HALF_BIAS_NORMAL_NV 0x853A +#define GL_HALF_BIAS_NEGATE_NV 0x853B +#define GL_SIGNED_IDENTITY_NV 0x853C +#define GL_SIGNED_NEGATE_NV 0x853D +#define GL_SCALE_BY_TWO_NV 0x853E +#define GL_SCALE_BY_FOUR_NV 0x853F +#define GL_SCALE_BY_ONE_HALF_NV 0x8540 +#define GL_BIAS_BY_NEGATIVE_ONE_HALF_NV 0x8541 +#define GL_COMBINER_INPUT_NV 0x8542 +#define GL_COMBINER_MAPPING_NV 0x8543 +#define GL_COMBINER_COMPONENT_USAGE_NV 0x8544 +#define GL_COMBINER_AB_DOT_PRODUCT_NV 0x8545 +#define GL_COMBINER_CD_DOT_PRODUCT_NV 0x8546 +#define GL_COMBINER_MUX_SUM_NV 0x8547 +#define GL_COMBINER_SCALE_NV 0x8548 +#define GL_COMBINER_BIAS_NV 0x8549 +#define GL_COMBINER_AB_OUTPUT_NV 0x854A +#define GL_COMBINER_CD_OUTPUT_NV 0x854B +#define GL_COMBINER_SUM_OUTPUT_NV 0x854C +#define GL_MAX_GENERAL_COMBINERS_NV 0x854D +#define GL_NUM_GENERAL_COMBINERS_NV 0x854E +#define GL_COLOR_SUM_CLAMP_NV 0x854F +#define GL_COMBINER0_NV 0x8550 +#define GL_COMBINER1_NV 0x8551 +#define GL_COMBINER2_NV 0x8552 +#define GL_COMBINER3_NV 0x8553 +#define GL_COMBINER4_NV 0x8554 +#define GL_COMBINER5_NV 0x8555 +#define GL_COMBINER6_NV 0x8556 +#define GL_COMBINER7_NV 0x8557 +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFVNVPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFNVPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERIVNVPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERINVPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLCOMBINERINPUTNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +typedef void (APIENTRYP PFNGLCOMBINEROUTPUTNVPROC) (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); +typedef void (APIENTRYP PFNGLFINALCOMBINERINPUTNVPROC) (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC) (GLenum variable, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC) (GLenum variable, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCombinerParameterfvNV (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glCombinerParameterfNV (GLenum pname, GLfloat param); +GLAPI void APIENTRY glCombinerParameterivNV (GLenum pname, const GLint *params); +GLAPI void APIENTRY glCombinerParameteriNV (GLenum pname, GLint param); +GLAPI void APIENTRY glCombinerInputNV (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +GLAPI void APIENTRY glCombinerOutputNV (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); +GLAPI void APIENTRY glFinalCombinerInputNV (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +GLAPI void APIENTRY glGetCombinerInputParameterfvNV (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetCombinerInputParameterivNV (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetCombinerOutputParameterfvNV (GLenum stage, GLenum portion, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetCombinerOutputParameterivNV (GLenum stage, GLenum portion, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetFinalCombinerInputParameterfvNV (GLenum variable, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFinalCombinerInputParameterivNV (GLenum variable, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_register_combiners */ + +#ifndef GL_NV_register_combiners2 +#define GL_NV_register_combiners2 1 +#define GL_PER_STAGE_CONSTANTS_NV 0x8535 +typedef void (APIENTRYP PFNGLCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCombinerStageParameterfvNV (GLenum stage, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetCombinerStageParameterfvNV (GLenum stage, GLenum pname, GLfloat *params); +#endif +#endif /* GL_NV_register_combiners2 */ + +#ifndef GL_NV_representative_fragment_test +#define GL_NV_representative_fragment_test 1 +#define GL_REPRESENTATIVE_FRAGMENT_TEST_NV 0x937F +#endif /* GL_NV_representative_fragment_test */ + +#ifndef GL_NV_robustness_video_memory_purge +#define GL_NV_robustness_video_memory_purge 1 +#define GL_PURGED_CONTEXT_RESET_NV 0x92BB +#endif /* GL_NV_robustness_video_memory_purge */ + +#ifndef GL_NV_sample_locations +#define GL_NV_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_NV 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_NV 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_NV 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_NV 0x9340 +#define GL_SAMPLE_LOCATION_NV 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_NV 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_NV 0x9343 +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLRESOLVEDEPTHVALUESNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSampleLocationsfvNV (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glNamedFramebufferSampleLocationsfvNV (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glResolveDepthValuesNV (void); +#endif +#endif /* GL_NV_sample_locations */ + +#ifndef GL_NV_sample_mask_override_coverage +#define GL_NV_sample_mask_override_coverage 1 +#endif /* GL_NV_sample_mask_override_coverage */ + +#ifndef GL_NV_scissor_exclusive +#define GL_NV_scissor_exclusive 1 +#define GL_SCISSOR_TEST_EXCLUSIVE_NV 0x9555 +#define GL_SCISSOR_BOX_EXCLUSIVE_NV 0x9556 +typedef void (APIENTRYP PFNGLSCISSOREXCLUSIVENVPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLSCISSOREXCLUSIVEARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glScissorExclusiveNV (GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glScissorExclusiveArrayvNV (GLuint first, GLsizei count, const GLint *v); +#endif +#endif /* GL_NV_scissor_exclusive */ + +#ifndef GL_NV_shader_atomic_counters +#define GL_NV_shader_atomic_counters 1 +#endif /* GL_NV_shader_atomic_counters */ + +#ifndef GL_NV_shader_atomic_float +#define GL_NV_shader_atomic_float 1 +#endif /* GL_NV_shader_atomic_float */ + +#ifndef GL_NV_shader_atomic_float64 +#define GL_NV_shader_atomic_float64 1 +#endif /* GL_NV_shader_atomic_float64 */ + +#ifndef GL_NV_shader_atomic_fp16_vector +#define GL_NV_shader_atomic_fp16_vector 1 +#endif /* GL_NV_shader_atomic_fp16_vector */ + +#ifndef GL_NV_shader_atomic_int64 +#define GL_NV_shader_atomic_int64 1 +#endif /* GL_NV_shader_atomic_int64 */ + +#ifndef GL_NV_shader_buffer_load +#define GL_NV_shader_buffer_load 1 +#define GL_BUFFER_GPU_ADDRESS_NV 0x8F1D +#define GL_GPU_ADDRESS_NV 0x8F34 +#define GL_MAX_SHADER_BUFFER_ADDRESS_NV 0x8F35 +typedef void (APIENTRYP PFNGLMAKEBUFFERRESIDENTNVPROC) (GLenum target, GLenum access); +typedef void (APIENTRYP PFNGLMAKEBUFFERNONRESIDENTNVPROC) (GLenum target); +typedef GLboolean (APIENTRYP PFNGLISBUFFERRESIDENTNVPROC) (GLenum target); +typedef void (APIENTRYP PFNGLMAKENAMEDBUFFERRESIDENTNVPROC) (GLuint buffer, GLenum access); +typedef void (APIENTRYP PFNGLMAKENAMEDBUFFERNONRESIDENTNVPROC) (GLuint buffer); +typedef GLboolean (APIENTRYP PFNGLISNAMEDBUFFERRESIDENTNVPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERUI64VNVPROC) (GLenum target, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERUI64VNVPROC) (GLuint buffer, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLGETINTEGERUI64VNVPROC) (GLenum value, GLuint64EXT *result); +typedef void (APIENTRYP PFNGLUNIFORMUI64NVPROC) (GLint location, GLuint64EXT value); +typedef void (APIENTRYP PFNGLUNIFORMUI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMUI64NVPROC) (GLuint program, GLint location, GLuint64EXT value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMakeBufferResidentNV (GLenum target, GLenum access); +GLAPI void APIENTRY glMakeBufferNonResidentNV (GLenum target); +GLAPI GLboolean APIENTRY glIsBufferResidentNV (GLenum target); +GLAPI void APIENTRY glMakeNamedBufferResidentNV (GLuint buffer, GLenum access); +GLAPI void APIENTRY glMakeNamedBufferNonResidentNV (GLuint buffer); +GLAPI GLboolean APIENTRY glIsNamedBufferResidentNV (GLuint buffer); +GLAPI void APIENTRY glGetBufferParameterui64vNV (GLenum target, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glGetNamedBufferParameterui64vNV (GLuint buffer, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glGetIntegerui64vNV (GLenum value, GLuint64EXT *result); +GLAPI void APIENTRY glUniformui64NV (GLint location, GLuint64EXT value); +GLAPI void APIENTRY glUniformui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniformui64NV (GLuint program, GLint location, GLuint64EXT value); +GLAPI void APIENTRY glProgramUniformui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif +#endif /* GL_NV_shader_buffer_load */ + +#ifndef GL_NV_shader_buffer_store +#define GL_NV_shader_buffer_store 1 +#define GL_SHADER_GLOBAL_ACCESS_BARRIER_BIT_NV 0x00000010 +#endif /* GL_NV_shader_buffer_store */ + +#ifndef GL_NV_shader_storage_buffer_object +#define GL_NV_shader_storage_buffer_object 1 +#endif /* GL_NV_shader_storage_buffer_object */ + +#ifndef GL_NV_shader_subgroup_partitioned +#define GL_NV_shader_subgroup_partitioned 1 +#define GL_SUBGROUP_FEATURE_PARTITIONED_BIT_NV 0x00000100 +#endif /* GL_NV_shader_subgroup_partitioned */ + +#ifndef GL_NV_shader_texture_footprint +#define GL_NV_shader_texture_footprint 1 +#endif /* GL_NV_shader_texture_footprint */ + +#ifndef GL_NV_shader_thread_group +#define GL_NV_shader_thread_group 1 +#define GL_WARP_SIZE_NV 0x9339 +#define GL_WARPS_PER_SM_NV 0x933A +#define GL_SM_COUNT_NV 0x933B +#endif /* GL_NV_shader_thread_group */ + +#ifndef GL_NV_shader_thread_shuffle +#define GL_NV_shader_thread_shuffle 1 +#endif /* GL_NV_shader_thread_shuffle */ + +#ifndef GL_NV_shading_rate_image +#define GL_NV_shading_rate_image 1 +#define GL_SHADING_RATE_IMAGE_NV 0x9563 +#define GL_SHADING_RATE_NO_INVOCATIONS_NV 0x9564 +#define GL_SHADING_RATE_1_INVOCATION_PER_PIXEL_NV 0x9565 +#define GL_SHADING_RATE_1_INVOCATION_PER_1X2_PIXELS_NV 0x9566 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X1_PIXELS_NV 0x9567 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X2_PIXELS_NV 0x9568 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X4_PIXELS_NV 0x9569 +#define GL_SHADING_RATE_1_INVOCATION_PER_4X2_PIXELS_NV 0x956A +#define GL_SHADING_RATE_1_INVOCATION_PER_4X4_PIXELS_NV 0x956B +#define GL_SHADING_RATE_2_INVOCATIONS_PER_PIXEL_NV 0x956C +#define GL_SHADING_RATE_4_INVOCATIONS_PER_PIXEL_NV 0x956D +#define GL_SHADING_RATE_8_INVOCATIONS_PER_PIXEL_NV 0x956E +#define GL_SHADING_RATE_16_INVOCATIONS_PER_PIXEL_NV 0x956F +#define GL_SHADING_RATE_IMAGE_BINDING_NV 0x955B +#define GL_SHADING_RATE_IMAGE_TEXEL_WIDTH_NV 0x955C +#define GL_SHADING_RATE_IMAGE_TEXEL_HEIGHT_NV 0x955D +#define GL_SHADING_RATE_IMAGE_PALETTE_SIZE_NV 0x955E +#define GL_MAX_COARSE_FRAGMENT_SAMPLES_NV 0x955F +#define GL_SHADING_RATE_SAMPLE_ORDER_DEFAULT_NV 0x95AE +#define GL_SHADING_RATE_SAMPLE_ORDER_PIXEL_MAJOR_NV 0x95AF +#define GL_SHADING_RATE_SAMPLE_ORDER_SAMPLE_MAJOR_NV 0x95B0 +typedef void (APIENTRYP PFNGLBINDSHADINGRATEIMAGENVPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLGETSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint entry, GLenum *rate); +typedef void (APIENTRYP PFNGLGETSHADINGRATESAMPLELOCATIONIVNVPROC) (GLenum rate, GLuint samples, GLuint index, GLint *location); +typedef void (APIENTRYP PFNGLSHADINGRATEIMAGEBARRIERNVPROC) (GLboolean synchronize); +typedef void (APIENTRYP PFNGLSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +typedef void (APIENTRYP PFNGLSHADINGRATESAMPLEORDERNVPROC) (GLenum order); +typedef void (APIENTRYP PFNGLSHADINGRATESAMPLEORDERCUSTOMNVPROC) (GLenum rate, GLuint samples, const GLint *locations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindShadingRateImageNV (GLuint texture); +GLAPI void APIENTRY glGetShadingRateImagePaletteNV (GLuint viewport, GLuint entry, GLenum *rate); +GLAPI void APIENTRY glGetShadingRateSampleLocationivNV (GLenum rate, GLuint samples, GLuint index, GLint *location); +GLAPI void APIENTRY glShadingRateImageBarrierNV (GLboolean synchronize); +GLAPI void APIENTRY glShadingRateImagePaletteNV (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +GLAPI void APIENTRY glShadingRateSampleOrderNV (GLenum order); +GLAPI void APIENTRY glShadingRateSampleOrderCustomNV (GLenum rate, GLuint samples, const GLint *locations); +#endif +#endif /* GL_NV_shading_rate_image */ + +#ifndef GL_NV_stereo_view_rendering +#define GL_NV_stereo_view_rendering 1 +#endif /* GL_NV_stereo_view_rendering */ + +#ifndef GL_NV_tessellation_program5 +#define GL_NV_tessellation_program5 1 +#define GL_MAX_PROGRAM_PATCH_ATTRIBS_NV 0x86D8 +#define GL_TESS_CONTROL_PROGRAM_NV 0x891E +#define GL_TESS_EVALUATION_PROGRAM_NV 0x891F +#define GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV 0x8C74 +#define GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV 0x8C75 +#endif /* GL_NV_tessellation_program5 */ + +#ifndef GL_NV_texgen_emboss +#define GL_NV_texgen_emboss 1 +#define GL_EMBOSS_LIGHT_NV 0x855D +#define GL_EMBOSS_CONSTANT_NV 0x855E +#define GL_EMBOSS_MAP_NV 0x855F +#endif /* GL_NV_texgen_emboss */ + +#ifndef GL_NV_texgen_reflection +#define GL_NV_texgen_reflection 1 +#define GL_NORMAL_MAP_NV 0x8511 +#define GL_REFLECTION_MAP_NV 0x8512 +#endif /* GL_NV_texgen_reflection */ + +#ifndef GL_NV_texture_barrier +#define GL_NV_texture_barrier 1 +typedef void (APIENTRYP PFNGLTEXTUREBARRIERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureBarrierNV (void); +#endif +#endif /* GL_NV_texture_barrier */ + +#ifndef GL_NV_texture_compression_vtc +#define GL_NV_texture_compression_vtc 1 +#endif /* GL_NV_texture_compression_vtc */ + +#ifndef GL_NV_texture_env_combine4 +#define GL_NV_texture_env_combine4 1 +#define GL_COMBINE4_NV 0x8503 +#define GL_SOURCE3_RGB_NV 0x8583 +#define GL_SOURCE3_ALPHA_NV 0x858B +#define GL_OPERAND3_RGB_NV 0x8593 +#define GL_OPERAND3_ALPHA_NV 0x859B +#endif /* GL_NV_texture_env_combine4 */ + +#ifndef GL_NV_texture_expand_normal +#define GL_NV_texture_expand_normal 1 +#define GL_TEXTURE_UNSIGNED_REMAP_MODE_NV 0x888F +#endif /* GL_NV_texture_expand_normal */ + +#ifndef GL_NV_texture_multisample +#define GL_NV_texture_multisample 1 +#define GL_TEXTURE_COVERAGE_SAMPLES_NV 0x9045 +#define GL_TEXTURE_COLOR_SAMPLES_NV 0x9046 +typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DMULTISAMPLENVPROC) (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DMULTISAMPLENVPROC) (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DMULTISAMPLECOVERAGENVPROC) (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DMULTISAMPLECOVERAGENVPROC) (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage2DMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTexImage3DMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage2DMultisampleNV (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage3DMultisampleNV (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage2DMultisampleCoverageNV (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage3DMultisampleCoverageNV (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +#endif +#endif /* GL_NV_texture_multisample */ + +#ifndef GL_NV_texture_rectangle +#define GL_NV_texture_rectangle 1 +#define GL_TEXTURE_RECTANGLE_NV 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE_NV 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE_NV 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE_NV 0x84F8 +#endif /* GL_NV_texture_rectangle */ + +#ifndef GL_NV_texture_rectangle_compressed +#define GL_NV_texture_rectangle_compressed 1 +#endif /* GL_NV_texture_rectangle_compressed */ + +#ifndef GL_NV_texture_shader +#define GL_NV_texture_shader 1 +#define GL_OFFSET_TEXTURE_RECTANGLE_NV 0x864C +#define GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV 0x864D +#define GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV 0x864E +#define GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV 0x86D9 +#define GL_UNSIGNED_INT_S8_S8_8_8_NV 0x86DA +#define GL_UNSIGNED_INT_8_8_S8_S8_REV_NV 0x86DB +#define GL_DSDT_MAG_INTENSITY_NV 0x86DC +#define GL_SHADER_CONSISTENT_NV 0x86DD +#define GL_TEXTURE_SHADER_NV 0x86DE +#define GL_SHADER_OPERATION_NV 0x86DF +#define GL_CULL_MODES_NV 0x86E0 +#define GL_OFFSET_TEXTURE_MATRIX_NV 0x86E1 +#define GL_OFFSET_TEXTURE_SCALE_NV 0x86E2 +#define GL_OFFSET_TEXTURE_BIAS_NV 0x86E3 +#define GL_OFFSET_TEXTURE_2D_MATRIX_NV 0x86E1 +#define GL_OFFSET_TEXTURE_2D_SCALE_NV 0x86E2 +#define GL_OFFSET_TEXTURE_2D_BIAS_NV 0x86E3 +#define GL_PREVIOUS_TEXTURE_INPUT_NV 0x86E4 +#define GL_CONST_EYE_NV 0x86E5 +#define GL_PASS_THROUGH_NV 0x86E6 +#define GL_CULL_FRAGMENT_NV 0x86E7 +#define GL_OFFSET_TEXTURE_2D_NV 0x86E8 +#define GL_DEPENDENT_AR_TEXTURE_2D_NV 0x86E9 +#define GL_DEPENDENT_GB_TEXTURE_2D_NV 0x86EA +#define GL_DOT_PRODUCT_NV 0x86EC +#define GL_DOT_PRODUCT_DEPTH_REPLACE_NV 0x86ED +#define GL_DOT_PRODUCT_TEXTURE_2D_NV 0x86EE +#define GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV 0x86F0 +#define GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV 0x86F1 +#define GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV 0x86F2 +#define GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV 0x86F3 +#define GL_HILO_NV 0x86F4 +#define GL_DSDT_NV 0x86F5 +#define GL_DSDT_MAG_NV 0x86F6 +#define GL_DSDT_MAG_VIB_NV 0x86F7 +#define GL_HILO16_NV 0x86F8 +#define GL_SIGNED_HILO_NV 0x86F9 +#define GL_SIGNED_HILO16_NV 0x86FA +#define GL_SIGNED_RGBA_NV 0x86FB +#define GL_SIGNED_RGBA8_NV 0x86FC +#define GL_SIGNED_RGB_NV 0x86FE +#define GL_SIGNED_RGB8_NV 0x86FF +#define GL_SIGNED_LUMINANCE_NV 0x8701 +#define GL_SIGNED_LUMINANCE8_NV 0x8702 +#define GL_SIGNED_LUMINANCE_ALPHA_NV 0x8703 +#define GL_SIGNED_LUMINANCE8_ALPHA8_NV 0x8704 +#define GL_SIGNED_ALPHA_NV 0x8705 +#define GL_SIGNED_ALPHA8_NV 0x8706 +#define GL_SIGNED_INTENSITY_NV 0x8707 +#define GL_SIGNED_INTENSITY8_NV 0x8708 +#define GL_DSDT8_NV 0x8709 +#define GL_DSDT8_MAG8_NV 0x870A +#define GL_DSDT8_MAG8_INTENSITY8_NV 0x870B +#define GL_SIGNED_RGB_UNSIGNED_ALPHA_NV 0x870C +#define GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV 0x870D +#define GL_HI_SCALE_NV 0x870E +#define GL_LO_SCALE_NV 0x870F +#define GL_DS_SCALE_NV 0x8710 +#define GL_DT_SCALE_NV 0x8711 +#define GL_MAGNITUDE_SCALE_NV 0x8712 +#define GL_VIBRANCE_SCALE_NV 0x8713 +#define GL_HI_BIAS_NV 0x8714 +#define GL_LO_BIAS_NV 0x8715 +#define GL_DS_BIAS_NV 0x8716 +#define GL_DT_BIAS_NV 0x8717 +#define GL_MAGNITUDE_BIAS_NV 0x8718 +#define GL_VIBRANCE_BIAS_NV 0x8719 +#define GL_TEXTURE_BORDER_VALUES_NV 0x871A +#define GL_TEXTURE_HI_SIZE_NV 0x871B +#define GL_TEXTURE_LO_SIZE_NV 0x871C +#define GL_TEXTURE_DS_SIZE_NV 0x871D +#define GL_TEXTURE_DT_SIZE_NV 0x871E +#define GL_TEXTURE_MAG_SIZE_NV 0x871F +#endif /* GL_NV_texture_shader */ + +#ifndef GL_NV_texture_shader2 +#define GL_NV_texture_shader2 1 +#define GL_DOT_PRODUCT_TEXTURE_3D_NV 0x86EF +#endif /* GL_NV_texture_shader2 */ + +#ifndef GL_NV_texture_shader3 +#define GL_NV_texture_shader3 1 +#define GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV 0x8850 +#define GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV 0x8851 +#define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8852 +#define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV 0x8853 +#define GL_OFFSET_HILO_TEXTURE_2D_NV 0x8854 +#define GL_OFFSET_HILO_TEXTURE_RECTANGLE_NV 0x8855 +#define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV 0x8856 +#define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8857 +#define GL_DEPENDENT_HILO_TEXTURE_2D_NV 0x8858 +#define GL_DEPENDENT_RGB_TEXTURE_3D_NV 0x8859 +#define GL_DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV 0x885A +#define GL_DOT_PRODUCT_PASS_THROUGH_NV 0x885B +#define GL_DOT_PRODUCT_TEXTURE_1D_NV 0x885C +#define GL_DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV 0x885D +#define GL_HILO8_NV 0x885E +#define GL_SIGNED_HILO8_NV 0x885F +#define GL_FORCE_BLUE_TO_ONE_NV 0x8860 +#endif /* GL_NV_texture_shader3 */ + +#ifndef GL_NV_timeline_semaphore +#define GL_NV_timeline_semaphore 1 +#define GL_TIMELINE_SEMAPHORE_VALUE_NV 0x9595 +#define GL_SEMAPHORE_TYPE_NV 0x95B3 +#define GL_SEMAPHORE_TYPE_BINARY_NV 0x95B4 +#define GL_SEMAPHORE_TYPE_TIMELINE_NV 0x95B5 +#define GL_MAX_TIMELINE_SEMAPHORE_VALUE_DIFFERENCE_NV 0x95B6 +typedef void (APIENTRYP PFNGLCREATESEMAPHORESNVPROC) (GLsizei n, GLuint *semaphores); +typedef void (APIENTRYP PFNGLSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCreateSemaphoresNV (GLsizei n, GLuint *semaphores); +GLAPI void APIENTRY glSemaphoreParameterivNV (GLuint semaphore, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetSemaphoreParameterivNV (GLuint semaphore, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_timeline_semaphore */ + +#ifndef GL_NV_transform_feedback +#define GL_NV_transform_feedback 1 +#define GL_BACK_PRIMARY_COLOR_NV 0x8C77 +#define GL_BACK_SECONDARY_COLOR_NV 0x8C78 +#define GL_TEXTURE_COORD_NV 0x8C79 +#define GL_CLIP_DISTANCE_NV 0x8C7A +#define GL_VERTEX_ID_NV 0x8C7B +#define GL_PRIMITIVE_ID_NV 0x8C7C +#define GL_GENERIC_ATTRIB_NV 0x8C7D +#define GL_TRANSFORM_FEEDBACK_ATTRIBS_NV 0x8C7E +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_NV 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_NV 0x8C80 +#define GL_ACTIVE_VARYINGS_NV 0x8C81 +#define GL_ACTIVE_VARYING_MAX_LENGTH_NV 0x8C82 +#define GL_TRANSFORM_FEEDBACK_VARYINGS_NV 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START_NV 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_NV 0x8C85 +#define GL_TRANSFORM_FEEDBACK_RECORD_NV 0x8C86 +#define GL_PRIMITIVES_GENERATED_NV 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_NV 0x8C88 +#define GL_RASTERIZER_DISCARD_NV 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_NV 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_NV 0x8C8B +#define GL_INTERLEAVED_ATTRIBS_NV 0x8C8C +#define GL_SEPARATE_ATTRIBS_NV 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER_NV 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_NV 0x8C8F +#define GL_LAYER_NV 0x8DAA +#define GL_NEXT_BUFFER_NV -2 +#define GL_SKIP_COMPONENTS4_NV -3 +#define GL_SKIP_COMPONENTS3_NV -4 +#define GL_SKIP_COMPONENTS2_NV -5 +#define GL_SKIP_COMPONENTS1_NV -6 +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKNVPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKATTRIBSNVPROC) (GLsizei count, const GLint *attribs, GLenum bufferMode); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGENVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFEROFFSETNVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +typedef void (APIENTRYP PFNGLBINDBUFFERBASENVPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSNVPROC) (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode); +typedef void (APIENTRYP PFNGLACTIVEVARYINGNVPROC) (GLuint program, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETVARYINGLOCATIONNVPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVEVARYINGNVPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGNVPROC) (GLuint program, GLuint index, GLint *location); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKSTREAMATTRIBSNVPROC) (GLsizei count, const GLint *attribs, GLsizei nbuffers, const GLint *bufstreams, GLenum bufferMode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginTransformFeedbackNV (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedbackNV (void); +GLAPI void APIENTRY glTransformFeedbackAttribsNV (GLsizei count, const GLint *attribs, GLenum bufferMode); +GLAPI void APIENTRY glBindBufferRangeNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferOffsetNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +GLAPI void APIENTRY glBindBufferBaseNV (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryingsNV (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode); +GLAPI void APIENTRY glActiveVaryingNV (GLuint program, const GLchar *name); +GLAPI GLint APIENTRY glGetVaryingLocationNV (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetActiveVaryingNV (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetTransformFeedbackVaryingNV (GLuint program, GLuint index, GLint *location); +GLAPI void APIENTRY glTransformFeedbackStreamAttribsNV (GLsizei count, const GLint *attribs, GLsizei nbuffers, const GLint *bufstreams, GLenum bufferMode); +#endif +#endif /* GL_NV_transform_feedback */ + +#ifndef GL_NV_transform_feedback2 +#define GL_NV_transform_feedback2 1 +#define GL_TRANSFORM_FEEDBACK_NV 0x8E22 +#define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED_NV 0x8E23 +#define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE_NV 0x8E24 +#define GL_TRANSFORM_FEEDBACK_BINDING_NV 0x8E25 +typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKNVPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSNVPROC) (GLsizei n, const GLuint *ids); +typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSNVPROC) (GLsizei n, GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKNVPROC) (GLenum mode, GLuint id); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindTransformFeedbackNV (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteTransformFeedbacksNV (GLsizei n, const GLuint *ids); +GLAPI void APIENTRY glGenTransformFeedbacksNV (GLsizei n, GLuint *ids); +GLAPI GLboolean APIENTRY glIsTransformFeedbackNV (GLuint id); +GLAPI void APIENTRY glPauseTransformFeedbackNV (void); +GLAPI void APIENTRY glResumeTransformFeedbackNV (void); +GLAPI void APIENTRY glDrawTransformFeedbackNV (GLenum mode, GLuint id); +#endif +#endif /* GL_NV_transform_feedback2 */ + +#ifndef GL_NV_uniform_buffer_unified_memory +#define GL_NV_uniform_buffer_unified_memory 1 +#define GL_UNIFORM_BUFFER_UNIFIED_NV 0x936E +#define GL_UNIFORM_BUFFER_ADDRESS_NV 0x936F +#define GL_UNIFORM_BUFFER_LENGTH_NV 0x9370 +#endif /* GL_NV_uniform_buffer_unified_memory */ + +#ifndef GL_NV_vdpau_interop +#define GL_NV_vdpau_interop 1 +typedef GLintptr GLvdpauSurfaceNV; +#define GL_SURFACE_STATE_NV 0x86EB +#define GL_SURFACE_REGISTERED_NV 0x86FD +#define GL_SURFACE_MAPPED_NV 0x8700 +#define GL_WRITE_DISCARD_NV 0x88BE +typedef void (APIENTRYP PFNGLVDPAUINITNVPROC) (const void *vdpDevice, const void *getProcAddress); +typedef void (APIENTRYP PFNGLVDPAUFININVPROC) (void); +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTERVIDEOSURFACENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTEROUTPUTSURFACENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +typedef GLboolean (APIENTRYP PFNGLVDPAUISSURFACENVPROC) (GLvdpauSurfaceNV surface); +typedef void (APIENTRYP PFNGLVDPAUUNREGISTERSURFACENVPROC) (GLvdpauSurfaceNV surface); +typedef void (APIENTRYP PFNGLVDPAUGETSURFACEIVNVPROC) (GLvdpauSurfaceNV surface, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +typedef void (APIENTRYP PFNGLVDPAUSURFACEACCESSNVPROC) (GLvdpauSurfaceNV surface, GLenum access); +typedef void (APIENTRYP PFNGLVDPAUMAPSURFACESNVPROC) (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces); +typedef void (APIENTRYP PFNGLVDPAUUNMAPSURFACESNVPROC) (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVDPAUInitNV (const void *vdpDevice, const void *getProcAddress); +GLAPI void APIENTRY glVDPAUFiniNV (void); +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterVideoSurfaceNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterOutputSurfaceNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +GLAPI GLboolean APIENTRY glVDPAUIsSurfaceNV (GLvdpauSurfaceNV surface); +GLAPI void APIENTRY glVDPAUUnregisterSurfaceNV (GLvdpauSurfaceNV surface); +GLAPI void APIENTRY glVDPAUGetSurfaceivNV (GLvdpauSurfaceNV surface, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +GLAPI void APIENTRY glVDPAUSurfaceAccessNV (GLvdpauSurfaceNV surface, GLenum access); +GLAPI void APIENTRY glVDPAUMapSurfacesNV (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces); +GLAPI void APIENTRY glVDPAUUnmapSurfacesNV (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces); +#endif +#endif /* GL_NV_vdpau_interop */ + +#ifndef GL_NV_vdpau_interop2 +#define GL_NV_vdpau_interop2 1 +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTERVIDEOSURFACEWITHPICTURESTRUCTURENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames, GLboolean isFrameStructure); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterVideoSurfaceWithPictureStructureNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames, GLboolean isFrameStructure); +#endif +#endif /* GL_NV_vdpau_interop2 */ + +#ifndef GL_NV_vertex_array_range +#define GL_NV_vertex_array_range 1 +#define GL_VERTEX_ARRAY_RANGE_NV 0x851D +#define GL_VERTEX_ARRAY_RANGE_LENGTH_NV 0x851E +#define GL_VERTEX_ARRAY_RANGE_VALID_NV 0x851F +#define GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV 0x8520 +#define GL_VERTEX_ARRAY_RANGE_POINTER_NV 0x8521 +typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGENVPROC) (void); +typedef void (APIENTRYP PFNGLVERTEXARRAYRANGENVPROC) (GLsizei length, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushVertexArrayRangeNV (void); +GLAPI void APIENTRY glVertexArrayRangeNV (GLsizei length, const void *pointer); +#endif +#endif /* GL_NV_vertex_array_range */ + +#ifndef GL_NV_vertex_array_range2 +#define GL_NV_vertex_array_range2 1 +#define GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV 0x8533 +#endif /* GL_NV_vertex_array_range2 */ + +#ifndef GL_NV_vertex_attrib_integer_64bit +#define GL_NV_vertex_attrib_integer_64bit 1 +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1I64NVPROC) (GLuint index, GLint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64NVPROC) (GLuint index, GLuint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLI64VNVPROC) (GLuint index, GLenum pname, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLUI64VNVPROC) (GLuint index, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribL1i64NV (GLuint index, GLint64EXT x); +GLAPI void APIENTRY glVertexAttribL2i64NV (GLuint index, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glVertexAttribL3i64NV (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glVertexAttribL4i64NV (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glVertexAttribL1i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL2i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL3i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL4i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL1ui64NV (GLuint index, GLuint64EXT x); +GLAPI void APIENTRY glVertexAttribL2ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glVertexAttribL3ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glVertexAttribL4ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glVertexAttribL1ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL2ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL3ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL4ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glGetVertexAttribLi64vNV (GLuint index, GLenum pname, GLint64EXT *params); +GLAPI void APIENTRY glGetVertexAttribLui64vNV (GLuint index, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glVertexAttribLFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride); +#endif +#endif /* GL_NV_vertex_attrib_integer_64bit */ + +#ifndef GL_NV_vertex_buffer_unified_memory +#define GL_NV_vertex_buffer_unified_memory 1 +#define GL_VERTEX_ATTRIB_ARRAY_UNIFIED_NV 0x8F1E +#define GL_ELEMENT_ARRAY_UNIFIED_NV 0x8F1F +#define GL_VERTEX_ATTRIB_ARRAY_ADDRESS_NV 0x8F20 +#define GL_VERTEX_ARRAY_ADDRESS_NV 0x8F21 +#define GL_NORMAL_ARRAY_ADDRESS_NV 0x8F22 +#define GL_COLOR_ARRAY_ADDRESS_NV 0x8F23 +#define GL_INDEX_ARRAY_ADDRESS_NV 0x8F24 +#define GL_TEXTURE_COORD_ARRAY_ADDRESS_NV 0x8F25 +#define GL_EDGE_FLAG_ARRAY_ADDRESS_NV 0x8F26 +#define GL_SECONDARY_COLOR_ARRAY_ADDRESS_NV 0x8F27 +#define GL_FOG_COORD_ARRAY_ADDRESS_NV 0x8F28 +#define GL_ELEMENT_ARRAY_ADDRESS_NV 0x8F29 +#define GL_VERTEX_ATTRIB_ARRAY_LENGTH_NV 0x8F2A +#define GL_VERTEX_ARRAY_LENGTH_NV 0x8F2B +#define GL_NORMAL_ARRAY_LENGTH_NV 0x8F2C +#define GL_COLOR_ARRAY_LENGTH_NV 0x8F2D +#define GL_INDEX_ARRAY_LENGTH_NV 0x8F2E +#define GL_TEXTURE_COORD_ARRAY_LENGTH_NV 0x8F2F +#define GL_EDGE_FLAG_ARRAY_LENGTH_NV 0x8F30 +#define GL_SECONDARY_COLOR_ARRAY_LENGTH_NV 0x8F31 +#define GL_FOG_COORD_ARRAY_LENGTH_NV 0x8F32 +#define GL_ELEMENT_ARRAY_LENGTH_NV 0x8F33 +#define GL_DRAW_INDIRECT_UNIFIED_NV 0x8F40 +#define GL_DRAW_INDIRECT_ADDRESS_NV 0x8F41 +#define GL_DRAW_INDIRECT_LENGTH_NV 0x8F42 +typedef void (APIENTRYP PFNGLBUFFERADDRESSRANGENVPROC) (GLenum pname, GLuint index, GLuint64EXT address, GLsizeiptr length); +typedef void (APIENTRYP PFNGLVERTEXFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLNORMALFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLINDEXFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLTEXCOORDFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLEDGEFLAGFORMATNVPROC) (GLsizei stride); +typedef void (APIENTRYP PFNGLSECONDARYCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLFOGCOORDFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLGETINTEGERUI64I_VNVPROC) (GLenum value, GLuint index, GLuint64EXT *result); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferAddressRangeNV (GLenum pname, GLuint index, GLuint64EXT address, GLsizeiptr length); +GLAPI void APIENTRY glVertexFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glNormalFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glColorFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glIndexFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glTexCoordFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glEdgeFlagFormatNV (GLsizei stride); +GLAPI void APIENTRY glSecondaryColorFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glFogCoordFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glVertexAttribFormatNV (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride); +GLAPI void APIENTRY glVertexAttribIFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glGetIntegerui64i_vNV (GLenum value, GLuint index, GLuint64EXT *result); +#endif +#endif /* GL_NV_vertex_buffer_unified_memory */ + +#ifndef GL_NV_vertex_program +#define GL_NV_vertex_program 1 +#define GL_VERTEX_PROGRAM_NV 0x8620 +#define GL_VERTEX_STATE_PROGRAM_NV 0x8621 +#define GL_ATTRIB_ARRAY_SIZE_NV 0x8623 +#define GL_ATTRIB_ARRAY_STRIDE_NV 0x8624 +#define GL_ATTRIB_ARRAY_TYPE_NV 0x8625 +#define GL_CURRENT_ATTRIB_NV 0x8626 +#define GL_PROGRAM_LENGTH_NV 0x8627 +#define GL_PROGRAM_STRING_NV 0x8628 +#define GL_MODELVIEW_PROJECTION_NV 0x8629 +#define GL_IDENTITY_NV 0x862A +#define GL_INVERSE_NV 0x862B +#define GL_TRANSPOSE_NV 0x862C +#define GL_INVERSE_TRANSPOSE_NV 0x862D +#define GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV 0x862E +#define GL_MAX_TRACK_MATRICES_NV 0x862F +#define GL_MATRIX0_NV 0x8630 +#define GL_MATRIX1_NV 0x8631 +#define GL_MATRIX2_NV 0x8632 +#define GL_MATRIX3_NV 0x8633 +#define GL_MATRIX4_NV 0x8634 +#define GL_MATRIX5_NV 0x8635 +#define GL_MATRIX6_NV 0x8636 +#define GL_MATRIX7_NV 0x8637 +#define GL_CURRENT_MATRIX_STACK_DEPTH_NV 0x8640 +#define GL_CURRENT_MATRIX_NV 0x8641 +#define GL_VERTEX_PROGRAM_POINT_SIZE_NV 0x8642 +#define GL_VERTEX_PROGRAM_TWO_SIDE_NV 0x8643 +#define GL_PROGRAM_PARAMETER_NV 0x8644 +#define GL_ATTRIB_ARRAY_POINTER_NV 0x8645 +#define GL_PROGRAM_TARGET_NV 0x8646 +#define GL_PROGRAM_RESIDENT_NV 0x8647 +#define GL_TRACK_MATRIX_NV 0x8648 +#define GL_TRACK_MATRIX_TRANSFORM_NV 0x8649 +#define GL_VERTEX_PROGRAM_BINDING_NV 0x864A +#define GL_PROGRAM_ERROR_POSITION_NV 0x864B +#define GL_VERTEX_ATTRIB_ARRAY0_NV 0x8650 +#define GL_VERTEX_ATTRIB_ARRAY1_NV 0x8651 +#define GL_VERTEX_ATTRIB_ARRAY2_NV 0x8652 +#define GL_VERTEX_ATTRIB_ARRAY3_NV 0x8653 +#define GL_VERTEX_ATTRIB_ARRAY4_NV 0x8654 +#define GL_VERTEX_ATTRIB_ARRAY5_NV 0x8655 +#define GL_VERTEX_ATTRIB_ARRAY6_NV 0x8656 +#define GL_VERTEX_ATTRIB_ARRAY7_NV 0x8657 +#define GL_VERTEX_ATTRIB_ARRAY8_NV 0x8658 +#define GL_VERTEX_ATTRIB_ARRAY9_NV 0x8659 +#define GL_VERTEX_ATTRIB_ARRAY10_NV 0x865A +#define GL_VERTEX_ATTRIB_ARRAY11_NV 0x865B +#define GL_VERTEX_ATTRIB_ARRAY12_NV 0x865C +#define GL_VERTEX_ATTRIB_ARRAY13_NV 0x865D +#define GL_VERTEX_ATTRIB_ARRAY14_NV 0x865E +#define GL_VERTEX_ATTRIB_ARRAY15_NV 0x865F +#define GL_MAP1_VERTEX_ATTRIB0_4_NV 0x8660 +#define GL_MAP1_VERTEX_ATTRIB1_4_NV 0x8661 +#define GL_MAP1_VERTEX_ATTRIB2_4_NV 0x8662 +#define GL_MAP1_VERTEX_ATTRIB3_4_NV 0x8663 +#define GL_MAP1_VERTEX_ATTRIB4_4_NV 0x8664 +#define GL_MAP1_VERTEX_ATTRIB5_4_NV 0x8665 +#define GL_MAP1_VERTEX_ATTRIB6_4_NV 0x8666 +#define GL_MAP1_VERTEX_ATTRIB7_4_NV 0x8667 +#define GL_MAP1_VERTEX_ATTRIB8_4_NV 0x8668 +#define GL_MAP1_VERTEX_ATTRIB9_4_NV 0x8669 +#define GL_MAP1_VERTEX_ATTRIB10_4_NV 0x866A +#define GL_MAP1_VERTEX_ATTRIB11_4_NV 0x866B +#define GL_MAP1_VERTEX_ATTRIB12_4_NV 0x866C +#define GL_MAP1_VERTEX_ATTRIB13_4_NV 0x866D +#define GL_MAP1_VERTEX_ATTRIB14_4_NV 0x866E +#define GL_MAP1_VERTEX_ATTRIB15_4_NV 0x866F +#define GL_MAP2_VERTEX_ATTRIB0_4_NV 0x8670 +#define GL_MAP2_VERTEX_ATTRIB1_4_NV 0x8671 +#define GL_MAP2_VERTEX_ATTRIB2_4_NV 0x8672 +#define GL_MAP2_VERTEX_ATTRIB3_4_NV 0x8673 +#define GL_MAP2_VERTEX_ATTRIB4_4_NV 0x8674 +#define GL_MAP2_VERTEX_ATTRIB5_4_NV 0x8675 +#define GL_MAP2_VERTEX_ATTRIB6_4_NV 0x8676 +#define GL_MAP2_VERTEX_ATTRIB7_4_NV 0x8677 +#define GL_MAP2_VERTEX_ATTRIB8_4_NV 0x8678 +#define GL_MAP2_VERTEX_ATTRIB9_4_NV 0x8679 +#define GL_MAP2_VERTEX_ATTRIB10_4_NV 0x867A +#define GL_MAP2_VERTEX_ATTRIB11_4_NV 0x867B +#define GL_MAP2_VERTEX_ATTRIB12_4_NV 0x867C +#define GL_MAP2_VERTEX_ATTRIB13_4_NV 0x867D +#define GL_MAP2_VERTEX_ATTRIB14_4_NV 0x867E +#define GL_MAP2_VERTEX_ATTRIB15_4_NV 0x867F +typedef GLboolean (APIENTRYP PFNGLAREPROGRAMSRESIDENTNVPROC) (GLsizei n, const GLuint *programs, GLboolean *residences); +typedef void (APIENTRYP PFNGLBINDPROGRAMNVPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETEPROGRAMSNVPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLEXECUTEPROGRAMNVPROC) (GLenum target, GLuint id, const GLfloat *params); +typedef void (APIENTRYP PFNGLGENPROGRAMSNVPROC) (GLsizei n, GLuint *programs); +typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERDVNVPROC) (GLenum target, GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMIVNVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGNVPROC) (GLuint id, GLenum pname, GLubyte *program); +typedef void (APIENTRYP PFNGLGETTRACKMATRIXIVNVPROC) (GLenum target, GLuint address, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVNVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVNVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVNVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVNVPROC) (GLuint index, GLenum pname, void **pointer); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLLOADPROGRAMNVPROC) (GLenum target, GLuint id, GLsizei len, const GLubyte *program); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DNVPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DVNVPROC) (GLenum target, GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FNVPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FVNVPROC) (GLenum target, GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4DVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4FVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLREQUESTRESIDENTPROGRAMSNVPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLTRACKMATRIXNVPROC) (GLenum target, GLuint address, GLenum matrix, GLenum transform); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERNVPROC) (GLuint index, GLint fsize, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DNVPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FNVPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SNVPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DNVPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FNVPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SNVPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBNVPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVNVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4UBVNVPROC) (GLuint index, GLsizei count, const GLubyte *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAreProgramsResidentNV (GLsizei n, const GLuint *programs, GLboolean *residences); +GLAPI void APIENTRY glBindProgramNV (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteProgramsNV (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glExecuteProgramNV (GLenum target, GLuint id, const GLfloat *params); +GLAPI void APIENTRY glGenProgramsNV (GLsizei n, GLuint *programs); +GLAPI void APIENTRY glGetProgramParameterdvNV (GLenum target, GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetProgramParameterfvNV (GLenum target, GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetProgramivNV (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramStringNV (GLuint id, GLenum pname, GLubyte *program); +GLAPI void APIENTRY glGetTrackMatrixivNV (GLenum target, GLuint address, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribdvNV (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfvNV (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribivNV (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointervNV (GLuint index, GLenum pname, void **pointer); +GLAPI GLboolean APIENTRY glIsProgramNV (GLuint id); +GLAPI void APIENTRY glLoadProgramNV (GLenum target, GLuint id, GLsizei len, const GLubyte *program); +GLAPI void APIENTRY glProgramParameter4dNV (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramParameter4dvNV (GLenum target, GLuint index, const GLdouble *v); +GLAPI void APIENTRY glProgramParameter4fNV (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramParameter4fvNV (GLenum target, GLuint index, const GLfloat *v); +GLAPI void APIENTRY glProgramParameters4dvNV (GLenum target, GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glProgramParameters4fvNV (GLenum target, GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glRequestResidentProgramsNV (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glTrackMatrixNV (GLenum target, GLuint address, GLenum matrix, GLenum transform); +GLAPI void APIENTRY glVertexAttribPointerNV (GLuint index, GLint fsize, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glVertexAttrib1dNV (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1fNV (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1sNV (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2dNV (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2fNV (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2sNV (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3dNV (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3fNV (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3sNV (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4dNV (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4fNV (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4sNV (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubNV (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4ubvNV (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribs1dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs1fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs1svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs2dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs2fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs2svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs3dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs3fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs3svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs4dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs4fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs4svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs4ubvNV (GLuint index, GLsizei count, const GLubyte *v); +#endif +#endif /* GL_NV_vertex_program */ + +#ifndef GL_NV_vertex_program1_1 +#define GL_NV_vertex_program1_1 1 +#endif /* GL_NV_vertex_program1_1 */ + +#ifndef GL_NV_vertex_program2 +#define GL_NV_vertex_program2 1 +#endif /* GL_NV_vertex_program2 */ + +#ifndef GL_NV_vertex_program2_option +#define GL_NV_vertex_program2_option 1 +#endif /* GL_NV_vertex_program2_option */ + +#ifndef GL_NV_vertex_program3 +#define GL_NV_vertex_program3 1 +#endif /* GL_NV_vertex_program3 */ + +#ifndef GL_NV_vertex_program4 +#define GL_NV_vertex_program4 1 +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD +#endif /* GL_NV_vertex_program4 */ + +#ifndef GL_NV_video_capture +#define GL_NV_video_capture 1 +#define GL_VIDEO_BUFFER_NV 0x9020 +#define GL_VIDEO_BUFFER_BINDING_NV 0x9021 +#define GL_FIELD_UPPER_NV 0x9022 +#define GL_FIELD_LOWER_NV 0x9023 +#define GL_NUM_VIDEO_CAPTURE_STREAMS_NV 0x9024 +#define GL_NEXT_VIDEO_CAPTURE_BUFFER_STATUS_NV 0x9025 +#define GL_VIDEO_CAPTURE_TO_422_SUPPORTED_NV 0x9026 +#define GL_LAST_VIDEO_CAPTURE_STATUS_NV 0x9027 +#define GL_VIDEO_BUFFER_PITCH_NV 0x9028 +#define GL_VIDEO_COLOR_CONVERSION_MATRIX_NV 0x9029 +#define GL_VIDEO_COLOR_CONVERSION_MAX_NV 0x902A +#define GL_VIDEO_COLOR_CONVERSION_MIN_NV 0x902B +#define GL_VIDEO_COLOR_CONVERSION_OFFSET_NV 0x902C +#define GL_VIDEO_BUFFER_INTERNAL_FORMAT_NV 0x902D +#define GL_PARTIAL_SUCCESS_NV 0x902E +#define GL_SUCCESS_NV 0x902F +#define GL_FAILURE_NV 0x9030 +#define GL_YCBYCR8_422_NV 0x9031 +#define GL_YCBAYCR8A_4224_NV 0x9032 +#define GL_Z6Y10Z6CB10Z6Y10Z6CR10_422_NV 0x9033 +#define GL_Z6Y10Z6CB10Z6A10Z6Y10Z6CR10Z6A10_4224_NV 0x9034 +#define GL_Z4Y12Z4CB12Z4Y12Z4CR12_422_NV 0x9035 +#define GL_Z4Y12Z4CB12Z4A12Z4Y12Z4CR12Z4A12_4224_NV 0x9036 +#define GL_Z4Y12Z4CB12Z4CR12_444_NV 0x9037 +#define GL_VIDEO_CAPTURE_FRAME_WIDTH_NV 0x9038 +#define GL_VIDEO_CAPTURE_FRAME_HEIGHT_NV 0x9039 +#define GL_VIDEO_CAPTURE_FIELD_UPPER_HEIGHT_NV 0x903A +#define GL_VIDEO_CAPTURE_FIELD_LOWER_HEIGHT_NV 0x903B +#define GL_VIDEO_CAPTURE_SURFACE_ORIGIN_NV 0x903C +typedef void (APIENTRYP PFNGLBEGINVIDEOCAPTURENVPROC) (GLuint video_capture_slot); +typedef void (APIENTRYP PFNGLBINDVIDEOCAPTURESTREAMBUFFERNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLintptrARB offset); +typedef void (APIENTRYP PFNGLBINDVIDEOCAPTURESTREAMTEXTURENVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLENDVIDEOCAPTURENVPROC) (GLuint video_capture_slot); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTUREIVNVPROC) (GLuint video_capture_slot, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLdouble *params); +typedef GLenum (APIENTRYP PFNGLVIDEOCAPTURENVPROC) (GLuint video_capture_slot, GLuint *sequence_num, GLuint64EXT *capture_time); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLdouble *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginVideoCaptureNV (GLuint video_capture_slot); +GLAPI void APIENTRY glBindVideoCaptureStreamBufferNV (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLintptrARB offset); +GLAPI void APIENTRY glBindVideoCaptureStreamTextureNV (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLenum target, GLuint texture); +GLAPI void APIENTRY glEndVideoCaptureNV (GLuint video_capture_slot); +GLAPI void APIENTRY glGetVideoCaptureivNV (GLuint video_capture_slot, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideoCaptureStreamivNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideoCaptureStreamfvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVideoCaptureStreamdvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLdouble *params); +GLAPI GLenum APIENTRY glVideoCaptureNV (GLuint video_capture_slot, GLuint *sequence_num, GLuint64EXT *capture_time); +GLAPI void APIENTRY glVideoCaptureStreamParameterivNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLint *params); +GLAPI void APIENTRY glVideoCaptureStreamParameterfvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glVideoCaptureStreamParameterdvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLdouble *params); +#endif +#endif /* GL_NV_video_capture */ + +#ifndef GL_NV_viewport_array2 +#define GL_NV_viewport_array2 1 +#endif /* GL_NV_viewport_array2 */ + +#ifndef GL_NV_viewport_swizzle +#define GL_NV_viewport_swizzle 1 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_X_NV 0x9350 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_X_NV 0x9351 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Y_NV 0x9352 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Y_NV 0x9353 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Z_NV 0x9354 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Z_NV 0x9355 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_W_NV 0x9356 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_W_NV 0x9357 +#define GL_VIEWPORT_SWIZZLE_X_NV 0x9358 +#define GL_VIEWPORT_SWIZZLE_Y_NV 0x9359 +#define GL_VIEWPORT_SWIZZLE_Z_NV 0x935A +#define GL_VIEWPORT_SWIZZLE_W_NV 0x935B +typedef void (APIENTRYP PFNGLVIEWPORTSWIZZLENVPROC) (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glViewportSwizzleNV (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#endif +#endif /* GL_NV_viewport_swizzle */ + +#ifndef GL_OML_interlace +#define GL_OML_interlace 1 +#define GL_INTERLACE_OML 0x8980 +#define GL_INTERLACE_READ_OML 0x8981 +#endif /* GL_OML_interlace */ + +#ifndef GL_OML_resample +#define GL_OML_resample 1 +#define GL_PACK_RESAMPLE_OML 0x8984 +#define GL_UNPACK_RESAMPLE_OML 0x8985 +#define GL_RESAMPLE_REPLICATE_OML 0x8986 +#define GL_RESAMPLE_ZERO_FILL_OML 0x8987 +#define GL_RESAMPLE_AVERAGE_OML 0x8988 +#define GL_RESAMPLE_DECIMATE_OML 0x8989 +#endif /* GL_OML_resample */ + +#ifndef GL_OML_subsample +#define GL_OML_subsample 1 +#define GL_FORMAT_SUBSAMPLE_24_24_OML 0x8982 +#define GL_FORMAT_SUBSAMPLE_244_244_OML 0x8983 +#endif /* GL_OML_subsample */ + +#ifndef GL_OVR_multiview +#define GL_OVR_multiview 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR 0x9630 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR 0x9632 +#define GL_MAX_VIEWS_OVR 0x9631 +#define GL_FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR 0x9633 +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferTextureMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview */ + +#ifndef GL_OVR_multiview2 +#define GL_OVR_multiview2 1 +#endif /* GL_OVR_multiview2 */ + +#ifndef GL_PGI_misc_hints +#define GL_PGI_misc_hints 1 +#define GL_PREFER_DOUBLEBUFFER_HINT_PGI 0x1A1F8 +#define GL_CONSERVE_MEMORY_HINT_PGI 0x1A1FD +#define GL_RECLAIM_MEMORY_HINT_PGI 0x1A1FE +#define GL_NATIVE_GRAPHICS_HANDLE_PGI 0x1A202 +#define GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI 0x1A203 +#define GL_NATIVE_GRAPHICS_END_HINT_PGI 0x1A204 +#define GL_ALWAYS_FAST_HINT_PGI 0x1A20C +#define GL_ALWAYS_SOFT_HINT_PGI 0x1A20D +#define GL_ALLOW_DRAW_OBJ_HINT_PGI 0x1A20E +#define GL_ALLOW_DRAW_WIN_HINT_PGI 0x1A20F +#define GL_ALLOW_DRAW_FRG_HINT_PGI 0x1A210 +#define GL_ALLOW_DRAW_MEM_HINT_PGI 0x1A211 +#define GL_STRICT_DEPTHFUNC_HINT_PGI 0x1A216 +#define GL_STRICT_LIGHTING_HINT_PGI 0x1A217 +#define GL_STRICT_SCISSOR_HINT_PGI 0x1A218 +#define GL_FULL_STIPPLE_HINT_PGI 0x1A219 +#define GL_CLIP_NEAR_HINT_PGI 0x1A220 +#define GL_CLIP_FAR_HINT_PGI 0x1A221 +#define GL_WIDE_LINE_HINT_PGI 0x1A222 +#define GL_BACK_NORMALS_HINT_PGI 0x1A223 +typedef void (APIENTRYP PFNGLHINTPGIPROC) (GLenum target, GLint mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glHintPGI (GLenum target, GLint mode); +#endif +#endif /* GL_PGI_misc_hints */ + +#ifndef GL_PGI_vertex_hints +#define GL_PGI_vertex_hints 1 +#define GL_VERTEX_DATA_HINT_PGI 0x1A22A +#define GL_VERTEX_CONSISTENT_HINT_PGI 0x1A22B +#define GL_MATERIAL_SIDE_HINT_PGI 0x1A22C +#define GL_MAX_VERTEX_HINT_PGI 0x1A22D +#define GL_COLOR3_BIT_PGI 0x00010000 +#define GL_COLOR4_BIT_PGI 0x00020000 +#define GL_EDGEFLAG_BIT_PGI 0x00040000 +#define GL_INDEX_BIT_PGI 0x00080000 +#define GL_MAT_AMBIENT_BIT_PGI 0x00100000 +#define GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI 0x00200000 +#define GL_MAT_DIFFUSE_BIT_PGI 0x00400000 +#define GL_MAT_EMISSION_BIT_PGI 0x00800000 +#define GL_MAT_COLOR_INDEXES_BIT_PGI 0x01000000 +#define GL_MAT_SHININESS_BIT_PGI 0x02000000 +#define GL_MAT_SPECULAR_BIT_PGI 0x04000000 +#define GL_NORMAL_BIT_PGI 0x08000000 +#define GL_TEXCOORD1_BIT_PGI 0x10000000 +#define GL_TEXCOORD2_BIT_PGI 0x20000000 +#define GL_TEXCOORD3_BIT_PGI 0x40000000 +#define GL_TEXCOORD4_BIT_PGI 0x80000000 +#define GL_VERTEX23_BIT_PGI 0x00000004 +#define GL_VERTEX4_BIT_PGI 0x00000008 +#endif /* GL_PGI_vertex_hints */ + +#ifndef GL_REND_screen_coordinates +#define GL_REND_screen_coordinates 1 +#define GL_SCREEN_COORDINATES_REND 0x8490 +#define GL_INVERTED_SCREEN_W_REND 0x8491 +#endif /* GL_REND_screen_coordinates */ + +#ifndef GL_S3_s3tc +#define GL_S3_s3tc 1 +#define GL_RGB_S3TC 0x83A0 +#define GL_RGB4_S3TC 0x83A1 +#define GL_RGBA_S3TC 0x83A2 +#define GL_RGBA4_S3TC 0x83A3 +#define GL_RGBA_DXT5_S3TC 0x83A4 +#define GL_RGBA4_DXT5_S3TC 0x83A5 +#endif /* GL_S3_s3tc */ + +#ifndef GL_SGIS_detail_texture +#define GL_SGIS_detail_texture 1 +#define GL_DETAIL_TEXTURE_2D_SGIS 0x8095 +#define GL_DETAIL_TEXTURE_2D_BINDING_SGIS 0x8096 +#define GL_LINEAR_DETAIL_SGIS 0x8097 +#define GL_LINEAR_DETAIL_ALPHA_SGIS 0x8098 +#define GL_LINEAR_DETAIL_COLOR_SGIS 0x8099 +#define GL_DETAIL_TEXTURE_LEVEL_SGIS 0x809A +#define GL_DETAIL_TEXTURE_MODE_SGIS 0x809B +#define GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS 0x809C +typedef void (APIENTRYP PFNGLDETAILTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETDETAILTEXFUNCSGISPROC) (GLenum target, GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDetailTexFuncSGIS (GLenum target, GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetDetailTexFuncSGIS (GLenum target, GLfloat *points); +#endif +#endif /* GL_SGIS_detail_texture */ + +#ifndef GL_SGIS_fog_function +#define GL_SGIS_fog_function 1 +#define GL_FOG_FUNC_SGIS 0x812A +#define GL_FOG_FUNC_POINTS_SGIS 0x812B +#define GL_MAX_FOG_FUNC_POINTS_SGIS 0x812C +typedef void (APIENTRYP PFNGLFOGFUNCSGISPROC) (GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETFOGFUNCSGISPROC) (GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFogFuncSGIS (GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetFogFuncSGIS (GLfloat *points); +#endif +#endif /* GL_SGIS_fog_function */ + +#ifndef GL_SGIS_generate_mipmap +#define GL_SGIS_generate_mipmap 1 +#define GL_GENERATE_MIPMAP_SGIS 0x8191 +#define GL_GENERATE_MIPMAP_HINT_SGIS 0x8192 +#endif /* GL_SGIS_generate_mipmap */ + +#ifndef GL_SGIS_multisample +#define GL_SGIS_multisample 1 +#define GL_MULTISAMPLE_SGIS 0x809D +#define GL_SAMPLE_ALPHA_TO_MASK_SGIS 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_SGIS 0x809F +#define GL_SAMPLE_MASK_SGIS 0x80A0 +#define GL_1PASS_SGIS 0x80A1 +#define GL_2PASS_0_SGIS 0x80A2 +#define GL_2PASS_1_SGIS 0x80A3 +#define GL_4PASS_0_SGIS 0x80A4 +#define GL_4PASS_1_SGIS 0x80A5 +#define GL_4PASS_2_SGIS 0x80A6 +#define GL_4PASS_3_SGIS 0x80A7 +#define GL_SAMPLE_BUFFERS_SGIS 0x80A8 +#define GL_SAMPLES_SGIS 0x80A9 +#define GL_SAMPLE_MASK_VALUE_SGIS 0x80AA +#define GL_SAMPLE_MASK_INVERT_SGIS 0x80AB +#define GL_SAMPLE_PATTERN_SGIS 0x80AC +typedef void (APIENTRYP PFNGLSAMPLEMASKSGISPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLSAMPLEPATTERNSGISPROC) (GLenum pattern); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleMaskSGIS (GLclampf value, GLboolean invert); +GLAPI void APIENTRY glSamplePatternSGIS (GLenum pattern); +#endif +#endif /* GL_SGIS_multisample */ + +#ifndef GL_SGIS_pixel_texture +#define GL_SGIS_pixel_texture 1 +#define GL_PIXEL_TEXTURE_SGIS 0x8353 +#define GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS 0x8354 +#define GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS 0x8355 +#define GL_PIXEL_GROUP_COLOR_SGIS 0x8356 +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERISGISPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFSGISPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTexGenParameteriSGIS (GLenum pname, GLint param); +GLAPI void APIENTRY glPixelTexGenParameterivSGIS (GLenum pname, const GLint *params); +GLAPI void APIENTRY glPixelTexGenParameterfSGIS (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPixelTexGenParameterfvSGIS (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetPixelTexGenParameterivSGIS (GLenum pname, GLint *params); +GLAPI void APIENTRY glGetPixelTexGenParameterfvSGIS (GLenum pname, GLfloat *params); +#endif +#endif /* GL_SGIS_pixel_texture */ + +#ifndef GL_SGIS_point_line_texgen +#define GL_SGIS_point_line_texgen 1 +#define GL_EYE_DISTANCE_TO_POINT_SGIS 0x81F0 +#define GL_OBJECT_DISTANCE_TO_POINT_SGIS 0x81F1 +#define GL_EYE_DISTANCE_TO_LINE_SGIS 0x81F2 +#define GL_OBJECT_DISTANCE_TO_LINE_SGIS 0x81F3 +#define GL_EYE_POINT_SGIS 0x81F4 +#define GL_OBJECT_POINT_SGIS 0x81F5 +#define GL_EYE_LINE_SGIS 0x81F6 +#define GL_OBJECT_LINE_SGIS 0x81F7 +#endif /* GL_SGIS_point_line_texgen */ + +#ifndef GL_SGIS_point_parameters +#define GL_SGIS_point_parameters 1 +#define GL_POINT_SIZE_MIN_SGIS 0x8126 +#define GL_POINT_SIZE_MAX_SGIS 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_SGIS 0x8128 +#define GL_DISTANCE_ATTENUATION_SGIS 0x8129 +typedef void (APIENTRYP PFNGLPOINTPARAMETERFSGISPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfSGIS (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvSGIS (GLenum pname, const GLfloat *params); +#endif +#endif /* GL_SGIS_point_parameters */ + +#ifndef GL_SGIS_sharpen_texture +#define GL_SGIS_sharpen_texture 1 +#define GL_LINEAR_SHARPEN_SGIS 0x80AD +#define GL_LINEAR_SHARPEN_ALPHA_SGIS 0x80AE +#define GL_LINEAR_SHARPEN_COLOR_SGIS 0x80AF +#define GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS 0x80B0 +typedef void (APIENTRYP PFNGLSHARPENTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETSHARPENTEXFUNCSGISPROC) (GLenum target, GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSharpenTexFuncSGIS (GLenum target, GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetSharpenTexFuncSGIS (GLenum target, GLfloat *points); +#endif +#endif /* GL_SGIS_sharpen_texture */ + +#ifndef GL_SGIS_texture4D +#define GL_SGIS_texture4D 1 +#define GL_PACK_SKIP_VOLUMES_SGIS 0x8130 +#define GL_PACK_IMAGE_DEPTH_SGIS 0x8131 +#define GL_UNPACK_SKIP_VOLUMES_SGIS 0x8132 +#define GL_UNPACK_IMAGE_DEPTH_SGIS 0x8133 +#define GL_TEXTURE_4D_SGIS 0x8134 +#define GL_PROXY_TEXTURE_4D_SGIS 0x8135 +#define GL_TEXTURE_4DSIZE_SGIS 0x8136 +#define GL_TEXTURE_WRAP_Q_SGIS 0x8137 +#define GL_MAX_4D_TEXTURE_SIZE_SGIS 0x8138 +#define GL_TEXTURE_4D_BINDING_SGIS 0x814F +typedef void (APIENTRYP PFNGLTEXIMAGE4DSGISPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE4DSGISPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const void *pixels); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage4DSGIS (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage4DSGIS (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const void *pixels); +#endif +#endif /* GL_SGIS_texture4D */ + +#ifndef GL_SGIS_texture_border_clamp +#define GL_SGIS_texture_border_clamp 1 +#define GL_CLAMP_TO_BORDER_SGIS 0x812D +#endif /* GL_SGIS_texture_border_clamp */ + +#ifndef GL_SGIS_texture_color_mask +#define GL_SGIS_texture_color_mask 1 +#define GL_TEXTURE_COLOR_WRITEMASK_SGIS 0x81EF +typedef void (APIENTRYP PFNGLTEXTURECOLORMASKSGISPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureColorMaskSGIS (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +#endif +#endif /* GL_SGIS_texture_color_mask */ + +#ifndef GL_SGIS_texture_edge_clamp +#define GL_SGIS_texture_edge_clamp 1 +#define GL_CLAMP_TO_EDGE_SGIS 0x812F +#endif /* GL_SGIS_texture_edge_clamp */ + +#ifndef GL_SGIS_texture_filter4 +#define GL_SGIS_texture_filter4 1 +#define GL_FILTER4_SGIS 0x8146 +#define GL_TEXTURE_FILTER4_SIZE_SGIS 0x8147 +typedef void (APIENTRYP PFNGLGETTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLfloat *weights); +typedef void (APIENTRYP PFNGLTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetTexFilterFuncSGIS (GLenum target, GLenum filter, GLfloat *weights); +GLAPI void APIENTRY glTexFilterFuncSGIS (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights); +#endif +#endif /* GL_SGIS_texture_filter4 */ + +#ifndef GL_SGIS_texture_lod +#define GL_SGIS_texture_lod 1 +#define GL_TEXTURE_MIN_LOD_SGIS 0x813A +#define GL_TEXTURE_MAX_LOD_SGIS 0x813B +#define GL_TEXTURE_BASE_LEVEL_SGIS 0x813C +#define GL_TEXTURE_MAX_LEVEL_SGIS 0x813D +#endif /* GL_SGIS_texture_lod */ + +#ifndef GL_SGIS_texture_select +#define GL_SGIS_texture_select 1 +#define GL_DUAL_ALPHA4_SGIS 0x8110 +#define GL_DUAL_ALPHA8_SGIS 0x8111 +#define GL_DUAL_ALPHA12_SGIS 0x8112 +#define GL_DUAL_ALPHA16_SGIS 0x8113 +#define GL_DUAL_LUMINANCE4_SGIS 0x8114 +#define GL_DUAL_LUMINANCE8_SGIS 0x8115 +#define GL_DUAL_LUMINANCE12_SGIS 0x8116 +#define GL_DUAL_LUMINANCE16_SGIS 0x8117 +#define GL_DUAL_INTENSITY4_SGIS 0x8118 +#define GL_DUAL_INTENSITY8_SGIS 0x8119 +#define GL_DUAL_INTENSITY12_SGIS 0x811A +#define GL_DUAL_INTENSITY16_SGIS 0x811B +#define GL_DUAL_LUMINANCE_ALPHA4_SGIS 0x811C +#define GL_DUAL_LUMINANCE_ALPHA8_SGIS 0x811D +#define GL_QUAD_ALPHA4_SGIS 0x811E +#define GL_QUAD_ALPHA8_SGIS 0x811F +#define GL_QUAD_LUMINANCE4_SGIS 0x8120 +#define GL_QUAD_LUMINANCE8_SGIS 0x8121 +#define GL_QUAD_INTENSITY4_SGIS 0x8122 +#define GL_QUAD_INTENSITY8_SGIS 0x8123 +#define GL_DUAL_TEXTURE_SELECT_SGIS 0x8124 +#define GL_QUAD_TEXTURE_SELECT_SGIS 0x8125 +#endif /* GL_SGIS_texture_select */ + +#ifndef GL_SGIX_async +#define GL_SGIX_async 1 +#define GL_ASYNC_MARKER_SGIX 0x8329 +typedef void (APIENTRYP PFNGLASYNCMARKERSGIXPROC) (GLuint marker); +typedef GLint (APIENTRYP PFNGLFINISHASYNCSGIXPROC) (GLuint *markerp); +typedef GLint (APIENTRYP PFNGLPOLLASYNCSGIXPROC) (GLuint *markerp); +typedef GLuint (APIENTRYP PFNGLGENASYNCMARKERSSGIXPROC) (GLsizei range); +typedef void (APIENTRYP PFNGLDELETEASYNCMARKERSSGIXPROC) (GLuint marker, GLsizei range); +typedef GLboolean (APIENTRYP PFNGLISASYNCMARKERSGIXPROC) (GLuint marker); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAsyncMarkerSGIX (GLuint marker); +GLAPI GLint APIENTRY glFinishAsyncSGIX (GLuint *markerp); +GLAPI GLint APIENTRY glPollAsyncSGIX (GLuint *markerp); +GLAPI GLuint APIENTRY glGenAsyncMarkersSGIX (GLsizei range); +GLAPI void APIENTRY glDeleteAsyncMarkersSGIX (GLuint marker, GLsizei range); +GLAPI GLboolean APIENTRY glIsAsyncMarkerSGIX (GLuint marker); +#endif +#endif /* GL_SGIX_async */ + +#ifndef GL_SGIX_async_histogram +#define GL_SGIX_async_histogram 1 +#define GL_ASYNC_HISTOGRAM_SGIX 0x832C +#define GL_MAX_ASYNC_HISTOGRAM_SGIX 0x832D +#endif /* GL_SGIX_async_histogram */ + +#ifndef GL_SGIX_async_pixel +#define GL_SGIX_async_pixel 1 +#define GL_ASYNC_TEX_IMAGE_SGIX 0x835C +#define GL_ASYNC_DRAW_PIXELS_SGIX 0x835D +#define GL_ASYNC_READ_PIXELS_SGIX 0x835E +#define GL_MAX_ASYNC_TEX_IMAGE_SGIX 0x835F +#define GL_MAX_ASYNC_DRAW_PIXELS_SGIX 0x8360 +#define GL_MAX_ASYNC_READ_PIXELS_SGIX 0x8361 +#endif /* GL_SGIX_async_pixel */ + +#ifndef GL_SGIX_blend_alpha_minmax +#define GL_SGIX_blend_alpha_minmax 1 +#define GL_ALPHA_MIN_SGIX 0x8320 +#define GL_ALPHA_MAX_SGIX 0x8321 +#endif /* GL_SGIX_blend_alpha_minmax */ + +#ifndef GL_SGIX_calligraphic_fragment +#define GL_SGIX_calligraphic_fragment 1 +#define GL_CALLIGRAPHIC_FRAGMENT_SGIX 0x8183 +#endif /* GL_SGIX_calligraphic_fragment */ + +#ifndef GL_SGIX_clipmap +#define GL_SGIX_clipmap 1 +#define GL_LINEAR_CLIPMAP_LINEAR_SGIX 0x8170 +#define GL_TEXTURE_CLIPMAP_CENTER_SGIX 0x8171 +#define GL_TEXTURE_CLIPMAP_FRAME_SGIX 0x8172 +#define GL_TEXTURE_CLIPMAP_OFFSET_SGIX 0x8173 +#define GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8174 +#define GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX 0x8175 +#define GL_TEXTURE_CLIPMAP_DEPTH_SGIX 0x8176 +#define GL_MAX_CLIPMAP_DEPTH_SGIX 0x8177 +#define GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8178 +#define GL_NEAREST_CLIPMAP_NEAREST_SGIX 0x844D +#define GL_NEAREST_CLIPMAP_LINEAR_SGIX 0x844E +#define GL_LINEAR_CLIPMAP_NEAREST_SGIX 0x844F +#endif /* GL_SGIX_clipmap */ + +#ifndef GL_SGIX_convolution_accuracy +#define GL_SGIX_convolution_accuracy 1 +#define GL_CONVOLUTION_HINT_SGIX 0x8316 +#endif /* GL_SGIX_convolution_accuracy */ + +#ifndef GL_SGIX_depth_pass_instrument +#define GL_SGIX_depth_pass_instrument 1 +#endif /* GL_SGIX_depth_pass_instrument */ + +#ifndef GL_SGIX_depth_texture +#define GL_SGIX_depth_texture 1 +#define GL_DEPTH_COMPONENT16_SGIX 0x81A5 +#define GL_DEPTH_COMPONENT24_SGIX 0x81A6 +#define GL_DEPTH_COMPONENT32_SGIX 0x81A7 +#endif /* GL_SGIX_depth_texture */ + +#ifndef GL_SGIX_flush_raster +#define GL_SGIX_flush_raster 1 +typedef void (APIENTRYP PFNGLFLUSHRASTERSGIXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushRasterSGIX (void); +#endif +#endif /* GL_SGIX_flush_raster */ + +#ifndef GL_SGIX_fog_offset +#define GL_SGIX_fog_offset 1 +#define GL_FOG_OFFSET_SGIX 0x8198 +#define GL_FOG_OFFSET_VALUE_SGIX 0x8199 +#endif /* GL_SGIX_fog_offset */ + +#ifndef GL_SGIX_fragment_lighting +#define GL_SGIX_fragment_lighting 1 +#define GL_FRAGMENT_LIGHTING_SGIX 0x8400 +#define GL_FRAGMENT_COLOR_MATERIAL_SGIX 0x8401 +#define GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX 0x8402 +#define GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX 0x8403 +#define GL_MAX_FRAGMENT_LIGHTS_SGIX 0x8404 +#define GL_MAX_ACTIVE_LIGHTS_SGIX 0x8405 +#define GL_CURRENT_RASTER_NORMAL_SGIX 0x8406 +#define GL_LIGHT_ENV_MODE_SGIX 0x8407 +#define GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX 0x8408 +#define GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX 0x8409 +#define GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX 0x840A +#define GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX 0x840B +#define GL_FRAGMENT_LIGHT0_SGIX 0x840C +#define GL_FRAGMENT_LIGHT1_SGIX 0x840D +#define GL_FRAGMENT_LIGHT2_SGIX 0x840E +#define GL_FRAGMENT_LIGHT3_SGIX 0x840F +#define GL_FRAGMENT_LIGHT4_SGIX 0x8410 +#define GL_FRAGMENT_LIGHT5_SGIX 0x8411 +#define GL_FRAGMENT_LIGHT6_SGIX 0x8412 +#define GL_FRAGMENT_LIGHT7_SGIX 0x8413 +typedef void (APIENTRYP PFNGLFRAGMENTCOLORMATERIALSGIXPROC) (GLenum face, GLenum mode); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFSGIXPROC) (GLenum light, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTISGIXPROC) (GLenum light, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFSGIXPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFVSGIXPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELISGIXPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELIVSGIXPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFSGIXPROC) (GLenum face, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALISGIXPROC) (GLenum face, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLLIGHTENVISGIXPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFragmentColorMaterialSGIX (GLenum face, GLenum mode); +GLAPI void APIENTRY glFragmentLightfSGIX (GLenum light, GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentLightfvSGIX (GLenum light, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentLightiSGIX (GLenum light, GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentLightivSGIX (GLenum light, GLenum pname, const GLint *params); +GLAPI void APIENTRY glFragmentLightModelfSGIX (GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentLightModelfvSGIX (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentLightModeliSGIX (GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentLightModelivSGIX (GLenum pname, const GLint *params); +GLAPI void APIENTRY glFragmentMaterialfSGIX (GLenum face, GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentMaterialfvSGIX (GLenum face, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentMaterialiSGIX (GLenum face, GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentMaterialivSGIX (GLenum face, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetFragmentLightfvSGIX (GLenum light, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFragmentLightivSGIX (GLenum light, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetFragmentMaterialfvSGIX (GLenum face, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFragmentMaterialivSGIX (GLenum face, GLenum pname, GLint *params); +GLAPI void APIENTRY glLightEnviSGIX (GLenum pname, GLint param); +#endif +#endif /* GL_SGIX_fragment_lighting */ + +#ifndef GL_SGIX_framezoom +#define GL_SGIX_framezoom 1 +#define GL_FRAMEZOOM_SGIX 0x818B +#define GL_FRAMEZOOM_FACTOR_SGIX 0x818C +#define GL_MAX_FRAMEZOOM_FACTOR_SGIX 0x818D +typedef void (APIENTRYP PFNGLFRAMEZOOMSGIXPROC) (GLint factor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFrameZoomSGIX (GLint factor); +#endif +#endif /* GL_SGIX_framezoom */ + +#ifndef GL_SGIX_igloo_interface +#define GL_SGIX_igloo_interface 1 +typedef void (APIENTRYP PFNGLIGLOOINTERFACESGIXPROC) (GLenum pname, const void *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIglooInterfaceSGIX (GLenum pname, const void *params); +#endif +#endif /* GL_SGIX_igloo_interface */ + +#ifndef GL_SGIX_instruments +#define GL_SGIX_instruments 1 +#define GL_INSTRUMENT_BUFFER_POINTER_SGIX 0x8180 +#define GL_INSTRUMENT_MEASUREMENTS_SGIX 0x8181 +typedef GLint (APIENTRYP PFNGLGETINSTRUMENTSSGIXPROC) (void); +typedef void (APIENTRYP PFNGLINSTRUMENTSBUFFERSGIXPROC) (GLsizei size, GLint *buffer); +typedef GLint (APIENTRYP PFNGLPOLLINSTRUMENTSSGIXPROC) (GLint *marker_p); +typedef void (APIENTRYP PFNGLREADINSTRUMENTSSGIXPROC) (GLint marker); +typedef void (APIENTRYP PFNGLSTARTINSTRUMENTSSGIXPROC) (void); +typedef void (APIENTRYP PFNGLSTOPINSTRUMENTSSGIXPROC) (GLint marker); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLint APIENTRY glGetInstrumentsSGIX (void); +GLAPI void APIENTRY glInstrumentsBufferSGIX (GLsizei size, GLint *buffer); +GLAPI GLint APIENTRY glPollInstrumentsSGIX (GLint *marker_p); +GLAPI void APIENTRY glReadInstrumentsSGIX (GLint marker); +GLAPI void APIENTRY glStartInstrumentsSGIX (void); +GLAPI void APIENTRY glStopInstrumentsSGIX (GLint marker); +#endif +#endif /* GL_SGIX_instruments */ + +#ifndef GL_SGIX_interlace +#define GL_SGIX_interlace 1 +#define GL_INTERLACE_SGIX 0x8094 +#endif /* GL_SGIX_interlace */ + +#ifndef GL_SGIX_ir_instrument1 +#define GL_SGIX_ir_instrument1 1 +#define GL_IR_INSTRUMENT1_SGIX 0x817F +#endif /* GL_SGIX_ir_instrument1 */ + +#ifndef GL_SGIX_list_priority +#define GL_SGIX_list_priority 1 +#define GL_LIST_PRIORITY_SGIX 0x8182 +typedef void (APIENTRYP PFNGLGETLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLLISTPARAMETERFSGIXPROC) (GLuint list, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLLISTPARAMETERISGIXPROC) (GLuint list, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, const GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetListParameterfvSGIX (GLuint list, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetListParameterivSGIX (GLuint list, GLenum pname, GLint *params); +GLAPI void APIENTRY glListParameterfSGIX (GLuint list, GLenum pname, GLfloat param); +GLAPI void APIENTRY glListParameterfvSGIX (GLuint list, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glListParameteriSGIX (GLuint list, GLenum pname, GLint param); +GLAPI void APIENTRY glListParameterivSGIX (GLuint list, GLenum pname, const GLint *params); +#endif +#endif /* GL_SGIX_list_priority */ + +#ifndef GL_SGIX_pixel_texture +#define GL_SGIX_pixel_texture 1 +#define GL_PIXEL_TEX_GEN_SGIX 0x8139 +#define GL_PIXEL_TEX_GEN_MODE_SGIX 0x832B +typedef void (APIENTRYP PFNGLPIXELTEXGENSGIXPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTexGenSGIX (GLenum mode); +#endif +#endif /* GL_SGIX_pixel_texture */ + +#ifndef GL_SGIX_pixel_tiles +#define GL_SGIX_pixel_tiles 1 +#define GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX 0x813E +#define GL_PIXEL_TILE_CACHE_INCREMENT_SGIX 0x813F +#define GL_PIXEL_TILE_WIDTH_SGIX 0x8140 +#define GL_PIXEL_TILE_HEIGHT_SGIX 0x8141 +#define GL_PIXEL_TILE_GRID_WIDTH_SGIX 0x8142 +#define GL_PIXEL_TILE_GRID_HEIGHT_SGIX 0x8143 +#define GL_PIXEL_TILE_GRID_DEPTH_SGIX 0x8144 +#define GL_PIXEL_TILE_CACHE_SIZE_SGIX 0x8145 +#endif /* GL_SGIX_pixel_tiles */ + +#ifndef GL_SGIX_polynomial_ffd +#define GL_SGIX_polynomial_ffd 1 +#define GL_TEXTURE_DEFORMATION_BIT_SGIX 0x00000001 +#define GL_GEOMETRY_DEFORMATION_BIT_SGIX 0x00000002 +#define GL_GEOMETRY_DEFORMATION_SGIX 0x8194 +#define GL_TEXTURE_DEFORMATION_SGIX 0x8195 +#define GL_DEFORMATIONS_MASK_SGIX 0x8196 +#define GL_MAX_DEFORMATION_ORDER_SGIX 0x8197 +typedef void (APIENTRYP PFNGLDEFORMATIONMAP3DSGIXPROC) (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points); +typedef void (APIENTRYP PFNGLDEFORMATIONMAP3FSGIXPROC) (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points); +typedef void (APIENTRYP PFNGLDEFORMSGIXPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLLOADIDENTITYDEFORMATIONMAPSGIXPROC) (GLbitfield mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeformationMap3dSGIX (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points); +GLAPI void APIENTRY glDeformationMap3fSGIX (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points); +GLAPI void APIENTRY glDeformSGIX (GLbitfield mask); +GLAPI void APIENTRY glLoadIdentityDeformationMapSGIX (GLbitfield mask); +#endif +#endif /* GL_SGIX_polynomial_ffd */ + +#ifndef GL_SGIX_reference_plane +#define GL_SGIX_reference_plane 1 +#define GL_REFERENCE_PLANE_SGIX 0x817D +#define GL_REFERENCE_PLANE_EQUATION_SGIX 0x817E +typedef void (APIENTRYP PFNGLREFERENCEPLANESGIXPROC) (const GLdouble *equation); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReferencePlaneSGIX (const GLdouble *equation); +#endif +#endif /* GL_SGIX_reference_plane */ + +#ifndef GL_SGIX_resample +#define GL_SGIX_resample 1 +#define GL_PACK_RESAMPLE_SGIX 0x842E +#define GL_UNPACK_RESAMPLE_SGIX 0x842F +#define GL_RESAMPLE_REPLICATE_SGIX 0x8433 +#define GL_RESAMPLE_ZERO_FILL_SGIX 0x8434 +#define GL_RESAMPLE_DECIMATE_SGIX 0x8430 +#endif /* GL_SGIX_resample */ + +#ifndef GL_SGIX_scalebias_hint +#define GL_SGIX_scalebias_hint 1 +#define GL_SCALEBIAS_HINT_SGIX 0x8322 +#endif /* GL_SGIX_scalebias_hint */ + +#ifndef GL_SGIX_shadow +#define GL_SGIX_shadow 1 +#define GL_TEXTURE_COMPARE_SGIX 0x819A +#define GL_TEXTURE_COMPARE_OPERATOR_SGIX 0x819B +#define GL_TEXTURE_LEQUAL_R_SGIX 0x819C +#define GL_TEXTURE_GEQUAL_R_SGIX 0x819D +#endif /* GL_SGIX_shadow */ + +#ifndef GL_SGIX_shadow_ambient +#define GL_SGIX_shadow_ambient 1 +#define GL_SHADOW_AMBIENT_SGIX 0x80BF +#endif /* GL_SGIX_shadow_ambient */ + +#ifndef GL_SGIX_sprite +#define GL_SGIX_sprite 1 +#define GL_SPRITE_SGIX 0x8148 +#define GL_SPRITE_MODE_SGIX 0x8149 +#define GL_SPRITE_AXIS_SGIX 0x814A +#define GL_SPRITE_TRANSLATION_SGIX 0x814B +#define GL_SPRITE_AXIAL_SGIX 0x814C +#define GL_SPRITE_OBJECT_ALIGNED_SGIX 0x814D +#define GL_SPRITE_EYE_ALIGNED_SGIX 0x814E +typedef void (APIENTRYP PFNGLSPRITEPARAMETERFSGIXPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERFVSGIXPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERISGIXPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERIVSGIXPROC) (GLenum pname, const GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpriteParameterfSGIX (GLenum pname, GLfloat param); +GLAPI void APIENTRY glSpriteParameterfvSGIX (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glSpriteParameteriSGIX (GLenum pname, GLint param); +GLAPI void APIENTRY glSpriteParameterivSGIX (GLenum pname, const GLint *params); +#endif +#endif /* GL_SGIX_sprite */ + +#ifndef GL_SGIX_subsample +#define GL_SGIX_subsample 1 +#define GL_PACK_SUBSAMPLE_RATE_SGIX 0x85A0 +#define GL_UNPACK_SUBSAMPLE_RATE_SGIX 0x85A1 +#define GL_PIXEL_SUBSAMPLE_4444_SGIX 0x85A2 +#define GL_PIXEL_SUBSAMPLE_2424_SGIX 0x85A3 +#define GL_PIXEL_SUBSAMPLE_4242_SGIX 0x85A4 +#endif /* GL_SGIX_subsample */ + +#ifndef GL_SGIX_tag_sample_buffer +#define GL_SGIX_tag_sample_buffer 1 +typedef void (APIENTRYP PFNGLTAGSAMPLEBUFFERSGIXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTagSampleBufferSGIX (void); +#endif +#endif /* GL_SGIX_tag_sample_buffer */ + +#ifndef GL_SGIX_texture_add_env +#define GL_SGIX_texture_add_env 1 +#define GL_TEXTURE_ENV_BIAS_SGIX 0x80BE +#endif /* GL_SGIX_texture_add_env */ + +#ifndef GL_SGIX_texture_coordinate_clamp +#define GL_SGIX_texture_coordinate_clamp 1 +#define GL_TEXTURE_MAX_CLAMP_S_SGIX 0x8369 +#define GL_TEXTURE_MAX_CLAMP_T_SGIX 0x836A +#define GL_TEXTURE_MAX_CLAMP_R_SGIX 0x836B +#endif /* GL_SGIX_texture_coordinate_clamp */ + +#ifndef GL_SGIX_texture_lod_bias +#define GL_SGIX_texture_lod_bias 1 +#define GL_TEXTURE_LOD_BIAS_S_SGIX 0x818E +#define GL_TEXTURE_LOD_BIAS_T_SGIX 0x818F +#define GL_TEXTURE_LOD_BIAS_R_SGIX 0x8190 +#endif /* GL_SGIX_texture_lod_bias */ + +#ifndef GL_SGIX_texture_multi_buffer +#define GL_SGIX_texture_multi_buffer 1 +#define GL_TEXTURE_MULTI_BUFFER_HINT_SGIX 0x812E +#endif /* GL_SGIX_texture_multi_buffer */ + +#ifndef GL_SGIX_texture_scale_bias +#define GL_SGIX_texture_scale_bias 1 +#define GL_POST_TEXTURE_FILTER_BIAS_SGIX 0x8179 +#define GL_POST_TEXTURE_FILTER_SCALE_SGIX 0x817A +#define GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX 0x817B +#define GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX 0x817C +#endif /* GL_SGIX_texture_scale_bias */ + +#ifndef GL_SGIX_vertex_preclip +#define GL_SGIX_vertex_preclip 1 +#define GL_VERTEX_PRECLIP_SGIX 0x83EE +#define GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF +#endif /* GL_SGIX_vertex_preclip */ + +#ifndef GL_SGIX_ycrcb +#define GL_SGIX_ycrcb 1 +#define GL_YCRCB_422_SGIX 0x81BB +#define GL_YCRCB_444_SGIX 0x81BC +#endif /* GL_SGIX_ycrcb */ + +#ifndef GL_SGIX_ycrcb_subsample +#define GL_SGIX_ycrcb_subsample 1 +#endif /* GL_SGIX_ycrcb_subsample */ + +#ifndef GL_SGIX_ycrcba +#define GL_SGIX_ycrcba 1 +#define GL_YCRCB_SGIX 0x8318 +#define GL_YCRCBA_SGIX 0x8319 +#endif /* GL_SGIX_ycrcba */ + +#ifndef GL_SGI_color_matrix +#define GL_SGI_color_matrix 1 +#define GL_COLOR_MATRIX_SGI 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE_SGI 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS_SGI 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI 0x80BB +#endif /* GL_SGI_color_matrix */ + +#ifndef GL_SGI_color_table +#define GL_SGI_color_table 1 +#define GL_COLOR_TABLE_SGI 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D2 +#define GL_PROXY_COLOR_TABLE_SGI 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D5 +#define GL_COLOR_TABLE_SCALE_SGI 0x80D6 +#define GL_COLOR_TABLE_BIAS_SGI 0x80D7 +#define GL_COLOR_TABLE_FORMAT_SGI 0x80D8 +#define GL_COLOR_TABLE_WIDTH_SGI 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE_SGI 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE_SGI 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE_SGI 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE_SGI 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE_SGI 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE_SGI 0x80DF +typedef void (APIENTRYP PFNGLCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLGETCOLORTABLESGIPROC) (GLenum target, GLenum format, GLenum type, void *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTableSGI (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +GLAPI void APIENTRY glColorTableParameterfvSGI (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glColorTableParameterivSGI (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyColorTableSGI (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glGetColorTableSGI (GLenum target, GLenum format, GLenum type, void *table); +GLAPI void APIENTRY glGetColorTableParameterfvSGI (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetColorTableParameterivSGI (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_SGI_color_table */ + +#ifndef GL_SGI_texture_color_table +#define GL_SGI_texture_color_table 1 +#define GL_TEXTURE_COLOR_TABLE_SGI 0x80BC +#define GL_PROXY_TEXTURE_COLOR_TABLE_SGI 0x80BD +#endif /* GL_SGI_texture_color_table */ + +#ifndef GL_SUNX_constant_data +#define GL_SUNX_constant_data 1 +#define GL_UNPACK_CONSTANT_DATA_SUNX 0x81D5 +#define GL_TEXTURE_CONSTANT_DATA_SUNX 0x81D6 +typedef void (APIENTRYP PFNGLFINISHTEXTURESUNXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFinishTextureSUNX (void); +#endif +#endif /* GL_SUNX_constant_data */ + +#ifndef GL_SUN_convolution_border_modes +#define GL_SUN_convolution_border_modes 1 +#define GL_WRAP_BORDER_SUN 0x81D4 +#endif /* GL_SUN_convolution_border_modes */ + +#ifndef GL_SUN_global_alpha +#define GL_SUN_global_alpha 1 +#define GL_GLOBAL_ALPHA_SUN 0x81D9 +#define GL_GLOBAL_ALPHA_FACTOR_SUN 0x81DA +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORBSUNPROC) (GLbyte factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORSSUNPROC) (GLshort factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORISUNPROC) (GLint factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORFSUNPROC) (GLfloat factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORDSUNPROC) (GLdouble factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUBSUNPROC) (GLubyte factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUSSUNPROC) (GLushort factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUISUNPROC) (GLuint factor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGlobalAlphaFactorbSUN (GLbyte factor); +GLAPI void APIENTRY glGlobalAlphaFactorsSUN (GLshort factor); +GLAPI void APIENTRY glGlobalAlphaFactoriSUN (GLint factor); +GLAPI void APIENTRY glGlobalAlphaFactorfSUN (GLfloat factor); +GLAPI void APIENTRY glGlobalAlphaFactordSUN (GLdouble factor); +GLAPI void APIENTRY glGlobalAlphaFactorubSUN (GLubyte factor); +GLAPI void APIENTRY glGlobalAlphaFactorusSUN (GLushort factor); +GLAPI void APIENTRY glGlobalAlphaFactoruiSUN (GLuint factor); +#endif +#endif /* GL_SUN_global_alpha */ + +#ifndef GL_SUN_mesh_array +#define GL_SUN_mesh_array 1 +#define GL_QUAD_MESH_SUN 0x8614 +#define GL_TRIANGLE_MESH_SUN 0x8615 +typedef void (APIENTRYP PFNGLDRAWMESHARRAYSSUNPROC) (GLenum mode, GLint first, GLsizei count, GLsizei width); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawMeshArraysSUN (GLenum mode, GLint first, GLsizei count, GLsizei width); +#endif +#endif /* GL_SUN_mesh_array */ + +#ifndef GL_SUN_slice_accum +#define GL_SUN_slice_accum 1 +#define GL_SLICE_ACCUM_SUN 0x85CC +#endif /* GL_SUN_slice_accum */ + +#ifndef GL_SUN_triangle_list +#define GL_SUN_triangle_list 1 +#define GL_RESTART_SUN 0x0001 +#define GL_REPLACE_MIDDLE_SUN 0x0002 +#define GL_REPLACE_OLDEST_SUN 0x0003 +#define GL_TRIANGLE_LIST_SUN 0x81D7 +#define GL_REPLACEMENT_CODE_SUN 0x81D8 +#define GL_REPLACEMENT_CODE_ARRAY_SUN 0x85C0 +#define GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN 0x85C1 +#define GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN 0x85C2 +#define GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN 0x85C3 +#define GL_R1UI_V3F_SUN 0x85C4 +#define GL_R1UI_C4UB_V3F_SUN 0x85C5 +#define GL_R1UI_C3F_V3F_SUN 0x85C6 +#define GL_R1UI_N3F_V3F_SUN 0x85C7 +#define GL_R1UI_C4F_N3F_V3F_SUN 0x85C8 +#define GL_R1UI_T2F_V3F_SUN 0x85C9 +#define GL_R1UI_T2F_N3F_V3F_SUN 0x85CA +#define GL_R1UI_T2F_C4F_N3F_V3F_SUN 0x85CB +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUISUNPROC) (GLuint code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSSUNPROC) (GLushort code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBSUNPROC) (GLubyte code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVSUNPROC) (const GLuint *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSVSUNPROC) (const GLushort *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBVSUNPROC) (const GLubyte *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEPOINTERSUNPROC) (GLenum type, GLsizei stride, const void **pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReplacementCodeuiSUN (GLuint code); +GLAPI void APIENTRY glReplacementCodeusSUN (GLushort code); +GLAPI void APIENTRY glReplacementCodeubSUN (GLubyte code); +GLAPI void APIENTRY glReplacementCodeuivSUN (const GLuint *code); +GLAPI void APIENTRY glReplacementCodeusvSUN (const GLushort *code); +GLAPI void APIENTRY glReplacementCodeubvSUN (const GLubyte *code); +GLAPI void APIENTRY glReplacementCodePointerSUN (GLenum type, GLsizei stride, const void **pointer); +#endif +#endif /* GL_SUN_triangle_list */ + +#ifndef GL_SUN_vertex +#define GL_SUN_vertex 1 +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FVSUNPROC) (const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FVSUNPROC) (const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FSUNPROC) (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FVSUNPROC) (const GLfloat *tc, const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FSUNPROC) (GLuint rc, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FSUNPROC) (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FVSUNPROC) (const GLuint *rc, const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColor4ubVertex2fSUN (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y); +GLAPI void APIENTRY glColor4ubVertex2fvSUN (const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glColor4ubVertex3fSUN (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor4ubVertex3fvSUN (const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glColor3fVertex3fSUN (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor3fVertex3fvSUN (const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glNormal3fVertex3fSUN (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glNormal3fVertex3fvSUN (const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glColor4fNormal3fVertex3fSUN (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor4fNormal3fVertex3fvSUN (const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fVertex3fSUN (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fVertex3fvSUN (const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glTexCoord4fVertex4fSUN (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glTexCoord4fVertex4fvSUN (const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fSUN (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fvSUN (const GLfloat *tc, const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fSUN (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiVertex3fSUN (GLuint rc, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiVertex3fvSUN (const GLuint *rc, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fSUN (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fvSUN (const GLuint *rc, const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fSUN (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fvSUN (const GLuint *rc, const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fSUN (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fSUN (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +#endif +#endif /* GL_SUN_vertex */ + +#ifndef GL_WIN_phong_shading +#define GL_WIN_phong_shading 1 +#define GL_PHONG_WIN 0x80EA +#define GL_PHONG_HINT_WIN 0x80EB +#endif /* GL_WIN_phong_shading */ + +#ifndef GL_WIN_specular_fog +#define GL_WIN_specular_fog 1 +#define GL_FOG_SPECULAR_TEXTURE_WIN 0x80EC +#endif /* GL_WIN_specular_fog */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles.h new file mode 100644 index 0000000..4fb9a4b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles.h @@ -0,0 +1,38 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the OpenGL ES 1.X API headers. + */ + +#include + +#ifdef SDL_PLATFORM_IOS +#include +#include +#else +#include +#include +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2.h new file mode 100644 index 0000000..365898a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2.h @@ -0,0 +1,51 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the OpenGL ES 2.0 API headers. + */ + +#include + +#if !defined(_MSC_VER) && !defined(SDL_USE_BUILTIN_OPENGL_DEFINITIONS) + +#ifdef SDL_PLATFORM_IOS +#include +#include +#else +#include +#include +#include +#endif + +#else /* _MSC_VER */ + +/* OpenGL ES2 headers for Visual Studio */ +#include +#include +#include +#include + +#endif /* _MSC_VER */ + +#ifndef APIENTRY +#define APIENTRY GL_APIENTRY +#endif diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2.h new file mode 100644 index 0000000..d13622a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2.h @@ -0,0 +1,656 @@ +#ifndef __gles2_gl2_h_ +#define __gles2_gl2_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +/*#include */ + +#ifndef GL_APIENTRYP +#define GL_APIENTRYP GL_APIENTRY* +#endif + +#ifndef GL_GLES_PROTOTYPES +#define GL_GLES_PROTOTYPES 1 +#endif + +/* Generated on date 20220530 */ + +/* Generated C header for: + * API: gles2 + * Profile: common + * Versions considered: 2\.[0-9] + * Versions emitted: .* + * Default extensions included: None + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_ES_VERSION_2_0 +#define GL_ES_VERSION_2_0 1 +/*#include */ +typedef khronos_int8_t GLbyte; +typedef khronos_float_t GLclampf; +typedef khronos_int32_t GLfixed; +typedef khronos_int16_t GLshort; +typedef khronos_uint16_t GLushort; +typedef void GLvoid; +typedef struct __GLsync *GLsync; +typedef khronos_int64_t GLint64; +typedef khronos_uint64_t GLuint64; +typedef unsigned int GLenum; +typedef unsigned int GLuint; +typedef char GLchar; +typedef khronos_float_t GLfloat; +typedef khronos_ssize_t GLsizeiptr; +typedef khronos_intptr_t GLintptr; +typedef unsigned int GLbitfield; +typedef int GLint; +typedef unsigned char GLboolean; +typedef int GLsizei; +typedef khronos_uint8_t GLubyte; +#define GL_DEPTH_BUFFER_BIT 0x00000100 +#define GL_STENCIL_BUFFER_BIT 0x00000400 +#define GL_COLOR_BUFFER_BIT 0x00004000 +#define GL_FALSE 0 +#define GL_TRUE 1 +#define GL_POINTS 0x0000 +#define GL_LINES 0x0001 +#define GL_LINE_LOOP 0x0002 +#define GL_LINE_STRIP 0x0003 +#define GL_TRIANGLES 0x0004 +#define GL_TRIANGLE_STRIP 0x0005 +#define GL_TRIANGLE_FAN 0x0006 +#define GL_ZERO 0 +#define GL_ONE 1 +#define GL_SRC_COLOR 0x0300 +#define GL_ONE_MINUS_SRC_COLOR 0x0301 +#define GL_SRC_ALPHA 0x0302 +#define GL_ONE_MINUS_SRC_ALPHA 0x0303 +#define GL_DST_ALPHA 0x0304 +#define GL_ONE_MINUS_DST_ALPHA 0x0305 +#define GL_DST_COLOR 0x0306 +#define GL_ONE_MINUS_DST_COLOR 0x0307 +#define GL_SRC_ALPHA_SATURATE 0x0308 +#define GL_FUNC_ADD 0x8006 +#define GL_BLEND_EQUATION 0x8009 +#define GL_BLEND_EQUATION_RGB 0x8009 +#define GL_BLEND_EQUATION_ALPHA 0x883D +#define GL_FUNC_SUBTRACT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_BLEND_DST_RGB 0x80C8 +#define GL_BLEND_SRC_RGB 0x80C9 +#define GL_BLEND_DST_ALPHA 0x80CA +#define GL_BLEND_SRC_ALPHA 0x80CB +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_BLEND_COLOR 0x8005 +#define GL_ARRAY_BUFFER 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER 0x8893 +#define GL_ARRAY_BUFFER_BINDING 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 +#define GL_STREAM_DRAW 0x88E0 +#define GL_STATIC_DRAW 0x88E4 +#define GL_DYNAMIC_DRAW 0x88E8 +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_FRONT_AND_BACK 0x0408 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_CULL_FACE 0x0B44 +#define GL_BLEND 0x0BE2 +#define GL_DITHER 0x0BD0 +#define GL_STENCIL_TEST 0x0B90 +#define GL_DEPTH_TEST 0x0B71 +#define GL_SCISSOR_TEST 0x0C11 +#define GL_POLYGON_OFFSET_FILL 0x8037 +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_NO_ERROR 0 +#define GL_INVALID_ENUM 0x0500 +#define GL_INVALID_VALUE 0x0501 +#define GL_INVALID_OPERATION 0x0502 +#define GL_OUT_OF_MEMORY 0x0505 +#define GL_CW 0x0900 +#define GL_CCW 0x0901 +#define GL_LINE_WIDTH 0x0B21 +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#define GL_STENCIL_FAIL 0x0B94 +#define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 +#define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 +#define GL_STENCIL_REF 0x0B97 +#define GL_STENCIL_VALUE_MASK 0x0B93 +#define GL_STENCIL_WRITEMASK 0x0B98 +#define GL_STENCIL_BACK_FUNC 0x8800 +#define GL_STENCIL_BACK_FAIL 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 +#define GL_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 +#define GL_VIEWPORT 0x0BA2 +#define GL_SCISSOR_BOX 0x0C10 +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_SUBPIXEL_BITS 0x0D50 +#define GL_RED_BITS 0x0D52 +#define GL_GREEN_BITS 0x0D53 +#define GL_BLUE_BITS 0x0D54 +#define GL_ALPHA_BITS 0x0D55 +#define GL_DEPTH_BITS 0x0D56 +#define GL_STENCIL_BITS 0x0D57 +#define GL_POLYGON_OFFSET_UNITS 0x2A00 +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_TEXTURE_BINDING_2D 0x8069 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 +#define GL_GENERATE_MIPMAP_HINT 0x8192 +#define GL_BYTE 0x1400 +#define GL_UNSIGNED_BYTE 0x1401 +#define GL_SHORT 0x1402 +#define GL_UNSIGNED_SHORT 0x1403 +#define GL_INT 0x1404 +#define GL_UNSIGNED_INT 0x1405 +#define GL_FLOAT 0x1406 +#define GL_FIXED 0x140C +#define GL_DEPTH_COMPONENT 0x1902 +#define GL_ALPHA 0x1906 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 +#define GL_LUMINANCE 0x1909 +#define GL_LUMINANCE_ALPHA 0x190A +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB +#define GL_MAX_VARYING_VECTORS 0x8DFC +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD +#define GL_SHADER_TYPE 0x8B4F +#define GL_DELETE_STATUS 0x8B80 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D +#define GL_NEVER 0x0200 +#define GL_LESS 0x0201 +#define GL_EQUAL 0x0202 +#define GL_LEQUAL 0x0203 +#define GL_GREATER 0x0204 +#define GL_NOTEQUAL 0x0205 +#define GL_GEQUAL 0x0206 +#define GL_ALWAYS 0x0207 +#define GL_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 +#define GL_INVERT 0x150A +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 +#define GL_VENDOR 0x1F00 +#define GL_RENDERER 0x1F01 +#define GL_VERSION 0x1F02 +#define GL_EXTENSIONS 0x1F03 +#define GL_NEAREST 0x2600 +#define GL_LINEAR 0x2601 +#define GL_NEAREST_MIPMAP_NEAREST 0x2700 +#define GL_LINEAR_MIPMAP_NEAREST 0x2701 +#define GL_NEAREST_MIPMAP_LINEAR 0x2702 +#define GL_LINEAR_MIPMAP_LINEAR 0x2703 +#define GL_TEXTURE_MAG_FILTER 0x2800 +#define GL_TEXTURE_MIN_FILTER 0x2801 +#define GL_TEXTURE_WRAP_S 0x2802 +#define GL_TEXTURE_WRAP_T 0x2803 +#define GL_TEXTURE 0x1702 +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_REPEAT 0x2901 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_MIRRORED_REPEAT 0x8370 +#define GL_FLOAT_VEC2 0x8B50 +#define GL_FLOAT_VEC3 0x8B51 +#define GL_FLOAT_VEC4 0x8B52 +#define GL_INT_VEC2 0x8B53 +#define GL_INT_VEC3 0x8B54 +#define GL_INT_VEC4 0x8B55 +#define GL_BOOL 0x8B56 +#define GL_BOOL_VEC2 0x8B57 +#define GL_BOOL_VEC3 0x8B58 +#define GL_BOOL_VEC4 0x8B59 +#define GL_FLOAT_MAT2 0x8B5A +#define GL_FLOAT_MAT3 0x8B5B +#define GL_FLOAT_MAT4 0x8B5C +#define GL_SAMPLER_2D 0x8B5E +#define GL_SAMPLER_CUBE 0x8B60 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F +#define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B +#define GL_COMPILE_STATUS 0x8B81 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_SHADER_COMPILER 0x8DFA +#define GL_SHADER_BINARY_FORMATS 0x8DF8 +#define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 +#define GL_LOW_FLOAT 0x8DF0 +#define GL_MEDIUM_FLOAT 0x8DF1 +#define GL_HIGH_FLOAT 0x8DF2 +#define GL_LOW_INT 0x8DF3 +#define GL_MEDIUM_INT 0x8DF4 +#define GL_HIGH_INT 0x8DF5 +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGB565 0x8D62 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_STENCIL_INDEX8 0x8D48 +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#define GL_RENDERBUFFER_RED_SIZE 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 +#define GL_COLOR_ATTACHMENT0 0x8CE0 +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 +#define GL_NONE 0 +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS 0x8CD9 +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 +typedef void (GL_APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (GL_APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (GL_APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer); +typedef void (GL_APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer); +typedef void (GL_APIENTRYP PFNGLBINDTEXTUREPROC) (GLenum target, GLuint texture); +typedef void (GL_APIENTRYP PFNGLBLENDCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCPROC) (GLenum sfactor, GLenum dfactor); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +typedef void (GL_APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +typedef void (GL_APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +typedef GLenum (GL_APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLCLEARPROC) (GLbitfield mask); +typedef void (GL_APIENTRYP PFNGLCLEARCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (GL_APIENTRYP PFNGLCLEARDEPTHFPROC) (GLfloat d); +typedef void (GL_APIENTRYP PFNGLCLEARSTENCILPROC) (GLint s); +typedef void (GL_APIENTRYP PFNGLCOLORMASKPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +typedef void (GL_APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOPYTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (GL_APIENTRYP PFNGLCOPYTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef GLuint (GL_APIENTRYP PFNGLCREATEPROGRAMPROC) (void); +typedef GLuint (GL_APIENTRYP PFNGLCREATESHADERPROC) (GLenum type); +typedef void (GL_APIENTRYP PFNGLCULLFACEPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers); +typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLDELETERENDERBUFFERSPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (GL_APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader); +typedef void (GL_APIENTRYP PFNGLDELETETEXTURESPROC) (GLsizei n, const GLuint *textures); +typedef void (GL_APIENTRYP PFNGLDEPTHFUNCPROC) (GLenum func); +typedef void (GL_APIENTRYP PFNGLDEPTHMASKPROC) (GLboolean flag); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEFPROC) (GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (GL_APIENTRYP PFNGLDISABLEPROC) (GLenum cap); +typedef void (GL_APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices); +typedef void (GL_APIENTRYP PFNGLENABLEPROC) (GLenum cap); +typedef void (GL_APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (GL_APIENTRYP PFNGLFINISHPROC) (void); +typedef void (GL_APIENTRYP PFNGLFLUSHPROC) (void); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (GL_APIENTRYP PFNGLFRONTFACEPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef void (GL_APIENTRYP PFNGLGENERATEMIPMAPPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef void (GL_APIENTRYP PFNGLGENRENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (GL_APIENTRYP PFNGLGENTEXTURESPROC) (GLsizei n, GLuint *textures); +typedef void (GL_APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +typedef GLint (GL_APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETBOOLEANVPROC) (GLenum pname, GLboolean *data); +typedef void (GL_APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLenum (GL_APIENTRYP PFNGLGETERRORPROC) (void); +typedef void (GL_APIENTRYP PFNGLGETFLOATVPROC) (GLenum pname, GLfloat *data); +typedef void (GL_APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETINTEGERVPROC) (GLenum pname, GLint *data); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +typedef void (GL_APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +typedef const GLubyte *(GL_APIENTRYP PFNGLGETSTRINGPROC) (GLenum name); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params); +typedef GLint (GL_APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer); +typedef void (GL_APIENTRYP PFNGLHINTPROC) (GLenum target, GLenum mode); +typedef GLboolean (GL_APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDPROC) (GLenum cap); +typedef GLboolean (GL_APIENTRYP PFNGLISFRAMEBUFFERPROC) (GLuint framebuffer); +typedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPROC) (GLuint program); +typedef GLboolean (GL_APIENTRYP PFNGLISRENDERBUFFERPROC) (GLuint renderbuffer); +typedef GLboolean (GL_APIENTRYP PFNGLISSHADERPROC) (GLuint shader); +typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREPROC) (GLuint texture); +typedef void (GL_APIENTRYP PFNGLLINEWIDTHPROC) (GLfloat width); +typedef void (GL_APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLPIXELSTOREIPROC) (GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLPOLYGONOFFSETPROC) (GLfloat factor, GLfloat units); +typedef void (GL_APIENTRYP PFNGLREADPIXELSPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +typedef void (GL_APIENTRYP PFNGLRELEASESHADERCOMPILERPROC) (void); +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLfloat value, GLboolean invert); +typedef void (GL_APIENTRYP PFNGLSCISSORPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (GL_APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +typedef void (GL_APIENTRYP PFNGLSTENCILFUNCPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum face, GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILMASKPROC) (GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILOPPROC) (GLenum fail, GLenum zfail, GLenum zpass); +typedef void (GL_APIENTRYP PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (GL_APIENTRYP PFNGLTEXIMAGE2DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0); +typedef void (GL_APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0); +typedef void (GL_APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (GL_APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1); +typedef void (GL_APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (GL_APIENTRYP PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (GL_APIENTRYP PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (GL_APIENTRYP PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GL_APIENTRYP PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +typedef void (GL_APIENTRYP PFNGLVIEWPORTPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +#if GL_GLES_PROTOTYPES +GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture); +GL_APICALL void GL_APIENTRY glAttachShader (GLuint program, GLuint shader); +GL_APICALL void GL_APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar *name); +GL_APICALL void GL_APIENTRY glBindBuffer (GLenum target, GLuint buffer); +GL_APICALL void GL_APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer); +GL_APICALL void GL_APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer); +GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture); +GL_APICALL void GL_APIENTRY glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GL_APICALL void GL_APIENTRY glBlendEquation (GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunc (GLenum sfactor, GLenum dfactor); +GL_APICALL void GL_APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +GL_APICALL void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +GL_APICALL void GL_APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +GL_APICALL GLenum GL_APIENTRY glCheckFramebufferStatus (GLenum target); +GL_APICALL void GL_APIENTRY glClear (GLbitfield mask); +GL_APICALL void GL_APIENTRY glClearColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GL_APICALL void GL_APIENTRY glClearDepthf (GLfloat d); +GL_APICALL void GL_APIENTRY glClearStencil (GLint s); +GL_APICALL void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +GL_APICALL void GL_APIENTRY glCompileShader (GLuint shader); +GL_APICALL void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GL_APICALL void GL_APIENTRY glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL GLuint GL_APIENTRY glCreateProgram (void); +GL_APICALL GLuint GL_APIENTRY glCreateShader (GLenum type); +GL_APICALL void GL_APIENTRY glCullFace (GLenum mode); +GL_APICALL void GL_APIENTRY glDeleteBuffers (GLsizei n, const GLuint *buffers); +GL_APICALL void GL_APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); +GL_APICALL void GL_APIENTRY glDeleteProgram (GLuint program); +GL_APICALL void GL_APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint *renderbuffers); +GL_APICALL void GL_APIENTRY glDeleteShader (GLuint shader); +GL_APICALL void GL_APIENTRY glDeleteTextures (GLsizei n, const GLuint *textures); +GL_APICALL void GL_APIENTRY glDepthFunc (GLenum func); +GL_APICALL void GL_APIENTRY glDepthMask (GLboolean flag); +GL_APICALL void GL_APIENTRY glDepthRangef (GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glDetachShader (GLuint program, GLuint shader); +GL_APICALL void GL_APIENTRY glDisable (GLenum cap); +GL_APICALL void GL_APIENTRY glDisableVertexAttribArray (GLuint index); +GL_APICALL void GL_APIENTRY glDrawArrays (GLenum mode, GLint first, GLsizei count); +GL_APICALL void GL_APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const void *indices); +GL_APICALL void GL_APIENTRY glEnable (GLenum cap); +GL_APICALL void GL_APIENTRY glEnableVertexAttribArray (GLuint index); +GL_APICALL void GL_APIENTRY glFinish (void); +GL_APICALL void GL_APIENTRY glFlush (void); +GL_APICALL void GL_APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GL_APICALL void GL_APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GL_APICALL void GL_APIENTRY glFrontFace (GLenum mode); +GL_APICALL void GL_APIENTRY glGenBuffers (GLsizei n, GLuint *buffers); +GL_APICALL void GL_APIENTRY glGenerateMipmap (GLenum target); +GL_APICALL void GL_APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers); +GL_APICALL void GL_APIENTRY glGenRenderbuffers (GLsizei n, GLuint *renderbuffers); +GL_APICALL void GL_APIENTRY glGenTextures (GLsizei n, GLuint *textures); +GL_APICALL void GL_APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GL_APICALL void GL_APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GL_APICALL void GL_APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +GL_APICALL GLint GL_APIENTRY glGetAttribLocation (GLuint program, const GLchar *name); +GL_APICALL void GL_APIENTRY glGetBooleanv (GLenum pname, GLboolean *data); +GL_APICALL void GL_APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL GLenum GL_APIENTRY glGetError (void); +GL_APICALL void GL_APIENTRY glGetFloatv (GLenum pname, GLfloat *data); +GL_APICALL void GL_APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetIntegerv (GLenum pname, GLint *data); +GL_APICALL void GL_APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +GL_APICALL void GL_APIENTRY glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +GL_APICALL const GLubyte *GL_APIENTRY glGetString (GLenum name); +GL_APICALL void GL_APIENTRY glGetTexParameterfv (GLenum target, GLenum pname, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetTexParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetUniformiv (GLuint program, GLint location, GLint *params); +GL_APICALL GLint GL_APIENTRY glGetUniformLocation (GLuint program, const GLchar *name); +GL_APICALL void GL_APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer); +GL_APICALL void GL_APIENTRY glHint (GLenum target, GLenum mode); +GL_APICALL GLboolean GL_APIENTRY glIsBuffer (GLuint buffer); +GL_APICALL GLboolean GL_APIENTRY glIsEnabled (GLenum cap); +GL_APICALL GLboolean GL_APIENTRY glIsFramebuffer (GLuint framebuffer); +GL_APICALL GLboolean GL_APIENTRY glIsProgram (GLuint program); +GL_APICALL GLboolean GL_APIENTRY glIsRenderbuffer (GLuint renderbuffer); +GL_APICALL GLboolean GL_APIENTRY glIsShader (GLuint shader); +GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture); +GL_APICALL void GL_APIENTRY glLineWidth (GLfloat width); +GL_APICALL void GL_APIENTRY glLinkProgram (GLuint program); +GL_APICALL void GL_APIENTRY glPixelStorei (GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glPolygonOffset (GLfloat factor, GLfloat units); +GL_APICALL void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +GL_APICALL void GL_APIENTRY glReleaseShaderCompiler (void); +GL_APICALL void GL_APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glSampleCoverage (GLfloat value, GLboolean invert); +GL_APICALL void GL_APIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +GL_APICALL void GL_APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +GL_APICALL void GL_APIENTRY glStencilFunc (GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilMask (GLuint mask); +GL_APICALL void GL_APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilOp (GLenum fail, GLenum zfail, GLenum zpass); +GL_APICALL void GL_APIENTRY glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GL_APICALL void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glTexParameterf (GLenum target, GLenum pname, GLfloat param); +GL_APICALL void GL_APIENTRY glTexParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GL_APICALL void GL_APIENTRY glTexParameteri (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glTexParameteriv (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glUniform1f (GLint location, GLfloat v0); +GL_APICALL void GL_APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform1i (GLint location, GLint v0); +GL_APICALL void GL_APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform2f (GLint location, GLfloat v0, GLfloat v1); +GL_APICALL void GL_APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform2i (GLint location, GLint v0, GLint v1); +GL_APICALL void GL_APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GL_APICALL void GL_APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform3i (GLint location, GLint v0, GLint v1, GLint v2); +GL_APICALL void GL_APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GL_APICALL void GL_APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GL_APICALL void GL_APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUseProgram (GLuint program); +GL_APICALL void GL_APIENTRY glValidateProgram (GLuint program); +GL_APICALL void GL_APIENTRY glVertexAttrib1f (GLuint index, GLfloat x); +GL_APICALL void GL_APIENTRY glVertexAttrib1fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y); +GL_APICALL void GL_APIENTRY glVertexAttrib2fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glVertexAttrib3fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GL_APICALL void GL_APIENTRY glVertexAttrib4fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +GL_APICALL void GL_APIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height); +#endif +#endif /* GL_ES_VERSION_2_0 */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h new file mode 100644 index 0000000..9448ce0 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2ext.h @@ -0,0 +1,4033 @@ +#ifndef __gles2_gl2ext_h_ +#define __gles2_gl2ext_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +#ifndef GL_APIENTRYP +#define GL_APIENTRYP GL_APIENTRY* +#endif + +/* Generated on date 20220530 */ + +/* Generated C header for: + * API: gles2 + * Profile: common + * Versions considered: 2\.[0-9] + * Versions emitted: _nomatch_^ + * Default extensions included: gles2 + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_KHR_blend_equation_advanced +#define GL_KHR_blend_equation_advanced 1 +#define GL_MULTIPLY_KHR 0x9294 +#define GL_SCREEN_KHR 0x9295 +#define GL_OVERLAY_KHR 0x9296 +#define GL_DARKEN_KHR 0x9297 +#define GL_LIGHTEN_KHR 0x9298 +#define GL_COLORDODGE_KHR 0x9299 +#define GL_COLORBURN_KHR 0x929A +#define GL_HARDLIGHT_KHR 0x929B +#define GL_SOFTLIGHT_KHR 0x929C +#define GL_DIFFERENCE_KHR 0x929E +#define GL_EXCLUSION_KHR 0x92A0 +#define GL_HSL_HUE_KHR 0x92AD +#define GL_HSL_SATURATION_KHR 0x92AE +#define GL_HSL_COLOR_KHR 0x92AF +#define GL_HSL_LUMINOSITY_KHR 0x92B0 +typedef void (GL_APIENTRYP PFNGLBLENDBARRIERKHRPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlendBarrierKHR (void); +#endif +#endif /* GL_KHR_blend_equation_advanced */ + +#ifndef GL_KHR_blend_equation_advanced_coherent +#define GL_KHR_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_KHR 0x9285 +#endif /* GL_KHR_blend_equation_advanced_coherent */ + +#ifndef GL_KHR_context_flush_control +#define GL_KHR_context_flush_control 1 +#define GL_CONTEXT_RELEASE_BEHAVIOR_KHR 0x82FB +#define GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_KHR 0x82FC +#endif /* GL_KHR_context_flush_control */ + +#ifndef GL_KHR_debug +#define GL_KHR_debug 1 +typedef void (GL_APIENTRY *GLDEBUGPROCKHR)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +#define GL_SAMPLER 0x82E6 +#define GL_DEBUG_OUTPUT_SYNCHRONOUS_KHR 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_KHR 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION_KHR 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM_KHR 0x8245 +#define GL_DEBUG_SOURCE_API_KHR 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_KHR 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER_KHR 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY_KHR 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION_KHR 0x824A +#define GL_DEBUG_SOURCE_OTHER_KHR 0x824B +#define GL_DEBUG_TYPE_ERROR_KHR 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_KHR 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_KHR 0x824E +#define GL_DEBUG_TYPE_PORTABILITY_KHR 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE_KHR 0x8250 +#define GL_DEBUG_TYPE_OTHER_KHR 0x8251 +#define GL_DEBUG_TYPE_MARKER_KHR 0x8268 +#define GL_DEBUG_TYPE_PUSH_GROUP_KHR 0x8269 +#define GL_DEBUG_TYPE_POP_GROUP_KHR 0x826A +#define GL_DEBUG_SEVERITY_NOTIFICATION_KHR 0x826B +#define GL_MAX_DEBUG_GROUP_STACK_DEPTH_KHR 0x826C +#define GL_DEBUG_GROUP_STACK_DEPTH_KHR 0x826D +#define GL_BUFFER_KHR 0x82E0 +#define GL_SHADER_KHR 0x82E1 +#define GL_PROGRAM_KHR 0x82E2 +#define GL_VERTEX_ARRAY_KHR 0x8074 +#define GL_QUERY_KHR 0x82E3 +#define GL_PROGRAM_PIPELINE_KHR 0x82E4 +#define GL_SAMPLER_KHR 0x82E6 +#define GL_MAX_LABEL_LENGTH_KHR 0x82E8 +#define GL_MAX_DEBUG_MESSAGE_LENGTH_KHR 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_KHR 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_KHR 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_KHR 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_KHR 0x9147 +#define GL_DEBUG_SEVERITY_LOW_KHR 0x9148 +#define GL_DEBUG_OUTPUT_KHR 0x92E0 +#define GL_CONTEXT_FLAG_DEBUG_BIT_KHR 0x00000002 +#define GL_STACK_OVERFLOW_KHR 0x0503 +#define GL_STACK_UNDERFLOW_KHR 0x0504 +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECONTROLKHRPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGEINSERTKHRPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECALLBACKKHRPROC) (GLDEBUGPROCKHR callback, const void *userParam); +typedef GLuint (GL_APIENTRYP PFNGLGETDEBUGMESSAGELOGKHRPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +typedef void (GL_APIENTRYP PFNGLPUSHDEBUGGROUPKHRPROC) (GLenum source, GLuint id, GLsizei length, const GLchar *message); +typedef void (GL_APIENTRYP PFNGLPOPDEBUGGROUPKHRPROC) (void); +typedef void (GL_APIENTRYP PFNGLOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (GL_APIENTRYP PFNGLOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETPOINTERVKHRPROC) (GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDebugMessageControlKHR (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GL_APICALL void GL_APIENTRY glDebugMessageInsertKHR (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GL_APICALL void GL_APIENTRY glDebugMessageCallbackKHR (GLDEBUGPROCKHR callback, const void *userParam); +GL_APICALL GLuint GL_APIENTRY glGetDebugMessageLogKHR (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +GL_APICALL void GL_APIENTRY glPushDebugGroupKHR (GLenum source, GLuint id, GLsizei length, const GLchar *message); +GL_APICALL void GL_APIENTRY glPopDebugGroupKHR (void); +GL_APICALL void GL_APIENTRY glObjectLabelKHR (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectLabelKHR (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +GL_APICALL void GL_APIENTRY glObjectPtrLabelKHR (const void *ptr, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectPtrLabelKHR (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +GL_APICALL void GL_APIENTRY glGetPointervKHR (GLenum pname, void **params); +#endif +#endif /* GL_KHR_debug */ + +#ifndef GL_KHR_no_error +#define GL_KHR_no_error 1 +#define GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 +#endif /* GL_KHR_no_error */ + +#ifndef GL_KHR_parallel_shader_compile +#define GL_KHR_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_KHR 0x91B0 +#define GL_COMPLETION_STATUS_KHR 0x91B1 +typedef void (GL_APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSKHRPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMaxShaderCompilerThreadsKHR (GLuint count); +#endif +#endif /* GL_KHR_parallel_shader_compile */ + +#ifndef GL_KHR_robust_buffer_access_behavior +#define GL_KHR_robust_buffer_access_behavior 1 +#endif /* GL_KHR_robust_buffer_access_behavior */ + +#ifndef GL_KHR_robustness +#define GL_KHR_robustness 1 +#define GL_CONTEXT_ROBUST_ACCESS_KHR 0x90F3 +#define GL_LOSE_CONTEXT_ON_RESET_KHR 0x8252 +#define GL_GUILTY_CONTEXT_RESET_KHR 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_KHR 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_KHR 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY_KHR 0x8256 +#define GL_NO_RESET_NOTIFICATION_KHR 0x8261 +#define GL_CONTEXT_LOST_KHR 0x0507 +typedef GLenum (GL_APIENTRYP PFNGLGETGRAPHICSRESETSTATUSKHRPROC) (void); +typedef void (GL_APIENTRYP PFNGLREADNPIXELSKHRPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMUIVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusKHR (void); +GL_APICALL void GL_APIENTRY glReadnPixelsKHR (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GL_APICALL void GL_APIENTRY glGetnUniformfvKHR (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetnUniformivKHR (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GL_APICALL void GL_APIENTRY glGetnUniformuivKHR (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +#endif +#endif /* GL_KHR_robustness */ + +#ifndef GL_KHR_shader_subgroup +#define GL_KHR_shader_subgroup 1 +#define GL_SUBGROUP_SIZE_KHR 0x9532 +#define GL_SUBGROUP_SUPPORTED_STAGES_KHR 0x9533 +#define GL_SUBGROUP_SUPPORTED_FEATURES_KHR 0x9534 +#define GL_SUBGROUP_QUAD_ALL_STAGES_KHR 0x9535 +#define GL_SUBGROUP_FEATURE_BASIC_BIT_KHR 0x00000001 +#define GL_SUBGROUP_FEATURE_VOTE_BIT_KHR 0x00000002 +#define GL_SUBGROUP_FEATURE_ARITHMETIC_BIT_KHR 0x00000004 +#define GL_SUBGROUP_FEATURE_BALLOT_BIT_KHR 0x00000008 +#define GL_SUBGROUP_FEATURE_SHUFFLE_BIT_KHR 0x00000010 +#define GL_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT_KHR 0x00000020 +#define GL_SUBGROUP_FEATURE_CLUSTERED_BIT_KHR 0x00000040 +#define GL_SUBGROUP_FEATURE_QUAD_BIT_KHR 0x00000080 +#endif /* GL_KHR_shader_subgroup */ + +#ifndef GL_KHR_texture_compression_astc_hdr +#define GL_KHR_texture_compression_astc_hdr 1 +#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 +#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1 +#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2 +#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3 +#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4 +#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5 +#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6 +#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7 +#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8 +#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 +#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA +#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB +#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC +#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD +#endif /* GL_KHR_texture_compression_astc_hdr */ + +#ifndef GL_KHR_texture_compression_astc_ldr +#define GL_KHR_texture_compression_astc_ldr 1 +#endif /* GL_KHR_texture_compression_astc_ldr */ + +#ifndef GL_KHR_texture_compression_astc_sliced_3d +#define GL_KHR_texture_compression_astc_sliced_3d 1 +#endif /* GL_KHR_texture_compression_astc_sliced_3d */ + +#ifndef GL_OES_EGL_image +#define GL_OES_EGL_image 1 +typedef void *GLeglImageOES; +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image); +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image); +GL_APICALL void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image); +#endif +#endif /* GL_OES_EGL_image */ + +#ifndef GL_OES_EGL_image_external +#define GL_OES_EGL_image_external 1 +#define GL_TEXTURE_EXTERNAL_OES 0x8D65 +#define GL_TEXTURE_BINDING_EXTERNAL_OES 0x8D67 +#define GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES 0x8D68 +#define GL_SAMPLER_EXTERNAL_OES 0x8D66 +#endif /* GL_OES_EGL_image_external */ + +#ifndef GL_OES_EGL_image_external_essl3 +#define GL_OES_EGL_image_external_essl3 1 +#endif /* GL_OES_EGL_image_external_essl3 */ + +#ifndef GL_OES_compressed_ETC1_RGB8_sub_texture +#define GL_OES_compressed_ETC1_RGB8_sub_texture 1 +#endif /* GL_OES_compressed_ETC1_RGB8_sub_texture */ + +#ifndef GL_OES_compressed_ETC1_RGB8_texture +#define GL_OES_compressed_ETC1_RGB8_texture 1 +#define GL_ETC1_RGB8_OES 0x8D64 +#endif /* GL_OES_compressed_ETC1_RGB8_texture */ + +#ifndef GL_OES_compressed_paletted_texture +#define GL_OES_compressed_paletted_texture 1 +#define GL_PALETTE4_RGB8_OES 0x8B90 +#define GL_PALETTE4_RGBA8_OES 0x8B91 +#define GL_PALETTE4_R5_G6_B5_OES 0x8B92 +#define GL_PALETTE4_RGBA4_OES 0x8B93 +#define GL_PALETTE4_RGB5_A1_OES 0x8B94 +#define GL_PALETTE8_RGB8_OES 0x8B95 +#define GL_PALETTE8_RGBA8_OES 0x8B96 +#define GL_PALETTE8_R5_G6_B5_OES 0x8B97 +#define GL_PALETTE8_RGBA4_OES 0x8B98 +#define GL_PALETTE8_RGB5_A1_OES 0x8B99 +#endif /* GL_OES_compressed_paletted_texture */ + +#ifndef GL_OES_copy_image +#define GL_OES_copy_image 1 +typedef void (GL_APIENTRYP PFNGLCOPYIMAGESUBDATAOESPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyImageSubDataOES (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#endif +#endif /* GL_OES_copy_image */ + +#ifndef GL_OES_depth24 +#define GL_OES_depth24 1 +#define GL_DEPTH_COMPONENT24_OES 0x81A6 +#endif /* GL_OES_depth24 */ + +#ifndef GL_OES_depth32 +#define GL_OES_depth32 1 +#define GL_DEPTH_COMPONENT32_OES 0x81A7 +#endif /* GL_OES_depth32 */ + +#ifndef GL_OES_depth_texture +#define GL_OES_depth_texture 1 +#endif /* GL_OES_depth_texture */ + +#ifndef GL_OES_draw_buffers_indexed +#define GL_OES_draw_buffers_indexed 1 +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +typedef void (GL_APIENTRYP PFNGLENABLEIOESPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEIOESPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONIOESPROC) (GLuint buf, GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEIOESPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCIOESPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEIOESPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (GL_APIENTRYP PFNGLCOLORMASKIOESPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDIOESPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEnableiOES (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiOES (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glBlendEquationiOES (GLuint buf, GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparateiOES (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunciOES (GLuint buf, GLenum src, GLenum dst); +GL_APICALL void GL_APIENTRY glBlendFuncSeparateiOES (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GL_APICALL void GL_APIENTRY glColorMaskiOES (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediOES (GLenum target, GLuint index); +#endif +#endif /* GL_OES_draw_buffers_indexed */ + +#ifndef GL_OES_draw_elements_base_vertex +#define GL_OES_draw_elements_base_vertex 1 +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXOESPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXOESPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXOESPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawElementsBaseVertexOES (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawRangeElementsBaseVertexOES (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexOES (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +GL_APICALL void GL_APIENTRY glMultiDrawElementsBaseVertexEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +#endif +#endif /* GL_OES_draw_elements_base_vertex */ + +#ifndef GL_OES_element_index_uint +#define GL_OES_element_index_uint 1 +#endif /* GL_OES_element_index_uint */ + +#ifndef GL_OES_fbo_render_mipmap +#define GL_OES_fbo_render_mipmap 1 +#endif /* GL_OES_fbo_render_mipmap */ + +#ifndef GL_OES_fragment_precision_high +#define GL_OES_fragment_precision_high 1 +#endif /* GL_OES_fragment_precision_high */ + +#ifndef GL_OES_geometry_point_size +#define GL_OES_geometry_point_size 1 +#endif /* GL_OES_geometry_point_size */ + +#ifndef GL_OES_geometry_shader +#define GL_OES_geometry_shader 1 +#define GL_GEOMETRY_SHADER_OES 0x8DD9 +#define GL_GEOMETRY_SHADER_BIT_OES 0x00000004 +#define GL_GEOMETRY_LINKED_VERTICES_OUT_OES 0x8916 +#define GL_GEOMETRY_LINKED_INPUT_TYPE_OES 0x8917 +#define GL_GEOMETRY_LINKED_OUTPUT_TYPE_OES 0x8918 +#define GL_GEOMETRY_SHADER_INVOCATIONS_OES 0x887F +#define GL_LAYER_PROVOKING_VERTEX_OES 0x825E +#define GL_LINES_ADJACENCY_OES 0x000A +#define GL_LINE_STRIP_ADJACENCY_OES 0x000B +#define GL_TRIANGLES_ADJACENCY_OES 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_OES 0x000D +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_OES 0x8DDF +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS_OES 0x8A2C +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_OES 0x8A32 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS_OES 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_OES 0x9124 +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_OES 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_OES 0x8DE1 +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS_OES 0x8E5A +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_OES 0x8C29 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_OES 0x92CF +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS_OES 0x92D5 +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS_OES 0x90CD +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_OES 0x90D7 +#define GL_FIRST_VERTEX_CONVENTION_OES 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_OES 0x8E4E +#define GL_UNDEFINED_VERTEX_OES 0x8260 +#define GL_PRIMITIVES_GENERATED_OES 0x8C87 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS_OES 0x9312 +#define GL_MAX_FRAMEBUFFER_LAYERS_OES 0x9317 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_OES 0x8DA8 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_OES 0x8DA7 +#define GL_REFERENCED_BY_GEOMETRY_SHADER_OES 0x9309 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREOESPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureOES (GLenum target, GLenum attachment, GLuint texture, GLint level); +#endif +#endif /* GL_OES_geometry_shader */ + +#ifndef GL_OES_get_program_binary +#define GL_OES_get_program_binary 1 +#define GL_PROGRAM_BINARY_LENGTH_OES 0x8741 +#define GL_NUM_PROGRAM_BINARY_FORMATS_OES 0x87FE +#define GL_PROGRAM_BINARY_FORMATS_OES 0x87FF +typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLint length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const void *binary, GLint length); +#endif +#endif /* GL_OES_get_program_binary */ + +#ifndef GL_OES_gpu_shader5 +#define GL_OES_gpu_shader5 1 +#endif /* GL_OES_gpu_shader5 */ + +#ifndef GL_OES_mapbuffer +#define GL_OES_mapbuffer 1 +#define GL_WRITE_ONLY_OES 0x88B9 +#define GL_BUFFER_ACCESS_OES 0x88BB +#define GL_BUFFER_MAPPED_OES 0x88BC +#define GL_BUFFER_MAP_POINTER_OES 0x88BD +typedef void *(GL_APIENTRYP PFNGLMAPBUFFEROESPROC) (GLenum target, GLenum access); +typedef GLboolean (GL_APIENTRYP PFNGLUNMAPBUFFEROESPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLGETBUFFERPOINTERVOESPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void *GL_APIENTRY glMapBufferOES (GLenum target, GLenum access); +GL_APICALL GLboolean GL_APIENTRY glUnmapBufferOES (GLenum target); +GL_APICALL void GL_APIENTRY glGetBufferPointervOES (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_OES_mapbuffer */ + +#ifndef GL_OES_packed_depth_stencil +#define GL_OES_packed_depth_stencil 1 +#define GL_DEPTH_STENCIL_OES 0x84F9 +#define GL_UNSIGNED_INT_24_8_OES 0x84FA +#define GL_DEPTH24_STENCIL8_OES 0x88F0 +#endif /* GL_OES_packed_depth_stencil */ + +#ifndef GL_OES_primitive_bounding_box +#define GL_OES_primitive_bounding_box 1 +#define GL_PRIMITIVE_BOUNDING_BOX_OES 0x92BE +typedef void (GL_APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXOESPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPrimitiveBoundingBoxOES (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_OES_primitive_bounding_box */ + +#ifndef GL_OES_required_internalformat +#define GL_OES_required_internalformat 1 +#define GL_ALPHA8_OES 0x803C +#define GL_DEPTH_COMPONENT16_OES 0x81A5 +#define GL_LUMINANCE4_ALPHA4_OES 0x8043 +#define GL_LUMINANCE8_ALPHA8_OES 0x8045 +#define GL_LUMINANCE8_OES 0x8040 +#define GL_RGBA4_OES 0x8056 +#define GL_RGB5_A1_OES 0x8057 +#define GL_RGB565_OES 0x8D62 +#define GL_RGB8_OES 0x8051 +#define GL_RGBA8_OES 0x8058 +#define GL_RGB10_EXT 0x8052 +#define GL_RGB10_A2_EXT 0x8059 +#endif /* GL_OES_required_internalformat */ + +#ifndef GL_OES_rgb8_rgba8 +#define GL_OES_rgb8_rgba8 1 +#endif /* GL_OES_rgb8_rgba8 */ + +#ifndef GL_OES_sample_shading +#define GL_OES_sample_shading 1 +#define GL_SAMPLE_SHADING_OES 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE_OES 0x8C37 +typedef void (GL_APIENTRYP PFNGLMINSAMPLESHADINGOESPROC) (GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMinSampleShadingOES (GLfloat value); +#endif +#endif /* GL_OES_sample_shading */ + +#ifndef GL_OES_sample_variables +#define GL_OES_sample_variables 1 +#endif /* GL_OES_sample_variables */ + +#ifndef GL_OES_shader_image_atomic +#define GL_OES_shader_image_atomic 1 +#endif /* GL_OES_shader_image_atomic */ + +#ifndef GL_OES_shader_io_blocks +#define GL_OES_shader_io_blocks 1 +#endif /* GL_OES_shader_io_blocks */ + +#ifndef GL_OES_shader_multisample_interpolation +#define GL_OES_shader_multisample_interpolation 1 +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_OES 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_OES 0x8E5C +#define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS_OES 0x8E5D +#endif /* GL_OES_shader_multisample_interpolation */ + +#ifndef GL_OES_standard_derivatives +#define GL_OES_standard_derivatives 1 +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES 0x8B8B +#endif /* GL_OES_standard_derivatives */ + +#ifndef GL_OES_stencil1 +#define GL_OES_stencil1 1 +#define GL_STENCIL_INDEX1_OES 0x8D46 +#endif /* GL_OES_stencil1 */ + +#ifndef GL_OES_stencil4 +#define GL_OES_stencil4 1 +#define GL_STENCIL_INDEX4_OES 0x8D47 +#endif /* GL_OES_stencil4 */ + +#ifndef GL_OES_surfaceless_context +#define GL_OES_surfaceless_context 1 +#define GL_FRAMEBUFFER_UNDEFINED_OES 0x8219 +#endif /* GL_OES_surfaceless_context */ + +#ifndef GL_OES_tessellation_point_size +#define GL_OES_tessellation_point_size 1 +#endif /* GL_OES_tessellation_point_size */ + +#ifndef GL_OES_tessellation_shader +#define GL_OES_tessellation_shader 1 +#define GL_PATCHES_OES 0x000E +#define GL_PATCH_VERTICES_OES 0x8E72 +#define GL_TESS_CONTROL_OUTPUT_VERTICES_OES 0x8E75 +#define GL_TESS_GEN_MODE_OES 0x8E76 +#define GL_TESS_GEN_SPACING_OES 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER_OES 0x8E78 +#define GL_TESS_GEN_POINT_MODE_OES 0x8E79 +#define GL_ISOLINES_OES 0x8E7A +#define GL_QUADS_OES 0x0007 +#define GL_FRACTIONAL_ODD_OES 0x8E7B +#define GL_FRACTIONAL_EVEN_OES 0x8E7C +#define GL_MAX_PATCH_VERTICES_OES 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL_OES 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS_OES 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS_OES 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS_OES 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS_OES 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS_OES 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS_OES 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS_OES 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS_OES 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS_OES 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS_OES 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS_OES 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS_OES 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS_OES 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS_OES 0x8E1F +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_OES 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS_OES 0x92CE +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS_OES 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS_OES 0x92D4 +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_OES 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS_OES 0x90CC +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS_OES 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS_OES 0x90D9 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED_OES 0x8221 +#define GL_IS_PER_PATCH_OES 0x92E7 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER_OES 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER_OES 0x9308 +#define GL_TESS_CONTROL_SHADER_OES 0x8E88 +#define GL_TESS_EVALUATION_SHADER_OES 0x8E87 +#define GL_TESS_CONTROL_SHADER_BIT_OES 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT_OES 0x00000010 +typedef void (GL_APIENTRYP PFNGLPATCHPARAMETERIOESPROC) (GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPatchParameteriOES (GLenum pname, GLint value); +#endif +#endif /* GL_OES_tessellation_shader */ + +#ifndef GL_OES_texture_3D +#define GL_OES_texture_3D 1 +#define GL_TEXTURE_WRAP_R_OES 0x8072 +#define GL_TEXTURE_3D_OES 0x806F +#define GL_TEXTURE_BINDING_3D_OES 0x806A +#define GL_MAX_3D_TEXTURE_SIZE_OES 0x8073 +#define GL_SAMPLER_3D_OES 0x8B5F +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_OES 0x8CD4 +typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLCOPYTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DOESPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glCopyTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glFramebufferTexture3DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +#endif +#endif /* GL_OES_texture_3D */ + +#ifndef GL_OES_texture_border_clamp +#define GL_OES_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_OES 0x1004 +#define GL_CLAMP_TO_BORDER_OES 0x812D +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIIVOESPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIUIVOESPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIIVOESPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIUIVOESPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIIVOESPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIUIVOESPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIIVOESPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVOESPROC) (GLuint sampler, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexParameterIivOES (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexParameterIuivOES (GLenum target, GLenum pname, const GLuint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIivOES (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIuivOES (GLenum target, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glSamplerParameterIivOES (GLuint sampler, GLenum pname, const GLint *param); +GL_APICALL void GL_APIENTRY glSamplerParameterIuivOES (GLuint sampler, GLenum pname, const GLuint *param); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIivOES (GLuint sampler, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIuivOES (GLuint sampler, GLenum pname, GLuint *params); +#endif +#endif /* GL_OES_texture_border_clamp */ + +#ifndef GL_OES_texture_buffer +#define GL_OES_texture_buffer 1 +#define GL_TEXTURE_BUFFER_OES 0x8C2A +#define GL_TEXTURE_BUFFER_BINDING_OES 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_OES 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_OES 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_OES 0x8C2D +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT_OES 0x919F +#define GL_SAMPLER_BUFFER_OES 0x8DC2 +#define GL_INT_SAMPLER_BUFFER_OES 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_OES 0x8DD8 +#define GL_IMAGE_BUFFER_OES 0x9051 +#define GL_INT_IMAGE_BUFFER_OES 0x905C +#define GL_UNSIGNED_INT_IMAGE_BUFFER_OES 0x9067 +#define GL_TEXTURE_BUFFER_OFFSET_OES 0x919D +#define GL_TEXTURE_BUFFER_SIZE_OES 0x919E +typedef void (GL_APIENTRYP PFNGLTEXBUFFEROESPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLTEXBUFFERRANGEOESPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexBufferOES (GLenum target, GLenum internalformat, GLuint buffer); +GL_APICALL void GL_APIENTRY glTexBufferRangeOES (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_OES_texture_buffer */ + +#ifndef GL_OES_texture_compression_astc +#define GL_OES_texture_compression_astc 1 +#define GL_COMPRESSED_RGBA_ASTC_3x3x3_OES 0x93C0 +#define GL_COMPRESSED_RGBA_ASTC_4x3x3_OES 0x93C1 +#define GL_COMPRESSED_RGBA_ASTC_4x4x3_OES 0x93C2 +#define GL_COMPRESSED_RGBA_ASTC_4x4x4_OES 0x93C3 +#define GL_COMPRESSED_RGBA_ASTC_5x4x4_OES 0x93C4 +#define GL_COMPRESSED_RGBA_ASTC_5x5x4_OES 0x93C5 +#define GL_COMPRESSED_RGBA_ASTC_5x5x5_OES 0x93C6 +#define GL_COMPRESSED_RGBA_ASTC_6x5x5_OES 0x93C7 +#define GL_COMPRESSED_RGBA_ASTC_6x6x5_OES 0x93C8 +#define GL_COMPRESSED_RGBA_ASTC_6x6x6_OES 0x93C9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_3x3x3_OES 0x93E0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x3x3_OES 0x93E1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x3_OES 0x93E2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x4_OES 0x93E3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4x4_OES 0x93E4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x4_OES 0x93E5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x5_OES 0x93E6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5x5_OES 0x93E7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x5_OES 0x93E8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x6_OES 0x93E9 +#endif /* GL_OES_texture_compression_astc */ + +#ifndef GL_OES_texture_cube_map_array +#define GL_OES_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_OES 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_OES 0x900A +#define GL_SAMPLER_CUBE_MAP_ARRAY_OES 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_OES 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_OES 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_OES 0x900F +#define GL_IMAGE_CUBE_MAP_ARRAY_OES 0x9054 +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_OES 0x905F +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_OES 0x906A +#endif /* GL_OES_texture_cube_map_array */ + +#ifndef GL_OES_texture_float +#define GL_OES_texture_float 1 +#endif /* GL_OES_texture_float */ + +#ifndef GL_OES_texture_float_linear +#define GL_OES_texture_float_linear 1 +#endif /* GL_OES_texture_float_linear */ + +#ifndef GL_OES_texture_half_float +#define GL_OES_texture_half_float 1 +#define GL_HALF_FLOAT_OES 0x8D61 +#endif /* GL_OES_texture_half_float */ + +#ifndef GL_OES_texture_half_float_linear +#define GL_OES_texture_half_float_linear 1 +#endif /* GL_OES_texture_half_float_linear */ + +#ifndef GL_OES_texture_npot +#define GL_OES_texture_npot 1 +#endif /* GL_OES_texture_npot */ + +#ifndef GL_OES_texture_stencil8 +#define GL_OES_texture_stencil8 1 +#define GL_STENCIL_INDEX_OES 0x1901 +#define GL_STENCIL_INDEX8_OES 0x8D48 +#endif /* GL_OES_texture_stencil8 */ + +#ifndef GL_OES_texture_storage_multisample_2d_array +#define GL_OES_texture_storage_multisample_2d_array 1 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY_OES 0x9102 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY_OES 0x9105 +#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910B +#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910C +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910D +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE3DMULTISAMPLEOESPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorage3DMultisampleOES (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +#endif +#endif /* GL_OES_texture_storage_multisample_2d_array */ + +#ifndef GL_OES_texture_view +#define GL_OES_texture_view 1 +#define GL_TEXTURE_VIEW_MIN_LEVEL_OES 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS_OES 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER_OES 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS_OES 0x82DE +#define GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF +typedef void (GL_APIENTRYP PFNGLTEXTUREVIEWOESPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureViewOES (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#endif +#endif /* GL_OES_texture_view */ + +#ifndef GL_OES_vertex_array_object +#define GL_OES_vertex_array_object 1 +#define GL_VERTEX_ARRAY_BINDING_OES 0x85B5 +typedef void (GL_APIENTRYP PFNGLBINDVERTEXARRAYOESPROC) (GLuint array); +typedef void (GL_APIENTRYP PFNGLDELETEVERTEXARRAYSOESPROC) (GLsizei n, const GLuint *arrays); +typedef void (GL_APIENTRYP PFNGLGENVERTEXARRAYSOESPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (GL_APIENTRYP PFNGLISVERTEXARRAYOESPROC) (GLuint array); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindVertexArrayOES (GLuint array); +GL_APICALL void GL_APIENTRY glDeleteVertexArraysOES (GLsizei n, const GLuint *arrays); +GL_APICALL void GL_APIENTRY glGenVertexArraysOES (GLsizei n, GLuint *arrays); +GL_APICALL GLboolean GL_APIENTRY glIsVertexArrayOES (GLuint array); +#endif +#endif /* GL_OES_vertex_array_object */ + +#ifndef GL_OES_vertex_half_float +#define GL_OES_vertex_half_float 1 +#endif /* GL_OES_vertex_half_float */ + +#ifndef GL_OES_vertex_type_10_10_10_2 +#define GL_OES_vertex_type_10_10_10_2 1 +#define GL_UNSIGNED_INT_10_10_10_2_OES 0x8DF6 +#define GL_INT_10_10_10_2_OES 0x8DF7 +#endif /* GL_OES_vertex_type_10_10_10_2 */ + +#ifndef GL_OES_viewport_array +#define GL_OES_viewport_array 1 +#define GL_MAX_VIEWPORTS_OES 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS_OES 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE_OES 0x825D +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX_OES 0x825F +typedef void (GL_APIENTRYP PFNGLVIEWPORTARRAYVOESPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFOESPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFVOESPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLSCISSORARRAYVOESPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDOESPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDVOESPROC) (GLuint index, const GLint *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEARRAYFVOESPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEINDEXEDFOESPROC) (GLuint index, GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLGETFLOATI_VOESPROC) (GLenum target, GLuint index, GLfloat *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportArrayvOES (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glViewportIndexedfOES (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GL_APICALL void GL_APIENTRY glViewportIndexedfvOES (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glScissorArrayvOES (GLuint first, GLsizei count, const GLint *v); +GL_APICALL void GL_APIENTRY glScissorIndexedOES (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorIndexedvOES (GLuint index, const GLint *v); +GL_APICALL void GL_APIENTRY glDepthRangeArrayfvOES (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glDepthRangeIndexedfOES (GLuint index, GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glGetFloati_vOES (GLenum target, GLuint index, GLfloat *data); +#endif +#endif /* GL_OES_viewport_array */ + +#ifndef GL_AMD_compressed_3DC_texture +#define GL_AMD_compressed_3DC_texture 1 +#define GL_3DC_X_AMD 0x87F9 +#define GL_3DC_XY_AMD 0x87FA +#endif /* GL_AMD_compressed_3DC_texture */ + +#ifndef GL_AMD_compressed_ATC_texture +#define GL_AMD_compressed_ATC_texture 1 +#define GL_ATC_RGB_AMD 0x8C92 +#define GL_ATC_RGBA_EXPLICIT_ALPHA_AMD 0x8C93 +#define GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD 0x87EE +#endif /* GL_AMD_compressed_ATC_texture */ + +#ifndef GL_AMD_framebuffer_multisample_advanced +#define GL_AMD_framebuffer_multisample_advanced 1 +#define GL_RENDERBUFFER_STORAGE_SAMPLES_AMD 0x91B2 +#define GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD 0x91B3 +#define GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD 0x91B4 +#define GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD 0x91B5 +#define GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B6 +#define GL_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B7 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleAdvancedAMD (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glNamedRenderbufferStorageMultisampleAdvancedAMD (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_AMD_framebuffer_multisample_advanced */ + +#ifndef GL_AMD_performance_monitor +#define GL_AMD_performance_monitor 1 +#define GL_COUNTER_TYPE_AMD 0x8BC0 +#define GL_COUNTER_RANGE_AMD 0x8BC1 +#define GL_UNSIGNED_INT64_AMD 0x8BC2 +#define GL_PERCENTAGE_AMD 0x8BC3 +#define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4 +#define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5 +#define GL_PERFMON_RESULT_AMD 0x8BC6 +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, void *data); +typedef void (GL_APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (GL_APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (GL_APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +typedef void (GL_APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GL_APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, void *data); +GL_APICALL void GL_APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors); +GL_APICALL void GL_APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors); +GL_APICALL void GL_APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +GL_APICALL void GL_APIENTRY glBeginPerfMonitorAMD (GLuint monitor); +GL_APICALL void GL_APIENTRY glEndPerfMonitorAMD (GLuint monitor); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#endif +#endif /* GL_AMD_performance_monitor */ + +#ifndef GL_AMD_program_binary_Z400 +#define GL_AMD_program_binary_Z400 1 +#define GL_Z400_BINARY_AMD 0x8740 +#endif /* GL_AMD_program_binary_Z400 */ + +#ifndef GL_ANDROID_extension_pack_es31a +#define GL_ANDROID_extension_pack_es31a 1 +#endif /* GL_ANDROID_extension_pack_es31a */ + +#ifndef GL_ANGLE_depth_texture +#define GL_ANGLE_depth_texture 1 +#endif /* GL_ANGLE_depth_texture */ + +#ifndef GL_ANGLE_framebuffer_blit +#define GL_ANGLE_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_ANGLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_ANGLE 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_ANGLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_ANGLE 0x8CAA +typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlitFramebufferANGLE (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_ANGLE_framebuffer_blit */ + +#ifndef GL_ANGLE_framebuffer_multisample +#define GL_ANGLE_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_ANGLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE 0x8D56 +#define GL_MAX_SAMPLES_ANGLE 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEANGLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleANGLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_ANGLE_framebuffer_multisample */ + +#ifndef GL_ANGLE_instanced_arrays +#define GL_ANGLE_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE 0x88FE +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDANGLEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDANGLEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORANGLEPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedANGLE (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedANGLE (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +GL_APICALL void GL_APIENTRY glVertexAttribDivisorANGLE (GLuint index, GLuint divisor); +#endif +#endif /* GL_ANGLE_instanced_arrays */ + +#ifndef GL_ANGLE_pack_reverse_row_order +#define GL_ANGLE_pack_reverse_row_order 1 +#define GL_PACK_REVERSE_ROW_ORDER_ANGLE 0x93A4 +#endif /* GL_ANGLE_pack_reverse_row_order */ + +#ifndef GL_ANGLE_program_binary +#define GL_ANGLE_program_binary 1 +#define GL_PROGRAM_BINARY_ANGLE 0x93A6 +#endif /* GL_ANGLE_program_binary */ + +#ifndef GL_ANGLE_texture_compression_dxt3 +#define GL_ANGLE_texture_compression_dxt3 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE 0x83F2 +#endif /* GL_ANGLE_texture_compression_dxt3 */ + +#ifndef GL_ANGLE_texture_compression_dxt5 +#define GL_ANGLE_texture_compression_dxt5 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE 0x83F3 +#endif /* GL_ANGLE_texture_compression_dxt5 */ + +#ifndef GL_ANGLE_texture_usage +#define GL_ANGLE_texture_usage 1 +#define GL_TEXTURE_USAGE_ANGLE 0x93A2 +#define GL_FRAMEBUFFER_ATTACHMENT_ANGLE 0x93A3 +#endif /* GL_ANGLE_texture_usage */ + +#ifndef GL_ANGLE_translated_shader_source +#define GL_ANGLE_translated_shader_source 1 +#define GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE 0x93A0 +typedef void (GL_APIENTRYP PFNGLGETTRANSLATEDSHADERSOURCEANGLEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetTranslatedShaderSourceANGLE (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +#endif +#endif /* GL_ANGLE_translated_shader_source */ + +#ifndef GL_APPLE_clip_distance +#define GL_APPLE_clip_distance 1 +#define GL_MAX_CLIP_DISTANCES_APPLE 0x0D32 +#define GL_CLIP_DISTANCE0_APPLE 0x3000 +#define GL_CLIP_DISTANCE1_APPLE 0x3001 +#define GL_CLIP_DISTANCE2_APPLE 0x3002 +#define GL_CLIP_DISTANCE3_APPLE 0x3003 +#define GL_CLIP_DISTANCE4_APPLE 0x3004 +#define GL_CLIP_DISTANCE5_APPLE 0x3005 +#define GL_CLIP_DISTANCE6_APPLE 0x3006 +#define GL_CLIP_DISTANCE7_APPLE 0x3007 +#endif /* GL_APPLE_clip_distance */ + +#ifndef GL_APPLE_color_buffer_packed_float +#define GL_APPLE_color_buffer_packed_float 1 +#endif /* GL_APPLE_color_buffer_packed_float */ + +#ifndef GL_APPLE_copy_texture_levels +#define GL_APPLE_copy_texture_levels 1 +typedef void (GL_APIENTRYP PFNGLCOPYTEXTURELEVELSAPPLEPROC) (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyTextureLevelsAPPLE (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); +#endif +#endif /* GL_APPLE_copy_texture_levels */ + +#ifndef GL_APPLE_framebuffer_multisample +#define GL_APPLE_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_APPLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_APPLE 0x8D56 +#define GL_MAX_SAMPLES_APPLE 0x8D57 +#define GL_READ_FRAMEBUFFER_APPLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_APPLE 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_APPLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_APPLE 0x8CAA +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEAPPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLRESOLVEMULTISAMPLEFRAMEBUFFERAPPLEPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleAPPLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glResolveMultisampleFramebufferAPPLE (void); +#endif +#endif /* GL_APPLE_framebuffer_multisample */ + +#ifndef GL_APPLE_rgb_422 +#define GL_APPLE_rgb_422 1 +#define GL_RGB_422_APPLE 0x8A1F +#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB +#define GL_RGB_RAW_422_APPLE 0x8A51 +#endif /* GL_APPLE_rgb_422 */ + +#ifndef GL_APPLE_sync +#define GL_APPLE_sync 1 +#define GL_SYNC_OBJECT_APPLE 0x8A53 +#define GL_MAX_SERVER_WAIT_TIMEOUT_APPLE 0x9111 +#define GL_OBJECT_TYPE_APPLE 0x9112 +#define GL_SYNC_CONDITION_APPLE 0x9113 +#define GL_SYNC_STATUS_APPLE 0x9114 +#define GL_SYNC_FLAGS_APPLE 0x9115 +#define GL_SYNC_FENCE_APPLE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE 0x9117 +#define GL_UNSIGNALED_APPLE 0x9118 +#define GL_SIGNALED_APPLE 0x9119 +#define GL_ALREADY_SIGNALED_APPLE 0x911A +#define GL_TIMEOUT_EXPIRED_APPLE 0x911B +#define GL_CONDITION_SATISFIED_APPLE 0x911C +#define GL_WAIT_FAILED_APPLE 0x911D +#define GL_SYNC_FLUSH_COMMANDS_BIT_APPLE 0x00000001 +#define GL_TIMEOUT_IGNORED_APPLE 0xFFFFFFFFFFFFFFFFull +typedef GLsync (GL_APIENTRYP PFNGLFENCESYNCAPPLEPROC) (GLenum condition, GLbitfield flags); +typedef GLboolean (GL_APIENTRYP PFNGLISSYNCAPPLEPROC) (GLsync sync); +typedef void (GL_APIENTRYP PFNGLDELETESYNCAPPLEPROC) (GLsync sync); +typedef GLenum (GL_APIENTRYP PFNGLCLIENTWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (GL_APIENTRYP PFNGLWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (GL_APIENTRYP PFNGLGETINTEGER64VAPPLEPROC) (GLenum pname, GLint64 *params); +typedef void (GL_APIENTRYP PFNGLGETSYNCIVAPPLEPROC) (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLsync GL_APIENTRY glFenceSyncAPPLE (GLenum condition, GLbitfield flags); +GL_APICALL GLboolean GL_APIENTRY glIsSyncAPPLE (GLsync sync); +GL_APICALL void GL_APIENTRY glDeleteSyncAPPLE (GLsync sync); +GL_APICALL GLenum GL_APIENTRY glClientWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); +GL_APICALL void GL_APIENTRY glWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); +GL_APICALL void GL_APIENTRY glGetInteger64vAPPLE (GLenum pname, GLint64 *params); +GL_APICALL void GL_APIENTRY glGetSyncivAPPLE (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +#endif +#endif /* GL_APPLE_sync */ + +#ifndef GL_APPLE_texture_format_BGRA8888 +#define GL_APPLE_texture_format_BGRA8888 1 +#define GL_BGRA_EXT 0x80E1 +#define GL_BGRA8_EXT 0x93A1 +#endif /* GL_APPLE_texture_format_BGRA8888 */ + +#ifndef GL_APPLE_texture_max_level +#define GL_APPLE_texture_max_level 1 +#define GL_TEXTURE_MAX_LEVEL_APPLE 0x813D +#endif /* GL_APPLE_texture_max_level */ + +#ifndef GL_APPLE_texture_packed_float +#define GL_APPLE_texture_packed_float 1 +#define GL_UNSIGNED_INT_10F_11F_11F_REV_APPLE 0x8C3B +#define GL_UNSIGNED_INT_5_9_9_9_REV_APPLE 0x8C3E +#define GL_R11F_G11F_B10F_APPLE 0x8C3A +#define GL_RGB9_E5_APPLE 0x8C3D +#endif /* GL_APPLE_texture_packed_float */ + +#ifndef GL_ARM_mali_program_binary +#define GL_ARM_mali_program_binary 1 +#define GL_MALI_PROGRAM_BINARY_ARM 0x8F61 +#endif /* GL_ARM_mali_program_binary */ + +#ifndef GL_ARM_mali_shader_binary +#define GL_ARM_mali_shader_binary 1 +#define GL_MALI_SHADER_BINARY_ARM 0x8F60 +#endif /* GL_ARM_mali_shader_binary */ + +#ifndef GL_ARM_rgba8 +#define GL_ARM_rgba8 1 +#endif /* GL_ARM_rgba8 */ + +#ifndef GL_ARM_shader_framebuffer_fetch +#define GL_ARM_shader_framebuffer_fetch 1 +#define GL_FETCH_PER_SAMPLE_ARM 0x8F65 +#define GL_FRAGMENT_SHADER_FRAMEBUFFER_FETCH_MRT_ARM 0x8F66 +#endif /* GL_ARM_shader_framebuffer_fetch */ + +#ifndef GL_ARM_shader_framebuffer_fetch_depth_stencil +#define GL_ARM_shader_framebuffer_fetch_depth_stencil 1 +#endif /* GL_ARM_shader_framebuffer_fetch_depth_stencil */ + +#ifndef GL_ARM_texture_unnormalized_coordinates +#define GL_ARM_texture_unnormalized_coordinates 1 +#define GL_TEXTURE_UNNORMALIZED_COORDINATES_ARM 0x8F6A +#endif /* GL_ARM_texture_unnormalized_coordinates */ + +#ifndef GL_DMP_program_binary +#define GL_DMP_program_binary 1 +#define GL_SMAPHS30_PROGRAM_BINARY_DMP 0x9251 +#define GL_SMAPHS_PROGRAM_BINARY_DMP 0x9252 +#define GL_DMP_PROGRAM_BINARY_DMP 0x9253 +#endif /* GL_DMP_program_binary */ + +#ifndef GL_DMP_shader_binary +#define GL_DMP_shader_binary 1 +#define GL_SHADER_BINARY_DMP 0x9250 +#endif /* GL_DMP_shader_binary */ + +#ifndef GL_EXT_EGL_image_array +#define GL_EXT_EGL_image_array 1 +#endif /* GL_EXT_EGL_image_array */ + +#ifndef GL_EXT_EGL_image_storage +#define GL_EXT_EGL_image_storage 1 +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXSTORAGEEXTPROC) (GLenum target, GLeglImageOES image, const GLint* attrib_list); +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURESTORAGEEXTPROC) (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEGLImageTargetTexStorageEXT (GLenum target, GLeglImageOES image, const GLint* attrib_list); +GL_APICALL void GL_APIENTRY glEGLImageTargetTextureStorageEXT (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#endif +#endif /* GL_EXT_EGL_image_storage */ + +#ifndef GL_EXT_EGL_image_storage_compression +#define GL_EXT_EGL_image_storage_compression 1 +#define GL_SURFACE_COMPRESSION_EXT 0x96C0 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_NONE_EXT 0x96C1 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_DEFAULT_EXT 0x96C2 +#endif /* GL_EXT_EGL_image_storage_compression */ + +#ifndef GL_EXT_YUV_target +#define GL_EXT_YUV_target 1 +#define GL_SAMPLER_EXTERNAL_2D_Y2Y_EXT 0x8BE7 +#endif /* GL_EXT_YUV_target */ + +#ifndef GL_EXT_base_instance +#define GL_EXT_base_instance 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEEXTPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedBaseInstanceEXT (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseInstanceEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexBaseInstanceEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +#endif +#endif /* GL_EXT_base_instance */ + +#ifndef GL_EXT_blend_func_extended +#define GL_EXT_blend_func_extended 1 +#define GL_SRC1_COLOR_EXT 0x88F9 +#define GL_SRC1_ALPHA_EXT 0x8589 +#define GL_ONE_MINUS_SRC1_COLOR_EXT 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA_EXT 0x88FB +#define GL_SRC_ALPHA_SATURATE_EXT 0x0308 +#define GL_LOCATION_INDEX_EXT 0x930F +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS_EXT 0x88FC +typedef void (GL_APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDEXTPROC) (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLBINDFRAGDATALOCATIONEXTPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (GL_APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONINDEXEXTPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef GLint (GL_APIENTRYP PFNGLGETFRAGDATAINDEXEXTPROC) (GLuint program, const GLchar *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindFragDataLocationIndexedEXT (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +GL_APICALL void GL_APIENTRY glBindFragDataLocationEXT (GLuint program, GLuint color, const GLchar *name); +GL_APICALL GLint GL_APIENTRY glGetProgramResourceLocationIndexEXT (GLuint program, GLenum programInterface, const GLchar *name); +GL_APICALL GLint GL_APIENTRY glGetFragDataIndexEXT (GLuint program, const GLchar *name); +#endif +#endif /* GL_EXT_blend_func_extended */ + +#ifndef GL_EXT_blend_minmax +#define GL_EXT_blend_minmax 1 +#define GL_MIN_EXT 0x8007 +#define GL_MAX_EXT 0x8008 +#endif /* GL_EXT_blend_minmax */ + +#ifndef GL_EXT_buffer_storage +#define GL_EXT_buffer_storage 1 +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_PERSISTENT_BIT_EXT 0x0040 +#define GL_MAP_COHERENT_BIT_EXT 0x0080 +#define GL_DYNAMIC_STORAGE_BIT_EXT 0x0100 +#define GL_CLIENT_STORAGE_BIT_EXT 0x0200 +#define GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT 0x00004000 +#define GL_BUFFER_IMMUTABLE_STORAGE_EXT 0x821F +#define GL_BUFFER_STORAGE_FLAGS_EXT 0x8220 +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEEXTPROC) (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferStorageEXT (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +#endif +#endif /* GL_EXT_buffer_storage */ + +#ifndef GL_EXT_clear_texture +#define GL_EXT_clear_texture 1 +typedef void (GL_APIENTRYP PFNGLCLEARTEXIMAGEEXTPROC) (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +typedef void (GL_APIENTRYP PFNGLCLEARTEXSUBIMAGEEXTPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glClearTexImageEXT (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +GL_APICALL void GL_APIENTRY glClearTexSubImageEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +#endif +#endif /* GL_EXT_clear_texture */ + +#ifndef GL_EXT_clip_control +#define GL_EXT_clip_control 1 +#define GL_LOWER_LEFT_EXT 0x8CA1 +#define GL_UPPER_LEFT_EXT 0x8CA2 +#define GL_NEGATIVE_ONE_TO_ONE_EXT 0x935E +#define GL_ZERO_TO_ONE_EXT 0x935F +#define GL_CLIP_ORIGIN_EXT 0x935C +#define GL_CLIP_DEPTH_MODE_EXT 0x935D +typedef void (GL_APIENTRYP PFNGLCLIPCONTROLEXTPROC) (GLenum origin, GLenum depth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glClipControlEXT (GLenum origin, GLenum depth); +#endif +#endif /* GL_EXT_clip_control */ + +#ifndef GL_EXT_clip_cull_distance +#define GL_EXT_clip_cull_distance 1 +#define GL_MAX_CLIP_DISTANCES_EXT 0x0D32 +#define GL_MAX_CULL_DISTANCES_EXT 0x82F9 +#define GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES_EXT 0x82FA +#define GL_CLIP_DISTANCE0_EXT 0x3000 +#define GL_CLIP_DISTANCE1_EXT 0x3001 +#define GL_CLIP_DISTANCE2_EXT 0x3002 +#define GL_CLIP_DISTANCE3_EXT 0x3003 +#define GL_CLIP_DISTANCE4_EXT 0x3004 +#define GL_CLIP_DISTANCE5_EXT 0x3005 +#define GL_CLIP_DISTANCE6_EXT 0x3006 +#define GL_CLIP_DISTANCE7_EXT 0x3007 +#endif /* GL_EXT_clip_cull_distance */ + +#ifndef GL_EXT_color_buffer_float +#define GL_EXT_color_buffer_float 1 +#endif /* GL_EXT_color_buffer_float */ + +#ifndef GL_EXT_color_buffer_half_float +#define GL_EXT_color_buffer_half_float 1 +#define GL_RGBA16F_EXT 0x881A +#define GL_RGB16F_EXT 0x881B +#define GL_RG16F_EXT 0x822F +#define GL_R16F_EXT 0x822D +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT 0x8211 +#define GL_UNSIGNED_NORMALIZED_EXT 0x8C17 +#endif /* GL_EXT_color_buffer_half_float */ + +#ifndef GL_EXT_conservative_depth +#define GL_EXT_conservative_depth 1 +#endif /* GL_EXT_conservative_depth */ + +#ifndef GL_EXT_copy_image +#define GL_EXT_copy_image 1 +typedef void (GL_APIENTRYP PFNGLCOPYIMAGESUBDATAEXTPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyImageSubDataEXT (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#endif +#endif /* GL_EXT_copy_image */ + +#ifndef GL_EXT_debug_label +#define GL_EXT_debug_label 1 +#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F +#define GL_PROGRAM_OBJECT_EXT 0x8B40 +#define GL_SHADER_OBJECT_EXT 0x8B48 +#define GL_BUFFER_OBJECT_EXT 0x9151 +#define GL_QUERY_OBJECT_EXT 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154 +#define GL_TRANSFORM_FEEDBACK 0x8E22 +typedef void (GL_APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +#endif /* GL_EXT_debug_label */ + +#ifndef GL_EXT_debug_marker +#define GL_EXT_debug_marker 1 +typedef void (GL_APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (GL_APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (GL_APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker); +GL_APICALL void GL_APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker); +GL_APICALL void GL_APIENTRY glPopGroupMarkerEXT (void); +#endif +#endif /* GL_EXT_debug_marker */ + +#ifndef GL_EXT_depth_clamp +#define GL_EXT_depth_clamp 1 +#define GL_DEPTH_CLAMP_EXT 0x864F +#endif /* GL_EXT_depth_clamp */ + +#ifndef GL_EXT_discard_framebuffer +#define GL_EXT_discard_framebuffer 1 +#define GL_COLOR_EXT 0x1800 +#define GL_DEPTH_EXT 0x1801 +#define GL_STENCIL_EXT 0x1802 +typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments); +#endif +#endif /* GL_EXT_discard_framebuffer */ + +#ifndef GL_EXT_disjoint_timer_query +#define GL_EXT_disjoint_timer_query 1 +#define GL_QUERY_COUNTER_BITS_EXT 0x8864 +#define GL_CURRENT_QUERY_EXT 0x8865 +#define GL_QUERY_RESULT_EXT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_EXT 0x8867 +#define GL_TIME_ELAPSED_EXT 0x88BF +#define GL_TIMESTAMP_EXT 0x8E28 +#define GL_GPU_DISJOINT_EXT 0x8FBB +typedef void (GL_APIENTRYP PFNGLGENQUERIESEXTPROC) (GLsizei n, GLuint *ids); +typedef void (GL_APIENTRYP PFNGLDELETEQUERIESEXTPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (GL_APIENTRYP PFNGLISQUERYEXTPROC) (GLuint id); +typedef void (GL_APIENTRYP PFNGLBEGINQUERYEXTPROC) (GLenum target, GLuint id); +typedef void (GL_APIENTRYP PFNGLENDQUERYEXTPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLQUERYCOUNTEREXTPROC) (GLuint id, GLenum target); +typedef void (GL_APIENTRYP PFNGLGETQUERYIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTIVEXTPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUIVEXTPROC) (GLuint id, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLGETINTEGER64VEXTPROC) (GLenum pname, GLint64 *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGenQueriesEXT (GLsizei n, GLuint *ids); +GL_APICALL void GL_APIENTRY glDeleteQueriesEXT (GLsizei n, const GLuint *ids); +GL_APICALL GLboolean GL_APIENTRY glIsQueryEXT (GLuint id); +GL_APICALL void GL_APIENTRY glBeginQueryEXT (GLenum target, GLuint id); +GL_APICALL void GL_APIENTRY glEndQueryEXT (GLenum target); +GL_APICALL void GL_APIENTRY glQueryCounterEXT (GLuint id, GLenum target); +GL_APICALL void GL_APIENTRY glGetQueryivEXT (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectivEXT (GLuint id, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectuivEXT (GLuint id, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64 *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64 *params); +GL_APICALL void GL_APIENTRY glGetInteger64vEXT (GLenum pname, GLint64 *data); +#endif +#endif /* GL_EXT_disjoint_timer_query */ + +#ifndef GL_EXT_draw_buffers +#define GL_EXT_draw_buffers 1 +#define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF +#define GL_MAX_DRAW_BUFFERS_EXT 0x8824 +#define GL_DRAW_BUFFER0_EXT 0x8825 +#define GL_DRAW_BUFFER1_EXT 0x8826 +#define GL_DRAW_BUFFER2_EXT 0x8827 +#define GL_DRAW_BUFFER3_EXT 0x8828 +#define GL_DRAW_BUFFER4_EXT 0x8829 +#define GL_DRAW_BUFFER5_EXT 0x882A +#define GL_DRAW_BUFFER6_EXT 0x882B +#define GL_DRAW_BUFFER7_EXT 0x882C +#define GL_DRAW_BUFFER8_EXT 0x882D +#define GL_DRAW_BUFFER9_EXT 0x882E +#define GL_DRAW_BUFFER10_EXT 0x882F +#define GL_DRAW_BUFFER11_EXT 0x8830 +#define GL_DRAW_BUFFER12_EXT 0x8831 +#define GL_DRAW_BUFFER13_EXT 0x8832 +#define GL_DRAW_BUFFER14_EXT 0x8833 +#define GL_DRAW_BUFFER15_EXT 0x8834 +#define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 +#define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 +#define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 +#define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 +#define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 +#define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 +#define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 +#define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 +#define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 +#define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 +#define GL_COLOR_ATTACHMENT10_EXT 0x8CEA +#define GL_COLOR_ATTACHMENT11_EXT 0x8CEB +#define GL_COLOR_ATTACHMENT12_EXT 0x8CEC +#define GL_COLOR_ATTACHMENT13_EXT 0x8CED +#define GL_COLOR_ATTACHMENT14_EXT 0x8CEE +#define GL_COLOR_ATTACHMENT15_EXT 0x8CEF +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSEXTPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawBuffersEXT (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_EXT_draw_buffers */ + +#ifndef GL_EXT_draw_buffers_indexed +#define GL_EXT_draw_buffers_indexed 1 +typedef void (GL_APIENTRYP PFNGLENABLEIEXTPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEIEXTPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONIEXTPROC) (GLuint buf, GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEIEXTPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCIEXTPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEIEXTPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (GL_APIENTRYP PFNGLCOLORMASKIEXTPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDIEXTPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEnableiEXT (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiEXT (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glBlendEquationiEXT (GLuint buf, GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparateiEXT (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunciEXT (GLuint buf, GLenum src, GLenum dst); +GL_APICALL void GL_APIENTRY glBlendFuncSeparateiEXT (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GL_APICALL void GL_APIENTRY glColorMaskiEXT (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediEXT (GLenum target, GLuint index); +#endif +#endif /* GL_EXT_draw_buffers_indexed */ + +#ifndef GL_EXT_draw_elements_base_vertex +#define GL_EXT_draw_elements_base_vertex 1 +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawElementsBaseVertexEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawRangeElementsBaseVertexEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +#endif +#endif /* GL_EXT_draw_elements_base_vertex */ + +#ifndef GL_EXT_draw_instanced +#define GL_EXT_draw_instanced 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_EXT_draw_instanced */ + +#ifndef GL_EXT_draw_transform_feedback +#define GL_EXT_draw_transform_feedback 1 +typedef void (GL_APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKEXTPROC) (GLenum mode, GLuint id); +typedef void (GL_APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDEXTPROC) (GLenum mode, GLuint id, GLsizei instancecount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawTransformFeedbackEXT (GLenum mode, GLuint id); +GL_APICALL void GL_APIENTRY glDrawTransformFeedbackInstancedEXT (GLenum mode, GLuint id, GLsizei instancecount); +#endif +#endif /* GL_EXT_draw_transform_feedback */ + +#ifndef GL_EXT_external_buffer +#define GL_EXT_external_buffer 1 +typedef void *GLeglClientBufferEXT; +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEEXTERNALEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTERNALEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferStorageExternalEXT (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +GL_APICALL void GL_APIENTRY glNamedBufferStorageExternalEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#endif +#endif /* GL_EXT_external_buffer */ + +#ifndef GL_EXT_float_blend +#define GL_EXT_float_blend 1 +#endif /* GL_EXT_float_blend */ + +#ifndef GL_EXT_fragment_shading_rate +#define GL_EXT_fragment_shading_rate 1 +#define GL_SHADING_RATE_1X1_PIXELS_EXT 0x96A6 +#define GL_SHADING_RATE_1X2_PIXELS_EXT 0x96A7 +#define GL_SHADING_RATE_2X1_PIXELS_EXT 0x96A8 +#define GL_SHADING_RATE_2X2_PIXELS_EXT 0x96A9 +#define GL_SHADING_RATE_1X4_PIXELS_EXT 0x96AA +#define GL_SHADING_RATE_4X1_PIXELS_EXT 0x96AB +#define GL_SHADING_RATE_4X2_PIXELS_EXT 0x96AC +#define GL_SHADING_RATE_2X4_PIXELS_EXT 0x96AD +#define GL_SHADING_RATE_4X4_PIXELS_EXT 0x96AE +#define GL_SHADING_RATE_EXT 0x96D0 +#define GL_SHADING_RATE_ATTACHMENT_EXT 0x96D1 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_EXT 0x96D2 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_REPLACE_EXT 0x96D3 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MIN_EXT 0x96D4 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MAX_EXT 0x96D5 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MUL_EXT 0x96D6 +#define GL_MIN_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_WIDTH_EXT 0x96D7 +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_WIDTH_EXT 0x96D8 +#define GL_MIN_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_HEIGHT_EXT 0x96D9 +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_HEIGHT_EXT 0x96DA +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_ASPECT_RATIO_EXT 0x96DB +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_LAYERS_EXT 0x96DC +#define GL_FRAGMENT_SHADING_RATE_WITH_SHADER_DEPTH_STENCIL_WRITES_SUPPORTED_EXT 0x96DD +#define GL_FRAGMENT_SHADING_RATE_WITH_SAMPLE_MASK_SUPPORTED_EXT 0x96DE +#define GL_FRAGMENT_SHADING_RATE_ATTACHMENT_WITH_DEFAULT_FRAMEBUFFER_SUPPORTED_EXT 0x96DF +#define GL_FRAGMENT_SHADING_RATE_NON_TRIVIAL_COMBINERS_SUPPORTED_EXT 0x8F6F +typedef void (GL_APIENTRYP PFNGLGETFRAGMENTSHADINGRATESEXTPROC) (GLsizei samples, GLsizei maxCount, GLsizei *count, GLenum *shadingRates); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEEXTPROC) (GLenum rate); +typedef void (GL_APIENTRYP PFNGLSHADINGRATECOMBINEROPSEXTPROC) (GLenum combinerOp0, GLenum combinerOp1); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERSHADINGRATEEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint baseLayer, GLsizei numLayers, GLsizei texelWidth, GLsizei texelHeight); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetFragmentShadingRatesEXT (GLsizei samples, GLsizei maxCount, GLsizei *count, GLenum *shadingRates); +GL_APICALL void GL_APIENTRY glShadingRateEXT (GLenum rate); +GL_APICALL void GL_APIENTRY glShadingRateCombinerOpsEXT (GLenum combinerOp0, GLenum combinerOp1); +GL_APICALL void GL_APIENTRY glFramebufferShadingRateEXT (GLenum target, GLenum attachment, GLuint texture, GLint baseLayer, GLsizei numLayers, GLsizei texelWidth, GLsizei texelHeight); +#endif +#endif /* GL_EXT_fragment_shading_rate */ + +#ifndef GL_EXT_geometry_point_size +#define GL_EXT_geometry_point_size 1 +#endif /* GL_EXT_geometry_point_size */ + +#ifndef GL_EXT_geometry_shader +#define GL_EXT_geometry_shader 1 +#define GL_GEOMETRY_SHADER_EXT 0x8DD9 +#define GL_GEOMETRY_SHADER_BIT_EXT 0x00000004 +#define GL_GEOMETRY_LINKED_VERTICES_OUT_EXT 0x8916 +#define GL_GEOMETRY_LINKED_INPUT_TYPE_EXT 0x8917 +#define GL_GEOMETRY_LINKED_OUTPUT_TYPE_EXT 0x8918 +#define GL_GEOMETRY_SHADER_INVOCATIONS_EXT 0x887F +#define GL_LAYER_PROVOKING_VERTEX_EXT 0x825E +#define GL_LINES_ADJACENCY_EXT 0x000A +#define GL_LINE_STRIP_ADJACENCY_EXT 0x000B +#define GL_TRIANGLES_ADJACENCY_EXT 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0x000D +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS_EXT 0x8A2C +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8A32 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS_EXT 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_EXT 0x9124 +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1 +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS_EXT 0x8E5A +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_EXT 0x92CF +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS_EXT 0x92D5 +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS_EXT 0x90CD +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_EXT 0x90D7 +#define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E +#define GL_UNDEFINED_VERTEX_EXT 0x8260 +#define GL_PRIMITIVES_GENERATED_EXT 0x8C87 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS_EXT 0x9312 +#define GL_MAX_FRAMEBUFFER_LAYERS_EXT 0x9317 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7 +#define GL_REFERENCED_BY_GEOMETRY_SHADER_EXT 0x9309 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level); +#endif +#endif /* GL_EXT_geometry_shader */ + +#ifndef GL_EXT_gpu_shader5 +#define GL_EXT_gpu_shader5 1 +#endif /* GL_EXT_gpu_shader5 */ + +#ifndef GL_EXT_instanced_arrays +#define GL_EXT_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_EXT 0x88FE +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISOREXTPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glVertexAttribDivisorEXT (GLuint index, GLuint divisor); +#endif +#endif /* GL_EXT_instanced_arrays */ + +#ifndef GL_EXT_map_buffer_range +#define GL_EXT_map_buffer_range 1 +#define GL_MAP_READ_BIT_EXT 0x0001 +#define GL_MAP_WRITE_BIT_EXT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT_EXT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT_EXT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT_EXT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT_EXT 0x0020 +typedef void *(GL_APIENTRYP PFNGLMAPBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (GL_APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void *GL_APIENTRY glMapBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GL_APICALL void GL_APIENTRY glFlushMappedBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length); +#endif +#endif /* GL_EXT_map_buffer_range */ + +#ifndef GL_EXT_memory_object +#define GL_EXT_memory_object 1 +#define GL_TEXTURE_TILING_EXT 0x9580 +#define GL_DEDICATED_MEMORY_OBJECT_EXT 0x9581 +#define GL_PROTECTED_MEMORY_OBJECT_EXT 0x959B +#define GL_NUM_TILING_TYPES_EXT 0x9582 +#define GL_TILING_TYPES_EXT 0x9583 +#define GL_OPTIMAL_TILING_EXT 0x9584 +#define GL_LINEAR_TILING_EXT 0x9585 +#define GL_NUM_DEVICE_UUIDS_EXT 0x9596 +#define GL_DEVICE_UUID_EXT 0x9597 +#define GL_DRIVER_UUID_EXT 0x9598 +#define GL_UUID_SIZE_EXT 16 +typedef void (GL_APIENTRYP PFNGLGETUNSIGNEDBYTEVEXTPROC) (GLenum pname, GLubyte *data); +typedef void (GL_APIENTRYP PFNGLGETUNSIGNEDBYTEI_VEXTPROC) (GLenum target, GLuint index, GLubyte *data); +typedef void (GL_APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); +typedef GLboolean (GL_APIENTRYP PFNGLISMEMORYOBJECTEXTPROC) (GLuint memoryObject); +typedef void (GL_APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); +typedef void (GL_APIENTRYP PFNGLMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLGETMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM2DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM3DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEMEMEXTPROC) (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM2DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM2DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM3DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM3DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERSTORAGEMEMEXTPROC) (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetUnsignedBytevEXT (GLenum pname, GLubyte *data); +GL_APICALL void GL_APIENTRY glGetUnsignedBytei_vEXT (GLenum target, GLuint index, GLubyte *data); +GL_APICALL void GL_APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); +GL_APICALL GLboolean GL_APIENTRY glIsMemoryObjectEXT (GLuint memoryObject); +GL_APICALL void GL_APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects); +GL_APICALL void GL_APIENTRY glMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glGetMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glTexStorageMem2DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem2DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem3DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem3DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glBufferStorageMemEXT (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem2DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem2DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem3DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem3DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glNamedBufferStorageMemEXT (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_EXT_memory_object */ + +#ifndef GL_EXT_memory_object_fd +#define GL_EXT_memory_object_fd 1 +#define GL_HANDLE_TYPE_OPAQUE_FD_EXT 0x9586 +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYFDEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportMemoryFdEXT (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_memory_object_fd */ + +#ifndef GL_EXT_memory_object_win32 +#define GL_EXT_memory_object_win32 1 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_EXT 0x9587 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_KMT_EXT 0x9588 +#define GL_DEVICE_LUID_EXT 0x9599 +#define GL_DEVICE_NODE_MASK_EXT 0x959A +#define GL_LUID_SIZE_EXT 8 +#define GL_HANDLE_TYPE_D3D12_TILEPOOL_EXT 0x9589 +#define GL_HANDLE_TYPE_D3D12_RESOURCE_EXT 0x958A +#define GL_HANDLE_TYPE_D3D11_IMAGE_EXT 0x958B +#define GL_HANDLE_TYPE_D3D11_IMAGE_KMT_EXT 0x958C +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYWIN32HANDLEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYWIN32NAMEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportMemoryWin32HandleEXT (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +GL_APICALL void GL_APIENTRY glImportMemoryWin32NameEXT (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_memory_object_win32 */ + +#ifndef GL_EXT_multi_draw_arrays +#define GL_EXT_multi_draw_arrays 1 +typedef void (GL_APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMultiDrawArraysEXT (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#endif +#endif /* GL_EXT_multi_draw_arrays */ + +#ifndef GL_EXT_multi_draw_indirect +#define GL_EXT_multi_draw_indirect 1 +typedef void (GL_APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTEXTPROC) (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTEXTPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMultiDrawArraysIndirectEXT (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +GL_APICALL void GL_APIENTRY glMultiDrawElementsIndirectEXT (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +#endif +#endif /* GL_EXT_multi_draw_indirect */ + +#ifndef GL_EXT_multisampled_compatibility +#define GL_EXT_multisampled_compatibility 1 +#define GL_MULTISAMPLE_EXT 0x809D +#define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F +#endif /* GL_EXT_multisampled_compatibility */ + +#ifndef GL_EXT_multisampled_render_to_texture +#define GL_EXT_multisampled_render_to_texture 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT 0x8D6C +#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 +#define GL_MAX_SAMPLES_EXT 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#endif +#endif /* GL_EXT_multisampled_render_to_texture */ + +#ifndef GL_EXT_multisampled_render_to_texture2 +#define GL_EXT_multisampled_render_to_texture2 1 +#endif /* GL_EXT_multisampled_render_to_texture2 */ + +#ifndef GL_EXT_multiview_draw_buffers +#define GL_EXT_multiview_draw_buffers 1 +#define GL_COLOR_ATTACHMENT_EXT 0x90F0 +#define GL_MULTIVIEW_EXT 0x90F1 +#define GL_DRAW_BUFFER_EXT 0x0C01 +#define GL_READ_BUFFER_EXT 0x0C02 +#define GL_MAX_MULTIVIEW_BUFFERS_EXT 0x90F2 +typedef void (GL_APIENTRYP PFNGLREADBUFFERINDEXEDEXTPROC) (GLenum src, GLint index); +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSINDEXEDEXTPROC) (GLint n, const GLenum *location, const GLint *indices); +typedef void (GL_APIENTRYP PFNGLGETINTEGERI_VEXTPROC) (GLenum target, GLuint index, GLint *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glReadBufferIndexedEXT (GLenum src, GLint index); +GL_APICALL void GL_APIENTRY glDrawBuffersIndexedEXT (GLint n, const GLenum *location, const GLint *indices); +GL_APICALL void GL_APIENTRY glGetIntegeri_vEXT (GLenum target, GLuint index, GLint *data); +#endif +#endif /* GL_EXT_multiview_draw_buffers */ + +#ifndef GL_EXT_multiview_tessellation_geometry_shader +#define GL_EXT_multiview_tessellation_geometry_shader 1 +#endif /* GL_EXT_multiview_tessellation_geometry_shader */ + +#ifndef GL_EXT_multiview_texture_multisample +#define GL_EXT_multiview_texture_multisample 1 +#endif /* GL_EXT_multiview_texture_multisample */ + +#ifndef GL_EXT_multiview_timer_query +#define GL_EXT_multiview_timer_query 1 +#endif /* GL_EXT_multiview_timer_query */ + +#ifndef GL_EXT_occlusion_query_boolean +#define GL_EXT_occlusion_query_boolean 1 +#define GL_ANY_SAMPLES_PASSED_EXT 0x8C2F +#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT 0x8D6A +#endif /* GL_EXT_occlusion_query_boolean */ + +#ifndef GL_EXT_polygon_offset_clamp +#define GL_EXT_polygon_offset_clamp 1 +#define GL_POLYGON_OFFSET_CLAMP_EXT 0x8E1B +typedef void (GL_APIENTRYP PFNGLPOLYGONOFFSETCLAMPEXTPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPolygonOffsetClampEXT (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_EXT_polygon_offset_clamp */ + +#ifndef GL_EXT_post_depth_coverage +#define GL_EXT_post_depth_coverage 1 +#endif /* GL_EXT_post_depth_coverage */ + +#ifndef GL_EXT_primitive_bounding_box +#define GL_EXT_primitive_bounding_box 1 +#define GL_PRIMITIVE_BOUNDING_BOX_EXT 0x92BE +typedef void (GL_APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXEXTPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPrimitiveBoundingBoxEXT (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_EXT_primitive_bounding_box */ + +#ifndef GL_EXT_protected_textures +#define GL_EXT_protected_textures 1 +#define GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT 0x00000010 +#define GL_TEXTURE_PROTECTED_EXT 0x8BFA +#endif /* GL_EXT_protected_textures */ + +#ifndef GL_EXT_pvrtc_sRGB +#define GL_EXT_pvrtc_sRGB 1 +#define GL_COMPRESSED_SRGB_PVRTC_2BPPV1_EXT 0x8A54 +#define GL_COMPRESSED_SRGB_PVRTC_4BPPV1_EXT 0x8A55 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_2BPPV1_EXT 0x8A56 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_4BPPV1_EXT 0x8A57 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_2BPPV2_IMG 0x93F0 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_4BPPV2_IMG 0x93F1 +#endif /* GL_EXT_pvrtc_sRGB */ + +#ifndef GL_EXT_raster_multisample +#define GL_EXT_raster_multisample 1 +#define GL_RASTER_MULTISAMPLE_EXT 0x9327 +#define GL_RASTER_SAMPLES_EXT 0x9328 +#define GL_MAX_RASTER_SAMPLES_EXT 0x9329 +#define GL_RASTER_FIXED_SAMPLE_LOCATIONS_EXT 0x932A +#define GL_MULTISAMPLE_RASTERIZATION_ALLOWED_EXT 0x932B +#define GL_EFFECTIVE_RASTER_SAMPLES_EXT 0x932C +typedef void (GL_APIENTRYP PFNGLRASTERSAMPLESEXTPROC) (GLuint samples, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRasterSamplesEXT (GLuint samples, GLboolean fixedsamplelocations); +#endif +#endif /* GL_EXT_raster_multisample */ + +#ifndef GL_EXT_read_format_bgra +#define GL_EXT_read_format_bgra 1 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT 0x8366 +#endif /* GL_EXT_read_format_bgra */ + +#ifndef GL_EXT_render_snorm +#define GL_EXT_render_snorm 1 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM_EXT 0x8F98 +#define GL_RG16_SNORM_EXT 0x8F99 +#define GL_RGBA16_SNORM_EXT 0x8F9B +#endif /* GL_EXT_render_snorm */ + +#ifndef GL_EXT_robustness +#define GL_EXT_robustness 1 +#define GL_GUILTY_CONTEXT_RESET_EXT 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_EXT 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_EXT 0x8255 +#define GL_CONTEXT_ROBUST_ACCESS_EXT 0x90F3 +#define GL_RESET_NOTIFICATION_STRATEGY_EXT 0x8256 +#define GL_LOSE_CONTEXT_ON_RESET_EXT 0x8252 +#define GL_NO_RESET_NOTIFICATION_EXT 0x8261 +typedef GLenum (GL_APIENTRYP PFNGLGETGRAPHICSRESETSTATUSEXTPROC) (void); +typedef void (GL_APIENTRYP PFNGLREADNPIXELSEXTPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusEXT (void); +GL_APICALL void GL_APIENTRY glReadnPixelsEXT (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GL_APICALL void GL_APIENTRY glGetnUniformfvEXT (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetnUniformivEXT (GLuint program, GLint location, GLsizei bufSize, GLint *params); +#endif +#endif /* GL_EXT_robustness */ + +#ifndef GL_EXT_sRGB +#define GL_EXT_sRGB 1 +#define GL_SRGB_EXT 0x8C40 +#define GL_SRGB_ALPHA_EXT 0x8C42 +#define GL_SRGB8_ALPHA8_EXT 0x8C43 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT 0x8210 +#endif /* GL_EXT_sRGB */ + +#ifndef GL_EXT_sRGB_write_control +#define GL_EXT_sRGB_write_control 1 +#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 +#endif /* GL_EXT_sRGB_write_control */ + +#ifndef GL_EXT_semaphore +#define GL_EXT_semaphore 1 +#define GL_LAYOUT_GENERAL_EXT 0x958D +#define GL_LAYOUT_COLOR_ATTACHMENT_EXT 0x958E +#define GL_LAYOUT_DEPTH_STENCIL_ATTACHMENT_EXT 0x958F +#define GL_LAYOUT_DEPTH_STENCIL_READ_ONLY_EXT 0x9590 +#define GL_LAYOUT_SHADER_READ_ONLY_EXT 0x9591 +#define GL_LAYOUT_TRANSFER_SRC_EXT 0x9592 +#define GL_LAYOUT_TRANSFER_DST_EXT 0x9593 +#define GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT 0x9530 +#define GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT 0x9531 +typedef void (GL_APIENTRYP PFNGLGENSEMAPHORESEXTPROC) (GLsizei n, GLuint *semaphores); +typedef void (GL_APIENTRYP PFNGLDELETESEMAPHORESEXTPROC) (GLsizei n, const GLuint *semaphores); +typedef GLboolean (GL_APIENTRYP PFNGLISSEMAPHOREEXTPROC) (GLuint semaphore); +typedef void (GL_APIENTRYP PFNGLSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, const GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLGETSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLWAITSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +typedef void (GL_APIENTRYP PFNGLSIGNALSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGenSemaphoresEXT (GLsizei n, GLuint *semaphores); +GL_APICALL void GL_APIENTRY glDeleteSemaphoresEXT (GLsizei n, const GLuint *semaphores); +GL_APICALL GLboolean GL_APIENTRY glIsSemaphoreEXT (GLuint semaphore); +GL_APICALL void GL_APIENTRY glSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, const GLuint64 *params); +GL_APICALL void GL_APIENTRY glGetSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, GLuint64 *params); +GL_APICALL void GL_APIENTRY glWaitSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +GL_APICALL void GL_APIENTRY glSignalSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#endif +#endif /* GL_EXT_semaphore */ + +#ifndef GL_EXT_semaphore_fd +#define GL_EXT_semaphore_fd 1 +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREFDEXTPROC) (GLuint semaphore, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportSemaphoreFdEXT (GLuint semaphore, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_semaphore_fd */ + +#ifndef GL_EXT_semaphore_win32 +#define GL_EXT_semaphore_win32 1 +#define GL_HANDLE_TYPE_D3D12_FENCE_EXT 0x9594 +#define GL_D3D12_FENCE_VALUE_EXT 0x9595 +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREWIN32HANDLEEXTPROC) (GLuint semaphore, GLenum handleType, void *handle); +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREWIN32NAMEEXTPROC) (GLuint semaphore, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportSemaphoreWin32HandleEXT (GLuint semaphore, GLenum handleType, void *handle); +GL_APICALL void GL_APIENTRY glImportSemaphoreWin32NameEXT (GLuint semaphore, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_semaphore_win32 */ + +#ifndef GL_EXT_separate_depth_stencil +#define GL_EXT_separate_depth_stencil 1 +#endif /* GL_EXT_separate_depth_stencil */ + +#ifndef GL_EXT_separate_shader_objects +#define GL_EXT_separate_shader_objects 1 +#define GL_ACTIVE_PROGRAM_EXT 0x8259 +#define GL_VERTEX_SHADER_BIT_EXT 0x00000001 +#define GL_FRAGMENT_SHADER_BIT_EXT 0x00000002 +#define GL_ALL_SHADER_BITS_EXT 0xFFFFFFFF +#define GL_PROGRAM_SEPARABLE_EXT 0x8258 +#define GL_PROGRAM_PIPELINE_BINDING_EXT 0x825A +typedef void (GL_APIENTRYP PFNGLACTIVESHADERPROGRAMEXTPROC) (GLuint pipeline, GLuint program); +typedef void (GL_APIENTRYP PFNGLBINDPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef GLuint (GL_APIENTRYP PFNGLCREATESHADERPROGRAMVEXTPROC) (GLenum type, GLsizei count, const GLchar **strings); +typedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPIPELINESEXTPROC) (GLsizei n, const GLuint *pipelines); +typedef void (GL_APIENTRYP PFNGLGENPROGRAMPIPELINESEXTPROC) (GLsizei n, GLuint *pipelines); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGEXTPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEIVEXTPROC) (GLuint pipeline, GLenum pname, GLint *params); +typedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef void (GL_APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUSEPROGRAMSTAGESEXTPROC) (GLuint pipeline, GLbitfield stages, GLuint program); +typedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UIEXTPROC) (GLuint program, GLint location, GLuint v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glActiveShaderProgramEXT (GLuint pipeline, GLuint program); +GL_APICALL void GL_APIENTRY glBindProgramPipelineEXT (GLuint pipeline); +GL_APICALL GLuint GL_APIENTRY glCreateShaderProgramvEXT (GLenum type, GLsizei count, const GLchar **strings); +GL_APICALL void GL_APIENTRY glDeleteProgramPipelinesEXT (GLsizei n, const GLuint *pipelines); +GL_APICALL void GL_APIENTRY glGenProgramPipelinesEXT (GLsizei n, GLuint *pipelines); +GL_APICALL void GL_APIENTRY glGetProgramPipelineInfoLogEXT (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetProgramPipelineivEXT (GLuint pipeline, GLenum pname, GLint *params); +GL_APICALL GLboolean GL_APIENTRY glIsProgramPipelineEXT (GLuint pipeline); +GL_APICALL void GL_APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat v0); +GL_APICALL void GL_APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint v0); +GL_APICALL void GL_APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GL_APICALL void GL_APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint v0, GLint v1); +GL_APICALL void GL_APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GL_APICALL void GL_APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GL_APICALL void GL_APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GL_APICALL void GL_APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GL_APICALL void GL_APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUseProgramStagesEXT (GLuint pipeline, GLbitfield stages, GLuint program); +GL_APICALL void GL_APIENTRY glValidateProgramPipelineEXT (GLuint pipeline); +GL_APICALL void GL_APIENTRY glProgramUniform1uiEXT (GLuint program, GLint location, GLuint v0); +GL_APICALL void GL_APIENTRY glProgramUniform2uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1); +GL_APICALL void GL_APIENTRY glProgramUniform3uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GL_APICALL void GL_APIENTRY glProgramUniform4uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GL_APICALL void GL_APIENTRY glProgramUniform1uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform2uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform3uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform4uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_EXT_separate_shader_objects */ + +#ifndef GL_EXT_shader_framebuffer_fetch +#define GL_EXT_shader_framebuffer_fetch 1 +#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT 0x8A52 +#endif /* GL_EXT_shader_framebuffer_fetch */ + +#ifndef GL_EXT_shader_framebuffer_fetch_non_coherent +#define GL_EXT_shader_framebuffer_fetch_non_coherent 1 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFetchBarrierEXT (void); +#endif +#endif /* GL_EXT_shader_framebuffer_fetch_non_coherent */ + +#ifndef GL_EXT_shader_group_vote +#define GL_EXT_shader_group_vote 1 +#endif /* GL_EXT_shader_group_vote */ + +#ifndef GL_EXT_shader_implicit_conversions +#define GL_EXT_shader_implicit_conversions 1 +#endif /* GL_EXT_shader_implicit_conversions */ + +#ifndef GL_EXT_shader_integer_mix +#define GL_EXT_shader_integer_mix 1 +#endif /* GL_EXT_shader_integer_mix */ + +#ifndef GL_EXT_shader_io_blocks +#define GL_EXT_shader_io_blocks 1 +#endif /* GL_EXT_shader_io_blocks */ + +#ifndef GL_EXT_shader_non_constant_global_initializers +#define GL_EXT_shader_non_constant_global_initializers 1 +#endif /* GL_EXT_shader_non_constant_global_initializers */ + +#ifndef GL_EXT_shader_pixel_local_storage +#define GL_EXT_shader_pixel_local_storage 1 +#define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63 +#define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_SIZE_EXT 0x8F67 +#define GL_SHADER_PIXEL_LOCAL_STORAGE_EXT 0x8F64 +#endif /* GL_EXT_shader_pixel_local_storage */ + +#ifndef GL_EXT_shader_pixel_local_storage2 +#define GL_EXT_shader_pixel_local_storage2 1 +#define GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_FAST_SIZE_EXT 0x9650 +#define GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_SIZE_EXT 0x9651 +#define GL_FRAMEBUFFER_INCOMPLETE_INSUFFICIENT_SHADER_COMBINED_LOCAL_STORAGE_EXT 0x9652 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC) (GLuint target, GLsizei size); +typedef GLsizei (GL_APIENTRYP PFNGLGETFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC) (GLuint target); +typedef void (GL_APIENTRYP PFNGLCLEARPIXELLOCALSTORAGEUIEXTPROC) (GLsizei offset, GLsizei n, const GLuint *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferPixelLocalStorageSizeEXT (GLuint target, GLsizei size); +GL_APICALL GLsizei GL_APIENTRY glGetFramebufferPixelLocalStorageSizeEXT (GLuint target); +GL_APICALL void GL_APIENTRY glClearPixelLocalStorageuiEXT (GLsizei offset, GLsizei n, const GLuint *values); +#endif +#endif /* GL_EXT_shader_pixel_local_storage2 */ + +#ifndef GL_EXT_shader_samples_identical +#define GL_EXT_shader_samples_identical 1 +#endif /* GL_EXT_shader_samples_identical */ + +#ifndef GL_EXT_shader_texture_lod +#define GL_EXT_shader_texture_lod 1 +#endif /* GL_EXT_shader_texture_lod */ + +#ifndef GL_EXT_shadow_samplers +#define GL_EXT_shadow_samplers 1 +#define GL_TEXTURE_COMPARE_MODE_EXT 0x884C +#define GL_TEXTURE_COMPARE_FUNC_EXT 0x884D +#define GL_COMPARE_REF_TO_TEXTURE_EXT 0x884E +#define GL_SAMPLER_2D_SHADOW_EXT 0x8B62 +#endif /* GL_EXT_shadow_samplers */ + +#ifndef GL_EXT_sparse_texture +#define GL_EXT_sparse_texture 1 +#define GL_TEXTURE_SPARSE_EXT 0x91A6 +#define GL_VIRTUAL_PAGE_SIZE_INDEX_EXT 0x91A7 +#define GL_NUM_SPARSE_LEVELS_EXT 0x91AA +#define GL_NUM_VIRTUAL_PAGE_SIZES_EXT 0x91A8 +#define GL_VIRTUAL_PAGE_SIZE_X_EXT 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_EXT 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_EXT 0x9197 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_TEXTURE_3D 0x806F +#define GL_MAX_SPARSE_TEXTURE_SIZE_EXT 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_EXT 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_EXT 0x919A +#define GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_EXT 0x91A9 +typedef void (GL_APIENTRYP PFNGLTEXPAGECOMMITMENTEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexPageCommitmentEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#endif +#endif /* GL_EXT_sparse_texture */ + +#ifndef GL_EXT_sparse_texture2 +#define GL_EXT_sparse_texture2 1 +#endif /* GL_EXT_sparse_texture2 */ + +#ifndef GL_EXT_tessellation_point_size +#define GL_EXT_tessellation_point_size 1 +#endif /* GL_EXT_tessellation_point_size */ + +#ifndef GL_EXT_tessellation_shader +#define GL_EXT_tessellation_shader 1 +#define GL_PATCHES_EXT 0x000E +#define GL_PATCH_VERTICES_EXT 0x8E72 +#define GL_TESS_CONTROL_OUTPUT_VERTICES_EXT 0x8E75 +#define GL_TESS_GEN_MODE_EXT 0x8E76 +#define GL_TESS_GEN_SPACING_EXT 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER_EXT 0x8E78 +#define GL_TESS_GEN_POINT_MODE_EXT 0x8E79 +#define GL_ISOLINES_EXT 0x8E7A +#define GL_QUADS_EXT 0x0007 +#define GL_FRACTIONAL_ODD_EXT 0x8E7B +#define GL_FRACTIONAL_EVEN_EXT 0x8E7C +#define GL_MAX_PATCH_VERTICES_EXT 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL_EXT 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS_EXT 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS_EXT 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS_EXT 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS_EXT 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS_EXT 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS_EXT 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS_EXT 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS_EXT 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS_EXT 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS_EXT 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS_EXT 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS_EXT 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT 0x8E1F +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_EXT 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS_EXT 0x92CE +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS_EXT 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS_EXT 0x92D4 +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_EXT 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS_EXT 0x90CC +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS_EXT 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS_EXT 0x90D9 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED 0x8221 +#define GL_IS_PER_PATCH_EXT 0x92E7 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER_EXT 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER_EXT 0x9308 +#define GL_TESS_CONTROL_SHADER_EXT 0x8E88 +#define GL_TESS_EVALUATION_SHADER_EXT 0x8E87 +#define GL_TESS_CONTROL_SHADER_BIT_EXT 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT_EXT 0x00000010 +typedef void (GL_APIENTRYP PFNGLPATCHPARAMETERIEXTPROC) (GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPatchParameteriEXT (GLenum pname, GLint value); +#endif +#endif /* GL_EXT_tessellation_shader */ + +#ifndef GL_EXT_texture_border_clamp +#define GL_EXT_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_EXT 0x1004 +#define GL_CLAMP_TO_BORDER_EXT 0x812D +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIIVEXTPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIUIVEXTPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIIVEXTPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVEXTPROC) (GLuint sampler, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexParameterIivEXT (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexParameterIuivEXT (GLenum target, GLenum pname, const GLuint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIivEXT (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIuivEXT (GLenum target, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glSamplerParameterIivEXT (GLuint sampler, GLenum pname, const GLint *param); +GL_APICALL void GL_APIENTRY glSamplerParameterIuivEXT (GLuint sampler, GLenum pname, const GLuint *param); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIivEXT (GLuint sampler, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIuivEXT (GLuint sampler, GLenum pname, GLuint *params); +#endif +#endif /* GL_EXT_texture_border_clamp */ + +#ifndef GL_EXT_texture_buffer +#define GL_EXT_texture_buffer 1 +#define GL_TEXTURE_BUFFER_EXT 0x8C2A +#define GL_TEXTURE_BUFFER_BINDING_EXT 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT_EXT 0x919F +#define GL_SAMPLER_BUFFER_EXT 0x8DC2 +#define GL_INT_SAMPLER_BUFFER_EXT 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT 0x8DD8 +#define GL_IMAGE_BUFFER_EXT 0x9051 +#define GL_INT_IMAGE_BUFFER_EXT 0x905C +#define GL_UNSIGNED_INT_IMAGE_BUFFER_EXT 0x9067 +#define GL_TEXTURE_BUFFER_OFFSET_EXT 0x919D +#define GL_TEXTURE_BUFFER_SIZE_EXT 0x919E +typedef void (GL_APIENTRYP PFNGLTEXBUFFEREXTPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLTEXBUFFERRANGEEXTPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexBufferEXT (GLenum target, GLenum internalformat, GLuint buffer); +GL_APICALL void GL_APIENTRY glTexBufferRangeEXT (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_EXT_texture_buffer */ + +#ifndef GL_EXT_texture_compression_astc_decode_mode +#define GL_EXT_texture_compression_astc_decode_mode 1 +#define GL_TEXTURE_ASTC_DECODE_PRECISION_EXT 0x8F69 +#endif /* GL_EXT_texture_compression_astc_decode_mode */ + +#ifndef GL_EXT_texture_compression_bptc +#define GL_EXT_texture_compression_bptc 1 +#define GL_COMPRESSED_RGBA_BPTC_UNORM_EXT 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT 0x8E8F +#endif /* GL_EXT_texture_compression_bptc */ + +#ifndef GL_EXT_texture_compression_dxt1 +#define GL_EXT_texture_compression_dxt1 1 +#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 +#endif /* GL_EXT_texture_compression_dxt1 */ + +#ifndef GL_EXT_texture_compression_rgtc +#define GL_EXT_texture_compression_rgtc 1 +#define GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC +#define GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD +#define GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE +#endif /* GL_EXT_texture_compression_rgtc */ + +#ifndef GL_EXT_texture_compression_s3tc +#define GL_EXT_texture_compression_s3tc 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 +#endif /* GL_EXT_texture_compression_s3tc */ + +#ifndef GL_EXT_texture_compression_s3tc_srgb +#define GL_EXT_texture_compression_s3tc_srgb 1 +#define GL_COMPRESSED_SRGB_S3TC_DXT1_EXT 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT 0x8C4F +#endif /* GL_EXT_texture_compression_s3tc_srgb */ + +#ifndef GL_EXT_texture_cube_map_array +#define GL_EXT_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_EXT 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_EXT 0x900A +#define GL_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_EXT 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900F +#define GL_IMAGE_CUBE_MAP_ARRAY_EXT 0x9054 +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x905F +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x906A +#endif /* GL_EXT_texture_cube_map_array */ + +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_EXT_texture_filter_anisotropic 1 +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF +#endif /* GL_EXT_texture_filter_anisotropic */ + +#ifndef GL_EXT_texture_filter_minmax +#define GL_EXT_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_EXT 0x9366 +#define GL_WEIGHTED_AVERAGE_EXT 0x9367 +#endif /* GL_EXT_texture_filter_minmax */ + +#ifndef GL_EXT_texture_format_BGRA8888 +#define GL_EXT_texture_format_BGRA8888 1 +#endif /* GL_EXT_texture_format_BGRA8888 */ + +#ifndef GL_EXT_texture_format_sRGB_override +#define GL_EXT_texture_format_sRGB_override 1 +#define GL_TEXTURE_FORMAT_SRGB_OVERRIDE_EXT 0x8FBF +#endif /* GL_EXT_texture_format_sRGB_override */ + +#ifndef GL_EXT_texture_mirror_clamp_to_edge +#define GL_EXT_texture_mirror_clamp_to_edge 1 +#define GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 +#endif /* GL_EXT_texture_mirror_clamp_to_edge */ + +#ifndef GL_EXT_texture_norm16 +#define GL_EXT_texture_norm16 1 +#define GL_R16_EXT 0x822A +#define GL_RG16_EXT 0x822C +#define GL_RGBA16_EXT 0x805B +#define GL_RGB16_EXT 0x8054 +#define GL_RGB16_SNORM_EXT 0x8F9A +#endif /* GL_EXT_texture_norm16 */ + +#ifndef GL_EXT_texture_query_lod +#define GL_EXT_texture_query_lod 1 +#endif /* GL_EXT_texture_query_lod */ + +#ifndef GL_EXT_texture_rg +#define GL_EXT_texture_rg 1 +#define GL_RED_EXT 0x1903 +#define GL_RG_EXT 0x8227 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B +#endif /* GL_EXT_texture_rg */ + +#ifndef GL_EXT_texture_sRGB_R8 +#define GL_EXT_texture_sRGB_R8 1 +#define GL_SR8_EXT 0x8FBD +#endif /* GL_EXT_texture_sRGB_R8 */ + +#ifndef GL_EXT_texture_sRGB_RG8 +#define GL_EXT_texture_sRGB_RG8 1 +#define GL_SRG8_EXT 0x8FBE +#endif /* GL_EXT_texture_sRGB_RG8 */ + +#ifndef GL_EXT_texture_sRGB_decode +#define GL_EXT_texture_sRGB_decode 1 +#define GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 +#define GL_DECODE_EXT 0x8A49 +#define GL_SKIP_DECODE_EXT 0x8A4A +#endif /* GL_EXT_texture_sRGB_decode */ + +#ifndef GL_EXT_texture_shadow_lod +#define GL_EXT_texture_shadow_lod 1 +#endif /* GL_EXT_texture_shadow_lod */ + +#ifndef GL_EXT_texture_storage +#define GL_EXT_texture_storage 1 +#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F +#define GL_ALPHA8_EXT 0x803C +#define GL_LUMINANCE8_EXT 0x8040 +#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 +#define GL_RGBA32F_EXT 0x8814 +#define GL_RGB32F_EXT 0x8815 +#define GL_ALPHA32F_EXT 0x8816 +#define GL_LUMINANCE32F_EXT 0x8818 +#define GL_LUMINANCE_ALPHA32F_EXT 0x8819 +#define GL_ALPHA16F_EXT 0x881C +#define GL_LUMINANCE16F_EXT 0x881E +#define GL_LUMINANCE_ALPHA16F_EXT 0x881F +#define GL_R32F_EXT 0x822E +#define GL_RG32F_EXT 0x8230 +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorage1DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GL_APICALL void GL_APIENTRY glTexStorage2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glTexStorage3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GL_APICALL void GL_APIENTRY glTextureStorage1DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GL_APICALL void GL_APIENTRY glTextureStorage2DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glTextureStorage3DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_EXT_texture_storage */ + +#ifndef GL_EXT_texture_storage_compression +#define GL_EXT_texture_storage_compression 1 +#define GL_NUM_SURFACE_COMPRESSION_FIXED_RATES_EXT 0x8F6E +#define GL_SURFACE_COMPRESSION_FIXED_RATE_1BPC_EXT 0x96C4 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_2BPC_EXT 0x96C5 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_3BPC_EXT 0x96C6 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_4BPC_EXT 0x96C7 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_5BPC_EXT 0x96C8 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_6BPC_EXT 0x96C9 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_7BPC_EXT 0x96CA +#define GL_SURFACE_COMPRESSION_FIXED_RATE_8BPC_EXT 0x96CB +#define GL_SURFACE_COMPRESSION_FIXED_RATE_9BPC_EXT 0x96CC +#define GL_SURFACE_COMPRESSION_FIXED_RATE_10BPC_EXT 0x96CD +#define GL_SURFACE_COMPRESSION_FIXED_RATE_11BPC_EXT 0x96CE +#define GL_SURFACE_COMPRESSION_FIXED_RATE_12BPC_EXT 0x96CF +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEATTRIBS2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, const GLint* attrib_list); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEATTRIBS3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorageAttribs2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, const GLint* attrib_list); +GL_APICALL void GL_APIENTRY glTexStorageAttribs3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, const GLint* attrib_list); +#endif +#endif /* GL_EXT_texture_storage_compression */ + +#ifndef GL_EXT_texture_type_2_10_10_10_REV +#define GL_EXT_texture_type_2_10_10_10_REV 1 +#define GL_UNSIGNED_INT_2_10_10_10_REV_EXT 0x8368 +#endif /* GL_EXT_texture_type_2_10_10_10_REV */ + +#ifndef GL_EXT_texture_view +#define GL_EXT_texture_view 1 +#define GL_TEXTURE_VIEW_MIN_LEVEL_EXT 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS_EXT 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER_EXT 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS_EXT 0x82DE +typedef void (GL_APIENTRYP PFNGLTEXTUREVIEWEXTPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureViewEXT (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#endif +#endif /* GL_EXT_texture_view */ + +#ifndef GL_EXT_unpack_subimage +#define GL_EXT_unpack_subimage 1 +#define GL_UNPACK_ROW_LENGTH_EXT 0x0CF2 +#define GL_UNPACK_SKIP_ROWS_EXT 0x0CF3 +#define GL_UNPACK_SKIP_PIXELS_EXT 0x0CF4 +#endif /* GL_EXT_unpack_subimage */ + +#ifndef GL_EXT_win32_keyed_mutex +#define GL_EXT_win32_keyed_mutex 1 +typedef GLboolean (GL_APIENTRYP PFNGLACQUIREKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key, GLuint timeout); +typedef GLboolean (GL_APIENTRYP PFNGLRELEASEKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLboolean GL_APIENTRY glAcquireKeyedMutexWin32EXT (GLuint memory, GLuint64 key, GLuint timeout); +GL_APICALL GLboolean GL_APIENTRY glReleaseKeyedMutexWin32EXT (GLuint memory, GLuint64 key); +#endif +#endif /* GL_EXT_win32_keyed_mutex */ + +#ifndef GL_EXT_window_rectangles +#define GL_EXT_window_rectangles 1 +#define GL_INCLUSIVE_EXT 0x8F10 +#define GL_EXCLUSIVE_EXT 0x8F11 +#define GL_WINDOW_RECTANGLE_EXT 0x8F12 +#define GL_WINDOW_RECTANGLE_MODE_EXT 0x8F13 +#define GL_MAX_WINDOW_RECTANGLES_EXT 0x8F14 +#define GL_NUM_WINDOW_RECTANGLES_EXT 0x8F15 +typedef void (GL_APIENTRYP PFNGLWINDOWRECTANGLESEXTPROC) (GLenum mode, GLsizei count, const GLint *box); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glWindowRectanglesEXT (GLenum mode, GLsizei count, const GLint *box); +#endif +#endif /* GL_EXT_window_rectangles */ + +#ifndef GL_FJ_shader_binary_GCCSO +#define GL_FJ_shader_binary_GCCSO 1 +#define GL_GCCSO_SHADER_BINARY_FJ 0x9260 +#endif /* GL_FJ_shader_binary_GCCSO */ + +#ifndef GL_IMG_bindless_texture +#define GL_IMG_bindless_texture 1 +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTUREHANDLEIMGPROC) (GLuint texture); +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTURESAMPLERHANDLEIMGPROC) (GLuint texture, GLuint sampler); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64IMGPROC) (GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64VIMGPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64IMGPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VIMGPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint64 GL_APIENTRY glGetTextureHandleIMG (GLuint texture); +GL_APICALL GLuint64 GL_APIENTRY glGetTextureSamplerHandleIMG (GLuint texture, GLuint sampler); +GL_APICALL void GL_APIENTRY glUniformHandleui64IMG (GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glUniformHandleui64vIMG (GLint location, GLsizei count, const GLuint64 *value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64IMG (GLuint program, GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64vIMG (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +#endif +#endif /* GL_IMG_bindless_texture */ + +#ifndef GL_IMG_framebuffer_downsample +#define GL_IMG_framebuffer_downsample 1 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_AND_DOWNSAMPLE_IMG 0x913C +#define GL_NUM_DOWNSAMPLE_SCALES_IMG 0x913D +#define GL_DOWNSAMPLE_SCALES_IMG 0x913E +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SCALE_IMG 0x913F +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DDOWNSAMPLEIMGPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint xscale, GLint yscale); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERDOWNSAMPLEIMGPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, GLint xscale, GLint yscale); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTexture2DDownsampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint xscale, GLint yscale); +GL_APICALL void GL_APIENTRY glFramebufferTextureLayerDownsampleIMG (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, GLint xscale, GLint yscale); +#endif +#endif /* GL_IMG_framebuffer_downsample */ + +#ifndef GL_IMG_multisampled_render_to_texture +#define GL_IMG_multisampled_render_to_texture 1 +#define GL_RENDERBUFFER_SAMPLES_IMG 0x9133 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_IMG 0x9134 +#define GL_MAX_SAMPLES_IMG 0x9135 +#define GL_TEXTURE_SAMPLES_IMG 0x9136 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEIMGPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEIMGPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleIMG (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#endif +#endif /* GL_IMG_multisampled_render_to_texture */ + +#ifndef GL_IMG_program_binary +#define GL_IMG_program_binary 1 +#define GL_SGX_PROGRAM_BINARY_IMG 0x9130 +#endif /* GL_IMG_program_binary */ + +#ifndef GL_IMG_read_format +#define GL_IMG_read_format 1 +#define GL_BGRA_IMG 0x80E1 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV_IMG 0x8365 +#endif /* GL_IMG_read_format */ + +#ifndef GL_IMG_shader_binary +#define GL_IMG_shader_binary 1 +#define GL_SGX_BINARY_IMG 0x8C0A +#endif /* GL_IMG_shader_binary */ + +#ifndef GL_IMG_texture_compression_pvrtc +#define GL_IMG_texture_compression_pvrtc 1 +#define GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG 0x8C00 +#define GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG 0x8C01 +#define GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG 0x8C02 +#define GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG 0x8C03 +#endif /* GL_IMG_texture_compression_pvrtc */ + +#ifndef GL_IMG_texture_compression_pvrtc2 +#define GL_IMG_texture_compression_pvrtc2 1 +#define GL_COMPRESSED_RGBA_PVRTC_2BPPV2_IMG 0x9137 +#define GL_COMPRESSED_RGBA_PVRTC_4BPPV2_IMG 0x9138 +#endif /* GL_IMG_texture_compression_pvrtc2 */ + +#ifndef GL_IMG_texture_filter_cubic +#define GL_IMG_texture_filter_cubic 1 +#define GL_CUBIC_IMG 0x9139 +#define GL_CUBIC_MIPMAP_NEAREST_IMG 0x913A +#define GL_CUBIC_MIPMAP_LINEAR_IMG 0x913B +#endif /* GL_IMG_texture_filter_cubic */ + +#ifndef GL_INTEL_blackhole_render +#define GL_INTEL_blackhole_render 1 +#define GL_BLACKHOLE_RENDER_INTEL 0x83FC +#endif /* GL_INTEL_blackhole_render */ + +#ifndef GL_INTEL_conservative_rasterization +#define GL_INTEL_conservative_rasterization 1 +#define GL_CONSERVATIVE_RASTERIZATION_INTEL 0x83FE +#endif /* GL_INTEL_conservative_rasterization */ + +#ifndef GL_INTEL_framebuffer_CMAA +#define GL_INTEL_framebuffer_CMAA 1 +typedef void (GL_APIENTRYP PFNGLAPPLYFRAMEBUFFERATTACHMENTCMAAINTELPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glApplyFramebufferAttachmentCMAAINTEL (void); +#endif +#endif /* GL_INTEL_framebuffer_CMAA */ + +#ifndef GL_INTEL_performance_query +#define GL_INTEL_performance_query 1 +#define GL_PERFQUERY_SINGLE_CONTEXT_INTEL 0x00000000 +#define GL_PERFQUERY_GLOBAL_CONTEXT_INTEL 0x00000001 +#define GL_PERFQUERY_WAIT_INTEL 0x83FB +#define GL_PERFQUERY_FLUSH_INTEL 0x83FA +#define GL_PERFQUERY_DONOT_FLUSH_INTEL 0x83F9 +#define GL_PERFQUERY_COUNTER_EVENT_INTEL 0x94F0 +#define GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL 0x94F1 +#define GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL 0x94F2 +#define GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL 0x94F3 +#define GL_PERFQUERY_COUNTER_RAW_INTEL 0x94F4 +#define GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL 0x94F5 +#define GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL 0x94F8 +#define GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL 0x94F9 +#define GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL 0x94FA +#define GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL 0x94FB +#define GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL 0x94FC +#define GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL 0x94FD +#define GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL 0x94FE +#define GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL 0x94FF +#define GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL 0x9500 +typedef void (GL_APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); +typedef void (GL_APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLGETFIRSTPERFQUERYIDINTELPROC) (GLuint *queryId); +typedef void (GL_APIENTRYP PFNGLGETNEXTPERFQUERYIDINTELPROC) (GLuint queryId, GLuint *nextQueryId); +typedef void (GL_APIENTRYP PFNGLGETPERFCOUNTERINFOINTELPROC) (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYIDBYNAMEINTELPROC) (GLchar *queryName, GLuint *queryId); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYINFOINTELPROC) (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); +GL_APICALL void GL_APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glGetFirstPerfQueryIdINTEL (GLuint *queryId); +GL_APICALL void GL_APIENTRY glGetNextPerfQueryIdINTEL (GLuint queryId, GLuint *nextQueryId); +GL_APICALL void GL_APIENTRY glGetPerfCounterInfoINTEL (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +GL_APICALL void GL_APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +GL_APICALL void GL_APIENTRY glGetPerfQueryIdByNameINTEL (GLchar *queryName, GLuint *queryId); +GL_APICALL void GL_APIENTRY glGetPerfQueryInfoINTEL (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#endif +#endif /* GL_INTEL_performance_query */ + +#ifndef GL_MESA_bgra +#define GL_MESA_bgra 1 +#define GL_BGR_EXT 0x80E0 +#endif /* GL_MESA_bgra */ + +#ifndef GL_MESA_framebuffer_flip_x +#define GL_MESA_framebuffer_flip_x 1 +#define GL_FRAMEBUFFER_FLIP_X_MESA 0x8BBC +#endif /* GL_MESA_framebuffer_flip_x */ + +#ifndef GL_MESA_framebuffer_flip_y +#define GL_MESA_framebuffer_flip_y 1 +#define GL_FRAMEBUFFER_FLIP_Y_MESA 0x8BBB +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERPARAMETERIMESAPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVMESAPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferParameteriMESA (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glGetFramebufferParameterivMESA (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_MESA_framebuffer_flip_y */ + +#ifndef GL_MESA_framebuffer_swap_xy +#define GL_MESA_framebuffer_swap_xy 1 +#define GL_FRAMEBUFFER_SWAP_XY_MESA 0x8BBD +#endif /* GL_MESA_framebuffer_swap_xy */ + +#ifndef GL_MESA_program_binary_formats +#define GL_MESA_program_binary_formats 1 +#define GL_PROGRAM_BINARY_FORMAT_MESA 0x875F +#endif /* GL_MESA_program_binary_formats */ + +#ifndef GL_MESA_shader_integer_functions +#define GL_MESA_shader_integer_functions 1 +#endif /* GL_MESA_shader_integer_functions */ + +#ifndef GL_NVX_blend_equation_advanced_multi_draw_buffers +#define GL_NVX_blend_equation_advanced_multi_draw_buffers 1 +#endif /* GL_NVX_blend_equation_advanced_multi_draw_buffers */ + +#ifndef GL_NV_bindless_texture +#define GL_NV_bindless_texture 1 +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTUREHANDLENVPROC) (GLuint texture); +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTURESAMPLERHANDLENVPROC) (GLuint texture, GLuint sampler); +typedef void (GL_APIENTRYP PFNGLMAKETEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef void (GL_APIENTRYP PFNGLMAKETEXTUREHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef GLuint64 (GL_APIENTRYP PFNGLGETIMAGEHANDLENVPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef void (GL_APIENTRYP PFNGLMAKEIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle, GLenum access); +typedef void (GL_APIENTRYP PFNGLMAKEIMAGEHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64NVPROC) (GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64VNVPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64NVPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef GLboolean (GL_APIENTRYP PFNGLISIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint64 GL_APIENTRY glGetTextureHandleNV (GLuint texture); +GL_APICALL GLuint64 GL_APIENTRY glGetTextureSamplerHandleNV (GLuint texture, GLuint sampler); +GL_APICALL void GL_APIENTRY glMakeTextureHandleResidentNV (GLuint64 handle); +GL_APICALL void GL_APIENTRY glMakeTextureHandleNonResidentNV (GLuint64 handle); +GL_APICALL GLuint64 GL_APIENTRY glGetImageHandleNV (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +GL_APICALL void GL_APIENTRY glMakeImageHandleResidentNV (GLuint64 handle, GLenum access); +GL_APICALL void GL_APIENTRY glMakeImageHandleNonResidentNV (GLuint64 handle); +GL_APICALL void GL_APIENTRY glUniformHandleui64NV (GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glUniformHandleui64vNV (GLint location, GLsizei count, const GLuint64 *value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64NV (GLuint program, GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +GL_APICALL GLboolean GL_APIENTRY glIsTextureHandleResidentNV (GLuint64 handle); +GL_APICALL GLboolean GL_APIENTRY glIsImageHandleResidentNV (GLuint64 handle); +#endif +#endif /* GL_NV_bindless_texture */ + +#ifndef GL_NV_blend_equation_advanced +#define GL_NV_blend_equation_advanced 1 +#define GL_BLEND_OVERLAP_NV 0x9281 +#define GL_BLEND_PREMULTIPLIED_SRC_NV 0x9280 +#define GL_BLUE_NV 0x1905 +#define GL_COLORBURN_NV 0x929A +#define GL_COLORDODGE_NV 0x9299 +#define GL_CONJOINT_NV 0x9284 +#define GL_CONTRAST_NV 0x92A1 +#define GL_DARKEN_NV 0x9297 +#define GL_DIFFERENCE_NV 0x929E +#define GL_DISJOINT_NV 0x9283 +#define GL_DST_ATOP_NV 0x928F +#define GL_DST_IN_NV 0x928B +#define GL_DST_NV 0x9287 +#define GL_DST_OUT_NV 0x928D +#define GL_DST_OVER_NV 0x9289 +#define GL_EXCLUSION_NV 0x92A0 +#define GL_GREEN_NV 0x1904 +#define GL_HARDLIGHT_NV 0x929B +#define GL_HARDMIX_NV 0x92A9 +#define GL_HSL_COLOR_NV 0x92AF +#define GL_HSL_HUE_NV 0x92AD +#define GL_HSL_LUMINOSITY_NV 0x92B0 +#define GL_HSL_SATURATION_NV 0x92AE +#define GL_INVERT_OVG_NV 0x92B4 +#define GL_INVERT_RGB_NV 0x92A3 +#define GL_LIGHTEN_NV 0x9298 +#define GL_LINEARBURN_NV 0x92A5 +#define GL_LINEARDODGE_NV 0x92A4 +#define GL_LINEARLIGHT_NV 0x92A7 +#define GL_MINUS_CLAMPED_NV 0x92B3 +#define GL_MINUS_NV 0x929F +#define GL_MULTIPLY_NV 0x9294 +#define GL_OVERLAY_NV 0x9296 +#define GL_PINLIGHT_NV 0x92A8 +#define GL_PLUS_CLAMPED_ALPHA_NV 0x92B2 +#define GL_PLUS_CLAMPED_NV 0x92B1 +#define GL_PLUS_DARKER_NV 0x9292 +#define GL_PLUS_NV 0x9291 +#define GL_RED_NV 0x1903 +#define GL_SCREEN_NV 0x9295 +#define GL_SOFTLIGHT_NV 0x929C +#define GL_SRC_ATOP_NV 0x928E +#define GL_SRC_IN_NV 0x928A +#define GL_SRC_NV 0x9286 +#define GL_SRC_OUT_NV 0x928C +#define GL_SRC_OVER_NV 0x9288 +#define GL_UNCORRELATED_NV 0x9282 +#define GL_VIVIDLIGHT_NV 0x92A6 +#define GL_XOR_NV 0x1506 +typedef void (GL_APIENTRYP PFNGLBLENDPARAMETERINVPROC) (GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLBLENDBARRIERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlendParameteriNV (GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glBlendBarrierNV (void); +#endif +#endif /* GL_NV_blend_equation_advanced */ + +#ifndef GL_NV_blend_equation_advanced_coherent +#define GL_NV_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_NV 0x9285 +#endif /* GL_NV_blend_equation_advanced_coherent */ + +#ifndef GL_NV_blend_minmax_factor +#define GL_NV_blend_minmax_factor 1 +#define GL_FACTOR_MIN_AMD 0x901C +#define GL_FACTOR_MAX_AMD 0x901D +#endif /* GL_NV_blend_minmax_factor */ + +#ifndef GL_NV_clip_space_w_scaling +#define GL_NV_clip_space_w_scaling 1 +#define GL_VIEWPORT_POSITION_W_SCALE_NV 0x937C +#define GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV 0x937D +#define GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV 0x937E +typedef void (GL_APIENTRYP PFNGLVIEWPORTPOSITIONWSCALENVPROC) (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportPositionWScaleNV (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#endif +#endif /* GL_NV_clip_space_w_scaling */ + +#ifndef GL_NV_compute_shader_derivatives +#define GL_NV_compute_shader_derivatives 1 +#endif /* GL_NV_compute_shader_derivatives */ + +#ifndef GL_NV_conditional_render +#define GL_NV_conditional_render 1 +#define GL_QUERY_WAIT_NV 0x8E13 +#define GL_QUERY_NO_WAIT_NV 0x8E14 +#define GL_QUERY_BY_REGION_WAIT_NV 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16 +typedef void (GL_APIENTRYP PFNGLBEGINCONDITIONALRENDERNVPROC) (GLuint id, GLenum mode); +typedef void (GL_APIENTRYP PFNGLENDCONDITIONALRENDERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBeginConditionalRenderNV (GLuint id, GLenum mode); +GL_APICALL void GL_APIENTRY glEndConditionalRenderNV (void); +#endif +#endif /* GL_NV_conditional_render */ + +#ifndef GL_NV_conservative_raster +#define GL_NV_conservative_raster 1 +#define GL_CONSERVATIVE_RASTERIZATION_NV 0x9346 +#define GL_SUBPIXEL_PRECISION_BIAS_X_BITS_NV 0x9347 +#define GL_SUBPIXEL_PRECISION_BIAS_Y_BITS_NV 0x9348 +#define GL_MAX_SUBPIXEL_PRECISION_BIAS_BITS_NV 0x9349 +typedef void (GL_APIENTRYP PFNGLSUBPIXELPRECISIONBIASNVPROC) (GLuint xbits, GLuint ybits); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glSubpixelPrecisionBiasNV (GLuint xbits, GLuint ybits); +#endif +#endif /* GL_NV_conservative_raster */ + +#ifndef GL_NV_conservative_raster_pre_snap +#define GL_NV_conservative_raster_pre_snap 1 +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV 0x9550 +#endif /* GL_NV_conservative_raster_pre_snap */ + +#ifndef GL_NV_conservative_raster_pre_snap_triangles +#define GL_NV_conservative_raster_pre_snap_triangles 1 +#define GL_CONSERVATIVE_RASTER_MODE_NV 0x954D +#define GL_CONSERVATIVE_RASTER_MODE_POST_SNAP_NV 0x954E +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_TRIANGLES_NV 0x954F +typedef void (GL_APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERINVPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glConservativeRasterParameteriNV (GLenum pname, GLint param); +#endif +#endif /* GL_NV_conservative_raster_pre_snap_triangles */ + +#ifndef GL_NV_copy_buffer +#define GL_NV_copy_buffer 1 +#define GL_COPY_READ_BUFFER_NV 0x8F36 +#define GL_COPY_WRITE_BUFFER_NV 0x8F37 +typedef void (GL_APIENTRYP PFNGLCOPYBUFFERSUBDATANVPROC) (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyBufferSubDataNV (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +#endif +#endif /* GL_NV_copy_buffer */ + +#ifndef GL_NV_coverage_sample +#define GL_NV_coverage_sample 1 +#define GL_COVERAGE_COMPONENT_NV 0x8ED0 +#define GL_COVERAGE_COMPONENT4_NV 0x8ED1 +#define GL_COVERAGE_ATTACHMENT_NV 0x8ED2 +#define GL_COVERAGE_BUFFERS_NV 0x8ED3 +#define GL_COVERAGE_SAMPLES_NV 0x8ED4 +#define GL_COVERAGE_ALL_FRAGMENTS_NV 0x8ED5 +#define GL_COVERAGE_EDGE_FRAGMENTS_NV 0x8ED6 +#define GL_COVERAGE_AUTOMATIC_NV 0x8ED7 +#define GL_COVERAGE_BUFFER_BIT_NV 0x00008000 +typedef void (GL_APIENTRYP PFNGLCOVERAGEMASKNVPROC) (GLboolean mask); +typedef void (GL_APIENTRYP PFNGLCOVERAGEOPERATIONNVPROC) (GLenum operation); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCoverageMaskNV (GLboolean mask); +GL_APICALL void GL_APIENTRY glCoverageOperationNV (GLenum operation); +#endif +#endif /* GL_NV_coverage_sample */ + +#ifndef GL_NV_depth_nonlinear +#define GL_NV_depth_nonlinear 1 +#define GL_DEPTH_COMPONENT16_NONLINEAR_NV 0x8E2C +#endif /* GL_NV_depth_nonlinear */ + +#ifndef GL_NV_draw_buffers +#define GL_NV_draw_buffers 1 +#define GL_MAX_DRAW_BUFFERS_NV 0x8824 +#define GL_DRAW_BUFFER0_NV 0x8825 +#define GL_DRAW_BUFFER1_NV 0x8826 +#define GL_DRAW_BUFFER2_NV 0x8827 +#define GL_DRAW_BUFFER3_NV 0x8828 +#define GL_DRAW_BUFFER4_NV 0x8829 +#define GL_DRAW_BUFFER5_NV 0x882A +#define GL_DRAW_BUFFER6_NV 0x882B +#define GL_DRAW_BUFFER7_NV 0x882C +#define GL_DRAW_BUFFER8_NV 0x882D +#define GL_DRAW_BUFFER9_NV 0x882E +#define GL_DRAW_BUFFER10_NV 0x882F +#define GL_DRAW_BUFFER11_NV 0x8830 +#define GL_DRAW_BUFFER12_NV 0x8831 +#define GL_DRAW_BUFFER13_NV 0x8832 +#define GL_DRAW_BUFFER14_NV 0x8833 +#define GL_DRAW_BUFFER15_NV 0x8834 +#define GL_COLOR_ATTACHMENT0_NV 0x8CE0 +#define GL_COLOR_ATTACHMENT1_NV 0x8CE1 +#define GL_COLOR_ATTACHMENT2_NV 0x8CE2 +#define GL_COLOR_ATTACHMENT3_NV 0x8CE3 +#define GL_COLOR_ATTACHMENT4_NV 0x8CE4 +#define GL_COLOR_ATTACHMENT5_NV 0x8CE5 +#define GL_COLOR_ATTACHMENT6_NV 0x8CE6 +#define GL_COLOR_ATTACHMENT7_NV 0x8CE7 +#define GL_COLOR_ATTACHMENT8_NV 0x8CE8 +#define GL_COLOR_ATTACHMENT9_NV 0x8CE9 +#define GL_COLOR_ATTACHMENT10_NV 0x8CEA +#define GL_COLOR_ATTACHMENT11_NV 0x8CEB +#define GL_COLOR_ATTACHMENT12_NV 0x8CEC +#define GL_COLOR_ATTACHMENT13_NV 0x8CED +#define GL_COLOR_ATTACHMENT14_NV 0x8CEE +#define GL_COLOR_ATTACHMENT15_NV 0x8CEF +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSNVPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawBuffersNV (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_NV_draw_buffers */ + +#ifndef GL_NV_draw_instanced +#define GL_NV_draw_instanced 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDNVPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDNVPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedNV (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedNV (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_NV_draw_instanced */ + +#ifndef GL_NV_draw_vulkan_image +#define GL_NV_draw_vulkan_image 1 +typedef void (GL_APIENTRY *GLVULKANPROCNV)(void); +typedef void (GL_APIENTRYP PFNGLDRAWVKIMAGENVPROC) (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +typedef GLVULKANPROCNV (GL_APIENTRYP PFNGLGETVKPROCADDRNVPROC) (const GLchar *name); +typedef void (GL_APIENTRYP PFNGLWAITVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (GL_APIENTRYP PFNGLSIGNALVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (GL_APIENTRYP PFNGLSIGNALVKFENCENVPROC) (GLuint64 vkFence); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawVkImageNV (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +GL_APICALL GLVULKANPROCNV GL_APIENTRY glGetVkProcAddrNV (const GLchar *name); +GL_APICALL void GL_APIENTRY glWaitVkSemaphoreNV (GLuint64 vkSemaphore); +GL_APICALL void GL_APIENTRY glSignalVkSemaphoreNV (GLuint64 vkSemaphore); +GL_APICALL void GL_APIENTRY glSignalVkFenceNV (GLuint64 vkFence); +#endif +#endif /* GL_NV_draw_vulkan_image */ + +#ifndef GL_NV_explicit_attrib_location +#define GL_NV_explicit_attrib_location 1 +#endif /* GL_NV_explicit_attrib_location */ + +#ifndef GL_NV_fbo_color_attachments +#define GL_NV_fbo_color_attachments 1 +#define GL_MAX_COLOR_ATTACHMENTS_NV 0x8CDF +#endif /* GL_NV_fbo_color_attachments */ + +#ifndef GL_NV_fence +#define GL_NV_fence 1 +#define GL_ALL_COMPLETED_NV 0x84F2 +#define GL_FENCE_STATUS_NV 0x84F3 +#define GL_FENCE_CONDITION_NV 0x84F4 +typedef void (GL_APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences); +typedef void (GL_APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences); +typedef GLboolean (GL_APIENTRYP PFNGLISFENCENVPROC) (GLuint fence); +typedef GLboolean (GL_APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence); +typedef void (GL_APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence); +typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences); +GL_APICALL void GL_APIENTRY glGenFencesNV (GLsizei n, GLuint *fences); +GL_APICALL GLboolean GL_APIENTRY glIsFenceNV (GLuint fence); +GL_APICALL GLboolean GL_APIENTRY glTestFenceNV (GLuint fence); +GL_APICALL void GL_APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glFinishFenceNV (GLuint fence); +GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition); +#endif +#endif /* GL_NV_fence */ + +#ifndef GL_NV_fill_rectangle +#define GL_NV_fill_rectangle 1 +#define GL_FILL_RECTANGLE_NV 0x933C +#endif /* GL_NV_fill_rectangle */ + +#ifndef GL_NV_fragment_coverage_to_color +#define GL_NV_fragment_coverage_to_color 1 +#define GL_FRAGMENT_COVERAGE_TO_COLOR_NV 0x92DD +#define GL_FRAGMENT_COVERAGE_COLOR_NV 0x92DE +typedef void (GL_APIENTRYP PFNGLFRAGMENTCOVERAGECOLORNVPROC) (GLuint color); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFragmentCoverageColorNV (GLuint color); +#endif +#endif /* GL_NV_fragment_coverage_to_color */ + +#ifndef GL_NV_fragment_shader_barycentric +#define GL_NV_fragment_shader_barycentric 1 +#endif /* GL_NV_fragment_shader_barycentric */ + +#ifndef GL_NV_fragment_shader_interlock +#define GL_NV_fragment_shader_interlock 1 +#endif /* GL_NV_fragment_shader_interlock */ + +#ifndef GL_NV_framebuffer_blit +#define GL_NV_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_NV 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_NV 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_NV 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_NV 0x8CAA +typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERNVPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlitFramebufferNV (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_NV_framebuffer_blit */ + +#ifndef GL_NV_framebuffer_mixed_samples +#define GL_NV_framebuffer_mixed_samples 1 +#define GL_COVERAGE_MODULATION_TABLE_NV 0x9331 +#define GL_COLOR_SAMPLES_NV 0x8E20 +#define GL_DEPTH_SAMPLES_NV 0x932D +#define GL_STENCIL_SAMPLES_NV 0x932E +#define GL_MIXED_DEPTH_SAMPLES_SUPPORTED_NV 0x932F +#define GL_MIXED_STENCIL_SAMPLES_SUPPORTED_NV 0x9330 +#define GL_COVERAGE_MODULATION_NV 0x9332 +#define GL_COVERAGE_MODULATION_TABLE_SIZE_NV 0x9333 +typedef void (GL_APIENTRYP PFNGLCOVERAGEMODULATIONTABLENVPROC) (GLsizei n, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLGETCOVERAGEMODULATIONTABLENVPROC) (GLsizei bufSize, GLfloat *v); +typedef void (GL_APIENTRYP PFNGLCOVERAGEMODULATIONNVPROC) (GLenum components); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCoverageModulationTableNV (GLsizei n, const GLfloat *v); +GL_APICALL void GL_APIENTRY glGetCoverageModulationTableNV (GLsizei bufSize, GLfloat *v); +GL_APICALL void GL_APIENTRY glCoverageModulationNV (GLenum components); +#endif +#endif /* GL_NV_framebuffer_mixed_samples */ + +#ifndef GL_NV_framebuffer_multisample +#define GL_NV_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_NV 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_NV 0x8D56 +#define GL_MAX_SAMPLES_NV 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLENVPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleNV (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_NV_framebuffer_multisample */ + +#ifndef GL_NV_generate_mipmap_sRGB +#define GL_NV_generate_mipmap_sRGB 1 +#endif /* GL_NV_generate_mipmap_sRGB */ + +#ifndef GL_NV_geometry_shader_passthrough +#define GL_NV_geometry_shader_passthrough 1 +#endif /* GL_NV_geometry_shader_passthrough */ + +#ifndef GL_NV_gpu_shader5 +#define GL_NV_gpu_shader5 1 +typedef khronos_int64_t GLint64EXT; +typedef khronos_uint64_t GLuint64EXT; +#define GL_INT64_NV 0x140E +#define GL_UNSIGNED_INT64_NV 0x140F +#define GL_INT8_NV 0x8FE0 +#define GL_INT8_VEC2_NV 0x8FE1 +#define GL_INT8_VEC3_NV 0x8FE2 +#define GL_INT8_VEC4_NV 0x8FE3 +#define GL_INT16_NV 0x8FE4 +#define GL_INT16_VEC2_NV 0x8FE5 +#define GL_INT16_VEC3_NV 0x8FE6 +#define GL_INT16_VEC4_NV 0x8FE7 +#define GL_INT64_VEC2_NV 0x8FE9 +#define GL_INT64_VEC3_NV 0x8FEA +#define GL_INT64_VEC4_NV 0x8FEB +#define GL_UNSIGNED_INT8_NV 0x8FEC +#define GL_UNSIGNED_INT8_VEC2_NV 0x8FED +#define GL_UNSIGNED_INT8_VEC3_NV 0x8FEE +#define GL_UNSIGNED_INT8_VEC4_NV 0x8FEF +#define GL_UNSIGNED_INT16_NV 0x8FF0 +#define GL_UNSIGNED_INT16_VEC2_NV 0x8FF1 +#define GL_UNSIGNED_INT16_VEC3_NV 0x8FF2 +#define GL_UNSIGNED_INT16_VEC4_NV 0x8FF3 +#define GL_UNSIGNED_INT64_VEC2_NV 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_NV 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_NV 0x8FF7 +#define GL_FLOAT16_NV 0x8FF8 +#define GL_FLOAT16_VEC2_NV 0x8FF9 +#define GL_FLOAT16_VEC3_NV 0x8FFA +#define GL_FLOAT16_VEC4_NV 0x8FFB +#define GL_PATCHES 0x000E +typedef void (GL_APIENTRYP PFNGLUNIFORM1I64NVPROC) (GLint location, GLint64EXT x); +typedef void (GL_APIENTRYP PFNGLUNIFORM2I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y); +typedef void (GL_APIENTRYP PFNGLUNIFORM3I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (GL_APIENTRYP PFNGLUNIFORM4I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (GL_APIENTRYP PFNGLUNIFORM1I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM1UI64NVPROC) (GLint location, GLuint64EXT x); +typedef void (GL_APIENTRYP PFNGLUNIFORM2UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (GL_APIENTRYP PFNGLUNIFORM3UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (GL_APIENTRYP PFNGLUNIFORM4UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (GL_APIENTRYP PFNGLUNIFORM1UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMI64VNVPROC) (GLuint program, GLint location, GLint64EXT *params); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1I64NVPROC) (GLuint program, GLint location, GLint64EXT x); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glUniform1i64NV (GLint location, GLint64EXT x); +GL_APICALL void GL_APIENTRY glUniform2i64NV (GLint location, GLint64EXT x, GLint64EXT y); +GL_APICALL void GL_APIENTRY glUniform3i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GL_APICALL void GL_APIENTRY glUniform4i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GL_APICALL void GL_APIENTRY glUniform1i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform2i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform3i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform4i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform1ui64NV (GLint location, GLuint64EXT x); +GL_APICALL void GL_APIENTRY glUniform2ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y); +GL_APICALL void GL_APIENTRY glUniform3ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GL_APICALL void GL_APIENTRY glUniform4ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GL_APICALL void GL_APIENTRY glUniform1ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform2ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform3ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform4ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glGetUniformi64vNV (GLuint program, GLint location, GLint64EXT *params); +GL_APICALL void GL_APIENTRY glProgramUniform1i64NV (GLuint program, GLint location, GLint64EXT x); +GL_APICALL void GL_APIENTRY glProgramUniform2i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +GL_APICALL void GL_APIENTRY glProgramUniform3i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GL_APICALL void GL_APIENTRY glProgramUniform4i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GL_APICALL void GL_APIENTRY glProgramUniform1i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform2i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform3i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform4i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform1ui64NV (GLuint program, GLint location, GLuint64EXT x); +GL_APICALL void GL_APIENTRY glProgramUniform2ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +GL_APICALL void GL_APIENTRY glProgramUniform3ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GL_APICALL void GL_APIENTRY glProgramUniform4ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GL_APICALL void GL_APIENTRY glProgramUniform1ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform2ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform3ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform4ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif +#endif /* GL_NV_gpu_shader5 */ + +#ifndef GL_NV_image_formats +#define GL_NV_image_formats 1 +#endif /* GL_NV_image_formats */ + +#ifndef GL_NV_instanced_arrays +#define GL_NV_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_NV 0x88FE +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORNVPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glVertexAttribDivisorNV (GLuint index, GLuint divisor); +#endif +#endif /* GL_NV_instanced_arrays */ + +#ifndef GL_NV_internalformat_sample_query +#define GL_NV_internalformat_sample_query 1 +#define GL_TEXTURE_2D_MULTISAMPLE 0x9100 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 +#define GL_MULTISAMPLES_NV 0x9371 +#define GL_SUPERSAMPLE_SCALE_X_NV 0x9372 +#define GL_SUPERSAMPLE_SCALE_Y_NV 0x9373 +#define GL_CONFORMANT_NV 0x9374 +typedef void (GL_APIENTRYP PFNGLGETINTERNALFORMATSAMPLEIVNVPROC) (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetInternalformatSampleivNV (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#endif +#endif /* GL_NV_internalformat_sample_query */ + +#ifndef GL_NV_memory_attachment +#define GL_NV_memory_attachment 1 +#define GL_ATTACHED_MEMORY_OBJECT_NV 0x95A4 +#define GL_ATTACHED_MEMORY_OFFSET_NV 0x95A5 +#define GL_MEMORY_ATTACHABLE_ALIGNMENT_NV 0x95A6 +#define GL_MEMORY_ATTACHABLE_SIZE_NV 0x95A7 +#define GL_MEMORY_ATTACHABLE_NV 0x95A8 +#define GL_DETACHED_MEMORY_INCARNATION_NV 0x95A9 +#define GL_DETACHED_TEXTURES_NV 0x95AA +#define GL_DETACHED_BUFFERS_NV 0x95AB +#define GL_MAX_DETACHED_TEXTURES_NV 0x95AC +#define GL_MAX_DETACHED_BUFFERS_NV 0x95AD +typedef void (GL_APIENTRYP PFNGLGETMEMORYOBJECTDETACHEDRESOURCESUIVNVPROC) (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +typedef void (GL_APIENTRYP PFNGLRESETMEMORYOBJECTPARAMETERNVPROC) (GLuint memory, GLenum pname); +typedef void (GL_APIENTRYP PFNGLTEXATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLBUFFERATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTUREATTACHMEMORYNVPROC) (GLuint texture, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERATTACHMEMORYNVPROC) (GLuint buffer, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetMemoryObjectDetachedResourcesuivNV (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +GL_APICALL void GL_APIENTRY glResetMemoryObjectParameterNV (GLuint memory, GLenum pname); +GL_APICALL void GL_APIENTRY glTexAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glBufferAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureAttachMemoryNV (GLuint texture, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glNamedBufferAttachMemoryNV (GLuint buffer, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_NV_memory_attachment */ + +#ifndef GL_NV_memory_object_sparse +#define GL_NV_memory_object_sparse 1 +typedef void (GL_APIENTRYP PFNGLBUFFERPAGECOMMITMENTMEMNVPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLTEXPAGECOMMITMENTMEMNVPROC) (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTMEMNVPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLTEXTUREPAGECOMMITMENTMEMNVPROC) (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferPageCommitmentMemNV (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GL_APICALL void GL_APIENTRY glTexPageCommitmentMemNV (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +GL_APICALL void GL_APIENTRY glNamedBufferPageCommitmentMemNV (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GL_APICALL void GL_APIENTRY glTexturePageCommitmentMemNV (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#endif +#endif /* GL_NV_memory_object_sparse */ + +#ifndef GL_NV_mesh_shader +#define GL_NV_mesh_shader 1 +#define GL_MESH_SHADER_NV 0x9559 +#define GL_TASK_SHADER_NV 0x955A +#define GL_MAX_MESH_UNIFORM_BLOCKS_NV 0x8E60 +#define GL_MAX_MESH_TEXTURE_IMAGE_UNITS_NV 0x8E61 +#define GL_MAX_MESH_IMAGE_UNIFORMS_NV 0x8E62 +#define GL_MAX_MESH_UNIFORM_COMPONENTS_NV 0x8E63 +#define GL_MAX_MESH_ATOMIC_COUNTER_BUFFERS_NV 0x8E64 +#define GL_MAX_MESH_ATOMIC_COUNTERS_NV 0x8E65 +#define GL_MAX_MESH_SHADER_STORAGE_BLOCKS_NV 0x8E66 +#define GL_MAX_COMBINED_MESH_UNIFORM_COMPONENTS_NV 0x8E67 +#define GL_MAX_TASK_UNIFORM_BLOCKS_NV 0x8E68 +#define GL_MAX_TASK_TEXTURE_IMAGE_UNITS_NV 0x8E69 +#define GL_MAX_TASK_IMAGE_UNIFORMS_NV 0x8E6A +#define GL_MAX_TASK_UNIFORM_COMPONENTS_NV 0x8E6B +#define GL_MAX_TASK_ATOMIC_COUNTER_BUFFERS_NV 0x8E6C +#define GL_MAX_TASK_ATOMIC_COUNTERS_NV 0x8E6D +#define GL_MAX_TASK_SHADER_STORAGE_BLOCKS_NV 0x8E6E +#define GL_MAX_COMBINED_TASK_UNIFORM_COMPONENTS_NV 0x8E6F +#define GL_MAX_MESH_WORK_GROUP_INVOCATIONS_NV 0x95A2 +#define GL_MAX_TASK_WORK_GROUP_INVOCATIONS_NV 0x95A3 +#define GL_MAX_MESH_TOTAL_MEMORY_SIZE_NV 0x9536 +#define GL_MAX_TASK_TOTAL_MEMORY_SIZE_NV 0x9537 +#define GL_MAX_MESH_OUTPUT_VERTICES_NV 0x9538 +#define GL_MAX_MESH_OUTPUT_PRIMITIVES_NV 0x9539 +#define GL_MAX_TASK_OUTPUT_COUNT_NV 0x953A +#define GL_MAX_DRAW_MESH_TASKS_COUNT_NV 0x953D +#define GL_MAX_MESH_VIEWS_NV 0x9557 +#define GL_MESH_OUTPUT_PER_VERTEX_GRANULARITY_NV 0x92DF +#define GL_MESH_OUTPUT_PER_PRIMITIVE_GRANULARITY_NV 0x9543 +#define GL_MAX_MESH_WORK_GROUP_SIZE_NV 0x953B +#define GL_MAX_TASK_WORK_GROUP_SIZE_NV 0x953C +#define GL_MESH_WORK_GROUP_SIZE_NV 0x953E +#define GL_TASK_WORK_GROUP_SIZE_NV 0x953F +#define GL_MESH_VERTICES_OUT_NV 0x9579 +#define GL_MESH_PRIMITIVES_OUT_NV 0x957A +#define GL_MESH_OUTPUT_TYPE_NV 0x957B +#define GL_UNIFORM_BLOCK_REFERENCED_BY_MESH_SHADER_NV 0x959C +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TASK_SHADER_NV 0x959D +#define GL_REFERENCED_BY_MESH_SHADER_NV 0x95A0 +#define GL_REFERENCED_BY_TASK_SHADER_NV 0x95A1 +#define GL_MESH_SHADER_BIT_NV 0x00000040 +#define GL_TASK_SHADER_BIT_NV 0x00000080 +#define GL_MESH_SUBROUTINE_NV 0x957C +#define GL_TASK_SUBROUTINE_NV 0x957D +#define GL_MESH_SUBROUTINE_UNIFORM_NV 0x957E +#define GL_TASK_SUBROUTINE_UNIFORM_NV 0x957F +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_MESH_SHADER_NV 0x959E +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TASK_SHADER_NV 0x959F +typedef void (GL_APIENTRYP PFNGLDRAWMESHTASKSNVPROC) (GLuint first, GLuint count); +typedef void (GL_APIENTRYP PFNGLDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect, GLsizei drawcount, GLsizei stride); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTCOUNTNVPROC) (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawMeshTasksNV (GLuint first, GLuint count); +GL_APICALL void GL_APIENTRY glDrawMeshTasksIndirectNV (GLintptr indirect); +GL_APICALL void GL_APIENTRY glMultiDrawMeshTasksIndirectNV (GLintptr indirect, GLsizei drawcount, GLsizei stride); +GL_APICALL void GL_APIENTRY glMultiDrawMeshTasksIndirectCountNV (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_NV_mesh_shader */ + +#ifndef GL_NV_non_square_matrices +#define GL_NV_non_square_matrices 1 +#define GL_FLOAT_MAT2x3_NV 0x8B65 +#define GL_FLOAT_MAT2x4_NV 0x8B66 +#define GL_FLOAT_MAT3x2_NV 0x8B67 +#define GL_FLOAT_MAT3x4_NV 0x8B68 +#define GL_FLOAT_MAT4x2_NV 0x8B69 +#define GL_FLOAT_MAT4x3_NV 0x8B6A +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2X3FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3X2FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2X4FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4X2FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3X4FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4X3FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glUniformMatrix2x3fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3x2fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix2x4fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4x2fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3x4fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4x3fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_NV_non_square_matrices */ + +#ifndef GL_NV_path_rendering +#define GL_NV_path_rendering 1 +typedef double GLdouble; +#define GL_PATH_FORMAT_SVG_NV 0x9070 +#define GL_PATH_FORMAT_PS_NV 0x9071 +#define GL_STANDARD_FONT_NAME_NV 0x9072 +#define GL_SYSTEM_FONT_NAME_NV 0x9073 +#define GL_FILE_NAME_NV 0x9074 +#define GL_PATH_STROKE_WIDTH_NV 0x9075 +#define GL_PATH_END_CAPS_NV 0x9076 +#define GL_PATH_INITIAL_END_CAP_NV 0x9077 +#define GL_PATH_TERMINAL_END_CAP_NV 0x9078 +#define GL_PATH_JOIN_STYLE_NV 0x9079 +#define GL_PATH_MITER_LIMIT_NV 0x907A +#define GL_PATH_DASH_CAPS_NV 0x907B +#define GL_PATH_INITIAL_DASH_CAP_NV 0x907C +#define GL_PATH_TERMINAL_DASH_CAP_NV 0x907D +#define GL_PATH_DASH_OFFSET_NV 0x907E +#define GL_PATH_CLIENT_LENGTH_NV 0x907F +#define GL_PATH_FILL_MODE_NV 0x9080 +#define GL_PATH_FILL_MASK_NV 0x9081 +#define GL_PATH_FILL_COVER_MODE_NV 0x9082 +#define GL_PATH_STROKE_COVER_MODE_NV 0x9083 +#define GL_PATH_STROKE_MASK_NV 0x9084 +#define GL_COUNT_UP_NV 0x9088 +#define GL_COUNT_DOWN_NV 0x9089 +#define GL_PATH_OBJECT_BOUNDING_BOX_NV 0x908A +#define GL_CONVEX_HULL_NV 0x908B +#define GL_BOUNDING_BOX_NV 0x908D +#define GL_TRANSLATE_X_NV 0x908E +#define GL_TRANSLATE_Y_NV 0x908F +#define GL_TRANSLATE_2D_NV 0x9090 +#define GL_TRANSLATE_3D_NV 0x9091 +#define GL_AFFINE_2D_NV 0x9092 +#define GL_AFFINE_3D_NV 0x9094 +#define GL_TRANSPOSE_AFFINE_2D_NV 0x9096 +#define GL_TRANSPOSE_AFFINE_3D_NV 0x9098 +#define GL_UTF8_NV 0x909A +#define GL_UTF16_NV 0x909B +#define GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV 0x909C +#define GL_PATH_COMMAND_COUNT_NV 0x909D +#define GL_PATH_COORD_COUNT_NV 0x909E +#define GL_PATH_DASH_ARRAY_COUNT_NV 0x909F +#define GL_PATH_COMPUTED_LENGTH_NV 0x90A0 +#define GL_PATH_FILL_BOUNDING_BOX_NV 0x90A1 +#define GL_PATH_STROKE_BOUNDING_BOX_NV 0x90A2 +#define GL_SQUARE_NV 0x90A3 +#define GL_ROUND_NV 0x90A4 +#define GL_TRIANGULAR_NV 0x90A5 +#define GL_BEVEL_NV 0x90A6 +#define GL_MITER_REVERT_NV 0x90A7 +#define GL_MITER_TRUNCATE_NV 0x90A8 +#define GL_SKIP_MISSING_GLYPH_NV 0x90A9 +#define GL_USE_MISSING_GLYPH_NV 0x90AA +#define GL_PATH_ERROR_POSITION_NV 0x90AB +#define GL_ACCUM_ADJACENT_PAIRS_NV 0x90AD +#define GL_ADJACENT_PAIRS_NV 0x90AE +#define GL_FIRST_TO_REST_NV 0x90AF +#define GL_PATH_GEN_MODE_NV 0x90B0 +#define GL_PATH_GEN_COEFF_NV 0x90B1 +#define GL_PATH_GEN_COMPONENTS_NV 0x90B3 +#define GL_PATH_STENCIL_FUNC_NV 0x90B7 +#define GL_PATH_STENCIL_REF_NV 0x90B8 +#define GL_PATH_STENCIL_VALUE_MASK_NV 0x90B9 +#define GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV 0x90BD +#define GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV 0x90BE +#define GL_PATH_COVER_DEPTH_FUNC_NV 0x90BF +#define GL_PATH_DASH_OFFSET_RESET_NV 0x90B4 +#define GL_MOVE_TO_RESETS_NV 0x90B5 +#define GL_MOVE_TO_CONTINUES_NV 0x90B6 +#define GL_CLOSE_PATH_NV 0x00 +#define GL_MOVE_TO_NV 0x02 +#define GL_RELATIVE_MOVE_TO_NV 0x03 +#define GL_LINE_TO_NV 0x04 +#define GL_RELATIVE_LINE_TO_NV 0x05 +#define GL_HORIZONTAL_LINE_TO_NV 0x06 +#define GL_RELATIVE_HORIZONTAL_LINE_TO_NV 0x07 +#define GL_VERTICAL_LINE_TO_NV 0x08 +#define GL_RELATIVE_VERTICAL_LINE_TO_NV 0x09 +#define GL_QUADRATIC_CURVE_TO_NV 0x0A +#define GL_RELATIVE_QUADRATIC_CURVE_TO_NV 0x0B +#define GL_CUBIC_CURVE_TO_NV 0x0C +#define GL_RELATIVE_CUBIC_CURVE_TO_NV 0x0D +#define GL_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0E +#define GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0F +#define GL_SMOOTH_CUBIC_CURVE_TO_NV 0x10 +#define GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV 0x11 +#define GL_SMALL_CCW_ARC_TO_NV 0x12 +#define GL_RELATIVE_SMALL_CCW_ARC_TO_NV 0x13 +#define GL_SMALL_CW_ARC_TO_NV 0x14 +#define GL_RELATIVE_SMALL_CW_ARC_TO_NV 0x15 +#define GL_LARGE_CCW_ARC_TO_NV 0x16 +#define GL_RELATIVE_LARGE_CCW_ARC_TO_NV 0x17 +#define GL_LARGE_CW_ARC_TO_NV 0x18 +#define GL_RELATIVE_LARGE_CW_ARC_TO_NV 0x19 +#define GL_RESTART_PATH_NV 0xF0 +#define GL_DUP_FIRST_CUBIC_CURVE_TO_NV 0xF2 +#define GL_DUP_LAST_CUBIC_CURVE_TO_NV 0xF4 +#define GL_RECT_NV 0xF6 +#define GL_CIRCULAR_CCW_ARC_TO_NV 0xF8 +#define GL_CIRCULAR_CW_ARC_TO_NV 0xFA +#define GL_CIRCULAR_TANGENT_ARC_TO_NV 0xFC +#define GL_ARC_TO_NV 0xFE +#define GL_RELATIVE_ARC_TO_NV 0xFF +#define GL_BOLD_BIT_NV 0x01 +#define GL_ITALIC_BIT_NV 0x02 +#define GL_GLYPH_WIDTH_BIT_NV 0x01 +#define GL_GLYPH_HEIGHT_BIT_NV 0x02 +#define GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV 0x04 +#define GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV 0x08 +#define GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV 0x10 +#define GL_GLYPH_VERTICAL_BEARING_X_BIT_NV 0x20 +#define GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV 0x40 +#define GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV 0x80 +#define GL_GLYPH_HAS_KERNING_BIT_NV 0x100 +#define GL_FONT_X_MIN_BOUNDS_BIT_NV 0x00010000 +#define GL_FONT_Y_MIN_BOUNDS_BIT_NV 0x00020000 +#define GL_FONT_X_MAX_BOUNDS_BIT_NV 0x00040000 +#define GL_FONT_Y_MAX_BOUNDS_BIT_NV 0x00080000 +#define GL_FONT_UNITS_PER_EM_BIT_NV 0x00100000 +#define GL_FONT_ASCENDER_BIT_NV 0x00200000 +#define GL_FONT_DESCENDER_BIT_NV 0x00400000 +#define GL_FONT_HEIGHT_BIT_NV 0x00800000 +#define GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV 0x01000000 +#define GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV 0x02000000 +#define GL_FONT_UNDERLINE_POSITION_BIT_NV 0x04000000 +#define GL_FONT_UNDERLINE_THICKNESS_BIT_NV 0x08000000 +#define GL_FONT_HAS_KERNING_BIT_NV 0x10000000 +#define GL_ROUNDED_RECT_NV 0xE8 +#define GL_RELATIVE_ROUNDED_RECT_NV 0xE9 +#define GL_ROUNDED_RECT2_NV 0xEA +#define GL_RELATIVE_ROUNDED_RECT2_NV 0xEB +#define GL_ROUNDED_RECT4_NV 0xEC +#define GL_RELATIVE_ROUNDED_RECT4_NV 0xED +#define GL_ROUNDED_RECT8_NV 0xEE +#define GL_RELATIVE_ROUNDED_RECT8_NV 0xEF +#define GL_RELATIVE_RECT_NV 0xF7 +#define GL_FONT_GLYPHS_AVAILABLE_NV 0x9368 +#define GL_FONT_TARGET_UNAVAILABLE_NV 0x9369 +#define GL_FONT_UNAVAILABLE_NV 0x936A +#define GL_FONT_UNINTELLIGIBLE_NV 0x936B +#define GL_CONIC_CURVE_TO_NV 0x1A +#define GL_RELATIVE_CONIC_CURVE_TO_NV 0x1B +#define GL_FONT_NUM_GLYPH_INDICES_BIT_NV 0x20000000 +#define GL_STANDARD_FONT_FORMAT_NV 0x936C +#define GL_PATH_PROJECTION_NV 0x1701 +#define GL_PATH_MODELVIEW_NV 0x1700 +#define GL_PATH_MODELVIEW_STACK_DEPTH_NV 0x0BA3 +#define GL_PATH_MODELVIEW_MATRIX_NV 0x0BA6 +#define GL_PATH_MAX_MODELVIEW_STACK_DEPTH_NV 0x0D36 +#define GL_PATH_TRANSPOSE_MODELVIEW_MATRIX_NV 0x84E3 +#define GL_PATH_PROJECTION_STACK_DEPTH_NV 0x0BA4 +#define GL_PATH_PROJECTION_MATRIX_NV 0x0BA7 +#define GL_PATH_MAX_PROJECTION_STACK_DEPTH_NV 0x0D38 +#define GL_PATH_TRANSPOSE_PROJECTION_MATRIX_NV 0x84E4 +#define GL_FRAGMENT_INPUT_NV 0x936D +typedef GLuint (GL_APIENTRYP PFNGLGENPATHSNVPROC) (GLsizei range); +typedef void (GL_APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); +typedef GLboolean (GL_APIENTRYP PFNGLISPATHNVPROC) (GLuint path); +typedef void (GL_APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); +typedef void (GL_APIENTRYP PFNGLPATHGLYPHSNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLPATHGLYPHRANGENVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLWEIGHTPATHSNVPROC) (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +typedef void (GL_APIENTRYP PFNGLCOPYPATHNVPROC) (GLuint resultPath, GLuint srcPath); +typedef void (GL_APIENTRYP PFNGLINTERPOLATEPATHSNVPROC) (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +typedef void (GL_APIENTRYP PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERINVPROC) (GLuint path, GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERFNVPROC) (GLuint path, GLenum pname, GLfloat value); +typedef void (GL_APIENTRYP PFNGLPATHDASHARRAYNVPROC) (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +typedef void (GL_APIENTRYP PFNGLPATHSTENCILFUNCNVPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLPATHSTENCILDEPTHOFFSETNVPROC) (GLfloat factor, GLfloat units); +typedef void (GL_APIENTRYP PFNGLSTENCILFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLSTENCILSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLPATHCOVERDEPTHFUNCNVPROC) (GLenum func); +typedef void (GL_APIENTRYP PFNGLCOVERFILLPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLCOVERSTROKEPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLGETPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, GLint *value); +typedef void (GL_APIENTRYP PFNGLGETPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, GLfloat *value); +typedef void (GL_APIENTRYP PFNGLGETPATHCOMMANDSNVPROC) (GLuint path, GLubyte *commands); +typedef void (GL_APIENTRYP PFNGLGETPATHCOORDSNVPROC) (GLuint path, GLfloat *coords); +typedef void (GL_APIENTRYP PFNGLGETPATHDASHARRAYNVPROC) (GLuint path, GLfloat *dashArray); +typedef void (GL_APIENTRYP PFNGLGETPATHMETRICSNVPROC) (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +typedef void (GL_APIENTRYP PFNGLGETPATHMETRICRANGENVPROC) (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +typedef void (GL_APIENTRYP PFNGLGETPATHSPACINGNVPROC) (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +typedef GLboolean (GL_APIENTRYP PFNGLISPOINTINFILLPATHNVPROC) (GLuint path, GLuint mask, GLfloat x, GLfloat y); +typedef GLboolean (GL_APIENTRYP PFNGLISPOINTINSTROKEPATHNVPROC) (GLuint path, GLfloat x, GLfloat y); +typedef GLfloat (GL_APIENTRYP PFNGLGETPATHLENGTHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments); +typedef GLboolean (GL_APIENTRYP PFNGLPOINTALONGPATHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +typedef void (GL_APIENTRYP PFNGLMATRIXLOAD3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOAD3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULT3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULT3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef GLenum (GL_APIENTRYP PFNGLPATHGLYPHINDEXRANGENVPROC) (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +typedef GLenum (GL_APIENTRYP PFNGLPATHGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef GLenum (GL_APIENTRYP PFNGLPATHMEMORYGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLPROGRAMPATHFRAGMENTINPUTGENNVPROC) (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMRESOURCEFVNVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLMATRIXFRUSTUMEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADIDENTITYEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXORTHOEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (GL_APIENTRYP PFNGLMATRIXPOPEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXPUSHEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXROTATEFEXTPROC) (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXROTATEDEXTPROC) (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +typedef void (GL_APIENTRYP PFNGLMATRIXSCALEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXSCALEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (GL_APIENTRYP PFNGLMATRIXTRANSLATEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXTRANSLATEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint GL_APIENTRY glGenPathsNV (GLsizei range); +GL_APICALL void GL_APIENTRY glDeletePathsNV (GLuint path, GLsizei range); +GL_APICALL GLboolean GL_APIENTRY glIsPathNV (GLuint path); +GL_APICALL void GL_APIENTRY glPathCommandsNV (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathCoordsNV (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathSubCommandsNV (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathSubCoordsNV (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathStringNV (GLuint path, GLenum format, GLsizei length, const void *pathString); +GL_APICALL void GL_APIENTRY glPathGlyphsNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glPathGlyphRangeNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glWeightPathsNV (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +GL_APICALL void GL_APIENTRY glCopyPathNV (GLuint resultPath, GLuint srcPath); +GL_APICALL void GL_APIENTRY glInterpolatePathsNV (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +GL_APICALL void GL_APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glPathParameterivNV (GLuint path, GLenum pname, const GLint *value); +GL_APICALL void GL_APIENTRY glPathParameteriNV (GLuint path, GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glPathParameterfvNV (GLuint path, GLenum pname, const GLfloat *value); +GL_APICALL void GL_APIENTRY glPathParameterfNV (GLuint path, GLenum pname, GLfloat value); +GL_APICALL void GL_APIENTRY glPathDashArrayNV (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +GL_APICALL void GL_APIENTRY glPathStencilFuncNV (GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glPathStencilDepthOffsetNV (GLfloat factor, GLfloat units); +GL_APICALL void GL_APIENTRY glStencilFillPathNV (GLuint path, GLenum fillMode, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilStrokePathNV (GLuint path, GLint reference, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glStencilStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glPathCoverDepthFuncNV (GLenum func); +GL_APICALL void GL_APIENTRY glCoverFillPathNV (GLuint path, GLenum coverMode); +GL_APICALL void GL_APIENTRY glCoverStrokePathNV (GLuint path, GLenum coverMode); +GL_APICALL void GL_APIENTRY glCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glGetPathParameterivNV (GLuint path, GLenum pname, GLint *value); +GL_APICALL void GL_APIENTRY glGetPathParameterfvNV (GLuint path, GLenum pname, GLfloat *value); +GL_APICALL void GL_APIENTRY glGetPathCommandsNV (GLuint path, GLubyte *commands); +GL_APICALL void GL_APIENTRY glGetPathCoordsNV (GLuint path, GLfloat *coords); +GL_APICALL void GL_APIENTRY glGetPathDashArrayNV (GLuint path, GLfloat *dashArray); +GL_APICALL void GL_APIENTRY glGetPathMetricsNV (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +GL_APICALL void GL_APIENTRY glGetPathMetricRangeNV (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +GL_APICALL void GL_APIENTRY glGetPathSpacingNV (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +GL_APICALL GLboolean GL_APIENTRY glIsPointInFillPathNV (GLuint path, GLuint mask, GLfloat x, GLfloat y); +GL_APICALL GLboolean GL_APIENTRY glIsPointInStrokePathNV (GLuint path, GLfloat x, GLfloat y); +GL_APICALL GLfloat GL_APIENTRY glGetPathLengthNV (GLuint path, GLsizei startSegment, GLsizei numSegments); +GL_APICALL GLboolean GL_APIENTRY glPointAlongPathNV (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +GL_APICALL void GL_APIENTRY glMatrixLoad3x2fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoad3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoadTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMult3x2fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMult3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathNV (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathNV (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL GLenum GL_APIENTRY glPathGlyphIndexRangeNV (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +GL_APICALL GLenum GL_APIENTRY glPathGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL GLenum GL_APIENTRY glPathMemoryGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glProgramPathFragmentInputGenNV (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +GL_APICALL void GL_APIENTRY glGetProgramResourcefvNV (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +GL_APICALL void GL_APIENTRY glMatrixFrustumEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GL_APICALL void GL_APIENTRY glMatrixLoadIdentityEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixLoadTransposefEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoadTransposedEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixLoadfEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoaddEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixMultTransposefEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultTransposedEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixMultfEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultdEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixOrthoEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GL_APICALL void GL_APIENTRY glMatrixPopEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixPushEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixRotatefEXT (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixRotatedEXT (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +GL_APICALL void GL_APIENTRY glMatrixScalefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixScaledEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GL_APICALL void GL_APIENTRY glMatrixTranslatefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixTranslatedEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +#endif +#endif /* GL_NV_path_rendering */ + +#ifndef GL_NV_path_rendering_shared_edge +#define GL_NV_path_rendering_shared_edge 1 +#define GL_SHARED_EDGE_NV 0xC0 +#endif /* GL_NV_path_rendering_shared_edge */ + +#ifndef GL_NV_pixel_buffer_object +#define GL_NV_pixel_buffer_object 1 +#define GL_PIXEL_PACK_BUFFER_NV 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_NV 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_NV 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_NV 0x88EF +#endif /* GL_NV_pixel_buffer_object */ + +#ifndef GL_NV_polygon_mode +#define GL_NV_polygon_mode 1 +#define GL_POLYGON_MODE_NV 0x0B40 +#define GL_POLYGON_OFFSET_POINT_NV 0x2A01 +#define GL_POLYGON_OFFSET_LINE_NV 0x2A02 +#define GL_POINT_NV 0x1B00 +#define GL_LINE_NV 0x1B01 +#define GL_FILL_NV 0x1B02 +typedef void (GL_APIENTRYP PFNGLPOLYGONMODENVPROC) (GLenum face, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPolygonModeNV (GLenum face, GLenum mode); +#endif +#endif /* GL_NV_polygon_mode */ + +#ifndef GL_NV_primitive_shading_rate +#define GL_NV_primitive_shading_rate 1 +#define GL_SHADING_RATE_IMAGE_PER_PRIMITIVE_NV 0x95B1 +#define GL_SHADING_RATE_IMAGE_PALETTE_COUNT_NV 0x95B2 +#endif /* GL_NV_primitive_shading_rate */ + +#ifndef GL_NV_read_buffer +#define GL_NV_read_buffer 1 +#define GL_READ_BUFFER_NV 0x0C02 +typedef void (GL_APIENTRYP PFNGLREADBUFFERNVPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glReadBufferNV (GLenum mode); +#endif +#endif /* GL_NV_read_buffer */ + +#ifndef GL_NV_read_buffer_front +#define GL_NV_read_buffer_front 1 +#endif /* GL_NV_read_buffer_front */ + +#ifndef GL_NV_read_depth +#define GL_NV_read_depth 1 +#endif /* GL_NV_read_depth */ + +#ifndef GL_NV_read_depth_stencil +#define GL_NV_read_depth_stencil 1 +#endif /* GL_NV_read_depth_stencil */ + +#ifndef GL_NV_read_stencil +#define GL_NV_read_stencil 1 +#endif /* GL_NV_read_stencil */ + +#ifndef GL_NV_representative_fragment_test +#define GL_NV_representative_fragment_test 1 +#define GL_REPRESENTATIVE_FRAGMENT_TEST_NV 0x937F +#endif /* GL_NV_representative_fragment_test */ + +#ifndef GL_NV_sRGB_formats +#define GL_NV_sRGB_formats 1 +#define GL_SLUMINANCE_NV 0x8C46 +#define GL_SLUMINANCE_ALPHA_NV 0x8C44 +#define GL_SRGB8_NV 0x8C41 +#define GL_SLUMINANCE8_NV 0x8C47 +#define GL_SLUMINANCE8_ALPHA8_NV 0x8C45 +#define GL_COMPRESSED_SRGB_S3TC_DXT1_NV 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV 0x8C4F +#define GL_ETC1_SRGB8_NV 0x88EE +#endif /* GL_NV_sRGB_formats */ + +#ifndef GL_NV_sample_locations +#define GL_NV_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_NV 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_NV 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_NV 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_NV 0x9340 +#define GL_SAMPLE_LOCATION_NV 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_NV 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_NV 0x9343 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLRESOLVEDEPTHVALUESNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferSampleLocationsfvNV (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glNamedFramebufferSampleLocationsfvNV (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glResolveDepthValuesNV (void); +#endif +#endif /* GL_NV_sample_locations */ + +#ifndef GL_NV_sample_mask_override_coverage +#define GL_NV_sample_mask_override_coverage 1 +#endif /* GL_NV_sample_mask_override_coverage */ + +#ifndef GL_NV_scissor_exclusive +#define GL_NV_scissor_exclusive 1 +#define GL_SCISSOR_TEST_EXCLUSIVE_NV 0x9555 +#define GL_SCISSOR_BOX_EXCLUSIVE_NV 0x9556 +typedef void (GL_APIENTRYP PFNGLSCISSOREXCLUSIVENVPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSOREXCLUSIVEARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glScissorExclusiveNV (GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorExclusiveArrayvNV (GLuint first, GLsizei count, const GLint *v); +#endif +#endif /* GL_NV_scissor_exclusive */ + +#ifndef GL_NV_shader_atomic_fp16_vector +#define GL_NV_shader_atomic_fp16_vector 1 +#endif /* GL_NV_shader_atomic_fp16_vector */ + +#ifndef GL_NV_shader_noperspective_interpolation +#define GL_NV_shader_noperspective_interpolation 1 +#endif /* GL_NV_shader_noperspective_interpolation */ + +#ifndef GL_NV_shader_subgroup_partitioned +#define GL_NV_shader_subgroup_partitioned 1 +#define GL_SUBGROUP_FEATURE_PARTITIONED_BIT_NV 0x00000100 +#endif /* GL_NV_shader_subgroup_partitioned */ + +#ifndef GL_NV_shader_texture_footprint +#define GL_NV_shader_texture_footprint 1 +#endif /* GL_NV_shader_texture_footprint */ + +#ifndef GL_NV_shading_rate_image +#define GL_NV_shading_rate_image 1 +#define GL_SHADING_RATE_IMAGE_NV 0x9563 +#define GL_SHADING_RATE_NO_INVOCATIONS_NV 0x9564 +#define GL_SHADING_RATE_1_INVOCATION_PER_PIXEL_NV 0x9565 +#define GL_SHADING_RATE_1_INVOCATION_PER_1X2_PIXELS_NV 0x9566 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X1_PIXELS_NV 0x9567 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X2_PIXELS_NV 0x9568 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X4_PIXELS_NV 0x9569 +#define GL_SHADING_RATE_1_INVOCATION_PER_4X2_PIXELS_NV 0x956A +#define GL_SHADING_RATE_1_INVOCATION_PER_4X4_PIXELS_NV 0x956B +#define GL_SHADING_RATE_2_INVOCATIONS_PER_PIXEL_NV 0x956C +#define GL_SHADING_RATE_4_INVOCATIONS_PER_PIXEL_NV 0x956D +#define GL_SHADING_RATE_8_INVOCATIONS_PER_PIXEL_NV 0x956E +#define GL_SHADING_RATE_16_INVOCATIONS_PER_PIXEL_NV 0x956F +#define GL_SHADING_RATE_IMAGE_BINDING_NV 0x955B +#define GL_SHADING_RATE_IMAGE_TEXEL_WIDTH_NV 0x955C +#define GL_SHADING_RATE_IMAGE_TEXEL_HEIGHT_NV 0x955D +#define GL_SHADING_RATE_IMAGE_PALETTE_SIZE_NV 0x955E +#define GL_MAX_COARSE_FRAGMENT_SAMPLES_NV 0x955F +#define GL_SHADING_RATE_SAMPLE_ORDER_DEFAULT_NV 0x95AE +#define GL_SHADING_RATE_SAMPLE_ORDER_PIXEL_MAJOR_NV 0x95AF +#define GL_SHADING_RATE_SAMPLE_ORDER_SAMPLE_MAJOR_NV 0x95B0 +typedef void (GL_APIENTRYP PFNGLBINDSHADINGRATEIMAGENVPROC) (GLuint texture); +typedef void (GL_APIENTRYP PFNGLGETSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint entry, GLenum *rate); +typedef void (GL_APIENTRYP PFNGLGETSHADINGRATESAMPLELOCATIONIVNVPROC) (GLenum rate, GLuint samples, GLuint index, GLint *location); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEIMAGEBARRIERNVPROC) (GLboolean synchronize); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +typedef void (GL_APIENTRYP PFNGLSHADINGRATESAMPLEORDERNVPROC) (GLenum order); +typedef void (GL_APIENTRYP PFNGLSHADINGRATESAMPLEORDERCUSTOMNVPROC) (GLenum rate, GLuint samples, const GLint *locations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindShadingRateImageNV (GLuint texture); +GL_APICALL void GL_APIENTRY glGetShadingRateImagePaletteNV (GLuint viewport, GLuint entry, GLenum *rate); +GL_APICALL void GL_APIENTRY glGetShadingRateSampleLocationivNV (GLenum rate, GLuint samples, GLuint index, GLint *location); +GL_APICALL void GL_APIENTRY glShadingRateImageBarrierNV (GLboolean synchronize); +GL_APICALL void GL_APIENTRY glShadingRateImagePaletteNV (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +GL_APICALL void GL_APIENTRY glShadingRateSampleOrderNV (GLenum order); +GL_APICALL void GL_APIENTRY glShadingRateSampleOrderCustomNV (GLenum rate, GLuint samples, const GLint *locations); +#endif +#endif /* GL_NV_shading_rate_image */ + +#ifndef GL_NV_shadow_samplers_array +#define GL_NV_shadow_samplers_array 1 +#define GL_SAMPLER_2D_ARRAY_SHADOW_NV 0x8DC4 +#endif /* GL_NV_shadow_samplers_array */ + +#ifndef GL_NV_shadow_samplers_cube +#define GL_NV_shadow_samplers_cube 1 +#define GL_SAMPLER_CUBE_SHADOW_NV 0x8DC5 +#endif /* GL_NV_shadow_samplers_cube */ + +#ifndef GL_NV_stereo_view_rendering +#define GL_NV_stereo_view_rendering 1 +#endif /* GL_NV_stereo_view_rendering */ + +#ifndef GL_NV_texture_border_clamp +#define GL_NV_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_NV 0x1004 +#define GL_CLAMP_TO_BORDER_NV 0x812D +#endif /* GL_NV_texture_border_clamp */ + +#ifndef GL_NV_texture_compression_s3tc_update +#define GL_NV_texture_compression_s3tc_update 1 +#endif /* GL_NV_texture_compression_s3tc_update */ + +#ifndef GL_NV_texture_npot_2D_mipmap +#define GL_NV_texture_npot_2D_mipmap 1 +#endif /* GL_NV_texture_npot_2D_mipmap */ + +#ifndef GL_NV_timeline_semaphore +#define GL_NV_timeline_semaphore 1 +#define GL_TIMELINE_SEMAPHORE_VALUE_NV 0x9595 +#define GL_SEMAPHORE_TYPE_NV 0x95B3 +#define GL_SEMAPHORE_TYPE_BINARY_NV 0x95B4 +#define GL_SEMAPHORE_TYPE_TIMELINE_NV 0x95B5 +#define GL_MAX_TIMELINE_SEMAPHORE_VALUE_DIFFERENCE_NV 0x95B6 +typedef void (GL_APIENTRYP PFNGLCREATESEMAPHORESNVPROC) (GLsizei n, GLuint *semaphores); +typedef void (GL_APIENTRYP PFNGLSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCreateSemaphoresNV (GLsizei n, GLuint *semaphores); +GL_APICALL void GL_APIENTRY glSemaphoreParameterivNV (GLuint semaphore, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glGetSemaphoreParameterivNV (GLuint semaphore, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_timeline_semaphore */ + +#ifndef GL_NV_viewport_array +#define GL_NV_viewport_array 1 +#define GL_MAX_VIEWPORTS_NV 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS_NV 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE_NV 0x825D +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX_NV 0x825F +typedef void (GL_APIENTRYP PFNGLVIEWPORTARRAYVNVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFVNVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLSCISSORARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDNVPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDVNVPROC) (GLuint index, const GLint *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEARRAYFVNVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEINDEXEDFNVPROC) (GLuint index, GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLGETFLOATI_VNVPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (GL_APIENTRYP PFNGLENABLEINVPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEINVPROC) (GLenum target, GLuint index); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDINVPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportArrayvNV (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glViewportIndexedfNV (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GL_APICALL void GL_APIENTRY glViewportIndexedfvNV (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glScissorArrayvNV (GLuint first, GLsizei count, const GLint *v); +GL_APICALL void GL_APIENTRY glScissorIndexedNV (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorIndexedvNV (GLuint index, const GLint *v); +GL_APICALL void GL_APIENTRY glDepthRangeArrayfvNV (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glDepthRangeIndexedfNV (GLuint index, GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glGetFloati_vNV (GLenum target, GLuint index, GLfloat *data); +GL_APICALL void GL_APIENTRY glEnableiNV (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiNV (GLenum target, GLuint index); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediNV (GLenum target, GLuint index); +#endif +#endif /* GL_NV_viewport_array */ + +#ifndef GL_NV_viewport_array2 +#define GL_NV_viewport_array2 1 +#endif /* GL_NV_viewport_array2 */ + +#ifndef GL_NV_viewport_swizzle +#define GL_NV_viewport_swizzle 1 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_X_NV 0x9350 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_X_NV 0x9351 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Y_NV 0x9352 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Y_NV 0x9353 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Z_NV 0x9354 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Z_NV 0x9355 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_W_NV 0x9356 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_W_NV 0x9357 +#define GL_VIEWPORT_SWIZZLE_X_NV 0x9358 +#define GL_VIEWPORT_SWIZZLE_Y_NV 0x9359 +#define GL_VIEWPORT_SWIZZLE_Z_NV 0x935A +#define GL_VIEWPORT_SWIZZLE_W_NV 0x935B +typedef void (GL_APIENTRYP PFNGLVIEWPORTSWIZZLENVPROC) (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportSwizzleNV (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#endif +#endif /* GL_NV_viewport_swizzle */ + +#ifndef GL_OVR_multiview +#define GL_OVR_multiview 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR 0x9630 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR 0x9632 +#define GL_MAX_VIEWS_OVR 0x9631 +#define GL_FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR 0x9633 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview */ + +#ifndef GL_OVR_multiview2 +#define GL_OVR_multiview2 1 +#endif /* GL_OVR_multiview2 */ + +#ifndef GL_OVR_multiview_multisampled_render_to_texture +#define GL_OVR_multiview_multisampled_render_to_texture 1 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTISAMPLEMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLsizei samples, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureMultisampleMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLsizei samples, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview_multisampled_render_to_texture */ + +#ifndef GL_QCOM_YUV_texture_gather +#define GL_QCOM_YUV_texture_gather 1 +#endif /* GL_QCOM_YUV_texture_gather */ + +#ifndef GL_QCOM_alpha_test +#define GL_QCOM_alpha_test 1 +#define GL_ALPHA_TEST_QCOM 0x0BC0 +#define GL_ALPHA_TEST_FUNC_QCOM 0x0BC1 +#define GL_ALPHA_TEST_REF_QCOM 0x0BC2 +typedef void (GL_APIENTRYP PFNGLALPHAFUNCQCOMPROC) (GLenum func, GLclampf ref); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glAlphaFuncQCOM (GLenum func, GLclampf ref); +#endif +#endif /* GL_QCOM_alpha_test */ + +#ifndef GL_QCOM_binning_control +#define GL_QCOM_binning_control 1 +#define GL_BINNING_CONTROL_HINT_QCOM 0x8FB0 +#define GL_CPU_OPTIMIZED_QCOM 0x8FB1 +#define GL_GPU_OPTIMIZED_QCOM 0x8FB2 +#define GL_RENDER_DIRECT_TO_FRAMEBUFFER_QCOM 0x8FB3 +#endif /* GL_QCOM_binning_control */ + +#ifndef GL_QCOM_driver_control +#define GL_QCOM_driver_control 1 +typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSQCOMPROC) (GLint *num, GLsizei size, GLuint *driverControls); +typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSTRINGQCOMPROC) (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); +typedef void (GL_APIENTRYP PFNGLENABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +typedef void (GL_APIENTRYP PFNGLDISABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetDriverControlsQCOM (GLint *num, GLsizei size, GLuint *driverControls); +GL_APICALL void GL_APIENTRY glGetDriverControlStringQCOM (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); +GL_APICALL void GL_APIENTRY glEnableDriverControlQCOM (GLuint driverControl); +GL_APICALL void GL_APIENTRY glDisableDriverControlQCOM (GLuint driverControl); +#endif +#endif /* GL_QCOM_driver_control */ + +#ifndef GL_QCOM_extended_get +#define GL_QCOM_extended_get 1 +#define GL_TEXTURE_WIDTH_QCOM 0x8BD2 +#define GL_TEXTURE_HEIGHT_QCOM 0x8BD3 +#define GL_TEXTURE_DEPTH_QCOM 0x8BD4 +#define GL_TEXTURE_INTERNAL_FORMAT_QCOM 0x8BD5 +#define GL_TEXTURE_FORMAT_QCOM 0x8BD6 +#define GL_TEXTURE_TYPE_QCOM 0x8BD7 +#define GL_TEXTURE_IMAGE_VALID_QCOM 0x8BD8 +#define GL_TEXTURE_NUM_LEVELS_QCOM 0x8BD9 +#define GL_TEXTURE_TARGET_QCOM 0x8BDA +#define GL_TEXTURE_OBJECT_VALID_QCOM 0x8BDB +#define GL_STATE_RESTORE 0x8BDC +typedef void (GL_APIENTRYP PFNGLEXTGETTEXTURESQCOMPROC) (GLuint *textures, GLint maxTextures, GLint *numTextures); +typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERSQCOMPROC) (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETRENDERBUFFERSQCOMPROC) (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETFRAMEBUFFERSQCOMPROC) (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETTEXLEVELPARAMETERIVQCOMPROC) (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLEXTTEXOBJECTSTATEOVERRIDEIQCOMPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLEXTGETTEXSUBIMAGEQCOMPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void *texels); +typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERPOINTERVQCOMPROC) (GLenum target, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtGetTexturesQCOM (GLuint *textures, GLint maxTextures, GLint *numTextures); +GL_APICALL void GL_APIENTRY glExtGetBuffersQCOM (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); +GL_APICALL void GL_APIENTRY glExtGetRenderbuffersQCOM (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); +GL_APICALL void GL_APIENTRY glExtGetFramebuffersQCOM (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); +GL_APICALL void GL_APIENTRY glExtGetTexLevelParameterivQCOM (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glExtTexObjectStateOverrideiQCOM (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glExtGetTexSubImageQCOM (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void *texels); +GL_APICALL void GL_APIENTRY glExtGetBufferPointervQCOM (GLenum target, void **params); +#endif +#endif /* GL_QCOM_extended_get */ + +#ifndef GL_QCOM_extended_get2 +#define GL_QCOM_extended_get2 1 +typedef void (GL_APIENTRYP PFNGLEXTGETSHADERSQCOMPROC) (GLuint *shaders, GLint maxShaders, GLint *numShaders); +typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMSQCOMPROC) (GLuint *programs, GLint maxPrograms, GLint *numPrograms); +typedef GLboolean (GL_APIENTRYP PFNGLEXTISPROGRAMBINARYQCOMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMBINARYSOURCEQCOMPROC) (GLuint program, GLenum shadertype, GLchar *source, GLint *length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtGetShadersQCOM (GLuint *shaders, GLint maxShaders, GLint *numShaders); +GL_APICALL void GL_APIENTRY glExtGetProgramsQCOM (GLuint *programs, GLint maxPrograms, GLint *numPrograms); +GL_APICALL GLboolean GL_APIENTRY glExtIsProgramBinaryQCOM (GLuint program); +GL_APICALL void GL_APIENTRY glExtGetProgramBinarySourceQCOM (GLuint program, GLenum shadertype, GLchar *source, GLint *length); +#endif +#endif /* GL_QCOM_extended_get2 */ + +#ifndef GL_QCOM_frame_extrapolation +#define GL_QCOM_frame_extrapolation 1 +typedef void (GL_APIENTRYP PFNGLEXTRAPOLATETEX2DQCOMPROC) (GLuint src1, GLuint src2, GLuint output, GLfloat scaleFactor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtrapolateTex2DQCOM (GLuint src1, GLuint src2, GLuint output, GLfloat scaleFactor); +#endif +#endif /* GL_QCOM_frame_extrapolation */ + +#ifndef GL_QCOM_framebuffer_foveated +#define GL_QCOM_framebuffer_foveated 1 +#define GL_FOVEATION_ENABLE_BIT_QCOM 0x00000001 +#define GL_FOVEATION_SCALED_BIN_METHOD_BIT_QCOM 0x00000002 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFOVEATIONCONFIGQCOMPROC) (GLuint framebuffer, GLuint numLayers, GLuint focalPointsPerLayer, GLuint requestedFeatures, GLuint *providedFeatures); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFOVEATIONPARAMETERSQCOMPROC) (GLuint framebuffer, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFoveationConfigQCOM (GLuint framebuffer, GLuint numLayers, GLuint focalPointsPerLayer, GLuint requestedFeatures, GLuint *providedFeatures); +GL_APICALL void GL_APIENTRY glFramebufferFoveationParametersQCOM (GLuint framebuffer, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#endif +#endif /* GL_QCOM_framebuffer_foveated */ + +#ifndef GL_QCOM_motion_estimation +#define GL_QCOM_motion_estimation 1 +#define GL_MOTION_ESTIMATION_SEARCH_BLOCK_X_QCOM 0x8C90 +#define GL_MOTION_ESTIMATION_SEARCH_BLOCK_Y_QCOM 0x8C91 +typedef void (GL_APIENTRYP PFNGLTEXESTIMATEMOTIONQCOMPROC) (GLuint ref, GLuint target, GLuint output); +typedef void (GL_APIENTRYP PFNGLTEXESTIMATEMOTIONREGIONSQCOMPROC) (GLuint ref, GLuint target, GLuint output, GLuint mask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexEstimateMotionQCOM (GLuint ref, GLuint target, GLuint output); +GL_APICALL void GL_APIENTRY glTexEstimateMotionRegionsQCOM (GLuint ref, GLuint target, GLuint output, GLuint mask); +#endif +#endif /* GL_QCOM_motion_estimation */ + +#ifndef GL_QCOM_perfmon_global_mode +#define GL_QCOM_perfmon_global_mode 1 +#define GL_PERFMON_GLOBAL_MODE_QCOM 0x8FA0 +#endif /* GL_QCOM_perfmon_global_mode */ + +#ifndef GL_QCOM_render_shared_exponent +#define GL_QCOM_render_shared_exponent 1 +#endif /* GL_QCOM_render_shared_exponent */ + +#ifndef GL_QCOM_shader_framebuffer_fetch_noncoherent +#define GL_QCOM_shader_framebuffer_fetch_noncoherent 1 +#define GL_FRAMEBUFFER_FETCH_NONCOHERENT_QCOM 0x96A2 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIERQCOMPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFetchBarrierQCOM (void); +#endif +#endif /* GL_QCOM_shader_framebuffer_fetch_noncoherent */ + +#ifndef GL_QCOM_shader_framebuffer_fetch_rate +#define GL_QCOM_shader_framebuffer_fetch_rate 1 +#endif /* GL_QCOM_shader_framebuffer_fetch_rate */ + +#ifndef GL_QCOM_shading_rate +#define GL_QCOM_shading_rate 1 +#define GL_SHADING_RATE_QCOM 0x96A4 +#define GL_SHADING_RATE_PRESERVE_ASPECT_RATIO_QCOM 0x96A5 +#define GL_SHADING_RATE_1X1_PIXELS_QCOM 0x96A6 +#define GL_SHADING_RATE_1X2_PIXELS_QCOM 0x96A7 +#define GL_SHADING_RATE_2X1_PIXELS_QCOM 0x96A8 +#define GL_SHADING_RATE_2X2_PIXELS_QCOM 0x96A9 +#define GL_SHADING_RATE_4X2_PIXELS_QCOM 0x96AC +#define GL_SHADING_RATE_4X4_PIXELS_QCOM 0x96AE +typedef void (GL_APIENTRYP PFNGLSHADINGRATEQCOMPROC) (GLenum rate); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glShadingRateQCOM (GLenum rate); +#endif +#endif /* GL_QCOM_shading_rate */ + +#ifndef GL_QCOM_texture_foveated +#define GL_QCOM_texture_foveated 1 +#define GL_TEXTURE_FOVEATED_FEATURE_BITS_QCOM 0x8BFB +#define GL_TEXTURE_FOVEATED_MIN_PIXEL_DENSITY_QCOM 0x8BFC +#define GL_TEXTURE_FOVEATED_FEATURE_QUERY_QCOM 0x8BFD +#define GL_TEXTURE_FOVEATED_NUM_FOCAL_POINTS_QUERY_QCOM 0x8BFE +#define GL_FRAMEBUFFER_INCOMPLETE_FOVEATION_QCOM 0x8BFF +typedef void (GL_APIENTRYP PFNGLTEXTUREFOVEATIONPARAMETERSQCOMPROC) (GLuint texture, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureFoveationParametersQCOM (GLuint texture, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#endif +#endif /* GL_QCOM_texture_foveated */ + +#ifndef GL_QCOM_texture_foveated2 +#define GL_QCOM_texture_foveated2 1 +#define GL_TEXTURE_FOVEATED_CUTOFF_DENSITY_QCOM 0x96A0 +#endif /* GL_QCOM_texture_foveated2 */ + +#ifndef GL_QCOM_texture_foveated_subsampled_layout +#define GL_QCOM_texture_foveated_subsampled_layout 1 +#define GL_FOVEATION_SUBSAMPLED_LAYOUT_METHOD_BIT_QCOM 0x00000004 +#define GL_MAX_SHADER_SUBSAMPLED_IMAGE_UNITS_QCOM 0x8FA1 +#endif /* GL_QCOM_texture_foveated_subsampled_layout */ + +#ifndef GL_QCOM_tiled_rendering +#define GL_QCOM_tiled_rendering 1 +#define GL_COLOR_BUFFER_BIT0_QCOM 0x00000001 +#define GL_COLOR_BUFFER_BIT1_QCOM 0x00000002 +#define GL_COLOR_BUFFER_BIT2_QCOM 0x00000004 +#define GL_COLOR_BUFFER_BIT3_QCOM 0x00000008 +#define GL_COLOR_BUFFER_BIT4_QCOM 0x00000010 +#define GL_COLOR_BUFFER_BIT5_QCOM 0x00000020 +#define GL_COLOR_BUFFER_BIT6_QCOM 0x00000040 +#define GL_COLOR_BUFFER_BIT7_QCOM 0x00000080 +#define GL_DEPTH_BUFFER_BIT0_QCOM 0x00000100 +#define GL_DEPTH_BUFFER_BIT1_QCOM 0x00000200 +#define GL_DEPTH_BUFFER_BIT2_QCOM 0x00000400 +#define GL_DEPTH_BUFFER_BIT3_QCOM 0x00000800 +#define GL_DEPTH_BUFFER_BIT4_QCOM 0x00001000 +#define GL_DEPTH_BUFFER_BIT5_QCOM 0x00002000 +#define GL_DEPTH_BUFFER_BIT6_QCOM 0x00004000 +#define GL_DEPTH_BUFFER_BIT7_QCOM 0x00008000 +#define GL_STENCIL_BUFFER_BIT0_QCOM 0x00010000 +#define GL_STENCIL_BUFFER_BIT1_QCOM 0x00020000 +#define GL_STENCIL_BUFFER_BIT2_QCOM 0x00040000 +#define GL_STENCIL_BUFFER_BIT3_QCOM 0x00080000 +#define GL_STENCIL_BUFFER_BIT4_QCOM 0x00100000 +#define GL_STENCIL_BUFFER_BIT5_QCOM 0x00200000 +#define GL_STENCIL_BUFFER_BIT6_QCOM 0x00400000 +#define GL_STENCIL_BUFFER_BIT7_QCOM 0x00800000 +#define GL_MULTISAMPLE_BUFFER_BIT0_QCOM 0x01000000 +#define GL_MULTISAMPLE_BUFFER_BIT1_QCOM 0x02000000 +#define GL_MULTISAMPLE_BUFFER_BIT2_QCOM 0x04000000 +#define GL_MULTISAMPLE_BUFFER_BIT3_QCOM 0x08000000 +#define GL_MULTISAMPLE_BUFFER_BIT4_QCOM 0x10000000 +#define GL_MULTISAMPLE_BUFFER_BIT5_QCOM 0x20000000 +#define GL_MULTISAMPLE_BUFFER_BIT6_QCOM 0x40000000 +#define GL_MULTISAMPLE_BUFFER_BIT7_QCOM 0x80000000 +typedef void (GL_APIENTRYP PFNGLSTARTTILINGQCOMPROC) (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); +typedef void (GL_APIENTRYP PFNGLENDTILINGQCOMPROC) (GLbitfield preserveMask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glStartTilingQCOM (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); +GL_APICALL void GL_APIENTRY glEndTilingQCOM (GLbitfield preserveMask); +#endif +#endif /* GL_QCOM_tiled_rendering */ + +#ifndef GL_QCOM_writeonly_rendering +#define GL_QCOM_writeonly_rendering 1 +#define GL_WRITEONLY_RENDERING_QCOM 0x8823 +#endif /* GL_QCOM_writeonly_rendering */ + +#ifndef GL_VIV_shader_binary +#define GL_VIV_shader_binary 1 +#define GL_SHADER_BINARY_VIV 0x8FC4 +#endif /* GL_VIV_shader_binary */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h new file mode 100644 index 0000000..426796e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_gl2platform.h @@ -0,0 +1,27 @@ +#ifndef __gl2platform_h_ +#define __gl2platform_h_ + +/* +** Copyright 2017-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +*/ + +/* Platform-specific types and definitions for OpenGL ES 2.X gl2.h + * + * Adopters may modify khrplatform.h and this file to suit their platform. + * Please contribute modifications back to Khronos as pull requests on the + * public github repository: + * https://github.com/KhronosGroup/OpenGL-Registry + */ + +/*#include */ + +#ifndef GL_APICALL +#define GL_APICALL KHRONOS_APICALL +#endif + +#ifndef GL_APIENTRY +#define GL_APIENTRY KHRONOS_APIENTRY +#endif + +#endif /* __gl2platform_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h new file mode 100644 index 0000000..0164644 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_opengles2_khrplatform.h @@ -0,0 +1,311 @@ +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_pen.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_pen.h new file mode 100644 index 0000000..5182eeb --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_pen.h @@ -0,0 +1,127 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryPen + * + * SDL pen event handling. + * + * SDL provides an API for pressure-sensitive pen (stylus and/or eraser) + * handling, e.g., for input and drawing tablets or suitably equipped mobile / + * tablet devices. + * + * To get started with pens, simply handle SDL_EVENT_PEN_* events. When a pen + * starts providing input, SDL will assign it a unique SDL_PenID, which will + * remain for the life of the process, as long as the pen stays connected. + * + * Pens may provide more than simple touch input; they might have other axes, + * such as pressure, tilt, rotation, etc. + */ + +#ifndef SDL_pen_h_ +#define SDL_pen_h_ + +#include +#include +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SDL pen instance IDs. + * + * Zero is used to signify an invalid/null device. + * + * These show up in pen events when SDL sees input from them. They remain + * consistent as long as SDL can recognize a tool to be the same pen; but if a + * pen physically leaves the area and returns, it might get a new ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_PenID; + +/** + * The SDL_MouseID for mouse events simulated with pen input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PEN_MOUSEID ((SDL_MouseID)-2) + +/** + * The SDL_TouchID for touch events simulated with pen input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PEN_TOUCHID ((SDL_TouchID)-2) + + +/** + * Pen input flags, as reported by various pen events' `pen_state` field. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_PenInputFlags; + +#define SDL_PEN_INPUT_DOWN (1u << 0) /**< pen is pressed down */ +#define SDL_PEN_INPUT_BUTTON_1 (1u << 1) /**< button 1 is pressed */ +#define SDL_PEN_INPUT_BUTTON_2 (1u << 2) /**< button 2 is pressed */ +#define SDL_PEN_INPUT_BUTTON_3 (1u << 3) /**< button 3 is pressed */ +#define SDL_PEN_INPUT_BUTTON_4 (1u << 4) /**< button 4 is pressed */ +#define SDL_PEN_INPUT_BUTTON_5 (1u << 5) /**< button 5 is pressed */ +#define SDL_PEN_INPUT_ERASER_TIP (1u << 30) /**< eraser tip is used */ + +/** + * Pen axis indices. + * + * These are the valid values for the `axis` field in SDL_PenAxisEvent. All + * axes are either normalised to 0..1 or report a (positive or negative) angle + * in degrees, with 0.0 representing the centre. Not all pens/backends support + * all axes: unsupported axes are always zero. + * + * To convert angles for tilt and rotation into vector representation, use + * SDL_sinf on the XTILT, YTILT, or ROTATION component, for example: + * + * `SDL_sinf(xtilt * SDL_PI_F / 180.0)`. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PenAxis +{ + SDL_PEN_AXIS_PRESSURE, /**< Pen pressure. Unidirectional: 0 to 1.0 */ + SDL_PEN_AXIS_XTILT, /**< Pen horizontal tilt angle. Bidirectional: -90.0 to 90.0 (left-to-right). */ + SDL_PEN_AXIS_YTILT, /**< Pen vertical tilt angle. Bidirectional: -90.0 to 90.0 (top-to-down). */ + SDL_PEN_AXIS_DISTANCE, /**< Pen distance to drawing surface. Unidirectional: 0.0 to 1.0 */ + SDL_PEN_AXIS_ROTATION, /**< Pen barrel rotation. Bidirectional: -180 to 179.9 (clockwise, 0 is facing up, -180.0 is facing down). */ + SDL_PEN_AXIS_SLIDER, /**< Pen finger wheel or slider (e.g., Airbrush Pen). Unidirectional: 0 to 1.0 */ + SDL_PEN_AXIS_TANGENTIAL_PRESSURE, /**< Pressure from squeezing the pen ("barrel pressure"). */ + SDL_PEN_AXIS_COUNT /**< Total known pen axis types in this version of SDL. This number may grow in future releases! */ +} SDL_PenAxis; + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif + +#endif /* SDL_pen_h_ */ + diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_pixels.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_pixels.h new file mode 100644 index 0000000..39596c1 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_pixels.h @@ -0,0 +1,1441 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryPixels + * + * SDL offers facilities for pixel management. + * + * Largely these facilities deal with pixel _format_: what does this set of + * bits represent? + * + * If you mostly want to think of a pixel as some combination of red, green, + * blue, and maybe alpha intensities, this is all pretty straightforward, and + * in many cases, is enough information to build a perfectly fine game. + * + * However, the actual definition of a pixel is more complex than that: + * + * Pixels are a representation of a color in a particular color space. + * + * The first characteristic of a color space is the color type. SDL + * understands two different color types, RGB and YCbCr, or in SDL also + * referred to as YUV. + * + * RGB colors consist of red, green, and blue channels of color that are added + * together to represent the colors we see on the screen. + * + * https://en.wikipedia.org/wiki/RGB_color_model + * + * YCbCr colors represent colors as a Y luma brightness component and red and + * blue chroma color offsets. This color representation takes advantage of the + * fact that the human eye is more sensitive to brightness than the color in + * an image. The Cb and Cr components are often compressed and have lower + * resolution than the luma component. + * + * https://en.wikipedia.org/wiki/YCbCr + * + * When the color information in YCbCr is compressed, the Y pixels are left at + * full resolution and each Cr and Cb pixel represents an average of the color + * information in a block of Y pixels. The chroma location determines where in + * that block of pixels the color information is coming from. + * + * The color range defines how much of the pixel to use when converting a + * pixel into a color on the display. When the full color range is used, the + * entire numeric range of the pixel bits is significant. When narrow color + * range is used, for historical reasons, the pixel uses only a portion of the + * numeric range to represent colors. + * + * The color primaries and white point are a definition of the colors in the + * color space relative to the standard XYZ color space. + * + * https://en.wikipedia.org/wiki/CIE_1931_color_space + * + * The transfer characteristic, or opto-electrical transfer function (OETF), + * is the way a color is converted from mathematically linear space into a + * non-linear output signals. + * + * https://en.wikipedia.org/wiki/Rec._709#Transfer_characteristics + * + * The matrix coefficients are used to convert between YCbCr and RGB colors. + */ + +#ifndef SDL_pixels_h_ +#define SDL_pixels_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A fully opaque 8-bit alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_TRANSPARENT + */ +#define SDL_ALPHA_OPAQUE 255 + +/** + * A fully opaque floating point alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_TRANSPARENT_FLOAT + */ +#define SDL_ALPHA_OPAQUE_FLOAT 1.0f + +/** + * A fully transparent 8-bit alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_OPAQUE + */ +#define SDL_ALPHA_TRANSPARENT 0 + +/** + * A fully transparent floating point alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_OPAQUE_FLOAT + */ +#define SDL_ALPHA_TRANSPARENT_FLOAT 0.0f + +/** + * Pixel type. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PixelType +{ + SDL_PIXELTYPE_UNKNOWN, + SDL_PIXELTYPE_INDEX1, + SDL_PIXELTYPE_INDEX4, + SDL_PIXELTYPE_INDEX8, + SDL_PIXELTYPE_PACKED8, + SDL_PIXELTYPE_PACKED16, + SDL_PIXELTYPE_PACKED32, + SDL_PIXELTYPE_ARRAYU8, + SDL_PIXELTYPE_ARRAYU16, + SDL_PIXELTYPE_ARRAYU32, + SDL_PIXELTYPE_ARRAYF16, + SDL_PIXELTYPE_ARRAYF32, + /* appended at the end for compatibility with sdl2-compat: */ + SDL_PIXELTYPE_INDEX2 +} SDL_PixelType; + +/** + * Bitmap pixel order, high bit -> low bit. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_BitmapOrder +{ + SDL_BITMAPORDER_NONE, + SDL_BITMAPORDER_4321, + SDL_BITMAPORDER_1234 +} SDL_BitmapOrder; + +/** + * Packed component order, high bit -> low bit. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PackedOrder +{ + SDL_PACKEDORDER_NONE, + SDL_PACKEDORDER_XRGB, + SDL_PACKEDORDER_RGBX, + SDL_PACKEDORDER_ARGB, + SDL_PACKEDORDER_RGBA, + SDL_PACKEDORDER_XBGR, + SDL_PACKEDORDER_BGRX, + SDL_PACKEDORDER_ABGR, + SDL_PACKEDORDER_BGRA +} SDL_PackedOrder; + +/** + * Array component order, low byte -> high byte. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ArrayOrder +{ + SDL_ARRAYORDER_NONE, + SDL_ARRAYORDER_RGB, + SDL_ARRAYORDER_RGBA, + SDL_ARRAYORDER_ARGB, + SDL_ARRAYORDER_BGR, + SDL_ARRAYORDER_BGRA, + SDL_ARRAYORDER_ABGR +} SDL_ArrayOrder; + +/** + * Packed component layout. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PackedLayout +{ + SDL_PACKEDLAYOUT_NONE, + SDL_PACKEDLAYOUT_332, + SDL_PACKEDLAYOUT_4444, + SDL_PACKEDLAYOUT_1555, + SDL_PACKEDLAYOUT_5551, + SDL_PACKEDLAYOUT_565, + SDL_PACKEDLAYOUT_8888, + SDL_PACKEDLAYOUT_2101010, + SDL_PACKEDLAYOUT_1010102 +} SDL_PackedLayout; + +/** + * A macro for defining custom FourCC pixel formats. + * + * For example, defining SDL_PIXELFORMAT_YV12 looks like this: + * + * ```c + * SDL_DEFINE_PIXELFOURCC('Y', 'V', '1', '2') + * ``` + * + * \param A the first character of the FourCC code. + * \param B the second character of the FourCC code. + * \param C the third character of the FourCC code. + * \param D the fourth character of the FourCC code. + * \returns a format value in the style of SDL_PixelFormat. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_PIXELFOURCC(A, B, C, D) SDL_FOURCC(A, B, C, D) + +/** + * A macro for defining custom non-FourCC pixel formats. + * + * For example, defining SDL_PIXELFORMAT_RGBA8888 looks like this: + * + * ```c + * SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_8888, 32, 4) + * ``` + * + * \param type the type of the new format, probably a SDL_PixelType value. + * \param order the order of the new format, probably a SDL_BitmapOrder, + * SDL_PackedOrder, or SDL_ArrayOrder value. + * \param layout the layout of the new format, probably an SDL_PackedLayout + * value or zero. + * \param bits the number of bits per pixel of the new format. + * \param bytes the number of bytes per pixel of the new format. + * \returns a format value in the style of SDL_PixelFormat. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_PIXELFORMAT(type, order, layout, bits, bytes) \ + ((1 << 28) | ((type) << 24) | ((order) << 20) | ((layout) << 16) | \ + ((bits) << 8) | ((bytes) << 0)) + +/** + * A macro to retrieve the flags of an SDL_PixelFormat. + * + * This macro is generally not needed directly by an app, which should use + * specific tests, like SDL_ISPIXELFORMAT_FOURCC, instead. + * + * \param format an SDL_PixelFormat to check. + * \returns the flags of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELFLAG(format) (((format) >> 28) & 0x0F) + +/** + * A macro to retrieve the type of an SDL_PixelFormat. + * + * This is usually a value from the SDL_PixelType enumeration. + * + * \param format an SDL_PixelFormat to check. + * \returns the type of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELTYPE(format) (((format) >> 24) & 0x0F) + +/** + * A macro to retrieve the order of an SDL_PixelFormat. + * + * This is usually a value from the SDL_BitmapOrder, SDL_PackedOrder, or + * SDL_ArrayOrder enumerations, depending on the format type. + * + * \param format an SDL_PixelFormat to check. + * \returns the order of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELORDER(format) (((format) >> 20) & 0x0F) + +/** + * A macro to retrieve the layout of an SDL_PixelFormat. + * + * This is usually a value from the SDL_PackedLayout enumeration, or zero if a + * layout doesn't make sense for the format type. + * + * \param format an SDL_PixelFormat to check. + * \returns the layout of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELLAYOUT(format) (((format) >> 16) & 0x0F) + +/** + * A macro to determine an SDL_PixelFormat's bits per pixel. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * FourCC formats will report zero here, as it rarely makes sense to measure + * them per-pixel. + * + * \param format an SDL_PixelFormat to check. + * \returns the bits-per-pixel of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BYTESPERPIXEL + */ +#define SDL_BITSPERPIXEL(format) \ + (SDL_ISPIXELFORMAT_FOURCC(format) ? 0 : (((format) >> 8) & 0xFF)) + +/** + * A macro to determine an SDL_PixelFormat's bytes per pixel. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * FourCC formats do their best here, but many of them don't have a meaningful + * measurement of bytes per pixel. + * + * \param format an SDL_PixelFormat to check. + * \returns the bytes-per-pixel of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BITSPERPIXEL + */ +#define SDL_BYTESPERPIXEL(format) \ + (SDL_ISPIXELFORMAT_FOURCC(format) ? \ + ((((format) == SDL_PIXELFORMAT_YUY2) || \ + ((format) == SDL_PIXELFORMAT_UYVY) || \ + ((format) == SDL_PIXELFORMAT_YVYU) || \ + ((format) == SDL_PIXELFORMAT_P010)) ? 2 : 1) : (((format) >> 0) & 0xFF)) + + +/** + * A macro to determine if an SDL_PixelFormat is an indexed format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is indexed, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_INDEXED(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX1) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX2) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX4) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX8))) + +/** + * A macro to determine if an SDL_PixelFormat is a packed format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is packed, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_PACKED(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED8) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED32))) + +/** + * A macro to determine if an SDL_PixelFormat is an array format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is an array, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_ARRAY(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU8) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU32) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF32))) + +/** + * A macro to determine if an SDL_PixelFormat is a 10-bit format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is 10-bit, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_10BIT(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED32) && \ + (SDL_PIXELLAYOUT(format) == SDL_PACKEDLAYOUT_2101010))) + +/** + * A macro to determine if an SDL_PixelFormat is a floating point format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is 10-bit, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_FLOAT(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF32))) + +/** + * A macro to determine if an SDL_PixelFormat has an alpha channel. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format has alpha, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_ALPHA(format) \ + ((SDL_ISPIXELFORMAT_PACKED(format) && \ + ((SDL_PIXELORDER(format) == SDL_PACKEDORDER_ARGB) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_RGBA) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_ABGR) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_BGRA))) || \ + (SDL_ISPIXELFORMAT_ARRAY(format) && \ + ((SDL_PIXELORDER(format) == SDL_ARRAYORDER_ARGB) || \ + (SDL_PIXELORDER(format) == SDL_ARRAYORDER_RGBA) || \ + (SDL_PIXELORDER(format) == SDL_ARRAYORDER_ABGR) || \ + (SDL_PIXELORDER(format) == SDL_ARRAYORDER_BGRA)))) + + +/** + * A macro to determine if an SDL_PixelFormat is a "FourCC" format. + * + * This covers custom and other unusual formats. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format has alpha, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_FOURCC(format) /* The flag is set to 1 because 0x1? is not in the printable ASCII range */ \ + ((format) && (SDL_PIXELFLAG(format) != 1)) + +/* Note: If you modify this enum, update SDL_GetPixelFormatName() */ + +/** + * Pixel format. + * + * SDL's pixel formats have the following naming convention: + * + * - Names with a list of components and a single bit count, such as RGB24 and + * ABGR32, define a platform-independent encoding into bytes in the order + * specified. For example, in RGB24 data, each pixel is encoded in 3 bytes + * (red, green, blue) in that order, and in ABGR32 data, each pixel is + * encoded in 4 bytes (alpha, blue, green, red) in that order. Use these + * names if the property of a format that is important to you is the order + * of the bytes in memory or on disk. + * - Names with a bit count per component, such as ARGB8888 and XRGB1555, are + * "packed" into an appropriately-sized integer in the platform's native + * endianness. For example, ARGB8888 is a sequence of 32-bit integers; in + * each integer, the most significant bits are alpha, and the least + * significant bits are blue. On a little-endian CPU such as x86, the least + * significant bits of each integer are arranged first in memory, but on a + * big-endian CPU such as s390x, the most significant bits are arranged + * first. Use these names if the property of a format that is important to + * you is the meaning of each bit position within a native-endianness + * integer. + * - In indexed formats such as INDEX4LSB, each pixel is represented by + * encoding an index into the palette into the indicated number of bits, + * with multiple pixels packed into each byte if appropriate. In LSB + * formats, the first (leftmost) pixel is stored in the least-significant + * bits of the byte; in MSB formats, it's stored in the most-significant + * bits. INDEX8 does not need LSB/MSB variants, because each pixel exactly + * fills one byte. + * + * The 32-bit byte-array encodings such as RGBA32 are aliases for the + * appropriate 8888 encoding for the current platform. For example, RGBA32 is + * an alias for ABGR8888 on little-endian CPUs like x86, or an alias for + * RGBA8888 on big-endian CPUs. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PixelFormat +{ + SDL_PIXELFORMAT_UNKNOWN = 0, + SDL_PIXELFORMAT_INDEX1LSB = 0x11100100u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX1, SDL_BITMAPORDER_4321, 0, 1, 0), */ + SDL_PIXELFORMAT_INDEX1MSB = 0x11200100u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX1, SDL_BITMAPORDER_1234, 0, 1, 0), */ + SDL_PIXELFORMAT_INDEX2LSB = 0x1c100200u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX2, SDL_BITMAPORDER_4321, 0, 2, 0), */ + SDL_PIXELFORMAT_INDEX2MSB = 0x1c200200u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX2, SDL_BITMAPORDER_1234, 0, 2, 0), */ + SDL_PIXELFORMAT_INDEX4LSB = 0x12100400u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX4, SDL_BITMAPORDER_4321, 0, 4, 0), */ + SDL_PIXELFORMAT_INDEX4MSB = 0x12200400u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX4, SDL_BITMAPORDER_1234, 0, 4, 0), */ + SDL_PIXELFORMAT_INDEX8 = 0x13000801u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX8, 0, 0, 8, 1), */ + SDL_PIXELFORMAT_RGB332 = 0x14110801u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED8, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_332, 8, 1), */ + SDL_PIXELFORMAT_XRGB4444 = 0x15120c02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_4444, 12, 2), */ + SDL_PIXELFORMAT_XBGR4444 = 0x15520c02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_4444, 12, 2), */ + SDL_PIXELFORMAT_XRGB1555 = 0x15130f02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_1555, 15, 2), */ + SDL_PIXELFORMAT_XBGR1555 = 0x15530f02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_1555, 15, 2), */ + SDL_PIXELFORMAT_ARGB4444 = 0x15321002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_RGBA4444 = 0x15421002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_ABGR4444 = 0x15721002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_BGRA4444 = 0x15821002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_BGRA, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_ARGB1555 = 0x15331002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_1555, 16, 2), */ + SDL_PIXELFORMAT_RGBA5551 = 0x15441002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_5551, 16, 2), */ + SDL_PIXELFORMAT_ABGR1555 = 0x15731002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_1555, 16, 2), */ + SDL_PIXELFORMAT_BGRA5551 = 0x15841002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_BGRA, SDL_PACKEDLAYOUT_5551, 16, 2), */ + SDL_PIXELFORMAT_RGB565 = 0x15151002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_565, 16, 2), */ + SDL_PIXELFORMAT_BGR565 = 0x15551002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_565, 16, 2), */ + SDL_PIXELFORMAT_RGB24 = 0x17101803u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU8, SDL_ARRAYORDER_RGB, 0, 24, 3), */ + SDL_PIXELFORMAT_BGR24 = 0x17401803u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU8, SDL_ARRAYORDER_BGR, 0, 24, 3), */ + SDL_PIXELFORMAT_XRGB8888 = 0x16161804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_RGBX8888 = 0x16261804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBX, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_XBGR8888 = 0x16561804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_BGRX8888 = 0x16661804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_BGRX, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_ARGB8888 = 0x16362004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_RGBA8888 = 0x16462004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_ABGR8888 = 0x16762004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_BGRA8888 = 0x16862004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_BGRA, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_XRGB2101010 = 0x16172004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_XBGR2101010 = 0x16572004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_ARGB2101010 = 0x16372004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_ABGR2101010 = 0x16772004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_RGB48 = 0x18103006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_RGB, 0, 48, 6), */ + SDL_PIXELFORMAT_BGR48 = 0x18403006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_BGR, 0, 48, 6), */ + SDL_PIXELFORMAT_RGBA64 = 0x18204008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_RGBA, 0, 64, 8), */ + SDL_PIXELFORMAT_ARGB64 = 0x18304008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_ARGB, 0, 64, 8), */ + SDL_PIXELFORMAT_BGRA64 = 0x18504008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_BGRA, 0, 64, 8), */ + SDL_PIXELFORMAT_ABGR64 = 0x18604008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_ABGR, 0, 64, 8), */ + SDL_PIXELFORMAT_RGB48_FLOAT = 0x1a103006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_RGB, 0, 48, 6), */ + SDL_PIXELFORMAT_BGR48_FLOAT = 0x1a403006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_BGR, 0, 48, 6), */ + SDL_PIXELFORMAT_RGBA64_FLOAT = 0x1a204008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_RGBA, 0, 64, 8), */ + SDL_PIXELFORMAT_ARGB64_FLOAT = 0x1a304008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_ARGB, 0, 64, 8), */ + SDL_PIXELFORMAT_BGRA64_FLOAT = 0x1a504008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_BGRA, 0, 64, 8), */ + SDL_PIXELFORMAT_ABGR64_FLOAT = 0x1a604008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_ABGR, 0, 64, 8), */ + SDL_PIXELFORMAT_RGB96_FLOAT = 0x1b10600cu, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_RGB, 0, 96, 12), */ + SDL_PIXELFORMAT_BGR96_FLOAT = 0x1b40600cu, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_BGR, 0, 96, 12), */ + SDL_PIXELFORMAT_RGBA128_FLOAT = 0x1b208010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_RGBA, 0, 128, 16), */ + SDL_PIXELFORMAT_ARGB128_FLOAT = 0x1b308010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_ARGB, 0, 128, 16), */ + SDL_PIXELFORMAT_BGRA128_FLOAT = 0x1b508010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_BGRA, 0, 128, 16), */ + SDL_PIXELFORMAT_ABGR128_FLOAT = 0x1b608010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_ABGR, 0, 128, 16), */ + + SDL_PIXELFORMAT_YV12 = 0x32315659u, /**< Planar mode: Y + V + U (3 planes) */ + /* SDL_DEFINE_PIXELFOURCC('Y', 'V', '1', '2'), */ + SDL_PIXELFORMAT_IYUV = 0x56555949u, /**< Planar mode: Y + U + V (3 planes) */ + /* SDL_DEFINE_PIXELFOURCC('I', 'Y', 'U', 'V'), */ + SDL_PIXELFORMAT_YUY2 = 0x32595559u, /**< Packed mode: Y0+U0+Y1+V0 (1 plane) */ + /* SDL_DEFINE_PIXELFOURCC('Y', 'U', 'Y', '2'), */ + SDL_PIXELFORMAT_UYVY = 0x59565955u, /**< Packed mode: U0+Y0+V0+Y1 (1 plane) */ + /* SDL_DEFINE_PIXELFOURCC('U', 'Y', 'V', 'Y'), */ + SDL_PIXELFORMAT_YVYU = 0x55595659u, /**< Packed mode: Y0+V0+Y1+U0 (1 plane) */ + /* SDL_DEFINE_PIXELFOURCC('Y', 'V', 'Y', 'U'), */ + SDL_PIXELFORMAT_NV12 = 0x3231564eu, /**< Planar mode: Y + U/V interleaved (2 planes) */ + /* SDL_DEFINE_PIXELFOURCC('N', 'V', '1', '2'), */ + SDL_PIXELFORMAT_NV21 = 0x3132564eu, /**< Planar mode: Y + V/U interleaved (2 planes) */ + /* SDL_DEFINE_PIXELFOURCC('N', 'V', '2', '1'), */ + SDL_PIXELFORMAT_P010 = 0x30313050u, /**< Planar mode: Y + U/V interleaved (2 planes) */ + /* SDL_DEFINE_PIXELFOURCC('P', '0', '1', '0'), */ + SDL_PIXELFORMAT_EXTERNAL_OES = 0x2053454fu, /**< Android video texture format */ + /* SDL_DEFINE_PIXELFOURCC('O', 'E', 'S', ' ') */ + + SDL_PIXELFORMAT_MJPG = 0x47504a4du, /**< Motion JPEG */ + /* SDL_DEFINE_PIXELFOURCC('M', 'J', 'P', 'G') */ + + /* Aliases for RGBA byte arrays of color data, for the current platform */ + #if SDL_BYTEORDER == SDL_BIG_ENDIAN + SDL_PIXELFORMAT_RGBA32 = SDL_PIXELFORMAT_RGBA8888, + SDL_PIXELFORMAT_ARGB32 = SDL_PIXELFORMAT_ARGB8888, + SDL_PIXELFORMAT_BGRA32 = SDL_PIXELFORMAT_BGRA8888, + SDL_PIXELFORMAT_ABGR32 = SDL_PIXELFORMAT_ABGR8888, + SDL_PIXELFORMAT_RGBX32 = SDL_PIXELFORMAT_RGBX8888, + SDL_PIXELFORMAT_XRGB32 = SDL_PIXELFORMAT_XRGB8888, + SDL_PIXELFORMAT_BGRX32 = SDL_PIXELFORMAT_BGRX8888, + SDL_PIXELFORMAT_XBGR32 = SDL_PIXELFORMAT_XBGR8888 + #else + SDL_PIXELFORMAT_RGBA32 = SDL_PIXELFORMAT_ABGR8888, + SDL_PIXELFORMAT_ARGB32 = SDL_PIXELFORMAT_BGRA8888, + SDL_PIXELFORMAT_BGRA32 = SDL_PIXELFORMAT_ARGB8888, + SDL_PIXELFORMAT_ABGR32 = SDL_PIXELFORMAT_RGBA8888, + SDL_PIXELFORMAT_RGBX32 = SDL_PIXELFORMAT_XBGR8888, + SDL_PIXELFORMAT_XRGB32 = SDL_PIXELFORMAT_BGRX8888, + SDL_PIXELFORMAT_BGRX32 = SDL_PIXELFORMAT_XRGB8888, + SDL_PIXELFORMAT_XBGR32 = SDL_PIXELFORMAT_RGBX8888 + #endif +} SDL_PixelFormat; + +/** + * Colorspace color type. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ColorType +{ + SDL_COLOR_TYPE_UNKNOWN = 0, + SDL_COLOR_TYPE_RGB = 1, + SDL_COLOR_TYPE_YCBCR = 2 +} SDL_ColorType; + +/** + * Colorspace color range, as described by + * https://www.itu.int/rec/R-REC-BT.2100-2-201807-I/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ColorRange +{ + SDL_COLOR_RANGE_UNKNOWN = 0, + SDL_COLOR_RANGE_LIMITED = 1, /**< Narrow range, e.g. 16-235 for 8-bit RGB and luma, and 16-240 for 8-bit chroma */ + SDL_COLOR_RANGE_FULL = 2 /**< Full range, e.g. 0-255 for 8-bit RGB and luma, and 1-255 for 8-bit chroma */ +} SDL_ColorRange; + +/** + * Colorspace color primaries, as described by + * https://www.itu.int/rec/T-REC-H.273-201612-S/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ColorPrimaries +{ + SDL_COLOR_PRIMARIES_UNKNOWN = 0, + SDL_COLOR_PRIMARIES_BT709 = 1, /**< ITU-R BT.709-6 */ + SDL_COLOR_PRIMARIES_UNSPECIFIED = 2, + SDL_COLOR_PRIMARIES_BT470M = 4, /**< ITU-R BT.470-6 System M */ + SDL_COLOR_PRIMARIES_BT470BG = 5, /**< ITU-R BT.470-6 System B, G / ITU-R BT.601-7 625 */ + SDL_COLOR_PRIMARIES_BT601 = 6, /**< ITU-R BT.601-7 525, SMPTE 170M */ + SDL_COLOR_PRIMARIES_SMPTE240 = 7, /**< SMPTE 240M, functionally the same as SDL_COLOR_PRIMARIES_BT601 */ + SDL_COLOR_PRIMARIES_GENERIC_FILM = 8, /**< Generic film (color filters using Illuminant C) */ + SDL_COLOR_PRIMARIES_BT2020 = 9, /**< ITU-R BT.2020-2 / ITU-R BT.2100-0 */ + SDL_COLOR_PRIMARIES_XYZ = 10, /**< SMPTE ST 428-1 */ + SDL_COLOR_PRIMARIES_SMPTE431 = 11, /**< SMPTE RP 431-2 */ + SDL_COLOR_PRIMARIES_SMPTE432 = 12, /**< SMPTE EG 432-1 / DCI P3 */ + SDL_COLOR_PRIMARIES_EBU3213 = 22, /**< EBU Tech. 3213-E */ + SDL_COLOR_PRIMARIES_CUSTOM = 31 +} SDL_ColorPrimaries; + +/** + * Colorspace transfer characteristics. + * + * These are as described by https://www.itu.int/rec/T-REC-H.273-201612-S/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_TransferCharacteristics +{ + SDL_TRANSFER_CHARACTERISTICS_UNKNOWN = 0, + SDL_TRANSFER_CHARACTERISTICS_BT709 = 1, /**< Rec. ITU-R BT.709-6 / ITU-R BT1361 */ + SDL_TRANSFER_CHARACTERISTICS_UNSPECIFIED = 2, + SDL_TRANSFER_CHARACTERISTICS_GAMMA22 = 4, /**< ITU-R BT.470-6 System M / ITU-R BT1700 625 PAL & SECAM */ + SDL_TRANSFER_CHARACTERISTICS_GAMMA28 = 5, /**< ITU-R BT.470-6 System B, G */ + SDL_TRANSFER_CHARACTERISTICS_BT601 = 6, /**< SMPTE ST 170M / ITU-R BT.601-7 525 or 625 */ + SDL_TRANSFER_CHARACTERISTICS_SMPTE240 = 7, /**< SMPTE ST 240M */ + SDL_TRANSFER_CHARACTERISTICS_LINEAR = 8, + SDL_TRANSFER_CHARACTERISTICS_LOG100 = 9, + SDL_TRANSFER_CHARACTERISTICS_LOG100_SQRT10 = 10, + SDL_TRANSFER_CHARACTERISTICS_IEC61966 = 11, /**< IEC 61966-2-4 */ + SDL_TRANSFER_CHARACTERISTICS_BT1361 = 12, /**< ITU-R BT1361 Extended Colour Gamut */ + SDL_TRANSFER_CHARACTERISTICS_SRGB = 13, /**< IEC 61966-2-1 (sRGB or sYCC) */ + SDL_TRANSFER_CHARACTERISTICS_BT2020_10BIT = 14, /**< ITU-R BT2020 for 10-bit system */ + SDL_TRANSFER_CHARACTERISTICS_BT2020_12BIT = 15, /**< ITU-R BT2020 for 12-bit system */ + SDL_TRANSFER_CHARACTERISTICS_PQ = 16, /**< SMPTE ST 2084 for 10-, 12-, 14- and 16-bit systems */ + SDL_TRANSFER_CHARACTERISTICS_SMPTE428 = 17, /**< SMPTE ST 428-1 */ + SDL_TRANSFER_CHARACTERISTICS_HLG = 18, /**< ARIB STD-B67, known as "hybrid log-gamma" (HLG) */ + SDL_TRANSFER_CHARACTERISTICS_CUSTOM = 31 +} SDL_TransferCharacteristics; + +/** + * Colorspace matrix coefficients. + * + * These are as described by https://www.itu.int/rec/T-REC-H.273-201612-S/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_MatrixCoefficients +{ + SDL_MATRIX_COEFFICIENTS_IDENTITY = 0, + SDL_MATRIX_COEFFICIENTS_BT709 = 1, /**< ITU-R BT.709-6 */ + SDL_MATRIX_COEFFICIENTS_UNSPECIFIED = 2, + SDL_MATRIX_COEFFICIENTS_FCC = 4, /**< US FCC Title 47 */ + SDL_MATRIX_COEFFICIENTS_BT470BG = 5, /**< ITU-R BT.470-6 System B, G / ITU-R BT.601-7 625, functionally the same as SDL_MATRIX_COEFFICIENTS_BT601 */ + SDL_MATRIX_COEFFICIENTS_BT601 = 6, /**< ITU-R BT.601-7 525 */ + SDL_MATRIX_COEFFICIENTS_SMPTE240 = 7, /**< SMPTE 240M */ + SDL_MATRIX_COEFFICIENTS_YCGCO = 8, + SDL_MATRIX_COEFFICIENTS_BT2020_NCL = 9, /**< ITU-R BT.2020-2 non-constant luminance */ + SDL_MATRIX_COEFFICIENTS_BT2020_CL = 10, /**< ITU-R BT.2020-2 constant luminance */ + SDL_MATRIX_COEFFICIENTS_SMPTE2085 = 11, /**< SMPTE ST 2085 */ + SDL_MATRIX_COEFFICIENTS_CHROMA_DERIVED_NCL = 12, + SDL_MATRIX_COEFFICIENTS_CHROMA_DERIVED_CL = 13, + SDL_MATRIX_COEFFICIENTS_ICTCP = 14, /**< ITU-R BT.2100-0 ICTCP */ + SDL_MATRIX_COEFFICIENTS_CUSTOM = 31 +} SDL_MatrixCoefficients; + +/** + * Colorspace chroma sample location. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ChromaLocation +{ + SDL_CHROMA_LOCATION_NONE = 0, /**< RGB, no chroma sampling */ + SDL_CHROMA_LOCATION_LEFT = 1, /**< In MPEG-2, MPEG-4, and AVC, Cb and Cr are taken on midpoint of the left-edge of the 2x2 square. In other words, they have the same horizontal location as the top-left pixel, but is shifted one-half pixel down vertically. */ + SDL_CHROMA_LOCATION_CENTER = 2, /**< In JPEG/JFIF, H.261, and MPEG-1, Cb and Cr are taken at the center of the 2x2 square. In other words, they are offset one-half pixel to the right and one-half pixel down compared to the top-left pixel. */ + SDL_CHROMA_LOCATION_TOPLEFT = 3 /**< In HEVC for BT.2020 and BT.2100 content (in particular on Blu-rays), Cb and Cr are sampled at the same location as the group's top-left Y pixel ("co-sited", "co-located"). */ +} SDL_ChromaLocation; + + +/* Colorspace definition */ + +/** + * A macro for defining custom SDL_Colorspace formats. + * + * For example, defining SDL_COLORSPACE_SRGB looks like this: + * + * ```c + * SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + * SDL_COLOR_RANGE_FULL, + * SDL_COLOR_PRIMARIES_BT709, + * SDL_TRANSFER_CHARACTERISTICS_SRGB, + * SDL_MATRIX_COEFFICIENTS_IDENTITY, + * SDL_CHROMA_LOCATION_NONE) + * ``` + * + * \param type the type of the new format, probably an SDL_ColorType value. + * \param range the range of the new format, probably a SDL_ColorRange value. + * \param primaries the primaries of the new format, probably an + * SDL_ColorPrimaries value. + * \param transfer the transfer characteristics of the new format, probably an + * SDL_TransferCharacteristics value. + * \param matrix the matrix coefficients of the new format, probably an + * SDL_MatrixCoefficients value. + * \param chroma the chroma sample location of the new format, probably an + * SDL_ChromaLocation value. + * \returns a format value in the style of SDL_Colorspace. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_COLORSPACE(type, range, primaries, transfer, matrix, chroma) \ + (((Uint32)(type) << 28) | ((Uint32)(range) << 24) | ((Uint32)(chroma) << 20) | \ + ((Uint32)(primaries) << 10) | ((Uint32)(transfer) << 5) | ((Uint32)(matrix) << 0)) + +/** + * A macro to retrieve the type of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ColorType for `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACETYPE(cspace) (SDL_ColorType)(((cspace) >> 28) & 0x0F) + +/** + * A macro to retrieve the range of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ColorRange of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACERANGE(cspace) (SDL_ColorRange)(((cspace) >> 24) & 0x0F) + +/** + * A macro to retrieve the chroma sample location of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ChromaLocation of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACECHROMA(cspace) (SDL_ChromaLocation)(((cspace) >> 20) & 0x0F) + +/** + * A macro to retrieve the primaries of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ColorPrimaries of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACEPRIMARIES(cspace) (SDL_ColorPrimaries)(((cspace) >> 10) & 0x1F) + +/** + * A macro to retrieve the transfer characteristics of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_TransferCharacteristics of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACETRANSFER(cspace) (SDL_TransferCharacteristics)(((cspace) >> 5) & 0x1F) + +/** + * A macro to retrieve the matrix coefficients of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_MatrixCoefficients of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACEMATRIX(cspace) (SDL_MatrixCoefficients)((cspace) & 0x1F) + +/** + * A macro to determine if an SDL_Colorspace uses BT601 (or BT470BG) matrix + * coefficients. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if BT601 or BT470BG, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_MATRIX_BT601(cspace) (SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT601 || SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT470BG) + +/** + * A macro to determine if an SDL_Colorspace uses BT709 matrix coefficients. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if BT709, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_MATRIX_BT709(cspace) (SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT709) + +/** + * A macro to determine if an SDL_Colorspace uses BT2020_NCL matrix + * coefficients. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if BT2020_NCL, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_MATRIX_BT2020_NCL(cspace) (SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT2020_NCL) + +/** + * A macro to determine if an SDL_Colorspace has a limited range. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if limited range, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_LIMITED_RANGE(cspace) (SDL_COLORSPACERANGE(cspace) != SDL_COLOR_RANGE_FULL) + +/** + * A macro to determine if an SDL_Colorspace has a full range. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if full range, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_FULL_RANGE(cspace) (SDL_COLORSPACERANGE(cspace) == SDL_COLOR_RANGE_FULL) + +/** + * Colorspace definitions. + * + * Since similar colorspaces may vary in their details (matrix, transfer + * function, etc.), this is not an exhaustive list, but rather a + * representative sample of the kinds of colorspaces supported in SDL. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_ColorPrimaries + * \sa SDL_ColorRange + * \sa SDL_ColorType + * \sa SDL_MatrixCoefficients + * \sa SDL_TransferCharacteristics + */ +typedef enum SDL_Colorspace +{ + SDL_COLORSPACE_UNKNOWN = 0, + + /* sRGB is a gamma corrected colorspace, and the default colorspace for SDL rendering and 8-bit RGB surfaces */ + SDL_COLORSPACE_SRGB = 0x120005a0u, /**< Equivalent to DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_SRGB, + SDL_MATRIX_COEFFICIENTS_IDENTITY, + SDL_CHROMA_LOCATION_NONE), */ + + /* This is a linear colorspace and the default colorspace for floating point surfaces. On Windows this is the scRGB colorspace, and on Apple platforms this is kCGColorSpaceExtendedLinearSRGB for EDR content */ + SDL_COLORSPACE_SRGB_LINEAR = 0x12000500u, /**< Equivalent to DXGI_COLOR_SPACE_RGB_FULL_G10_NONE_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_LINEAR, + SDL_MATRIX_COEFFICIENTS_IDENTITY, + SDL_CHROMA_LOCATION_NONE), */ + + /* HDR10 is a non-linear HDR colorspace and the default colorspace for 10-bit surfaces */ + SDL_COLORSPACE_HDR10 = 0x12002600u, /**< Equivalent to DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT2020, + SDL_TRANSFER_CHARACTERISTICS_PQ, + SDL_MATRIX_COEFFICIENTS_IDENTITY, + SDL_CHROMA_LOCATION_NONE), */ + + SDL_COLORSPACE_JPEG = 0x220004c6u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_FULL_G22_NONE_P709_X601 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_BT601, + SDL_MATRIX_COEFFICIENTS_BT601, + SDL_CHROMA_LOCATION_NONE), */ + + SDL_COLORSPACE_BT601_LIMITED = 0x211018c6u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_LIMITED, + SDL_COLOR_PRIMARIES_BT601, + SDL_TRANSFER_CHARACTERISTICS_BT601, + SDL_MATRIX_COEFFICIENTS_BT601, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT601_FULL = 0x221018c6u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT601, + SDL_TRANSFER_CHARACTERISTICS_BT601, + SDL_MATRIX_COEFFICIENTS_BT601, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT709_LIMITED = 0x21100421u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_LIMITED, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_BT709, + SDL_MATRIX_COEFFICIENTS_BT709, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT709_FULL = 0x22100421u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_BT709, + SDL_MATRIX_COEFFICIENTS_BT709, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT2020_LIMITED = 0x21102609u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P2020 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_LIMITED, + SDL_COLOR_PRIMARIES_BT2020, + SDL_TRANSFER_CHARACTERISTICS_PQ, + SDL_MATRIX_COEFFICIENTS_BT2020_NCL, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT2020_FULL = 0x22102609u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P2020 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT2020, + SDL_TRANSFER_CHARACTERISTICS_PQ, + SDL_MATRIX_COEFFICIENTS_BT2020_NCL, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_RGB_DEFAULT = SDL_COLORSPACE_SRGB, /**< The default colorspace for RGB surfaces if no colorspace is specified */ + SDL_COLORSPACE_YUV_DEFAULT = SDL_COLORSPACE_JPEG /**< The default colorspace for YUV surfaces if no colorspace is specified */ +} SDL_Colorspace; + +/** + * A structure that represents a color as RGBA components. + * + * The bits of this structure can be directly reinterpreted as an + * integer-packed color which uses the SDL_PIXELFORMAT_RGBA32 format + * (SDL_PIXELFORMAT_ABGR8888 on little-endian systems and + * SDL_PIXELFORMAT_RGBA8888 on big-endian systems). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Color +{ + Uint8 r; + Uint8 g; + Uint8 b; + Uint8 a; +} SDL_Color; + +/** + * The bits of this structure can be directly reinterpreted as a float-packed + * color which uses the SDL_PIXELFORMAT_RGBA128_FLOAT format + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_FColor +{ + float r; + float g; + float b; + float a; +} SDL_FColor; + +/** + * A set of indexed colors representing a palette. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_SetPaletteColors + */ +typedef struct SDL_Palette +{ + int ncolors; /**< number of elements in `colors`. */ + SDL_Color *colors; /**< an array of colors, `ncolors` long. */ + Uint32 version; /**< internal use only, do not touch. */ + int refcount; /**< internal use only, do not touch. */ +} SDL_Palette; + +/** + * Details about the format of a pixel. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PixelFormatDetails +{ + SDL_PixelFormat format; + Uint8 bits_per_pixel; + Uint8 bytes_per_pixel; + Uint8 padding[2]; + Uint32 Rmask; + Uint32 Gmask; + Uint32 Bmask; + Uint32 Amask; + Uint8 Rbits; + Uint8 Gbits; + Uint8 Bbits; + Uint8 Abits; + Uint8 Rshift; + Uint8 Gshift; + Uint8 Bshift; + Uint8 Ashift; +} SDL_PixelFormatDetails; + +/** + * Get the human readable name of a pixel format. + * + * \param format the pixel format to query. + * \returns the human readable name of the specified pixel format or + * "SDL_PIXELFORMAT_UNKNOWN" if the format isn't recognized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetPixelFormatName(SDL_PixelFormat format); + +/** + * Convert one of the enumerated pixel formats to a bpp value and RGBA masks. + * + * \param format one of the SDL_PixelFormat values. + * \param bpp a bits per pixel value; usually 15, 16, or 32. + * \param Rmask a pointer filled in with the red mask for the format. + * \param Gmask a pointer filled in with the green mask for the format. + * \param Bmask a pointer filled in with the blue mask for the format. + * \param Amask a pointer filled in with the alpha mask for the format. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatForMasks + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetMasksForPixelFormat(SDL_PixelFormat format, int *bpp, Uint32 *Rmask, Uint32 *Gmask, Uint32 *Bmask, Uint32 *Amask); + +/** + * Convert a bpp value and RGBA masks to an enumerated pixel format. + * + * This will return `SDL_PIXELFORMAT_UNKNOWN` if the conversion wasn't + * possible. + * + * \param bpp a bits per pixel value; usually 15, 16, or 32. + * \param Rmask the red mask for the format. + * \param Gmask the green mask for the format. + * \param Bmask the blue mask for the format. + * \param Amask the alpha mask for the format. + * \returns the SDL_PixelFormat value corresponding to the format masks, or + * SDL_PIXELFORMAT_UNKNOWN if there isn't a match. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMasksForPixelFormat + */ +extern SDL_DECLSPEC SDL_PixelFormat SDLCALL SDL_GetPixelFormatForMasks(int bpp, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask); + +/** + * Create an SDL_PixelFormatDetails structure corresponding to a pixel format. + * + * Returned structure may come from a shared global cache (i.e. not newly + * allocated), and hence should not be modified, especially the palette. Weird + * errors such as `Blit combination not supported` may occur. + * + * \param format one of the SDL_PixelFormat values. + * \returns a pointer to a SDL_PixelFormatDetails structure or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const SDL_PixelFormatDetails * SDLCALL SDL_GetPixelFormatDetails(SDL_PixelFormat format); + +/** + * Create a palette structure with the specified number of color entries. + * + * The palette entries are initialized to white. + * + * \param ncolors represents the number of color entries in the color palette. + * \returns a new SDL_Palette structure on success or NULL on failure (e.g. if + * there wasn't enough memory); call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyPalette + * \sa SDL_SetPaletteColors + * \sa SDL_SetSurfacePalette + */ +extern SDL_DECLSPEC SDL_Palette * SDLCALL SDL_CreatePalette(int ncolors); + +/** + * Set a range of colors in a palette. + * + * \param palette the SDL_Palette structure to modify. + * \param colors an array of SDL_Color structures to copy into the palette. + * \param firstcolor the index of the first palette entry to modify. + * \param ncolors the number of entries to modify. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified or destroyed in another thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPaletteColors(SDL_Palette *palette, const SDL_Color *colors, int firstcolor, int ncolors); + +/** + * Free a palette created with SDL_CreatePalette(). + * + * \param palette the SDL_Palette structure to be freed. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified or destroyed in another thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePalette + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyPalette(SDL_Palette *palette); + +/** + * Map an RGB triple to an opaque pixel value for a given pixel format. + * + * This function maps the RGB color value to the specified pixel format and + * returns the pixel value best approximating the given RGB color value for + * the given pixel format. + * + * If the format has a palette (8-bit) the index of the closest matching color + * in the palette will be returned. + * + * If the specified pixel format has an alpha component it will be returned as + * all 1 bits (fully opaque). + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGB + * \sa SDL_MapRGBA + * \sa SDL_MapSurfaceRGB + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapRGB(const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 r, Uint8 g, Uint8 b); + +/** + * Map an RGBA quadruple to a pixel value for a given pixel format. + * + * This function maps the RGBA color value to the specified pixel format and + * returns the pixel value best approximating the given RGBA color value for + * the given pixel format. + * + * If the specified pixel format has no alpha component the alpha value will + * be ignored (as it will be in formats with a palette). + * + * If the format has a palette (8-bit) the index of the closest matching color + * in the palette will be returned. + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \param a the alpha component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGBA + * \sa SDL_MapRGB + * \sa SDL_MapSurfaceRGBA + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapRGBA(const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Get RGB values from a pixel in the specified format. + * + * This function uses the entire 8-bit [0..255] range when converting color + * components from pixel formats with less than 8-bits per RGB component + * (e.g., a completely white pixel in 16-bit RGB565 format would return [0xff, + * 0xff, 0xff] not [0xf8, 0xfc, 0xf8]). + * + * \param pixel a pixel value. + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r a pointer filled in with the red component, may be NULL. + * \param g a pointer filled in with the green component, may be NULL. + * \param b a pointer filled in with the blue component, may be NULL. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGBA + * \sa SDL_MapRGB + * \sa SDL_MapRGBA + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetRGB(Uint32 pixel, const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 *r, Uint8 *g, Uint8 *b); + +/** + * Get RGBA values from a pixel in the specified format. + * + * This function uses the entire 8-bit [0..255] range when converting color + * components from pixel formats with less than 8-bits per RGB component + * (e.g., a completely white pixel in 16-bit RGB565 format would return [0xff, + * 0xff, 0xff] not [0xf8, 0xfc, 0xf8]). + * + * If the surface has no alpha component, the alpha will be returned as 0xff + * (100% opaque). + * + * \param pixel a pixel value. + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r a pointer filled in with the red component, may be NULL. + * \param g a pointer filled in with the green component, may be NULL. + * \param b a pointer filled in with the blue component, may be NULL. + * \param a a pointer filled in with the alpha component, may be NULL. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGB + * \sa SDL_MapRGB + * \sa SDL_MapRGBA + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel, const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_pixels_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_platform.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_platform.h new file mode 100644 index 0000000..e40f009 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_platform.h @@ -0,0 +1,64 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryPlatform + * + * SDL provides a means to identify the app's platform, both at compile time + * and runtime. + */ + +#ifndef SDL_platform_h_ +#define SDL_platform_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Get the name of the platform. + * + * Here are the names returned for some (but not all) supported platforms: + * + * - "Windows" + * - "macOS" + * - "Linux" + * - "iOS" + * - "Android" + * + * \returns the name of the platform. If the correct platform name is not + * available, returns a string beginning with the text "Unknown". + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetPlatform(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_platform_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_platform_defines.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_platform_defines.h new file mode 100644 index 0000000..6b240a8 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_platform_defines.h @@ -0,0 +1,476 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Platform */ + +/* + * SDL_platform_defines.h tries to get a standard set of platform defines. + */ + +#ifndef SDL_platform_defines_h_ +#define SDL_platform_defines_h_ + +#ifdef _AIX + +/** + * A preprocessor macro that is only defined if compiling for AIX. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_AIX 1 +#endif + +#ifdef __HAIKU__ + +/** + * A preprocessor macro that is only defined if compiling for Haiku OS. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_HAIKU 1 +#endif + +#if defined(bsdi) || defined(__bsdi) || defined(__bsdi__) + +/** + * A preprocessor macro that is only defined if compiling for BSDi + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_BSDI 1 +#endif + +#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) + +/** + * A preprocessor macro that is only defined if compiling for FreeBSD. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_FREEBSD 1 +#endif + +#if defined(hpux) || defined(__hpux) || defined(__hpux__) + +/** + * A preprocessor macro that is only defined if compiling for HP-UX. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_HPUX 1 +#endif + +#if defined(sgi) || defined(__sgi) || defined(__sgi__) || defined(_SGI_SOURCE) + +/** + * A preprocessor macro that is only defined if compiling for IRIX. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_IRIX 1 +#endif + +#if (defined(linux) || defined(__linux) || defined(__linux__)) + +/** + * A preprocessor macro that is only defined if compiling for Linux. + * + * Note that Android, although ostensibly a Linux-based system, will not + * define this. It defines SDL_PLATFORM_ANDROID instead. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_LINUX 1 +#endif + +#if defined(ANDROID) || defined(__ANDROID__) + +/** + * A preprocessor macro that is only defined if compiling for Android. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_ANDROID 1 +#undef SDL_PLATFORM_LINUX +#endif + +#if defined(__unix__) || defined(__unix) || defined(unix) + +/** + * A preprocessor macro that is only defined if compiling for a Unix-like + * system. + * + * Other platforms, like Linux, might define this in addition to their primary + * define. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_UNIX 1 +#endif + +#ifdef __APPLE__ + +/** + * A preprocessor macro that is only defined if compiling for Apple platforms. + * + * iOS, macOS, etc will additionally define a more specific platform macro. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_MACOS + * \sa SDL_PLATFORM_IOS + * \sa SDL_PLATFORM_TVOS + * \sa SDL_PLATFORM_VISIONOS + */ +#define SDL_PLATFORM_APPLE 1 + +/* lets us know what version of macOS we're compiling on */ +#include +#ifndef __has_extension /* Older compilers don't support this */ + #define __has_extension(x) 0 + #include + #undef __has_extension +#else + #include +#endif + +/* Fix building with older SDKs that don't define these + See this for more information: + https://stackoverflow.com/questions/12132933/preprocessor-macro-for-os-x-targets +*/ +#ifndef TARGET_OS_MACCATALYST + #define TARGET_OS_MACCATALYST 0 +#endif +#ifndef TARGET_OS_IOS + #define TARGET_OS_IOS 0 +#endif +#ifndef TARGET_OS_IPHONE + #define TARGET_OS_IPHONE 0 +#endif +#ifndef TARGET_OS_TV + #define TARGET_OS_TV 0 +#endif +#ifndef TARGET_OS_SIMULATOR + #define TARGET_OS_SIMULATOR 0 +#endif +#ifndef TARGET_OS_VISION + #define TARGET_OS_VISION 0 +#endif + +#if TARGET_OS_TV + +/** + * A preprocessor macro that is only defined if compiling for tvOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_TVOS 1 +#endif + +#if TARGET_OS_VISION + +/** + * A preprocessor macro that is only defined if compiling for VisionOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_VISIONOS 1 +#endif + +#if TARGET_OS_IPHONE + +/** + * A preprocessor macro that is only defined if compiling for iOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_IOS 1 + +#else + +/** + * A preprocessor macro that is only defined if compiling for macOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_MACOS 1 + +#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070 + #error SDL for macOS only supports deploying on 10.7 and above. +#endif /* MAC_OS_X_VERSION_MIN_REQUIRED < 1070 */ +#endif /* TARGET_OS_IPHONE */ +#endif /* defined(__APPLE__) */ + +#ifdef __EMSCRIPTEN__ + +/** + * A preprocessor macro that is only defined if compiling for Emscripten. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_EMSCRIPTEN 1 +#endif + +#ifdef __NetBSD__ + +/** + * A preprocessor macro that is only defined if compiling for NetBSD. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_NETBSD 1 +#endif + +#ifdef __OpenBSD__ + +/** + * A preprocessor macro that is only defined if compiling for OpenBSD. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_OPENBSD 1 +#endif + +#if defined(__OS2__) || defined(__EMX__) + +/** + * A preprocessor macro that is only defined if compiling for OS/2. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_OS2 1 +#endif + +#if defined(osf) || defined(__osf) || defined(__osf__) || defined(_OSF_SOURCE) + +/** + * A preprocessor macro that is only defined if compiling for Tru64 (OSF/1). + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_OSF 1 +#endif + +#ifdef __QNXNTO__ + +/** + * A preprocessor macro that is only defined if compiling for QNX Neutrino. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_QNXNTO 1 +#endif + +#if defined(riscos) || defined(__riscos) || defined(__riscos__) + +/** + * A preprocessor macro that is only defined if compiling for RISC OS. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_RISCOS 1 +#endif + +#if defined(__sun) && defined(__SVR4) + +/** + * A preprocessor macro that is only defined if compiling for SunOS/Solaris. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_SOLARIS 1 +#endif + +#if defined(__CYGWIN__) + +/** + * A preprocessor macro that is only defined if compiling for Cygwin. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_CYGWIN 1 +#endif + +#if defined(_WIN32) || defined(SDL_PLATFORM_CYGWIN) + +/** + * A preprocessor macro that is only defined if compiling for Windows. + * + * This also covers several other platforms, like Microsoft GDK, Xbox, WinRT, + * etc. Each will have their own more-specific platform macros, too. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_WIN32 + * \sa SDL_PLATFORM_XBOXONE + * \sa SDL_PLATFORM_XBOXSERIES + * \sa SDL_PLATFORM_WINGDK + * \sa SDL_PLATFORM_GDK + */ +#define SDL_PLATFORM_WINDOWS 1 + +/* Try to find out if we're compiling for WinRT, GDK or non-WinRT/GDK */ +#if defined(_MSC_VER) && defined(__has_include) + #if __has_include() + #define HAVE_WINAPIFAMILY_H 1 + #else + #define HAVE_WINAPIFAMILY_H 0 + #endif + + /* If _USING_V110_SDK71_ is defined it means we are using the Windows XP toolset. */ +#elif defined(_MSC_VER) && (_MSC_VER >= 1700 && !_USING_V110_SDK71_) /* _MSC_VER == 1700 for Visual Studio 2012 */ + #define HAVE_WINAPIFAMILY_H 1 +#else + #define HAVE_WINAPIFAMILY_H 0 +#endif + +#if HAVE_WINAPIFAMILY_H + #include + #define WINAPI_FAMILY_WINRT (!WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) && WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)) +#else + #define WINAPI_FAMILY_WINRT 0 +#endif /* HAVE_WINAPIFAMILY_H */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A preprocessor macro that defined to 1 if compiling for Windows Phone. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINAPI_FAMILY_PHONE (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP) + +#elif defined(HAVE_WINAPIFAMILY_H) && HAVE_WINAPIFAMILY_H + #define SDL_WINAPI_FAMILY_PHONE (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP) +#else + #define SDL_WINAPI_FAMILY_PHONE 0 +#endif + +#if WINAPI_FAMILY_WINRT +#error Windows RT/UWP is no longer supported in SDL + +#elif defined(_GAMING_DESKTOP) /* GDK project configuration always defines _GAMING_XXX */ + +/** + * A preprocessor macro that is only defined if compiling for Microsoft GDK + * for Windows. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_WINGDK 1 + +#elif defined(_GAMING_XBOX_XBOXONE) + +/** + * A preprocessor macro that is only defined if compiling for Xbox One. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_XBOXONE 1 + +#elif defined(_GAMING_XBOX_SCARLETT) + +/** + * A preprocessor macro that is only defined if compiling for Xbox Series. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_XBOXSERIES 1 + +#else + +/** + * A preprocessor macro that is only defined if compiling for desktop Windows. + * + * Despite the "32", this also covers 64-bit Windows; as an informal + * convention, its system layer tends to still be referred to as "the Win32 + * API." + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_WIN32 1 + +#endif +#endif /* defined(_WIN32) || defined(SDL_PLATFORM_CYGWIN) */ + + +/* This is to support generic "any GDK" separate from a platform-specific GDK */ +#if defined(SDL_PLATFORM_WINGDK) || defined(SDL_PLATFORM_XBOXONE) || defined(SDL_PLATFORM_XBOXSERIES) + +/** + * A preprocessor macro that is only defined if compiling for Microsoft GDK on + * any platform. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_GDK 1 +#endif + +#if defined(__PSP__) || defined(__psp__) + +/** + * A preprocessor macro that is only defined if compiling for Sony PSP. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_PSP 1 +#endif + +#if defined(__PS2__) || defined(PS2) + +/** + * A preprocessor macro that is only defined if compiling for Sony PlayStation + * 2. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_PS2 1 +#endif + +#if defined(__vita__) || defined(__psp2__) + +/** + * A preprocessor macro that is only defined if compiling for Sony Vita. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_VITA 1 +#endif + +#ifdef __3DS__ + +/** + * A preprocessor macro that is only defined if compiling for Nintendo 3DS. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_3DS 1 +#endif + +#endif /* SDL_platform_defines_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_power.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_power.h new file mode 100644 index 0000000..694fb09 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_power.h @@ -0,0 +1,106 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_power_h_ +#define SDL_power_h_ + +/** + * # CategoryPower + * + * SDL power management routines. + * + * There is a single function in this category: SDL_GetPowerInfo(). + * + * This function is useful for games on the go. This allows an app to know if + * it's running on a draining battery, which can be useful if the app wants to + * reduce processing, or perhaps framerate, to extend the duration of the + * battery's charge. Perhaps the app just wants to show a battery meter when + * fullscreen, or alert the user when the power is getting extremely low, so + * they can save their game. + */ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The basic state for the system's power supply. + * + * These are results returned by SDL_GetPowerInfo(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PowerState +{ + SDL_POWERSTATE_ERROR = -1, /**< error determining power status */ + SDL_POWERSTATE_UNKNOWN, /**< cannot determine power status */ + SDL_POWERSTATE_ON_BATTERY, /**< Not plugged in, running on the battery */ + SDL_POWERSTATE_NO_BATTERY, /**< Plugged in, no battery available */ + SDL_POWERSTATE_CHARGING, /**< Plugged in, charging battery */ + SDL_POWERSTATE_CHARGED /**< Plugged in, battery charged */ +} SDL_PowerState; + +/** + * Get the current power supply details. + * + * You should never take a battery status as absolute truth. Batteries + * (especially failing batteries) are delicate hardware, and the values + * reported here are best estimates based on what that hardware reports. It's + * not uncommon for older batteries to lose stored power much faster than it + * reports, or completely drain when reporting it has 20 percent left, etc. + * + * Battery status can change at any time; if you are concerned with power + * state, you should call this function frequently, and perhaps ignore changes + * until they seem to be stable for a few seconds. + * + * It's possible a platform can only report battery percentage or time left + * but not both. + * + * On some platforms, retrieving power supply details might be expensive. If + * you want to display continuous status you could call this function every + * minute or so. + * + * \param seconds a pointer filled in with the seconds of battery life left, + * or NULL to ignore. This will be filled in with -1 if we + * can't determine a value or there is no battery. + * \param percent a pointer filled in with the percentage of battery life + * left, between 0 and 100, or NULL to ignore. This will be + * filled in with -1 we can't determine a value or there is no + * battery. + * \returns the current battery state or `SDL_POWERSTATE_ERROR` on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PowerState SDLCALL SDL_GetPowerInfo(int *seconds, int *percent); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_power_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_process.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_process.h new file mode 100644 index 0000000..511b2f9 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_process.h @@ -0,0 +1,430 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryProcess + * + * Process control support. + * + * These functions provide a cross-platform way to spawn and manage OS-level + * processes. + * + * You can create a new subprocess with SDL_CreateProcess() and optionally + * read and write to it using SDL_ReadProcess() or SDL_GetProcessInput() and + * SDL_GetProcessOutput(). If more advanced functionality like chaining input + * between processes is necessary, you can use + * SDL_CreateProcessWithProperties(). + * + * You can get the status of a created process with SDL_WaitProcess(), or + * terminate the process with SDL_KillProcess(). + * + * Don't forget to call SDL_DestroyProcess() to clean up, whether the process + * process was killed, terminated on its own, or is still running! + */ + +#ifndef SDL_process_h_ +#define SDL_process_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque handle representing a system process. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + */ +typedef struct SDL_Process SDL_Process; + +/** + * Create a new process. + * + * The path to the executable is supplied in args[0]. args[1..N] are + * additional arguments passed on the command line of the new process, and the + * argument list should be terminated with a NULL, e.g.: + * + * ```c + * const char *args[] = { "myprogram", "argument", NULL }; + * ``` + * + * Setting pipe_stdio to true is equivalent to setting + * `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` and + * `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` to `SDL_PROCESS_STDIO_APP`, and + * will allow the use of SDL_ReadProcess() or SDL_GetProcessInput() and + * SDL_GetProcessOutput(). + * + * See SDL_CreateProcessWithProperties() for more details. + * + * \param args the path and arguments for the new process. + * \param pipe_stdio true to create pipes to the process's standard input and + * from the process's standard output, false for the process + * to have no input and inherit the application's standard + * output. + * \returns the newly created and running process, or NULL if the process + * couldn't be created. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessProperties + * \sa SDL_ReadProcess + * \sa SDL_GetProcessInput + * \sa SDL_GetProcessOutput + * \sa SDL_KillProcess + * \sa SDL_WaitProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC SDL_Process * SDLCALL SDL_CreateProcess(const char * const *args, bool pipe_stdio); + +/** + * Description of where standard I/O should be directed when creating a + * process. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_INHERITED, it will go + * to the same place as the application's I/O stream. This is the default for + * standard output and standard error. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_NULL, it is connected + * to `NUL:` on Windows and `/dev/null` on POSIX systems. This is the default + * for standard input. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_APP, it is connected + * to a new SDL_IOStream that is available to the application. Standard input + * will be available as `SDL_PROP_PROCESS_STDIN_POINTER` and allows + * SDL_GetProcessInput(), standard output will be available as + * `SDL_PROP_PROCESS_STDOUT_POINTER` and allows SDL_ReadProcess() and + * SDL_GetProcessOutput(), and standard error will be available as + * `SDL_PROP_PROCESS_STDERR_POINTER` in the properties for the created + * process. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_REDIRECT, it is + * connected to an existing SDL_IOStream provided by the application. Standard + * input is provided using `SDL_PROP_PROCESS_CREATE_STDIN_POINTER`, standard + * output is provided using `SDL_PROP_PROCESS_CREATE_STDOUT_POINTER`, and + * standard error is provided using `SDL_PROP_PROCESS_CREATE_STDERR_POINTER` + * in the creation properties. These existing streams should be closed by the + * application once the new process is created. + * + * In order to use an SDL_IOStream with SDL_PROCESS_STDIO_REDIRECT, it must + * have `SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER` or + * `SDL_PROP_IOSTREAM_FILE_DESCRIPTOR_NUMBER` set. This is true for streams + * representing files and process I/O. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessProperties + * \sa SDL_ReadProcess + * \sa SDL_GetProcessInput + * \sa SDL_GetProcessOutput + */ +typedef enum SDL_ProcessIO +{ + SDL_PROCESS_STDIO_INHERITED, /**< The I/O stream is inherited from the application. */ + SDL_PROCESS_STDIO_NULL, /**< The I/O stream is ignored. */ + SDL_PROCESS_STDIO_APP, /**< The I/O stream is connected to a new SDL_IOStream that the application can read or write */ + SDL_PROCESS_STDIO_REDIRECT /**< The I/O stream is redirected to an existing SDL_IOStream. */ +} SDL_ProcessIO; + +/** + * Create a new process with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_PROCESS_CREATE_ARGS_POINTER`: an array of strings containing + * the program to run, any arguments, and a NULL pointer, e.g. const char + * *args[] = { "myprogram", "argument", NULL }. This is a required property. + * - `SDL_PROP_PROCESS_CREATE_ENVIRONMENT_POINTER`: an SDL_Environment + * pointer. If this property is set, it will be the entire environment for + * the process, otherwise the current environment is used. + * - `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER`: an SDL_ProcessIO value describing + * where standard input for the process comes from, defaults to + * `SDL_PROCESS_STDIO_NULL`. + * - `SDL_PROP_PROCESS_CREATE_STDIN_POINTER`: an SDL_IOStream pointer used for + * standard input when `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` is set to + * `SDL_PROCESS_STDIO_REDIRECT`. + * - `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER`: an SDL_ProcessIO value + * describing where standard output for the process goes to, defaults to + * `SDL_PROCESS_STDIO_INHERITED`. + * - `SDL_PROP_PROCESS_CREATE_STDOUT_POINTER`: an SDL_IOStream pointer used + * for standard output when `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` is set + * to `SDL_PROCESS_STDIO_REDIRECT`. + * - `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER`: an SDL_ProcessIO value + * describing where standard error for the process goes to, defaults to + * `SDL_PROCESS_STDIO_INHERITED`. + * - `SDL_PROP_PROCESS_CREATE_STDERR_POINTER`: an SDL_IOStream pointer used + * for standard error when `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER` is set to + * `SDL_PROCESS_STDIO_REDIRECT`. + * - `SDL_PROP_PROCESS_CREATE_STDERR_TO_STDOUT_BOOLEAN`: true if the error + * output of the process should be redirected into the standard output of + * the process. This property has no effect if + * `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER` is set. + * - `SDL_PROP_PROCESS_CREATE_BACKGROUND_BOOLEAN`: true if the process should + * run in the background. In this case the default input and output is + * `SDL_PROCESS_STDIO_NULL` and the exitcode of the process is not + * available, and will always be 0. + * + * On POSIX platforms, wait() and waitpid(-1, ...) should not be called, and + * SIGCHLD should not be ignored or handled because those would prevent SDL + * from properly tracking the lifetime of the underlying process. You should + * use SDL_WaitProcess() instead. + * + * \param props the properties to use. + * \returns the newly created and running process, or NULL if the process + * couldn't be created. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_GetProcessProperties + * \sa SDL_ReadProcess + * \sa SDL_GetProcessInput + * \sa SDL_GetProcessOutput + * \sa SDL_KillProcess + * \sa SDL_WaitProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC SDL_Process * SDLCALL SDL_CreateProcessWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_PROCESS_CREATE_ARGS_POINTER "SDL.process.create.args" +#define SDL_PROP_PROCESS_CREATE_ENVIRONMENT_POINTER "SDL.process.create.environment" +#define SDL_PROP_PROCESS_CREATE_STDIN_NUMBER "SDL.process.create.stdin_option" +#define SDL_PROP_PROCESS_CREATE_STDIN_POINTER "SDL.process.create.stdin_source" +#define SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER "SDL.process.create.stdout_option" +#define SDL_PROP_PROCESS_CREATE_STDOUT_POINTER "SDL.process.create.stdout_source" +#define SDL_PROP_PROCESS_CREATE_STDERR_NUMBER "SDL.process.create.stderr_option" +#define SDL_PROP_PROCESS_CREATE_STDERR_POINTER "SDL.process.create.stderr_source" +#define SDL_PROP_PROCESS_CREATE_STDERR_TO_STDOUT_BOOLEAN "SDL.process.create.stderr_to_stdout" +#define SDL_PROP_PROCESS_CREATE_BACKGROUND_BOOLEAN "SDL.process.create.background" + +/** + * Get the properties associated with a process. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_PROCESS_PID_NUMBER`: the process ID of the process. + * - `SDL_PROP_PROCESS_STDIN_POINTER`: an SDL_IOStream that can be used to + * write input to the process, if it was created with + * `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * - `SDL_PROP_PROCESS_STDOUT_POINTER`: a non-blocking SDL_IOStream that can + * be used to read output from the process, if it was created with + * `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * - `SDL_PROP_PROCESS_STDERR_POINTER`: a non-blocking SDL_IOStream that can + * be used to read error output from the process, if it was created with + * `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * - `SDL_PROP_PROCESS_BACKGROUND_BOOLEAN`: true if the process is running in + * the background. + * + * \param process the process to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetProcessProperties(SDL_Process *process); + +#define SDL_PROP_PROCESS_PID_NUMBER "SDL.process.pid" +#define SDL_PROP_PROCESS_STDIN_POINTER "SDL.process.stdin" +#define SDL_PROP_PROCESS_STDOUT_POINTER "SDL.process.stdout" +#define SDL_PROP_PROCESS_STDERR_POINTER "SDL.process.stderr" +#define SDL_PROP_PROCESS_BACKGROUND_BOOLEAN "SDL.process.background" + +/** + * Read all the output from a process. + * + * If a process was created with I/O enabled, you can use this function to + * read the output. This function blocks until the process is complete, + * capturing all output, and providing the process exit code. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in the value reported via + * `datasize`. + * + * The data should be freed with SDL_free(). + * + * \param process The process to read. + * \param datasize a pointer filled in with the number of bytes read, may be + * NULL. + * \param exitcode a pointer filled in with the process exit code if the + * process has exited, may be NULL. + * \returns the data or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC void * SDLCALL SDL_ReadProcess(SDL_Process *process, size_t *datasize, int *exitcode); + +/** + * Get the SDL_IOStream associated with process standard input. + * + * The process must have been created with SDL_CreateProcess() and pipe_stdio + * set to true, or with SDL_CreateProcessWithProperties() and + * `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * + * Writing to this stream can return less data than expected if the process + * hasn't read its input. It may be blocked waiting for its output to be read, + * if so you may need to call SDL_GetProcessOutput() and read the output in + * parallel with writing input. + * + * \param process The process to get the input stream for. + * \returns the input stream or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessOutput + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_GetProcessInput(SDL_Process *process); + +/** + * Get the SDL_IOStream associated with process standard output. + * + * The process must have been created with SDL_CreateProcess() and pipe_stdio + * set to true, or with SDL_CreateProcessWithProperties() and + * `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * + * Reading from this stream can return 0 with SDL_GetIOStatus() returning + * SDL_IO_STATUS_NOT_READY if no output is available yet. + * + * \param process The process to get the output stream for. + * \returns the output stream or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessInput + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_GetProcessOutput(SDL_Process *process); + +/** + * Stop a process. + * + * \param process The process to stop. + * \param force true to terminate the process immediately, false to try to + * stop the process gracefully. In general you should try to stop + * the process gracefully first as terminating a process may + * leave it with half-written data or in some other unstable + * state. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_WaitProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC bool SDLCALL SDL_KillProcess(SDL_Process *process, bool force); + +/** + * Wait for a process to finish. + * + * This can be called multiple times to get the status of a process. + * + * The exit code will be the exit code of the process if it terminates + * normally, a negative signal if it terminated due to a signal, or -255 + * otherwise. It will not be changed if the process is still running. + * + * If you create a process with standard output piped to the application + * (`pipe_stdio` being true) then you should read all of the process output + * before calling SDL_WaitProcess(). If you don't do this the process might be + * blocked indefinitely waiting for output to be read and SDL_WaitProcess() + * will never return true; + * + * \param process The process to wait for. + * \param block If true, block until the process finishes; otherwise, report + * on the process' status. + * \param exitcode a pointer filled in with the process exit code if the + * process has exited, may be NULL. + * \returns true if the process exited, false otherwise. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_KillProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitProcess(SDL_Process *process, bool block, int *exitcode); + +/** + * Destroy a previously created process object. + * + * Note that this does not stop the process, just destroys the SDL object used + * to track it. If you want to stop the process you should use + * SDL_KillProcess(). + * + * \param process The process object to destroy. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_KillProcess + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyProcess(SDL_Process *process); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_process_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_properties.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_properties.h new file mode 100644 index 0000000..1f47d5f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_properties.h @@ -0,0 +1,543 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryProperties + * + * A property is a variable that can be created and retrieved by name at + * runtime. + * + * All properties are part of a property group (SDL_PropertiesID). A property + * group can be created with the SDL_CreateProperties function and destroyed + * with the SDL_DestroyProperties function. + * + * Properties can be added to and retrieved from a property group through the + * following functions: + * + * - SDL_SetPointerProperty and SDL_GetPointerProperty operate on `void*` + * pointer types. + * - SDL_SetStringProperty and SDL_GetStringProperty operate on string types. + * - SDL_SetNumberProperty and SDL_GetNumberProperty operate on signed 64-bit + * integer types. + * - SDL_SetFloatProperty and SDL_GetFloatProperty operate on floating point + * types. + * - SDL_SetBooleanProperty and SDL_GetBooleanProperty operate on boolean + * types. + * + * Properties can be removed from a group by using SDL_ClearProperty. + */ + + +#ifndef SDL_properties_h_ +#define SDL_properties_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SDL properties ID + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_PropertiesID; + +/** + * SDL property type + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PropertyType +{ + SDL_PROPERTY_TYPE_INVALID, + SDL_PROPERTY_TYPE_POINTER, + SDL_PROPERTY_TYPE_STRING, + SDL_PROPERTY_TYPE_NUMBER, + SDL_PROPERTY_TYPE_FLOAT, + SDL_PROPERTY_TYPE_BOOLEAN +} SDL_PropertyType; + +/** + * Get the global SDL properties. + * + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetGlobalProperties(void); + +/** + * Create a group of properties. + * + * All properties are automatically destroyed when SDL_Quit() is called. + * + * \returns an ID for a new group of properties, or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyProperties + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_CreateProperties(void); + +/** + * Copy a group of properties. + * + * Copy all the properties from one group of properties to another, with the + * exception of properties requiring cleanup (set using + * SDL_SetPointerPropertyWithCleanup()), which will not be copied. Any + * property that already exists on `dst` will be overwritten. + * + * \param src the properties to copy. + * \param dst the destination properties. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CopyProperties(SDL_PropertiesID src, SDL_PropertiesID dst); + +/** + * Lock a group of properties. + * + * Obtain a multi-threaded lock for these properties. Other threads will wait + * while trying to lock these properties until they are unlocked. Properties + * must be unlocked before they are destroyed. + * + * The lock is automatically taken when setting individual properties, this + * function is only needed when you want to set several properties atomically + * or want to guarantee that properties being queried aren't freed in another + * thread. + * + * \param props the properties to lock. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UnlockProperties + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockProperties(SDL_PropertiesID props); + +/** + * Unlock a group of properties. + * + * \param props the properties to unlock. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockProperties(SDL_PropertiesID props); + +/** + * A callback used to free resources when a property is deleted. + * + * This should release any resources associated with `value` that are no + * longer needed. + * + * This callback is set per-property. Different properties in the same group + * can have different cleanup callbacks. + * + * This callback will be called _during_ SDL_SetPointerPropertyWithCleanup if + * the function fails for any reason. + * + * \param userdata an app-defined pointer passed to the callback. + * \param value the pointer assigned to the property to clean up. + * + * \threadsafety This callback may fire without any locks held; if this is a + * concern, the app should provide its own locking. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetPointerPropertyWithCleanup + */ +typedef void (SDLCALL *SDL_CleanupPropertyCallback)(void *userdata, void *value); + +/** + * Set a pointer property in a group of properties with a cleanup function + * that is called when the property is deleted. + * + * The cleanup function is also called if setting the property fails for any + * reason. + * + * For simply setting basic data types, like numbers, bools, or strings, use + * SDL_SetNumberProperty, SDL_SetBooleanProperty, or SDL_SetStringProperty + * instead, as those functions will handle cleanup on your behalf. This + * function is only for more complex, custom data. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property, or NULL to delete the property. + * \param cleanup the function to call when this property is deleted, or NULL + * if no cleanup is necessary. + * \param userdata a pointer that is passed to the cleanup function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPointerProperty + * \sa SDL_SetPointerProperty + * \sa SDL_CleanupPropertyCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPointerPropertyWithCleanup(SDL_PropertiesID props, const char *name, void *value, SDL_CleanupPropertyCallback cleanup, void *userdata); + +/** + * Set a pointer property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property, or NULL to delete the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPointerProperty + * \sa SDL_HasProperty + * \sa SDL_SetBooleanProperty + * \sa SDL_SetFloatProperty + * \sa SDL_SetNumberProperty + * \sa SDL_SetPointerPropertyWithCleanup + * \sa SDL_SetStringProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPointerProperty(SDL_PropertiesID props, const char *name, void *value); + +/** + * Set a string property in a group of properties. + * + * This function makes a copy of the string; the caller does not have to + * preserve the data after this call completes. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property, or NULL to delete the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetStringProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetStringProperty(SDL_PropertiesID props, const char *name, const char *value); + +/** + * Set an integer property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumberProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetNumberProperty(SDL_PropertiesID props, const char *name, Sint64 value); + +/** + * Set a floating point property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetFloatProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetFloatProperty(SDL_PropertiesID props, const char *name, float value); + +/** + * Set a boolean property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetBooleanProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetBooleanProperty(SDL_PropertiesID props, const char *name, bool value); + +/** + * Return whether a property exists in a group of properties. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \returns true if the property exists, or false if it doesn't. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasProperty(SDL_PropertiesID props, const char *name); + +/** + * Get the type of a property in a group of properties. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \returns the type of the property, or SDL_PROPERTY_TYPE_INVALID if it is + * not set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasProperty + */ +extern SDL_DECLSPEC SDL_PropertyType SDLCALL SDL_GetPropertyType(SDL_PropertiesID props, const char *name); + +/** + * Get a pointer property from a group of properties. + * + * By convention, the names of properties that SDL exposes on objects will + * start with "SDL.", and properties that SDL uses internally will start with + * "SDL.internal.". These should be considered read-only and should not be + * modified by applications. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a pointer property. + * + * \threadsafety It is safe to call this function from any thread, although + * the data returned is not protected and could potentially be + * freed if you call SDL_SetPointerProperty() or + * SDL_ClearProperty() on these properties from another thread. + * If you need to avoid this, use SDL_LockProperties() and + * SDL_UnlockProperties(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetBooleanProperty + * \sa SDL_GetFloatProperty + * \sa SDL_GetNumberProperty + * \sa SDL_GetPropertyType + * \sa SDL_GetStringProperty + * \sa SDL_HasProperty + * \sa SDL_SetPointerProperty + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetPointerProperty(SDL_PropertiesID props, const char *name, void *default_value); + +/** + * Get a string property from a group of properties. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a string property. + * + * \threadsafety It is safe to call this function from any thread, although + * the data returned is not protected and could potentially be + * freed if you call SDL_SetStringProperty() or + * SDL_ClearProperty() on these properties from another thread. + * If you need to avoid this, use SDL_LockProperties() and + * SDL_UnlockProperties(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetStringProperty + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetStringProperty(SDL_PropertiesID props, const char *name, const char *default_value); + +/** + * Get a number property from a group of properties. + * + * You can use SDL_GetPropertyType() to query whether the property exists and + * is a number property. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a number property. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetNumberProperty + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_GetNumberProperty(SDL_PropertiesID props, const char *name, Sint64 default_value); + +/** + * Get a floating point property from a group of properties. + * + * You can use SDL_GetPropertyType() to query whether the property exists and + * is a floating point property. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a float property. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetFloatProperty + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetFloatProperty(SDL_PropertiesID props, const char *name, float default_value); + +/** + * Get a boolean property from a group of properties. + * + * You can use SDL_GetPropertyType() to query whether the property exists and + * is a boolean property. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a boolean property. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetBooleanProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetBooleanProperty(SDL_PropertiesID props, const char *name, bool default_value); + +/** + * Clear a property from a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to clear. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearProperty(SDL_PropertiesID props, const char *name); + +/** + * A callback used to enumerate all the properties in a group of properties. + * + * This callback is called from SDL_EnumerateProperties(), and is called once + * per property in the set. + * + * \param userdata an app-defined pointer passed to the callback. + * \param props the SDL_PropertiesID that is being enumerated. + * \param name the next property name in the enumeration. + * + * \threadsafety SDL_EnumerateProperties holds a lock on `props` during this + * callback. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EnumerateProperties + */ +typedef void (SDLCALL *SDL_EnumeratePropertiesCallback)(void *userdata, SDL_PropertiesID props, const char *name); + +/** + * Enumerate the properties contained in a group of properties. + * + * The callback function is called for each property in the group of + * properties. The properties are locked during enumeration. + * + * \param props the properties to query. + * \param callback the function to call for each property. + * \param userdata a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnumerateProperties(SDL_PropertiesID props, SDL_EnumeratePropertiesCallback callback, void *userdata); + +/** + * Destroy a group of properties. + * + * All properties are deleted and their cleanup functions will be called, if + * any. + * + * \param props the properties to destroy. + * + * \threadsafety This function should not be called while these properties are + * locked or other threads might be setting or getting values + * from these properties. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyProperties(SDL_PropertiesID props); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_properties_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_rect.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_rect.h new file mode 100644 index 0000000..eb2d34a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_rect.h @@ -0,0 +1,507 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryRect + * + * Some helper functions for managing rectangles and 2D points, in both + * integer and floating point versions. + */ + +#ifndef SDL_rect_h_ +#define SDL_rect_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The structure that defines a point (using integers). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetRectEnclosingPoints + * \sa SDL_PointInRect + */ +typedef struct SDL_Point +{ + int x; + int y; +} SDL_Point; + +/** + * The structure that defines a point (using floating point values). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetRectEnclosingPointsFloat + * \sa SDL_PointInRectFloat + */ +typedef struct SDL_FPoint +{ + float x; + float y; +} SDL_FPoint; + + +/** + * A rectangle, with the origin at the upper left (using integers). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_RectEmpty + * \sa SDL_RectsEqual + * \sa SDL_HasRectIntersection + * \sa SDL_GetRectIntersection + * \sa SDL_GetRectAndLineIntersection + * \sa SDL_GetRectUnion + * \sa SDL_GetRectEnclosingPoints + */ +typedef struct SDL_Rect +{ + int x, y; + int w, h; +} SDL_Rect; + + +/** + * A rectangle, with the origin at the upper left (using floating point + * values). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_RectEmptyFloat + * \sa SDL_RectsEqualFloat + * \sa SDL_RectsEqualEpsilon + * \sa SDL_HasRectIntersectionFloat + * \sa SDL_GetRectIntersectionFloat + * \sa SDL_GetRectAndLineIntersectionFloat + * \sa SDL_GetRectUnionFloat + * \sa SDL_GetRectEnclosingPointsFloat + * \sa SDL_PointInRectFloat + */ +typedef struct SDL_FRect +{ + float x; + float y; + float w; + float h; +} SDL_FRect; + + +/** + * Convert an SDL_Rect to SDL_FRect + * + * \param rect a pointer to an SDL_Rect. + * \param frect a pointer filled in with the floating point representation of + * `rect`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE void SDL_RectToFRect(const SDL_Rect *rect, SDL_FRect *frect) +{ + frect->x = (float)rect->x; + frect->y = (float)rect->y; + frect->w = (float)rect->w; + frect->h = (float)rect->h; +} + +/** + * Determine whether a point resides inside a rectangle. + * + * A point is considered part of a rectangle if both `p` and `r` are not NULL, + * and `p`'s x and y coordinates are >= to the rectangle's top left corner, + * and < the rectangle's x+w and y+h. So a 1x1 rectangle considers point (0,0) + * as "inside" and (0,1) as not. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param p the point to test. + * \param r the rectangle to test. + * \returns true if `p` is contained by `r`, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_PointInRect(const SDL_Point *p, const SDL_Rect *r) +{ + return ( p && r && (p->x >= r->x) && (p->x < (r->x + r->w)) && + (p->y >= r->y) && (p->y < (r->y + r->h)) ) ? true : false; +} + +/** + * Determine whether a rectangle has no area. + * + * A rectangle is considered "empty" for this function if `r` is NULL, or if + * `r`'s width and/or height are <= 0. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param r the rectangle to test. + * \returns true if the rectangle is "empty", false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_RectEmpty(const SDL_Rect *r) +{ + return ((!r) || (r->w <= 0) || (r->h <= 0)) ? true : false; +} + +/** + * Determine whether two rectangles are equal. + * + * Rectangles are considered equal if both are not NULL and each of their x, + * y, width and height match. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param a the first rectangle to test. + * \param b the second rectangle to test. + * \returns true if the rectangles are equal, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_RectsEqual(const SDL_Rect *a, const SDL_Rect *b) +{ + return (a && b && (a->x == b->x) && (a->y == b->y) && + (a->w == b->w) && (a->h == b->h)) ? true : false; +} + +/** + * Determine whether two rectangles intersect. + * + * If either pointer is NULL the function will return false. + * + * \param A an SDL_Rect structure representing the first rectangle. + * \param B an SDL_Rect structure representing the second rectangle. + * \returns true if there is an intersection, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRectIntersection + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasRectIntersection(const SDL_Rect *A, const SDL_Rect *B); + +/** + * Calculate the intersection of two rectangles. + * + * If `result` is NULL then this function will return false. + * + * \param A an SDL_Rect structure representing the first rectangle. + * \param B an SDL_Rect structure representing the second rectangle. + * \param result an SDL_Rect structure filled in with the intersection of + * rectangles `A` and `B`. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasRectIntersection + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectIntersection(const SDL_Rect *A, const SDL_Rect *B, SDL_Rect *result); + +/** + * Calculate the union of two rectangles. + * + * \param A an SDL_Rect structure representing the first rectangle. + * \param B an SDL_Rect structure representing the second rectangle. + * \param result an SDL_Rect structure filled in with the union of rectangles + * `A` and `B`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectUnion(const SDL_Rect *A, const SDL_Rect *B, SDL_Rect *result); + +/** + * Calculate a minimal rectangle enclosing a set of points. + * + * If `clip` is not NULL then only points inside of the clipping rectangle are + * considered. + * + * \param points an array of SDL_Point structures representing points to be + * enclosed. + * \param count the number of structures in the `points` array. + * \param clip an SDL_Rect used for clipping or NULL to enclose all points. + * \param result an SDL_Rect structure filled in with the minimal enclosing + * rectangle. + * \returns true if any points were enclosed or false if all the points were + * outside of the clipping rectangle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectEnclosingPoints(const SDL_Point *points, int count, const SDL_Rect *clip, SDL_Rect *result); + +/** + * Calculate the intersection of a rectangle and line segment. + * + * This function is used to clip a line segment to a rectangle. A line segment + * contained entirely within the rectangle or that does not intersect will + * remain unchanged. A line segment that crosses the rectangle at either or + * both ends will be clipped to the boundary of the rectangle and the new + * coordinates saved in `X1`, `Y1`, `X2`, and/or `Y2` as necessary. + * + * \param rect an SDL_Rect structure representing the rectangle to intersect. + * \param X1 a pointer to the starting X-coordinate of the line. + * \param Y1 a pointer to the starting Y-coordinate of the line. + * \param X2 a pointer to the ending X-coordinate of the line. + * \param Y2 a pointer to the ending Y-coordinate of the line. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectAndLineIntersection(const SDL_Rect *rect, int *X1, int *Y1, int *X2, int *Y2); + + +/* SDL_FRect versions... */ + +/** + * Determine whether a point resides inside a floating point rectangle. + * + * A point is considered part of a rectangle if both `p` and `r` are not NULL, + * and `p`'s x and y coordinates are >= to the rectangle's top left corner, + * and <= the rectangle's x+w and y+h. So a 1x1 rectangle considers point + * (0,0) and (0,1) as "inside" and (0,2) as not. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param p the point to test. + * \param r the rectangle to test. + * \returns true if `p` is contained by `r`, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_PointInRectFloat(const SDL_FPoint *p, const SDL_FRect *r) +{ + return ( p && r && (p->x >= r->x) && (p->x <= (r->x + r->w)) && + (p->y >= r->y) && (p->y <= (r->y + r->h)) ) ? true : false; +} + +/** + * Determine whether a floating point rectangle can contain any point. + * + * A rectangle is considered "empty" for this function if `r` is NULL, or if + * `r`'s width and/or height are < 0.0f. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param r the rectangle to test. + * \returns true if the rectangle is "empty", false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_RectEmptyFloat(const SDL_FRect *r) +{ + return ((!r) || (r->w < 0.0f) || (r->h < 0.0f)) ? true : false; +} + +/** + * Determine whether two floating point rectangles are equal, within some + * given epsilon. + * + * Rectangles are considered equal if both are not NULL and each of their x, + * y, width and height are within `epsilon` of each other. If you don't know + * what value to use for `epsilon`, you should call the SDL_RectsEqualFloat + * function instead. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param a the first rectangle to test. + * \param b the second rectangle to test. + * \param epsilon the epsilon value for comparison. + * \returns true if the rectangles are equal, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RectsEqualFloat + */ +SDL_FORCE_INLINE bool SDL_RectsEqualEpsilon(const SDL_FRect *a, const SDL_FRect *b, float epsilon) +{ + return (a && b && ((a == b) || + ((SDL_fabsf(a->x - b->x) <= epsilon) && + (SDL_fabsf(a->y - b->y) <= epsilon) && + (SDL_fabsf(a->w - b->w) <= epsilon) && + (SDL_fabsf(a->h - b->h) <= epsilon)))) + ? true : false; +} + +/** + * Determine whether two floating point rectangles are equal, within a default + * epsilon. + * + * Rectangles are considered equal if both are not NULL and each of their x, + * y, width and height are within SDL_FLT_EPSILON of each other. This is often + * a reasonable way to compare two floating point rectangles and deal with the + * slight precision variations in floating point calculations that tend to pop + * up. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param a the first rectangle to test. + * \param b the second rectangle to test. + * \returns true if the rectangles are equal, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RectsEqualEpsilon + */ +SDL_FORCE_INLINE bool SDL_RectsEqualFloat(const SDL_FRect *a, const SDL_FRect *b) +{ + return SDL_RectsEqualEpsilon(a, b, SDL_FLT_EPSILON); +} + +/** + * Determine whether two rectangles intersect with float precision. + * + * If either pointer is NULL the function will return false. + * + * \param A an SDL_FRect structure representing the first rectangle. + * \param B an SDL_FRect structure representing the second rectangle. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRectIntersection + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasRectIntersectionFloat(const SDL_FRect *A, const SDL_FRect *B); + +/** + * Calculate the intersection of two rectangles with float precision. + * + * If `result` is NULL then this function will return false. + * + * \param A an SDL_FRect structure representing the first rectangle. + * \param B an SDL_FRect structure representing the second rectangle. + * \param result an SDL_FRect structure filled in with the intersection of + * rectangles `A` and `B`. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasRectIntersectionFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectIntersectionFloat(const SDL_FRect *A, const SDL_FRect *B, SDL_FRect *result); + +/** + * Calculate the union of two rectangles with float precision. + * + * \param A an SDL_FRect structure representing the first rectangle. + * \param B an SDL_FRect structure representing the second rectangle. + * \param result an SDL_FRect structure filled in with the union of rectangles + * `A` and `B`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectUnionFloat(const SDL_FRect *A, const SDL_FRect *B, SDL_FRect *result); + +/** + * Calculate a minimal rectangle enclosing a set of points with float + * precision. + * + * If `clip` is not NULL then only points inside of the clipping rectangle are + * considered. + * + * \param points an array of SDL_FPoint structures representing points to be + * enclosed. + * \param count the number of structures in the `points` array. + * \param clip an SDL_FRect used for clipping or NULL to enclose all points. + * \param result an SDL_FRect structure filled in with the minimal enclosing + * rectangle. + * \returns true if any points were enclosed or false if all the points were + * outside of the clipping rectangle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectEnclosingPointsFloat(const SDL_FPoint *points, int count, const SDL_FRect *clip, SDL_FRect *result); + +/** + * Calculate the intersection of a rectangle and line segment with float + * precision. + * + * This function is used to clip a line segment to a rectangle. A line segment + * contained entirely within the rectangle or that does not intersect will + * remain unchanged. A line segment that crosses the rectangle at either or + * both ends will be clipped to the boundary of the rectangle and the new + * coordinates saved in `X1`, `Y1`, `X2`, and/or `Y2` as necessary. + * + * \param rect an SDL_FRect structure representing the rectangle to intersect. + * \param X1 a pointer to the starting X-coordinate of the line. + * \param Y1 a pointer to the starting Y-coordinate of the line. + * \param X2 a pointer to the ending X-coordinate of the line. + * \param Y2 a pointer to the ending Y-coordinate of the line. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectAndLineIntersectionFloat(const SDL_FRect *rect, float *X1, float *Y1, float *X2, float *Y2); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_rect_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_render.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_render.h new file mode 100644 index 0000000..c9d184c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_render.h @@ -0,0 +1,2645 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryRender + * + * Header file for SDL 2D rendering functions. + * + * This API supports the following features: + * + * - single pixel points + * - single pixel lines + * - filled rectangles + * - texture images + * - 2D polygons + * + * The primitives may be drawn in opaque, blended, or additive modes. + * + * The texture images may be drawn in opaque, blended, or additive modes. They + * can have an additional color tint or alpha modulation applied to them, and + * may also be stretched with linear interpolation. + * + * This API is designed to accelerate simple 2D operations. You may want more + * functionality such as polygons and particle effects and in that case you + * should use SDL's OpenGL/Direct3D support, the SDL3 GPU API, or one of the + * many good 3D engines. + * + * These functions must be called from the main thread. See this bug for + * details: https://github.com/libsdl-org/SDL/issues/986 + */ + +#ifndef SDL_render_h_ +#define SDL_render_h_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The name of the software renderer. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SOFTWARE_RENDERER "software" + +/** + * Vertex structure. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Vertex +{ + SDL_FPoint position; /**< Vertex position, in SDL_Renderer coordinates */ + SDL_FColor color; /**< Vertex color */ + SDL_FPoint tex_coord; /**< Normalized texture coordinates, if needed */ +} SDL_Vertex; + +/** + * The access pattern allowed for a texture. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_TextureAccess +{ + SDL_TEXTUREACCESS_STATIC, /**< Changes rarely, not lockable */ + SDL_TEXTUREACCESS_STREAMING, /**< Changes frequently, lockable */ + SDL_TEXTUREACCESS_TARGET /**< Texture can be used as a render target */ +} SDL_TextureAccess; + +/** + * How the logical size is mapped to the output. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_RendererLogicalPresentation +{ + SDL_LOGICAL_PRESENTATION_DISABLED, /**< There is no logical size in effect */ + SDL_LOGICAL_PRESENTATION_STRETCH, /**< The rendered content is stretched to the output resolution */ + SDL_LOGICAL_PRESENTATION_LETTERBOX, /**< The rendered content is fit to the largest dimension and the other dimension is letterboxed with black bars */ + SDL_LOGICAL_PRESENTATION_OVERSCAN, /**< The rendered content is fit to the smallest dimension and the other dimension extends beyond the output bounds */ + SDL_LOGICAL_PRESENTATION_INTEGER_SCALE /**< The rendered content is scaled up by integer multiples to fit the output resolution */ +} SDL_RendererLogicalPresentation; + +/** + * A structure representing rendering state + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Renderer SDL_Renderer; + +#ifndef SDL_INTERNAL + +/** + * An efficient driver-specific representation of pixel data + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureFromSurface + * \sa SDL_CreateTextureWithProperties + * \sa SDL_DestroyTexture + */ +struct SDL_Texture +{ + SDL_PixelFormat format; /**< The format of the texture, read-only */ + int w; /**< The width of the texture, read-only. */ + int h; /**< The height of the texture, read-only. */ + + int refcount; /**< Application reference count, used when freeing texture */ +}; +#endif /* !SDL_INTERNAL */ + +typedef struct SDL_Texture SDL_Texture; + +/* Function prototypes */ + +/** + * Get the number of 2D rendering drivers available for the current display. + * + * A render driver is a set of code that handles rendering and texture + * management on a particular display. Normally there is only one, but some + * drivers may have several available with different capabilities. + * + * There may be none if SDL was compiled without render support. + * + * \returns the number of built in render drivers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_GetRenderDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumRenderDrivers(void); + +/** + * Use this function to get the name of a built in 2D rendering driver. + * + * The list of rendering drivers is given in the order that they are normally + * initialized by default; the drivers that seem more reasonable to choose + * first (as far as the SDL developers believe) are earlier in the list. + * + * The names of drivers are all simple, low-ASCII identifiers, like "opengl", + * "direct3d12" or "metal". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of the rendering driver; the value ranges from 0 to + * SDL_GetNumRenderDrivers() - 1. + * \returns the name of the rendering driver at the requested index, or NULL + * if an invalid index was specified. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumRenderDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetRenderDriver(int index); + +/** + * Create a window and default renderer. + * + * \param title the title of the window, in UTF-8 encoding. + * \param width the width of the window. + * \param height the height of the window. + * \param window_flags the flags used to create the window (see + * SDL_CreateWindow()). + * \param window a pointer filled with the window, or NULL on error. + * \param renderer a pointer filled with the renderer, or NULL on error. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_CreateWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CreateWindowAndRenderer(const char *title, int width, int height, SDL_WindowFlags window_flags, SDL_Window **window, SDL_Renderer **renderer); + +/** + * Create a 2D rendering context for a window. + * + * If you want a specific renderer, you can specify its name here. A list of + * available renderers can be obtained by calling SDL_GetRenderDriver() + * multiple times, with indices from 0 to SDL_GetNumRenderDrivers()-1. If you + * don't need a specific renderer, specify NULL and SDL will attempt to choose + * the best option for you, based on what is available on the user's system. + * + * If `name` is a comma-separated list, SDL will try each name, in the order + * listed, until one succeeds or all of them fail. + * + * By default the rendering size matches the window size in pixels, but you + * can call SDL_SetRenderLogicalPresentation() to change the content size and + * scaling options. + * + * \param window the window where rendering is displayed. + * \param name the name of the rendering driver to initialize, or NULL to let + * SDL choose one. + * \returns a valid rendering context or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRendererWithProperties + * \sa SDL_CreateSoftwareRenderer + * \sa SDL_DestroyRenderer + * \sa SDL_GetNumRenderDrivers + * \sa SDL_GetRenderDriver + * \sa SDL_GetRendererName + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_CreateRenderer(SDL_Window *window, const char *name); + +/** + * Create a 2D rendering context for a window, with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_RENDERER_CREATE_NAME_STRING`: the name of the rendering driver + * to use, if a specific one is desired + * - `SDL_PROP_RENDERER_CREATE_WINDOW_POINTER`: the window where rendering is + * displayed, required if this isn't a software renderer using a surface + * - `SDL_PROP_RENDERER_CREATE_SURFACE_POINTER`: the surface where rendering + * is displayed, if you want a software renderer without a window + * - `SDL_PROP_RENDERER_CREATE_OUTPUT_COLORSPACE_NUMBER`: an SDL_Colorspace + * value describing the colorspace for output to the display, defaults to + * SDL_COLORSPACE_SRGB. The direct3d11, direct3d12, and metal renderers + * support SDL_COLORSPACE_SRGB_LINEAR, which is a linear color space and + * supports HDR output. If you select SDL_COLORSPACE_SRGB_LINEAR, drawing + * still uses the sRGB colorspace, but values can go beyond 1.0 and float + * (linear) format textures can be used for HDR content. + * - `SDL_PROP_RENDERER_CREATE_PRESENT_VSYNC_NUMBER`: non-zero if you want + * present synchronized with the refresh rate. This property can take any + * value that is supported by SDL_SetRenderVSync() for the renderer. + * + * With the vulkan renderer: + * + * - `SDL_PROP_RENDERER_CREATE_VULKAN_INSTANCE_POINTER`: the VkInstance to use + * with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_SURFACE_NUMBER`: the VkSurfaceKHR to use + * with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_PHYSICAL_DEVICE_POINTER`: the + * VkPhysicalDevice to use with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_DEVICE_POINTER`: the VkDevice to use + * with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER`: the + * queue family index used for rendering. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER`: the + * queue family index used for presentation. + * + * \param props the properties to use. + * \returns a valid rendering context or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + * \sa SDL_CreateRenderer + * \sa SDL_CreateSoftwareRenderer + * \sa SDL_DestroyRenderer + * \sa SDL_GetRendererName + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_CreateRendererWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_RENDERER_CREATE_NAME_STRING "SDL.renderer.create.name" +#define SDL_PROP_RENDERER_CREATE_WINDOW_POINTER "SDL.renderer.create.window" +#define SDL_PROP_RENDERER_CREATE_SURFACE_POINTER "SDL.renderer.create.surface" +#define SDL_PROP_RENDERER_CREATE_OUTPUT_COLORSPACE_NUMBER "SDL.renderer.create.output_colorspace" +#define SDL_PROP_RENDERER_CREATE_PRESENT_VSYNC_NUMBER "SDL.renderer.create.present_vsync" +#define SDL_PROP_RENDERER_CREATE_VULKAN_INSTANCE_POINTER "SDL.renderer.create.vulkan.instance" +#define SDL_PROP_RENDERER_CREATE_VULKAN_SURFACE_NUMBER "SDL.renderer.create.vulkan.surface" +#define SDL_PROP_RENDERER_CREATE_VULKAN_PHYSICAL_DEVICE_POINTER "SDL.renderer.create.vulkan.physical_device" +#define SDL_PROP_RENDERER_CREATE_VULKAN_DEVICE_POINTER "SDL.renderer.create.vulkan.device" +#define SDL_PROP_RENDERER_CREATE_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.create.vulkan.graphics_queue_family_index" +#define SDL_PROP_RENDERER_CREATE_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.create.vulkan.present_queue_family_index" + +/** + * Create a 2D software rendering context for a surface. + * + * Two other API which can be used to create SDL_Renderer: + * SDL_CreateRenderer() and SDL_CreateWindowAndRenderer(). These can _also_ + * create a software renderer, but they are intended to be used with an + * SDL_Window as the final destination and not an SDL_Surface. + * + * \param surface the SDL_Surface structure representing the surface where + * rendering is done. + * \returns a valid rendering context or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyRenderer + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_CreateSoftwareRenderer(SDL_Surface *surface); + +/** + * Get the renderer associated with a window. + * + * \param window the window to query. + * \returns the rendering context on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_GetRenderer(SDL_Window *window); + +/** + * Get the window associated with a renderer. + * + * \param renderer the renderer to query. + * \returns the window on success or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetRenderWindow(SDL_Renderer *renderer); + +/** + * Get the name of a renderer. + * + * \param renderer the rendering context. + * \returns the name of the selected renderer, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_CreateRendererWithProperties + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetRendererName(SDL_Renderer *renderer); + +/** + * Get the properties associated with a renderer. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_RENDERER_NAME_STRING`: the name of the rendering driver + * - `SDL_PROP_RENDERER_WINDOW_POINTER`: the window where rendering is + * displayed, if any + * - `SDL_PROP_RENDERER_SURFACE_POINTER`: the surface where rendering is + * displayed, if this is a software renderer without a window + * - `SDL_PROP_RENDERER_VSYNC_NUMBER`: the current vsync setting + * - `SDL_PROP_RENDERER_MAX_TEXTURE_SIZE_NUMBER`: the maximum texture width + * and height + * - `SDL_PROP_RENDERER_TEXTURE_FORMATS_POINTER`: a (const SDL_PixelFormat *) + * array of pixel formats, terminated with SDL_PIXELFORMAT_UNKNOWN, + * representing the available texture formats for this renderer. + * - `SDL_PROP_RENDERER_OUTPUT_COLORSPACE_NUMBER`: an SDL_Colorspace value + * describing the colorspace for output to the display, defaults to + * SDL_COLORSPACE_SRGB. + * - `SDL_PROP_RENDERER_HDR_ENABLED_BOOLEAN`: true if the output colorspace is + * SDL_COLORSPACE_SRGB_LINEAR and the renderer is showing on a display with + * HDR enabled. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_RENDERER_SDR_WHITE_POINT_FLOAT`: the value of SDR white in the + * SDL_COLORSPACE_SRGB_LINEAR colorspace. When HDR is enabled, this value is + * automatically multiplied into the color scale. This property can change + * dynamically when SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_RENDERER_HDR_HEADROOM_FLOAT`: the additional high dynamic range + * that can be displayed, in terms of the SDR white point. When HDR is not + * enabled, this will be 1.0. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * + * With the direct3d renderer: + * + * - `SDL_PROP_RENDERER_D3D9_DEVICE_POINTER`: the IDirect3DDevice9 associated + * with the renderer + * + * With the direct3d11 renderer: + * + * - `SDL_PROP_RENDERER_D3D11_DEVICE_POINTER`: the ID3D11Device associated + * with the renderer + * - `SDL_PROP_RENDERER_D3D11_SWAPCHAIN_POINTER`: the IDXGISwapChain1 + * associated with the renderer. This may change when the window is resized. + * + * With the direct3d12 renderer: + * + * - `SDL_PROP_RENDERER_D3D12_DEVICE_POINTER`: the ID3D12Device associated + * with the renderer + * - `SDL_PROP_RENDERER_D3D12_SWAPCHAIN_POINTER`: the IDXGISwapChain4 + * associated with the renderer. + * - `SDL_PROP_RENDERER_D3D12_COMMAND_QUEUE_POINTER`: the ID3D12CommandQueue + * associated with the renderer + * + * With the vulkan renderer: + * + * - `SDL_PROP_RENDERER_VULKAN_INSTANCE_POINTER`: the VkInstance associated + * with the renderer + * - `SDL_PROP_RENDERER_VULKAN_SURFACE_NUMBER`: the VkSurfaceKHR associated + * with the renderer + * - `SDL_PROP_RENDERER_VULKAN_PHYSICAL_DEVICE_POINTER`: the VkPhysicalDevice + * associated with the renderer + * - `SDL_PROP_RENDERER_VULKAN_DEVICE_POINTER`: the VkDevice associated with + * the renderer + * - `SDL_PROP_RENDERER_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER`: the queue + * family index used for rendering + * - `SDL_PROP_RENDERER_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER`: the queue + * family index used for presentation + * - `SDL_PROP_RENDERER_VULKAN_SWAPCHAIN_IMAGE_COUNT_NUMBER`: the number of + * swapchain images, or potential frames in flight, used by the Vulkan + * renderer + * + * With the gpu renderer: + * + * - `SDL_PROP_RENDERER_GPU_DEVICE_POINTER`: the SDL_GPUDevice associated with + * the renderer + * + * \param renderer the rendering context. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetRendererProperties(SDL_Renderer *renderer); + +#define SDL_PROP_RENDERER_NAME_STRING "SDL.renderer.name" +#define SDL_PROP_RENDERER_WINDOW_POINTER "SDL.renderer.window" +#define SDL_PROP_RENDERER_SURFACE_POINTER "SDL.renderer.surface" +#define SDL_PROP_RENDERER_VSYNC_NUMBER "SDL.renderer.vsync" +#define SDL_PROP_RENDERER_MAX_TEXTURE_SIZE_NUMBER "SDL.renderer.max_texture_size" +#define SDL_PROP_RENDERER_TEXTURE_FORMATS_POINTER "SDL.renderer.texture_formats" +#define SDL_PROP_RENDERER_OUTPUT_COLORSPACE_NUMBER "SDL.renderer.output_colorspace" +#define SDL_PROP_RENDERER_HDR_ENABLED_BOOLEAN "SDL.renderer.HDR_enabled" +#define SDL_PROP_RENDERER_SDR_WHITE_POINT_FLOAT "SDL.renderer.SDR_white_point" +#define SDL_PROP_RENDERER_HDR_HEADROOM_FLOAT "SDL.renderer.HDR_headroom" +#define SDL_PROP_RENDERER_D3D9_DEVICE_POINTER "SDL.renderer.d3d9.device" +#define SDL_PROP_RENDERER_D3D11_DEVICE_POINTER "SDL.renderer.d3d11.device" +#define SDL_PROP_RENDERER_D3D11_SWAPCHAIN_POINTER "SDL.renderer.d3d11.swap_chain" +#define SDL_PROP_RENDERER_D3D12_DEVICE_POINTER "SDL.renderer.d3d12.device" +#define SDL_PROP_RENDERER_D3D12_SWAPCHAIN_POINTER "SDL.renderer.d3d12.swap_chain" +#define SDL_PROP_RENDERER_D3D12_COMMAND_QUEUE_POINTER "SDL.renderer.d3d12.command_queue" +#define SDL_PROP_RENDERER_VULKAN_INSTANCE_POINTER "SDL.renderer.vulkan.instance" +#define SDL_PROP_RENDERER_VULKAN_SURFACE_NUMBER "SDL.renderer.vulkan.surface" +#define SDL_PROP_RENDERER_VULKAN_PHYSICAL_DEVICE_POINTER "SDL.renderer.vulkan.physical_device" +#define SDL_PROP_RENDERER_VULKAN_DEVICE_POINTER "SDL.renderer.vulkan.device" +#define SDL_PROP_RENDERER_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.vulkan.graphics_queue_family_index" +#define SDL_PROP_RENDERER_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.vulkan.present_queue_family_index" +#define SDL_PROP_RENDERER_VULKAN_SWAPCHAIN_IMAGE_COUNT_NUMBER "SDL.renderer.vulkan.swapchain_image_count" +#define SDL_PROP_RENDERER_GPU_DEVICE_POINTER "SDL.renderer.gpu.device" + +/** + * Get the output size in pixels of a rendering context. + * + * This returns the true output size in pixels, ignoring any render targets or + * logical size and presentation. + * + * For the output size of the current rendering target, with logical size + * adjustments, use SDL_GetCurrentRenderOutputSize() instead. + * + * \param renderer the rendering context. + * \param w a pointer filled in with the width in pixels. + * \param h a pointer filled in with the height in pixels. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentRenderOutputSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderOutputSize(SDL_Renderer *renderer, int *w, int *h); + +/** + * Get the current output size in pixels of a rendering context. + * + * If a rendering target is active, this will return the size of the rendering + * target in pixels, otherwise return the value of SDL_GetRenderOutputSize(). + * + * Rendering target or not, the output will be adjusted by the current logical + * presentation state, dictated by SDL_SetRenderLogicalPresentation(). + * + * \param renderer the rendering context. + * \param w a pointer filled in with the current width. + * \param h a pointer filled in with the current height. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderOutputSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetCurrentRenderOutputSize(SDL_Renderer *renderer, int *w, int *h); + +/** + * Create a texture for a rendering context. + * + * The contents of a texture when first created are not defined. + * + * \param renderer the rendering context. + * \param format one of the enumerated values in SDL_PixelFormat. + * \param access one of the enumerated values in SDL_TextureAccess. + * \param w the width of the texture in pixels. + * \param h the height of the texture in pixels. + * \returns the created texture or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTextureFromSurface + * \sa SDL_CreateTextureWithProperties + * \sa SDL_DestroyTexture + * \sa SDL_GetTextureSize + * \sa SDL_UpdateTexture + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_CreateTexture(SDL_Renderer *renderer, SDL_PixelFormat format, SDL_TextureAccess access, int w, int h); + +/** + * Create a texture from an existing surface. + * + * The surface is not modified or freed by this function. + * + * The SDL_TextureAccess hint for the created texture is + * `SDL_TEXTUREACCESS_STATIC`. + * + * The pixel format of the created texture may be different from the pixel + * format of the surface, and can be queried using the + * SDL_PROP_TEXTURE_FORMAT_NUMBER property. + * + * \param renderer the rendering context. + * \param surface the SDL_Surface structure containing pixel data used to fill + * the texture. + * \returns the created texture or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureWithProperties + * \sa SDL_DestroyTexture + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_CreateTextureFromSurface(SDL_Renderer *renderer, SDL_Surface *surface); + +/** + * Create a texture for a rendering context with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_TEXTURE_CREATE_COLORSPACE_NUMBER`: an SDL_Colorspace value + * describing the texture colorspace, defaults to SDL_COLORSPACE_SRGB_LINEAR + * for floating point textures, SDL_COLORSPACE_HDR10 for 10-bit textures, + * SDL_COLORSPACE_SRGB for other RGB textures and SDL_COLORSPACE_JPEG for + * YUV textures. + * - `SDL_PROP_TEXTURE_CREATE_FORMAT_NUMBER`: one of the enumerated values in + * SDL_PixelFormat, defaults to the best RGBA format for the renderer + * - `SDL_PROP_TEXTURE_CREATE_ACCESS_NUMBER`: one of the enumerated values in + * SDL_TextureAccess, defaults to SDL_TEXTUREACCESS_STATIC + * - `SDL_PROP_TEXTURE_CREATE_WIDTH_NUMBER`: the width of the texture in + * pixels, required + * - `SDL_PROP_TEXTURE_CREATE_HEIGHT_NUMBER`: the height of the texture in + * pixels, required + * - `SDL_PROP_TEXTURE_CREATE_SDR_WHITE_POINT_FLOAT`: for HDR10 and floating + * point textures, this defines the value of 100% diffuse white, with higher + * values being displayed in the High Dynamic Range headroom. This defaults + * to 100 for HDR10 textures and 1.0 for floating point textures. + * - `SDL_PROP_TEXTURE_CREATE_HDR_HEADROOM_FLOAT`: for HDR10 and floating + * point textures, this defines the maximum dynamic range used by the + * content, in terms of the SDR white point. This would be equivalent to + * maxCLL / SDL_PROP_TEXTURE_CREATE_SDR_WHITE_POINT_FLOAT for HDR10 content. + * If this is defined, any values outside the range supported by the display + * will be scaled into the available HDR headroom, otherwise they are + * clipped. + * + * With the direct3d11 renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_POINTER`: the ID3D11Texture2D + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_U_POINTER`: the ID3D11Texture2D + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_V_POINTER`: the ID3D11Texture2D + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the direct3d12 renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_POINTER`: the ID3D12Resource + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_U_POINTER`: the ID3D12Resource + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_V_POINTER`: the ID3D12Resource + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the metal renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_METAL_PIXELBUFFER_POINTER`: the CVPixelBufferRef + * associated with the texture, if you want to create a texture from an + * existing pixel buffer. + * + * With the opengl renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_U_NUMBER`: the GLuint texture + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_V_NUMBER`: the GLuint texture + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the opengles2 renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_U_NUMBER`: the GLuint texture + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_V_NUMBER`: the GLuint texture + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the vulkan renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_VULKAN_TEXTURE_NUMBER`: the VkImage with layout + * VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL associated with the texture, if + * you want to wrap an existing texture. + * + * \param renderer the rendering context. + * \param props the properties to use. + * \returns the created texture or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureFromSurface + * \sa SDL_DestroyTexture + * \sa SDL_GetTextureSize + * \sa SDL_UpdateTexture + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_CreateTextureWithProperties(SDL_Renderer *renderer, SDL_PropertiesID props); + +#define SDL_PROP_TEXTURE_CREATE_COLORSPACE_NUMBER "SDL.texture.create.colorspace" +#define SDL_PROP_TEXTURE_CREATE_FORMAT_NUMBER "SDL.texture.create.format" +#define SDL_PROP_TEXTURE_CREATE_ACCESS_NUMBER "SDL.texture.create.access" +#define SDL_PROP_TEXTURE_CREATE_WIDTH_NUMBER "SDL.texture.create.width" +#define SDL_PROP_TEXTURE_CREATE_HEIGHT_NUMBER "SDL.texture.create.height" +#define SDL_PROP_TEXTURE_CREATE_SDR_WHITE_POINT_FLOAT "SDL.texture.create.SDR_white_point" +#define SDL_PROP_TEXTURE_CREATE_HDR_HEADROOM_FLOAT "SDL.texture.create.HDR_headroom" +#define SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_POINTER "SDL.texture.create.d3d11.texture" +#define SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_U_POINTER "SDL.texture.create.d3d11.texture_u" +#define SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_V_POINTER "SDL.texture.create.d3d11.texture_v" +#define SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_POINTER "SDL.texture.create.d3d12.texture" +#define SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_U_POINTER "SDL.texture.create.d3d12.texture_u" +#define SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_V_POINTER "SDL.texture.create.d3d12.texture_v" +#define SDL_PROP_TEXTURE_CREATE_METAL_PIXELBUFFER_POINTER "SDL.texture.create.metal.pixelbuffer" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_NUMBER "SDL.texture.create.opengl.texture" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_UV_NUMBER "SDL.texture.create.opengl.texture_uv" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_U_NUMBER "SDL.texture.create.opengl.texture_u" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_V_NUMBER "SDL.texture.create.opengl.texture_v" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_NUMBER "SDL.texture.create.opengles2.texture" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_UV_NUMBER "SDL.texture.create.opengles2.texture_uv" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_U_NUMBER "SDL.texture.create.opengles2.texture_u" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_V_NUMBER "SDL.texture.create.opengles2.texture_v" +#define SDL_PROP_TEXTURE_CREATE_VULKAN_TEXTURE_NUMBER "SDL.texture.create.vulkan.texture" + +/** + * Get the properties associated with a texture. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_TEXTURE_COLORSPACE_NUMBER`: an SDL_Colorspace value describing + * the texture colorspace. + * - `SDL_PROP_TEXTURE_FORMAT_NUMBER`: one of the enumerated values in + * SDL_PixelFormat. + * - `SDL_PROP_TEXTURE_ACCESS_NUMBER`: one of the enumerated values in + * SDL_TextureAccess. + * - `SDL_PROP_TEXTURE_WIDTH_NUMBER`: the width of the texture in pixels. + * - `SDL_PROP_TEXTURE_HEIGHT_NUMBER`: the height of the texture in pixels. + * - `SDL_PROP_TEXTURE_SDR_WHITE_POINT_FLOAT`: for HDR10 and floating point + * textures, this defines the value of 100% diffuse white, with higher + * values being displayed in the High Dynamic Range headroom. This defaults + * to 100 for HDR10 textures and 1.0 for other textures. + * - `SDL_PROP_TEXTURE_HDR_HEADROOM_FLOAT`: for HDR10 and floating point + * textures, this defines the maximum dynamic range used by the content, in + * terms of the SDR white point. If this is defined, any values outside the + * range supported by the display will be scaled into the available HDR + * headroom, otherwise they are clipped. This defaults to 1.0 for SDR + * textures, 4.0 for HDR10 textures, and no default for floating point + * textures. + * + * With the direct3d11 renderer: + * + * - `SDL_PROP_TEXTURE_D3D11_TEXTURE_POINTER`: the ID3D11Texture2D associated + * with the texture + * - `SDL_PROP_TEXTURE_D3D11_TEXTURE_U_POINTER`: the ID3D11Texture2D + * associated with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_D3D11_TEXTURE_V_POINTER`: the ID3D11Texture2D + * associated with the V plane of a YUV texture + * + * With the direct3d12 renderer: + * + * - `SDL_PROP_TEXTURE_D3D12_TEXTURE_POINTER`: the ID3D12Resource associated + * with the texture + * - `SDL_PROP_TEXTURE_D3D12_TEXTURE_U_POINTER`: the ID3D12Resource associated + * with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_D3D12_TEXTURE_V_POINTER`: the ID3D12Resource associated + * with the V plane of a YUV texture + * + * With the vulkan renderer: + * + * - `SDL_PROP_TEXTURE_VULKAN_TEXTURE_NUMBER`: the VkImage associated with the + * texture + * + * With the opengl renderer: + * + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_NUMBER`: the GLuint texture associated + * with the texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_U_NUMBER`: the GLuint texture associated + * with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_V_NUMBER`: the GLuint texture associated + * with the V plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_TARGET_NUMBER`: the GLenum for the + * texture target (`GL_TEXTURE_2D`, `GL_TEXTURE_RECTANGLE_ARB`, etc) + * - `SDL_PROP_TEXTURE_OPENGL_TEX_W_FLOAT`: the texture coordinate width of + * the texture (0.0 - 1.0) + * - `SDL_PROP_TEXTURE_OPENGL_TEX_H_FLOAT`: the texture coordinate height of + * the texture (0.0 - 1.0) + * + * With the opengles2 renderer: + * + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_U_NUMBER`: the GLuint texture + * associated with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_V_NUMBER`: the GLuint texture + * associated with the V plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_TARGET_NUMBER`: the GLenum for the + * texture target (`GL_TEXTURE_2D`, `GL_TEXTURE_EXTERNAL_OES`, etc) + * + * \param texture the texture to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetTextureProperties(SDL_Texture *texture); + +#define SDL_PROP_TEXTURE_COLORSPACE_NUMBER "SDL.texture.colorspace" +#define SDL_PROP_TEXTURE_FORMAT_NUMBER "SDL.texture.format" +#define SDL_PROP_TEXTURE_ACCESS_NUMBER "SDL.texture.access" +#define SDL_PROP_TEXTURE_WIDTH_NUMBER "SDL.texture.width" +#define SDL_PROP_TEXTURE_HEIGHT_NUMBER "SDL.texture.height" +#define SDL_PROP_TEXTURE_SDR_WHITE_POINT_FLOAT "SDL.texture.SDR_white_point" +#define SDL_PROP_TEXTURE_HDR_HEADROOM_FLOAT "SDL.texture.HDR_headroom" +#define SDL_PROP_TEXTURE_D3D11_TEXTURE_POINTER "SDL.texture.d3d11.texture" +#define SDL_PROP_TEXTURE_D3D11_TEXTURE_U_POINTER "SDL.texture.d3d11.texture_u" +#define SDL_PROP_TEXTURE_D3D11_TEXTURE_V_POINTER "SDL.texture.d3d11.texture_v" +#define SDL_PROP_TEXTURE_D3D12_TEXTURE_POINTER "SDL.texture.d3d12.texture" +#define SDL_PROP_TEXTURE_D3D12_TEXTURE_U_POINTER "SDL.texture.d3d12.texture_u" +#define SDL_PROP_TEXTURE_D3D12_TEXTURE_V_POINTER "SDL.texture.d3d12.texture_v" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_NUMBER "SDL.texture.opengl.texture" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_UV_NUMBER "SDL.texture.opengl.texture_uv" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_U_NUMBER "SDL.texture.opengl.texture_u" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_V_NUMBER "SDL.texture.opengl.texture_v" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_TARGET_NUMBER "SDL.texture.opengl.target" +#define SDL_PROP_TEXTURE_OPENGL_TEX_W_FLOAT "SDL.texture.opengl.tex_w" +#define SDL_PROP_TEXTURE_OPENGL_TEX_H_FLOAT "SDL.texture.opengl.tex_h" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_NUMBER "SDL.texture.opengles2.texture" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_UV_NUMBER "SDL.texture.opengles2.texture_uv" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_U_NUMBER "SDL.texture.opengles2.texture_u" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_V_NUMBER "SDL.texture.opengles2.texture_v" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_TARGET_NUMBER "SDL.texture.opengles2.target" +#define SDL_PROP_TEXTURE_VULKAN_TEXTURE_NUMBER "SDL.texture.vulkan.texture" + +/** + * Get the renderer that created an SDL_Texture. + * + * \param texture the texture to query. + * \returns a pointer to the SDL_Renderer that created the texture, or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_GetRendererFromTexture(SDL_Texture *texture); + +/** + * Get the size of a texture, as floating point values. + * + * \param texture the texture to query. + * \param w a pointer filled in with the width of the texture in pixels. This + * argument can be NULL if you don't need this information. + * \param h a pointer filled in with the height of the texture in pixels. This + * argument can be NULL if you don't need this information. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureSize(SDL_Texture *texture, float *w, float *h); + +/** + * Set an additional color value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation each source color + * channel is modulated by the appropriate color value according to the + * following formula: + * + * `srcC = srcC * (color / 255)` + * + * Color modulation is not always supported by the renderer; it will return + * false if color modulation is not supported. + * + * \param texture the texture to update. + * \param r the red color value multiplied into copy operations. + * \param g the green color value multiplied into copy operations. + * \param b the blue color value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureColorMod + * \sa SDL_SetTextureAlphaMod + * \sa SDL_SetTextureColorModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureColorMod(SDL_Texture *texture, Uint8 r, Uint8 g, Uint8 b); + + +/** + * Set an additional color value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation each source color + * channel is modulated by the appropriate color value according to the + * following formula: + * + * `srcC = srcC * color` + * + * Color modulation is not always supported by the renderer; it will return + * false if color modulation is not supported. + * + * \param texture the texture to update. + * \param r the red color value multiplied into copy operations. + * \param g the green color value multiplied into copy operations. + * \param b the blue color value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureColorModFloat + * \sa SDL_SetTextureAlphaModFloat + * \sa SDL_SetTextureColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureColorModFloat(SDL_Texture *texture, float r, float g, float b); + + +/** + * Get the additional color value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param r a pointer filled in with the current red color value. + * \param g a pointer filled in with the current green color value. + * \param b a pointer filled in with the current blue color value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaMod + * \sa SDL_GetTextureColorModFloat + * \sa SDL_SetTextureColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureColorMod(SDL_Texture *texture, Uint8 *r, Uint8 *g, Uint8 *b); + +/** + * Get the additional color value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param r a pointer filled in with the current red color value. + * \param g a pointer filled in with the current green color value. + * \param b a pointer filled in with the current blue color value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaModFloat + * \sa SDL_GetTextureColorMod + * \sa SDL_SetTextureColorModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureColorModFloat(SDL_Texture *texture, float *r, float *g, float *b); + +/** + * Set an additional alpha value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation the source alpha + * value is modulated by this alpha value according to the following formula: + * + * `srcA = srcA * (alpha / 255)` + * + * Alpha modulation is not always supported by the renderer; it will return + * false if alpha modulation is not supported. + * + * \param texture the texture to update. + * \param alpha the source alpha value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaMod + * \sa SDL_SetTextureAlphaModFloat + * \sa SDL_SetTextureColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureAlphaMod(SDL_Texture *texture, Uint8 alpha); + +/** + * Set an additional alpha value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation the source alpha + * value is modulated by this alpha value according to the following formula: + * + * `srcA = srcA * alpha` + * + * Alpha modulation is not always supported by the renderer; it will return + * false if alpha modulation is not supported. + * + * \param texture the texture to update. + * \param alpha the source alpha value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaModFloat + * \sa SDL_SetTextureAlphaMod + * \sa SDL_SetTextureColorModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureAlphaModFloat(SDL_Texture *texture, float alpha); + +/** + * Get the additional alpha value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param alpha a pointer filled in with the current alpha value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaModFloat + * \sa SDL_GetTextureColorMod + * \sa SDL_SetTextureAlphaMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureAlphaMod(SDL_Texture *texture, Uint8 *alpha); + +/** + * Get the additional alpha value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param alpha a pointer filled in with the current alpha value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaMod + * \sa SDL_GetTextureColorModFloat + * \sa SDL_SetTextureAlphaModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureAlphaModFloat(SDL_Texture *texture, float *alpha); + +/** + * Set the blend mode for a texture, used by SDL_RenderTexture(). + * + * If the blend mode is not supported, the closest supported mode is chosen + * and this function returns false. + * + * \param texture the texture to update. + * \param blendMode the SDL_BlendMode to use for texture blending. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureBlendMode(SDL_Texture *texture, SDL_BlendMode blendMode); + +/** + * Get the blend mode used for texture copy operations. + * + * \param texture the texture to query. + * \param blendMode a pointer filled in with the current SDL_BlendMode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextureBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureBlendMode(SDL_Texture *texture, SDL_BlendMode *blendMode); + +/** + * Set the scale mode used for texture scale operations. + * + * The default texture scale mode is SDL_SCALEMODE_LINEAR. + * + * If the scale mode is not supported, the closest supported mode is chosen. + * + * \param texture the texture to update. + * \param scaleMode the SDL_ScaleMode to use for texture scaling. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureScaleMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureScaleMode(SDL_Texture *texture, SDL_ScaleMode scaleMode); + +/** + * Get the scale mode used for texture scale operations. + * + * \param texture the texture to query. + * \param scaleMode a pointer filled in with the current scale mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextureScaleMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureScaleMode(SDL_Texture *texture, SDL_ScaleMode *scaleMode); + +/** + * Update the given texture rectangle with new pixel data. + * + * The pixel data must be in the pixel format of the texture, which can be + * queried using the SDL_PROP_TEXTURE_FORMAT_NUMBER property. + * + * This is a fairly slow function, intended for use with static textures that + * do not change often. + * + * If the texture is intended to be updated often, it is preferred to create + * the texture as streaming and use the locking functions referenced below. + * While this function will work with streaming textures, for optimization + * reasons you may not get the pixels back if you lock the texture afterward. + * + * \param texture the texture to update. + * \param rect an SDL_Rect structure representing the area to update, or NULL + * to update the entire texture. + * \param pixels the raw pixel data in the format of the texture. + * \param pitch the number of bytes in a row of pixel data, including padding + * between lines. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTexture + * \sa SDL_UnlockTexture + * \sa SDL_UpdateNVTexture + * \sa SDL_UpdateYUVTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateTexture(SDL_Texture *texture, const SDL_Rect *rect, const void *pixels, int pitch); + +/** + * Update a rectangle within a planar YV12 or IYUV texture with new pixel + * data. + * + * You can use SDL_UpdateTexture() as long as your pixel data is a contiguous + * block of Y and U/V planes in the proper order, but this function is + * available if your pixel data is not contiguous. + * + * \param texture the texture to update. + * \param rect a pointer to the rectangle of pixels to update, or NULL to + * update the entire texture. + * \param Yplane the raw pixel data for the Y plane. + * \param Ypitch the number of bytes between rows of pixel data for the Y + * plane. + * \param Uplane the raw pixel data for the U plane. + * \param Upitch the number of bytes between rows of pixel data for the U + * plane. + * \param Vplane the raw pixel data for the V plane. + * \param Vpitch the number of bytes between rows of pixel data for the V + * plane. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UpdateNVTexture + * \sa SDL_UpdateTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateYUVTexture(SDL_Texture *texture, + const SDL_Rect *rect, + const Uint8 *Yplane, int Ypitch, + const Uint8 *Uplane, int Upitch, + const Uint8 *Vplane, int Vpitch); + +/** + * Update a rectangle within a planar NV12 or NV21 texture with new pixels. + * + * You can use SDL_UpdateTexture() as long as your pixel data is a contiguous + * block of NV12/21 planes in the proper order, but this function is available + * if your pixel data is not contiguous. + * + * \param texture the texture to update. + * \param rect a pointer to the rectangle of pixels to update, or NULL to + * update the entire texture. + * \param Yplane the raw pixel data for the Y plane. + * \param Ypitch the number of bytes between rows of pixel data for the Y + * plane. + * \param UVplane the raw pixel data for the UV plane. + * \param UVpitch the number of bytes between rows of pixel data for the UV + * plane. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UpdateTexture + * \sa SDL_UpdateYUVTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateNVTexture(SDL_Texture *texture, + const SDL_Rect *rect, + const Uint8 *Yplane, int Ypitch, + const Uint8 *UVplane, int UVpitch); + +/** + * Lock a portion of the texture for **write-only** pixel access. + * + * As an optimization, the pixels made available for editing don't necessarily + * contain the old texture data. This is a write-only operation, and if you + * need to keep a copy of the texture data you should do that at the + * application level. + * + * You must use SDL_UnlockTexture() to unlock the pixels and apply any + * changes. + * + * \param texture the texture to lock for access, which was created with + * `SDL_TEXTUREACCESS_STREAMING`. + * \param rect an SDL_Rect structure representing the area to lock for access; + * NULL to lock the entire texture. + * \param pixels this is filled in with a pointer to the locked pixels, + * appropriately offset by the locked area. + * \param pitch this is filled in with the pitch of the locked pixels; the + * pitch is the length of one row in bytes. + * \returns true on success or false if the texture is not valid or was not + * created with `SDL_TEXTUREACCESS_STREAMING`; call SDL_GetError() + * for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTextureToSurface + * \sa SDL_UnlockTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockTexture(SDL_Texture *texture, + const SDL_Rect *rect, + void **pixels, int *pitch); + +/** + * Lock a portion of the texture for **write-only** pixel access, and expose + * it as a SDL surface. + * + * Besides providing an SDL_Surface instead of raw pixel data, this function + * operates like SDL_LockTexture. + * + * As an optimization, the pixels made available for editing don't necessarily + * contain the old texture data. This is a write-only operation, and if you + * need to keep a copy of the texture data you should do that at the + * application level. + * + * You must use SDL_UnlockTexture() to unlock the pixels and apply any + * changes. + * + * The returned surface is freed internally after calling SDL_UnlockTexture() + * or SDL_DestroyTexture(). The caller should not free it. + * + * \param texture the texture to lock for access, which must be created with + * `SDL_TEXTUREACCESS_STREAMING`. + * \param rect a pointer to the rectangle to lock for access. If the rect is + * NULL, the entire texture will be locked. + * \param surface a pointer to an SDL surface of size **rect**. Don't assume + * any specific pixel content. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTexture + * \sa SDL_UnlockTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockTextureToSurface(SDL_Texture *texture, const SDL_Rect *rect, SDL_Surface **surface); + +/** + * Unlock a texture, uploading the changes to video memory, if needed. + * + * **Warning**: Please note that SDL_LockTexture() is intended to be + * write-only; it will not guarantee the previous contents of the texture will + * be provided. You must fully initialize any area of a texture that you lock + * before unlocking it, as the pixels might otherwise be uninitialized memory. + * + * Which is to say: locking and immediately unlocking a texture can result in + * corrupted textures, depending on the renderer in use. + * + * \param texture a texture locked by SDL_LockTexture(). + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTexture + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockTexture(SDL_Texture *texture); + +/** + * Set a texture as the current rendering target. + * + * The default render target is the window for which the renderer was created. + * To stop rendering to a texture and render to the window again, call this + * function with a NULL `texture`. + * + * Viewport, cliprect, scale, and logical presentation are unique to each + * render target. Get and set functions for these states apply to the current + * render target set by this function, and those states persist on each target + * when the current render target changes. + * + * \param renderer the rendering context. + * \param texture the targeted texture, which must be created with the + * `SDL_TEXTUREACCESS_TARGET` flag, or NULL to render to the + * window instead of a texture. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderTarget + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderTarget(SDL_Renderer *renderer, SDL_Texture *texture); + +/** + * Get the current render target. + * + * The default render target is the window for which the renderer was created, + * and is reported a NULL here. + * + * \param renderer the rendering context. + * \returns the current render target or NULL for the default render target. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderTarget + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_GetRenderTarget(SDL_Renderer *renderer); + +/** + * Set a device-independent resolution and presentation mode for rendering. + * + * This function sets the width and height of the logical rendering output. + * The renderer will act as if the current render target is always the + * requested dimensions, scaling to the actual resolution as necessary. + * + * This can be useful for games that expect a fixed size, but would like to + * scale the output to whatever is available, regardless of how a user resizes + * a window, or if the display is high DPI. + * + * Logical presentation can be used with both render target textures and the + * renderer's window; the state is unique to each render target, and this + * function sets the state for the current render target. It might be useful + * to draw to a texture that matches the window dimensions with logical + * presentation enabled, and then draw that texture across the entire window + * with logical presentation disabled. Be careful not to render both with + * logical presentation enabled, however, as this could produce + * double-letterboxing, etc. + * + * You can disable logical coordinates by setting the mode to + * SDL_LOGICAL_PRESENTATION_DISABLED, and in that case you get the full pixel + * resolution of the render target; it is safe to toggle logical presentation + * during the rendering of a frame: perhaps most of the rendering is done to + * specific dimensions but to make fonts look sharp, the app turns off logical + * presentation while drawing text, for example. + * + * For the renderer's window, letterboxing is drawn into the framebuffer if + * logical presentation is enabled during SDL_RenderPresent; be sure to + * reenable it before presenting if you were toggling it, otherwise the + * letterbox areas might have artifacts from previous frames (or artifacts + * from external overlays, etc). Letterboxing is never drawn into texture + * render targets; be sure to call SDL_RenderClear() before drawing into the + * texture so the letterboxing areas are cleared, if appropriate. + * + * You can convert coordinates in an event into rendering coordinates using + * SDL_ConvertEventToRenderCoordinates(). + * + * \param renderer the rendering context. + * \param w the width of the logical resolution. + * \param h the height of the logical resolution. + * \param mode the presentation mode used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertEventToRenderCoordinates + * \sa SDL_GetRenderLogicalPresentation + * \sa SDL_GetRenderLogicalPresentationRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderLogicalPresentation(SDL_Renderer *renderer, int w, int h, SDL_RendererLogicalPresentation mode); + +/** + * Get device independent resolution and presentation mode for rendering. + * + * This function gets the width and height of the logical rendering output, or + * the output size in pixels if a logical resolution is not enabled. + * + * Each render target has its own logical presentation state. This function + * gets the state for the current render target. + * + * \param renderer the rendering context. + * \param w an int to be filled with the width. + * \param h an int to be filled with the height. + * \param mode the presentation mode used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderLogicalPresentation(SDL_Renderer *renderer, int *w, int *h, SDL_RendererLogicalPresentation *mode); + +/** + * Get the final presentation rectangle for rendering. + * + * This function returns the calculated rectangle used for logical + * presentation, based on the presentation mode and output size. If logical + * presentation is disabled, it will fill the rectangle with the output size, + * in pixels. + * + * Each render target has its own logical presentation state. This function + * gets the rectangle for the current render target. + * + * \param renderer the rendering context. + * \param rect a pointer filled in with the final presentation rectangle, may + * be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderLogicalPresentationRect(SDL_Renderer *renderer, SDL_FRect *rect); + +/** + * Get a point in render coordinates when given a point in window coordinates. + * + * This takes into account several states: + * + * - The window dimensions. + * - The logical presentation settings (SDL_SetRenderLogicalPresentation) + * - The scale (SDL_SetRenderScale) + * - The viewport (SDL_SetRenderViewport) + * + * \param renderer the rendering context. + * \param window_x the x coordinate in window coordinates. + * \param window_y the y coordinate in window coordinates. + * \param x a pointer filled with the x coordinate in render coordinates. + * \param y a pointer filled with the y coordinate in render coordinates. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + * \sa SDL_SetRenderScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderCoordinatesFromWindow(SDL_Renderer *renderer, float window_x, float window_y, float *x, float *y); + +/** + * Get a point in window coordinates when given a point in render coordinates. + * + * This takes into account several states: + * + * - The window dimensions. + * - The logical presentation settings (SDL_SetRenderLogicalPresentation) + * - The scale (SDL_SetRenderScale) + * - The viewport (SDL_SetRenderViewport) + * + * \param renderer the rendering context. + * \param x the x coordinate in render coordinates. + * \param y the y coordinate in render coordinates. + * \param window_x a pointer filled with the x coordinate in window + * coordinates. + * \param window_y a pointer filled with the y coordinate in window + * coordinates. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + * \sa SDL_SetRenderScale + * \sa SDL_SetRenderViewport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderCoordinatesToWindow(SDL_Renderer *renderer, float x, float y, float *window_x, float *window_y); + +/** + * Convert the coordinates in an event to render coordinates. + * + * This takes into account several states: + * + * - The window dimensions. + * - The logical presentation settings (SDL_SetRenderLogicalPresentation) + * - The scale (SDL_SetRenderScale) + * - The viewport (SDL_SetRenderViewport) + * + * Various event types are converted with this function: mouse, touch, pen, + * etc. + * + * Touch coordinates are converted from normalized coordinates in the window + * to non-normalized rendering coordinates. + * + * Relative mouse coordinates (xrel and yrel event fields) are _also_ + * converted. Applications that do not want these fields converted should use + * SDL_RenderCoordinatesFromWindow() on the specific event fields instead of + * converting the entire event structure. + * + * Once converted, coordinates may be outside the rendering area. + * + * \param renderer the rendering context. + * \param event the event to modify. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderCoordinatesFromWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertEventToRenderCoordinates(SDL_Renderer *renderer, SDL_Event *event); + +/** + * Set the drawing area for rendering on the current target. + * + * Drawing will clip to this area (separately from any clipping done with + * SDL_SetRenderClipRect), and the top left of the area will become coordinate + * (0, 0) for future drawing commands. + * + * The area's width and height must be >= 0. + * + * Each render target has its own viewport. This function sets the viewport + * for the current render target. + * + * \param renderer the rendering context. + * \param rect the SDL_Rect structure representing the drawing area, or NULL + * to set the viewport to the entire target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderViewport + * \sa SDL_RenderViewportSet + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderViewport(SDL_Renderer *renderer, const SDL_Rect *rect); + +/** + * Get the drawing area for the current target. + * + * Each render target has its own viewport. This function gets the viewport + * for the current render target. + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure filled in with the current drawing area. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderViewportSet + * \sa SDL_SetRenderViewport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderViewport(SDL_Renderer *renderer, SDL_Rect *rect); + +/** + * Return whether an explicit rectangle was set as the viewport. + * + * This is useful if you're saving and restoring the viewport and want to know + * whether you should restore a specific rectangle or NULL. + * + * Each render target has its own viewport. This function checks the viewport + * for the current render target. + * + * \param renderer the rendering context. + * \returns true if the viewport was set to a specific rectangle, or false if + * it was set to NULL (the entire target). + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderViewport + * \sa SDL_SetRenderViewport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderViewportSet(SDL_Renderer *renderer); + +/** + * Get the safe area for rendering within the current viewport. + * + * Some devices have portions of the screen which are partially obscured or + * not interactive, possibly due to on-screen controls, curved edges, camera + * notches, TV overscan, etc. This function provides the area of the current + * viewport which is safe to have interactible content. You should continue + * rendering into the rest of the render target, but it should not contain + * visually important or interactible content. + * + * \param renderer the rendering context. + * \param rect a pointer filled in with the area that is safe for interactive + * content. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderSafeArea(SDL_Renderer *renderer, SDL_Rect *rect); + +/** + * Set the clip rectangle for rendering on the specified target. + * + * Each render target has its own clip rectangle. This function sets the + * cliprect for the current render target. + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure representing the clip area, relative to + * the viewport, or NULL to disable clipping. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderClipRect + * \sa SDL_RenderClipEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderClipRect(SDL_Renderer *renderer, const SDL_Rect *rect); + +/** + * Get the clip rectangle for the current target. + * + * Each render target has its own clip rectangle. This function gets the + * cliprect for the current render target. + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure filled in with the current clipping area + * or an empty rectangle if clipping is disabled. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderClipEnabled + * \sa SDL_SetRenderClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderClipRect(SDL_Renderer *renderer, SDL_Rect *rect); + +/** + * Get whether clipping is enabled on the given render target. + * + * Each render target has its own clip rectangle. This function checks the + * cliprect for the current render target. + * + * \param renderer the rendering context. + * \returns true if clipping is enabled or false if not; call SDL_GetError() + * for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderClipRect + * \sa SDL_SetRenderClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderClipEnabled(SDL_Renderer *renderer); + +/** + * Set the drawing scale for rendering on the current target. + * + * The drawing coordinates are scaled by the x/y scaling factors before they + * are used by the renderer. This allows resolution independent drawing with a + * single coordinate system. + * + * If this results in scaling or subpixel drawing by the rendering backend, it + * will be handled using the appropriate quality hints. For best results use + * integer scaling factors. + * + * Each render target has its own scale. This function sets the scale for the + * current render target. + * + * \param renderer the rendering context. + * \param scaleX the horizontal scaling factor. + * \param scaleY the vertical scaling factor. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderScale(SDL_Renderer *renderer, float scaleX, float scaleY); + +/** + * Get the drawing scale for the current target. + * + * Each render target has its own scale. This function gets the scale for the + * current render target. + * + * \param renderer the rendering context. + * \param scaleX a pointer filled in with the horizontal scaling factor. + * \param scaleY a pointer filled in with the vertical scaling factor. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderScale(SDL_Renderer *renderer, float *scaleX, float *scaleY); + +/** + * Set the color used for drawing operations. + * + * Set the color for drawing or filling rectangles, lines, and points, and for + * SDL_RenderClear(). + * + * \param renderer the rendering context. + * \param r the red value used to draw on the rendering target. + * \param g the green value used to draw on the rendering target. + * \param b the blue value used to draw on the rendering target. + * \param a the alpha value used to draw on the rendering target; usually + * `SDL_ALPHA_OPAQUE` (255). Use SDL_SetRenderDrawBlendMode to + * specify how the alpha channel is used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawColor + * \sa SDL_SetRenderDrawColorFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderDrawColor(SDL_Renderer *renderer, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Set the color used for drawing operations (Rect, Line and Clear). + * + * Set the color for drawing or filling rectangles, lines, and points, and for + * SDL_RenderClear(). + * + * \param renderer the rendering context. + * \param r the red value used to draw on the rendering target. + * \param g the green value used to draw on the rendering target. + * \param b the blue value used to draw on the rendering target. + * \param a the alpha value used to draw on the rendering target. Use + * SDL_SetRenderDrawBlendMode to specify how the alpha channel is + * used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawColorFloat + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderDrawColorFloat(SDL_Renderer *renderer, float r, float g, float b, float a); + +/** + * Get the color used for drawing operations (Rect, Line and Clear). + * + * \param renderer the rendering context. + * \param r a pointer filled in with the red value used to draw on the + * rendering target. + * \param g a pointer filled in with the green value used to draw on the + * rendering target. + * \param b a pointer filled in with the blue value used to draw on the + * rendering target. + * \param a a pointer filled in with the alpha value used to draw on the + * rendering target; usually `SDL_ALPHA_OPAQUE` (255). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawColorFloat + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderDrawColor(SDL_Renderer *renderer, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); + +/** + * Get the color used for drawing operations (Rect, Line and Clear). + * + * \param renderer the rendering context. + * \param r a pointer filled in with the red value used to draw on the + * rendering target. + * \param g a pointer filled in with the green value used to draw on the + * rendering target. + * \param b a pointer filled in with the blue value used to draw on the + * rendering target. + * \param a a pointer filled in with the alpha value used to draw on the + * rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawColorFloat + * \sa SDL_GetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderDrawColorFloat(SDL_Renderer *renderer, float *r, float *g, float *b, float *a); + +/** + * Set the color scale used for render operations. + * + * The color scale is an additional scale multiplied into the pixel color + * value while rendering. This can be used to adjust the brightness of colors + * during HDR rendering, or changing HDR video brightness when playing on an + * SDR display. + * + * The color scale does not affect the alpha channel, only the color + * brightness. + * + * \param renderer the rendering context. + * \param scale the color scale value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderColorScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderColorScale(SDL_Renderer *renderer, float scale); + +/** + * Get the color scale used for render operations. + * + * \param renderer the rendering context. + * \param scale a pointer filled in with the current color scale value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderColorScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderColorScale(SDL_Renderer *renderer, float *scale); + +/** + * Set the blend mode used for drawing operations (Fill and Line). + * + * If the blend mode is not supported, the closest supported mode is chosen. + * + * \param renderer the rendering context. + * \param blendMode the SDL_BlendMode to use for blending. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderDrawBlendMode(SDL_Renderer *renderer, SDL_BlendMode blendMode); + +/** + * Get the blend mode used for drawing operations. + * + * \param renderer the rendering context. + * \param blendMode a pointer filled in with the current SDL_BlendMode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderDrawBlendMode(SDL_Renderer *renderer, SDL_BlendMode *blendMode); + +/** + * Clear the current rendering target with the drawing color. + * + * This function clears the entire rendering target, ignoring the viewport and + * the clip rectangle. Note, that clearing will also set/fill all pixels of + * the rendering target to current renderer draw color, so make sure to invoke + * SDL_SetRenderDrawColor() when needed. + * + * \param renderer the rendering context. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderClear(SDL_Renderer *renderer); + +/** + * Draw a point on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw a point. + * \param x the x coordinate of the point. + * \param y the y coordinate of the point. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderPoints + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderPoint(SDL_Renderer *renderer, float x, float y); + +/** + * Draw multiple points on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw multiple points. + * \param points the points to draw. + * \param count the number of points to draw. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderPoint + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderPoints(SDL_Renderer *renderer, const SDL_FPoint *points, int count); + +/** + * Draw a line on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw a line. + * \param x1 the x coordinate of the start point. + * \param y1 the y coordinate of the start point. + * \param x2 the x coordinate of the end point. + * \param y2 the y coordinate of the end point. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderLines + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderLine(SDL_Renderer *renderer, float x1, float y1, float x2, float y2); + +/** + * Draw a series of connected lines on the current rendering target at + * subpixel precision. + * + * \param renderer the renderer which should draw multiple lines. + * \param points the points along the lines. + * \param count the number of points, drawing count-1 lines. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderLine + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderLines(SDL_Renderer *renderer, const SDL_FPoint *points, int count); + +/** + * Draw a rectangle on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw a rectangle. + * \param rect a pointer to the destination rectangle, or NULL to outline the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderRect(SDL_Renderer *renderer, const SDL_FRect *rect); + +/** + * Draw some number of rectangles on the current rendering target at subpixel + * precision. + * + * \param renderer the renderer which should draw multiple rectangles. + * \param rects a pointer to an array of destination rectangles. + * \param count the number of rectangles. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderRects(SDL_Renderer *renderer, const SDL_FRect *rects, int count); + +/** + * Fill a rectangle on the current rendering target with the drawing color at + * subpixel precision. + * + * \param renderer the renderer which should fill a rectangle. + * \param rect a pointer to the destination rectangle, or NULL for the entire + * rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderFillRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderFillRect(SDL_Renderer *renderer, const SDL_FRect *rect); + +/** + * Fill some number of rectangles on the current rendering target with the + * drawing color at subpixel precision. + * + * \param renderer the renderer which should fill multiple rectangles. + * \param rects a pointer to an array of destination rectangles. + * \param count the number of rectangles. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderFillRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderFillRects(SDL_Renderer *renderer, const SDL_FRect *rects, int count); + +/** + * Copy a portion of the texture to the current rendering target at subpixel + * precision. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTextureRotated + * \sa SDL_RenderTextureTiled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTexture(SDL_Renderer *renderer, SDL_Texture *texture, const SDL_FRect *srcrect, const SDL_FRect *dstrect); + +/** + * Copy a portion of the source texture to the current rendering target, with + * rotation and flipping, at subpixel precision. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \param angle an angle in degrees that indicates the rotation that will be + * applied to dstrect, rotating it in a clockwise direction. + * \param center a pointer to a point indicating the point around which + * dstrect will be rotated (if NULL, rotation will be done + * around dstrect.w/2, dstrect.h/2). + * \param flip an SDL_FlipMode value stating which flipping actions should be + * performed on the texture. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTextureRotated(SDL_Renderer *renderer, SDL_Texture *texture, + const SDL_FRect *srcrect, const SDL_FRect *dstrect, + double angle, const SDL_FPoint *center, + SDL_FlipMode flip); + +/** + * Copy a portion of the source texture to the current rendering target, with + * affine transform, at subpixel precision. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param origin a pointer to a point indicating where the top-left corner of + * srcrect should be mapped to, or NULL for the rendering + * target's origin. + * \param right a pointer to a point indicating where the top-right corner of + * srcrect should be mapped to, or NULL for the rendering + * target's top-right corner. + * \param down a pointer to a point indicating where the bottom-left corner of + * srcrect should be mapped to, or NULL for the rendering target's + * bottom-left corner. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety You may only call this function from the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTextureAffine(SDL_Renderer *renderer, SDL_Texture *texture, + const SDL_FRect *srcrect, const SDL_FPoint *origin, + const SDL_FPoint *right, const SDL_FPoint *down); + +/** + * Tile a portion of the texture to the current rendering target at subpixel + * precision. + * + * The pixels in `srcrect` will be repeated as many times as needed to + * completely fill `dstrect`. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param scale the scale used to transform srcrect into the destination + * rectangle, e.g. a 32x32 texture with a scale of 2 would fill + * 64x64 tiles. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTextureTiled(SDL_Renderer *renderer, SDL_Texture *texture, const SDL_FRect *srcrect, float scale, const SDL_FRect *dstrect); + +/** + * Perform a scaled copy using the 9-grid algorithm to the current rendering + * target at subpixel precision. + * + * The pixels in the texture are split into a 3x3 grid, using the different + * corner sizes for each corner, and the sides and center making up the + * remaining pixels. The corners are then scaled using `scale` and fit into + * the corners of the destination rectangle. The sides and center are then + * stretched into place to cover the remaining destination rectangle. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect the SDL_Rect structure representing the rectangle to be used + * for the 9-grid, or NULL to use the entire texture. + * \param left_width the width, in pixels, of the left corners in `srcrect`. + * \param right_width the width, in pixels, of the right corners in `srcrect`. + * \param top_height the height, in pixels, of the top corners in `srcrect`. + * \param bottom_height the height, in pixels, of the bottom corners in + * `srcrect`. + * \param scale the scale used to transform the corner of `srcrect` into the + * corner of `dstrect`, or 0.0f for an unscaled copy. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTexture9Grid(SDL_Renderer *renderer, SDL_Texture *texture, const SDL_FRect *srcrect, float left_width, float right_width, float top_height, float bottom_height, float scale, const SDL_FRect *dstrect); + +/** + * Render a list of triangles, optionally using a texture and indices into the + * vertex array Color and alpha modulation is done per vertex + * (SDL_SetTextureColorMod and SDL_SetTextureAlphaMod are ignored). + * + * \param renderer the rendering context. + * \param texture (optional) The SDL texture to use. + * \param vertices vertices. + * \param num_vertices number of vertices. + * \param indices (optional) An array of integer indices into the 'vertices' + * array, if NULL all vertices will be rendered in sequential + * order. + * \param num_indices number of indices. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderGeometryRaw + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderGeometry(SDL_Renderer *renderer, + SDL_Texture *texture, + const SDL_Vertex *vertices, int num_vertices, + const int *indices, int num_indices); + +/** + * Render a list of triangles, optionally using a texture and indices into the + * vertex arrays Color and alpha modulation is done per vertex + * (SDL_SetTextureColorMod and SDL_SetTextureAlphaMod are ignored). + * + * \param renderer the rendering context. + * \param texture (optional) The SDL texture to use. + * \param xy vertex positions. + * \param xy_stride byte size to move from one element to the next element. + * \param color vertex colors (as SDL_FColor). + * \param color_stride byte size to move from one element to the next element. + * \param uv vertex normalized texture coordinates. + * \param uv_stride byte size to move from one element to the next element. + * \param num_vertices number of vertices. + * \param indices (optional) An array of indices into the 'vertices' arrays, + * if NULL all vertices will be rendered in sequential order. + * \param num_indices number of indices. + * \param size_indices index size: 1 (byte), 2 (short), 4 (int). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderGeometry + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderGeometryRaw(SDL_Renderer *renderer, + SDL_Texture *texture, + const float *xy, int xy_stride, + const SDL_FColor *color, int color_stride, + const float *uv, int uv_stride, + int num_vertices, + const void *indices, int num_indices, int size_indices); + +/** + * Read pixels from the current rendering target. + * + * The returned surface contains pixels inside the desired area clipped to the + * current viewport, and should be freed with SDL_DestroySurface(). + * + * Note that this returns the actual pixels on the screen, so if you are using + * logical presentation you should use SDL_GetRenderLogicalPresentationRect() + * to get the area containing your content. + * + * **WARNING**: This is a very slow operation, and should not be used + * frequently. If you're using this on the main rendering target, it should be + * called after rendering and before SDL_RenderPresent(). + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure representing the area to read, which will + * be clipped to the current viewport, or NULL for the entire + * viewport. + * \returns a new SDL_Surface on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_RenderReadPixels(SDL_Renderer *renderer, const SDL_Rect *rect); + +/** + * Update the screen with any rendering performed since the previous call. + * + * SDL's rendering functions operate on a backbuffer; that is, calling a + * rendering function such as SDL_RenderLine() does not directly put a line on + * the screen, but rather updates the backbuffer. As such, you compose your + * entire scene and *present* the composed backbuffer to the screen as a + * complete picture. + * + * Therefore, when using SDL's rendering API, one does all drawing intended + * for the frame, and then calls this function once per frame to present the + * final drawing to the user. + * + * The backbuffer should be considered invalidated after each present; do not + * assume that previous contents will exist between frames. You are strongly + * encouraged to call SDL_RenderClear() to initialize the backbuffer before + * starting each new frame's drawing, even if you plan to overwrite every + * pixel. + * + * Please note, that in case of rendering to a texture - there is **no need** + * to call `SDL_RenderPresent` after drawing needed objects to a texture, and + * should not be done; you are only required to change back the rendering + * target to default via `SDL_SetRenderTarget(renderer, NULL)` afterwards, as + * textures by themselves do not have a concept of backbuffers. Calling + * SDL_RenderPresent while rendering to a texture will still update the screen + * with any current drawing that has been done _to the window itself_. + * + * \param renderer the rendering context. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_RenderClear + * \sa SDL_RenderFillRect + * \sa SDL_RenderFillRects + * \sa SDL_RenderLine + * \sa SDL_RenderLines + * \sa SDL_RenderPoint + * \sa SDL_RenderPoints + * \sa SDL_RenderRect + * \sa SDL_RenderRects + * \sa SDL_SetRenderDrawBlendMode + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderPresent(SDL_Renderer *renderer); + +/** + * Destroy the specified texture. + * + * Passing NULL or an otherwise invalid texture will set the SDL error message + * to "Invalid texture". + * + * \param texture the texture to destroy. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureFromSurface + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyTexture(SDL_Texture *texture); + +/** + * Destroy the rendering context for a window and free all associated + * textures. + * + * This should be called before destroying the associated window. + * + * \param renderer the rendering context. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyRenderer(SDL_Renderer *renderer); + +/** + * Force the rendering context to flush any pending commands and state. + * + * You do not need to (and in fact, shouldn't) call this function unless you + * are planning to call into OpenGL/Direct3D/Metal/whatever directly, in + * addition to using an SDL_Renderer. + * + * This is for a very-specific case: if you are using SDL's render API, and + * you plan to make OpenGL/D3D/whatever calls in addition to SDL render API + * calls. If this applies, you should call this function between calls to + * SDL's render API and the low-level API you're using in cooperation. + * + * In all other cases, you can ignore this function. + * + * This call makes SDL flush any pending rendering work it was queueing up to + * do later in a single batch, and marks any internal cached state as invalid, + * so it'll prepare all its state again later, from scratch. + * + * This means you do not need to save state in your rendering code to protect + * the SDL renderer. However, there lots of arbitrary pieces of Direct3D and + * OpenGL state that can confuse things; you should use your best judgment and + * be prepared to make changes if specific state needs to be protected. + * + * \param renderer the rendering context. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlushRenderer(SDL_Renderer *renderer); + +/** + * Get the CAMetalLayer associated with the given Metal renderer. + * + * This function returns `void *`, so SDL doesn't have to include Metal's + * headers, but it can be safely cast to a `CAMetalLayer *`. + * + * \param renderer the renderer to query. + * \returns a `CAMetalLayer *` on success, or NULL if the renderer isn't a + * Metal renderer. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderMetalCommandEncoder + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetRenderMetalLayer(SDL_Renderer *renderer); + +/** + * Get the Metal command encoder for the current frame. + * + * This function returns `void *`, so SDL doesn't have to include Metal's + * headers, but it can be safely cast to an `id`. + * + * This will return NULL if Metal refuses to give SDL a drawable to render to, + * which might happen if the window is hidden/minimized/offscreen. This + * doesn't apply to command encoders for render targets, just the window's + * backbuffer. Check your return values! + * + * \param renderer the renderer to query. + * \returns an `id` on success, or NULL if the + * renderer isn't a Metal renderer or there was an error. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderMetalLayer + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetRenderMetalCommandEncoder(SDL_Renderer *renderer); + + +/** + * Add a set of synchronization semaphores for the current frame. + * + * The Vulkan renderer will wait for `wait_semaphore` before submitting + * rendering commands and signal `signal_semaphore` after rendering commands + * are complete for this frame. + * + * This should be called each frame that you want semaphore synchronization. + * The Vulkan renderer may have multiple frames in flight on the GPU, so you + * should have multiple semaphores that are used for synchronization. Querying + * SDL_PROP_RENDERER_VULKAN_SWAPCHAIN_IMAGE_COUNT_NUMBER will give you the + * maximum number of semaphores you'll need. + * + * \param renderer the rendering context. + * \param wait_stage_mask the VkPipelineStageFlags for the wait. + * \param wait_semaphore a VkSempahore to wait on before rendering the current + * frame, or 0 if not needed. + * \param signal_semaphore a VkSempahore that SDL will signal when rendering + * for the current frame is complete, or 0 if not + * needed. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is **NOT** safe to call this function from two threads at + * once. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddVulkanRenderSemaphores(SDL_Renderer *renderer, Uint32 wait_stage_mask, Sint64 wait_semaphore, Sint64 signal_semaphore); + +/** + * Toggle VSync of the given renderer. + * + * When a renderer is created, vsync defaults to SDL_RENDERER_VSYNC_DISABLED. + * + * The `vsync` parameter can be 1 to synchronize present with every vertical + * refresh, 2 to synchronize present with every second vertical refresh, etc., + * SDL_RENDERER_VSYNC_ADAPTIVE for late swap tearing (adaptive vsync), or + * SDL_RENDERER_VSYNC_DISABLED to disable. Not every value is supported by + * every driver, so you should check the return value to see whether the + * requested setting is supported. + * + * \param renderer the renderer to toggle. + * \param vsync the vertical refresh sync interval. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderVSync(SDL_Renderer *renderer, int vsync); + +#define SDL_RENDERER_VSYNC_DISABLED 0 +#define SDL_RENDERER_VSYNC_ADAPTIVE (-1) + +/** + * Get VSync of the given renderer. + * + * \param renderer the renderer to toggle. + * \param vsync an int filled with the current vertical refresh sync interval. + * See SDL_SetRenderVSync() for the meaning of the value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderVSync(SDL_Renderer *renderer, int *vsync); + +/** + * The size, in pixels, of a single SDL_RenderDebugText() character. + * + * The font is monospaced and square, so this applies to all characters. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_RenderDebugText + */ +#define SDL_DEBUG_TEXT_FONT_CHARACTER_SIZE 8 + +/** + * Draw debug text to an SDL_Renderer. + * + * This function will render a string of text to an SDL_Renderer. Note that + * this is a convenience function for debugging, with severe limitations, and + * not intended to be used for production apps and games. + * + * Among these limitations: + * + * - It accepts UTF-8 strings, but will only renders ASCII characters. + * - It has a single, tiny size (8x8 pixels). One can use logical presentation + * or scaling to adjust it, but it will be blurry. + * - It uses a simple, hardcoded bitmap font. It does not allow different font + * selections and it does not support truetype, for proper scaling. + * - It does no word-wrapping and does not treat newline characters as a line + * break. If the text goes out of the window, it's gone. + * + * For serious text rendering, there are several good options, such as + * SDL_ttf, stb_truetype, or other external libraries. + * + * On first use, this will create an internal texture for rendering glyphs. + * This texture will live until the renderer is destroyed. + * + * The text is drawn in the color specified by SDL_SetRenderDrawColor(). + * + * \param renderer the renderer which should draw a line of text. + * \param x the x coordinate where the top-left corner of the text will draw. + * \param y the y coordinate where the top-left corner of the text will draw. + * \param str the string to render. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderDebugTextFormat + * \sa SDL_DEBUG_TEXT_FONT_CHARACTER_SIZE + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderDebugText(SDL_Renderer *renderer, float x, float y, const char *str); + +/** + * Draw debug text to an SDL_Renderer. + * + * This function will render a printf()-style format string to a renderer. + * Note that this is a convinence function for debugging, with severe + * limitations, and is not intended to be used for production apps and games. + * + * For the full list of limitations and other useful information, see + * SDL_RenderDebugText. + * + * \param renderer the renderer which should draw the text. + * \param x the x coordinate where the top-left corner of the text will draw. + * \param y the y coordinate where the top-left corner of the text will draw. + * \param fmt the format string to draw. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderDebugText + * \sa SDL_DEBUG_TEXT_FONT_CHARACTER_SIZE + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderDebugTextFormat(SDL_Renderer *renderer, float x, float y, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(4); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_render_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_revision.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_revision.h new file mode 100644 index 0000000..bcccca1 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_revision.h @@ -0,0 +1,56 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Version */ + +/* + * SDL_revision.h contains the SDL revision, which might be defined on the + * compiler command line, or generated right into the header itself by the + * build system. + */ + +#ifndef SDL_revision_h_ +#define SDL_revision_h_ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * This macro is a string describing the source at a particular point in + * development. + * + * This string is often generated from revision control's state at build time. + * + * This string can be quite complex and does not follow any standard. For + * example, it might be something like "SDL-prerelease-3.1.1-47-gf687e0732". + * It might also be user-defined at build time, so it's best to treat it as a + * clue in debugging forensics and not something the app will parse in any + * way. + * + * \since This macro is available since SDL 3.0.0. + */ +#define SDL_REVISION "Some arbitrary string decided at SDL build time" +#elif defined(SDL_VENDOR_INFO) +#define SDL_REVISION "release-3.2.20-0-g96292a5b4 (" SDL_VENDOR_INFO ")" +#else +#define SDL_REVISION "release-3.2.20-0-g96292a5b4" +#endif + +#endif /* SDL_revision_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_scancode.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_scancode.h new file mode 100644 index 0000000..6e9be47 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_scancode.h @@ -0,0 +1,429 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryScancode + * + * Defines keyboard scancodes. + * + * Please refer to the Best Keyboard Practices document for details on what + * this information means and how best to use it. + * + * https://wiki.libsdl.org/SDL3/BestKeyboardPractices + */ + +#ifndef SDL_scancode_h_ +#define SDL_scancode_h_ + +#include + +/** + * The SDL keyboard scancode representation. + * + * An SDL scancode is the physical representation of a key on the keyboard, + * independent of language and keyboard mapping. + * + * Values of this type are used to represent keyboard keys, among other places + * in the `scancode` field of the SDL_KeyboardEvent structure. + * + * The values in this enumeration are based on the USB usage page standard: + * https://usb.org/sites/default/files/hut1_5.pdf + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_Scancode +{ + SDL_SCANCODE_UNKNOWN = 0, + + /** + * \name Usage page 0x07 + * + * These values are from usage page 0x07 (USB keyboard page). + */ + /* @{ */ + + SDL_SCANCODE_A = 4, + SDL_SCANCODE_B = 5, + SDL_SCANCODE_C = 6, + SDL_SCANCODE_D = 7, + SDL_SCANCODE_E = 8, + SDL_SCANCODE_F = 9, + SDL_SCANCODE_G = 10, + SDL_SCANCODE_H = 11, + SDL_SCANCODE_I = 12, + SDL_SCANCODE_J = 13, + SDL_SCANCODE_K = 14, + SDL_SCANCODE_L = 15, + SDL_SCANCODE_M = 16, + SDL_SCANCODE_N = 17, + SDL_SCANCODE_O = 18, + SDL_SCANCODE_P = 19, + SDL_SCANCODE_Q = 20, + SDL_SCANCODE_R = 21, + SDL_SCANCODE_S = 22, + SDL_SCANCODE_T = 23, + SDL_SCANCODE_U = 24, + SDL_SCANCODE_V = 25, + SDL_SCANCODE_W = 26, + SDL_SCANCODE_X = 27, + SDL_SCANCODE_Y = 28, + SDL_SCANCODE_Z = 29, + + SDL_SCANCODE_1 = 30, + SDL_SCANCODE_2 = 31, + SDL_SCANCODE_3 = 32, + SDL_SCANCODE_4 = 33, + SDL_SCANCODE_5 = 34, + SDL_SCANCODE_6 = 35, + SDL_SCANCODE_7 = 36, + SDL_SCANCODE_8 = 37, + SDL_SCANCODE_9 = 38, + SDL_SCANCODE_0 = 39, + + SDL_SCANCODE_RETURN = 40, + SDL_SCANCODE_ESCAPE = 41, + SDL_SCANCODE_BACKSPACE = 42, + SDL_SCANCODE_TAB = 43, + SDL_SCANCODE_SPACE = 44, + + SDL_SCANCODE_MINUS = 45, + SDL_SCANCODE_EQUALS = 46, + SDL_SCANCODE_LEFTBRACKET = 47, + SDL_SCANCODE_RIGHTBRACKET = 48, + SDL_SCANCODE_BACKSLASH = 49, /**< Located at the lower left of the return + * key on ISO keyboards and at the right end + * of the QWERTY row on ANSI keyboards. + * Produces REVERSE SOLIDUS (backslash) and + * VERTICAL LINE in a US layout, REVERSE + * SOLIDUS and VERTICAL LINE in a UK Mac + * layout, NUMBER SIGN and TILDE in a UK + * Windows layout, DOLLAR SIGN and POUND SIGN + * in a Swiss German layout, NUMBER SIGN and + * APOSTROPHE in a German layout, GRAVE + * ACCENT and POUND SIGN in a French Mac + * layout, and ASTERISK and MICRO SIGN in a + * French Windows layout. + */ + SDL_SCANCODE_NONUSHASH = 50, /**< ISO USB keyboards actually use this code + * instead of 49 for the same key, but all + * OSes I've seen treat the two codes + * identically. So, as an implementor, unless + * your keyboard generates both of those + * codes and your OS treats them differently, + * you should generate SDL_SCANCODE_BACKSLASH + * instead of this code. As a user, you + * should not rely on this code because SDL + * will never generate it with most (all?) + * keyboards. + */ + SDL_SCANCODE_SEMICOLON = 51, + SDL_SCANCODE_APOSTROPHE = 52, + SDL_SCANCODE_GRAVE = 53, /**< Located in the top left corner (on both ANSI + * and ISO keyboards). Produces GRAVE ACCENT and + * TILDE in a US Windows layout and in US and UK + * Mac layouts on ANSI keyboards, GRAVE ACCENT + * and NOT SIGN in a UK Windows layout, SECTION + * SIGN and PLUS-MINUS SIGN in US and UK Mac + * layouts on ISO keyboards, SECTION SIGN and + * DEGREE SIGN in a Swiss German layout (Mac: + * only on ISO keyboards), CIRCUMFLEX ACCENT and + * DEGREE SIGN in a German layout (Mac: only on + * ISO keyboards), SUPERSCRIPT TWO and TILDE in a + * French Windows layout, COMMERCIAL AT and + * NUMBER SIGN in a French Mac layout on ISO + * keyboards, and LESS-THAN SIGN and GREATER-THAN + * SIGN in a Swiss German, German, or French Mac + * layout on ANSI keyboards. + */ + SDL_SCANCODE_COMMA = 54, + SDL_SCANCODE_PERIOD = 55, + SDL_SCANCODE_SLASH = 56, + + SDL_SCANCODE_CAPSLOCK = 57, + + SDL_SCANCODE_F1 = 58, + SDL_SCANCODE_F2 = 59, + SDL_SCANCODE_F3 = 60, + SDL_SCANCODE_F4 = 61, + SDL_SCANCODE_F5 = 62, + SDL_SCANCODE_F6 = 63, + SDL_SCANCODE_F7 = 64, + SDL_SCANCODE_F8 = 65, + SDL_SCANCODE_F9 = 66, + SDL_SCANCODE_F10 = 67, + SDL_SCANCODE_F11 = 68, + SDL_SCANCODE_F12 = 69, + + SDL_SCANCODE_PRINTSCREEN = 70, + SDL_SCANCODE_SCROLLLOCK = 71, + SDL_SCANCODE_PAUSE = 72, + SDL_SCANCODE_INSERT = 73, /**< insert on PC, help on some Mac keyboards (but + does send code 73, not 117) */ + SDL_SCANCODE_HOME = 74, + SDL_SCANCODE_PAGEUP = 75, + SDL_SCANCODE_DELETE = 76, + SDL_SCANCODE_END = 77, + SDL_SCANCODE_PAGEDOWN = 78, + SDL_SCANCODE_RIGHT = 79, + SDL_SCANCODE_LEFT = 80, + SDL_SCANCODE_DOWN = 81, + SDL_SCANCODE_UP = 82, + + SDL_SCANCODE_NUMLOCKCLEAR = 83, /**< num lock on PC, clear on Mac keyboards + */ + SDL_SCANCODE_KP_DIVIDE = 84, + SDL_SCANCODE_KP_MULTIPLY = 85, + SDL_SCANCODE_KP_MINUS = 86, + SDL_SCANCODE_KP_PLUS = 87, + SDL_SCANCODE_KP_ENTER = 88, + SDL_SCANCODE_KP_1 = 89, + SDL_SCANCODE_KP_2 = 90, + SDL_SCANCODE_KP_3 = 91, + SDL_SCANCODE_KP_4 = 92, + SDL_SCANCODE_KP_5 = 93, + SDL_SCANCODE_KP_6 = 94, + SDL_SCANCODE_KP_7 = 95, + SDL_SCANCODE_KP_8 = 96, + SDL_SCANCODE_KP_9 = 97, + SDL_SCANCODE_KP_0 = 98, + SDL_SCANCODE_KP_PERIOD = 99, + + SDL_SCANCODE_NONUSBACKSLASH = 100, /**< This is the additional key that ISO + * keyboards have over ANSI ones, + * located between left shift and Z. + * Produces GRAVE ACCENT and TILDE in a + * US or UK Mac layout, REVERSE SOLIDUS + * (backslash) and VERTICAL LINE in a + * US or UK Windows layout, and + * LESS-THAN SIGN and GREATER-THAN SIGN + * in a Swiss German, German, or French + * layout. */ + SDL_SCANCODE_APPLICATION = 101, /**< windows contextual menu, compose */ + SDL_SCANCODE_POWER = 102, /**< The USB document says this is a status flag, + * not a physical key - but some Mac keyboards + * do have a power key. */ + SDL_SCANCODE_KP_EQUALS = 103, + SDL_SCANCODE_F13 = 104, + SDL_SCANCODE_F14 = 105, + SDL_SCANCODE_F15 = 106, + SDL_SCANCODE_F16 = 107, + SDL_SCANCODE_F17 = 108, + SDL_SCANCODE_F18 = 109, + SDL_SCANCODE_F19 = 110, + SDL_SCANCODE_F20 = 111, + SDL_SCANCODE_F21 = 112, + SDL_SCANCODE_F22 = 113, + SDL_SCANCODE_F23 = 114, + SDL_SCANCODE_F24 = 115, + SDL_SCANCODE_EXECUTE = 116, + SDL_SCANCODE_HELP = 117, /**< AL Integrated Help Center */ + SDL_SCANCODE_MENU = 118, /**< Menu (show menu) */ + SDL_SCANCODE_SELECT = 119, + SDL_SCANCODE_STOP = 120, /**< AC Stop */ + SDL_SCANCODE_AGAIN = 121, /**< AC Redo/Repeat */ + SDL_SCANCODE_UNDO = 122, /**< AC Undo */ + SDL_SCANCODE_CUT = 123, /**< AC Cut */ + SDL_SCANCODE_COPY = 124, /**< AC Copy */ + SDL_SCANCODE_PASTE = 125, /**< AC Paste */ + SDL_SCANCODE_FIND = 126, /**< AC Find */ + SDL_SCANCODE_MUTE = 127, + SDL_SCANCODE_VOLUMEUP = 128, + SDL_SCANCODE_VOLUMEDOWN = 129, +/* not sure whether there's a reason to enable these */ +/* SDL_SCANCODE_LOCKINGCAPSLOCK = 130, */ +/* SDL_SCANCODE_LOCKINGNUMLOCK = 131, */ +/* SDL_SCANCODE_LOCKINGSCROLLLOCK = 132, */ + SDL_SCANCODE_KP_COMMA = 133, + SDL_SCANCODE_KP_EQUALSAS400 = 134, + + SDL_SCANCODE_INTERNATIONAL1 = 135, /**< used on Asian keyboards, see + footnotes in USB doc */ + SDL_SCANCODE_INTERNATIONAL2 = 136, + SDL_SCANCODE_INTERNATIONAL3 = 137, /**< Yen */ + SDL_SCANCODE_INTERNATIONAL4 = 138, + SDL_SCANCODE_INTERNATIONAL5 = 139, + SDL_SCANCODE_INTERNATIONAL6 = 140, + SDL_SCANCODE_INTERNATIONAL7 = 141, + SDL_SCANCODE_INTERNATIONAL8 = 142, + SDL_SCANCODE_INTERNATIONAL9 = 143, + SDL_SCANCODE_LANG1 = 144, /**< Hangul/English toggle */ + SDL_SCANCODE_LANG2 = 145, /**< Hanja conversion */ + SDL_SCANCODE_LANG3 = 146, /**< Katakana */ + SDL_SCANCODE_LANG4 = 147, /**< Hiragana */ + SDL_SCANCODE_LANG5 = 148, /**< Zenkaku/Hankaku */ + SDL_SCANCODE_LANG6 = 149, /**< reserved */ + SDL_SCANCODE_LANG7 = 150, /**< reserved */ + SDL_SCANCODE_LANG8 = 151, /**< reserved */ + SDL_SCANCODE_LANG9 = 152, /**< reserved */ + + SDL_SCANCODE_ALTERASE = 153, /**< Erase-Eaze */ + SDL_SCANCODE_SYSREQ = 154, + SDL_SCANCODE_CANCEL = 155, /**< AC Cancel */ + SDL_SCANCODE_CLEAR = 156, + SDL_SCANCODE_PRIOR = 157, + SDL_SCANCODE_RETURN2 = 158, + SDL_SCANCODE_SEPARATOR = 159, + SDL_SCANCODE_OUT = 160, + SDL_SCANCODE_OPER = 161, + SDL_SCANCODE_CLEARAGAIN = 162, + SDL_SCANCODE_CRSEL = 163, + SDL_SCANCODE_EXSEL = 164, + + SDL_SCANCODE_KP_00 = 176, + SDL_SCANCODE_KP_000 = 177, + SDL_SCANCODE_THOUSANDSSEPARATOR = 178, + SDL_SCANCODE_DECIMALSEPARATOR = 179, + SDL_SCANCODE_CURRENCYUNIT = 180, + SDL_SCANCODE_CURRENCYSUBUNIT = 181, + SDL_SCANCODE_KP_LEFTPAREN = 182, + SDL_SCANCODE_KP_RIGHTPAREN = 183, + SDL_SCANCODE_KP_LEFTBRACE = 184, + SDL_SCANCODE_KP_RIGHTBRACE = 185, + SDL_SCANCODE_KP_TAB = 186, + SDL_SCANCODE_KP_BACKSPACE = 187, + SDL_SCANCODE_KP_A = 188, + SDL_SCANCODE_KP_B = 189, + SDL_SCANCODE_KP_C = 190, + SDL_SCANCODE_KP_D = 191, + SDL_SCANCODE_KP_E = 192, + SDL_SCANCODE_KP_F = 193, + SDL_SCANCODE_KP_XOR = 194, + SDL_SCANCODE_KP_POWER = 195, + SDL_SCANCODE_KP_PERCENT = 196, + SDL_SCANCODE_KP_LESS = 197, + SDL_SCANCODE_KP_GREATER = 198, + SDL_SCANCODE_KP_AMPERSAND = 199, + SDL_SCANCODE_KP_DBLAMPERSAND = 200, + SDL_SCANCODE_KP_VERTICALBAR = 201, + SDL_SCANCODE_KP_DBLVERTICALBAR = 202, + SDL_SCANCODE_KP_COLON = 203, + SDL_SCANCODE_KP_HASH = 204, + SDL_SCANCODE_KP_SPACE = 205, + SDL_SCANCODE_KP_AT = 206, + SDL_SCANCODE_KP_EXCLAM = 207, + SDL_SCANCODE_KP_MEMSTORE = 208, + SDL_SCANCODE_KP_MEMRECALL = 209, + SDL_SCANCODE_KP_MEMCLEAR = 210, + SDL_SCANCODE_KP_MEMADD = 211, + SDL_SCANCODE_KP_MEMSUBTRACT = 212, + SDL_SCANCODE_KP_MEMMULTIPLY = 213, + SDL_SCANCODE_KP_MEMDIVIDE = 214, + SDL_SCANCODE_KP_PLUSMINUS = 215, + SDL_SCANCODE_KP_CLEAR = 216, + SDL_SCANCODE_KP_CLEARENTRY = 217, + SDL_SCANCODE_KP_BINARY = 218, + SDL_SCANCODE_KP_OCTAL = 219, + SDL_SCANCODE_KP_DECIMAL = 220, + SDL_SCANCODE_KP_HEXADECIMAL = 221, + + SDL_SCANCODE_LCTRL = 224, + SDL_SCANCODE_LSHIFT = 225, + SDL_SCANCODE_LALT = 226, /**< alt, option */ + SDL_SCANCODE_LGUI = 227, /**< windows, command (apple), meta */ + SDL_SCANCODE_RCTRL = 228, + SDL_SCANCODE_RSHIFT = 229, + SDL_SCANCODE_RALT = 230, /**< alt gr, option */ + SDL_SCANCODE_RGUI = 231, /**< windows, command (apple), meta */ + + SDL_SCANCODE_MODE = 257, /**< I'm not sure if this is really not covered + * by any of the above, but since there's a + * special SDL_KMOD_MODE for it I'm adding it here + */ + + /* @} *//* Usage page 0x07 */ + + /** + * \name Usage page 0x0C + * + * These values are mapped from usage page 0x0C (USB consumer page). + * + * There are way more keys in the spec than we can represent in the + * current scancode range, so pick the ones that commonly come up in + * real world usage. + */ + /* @{ */ + + SDL_SCANCODE_SLEEP = 258, /**< Sleep */ + SDL_SCANCODE_WAKE = 259, /**< Wake */ + + SDL_SCANCODE_CHANNEL_INCREMENT = 260, /**< Channel Increment */ + SDL_SCANCODE_CHANNEL_DECREMENT = 261, /**< Channel Decrement */ + + SDL_SCANCODE_MEDIA_PLAY = 262, /**< Play */ + SDL_SCANCODE_MEDIA_PAUSE = 263, /**< Pause */ + SDL_SCANCODE_MEDIA_RECORD = 264, /**< Record */ + SDL_SCANCODE_MEDIA_FAST_FORWARD = 265, /**< Fast Forward */ + SDL_SCANCODE_MEDIA_REWIND = 266, /**< Rewind */ + SDL_SCANCODE_MEDIA_NEXT_TRACK = 267, /**< Next Track */ + SDL_SCANCODE_MEDIA_PREVIOUS_TRACK = 268, /**< Previous Track */ + SDL_SCANCODE_MEDIA_STOP = 269, /**< Stop */ + SDL_SCANCODE_MEDIA_EJECT = 270, /**< Eject */ + SDL_SCANCODE_MEDIA_PLAY_PAUSE = 271, /**< Play / Pause */ + SDL_SCANCODE_MEDIA_SELECT = 272, /* Media Select */ + + SDL_SCANCODE_AC_NEW = 273, /**< AC New */ + SDL_SCANCODE_AC_OPEN = 274, /**< AC Open */ + SDL_SCANCODE_AC_CLOSE = 275, /**< AC Close */ + SDL_SCANCODE_AC_EXIT = 276, /**< AC Exit */ + SDL_SCANCODE_AC_SAVE = 277, /**< AC Save */ + SDL_SCANCODE_AC_PRINT = 278, /**< AC Print */ + SDL_SCANCODE_AC_PROPERTIES = 279, /**< AC Properties */ + + SDL_SCANCODE_AC_SEARCH = 280, /**< AC Search */ + SDL_SCANCODE_AC_HOME = 281, /**< AC Home */ + SDL_SCANCODE_AC_BACK = 282, /**< AC Back */ + SDL_SCANCODE_AC_FORWARD = 283, /**< AC Forward */ + SDL_SCANCODE_AC_STOP = 284, /**< AC Stop */ + SDL_SCANCODE_AC_REFRESH = 285, /**< AC Refresh */ + SDL_SCANCODE_AC_BOOKMARKS = 286, /**< AC Bookmarks */ + + /* @} *//* Usage page 0x0C */ + + + /** + * \name Mobile keys + * + * These are values that are often used on mobile phones. + */ + /* @{ */ + + SDL_SCANCODE_SOFTLEFT = 287, /**< Usually situated below the display on phones and + used as a multi-function feature key for selecting + a software defined function shown on the bottom left + of the display. */ + SDL_SCANCODE_SOFTRIGHT = 288, /**< Usually situated below the display on phones and + used as a multi-function feature key for selecting + a software defined function shown on the bottom right + of the display. */ + SDL_SCANCODE_CALL = 289, /**< Used for accepting phone calls. */ + SDL_SCANCODE_ENDCALL = 290, /**< Used for rejecting phone calls. */ + + /* @} *//* Mobile keys */ + + /* Add any other keys here. */ + + SDL_SCANCODE_RESERVED = 400, /**< 400-500 reserved for dynamic keycodes */ + + SDL_SCANCODE_COUNT = 512 /**< not a key, just marks the number of scancodes for array bounds */ + +} SDL_Scancode; + +#endif /* SDL_scancode_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_sensor.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_sensor.h new file mode 100644 index 0000000..b220f05 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_sensor.h @@ -0,0 +1,320 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategorySensor + * + * SDL sensor management. + * + * These APIs grant access to gyros and accelerometers on various platforms. + * + * In order to use these functions, SDL_Init() must have been called with the + * SDL_INIT_SENSOR flag. This causes SDL to scan the system for sensors, and + * load appropriate drivers. + */ + +#ifndef SDL_sensor_h_ +#define SDL_sensor_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +extern "C" { +/* *INDENT-ON* */ +#endif + +/** + * The opaque structure used to identify an opened SDL sensor. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Sensor SDL_Sensor; + +/** + * This is a unique ID for a sensor for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_SensorID; + +/** + * A constant to represent standard gravity for accelerometer sensors. + * + * The accelerometer returns the current acceleration in SI meters per second + * squared. This measurement includes the force of gravity, so a device at + * rest will have an value of SDL_STANDARD_GRAVITY away from the center of the + * earth, which is a positive Y value. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_STANDARD_GRAVITY 9.80665f + +/** + * The different sensors defined by SDL. + * + * Additional sensors may be available, using platform dependent semantics. + * + * Here are the additional Android sensors: + * + * https://developer.android.com/reference/android/hardware/SensorEvent.html#values + * + * Accelerometer sensor notes: + * + * The accelerometer returns the current acceleration in SI meters per second + * squared. This measurement includes the force of gravity, so a device at + * rest will have an value of SDL_STANDARD_GRAVITY away from the center of the + * earth, which is a positive Y value. + * + * - `values[0]`: Acceleration on the x axis + * - `values[1]`: Acceleration on the y axis + * - `values[2]`: Acceleration on the z axis + * + * For phones and tablets held in natural orientation and game controllers + * held in front of you, the axes are defined as follows: + * + * - -X ... +X : left ... right + * - -Y ... +Y : bottom ... top + * - -Z ... +Z : farther ... closer + * + * The accelerometer axis data is not changed when the device is rotated. + * + * Gyroscope sensor notes: + * + * The gyroscope returns the current rate of rotation in radians per second. + * The rotation is positive in the counter-clockwise direction. That is, an + * observer looking from a positive location on one of the axes would see + * positive rotation on that axis when it appeared to be rotating + * counter-clockwise. + * + * - `values[0]`: Angular speed around the x axis (pitch) + * - `values[1]`: Angular speed around the y axis (yaw) + * - `values[2]`: Angular speed around the z axis (roll) + * + * For phones and tablets held in natural orientation and game controllers + * held in front of you, the axes are defined as follows: + * + * - -X ... +X : left ... right + * - -Y ... +Y : bottom ... top + * - -Z ... +Z : farther ... closer + * + * The gyroscope axis data is not changed when the device is rotated. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentDisplayOrientation + */ +typedef enum SDL_SensorType +{ + SDL_SENSOR_INVALID = -1, /**< Returned for an invalid sensor */ + SDL_SENSOR_UNKNOWN, /**< Unknown sensor type */ + SDL_SENSOR_ACCEL, /**< Accelerometer */ + SDL_SENSOR_GYRO, /**< Gyroscope */ + SDL_SENSOR_ACCEL_L, /**< Accelerometer for left Joy-Con controller and Wii nunchuk */ + SDL_SENSOR_GYRO_L, /**< Gyroscope for left Joy-Con controller */ + SDL_SENSOR_ACCEL_R, /**< Accelerometer for right Joy-Con controller */ + SDL_SENSOR_GYRO_R /**< Gyroscope for right Joy-Con controller */ +} SDL_SensorType; + + +/* Function prototypes */ + +/** + * Get a list of currently connected sensors. + * + * \param count a pointer filled in with the number of sensors returned, may + * be NULL. + * \returns a 0 terminated array of sensor instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorID * SDLCALL SDL_GetSensors(int *count); + +/** + * Get the implementation dependent name of a sensor. + * + * This can be called before any sensors are opened. + * + * \param instance_id the sensor instance ID. + * \returns the sensor name, or NULL if `instance_id` is not valid. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetSensorNameForID(SDL_SensorID instance_id); + +/** + * Get the type of a sensor. + * + * This can be called before any sensors are opened. + * + * \param instance_id the sensor instance ID. + * \returns the SDL_SensorType, or `SDL_SENSOR_INVALID` if `instance_id` is + * not valid. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorType SDLCALL SDL_GetSensorTypeForID(SDL_SensorID instance_id); + +/** + * Get the platform dependent type of a sensor. + * + * This can be called before any sensors are opened. + * + * \param instance_id the sensor instance ID. + * \returns the sensor platform dependent type, or -1 if `instance_id` is not + * valid. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSensorNonPortableTypeForID(SDL_SensorID instance_id); + +/** + * Open a sensor for use. + * + * \param instance_id the sensor instance ID. + * \returns an SDL_Sensor object or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Sensor * SDLCALL SDL_OpenSensor(SDL_SensorID instance_id); + +/** + * Return the SDL_Sensor associated with an instance ID. + * + * \param instance_id the sensor instance ID. + * \returns an SDL_Sensor object or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Sensor * SDLCALL SDL_GetSensorFromID(SDL_SensorID instance_id); + +/** + * Get the properties associated with a sensor. + * + * \param sensor the SDL_Sensor object. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetSensorProperties(SDL_Sensor *sensor); + +/** + * Get the implementation dependent name of a sensor. + * + * \param sensor the SDL_Sensor object. + * \returns the sensor name or NULL on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetSensorName(SDL_Sensor *sensor); + +/** + * Get the type of a sensor. + * + * \param sensor the SDL_Sensor object to inspect. + * \returns the SDL_SensorType type, or `SDL_SENSOR_INVALID` if `sensor` is + * NULL. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorType SDLCALL SDL_GetSensorType(SDL_Sensor *sensor); + +/** + * Get the platform dependent type of a sensor. + * + * \param sensor the SDL_Sensor object to inspect. + * \returns the sensor platform dependent type, or -1 if `sensor` is NULL. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSensorNonPortableType(SDL_Sensor *sensor); + +/** + * Get the instance ID of a sensor. + * + * \param sensor the SDL_Sensor object to inspect. + * \returns the sensor instance ID, or 0 on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorID SDLCALL SDL_GetSensorID(SDL_Sensor *sensor); + +/** + * Get the current state of an opened sensor. + * + * The number of values and interpretation of the data is sensor dependent. + * + * \param sensor the SDL_Sensor object to query. + * \param data a pointer filled with the current sensor state. + * \param num_values the number of values to write to data. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSensorData(SDL_Sensor *sensor, float *data, int num_values); + +/** + * Close a sensor previously opened with SDL_OpenSensor(). + * + * \param sensor the SDL_Sensor object to close. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseSensor(SDL_Sensor *sensor); + +/** + * Update the current state of the open sensors. + * + * This is called automatically by the event loop if sensor events are + * enabled. + * + * This needs to be called from the thread that initialized the sensor + * subsystem. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateSensors(void); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +} +/* *INDENT-ON* */ +#endif +#include + +#endif /* SDL_sensor_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_stdinc.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_stdinc.h new file mode 100644 index 0000000..7df253f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_stdinc.h @@ -0,0 +1,6137 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryStdinc + * + * SDL provides its own implementation of some of the most important C runtime + * functions. + * + * Using these functions allows an app to have access to common C + * functionality without depending on a specific C runtime (or a C runtime at + * all). More importantly, the SDL implementations work identically across + * platforms, so apps can avoid surprises like snprintf() behaving differently + * between Windows and Linux builds, or itoa() only existing on some + * platforms. + * + * For many of the most common functions, like SDL_memcpy, SDL might just call + * through to the usual C runtime behind the scenes, if it makes sense to do + * so (if it's faster and always available/reliable on a given platform), + * reducing library size and offering the most optimized option. + * + * SDL also offers other C-runtime-adjacent functionality in this header that + * either isn't, strictly speaking, part of any C runtime standards, like + * SDL_crc32() and SDL_reinterpret_cast, etc. It also offers a few better + * options, like SDL_strlcpy(), which functions as a safer form of strcpy(). + */ + +#ifndef SDL_stdinc_h_ +#define SDL_stdinc_h_ + +#include + +#include +#include +#include +#include + +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ + defined(SDL_INCLUDE_INTTYPES_H) +#include +#endif + +#ifndef __cplusplus +#if defined(__has_include) && !defined(SDL_INCLUDE_STDBOOL_H) +#if __has_include() +#define SDL_INCLUDE_STDBOOL_H +#endif +#endif +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ + (defined(_MSC_VER) && (_MSC_VER >= 1910 /* Visual Studio 2017 */)) || \ + defined(SDL_INCLUDE_STDBOOL_H) +#include +#elif !defined(__bool_true_false_are_defined) && !defined(bool) +#define bool unsigned char +#define false 0 +#define true 1 +#define __bool_true_false_are_defined 1 +#endif +#endif /* !__cplusplus */ + +#ifndef SDL_DISABLE_ALLOCA +# ifndef alloca +# ifdef HAVE_ALLOCA_H +# include +# elif defined(SDL_PLATFORM_NETBSD) +# if defined(__STRICT_ANSI__) +# define SDL_DISABLE_ALLOCA +# else +# include +# endif +# elif defined(__GNUC__) +# define alloca __builtin_alloca +# elif defined(_MSC_VER) +# include +# define alloca _alloca +# elif defined(__WATCOMC__) +# include +# elif defined(__BORLANDC__) +# include +# elif defined(__DMC__) +# include +# elif defined(SDL_PLATFORM_AIX) +# pragma alloca +# elif defined(__MRC__) +void *alloca(unsigned); +# else +void *alloca(size_t); +# endif +# endif +#endif + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Don't let SDL use "long long" C types. + * + * SDL will define this if it believes the compiler doesn't understand the + * "long long" syntax for C datatypes. This can happen on older compilers. + * + * If _your_ compiler doesn't support "long long" but SDL doesn't know it, it + * is safe to define this yourself to build against the SDL headers. + * + * If this is defined, it will remove access to some C runtime support + * functions, like SDL_ulltoa and SDL_strtoll that refer to this datatype + * explicitly. The rest of SDL will still be available. + * + * SDL's own source code cannot be built with a compiler that has this + * defined, for various technical reasons. + */ +#define SDL_NOLONGLONG 1 + +#elif defined(_MSC_VER) && (_MSC_VER < 1310) /* long long introduced in Visual Studio.NET 2003 */ +# define SDL_NOLONGLONG 1 +#endif + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * The largest value that a `size_t` can hold for the target platform. + * + * `size_t` is generally the same size as a pointer in modern times, but this + * can get weird on very old and very esoteric machines. For example, on a + * 16-bit Intel 286, you might have a 32-bit "far" pointer (16-bit segment + * plus 16-bit offset), but `size_t` is 16 bits, because it can only deal with + * the offset into an individual segment. + * + * In modern times, it's generally expected to cover an entire linear address + * space. But be careful! + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SIZE_MAX SIZE_MAX + +#elif defined(SIZE_MAX) +# define SDL_SIZE_MAX SIZE_MAX +#else +# define SDL_SIZE_MAX ((size_t) -1) +#endif + +#ifndef SDL_COMPILE_TIME_ASSERT +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A compile-time assertion. + * + * This can check constant values _known to the compiler at build time_ for + * correctness, and end the compile with the error if they fail. + * + * Often times these are used to verify basic truths, like the size of a + * datatype is what is expected: + * + * ```c + * SDL_COMPILE_TIME_ASSERT(uint32_size, sizeof(Uint32) == 4); + * ``` + * + * The `name` parameter must be a valid C symbol, and must be unique across + * all compile-time asserts in the same compilation unit (one run of the + * compiler), or the build might fail with cryptic errors on some targets. + * This is used with a C language trick that works on older compilers that + * don't support better assertion techniques. + * + * If you need an assertion that operates at runtime, on variable data, you + * should try SDL_assert instead. + * + * \param name a unique identifier for this assertion. + * \param x the value to test. Must be a boolean value. + * + * \threadsafety This macro doesn't generate any code to run. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_assert + */ +#define SDL_COMPILE_TIME_ASSERT(name, x) FailToCompileIf_x_IsFalse(x) +#elif defined(__cplusplus) +/* Keep C++ case alone: Some versions of gcc will define __STDC_VERSION__ even when compiling in C++ mode. */ +#if (__cplusplus >= 201103L) +#define SDL_COMPILE_TIME_ASSERT(name, x) static_assert(x, #x) +#endif +#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 202311L) +#define SDL_COMPILE_TIME_ASSERT(name, x) static_assert(x, #x) +#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) +#define SDL_COMPILE_TIME_ASSERT(name, x) _Static_assert(x, #x) +#endif +#endif /* !SDL_COMPILE_TIME_ASSERT */ + +#ifndef SDL_COMPILE_TIME_ASSERT +/* universal, but may trigger -Wunused-local-typedefs */ +#define SDL_COMPILE_TIME_ASSERT(name, x) \ + typedef int SDL_compile_time_assert_ ## name[(x) * 2 - 1] +#endif + +/** + * The number of elements in a static array. + * + * This will compile but return incorrect results for a pointer to an array; + * it has to be an array the compiler knows the size of. + * + * This macro looks like it double-evaluates the argument, but it does so + * inside of `sizeof`, so there are no side-effects here, as expressions do + * not actually run any code in these cases. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_arraysize(array) (sizeof(array)/sizeof(array[0])) + +/** + * Macro useful for building other macros with strings in them. + * + * For example: + * + * ```c + * #define LOG_ERROR(X) OutputDebugString(SDL_STRINGIFY_ARG(__FUNCTION__) ": " X "\n")` + * ``` + * + * \param arg the text to turn into a string literal. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_STRINGIFY_ARG(arg) #arg + +/** + * \name Cast operators + * + * Use proper C++ casts when compiled as C++ to be compatible with the option + * -Wold-style-cast of GCC (and -Werror=old-style-cast in GCC 4.2 and above). + */ +/* @{ */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Handle a Reinterpret Cast properly whether using C or C++. + * + * If compiled as C++, this macro offers a proper C++ reinterpret_cast<>. + * + * If compiled as C, this macro does a normal C-style cast. + * + * This is helpful to avoid compiler warnings in C++. + * + * \param type the type to cast the expression to. + * \param expression the expression to cast to a different type. + * \returns `expression`, cast to `type`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_static_cast + * \sa SDL_const_cast + */ +#define SDL_reinterpret_cast(type, expression) reinterpret_cast(expression) /* or `((type)(expression))` in C */ + +/** + * Handle a Static Cast properly whether using C or C++. + * + * If compiled as C++, this macro offers a proper C++ static_cast<>. + * + * If compiled as C, this macro does a normal C-style cast. + * + * This is helpful to avoid compiler warnings in C++. + * + * \param type the type to cast the expression to. + * \param expression the expression to cast to a different type. + * \returns `expression`, cast to `type`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_reinterpret_cast + * \sa SDL_const_cast + */ +#define SDL_static_cast(type, expression) static_cast(expression) /* or `((type)(expression))` in C */ + +/** + * Handle a Const Cast properly whether using C or C++. + * + * If compiled as C++, this macro offers a proper C++ const_cast<>. + * + * If compiled as C, this macro does a normal C-style cast. + * + * This is helpful to avoid compiler warnings in C++. + * + * \param type the type to cast the expression to. + * \param expression the expression to cast to a different type. + * \returns `expression`, cast to `type`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_reinterpret_cast + * \sa SDL_static_cast + */ +#define SDL_const_cast(type, expression) const_cast(expression) /* or `((type)(expression))` in C */ + +#elif defined(__cplusplus) +#define SDL_reinterpret_cast(type, expression) reinterpret_cast(expression) +#define SDL_static_cast(type, expression) static_cast(expression) +#define SDL_const_cast(type, expression) const_cast(expression) +#else +#define SDL_reinterpret_cast(type, expression) ((type)(expression)) +#define SDL_static_cast(type, expression) ((type)(expression)) +#define SDL_const_cast(type, expression) ((type)(expression)) +#endif + +/* @} *//* Cast operators */ + +/** + * Define a four character code as a Uint32. + * + * \param A the first ASCII character. + * \param B the second ASCII character. + * \param C the third ASCII character. + * \param D the fourth ASCII character. + * \returns the four characters converted into a Uint32, one character + * per-byte. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FOURCC(A, B, C, D) \ + ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24)) + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Append the 64 bit integer suffix to a signed integer literal. + * + * This helps compilers that might believe a integer literal larger than + * 0xFFFFFFFF is overflowing a 32-bit value. Use `SDL_SINT64_C(0xFFFFFFFF1)` + * instead of `0xFFFFFFFF1` by itself. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_UINT64_C + */ +#define SDL_SINT64_C(c) c ## LL /* or whatever the current compiler uses. */ + +/** + * Append the 64 bit integer suffix to an unsigned integer literal. + * + * This helps compilers that might believe a integer literal larger than + * 0xFFFFFFFF is overflowing a 32-bit value. Use `SDL_UINT64_C(0xFFFFFFFF1)` + * instead of `0xFFFFFFFF1` by itself. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SINT64_C + */ +#define SDL_UINT64_C(c) c ## ULL /* or whatever the current compiler uses. */ + +#else /* !SDL_WIKI_DOCUMENTATION_SECTION */ + +#ifndef SDL_SINT64_C +#if defined(INT64_C) +#define SDL_SINT64_C(c) INT64_C(c) +#elif defined(_MSC_VER) +#define SDL_SINT64_C(c) c ## i64 +#elif defined(__LP64__) || defined(_LP64) +#define SDL_SINT64_C(c) c ## L +#else +#define SDL_SINT64_C(c) c ## LL +#endif +#endif /* !SDL_SINT64_C */ + +#ifndef SDL_UINT64_C +#if defined(UINT64_C) +#define SDL_UINT64_C(c) UINT64_C(c) +#elif defined(_MSC_VER) +#define SDL_UINT64_C(c) c ## ui64 +#elif defined(__LP64__) || defined(_LP64) +#define SDL_UINT64_C(c) c ## UL +#else +#define SDL_UINT64_C(c) c ## ULL +#endif +#endif /* !SDL_UINT64_C */ + +#endif /* !SDL_WIKI_DOCUMENTATION_SECTION */ + +/** + * \name Basic data types + */ +/* @{ */ + +/** + * A signed 8-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef int8_t Sint8; +#define SDL_MAX_SINT8 ((Sint8)0x7F) /* 127 */ +#define SDL_MIN_SINT8 ((Sint8)(~0x7F)) /* -128 */ + +/** + * An unsigned 8-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef uint8_t Uint8; +#define SDL_MAX_UINT8 ((Uint8)0xFF) /* 255 */ +#define SDL_MIN_UINT8 ((Uint8)0x00) /* 0 */ + +/** + * A signed 16-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef int16_t Sint16; +#define SDL_MAX_SINT16 ((Sint16)0x7FFF) /* 32767 */ +#define SDL_MIN_SINT16 ((Sint16)(~0x7FFF)) /* -32768 */ + +/** + * An unsigned 16-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef uint16_t Uint16; +#define SDL_MAX_UINT16 ((Uint16)0xFFFF) /* 65535 */ +#define SDL_MIN_UINT16 ((Uint16)0x0000) /* 0 */ + +/** + * A signed 32-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef int32_t Sint32; +#define SDL_MAX_SINT32 ((Sint32)0x7FFFFFFF) /* 2147483647 */ +#define SDL_MIN_SINT32 ((Sint32)(~0x7FFFFFFF)) /* -2147483648 */ + +/** + * An unsigned 32-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef uint32_t Uint32; +#define SDL_MAX_UINT32 ((Uint32)0xFFFFFFFFu) /* 4294967295 */ +#define SDL_MIN_UINT32 ((Uint32)0x00000000) /* 0 */ + +/** + * A signed 64-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SINT64_C + */ +typedef int64_t Sint64; +#define SDL_MAX_SINT64 SDL_SINT64_C(0x7FFFFFFFFFFFFFFF) /* 9223372036854775807 */ +#define SDL_MIN_SINT64 ~SDL_SINT64_C(0x7FFFFFFFFFFFFFFF) /* -9223372036854775808 */ + +/** + * An unsigned 64-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_UINT64_C + */ +typedef uint64_t Uint64; +#define SDL_MAX_UINT64 SDL_UINT64_C(0xFFFFFFFFFFFFFFFF) /* 18446744073709551615 */ +#define SDL_MIN_UINT64 SDL_UINT64_C(0x0000000000000000) /* 0 */ + +/** + * SDL times are signed, 64-bit integers representing nanoseconds since the + * Unix epoch (Jan 1, 1970). + * + * They can be converted between POSIX time_t values with SDL_NS_TO_SECONDS() + * and SDL_SECONDS_TO_NS(), and between Windows FILETIME values with + * SDL_TimeToWindows() and SDL_TimeFromWindows(). + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_MAX_SINT64 + * \sa SDL_MIN_SINT64 + */ +typedef Sint64 SDL_Time; +#define SDL_MAX_TIME SDL_MAX_SINT64 +#define SDL_MIN_TIME SDL_MIN_SINT64 + +/* @} *//* Basic data types */ + +/** + * \name Floating-point constants + */ +/* @{ */ + +#ifdef FLT_EPSILON +#define SDL_FLT_EPSILON FLT_EPSILON +#else + +/** + * Epsilon constant, used for comparing floating-point numbers. + * + * Equals by default to platform-defined `FLT_EPSILON`, or + * `1.1920928955078125e-07F` if that's not available. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FLT_EPSILON 1.1920928955078125e-07F /* 0x0.000002p0 */ +#endif + +/* @} *//* Floating-point constants */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A printf-formatting string for an Sint64 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIs64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIs64 "lld" + +/** + * A printf-formatting string for a Uint64 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIu64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIu64 "llu" + +/** + * A printf-formatting string for a Uint64 value as lower-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIx64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIx64 "llx" + +/** + * A printf-formatting string for a Uint64 value as upper-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIX64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIX64 "llX" + +/** + * A printf-formatting string for an Sint32 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIs32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIs32 "d" + +/** + * A printf-formatting string for a Uint32 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIu32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIu32 "u" + +/** + * A printf-formatting string for a Uint32 value as lower-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIx32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIx32 "x" + +/** + * A printf-formatting string for a Uint32 value as upper-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIX32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIX32 "X" + +/** + * A printf-formatting string prefix for a `long long` value. + * + * This is just the prefix! You probably actually want SDL_PRILLd, SDL_PRILLu, + * SDL_PRILLx, or SDL_PRILLX instead. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILL_PREFIX "d bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILL_PREFIX "ll" + +/** + * A printf-formatting string for a `long long` value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLd " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLd SDL_PRILL_PREFIX "d" + +/** + * A printf-formatting string for a `unsigned long long` value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLu " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLu SDL_PRILL_PREFIX "u" + +/** + * A printf-formatting string for an `unsigned long long` value as lower-case + * hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLx " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLx SDL_PRILL_PREFIX "x" + +/** + * A printf-formatting string for an `unsigned long long` value as upper-case + * hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLX " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLX SDL_PRILL_PREFIX "X" +#endif /* SDL_WIKI_DOCUMENTATION_SECTION */ + +/* Make sure we have macros for printing width-based integers. + * should define these but this is not true all platforms. + * (for example win32) */ +#ifndef SDL_PRIs64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIs64 "I64d" +#elif defined(PRId64) +#define SDL_PRIs64 PRId64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) && !defined(__EMSCRIPTEN__) +#define SDL_PRIs64 "ld" +#else +#define SDL_PRIs64 "lld" +#endif +#endif +#ifndef SDL_PRIu64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIu64 "I64u" +#elif defined(PRIu64) +#define SDL_PRIu64 PRIu64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) && !defined(__EMSCRIPTEN__) +#define SDL_PRIu64 "lu" +#else +#define SDL_PRIu64 "llu" +#endif +#endif +#ifndef SDL_PRIx64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIx64 "I64x" +#elif defined(PRIx64) +#define SDL_PRIx64 PRIx64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) +#define SDL_PRIx64 "lx" +#else +#define SDL_PRIx64 "llx" +#endif +#endif +#ifndef SDL_PRIX64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIX64 "I64X" +#elif defined(PRIX64) +#define SDL_PRIX64 PRIX64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) +#define SDL_PRIX64 "lX" +#else +#define SDL_PRIX64 "llX" +#endif +#endif +#ifndef SDL_PRIs32 +#ifdef PRId32 +#define SDL_PRIs32 PRId32 +#else +#define SDL_PRIs32 "d" +#endif +#endif +#ifndef SDL_PRIu32 +#ifdef PRIu32 +#define SDL_PRIu32 PRIu32 +#else +#define SDL_PRIu32 "u" +#endif +#endif +#ifndef SDL_PRIx32 +#ifdef PRIx32 +#define SDL_PRIx32 PRIx32 +#else +#define SDL_PRIx32 "x" +#endif +#endif +#ifndef SDL_PRIX32 +#ifdef PRIX32 +#define SDL_PRIX32 PRIX32 +#else +#define SDL_PRIX32 "X" +#endif +#endif +/* Specifically for the `long long` -- SDL-specific. */ +#ifdef SDL_PLATFORM_WINDOWS +#ifndef SDL_NOLONGLONG +SDL_COMPILE_TIME_ASSERT(longlong_size64, sizeof(long long) == 8); /* using I64 for windows - make sure `long long` is 64 bits. */ +#endif +#define SDL_PRILL_PREFIX "I64" +#else +#define SDL_PRILL_PREFIX "ll" +#endif +#ifndef SDL_PRILLd +#define SDL_PRILLd SDL_PRILL_PREFIX "d" +#endif +#ifndef SDL_PRILLu +#define SDL_PRILLu SDL_PRILL_PREFIX "u" +#endif +#ifndef SDL_PRILLx +#define SDL_PRILLx SDL_PRILL_PREFIX "x" +#endif +#ifndef SDL_PRILLX +#define SDL_PRILLX SDL_PRILL_PREFIX "X" +#endif + +/* Annotations to help code analysis tools */ +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Macro that annotates function params with input buffer size. + * + * If we were to annotate `memcpy`: + * + * ```c + * void *memcpy(void *dst, SDL_IN_BYTECAP(len) const void *src, size_t len); + * ``` + * + * This notes that `src` should be `len` bytes in size and is only read by the + * function. The compiler or other analysis tools can warn when this doesn't + * appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_IN_BYTECAP(x) _In_bytecount_(x) + +/** + * Macro that annotates function params with input/output string buffer size. + * + * If we were to annotate `strlcat`: + * + * ```c + * size_t strlcat(SDL_INOUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen); + * ``` + * + * This notes that `dst` is a null-terminated C string, should be `maxlen` + * bytes in size, and is both read from and written to by the function. The + * compiler or other analysis tools can warn when this doesn't appear to be + * the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_INOUT_Z_CAP(x) _Inout_z_cap_(x) + +/** + * Macro that annotates function params with output string buffer size. + * + * If we were to annotate `snprintf`: + * + * ```c + * int snprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, const char *fmt, ...); + * ``` + * + * This notes that `text` is a null-terminated C string, should be `maxlen` + * bytes in size, and is only written to by the function. The compiler or + * other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_Z_CAP(x) _Out_z_cap_(x) + +/** + * Macro that annotates function params with output buffer size. + * + * If we were to annotate `wcsncpy`: + * + * ```c + * char *wcscpy(SDL_OUT_CAP(bufsize) wchar_t *dst, const wchar_t *src, size_t bufsize); + * ``` + * + * This notes that `dst` should have a capacity of `bufsize` wchar_t in size, + * and is only written to by the function. The compiler or other analysis + * tools can warn when this doesn't appear to be the case. + * + * This operates on counts of objects, not bytes. Use SDL_OUT_BYTECAP for + * bytes. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_CAP(x) _Out_cap_(x) + +/** + * Macro that annotates function params with output buffer size. + * + * If we were to annotate `memcpy`: + * + * ```c + * void *memcpy(SDL_OUT_BYTECAP(bufsize) void *dst, const void *src, size_t bufsize); + * ``` + * + * This notes that `dst` should have a capacity of `bufsize` bytes in size, + * and is only written to by the function. The compiler or other analysis + * tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_BYTECAP(x) _Out_bytecap_(x) + +/** + * Macro that annotates function params with output buffer string size. + * + * If we were to annotate `strcpy`: + * + * ```c + * char *strcpy(SDL_OUT_Z_BYTECAP(bufsize) char *dst, const char *src, size_t bufsize); + * ``` + * + * This notes that `dst` should have a capacity of `bufsize` bytes in size, + * and a zero-terminated string is written to it by the function. The compiler + * or other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_Z_BYTECAP(x) _Out_z_bytecap_(x) + +/** + * Macro that annotates function params as printf-style format strings. + * + * If we were to annotate `fprintf`: + * + * ```c + * int fprintf(FILE *f, SDL_PRINTF_FORMAT_STRING const char *fmt, ...); + * ``` + * + * This notes that `fmt` should be a printf-style format string. The compiler + * or other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRINTF_FORMAT_STRING _Printf_format_string_ + +/** + * Macro that annotates function params as scanf-style format strings. + * + * If we were to annotate `fscanf`: + * + * ```c + * int fscanf(FILE *f, SDL_SCANF_FORMAT_STRING const char *fmt, ...); + * ``` + * + * This notes that `fmt` should be a scanf-style format string. The compiler + * or other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCANF_FORMAT_STRING _Scanf_format_string_impl_ + +/** + * Macro that annotates a vararg function that operates like printf. + * + * If we were to annotate `fprintf`: + * + * ```c + * int fprintf(FILE *f, const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + * ``` + * + * This notes that the second parameter should be a printf-style format + * string, followed by `...`. The compiler or other analysis tools can warn + * when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __printf__, fmtargnumber, fmtargnumber+1 ))) + +/** + * Macro that annotates a va_list function that operates like printf. + * + * If we were to annotate `vfprintf`: + * + * ```c + * int vfprintf(FILE *f, const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + * ``` + * + * This notes that the second parameter should be a printf-style format + * string, followed by a va_list. The compiler or other analysis tools can + * warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __printf__, fmtargnumber, 0 ))) + +/** + * Macro that annotates a vararg function that operates like scanf. + * + * If we were to annotate `fscanf`: + * + * ```c + * int fscanf(FILE *f, const char *fmt, ...) SDL_PRINTF_VARARG_FUNCV(2); + * ``` + * + * This notes that the second parameter should be a scanf-style format string, + * followed by `...`. The compiler or other analysis tools can warn when this + * doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_SCANF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __scanf__, fmtargnumber, fmtargnumber+1 ))) + +/** + * Macro that annotates a va_list function that operates like scanf. + * + * If we were to annotate `vfscanf`: + * + * ```c + * int vfscanf(FILE *f, const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + * ``` + * + * This notes that the second parameter should be a scanf-style format string, + * followed by a va_list. The compiler or other analysis tools can warn when + * this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_SCANF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __scanf__, fmtargnumber, 0 ))) + +/** + * Macro that annotates a vararg function that operates like wprintf. + * + * If we were to annotate `fwprintf`: + * + * ```c + * int fwprintf(FILE *f, const wchar_t *fmt, ...) SDL_WPRINTF_VARARG_FUNC(2); + * ``` + * + * This notes that the second parameter should be a wprintf-style format wide + * string, followed by `...`. The compiler or other analysis tools can warn + * when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, fmtargnumber+1 ))) */ + +/** + * Macro that annotates a va_list function that operates like wprintf. + * + * If we were to annotate `vfwprintf`: + * + * ```c + * int vfwprintf(FILE *f, const wchar_t *fmt, va_list ap) SDL_WPRINTF_VARARG_FUNC(2); + * ``` + * + * This notes that the second parameter should be a wprintf-style format wide + * string, followed by a va_list. The compiler or other analysis tools can + * warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, 0 ))) */ + +#elif defined(SDL_DISABLE_ANALYZE_MACROS) +#define SDL_IN_BYTECAP(x) +#define SDL_INOUT_Z_CAP(x) +#define SDL_OUT_Z_CAP(x) +#define SDL_OUT_CAP(x) +#define SDL_OUT_BYTECAP(x) +#define SDL_OUT_Z_BYTECAP(x) +#define SDL_PRINTF_FORMAT_STRING +#define SDL_SCANF_FORMAT_STRING +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) +#else +#if defined(_MSC_VER) && (_MSC_VER >= 1600) /* VS 2010 and above */ +#include + +#define SDL_IN_BYTECAP(x) _In_bytecount_(x) +#define SDL_INOUT_Z_CAP(x) _Inout_z_cap_(x) +#define SDL_OUT_Z_CAP(x) _Out_z_cap_(x) +#define SDL_OUT_CAP(x) _Out_cap_(x) +#define SDL_OUT_BYTECAP(x) _Out_bytecap_(x) +#define SDL_OUT_Z_BYTECAP(x) _Out_z_bytecap_(x) + +#define SDL_PRINTF_FORMAT_STRING _Printf_format_string_ +#define SDL_SCANF_FORMAT_STRING _Scanf_format_string_impl_ +#else +#define SDL_IN_BYTECAP(x) +#define SDL_INOUT_Z_CAP(x) +#define SDL_OUT_Z_CAP(x) +#define SDL_OUT_CAP(x) +#define SDL_OUT_BYTECAP(x) +#define SDL_OUT_Z_BYTECAP(x) +#define SDL_PRINTF_FORMAT_STRING +#define SDL_SCANF_FORMAT_STRING +#endif +#if defined(__GNUC__) || defined(__clang__) +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __printf__, fmtargnumber, fmtargnumber+1 ))) +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __printf__, fmtargnumber, 0 ))) +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __scanf__, fmtargnumber, fmtargnumber+1 ))) +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __scanf__, fmtargnumber, 0 ))) +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, fmtargnumber+1 ))) */ +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, 0 ))) */ +#else +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) +#endif +#endif /* SDL_DISABLE_ANALYZE_MACROS */ + +/** \cond */ +#ifndef DOXYGEN_SHOULD_IGNORE_THIS +SDL_COMPILE_TIME_ASSERT(bool_size, sizeof(bool) == 1); +SDL_COMPILE_TIME_ASSERT(uint8_size, sizeof(Uint8) == 1); +SDL_COMPILE_TIME_ASSERT(sint8_size, sizeof(Sint8) == 1); +SDL_COMPILE_TIME_ASSERT(uint16_size, sizeof(Uint16) == 2); +SDL_COMPILE_TIME_ASSERT(sint16_size, sizeof(Sint16) == 2); +SDL_COMPILE_TIME_ASSERT(uint32_size, sizeof(Uint32) == 4); +SDL_COMPILE_TIME_ASSERT(sint32_size, sizeof(Sint32) == 4); +SDL_COMPILE_TIME_ASSERT(uint64_size, sizeof(Uint64) == 8); +SDL_COMPILE_TIME_ASSERT(sint64_size, sizeof(Sint64) == 8); +#ifndef SDL_NOLONGLONG +SDL_COMPILE_TIME_ASSERT(uint64_longlong, sizeof(Uint64) <= sizeof(unsigned long long)); +SDL_COMPILE_TIME_ASSERT(size_t_longlong, sizeof(size_t) <= sizeof(unsigned long long)); +#endif +typedef struct SDL_alignment_test +{ + Uint8 a; + void *b; +} SDL_alignment_test; +SDL_COMPILE_TIME_ASSERT(struct_alignment, sizeof(SDL_alignment_test) == (2 * sizeof(void *))); +SDL_COMPILE_TIME_ASSERT(two_s_complement, (int)~(int)0 == (int)(-1)); +#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ +/** \endcond */ + +/* Check to make sure enums are the size of ints, for structure packing. + For both Watcom C/C++ and Borland C/C++ the compiler option that makes + enums having the size of an int must be enabled. + This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11). +*/ + +/** \cond */ +#ifndef DOXYGEN_SHOULD_IGNORE_THIS +#if !defined(SDL_PLATFORM_VITA) && !defined(SDL_PLATFORM_3DS) +/* TODO: include/SDL_stdinc.h:390: error: size of array 'SDL_dummy_enum' is negative */ +typedef enum SDL_DUMMY_ENUM +{ + DUMMY_ENUM_VALUE +} SDL_DUMMY_ENUM; + +SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int)); +#endif +#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ +/** \endcond */ + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A macro to initialize an SDL interface. + * + * This macro will initialize an SDL interface structure and should be called + * before you fill out the fields with your implementation. + * + * You can use it like this: + * + * ```c + * SDL_IOStreamInterface iface; + * + * SDL_INIT_INTERFACE(&iface); + * + * // Fill in the interface function pointers with your implementation + * iface.seek = ... + * + * stream = SDL_OpenIO(&iface, NULL); + * ``` + * + * If you are using designated initializers, you can use the size of the + * interface as the version, e.g. + * + * ```c + * SDL_IOStreamInterface iface = { + * .version = sizeof(iface), + * .seek = ... + * }; + * stream = SDL_OpenIO(&iface, NULL); + * ``` + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_IOStreamInterface + * \sa SDL_StorageInterface + * \sa SDL_VirtualJoystickDesc + */ +#define SDL_INIT_INTERFACE(iface) \ + do { \ + SDL_zerop(iface); \ + (iface)->version = sizeof(*(iface)); \ + } while (0) + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Allocate memory on the stack (maybe). + * + * If SDL knows how to access alloca() on the current platform, it will use it + * to stack-allocate memory here. If it doesn't, it will use SDL_malloc() to + * heap-allocate memory. + * + * Since this might not be stack memory at all, it's important that you check + * the returned pointer for NULL, and that you call SDL_stack_free on the + * memory when done with it. Since this might be stack memory, it's important + * that you don't allocate large amounts of it, or allocate in a loop without + * returning from the function, so the stack doesn't overflow. + * + * \param type the datatype of the memory to allocate. + * \param count the number of `type` objects to allocate. + * \returns newly-allocated memory, or NULL on failure. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_stack_free + */ +#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count)) + +/** + * Free memory previously allocated with SDL_stack_alloc. + * + * If SDL used alloca() to allocate this memory, this macro does nothing and + * the allocated memory will be automatically released when the function that + * called SDL_stack_alloc() returns. If SDL used SDL_malloc(), it will + * SDL_free the memory immediately. + * + * \param data the pointer, from SDL_stack_alloc(), to free. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_stack_alloc + */ +#define SDL_stack_free(data) +#elif !defined(SDL_DISABLE_ALLOCA) +#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count)) +#define SDL_stack_free(data) +#else +#define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count)) +#define SDL_stack_free(data) SDL_free(data) +#endif + +/** + * Allocate uninitialized memory. + * + * The allocated memory returned by this function must be freed with + * SDL_free(). + * + * If `size` is 0, it will be set to 1. + * + * If the allocation is successful, the returned pointer is guaranteed to be + * aligned to either the *fundamental alignment* (`alignof(max_align_t)` in + * C11 and later) or `2 * sizeof(void *)`, whichever is smaller. Use + * SDL_aligned_alloc() if you need to allocate memory aligned to an alignment + * greater than this guarantee. + * + * \param size the size to allocate. + * \returns a pointer to the allocated memory, or NULL if allocation failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_calloc + * \sa SDL_realloc + * \sa SDL_aligned_alloc + */ +extern SDL_DECLSPEC SDL_MALLOC void * SDLCALL SDL_malloc(size_t size); + +/** + * Allocate a zero-initialized array. + * + * The memory returned by this function must be freed with SDL_free(). + * + * If either of `nmemb` or `size` is 0, they will both be set to 1. + * + * If the allocation is successful, the returned pointer is guaranteed to be + * aligned to either the *fundamental alignment* (`alignof(max_align_t)` in + * C11 and later) or `2 * sizeof(void *)`, whichever is smaller. + * + * \param nmemb the number of elements in the array. + * \param size the size of each element of the array. + * \returns a pointer to the allocated array, or NULL if allocation failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_malloc + * \sa SDL_realloc + */ +extern SDL_DECLSPEC SDL_MALLOC SDL_ALLOC_SIZE2(1, 2) void * SDLCALL SDL_calloc(size_t nmemb, size_t size); + +/** + * Change the size of allocated memory. + * + * The memory returned by this function must be freed with SDL_free(). + * + * If `size` is 0, it will be set to 1. Note that this is unlike some other C + * runtime `realloc` implementations, which may treat `realloc(mem, 0)` the + * same way as `free(mem)`. + * + * If `mem` is NULL, the behavior of this function is equivalent to + * SDL_malloc(). Otherwise, the function can have one of three possible + * outcomes: + * + * - If it returns the same pointer as `mem`, it means that `mem` was resized + * in place without freeing. + * - If it returns a different non-NULL pointer, it means that `mem` was freed + * and cannot be dereferenced anymore. + * - If it returns NULL (indicating failure), then `mem` will remain valid and + * must still be freed with SDL_free(). + * + * If the allocation is successfully resized, the returned pointer is + * guaranteed to be aligned to either the *fundamental alignment* + * (`alignof(max_align_t)` in C11 and later) or `2 * sizeof(void *)`, + * whichever is smaller. + * + * \param mem a pointer to allocated memory to reallocate, or NULL. + * \param size the new size of the memory. + * \returns a pointer to the newly allocated memory, or NULL if allocation + * failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_malloc + * \sa SDL_calloc + */ +extern SDL_DECLSPEC SDL_ALLOC_SIZE(2) void * SDLCALL SDL_realloc(void *mem, size_t size); + +/** + * Free allocated memory. + * + * The pointer is no longer valid after this call and cannot be dereferenced + * anymore. + * + * If `mem` is NULL, this function does nothing. + * + * \param mem a pointer to allocated memory, or NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_malloc + * \sa SDL_calloc + * \sa SDL_realloc + */ +extern SDL_DECLSPEC void SDLCALL SDL_free(void *mem); + +/** + * A callback used to implement SDL_malloc(). + * + * SDL will always ensure that the passed `size` is greater than 0. + * + * \param size the size to allocate. + * \returns a pointer to the allocated memory, or NULL if allocation failed. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_malloc + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void *(SDLCALL *SDL_malloc_func)(size_t size); + +/** + * A callback used to implement SDL_calloc(). + * + * SDL will always ensure that the passed `nmemb` and `size` are both greater + * than 0. + * + * \param nmemb the number of elements in the array. + * \param size the size of each element of the array. + * \returns a pointer to the allocated array, or NULL if allocation failed. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_calloc + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void *(SDLCALL *SDL_calloc_func)(size_t nmemb, size_t size); + +/** + * A callback used to implement SDL_realloc(). + * + * SDL will always ensure that the passed `size` is greater than 0. + * + * \param mem a pointer to allocated memory to reallocate, or NULL. + * \param size the new size of the memory. + * \returns a pointer to the newly allocated memory, or NULL if allocation + * failed. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_realloc + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void *(SDLCALL *SDL_realloc_func)(void *mem, size_t size); + +/** + * A callback used to implement SDL_free(). + * + * SDL will always ensure that the passed `mem` is a non-NULL pointer. + * + * \param mem a pointer to allocated memory. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void (SDLCALL *SDL_free_func)(void *mem); + +/** + * Get the original set of SDL memory functions. + * + * This is what SDL_malloc and friends will use by default, if there has been + * no call to SDL_SetMemoryFunctions. This is not necessarily using the C + * runtime's `malloc` functions behind the scenes! Different platforms and + * build configurations might do any number of unexpected things. + * + * \param malloc_func filled with malloc function. + * \param calloc_func filled with calloc function. + * \param realloc_func filled with realloc function. + * \param free_func filled with free function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetOriginalMemoryFunctions(SDL_malloc_func *malloc_func, + SDL_calloc_func *calloc_func, + SDL_realloc_func *realloc_func, + SDL_free_func *free_func); + +/** + * Get the current set of SDL memory functions. + * + * \param malloc_func filled with malloc function. + * \param calloc_func filled with calloc function. + * \param realloc_func filled with realloc function. + * \param free_func filled with free function. + * + * \threadsafety This does not hold a lock, so do not call this in the + * unlikely event of a background thread calling + * SDL_SetMemoryFunctions simultaneously. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetMemoryFunctions + * \sa SDL_GetOriginalMemoryFunctions + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetMemoryFunctions(SDL_malloc_func *malloc_func, + SDL_calloc_func *calloc_func, + SDL_realloc_func *realloc_func, + SDL_free_func *free_func); + +/** + * Replace SDL's memory allocation functions with a custom set. + * + * It is not safe to call this function once any allocations have been made, + * as future calls to SDL_free will use the new allocator, even if they came + * from an SDL_malloc made with the old one! + * + * If used, usually this needs to be the first call made into the SDL library, + * if not the very first thing done at program startup time. + * + * \param malloc_func custom malloc function. + * \param calloc_func custom calloc function. + * \param realloc_func custom realloc function. + * \param free_func custom free function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, but one + * should not replace the memory functions once any allocations + * are made! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMemoryFunctions + * \sa SDL_GetOriginalMemoryFunctions + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetMemoryFunctions(SDL_malloc_func malloc_func, + SDL_calloc_func calloc_func, + SDL_realloc_func realloc_func, + SDL_free_func free_func); + +/** + * Allocate memory aligned to a specific alignment. + * + * The memory returned by this function must be freed with SDL_aligned_free(), + * _not_ SDL_free(). + * + * If `alignment` is less than the size of `void *`, it will be increased to + * match that. + * + * The returned memory address will be a multiple of the alignment value, and + * the size of the memory allocated will be a multiple of the alignment value. + * + * \param alignment the alignment of the memory. + * \param size the size to allocate. + * \returns a pointer to the aligned memory, or NULL if allocation failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_aligned_free + */ +extern SDL_DECLSPEC SDL_MALLOC void * SDLCALL SDL_aligned_alloc(size_t alignment, size_t size); + +/** + * Free memory allocated by SDL_aligned_alloc(). + * + * The pointer is no longer valid after this call and cannot be dereferenced + * anymore. + * + * If `mem` is NULL, this function does nothing. + * + * \param mem a pointer previously returned by SDL_aligned_alloc(), or NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_aligned_alloc + */ +extern SDL_DECLSPEC void SDLCALL SDL_aligned_free(void *mem); + +/** + * Get the number of outstanding (unfreed) allocations. + * + * \returns the number of allocations or -1 if allocation counting is + * disabled. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumAllocations(void); + +/** + * A thread-safe set of environment variables + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + * \sa SDL_DestroyEnvironment + */ +typedef struct SDL_Environment SDL_Environment; + +/** + * Get the process environment. + * + * This is initialized at application start and is not affected by setenv() + * and unsetenv() calls after that point. Use SDL_SetEnvironmentVariable() and + * SDL_UnsetEnvironmentVariable() if you want to modify this environment, or + * SDL_setenv_unsafe() or SDL_unsetenv_unsafe() if you want changes to persist + * in the C runtime environment after SDL_Quit(). + * + * \returns a pointer to the environment for the process or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC SDL_Environment * SDLCALL SDL_GetEnvironment(void); + +/** + * Create a set of environment variables + * + * \param populated true to initialize it from the C runtime environment, + * false to create an empty environment. + * \returns a pointer to the new environment or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety If `populated` is false, it is safe to call this function + * from any thread, otherwise it is safe if no other threads are + * calling setenv() or unsetenv() + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + * \sa SDL_DestroyEnvironment + */ +extern SDL_DECLSPEC SDL_Environment * SDLCALL SDL_CreateEnvironment(bool populated); + +/** + * Get the value of a variable in the environment. + * + * \param env the environment to query. + * \param name the name of the variable to get. + * \returns a pointer to the value of the variable or NULL if it can't be + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetEnvironmentVariable(SDL_Environment *env, const char *name); + +/** + * Get all variables in the environment. + * + * \param env the environment to query. + * \returns a NULL terminated array of pointers to environment variables in + * the form "variable=value" or NULL on failure; call SDL_GetError() + * for more information. This is a single allocation that should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GetEnvironmentVariables(SDL_Environment *env); + +/** + * Set the value of a variable in the environment. + * + * \param env the environment to modify. + * \param name the name of the variable to set. + * \param value the value of the variable to set. + * \param overwrite true to overwrite the variable if it exists, false to + * return success without setting the variable if it already + * exists. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetEnvironmentVariable(SDL_Environment *env, const char *name, const char *value, bool overwrite); + +/** + * Clear a variable from the environment. + * + * \param env the environment to modify. + * \param name the name of the variable to unset. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UnsetEnvironmentVariable(SDL_Environment *env, const char *name); + +/** + * Destroy a set of environment variables. + * + * \param env the environment to destroy. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the environment is no longer in use. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateEnvironment + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyEnvironment(SDL_Environment *env); + +/** + * Get the value of a variable in the environment. + * + * This function uses SDL's cached copy of the environment and is thread-safe. + * + * \param name the name of the variable to get. + * \returns a pointer to the value of the variable or NULL if it can't be + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_getenv(const char *name); + +/** + * Get the value of a variable in the environment. + * + * This function bypasses SDL's cached copy of the environment and is not + * thread-safe. + * + * \param name the name of the variable to get. + * \returns a pointer to the value of the variable or NULL if it can't be + * found. + * + * \threadsafety This function is not thread safe, consider using SDL_getenv() + * instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_getenv + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_getenv_unsafe(const char *name); + +/** + * Set the value of a variable in the environment. + * + * \param name the name of the variable to set. + * \param value the value of the variable to set. + * \param overwrite 1 to overwrite the variable if it exists, 0 to return + * success without setting the variable if it already exists. + * \returns 0 on success, -1 on error. + * + * \threadsafety This function is not thread safe, consider using + * SDL_SetEnvironmentVariable() instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetEnvironmentVariable + */ +extern SDL_DECLSPEC int SDLCALL SDL_setenv_unsafe(const char *name, const char *value, int overwrite); + +/** + * Clear a variable from the environment. + * + * \param name the name of the variable to unset. + * \returns 0 on success, -1 on error. + * + * \threadsafety This function is not thread safe, consider using + * SDL_UnsetEnvironmentVariable() instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC int SDLCALL SDL_unsetenv_unsafe(const char *name); + +/** + * A callback used with SDL sorting and binary search functions. + * + * \param a a pointer to the first element being compared. + * \param b a pointer to the second element being compared. + * \returns -1 if `a` should be sorted before `b`, 1 if `b` should be sorted + * before `a`, 0 if they are equal. If two elements are equal, their + * order in the sorted array is undefined. + * + * \since This callback is available since SDL 3.2.0. + * + * \sa SDL_bsearch + * \sa SDL_qsort + */ +typedef int (SDLCALL *SDL_CompareCallback)(const void *a, const void *b); + +/** + * Sort an array. + * + * For example: + * + * ```c + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *a, const void *b) + * { + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->n < B->n) { + * return -1; + * } else if (B->n < A->n) { + * return 1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 3, "third" }, { 1, "first" }, { 2, "second" } + * }; + * + * SDL_qsort(values, SDL_arraysize(values), sizeof(values[0]), compare); + * ``` + * + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch + * \sa SDL_qsort_r + */ +extern SDL_DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size, SDL_CompareCallback compare); + +/** + * Perform a binary search on a previously sorted array. + * + * For example: + * + * ```c + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *a, const void *b) + * { + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->n < B->n) { + * return -1; + * } else if (B->n < A->n) { + * return 1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 1, "first" }, { 2, "second" }, { 3, "third" } + * }; + * data key = { 2, NULL }; + * + * data *result = SDL_bsearch(&key, values, SDL_arraysize(values), sizeof(values[0]), compare); + * ``` + * + * \param key a pointer to a key equal to the element being searched for. + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * \returns a pointer to the matching element in the array, or NULL if not + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch_r + * \sa SDL_qsort + */ +extern SDL_DECLSPEC void * SDLCALL SDL_bsearch(const void *key, const void *base, size_t nmemb, size_t size, SDL_CompareCallback compare); + +/** + * A callback used with SDL sorting and binary search functions. + * + * \param userdata the `userdata` pointer passed to the sort function. + * \param a a pointer to the first element being compared. + * \param b a pointer to the second element being compared. + * \returns -1 if `a` should be sorted before `b`, 1 if `b` should be sorted + * before `a`, 0 if they are equal. If two elements are equal, their + * order in the sorted array is undefined. + * + * \since This callback is available since SDL 3.2.0. + * + * \sa SDL_qsort_r + * \sa SDL_bsearch_r + */ +typedef int (SDLCALL *SDL_CompareCallback_r)(void *userdata, const void *a, const void *b); + +/** + * Sort an array, passing a userdata pointer to the compare function. + * + * For example: + * + * ```c + * typedef enum { + * sort_increasing, + * sort_decreasing, + * } sort_method; + * + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *userdata, const void *a, const void *b) + * { + * sort_method method = (sort_method)(uintptr_t)userdata; + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->key < B->key) { + * return (method == sort_increasing) ? -1 : 1; + * } else if (B->key < A->key) { + * return (method == sort_increasing) ? 1 : -1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 3, "third" }, { 1, "first" }, { 2, "second" } + * }; + * + * SDL_qsort_r(values, SDL_arraysize(values), sizeof(values[0]), compare, (const void *)(uintptr_t)sort_increasing); + * ``` + * + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * \param userdata a pointer to pass to the compare function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch_r + * \sa SDL_qsort + */ +extern SDL_DECLSPEC void SDLCALL SDL_qsort_r(void *base, size_t nmemb, size_t size, SDL_CompareCallback_r compare, void *userdata); + +/** + * Perform a binary search on a previously sorted array, passing a userdata + * pointer to the compare function. + * + * For example: + * + * ```c + * typedef enum { + * sort_increasing, + * sort_decreasing, + * } sort_method; + * + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *userdata, const void *a, const void *b) + * { + * sort_method method = (sort_method)(uintptr_t)userdata; + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->key < B->key) { + * return (method == sort_increasing) ? -1 : 1; + * } else if (B->key < A->key) { + * return (method == sort_increasing) ? 1 : -1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 1, "first" }, { 2, "second" }, { 3, "third" } + * }; + * data key = { 2, NULL }; + * + * data *result = SDL_bsearch_r(&key, values, SDL_arraysize(values), sizeof(values[0]), compare, (const void *)(uintptr_t)sort_increasing); + * ``` + * + * \param key a pointer to a key equal to the element being searched for. + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * \param userdata a pointer to pass to the compare function. + * \returns a pointer to the matching element in the array, or NULL if not + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch + * \sa SDL_qsort_r + */ +extern SDL_DECLSPEC void * SDLCALL SDL_bsearch_r(const void *key, const void *base, size_t nmemb, size_t size, SDL_CompareCallback_r compare, void *userdata); + +/** + * Compute the absolute value of `x`. + * + * \param x an integer value. + * \returns the absolute value of x. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_abs(int x); + +/** + * Return the lesser of two values. + * + * This is a helper macro that might be more clear than writing out the + * comparisons directly, and works with any type that can be compared with the + * `<` operator. However, it double-evaluates both its parameters, so do not + * use expressions with side-effects here. + * + * \param x the first value to compare. + * \param y the second value to compare. + * \returns the lesser of `x` and `y`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_min(x, y) (((x) < (y)) ? (x) : (y)) + +/** + * Return the greater of two values. + * + * This is a helper macro that might be more clear than writing out the + * comparisons directly, and works with any type that can be compared with the + * `>` operator. However, it double-evaluates both its parameters, so do not + * use expressions with side-effects here. + * + * \param x the first value to compare. + * \param y the second value to compare. + * \returns the lesser of `x` and `y`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_max(x, y) (((x) > (y)) ? (x) : (y)) + +/** + * Return a value clamped to a range. + * + * If `x` is outside the range a values between `a` and `b`, the returned + * value will be `a` or `b` as appropriate. Otherwise, `x` is returned. + * + * This macro will produce incorrect results if `b` is less than `a`. + * + * This is a helper macro that might be more clear than writing out the + * comparisons directly, and works with any type that can be compared with the + * `<` and `>` operators. However, it double-evaluates all its parameters, so + * do not use expressions with side-effects here. + * + * \param x the value to compare. + * \param a the low end value. + * \param b the high end value. + * \returns x, clamped between a and b. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_clamp(x, a, b) (((x) < (a)) ? (a) : (((x) > (b)) ? (b) : (x))) + +/** + * Query if a character is alphabetic (a letter). + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * for English 'a-z' and 'A-Z' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isalpha(int x); + +/** + * Query if a character is alphabetic (a letter) or a number. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * for English 'a-z', 'A-Z', and '0-9' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isalnum(int x); + +/** + * Report if a character is blank (a space or tab). + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 0x20 (space) or 0x9 (tab) as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isblank(int x); + +/** + * Report if a character is a control character. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 0 through 0x1F, and 0x7F, as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_iscntrl(int x); + +/** + * Report if a character is a numeric digit. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * '0' (0x30) through '9' (0x39), as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isdigit(int x); + +/** + * Report if a character is a hexadecimal digit. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 'A' through 'F', 'a' through 'f', and '0' through '9', as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isxdigit(int x); + +/** + * Report if a character is a punctuation mark. + * + * **WARNING**: Regardless of system locale, this is equivalent to + * `((SDL_isgraph(x)) && (!SDL_isalnum(x)))`. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isgraph + * \sa SDL_isalnum + */ +extern SDL_DECLSPEC int SDLCALL SDL_ispunct(int x); + +/** + * Report if a character is whitespace. + * + * **WARNING**: Regardless of system locale, this will only treat the + * following ASCII values as true: + * + * - space (0x20) + * - tab (0x09) + * - newline (0x0A) + * - vertical tab (0x0B) + * - form feed (0x0C) + * - return (0x0D) + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isspace(int x); + +/** + * Report if a character is upper case. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 'A' through 'Z' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isupper(int x); + +/** + * Report if a character is lower case. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 'a' through 'z' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_islower(int x); + +/** + * Report if a character is "printable". + * + * Be advised that "printable" has a definition that goes back to text + * terminals from the dawn of computing, making this a sort of special case + * function that is not suitable for Unicode (or most any) text management. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * ' ' (0x20) through '~' (0x7E) as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isprint(int x); + +/** + * Report if a character is any "printable" except space. + * + * Be advised that "printable" has a definition that goes back to text + * terminals from the dawn of computing, making this a sort of special case + * function that is not suitable for Unicode (or most any) text management. + * + * **WARNING**: Regardless of system locale, this is equivalent to + * `(SDL_isprint(x)) && ((x) != ' ')`. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isprint + */ +extern SDL_DECLSPEC int SDLCALL SDL_isgraph(int x); + +/** + * Convert low-ASCII English letters to uppercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'a' through 'z' to uppercase. + * + * This function returns the uppercase equivalent of `x`. If a character + * cannot be converted, or is already uppercase, this function returns `x`. + * + * \param x character value to check. + * \returns capitalized version of x, or x if no conversion available. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_toupper(int x); + +/** + * Convert low-ASCII English letters to lowercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'A' through 'Z' to lowercase. + * + * This function returns the lowercase equivalent of `x`. If a character + * cannot be converted, or is already lowercase, this function returns `x`. + * + * \param x character value to check. + * \returns lowercase version of x, or x if no conversion available. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_tolower(int x); + +/** + * Calculate a CRC-16 value. + * + * https://en.wikipedia.org/wiki/Cyclic_redundancy_check + * + * This function can be called multiple times, to stream data to be + * checksummed in blocks. Each call must provide the previous CRC-16 return + * value to be updated with the next block. The first call to this function + * for a set of blocks should pass in a zero CRC value. + * + * \param crc the current checksum for this data set, or 0 for a new data set. + * \param data a new block of data to add to the checksum. + * \param len the size, in bytes, of the new block of data. + * \returns a CRC-16 checksum value of all blocks in the data set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_crc16(Uint16 crc, const void *data, size_t len); + +/** + * Calculate a CRC-32 value. + * + * https://en.wikipedia.org/wiki/Cyclic_redundancy_check + * + * This function can be called multiple times, to stream data to be + * checksummed in blocks. Each call must provide the previous CRC-32 return + * value to be updated with the next block. The first call to this function + * for a set of blocks should pass in a zero CRC value. + * + * \param crc the current checksum for this data set, or 0 for a new data set. + * \param data a new block of data to add to the checksum. + * \param len the size, in bytes, of the new block of data. + * \returns a CRC-32 checksum value of all blocks in the data set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_crc32(Uint32 crc, const void *data, size_t len); + +/** + * Calculate a 32-bit MurmurHash3 value for a block of data. + * + * https://en.wikipedia.org/wiki/MurmurHash + * + * A seed may be specified, which changes the final results consistently, but + * this does not work like SDL_crc16 and SDL_crc32: you can't feed a previous + * result from this function back into itself as the next seed value to + * calculate a hash in chunks; it won't produce the same hash as it would if + * the same data was provided in a single call. + * + * If you aren't sure what to provide for a seed, zero is fine. Murmur3 is not + * cryptographically secure, so it shouldn't be used for hashing top-secret + * data. + * + * \param data the data to be hashed. + * \param len the size of data, in bytes. + * \param seed a value that alters the final hash value. + * \returns a Murmur3 32-bit hash value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_murmur3_32(const void *data, size_t len, Uint32 seed); + +/** + * Copy non-overlapping memory. + * + * The memory regions must not overlap. If they do, use SDL_memmove() instead. + * + * \param dst The destination memory region. Must not be NULL, and must not + * overlap with `src`. + * \param src The source memory region. Must not be NULL, and must not overlap + * with `dst`. + * \param len The length in bytes of both `dst` and `src`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_memmove + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memcpy(SDL_OUT_BYTECAP(len) void *dst, SDL_IN_BYTECAP(len) const void *src, size_t len); + +/* Take advantage of compiler optimizations for memcpy */ +#ifndef SDL_SLOW_MEMCPY +#ifdef SDL_memcpy +#undef SDL_memcpy +#endif +#define SDL_memcpy memcpy +#endif + + +/** + * A macro to copy memory between objects, with basic type checking. + * + * SDL_memcpy and SDL_memmove do not care where you copy memory to and from, + * which can lead to bugs. This macro aims to avoid most of those bugs by + * making sure that the source and destination are both pointers to objects + * that are the same size. It does not check that the objects are the same + * _type_, just that the copy will not overflow either object. + * + * The size check happens at compile time, and the compiler will throw an + * error if the objects are different sizes. + * + * Generally this is intended to copy a single object, not an array. + * + * This macro looks like it double-evaluates its parameters, but the extras + * them are in `sizeof` sections, which generate no code nor side-effects. + * + * \param dst a pointer to the destination object. Must not be NULL. + * \param src a pointer to the source object. Must not be NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +#define SDL_copyp(dst, src) \ + { SDL_COMPILE_TIME_ASSERT(SDL_copyp, sizeof (*(dst)) == sizeof (*(src))); } \ + SDL_memcpy((dst), (src), sizeof(*(src))) + +/** + * Copy memory ranges that might overlap. + * + * It is okay for the memory regions to overlap. If you are confident that the + * regions never overlap, using SDL_memcpy() may improve performance. + * + * \param dst The destination memory region. Must not be NULL. + * \param src The source memory region. Must not be NULL. + * \param len The length in bytes of both `dst` and `src`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_memcpy + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memmove(SDL_OUT_BYTECAP(len) void *dst, SDL_IN_BYTECAP(len) const void *src, size_t len); + +/* Take advantage of compiler optimizations for memmove */ +#ifndef SDL_SLOW_MEMMOVE +#ifdef SDL_memmove +#undef SDL_memmove +#endif +#define SDL_memmove memmove +#endif + +/** + * Initialize all bytes of buffer of memory to a specific value. + * + * This function will set `len` bytes, pointed to by `dst`, to the value + * specified in `c`. + * + * Despite `c` being an `int` instead of a `char`, this only operates on + * bytes; `c` must be a value between 0 and 255, inclusive. + * + * \param dst the destination memory region. Must not be NULL. + * \param c the byte value to set. + * \param len the length, in bytes, to set in `dst`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memset(SDL_OUT_BYTECAP(len) void *dst, int c, size_t len); + +/** + * Initialize all 32-bit words of buffer of memory to a specific value. + * + * This function will set a buffer of `dwords` Uint32 values, pointed to by + * `dst`, to the value specified in `val`. + * + * Unlike SDL_memset, this sets 32-bit values, not bytes, so it's not limited + * to a range of 0-255. + * + * \param dst the destination memory region. Must not be NULL. + * \param val the Uint32 value to set. + * \param dwords the number of Uint32 values to set in `dst`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memset4(void *dst, Uint32 val, size_t dwords); + +/* Take advantage of compiler optimizations for memset */ +#ifndef SDL_SLOW_MEMSET +#ifdef SDL_memset +#undef SDL_memset +#endif +#define SDL_memset memset +#endif + +/** + * Clear an object's memory to zero. + * + * This is wrapper over SDL_memset that handles calculating the object size, + * so there's no chance of copy/paste errors, and the code is cleaner. + * + * This requires an object, not a pointer to an object, nor an array. + * + * \param x the object to clear. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_zerop + * \sa SDL_zeroa + */ +#define SDL_zero(x) SDL_memset(&(x), 0, sizeof((x))) + +/** + * Clear an object's memory to zero, using a pointer. + * + * This is wrapper over SDL_memset that handles calculating the object size, + * so there's no chance of copy/paste errors, and the code is cleaner. + * + * This requires a pointer to an object, not an object itself, nor an array. + * + * \param x a pointer to the object to clear. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_zero + * \sa SDL_zeroa + */ +#define SDL_zerop(x) SDL_memset((x), 0, sizeof(*(x))) + +/** + * Clear an array's memory to zero. + * + * This is wrapper over SDL_memset that handles calculating the array size, so + * there's no chance of copy/paste errors, and the code is cleaner. + * + * This requires an array, not an object, nor a pointer to an object. + * + * \param x an array to clear. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_zero + * \sa SDL_zeroa + */ +#define SDL_zeroa(x) SDL_memset((x), 0, sizeof((x))) + + +/** + * Compare two buffers of memory. + * + * \param s1 the first buffer to compare. NULL is not permitted! + * \param s2 the second buffer to compare. NULL is not permitted! + * \param len the number of bytes to compare between the buffers. + * \returns less than zero if s1 is "less than" s2, greater than zero if s1 is + * "greater than" s2, and zero if the buffers match exactly for `len` + * bytes. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_memcmp(const void *s1, const void *s2, size_t len); + +/** + * This works exactly like wcslen() but doesn't require access to a C runtime. + * + * Counts the number of wchar_t values in `wstr`, excluding the null + * terminator. + * + * Like SDL_strlen only counts bytes and not codepoints in a UTF-8 string, + * this counts wchar_t values in a string, even if the string's encoding is of + * variable width, like UTF-16. + * + * Also be aware that wchar_t is different sizes on different platforms (4 + * bytes on Linux, 2 on Windows, etc). + * + * \param wstr The null-terminated wide string to read. Must not be NULL. + * \returns the length (in wchar_t values, excluding the null terminator) of + * `wstr`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcsnlen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t *wstr); + +/** + * This works exactly like wcsnlen() but doesn't require access to a C + * runtime. + * + * Counts up to a maximum of `maxlen` wchar_t values in `wstr`, excluding the + * null terminator. + * + * Like SDL_strnlen only counts bytes and not codepoints in a UTF-8 string, + * this counts wchar_t values in a string, even if the string's encoding is of + * variable width, like UTF-16. + * + * Also be aware that wchar_t is different sizes on different platforms (4 + * bytes on Linux, 2 on Windows, etc). + * + * Also, `maxlen` is a count of wide characters, not bytes! + * + * \param wstr The null-terminated wide string to read. Must not be NULL. + * \param maxlen The maximum amount of wide characters to count. + * \returns the length (in wide characters, excluding the null terminator) of + * `wstr` but never more than `maxlen`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcslen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcsnlen(const wchar_t *wstr, size_t maxlen); + +/** + * Copy a wide string. + * + * This function copies `maxlen` - 1 wide characters from `src` to `dst`, then + * appends a null terminator. + * + * `src` and `dst` must not overlap. + * + * If `maxlen` is 0, no wide characters are copied and no null terminator is + * written. + * + * \param dst The destination buffer. Must not be NULL, and must not overlap + * with `src`. + * \param src The null-terminated wide string to copy. Must not be NULL, and + * must not overlap with `dst`. + * \param maxlen The length (in wide characters) of the destination buffer. + * \returns the length (in wide characters, excluding the null terminator) of + * `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcslcat + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcslcpy(SDL_OUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src, size_t maxlen); + +/** + * Concatenate wide strings. + * + * This function appends up to `maxlen` - SDL_wcslen(dst) - 1 wide characters + * from `src` to the end of the wide string in `dst`, then appends a null + * terminator. + * + * `src` and `dst` must not overlap. + * + * If `maxlen` - SDL_wcslen(dst) - 1 is less than or equal to 0, then `dst` is + * unmodified. + * + * \param dst The destination buffer already containing the first + * null-terminated wide string. Must not be NULL and must not + * overlap with `src`. + * \param src The second null-terminated wide string. Must not be NULL, and + * must not overlap with `dst`. + * \param maxlen The length (in wide characters) of the destination buffer. + * \returns the length (in wide characters, excluding the null terminator) of + * the string in `dst` plus the length of `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcslcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcslcat(SDL_INOUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src, size_t maxlen); + +/** + * Allocate a copy of a wide string. + * + * This allocates enough space for a null-terminated copy of `wstr`, using + * SDL_malloc, and then makes a copy of the string into this space. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param wstr the string to copy. + * \returns a pointer to the newly-allocated wide string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC wchar_t * SDLCALL SDL_wcsdup(const wchar_t *wstr); + +/** + * Search a wide string for the first instance of a specific substring. + * + * The search ends once it finds the requested substring, or a null terminator + * byte to end the string. + * + * Note that this looks for strings of _wide characters_, not _codepoints_, so + * it's legal to search for malformed and incomplete UTF-16 sequences. + * + * \param haystack the wide string to search. Must not be NULL. + * \param needle the wide string to search for. Must not be NULL. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC wchar_t * SDLCALL SDL_wcsstr(const wchar_t *haystack, const wchar_t *needle); + +/** + * Search a wide string, up to n wide chars, for the first instance of a + * specific substring. + * + * The search ends once it finds the requested substring, or a null terminator + * value to end the string, or `maxlen` wide character have been examined. It + * is possible to use this function on a wide string without a null + * terminator. + * + * Note that this looks for strings of _wide characters_, not _codepoints_, so + * it's legal to search for malformed and incomplete UTF-16 sequences. + * + * \param haystack the wide string to search. Must not be NULL. + * \param needle the wide string to search for. Must not be NULL. + * \param maxlen the maximum number of wide characters to search in + * `haystack`. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC wchar_t * SDLCALL SDL_wcsnstr(const wchar_t *haystack, const wchar_t *needle, size_t maxlen); + +/** + * Compare two null-terminated wide strings. + * + * This only compares wchar_t values until it hits a null-terminating + * character; it does not care if the string is well-formed UTF-16 (or UTF-32, + * depending on your platform's wchar_t size), or uses valid Unicode values. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcscmp(const wchar_t *str1, const wchar_t *str2); + +/** + * Compare two wide strings up to a number of wchar_t values. + * + * This only compares wchar_t values; it does not care if the string is + * well-formed UTF-16 (or UTF-32, depending on your platform's wchar_t size), + * or uses valid Unicode values. + * + * Note that while this function is intended to be used with UTF-16 (or + * UTF-32, depending on your platform's definition of wchar_t), it is + * comparing raw wchar_t values and not Unicode codepoints: `maxlen` specifies + * a wchar_t limit! If the limit lands in the middle of a multi-wchar UTF-16 + * sequence, it will only compare a portion of the final character. + * + * `maxlen` specifies a maximum number of wchar_t to compare; if the strings + * match to this number of wide chars (or both have matched to a + * null-terminator character before this count), they will be considered + * equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of wchar_t to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcsncmp(const wchar_t *str1, const wchar_t *str2, size_t maxlen); + +/** + * Compare two null-terminated wide strings, case-insensitively. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Depending on your platform, "wchar_t" might be 2 bytes, and expected to be + * UTF-16 encoded (like Windows), or 4 bytes in UTF-32 format. Since this + * handles Unicode, it expects the string to be well-formed and not a + * null-terminated string of arbitrary bytes. Characters that are not valid + * UTF-16 (or UTF-32) are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcscasecmp(const wchar_t *str1, const wchar_t *str2); + +/** + * Compare two wide strings, case-insensitively, up to a number of wchar_t. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Depending on your platform, "wchar_t" might be 2 bytes, and expected to be + * UTF-16 encoded (like Windows), or 4 bytes in UTF-32 format. Since this + * handles Unicode, it expects the string to be well-formed and not a + * null-terminated string of arbitrary bytes. Characters that are not valid + * UTF-16 (or UTF-32) are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * Note that while this function might deal with variable-sized characters, + * `maxlen` specifies a _wchar_ limit! If the limit lands in the middle of a + * multi-byte UTF-16 sequence, it may convert a portion of the final character + * to one or more Unicode character U+FFFD (REPLACEMENT CHARACTER) so as not + * to overflow a buffer. + * + * `maxlen` specifies a maximum number of wchar_t values to compare; if the + * strings match to this number of wchar_t (or both have matched to a + * null-terminator character before this number of bytes), they will be + * considered equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of wchar_t values to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcsncasecmp(const wchar_t *str1, const wchar_t *str2, size_t maxlen); + +/** + * Parse a `long` from a wide string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside a `long`, the result is clamped to + * the minimum and maximum representable `long` values. + * + * \param str The null-terminated wide string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid wide character + * (i.e. the next character after the parsed number) will be + * written to this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strtol + */ +extern SDL_DECLSPEC long SDLCALL SDL_wcstol(const wchar_t *str, wchar_t **endp, int base); + +/** + * This works exactly like strlen() but doesn't require access to a C runtime. + * + * Counts the bytes in `str`, excluding the null terminator. + * + * If you need the length of a UTF-8 string, consider using SDL_utf8strlen(). + * + * \param str The null-terminated string to read. Must not be NULL. + * \returns the length (in bytes, excluding the null terminator) of `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strnlen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strlen(const char *str); + +/** + * This works exactly like strnlen() but doesn't require access to a C + * runtime. + * + * Counts up to a maximum of `maxlen` bytes in `str`, excluding the null + * terminator. + * + * If you need the length of a UTF-8 string, consider using SDL_utf8strnlen(). + * + * \param str The null-terminated string to read. Must not be NULL. + * \param maxlen The maximum amount of bytes to count. + * \returns the length (in bytes, excluding the null terminator) of `src` but + * never more than `maxlen`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strnlen(const char *str, size_t maxlen); + +/** + * Copy a string. + * + * This function copies up to `maxlen` - 1 characters from `src` to `dst`, + * then appends a null terminator. + * + * If `maxlen` is 0, no characters are copied and no null terminator is + * written. + * + * If you want to copy an UTF-8 string but need to ensure that multi-byte + * sequences are not truncated, consider using SDL_utf8strlcpy(). + * + * \param dst The destination buffer. Must not be NULL, and must not overlap + * with `src`. + * \param src The null-terminated string to copy. Must not be NULL, and must + * not overlap with `dst`. + * \param maxlen The length (in characters) of the destination buffer. + * \returns the length (in characters, excluding the null terminator) of + * `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlcat + * \sa SDL_utf8strlcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strlcpy(SDL_OUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen); + +/** + * Copy an UTF-8 string. + * + * This function copies up to `dst_bytes` - 1 bytes from `src` to `dst` while + * also ensuring that the string written to `dst` does not end in a truncated + * multi-byte sequence. Finally, it appends a null terminator. + * + * `src` and `dst` must not overlap. + * + * Note that unlike SDL_strlcpy(), this function returns the number of bytes + * written, not the length of `src`. + * + * \param dst The destination buffer. Must not be NULL, and must not overlap + * with `src`. + * \param src The null-terminated UTF-8 string to copy. Must not be NULL, and + * must not overlap with `dst`. + * \param dst_bytes The length (in bytes) of the destination buffer. Must not + * be 0. + * \returns the number of bytes written, excluding the null terminator. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_utf8strlcpy(SDL_OUT_Z_CAP(dst_bytes) char *dst, const char *src, size_t dst_bytes); + +/** + * Concatenate strings. + * + * This function appends up to `maxlen` - SDL_strlen(dst) - 1 characters from + * `src` to the end of the string in `dst`, then appends a null terminator. + * + * `src` and `dst` must not overlap. + * + * If `maxlen` - SDL_strlen(dst) - 1 is less than or equal to 0, then `dst` is + * unmodified. + * + * \param dst The destination buffer already containing the first + * null-terminated string. Must not be NULL and must not overlap + * with `src`. + * \param src The second null-terminated string. Must not be NULL, and must + * not overlap with `dst`. + * \param maxlen The length (in characters) of the destination buffer. + * \returns the length (in characters, excluding the null terminator) of the + * string in `dst` plus the length of `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strlcat(SDL_INOUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen); + +/** + * Allocate a copy of a string. + * + * This allocates enough space for a null-terminated copy of `str`, using + * SDL_malloc, and then makes a copy of the string into this space. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param str the string to copy. + * \returns a pointer to the newly-allocated string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_MALLOC char * SDLCALL SDL_strdup(const char *str); + +/** + * Allocate a copy of a string, up to n characters. + * + * This allocates enough space for a null-terminated copy of `str`, up to + * `maxlen` bytes, using SDL_malloc, and then makes a copy of the string into + * this space. + * + * If the string is longer than `maxlen` bytes, the returned string will be + * `maxlen` bytes long, plus a null-terminator character that isn't included + * in the count. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param str the string to copy. + * \param maxlen the maximum length of the copied string, not counting the + * null-terminator character. + * \returns a pointer to the newly-allocated string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_MALLOC char * SDLCALL SDL_strndup(const char *str, size_t maxlen); + +/** + * Reverse a string's contents. + * + * This reverses a null-terminated string in-place. Only the content of the + * string is reversed; the null-terminator character remains at the end of the + * reversed string. + * + * **WARNING**: This function reverses the _bytes_ of the string, not the + * codepoints. If `str` is a UTF-8 string with Unicode codepoints > 127, this + * will ruin the string data. You should only use this function on strings + * that are completely comprised of low ASCII characters. + * + * \param str the string to reverse. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strrev(char *str); + +/** + * Convert a string to uppercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'A' through 'Z' to uppercase. + * + * This function operates on a null-terminated string of bytes--even if it is + * malformed UTF-8!--and converts ASCII characters 'a' through 'z' to their + * uppercase equivalents in-place, returning the original `str` pointer. + * + * \param str the string to convert in-place. Can not be NULL. + * \returns the `str` pointer passed into this function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlwr + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strupr(char *str); + +/** + * Convert a string to lowercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'A' through 'Z' to lowercase. + * + * This function operates on a null-terminated string of bytes--even if it is + * malformed UTF-8!--and converts ASCII characters 'A' through 'Z' to their + * lowercase equivalents in-place, returning the original `str` pointer. + * + * \param str the string to convert in-place. Can not be NULL. + * \returns the `str` pointer passed into this function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strupr + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strlwr(char *str); + +/** + * Search a string for the first instance of a specific byte. + * + * The search ends once it finds the requested byte value, or a null + * terminator byte to end the string. + * + * Note that this looks for _bytes_, not _characters_, so you cannot match + * against a Unicode codepoint > 255, regardless of character encoding. + * + * \param str the string to search. Must not be NULL. + * \param c the byte value to search for. + * \returns a pointer to the first instance of `c` in the string, or NULL if + * not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strchr(const char *str, int c); + +/** + * Search a string for the last instance of a specific byte. + * + * The search must go until it finds a null terminator byte to end the string. + * + * Note that this looks for _bytes_, not _characters_, so you cannot match + * against a Unicode codepoint > 255, regardless of character encoding. + * + * \param str the string to search. Must not be NULL. + * \param c the byte value to search for. + * \returns a pointer to the last instance of `c` in the string, or NULL if + * not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strrchr(const char *str, int c); + +/** + * Search a string for the first instance of a specific substring. + * + * The search ends once it finds the requested substring, or a null terminator + * byte to end the string. + * + * Note that this looks for strings of _bytes_, not _characters_, so it's + * legal to search for malformed and incomplete UTF-8 sequences. + * + * \param haystack the string to search. Must not be NULL. + * \param needle the string to search for. Must not be NULL. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strstr(const char *haystack, const char *needle); + +/** + * Search a string, up to n bytes, for the first instance of a specific + * substring. + * + * The search ends once it finds the requested substring, or a null terminator + * byte to end the string, or `maxlen` bytes have been examined. It is + * possible to use this function on a string without a null terminator. + * + * Note that this looks for strings of _bytes_, not _characters_, so it's + * legal to search for malformed and incomplete UTF-8 sequences. + * + * \param haystack the string to search. Must not be NULL. + * \param needle the string to search for. Must not be NULL. + * \param maxlen the maximum number of bytes to search in `haystack`. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strnstr(const char *haystack, const char *needle, size_t maxlen); + +/** + * Search a UTF-8 string for the first instance of a specific substring, + * case-insensitively. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Since this handles Unicode, it expects the strings to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * \param haystack the string to search. Must not be NULL. + * \param needle the string to search for. Must not be NULL. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strcasestr(const char *haystack, const char *needle); + +/** + * This works exactly like strtok_r() but doesn't require access to a C + * runtime. + * + * Break a string up into a series of tokens. + * + * To start tokenizing a new string, `str` should be the non-NULL address of + * the string to start tokenizing. Future calls to get the next token from the + * same string should specify a NULL. + * + * Note that this function will overwrite pieces of `str` with null chars to + * split it into tokens. This function cannot be used with const/read-only + * strings! + * + * `saveptr` just needs to point to a `char *` that can be overwritten; SDL + * will use this to save tokenizing state between calls. It is initialized if + * `str` is non-NULL, and used to resume tokenizing when `str` is NULL. + * + * \param str the string to tokenize, or NULL to continue tokenizing. + * \param delim the delimiter string that separates tokens. + * \param saveptr pointer to a char *, used for ongoing state. + * \returns A pointer to the next token, or NULL if no tokens remain. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strtok_r(char *str, const char *delim, char **saveptr); + +/** + * Count the number of codepoints in a UTF-8 string. + * + * Counts the _codepoints_, not _bytes_, in `str`, excluding the null + * terminator. + * + * If you need to count the bytes in a string instead, consider using + * SDL_strlen(). + * + * Since this handles Unicode, it expects the strings to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), so a malformed or incomplete UTF-8 sequence might increase the + * count by several replacement characters. + * + * \param str The null-terminated UTF-8 string to read. Must not be NULL. + * \returns The length (in codepoints, excluding the null terminator) of + * `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_utf8strnlen + * \sa SDL_strlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_utf8strlen(const char *str); + +/** + * Count the number of codepoints in a UTF-8 string, up to n bytes. + * + * Counts the _codepoints_, not _bytes_, in `str`, excluding the null + * terminator. + * + * If you need to count the bytes in a string instead, consider using + * SDL_strnlen(). + * + * The counting stops at `bytes` bytes (not codepoints!). This seems + * counterintuitive, but makes it easy to express the total size of the + * string's buffer. + * + * Since this handles Unicode, it expects the strings to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), so a malformed or incomplete UTF-8 sequence might increase the + * count by several replacement characters. + * + * \param str The null-terminated UTF-8 string to read. Must not be NULL. + * \param bytes The maximum amount of bytes to count. + * \returns The length (in codepoints, excluding the null terminator) of `src` + * but never more than `maxlen`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_utf8strlen + * \sa SDL_strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_utf8strnlen(const char *str, size_t bytes); + +/** + * Convert an integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget possible negative + * signs, null terminator bytes, etc). + * + * \param value the integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_uitoa + * \sa SDL_ltoa + * \sa SDL_lltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_itoa(int value, char *str, int radix); + +/** + * Convert an unsigned integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget null terminator + * bytes, etc). + * + * \param value the unsigned integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_itoa + * \sa SDL_ultoa + * \sa SDL_ulltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_uitoa(unsigned int value, char *str, int radix); + +/** + * Convert a long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget possible negative + * signs, null terminator bytes, etc). + * + * \param value the long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ultoa + * \sa SDL_itoa + * \sa SDL_lltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_ltoa(long value, char *str, int radix); + +/** + * Convert an unsigned long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget null terminator + * bytes, etc). + * + * \param value the unsigned long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ltoa + * \sa SDL_uitoa + * \sa SDL_ulltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_ultoa(unsigned long value, char *str, int radix); + +#ifndef SDL_NOLONGLONG + +/** + * Convert a long long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget possible negative + * signs, null terminator bytes, etc). + * + * \param value the long long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ulltoa + * \sa SDL_itoa + * \sa SDL_ltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_lltoa(long long value, char *str, int radix); + +/** + * Convert an unsigned long long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget null terminator + * bytes, etc). + * + * \param value the unsigned long long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_lltoa + * \sa SDL_uitoa + * \sa SDL_ultoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_ulltoa(unsigned long long value, char *str, int radix); +#endif + +/** + * Parse an `int` from a string. + * + * The result of calling `SDL_atoi(str)` is equivalent to + * `(int)SDL_strtol(str, NULL, 10)`. + * + * \param str The null-terminated string to read. Must not be NULL. + * \returns the parsed `int`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoul + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_itoa + */ +extern SDL_DECLSPEC int SDLCALL SDL_atoi(const char *str); + +/** + * Parse a `double` from a string. + * + * The result of calling `SDL_atof(str)` is equivalent to `SDL_strtod(str, + * NULL)`. + * + * \param str The null-terminated string to read. Must not be NULL. + * \returns the parsed `double`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_strtol + * \sa SDL_strtoul + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + */ +extern SDL_DECLSPEC double SDLCALL SDL_atof(const char *str); + +/** + * Parse a `long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside a `long`, the result is clamped to + * the minimum and maximum representable `long` values. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtoul + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_ltoa + * \sa SDL_wcstol + */ +extern SDL_DECLSPEC long SDLCALL SDL_strtol(const char *str, char **endp, int base); + +/** + * Parse an `unsigned long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside an `unsigned long`, the result is + * clamped to the maximum representable `unsigned long` value. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `unsigned long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_ultoa + */ +extern SDL_DECLSPEC unsigned long SDLCALL SDL_strtoul(const char *str, char **endp, int base); + +#ifndef SDL_NOLONGLONG + +/** + * Parse a `long long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside a `long long`, the result is + * clamped to the minimum and maximum representable `long long` values. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `long long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoul + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_lltoa + */ +extern SDL_DECLSPEC long long SDLCALL SDL_strtoll(const char *str, char **endp, int base); + +/** + * Parse an `unsigned long long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside an `unsigned long long`, the + * result is clamped to the maximum representable `unsigned long long` value. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `unsigned long long`, or 0 if no number could be + * parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoll + * \sa SDL_strtoul + * \sa SDL_strtod + * \sa SDL_ulltoa + */ +extern SDL_DECLSPEC unsigned long long SDLCALL SDL_strtoull(const char *str, char **endp, int base); +#endif + +/** + * Parse a `double` from a string. + * + * This function makes fewer guarantees than the C runtime `strtod`: + * + * - Only decimal notation is guaranteed to be supported. The handling of + * scientific and hexadecimal notation is unspecified. + * - Whether or not INF and NAN can be parsed is unspecified. + * - The precision of the result is unspecified. + * + * \param str the null-terminated string to read. Must not be NULL. + * \param endp if not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \returns the parsed `double`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoll + * \sa SDL_strtoul + * \sa SDL_strtoull + */ +extern SDL_DECLSPEC double SDLCALL SDL_strtod(const char *str, char **endp); + +/** + * Compare two null-terminated UTF-8 strings. + * + * Due to the nature of UTF-8 encoding, this will work with Unicode strings, + * since effectively this function just compares bytes until it hits a + * null-terminating character. Also due to the nature of UTF-8, this can be + * used with SDL_qsort() to put strings in (roughly) alphabetical order. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2); + +/** + * Compare two UTF-8 strings up to a number of bytes. + * + * Due to the nature of UTF-8 encoding, this will work with Unicode strings, + * since effectively this function just compares bytes until it hits a + * null-terminating character. Also due to the nature of UTF-8, this can be + * used with SDL_qsort() to put strings in (roughly) alphabetical order. + * + * Note that while this function is intended to be used with UTF-8, it is + * doing a bytewise comparison, and `maxlen` specifies a _byte_ limit! If the + * limit lands in the middle of a multi-byte UTF-8 sequence, it will only + * compare a portion of the final character. + * + * `maxlen` specifies a maximum number of bytes to compare; if the strings + * match to this number of bytes (or both have matched to a null-terminator + * character before this number of bytes), they will be considered equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of _bytes_ to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen); + +/** + * Compare two null-terminated UTF-8 strings, case-insensitively. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Since this handles Unicode, it expects the string to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2); + + +/** + * Compare two UTF-8 strings, case-insensitively, up to a number of bytes. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Since this handles Unicode, it expects the string to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * Note that while this function is intended to be used with UTF-8, `maxlen` + * specifies a _byte_ limit! If the limit lands in the middle of a multi-byte + * UTF-8 sequence, it may convert a portion of the final character to one or + * more Unicode character U+FFFD (REPLACEMENT CHARACTER) so as not to overflow + * a buffer. + * + * `maxlen` specifies a maximum number of bytes to compare; if the strings + * match to this number of bytes (or both have matched to a null-terminator + * character before this number of bytes), they will be considered equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of bytes to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t maxlen); + +/** + * Searches a string for the first occurence of any character contained in a + * breakset, and returns a pointer from the string to that character. + * + * \param str The null-terminated string to be searched. Must not be NULL, and + * must not overlap with `breakset`. + * \param breakset A null-terminated string containing the list of characters + * to look for. Must not be NULL, and must not overlap with + * `str`. + * \returns A pointer to the location, in str, of the first occurence of a + * character present in the breakset, or NULL if none is found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strpbrk(const char *str, const char *breakset); + +/** + * The Unicode REPLACEMENT CHARACTER codepoint. + * + * SDL_StepUTF8() and SDL_StepBackUTF8() report this codepoint when they + * encounter a UTF-8 string with encoding errors. + * + * This tends to render as something like a question mark in most places. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_StepBackUTF8 + * \sa SDL_StepUTF8 + */ +#define SDL_INVALID_UNICODE_CODEPOINT 0xFFFD + +/** + * Decode a UTF-8 string, one Unicode codepoint at a time. + * + * This will return the first Unicode codepoint in the UTF-8 encoded string in + * `*pstr`, and then advance `*pstr` past any consumed bytes before returning. + * + * It will not access more than `*pslen` bytes from the string. `*pslen` will + * be adjusted, as well, subtracting the number of bytes consumed. + * + * `pslen` is allowed to be NULL, in which case the string _must_ be + * NULL-terminated, as the function will blindly read until it sees the NULL + * char. + * + * if `*pslen` is zero, it assumes the end of string is reached and returns a + * zero codepoint regardless of the contents of the string buffer. + * + * If the resulting codepoint is zero (a NULL terminator), or `*pslen` is + * zero, it will not advance `*pstr` or `*pslen` at all. + * + * Generally this function is called in a loop until it returns zero, + * adjusting its parameters each iteration. + * + * If an invalid UTF-8 sequence is encountered, this function returns + * SDL_INVALID_UNICODE_CODEPOINT and advances the string/length by one byte + * (which is to say, a multibyte sequence might produce several + * SDL_INVALID_UNICODE_CODEPOINT returns before it syncs to the next valid + * UTF-8 sequence). + * + * Several things can generate invalid UTF-8 sequences, including overlong + * encodings, the use of UTF-16 surrogate values, and truncated data. Please + * refer to + * [RFC3629](https://www.ietf.org/rfc/rfc3629.txt) + * for details. + * + * \param pstr a pointer to a UTF-8 string pointer to be read and adjusted. + * \param pslen a pointer to the number of bytes in the string, to be read and + * adjusted. NULL is allowed. + * \returns the first Unicode codepoint in the string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_StepUTF8(const char **pstr, size_t *pslen); + +/** + * Decode a UTF-8 string in reverse, one Unicode codepoint at a time. + * + * This will go to the start of the previous Unicode codepoint in the string, + * move `*pstr` to that location and return that codepoint. + * + * If `*pstr` is already at the start of the string), it will not advance + * `*pstr` at all. + * + * Generally this function is called in a loop until it returns zero, + * adjusting its parameter each iteration. + * + * If an invalid UTF-8 sequence is encountered, this function returns + * SDL_INVALID_UNICODE_CODEPOINT. + * + * Several things can generate invalid UTF-8 sequences, including overlong + * encodings, the use of UTF-16 surrogate values, and truncated data. Please + * refer to + * [RFC3629](https://www.ietf.org/rfc/rfc3629.txt) + * for details. + * + * \param start a pointer to the beginning of the UTF-8 string. + * \param pstr a pointer to a UTF-8 string pointer to be read and adjusted. + * \returns the previous Unicode codepoint in the string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_StepBackUTF8(const char *start, const char **pstr); + +/** + * Convert a single Unicode codepoint to UTF-8. + * + * The buffer pointed to by `dst` must be at least 4 bytes long, as this + * function may generate between 1 and 4 bytes of output. + * + * This function returns the first byte _after_ the newly-written UTF-8 + * sequence, which is useful for encoding multiple codepoints in a loop, or + * knowing where to write a NULL-terminator character to end the string (in + * either case, plan to have a buffer of _more_ than 4 bytes!). + * + * If `codepoint` is an invalid value (outside the Unicode range, or a UTF-16 + * surrogate value, etc), this will use U+FFFD (REPLACEMENT CHARACTER) for the + * codepoint instead, and not set an error. + * + * If `dst` is NULL, this returns NULL immediately without writing to the + * pointer and without setting an error. + * + * \param codepoint a Unicode codepoint to convert to UTF-8. + * \param dst the location to write the encoded UTF-8. Must point to at least + * 4 bytes! + * \returns the first byte past the newly-written UTF-8 sequence. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_UCS4ToUTF8(Uint32 codepoint, char *dst); + +/** + * This works exactly like sscanf() but doesn't require access to a C runtime. + * + * Scan a string, matching a format string, converting each '%' item and + * storing it to pointers provided through variable arguments. + * + * \param text the string to scan. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of pointers to values to be filled in with scanned items. + * \returns the number of items that matched the format string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_sscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, ...) SDL_SCANF_VARARG_FUNC(2); + +/** + * This works exactly like vsscanf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_sscanf(), except it takes a `va_list` instead + * of using `...` variable arguments. + * + * \param text the string to scan. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ap a `va_list` of pointers to values to be filled in with scanned + * items. + * \returns the number of items that matched the format string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vsscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, va_list ap) SDL_SCANF_VARARG_FUNCV(2); + +/** + * This works exactly like snprintf() but doesn't require access to a C + * runtime. + * + * Format a string of up to `maxlen`-1 bytes, converting each '%' item with + * values provided through variable arguments. + * + * While some C runtimes differ on how to deal with too-large strings, this + * function null-terminates the output, by treating the null-terminator as + * part of the `maxlen` count. Note that if `maxlen` is zero, however, no + * bytes will be written at all. + * + * This function returns the number of _bytes_ (not _characters_) that should + * be written, excluding the null-terminator character. If this returns a + * number >= `maxlen`, it means the output string was truncated. A negative + * return value means an error occurred. + * + * Referencing the output string's pointer with a format item is undefined + * behavior. + * + * \param text the buffer to write the string into. Must not be NULL. + * \param maxlen the maximum bytes to write, including the null-terminator. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of values to be used with the format string. + * \returns the number of bytes that should be written, not counting the + * null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_snprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(3); + +/** + * This works exactly like swprintf() but doesn't require access to a C + * runtime. + * + * Format a wide string of up to `maxlen`-1 wchar_t values, converting each + * '%' item with values provided through variable arguments. + * + * While some C runtimes differ on how to deal with too-large strings, this + * function null-terminates the output, by treating the null-terminator as + * part of the `maxlen` count. Note that if `maxlen` is zero, however, no wide + * characters will be written at all. + * + * This function returns the number of _wide characters_ (not _codepoints_) + * that should be written, excluding the null-terminator character. If this + * returns a number >= `maxlen`, it means the output string was truncated. A + * negative return value means an error occurred. + * + * Referencing the output string's pointer with a format item is undefined + * behavior. + * + * \param text the buffer to write the wide string into. Must not be NULL. + * \param maxlen the maximum wchar_t values to write, including the + * null-terminator. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of values to be used with the format string. + * \returns the number of wide characters that should be written, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_swprintf(SDL_OUT_Z_CAP(maxlen) wchar_t *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const wchar_t *fmt, ...) SDL_WPRINTF_VARARG_FUNC(3); + +/** + * This works exactly like vsnprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_snprintf(), except it takes a `va_list` + * instead of using `...` variable arguments. + * + * \param text the buffer to write the string into. Must not be NULL. + * \param maxlen the maximum bytes to write, including the null-terminator. + * \param fmt a printf-style format string. Must not be NULL. + * \param ap a `va_list` values to be used with the format string. + * \returns the number of bytes that should be written, not counting the + * null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vsnprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(3); + +/** + * This works exactly like vswprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_swprintf(), except it takes a `va_list` + * instead of using `...` variable arguments. + * + * \param text the buffer to write the string into. Must not be NULL. + * \param maxlen the maximum wide characters to write, including the + * null-terminator. + * \param fmt a printf-style format wide string. Must not be NULL. + * \param ap a `va_list` values to be used with the format string. + * \returns the number of wide characters that should be written, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vswprintf(SDL_OUT_Z_CAP(maxlen) wchar_t *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const wchar_t *fmt, va_list ap) SDL_WPRINTF_VARARG_FUNCV(3); + +/** + * This works exactly like asprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_snprintf(), except it allocates a buffer large + * enough to hold the output string on behalf of the caller. + * + * On success, this function returns the number of bytes (not characters) + * comprising the output string, not counting the null-terminator character, + * and sets `*strp` to the newly-allocated string. + * + * On error, this function returns a negative number, and the value of `*strp` + * is undefined. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param strp on output, is set to the new string. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of values to be used with the format string. + * \returns the number of bytes in the newly-allocated string, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_asprintf(char **strp, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * This works exactly like vasprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_asprintf(), except it takes a `va_list` + * instead of using `...` variable arguments. + * + * \param strp on output, is set to the new string. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ap a `va_list` values to be used with the format string. + * \returns the number of bytes in the newly-allocated string, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vasprintf(char **strp, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + +/** + * Seeds the pseudo-random number generator. + * + * Reusing the seed number will cause SDL_rand() to repeat the same stream of + * 'random' numbers. + * + * \param seed the value to use as a random number seed, or 0 to use + * SDL_GetPerformanceCounter(). + * + * \threadsafety This should be called on the same thread that calls + * SDL_rand() + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand + * \sa SDL_rand_bits + * \sa SDL_randf + */ +extern SDL_DECLSPEC void SDLCALL SDL_srand(Uint64 seed); + +/** + * Generate a pseudo-random number less than n for positive n + * + * The method used is faster and of better quality than `rand() % n`. Odds are + * roughly 99.9% even for n = 1 million. Evenness is better for smaller n, and + * much worse as n gets bigger. + * + * Example: to simulate a d6 use `SDL_rand(6) + 1` The +1 converts 0..5 to + * 1..6 + * + * If you want to generate a pseudo-random number in the full range of Sint32, + * you should use: (Sint32)SDL_rand_bits() + * + * If you want reproducible output, be sure to initialize with SDL_srand() + * first. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param n the number of possible outcomes. n must be positive. + * \returns a random value in the range of [0 .. n-1]. + * + * \threadsafety All calls should be made from a single thread + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_srand + * \sa SDL_randf + */ +extern SDL_DECLSPEC Sint32 SDLCALL SDL_rand(Sint32 n); + +/** + * Generate a uniform pseudo-random floating point number less than 1.0 + * + * If you want reproducible output, be sure to initialize with SDL_srand() + * first. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \returns a random value in the range of [0.0, 1.0). + * + * \threadsafety All calls should be made from a single thread + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_srand + * \sa SDL_rand + */ +extern SDL_DECLSPEC float SDLCALL SDL_randf(void); + +/** + * Generate 32 pseudo-random bits. + * + * You likely want to use SDL_rand() to get a psuedo-random number instead. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \returns a random value in the range of [0-SDL_MAX_UINT32]. + * + * \threadsafety All calls should be made from a single thread + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand + * \sa SDL_randf + * \sa SDL_srand + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_rand_bits(void); + +/** + * Generate a pseudo-random number less than n for positive n + * + * The method used is faster and of better quality than `rand() % n`. Odds are + * roughly 99.9% even for n = 1 million. Evenness is better for smaller n, and + * much worse as n gets bigger. + * + * Example: to simulate a d6 use `SDL_rand_r(state, 6) + 1` The +1 converts + * 0..5 to 1..6 + * + * If you want to generate a pseudo-random number in the full range of Sint32, + * you should use: (Sint32)SDL_rand_bits_r(state) + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param state a pointer to the current random number state, this may not be + * NULL. + * \param n the number of possible outcomes. n must be positive. + * \returns a random value in the range of [0 .. n-1]. + * + * \threadsafety This function is thread-safe, as long as the state pointer + * isn't shared between threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand + * \sa SDL_rand_bits_r + * \sa SDL_randf_r + */ +extern SDL_DECLSPEC Sint32 SDLCALL SDL_rand_r(Uint64 *state, Sint32 n); + +/** + * Generate a uniform pseudo-random floating point number less than 1.0 + * + * If you want reproducible output, be sure to initialize with SDL_srand() + * first. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param state a pointer to the current random number state, this may not be + * NULL. + * \returns a random value in the range of [0.0, 1.0). + * + * \threadsafety This function is thread-safe, as long as the state pointer + * isn't shared between threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand_bits_r + * \sa SDL_rand_r + * \sa SDL_randf + */ +extern SDL_DECLSPEC float SDLCALL SDL_randf_r(Uint64 *state); + +/** + * Generate 32 pseudo-random bits. + * + * You likely want to use SDL_rand_r() to get a psuedo-random number instead. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param state a pointer to the current random number state, this may not be + * NULL. + * \returns a random value in the range of [0-SDL_MAX_UINT32]. + * + * \threadsafety This function is thread-safe, as long as the state pointer + * isn't shared between threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand_r + * \sa SDL_randf_r + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_rand_bits_r(Uint64 *state); + +#ifndef SDL_PI_D + +/** + * The value of Pi, as a double-precision floating point literal. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PI_F + */ +#define SDL_PI_D 3.141592653589793238462643383279502884 /**< pi (double) */ +#endif + +#ifndef SDL_PI_F + +/** + * The value of Pi, as a single-precision floating point literal. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PI_D + */ +#define SDL_PI_F 3.141592653589793238462643383279502884F /**< pi (float) */ +#endif + +/** + * Compute the arc cosine of `x`. + * + * The definition of `y = acos(x)` is `x = cos(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `0 <= y <= Pi` + * + * This function operates on double-precision floating point values, use + * SDL_acosf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc cosine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_acosf + * \sa SDL_asin + * \sa SDL_cos + */ +extern SDL_DECLSPEC double SDLCALL SDL_acos(double x); + +/** + * Compute the arc cosine of `x`. + * + * The definition of `y = acos(x)` is `x = cos(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `0 <= y <= Pi` + * + * This function operates on single-precision floating point values, use + * SDL_acos for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc cosine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_acos + * \sa SDL_asinf + * \sa SDL_cosf + */ +extern SDL_DECLSPEC float SDLCALL SDL_acosf(float x); + +/** + * Compute the arc sine of `x`. + * + * The definition of `y = asin(x)` is `x = sin(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on double-precision floating point values, use + * SDL_asinf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc sine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_asinf + * \sa SDL_acos + * \sa SDL_sin + */ +extern SDL_DECLSPEC double SDLCALL SDL_asin(double x); + +/** + * Compute the arc sine of `x`. + * + * The definition of `y = asin(x)` is `x = sin(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on single-precision floating point values, use + * SDL_asin for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc sine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_asin + * \sa SDL_acosf + * \sa SDL_sinf + */ +extern SDL_DECLSPEC float SDLCALL SDL_asinf(float x); + +/** + * Compute the arc tangent of `x`. + * + * The definition of `y = atan(x)` is `x = tan(y)`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on double-precision floating point values, use + * SDL_atanf for single-precision floats. + * + * To calculate the arc tangent of y / x, use SDL_atan2. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc tangent of of `x` in radians, or 0 if `x = 0`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atanf + * \sa SDL_atan2 + * \sa SDL_tan + */ +extern SDL_DECLSPEC double SDLCALL SDL_atan(double x); + +/** + * Compute the arc tangent of `x`. + * + * The definition of `y = atan(x)` is `x = tan(y)`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on single-precision floating point values, use + * SDL_atan for dboule-precision floats. + * + * To calculate the arc tangent of y / x, use SDL_atan2f. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc tangent of of `x` in radians, or 0 if `x = 0`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atan + * \sa SDL_atan2f + * \sa SDL_tanf + */ +extern SDL_DECLSPEC float SDLCALL SDL_atanf(float x); + +/** + * Compute the arc tangent of `y / x`, using the signs of x and y to adjust + * the result's quadrant. + * + * The definition of `z = atan2(x, y)` is `y = x tan(z)`, where the quadrant + * of z is determined based on the signs of x and y. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-Pi <= y <= Pi` + * + * This function operates on double-precision floating point values, use + * SDL_atan2f for single-precision floats. + * + * To calculate the arc tangent of a single value, use SDL_atan. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param y floating point value of the numerator (y coordinate). + * \param x floating point value of the denominator (x coordinate). + * \returns arc tangent of of `y / x` in radians, or, if `x = 0`, either + * `-Pi/2`, `0`, or `Pi/2`, depending on the value of `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atan2f + * \sa SDL_atan + * \sa SDL_tan + */ +extern SDL_DECLSPEC double SDLCALL SDL_atan2(double y, double x); + +/** + * Compute the arc tangent of `y / x`, using the signs of x and y to adjust + * the result's quadrant. + * + * The definition of `z = atan2(x, y)` is `y = x tan(z)`, where the quadrant + * of z is determined based on the signs of x and y. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-Pi <= y <= Pi` + * + * This function operates on single-precision floating point values, use + * SDL_atan2 for double-precision floats. + * + * To calculate the arc tangent of a single value, use SDL_atanf. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param y floating point value of the numerator (y coordinate). + * \param x floating point value of the denominator (x coordinate). + * \returns arc tangent of of `y / x` in radians, or, if `x = 0`, either + * `-Pi/2`, `0`, or `Pi/2`, depending on the value of `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atan2 + * \sa SDL_atan + * \sa SDL_tan + */ +extern SDL_DECLSPEC float SDLCALL SDL_atan2f(float y, float x); + +/** + * Compute the ceiling of `x`. + * + * The ceiling of `x` is the smallest integer `y` such that `y > x`, i.e `x` + * rounded up to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_ceilf for single-precision floats. + * + * \param x floating point value. + * \returns the ceiling of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ceilf + * \sa SDL_floor + * \sa SDL_trunc + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_ceil(double x); + +/** + * Compute the ceiling of `x`. + * + * The ceiling of `x` is the smallest integer `y` such that `y > x`, i.e `x` + * rounded up to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_ceil for double-precision floats. + * + * \param x floating point value. + * \returns the ceiling of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ceil + * \sa SDL_floorf + * \sa SDL_truncf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_ceilf(float x); + +/** + * Copy the sign of one floating-point value to another. + * + * The definition of copysign is that ``copysign(x, y) = abs(x) * sign(y)``. + * + * Domain: `-INF <= x <= INF`, ``-INF <= y <= f`` + * + * Range: `-INF <= z <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_copysignf for single-precision floats. + * + * \param x floating point value to use as the magnitude. + * \param y floating point value to use as the sign. + * \returns the floating point value with the sign of y and the magnitude of + * x. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_copysignf + * \sa SDL_fabs + */ +extern SDL_DECLSPEC double SDLCALL SDL_copysign(double x, double y); + +/** + * Copy the sign of one floating-point value to another. + * + * The definition of copysign is that ``copysign(x, y) = abs(x) * sign(y)``. + * + * Domain: `-INF <= x <= INF`, ``-INF <= y <= f`` + * + * Range: `-INF <= z <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_copysign for double-precision floats. + * + * \param x floating point value to use as the magnitude. + * \param y floating point value to use as the sign. + * \returns the floating point value with the sign of y and the magnitude of + * x. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_copysign + * \sa SDL_fabsf + */ +extern SDL_DECLSPEC float SDLCALL SDL_copysignf(float x, float y); + +/** + * Compute the cosine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on double-precision floating point values, use + * SDL_cosf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns cosine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_cosf + * \sa SDL_acos + * \sa SDL_sin + */ +extern SDL_DECLSPEC double SDLCALL SDL_cos(double x); + +/** + * Compute the cosine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on single-precision floating point values, use + * SDL_cos for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns cosine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_cos + * \sa SDL_acosf + * \sa SDL_sinf + */ +extern SDL_DECLSPEC float SDLCALL SDL_cosf(float x); + +/** + * Compute the exponential of `x`. + * + * The definition of `y = exp(x)` is `y = e^x`, where `e` is the base of the + * natural logarithm. The inverse is the natural logarithm, SDL_log. + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * The output will overflow if `exp(x)` is too large to be represented. + * + * This function operates on double-precision floating point values, use + * SDL_expf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns value of `e^x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_expf + * \sa SDL_log + */ +extern SDL_DECLSPEC double SDLCALL SDL_exp(double x); + +/** + * Compute the exponential of `x`. + * + * The definition of `y = exp(x)` is `y = e^x`, where `e` is the base of the + * natural logarithm. The inverse is the natural logarithm, SDL_logf. + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * The output will overflow if `exp(x)` is too large to be represented. + * + * This function operates on single-precision floating point values, use + * SDL_exp for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns value of `e^x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_exp + * \sa SDL_logf + */ +extern SDL_DECLSPEC float SDLCALL SDL_expf(float x); + +/** + * Compute the absolute value of `x` + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_fabsf for single-precision floats. + * + * \param x floating point value to use as the magnitude. + * \returns the absolute value of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fabsf + */ +extern SDL_DECLSPEC double SDLCALL SDL_fabs(double x); + +/** + * Compute the absolute value of `x` + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_fabs for double-precision floats. + * + * \param x floating point value to use as the magnitude. + * \returns the absolute value of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fabs + */ +extern SDL_DECLSPEC float SDLCALL SDL_fabsf(float x); + +/** + * Compute the floor of `x`. + * + * The floor of `x` is the largest integer `y` such that `y > x`, i.e `x` + * rounded down to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_floorf for single-precision floats. + * + * \param x floating point value. + * \returns the floor of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_floorf + * \sa SDL_ceil + * \sa SDL_trunc + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_floor(double x); + +/** + * Compute the floor of `x`. + * + * The floor of `x` is the largest integer `y` such that `y > x`, i.e `x` + * rounded down to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_floor for double-precision floats. + * + * \param x floating point value. + * \returns the floor of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_floor + * \sa SDL_ceilf + * \sa SDL_truncf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_floorf(float x); + +/** + * Truncate `x` to an integer. + * + * Rounds `x` to the next closest integer to 0. This is equivalent to removing + * the fractional part of `x`, leaving only the integer part. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_truncf for single-precision floats. + * + * \param x floating point value. + * \returns `x` truncated to an integer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_truncf + * \sa SDL_fmod + * \sa SDL_ceil + * \sa SDL_floor + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_trunc(double x); + +/** + * Truncate `x` to an integer. + * + * Rounds `x` to the next closest integer to 0. This is equivalent to removing + * the fractional part of `x`, leaving only the integer part. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_trunc for double-precision floats. + * + * \param x floating point value. + * \returns `x` truncated to an integer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_trunc + * \sa SDL_fmodf + * \sa SDL_ceilf + * \sa SDL_floorf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_truncf(float x); + +/** + * Return the floating-point remainder of `x / y` + * + * Divides `x` by `y`, and returns the remainder. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF`, `y != 0` + * + * Range: `-y <= z <= y` + * + * This function operates on double-precision floating point values, use + * SDL_fmodf for single-precision floats. + * + * \param x the numerator. + * \param y the denominator. Must not be 0. + * \returns the remainder of `x / y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fmodf + * \sa SDL_modf + * \sa SDL_trunc + * \sa SDL_ceil + * \sa SDL_floor + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_fmod(double x, double y); + +/** + * Return the floating-point remainder of `x / y` + * + * Divides `x` by `y`, and returns the remainder. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF`, `y != 0` + * + * Range: `-y <= z <= y` + * + * This function operates on single-precision floating point values, use + * SDL_fmod for double-precision floats. + * + * \param x the numerator. + * \param y the denominator. Must not be 0. + * \returns the remainder of `x / y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fmod + * \sa SDL_truncf + * \sa SDL_modff + * \sa SDL_ceilf + * \sa SDL_floorf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_fmodf(float x, float y); + +/** + * Return whether the value is infinity. + * + * \param x double-precision floating point value. + * \returns non-zero if the value is infinity, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isinff + */ +extern SDL_DECLSPEC int SDLCALL SDL_isinf(double x); + +/** + * Return whether the value is infinity. + * + * \param x floating point value. + * \returns non-zero if the value is infinity, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isinf + */ +extern SDL_DECLSPEC int SDLCALL SDL_isinff(float x); + +/** + * Return whether the value is NaN. + * + * \param x double-precision floating point value. + * \returns non-zero if the value is NaN, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isnanf + */ +extern SDL_DECLSPEC int SDLCALL SDL_isnan(double x); + +/** + * Return whether the value is NaN. + * + * \param x floating point value. + * \returns non-zero if the value is NaN, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isnan + */ +extern SDL_DECLSPEC int SDLCALL SDL_isnanf(float x); + +/** + * Compute the natural logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on double-precision floating point values, use + * SDL_logf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the natural logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_logf + * \sa SDL_log10 + * \sa SDL_exp + */ +extern SDL_DECLSPEC double SDLCALL SDL_log(double x); + +/** + * Compute the natural logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on single-precision floating point values, use + * SDL_log for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the natural logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_log + * \sa SDL_expf + */ +extern SDL_DECLSPEC float SDLCALL SDL_logf(float x); + +/** + * Compute the base-10 logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on double-precision floating point values, use + * SDL_log10f for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_log10f + * \sa SDL_log + * \sa SDL_pow + */ +extern SDL_DECLSPEC double SDLCALL SDL_log10(double x); + +/** + * Compute the base-10 logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on single-precision floating point values, use + * SDL_log10 for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_log10 + * \sa SDL_logf + * \sa SDL_powf + */ +extern SDL_DECLSPEC float SDLCALL SDL_log10f(float x); + +/** + * Split `x` into integer and fractional parts + * + * This function operates on double-precision floating point values, use + * SDL_modff for single-precision floats. + * + * \param x floating point value. + * \param y output pointer to store the integer part of `x`. + * \returns the fractional part of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_modff + * \sa SDL_trunc + * \sa SDL_fmod + */ +extern SDL_DECLSPEC double SDLCALL SDL_modf(double x, double *y); + +/** + * Split `x` into integer and fractional parts + * + * This function operates on single-precision floating point values, use + * SDL_modf for double-precision floats. + * + * \param x floating point value. + * \param y output pointer to store the integer part of `x`. + * \returns the fractional part of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_modf + * \sa SDL_truncf + * \sa SDL_fmodf + */ +extern SDL_DECLSPEC float SDLCALL SDL_modff(float x, float *y); + +/** + * Raise `x` to the power `y` + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-INF <= z <= INF` + * + * If `y` is the base of the natural logarithm (e), consider using SDL_exp + * instead. + * + * This function operates on double-precision floating point values, use + * SDL_powf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x the base. + * \param y the exponent. + * \returns `x` raised to the power `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_powf + * \sa SDL_exp + * \sa SDL_log + */ +extern SDL_DECLSPEC double SDLCALL SDL_pow(double x, double y); + +/** + * Raise `x` to the power `y` + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-INF <= z <= INF` + * + * If `y` is the base of the natural logarithm (e), consider using SDL_exp + * instead. + * + * This function operates on single-precision floating point values, use + * SDL_pow for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x the base. + * \param y the exponent. + * \returns `x` raised to the power `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_pow + * \sa SDL_expf + * \sa SDL_logf + */ +extern SDL_DECLSPEC float SDLCALL SDL_powf(float x, float y); + +/** + * Round `x` to the nearest integer. + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_roundf for single-precision floats. To get the result as an integer + * type, use SDL_lround. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_roundf + * \sa SDL_lround + * \sa SDL_floor + * \sa SDL_ceil + * \sa SDL_trunc + */ +extern SDL_DECLSPEC double SDLCALL SDL_round(double x); + +/** + * Round `x` to the nearest integer. + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_round for double-precision floats. To get the result as an integer + * type, use SDL_lroundf. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_round + * \sa SDL_lroundf + * \sa SDL_floorf + * \sa SDL_ceilf + * \sa SDL_truncf + */ +extern SDL_DECLSPEC float SDLCALL SDL_roundf(float x); + +/** + * Round `x` to the nearest integer representable as a long + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `MIN_LONG <= y <= MAX_LONG` + * + * This function operates on double-precision floating point values, use + * SDL_lroundf for single-precision floats. To get the result as a + * floating-point type, use SDL_round. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_lroundf + * \sa SDL_round + * \sa SDL_floor + * \sa SDL_ceil + * \sa SDL_trunc + */ +extern SDL_DECLSPEC long SDLCALL SDL_lround(double x); + +/** + * Round `x` to the nearest integer representable as a long + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `MIN_LONG <= y <= MAX_LONG` + * + * This function operates on single-precision floating point values, use + * SDL_lround for double-precision floats. To get the result as a + * floating-point type, use SDL_roundf. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_lround + * \sa SDL_roundf + * \sa SDL_floorf + * \sa SDL_ceilf + * \sa SDL_truncf + */ +extern SDL_DECLSPEC long SDLCALL SDL_lroundf(float x); + +/** + * Scale `x` by an integer power of two. + * + * Multiplies `x` by the `n`th power of the floating point radix (always 2). + * + * Domain: `-INF <= x <= INF`, `n` integer + * + * Range: `-INF <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_scalbnf for single-precision floats. + * + * \param x floating point value to be scaled. + * \param n integer exponent. + * \returns `x * 2^n`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_scalbnf + * \sa SDL_pow + */ +extern SDL_DECLSPEC double SDLCALL SDL_scalbn(double x, int n); + +/** + * Scale `x` by an integer power of two. + * + * Multiplies `x` by the `n`th power of the floating point radix (always 2). + * + * Domain: `-INF <= x <= INF`, `n` integer + * + * Range: `-INF <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_scalbn for double-precision floats. + * + * \param x floating point value to be scaled. + * \param n integer exponent. + * \returns `x * 2^n`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_scalbn + * \sa SDL_powf + */ +extern SDL_DECLSPEC float SDLCALL SDL_scalbnf(float x, int n); + +/** + * Compute the sine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on double-precision floating point values, use + * SDL_sinf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns sine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sinf + * \sa SDL_asin + * \sa SDL_cos + */ +extern SDL_DECLSPEC double SDLCALL SDL_sin(double x); + +/** + * Compute the sine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on single-precision floating point values, use + * SDL_sin for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns sine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sin + * \sa SDL_asinf + * \sa SDL_cosf + */ +extern SDL_DECLSPEC float SDLCALL SDL_sinf(float x); + +/** + * Compute the square root of `x`. + * + * Domain: `0 <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_sqrtf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than or equal to 0. + * \returns square root of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sqrtf + */ +extern SDL_DECLSPEC double SDLCALL SDL_sqrt(double x); + +/** + * Compute the square root of `x`. + * + * Domain: `0 <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_sqrt for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than or equal to 0. + * \returns square root of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sqrt + */ +extern SDL_DECLSPEC float SDLCALL SDL_sqrtf(float x); + +/** + * Compute the tangent of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_tanf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns tangent of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_tanf + * \sa SDL_sin + * \sa SDL_cos + * \sa SDL_atan + * \sa SDL_atan2 + */ +extern SDL_DECLSPEC double SDLCALL SDL_tan(double x); + +/** + * Compute the tangent of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_tan for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns tangent of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_tan + * \sa SDL_sinf + * \sa SDL_cosf + * \sa SDL_atanf + * \sa SDL_atan2f + */ +extern SDL_DECLSPEC float SDLCALL SDL_tanf(float x); + +/** + * An opaque handle representing string encoding conversion state. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_iconv_open + */ +typedef struct SDL_iconv_data_t *SDL_iconv_t; + +/** + * This function allocates a context for the specified character set + * conversion. + * + * \param tocode The target character encoding, must not be NULL. + * \param fromcode The source character encoding, must not be NULL. + * \returns a handle that must be freed with SDL_iconv_close, or + * SDL_ICONV_ERROR on failure. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv + * \sa SDL_iconv_close + * \sa SDL_iconv_string + */ +extern SDL_DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode, + const char *fromcode); + +/** + * This function frees a context used for character set conversion. + * + * \param cd The character set conversion handle. + * \returns 0 on success, or -1 on failure. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv + * \sa SDL_iconv_open + * \sa SDL_iconv_string + */ +extern SDL_DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd); + +/** + * This function converts text between encodings, reading from and writing to + * a buffer. + * + * It returns the number of succesful conversions on success. On error, + * SDL_ICONV_E2BIG is returned when the output buffer is too small, or + * SDL_ICONV_EILSEQ is returned when an invalid input sequence is encountered, + * or SDL_ICONV_EINVAL is returned when an incomplete input sequence is + * encountered. + * + * On exit: + * + * - inbuf will point to the beginning of the next multibyte sequence. On + * error, this is the location of the problematic input sequence. On + * success, this is the end of the input sequence. + * - inbytesleft will be set to the number of bytes left to convert, which + * will be 0 on success. + * - outbuf will point to the location where to store the next output byte. + * - outbytesleft will be set to the number of bytes left in the output + * buffer. + * + * \param cd The character set conversion context, created in + * SDL_iconv_open(). + * \param inbuf Address of variable that points to the first character of the + * input sequence. + * \param inbytesleft The number of bytes in the input buffer. + * \param outbuf Address of variable that points to the output buffer. + * \param outbytesleft The number of bytes in the output buffer. + * \returns the number of conversions on success, or a negative error code. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv_open + * \sa SDL_iconv_close + * \sa SDL_iconv_string + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, const char **inbuf, + size_t *inbytesleft, char **outbuf, + size_t *outbytesleft); + +#define SDL_ICONV_ERROR (size_t)-1 /**< Generic error. Check SDL_GetError()? */ +#define SDL_ICONV_E2BIG (size_t)-2 /**< Output buffer was too small. */ +#define SDL_ICONV_EILSEQ (size_t)-3 /**< Invalid input sequence was encountered. */ +#define SDL_ICONV_EINVAL (size_t)-4 /**< Incomplete input sequence was encountered. */ + + +/** + * Helper function to convert a string's encoding in one call. + * + * This function converts a buffer or string between encodings in one pass. + * + * The string does not need to be NULL-terminated; this function operates on + * the number of bytes specified in `inbytesleft` whether there is a NULL + * character anywhere in the buffer. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param tocode the character encoding of the output string. Examples are + * "UTF-8", "UCS-4", etc. + * \param fromcode the character encoding of data in `inbuf`. + * \param inbuf the string to convert to a different encoding. + * \param inbytesleft the size of the input string _in bytes_. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv_open + * \sa SDL_iconv_close + * \sa SDL_iconv + */ +extern SDL_DECLSPEC char * SDLCALL SDL_iconv_string(const char *tocode, + const char *fromcode, + const char *inbuf, + size_t inbytesleft); + +/* Some helper macros for common SDL_iconv_string cases... */ + +/** + * Convert a UTF-8 string to the current locale's character encoding. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_utf8_locale(S) SDL_iconv_string("", "UTF-8", S, SDL_strlen(S)+1) + +/** + * Convert a UTF-8 string to UCS-2. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2", "UTF-8", S, SDL_strlen(S)+1) + +/** + * Convert a UTF-8 string to UCS-4. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_utf8_ucs4(S) (Uint32 *)SDL_iconv_string("UCS-4", "UTF-8", S, SDL_strlen(S)+1) + +/** + * Convert a wchar_t string to UTF-8. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_wchar_utf8(S) SDL_iconv_string("UTF-8", "WCHAR_T", (char *)S, (SDL_wcslen(S)+1)*sizeof(wchar_t)) + + +/* force builds using Clang's static analysis tools to use literal C runtime + here, since there are possibly tests that are ineffective otherwise. */ +#if defined(__clang_analyzer__) && !defined(SDL_DISABLE_ANALYZE_MACROS) + +/* The analyzer knows about strlcpy even when the system doesn't provide it */ +#if !defined(HAVE_STRLCPY) && !defined(strlcpy) +size_t strlcpy(char *dst, const char *src, size_t size); +#endif + +/* The analyzer knows about strlcat even when the system doesn't provide it */ +#if !defined(HAVE_STRLCAT) && !defined(strlcat) +size_t strlcat(char *dst, const char *src, size_t size); +#endif + +#if !defined(HAVE_WCSLCPY) && !defined(wcslcpy) +size_t wcslcpy(wchar_t *dst, const wchar_t *src, size_t size); +#endif + +#if !defined(HAVE_WCSLCAT) && !defined(wcslcat) +size_t wcslcat(wchar_t *dst, const wchar_t *src, size_t size); +#endif + +#ifndef _WIN32 +/* strdup is not ANSI but POSIX, and its prototype might be hidden... */ +/* not for windows: might conflict with string.h where strdup may have + * dllimport attribute: https://github.com/libsdl-org/SDL/issues/12948 */ +char *strdup(const char *str); +#endif + +/* Starting LLVM 16, the analyser errors out if these functions do not have + their prototype defined (clang-diagnostic-implicit-function-declaration) */ +#include +#include + +#define SDL_malloc malloc +#define SDL_calloc calloc +#define SDL_realloc realloc +#define SDL_free free +#ifndef SDL_memcpy +#define SDL_memcpy memcpy +#endif +#ifndef SDL_memmove +#define SDL_memmove memmove +#endif +#ifndef SDL_memset +#define SDL_memset memset +#endif +#define SDL_memcmp memcmp +#define SDL_strlcpy strlcpy +#define SDL_strlcat strlcat +#define SDL_strlen strlen +#define SDL_wcslen wcslen +#define SDL_wcslcpy wcslcpy +#define SDL_wcslcat wcslcat +#define SDL_strdup strdup +#define SDL_wcsdup wcsdup +#define SDL_strchr strchr +#define SDL_strrchr strrchr +#define SDL_strstr strstr +#define SDL_wcsstr wcsstr +#define SDL_strtok_r strtok_r +#define SDL_strcmp strcmp +#define SDL_wcscmp wcscmp +#define SDL_strncmp strncmp +#define SDL_wcsncmp wcsncmp +#define SDL_strcasecmp strcasecmp +#define SDL_strncasecmp strncasecmp +#define SDL_strpbrk strpbrk +#define SDL_sscanf sscanf +#define SDL_vsscanf vsscanf +#define SDL_snprintf snprintf +#define SDL_vsnprintf vsnprintf +#endif + +/** + * Multiply two integers, checking for overflow. + * + * If `a * b` would overflow, return false. + * + * Otherwise store `a * b` via ret and return true. + * + * \param a the multiplicand. + * \param b the multiplier. + * \param ret on non-overflow output, stores the multiplication result, may + * not be NULL. + * \returns false on overflow, true if result is multiplied without overflow. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_size_mul_check_overflow(size_t a, size_t b, size_t *ret) +{ + if (a != 0 && b > SDL_SIZE_MAX / a) { + return false; + } + *ret = a * b; + return true; +} + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if SDL_HAS_BUILTIN(__builtin_mul_overflow) +/* This needs to be wrapped in an inline rather than being a direct #define, + * because __builtin_mul_overflow() is type-generic, but we want to be + * consistent about interpreting a and b as size_t. */ +SDL_FORCE_INLINE bool SDL_size_mul_check_overflow_builtin(size_t a, size_t b, size_t *ret) +{ + return (__builtin_mul_overflow(a, b, ret) == 0); +} +#define SDL_size_mul_check_overflow(a, b, ret) SDL_size_mul_check_overflow_builtin(a, b, ret) +#endif +#endif + +/** + * Add two integers, checking for overflow. + * + * If `a + b` would overflow, return false. + * + * Otherwise store `a + b` via ret and return true. + * + * \param a the first addend. + * \param b the second addend. + * \param ret on non-overflow output, stores the addition result, may not be + * NULL. + * \returns false on overflow, true if result is added without overflow. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_size_add_check_overflow(size_t a, size_t b, size_t *ret) +{ + if (b > SDL_SIZE_MAX - a) { + return false; + } + *ret = a + b; + return true; +} + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if SDL_HAS_BUILTIN(__builtin_add_overflow) +/* This needs to be wrapped in an inline rather than being a direct #define, + * the same as the call to __builtin_mul_overflow() above. */ +SDL_FORCE_INLINE bool SDL_size_add_check_overflow_builtin(size_t a, size_t b, size_t *ret) +{ + return (__builtin_add_overflow(a, b, ret) == 0); +} +#define SDL_size_add_check_overflow(a, b, ret) SDL_size_add_check_overflow_builtin(a, b, ret) +#endif +#endif + +/* This is a generic function pointer which should be cast to the type you expect */ +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A generic function pointer. + * + * In theory, generic function pointers should use this, instead of `void *`, + * since some platforms could treat code addresses differently than data + * addresses. Although in current times no popular platforms make this + * distinction, it is more correct and portable to use the correct type for a + * generic pointer. + * + * If for some reason you need to force this typedef to be an actual `void *`, + * perhaps to work around a compiler or existing code, you can define + * `SDL_FUNCTION_POINTER_IS_VOID_POINTER` before including any SDL headers. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void (*SDL_FunctionPointer)(void); +#elif defined(SDL_FUNCTION_POINTER_IS_VOID_POINTER) +typedef void *SDL_FunctionPointer; +#else +typedef void (*SDL_FunctionPointer)(void); +#endif + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_stdinc_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_storage.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_storage.h new file mode 100644 index 0000000..6837eba --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_storage.h @@ -0,0 +1,682 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryStorage + * + * The storage API is a high-level API designed to abstract away the + * portability issues that come up when using something lower-level (in SDL's + * case, this sits on top of the [Filesystem](CategoryFilesystem) and + * [IOStream](CategoryIOStream) subsystems). It is significantly more + * restrictive than a typical filesystem API, for a number of reasons: + * + * 1. **What to Access:** A common pitfall with existing filesystem APIs is + * the assumption that all storage is monolithic. However, many other + * platforms (game consoles in particular) are more strict about what _type_ + * of filesystem is being accessed; for example, game content and user data + * are usually two separate storage devices with entirely different + * characteristics (and possibly different low-level APIs altogether!). + * + * 2. **How to Access:** Another common mistake is applications assuming that + * all storage is universally writeable - again, many platforms treat game + * content and user data as two separate storage devices, and only user data + * is writeable while game content is read-only. + * + * 3. **When to Access:** The most common portability issue with filesystem + * access is _timing_ - you cannot always assume that the storage device is + * always accessible all of the time, nor can you assume that there are no + * limits to how long you have access to a particular device. + * + * Consider the following example: + * + * ```c + * void ReadGameData(void) + * { + * extern char** fileNames; + * extern size_t numFiles; + * for (size_t i = 0; i < numFiles; i += 1) { + * FILE *data = fopen(fileNames[i], "rwb"); + * if (data == NULL) { + * // Something bad happened! + * } else { + * // A bunch of stuff happens here + * fclose(data); + * } + * } + * } + * + * void ReadSave(void) + * { + * FILE *save = fopen("saves/save0.sav", "rb"); + * if (save == NULL) { + * // Something bad happened! + * } else { + * // A bunch of stuff happens here + * fclose(save); + * } + * } + * + * void WriteSave(void) + * { + * FILE *save = fopen("saves/save0.sav", "wb"); + * if (save == NULL) { + * // Something bad happened! + * } else { + * // A bunch of stuff happens here + * fclose(save); + * } + * } + * ``` + * + * Going over the bullet points again: + * + * 1. **What to Access:** This code accesses a global filesystem; game data + * and saves are all presumed to be in the current working directory (which + * may or may not be the game's installation folder!). + * + * 2. **How to Access:** This code assumes that content paths are writeable, + * and that save data is also writeable despite being in the same location as + * the game data. + * + * 3. **When to Access:** This code assumes that they can be called at any + * time, since the filesystem is always accessible and has no limits on how + * long the filesystem is being accessed. + * + * Due to these assumptions, the filesystem code is not portable and will fail + * under these common scenarios: + * + * - The game is installed on a device that is read-only, both content loading + * and game saves will fail or crash outright + * - Game/User storage is not implicitly mounted, so no files will be found + * for either scenario when a platform requires explicitly mounting + * filesystems + * - Save data may not be safe since the I/O is not being flushed or + * validated, so an error occurring elsewhere in the program may result in + * missing/corrupted save data + * + * When using SDL_Storage, these types of problems are virtually impossible to + * trip over: + * + * ```c + * void ReadGameData(void) + * { + * extern char** fileNames; + * extern size_t numFiles; + * + * SDL_Storage *title = SDL_OpenTitleStorage(NULL, 0); + * if (title == NULL) { + * // Something bad happened! + * } + * while (!SDL_StorageReady(title)) { + * SDL_Delay(1); + * } + * + * for (size_t i = 0; i < numFiles; i += 1) { + * void* dst; + * Uint64 dstLen = 0; + * + * if (SDL_GetStorageFileSize(title, fileNames[i], &dstLen) && dstLen > 0) { + * dst = SDL_malloc(dstLen); + * if (SDL_ReadStorageFile(title, fileNames[i], dst, dstLen)) { + * // A bunch of stuff happens here + * } else { + * // Something bad happened! + * } + * SDL_free(dst); + * } else { + * // Something bad happened! + * } + * } + * + * SDL_CloseStorage(title); + * } + * + * void ReadSave(void) + * { + * SDL_Storage *user = SDL_OpenUserStorage("libsdl", "Storage Example", 0); + * if (user == NULL) { + * // Something bad happened! + * } + * while (!SDL_StorageReady(user)) { + * SDL_Delay(1); + * } + * + * Uint64 saveLen = 0; + * if (SDL_GetStorageFileSize(user, "save0.sav", &saveLen) && saveLen > 0) { + * void* dst = SDL_malloc(saveLen); + * if (SDL_ReadStorageFile(user, "save0.sav", dst, saveLen)) { + * // A bunch of stuff happens here + * } else { + * // Something bad happened! + * } + * SDL_free(dst); + * } else { + * // Something bad happened! + * } + * + * SDL_CloseStorage(user); + * } + * + * void WriteSave(void) + * { + * SDL_Storage *user = SDL_OpenUserStorage("libsdl", "Storage Example", 0); + * if (user == NULL) { + * // Something bad happened! + * } + * while (!SDL_StorageReady(user)) { + * SDL_Delay(1); + * } + * + * extern void *saveData; // A bunch of stuff happened here... + * extern Uint64 saveLen; + * if (!SDL_WriteStorageFile(user, "save0.sav", saveData, saveLen)) { + * // Something bad happened! + * } + * + * SDL_CloseStorage(user); + * } + * ``` + * + * Note the improvements that SDL_Storage makes: + * + * 1. **What to Access:** This code explicitly reads from a title or user + * storage device based on the context of the function. + * + * 2. **How to Access:** This code explicitly uses either a read or write + * function based on the context of the function. + * + * 3. **When to Access:** This code explicitly opens the device when it needs + * to, and closes it when it is finished working with the filesystem. + * + * The result is an application that is significantly more robust against the + * increasing demands of platforms and their filesystems! + * + * A publicly available example of an SDL_Storage backend is the + * [Steam Cloud](https://partner.steamgames.com/doc/features/cloud) + * backend - you can initialize Steamworks when starting the program, and then + * SDL will recognize that Steamworks is initialized and automatically use + * ISteamRemoteStorage when the application opens user storage. More + * importantly, when you _open_ storage it knows to begin a "batch" of + * filesystem operations, and when you _close_ storage it knows to end and + * flush the batch. This is used by Steam to support + * [Dynamic Cloud Sync](https://steamcommunity.com/groups/steamworks/announcements/detail/3142949576401813670) + * ; users can save data on one PC, put the device to sleep, and then continue + * playing on another PC (and vice versa) with the save data fully + * synchronized across all devices, allowing for a seamless experience without + * having to do full restarts of the program. + * + * ## Notes on valid paths + * + * All paths in the Storage API use Unix-style path separators ('/'). Using a + * different path separator will not work, even if the underlying platform + * would otherwise accept it. This is to keep code using the Storage API + * portable between platforms and Storage implementations and simplify app + * code. + * + * Paths with relative directories ("." and "..") are forbidden by the Storage + * API. + * + * All valid UTF-8 strings (discounting the NULL terminator character and the + * '/' path separator) are usable for filenames, however, an underlying + * Storage implementation may not support particularly strange sequences and + * refuse to create files with those names, etc. + */ + +#ifndef SDL_storage_h_ +#define SDL_storage_h_ + +#include +#include +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Function interface for SDL_Storage. + * + * Apps that want to supply a custom implementation of SDL_Storage will fill + * in all the functions in this struct, and then pass it to SDL_OpenStorage to + * create a custom SDL_Storage object. + * + * It is not usually necessary to do this; SDL provides standard + * implementations for many things you might expect to do with an SDL_Storage. + * + * This structure should be initialized using SDL_INIT_INTERFACE() + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_INIT_INTERFACE + */ +typedef struct SDL_StorageInterface +{ + /* The version of this interface */ + Uint32 version; + + /* Called when the storage is closed */ + bool (SDLCALL *close)(void *userdata); + + /* Optional, returns whether the storage is currently ready for access */ + bool (SDLCALL *ready)(void *userdata); + + /* Enumerate a directory, optional for write-only storage */ + bool (SDLCALL *enumerate)(void *userdata, const char *path, SDL_EnumerateDirectoryCallback callback, void *callback_userdata); + + /* Get path information, optional for write-only storage */ + bool (SDLCALL *info)(void *userdata, const char *path, SDL_PathInfo *info); + + /* Read a file from storage, optional for write-only storage */ + bool (SDLCALL *read_file)(void *userdata, const char *path, void *destination, Uint64 length); + + /* Write a file to storage, optional for read-only storage */ + bool (SDLCALL *write_file)(void *userdata, const char *path, const void *source, Uint64 length); + + /* Create a directory, optional for read-only storage */ + bool (SDLCALL *mkdir)(void *userdata, const char *path); + + /* Remove a file or empty directory, optional for read-only storage */ + bool (SDLCALL *remove)(void *userdata, const char *path); + + /* Rename a path, optional for read-only storage */ + bool (SDLCALL *rename)(void *userdata, const char *oldpath, const char *newpath); + + /* Copy a file, optional for read-only storage */ + bool (SDLCALL *copy)(void *userdata, const char *oldpath, const char *newpath); + + /* Get the space remaining, optional for read-only storage */ + Uint64 (SDLCALL *space_remaining)(void *userdata); +} SDL_StorageInterface; + +/* Check the size of SDL_StorageInterface + * + * If this assert fails, either the compiler is padding to an unexpected size, + * or the interface has been updated and this should be updated to match and + * the code using this interface should be updated to handle the old version. + */ +SDL_COMPILE_TIME_ASSERT(SDL_StorageInterface_SIZE, + (sizeof(void *) == 4 && sizeof(SDL_StorageInterface) == 48) || + (sizeof(void *) == 8 && sizeof(SDL_StorageInterface) == 96)); + +/** + * An abstract interface for filesystem access. + * + * This is an opaque datatype. One can create this object using standard SDL + * functions like SDL_OpenTitleStorage or SDL_OpenUserStorage, etc, or create + * an object with a custom implementation using SDL_OpenStorage. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Storage SDL_Storage; + +/** + * Opens up a read-only container for the application's filesystem. + * + * \param override a path to override the backend's default title root. + * \param props a property list that may contain backend-specific information. + * \returns a title storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_OpenUserStorage + * \sa SDL_ReadStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenTitleStorage(const char *override, SDL_PropertiesID props); + +/** + * Opens up a container for a user's unique read/write filesystem. + * + * While title storage can generally be kept open throughout runtime, user + * storage should only be opened when the client is ready to read/write files. + * This allows the backend to properly batch file operations and flush them + * when the container has been closed; ensuring safe and optimal save I/O. + * + * \param org the name of your organization. + * \param app the name of your application. + * \param props a property list that may contain backend-specific information. + * \returns a user storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_OpenTitleStorage + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenUserStorage(const char *org, const char *app, SDL_PropertiesID props); + +/** + * Opens up a container for local filesystem storage. + * + * This is provided for development and tools. Portable applications should + * use SDL_OpenTitleStorage() for access to game data and + * SDL_OpenUserStorage() for access to user data. + * + * \param path the base path prepended to all storage paths, or NULL for no + * base path. + * \returns a filesystem storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_OpenTitleStorage + * \sa SDL_OpenUserStorage + * \sa SDL_ReadStorageFile + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenFileStorage(const char *path); + +/** + * Opens up a container using a client-provided storage interface. + * + * Applications do not need to use this function unless they are providing + * their own SDL_Storage implementation. If you just need an SDL_Storage, you + * should use the built-in implementations in SDL, like SDL_OpenTitleStorage() + * or SDL_OpenUserStorage(). + * + * This function makes a copy of `iface` and the caller does not need to keep + * it around after this call. + * + * \param iface the interface that implements this storage, initialized using + * SDL_INIT_INTERFACE(). + * \param userdata the pointer that will be passed to the interface functions. + * \returns a storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_INIT_INTERFACE + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenStorage(const SDL_StorageInterface *iface, void *userdata); + +/** + * Closes and frees a storage container. + * + * \param storage a storage container to close. + * \returns true if the container was freed with no errors, false otherwise; + * call SDL_GetError() for more information. Even if the function + * returns an error, the container data will be freed; the error is + * only for informational purposes. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenFileStorage + * \sa SDL_OpenStorage + * \sa SDL_OpenTitleStorage + * \sa SDL_OpenUserStorage + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CloseStorage(SDL_Storage *storage); + +/** + * Checks if the storage container is ready to use. + * + * This function should be called in regular intervals until it returns true - + * however, it is not recommended to spinwait on this call, as the backend may + * depend on a synchronous message loop. You might instead poll this in your + * game's main loop while processing events and drawing a loading screen. + * + * \param storage a storage container to query. + * \returns true if the container is ready, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StorageReady(SDL_Storage *storage); + +/** + * Query the size of a file within a storage container. + * + * \param storage a storage container to query. + * \param path the relative path of the file to query. + * \param length a pointer to be filled with the file's length. + * \returns true if the file could be queried or false on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetStorageFileSize(SDL_Storage *storage, const char *path, Uint64 *length); + +/** + * Synchronously read a file from a storage container into a client-provided + * buffer. + * + * The value of `length` must match the length of the file exactly; call + * SDL_GetStorageFileSize() to get this value. This behavior may be relaxed in + * a future release. + * + * \param storage a storage container to read from. + * \param path the relative path of the file to read. + * \param destination a client-provided buffer to read the file into. + * \param length the length of the destination buffer. + * \returns true if the file was read or false on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetStorageFileSize + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadStorageFile(SDL_Storage *storage, const char *path, void *destination, Uint64 length); + +/** + * Synchronously write a file from client memory into a storage container. + * + * \param storage a storage container to write to. + * \param path the relative path of the file to write. + * \param source a client-provided buffer to write from. + * \param length the length of the source buffer. + * \returns true if the file was written or false on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteStorageFile(SDL_Storage *storage, const char *path, const void *source, Uint64 length); + +/** + * Create a directory in a writable storage container. + * + * \param storage a storage container. + * \param path the path of the directory to create. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CreateStorageDirectory(SDL_Storage *storage, const char *path); + +/** + * Enumerate a directory in a storage container through a callback function. + * + * This function provides every directory entry through an app-provided + * callback, called once for each directory entry, until all results have been + * provided or the callback returns either SDL_ENUM_SUCCESS or + * SDL_ENUM_FAILURE. + * + * This will return false if there was a system problem in general, or if a + * callback returns SDL_ENUM_FAILURE. A successful return means a callback + * returned SDL_ENUM_SUCCESS to halt enumeration, or all directory entries + * were enumerated. + * + * If `path` is NULL, this is treated as a request to enumerate the root of + * the storage container's tree. An empty string also works for this. + * + * \param storage a storage container. + * \param path the path of the directory to enumerate, or NULL for the root. + * \param callback a function that is called for each entry in the directory. + * \param userdata a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnumerateStorageDirectory(SDL_Storage *storage, const char *path, SDL_EnumerateDirectoryCallback callback, void *userdata); + +/** + * Remove a file or an empty directory in a writable storage container. + * + * \param storage a storage container. + * \param path the path of the directory to enumerate. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RemoveStoragePath(SDL_Storage *storage, const char *path); + +/** + * Rename a file or directory in a writable storage container. + * + * \param storage a storage container. + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenameStoragePath(SDL_Storage *storage, const char *oldpath, const char *newpath); + +/** + * Copy a file in a writable storage container. + * + * \param storage a storage container. + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CopyStorageFile(SDL_Storage *storage, const char *oldpath, const char *newpath); + +/** + * Get information about a filesystem path in a storage container. + * + * \param storage a storage container. + * \param path the path to query. + * \param info a pointer filled in with information about the path, or NULL to + * check for the existence of a file. + * \returns true on success or false if the file doesn't exist, or another + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetStoragePathInfo(SDL_Storage *storage, const char *path, SDL_PathInfo *info); + +/** + * Queries the remaining space in a storage container. + * + * \param storage a storage container to query. + * \returns the amount of remaining space, in bytes. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetStorageSpaceRemaining(SDL_Storage *storage); + +/** + * Enumerate a directory tree, filtered by pattern, and return a list. + * + * Files are filtered out if they don't match the string in `pattern`, which + * may contain wildcard characters `*` (match everything) and `?` (match one + * character). If pattern is NULL, no filtering is done and all results are + * returned. Subdirectories are permitted, and are specified with a path + * separator of '/'. Wildcard characters `*` and `?` never match a path + * separator. + * + * `flags` may be set to SDL_GLOB_CASEINSENSITIVE to make the pattern matching + * case-insensitive. + * + * The returned array is always NULL-terminated, for your iterating + * convenience, but if `count` is non-NULL, on return it will contain the + * number of items in the array, not counting the NULL terminator. + * + * If `path` is NULL, this is treated as a request to enumerate the root of + * the storage container's tree. An empty string also works for this. + * + * \param storage a storage container. + * \param path the path of the directory to enumerate, or NULL for the root. + * \param pattern the pattern that files in the directory must match. Can be + * NULL. + * \param flags `SDL_GLOB_*` bitflags that affect this search. + * \param count on return, will be set to the number of items in the returned + * array. Can be NULL. + * \returns an array of strings on success or NULL on failure; call + * SDL_GetError() for more information. The caller should pass the + * returned pointer to SDL_free when done with it. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \threadsafety It is safe to call this function from any thread, assuming + * the `storage` object is thread-safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GlobStorageDirectory(SDL_Storage *storage, const char *path, const char *pattern, SDL_GlobFlags flags, int *count); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_storage_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_surface.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_surface.h new file mode 100644 index 0000000..15fce04 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_surface.h @@ -0,0 +1,1563 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategorySurface + * + * SDL surfaces are buffers of pixels in system RAM. These are useful for + * passing around and manipulating images that are not stored in GPU memory. + * + * SDL_Surface makes serious efforts to manage images in various formats, and + * provides a reasonable toolbox for transforming the data, including copying + * between surfaces, filling rectangles in the image data, etc. + * + * There is also a simple .bmp loader, SDL_LoadBMP(). SDL itself does not + * provide loaders for various other file formats, but there are several + * excellent external libraries that do, including its own satellite library, + * SDL_image: + * + * https://github.com/libsdl-org/SDL_image + */ + +#ifndef SDL_surface_h_ +#define SDL_surface_h_ + +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The flags on an SDL_Surface. + * + * These are generally considered read-only. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_SurfaceFlags; + +#define SDL_SURFACE_PREALLOCATED 0x00000001u /**< Surface uses preallocated pixel memory */ +#define SDL_SURFACE_LOCK_NEEDED 0x00000002u /**< Surface needs to be locked to access pixels */ +#define SDL_SURFACE_LOCKED 0x00000004u /**< Surface is currently locked */ +#define SDL_SURFACE_SIMD_ALIGNED 0x00000008u /**< Surface uses pixel memory allocated with SDL_aligned_alloc() */ + +/** + * Evaluates to true if the surface needs to be locked before access. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MUSTLOCK(S) (((S)->flags & SDL_SURFACE_LOCK_NEEDED) == SDL_SURFACE_LOCK_NEEDED) + +/** + * The scaling mode. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ScaleMode +{ + SDL_SCALEMODE_INVALID = -1, + SDL_SCALEMODE_NEAREST, /**< nearest pixel sampling */ + SDL_SCALEMODE_LINEAR /**< linear filtering */ +} SDL_ScaleMode; + +/** + * The flip mode. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_FlipMode +{ + SDL_FLIP_NONE, /**< Do not flip */ + SDL_FLIP_HORIZONTAL, /**< flip horizontally */ + SDL_FLIP_VERTICAL /**< flip vertically */ +} SDL_FlipMode; + +#ifndef SDL_INTERNAL + +/** + * A collection of pixels used in software blitting. + * + * Pixels are arranged in memory in rows, with the top row first. Each row + * occupies an amount of memory given by the pitch (sometimes known as the row + * stride in non-SDL APIs). + * + * Within each row, pixels are arranged from left to right until the width is + * reached. Each pixel occupies a number of bits appropriate for its format, + * with most formats representing each pixel as one or more whole bytes (in + * some indexed formats, instead multiple pixels are packed into each byte), + * and a byte order given by the format. After encoding all pixels, any + * remaining bytes to reach the pitch are used as padding to reach a desired + * alignment, and have undefined contents. + * + * When a surface holds YUV format data, the planes are assumed to be + * contiguous without padding between them, e.g. a 32x32 surface in NV12 + * format with a pitch of 32 would consist of 32x32 bytes of Y plane followed + * by 32x16 bytes of UV plane. + * + * When a surface holds MJPG format data, pixels points at the compressed JPEG + * image and pitch is the length of that data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateSurface + * \sa SDL_DestroySurface + */ +struct SDL_Surface +{ + SDL_SurfaceFlags flags; /**< The flags of the surface, read-only */ + SDL_PixelFormat format; /**< The format of the surface, read-only */ + int w; /**< The width of the surface, read-only. */ + int h; /**< The height of the surface, read-only. */ + int pitch; /**< The distance in bytes between rows of pixels, read-only */ + void *pixels; /**< A pointer to the pixels of the surface, the pixels are writeable if non-NULL */ + + int refcount; /**< Application reference count, used when freeing surface */ + + void *reserved; /**< Reserved for internal use */ +}; +#endif /* !SDL_INTERNAL */ + +typedef struct SDL_Surface SDL_Surface; + +/** + * Allocate a new surface with a specific pixel format. + * + * The pixels of the new surface are initialized to zero. + * + * \param width the width of the surface. + * \param height the height of the surface. + * \param format the SDL_PixelFormat for the new surface's pixel format. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSurfaceFrom + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_CreateSurface(int width, int height, SDL_PixelFormat format); + +/** + * Allocate a new surface with a specific pixel format and existing pixel + * data. + * + * No copy is made of the pixel data. Pixel data is not managed automatically; + * you must free the surface before you free the pixel data. + * + * Pitch is the offset in bytes from one row of pixels to the next, e.g. + * `width*4` for `SDL_PIXELFORMAT_RGBA8888`. + * + * You may pass NULL for pixels and 0 for pitch to create a surface that you + * will fill in with valid values later. + * + * \param width the width of the surface. + * \param height the height of the surface. + * \param format the SDL_PixelFormat for the new surface's pixel format. + * \param pixels a pointer to existing pixel data. + * \param pitch the number of bytes between each row, including padding. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSurface + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_CreateSurfaceFrom(int width, int height, SDL_PixelFormat format, void *pixels, int pitch); + +/** + * Free a surface. + * + * It is safe to pass NULL to this function. + * + * \param surface the SDL_Surface to free. + * + * \threadsafety No other thread should be using the surface when it is freed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSurface + * \sa SDL_CreateSurfaceFrom + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroySurface(SDL_Surface *surface); + +/** + * Get the properties associated with a surface. + * + * The following properties are understood by SDL: + * + * - `SDL_PROP_SURFACE_SDR_WHITE_POINT_FLOAT`: for HDR10 and floating point + * surfaces, this defines the value of 100% diffuse white, with higher + * values being displayed in the High Dynamic Range headroom. This defaults + * to 203 for HDR10 surfaces and 1.0 for floating point surfaces. + * - `SDL_PROP_SURFACE_HDR_HEADROOM_FLOAT`: for HDR10 and floating point + * surfaces, this defines the maximum dynamic range used by the content, in + * terms of the SDR white point. This defaults to 0.0, which disables tone + * mapping. + * - `SDL_PROP_SURFACE_TONEMAP_OPERATOR_STRING`: the tone mapping operator + * used when compressing from a surface with high dynamic range to another + * with lower dynamic range. Currently this supports "chrome", which uses + * the same tone mapping that Chrome uses for HDR content, the form "*=N", + * where N is a floating point scale factor applied in linear space, and + * "none", which disables tone mapping. This defaults to "chrome". + * - `SDL_PROP_SURFACE_HOTSPOT_X_NUMBER`: the hotspot pixel offset from the + * left edge of the image, if this surface is being used as a cursor. + * - `SDL_PROP_SURFACE_HOTSPOT_Y_NUMBER`: the hotspot pixel offset from the + * top edge of the image, if this surface is being used as a cursor. + * + * \param surface the SDL_Surface structure to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetSurfaceProperties(SDL_Surface *surface); + +#define SDL_PROP_SURFACE_SDR_WHITE_POINT_FLOAT "SDL.surface.SDR_white_point" +#define SDL_PROP_SURFACE_HDR_HEADROOM_FLOAT "SDL.surface.HDR_headroom" +#define SDL_PROP_SURFACE_TONEMAP_OPERATOR_STRING "SDL.surface.tonemap" +#define SDL_PROP_SURFACE_HOTSPOT_X_NUMBER "SDL.surface.hotspot.x" +#define SDL_PROP_SURFACE_HOTSPOT_Y_NUMBER "SDL.surface.hotspot.y" + +/** + * Set the colorspace used by a surface. + * + * Setting the colorspace doesn't change the pixels, only how they are + * interpreted in color operations. + * + * \param surface the SDL_Surface structure to update. + * \param colorspace an SDL_Colorspace value describing the surface + * colorspace. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorspace + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceColorspace(SDL_Surface *surface, SDL_Colorspace colorspace); + +/** + * Get the colorspace used by a surface. + * + * The colorspace defaults to SDL_COLORSPACE_SRGB_LINEAR for floating point + * formats, SDL_COLORSPACE_HDR10 for 10-bit formats, SDL_COLORSPACE_SRGB for + * other RGB surfaces and SDL_COLORSPACE_BT709_FULL for YUV textures. + * + * \param surface the SDL_Surface structure to query. + * \returns the colorspace used by the surface, or SDL_COLORSPACE_UNKNOWN if + * the surface is NULL. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceColorspace + */ +extern SDL_DECLSPEC SDL_Colorspace SDLCALL SDL_GetSurfaceColorspace(SDL_Surface *surface); + +/** + * Create a palette and associate it with a surface. + * + * This function creates a palette compatible with the provided surface. The + * palette is then returned for you to modify, and the surface will + * automatically use the new palette in future operations. You do not need to + * destroy the returned palette, it will be freed when the reference count + * reaches 0, usually when the surface is destroyed. + * + * Bitmap surfaces (with format SDL_PIXELFORMAT_INDEX1LSB or + * SDL_PIXELFORMAT_INDEX1MSB) will have the palette initialized with 0 as + * white and 1 as black. Other surfaces will get a palette initialized with + * white in every entry. + * + * If this function is called for a surface that already has a palette, a new + * palette will be created to replace it. + * + * \param surface the SDL_Surface structure to update. + * \returns a new SDL_Palette structure on success or NULL on failure (e.g. if + * the surface didn't have an index format); call SDL_GetError() for + * more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetPaletteColors + */ +extern SDL_DECLSPEC SDL_Palette * SDLCALL SDL_CreateSurfacePalette(SDL_Surface *surface); + +/** + * Set the palette used by a surface. + * + * A single palette can be shared with many surfaces. + * + * \param surface the SDL_Surface structure to update. + * \param palette the SDL_Palette structure to use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePalette + * \sa SDL_GetSurfacePalette + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfacePalette(SDL_Surface *surface, SDL_Palette *palette); + +/** + * Get the palette used by a surface. + * + * \param surface the SDL_Surface structure to query. + * \returns a pointer to the palette used by the surface, or NULL if there is + * no palette used. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfacePalette + */ +extern SDL_DECLSPEC SDL_Palette * SDLCALL SDL_GetSurfacePalette(SDL_Surface *surface); + +/** + * Add an alternate version of a surface. + * + * This function adds an alternate version of this surface, usually used for + * content with high DPI representations like cursors or icons. The size, + * format, and content do not need to match the original surface, and these + * alternate versions will not be updated when the original surface changes. + * + * This function adds a reference to the alternate version, so you should call + * SDL_DestroySurface() on the image after this call. + * + * \param surface the SDL_Surface structure to update. + * \param image a pointer to an alternate SDL_Surface to associate with this + * surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveSurfaceAlternateImages + * \sa SDL_GetSurfaceImages + * \sa SDL_SurfaceHasAlternateImages + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddSurfaceAlternateImage(SDL_Surface *surface, SDL_Surface *image); + +/** + * Return whether a surface has alternate versions available. + * + * \param surface the SDL_Surface structure to query. + * \returns true if alternate versions are available or false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddSurfaceAlternateImage + * \sa SDL_RemoveSurfaceAlternateImages + * \sa SDL_GetSurfaceImages + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SurfaceHasAlternateImages(SDL_Surface *surface); + +/** + * Get an array including all versions of a surface. + * + * This returns all versions of a surface, with the surface being queried as + * the first element in the returned array. + * + * Freeing the array of surfaces does not affect the surfaces in the array. + * They are still referenced by the surface being queried and will be cleaned + * up normally. + * + * \param surface the SDL_Surface structure to query. + * \param count a pointer filled in with the number of surface pointers + * returned, may be NULL. + * \returns a NULL terminated array of SDL_Surface pointers or NULL on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddSurfaceAlternateImage + * \sa SDL_RemoveSurfaceAlternateImages + * \sa SDL_SurfaceHasAlternateImages + */ +extern SDL_DECLSPEC SDL_Surface ** SDLCALL SDL_GetSurfaceImages(SDL_Surface *surface, int *count); + +/** + * Remove all alternate versions of a surface. + * + * This function removes a reference from all the alternative versions, + * destroying them if this is the last reference to them. + * + * \param surface the SDL_Surface structure to update. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddSurfaceAlternateImage + * \sa SDL_GetSurfaceImages + * \sa SDL_SurfaceHasAlternateImages + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveSurfaceAlternateImages(SDL_Surface *surface); + +/** + * Set up a surface for directly accessing the pixels. + * + * Between calls to SDL_LockSurface() / SDL_UnlockSurface(), you can write to + * and read from `surface->pixels`, using the pixel format stored in + * `surface->format`. Once you are done accessing the surface, you should use + * SDL_UnlockSurface() to release it. + * + * Not all surfaces require locking. If `SDL_MUSTLOCK(surface)` evaluates to + * 0, then you can read and write to the surface at any time, and the pixel + * format of the surface will not change. + * + * \param surface the SDL_Surface structure to be locked. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. The locking referred to by + * this function is making the pixels available for direct + * access, not thread-safe locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MUSTLOCK + * \sa SDL_UnlockSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockSurface(SDL_Surface *surface); + +/** + * Release a surface after directly accessing the pixels. + * + * \param surface the SDL_Surface structure to be unlocked. + * + * \threadsafety This function is not thread safe. The locking referred to by + * this function is making the pixels available for direct + * access, not thread-safe locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockSurface + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockSurface(SDL_Surface *surface); + +/** + * Load a BMP image from a seekable SDL data stream. + * + * The new surface should be freed with SDL_DestroySurface(). Not doing so + * will result in a memory leak. + * + * \param src the data stream for the surface. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns a pointer to a new SDL_Surface structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + * \sa SDL_LoadBMP + * \sa SDL_SaveBMP_IO + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_LoadBMP_IO(SDL_IOStream *src, bool closeio); + +/** + * Load a BMP image from a file. + * + * The new surface should be freed with SDL_DestroySurface(). Not doing so + * will result in a memory leak. + * + * \param file the BMP file to load. + * \returns a pointer to a new SDL_Surface structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + * \sa SDL_LoadBMP_IO + * \sa SDL_SaveBMP + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_LoadBMP(const char *file); + +/** + * Save a surface to a seekable SDL data stream in BMP format. + * + * Surfaces with a 24-bit, 32-bit and paletted 8-bit format get saved in the + * BMP directly. Other RGB formats with 8-bit or higher get converted to a + * 24-bit surface or, if they have an alpha mask or a colorkey, to a 32-bit + * surface before they are saved. YUV and paletted 1-bit and 4-bit formats are + * not supported. + * + * \param surface the SDL_Surface structure containing the image to be saved. + * \param dst a data stream to save to. + * \param closeio if true, calls SDL_CloseIO() on `dst` before returning, even + * in the case of an error. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadBMP_IO + * \sa SDL_SaveBMP + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveBMP_IO(SDL_Surface *surface, SDL_IOStream *dst, bool closeio); + +/** + * Save a surface to a file. + * + * Surfaces with a 24-bit, 32-bit and paletted 8-bit format get saved in the + * BMP directly. Other RGB formats with 8-bit or higher get converted to a + * 24-bit surface or, if they have an alpha mask or a colorkey, to a 32-bit + * surface before they are saved. YUV and paletted 1-bit and 4-bit formats are + * not supported. + * + * \param surface the SDL_Surface structure containing the image to be saved. + * \param file a file to save to. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadBMP + * \sa SDL_SaveBMP_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveBMP(SDL_Surface *surface, const char *file); + +/** + * Set the RLE acceleration hint for a surface. + * + * If RLE is enabled, color key and alpha blending blits are much faster, but + * the surface must be locked before directly accessing the pixels. + * + * \param surface the SDL_Surface structure to optimize. + * \param enabled true to enable RLE acceleration, false to disable it. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + * \sa SDL_LockSurface + * \sa SDL_UnlockSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceRLE(SDL_Surface *surface, bool enabled); + +/** + * Returns whether the surface is RLE enabled. + * + * It is safe to pass a NULL `surface` here; it will return false. + * + * \param surface the SDL_Surface structure to query. + * \returns true if the surface is RLE enabled, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceRLE + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SurfaceHasRLE(SDL_Surface *surface); + +/** + * Set the color key (transparent pixel) in a surface. + * + * The color key defines a pixel value that will be treated as transparent in + * a blit. For example, one can use this to specify that cyan pixels should be + * considered transparent, and therefore not rendered. + * + * It is a pixel of the format used by the surface, as generated by + * SDL_MapRGB(). + * + * \param surface the SDL_Surface structure to update. + * \param enabled true to enable color key, false to disable color key. + * \param key the transparent pixel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorKey + * \sa SDL_SetSurfaceRLE + * \sa SDL_SurfaceHasColorKey + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceColorKey(SDL_Surface *surface, bool enabled, Uint32 key); + +/** + * Returns whether the surface has a color key. + * + * It is safe to pass a NULL `surface` here; it will return false. + * + * \param surface the SDL_Surface structure to query. + * \returns true if the surface has a color key, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceColorKey + * \sa SDL_GetSurfaceColorKey + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SurfaceHasColorKey(SDL_Surface *surface); + +/** + * Get the color key (transparent pixel) for a surface. + * + * The color key is a pixel of the format used by the surface, as generated by + * SDL_MapRGB(). + * + * If the surface doesn't have color key enabled this function returns false. + * + * \param surface the SDL_Surface structure to query. + * \param key a pointer filled in with the transparent pixel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceColorKey + * \sa SDL_SurfaceHasColorKey + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceColorKey(SDL_Surface *surface, Uint32 *key); + +/** + * Set an additional color value multiplied into blit operations. + * + * When this surface is blitted, during the blit operation each source color + * channel is modulated by the appropriate color value according to the + * following formula: + * + * `srcC = srcC * (color / 255)` + * + * \param surface the SDL_Surface structure to update. + * \param r the red color value multiplied into blit operations. + * \param g the green color value multiplied into blit operations. + * \param b the blue color value multiplied into blit operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorMod + * \sa SDL_SetSurfaceAlphaMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceColorMod(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b); + + +/** + * Get the additional color value multiplied into blit operations. + * + * \param surface the SDL_Surface structure to query. + * \param r a pointer filled in with the current red color value. + * \param g a pointer filled in with the current green color value. + * \param b a pointer filled in with the current blue color value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceAlphaMod + * \sa SDL_SetSurfaceColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceColorMod(SDL_Surface *surface, Uint8 *r, Uint8 *g, Uint8 *b); + +/** + * Set an additional alpha value used in blit operations. + * + * When this surface is blitted, during the blit operation the source alpha + * value is modulated by this alpha value according to the following formula: + * + * `srcA = srcA * (alpha / 255)` + * + * \param surface the SDL_Surface structure to update. + * \param alpha the alpha value multiplied into blit operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceAlphaMod + * \sa SDL_SetSurfaceColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceAlphaMod(SDL_Surface *surface, Uint8 alpha); + +/** + * Get the additional alpha value used in blit operations. + * + * \param surface the SDL_Surface structure to query. + * \param alpha a pointer filled in with the current alpha value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorMod + * \sa SDL_SetSurfaceAlphaMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceAlphaMod(SDL_Surface *surface, Uint8 *alpha); + +/** + * Set the blend mode used for blit operations. + * + * To copy a surface to another surface (or texture) without blending with the + * existing data, the blendmode of the SOURCE surface should be set to + * `SDL_BLENDMODE_NONE`. + * + * \param surface the SDL_Surface structure to update. + * \param blendMode the SDL_BlendMode to use for blit blending. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode blendMode); + +/** + * Get the blend mode used for blit operations. + * + * \param surface the SDL_Surface structure to query. + * \param blendMode a pointer filled in with the current SDL_BlendMode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode *blendMode); + +/** + * Set the clipping rectangle for a surface. + * + * When `surface` is the destination of a blit, only the area within the clip + * rectangle is drawn into. + * + * Note that blits are automatically clipped to the edges of the source and + * destination surfaces. + * + * \param surface the SDL_Surface structure to be clipped. + * \param rect the SDL_Rect structure representing the clipping rectangle, or + * NULL to disable clipping. + * \returns true if the rectangle intersects the surface, otherwise false and + * blits will be completely clipped. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceClipRect(SDL_Surface *surface, const SDL_Rect *rect); + +/** + * Get the clipping rectangle for a surface. + * + * When `surface` is the destination of a blit, only the area within the clip + * rectangle is drawn into. + * + * \param surface the SDL_Surface structure representing the surface to be + * clipped. + * \param rect an SDL_Rect structure filled in with the clipping rectangle for + * the surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceClipRect(SDL_Surface *surface, SDL_Rect *rect); + +/** + * Flip a surface vertically or horizontally. + * + * \param surface the surface to flip. + * \param flip the direction to flip. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlipSurface(SDL_Surface *surface, SDL_FlipMode flip); + +/** + * Creates a new surface identical to the existing surface. + * + * If the original surface has alternate images, the new surface will have a + * reference to them as well. + * + * The returned surface should be freed with SDL_DestroySurface(). + * + * \param surface the surface to duplicate. + * \returns a copy of the surface or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_DuplicateSurface(SDL_Surface *surface); + +/** + * Creates a new surface identical to the existing surface, scaled to the + * desired size. + * + * The returned surface should be freed with SDL_DestroySurface(). + * + * \param surface the surface to duplicate and scale. + * \param width the width of the new surface. + * \param height the height of the new surface. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns a copy of the surface or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_ScaleSurface(SDL_Surface *surface, int width, int height, SDL_ScaleMode scaleMode); + +/** + * Copy an existing surface to a new surface of the specified format. + * + * This function is used to optimize images for faster *repeat* blitting. This + * is accomplished by converting the original and storing the result as a new + * surface. The new, optimized surface can then be used as the source for + * future blits, making them faster. + * + * If you are converting to an indexed surface and want to map colors to a + * palette, you can use SDL_ConvertSurfaceAndColorspace() instead. + * + * If the original surface has alternate images, the new surface will have a + * reference to them as well. + * + * \param surface the existing SDL_Surface structure to convert. + * \param format the new pixel format. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertSurfaceAndColorspace + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_ConvertSurface(SDL_Surface *surface, SDL_PixelFormat format); + +/** + * Copy an existing surface to a new surface of the specified format and + * colorspace. + * + * This function converts an existing surface to a new format and colorspace + * and returns the new surface. This will perform any pixel format and + * colorspace conversion needed. + * + * If the original surface has alternate images, the new surface will have a + * reference to them as well. + * + * \param surface the existing SDL_Surface structure to convert. + * \param format the new pixel format. + * \param palette an optional palette to use for indexed formats, may be NULL. + * \param colorspace the new colorspace. + * \param props an SDL_PropertiesID with additional color properties, or 0. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertSurface + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_ConvertSurfaceAndColorspace(SDL_Surface *surface, SDL_PixelFormat format, SDL_Palette *palette, SDL_Colorspace colorspace, SDL_PropertiesID props); + +/** + * Copy a block of pixels of one format to another format. + * + * \param width the width of the block to copy, in pixels. + * \param height the height of the block to copy, in pixels. + * \param src_format an SDL_PixelFormat value of the `src` pixels format. + * \param src a pointer to the source pixels. + * \param src_pitch the pitch of the source pixels, in bytes. + * \param dst_format an SDL_PixelFormat value of the `dst` pixels format. + * \param dst a pointer to be filled in with new pixel data. + * \param dst_pitch the pitch of the destination pixels, in bytes. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety The same destination pixels should not be used from two + * threads at once. It is safe to use the same source pixels + * from multiple threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertPixelsAndColorspace + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertPixels(int width, int height, SDL_PixelFormat src_format, const void *src, int src_pitch, SDL_PixelFormat dst_format, void *dst, int dst_pitch); + +/** + * Copy a block of pixels of one format and colorspace to another format and + * colorspace. + * + * \param width the width of the block to copy, in pixels. + * \param height the height of the block to copy, in pixels. + * \param src_format an SDL_PixelFormat value of the `src` pixels format. + * \param src_colorspace an SDL_Colorspace value describing the colorspace of + * the `src` pixels. + * \param src_properties an SDL_PropertiesID with additional source color + * properties, or 0. + * \param src a pointer to the source pixels. + * \param src_pitch the pitch of the source pixels, in bytes. + * \param dst_format an SDL_PixelFormat value of the `dst` pixels format. + * \param dst_colorspace an SDL_Colorspace value describing the colorspace of + * the `dst` pixels. + * \param dst_properties an SDL_PropertiesID with additional destination color + * properties, or 0. + * \param dst a pointer to be filled in with new pixel data. + * \param dst_pitch the pitch of the destination pixels, in bytes. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety The same destination pixels should not be used from two + * threads at once. It is safe to use the same source pixels + * from multiple threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertPixels + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertPixelsAndColorspace(int width, int height, SDL_PixelFormat src_format, SDL_Colorspace src_colorspace, SDL_PropertiesID src_properties, const void *src, int src_pitch, SDL_PixelFormat dst_format, SDL_Colorspace dst_colorspace, SDL_PropertiesID dst_properties, void *dst, int dst_pitch); + +/** + * Premultiply the alpha on a block of pixels. + * + * This is safe to use with src == dst, but not for other overlapping areas. + * + * \param width the width of the block to convert, in pixels. + * \param height the height of the block to convert, in pixels. + * \param src_format an SDL_PixelFormat value of the `src` pixels format. + * \param src a pointer to the source pixels. + * \param src_pitch the pitch of the source pixels, in bytes. + * \param dst_format an SDL_PixelFormat value of the `dst` pixels format. + * \param dst a pointer to be filled in with premultiplied pixel data. + * \param dst_pitch the pitch of the destination pixels, in bytes. + * \param linear true to convert from sRGB to linear space for the alpha + * multiplication, false to do multiplication in sRGB space. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety The same destination pixels should not be used from two + * threads at once. It is safe to use the same source pixels + * from multiple threads. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PremultiplyAlpha(int width, int height, SDL_PixelFormat src_format, const void *src, int src_pitch, SDL_PixelFormat dst_format, void *dst, int dst_pitch, bool linear); + +/** + * Premultiply the alpha in a surface. + * + * This is safe to use with src == dst, but not for other overlapping areas. + * + * \param surface the surface to modify. + * \param linear true to convert from sRGB to linear space for the alpha + * multiplication, false to do multiplication in sRGB space. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PremultiplySurfaceAlpha(SDL_Surface *surface, bool linear); + +/** + * Clear a surface with a specific color, with floating point precision. + * + * This function handles all surface formats, and ignores any clip rectangle. + * + * If the surface is YUV, the color is assumed to be in the sRGB colorspace, + * otherwise the color is assumed to be in the colorspace of the suface. + * + * \param surface the SDL_Surface to clear. + * \param r the red component of the pixel, normally in the range 0-1. + * \param g the green component of the pixel, normally in the range 0-1. + * \param b the blue component of the pixel, normally in the range 0-1. + * \param a the alpha component of the pixel, normally in the range 0-1. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearSurface(SDL_Surface *surface, float r, float g, float b, float a); + +/** + * Perform a fast fill of a rectangle with a specific color. + * + * `color` should be a pixel of the format used by the surface, and can be + * generated by SDL_MapRGB() or SDL_MapRGBA(). If the color value contains an + * alpha component then the destination is simply filled with that alpha + * information, no blending takes place. + * + * If there is a clip rectangle set on the destination (set via + * SDL_SetSurfaceClipRect()), then this function will fill based on the + * intersection of the clip rectangle and `rect`. + * + * \param dst the SDL_Surface structure that is the drawing target. + * \param rect the SDL_Rect structure representing the rectangle to fill, or + * NULL to fill the entire surface. + * \param color the color to fill with. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FillSurfaceRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FillSurfaceRect(SDL_Surface *dst, const SDL_Rect *rect, Uint32 color); + +/** + * Perform a fast fill of a set of rectangles with a specific color. + * + * `color` should be a pixel of the format used by the surface, and can be + * generated by SDL_MapRGB() or SDL_MapRGBA(). If the color value contains an + * alpha component then the destination is simply filled with that alpha + * information, no blending takes place. + * + * If there is a clip rectangle set on the destination (set via + * SDL_SetSurfaceClipRect()), then this function will fill based on the + * intersection of the clip rectangle and `rect`. + * + * \param dst the SDL_Surface structure that is the drawing target. + * \param rects an array of SDL_Rects representing the rectangles to fill. + * \param count the number of rectangles in the array. + * \param color the color to fill with. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FillSurfaceRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FillSurfaceRects(SDL_Surface *dst, const SDL_Rect *rects, int count, Uint32 color); + +/** + * Performs a fast blit from the source surface to the destination surface + * with clipping. + * + * If either `srcrect` or `dstrect` are NULL, the entire surface (`src` or + * `dst`) is copied while ensuring clipping to `dst->clip_rect`. + * + * The blit function should not be called on a locked surface. + * + * The blit semantics for surfaces with and without blending and colorkey are + * defined as follows: + * + * ``` + * RGBA->RGB: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source alpha-channel and per-surface alpha) + * SDL_SRCCOLORKEY ignored. + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy RGB. + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * RGB values of the source color key, ignoring alpha in the + * comparison. + * + * RGB->RGBA: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source per-surface alpha) + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy RGB, set destination alpha to source per-surface alpha value. + * both: + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * source color key. + * + * RGBA->RGBA: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source alpha-channel and per-surface alpha) + * SDL_SRCCOLORKEY ignored. + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy all of RGBA to the destination. + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * RGB values of the source color key, ignoring alpha in the + * comparison. + * + * RGB->RGB: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source per-surface alpha) + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy RGB. + * both: + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * source color key. + * ``` + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the x and y position in + * the destination surface, or NULL for (0,0). The width and + * height are ignored, and are copied from `srcrect`. If you + * want a specific width and height, you should use + * SDL_BlitSurfaceScaled(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurfaceScaled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurface(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform low-level surface blitting only. + * + * This is a semi-private blit function and it performs low-level surface + * blitting, assuming the input rectangles have already been clipped. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, may not be NULL. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, may not be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceUnchecked(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform a scaled blit to a destination surface, which may be of a different + * format. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire + * destination surface. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceScaled(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect, SDL_ScaleMode scaleMode); + +/** + * Perform low-level surface scaled blitting only. + * + * This is a semi-private function and it performs low-level surface blitting, + * assuming the input rectangles have already been clipped. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, may not be NULL. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, may not be NULL. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurfaceScaled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceUncheckedScaled(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect, SDL_ScaleMode scaleMode); + +/** + * Perform a stretched pixel copy from one surface to another. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire + * destination surface. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.4.0. + * + * \sa SDL_BlitSurfaceScaled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StretchSurface(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect, SDL_ScaleMode scaleMode); + +/** + * Perform a tiled blit to a destination surface, which may be of a different + * format. + * + * The pixels in `srcrect` will be repeated as many times as needed to + * completely fill `dstrect`. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceTiled(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform a scaled and tiled blit to a destination surface, which may be of a + * different format. + * + * The pixels in `srcrect` will be scaled and repeated as many times as needed + * to completely fill `dstrect`. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param scale the scale used to transform srcrect into the destination + * rectangle, e.g. a 32x32 texture with a scale of 2 would fill + * 64x64 tiles. + * \param scaleMode scale algorithm to be used. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceTiledWithScale(SDL_Surface *src, const SDL_Rect *srcrect, float scale, SDL_ScaleMode scaleMode, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform a scaled blit using the 9-grid algorithm to a destination surface, + * which may be of a different format. + * + * The pixels in the source surface are split into a 3x3 grid, using the + * different corner sizes for each corner, and the sides and center making up + * the remaining pixels. The corners are then scaled using `scale` and fit + * into the corners of the destination rectangle. The sides and center are + * then stretched into place to cover the remaining destination rectangle. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be used + * for the 9-grid, or NULL to use the entire surface. + * \param left_width the width, in pixels, of the left corners in `srcrect`. + * \param right_width the width, in pixels, of the right corners in `srcrect`. + * \param top_height the height, in pixels, of the top corners in `srcrect`. + * \param bottom_height the height, in pixels, of the bottom corners in + * `srcrect`. + * \param scale the scale used to transform the corner of `srcrect` into the + * corner of `dstrect`, or 0.0f for an unscaled blit. + * \param scaleMode scale algorithm to be used. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurface9Grid(SDL_Surface *src, const SDL_Rect *srcrect, int left_width, int right_width, int top_height, int bottom_height, float scale, SDL_ScaleMode scaleMode, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Map an RGB triple to an opaque pixel value for a surface. + * + * This function maps the RGB color value to the specified pixel format and + * returns the pixel value best approximating the given RGB color value for + * the given pixel format. + * + * If the surface has a palette, the index of the closest matching color in + * the palette will be returned. + * + * If the surface pixel format has an alpha component it will be returned as + * all 1 bits (fully opaque). + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param surface the surface to use for the pixel format and palette. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MapSurfaceRGBA + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapSurfaceRGB(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b); + +/** + * Map an RGBA quadruple to a pixel value for a surface. + * + * This function maps the RGBA color value to the specified pixel format and + * returns the pixel value best approximating the given RGBA color value for + * the given pixel format. + * + * If the surface pixel format has no alpha component the alpha value will be + * ignored (as it will be in formats with a palette). + * + * If the surface has a palette, the index of the closest matching color in + * the palette will be returned. + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param surface the surface to use for the pixel format and palette. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \param a the alpha component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MapSurfaceRGB + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapSurfaceRGBA(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Retrieves a single pixel from a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * Like SDL_GetRGBA, this uses the entire 0..255 range when converting color + * components from pixel formats with less than 8 bits per RGB component. + * + * \param surface the surface to read. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r a pointer filled in with the red channel, 0-255, or NULL to ignore + * this channel. + * \param g a pointer filled in with the green channel, 0-255, or NULL to + * ignore this channel. + * \param b a pointer filled in with the blue channel, 0-255, or NULL to + * ignore this channel. + * \param a a pointer filled in with the alpha channel, 0-255, or NULL to + * ignore this channel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadSurfacePixel(SDL_Surface *surface, int x, int y, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); + +/** + * Retrieves a single pixel from a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * \param surface the surface to read. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r a pointer filled in with the red channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \param g a pointer filled in with the green channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \param b a pointer filled in with the blue channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \param a a pointer filled in with the alpha channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadSurfacePixelFloat(SDL_Surface *surface, int x, int y, float *r, float *g, float *b, float *a); + +/** + * Writes a single pixel to a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * Like SDL_MapRGBA, this uses the entire 0..255 range when converting color + * components from pixel formats with less than 8 bits per RGB component. + * + * \param surface the surface to write. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r the red channel value, 0-255. + * \param g the green channel value, 0-255. + * \param b the blue channel value, 0-255. + * \param a the alpha channel value, 0-255. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteSurfacePixel(SDL_Surface *surface, int x, int y, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Writes a single pixel to a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * \param surface the surface to write. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r the red channel value, normally in the range 0-1. + * \param g the green channel value, normally in the range 0-1. + * \param b the blue channel value, normally in the range 0-1. + * \param a the alpha channel value, normally in the range 0-1. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteSurfacePixelFloat(SDL_Surface *surface, int x, int y, float r, float g, float b, float a); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_surface_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_system.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_system.h new file mode 100644 index 0000000..294089f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_system.h @@ -0,0 +1,818 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategorySystem + * + * Platform-specific SDL API functions. These are functions that deal with + * needs of specific operating systems, that didn't make sense to offer as + * platform-independent, generic APIs. + * + * Most apps can make do without these functions, but they can be useful for + * integrating with other parts of a specific system, adding platform-specific + * polish to an app, or solving problems that only affect one target. + */ + +#ifndef SDL_system_h_ +#define SDL_system_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + + +/* + * Platform specific functions for Windows + */ +#if defined(SDL_PLATFORM_WINDOWS) + +typedef struct tagMSG MSG; + +/** + * A callback to be used with SDL_SetWindowsMessageHook. + * + * This callback may modify the message, and should return true if the message + * should continue to be processed, or false to prevent further processing. + * + * As this is processing a message directly from the Windows event loop, this + * callback should do the minimum required work and return quickly. + * + * \param userdata the app-defined pointer provided to + * SDL_SetWindowsMessageHook. + * \param msg a pointer to a Win32 event structure to process. + * \returns true to let event continue on, false to drop it. + * + * \threadsafety This may only be called (by SDL) from the thread handling the + * Windows event loop. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetWindowsMessageHook + * \sa SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP + */ +typedef bool (SDLCALL *SDL_WindowsMessageHook)(void *userdata, MSG *msg); + +/** + * Set a callback for every Windows message, run before TranslateMessage(). + * + * The callback may modify the message, and should return true if the message + * should continue to be processed, or false to prevent further processing. + * + * \param callback the SDL_WindowsMessageHook function to call. + * \param userdata a pointer to pass to every iteration of `callback`. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WindowsMessageHook + * \sa SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetWindowsMessageHook(SDL_WindowsMessageHook callback, void *userdata); + +#endif /* defined(SDL_PLATFORM_WINDOWS) */ + +#if defined(SDL_PLATFORM_WIN32) || defined(SDL_PLATFORM_WINGDK) + +/** + * Get the D3D9 adapter index that matches the specified display. + * + * The returned adapter index can be passed to `IDirect3D9::CreateDevice` and + * controls on which monitor a full screen application will appear. + * + * \param displayID the instance of the display to query. + * \returns the D3D9 adapter index on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDirect3D9AdapterIndex(SDL_DisplayID displayID); + +/** + * Get the DXGI Adapter and Output indices for the specified display. + * + * The DXGI Adapter and Output indices can be passed to `EnumAdapters` and + * `EnumOutputs` respectively to get the objects required to create a DX10 or + * DX11 device and swap chain. + * + * \param displayID the instance of the display to query. + * \param adapterIndex a pointer to be filled in with the adapter index. + * \param outputIndex a pointer to be filled in with the output index. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDXGIOutputInfo(SDL_DisplayID displayID, int *adapterIndex, int *outputIndex); + +#endif /* defined(SDL_PLATFORM_WIN32) || defined(SDL_PLATFORM_WINGDK) */ + + +/* + * Platform specific functions for UNIX + */ + +/* this is defined in Xlib's headers, just need a simple declaration here. */ +typedef union _XEvent XEvent; + +/** + * A callback to be used with SDL_SetX11EventHook. + * + * This callback may modify the event, and should return true if the event + * should continue to be processed, or false to prevent further processing. + * + * As this is processing an event directly from the X11 event loop, this + * callback should do the minimum required work and return quickly. + * + * \param userdata the app-defined pointer provided to SDL_SetX11EventHook. + * \param xevent a pointer to an Xlib XEvent union to process. + * \returns true to let event continue on, false to drop it. + * + * \threadsafety This may only be called (by SDL) from the thread handling the + * X11 event loop. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetX11EventHook + */ +typedef bool (SDLCALL *SDL_X11EventHook)(void *userdata, XEvent *xevent); + +/** + * Set a callback for every X11 event. + * + * The callback may modify the event, and should return true if the event + * should continue to be processed, or false to prevent further processing. + * + * \param callback the SDL_X11EventHook function to call. + * \param userdata a pointer to pass to every iteration of `callback`. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetX11EventHook(SDL_X11EventHook callback, void *userdata); + +/* Platform specific functions for Linux*/ +#ifdef SDL_PLATFORM_LINUX + +/** + * Sets the UNIX nice value for a thread. + * + * This uses setpriority() if possible, and RealtimeKit if available. + * + * \param threadID the Unix thread ID to change priority of. + * \param priority the new, Unix-specific, priority value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetLinuxThreadPriority(Sint64 threadID, int priority); + +/** + * Sets the priority (not nice level) and scheduling policy for a thread. + * + * This uses setpriority() if possible, and RealtimeKit if available. + * + * \param threadID the Unix thread ID to change priority of. + * \param sdlPriority the new SDL_ThreadPriority value. + * \param schedPolicy the new scheduling policy (SCHED_FIFO, SCHED_RR, + * SCHED_OTHER, etc...). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetLinuxThreadPriorityAndPolicy(Sint64 threadID, int sdlPriority, int schedPolicy); + +#endif /* SDL_PLATFORM_LINUX */ + +/* + * Platform specific functions for iOS + */ +#ifdef SDL_PLATFORM_IOS + +/** + * The prototype for an Apple iOS animation callback. + * + * This datatype is only useful on Apple iOS. + * + * After passing a function pointer of this type to + * SDL_SetiOSAnimationCallback, the system will call that function pointer at + * a regular interval. + * + * \param userdata what was passed as `callbackParam` to + * SDL_SetiOSAnimationCallback as `callbackParam`. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetiOSAnimationCallback + */ +typedef void (SDLCALL *SDL_iOSAnimationCallback)(void *userdata); + +/** + * Use this function to set the animation callback on Apple iOS. + * + * The function prototype for `callback` is: + * + * ```c + * void callback(void *callbackParam); + * ``` + * + * Where its parameter, `callbackParam`, is what was passed as `callbackParam` + * to SDL_SetiOSAnimationCallback(). + * + * This function is only available on Apple iOS. + * + * For more information see: + * + * https://wiki.libsdl.org/SDL3/README/ios + * + * Note that if you use the "main callbacks" instead of a standard C `main` + * function, you don't have to use this API, as SDL will manage this for you. + * + * Details on main callbacks are here: + * + * https://wiki.libsdl.org/SDL3/README/main-functions + * + * \param window the window for which the animation callback should be set. + * \param interval the number of frames after which **callback** will be + * called. + * \param callback the function to call for every frame. + * \param callbackParam a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetiOSEventPump + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetiOSAnimationCallback(SDL_Window *window, int interval, SDL_iOSAnimationCallback callback, void *callbackParam); + +/** + * Use this function to enable or disable the SDL event pump on Apple iOS. + * + * This function is only available on Apple iOS. + * + * \param enabled true to enable the event pump, false to disable it. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetiOSAnimationCallback + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetiOSEventPump(bool enabled); + +#endif /* SDL_PLATFORM_IOS */ + + +/* + * Platform specific functions for Android + */ +#ifdef SDL_PLATFORM_ANDROID + +/** + * Get the Android Java Native Interface Environment of the current thread. + * + * This is the JNIEnv one needs to access the Java virtual machine from native + * code, and is needed for many Android APIs to be usable from C. + * + * The prototype of the function in SDL's code actually declare a void* return + * type, even if the implementation returns a pointer to a JNIEnv. The + * rationale being that the SDL headers can avoid including jni.h. + * + * \returns a pointer to Java native interface object (JNIEnv) to which the + * current thread is attached, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidActivity + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetAndroidJNIEnv(void); + +/** + * Retrieve the Java instance of the Android activity class. + * + * The prototype of the function in SDL's code actually declares a void* + * return type, even if the implementation returns a jobject. The rationale + * being that the SDL headers can avoid including jni.h. + * + * The jobject returned by the function is a local reference and must be + * released by the caller. See the PushLocalFrame() and PopLocalFrame() or + * DeleteLocalRef() functions of the Java native interface: + * + * https://docs.oracle.com/javase/1.5.0/docs/guide/jni/spec/functions.html + * + * \returns the jobject representing the instance of the Activity class of the + * Android application, or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidJNIEnv + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetAndroidActivity(void); + +/** + * Query Android API level of the current device. + * + * - API level 35: Android 15 (VANILLA_ICE_CREAM) + * - API level 34: Android 14 (UPSIDE_DOWN_CAKE) + * - API level 33: Android 13 (TIRAMISU) + * - API level 32: Android 12L (S_V2) + * - API level 31: Android 12 (S) + * - API level 30: Android 11 (R) + * - API level 29: Android 10 (Q) + * - API level 28: Android 9 (P) + * - API level 27: Android 8.1 (O_MR1) + * - API level 26: Android 8.0 (O) + * - API level 25: Android 7.1 (N_MR1) + * - API level 24: Android 7.0 (N) + * - API level 23: Android 6.0 (M) + * - API level 22: Android 5.1 (LOLLIPOP_MR1) + * - API level 21: Android 5.0 (LOLLIPOP, L) + * - API level 20: Android 4.4W (KITKAT_WATCH) + * - API level 19: Android 4.4 (KITKAT) + * - API level 18: Android 4.3 (JELLY_BEAN_MR2) + * - API level 17: Android 4.2 (JELLY_BEAN_MR1) + * - API level 16: Android 4.1 (JELLY_BEAN) + * - API level 15: Android 4.0.3 (ICE_CREAM_SANDWICH_MR1) + * - API level 14: Android 4.0 (ICE_CREAM_SANDWICH) + * - API level 13: Android 3.2 (HONEYCOMB_MR2) + * - API level 12: Android 3.1 (HONEYCOMB_MR1) + * - API level 11: Android 3.0 (HONEYCOMB) + * - API level 10: Android 2.3.3 (GINGERBREAD_MR1) + * + * \returns the Android API level. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAndroidSDKVersion(void); + +/** + * Query if the application is running on a Chromebook. + * + * \returns true if this is a Chromebook, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsChromebook(void); + +/** + * Query if the application is running on a Samsung DeX docking station. + * + * \returns true if this is a DeX docking station, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsDeXMode(void); + +/** + * Trigger the Android system back button behavior. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SendAndroidBackButton(void); + +/** + * See the official Android developer guide for more information: + * http://developer.android.com/guide/topics/data/data-storage.html + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ANDROID_EXTERNAL_STORAGE_READ 0x01 + +/** + * See the official Android developer guide for more information: + * http://developer.android.com/guide/topics/data/data-storage.html + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ANDROID_EXTERNAL_STORAGE_WRITE 0x02 + +/** + * Get the path used for internal storage for this Android application. + * + * This path is unique to your application and cannot be written to by other + * applications. + * + * Your internal storage path is typically: + * `/data/data/your.app.package/files`. + * + * This is a C wrapper over `android.content.Context.getFilesDir()`: + * + * https://developer.android.com/reference/android/content/Context#getFilesDir() + * + * \returns the path used for internal storage or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidExternalStoragePath + * \sa SDL_GetAndroidCachePath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAndroidInternalStoragePath(void); + +/** + * Get the current state of external storage for this Android application. + * + * The current state of external storage, a bitmask of these values: + * `SDL_ANDROID_EXTERNAL_STORAGE_READ`, `SDL_ANDROID_EXTERNAL_STORAGE_WRITE`. + * + * If external storage is currently unavailable, this will return 0. + * + * \returns the current state of external storage, or 0 if external storage is + * currently unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidExternalStoragePath + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetAndroidExternalStorageState(void); + +/** + * Get the path used for external storage for this Android application. + * + * This path is unique to your application, but is public and can be written + * to by other applications. + * + * Your external storage path is typically: + * `/storage/sdcard0/Android/data/your.app.package/files`. + * + * This is a C wrapper over `android.content.Context.getExternalFilesDir()`: + * + * https://developer.android.com/reference/android/content/Context#getExternalFilesDir() + * + * \returns the path used for external storage for this application on success + * or NULL on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidExternalStorageState + * \sa SDL_GetAndroidInternalStoragePath + * \sa SDL_GetAndroidCachePath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAndroidExternalStoragePath(void); + +/** + * Get the path used for caching data for this Android application. + * + * This path is unique to your application, but is public and can be written + * to by other applications. + * + * Your cache path is typically: `/data/data/your.app.package/cache/`. + * + * This is a C wrapper over `android.content.Context.getCacheDir()`: + * + * https://developer.android.com/reference/android/content/Context#getCacheDir() + * + * \returns the path used for caches for this application on success or NULL + * on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidInternalStoragePath + * \sa SDL_GetAndroidExternalStoragePath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAndroidCachePath(void); + +/** + * Callback that presents a response from a SDL_RequestAndroidPermission call. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \param permission the Android-specific permission name that was requested. + * \param granted true if permission is granted, false if denied. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_RequestAndroidPermission + */ +typedef void (SDLCALL *SDL_RequestAndroidPermissionCallback)(void *userdata, const char *permission, bool granted); + +/** + * Request permissions at runtime, asynchronously. + * + * You do not need to call this for built-in functionality of SDL; recording + * from a microphone or reading images from a camera, using standard SDL APIs, + * will manage permission requests for you. + * + * This function never blocks. Instead, the app-supplied callback will be + * called when a decision has been made. This callback may happen on a + * different thread, and possibly much later, as it might wait on a user to + * respond to a system dialog. If permission has already been granted for a + * specific entitlement, the callback will still fire, probably on the current + * thread and before this function returns. + * + * If the request submission fails, this function returns -1 and the callback + * will NOT be called, but this should only happen in catastrophic conditions, + * like memory running out. Normally there will be a yes or no to the request + * through the callback. + * + * For the `permission` parameter, choose a value from here: + * + * https://developer.android.com/reference/android/Manifest.permission + * + * \param permission the permission to request. + * \param cb the callback to trigger when the request has a response. + * \param userdata an app-controlled pointer that is passed to the callback. + * \returns true if the request was submitted, false if there was an error + * submitting. The result of the request is only ever reported + * through the callback, not this return value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RequestAndroidPermission(const char *permission, SDL_RequestAndroidPermissionCallback cb, void *userdata); + +/** + * Shows an Android toast notification. + * + * Toasts are a sort of lightweight notification that are unique to Android. + * + * https://developer.android.com/guide/topics/ui/notifiers/toasts + * + * Shows toast in UI thread. + * + * For the `gravity` parameter, choose a value from here, or -1 if you don't + * have a preference: + * + * https://developer.android.com/reference/android/view/Gravity + * + * \param message text message to be shown. + * \param duration 0=short, 1=long. + * \param gravity where the notification should appear on the screen. + * \param xoffset set this parameter only when gravity >=0. + * \param yoffset set this parameter only when gravity >=0. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowAndroidToast(const char *message, int duration, int gravity, int xoffset, int yoffset); + +/** + * Send a user command to SDLActivity. + * + * Override "boolean onUnhandledMessage(Message msg)" to handle the message. + * + * \param command user command that must be greater or equal to 0x8000. + * \param param user parameter. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendAndroidMessage(Uint32 command, int param); + +#endif /* SDL_PLATFORM_ANDROID */ + +/** + * Query if the current device is a tablet. + * + * If SDL can't determine this, it will return false. + * + * \returns true if the device is a tablet, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsTablet(void); + +/** + * Query if the current device is a TV. + * + * If SDL can't determine this, it will return false. + * + * \returns true if the device is a TV, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsTV(void); + +/** + * Application sandbox environment. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_Sandbox +{ + SDL_SANDBOX_NONE = 0, + SDL_SANDBOX_UNKNOWN_CONTAINER, + SDL_SANDBOX_FLATPAK, + SDL_SANDBOX_SNAP, + SDL_SANDBOX_MACOS +} SDL_Sandbox; + +/** + * Get the application sandbox environment, if any. + * + * \returns the application sandbox environment or SDL_SANDBOX_NONE if the + * application is not running in a sandbox environment. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Sandbox SDLCALL SDL_GetSandbox(void); + + +/* Functions used by iOS app delegates to notify SDL about state changes. */ + +/** + * Let iOS apps with external event handling report + * onApplicationWillTerminate. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationWillTerminate(void); + +/** + * Let iOS apps with external event handling report + * onApplicationDidReceiveMemoryWarning. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidReceiveMemoryWarning(void); + +/** + * Let iOS apps with external event handling report + * onApplicationWillResignActive. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationWillEnterBackground(void); + +/** + * Let iOS apps with external event handling report + * onApplicationDidEnterBackground. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidEnterBackground(void); + +/** + * Let iOS apps with external event handling report + * onApplicationWillEnterForeground. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationWillEnterForeground(void); + +/** + * Let iOS apps with external event handling report + * onApplicationDidBecomeActive. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidEnterForeground(void); + +#ifdef SDL_PLATFORM_IOS + +/** + * Let iOS apps with external event handling report + * onApplicationDidChangeStatusBarOrientation. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidChangeStatusBarOrientation(void); +#endif + +/* + * Functions used only by GDK + */ +#ifdef SDL_PLATFORM_GDK +typedef struct XTaskQueueObject *XTaskQueueHandle; +typedef struct XUser *XUserHandle; + +/** + * Gets a reference to the global async task queue handle for GDK, + * initializing if needed. + * + * Once you are done with the task queue, you should call + * XTaskQueueCloseHandle to reduce the reference count to avoid a resource + * leak. + * + * \param outTaskQueue a pointer to be filled in with task queue handle. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGDKTaskQueue(XTaskQueueHandle *outTaskQueue); + +/** + * Gets a reference to the default user handle for GDK. + * + * This is effectively a synchronous version of XUserAddAsync, which always + * prefers the default user and allows a sign-in UI. + * + * \param outUserHandle a pointer to be filled in with the default user + * handle. + * \returns true if success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGDKDefaultUser(XUserHandle *outUserHandle); + +#endif + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_system_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_thread.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_thread.h new file mode 100644 index 0000000..e981b54 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_thread.h @@ -0,0 +1,578 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_thread_h_ +#define SDL_thread_h_ + +/** + * # CategoryThread + * + * SDL offers cross-platform thread management functions. These are mostly + * concerned with starting threads, setting their priority, and dealing with + * their termination. + * + * In addition, there is support for Thread Local Storage (data that is unique + * to each thread, but accessed from a single key). + * + * On platforms without thread support (such as Emscripten when built without + * pthreads), these functions still exist, but things like SDL_CreateThread() + * will report failure without doing anything. + * + * If you're going to work with threads, you almost certainly need to have a + * good understanding of [CategoryMutex](CategoryMutex) as well. + */ + +#include +#include +#include + +/* Thread synchronization primitives */ +#include + +#if defined(SDL_PLATFORM_WINDOWS) +#include /* _beginthreadex() and _endthreadex() */ +#endif + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The SDL thread object. + * + * These are opaque data. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_WaitThread + */ +typedef struct SDL_Thread SDL_Thread; + +/** + * A unique numeric ID that identifies a thread. + * + * These are different from SDL_Thread objects, which are generally what an + * application will operate on, but having a way to uniquely identify a thread + * can be useful at times. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetThreadID + * \sa SDL_GetCurrentThreadID + */ +typedef Uint64 SDL_ThreadID; + +/** + * Thread local storage ID. + * + * 0 is the invalid ID. An app can create these and then set data for these + * IDs that is unique to each thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetTLS + * \sa SDL_SetTLS + */ +typedef SDL_AtomicInt SDL_TLSID; + +/** + * The SDL thread priority. + * + * SDL will make system changes as necessary in order to apply the thread + * priority. Code which attempts to control thread state related to priority + * should be aware that calling SDL_SetCurrentThreadPriority may alter such + * state. SDL_HINT_THREAD_PRIORITY_POLICY can be used to control aspects of + * this behavior. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ThreadPriority { + SDL_THREAD_PRIORITY_LOW, + SDL_THREAD_PRIORITY_NORMAL, + SDL_THREAD_PRIORITY_HIGH, + SDL_THREAD_PRIORITY_TIME_CRITICAL +} SDL_ThreadPriority; + +/** + * The SDL thread state. + * + * The current state of a thread can be checked by calling SDL_GetThreadState. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetThreadState + */ +typedef enum SDL_ThreadState +{ + SDL_THREAD_UNKNOWN, /**< The thread is not valid */ + SDL_THREAD_ALIVE, /**< The thread is currently running */ + SDL_THREAD_DETACHED, /**< The thread is detached and can't be waited on */ + SDL_THREAD_COMPLETE /**< The thread has finished and should be cleaned up with SDL_WaitThread() */ +} SDL_ThreadState; + +/** + * The function passed to SDL_CreateThread() as the new thread's entry point. + * + * \param data what was passed as `data` to SDL_CreateThread(). + * \returns a value that can be reported through SDL_WaitThread(). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef int (SDLCALL *SDL_ThreadFunction) (void *data); + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/* + * Note that these aren't the correct function signatures in this block, but + * this is what the API reference manual should look like for all intents and + * purposes. + * + * Technical details, not for the wiki (hello, header readers!)... + * + * On Windows (and maybe other platforms), a program might use a different + * C runtime than its libraries. Or, in SDL's case, it might use a C runtime + * while SDL uses none at all. + * + * C runtimes expect to initialize thread-specific details when a new thread + * is created, but to do this in SDL_CreateThread would require SDL to know + * intimate details about the caller's C runtime, which is not possible. + * + * So SDL_CreateThread has two extra parameters, which are + * hidden at compile time by macros: the C runtime's `_beginthreadex` and + * `_endthreadex` entry points. If these are not NULL, they are used to spin + * and terminate the new thread; otherwise the standard Win32 `CreateThread` + * function is used. When `SDL_CreateThread` is called from a compiler that + * needs this C runtime thread init function, macros insert the appropriate + * function pointers for SDL_CreateThread's caller (which might be a different + * compiler with a different runtime in different calls to SDL_CreateThread!). + * + * SDL_BeginThreadFunction defaults to `_beginthreadex` on Windows (and NULL + * everywhere else), but apps that have extremely specific special needs can + * define this to something else and the SDL headers will use it, passing the + * app-defined value to SDL_CreateThread calls. Redefine this with caution! + * + * Platforms that don't need _beginthread stuff (most everything) will fail + * SDL_CreateThread with an error if these pointers _aren't_ NULL. + * + * Unless you are doing something extremely complicated, like perhaps a + * language binding, **you should never deal with this directly**. Let SDL's + * macros handle this platform-specific detail transparently! + */ + +/** + * Create a new thread with a default stack size. + * + * This is a convenience function, equivalent to calling + * SDL_CreateThreadWithProperties with the following properties set: + * + * - `SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER`: `fn` + * - `SDL_PROP_THREAD_CREATE_NAME_STRING`: `name` + * - `SDL_PROP_THREAD_CREATE_USERDATA_POINTER`: `data` + * + * Note that this "function" is actually a macro that calls an internal + * function with two extra parameters not listed here; they are hidden through + * preprocessor macros and are needed to support various C runtimes at the + * point of the function call. Language bindings that aren't using the C + * headers will need to deal with this. + * + * Usually, apps should just call this function the same way on every platform + * and let the macros hide the details. + * + * \param fn the SDL_ThreadFunction function to call in the new thread. + * \param name the name of the thread. + * \param data a pointer that is passed to `fn`. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThreadWithProperties + * \sa SDL_WaitThread + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data); + +/** + * Create a new thread with with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER`: an SDL_ThreadFunction + * value that will be called at the start of the new thread's life. + * Required. + * - `SDL_PROP_THREAD_CREATE_NAME_STRING`: the name of the new thread, which + * might be available to debuggers. Optional, defaults to NULL. + * - `SDL_PROP_THREAD_CREATE_USERDATA_POINTER`: an arbitrary app-defined + * pointer, which is passed to the entry function on the new thread, as its + * only parameter. Optional, defaults to NULL. + * - `SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER`: the size, in bytes, of the new + * thread's stack. Optional, defaults to 0 (system-defined default). + * + * SDL makes an attempt to report `SDL_PROP_THREAD_CREATE_NAME_STRING` to the + * system, so that debuggers can display it. Not all platforms support this. + * + * Thread naming is a little complicated: Most systems have very small limits + * for the string length (Haiku has 32 bytes, Linux currently has 16, Visual + * C++ 6.0 has _nine_!), and possibly other arbitrary rules. You'll have to + * see what happens with your system's debugger. The name should be UTF-8 (but + * using the naming limits of C identifiers is a better bet). There are no + * requirements for thread naming conventions, so long as the string is + * null-terminated UTF-8, but these guidelines are helpful in choosing a name: + * + * https://stackoverflow.com/questions/149932/naming-conventions-for-threads + * + * If a system imposes requirements, SDL will try to munge the string for it + * (truncate, etc), but the original string contents will be available from + * SDL_GetThreadName(). + * + * The size (in bytes) of the new stack can be specified with + * `SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER`. Zero means "use the system + * default" which might be wildly different between platforms. x86 Linux + * generally defaults to eight megabytes, an embedded device might be a few + * kilobytes instead. You generally need to specify a stack that is a multiple + * of the system's page size (in many cases, this is 4 kilobytes, but check + * your system documentation). + * + * Note that this "function" is actually a macro that calls an internal + * function with two extra parameters not listed here; they are hidden through + * preprocessor macros and are needed to support various C runtimes at the + * point of the function call. Language bindings that aren't using the C + * headers will need to deal with this. + * + * The actual symbol in SDL is `SDL_CreateThreadWithPropertiesRuntime`, so + * there is no symbol clash, but trying to load an SDL shared library and look + * for "SDL_CreateThreadWithProperties" will fail. + * + * Usually, apps should just call this function the same way on every platform + * and let the macros hide the details. + * + * \param props the properties to use. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_WaitThread + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThreadWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER "SDL.thread.create.entry_function" +#define SDL_PROP_THREAD_CREATE_NAME_STRING "SDL.thread.create.name" +#define SDL_PROP_THREAD_CREATE_USERDATA_POINTER "SDL.thread.create.userdata" +#define SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER "SDL.thread.create.stacksize" + +/* end wiki documentation for macros that are meant to look like functions. */ +#endif + + +/* The real implementation, hidden from the wiki, so it can show this as real functions that don't have macro magic. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +# if defined(SDL_PLATFORM_WINDOWS) +# ifndef SDL_BeginThreadFunction +# define SDL_BeginThreadFunction _beginthreadex +# endif +# ifndef SDL_EndThreadFunction +# define SDL_EndThreadFunction _endthreadex +# endif +# endif +#endif + +/* currently no other platforms than Windows use _beginthreadex/_endthreadex things. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +# ifndef SDL_BeginThreadFunction +# define SDL_BeginThreadFunction NULL +# endif +#endif + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +# ifndef SDL_EndThreadFunction +# define SDL_EndThreadFunction NULL +# endif +#endif + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +/* These are the actual functions exported from SDL! Don't use them directly! Use the SDL_CreateThread and SDL_CreateThreadWithProperties macros! */ +/** + * The actual entry point for SDL_CreateThread. + * + * \param fn the SDL_ThreadFunction function to call in the new thread + * \param name the name of the thread + * \param data a pointer that is passed to `fn` + * \param pfnBeginThread the C runtime's _beginthreadex (or whatnot). Can be NULL. + * \param pfnEndThread the C runtime's _endthreadex (or whatnot). Can be NULL. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThreadRuntime(SDL_ThreadFunction fn, const char *name, void *data, SDL_FunctionPointer pfnBeginThread, SDL_FunctionPointer pfnEndThread); + +/** + * The actual entry point for SDL_CreateThreadWithProperties. + * + * \param props the properties to use + * \param pfnBeginThread the C runtime's _beginthreadex (or whatnot). Can be NULL. + * \param pfnEndThread the C runtime's _endthreadex (or whatnot). Can be NULL. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThreadWithPropertiesRuntime(SDL_PropertiesID props, SDL_FunctionPointer pfnBeginThread, SDL_FunctionPointer pfnEndThread); + +#define SDL_CreateThread(fn, name, data) SDL_CreateThreadRuntime((fn), (name), (data), (SDL_FunctionPointer) (SDL_BeginThreadFunction), (SDL_FunctionPointer) (SDL_EndThreadFunction)) +#define SDL_CreateThreadWithProperties(props) SDL_CreateThreadWithPropertiesRuntime((props), (SDL_FunctionPointer) (SDL_BeginThreadFunction), (SDL_FunctionPointer) (SDL_EndThreadFunction)) +#define SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER "SDL.thread.create.entry_function" +#define SDL_PROP_THREAD_CREATE_NAME_STRING "SDL.thread.create.name" +#define SDL_PROP_THREAD_CREATE_USERDATA_POINTER "SDL.thread.create.userdata" +#define SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER "SDL.thread.create.stacksize" +#endif + + +/** + * Get the thread name as it was specified in SDL_CreateThread(). + * + * \param thread the thread to query. + * \returns a pointer to a UTF-8 string that names the specified thread, or + * NULL if it doesn't have a name. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetThreadName(SDL_Thread *thread); + +/** + * Get the thread identifier for the current thread. + * + * This thread identifier is as reported by the underlying operating system. + * If SDL is running on a platform that does not support threads the return + * value will always be zero. + * + * This function also returns a valid thread ID when called from the main + * thread. + * + * \returns the ID of the current thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetThreadID + */ +extern SDL_DECLSPEC SDL_ThreadID SDLCALL SDL_GetCurrentThreadID(void); + +/** + * Get the thread identifier for the specified thread. + * + * This thread identifier is as reported by the underlying operating system. + * If SDL is running on a platform that does not support threads the return + * value will always be zero. + * + * \param thread the thread to query. + * \returns the ID of the specified thread, or the ID of the current thread if + * `thread` is NULL. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentThreadID + */ +extern SDL_DECLSPEC SDL_ThreadID SDLCALL SDL_GetThreadID(SDL_Thread *thread); + +/** + * Set the priority for the current thread. + * + * Note that some platforms will not let you alter the priority (or at least, + * promote the thread to a higher priority) at all, and some require you to be + * an administrator account. Be prepared for this to fail. + * + * \param priority the SDL_ThreadPriority to set. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetCurrentThreadPriority(SDL_ThreadPriority priority); + +/** + * Wait for a thread to finish. + * + * Threads that haven't been detached will remain until this function cleans + * them up. Not doing so is a resource leak. + * + * Once a thread has been cleaned up through this function, the SDL_Thread + * that references it becomes invalid and should not be referenced again. As + * such, only one thread may call SDL_WaitThread() on another. + * + * The return code from the thread function is placed in the area pointed to + * by `status`, if `status` is not NULL. + * + * You may not wait on a thread that has been used in a call to + * SDL_DetachThread(). Use either that function or this one, but not both, or + * behavior is undefined. + * + * It is safe to pass a NULL thread to this function; it is a no-op. + * + * Note that the thread pointer is freed by this function and is not valid + * afterward. + * + * \param thread the SDL_Thread pointer that was returned from the + * SDL_CreateThread() call that started this thread. + * \param status a pointer filled in with the value returned from the thread + * function by its 'return', or -1 if the thread has been + * detached or isn't valid, may be NULL. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_DetachThread + */ +extern SDL_DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread *thread, int *status); + +/** + * Get the current state of a thread. + * + * \param thread the thread to query. + * \returns the current state of a thread, or SDL_THREAD_UNKNOWN if the thread + * isn't valid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ThreadState + */ +extern SDL_DECLSPEC SDL_ThreadState SDLCALL SDL_GetThreadState(SDL_Thread *thread); + +/** + * Let a thread clean up on exit without intervention. + * + * A thread may be "detached" to signify that it should not remain until + * another thread has called SDL_WaitThread() on it. Detaching a thread is + * useful for long-running threads that nothing needs to synchronize with or + * further manage. When a detached thread is done, it simply goes away. + * + * There is no way to recover the return code of a detached thread. If you + * need this, don't detach the thread and instead use SDL_WaitThread(). + * + * Once a thread is detached, you should usually assume the SDL_Thread isn't + * safe to reference again, as it will become invalid immediately upon the + * detached thread's exit, instead of remaining until someone has called + * SDL_WaitThread() to finally clean it up. As such, don't detach the same + * thread more than once. + * + * If a thread has already exited when passed to SDL_DetachThread(), it will + * stop waiting for a call to SDL_WaitThread() and clean up immediately. It is + * not safe to detach a thread that might be used with SDL_WaitThread(). + * + * You may not call SDL_WaitThread() on a thread that has been detached. Use + * either that function or this one, but not both, or behavior is undefined. + * + * It is safe to pass NULL to this function; it is a no-op. + * + * \param thread the SDL_Thread pointer that was returned from the + * SDL_CreateThread() call that started this thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_WaitThread + */ +extern SDL_DECLSPEC void SDLCALL SDL_DetachThread(SDL_Thread *thread); + +/** + * Get the current thread's value associated with a thread local storage ID. + * + * \param id a pointer to the thread local storage ID, may not be NULL. + * \returns the value associated with the ID for the current thread or NULL if + * no value has been set; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTLS + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetTLS(SDL_TLSID *id); + +/** + * The callback used to cleanup data passed to SDL_SetTLS. + * + * This is called when a thread exits, to allow an app to free any resources. + * + * \param value a pointer previously handed to SDL_SetTLS. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetTLS + */ +typedef void (SDLCALL *SDL_TLSDestructorCallback)(void *value); + +/** + * Set the current thread's value associated with a thread local storage ID. + * + * If the thread local storage ID is not initialized (the value is 0), a new + * ID will be created in a thread-safe way, so all calls using a pointer to + * the same ID will refer to the same local storage. + * + * Note that replacing a value from a previous call to this function on the + * same thread does _not_ call the previous value's destructor! + * + * `destructor` can be NULL; it is assumed that `value` does not need to be + * cleaned up if so. + * + * \param id a pointer to the thread local storage ID, may not be NULL. + * \param value the value to associate with the ID for the current thread. + * \param destructor a function called when the thread exits, to free the + * value, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTLS + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTLS(SDL_TLSID *id, const void *value, SDL_TLSDestructorCallback destructor); + +/** + * Cleanup all TLS data for this thread. + * + * If you are creating your threads outside of SDL and then calling SDL + * functions, you should call this function before your thread exits, to + * properly clean up SDL memory. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CleanupTLS(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_thread_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_time.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_time.h new file mode 100644 index 0000000..b6d3f6d --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_time.h @@ -0,0 +1,231 @@ +/* +Simple DirectMedia Layer +Copyright (C) 1997-2025 Sam Lantinga + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_time_h_ +#define SDL_time_h_ + +/** + * # CategoryTime + * + * SDL realtime clock and date/time routines. + * + * There are two data types that are used in this category: SDL_Time, which + * represents the nanoseconds since a specific moment (an "epoch"), and + * SDL_DateTime, which breaks time down into human-understandable components: + * years, months, days, hours, etc. + * + * Much of the functionality is involved in converting those two types to + * other useful forms. + */ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A structure holding a calendar date and time broken down into its + * components. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_DateTime +{ + int year; /**< Year */ + int month; /**< Month [01-12] */ + int day; /**< Day of the month [01-31] */ + int hour; /**< Hour [0-23] */ + int minute; /**< Minute [0-59] */ + int second; /**< Seconds [0-60] */ + int nanosecond; /**< Nanoseconds [0-999999999] */ + int day_of_week; /**< Day of the week [0-6] (0 being Sunday) */ + int utc_offset; /**< Seconds east of UTC */ +} SDL_DateTime; + +/** + * The preferred date format of the current system locale. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetDateTimeLocalePreferences + */ +typedef enum SDL_DateFormat +{ + SDL_DATE_FORMAT_YYYYMMDD = 0, /**< Year/Month/Day */ + SDL_DATE_FORMAT_DDMMYYYY = 1, /**< Day/Month/Year */ + SDL_DATE_FORMAT_MMDDYYYY = 2 /**< Month/Day/Year */ +} SDL_DateFormat; + +/** + * The preferred time format of the current system locale. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetDateTimeLocalePreferences + */ +typedef enum SDL_TimeFormat +{ + SDL_TIME_FORMAT_24HR = 0, /**< 24 hour time */ + SDL_TIME_FORMAT_12HR = 1 /**< 12 hour time */ +} SDL_TimeFormat; + +/** + * Gets the current preferred date and time format for the system locale. + * + * This might be a "slow" call that has to query the operating system. It's + * best to ask for this once and save the results. However, the preferred + * formats can change, usually because the user has changed a system + * preference outside of your program. + * + * \param dateFormat a pointer to the SDL_DateFormat to hold the returned date + * format, may be NULL. + * \param timeFormat a pointer to the SDL_TimeFormat to hold the returned time + * format, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDateTimeLocalePreferences(SDL_DateFormat *dateFormat, SDL_TimeFormat *timeFormat); + +/** + * Gets the current value of the system realtime clock in nanoseconds since + * Jan 1, 1970 in Universal Coordinated Time (UTC). + * + * \param ticks the SDL_Time to hold the returned tick count. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetCurrentTime(SDL_Time *ticks); + +/** + * Converts an SDL_Time in nanoseconds since the epoch to a calendar time in + * the SDL_DateTime format. + * + * \param ticks the SDL_Time to be converted. + * \param dt the resulting SDL_DateTime. + * \param localTime the resulting SDL_DateTime will be expressed in local time + * if true, otherwise it will be in Universal Coordinated + * Time (UTC). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TimeToDateTime(SDL_Time ticks, SDL_DateTime *dt, bool localTime); + +/** + * Converts a calendar time to an SDL_Time in nanoseconds since the epoch. + * + * This function ignores the day_of_week member of the SDL_DateTime struct, so + * it may remain unset. + * + * \param dt the source SDL_DateTime. + * \param ticks the resulting SDL_Time. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DateTimeToTime(const SDL_DateTime *dt, SDL_Time *ticks); + +/** + * Converts an SDL time into a Windows FILETIME (100-nanosecond intervals + * since January 1, 1601). + * + * This function fills in the two 32-bit values of the FILETIME structure. + * + * \param ticks the time to convert. + * \param dwLowDateTime a pointer filled in with the low portion of the + * Windows FILETIME value. + * \param dwHighDateTime a pointer filled in with the high portion of the + * Windows FILETIME value. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_TimeToWindows(SDL_Time ticks, Uint32 *dwLowDateTime, Uint32 *dwHighDateTime); + +/** + * Converts a Windows FILETIME (100-nanosecond intervals since January 1, + * 1601) to an SDL time. + * + * This function takes the two 32-bit values of the FILETIME structure as + * parameters. + * + * \param dwLowDateTime the low portion of the Windows FILETIME value. + * \param dwHighDateTime the high portion of the Windows FILETIME value. + * \returns the converted SDL time. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Time SDLCALL SDL_TimeFromWindows(Uint32 dwLowDateTime, Uint32 dwHighDateTime); + +/** + * Get the number of days in a month for a given year. + * + * \param year the year. + * \param month the month [1-12]. + * \returns the number of days in the requested month or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDaysInMonth(int year, int month); + +/** + * Get the day of year for a calendar date. + * + * \param year the year component of the date. + * \param month the month component of the date. + * \param day the day component of the date. + * \returns the day of year [0-365] if the date is valid or -1 on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDayOfYear(int year, int month, int day); + +/** + * Get the day of week for a calendar date. + * + * \param year the year component of the date. + * \param month the month component of the date. + * \param day the day component of the date. + * \returns a value between 0 and 6 (0 being Sunday) if the date is valid or + * -1 on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDayOfWeek(int year, int month, int day); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_time_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_timer.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_timer.h new file mode 100644 index 0000000..cf94881 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_timer.h @@ -0,0 +1,450 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_timer_h_ +#define SDL_timer_h_ + +/** + * # CategoryTimer + * + * SDL provides time management functionality. It is useful for dealing with + * (usually) small durations of time. + * + * This is not to be confused with _calendar time_ management, which is + * provided by [CategoryTime](CategoryTime). + * + * This category covers measuring time elapsed (SDL_GetTicks(), + * SDL_GetPerformanceCounter()), putting a thread to sleep for a certain + * amount of time (SDL_Delay(), SDL_DelayNS(), SDL_DelayPrecise()), and firing + * a callback function after a certain amount of time has elasped + * (SDL_AddTimer(), etc). + * + * There are also useful macros to convert between time units, like + * SDL_SECONDS_TO_NS() and such. + */ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* SDL time constants */ + +/** + * Number of milliseconds in a second. + * + * This is always 1000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MS_PER_SECOND 1000 + +/** + * Number of microseconds in a second. + * + * This is always 1000000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_US_PER_SECOND 1000000 + +/** + * Number of nanoseconds in a second. + * + * This is always 1000000000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_PER_SECOND 1000000000LL + +/** + * Number of nanoseconds in a millisecond. + * + * This is always 1000000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_PER_MS 1000000 + +/** + * Number of nanoseconds in a microsecond. + * + * This is always 1000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_PER_US 1000 + +/** + * Convert seconds to nanoseconds. + * + * This only converts whole numbers, not fractional seconds. + * + * \param S the number of seconds to convert. + * \returns S, expressed in nanoseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SECONDS_TO_NS(S) (((Uint64)(S)) * SDL_NS_PER_SECOND) + +/** + * Convert nanoseconds to seconds. + * + * This performs a division, so the results can be dramatically different if + * `NS` is an integer or floating point value. + * + * \param NS the number of nanoseconds to convert. + * \returns NS, expressed in seconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_TO_SECONDS(NS) ((NS) / SDL_NS_PER_SECOND) + +/** + * Convert milliseconds to nanoseconds. + * + * This only converts whole numbers, not fractional milliseconds. + * + * \param MS the number of milliseconds to convert. + * \returns MS, expressed in nanoseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MS_TO_NS(MS) (((Uint64)(MS)) * SDL_NS_PER_MS) + +/** + * Convert nanoseconds to milliseconds. + * + * This performs a division, so the results can be dramatically different if + * `NS` is an integer or floating point value. + * + * \param NS the number of nanoseconds to convert. + * \returns NS, expressed in milliseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_TO_MS(NS) ((NS) / SDL_NS_PER_MS) + +/** + * Convert microseconds to nanoseconds. + * + * This only converts whole numbers, not fractional microseconds. + * + * \param US the number of microseconds to convert. + * \returns US, expressed in nanoseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_US_TO_NS(US) (((Uint64)(US)) * SDL_NS_PER_US) + +/** + * Convert nanoseconds to microseconds. + * + * This performs a division, so the results can be dramatically different if + * `NS` is an integer or floating point value. + * + * \param NS the number of nanoseconds to convert. + * \returns NS, expressed in microseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_TO_US(NS) ((NS) / SDL_NS_PER_US) + +/** + * Get the number of milliseconds since SDL library initialization. + * + * \returns an unsigned 64-bit value representing the number of milliseconds + * since the SDL library initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetTicks(void); + +/** + * Get the number of nanoseconds since SDL library initialization. + * + * \returns an unsigned 64-bit value representing the number of nanoseconds + * since the SDL library initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetTicksNS(void); + +/** + * Get the current value of the high resolution counter. + * + * This function is typically used for profiling. + * + * The counter values are only meaningful relative to each other. Differences + * between values can be converted to times by using + * SDL_GetPerformanceFrequency(). + * + * \returns the current counter value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPerformanceFrequency + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetPerformanceCounter(void); + +/** + * Get the count per second of the high resolution counter. + * + * \returns a platform-specific count per second. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPerformanceCounter + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetPerformanceFrequency(void); + +/** + * Wait a specified number of milliseconds before returning. + * + * This function waits a specified number of milliseconds before returning. It + * waits at least the specified time, but possibly longer due to OS + * scheduling. + * + * \param ms the number of milliseconds to delay. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DelayNS + * \sa SDL_DelayPrecise + */ +extern SDL_DECLSPEC void SDLCALL SDL_Delay(Uint32 ms); + +/** + * Wait a specified number of nanoseconds before returning. + * + * This function waits a specified number of nanoseconds before returning. It + * waits at least the specified time, but possibly longer due to OS + * scheduling. + * + * \param ns the number of nanoseconds to delay. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Delay + * \sa SDL_DelayPrecise + */ +extern SDL_DECLSPEC void SDLCALL SDL_DelayNS(Uint64 ns); + +/** + * Wait a specified number of nanoseconds before returning. + * + * This function waits a specified number of nanoseconds before returning. It + * will attempt to wait as close to the requested time as possible, busy + * waiting if necessary, but could return later due to OS scheduling. + * + * \param ns the number of nanoseconds to delay. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Delay + * \sa SDL_DelayNS + */ +extern SDL_DECLSPEC void SDLCALL SDL_DelayPrecise(Uint64 ns); + +/** + * Definition of the timer ID type. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_TimerID; + +/** + * Function prototype for the millisecond timer callback function. + * + * The callback function is passed the current timer interval and returns the + * next timer interval, in milliseconds. If the returned value is the same as + * the one passed in, the periodic alarm continues, otherwise a new alarm is + * scheduled. If the callback returns 0, the periodic alarm is canceled and + * will be removed. + * + * \param userdata an arbitrary pointer provided by the app through + * SDL_AddTimer, for its own use. + * \param timerID the current timer being processed. + * \param interval the current callback time interval. + * \returns the new callback time interval, or 0 to disable further runs of + * the callback. + * + * \threadsafety SDL may call this callback at any time from a background + * thread; the application is responsible for locking resources + * the callback touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_AddTimer + */ +typedef Uint32 (SDLCALL *SDL_TimerCallback)(void *userdata, SDL_TimerID timerID, Uint32 interval); + +/** + * Call a callback function at a future time. + * + * The callback function is passed the current timer interval and the user + * supplied parameter from the SDL_AddTimer() call and should return the next + * timer interval. If the value returned from the callback is 0, the timer is + * canceled and will be removed. + * + * The callback is run on a separate thread, and for short timeouts can + * potentially be called before this function returns. + * + * Timers take into account the amount of time it took to execute the + * callback. For example, if the callback took 250 ms to execute and returned + * 1000 (ms), the timer would only wait another 750 ms before its next + * iteration. + * + * Timing may be inexact due to OS scheduling. Be sure to note the current + * time with SDL_GetTicksNS() or SDL_GetPerformanceCounter() in case your + * callback needs to adjust for variances. + * + * \param interval the timer delay, in milliseconds, passed to `callback`. + * \param callback the SDL_TimerCallback function to call when the specified + * `interval` elapses. + * \param userdata a pointer that is passed to `callback`. + * \returns a timer ID or 0 on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddTimerNS + * \sa SDL_RemoveTimer + */ +extern SDL_DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_TimerCallback callback, void *userdata); + +/** + * Function prototype for the nanosecond timer callback function. + * + * The callback function is passed the current timer interval and returns the + * next timer interval, in nanoseconds. If the returned value is the same as + * the one passed in, the periodic alarm continues, otherwise a new alarm is + * scheduled. If the callback returns 0, the periodic alarm is canceled and + * will be removed. + * + * \param userdata an arbitrary pointer provided by the app through + * SDL_AddTimer, for its own use. + * \param timerID the current timer being processed. + * \param interval the current callback time interval. + * \returns the new callback time interval, or 0 to disable further runs of + * the callback. + * + * \threadsafety SDL may call this callback at any time from a background + * thread; the application is responsible for locking resources + * the callback touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_AddTimerNS + */ +typedef Uint64 (SDLCALL *SDL_NSTimerCallback)(void *userdata, SDL_TimerID timerID, Uint64 interval); + +/** + * Call a callback function at a future time. + * + * The callback function is passed the current timer interval and the user + * supplied parameter from the SDL_AddTimerNS() call and should return the + * next timer interval. If the value returned from the callback is 0, the + * timer is canceled and will be removed. + * + * The callback is run on a separate thread, and for short timeouts can + * potentially be called before this function returns. + * + * Timers take into account the amount of time it took to execute the + * callback. For example, if the callback took 250 ns to execute and returned + * 1000 (ns), the timer would only wait another 750 ns before its next + * iteration. + * + * Timing may be inexact due to OS scheduling. Be sure to note the current + * time with SDL_GetTicksNS() or SDL_GetPerformanceCounter() in case your + * callback needs to adjust for variances. + * + * \param interval the timer delay, in nanoseconds, passed to `callback`. + * \param callback the SDL_TimerCallback function to call when the specified + * `interval` elapses. + * \param userdata a pointer that is passed to `callback`. + * \returns a timer ID or 0 on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddTimer + * \sa SDL_RemoveTimer + */ +extern SDL_DECLSPEC SDL_TimerID SDLCALL SDL_AddTimerNS(Uint64 interval, SDL_NSTimerCallback callback, void *userdata); + +/** + * Remove a timer created with SDL_AddTimer(). + * + * \param id the ID of the timer to remove. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddTimer + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RemoveTimer(SDL_TimerID id); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_timer_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_touch.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_touch.h new file mode 100644 index 0000000..64845a1 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_touch.h @@ -0,0 +1,184 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryTouch + * + * SDL offers touch input, on platforms that support it. It can manage + * multiple touch devices and track multiple fingers on those devices. + * + * Touches are mostly dealt with through the event system, in the + * SDL_EVENT_FINGER_DOWN, SDL_EVENT_FINGER_MOTION, and SDL_EVENT_FINGER_UP + * events, but there are also functions to query for hardware details, etc. + * + * The touch system, by default, will also send virtual mouse events; this can + * be useful for making a some desktop apps work on a phone without + * significant changes. For apps that care about mouse and touch input + * separately, they should ignore mouse events that have a `which` field of + * SDL_TOUCH_MOUSEID. + */ + +#ifndef SDL_touch_h_ +#define SDL_touch_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A unique ID for a touch device. + * + * This ID is valid for the time the device is connected to the system, and is + * never reused for the lifetime of the application. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint64 SDL_TouchID; + +/** + * A unique ID for a single finger on a touch device. + * + * This ID is valid for the time the finger (stylus, etc) is touching and will + * be unique for all fingers currently in contact, so this ID tracks the + * lifetime of a single continuous touch. This value may represent an index, a + * pointer, or some other unique ID, depending on the platform. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint64 SDL_FingerID; + +/** + * An enum that describes the type of a touch device. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_TouchDeviceType +{ + SDL_TOUCH_DEVICE_INVALID = -1, + SDL_TOUCH_DEVICE_DIRECT, /**< touch screen with window-relative coordinates */ + SDL_TOUCH_DEVICE_INDIRECT_ABSOLUTE, /**< trackpad with absolute device coordinates */ + SDL_TOUCH_DEVICE_INDIRECT_RELATIVE /**< trackpad with screen cursor-relative coordinates */ +} SDL_TouchDeviceType; + +/** + * Data about a single finger in a multitouch event. + * + * Each touch event is a collection of fingers that are simultaneously in + * contact with the touch device (so a "touch" can be a "multitouch," in + * reality), and this struct reports details of the specific fingers. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetTouchFingers + */ +typedef struct SDL_Finger +{ + SDL_FingerID id; /**< the finger ID */ + float x; /**< the x-axis location of the touch event, normalized (0...1) */ + float y; /**< the y-axis location of the touch event, normalized (0...1) */ + float pressure; /**< the quantity of pressure applied, normalized (0...1) */ +} SDL_Finger; + +/** + * The SDL_MouseID for mouse events simulated with touch input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TOUCH_MOUSEID ((SDL_MouseID)-1) + +/** + * The SDL_TouchID for touch events simulated with mouse input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MOUSE_TOUCHID ((SDL_TouchID)-1) + + +/** + * Get a list of registered touch devices. + * + * On some platforms SDL first sees the touch device if it was actually used. + * Therefore the returned list might be empty, although devices are available. + * After using all devices at least once the number will be correct. + * + * \param count a pointer filled in with the number of devices returned, may + * be NULL. + * \returns a 0 terminated array of touch device IDs or NULL on failure; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_TouchID * SDLCALL SDL_GetTouchDevices(int *count); + +/** + * Get the touch device name as reported from the driver. + * + * \param touchID the touch device instance ID. + * \returns touch device name, or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetTouchDeviceName(SDL_TouchID touchID); + +/** + * Get the type of the given touch device. + * + * \param touchID the ID of a touch device. + * \returns touch device type. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_TouchDeviceType SDLCALL SDL_GetTouchDeviceType(SDL_TouchID touchID); + +/** + * Get a list of active fingers for a given touch device. + * + * \param touchID the ID of a touch device. + * \param count a pointer filled in with the number of fingers returned, can + * be NULL. + * \returns a NULL terminated array of SDL_Finger pointers or NULL on failure; + * call SDL_GetError() for more information. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Finger ** SDLCALL SDL_GetTouchFingers(SDL_TouchID touchID, int *count); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_touch_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_tray.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_tray.h new file mode 100644 index 0000000..1780b0b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_tray.h @@ -0,0 +1,544 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryTray + * + * SDL offers a way to add items to the "system tray" (more correctly called + * the "notification area" on Windows). On platforms that offer this concept, + * an SDL app can add a tray icon, submenus, checkboxes, and clickable + * entries, and register a callback that is fired when the user clicks on + * these pieces. + */ + +#ifndef SDL_tray_h_ +#define SDL_tray_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque handle representing a toplevel system tray object. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Tray SDL_Tray; + +/** + * An opaque handle representing a menu/submenu on a system tray object. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TrayMenu SDL_TrayMenu; + +/** + * An opaque handle representing an entry on a system tray object. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TrayEntry SDL_TrayEntry; + +/** + * Flags that control the creation of system tray entries. + * + * Some of these flags are required; exactly one of them must be specified at + * the time a tray entry is created. Other flags are optional; zero or more of + * those can be OR'ed together with the required flag. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + */ +typedef Uint32 SDL_TrayEntryFlags; + +#define SDL_TRAYENTRY_BUTTON 0x00000001u /**< Make the entry a simple button. Required. */ +#define SDL_TRAYENTRY_CHECKBOX 0x00000002u /**< Make the entry a checkbox. Required. */ +#define SDL_TRAYENTRY_SUBMENU 0x00000004u /**< Prepare the entry to have a submenu. Required */ +#define SDL_TRAYENTRY_DISABLED 0x80000000u /**< Make the entry disabled. Optional. */ +#define SDL_TRAYENTRY_CHECKED 0x40000000u /**< Make the entry checked. This is valid only for checkboxes. Optional. */ + +/** + * A callback that is invoked when a tray entry is selected. + * + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param entry the tray entry that was selected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetTrayEntryCallback + */ +typedef void (SDLCALL *SDL_TrayCallback)(void *userdata, SDL_TrayEntry *entry); + +/** + * Create an icon to be placed in the operating system's tray, or equivalent. + * + * Many platforms advise not using a system tray unless persistence is a + * necessary feature. Avoid needlessly creating a tray icon, as the user may + * feel like it clutters their interface. + * + * Using tray icons require the video subsystem. + * + * \param icon a surface to be used as icon. May be NULL. + * \param tooltip a tooltip to be displayed when the mouse hovers the icon in + * UTF-8 encoding. Not supported on all platforms. May be NULL. + * \returns The newly created system tray icon. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTrayMenu + * \sa SDL_GetTrayMenu + * \sa SDL_DestroyTray + */ +extern SDL_DECLSPEC SDL_Tray * SDLCALL SDL_CreateTray(SDL_Surface *icon, const char *tooltip); + +/** + * Updates the system tray icon's icon. + * + * \param tray the tray icon to be updated. + * \param icon the new icon. May be NULL. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayIcon(SDL_Tray *tray, SDL_Surface *icon); + +/** + * Updates the system tray icon's tooltip. + * + * \param tray the tray icon to be updated. + * \param tooltip the new tooltip in UTF-8 encoding. May be NULL. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayTooltip(SDL_Tray *tray, const char *tooltip); + +/** + * Create a menu for a system tray. + * + * This should be called at most once per tray icon. + * + * This function does the same thing as SDL_CreateTraySubmenu(), except that + * it takes a SDL_Tray instead of a SDL_TrayEntry. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param tray the tray to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + * \sa SDL_GetTrayMenu + * \sa SDL_GetTrayMenuParentTray + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_CreateTrayMenu(SDL_Tray *tray); + +/** + * Create a submenu for a system tray entry. + * + * This should be called at most once per tray entry. + * + * This function does the same thing as SDL_CreateTrayMenu, except that it + * takes a SDL_TrayEntry instead of a SDL_Tray. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param entry the tray entry to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTraySubmenu + * \sa SDL_GetTrayMenuParentEntry + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_CreateTraySubmenu(SDL_TrayEntry *entry); + +/** + * Gets a previously created tray menu. + * + * You should have called SDL_CreateTrayMenu() on the tray object. This + * function allows you to fetch it again later. + * + * This function does the same thing as SDL_GetTraySubmenu(), except that it + * takes a SDL_Tray instead of a SDL_TrayEntry. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param tray the tray entry to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + * \sa SDL_CreateTrayMenu + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_GetTrayMenu(SDL_Tray *tray); + +/** + * Gets a previously created tray entry submenu. + * + * You should have called SDL_CreateTraySubmenu() on the entry object. This + * function allows you to fetch it again later. + * + * This function does the same thing as SDL_GetTrayMenu(), except that it + * takes a SDL_TrayEntry instead of a SDL_Tray. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param entry the tray entry to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + * \sa SDL_CreateTraySubmenu + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_GetTraySubmenu(SDL_TrayEntry *entry); + +/** + * Returns a list of entries in the menu, in order. + * + * \param menu The menu to get entries from. + * \param count An optional pointer to obtain the number of entries in the + * menu. + * \returns a NULL-terminated list of entries within the given menu. The + * pointer becomes invalid when any function that inserts or deletes + * entries in the menu is called. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveTrayEntry + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC const SDL_TrayEntry ** SDLCALL SDL_GetTrayEntries(SDL_TrayMenu *menu, int *count); + +/** + * Removes a tray entry. + * + * \param entry The entry to be deleted. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveTrayEntry(SDL_TrayEntry *entry); + +/** + * Insert a tray entry at a given position. + * + * If label is NULL, the entry will be a separator. Many functions won't work + * for an entry that is a separator. + * + * An entry does not need to be destroyed; it will be destroyed with the tray. + * + * \param menu the menu to append the entry to. + * \param pos the desired position for the new entry. Entries at or following + * this place will be moved. If pos is -1, the entry is appended. + * \param label the text to be displayed on the entry, in UTF-8 encoding, or + * NULL for a separator. + * \param flags a combination of flags, some of which are mandatory. + * \returns the newly created entry, or NULL if pos is out of bounds. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TrayEntryFlags + * \sa SDL_GetTrayEntries + * \sa SDL_RemoveTrayEntry + * \sa SDL_GetTrayEntryParent + */ +extern SDL_DECLSPEC SDL_TrayEntry * SDLCALL SDL_InsertTrayEntryAt(SDL_TrayMenu *menu, int pos, const char *label, SDL_TrayEntryFlags flags); + +/** + * Sets the label of an entry. + * + * An entry cannot change between a separator and an ordinary entry; that is, + * it is not possible to set a non-NULL label on an entry that has a NULL + * label (separators), or to set a NULL label to an entry that has a non-NULL + * label. The function will silently fail if that happens. + * + * \param entry the entry to be updated. + * \param label the new label for the entry in UTF-8 encoding. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTrayEntryLabel + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryLabel(SDL_TrayEntry *entry, const char *label); + +/** + * Gets the label of an entry. + * + * If the returned value is NULL, the entry is a separator. + * + * \param entry the entry to be read. + * \returns the label of the entry in UTF-8 encoding. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_SetTrayEntryLabel + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetTrayEntryLabel(SDL_TrayEntry *entry); + +/** + * Sets whether or not an entry is checked. + * + * The entry must have been created with the SDL_TRAYENTRY_CHECKBOX flag. + * + * \param entry the entry to be updated. + * \param checked true if the entry should be checked; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTrayEntryChecked + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryChecked(SDL_TrayEntry *entry, bool checked); + +/** + * Gets whether or not an entry is checked. + * + * The entry must have been created with the SDL_TRAYENTRY_CHECKBOX flag. + * + * \param entry the entry to be read. + * \returns true if the entry is checked; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_SetTrayEntryChecked + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTrayEntryChecked(SDL_TrayEntry *entry); + +/** + * Sets whether or not an entry is enabled. + * + * \param entry the entry to be updated. + * \param enabled true if the entry should be enabled; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTrayEntryEnabled + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryEnabled(SDL_TrayEntry *entry, bool enabled); + +/** + * Gets whether or not an entry is enabled. + * + * \param entry the entry to be read. + * \returns true if the entry is enabled; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_SetTrayEntryEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTrayEntryEnabled(SDL_TrayEntry *entry); + +/** + * Sets a callback to be invoked when the entry is selected. + * + * \param entry the entry to be updated. + * \param callback a callback to be invoked when the entry is selected. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryCallback(SDL_TrayEntry *entry, SDL_TrayCallback callback, void *userdata); + +/** + * Simulate a click on a tray entry. + * + * \param entry The entry to activate. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ClickTrayEntry(SDL_TrayEntry *entry); + +/** + * Destroys a tray object. + * + * This also destroys all associated menus and entries. + * + * \param tray the tray icon to be destroyed. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyTray(SDL_Tray *tray); + +/** + * Gets the menu containing a certain tray entry. + * + * \param entry the entry for which to get the parent menu. + * \returns the parent menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_GetTrayEntryParent(SDL_TrayEntry *entry); + +/** + * Gets the entry for which the menu is a submenu, if the current menu is a + * submenu. + * + * Either this function or SDL_GetTrayMenuParentTray() will return non-NULL + * for any given menu. + * + * \param menu the menu for which to get the parent entry. + * \returns the parent entry, or NULL if this menu is not a submenu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTraySubmenu + * \sa SDL_GetTrayMenuParentTray + */ +extern SDL_DECLSPEC SDL_TrayEntry * SDLCALL SDL_GetTrayMenuParentEntry(SDL_TrayMenu *menu); + +/** + * Gets the tray for which this menu is the first-level menu, if the current + * menu isn't a submenu. + * + * Either this function or SDL_GetTrayMenuParentEntry() will return non-NULL + * for any given menu. + * + * \param menu the menu for which to get the parent enttrayry. + * \returns the parent tray, or NULL if this menu is a submenu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTrayMenu + * \sa SDL_GetTrayMenuParentEntry + */ +extern SDL_DECLSPEC SDL_Tray * SDLCALL SDL_GetTrayMenuParentTray(SDL_TrayMenu *menu); + +/** + * Update the trays. + * + * This is called automatically by the event loop and is only needed if you're + * using trays but aren't handling SDL events. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateTrays(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_tray_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_version.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_version.h new file mode 100644 index 0000000..7443d52 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_version.h @@ -0,0 +1,183 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryVersion + * + * Functionality to query the current SDL version, both as headers the app was + * compiled against, and a library the app is linked to. + */ + +#ifndef SDL_version_h_ +#define SDL_version_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The current major version of SDL headers. + * + * If this were SDL version 3.2.1, this value would be 3. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MAJOR_VERSION 3 + +/** + * The current minor version of the SDL headers. + * + * If this were SDL version 3.2.1, this value would be 2. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MINOR_VERSION 2 + +/** + * The current micro (or patchlevel) version of the SDL headers. + * + * If this were SDL version 3.2.1, this value would be 1. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MICRO_VERSION 20 + +/** + * This macro turns the version numbers into a numeric value. + * + * (1,2,3) becomes 1002003. + * + * \param major the major version number. + * \param minor the minorversion number. + * \param patch the patch version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM(major, minor, patch) \ + ((major) * 1000000 + (minor) * 1000 + (patch)) + +/** + * This macro extracts the major version from a version number + * + * 1002003 becomes 1. + * + * \param version the version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM_MAJOR(version) ((version) / 1000000) + +/** + * This macro extracts the minor version from a version number + * + * 1002003 becomes 2. + * + * \param version the version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM_MINOR(version) (((version) / 1000) % 1000) + +/** + * This macro extracts the micro version from a version number + * + * 1002003 becomes 3. + * + * \param version the version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM_MICRO(version) ((version) % 1000) + +/** + * This is the version number macro for the current SDL version. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_GetVersion + */ +#define SDL_VERSION \ + SDL_VERSIONNUM(SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_MICRO_VERSION) + +/** + * This macro will evaluate to true if compiled with SDL at least X.Y.Z. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSION_ATLEAST(X, Y, Z) \ + (SDL_VERSION >= SDL_VERSIONNUM(X, Y, Z)) + +/** + * Get the version of SDL that is linked against your program. + * + * If you are linking to SDL dynamically, then it is possible that the current + * version will be different than the version you compiled against. This + * function returns the current version, while SDL_VERSION is the version you + * compiled with. + * + * This function may be called safely at any time, even before SDL_Init(). + * + * \returns the version of the linked library. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRevision + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetVersion(void); + +/** + * Get the code revision of SDL that is linked against your program. + * + * This value is the revision of the code you are linked with and may be + * different from the code you are compiling with, which is found in the + * constant SDL_REVISION. + * + * The revision is arbitrary string (a hash value) uniquely identifying the + * exact revision of the SDL library in use, and is only useful in comparing + * against other revisions. It is NOT an incrementing number. + * + * If SDL wasn't built from a git repository with the appropriate tools, this + * will return an empty string. + * + * You shouldn't use this function for anything but logging it for debugging + * purposes. The string is not intended to be reliable in any way. + * + * \returns an arbitrary string, uniquely identifying the exact revision of + * the SDL library in use. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetVersion + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetRevision(void); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_version_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_video.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_video.h new file mode 100644 index 0000000..3b3676d --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_video.h @@ -0,0 +1,3311 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryVideo + * + * SDL's video subsystem is largely interested in abstracting window + * management from the underlying operating system. You can create windows, + * manage them in various ways, set them fullscreen, and get events when + * interesting things happen with them, such as the mouse or keyboard + * interacting with a window. + * + * The video subsystem is also interested in abstracting away some + * platform-specific differences in OpenGL: context creation, swapping + * buffers, etc. This may be crucial to your app, but also you are not + * required to use OpenGL at all. In fact, SDL can provide rendering to those + * windows as well, either with an easy-to-use + * [2D API](https://wiki.libsdl.org/SDL3/CategoryRender) + * or with a more-powerful + * [GPU API](https://wiki.libsdl.org/SDL3/CategoryGPU) + * . Of course, it can simply get out of your way and give you the window + * handles you need to use Vulkan, Direct3D, Metal, or whatever else you like + * directly, too. + * + * The video subsystem covers a lot of functionality, out of necessity, so it + * is worth perusing the list of functions just to see what's available, but + * most apps can get by with simply creating a window and listening for + * events, so start with SDL_CreateWindow() and SDL_PollEvent(). + */ + +#ifndef SDL_video_h_ +#define SDL_video_h_ + +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a display for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the display is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_DisplayID; + +/** + * This is a unique ID for a window. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_WindowID; + +/* Global video properties... */ + +/** + * The pointer to the global `wl_display` object used by the Wayland video + * backend. + * + * Can be set before the video subsystem is initialized to import an external + * `wl_display` object from an application or toolkit for use in SDL, or read + * after initialization to export the `wl_display` used by the Wayland video + * backend. Setting this property after the video subsystem has been + * initialized has no effect, and reading it when the video subsystem is + * uninitialized will either return the user provided value, if one was set + * prior to initialization, or NULL. See docs/README-wayland.md for more + * information. + */ +#define SDL_PROP_GLOBAL_VIDEO_WAYLAND_WL_DISPLAY_POINTER "SDL.video.wayland.wl_display" + +/** + * System theme. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_SystemTheme +{ + SDL_SYSTEM_THEME_UNKNOWN, /**< Unknown system theme */ + SDL_SYSTEM_THEME_LIGHT, /**< Light colored system theme */ + SDL_SYSTEM_THEME_DARK /**< Dark colored system theme */ +} SDL_SystemTheme; + +/** + * Internal display mode data. + * + * This lives as a field in SDL_DisplayMode, as opaque data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DisplayMode + */ +typedef struct SDL_DisplayModeData SDL_DisplayModeData; + +/** + * The structure that defines a display mode. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetFullscreenDisplayModes + * \sa SDL_GetDesktopDisplayMode + * \sa SDL_GetCurrentDisplayMode + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_GetWindowFullscreenMode + */ +typedef struct SDL_DisplayMode +{ + SDL_DisplayID displayID; /**< the display this mode is associated with */ + SDL_PixelFormat format; /**< pixel format */ + int w; /**< width */ + int h; /**< height */ + float pixel_density; /**< scale converting size to pixels (e.g. a 1920x1080 mode with 2.0 scale would have 3840x2160 pixels) */ + float refresh_rate; /**< refresh rate (or 0.0f for unspecified) */ + int refresh_rate_numerator; /**< precise refresh rate numerator (or 0 for unspecified) */ + int refresh_rate_denominator; /**< precise refresh rate denominator */ + + SDL_DisplayModeData *internal; /**< Private */ + +} SDL_DisplayMode; + +/** + * Display orientation values; the way a display is rotated. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_DisplayOrientation +{ + SDL_ORIENTATION_UNKNOWN, /**< The display orientation can't be determined */ + SDL_ORIENTATION_LANDSCAPE, /**< The display is in landscape mode, with the right side up, relative to portrait mode */ + SDL_ORIENTATION_LANDSCAPE_FLIPPED, /**< The display is in landscape mode, with the left side up, relative to portrait mode */ + SDL_ORIENTATION_PORTRAIT, /**< The display is in portrait mode */ + SDL_ORIENTATION_PORTRAIT_FLIPPED /**< The display is in portrait mode, upside down */ +} SDL_DisplayOrientation; + +/** + * The struct used as an opaque handle to a window. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + */ +typedef struct SDL_Window SDL_Window; + +/** + * The flags on a window. + * + * These cover a lot of true/false, or on/off, window state. Some of it is + * immutable after being set through SDL_CreateWindow(), some of it can be + * changed on existing windows by the app, and some of it might be altered by + * the user or system outside of the app's control. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +typedef Uint64 SDL_WindowFlags; + +#define SDL_WINDOW_FULLSCREEN SDL_UINT64_C(0x0000000000000001) /**< window is in fullscreen mode */ +#define SDL_WINDOW_OPENGL SDL_UINT64_C(0x0000000000000002) /**< window usable with OpenGL context */ +#define SDL_WINDOW_OCCLUDED SDL_UINT64_C(0x0000000000000004) /**< window is occluded */ +#define SDL_WINDOW_HIDDEN SDL_UINT64_C(0x0000000000000008) /**< window is neither mapped onto the desktop nor shown in the taskbar/dock/window list; SDL_ShowWindow() is required for it to become visible */ +#define SDL_WINDOW_BORDERLESS SDL_UINT64_C(0x0000000000000010) /**< no window decoration */ +#define SDL_WINDOW_RESIZABLE SDL_UINT64_C(0x0000000000000020) /**< window can be resized */ +#define SDL_WINDOW_MINIMIZED SDL_UINT64_C(0x0000000000000040) /**< window is minimized */ +#define SDL_WINDOW_MAXIMIZED SDL_UINT64_C(0x0000000000000080) /**< window is maximized */ +#define SDL_WINDOW_MOUSE_GRABBED SDL_UINT64_C(0x0000000000000100) /**< window has grabbed mouse input */ +#define SDL_WINDOW_INPUT_FOCUS SDL_UINT64_C(0x0000000000000200) /**< window has input focus */ +#define SDL_WINDOW_MOUSE_FOCUS SDL_UINT64_C(0x0000000000000400) /**< window has mouse focus */ +#define SDL_WINDOW_EXTERNAL SDL_UINT64_C(0x0000000000000800) /**< window not created by SDL */ +#define SDL_WINDOW_MODAL SDL_UINT64_C(0x0000000000001000) /**< window is modal */ +#define SDL_WINDOW_HIGH_PIXEL_DENSITY SDL_UINT64_C(0x0000000000002000) /**< window uses high pixel density back buffer if possible */ +#define SDL_WINDOW_MOUSE_CAPTURE SDL_UINT64_C(0x0000000000004000) /**< window has mouse captured (unrelated to MOUSE_GRABBED) */ +#define SDL_WINDOW_MOUSE_RELATIVE_MODE SDL_UINT64_C(0x0000000000008000) /**< window has relative mode enabled */ +#define SDL_WINDOW_ALWAYS_ON_TOP SDL_UINT64_C(0x0000000000010000) /**< window should always be above others */ +#define SDL_WINDOW_UTILITY SDL_UINT64_C(0x0000000000020000) /**< window should be treated as a utility window, not showing in the task bar and window list */ +#define SDL_WINDOW_TOOLTIP SDL_UINT64_C(0x0000000000040000) /**< window should be treated as a tooltip and does not get mouse or keyboard focus, requires a parent window */ +#define SDL_WINDOW_POPUP_MENU SDL_UINT64_C(0x0000000000080000) /**< window should be treated as a popup menu, requires a parent window */ +#define SDL_WINDOW_KEYBOARD_GRABBED SDL_UINT64_C(0x0000000000100000) /**< window has grabbed keyboard input */ +#define SDL_WINDOW_VULKAN SDL_UINT64_C(0x0000000010000000) /**< window usable for Vulkan surface */ +#define SDL_WINDOW_METAL SDL_UINT64_C(0x0000000020000000) /**< window usable for Metal view */ +#define SDL_WINDOW_TRANSPARENT SDL_UINT64_C(0x0000000040000000) /**< window with transparent buffer */ +#define SDL_WINDOW_NOT_FOCUSABLE SDL_UINT64_C(0x0000000080000000) /**< window should not be focusable */ + + +/** + * A magic value used with SDL_WINDOWPOS_UNDEFINED. + * + * Generally this macro isn't used directly, but rather through + * SDL_WINDOWPOS_UNDEFINED or SDL_WINDOWPOS_UNDEFINED_DISPLAY. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_UNDEFINED_MASK 0x1FFF0000u + +/** + * Used to indicate that you don't care what the window position is. + * + * If you _really_ don't care, SDL_WINDOWPOS_UNDEFINED is the same, but always + * uses the primary display instead of specifying one. + * + * \param X the SDL_DisplayID of the display to use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_UNDEFINED_DISPLAY(X) (SDL_WINDOWPOS_UNDEFINED_MASK|(X)) + +/** + * Used to indicate that you don't care what the window position/display is. + * + * This always uses the primary display. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_UNDEFINED SDL_WINDOWPOS_UNDEFINED_DISPLAY(0) + +/** + * A macro to test if the window position is marked as "undefined." + * + * \param X the window position value. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_ISUNDEFINED(X) (((X)&0xFFFF0000) == SDL_WINDOWPOS_UNDEFINED_MASK) + +/** + * A magic value used with SDL_WINDOWPOS_CENTERED. + * + * Generally this macro isn't used directly, but rather through + * SDL_WINDOWPOS_CENTERED or SDL_WINDOWPOS_CENTERED_DISPLAY. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_CENTERED_MASK 0x2FFF0000u + +/** + * Used to indicate that the window position should be centered. + * + * SDL_WINDOWPOS_CENTERED is the same, but always uses the primary display + * instead of specifying one. + * + * \param X the SDL_DisplayID of the display to use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_CENTERED_DISPLAY(X) (SDL_WINDOWPOS_CENTERED_MASK|(X)) + +/** + * Used to indicate that the window position should be centered. + * + * This always uses the primary display. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_CENTERED SDL_WINDOWPOS_CENTERED_DISPLAY(0) + +/** + * A macro to test if the window position is marked as "centered." + * + * \param X the window position value. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_ISCENTERED(X) \ + (((X)&0xFFFF0000) == SDL_WINDOWPOS_CENTERED_MASK) + + +/** + * Window flash operation. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_FlashOperation +{ + SDL_FLASH_CANCEL, /**< Cancel any window flash state */ + SDL_FLASH_BRIEFLY, /**< Flash the window briefly to get attention */ + SDL_FLASH_UNTIL_FOCUSED /**< Flash the window until it gets focus */ +} SDL_FlashOperation; + +/** + * An opaque handle to an OpenGL context. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GL_CreateContext + */ +typedef struct SDL_GLContextState *SDL_GLContext; + +/** + * Opaque type for an EGL display. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_EGLDisplay; + +/** + * Opaque type for an EGL config. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_EGLConfig; + +/** + * Opaque type for an EGL surface. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_EGLSurface; + +/** + * An EGL attribute, used when creating an EGL context. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef intptr_t SDL_EGLAttrib; + +/** + * An EGL integer attribute, used when creating an EGL surface. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef int SDL_EGLint; + +/** + * EGL platform attribute initialization callback. + * + * This is called when SDL is attempting to create an EGL context, to let the + * app add extra attributes to its eglGetPlatformDisplay() call. + * + * The callback should return a pointer to an EGL attribute array terminated + * with `EGL_NONE`. If this function returns NULL, the SDL_CreateWindow + * process will fail gracefully. + * + * The returned pointer should be allocated with SDL_malloc() and will be + * passed to SDL_free(). + * + * The arrays returned by each callback will be appended to the existing + * attribute arrays defined by SDL. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \returns a newly-allocated array of attributes, terminated with `EGL_NONE`. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EGL_SetAttributeCallbacks + */ +typedef SDL_EGLAttrib *(SDLCALL *SDL_EGLAttribArrayCallback)(void *userdata); + +/** + * EGL surface/context attribute initialization callback types. + * + * This is called when SDL is attempting to create an EGL surface, to let the + * app add extra attributes to its eglCreateWindowSurface() or + * eglCreateContext calls. + * + * For convenience, the EGLDisplay and EGLConfig to use are provided to the + * callback. + * + * The callback should return a pointer to an EGL attribute array terminated + * with `EGL_NONE`. If this function returns NULL, the SDL_CreateWindow + * process will fail gracefully. + * + * The returned pointer should be allocated with SDL_malloc() and will be + * passed to SDL_free(). + * + * The arrays returned by each callback will be appended to the existing + * attribute arrays defined by SDL. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \param display the EGL display to be used. + * \param config the EGL config to be used. + * \returns a newly-allocated array of attributes, terminated with `EGL_NONE`. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EGL_SetAttributeCallbacks + */ +typedef SDL_EGLint *(SDLCALL *SDL_EGLIntArrayCallback)(void *userdata, SDL_EGLDisplay display, SDL_EGLConfig config); + +/** + * An enumeration of OpenGL configuration attributes. + * + * While you can set most OpenGL attributes normally, the attributes listed + * above must be known before SDL creates the window that will be used with + * the OpenGL context. These attributes are set and read with + * SDL_GL_SetAttribute() and SDL_GL_GetAttribute(). + * + * In some cases, these attributes are minimum requests; the GL does not + * promise to give you exactly what you asked for. It's possible to ask for a + * 16-bit depth buffer and get a 24-bit one instead, for example, or to ask + * for no stencil buffer and still have one available. Context creation should + * fail if the GL can't provide your requested attributes at a minimum, but + * you should check to see exactly what you got. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GLAttr +{ + SDL_GL_RED_SIZE, /**< the minimum number of bits for the red channel of the color buffer; defaults to 8. */ + SDL_GL_GREEN_SIZE, /**< the minimum number of bits for the green channel of the color buffer; defaults to 8. */ + SDL_GL_BLUE_SIZE, /**< the minimum number of bits for the blue channel of the color buffer; defaults to 8. */ + SDL_GL_ALPHA_SIZE, /**< the minimum number of bits for the alpha channel of the color buffer; defaults to 8. */ + SDL_GL_BUFFER_SIZE, /**< the minimum number of bits for frame buffer size; defaults to 0. */ + SDL_GL_DOUBLEBUFFER, /**< whether the output is single or double buffered; defaults to double buffering on. */ + SDL_GL_DEPTH_SIZE, /**< the minimum number of bits in the depth buffer; defaults to 16. */ + SDL_GL_STENCIL_SIZE, /**< the minimum number of bits in the stencil buffer; defaults to 0. */ + SDL_GL_ACCUM_RED_SIZE, /**< the minimum number of bits for the red channel of the accumulation buffer; defaults to 0. */ + SDL_GL_ACCUM_GREEN_SIZE, /**< the minimum number of bits for the green channel of the accumulation buffer; defaults to 0. */ + SDL_GL_ACCUM_BLUE_SIZE, /**< the minimum number of bits for the blue channel of the accumulation buffer; defaults to 0. */ + SDL_GL_ACCUM_ALPHA_SIZE, /**< the minimum number of bits for the alpha channel of the accumulation buffer; defaults to 0. */ + SDL_GL_STEREO, /**< whether the output is stereo 3D; defaults to off. */ + SDL_GL_MULTISAMPLEBUFFERS, /**< the number of buffers used for multisample anti-aliasing; defaults to 0. */ + SDL_GL_MULTISAMPLESAMPLES, /**< the number of samples used around the current pixel used for multisample anti-aliasing. */ + SDL_GL_ACCELERATED_VISUAL, /**< set to 1 to require hardware acceleration, set to 0 to force software rendering; defaults to allow either. */ + SDL_GL_RETAINED_BACKING, /**< not used (deprecated). */ + SDL_GL_CONTEXT_MAJOR_VERSION, /**< OpenGL context major version. */ + SDL_GL_CONTEXT_MINOR_VERSION, /**< OpenGL context minor version. */ + SDL_GL_CONTEXT_FLAGS, /**< some combination of 0 or more of elements of the SDL_GLContextFlag enumeration; defaults to 0. */ + SDL_GL_CONTEXT_PROFILE_MASK, /**< type of GL context (Core, Compatibility, ES). See SDL_GLProfile; default value depends on platform. */ + SDL_GL_SHARE_WITH_CURRENT_CONTEXT, /**< OpenGL context sharing; defaults to 0. */ + SDL_GL_FRAMEBUFFER_SRGB_CAPABLE, /**< requests sRGB capable visual; defaults to 0. */ + SDL_GL_CONTEXT_RELEASE_BEHAVIOR, /**< sets context the release behavior. See SDL_GLContextReleaseFlag; defaults to FLUSH. */ + SDL_GL_CONTEXT_RESET_NOTIFICATION, /**< set context reset notification. See SDL_GLContextResetNotification; defaults to NO_NOTIFICATION. */ + SDL_GL_CONTEXT_NO_ERROR, + SDL_GL_FLOATBUFFERS, + SDL_GL_EGL_PLATFORM +} SDL_GLAttr; + +/** + * Possible values to be set for the SDL_GL_CONTEXT_PROFILE_MASK attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLProfile; + +#define SDL_GL_CONTEXT_PROFILE_CORE 0x0001 /**< OpenGL Core Profile context */ +#define SDL_GL_CONTEXT_PROFILE_COMPATIBILITY 0x0002 /**< OpenGL Compatibility Profile context */ +#define SDL_GL_CONTEXT_PROFILE_ES 0x0004 /**< GLX_CONTEXT_ES2_PROFILE_BIT_EXT */ + + +/** + * Possible flags to be set for the SDL_GL_CONTEXT_FLAGS attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLContextFlag; + +#define SDL_GL_CONTEXT_DEBUG_FLAG 0x0001 +#define SDL_GL_CONTEXT_FORWARD_COMPATIBLE_FLAG 0x0002 +#define SDL_GL_CONTEXT_ROBUST_ACCESS_FLAG 0x0004 +#define SDL_GL_CONTEXT_RESET_ISOLATION_FLAG 0x0008 + + +/** + * Possible values to be set for the SDL_GL_CONTEXT_RELEASE_BEHAVIOR + * attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLContextReleaseFlag; + +#define SDL_GL_CONTEXT_RELEASE_BEHAVIOR_NONE 0x0000 +#define SDL_GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH 0x0001 + + +/** + * Possible values to be set SDL_GL_CONTEXT_RESET_NOTIFICATION attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLContextResetNotification; + +#define SDL_GL_CONTEXT_RESET_NO_NOTIFICATION 0x0000 +#define SDL_GL_CONTEXT_RESET_LOSE_CONTEXT 0x0001 + + +/* Function prototypes */ + +/** + * Get the number of video drivers compiled into SDL. + * + * \returns the number of built in video drivers. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetVideoDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumVideoDrivers(void); + +/** + * Get the name of a built in video driver. + * + * The video drivers are presented in the order in which they are normally + * checked during initialization. + * + * The names of drivers are all simple, low-ASCII identifiers, like "cocoa", + * "x11" or "windows". These never have Unicode characters, and are not meant + * to be proper names. + * + * \param index the index of a video driver. + * \returns the name of the video driver with the given **index**. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumVideoDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetVideoDriver(int index); + +/** + * Get the name of the currently initialized video driver. + * + * The names of drivers are all simple, low-ASCII identifiers, like "cocoa", + * "x11" or "windows". These never have Unicode characters, and are not meant + * to be proper names. + * + * \returns the name of the current video driver or NULL if no driver has been + * initialized. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumVideoDrivers + * \sa SDL_GetVideoDriver + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCurrentVideoDriver(void); + +/** + * Get the current system theme. + * + * \returns the current system theme, light, dark, or unknown. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SystemTheme SDLCALL SDL_GetSystemTheme(void); + +/** + * Get a list of currently connected displays. + * + * \param count a pointer filled in with the number of displays returned, may + * be NULL. + * \returns a 0 terminated array of display instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_DisplayID * SDLCALL SDL_GetDisplays(int *count); + +/** + * Return the primary display. + * + * \returns the instance ID of the primary display on success or 0 on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetPrimaryDisplay(void); + +/** + * Get the properties associated with a display. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_DISPLAY_HDR_ENABLED_BOOLEAN`: true if the display has HDR + * headroom above the SDR white point. This is for informational and + * diagnostic purposes only, as not all platforms provide this information + * at the display level. + * + * On KMS/DRM: + * + * - `SDL_PROP_DISPLAY_KMSDRM_PANEL_ORIENTATION_NUMBER`: the "panel + * orientation" property for the display in degrees of clockwise rotation. + * Note that this is provided only as a hint, and the application is + * responsible for any coordinate transformations needed to conform to the + * requested display orientation. + * + * \param displayID the instance ID of the display to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetDisplayProperties(SDL_DisplayID displayID); + +#define SDL_PROP_DISPLAY_HDR_ENABLED_BOOLEAN "SDL.display.HDR_enabled" +#define SDL_PROP_DISPLAY_KMSDRM_PANEL_ORIENTATION_NUMBER "SDL.display.KMSDRM.panel_orientation" + +/** + * Get the name of a display in UTF-8 encoding. + * + * \param displayID the instance ID of the display to query. + * \returns the name of a display or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetDisplayName(SDL_DisplayID displayID); + +/** + * Get the desktop area represented by a display. + * + * The primary display is often located at (0,0), but may be placed at a + * different location depending on monitor layout. + * + * \param displayID the instance ID of the display to query. + * \param rect the SDL_Rect structure filled in with the display bounds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayUsableBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDisplayBounds(SDL_DisplayID displayID, SDL_Rect *rect); + +/** + * Get the usable desktop area represented by a display, in screen + * coordinates. + * + * This is the same area as SDL_GetDisplayBounds() reports, but with portions + * reserved by the system removed. For example, on Apple's macOS, this + * subtracts the area occupied by the menu bar and dock. + * + * Setting a window to be fullscreen generally bypasses these unusable areas, + * so these are good guidelines for the maximum space available to a + * non-fullscreen window. + * + * \param displayID the instance ID of the display to query. + * \param rect the SDL_Rect structure filled in with the display bounds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDisplayUsableBounds(SDL_DisplayID displayID, SDL_Rect *rect); + +/** + * Get the orientation of a display when it is unrotated. + * + * \param displayID the instance ID of the display to query. + * \returns the SDL_DisplayOrientation enum value of the display, or + * `SDL_ORIENTATION_UNKNOWN` if it isn't available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayOrientation SDLCALL SDL_GetNaturalDisplayOrientation(SDL_DisplayID displayID); + +/** + * Get the orientation of a display. + * + * \param displayID the instance ID of the display to query. + * \returns the SDL_DisplayOrientation enum value of the display, or + * `SDL_ORIENTATION_UNKNOWN` if it isn't available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayOrientation SDLCALL SDL_GetCurrentDisplayOrientation(SDL_DisplayID displayID); + +/** + * Get the content scale of a display. + * + * The content scale is the expected scale for content based on the DPI + * settings of the display. For example, a 4K display might have a 2.0 (200%) + * display scale, which means that the user expects UI elements to be twice as + * big on this display, to aid in readability. + * + * After window creation, SDL_GetWindowDisplayScale() should be used to query + * the content scale factor for individual windows instead of querying the + * display for a window and calling this function, as the per-window content + * scale factor may differ from the base value of the display it is on, + * particularly on high-DPI and/or multi-monitor desktop configurations. + * + * \param displayID the instance ID of the display to query. + * \returns the content scale of the display, or 0.0f on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowDisplayScale + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetDisplayContentScale(SDL_DisplayID displayID); + +/** + * Get a list of fullscreen display modes available on a display. + * + * The display modes are sorted in this priority: + * + * - w -> largest to smallest + * - h -> largest to smallest + * - bits per pixel -> more colors to fewer colors + * - packed pixel layout -> largest to smallest + * - refresh rate -> highest to lowest + * - pixel density -> lowest to highest + * + * \param displayID the instance ID of the display to query. + * \param count a pointer filled in with the number of display modes returned, + * may be NULL. + * \returns a NULL terminated array of display mode pointers or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayMode ** SDLCALL SDL_GetFullscreenDisplayModes(SDL_DisplayID displayID, int *count); + +/** + * Get the closest match to the requested display mode. + * + * The available display modes are scanned and `closest` is filled in with the + * closest mode matching the requested mode and returned. The mode format and + * refresh rate default to the desktop mode if they are set to 0. The modes + * are scanned with size being first priority, format being second priority, + * and finally checking the refresh rate. If all the available modes are too + * small, then false is returned. + * + * \param displayID the instance ID of the display to query. + * \param w the width in pixels of the desired display mode. + * \param h the height in pixels of the desired display mode. + * \param refresh_rate the refresh rate of the desired display mode, or 0.0f + * for the desktop refresh rate. + * \param include_high_density_modes boolean to include high density modes in + * the search. + * \param closest a pointer filled in with the closest display mode equal to + * or larger than the desired mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + * \sa SDL_GetFullscreenDisplayModes + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetClosestFullscreenDisplayMode(SDL_DisplayID displayID, int w, int h, float refresh_rate, bool include_high_density_modes, SDL_DisplayMode *closest); + +/** + * Get information about the desktop's display mode. + * + * There's a difference between this function and SDL_GetCurrentDisplayMode() + * when SDL runs fullscreen and has changed the resolution. In that case this + * function will return the previous native display mode, and not the current + * display mode. + * + * \param displayID the instance ID of the display to query. + * \returns a pointer to the desktop display mode or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentDisplayMode + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC const SDL_DisplayMode * SDLCALL SDL_GetDesktopDisplayMode(SDL_DisplayID displayID); + +/** + * Get information about the current display mode. + * + * There's a difference between this function and SDL_GetDesktopDisplayMode() + * when SDL runs fullscreen and has changed the resolution. In that case this + * function will return the current display mode, and not the previous native + * display mode. + * + * \param displayID the instance ID of the display to query. + * \returns a pointer to the desktop display mode or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDesktopDisplayMode + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC const SDL_DisplayMode * SDLCALL SDL_GetCurrentDisplayMode(SDL_DisplayID displayID); + +/** + * Get the display containing a point. + * + * \param point the point to query. + * \returns the instance ID of the display containing the point or 0 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetDisplayForPoint(const SDL_Point *point); + +/** + * Get the display primarily containing a rect. + * + * \param rect the rect to query. + * \returns the instance ID of the display entirely containing the rect or + * closest to the center of the rect on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetDisplayForRect(const SDL_Rect *rect); + +/** + * Get the display associated with a window. + * + * \param window the window to query. + * \returns the instance ID of the display containing the center of the window + * on success or 0 on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetDisplayForWindow(SDL_Window *window); + +/** + * Get the pixel density of a window. + * + * This is a ratio of pixel size to window size. For example, if the window is + * 1920x1080 and it has a high density back buffer of 3840x2160 pixels, it + * would have a pixel density of 2.0. + * + * \param window the window to query. + * \returns the pixel density or 0.0f on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowDisplayScale + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetWindowPixelDensity(SDL_Window *window); + +/** + * Get the content display scale relative to a window's pixel size. + * + * This is a combination of the window pixel density and the display content + * scale, and is the expected scale for displaying content in this window. For + * example, if a 3840x2160 window had a display scale of 2.0, the user expects + * the content to take twice as many pixels and be the same physical size as + * if it were being displayed in a 1920x1080 window with a display scale of + * 1.0. + * + * Conceptually this value corresponds to the scale display setting, and is + * updated when that setting is changed, or the window moves to a display with + * a different scale setting. + * + * \param window the window to query. + * \returns the display scale, or 0.0f on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetWindowDisplayScale(SDL_Window *window); + +/** + * Set the display mode to use when a window is visible and fullscreen. + * + * This only affects the display mode used when the window is fullscreen. To + * change the window size when the window is not fullscreen, use + * SDL_SetWindowSize(). + * + * If the window is currently in the fullscreen state, this request is + * asynchronous on some windowing systems and the new mode dimensions may not + * be applied immediately upon the return of this function. If an immediate + * change is required, call SDL_SyncWindow() to block until the changes have + * taken effect. + * + * When the new mode takes effect, an SDL_EVENT_WINDOW_RESIZED and/or an + * SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED event will be emitted with the new mode + * dimensions. + * + * \param window the window to affect. + * \param mode a pointer to the display mode to use, which can be NULL for + * borderless fullscreen desktop mode, or one of the fullscreen + * modes returned by SDL_GetFullscreenDisplayModes() to set an + * exclusive fullscreen mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFullscreenMode + * \sa SDL_SetWindowFullscreen + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowFullscreenMode(SDL_Window *window, const SDL_DisplayMode *mode); + +/** + * Query the display mode to use when a window is visible at fullscreen. + * + * \param window the window to query. + * \returns a pointer to the exclusive fullscreen mode to use or NULL for + * borderless fullscreen desktop mode. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_SetWindowFullscreen + */ +extern SDL_DECLSPEC const SDL_DisplayMode * SDLCALL SDL_GetWindowFullscreenMode(SDL_Window *window); + +/** + * Get the raw ICC profile data for the screen the window is currently on. + * + * \param window the window to query. + * \param size the size of the ICC profile. + * \returns the raw ICC profile data on success or NULL on failure; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetWindowICCProfile(SDL_Window *window, size_t *size); + +/** + * Get the pixel format associated with the window. + * + * \param window the window to query. + * \returns the pixel format of the window on success or + * SDL_PIXELFORMAT_UNKNOWN on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PixelFormat SDLCALL SDL_GetWindowPixelFormat(SDL_Window *window); + +/** + * Get a list of valid windows. + * + * \param count a pointer filled in with the number of windows returned, may + * be NULL. + * \returns a NULL terminated array of SDL_Window pointers or NULL on failure; + * call SDL_GetError() for more information. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window ** SDLCALL SDL_GetWindows(int *count); + +/** + * Create a window with the specified dimensions and flags. + * + * The window size is a request and may be different than expected based on + * the desktop layout and window manager policies. Your application should be + * prepared to handle a window of any size. + * + * `flags` may be any of the following OR'd together: + * + * - `SDL_WINDOW_FULLSCREEN`: fullscreen window at desktop resolution + * - `SDL_WINDOW_OPENGL`: window usable with an OpenGL context + * - `SDL_WINDOW_OCCLUDED`: window partially or completely obscured by another + * window + * - `SDL_WINDOW_HIDDEN`: window is not visible + * - `SDL_WINDOW_BORDERLESS`: no window decoration + * - `SDL_WINDOW_RESIZABLE`: window can be resized + * - `SDL_WINDOW_MINIMIZED`: window is minimized + * - `SDL_WINDOW_MAXIMIZED`: window is maximized + * - `SDL_WINDOW_MOUSE_GRABBED`: window has grabbed mouse focus + * - `SDL_WINDOW_INPUT_FOCUS`: window has input focus + * - `SDL_WINDOW_MOUSE_FOCUS`: window has mouse focus + * - `SDL_WINDOW_EXTERNAL`: window not created by SDL + * - `SDL_WINDOW_MODAL`: window is modal + * - `SDL_WINDOW_HIGH_PIXEL_DENSITY`: window uses high pixel density back + * buffer if possible + * - `SDL_WINDOW_MOUSE_CAPTURE`: window has mouse captured (unrelated to + * MOUSE_GRABBED) + * - `SDL_WINDOW_ALWAYS_ON_TOP`: window should always be above others + * - `SDL_WINDOW_UTILITY`: window should be treated as a utility window, not + * showing in the task bar and window list + * - `SDL_WINDOW_TOOLTIP`: window should be treated as a tooltip and does not + * get mouse or keyboard focus, requires a parent window + * - `SDL_WINDOW_POPUP_MENU`: window should be treated as a popup menu, + * requires a parent window + * - `SDL_WINDOW_KEYBOARD_GRABBED`: window has grabbed keyboard input + * - `SDL_WINDOW_VULKAN`: window usable with a Vulkan instance + * - `SDL_WINDOW_METAL`: window usable with a Metal instance + * - `SDL_WINDOW_TRANSPARENT`: window with transparent buffer + * - `SDL_WINDOW_NOT_FOCUSABLE`: window should not be focusable + * + * The SDL_Window is implicitly shown if SDL_WINDOW_HIDDEN is not set. + * + * On Apple's macOS, you **must** set the NSHighResolutionCapable Info.plist + * property to YES, otherwise you will not receive a High-DPI OpenGL canvas. + * + * The window pixel size may differ from its window coordinate size if the + * window is on a high pixel density display. Use SDL_GetWindowSize() to query + * the client area's size in window coordinates, and + * SDL_GetWindowSizeInPixels() or SDL_GetRenderOutputSize() to query the + * drawable size in pixels. Note that the drawable size can vary after the + * window is created and should be queried again if you get an + * SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED event. + * + * If the window is created with any of the SDL_WINDOW_OPENGL or + * SDL_WINDOW_VULKAN flags, then the corresponding LoadLibrary function + * (SDL_GL_LoadLibrary or SDL_Vulkan_LoadLibrary) is called and the + * corresponding UnloadLibrary function is called by SDL_DestroyWindow(). + * + * If SDL_WINDOW_VULKAN is specified and there isn't a working Vulkan driver, + * SDL_CreateWindow() will fail, because SDL_Vulkan_LoadLibrary() will fail. + * + * If SDL_WINDOW_METAL is specified on an OS that does not support Metal, + * SDL_CreateWindow() will fail. + * + * If you intend to use this window with an SDL_Renderer, you should use + * SDL_CreateWindowAndRenderer() instead of this function, to avoid window + * flicker. + * + * On non-Apple devices, SDL requires you to either not link to the Vulkan + * loader or link to a dynamic library version. This limitation may be removed + * in a future version of SDL. + * + * \param title the title of the window, in UTF-8 encoding. + * \param w the width of the window. + * \param h the height of the window. + * \param flags 0, or one or more SDL_WindowFlags OR'd together. + * \returns the window that was created or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindowAndRenderer + * \sa SDL_CreatePopupWindow + * \sa SDL_CreateWindowWithProperties + * \sa SDL_DestroyWindow + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_CreateWindow(const char *title, int w, int h, SDL_WindowFlags flags); + +/** + * Create a child popup window of the specified parent window. + * + * The window size is a request and may be different than expected based on + * the desktop layout and window manager policies. Your application should be + * prepared to handle a window of any size. + * + * The flags parameter **must** contain at least one of the following: + * + * - `SDL_WINDOW_TOOLTIP`: The popup window is a tooltip and will not pass any + * input events. + * - `SDL_WINDOW_POPUP_MENU`: The popup window is a popup menu. The topmost + * popup menu will implicitly gain the keyboard focus. + * + * The following flags are not relevant to popup window creation and will be + * ignored: + * + * - `SDL_WINDOW_MINIMIZED` + * - `SDL_WINDOW_MAXIMIZED` + * - `SDL_WINDOW_FULLSCREEN` + * - `SDL_WINDOW_BORDERLESS` + * + * The following flags are incompatible with popup window creation and will + * cause it to fail: + * + * - `SDL_WINDOW_UTILITY` + * - `SDL_WINDOW_MODAL` + * + * The parent parameter **must** be non-null and a valid window. The parent of + * a popup window can be either a regular, toplevel window, or another popup + * window. + * + * Popup windows cannot be minimized, maximized, made fullscreen, raised, + * flash, be made a modal window, be the parent of a toplevel window, or grab + * the mouse and/or keyboard. Attempts to do so will fail. + * + * Popup windows implicitly do not have a border/decorations and do not appear + * on the taskbar/dock or in lists of windows such as alt-tab menus. + * + * By default, popup window positions will automatically be constrained to keep + * the entire window within display bounds. This can be overridden with the + * `SDL_PROP_WINDOW_CREATE_CONSTRAIN_POPUP_BOOLEAN` property. + * + * By default, popup menus will automatically grab keyboard focus from the parent + * when shown. This behavior can be overridden by setting the `SDL_WINDOW_NOT_FOCUSABLE` + * flag, setting the `SDL_PROP_WINDOW_CREATE_FOCUSABLE_BOOLEAN` property to false, or + * toggling it after creation via the `SDL_SetWindowFocusable()` function. + * + * If a parent window is hidden or destroyed, any child popup windows will be + * recursively hidden or destroyed as well. Child popup windows not explicitly + * hidden will be restored when the parent is shown. + * + * \param parent the parent of the window, must not be NULL. + * \param offset_x the x position of the popup window relative to the origin + * of the parent. + * \param offset_y the y position of the popup window relative to the origin + * of the parent window. + * \param w the width of the window. + * \param h the height of the window. + * \param flags SDL_WINDOW_TOOLTIP or SDL_WINDOW_POPUP_MENU, and zero or more + * additional SDL_WindowFlags OR'd together. + * \returns the window that was created or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + * \sa SDL_CreateWindowWithProperties + * \sa SDL_DestroyWindow + * \sa SDL_GetWindowParent + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_CreatePopupWindow(SDL_Window *parent, int offset_x, int offset_y, int w, int h, SDL_WindowFlags flags); + +/** + * Create a window with the specified properties. + * + * The window size is a request and may be different than expected based on + * the desktop layout and window manager policies. Your application should be + * prepared to handle a window of any size. + * + * These are the supported properties: + * + * - `SDL_PROP_WINDOW_CREATE_ALWAYS_ON_TOP_BOOLEAN`: true if the window should + * be always on top + * - `SDL_PROP_WINDOW_CREATE_BORDERLESS_BOOLEAN`: true if the window has no + * window decoration + * - `SDL_PROP_WINDOW_CREATE_CONSTRAIN_POPUP_BOOLEAN`: true if the "tooltip" and + * "menu" window types should be automatically constrained to be entirely within + * display bounds (default), false if no constraints on the position are desired. + * - `SDL_PROP_WINDOW_CREATE_EXTERNAL_GRAPHICS_CONTEXT_BOOLEAN`: true if the + * window will be used with an externally managed graphics context. + * - `SDL_PROP_WINDOW_CREATE_FOCUSABLE_BOOLEAN`: true if the window should + * accept keyboard input (defaults true) + * - `SDL_PROP_WINDOW_CREATE_FULLSCREEN_BOOLEAN`: true if the window should + * start in fullscreen mode at desktop resolution + * - `SDL_PROP_WINDOW_CREATE_HEIGHT_NUMBER`: the height of the window + * - `SDL_PROP_WINDOW_CREATE_HIDDEN_BOOLEAN`: true if the window should start + * hidden + * - `SDL_PROP_WINDOW_CREATE_HIGH_PIXEL_DENSITY_BOOLEAN`: true if the window + * uses a high pixel density buffer if possible + * - `SDL_PROP_WINDOW_CREATE_MAXIMIZED_BOOLEAN`: true if the window should + * start maximized + * - `SDL_PROP_WINDOW_CREATE_MENU_BOOLEAN`: true if the window is a popup menu + * - `SDL_PROP_WINDOW_CREATE_METAL_BOOLEAN`: true if the window will be used + * with Metal rendering + * - `SDL_PROP_WINDOW_CREATE_MINIMIZED_BOOLEAN`: true if the window should + * start minimized + * - `SDL_PROP_WINDOW_CREATE_MODAL_BOOLEAN`: true if the window is modal to + * its parent + * - `SDL_PROP_WINDOW_CREATE_MOUSE_GRABBED_BOOLEAN`: true if the window starts + * with grabbed mouse focus + * - `SDL_PROP_WINDOW_CREATE_OPENGL_BOOLEAN`: true if the window will be used + * with OpenGL rendering + * - `SDL_PROP_WINDOW_CREATE_PARENT_POINTER`: an SDL_Window that will be the + * parent of this window, required for windows with the "tooltip", "menu", + * and "modal" properties + * - `SDL_PROP_WINDOW_CREATE_RESIZABLE_BOOLEAN`: true if the window should be + * resizable + * - `SDL_PROP_WINDOW_CREATE_TITLE_STRING`: the title of the window, in UTF-8 + * encoding + * - `SDL_PROP_WINDOW_CREATE_TRANSPARENT_BOOLEAN`: true if the window show + * transparent in the areas with alpha of 0 + * - `SDL_PROP_WINDOW_CREATE_TOOLTIP_BOOLEAN`: true if the window is a tooltip + * - `SDL_PROP_WINDOW_CREATE_UTILITY_BOOLEAN`: true if the window is a utility + * window, not showing in the task bar and window list + * - `SDL_PROP_WINDOW_CREATE_VULKAN_BOOLEAN`: true if the window will be used + * with Vulkan rendering + * - `SDL_PROP_WINDOW_CREATE_WIDTH_NUMBER`: the width of the window + * - `SDL_PROP_WINDOW_CREATE_X_NUMBER`: the x position of the window, or + * `SDL_WINDOWPOS_CENTERED`, defaults to `SDL_WINDOWPOS_UNDEFINED`. This is + * relative to the parent for windows with the "tooltip" or "menu" property + * set. + * - `SDL_PROP_WINDOW_CREATE_Y_NUMBER`: the y position of the window, or + * `SDL_WINDOWPOS_CENTERED`, defaults to `SDL_WINDOWPOS_UNDEFINED`. This is + * relative to the parent for windows with the "tooltip" or "menu" property + * set. + * + * These are additional supported properties on macOS: + * + * - `SDL_PROP_WINDOW_CREATE_COCOA_WINDOW_POINTER`: the + * `(__unsafe_unretained)` NSWindow associated with the window, if you want + * to wrap an existing window. + * - `SDL_PROP_WINDOW_CREATE_COCOA_VIEW_POINTER`: the `(__unsafe_unretained)` + * NSView associated with the window, defaults to `[window contentView]` + * + * These are additional supported properties on Wayland: + * + * - `SDL_PROP_WINDOW_CREATE_WAYLAND_SURFACE_ROLE_CUSTOM_BOOLEAN` - true if + * the application wants to use the Wayland surface for a custom role and + * does not want it attached to an XDG toplevel window. See + * [README/wayland](README/wayland) for more information on using custom + * surfaces. + * - `SDL_PROP_WINDOW_CREATE_WAYLAND_CREATE_EGL_WINDOW_BOOLEAN` - true if the + * application wants an associated `wl_egl_window` object to be created and + * attached to the window, even if the window does not have the OpenGL + * property or `SDL_WINDOW_OPENGL` flag set. + * - `SDL_PROP_WINDOW_CREATE_WAYLAND_WL_SURFACE_POINTER` - the wl_surface + * associated with the window, if you want to wrap an existing window. See + * [README/wayland](README/wayland) for more information. + * + * These are additional supported properties on Windows: + * + * - `SDL_PROP_WINDOW_CREATE_WIN32_HWND_POINTER`: the HWND associated with the + * window, if you want to wrap an existing window. + * - `SDL_PROP_WINDOW_CREATE_WIN32_PIXEL_FORMAT_HWND_POINTER`: optional, + * another window to share pixel format with, useful for OpenGL windows + * + * These are additional supported properties with X11: + * + * - `SDL_PROP_WINDOW_CREATE_X11_WINDOW_NUMBER`: the X11 Window associated + * with the window, if you want to wrap an existing window. + * + * The window is implicitly shown if the "hidden" property is not set. + * + * Windows with the "tooltip" and "menu" properties are popup windows and have + * the behaviors and guidelines outlined in SDL_CreatePopupWindow(). + * + * If this window is being created to be used with an SDL_Renderer, you should + * not add a graphics API specific property + * (`SDL_PROP_WINDOW_CREATE_OPENGL_BOOLEAN`, etc), as SDL will handle that + * internally when it chooses a renderer. However, SDL might need to recreate + * your window at that point, which may cause the window to appear briefly, + * and then flicker as it is recreated. The correct approach to this is to + * create the window with the `SDL_PROP_WINDOW_CREATE_HIDDEN_BOOLEAN` property + * set to true, then create the renderer, then show the window with + * SDL_ShowWindow(). + * + * \param props the properties to use. + * \returns the window that was created or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + * \sa SDL_CreateWindow + * \sa SDL_DestroyWindow + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_CreateWindowWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_WINDOW_CREATE_ALWAYS_ON_TOP_BOOLEAN "SDL.window.create.always_on_top" +#define SDL_PROP_WINDOW_CREATE_BORDERLESS_BOOLEAN "SDL.window.create.borderless" +#define SDL_PROP_WINDOW_CREATE_CONSTRAIN_POPUP_BOOLEAN "SDL.window.create.constrain_popup" +#define SDL_PROP_WINDOW_CREATE_FOCUSABLE_BOOLEAN "SDL.window.create.focusable" +#define SDL_PROP_WINDOW_CREATE_EXTERNAL_GRAPHICS_CONTEXT_BOOLEAN "SDL.window.create.external_graphics_context" +#define SDL_PROP_WINDOW_CREATE_FLAGS_NUMBER "SDL.window.create.flags" +#define SDL_PROP_WINDOW_CREATE_FULLSCREEN_BOOLEAN "SDL.window.create.fullscreen" +#define SDL_PROP_WINDOW_CREATE_HEIGHT_NUMBER "SDL.window.create.height" +#define SDL_PROP_WINDOW_CREATE_HIDDEN_BOOLEAN "SDL.window.create.hidden" +#define SDL_PROP_WINDOW_CREATE_HIGH_PIXEL_DENSITY_BOOLEAN "SDL.window.create.high_pixel_density" +#define SDL_PROP_WINDOW_CREATE_MAXIMIZED_BOOLEAN "SDL.window.create.maximized" +#define SDL_PROP_WINDOW_CREATE_MENU_BOOLEAN "SDL.window.create.menu" +#define SDL_PROP_WINDOW_CREATE_METAL_BOOLEAN "SDL.window.create.metal" +#define SDL_PROP_WINDOW_CREATE_MINIMIZED_BOOLEAN "SDL.window.create.minimized" +#define SDL_PROP_WINDOW_CREATE_MODAL_BOOLEAN "SDL.window.create.modal" +#define SDL_PROP_WINDOW_CREATE_MOUSE_GRABBED_BOOLEAN "SDL.window.create.mouse_grabbed" +#define SDL_PROP_WINDOW_CREATE_OPENGL_BOOLEAN "SDL.window.create.opengl" +#define SDL_PROP_WINDOW_CREATE_PARENT_POINTER "SDL.window.create.parent" +#define SDL_PROP_WINDOW_CREATE_RESIZABLE_BOOLEAN "SDL.window.create.resizable" +#define SDL_PROP_WINDOW_CREATE_TITLE_STRING "SDL.window.create.title" +#define SDL_PROP_WINDOW_CREATE_TRANSPARENT_BOOLEAN "SDL.window.create.transparent" +#define SDL_PROP_WINDOW_CREATE_TOOLTIP_BOOLEAN "SDL.window.create.tooltip" +#define SDL_PROP_WINDOW_CREATE_UTILITY_BOOLEAN "SDL.window.create.utility" +#define SDL_PROP_WINDOW_CREATE_VULKAN_BOOLEAN "SDL.window.create.vulkan" +#define SDL_PROP_WINDOW_CREATE_WIDTH_NUMBER "SDL.window.create.width" +#define SDL_PROP_WINDOW_CREATE_X_NUMBER "SDL.window.create.x" +#define SDL_PROP_WINDOW_CREATE_Y_NUMBER "SDL.window.create.y" +#define SDL_PROP_WINDOW_CREATE_COCOA_WINDOW_POINTER "SDL.window.create.cocoa.window" +#define SDL_PROP_WINDOW_CREATE_COCOA_VIEW_POINTER "SDL.window.create.cocoa.view" +#define SDL_PROP_WINDOW_CREATE_WAYLAND_SURFACE_ROLE_CUSTOM_BOOLEAN "SDL.window.create.wayland.surface_role_custom" +#define SDL_PROP_WINDOW_CREATE_WAYLAND_CREATE_EGL_WINDOW_BOOLEAN "SDL.window.create.wayland.create_egl_window" +#define SDL_PROP_WINDOW_CREATE_WAYLAND_WL_SURFACE_POINTER "SDL.window.create.wayland.wl_surface" +#define SDL_PROP_WINDOW_CREATE_WIN32_HWND_POINTER "SDL.window.create.win32.hwnd" +#define SDL_PROP_WINDOW_CREATE_WIN32_PIXEL_FORMAT_HWND_POINTER "SDL.window.create.win32.pixel_format_hwnd" +#define SDL_PROP_WINDOW_CREATE_X11_WINDOW_NUMBER "SDL.window.create.x11.window" + +/** + * Get the numeric ID of a window. + * + * The numeric ID is what SDL_WindowEvent references, and is necessary to map + * these events to specific SDL_Window objects. + * + * \param window the window to query. + * \returns the ID of the window on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFromID + */ +extern SDL_DECLSPEC SDL_WindowID SDLCALL SDL_GetWindowID(SDL_Window *window); + +/** + * Get a window from a stored ID. + * + * The numeric ID is what SDL_WindowEvent references, and is necessary to map + * these events to specific SDL_Window objects. + * + * \param id the ID of the window. + * \returns the window associated with `id` or NULL if it doesn't exist; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowID + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetWindowFromID(SDL_WindowID id); + +/** + * Get parent of a window. + * + * \param window the window to query. + * \returns the parent of the window on success or NULL if the window has no + * parent. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePopupWindow + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetWindowParent(SDL_Window *window); + +/** + * Get the properties associated with a window. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_WINDOW_SHAPE_POINTER`: the surface associated with a shaped + * window + * - `SDL_PROP_WINDOW_HDR_ENABLED_BOOLEAN`: true if the window has HDR + * headroom above the SDR white point. This property can change dynamically + * when SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_WINDOW_SDR_WHITE_LEVEL_FLOAT`: the value of SDR white in the + * SDL_COLORSPACE_SRGB_LINEAR colorspace. On Windows this corresponds to the + * SDR white level in scRGB colorspace, and on Apple platforms this is + * always 1.0 for EDR content. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_WINDOW_HDR_HEADROOM_FLOAT`: the additional high dynamic range + * that can be displayed, in terms of the SDR white point. When HDR is not + * enabled, this will be 1.0. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * + * On Android: + * + * - `SDL_PROP_WINDOW_ANDROID_WINDOW_POINTER`: the ANativeWindow associated + * with the window + * - `SDL_PROP_WINDOW_ANDROID_SURFACE_POINTER`: the EGLSurface associated with + * the window + * + * On iOS: + * + * - `SDL_PROP_WINDOW_UIKIT_WINDOW_POINTER`: the `(__unsafe_unretained)` + * UIWindow associated with the window + * - `SDL_PROP_WINDOW_UIKIT_METAL_VIEW_TAG_NUMBER`: the NSInteger tag + * associated with metal views on the window + * - `SDL_PROP_WINDOW_UIKIT_OPENGL_FRAMEBUFFER_NUMBER`: the OpenGL view's + * framebuffer object. It must be bound when rendering to the screen using + * OpenGL. + * - `SDL_PROP_WINDOW_UIKIT_OPENGL_RENDERBUFFER_NUMBER`: the OpenGL view's + * renderbuffer object. It must be bound when SDL_GL_SwapWindow is called. + * - `SDL_PROP_WINDOW_UIKIT_OPENGL_RESOLVE_FRAMEBUFFER_NUMBER`: the OpenGL + * view's resolve framebuffer, when MSAA is used. + * + * On KMS/DRM: + * + * - `SDL_PROP_WINDOW_KMSDRM_DEVICE_INDEX_NUMBER`: the device index associated + * with the window (e.g. the X in /dev/dri/cardX) + * - `SDL_PROP_WINDOW_KMSDRM_DRM_FD_NUMBER`: the DRM FD associated with the + * window + * - `SDL_PROP_WINDOW_KMSDRM_GBM_DEVICE_POINTER`: the GBM device associated + * with the window + * + * On macOS: + * + * - `SDL_PROP_WINDOW_COCOA_WINDOW_POINTER`: the `(__unsafe_unretained)` + * NSWindow associated with the window + * - `SDL_PROP_WINDOW_COCOA_METAL_VIEW_TAG_NUMBER`: the NSInteger tag + * assocated with metal views on the window + * + * On OpenVR: + * + * - `SDL_PROP_WINDOW_OPENVR_OVERLAY_ID`: the OpenVR Overlay Handle ID for the + * associated overlay window. + * + * On Vivante: + * + * - `SDL_PROP_WINDOW_VIVANTE_DISPLAY_POINTER`: the EGLNativeDisplayType + * associated with the window + * - `SDL_PROP_WINDOW_VIVANTE_WINDOW_POINTER`: the EGLNativeWindowType + * associated with the window + * - `SDL_PROP_WINDOW_VIVANTE_SURFACE_POINTER`: the EGLSurface associated with + * the window + * + * On Windows: + * + * - `SDL_PROP_WINDOW_WIN32_HWND_POINTER`: the HWND associated with the window + * - `SDL_PROP_WINDOW_WIN32_HDC_POINTER`: the HDC associated with the window + * - `SDL_PROP_WINDOW_WIN32_INSTANCE_POINTER`: the HINSTANCE associated with + * the window + * + * On Wayland: + * + * Note: The `xdg_*` window objects do not internally persist across window + * show/hide calls. They will be null if the window is hidden and must be + * queried each time it is shown. + * + * - `SDL_PROP_WINDOW_WAYLAND_DISPLAY_POINTER`: the wl_display associated with + * the window + * - `SDL_PROP_WINDOW_WAYLAND_SURFACE_POINTER`: the wl_surface associated with + * the window + * - `SDL_PROP_WINDOW_WAYLAND_VIEWPORT_POINTER`: the wp_viewport associated + * with the window + * - `SDL_PROP_WINDOW_WAYLAND_EGL_WINDOW_POINTER`: the wl_egl_window + * associated with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_SURFACE_POINTER`: the xdg_surface associated + * with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_POINTER`: the xdg_toplevel role + * associated with the window + * - 'SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_EXPORT_HANDLE_STRING': the export + * handle associated with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_POPUP_POINTER`: the xdg_popup role + * associated with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_POSITIONER_POINTER`: the xdg_positioner + * associated with the window, in popup mode + * + * On X11: + * + * - `SDL_PROP_WINDOW_X11_DISPLAY_POINTER`: the X11 Display associated with + * the window + * - `SDL_PROP_WINDOW_X11_SCREEN_NUMBER`: the screen number associated with + * the window + * - `SDL_PROP_WINDOW_X11_WINDOW_NUMBER`: the X11 Window associated with the + * window + * + * \param window the window to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetWindowProperties(SDL_Window *window); + +#define SDL_PROP_WINDOW_SHAPE_POINTER "SDL.window.shape" +#define SDL_PROP_WINDOW_HDR_ENABLED_BOOLEAN "SDL.window.HDR_enabled" +#define SDL_PROP_WINDOW_SDR_WHITE_LEVEL_FLOAT "SDL.window.SDR_white_level" +#define SDL_PROP_WINDOW_HDR_HEADROOM_FLOAT "SDL.window.HDR_headroom" +#define SDL_PROP_WINDOW_ANDROID_WINDOW_POINTER "SDL.window.android.window" +#define SDL_PROP_WINDOW_ANDROID_SURFACE_POINTER "SDL.window.android.surface" +#define SDL_PROP_WINDOW_UIKIT_WINDOW_POINTER "SDL.window.uikit.window" +#define SDL_PROP_WINDOW_UIKIT_METAL_VIEW_TAG_NUMBER "SDL.window.uikit.metal_view_tag" +#define SDL_PROP_WINDOW_UIKIT_OPENGL_FRAMEBUFFER_NUMBER "SDL.window.uikit.opengl.framebuffer" +#define SDL_PROP_WINDOW_UIKIT_OPENGL_RENDERBUFFER_NUMBER "SDL.window.uikit.opengl.renderbuffer" +#define SDL_PROP_WINDOW_UIKIT_OPENGL_RESOLVE_FRAMEBUFFER_NUMBER "SDL.window.uikit.opengl.resolve_framebuffer" +#define SDL_PROP_WINDOW_KMSDRM_DEVICE_INDEX_NUMBER "SDL.window.kmsdrm.dev_index" +#define SDL_PROP_WINDOW_KMSDRM_DRM_FD_NUMBER "SDL.window.kmsdrm.drm_fd" +#define SDL_PROP_WINDOW_KMSDRM_GBM_DEVICE_POINTER "SDL.window.kmsdrm.gbm_dev" +#define SDL_PROP_WINDOW_COCOA_WINDOW_POINTER "SDL.window.cocoa.window" +#define SDL_PROP_WINDOW_COCOA_METAL_VIEW_TAG_NUMBER "SDL.window.cocoa.metal_view_tag" +#define SDL_PROP_WINDOW_OPENVR_OVERLAY_ID "SDL.window.openvr.overlay_id" +#define SDL_PROP_WINDOW_VIVANTE_DISPLAY_POINTER "SDL.window.vivante.display" +#define SDL_PROP_WINDOW_VIVANTE_WINDOW_POINTER "SDL.window.vivante.window" +#define SDL_PROP_WINDOW_VIVANTE_SURFACE_POINTER "SDL.window.vivante.surface" +#define SDL_PROP_WINDOW_WIN32_HWND_POINTER "SDL.window.win32.hwnd" +#define SDL_PROP_WINDOW_WIN32_HDC_POINTER "SDL.window.win32.hdc" +#define SDL_PROP_WINDOW_WIN32_INSTANCE_POINTER "SDL.window.win32.instance" +#define SDL_PROP_WINDOW_WAYLAND_DISPLAY_POINTER "SDL.window.wayland.display" +#define SDL_PROP_WINDOW_WAYLAND_SURFACE_POINTER "SDL.window.wayland.surface" +#define SDL_PROP_WINDOW_WAYLAND_VIEWPORT_POINTER "SDL.window.wayland.viewport" +#define SDL_PROP_WINDOW_WAYLAND_EGL_WINDOW_POINTER "SDL.window.wayland.egl_window" +#define SDL_PROP_WINDOW_WAYLAND_XDG_SURFACE_POINTER "SDL.window.wayland.xdg_surface" +#define SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_POINTER "SDL.window.wayland.xdg_toplevel" +#define SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_EXPORT_HANDLE_STRING "SDL.window.wayland.xdg_toplevel_export_handle" +#define SDL_PROP_WINDOW_WAYLAND_XDG_POPUP_POINTER "SDL.window.wayland.xdg_popup" +#define SDL_PROP_WINDOW_WAYLAND_XDG_POSITIONER_POINTER "SDL.window.wayland.xdg_positioner" +#define SDL_PROP_WINDOW_X11_DISPLAY_POINTER "SDL.window.x11.display" +#define SDL_PROP_WINDOW_X11_SCREEN_NUMBER "SDL.window.x11.screen" +#define SDL_PROP_WINDOW_X11_WINDOW_NUMBER "SDL.window.x11.window" + +/** + * Get the window flags. + * + * \param window the window to query. + * \returns a mask of the SDL_WindowFlags associated with `window`. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + * \sa SDL_HideWindow + * \sa SDL_MaximizeWindow + * \sa SDL_MinimizeWindow + * \sa SDL_SetWindowFullscreen + * \sa SDL_SetWindowMouseGrab + * \sa SDL_ShowWindow + */ +extern SDL_DECLSPEC SDL_WindowFlags SDLCALL SDL_GetWindowFlags(SDL_Window *window); + +/** + * Set the title of a window. + * + * This string is expected to be in UTF-8 encoding. + * + * \param window the window to change. + * \param title the desired window title in UTF-8 format. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowTitle + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowTitle(SDL_Window *window, const char *title); + +/** + * Get the title of a window. + * + * \param window the window to query. + * \returns the title of the window in UTF-8 format or "" if there is no + * title. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowTitle + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetWindowTitle(SDL_Window *window); + +/** + * Set the icon for a window. + * + * If this function is passed a surface with alternate representations, the + * surface will be interpreted as the content to be used for 100% display + * scale, and the alternate representations will be used for high DPI + * situations. For example, if the original surface is 32x32, then on a 2x + * macOS display or 200% display scale on Windows, a 64x64 version of the + * image will be used, if available. If a matching version of the image isn't + * available, the closest larger size image will be downscaled to the + * appropriate size and be used instead, if available. Otherwise, the closest + * smaller image will be upscaled and be used instead. + * + * \param window the window to change. + * \param icon an SDL_Surface structure containing the icon for the window. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowIcon(SDL_Window *window, SDL_Surface *icon); + +/** + * Request that the window's position be set. + * + * If the window is in an exclusive fullscreen or maximized state, this + * request has no effect. + * + * This can be used to reposition fullscreen-desktop windows onto a different + * display, however, as exclusive fullscreen windows are locked to a specific + * display, they can only be repositioned programmatically via + * SDL_SetWindowFullscreenMode(). + * + * On some windowing systems this request is asynchronous and the new + * coordinates may not have have been applied immediately upon the return of + * this function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window position changes, an SDL_EVENT_WINDOW_MOVED event will be + * emitted with the window's new coordinates. Note that the new coordinates + * may not match the exact coordinates requested, as some windowing systems + * can restrict the position of the window in certain scenarios (e.g. + * constraining the position so the window is always within desktop bounds). + * Additionally, as this is just a request, it can be denied by the windowing + * system. + * + * \param window the window to reposition. + * \param x the x coordinate of the window, or `SDL_WINDOWPOS_CENTERED` or + * `SDL_WINDOWPOS_UNDEFINED`. + * \param y the y coordinate of the window, or `SDL_WINDOWPOS_CENTERED` or + * `SDL_WINDOWPOS_UNDEFINED`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowPosition + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowPosition(SDL_Window *window, int x, int y); + +/** + * Get the position of a window. + * + * This is the current position of the window as last reported by the + * windowing system. + * + * If you do not need the value for one of the positions a NULL may be passed + * in the `x` or `y` parameter. + * + * \param window the window to query. + * \param x a pointer filled in with the x position of the window, may be + * NULL. + * \param y a pointer filled in with the y position of the window, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowPosition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowPosition(SDL_Window *window, int *x, int *y); + +/** + * Request that the size of a window's client area be set. + * + * If the window is in a fullscreen or maximized state, this request has no + * effect. + * + * To change the exclusive fullscreen mode of a window, use + * SDL_SetWindowFullscreenMode(). + * + * On some windowing systems, this request is asynchronous and the new window + * size may not have have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window size changes, an SDL_EVENT_WINDOW_RESIZED event will be + * emitted with the new window dimensions. Note that the new dimensions may + * not match the exact size requested, as some windowing systems can restrict + * the window size in certain scenarios (e.g. constraining the size of the + * content area to remain within the usable desktop bounds). Additionally, as + * this is just a request, it can be denied by the windowing system. + * + * \param window the window to change. + * \param w the width of the window, must be > 0. + * \param h the height of the window, must be > 0. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSize + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowSize(SDL_Window *window, int w, int h); + +/** + * Get the size of a window's client area. + * + * The window pixel size may differ from its window coordinate size if the + * window is on a high pixel density display. Use SDL_GetWindowSizeInPixels() + * or SDL_GetRenderOutputSize() to get the real client area size in pixels. + * + * \param window the window to query the width and height from. + * \param w a pointer filled in with the width of the window, may be NULL. + * \param h a pointer filled in with the height of the window, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderOutputSize + * \sa SDL_GetWindowSizeInPixels + * \sa SDL_SetWindowSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSize(SDL_Window *window, int *w, int *h); + +/** + * Get the safe area for this window. + * + * Some devices have portions of the screen which are partially obscured or + * not interactive, possibly due to on-screen controls, curved edges, camera + * notches, TV overscan, etc. This function provides the area of the window + * which is safe to have interactable content. You should continue rendering + * into the rest of the window, but it should not contain visually important + * or interactible content. + * + * \param window the window to query. + * \param rect a pointer filled in with the client area that is safe for + * interactive content. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSafeArea(SDL_Window *window, SDL_Rect *rect); + +/** + * Request that the aspect ratio of a window's client area be set. + * + * The aspect ratio is the ratio of width divided by height, e.g. 2560x1600 + * would be 1.6. Larger aspect ratios are wider and smaller aspect ratios are + * narrower. + * + * If, at the time of this request, the window in a fixed-size state, such as + * maximized or fullscreen, the request will be deferred until the window + * exits this state and becomes resizable again. + * + * On some windowing systems, this request is asynchronous and the new window + * aspect ratio may not have have been applied immediately upon the return of + * this function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window size changes, an SDL_EVENT_WINDOW_RESIZED event will be + * emitted with the new window dimensions. Note that the new dimensions may + * not match the exact aspect ratio requested, as some windowing systems can + * restrict the window size in certain scenarios (e.g. constraining the size + * of the content area to remain within the usable desktop bounds). + * Additionally, as this is just a request, it can be denied by the windowing + * system. + * + * \param window the window to change. + * \param min_aspect the minimum aspect ratio of the window, or 0.0f for no + * limit. + * \param max_aspect the maximum aspect ratio of the window, or 0.0f for no + * limit. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowAspectRatio + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowAspectRatio(SDL_Window *window, float min_aspect, float max_aspect); + +/** + * Get the size of a window's client area. + * + * \param window the window to query the width and height from. + * \param min_aspect a pointer filled in with the minimum aspect ratio of the + * window, may be NULL. + * \param max_aspect a pointer filled in with the maximum aspect ratio of the + * window, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowAspectRatio + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowAspectRatio(SDL_Window *window, float *min_aspect, float *max_aspect); + +/** + * Get the size of a window's borders (decorations) around the client area. + * + * Note: If this function fails (returns false), the size values will be + * initialized to 0, 0, 0, 0 (if a non-NULL pointer is provided), as if the + * window in question was borderless. + * + * Note: This function may fail on systems where the window has not yet been + * decorated by the display server (for example, immediately after calling + * SDL_CreateWindow). It is recommended that you wait at least until the + * window has been presented and composited, so that the window system has a + * chance to decorate the window and provide the border dimensions to SDL. + * + * This function also returns false if getting the information is not + * supported. + * + * \param window the window to query the size values of the border + * (decorations) from. + * \param top pointer to variable for storing the size of the top border; NULL + * is permitted. + * \param left pointer to variable for storing the size of the left border; + * NULL is permitted. + * \param bottom pointer to variable for storing the size of the bottom + * border; NULL is permitted. + * \param right pointer to variable for storing the size of the right border; + * NULL is permitted. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowBordersSize(SDL_Window *window, int *top, int *left, int *bottom, int *right); + +/** + * Get the size of a window's client area, in pixels. + * + * \param window the window from which the drawable size should be queried. + * \param w a pointer to variable for storing the width in pixels, may be + * NULL. + * \param h a pointer to variable for storing the height in pixels, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + * \sa SDL_GetWindowSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSizeInPixels(SDL_Window *window, int *w, int *h); + +/** + * Set the minimum size of a window's client area. + * + * \param window the window to change. + * \param min_w the minimum width of the window, or 0 for no limit. + * \param min_h the minimum height of the window, or 0 for no limit. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMinimumSize + * \sa SDL_SetWindowMaximumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMinimumSize(SDL_Window *window, int min_w, int min_h); + +/** + * Get the minimum size of a window's client area. + * + * \param window the window to query. + * \param w a pointer filled in with the minimum width of the window, may be + * NULL. + * \param h a pointer filled in with the minimum height of the window, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMaximumSize + * \sa SDL_SetWindowMinimumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowMinimumSize(SDL_Window *window, int *w, int *h); + +/** + * Set the maximum size of a window's client area. + * + * \param window the window to change. + * \param max_w the maximum width of the window, or 0 for no limit. + * \param max_h the maximum height of the window, or 0 for no limit. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMaximumSize + * \sa SDL_SetWindowMinimumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMaximumSize(SDL_Window *window, int max_w, int max_h); + +/** + * Get the maximum size of a window's client area. + * + * \param window the window to query. + * \param w a pointer filled in with the maximum width of the window, may be + * NULL. + * \param h a pointer filled in with the maximum height of the window, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMinimumSize + * \sa SDL_SetWindowMaximumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowMaximumSize(SDL_Window *window, int *w, int *h); + +/** + * Set the border state of a window. + * + * This will add or remove the window's `SDL_WINDOW_BORDERLESS` flag and add + * or remove the border from the actual window. This is a no-op if the + * window's border already matches the requested state. + * + * You can't change the border state of a fullscreen window. + * + * \param window the window of which to change the border state. + * \param bordered false to remove border, true to add border. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowBordered(SDL_Window *window, bool bordered); + +/** + * Set the user-resizable state of a window. + * + * This will add or remove the window's `SDL_WINDOW_RESIZABLE` flag and + * allow/disallow user resizing of the window. This is a no-op if the window's + * resizable state already matches the requested state. + * + * You can't change the resizable state of a fullscreen window. + * + * \param window the window of which to change the resizable state. + * \param resizable true to allow resizing, false to disallow. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowResizable(SDL_Window *window, bool resizable); + +/** + * Set the window to always be above the others. + * + * This will add or remove the window's `SDL_WINDOW_ALWAYS_ON_TOP` flag. This + * will bring the window to the front and keep the window above the rest. + * + * \param window the window of which to change the always on top state. + * \param on_top true to set the window always on top, false to disable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowAlwaysOnTop(SDL_Window *window, bool on_top); + +/** + * Show a window. + * + * \param window the window to show. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HideWindow + * \sa SDL_RaiseWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowWindow(SDL_Window *window); + +/** + * Hide a window. + * + * \param window the window to hide. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShowWindow + * \sa SDL_WINDOW_HIDDEN + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HideWindow(SDL_Window *window); + +/** + * Request that a window be raised above other windows and gain the input + * focus. + * + * The result of this request is subject to desktop window manager policy, + * particularly if raising the requested window would result in stealing focus + * from another application. If the window is successfully raised and gains + * input focus, an SDL_EVENT_WINDOW_FOCUS_GAINED event will be emitted, and + * the window will have the SDL_WINDOW_INPUT_FOCUS flag set. + * + * \param window the window to raise. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RaiseWindow(SDL_Window *window); + +/** + * Request that the window be made as large as possible. + * + * Non-resizable windows can't be maximized. The window must have the + * SDL_WINDOW_RESIZABLE flag set, or this will have no effect. + * + * On some windowing systems this request is asynchronous and the new window + * state may not have have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_MAXIMIZED event will be + * emitted. Note that, as this is just a request, the windowing system can + * deny the state change. + * + * When maximizing a window, whether the constraints set via + * SDL_SetWindowMaximumSize() are honored depends on the policy of the window + * manager. Win32 and macOS enforce the constraints when maximizing, while X11 + * and Wayland window managers may vary. + * + * \param window the window to maximize. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MinimizeWindow + * \sa SDL_RestoreWindow + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_MaximizeWindow(SDL_Window *window); + +/** + * Request that the window be minimized to an iconic representation. + * + * If the window is in a fullscreen state, this request has no direct effect. + * It may alter the state the window is returned to when leaving fullscreen. + * + * On some windowing systems this request is asynchronous and the new window + * state may not have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_MINIMIZED event will be + * emitted. Note that, as this is just a request, the windowing system can + * deny the state change. + * + * \param window the window to minimize. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MaximizeWindow + * \sa SDL_RestoreWindow + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_MinimizeWindow(SDL_Window *window); + +/** + * Request that the size and position of a minimized or maximized window be + * restored. + * + * If the window is in a fullscreen state, this request has no direct effect. + * It may alter the state the window is returned to when leaving fullscreen. + * + * On some windowing systems this request is asynchronous and the new window + * state may not have have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_RESTORED event will be + * emitted. Note that, as this is just a request, the windowing system can + * deny the state change. + * + * \param window the window to restore. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MaximizeWindow + * \sa SDL_MinimizeWindow + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RestoreWindow(SDL_Window *window); + +/** + * Request that the window's fullscreen state be changed. + * + * By default a window in fullscreen state uses borderless fullscreen desktop + * mode, but a specific exclusive display mode can be set using + * SDL_SetWindowFullscreenMode(). + * + * On some windowing systems this request is asynchronous and the new + * fullscreen state may not have have been applied immediately upon the return + * of this function. If an immediate change is required, call SDL_SyncWindow() + * to block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_ENTER_FULLSCREEN or + * SDL_EVENT_WINDOW_LEAVE_FULLSCREEN event will be emitted. Note that, as this + * is just a request, it can be denied by the windowing system. + * + * \param window the window to change. + * \param fullscreen true for fullscreen mode, false for windowed mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFullscreenMode + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_SyncWindow + * \sa SDL_WINDOW_FULLSCREEN + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowFullscreen(SDL_Window *window, bool fullscreen); + +/** + * Block until any pending window state is finalized. + * + * On asynchronous windowing systems, this acts as a synchronization barrier + * for pending window state. It will attempt to wait until any pending window + * state has been applied and is guaranteed to return within finite time. Note + * that for how long it can potentially block depends on the underlying window + * system, as window state changes may involve somewhat lengthy animations + * that must complete before the window is in its final requested state. + * + * On windowing systems where changes are immediate, this does nothing. + * + * \param window the window for which to wait for the pending state to be + * applied. + * \returns true on success or false if the operation timed out before the + * window was in the requested state. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowSize + * \sa SDL_SetWindowPosition + * \sa SDL_SetWindowFullscreen + * \sa SDL_MinimizeWindow + * \sa SDL_MaximizeWindow + * \sa SDL_RestoreWindow + * \sa SDL_HINT_VIDEO_SYNC_WINDOW_OPERATIONS + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SyncWindow(SDL_Window *window); + +/** + * Return whether the window has a surface associated with it. + * + * \param window the window to query. + * \returns true if there is a surface associated with the window, or false + * otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WindowHasSurface(SDL_Window *window); + +/** + * Get the SDL surface associated with the window. + * + * A new surface will be created with the optimal format for the window, if + * necessary. This surface will be freed when the window is destroyed. Do not + * free this surface. + * + * This surface will be invalidated if the window is resized. After resizing a + * window this function must be called again to return a valid surface. + * + * You may not combine this with 3D or the rendering API on this window. + * + * This function is affected by `SDL_HINT_FRAMEBUFFER_ACCELERATION`. + * + * \param window the window to query. + * \returns the surface associated with the window, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyWindowSurface + * \sa SDL_WindowHasSurface + * \sa SDL_UpdateWindowSurface + * \sa SDL_UpdateWindowSurfaceRects + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_GetWindowSurface(SDL_Window *window); + +/** + * Toggle VSync for the window surface. + * + * When a window surface is created, vsync defaults to + * SDL_WINDOW_SURFACE_VSYNC_DISABLED. + * + * The `vsync` parameter can be 1 to synchronize present with every vertical + * refresh, 2 to synchronize present with every second vertical refresh, etc., + * SDL_WINDOW_SURFACE_VSYNC_ADAPTIVE for late swap tearing (adaptive vsync), + * or SDL_WINDOW_SURFACE_VSYNC_DISABLED to disable. Not every value is + * supported by every driver, so you should check the return value to see + * whether the requested setting is supported. + * + * \param window the window. + * \param vsync the vertical refresh sync interval. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurfaceVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowSurfaceVSync(SDL_Window *window, int vsync); + +#define SDL_WINDOW_SURFACE_VSYNC_DISABLED 0 +#define SDL_WINDOW_SURFACE_VSYNC_ADAPTIVE (-1) + +/** + * Get VSync for the window surface. + * + * \param window the window to query. + * \param vsync an int filled with the current vertical refresh sync interval. + * See SDL_SetWindowSurfaceVSync() for the meaning of the value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowSurfaceVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSurfaceVSync(SDL_Window *window, int *vsync); + +/** + * Copy the window surface to the screen. + * + * This is the function you use to reflect any changes to the surface on the + * screen. + * + * This function is equivalent to the SDL 1.2 API SDL_Flip(). + * + * \param window the window to update. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + * \sa SDL_UpdateWindowSurfaceRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateWindowSurface(SDL_Window *window); + +/** + * Copy areas of the window surface to the screen. + * + * This is the function you use to reflect changes to portions of the surface + * on the screen. + * + * This function is equivalent to the SDL 1.2 API SDL_UpdateRects(). + * + * Note that this function will update _at least_ the rectangles specified, + * but this is only intended as an optimization; in practice, this might + * update more of the screen (or all of the screen!), depending on what method + * SDL uses to send pixels to the system. + * + * \param window the window to update. + * \param rects an array of SDL_Rect structures representing areas of the + * surface to copy, in pixels. + * \param numrects the number of rectangles. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + * \sa SDL_UpdateWindowSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateWindowSurfaceRects(SDL_Window *window, const SDL_Rect *rects, int numrects); + +/** + * Destroy the surface associated with the window. + * + * \param window the window to update. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + * \sa SDL_WindowHasSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DestroyWindowSurface(SDL_Window *window); + +/** + * Set a window's keyboard grab mode. + * + * Keyboard grab enables capture of system keyboard shortcuts like Alt+Tab or + * the Meta/Super key. Note that not all system keyboard shortcuts can be + * captured by applications (one example is Ctrl+Alt+Del on Windows). + * + * This is primarily intended for specialized applications such as VNC clients + * or VM frontends. Normal games should not use keyboard grab. + * + * When keyboard grab is enabled, SDL will continue to handle Alt+Tab when the + * window is full-screen to ensure the user is not trapped in your + * application. If you have a custom keyboard shortcut to exit fullscreen + * mode, you may suppress this behavior with + * `SDL_HINT_ALLOW_ALT_TAB_WHILE_GRABBED`. + * + * If the caller enables a grab while another window is currently grabbed, the + * other window loses its grab in favor of the caller's window. + * + * \param window the window for which the keyboard grab mode should be set. + * \param grabbed this is true to grab keyboard, and false to release. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowKeyboardGrab + * \sa SDL_SetWindowMouseGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowKeyboardGrab(SDL_Window *window, bool grabbed); + +/** + * Set a window's mouse grab mode. + * + * Mouse grab confines the mouse cursor to the window. + * + * \param window the window for which the mouse grab mode should be set. + * \param grabbed this is true to grab mouse, and false to release. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMouseRect + * \sa SDL_SetWindowMouseRect + * \sa SDL_SetWindowMouseGrab + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMouseGrab(SDL_Window *window, bool grabbed); + +/** + * Get a window's keyboard grab mode. + * + * \param window the window to query. + * \returns true if keyboard is grabbed, and false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowKeyboardGrab(SDL_Window *window); + +/** + * Get a window's mouse grab mode. + * + * \param window the window to query. + * \returns true if mouse is grabbed, and false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMouseRect + * \sa SDL_SetWindowMouseRect + * \sa SDL_SetWindowMouseGrab + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowMouseGrab(SDL_Window *window); + +/** + * Get the window that currently has an input grab enabled. + * + * \returns the window if input is grabbed or NULL otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowMouseGrab + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetGrabbedWindow(void); + +/** + * Confines the cursor to the specified area of a window. + * + * Note that this does NOT grab the cursor, it only defines the area a cursor + * is restricted to when the window has mouse focus. + * + * \param window the window that will be associated with the barrier. + * \param rect a rectangle area in window-relative coordinates. If NULL the + * barrier for the specified window will be destroyed. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMouseRect + * \sa SDL_GetWindowMouseGrab + * \sa SDL_SetWindowMouseGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMouseRect(SDL_Window *window, const SDL_Rect *rect); + +/** + * Get the mouse confinement rectangle of a window. + * + * \param window the window to query. + * \returns a pointer to the mouse confinement rectangle of a window, or NULL + * if there isn't one. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowMouseRect + * \sa SDL_GetWindowMouseGrab + * \sa SDL_SetWindowMouseGrab + */ +extern SDL_DECLSPEC const SDL_Rect * SDLCALL SDL_GetWindowMouseRect(SDL_Window *window); + +/** + * Set the opacity for a window. + * + * The parameter `opacity` will be clamped internally between 0.0f + * (transparent) and 1.0f (opaque). + * + * This function also returns false if setting the opacity isn't supported. + * + * \param window the window which will be made transparent or opaque. + * \param opacity the opacity value (0.0f - transparent, 1.0f - opaque). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowOpacity + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowOpacity(SDL_Window *window, float opacity); + +/** + * Get the opacity of a window. + * + * If transparency isn't supported on this platform, opacity will be returned + * as 1.0f without error. + * + * \param window the window to get the current opacity value from. + * \returns the opacity, (0.0f - transparent, 1.0f - opaque), or -1.0f on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowOpacity + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetWindowOpacity(SDL_Window *window); + +/** + * Set the window as a child of a parent window. + * + * If the window is already the child of an existing window, it will be + * reparented to the new owner. Setting the parent window to NULL unparents + * the window and removes child window status. + * + * If a parent window is hidden or destroyed, the operation will be + * recursively applied to child windows. Child windows hidden with the parent + * that did not have their hidden status explicitly set will be restored when + * the parent is shown. + * + * Attempting to set the parent of a window that is currently in the modal + * state will fail. Use SDL_SetWindowModal() to cancel the modal status before + * attempting to change the parent. + * + * Popup windows cannot change parents and attempts to do so will fail. + * + * Setting a parent window that is currently the sibling or descendent of the + * child window results in undefined behavior. + * + * \param window the window that should become the child of a parent. + * \param parent the new parent window for the child window. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowModal + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowParent(SDL_Window *window, SDL_Window *parent); + +/** + * Toggle the state of the window as modal. + * + * To enable modal status on a window, the window must currently be the child + * window of a parent, or toggling modal status on will fail. + * + * \param window the window on which to set the modal state. + * \param modal true to toggle modal status on, false to toggle it off. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowParent + * \sa SDL_WINDOW_MODAL + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowModal(SDL_Window *window, bool modal); + +/** + * Set whether the window may have input focus. + * + * \param window the window to set focusable state. + * \param focusable true to allow input focus, false to not allow input focus. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowFocusable(SDL_Window *window, bool focusable); + + +/** + * Display the system-level window menu. + * + * This default window menu is provided by the system and on some platforms + * provides functionality for setting or changing privileged state on the + * window, such as moving it between workspaces or displays, or toggling the + * always-on-top property. + * + * On platforms or desktops where this is unsupported, this function does + * nothing. + * + * \param window the window for which the menu will be displayed. + * \param x the x coordinate of the menu, relative to the origin (top-left) of + * the client area. + * \param y the y coordinate of the menu, relative to the origin (top-left) of + * the client area. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowWindowSystemMenu(SDL_Window *window, int x, int y); + +/** + * Possible return values from the SDL_HitTest callback. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_HitTest + */ +typedef enum SDL_HitTestResult +{ + SDL_HITTEST_NORMAL, /**< Region is normal. No special properties. */ + SDL_HITTEST_DRAGGABLE, /**< Region can drag entire window. */ + SDL_HITTEST_RESIZE_TOPLEFT, /**< Region is the resizable top-left corner border. */ + SDL_HITTEST_RESIZE_TOP, /**< Region is the resizable top border. */ + SDL_HITTEST_RESIZE_TOPRIGHT, /**< Region is the resizable top-right corner border. */ + SDL_HITTEST_RESIZE_RIGHT, /**< Region is the resizable right border. */ + SDL_HITTEST_RESIZE_BOTTOMRIGHT, /**< Region is the resizable bottom-right corner border. */ + SDL_HITTEST_RESIZE_BOTTOM, /**< Region is the resizable bottom border. */ + SDL_HITTEST_RESIZE_BOTTOMLEFT, /**< Region is the resizable bottom-left corner border. */ + SDL_HITTEST_RESIZE_LEFT /**< Region is the resizable left border. */ +} SDL_HitTestResult; + +/** + * Callback used for hit-testing. + * + * \param win the SDL_Window where hit-testing was set on. + * \param area an SDL_Point which should be hit-tested. + * \param data what was passed as `callback_data` to SDL_SetWindowHitTest(). + * \returns an SDL_HitTestResult value. + * + * \sa SDL_SetWindowHitTest + */ +typedef SDL_HitTestResult (SDLCALL *SDL_HitTest)(SDL_Window *win, + const SDL_Point *area, + void *data); + +/** + * Provide a callback that decides if a window region has special properties. + * + * Normally windows are dragged and resized by decorations provided by the + * system window manager (a title bar, borders, etc), but for some apps, it + * makes sense to drag them from somewhere else inside the window itself; for + * example, one might have a borderless window that wants to be draggable from + * any part, or simulate its own title bar, etc. + * + * This function lets the app provide a callback that designates pieces of a + * given window as special. This callback is run during event processing if we + * need to tell the OS to treat a region of the window specially; the use of + * this callback is known as "hit testing." + * + * Mouse input may not be delivered to your application if it is within a + * special area; the OS will often apply that input to moving the window or + * resizing the window and not deliver it to the application. + * + * Specifying NULL for a callback disables hit-testing. Hit-testing is + * disabled by default. + * + * Platforms that don't support this functionality will return false + * unconditionally, even if you're attempting to disable hit-testing. + * + * Your callback may fire at any time, and its firing does not indicate any + * specific behavior (for example, on Windows, this certainly might fire when + * the OS is deciding whether to drag your window, but it fires for lots of + * other reasons, too, some unrelated to anything you probably care about _and + * when the mouse isn't actually at the location it is testing_). Since this + * can fire at any time, you should try to keep your callback efficient, + * devoid of allocations, etc. + * + * \param window the window to set hit-testing on. + * \param callback the function to call when doing a hit-test. + * \param callback_data an app-defined void pointer passed to **callback**. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowHitTest(SDL_Window *window, SDL_HitTest callback, void *callback_data); + +/** + * Set the shape of a transparent window. + * + * This sets the alpha channel of a transparent window and any fully + * transparent areas are also transparent to mouse clicks. If you are using + * something besides the SDL render API, then you are responsible for drawing + * the alpha channel of the window to match the shape alpha channel to get + * consistent cross-platform results. + * + * The shape is copied inside this function, so you can free it afterwards. If + * your shape surface changes, you should call SDL_SetWindowShape() again to + * update the window. This is an expensive operation, so should be done + * sparingly. + * + * The window must have been created with the SDL_WINDOW_TRANSPARENT flag. + * + * \param window the window. + * \param shape the surface representing the shape of the window, or NULL to + * remove any current shape. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowShape(SDL_Window *window, SDL_Surface *shape); + +/** + * Request a window to demand attention from the user. + * + * \param window the window to be flashed. + * \param operation the operation to perform. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlashWindow(SDL_Window *window, SDL_FlashOperation operation); + +/** + * Destroy a window. + * + * Any child windows owned by the window will be recursively destroyed as + * well. + * + * Note that on some platforms, the visible window may not actually be removed + * from the screen until the SDL event loop is pumped again, even though the + * SDL_Window is no longer valid after this call. + * + * \param window the window to destroy. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePopupWindow + * \sa SDL_CreateWindow + * \sa SDL_CreateWindowWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyWindow(SDL_Window *window); + + +/** + * Check whether the screensaver is currently enabled. + * + * The screensaver is disabled by default. + * + * The default can also be changed using `SDL_HINT_VIDEO_ALLOW_SCREENSAVER`. + * + * \returns true if the screensaver is enabled, false if it is disabled. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DisableScreenSaver + * \sa SDL_EnableScreenSaver + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ScreenSaverEnabled(void); + +/** + * Allow the screen to be blanked by a screen saver. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DisableScreenSaver + * \sa SDL_ScreenSaverEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnableScreenSaver(void); + +/** + * Prevent the screen from being blanked by a screen saver. + * + * If you disable the screensaver, it is automatically re-enabled when SDL + * quits. + * + * The screensaver is disabled by default, but this may by changed by + * SDL_HINT_VIDEO_ALLOW_SCREENSAVER. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EnableScreenSaver + * \sa SDL_ScreenSaverEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DisableScreenSaver(void); + + +/** + * \name OpenGL support functions + */ +/* @{ */ + +/** + * Dynamically load an OpenGL library. + * + * This should be done after initializing the video driver, but before + * creating any OpenGL windows. If no OpenGL library is loaded, the default + * library will be loaded upon creation of the first OpenGL window. + * + * If you do this, you need to retrieve all of the GL functions used in your + * program from the dynamic library using SDL_GL_GetProcAddress(). + * + * \param path the platform dependent OpenGL library name, or NULL to open the + * default OpenGL library. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetProcAddress + * \sa SDL_GL_UnloadLibrary + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_LoadLibrary(const char *path); + +/** + * Get an OpenGL function by name. + * + * If the GL library is loaded at runtime with SDL_GL_LoadLibrary(), then all + * GL functions must be retrieved this way. Usually this is used to retrieve + * function pointers to OpenGL extensions. + * + * There are some quirks to looking up OpenGL functions that require some + * extra care from the application. If you code carefully, you can handle + * these quirks without any platform-specific code, though: + * + * - On Windows, function pointers are specific to the current GL context; + * this means you need to have created a GL context and made it current + * before calling SDL_GL_GetProcAddress(). If you recreate your context or + * create a second context, you should assume that any existing function + * pointers aren't valid to use with it. This is (currently) a + * Windows-specific limitation, and in practice lots of drivers don't suffer + * this limitation, but it is still the way the wgl API is documented to + * work and you should expect crashes if you don't respect it. Store a copy + * of the function pointers that comes and goes with context lifespan. + * - On X11, function pointers returned by this function are valid for any + * context, and can even be looked up before a context is created at all. + * This means that, for at least some common OpenGL implementations, if you + * look up a function that doesn't exist, you'll get a non-NULL result that + * is _NOT_ safe to call. You must always make sure the function is actually + * available for a given GL context before calling it, by checking for the + * existence of the appropriate extension with SDL_GL_ExtensionSupported(), + * or verifying that the version of OpenGL you're using offers the function + * as core functionality. + * - Some OpenGL drivers, on all platforms, *will* return NULL if a function + * isn't supported, but you can't count on this behavior. Check for + * extensions you use, and if you get a NULL anyway, act as if that + * extension wasn't available. This is probably a bug in the driver, but you + * can code defensively for this scenario anyhow. + * - Just because you're on Linux/Unix, don't assume you'll be using X11. + * Next-gen display servers are waiting to replace it, and may or may not + * make the same promises about function pointers. + * - OpenGL function pointers must be declared `APIENTRY` as in the example + * code. This will ensure the proper calling convention is followed on + * platforms where this matters (Win32) thereby avoiding stack corruption. + * + * \param proc the name of an OpenGL function. + * \returns a pointer to the named OpenGL function. The returned pointer + * should be cast to the appropriate function signature. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_ExtensionSupported + * \sa SDL_GL_LoadLibrary + * \sa SDL_GL_UnloadLibrary + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_GL_GetProcAddress(const char *proc); + +/** + * Get an EGL library function by name. + * + * If an EGL library is loaded, this function allows applications to get entry + * points for EGL functions. This is useful to provide to an EGL API and + * extension loader. + * + * \param proc the name of an EGL function. + * \returns a pointer to the named EGL function. The returned pointer should + * be cast to the appropriate function signature. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EGL_GetCurrentDisplay + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_EGL_GetProcAddress(const char *proc); + +/** + * Unload the OpenGL library previously loaded by SDL_GL_LoadLibrary(). + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_LoadLibrary + */ +extern SDL_DECLSPEC void SDLCALL SDL_GL_UnloadLibrary(void); + +/** + * Check if an OpenGL extension is supported for the current context. + * + * This function operates on the current GL context; you must have created a + * context and it must be current before calling this function. Do not assume + * that all contexts you create will have the same set of extensions + * available, or that recreating an existing context will offer the same + * extensions again. + * + * While it's probably not a massive overhead, this function is not an O(1) + * operation. Check the extensions you care about after creating the GL + * context and save that information somewhere instead of calling the function + * every time you need to know. + * + * \param extension the name of the extension to check. + * \returns true if the extension is supported, false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_ExtensionSupported(const char *extension); + +/** + * Reset all previously set OpenGL context attributes to their default values. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetAttribute + * \sa SDL_GL_SetAttribute + */ +extern SDL_DECLSPEC void SDLCALL SDL_GL_ResetAttributes(void); + +/** + * Set an OpenGL window attribute before window creation. + * + * This function sets the OpenGL attribute `attr` to `value`. The requested + * attributes should be set before creating an OpenGL window. You should use + * SDL_GL_GetAttribute() to check the values after creating the OpenGL + * context, since the values obtained can differ from the requested ones. + * + * \param attr an SDL_GLAttr enum value specifying the OpenGL attribute to + * set. + * \param value the desired value for the attribute. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetAttribute + * \sa SDL_GL_ResetAttributes + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_SetAttribute(SDL_GLAttr attr, int value); + +/** + * Get the actual value for an attribute from the current context. + * + * \param attr an SDL_GLAttr enum value specifying the OpenGL attribute to + * get. + * \param value a pointer filled in with the current value of `attr`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_ResetAttributes + * \sa SDL_GL_SetAttribute + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_GetAttribute(SDL_GLAttr attr, int *value); + +/** + * Create an OpenGL context for an OpenGL window, and make it current. + * + * Windows users new to OpenGL should note that, for historical reasons, GL + * functions added after OpenGL version 1.1 are not available by default. + * Those functions must be loaded at run-time, either with an OpenGL + * extension-handling library or with SDL_GL_GetProcAddress() and its related + * functions. + * + * SDL_GLContext is opaque to the application. + * + * \param window the window to associate with the context. + * \returns the OpenGL context associated with `window` or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_DestroyContext + * \sa SDL_GL_MakeCurrent + */ +extern SDL_DECLSPEC SDL_GLContext SDLCALL SDL_GL_CreateContext(SDL_Window *window); + +/** + * Set up an OpenGL context for rendering into an OpenGL window. + * + * The context must have been created with a compatible window. + * + * \param window the window to associate with the context. + * \param context the OpenGL context to associate with the window. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_CreateContext + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_MakeCurrent(SDL_Window *window, SDL_GLContext context); + +/** + * Get the currently active OpenGL window. + * + * \returns the currently active OpenGL window on success or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GL_GetCurrentWindow(void); + +/** + * Get the currently active OpenGL context. + * + * \returns the currently active OpenGL context or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_MakeCurrent + */ +extern SDL_DECLSPEC SDL_GLContext SDLCALL SDL_GL_GetCurrentContext(void); + +/** + * Get the currently active EGL display. + * + * \returns the currently active EGL display or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_EGLDisplay SDLCALL SDL_EGL_GetCurrentDisplay(void); + +/** + * Get the currently active EGL config. + * + * \returns the currently active EGL config or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_EGLConfig SDLCALL SDL_EGL_GetCurrentConfig(void); + +/** + * Get the EGL surface associated with the window. + * + * \param window the window to query. + * \returns the EGLSurface pointer associated with the window, or NULL on + * failure. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_EGLSurface SDLCALL SDL_EGL_GetWindowSurface(SDL_Window *window); + +/** + * Sets the callbacks for defining custom EGLAttrib arrays for EGL + * initialization. + * + * Callbacks that aren't needed can be set to NULL. + * + * NOTE: These callback pointers will be reset after SDL_GL_ResetAttributes. + * + * \param platformAttribCallback callback for attributes to pass to + * eglGetPlatformDisplay. May be NULL. + * \param surfaceAttribCallback callback for attributes to pass to + * eglCreateSurface. May be NULL. + * \param contextAttribCallback callback for attributes to pass to + * eglCreateContext. May be NULL. + * \param userdata a pointer that is passed to the callbacks. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EGL_SetAttributeCallbacks(SDL_EGLAttribArrayCallback platformAttribCallback, + SDL_EGLIntArrayCallback surfaceAttribCallback, + SDL_EGLIntArrayCallback contextAttribCallback, void *userdata); + +/** + * Set the swap interval for the current OpenGL context. + * + * Some systems allow specifying -1 for the interval, to enable adaptive + * vsync. Adaptive vsync works the same as vsync, but if you've already missed + * the vertical retrace for a given frame, it swaps buffers immediately, which + * might be less jarring for the user during occasional framerate drops. If an + * application requests adaptive vsync and the system does not support it, + * this function will fail and return false. In such a case, you should + * probably retry the call with 1 for the interval. + * + * Adaptive vsync is implemented for some glX drivers with + * GLX_EXT_swap_control_tear, and for some Windows drivers with + * WGL_EXT_swap_control_tear. + * + * Read more on the Khronos wiki: + * https://www.khronos.org/opengl/wiki/Swap_Interval#Adaptive_Vsync + * + * \param interval 0 for immediate updates, 1 for updates synchronized with + * the vertical retrace, -1 for adaptive vsync. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetSwapInterval + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_SetSwapInterval(int interval); + +/** + * Get the swap interval for the current OpenGL context. + * + * If the system can't determine the swap interval, or there isn't a valid + * current context, this function will set *interval to 0 as a safe default. + * + * \param interval output interval value. 0 if there is no vertical retrace + * synchronization, 1 if the buffer swap is synchronized with + * the vertical retrace, and -1 if late swaps happen + * immediately instead of waiting for the next retrace. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_SetSwapInterval + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_GetSwapInterval(int *interval); + +/** + * Update a window with OpenGL rendering. + * + * This is used with double-buffered OpenGL contexts, which are the default. + * + * On macOS, make sure you bind 0 to the draw framebuffer before swapping the + * window, otherwise nothing will happen. If you aren't using + * glBindFramebuffer(), this is the default and you won't have to do anything + * extra. + * + * \param window the window to change. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_SwapWindow(SDL_Window *window); + +/** + * Delete an OpenGL context. + * + * \param context the OpenGL context to be deleted. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_CreateContext + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_DestroyContext(SDL_GLContext context); + +/* @} *//* OpenGL support functions */ + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_video_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_vulkan.h b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_vulkan.h new file mode 100644 index 0000000..e91e148 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Headers/SDL_vulkan.h @@ -0,0 +1,287 @@ +/* + Simple DirectMedia Layer + Copyright (C) 2017, Mark Callow + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryVulkan + * + * Functions for creating Vulkan surfaces on SDL windows. + * + * For the most part, Vulkan operates independent of SDL, but it benefits from + * a little support during setup. + * + * Use SDL_Vulkan_GetInstanceExtensions() to get platform-specific bits for + * creating a VkInstance, then SDL_Vulkan_GetVkGetInstanceProcAddr() to get + * the appropriate function for querying Vulkan entry points. Then + * SDL_Vulkan_CreateSurface() will get you the final pieces you need to + * prepare for rendering into an SDL_Window with Vulkan. + * + * Unlike OpenGL, most of the details of "context" creation and window buffer + * swapping are handled by the Vulkan API directly, so SDL doesn't provide + * Vulkan equivalents of SDL_GL_SwapWindow(), etc; they aren't necessary. + */ + +#ifndef SDL_vulkan_h_ +#define SDL_vulkan_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Avoid including vulkan_core.h, don't define VkInstance if it's already included */ +#ifdef VULKAN_CORE_H_ +#define NO_SDL_VULKAN_TYPEDEFS +#endif +#ifndef NO_SDL_VULKAN_TYPEDEFS +#define VK_DEFINE_HANDLE(object) typedef struct object##_T* object; + +#if defined(__LP64__) || defined(_WIN64) || (defined(__x86_64__) && !defined(__ILP32__)) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__) || (defined(__riscv) && __riscv_xlen == 64) +#define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef struct object##_T *object; +#else +#define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef uint64_t object; +#endif + +VK_DEFINE_HANDLE(VkInstance) +VK_DEFINE_HANDLE(VkPhysicalDevice) +VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkSurfaceKHR) +struct VkAllocationCallbacks; + +/* Make sure to undef to avoid issues in case of later vulkan include */ +#undef VK_DEFINE_HANDLE +#undef VK_DEFINE_NON_DISPATCHABLE_HANDLE + +#endif /* !NO_SDL_VULKAN_TYPEDEFS */ + +/** + * \name Vulkan support functions + */ +/* @{ */ + +/** + * Dynamically load the Vulkan loader library. + * + * This should be called after initializing the video driver, but before + * creating any Vulkan windows. If no Vulkan loader library is loaded, the + * default library will be loaded upon creation of the first Vulkan window. + * + * SDL keeps a counter of how many times this function has been successfully + * called, so it is safe to call this function multiple times, so long as it + * is eventually paired with an equivalent number of calls to + * SDL_Vulkan_UnloadLibrary. The `path` argument is ignored unless there is no + * library currently loaded, and and the library isn't actually unloaded until + * there have been an equivalent number of calls to SDL_Vulkan_UnloadLibrary. + * + * It is fairly common for Vulkan applications to link with libvulkan instead + * of explicitly loading it at run time. This will work with SDL provided the + * application links to a dynamic library and both it and SDL use the same + * search path. + * + * If you specify a non-NULL `path`, an application should retrieve all of the + * Vulkan functions it uses from the dynamic library using + * SDL_Vulkan_GetVkGetInstanceProcAddr unless you can guarantee `path` points + * to the same vulkan loader library the application linked to. + * + * On Apple devices, if `path` is NULL, SDL will attempt to find the + * `vkGetInstanceProcAddr` address within all the Mach-O images of the current + * process. This is because it is fairly common for Vulkan applications to + * link with libvulkan (and historically MoltenVK was provided as a static + * library). If it is not found, on macOS, SDL will attempt to load + * `vulkan.framework/vulkan`, `libvulkan.1.dylib`, + * `MoltenVK.framework/MoltenVK`, and `libMoltenVK.dylib`, in that order. On + * iOS, SDL will attempt to load `libMoltenVK.dylib`. Applications using a + * dynamic framework or .dylib must ensure it is included in its application + * bundle. + * + * On non-Apple devices, application linking with a static libvulkan is not + * supported. Either do not link to the Vulkan loader or link to a dynamic + * library version. + * + * \param path the platform dependent Vulkan loader library name or NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetVkGetInstanceProcAddr + * \sa SDL_Vulkan_UnloadLibrary + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Vulkan_LoadLibrary(const char *path); + +/** + * Get the address of the `vkGetInstanceProcAddr` function. + * + * This should be called after either calling SDL_Vulkan_LoadLibrary() or + * creating an SDL_Window with the `SDL_WINDOW_VULKAN` flag. + * + * The actual type of the returned function pointer is + * PFN_vkGetInstanceProcAddr, but that isn't available because the Vulkan + * headers are not included here. You should cast the return value of this + * function to that type, e.g. + * + * `vkGetInstanceProcAddr = + * (PFN_vkGetInstanceProcAddr)SDL_Vulkan_GetVkGetInstanceProcAddr();` + * + * \returns the function pointer for `vkGetInstanceProcAddr` or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_Vulkan_GetVkGetInstanceProcAddr(void); + +/** + * Unload the Vulkan library previously loaded by SDL_Vulkan_LoadLibrary(). + * + * SDL keeps a counter of how many times this function has been called, so it + * is safe to call this function multiple times, so long as it is paired with + * an equivalent number of calls to SDL_Vulkan_LoadLibrary. The library isn't + * actually unloaded until there have been an equivalent number of calls to + * SDL_Vulkan_UnloadLibrary. + * + * Once the library has actually been unloaded, if any Vulkan instances + * remain, they will likely crash the program. Clean up any existing Vulkan + * resources, and destroy appropriate windows, renderers and GPU devices + * before calling this function. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_LoadLibrary + */ +extern SDL_DECLSPEC void SDLCALL SDL_Vulkan_UnloadLibrary(void); + +/** + * Get the Vulkan instance extensions needed for vkCreateInstance. + * + * This should be called after either calling SDL_Vulkan_LoadLibrary() or + * creating an SDL_Window with the `SDL_WINDOW_VULKAN` flag. + * + * On return, the variable pointed to by `count` will be set to the number of + * elements returned, suitable for using with + * VkInstanceCreateInfo::enabledExtensionCount, and the returned array can be + * used with VkInstanceCreateInfo::ppEnabledExtensionNames, for calling + * Vulkan's vkCreateInstance API. + * + * You should not free the returned array; it is owned by SDL. + * + * \param count a pointer filled in with the number of extensions returned. + * \returns an array of extension name strings on success, NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_CreateSurface + */ +extern SDL_DECLSPEC char const * const * SDLCALL SDL_Vulkan_GetInstanceExtensions(Uint32 *count); + +/** + * Create a Vulkan rendering surface for a window. + * + * The `window` must have been created with the `SDL_WINDOW_VULKAN` flag and + * `instance` must have been created with extensions returned by + * SDL_Vulkan_GetInstanceExtensions() enabled. + * + * If `allocator` is NULL, Vulkan will use the system default allocator. This + * argument is passed directly to Vulkan and isn't used by SDL itself. + * + * \param window the window to which to attach the Vulkan surface. + * \param instance the Vulkan instance handle. + * \param allocator a VkAllocationCallbacks struct, which lets the app set the + * allocator that creates the surface. Can be NULL. + * \param surface a pointer to a VkSurfaceKHR handle to output the newly + * created surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetInstanceExtensions + * \sa SDL_Vulkan_DestroySurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Vulkan_CreateSurface(SDL_Window *window, + VkInstance instance, + const struct VkAllocationCallbacks *allocator, + VkSurfaceKHR *surface); + +/** + * Destroy the Vulkan rendering surface of a window. + * + * This should be called before SDL_DestroyWindow, if SDL_Vulkan_CreateSurface + * was called after SDL_CreateWindow. + * + * The `instance` must have been created with extensions returned by + * SDL_Vulkan_GetInstanceExtensions() enabled and `surface` must have been + * created successfully by an SDL_Vulkan_CreateSurface() call. + * + * If `allocator` is NULL, Vulkan will use the system default allocator. This + * argument is passed directly to Vulkan and isn't used by SDL itself. + * + * \param instance the Vulkan instance handle. + * \param surface vkSurfaceKHR handle to destroy. + * \param allocator a VkAllocationCallbacks struct, which lets the app set the + * allocator that destroys the surface. Can be NULL. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetInstanceExtensions + * \sa SDL_Vulkan_CreateSurface + */ +extern SDL_DECLSPEC void SDLCALL SDL_Vulkan_DestroySurface(VkInstance instance, + VkSurfaceKHR surface, + const struct VkAllocationCallbacks *allocator); + +/** + * Query support for presentation via a given physical device and queue + * family. + * + * The `instance` must have been created with extensions returned by + * SDL_Vulkan_GetInstanceExtensions() enabled. + * + * \param instance the Vulkan instance handle. + * \param physicalDevice a valid Vulkan physical device handle. + * \param queueFamilyIndex a valid queue family index for the given physical + * device. + * \returns true if supported, false if unsupported or an error occurred. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetInstanceExtensions + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Vulkan_GetPresentationSupport(VkInstance instance, + VkPhysicalDevice physicalDevice, + Uint32 queueFamilyIndex); + +/* @} *//* Vulkan support functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_vulkan_h_ */ diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/INSTALL.md b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/INSTALL.md new file mode 100644 index 0000000..97e4ab6 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/INSTALL.md @@ -0,0 +1,41 @@ + +# Using this package + +This package contains SDL built for Xcode. + +To use this package in Xcode, drag `SDL3.framework` into your project. + +# Documentation + +An API reference, tutorials, and additional documentation is available at: + +https://wiki.libsdl.org/SDL3 + +# Example code + +There are simple example programs available at: + +https://examples.libsdl.org/SDL3 + +# Discussions + +## Discord + +You can join the official Discord server at: + +https://discord.com/invite/BwpFGBWsv8 + +## Forums/mailing lists + +You can join SDL development discussions at: + +https://discourse.libsdl.org/ + +Once you sign up, you can use the forum through the website or as a mailing list from your email client. + +## Announcement list + +You can sign up for the low traffic announcement list at: + +https://www.libsdl.org/mailing-list.php + diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/Info.plist b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/Info.plist new file mode 100644 index 0000000..453c146 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/Info.plist @@ -0,0 +1,50 @@ + + + + + BuildMachineOSBuild + 23H626 + CFBundleDevelopmentRegion + English + CFBundleExecutable + SDL3 + CFBundleGetInfoString + http://www.libsdl.org + CFBundleIdentifier + org.libsdl.SDL3 + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Simple DirectMedia Layer + CFBundlePackageType + FMWK + CFBundleShortVersionString + 3.2.20 + CFBundleSignature + SDLX + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 3.2.20 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + + DTPlatformName + macosx + DTPlatformVersion + 14.5 + DTSDKBuild + 23F73 + DTSDKName + macosx14.5 + DTXcode + 1540 + DTXcodeBuild + 15F31d + LSMinimumSystemVersion + 10.13 + + diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/LICENSE.txt b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/LICENSE.txt new file mode 100644 index 0000000..23abb73 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/LICENSE.txt @@ -0,0 +1,18 @@ +Copyright (C) 1997-2025 Sam Lantinga + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/README.md b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/README.md new file mode 100644 index 0000000..68b0923 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/README.md @@ -0,0 +1,17 @@ + +Simple DirectMedia Layer (SDL for short) is a cross-platform library +designed to make it easy to write multi-media software, such as games +and emulators. + +You can find the latest release and additional information at: +https://www.libsdl.org/ + +Installation instructions and a quick introduction is available in +[INSTALL.md](INSTALL.md) + +This library is distributed under the terms of the zlib license, +available in [LICENSE.txt](LICENSE.txt). + +Enjoy! + +Sam Lantinga (slouken@libsdl.org) diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/default.metallib b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/Resources/default.metallib new file mode 100644 index 0000000000000000000000000000000000000000..10d8cb4f44c269da4e21412f2470faeb767fbfee GIT binary patch literal 33609 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 Ba#a8T literal 0 HcmV?d00001 diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/SDL3 b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/A/SDL3 new file mode 100644 index 0000000000000000000000000000000000000000..c4bf621b07639ec89bcdda4bd2ce01d7bd73c60a GIT binary patch literal 4516064 zcmeF44}4VBmH6i+K~aM*Qb1av#6Pr&6(ts1qEhp424-|dQ4=8o0tO<~KcOL0=^r3C zNt?IhSZbw9+qFx(>u>3H`;+cg7TdMXBq0g^6F~lo{P7PNq7Xns_+#exJ@>syCLsiB zcl&Gi6Fy|#z4zUF-o59Zd(OG%o_p`Qw%`BJ;cz5r4#%ZDlO2v6hvS9^M-sl0v{atN z!wyG!#(qLq^4I&X7X!T*=*2)U26{2ji-BGY^kSeF1HBmN#Xv6xdNI(8fnE&sVxSiT zy%^}lKraS*G0=;FUJUeNpcezZ80f`7F9v!s(2Idy4D@247X!T*=*2)U26{2ji-BGY z^kSeF1HBmN#Xv6xdNI(8fnE&sVxSiTy%^}lKraS*G0=;FUJUeNpcezZ80f`7F9v!s z(2IfpW(;gT{b3s$|1~!LJ1*gGIDd0L<8YKa($tqe%WvNlhhy5bT-T&rmDKrXdV06< zKBUT@b%21BFPSyJq$6urcuTIg-lcE8Mg=6!XFL9-I7&Mr0&iZ4|FL=PNnPQsJZ{6e z%*qmv#|zM=QVC0&<(~y_+U!|R&Ye}P;+@-@bJl`qqs7r4SEczmr+x+VN{Z(^{kZ+U zYyEOkhp0E7OG#2si6^$#O0^5~m^Q7T=;?VK2HsSW&-xZwYM|E5hV zdhF{3)1I1DGW+QnPt5{;=l0J2w_&R2=mHBuJRXO4Zv7Ozf+uIpnScv8QTZ_Pcoe(zpo!JBL~+YyhSAD+MG{upV&`|zIMp&gJ z-ZQ*ev!@jnOV_G@UEwX8maft#S+5-u7akD*cZI_-J06y&@PTCz)U;_%BiBfHGd?^?VT_;UBEdS?^6$l#1qG@mD=$Oyuw7n z>x#e8Z=|ctVR)|mlXznNtkjNQd)%sV_T-#-C0*gQZb?^}m)J!l-UVJ-2QzU6*Z0P2Rgw8NW080w zJcd-a{ULl*Aa;dU>a^gkup24yM0k9xJ9zW_h_&wEWsJAr#rc55F9P12Z_X%I?K-D^ zHoU<$kkWJEbwZ(yznL>iW^@a0**#YMmfONi;$7<31ztO-ZsFxju;2~;o>ffZJ&)hV z=FzR~|GKt!`gRLmh9xdlzC?Ihdr2!G{N<^qik^-qcZFB+u>~)&6BFsVD?H)LZvLiC z^Lp;P*X8u&#vxy41xoGG`z^R5i>6Vy^X4#wZZXswa`Ls(kvtuIrXnWg<8hwyPsGJ&{-mt+S&r|<wuH&zU)^==`5h zuYr6neI_aH(o6 zRowlDI_I(5(|H_x288wa9nbyu&ME00yn5AM|4wi}Gx0)jeX~ktJlQ>5^{O52bVBXp z;ED_O?*slB#UZtk zC*ylWPvg#*JNG<$hbGWtKM4GXW)**PPQk1m7;HR;-43iVN`H~><;fR>l=gG;&9`*OYpa0d&mgGsKUp+m=B#2XZ<&~9o@_j7Oq&`V>*(ho{a(`Dq1ztq`uciadqZQM z!=TZWM&L)7$(k-Da2kV-C$w;;JLKQ#4&}Y&4*B+bL)0YFI8bUbH0a+M%zGddVk^CS&zd}F<8TXtgG?w7Vb z*3q^i+VJrqyKNbhjVZ=dt9_5fQl))Q@Q(Jq-d&cvRF*y~FbTU&*J^X>hQOJm1*4)H zsIfcLXE~Oog!CcN-&yIc@@UVmKlc)GU+C$X&fu&Ke~{KT-B73xD@!`}5=}8(+q~vcP#gxu^`N*K z6mM&M^pHaF>p_1w=&R1&#M>V&ydYu3wUoif^hb=F<5-L2JU9y8bRa=q5zE@*I@wN7(W z0+CGHa*e|NK0BreYe6 zevz8ev`TQLn%3TsvVOeL-i~cDYXgTaExFp26=u9RD=u?u4Mr^N%&zqxcV>nIZI|lL z9t093=cFVjcjr+WTw3+#MS5 z73ucVuFSTqu<^RI#cBHMUFH#5?#g;Mdz1ci*AAC{-^V0x03l}Nm*wB5O zT>7dim)7bG`s+(3yR;U=tkPGxb{G}acZX7Lh}F3&_KpvIcSKAdmgDdiJf7w&*y7V) zIp|G(d~o>|m-#V>Zi3h;Mri7WaTTdwaG7TbA8=_0o!Z+@?XVH6^H+D!ZB;ve=`E*9bsxxq>H9R~8Tipe9&dfGzkl3FLrHs#Nag}Xh z>>lGw6Zo6!%4ATs@qyFkaqYBT-Ui6%D-ge@V3X9w`m|p54>=j?@GHLAOF%(KeopK4<1m=|$ZQ zLuzwo)|kyFck1q%?1)}|_M8T}%!sffSLP`_B%?Jx-b1MmNF#YL#IsMxkRLE1w$5Ep znH95|*viXq8Rjus0B@<2F`ov2=oV@LLTVZFAVl!c-ukjtywlnk5Ibbl#|K0^|1C5J zE1Xyi;FvSBQZay1O1ZVQg-du}Xb$NMd*z{B+=E0dQ7>BooH35?5-i_F z&^Wo%rMs)0=8==IKR4s3GV?f+N)I&i)}@8{UcJ+dWF9kKBf*gsGtB1bVS?_!p|gr5 zw737nSbb4Sj{G`v(yT|i^%!YA>~|Ba*mUbL7sAMK2Wrpy-*B5dfZFUXZz;*VFO-tQ zn>2Ui{XVX&wK6_W+zsTu&GJa;>j^~Cy-3-^?(EYg>6xd%{Csn5)|LeR1ePbbW0lzr z{*O^?5~U_&(&{PLA@t!v619`bOBR{5(?m(FyI_k`+Z5-4!=%CO?JYDvD@APvNPi2% zFMiRjZL#CZ zhggp=?m+q*Bst9EW?r4yCj54bGrQT)U#ix9Crv+;xcTHhSJob9_JV3s*T8O1!PtCh zE-eDP)yux$7K=fCTG({KXAi<~`wPQu8Xp>Pjlp0H=B@Sy9~tZ|cq~oHM_)nAXTAsf zJ?hi;mah%w)#>i-K4HFL7_Mtu;oasGzr$s|N$jXg%eO zCx5Z}PvKMD*Zrm-dbDWErErsY!`T^EP;0l zkkJsIu>@WPtbtGKW#1+#aH_BV>?8t-0xvG>PFb=pIYHJ9)&t@WEwWCO!k%Sa<2h|{ znU$8TJFSNcd|}eC$jD}Ln#W!oMyeqx)W3&`l^KsOV)j#<}aan zR>RALRdmR@fmC{l5^oh9`kp1;#B1IiIgnJydrP`m!ma0DTdr-0W>MT}D!KMwwp5)4sx^yEGQp9H=& z0C~34Be1$X74yXaiF2v?b7JnAsZrDevL}t)0J%d`c-*QmWLFXQh@rE4AcV zsU^=!EqPXI$+J?CXX%OZtTisrN-tWT4O8-Lbr*SN4q0M}vlhhJ=md?kL!3bgBF=0| z=n!XCx7*@udna+$A8DTbPLxMG%sim9%cKA5Dvy|aZ%{I+5<#K0 zbT5roiZn{l9}rM0MK}px)L%K|)7~myYnUISFEt{S(3EV!6u#RW@;jHg4Y72{rSZSU zFzcOKR7BGsq7(R{LEg;MK_6<>UJT3^tI#GW53_K&Si6u^F( z{OI7g{lFb0UQn3W-Ytgt3C)uBGPyz?yW))n3;SuTK}(v|BxtSwjp$4fW25e(ZHa9# zn2DxX^7Pb=5L+r?hHO9io;QFfwao zNngovYnDIT%Y@o&_MANU4IQi2EpLj&Yie}C2dNGZ^Aoe#9SfHX@x&_qU*Pq4`}L!| zw%+-jBwuYOkC)_zMo+_G;LTm>DQNH()MbSi$0p_F-@5QCi(_sovnY?s5HDFMmCDa6 z`DW873ZbmJPaf1upJB`)3$oT)r53HTDq3=j-J~ztO&P{_Z?(U>xhd7LIF<*rl1!_` z{sX@9a7nVq9O*7!Tk@z^TQ~163jAW5)x4imKr#$;$7=Ml+xg^tpId`9y?@p&@}*xv z)203lcVz!{?nrBT)71h)P*iNgcmx>C$=s&4Qkz=Ei=h3&kQbpb1$OjSqJ>@bi^U%- z1H9KPpDvoRxydlM1zk*wTw&%sBgF<7bY-~B^7*`W1{b6UU4uzn1}8{!*Ot3UrMQFO zgpS}OJ6P*lA}?!QFRDBt*Nfgz-V$%dZ=+0W?C3_dRbU6tHYcr)|#y5U&$QIYc44Dn*IvC>~%h5EIuoA74-iz zEm)?P_rcwLOiKF1L3-I~91Xp}1$E;>H%Lyjk!p8Ao11A245_ioeYL|~4){6BT3Y2a zF#sL;y#VtD{b*3fyusH6O)j(58&nlFawmxCdbWU%y(+bBd7R4!p!J*HtRWV9zM-1u-b)uE=AWnur#(O+4hREey$D!aZk(lik8ozh;6 z1db)U&Gp`(>IK>-ec}$5s~$34D}$~j7;1yA7wPmBjmFZ?VgHU}w(Q5$1#GJ!l|ev_ zsqqA4Q0Zl}#g0ORk)@YSCKCO6^57K||FM^2V!Cx4pKc9oDQlhcslSO2KUjEZlvDo4T%alwh4-tW{NWEZ;!eq|n zFuQ`9Bf7-uK#QqeW7R-<)Bi83^ExrKLTe-?Ffh_+ z>w^oyD#8pOt+`OHIg`Qe@(bm9s4uX@0wm*7)bGpe0qW0FBVy5fn`r;jLU6)puu{}$ zxcovWziAww`3#?dQojP8cL5E}Y57{UqQ1CV^xqCEK(ycf)GmxqOf!EX<7+ke=08d~ zi}6iRARw;`FuqbR(3*-AZPFfdWe5>7*yM=Nns%W=&zDhZ?TkP)b+Un;qtk#=HoaRAnKo#Dg(*NUH?ZgRRcg$x0aeoxsuf!GG>JxFrw&ZTBFgop52E8Wv zF#mL~)lO{Od$_;o?IT%MbYpdDqZ(+TO{o$&MkH&GxzpXX7g!zdL1DY+e$CP3>@mxw zW5{xCk6BU}^D?3M4=ws_lwOQ8WrDSKe~pJGpmb-rgHzMJ!Ks72!MwD^r$wkNx^D4l znc6P8XYpwz50sH_@o7tZoCZRZGb^_Ew9^;#u05i2Y@9>R;VIMkZde8^rypx`t8@%uxj|twT1fW z2u9jwp#p7lpAo?;-3lFLRnqZSU}zw?{>DG(z*W$kAc0(5TTyti}ku&!T7i`z}F>lFI*VBWGkB zIkg=KDVK$B3$8mB@t9Y5f|t1ik>u#A_IB!J|E|KS{pFQ}-Ju6Gk9ie!A#0LdD7H5G zEbq+IvC7EdVHyu@OW@#HXLhBb-&b$dtHm9~WvKYP%6H_oR-K=N&=w$wA$OLkVOdy|> z3FH8?emKa`jXxq8?fK)^z2;Lm-i!(HMf?KH7LU2lT+jMK<7Ir$Wj30-yyh8zdV^1~ zc-dn7ksfCL=g(3rmo`Ljq~@1~zO<(4>T?obgbG@cox!}(-k@(J7KFjh;M6o2z3>jj z@nyo`*UkE@IyITs%R~ShmT^cgmwCF%J+X5pVaj7eDZk-0=yI)Qq1l{DEoU*=c7?qr z?glpN!_NxjY;1gYG@K{s3bPs#-|t5tGudv!22 z&|DaoZ{$OmbS5;)p$;&-G_%TU#v1*66wb?vZj*~LZhR!nU05fKhm8jt-DGXLQL^1f zHbsjWO`o@0Yi0GBbuP1kmOh!Iz$RMKJNdVCUe8+mL0?3%&)f{1xy`&%YACiO^RybH z4W~(~_l8nS-JyY7Ylb@R38k!)?ll&FBCJE1iC)cNEG`^Ql47wl2v|He24smS#(JDc z6O*Y=gfEvor~x42rWm!J-`?MM}v7O$1H42XE-*zUuMnPK>SIP^g}Vi93|o9>kEvQ9=(l{)9P$h#n!Mg}^j- zMjD4{JI(TRAi0CDOCe|QWdZ0k59qI~FGon~&;LfOIziWRUqKy4^}6yc`tvW7pIR@fct_tP~)9VhfOXC#GRZ=^53xsg;}t_~uG>%nO`{VT&}39fB{{b%)zU3$$f zhn}%tui4MzuwHW*hVyg_%Wy5MwCw@Hm{CA2bm~QYuBoyD{cg1b13yc^sb>t$k_4B2 z^j%1~)MJVruPNQ9z0cFDt@p&Ld?+1vyd?c64baQhV9E%bPAMMhGk1ISR~o#@*awsI zN`2Wo=3RY%Xuzf3?5*>z#M;2-7-jk=VSc7AwboL+R(kN9lS$NY?TG)wRk z6+Ff7p2IGEGOj}TAMuRwJmb8WhPdN1(soKOA2^`}mU;Q+a6r(mb%Fm=Dl73o3pAecPX*b0T?Ii3` z?5^Lv#CSuVuJYKT3glH&AT(Zsl)zA|Mr*-_?98rNDCY9&H*9UU3waNFGnL^T%^eM4 zXEv|YWOOjj^s?!nSEMdtEv<&)`VEU%v^ek!c3|iT0$FQO*-8;xtKH_(W?(dZv15Hs);zt*A*r7?dFo2E z47d^gjAg#BLX5E_H-lP#?wbrt?4Z&fzAD4XokAC+P4DXp`W+IQJy?F{50T%w>13Fc z%FpyPekKeEET~V>Gs{aUu4jgp@F>2;ZPsCGcCBKhsz; z;sM<9A}Puddbh6V82(!?6B27UDdG%T#M!@-yrkE&_)x8;mpyY`2() zU`@ZVQhGymQ-eDgvdPo~!_Qv_0e+U}PB67gI#<6D1fjgmP&vQS^7)~lK84fZQ!PnCf^|F zP$@4hS1Ef)d1jMI#DPQ9kCf}i@mLa|`0 z->?55SR3tVAmJ1VeSU8zv?6kUPS~mEuBYg6?X^bBi>P|vT@ zGnNV-7+gE_N%i{VQ@m3+$ghPa;L4eNltBg!)Jp?yRP`-nd=*iJqTzPDx=??DfmOg? z(QRK)c}6?76B#Py3-zO0sp>bw)NOQHJylpM3{N`GrRUcn4L4GrN*C}~6hUmht8(H$ zkpGh4pXcj>b%f^`f`V=cQ@G|(^Y_RQlBwWP3ip#Z^a#MBH9Qk4HrjE7iZp@#v=N`7 zR)#*gO=|c>1!3|UJ>LbQ7J#VM#M-Eud_ZQ{PJS3(1CrPC#VU*E6umrw3eqEdX>@j# zs1B`IyR93JWdxr<>+@6wIJuB)M@TORbO{DoaX;R z!Z3vCw3c-};W^&y28QVvKeear{XTq+wxY%j{KyUrJwrgxu!uFoqT&oisAN~v&r=aR zPc=k%su87^PeqZ9PB?>uUwIBK@|bHyKjr(5C6O0_QOCt8RyGHkw5r0`2hmkz!znsuNxNq^2qa`07AyF+6|-_h!0;fB^s z3{0;|kJD<@;DJ8^JLnRXZt;IL%Y^_e)kIN8aH{Aedl5*Y2;(T_T1|YXOg5b6PD>k+ z@rxh4o-y#`YQfP^heFlxOkyCR-!FIyE{CqL1H)e-VEob6PDWg7C*PJK0jPYW^&I2o z$*d}vSK4$7wl}G?SF7=AwM3+LY^3nAS0aWYbpk#54r_RoP3wn-vY-wO{EN~VUX?b{ zxtE9zvJmE+I5W4Sl`ogDpz8gKSm{RK7tP|8WD^=7l}ciJxwFi*L@(E=M$UDw3VG<|Nkp9KoAvTjC|l0!)S%GI z#Rl!XZmAU1%l8q%Dk&XtPiWK?_lEA&;kd8YOULLnicvH8Y(>jr_{(jD%aQ|%5-GAY zY!%re9DAt@Kb}gx15Q{HRaIf}&14jIZ*zOpPU+%4<*Tf|Zj;!K1plV7dRpp1ew+tU z%#P_b%@uI)y>Q`;?&f)b=RufV+dJ@y zHa+(=IeDMEn{UCUdGVG?KV#>8N7BK%6N8~Po_Z9MoC_Cp{&GN0|@|}+pzoWi!tZ=Np@XqTC@75QN z`l2ULo#M+rpqG!Mmwo02EH?GN>|HXLxBbo@%zNy>@PiWI!zbnEv|vpUj06-p!5$T{ zWLSEBhSKu^rO2}+tqB)MC**6wiE;Z5x8TIhazENi^ik|iaeE#F#(Q$nH@9EABMtDk zUmI5HR}_zK$8l&Y<$(OA9@Gcb=@}6{x00`b(YcLCr?y4{Yw`%Jp`HuFMx?R7$^=Pt zmmy+AqEH58F*hQ`m6|5S>uh~oB%>F3wBG{mV{u`md zqeM3+s(#E{P^^v8aH$|~JzZz3)=tr_`G8WcMd&Hzn(Y%Pf>lW_-Bn|tUGrSythmHL z!{$w8OO+;X@R8!B1bKO>m|SDkzU+7O@}2aibftyje?1L%(8A+_sn3oJrYv@;?Qy$| z#RtUC)n(QKalf&6zlv#fH1H~8@j+f;+c_i;m$t)*9K9@#4nt$EqmZ%LX!yVzRGJ$d zP|fs2&)5w`ZU;MQ#iD#46XMt*(c6i&+K7{hOPk6gO8CdbERqr~J@BpnP(pmtabh>2 z02Ce9Gqy6n0;~I7A$O?}XkA2&*ShrkHxULO-i^+RD*=~(PZ}7Jz*wf9^aY`>4<(yhNYH0qiT zfvN^dhfG!0fOfGulHPJ_VkF3s5T1Ref2GI#*b{h9X8DNQir*@6`$P2@{`-}dxV@FA z;CE=Y9T=WNz%qf*A0z&qeDeOb*CfC*Vm-&~;)x%h2s^L&o0WXDDYM;v=%O7!XzMfTiw|^l)yxSR=F_=yb$(g*C0c~WoUF~MINS$ zvQVd&9~F6MhJ@`fJAOLgk3yfyU!D^SZKE-;}ZDP_mGC)LmHmaYg&~w6ds_&9|V6>fS)M= zne1$&!t2|m;XaXg^kXM!cudbdo+u69wx!`oJs0{`d6hJLpW#AY2tO_jMND*&hG#8l zxS0=ah)csLZMbMbXo=2qq~V%BOB&LmqklJMGtJ@ zD14SIqPL4UkqK-+KwgBjZTNM&v>k%9{GXDxpZixOZLe34;oe_a(zcqX4CtZj?ZEIY z1UjUx(@wtaUI`#=AF`ffp5WO<+I}fvy!Rw;&t7fI+wa2#5OC6BFnW%>{YW&Y39Y=E zeO8&;1K&e1o|jW};wQcQqGx{5^cl6F(7u1GgFlaD?EWnrANa= z&UUEL7sEuph}lgarsUCokJdL5fbCk}^+f*Kv_AjK7JE3y9@4A-{fX9)zheFGpKK9O zX9tFFmOxki4=q5ce>^X&{psb8Fg=g{T8zeOVOds@w;>OiJg!3}{mZN(KmN~%vi4Qv zUB9&2IdH!n70izIvDjDtO4g5mF6+lXKhOH{6E6wY z64sBuZ70b3@uP$>g`9W&_-m3EhW{5`KaTzb6OxYgy`mw~R;04x?x2jUs`thNk355UO>&Fe$0*l#2tsmc}2qmN6Zzv z6ho642^_$S%v${prOKu^c_p49OrOOfD6P(Jzz-k(1t?wi&_Zxi4!s7I2ZZ@)y>t%BNBg%mOT!@J&)`OLZ^&Dmw zX>OUdPB^Q)$n><4BK;>R&$1k4N}h`uL!8J+cE`QQn)w)J+fwyV8dmWwVyMHJjPuQu ziLKq4>@mwwEy#&Glig2}awhYdc}p0}w_p2?waCT0Oi&RS+ew;5#zkQ z#ci?(F9$r7x8Q3A=KF8a^S9Z?I@UJhi&zmD4P)8z29s5*HLO~#Q6{<$hcLV9JCtKs zeDMlb5o~pKOL-G!mFANbvUJsItzey%<*OAK=vLtd!YP;)-?06|s$CV?(uz8!oZD$d zgKb-sG+ac)uWAxD<(ul9+Ofr_?1t2de!|fi`h6RW3Qyd<%$>bYFP}p%L1SXNt?T4o zCS=Oal_gDjNB<@Gml@0}yYVj*>*l%+|1zs`Vf0=h;(VDW?iaUbxmeFfkSZwhx z7uN#YvCLXjQO*y_Ni8IP2-X^n<$X}2Ji}!5n_4C~sHxSc%$L*Y&IAuLAitVM600bd zBidXdB!)&>iEE`kp_N4NGZRZ*Wa&@`EBt9U+5TpF#(Ow?vqICjSI^i6{`%cT4y7wF z20tR9&wY|0er3&up8GCt3G!Cf%f(xIw4;&K56CC(2ex||qgXZ~wXsx>KN&eUk`qTJ zTn!{Txm7ug;S7Se7>)*zyeu4xe^e2dj${%C4w?WT5m&O?_DPCz z(zI0p@c`c{jqUTUykcpko*%r(c##H>4v#T;XD93Vwl&-G7!yxxybu)T@IYX>C}YgS zK$9>-bh0?%^~kOuDcLsB}r?}XsrLXGnL)ebII4zzBthBf|0hYBF!&-JR7QZj6FD~tEBXZ<2 zL)$0Y1Q3(QjfSJLJ%AuP81MsTp8yQ8e~euXJX-Yp^x__&le-@tu+!CP#aW=Sp zz%k^SVwR9^AuE8Rhs(m<1jP?ekc8*V=;7@6nDDlE8(6*=b+Q8G)Lm;0mYzu7V>x2% zbXMrH3dNgU&WdRqcwNiVQ>7d1mG^_9^VzN=pKn6EB6m`(XOypiHIl^>t-)F==1 zVVBgKbX?b-wN6*Cdv-O2?Vf!D1goAEGs%-`xy2i~fpD%`l9{5GWM)PNci*#e7Ds!} zKG$Q<)-17lc9ZoSv7M)FFzW5ky6BhaIJRkB;$@Ext^hduZO2~$AHmH$YTenKf+|i7 z;vk4e11#x_|eWzaj1p-F;F1>uH1UTV~J(`?aItX9Ht8u|o zl23W#;fi=VgH)9__>px-~*fieF_0tk)|mx%k-ZhpMG8S%|}%`xO<1bK;1UBr%*Am5FRV7C1OC~t z_GYBvZiJ(F<4M6hl!*N8h$U3x$>9z$8HRzgo1vE30s<1DciS7l1312N9b(d2R!)$Q z4I=t>D2e!HCuswlPvcn7?p*Q|;;2Clf3+e6oB3WL?80)#>zIp+a5=`;j|$fje>|7| zL<>I!EmALetDyYc>+~<1Fk5!B?sww#uHX@p}ahmj5SKqd2h|^g0&)=pi1z#RYEBB6b0p zk%}wbp+1kOeEHt`bQ*o>8#ute1|?t*2W%uyCFAv2L+oRJb{fj)NUKZ#b+nE8*{+(47{yb2X+K$1fx5MD&_3#g@*Ep1A;KiEz7N2d~#YisRDh$5u`@-O(7K6uP z0E5>jAAx_K5dMz#PO+)N-Z6npVqP_Qe+PSK1KcEbvrP&Mf8Qz18LRVe#H zWagFNcrDYPT{QEk_{ohNN-$1hhhMwDHNM{L*Q0VD2y@48 zTWyEw?A9ISqeqYMGdfLn$vz?5V+%f%nuz=H=(M90oxYdtvfGEGv0b*WFS~)GWf>6e zZh3q8KYxUBzy4#4cYk5Z_}%wx%J_o>5-H>Bk^p5q%dbWgf2b z4{;(^gXj5;N^0fRasAG4I-3t}7nfdFW}_DaHiFQ(9f!Cy?{-|>(sH+_1_!&$qb~E5 zft~u^P|9W04lSqq&G#@GwfSClUyk`t>0PmE{Jc!fpZnDWtb~Ctk>E9V2UVS$(hHX$ zVpg(8K1W?DQi(AduRB%SvSHNL2z-(jk)#hL=?FiQ-jbxl5^5sE)?ov89&Kl2|0RWniKGZ8 zsXYXT{1wqEm{gz*OTwj0Zp`CyAjNU|sNuA^RO-b+8cQISVBYd%MG}F7ZANB;SL56c zMF2NQM?e6;O!F3SSIR700QXxP$z;|6ag>8^2P+YyiL%o1vWf=wHzTYN1GiN^3rEQ4 zw}%JOG4H78m^*o>u1}`RN$(kD7wNpl{(s_rf zyI%I?6xH`h-^~F7X&E3SZF-9Q&h9G-c(C)!x&yzH)VjmGFJ__4or!)4{jih&9En*i z(aY!$Th<1=0CHWma_W%j+@pp(aOnY->!qaw)`iQlyxIPJCzb%z?_M7DH6L2EJ z83r0{EHqyf9-=S@9>-EH}wh$Sa~)^cWp)ohDr zps~e6pL812j_kV{?LY_kMl%GhA6+B+KG?LSlHVcuBb7`wXH=iy9QLc-fyy*xr+HOG za`1IUndWKCYHSoe1l4U^WRu&Ar9zFW`)HHuSDx`5PY&so46Ac6<4H`NR>lm2R^EQ? zyUIw`Xe~4~r6u@(ivMK;x9y}2*{Tm>&l!CK%JsSXWi!%#0@bn^i3#Pxn#hqPnbphW z_?*{Fm1HNAAb20ItE4n|n7dO-@1*?;-?kPmYG50Kgk4}YV?X@6@_e6(+8)r!YK3fN z2Wu?5^k>UW{$733PJPloaHuZbVQ-a<*)SF2c&RG(^jCVax9R1hXtSV=IjPaIhAB*d zg#oTc3J&;>;Hcl4I~E^OJd1OaES6020lspt{ZuQyz6%xbb@61Zo4bA3^t~HJj5BAhZpl4k13HG zu+i3=SZPz{4PzG$N4fkHlE|7FDb$tAB55>>PgpCsp#j#?ZD`aF^h|h!#XVpq3o!Vo zO`opi3}&^Q5)$4_L@joxU86+QmX??1T5tBSb{mFthd;JJG0+j;ww|{=Ydyz&`@4`l z%Oeu!IsEVB+3x>(H|r&L^W(gmxxq%+oo}s|uxglFt!H3{&t>VP4ZD5u77gY?d<`2t zd0qljhV4M4uRsS2uE@AP3-F-76>gI(@l{`ZCF8{I+EW30w zz+%QzoQsg*TF#Hc8Bc{So(iFQ**l05MKw|D*pbuLVsRBn82YR4Scv)th;y6AJL_jg zaMXGuIAwhbR~)g+&Kd+_^;U9Qiy%X-H`XxNEf#PFgp0f5B8RWA27s7hn(wj)L4-v^ zYyaIkj!gK7lFP1SBLa8%>?SF{`=m)i;hX2hzu9KLb+;)BwJNaFyDu|$-LVy*w$N2ag> zs|Lql5X0b5<`Ik`%%Cw=D-Wodk#rfE)SE84{n{xJb;1Tb2;O!3wNFNFV2G-ASSOe0 zlltBHZGqLLDScWCG*DY~5XCkJimKlmwFuns!ZfAD#l9Y5@FnhINo9X>=jdKEvMF!aPXyFX9! z_2)Pd-#SxpxP5Tq6LDD2sc%@YN(o1QHb6e4j`f-xKOAr_noIn&#F>Pn-)zsM|KN2P zM?9mPHy+P8MQZkpdMW1%l<;YFw)oKKXjR%e&ugFpt&UVKPbVFvJsiIgj3buR1qSH^ z6o?T7Bx}hH1Qf7qqRaRUF*ycOPAyOu8R+HD3P#MAYeu916Ik46U9OLyUL9kQDG>$qT+L9L_M; za0y(A&s^%X(zEv1Z!CR@oyBy!R}QqxThZv8ehml99r1FQT=J}XpLQ};I?V>w*|A zSfG;@O|=l{48AHj)60%YhbrVFXIG+UN^?0OLE6s|<8+>}xXq%TuW&m65!IDtM^vx0 zSw~3Z3d!W~+UmV_;O{BmlBYZ1pHBpSiv`>|sN%|mFO{DJNVHxcsRKMqTsE1F;XKEb zQR-~D|5MU&wp^E^W`AkQ(6C7H*Yx}1)9PfoDvMe;E6vS`d@|d7YNfiPj=SoFLiMuG z%CwWyU7-=>B*m&)!P`d2#mxjC7=d?_^|F7WPNpI$&ad#8n-cUd?m_jMZHgGa`l!@x zr#E>)y@$2N*cw;%2mXCt^O!{rHLlDf98LkY1Falqxls>Hm-hY_KZ<_eyj)K5lUkas zv9O%O!9$Y+<-7&Wohv47;1ImPLFzV?Vw|$Ud=r?QhPa}${NPqt>c^F(s){d86?#1` zRivgKZLbllc4fcs=V;0(uGvhr--CPMsJ((ssnMFtWGQiD^s}l#$lL6m> z8!J3NMXQY1#!!l-6*1k+0bkSxP7Z3iZLx1Ang{O0uBCPO0 zl|vW?yoj3|hhuRz-FE*$U*<+%CT=;0d}d?x5&5bN>23#Q*#mtAllCBg%8E!|`sc~X zlwgD&18OeD4-W^*Jk(@Q7|kdD+xIUnp_O)o z&4yS6>ehHP$ORl6uv4iH<#lR2IrFn%x3}OJHWPy@Pg(y>Dwzm>z$8}>^AZN(F+bvT zSD4@#&clFKti75mUFP=2lKgAH;&FHK)D=GMtYTqD{BJ?;$Sf$K-jx|eka0niVi2nG z*HC#mZNNOM>=*JKg=jLl9O}=TBHz0BUFQdPKM~o2# zp&hk{VNM{MJ5b8y%JDc(zfZUwr>Wo+O_`;;PWa?RhAs#N=jUJ)%apg^IF~_t3-$|2 zx%)40Ah~3gja2NIE4}6kuQ_Xl5)K@Yd$yB&u;o4Dzi}WxJqa?Sw&q*(PgRT}vthn+@h&++^&b#^iyjQLOQoL7mkc;BIUmY0d zy?cr*-dn}9XWsimfcL!8O@2q_h9444+$GQ*)E{G=E24T-K1^oChaxSEOsg7?cuvn zBp`YnY@~R;$J`+E55;TX3l&m8iNm)#66bZ7_-J>D9y?L#k#AY^kEW{`^sCO%F|@|TU&JrvOXt35;=tN-6q4#8XjY4>SJ1$w6>+t{7;a^${Uzg~FDZ3W zWQA2JOFJzYVI9RUb67PI9U3iB8AUoLX4K2yL~XO#T}d~ptMD>4&!0zmjuz)gSZlVc zrmF5xxzH=;S>s%9Ni;7s^H zFeLD#hSsUXGCPnXg(4iVYy6Qx>WE%XwnWylKjZwYWjm^~V#$wUxxOgYGLt4n}+^5ioU-(q~BVRhgwn@lrA@arZqvt>4=(&p)ToihS zx1;AW(88>t-?7;jLeD;I+~?=5N}u{v`1#?d!jB@<1pNHs3+Knr-^cMYj3!(Ze%@mu zXpzsa9=GuGL!LcL^f$1X|8?QVnsbz-#^zR26 zUzLw$ZqM8men}VT1o8dk&mie zsd9QgW`kx|c7y*{zRVhLW>xfSAX#CcqO}79-z9ue7??h@3kJqg5)5R~hW7gZDedP1 z;=gSB)#{ZPgDXxZw4d-rwLiU}Yx^nrH`@M|g!U7@xb{ERwf&U*8*M+1PH_(KUBVaD z{+tLgH?8GwV(B$?DbKcPCSs(Ab#xi=&vywH|Hpb%;ID7A5U* zd0UmnuG9*nqQ5)DNo-sLq_1)q6=Rds{VHZ&g*)h4u98yl9bl{ADwKr0Wfe*Ks^ki; zTS(?!1vbNSSyzgkv*HpvAIHK{)~j(>Qr;4uhVz@Mns}P2Jp$C*6IesIHYKPgI>~vc z91HM(OTC(@Z7CDduve?2^2>eNI@vL8U5&@JPVC05b89XfniibTHR)mp|&J`xFv$1*+F=Klw;R_|r8M5~t*hf78Q<_c#;Umo|e-HooTa6^A# z0e?BW;dor>s_1J0vCtPzftFS)qqxbqHEFg3USW| zsOhV4hxiD@D2eW*=w?h^anUe?yooyCqm$u)S9z2DEbVNyR&>5b7I@$Yr32-N6UW8t zf2;n|`p;NsAl|m}Bc0p!>?7y2?J=_aIsE%4PWvj!@;BSQK3&@P%ZJZt-@(IwgYAn?atjHloMIqs6b9jgG_UyxPB%zAh=33%a%cGQ5P5Ed=R zY>^vBgo7PyGna~63c@LRiC9Ju>iVi%kpO5pS^BEtBwy$O4Ru1I_~3HNon-h-1$*rt zN~+)-_pr>$#rVM<@j?2kuWH*Hn=H^l0mXuUh(I-U^Kk33A&?NLG72+A+~_Xr~BuLu>G9o4nd)pZwq848A1#o|AKI zq}p7&_E{>4tX6I}9_>wbJt&E-u^m2dnOkE8(Z3u`1-)V?Y5=+SZHPaO}>YrOTqSp9!yu;7fv4x5j14xTZv8-PNo!cZkNr^~Fekz5KU_MAv=* zwa1eCK|gv5zpwV;IqM!^x>ln;)$`z;_leF=q zT|;9+X527>m@aS%)^b-_F)_ z1lP8vBLsrBgQkNH_)qW0H62UA$6%+r5vK!N%l9p-(4yZZTf6wcfnE^`A8ZKmyV zR2!>p0KWZ!Tn87u`iaJH^YO0MDzFjgu<}In?d5zlBk7>8z@YDg4LW zZ@E-xJR4fg2!l$0WgVYH|26(g%>;GdLFR19dgwdCWwc#JOSPt#f1c9Oar`VkfOUJ3 ze3jKZOkk{6u(OG!b#=wa@kZBZjFrh#aZ!-P z!!TxrOXNxgzSjm| z!4B?#V8k~0-;aJkM{--{As+5!a@R0>!{G#r=xfw(nKXjx1 z-dOz=Dj?n|xL_V{Tt%$I?_q_!!|~V~x+$3o0*kc-mG5~gpWR=jaTv;jqF9yUi`;ok z&l-X1Hh&PxkQ%TFi6cC!wUQAmrFK-}t~da0WG4Sd$w`%Mwd*yv!LA6h7C3M7B@CmEI zE6c(qSNXDAOGc^<1za}z)QYAe67(`J^8;I4$Xm)#Txe~qh#$`#aDx87tF?2@U~B@DqWDq5>d5J zcfG^k&baEI1Bjq+MQp8j>=kUKK`RhZ%LAu}>CX)o@N6Urv<>_HFi1=HZa=wOJ07Ui z0|%Q=?hf5KC{TOU9m>7yI*KiKhbCUdlM6T|il9VoIM~V)%LLoC5X+&7r+AjS@t=$w z!BB#;-*Naa!u9<&nRWV1Jezjo9o2N5MW5I&}vhl{WRBSMm&)NeZ0v&EH0Zpk^L#Sb*u)JK8?$LxCK$J661uf7pi>O z@A2SR5pI=#A>xwDQT`DCuJk&+{Ko{`fd!>~=k=k|O-?#z2?6}Y*afjLD*Mf?TTjqn$4^VhVvDzuWT&nZ8a^7p2Luw{ItPF>Yj)WX=nl;FiyUmwMR9rj5Z@RumL^ls&J{mBLp}NVwLkz3{@^Mi#Q*V zP_jx(A|w_I=OYs8qtcQIU82$?#BPx_eZ@IbY#graP5xhaGuL@DH$}Irb@84D%(H*6 z2h3QJO`QkKhOABlCO$4QBqzE6T845Q8!T}dA{QktMNOFoY&1R-ELLQK+CxKy&IKSA{Om z{;rDqL3b_au5@v)^E+OYTWz~xo^oY2fbrsgZ|WnDUmGWPacT_33#I%h@cmVJg6?ND z0wsd(XG8}p5p+M3tkOX8Gh$>a5p+M(N2P(}XT%Cs@`!{$cP;3y6c1X^-QfSFH*$l9R2jR9PU%L*Pm{r@AgxX1>wH)ZUA9Tv(<3u z7!O#n>!aVJTkQR+#8HVm)*ID$8>Gf-|M;*>nJ97RAZxhx?-;HV<%|Ki3>LduIZ~=b z6-+s&ID!JBu#6)vqsA(^)yD>)va7(dGxS8Pr7F4PYn%WhzVlKQ`PZ(0&{;#EmtpdR zUZ!=>%eFYZI5RQ5p_DxvW_+F$GLc&&ZGT=V_pn|5K`Bqdl!u{`X-a2*P(ng4Qyzv& zrU|`Fc~C+^FH;_dN~Q_DOnFd3HodHYUYKiTHwnEQ_GTW5j_1R0qk0#6L}0RvjJJg~ zn3Ybm1}&>;Xh(Z6S$ni95VAtC`TwJiaa&N&RWiwH<@j!_qD;f?l4r6}vB+*OX5SkB zJLV2&X064W`HYN@OVsmUPws;yF|#RLLb)Mcqhgpm?=@&Ifhk^0+0&9FbgzVxRaz3E z6qP2SJ}QkbPP;^|5AzRW6LX0;k0*2UnJNuE$KlJKNEaH!SDY;}r- zJCt%4(tWirR1CrU!yY6dce3NU;ZfFUR~;MW6xQ&8YtD3n-$#(15F16!3<;&hClFeO!fQ?F>J_xmO8OzkTV?-d>Ne!nfAn7P#=RD|BUEl&5Y_Go83 z+F7}Sl^LZwyUn6^1J=peZOJ7$F7r(z@SZJ>I_QJhVoIv3;!=5D;i?#K_dnujqyHT^ ziBDs~$P8?wl1P745@|OL;*3e9|4TWqUH)DvPlD46m5)!7(7h5$R%uZAc$uj>@0Cy= zl?IiMzeJ@;NcBIXTlK$@z1#mwPv#y^=39#1ZT`_&A6@)`IM`V#X&ugvq9PgQN9d$w zNuP7HE2Jx(q0}p^sbYr;nt}=%HX3k4@1&(}a%OH~UvDT+<46Eh(i>4p&zQTNnd^{I zANdN}K(=UrANUGB#t>gu7RJa@S2DnteX?Y<=%307g*#Bwnih}-fo|hwIo#&j-=VW7 z8G*C#`391spTSiL1rfs4)=F-+(s&D^Xr`PhakO#B?`$di77n^dS#iWR4>ON!oPDFr zCR)AL5(84Nj?UjE9}fD%;`^z;veR48VEr5>1J*@`-s zEM~;bE46!*i56^5fk34VO(N(u_qiiSQ)0D&LvlZJpU1~q9$Q5`onn_z+nA7XtL5&o zPW+uN3)99GmfpaACbc(UixFr<39b<$Nm4Pdl&eq zs%!CoCYiv131y+vvZtqM_5GJr`y#qdy3R01NLVW^@gPfLE^wa=N!Bm~8K`}_aypAVC>-;cG| zUTf{O*WNoa5}sk6AuQa?Eo$c@{Yb~kd{SFa`E$d`G*_GZBTfW$r_8*B%nwd6x?8-} zJGH9cK_WtP7F?*!+pMHD5L$;MD>=U+Xn!Nfi-^(YjLRdLgJ5AbSAtVq{x=Ace>U66 z^SN5kdPg`=yhrG7KxB=&VDabjII*vIy;>Q>NFxf^fD%g@g6cj(t{z-x5^gR=eRP$l zs#-LhTJ><+aSm)EF+-{^kpN`{t5yFPw>J+soueG@YSrqvT}Yi&ba4lG?aa<70Ul@U zc{ERu53ZLYF9_IjM#o1l{=c$aVYJMO+c<6%c!|IX_95!D08Go z$w+^H&O17Bn0W5EG{(6u51HUtdF26h{h_@~E|~uBwIh(O-euursyR7DoaTJ0Oj@mK zJ*?4PxF(*N0GsxA;*1tmKG9p^yu%1j#ySWr(@Lc1qIfbhQtL}oslgERQHWjiyEa-CQ!t&GId27mhBCyuDW?sm`HugH`lX$-j6<0!M z!7Y-YUu+nElKo@7#@SsF_RRhwfZmmJqx_wCpGZQg}aonyj@K55AqiH z&J_4r`7zTVKY4Ewhs>vG$@z3saz0H<&ZnD_^J!X}`E-*QyFlNNC^^^*wNN54TUE{cvTS$wKv0iK{+I1CRy) zQkPbINY)Sk^cNoS>RV#@blM*oCB))lMJ&`bR6a#7f(uO%w0R%rCm{`rSXh)oy*H(4~QoLb3dj0iA;!pdo4@*SdA~ z7ylEvXQ{t<9TJVd_#5WDUoB6g!D23*5rWYuB;siq&b`dRVlG^Ilg4z- zxns1Fe@34SJwQ;sBf}JSO%Z6cDFTf?8G@iPo5F5F2oi#DFMv}7VaWfaHH=h+MHNis z4=WsyRb{bvfmU^qq6ni*?d~v(A~3Vnza%`sMa^9kkeedGXHhn~YchLd!RRjDTE4?w z_z8#K{Pqu(03`23DE+PyeoXpm<)38cC$BKvF%%M*WX=a%is6nyYZI7c&IbuI=Yxc` z&Ibus0+1{W+-P+E(_i?8zi?G-nnfUF#TYve@Tr~4GjX(CUx)S<$m%wruXgM2_;pmJ z-?;T}jq~=OW=kxjgL<>azFlpg%1)`dmE*C;Bt*a?VaB0p4_8oBs6~5) z!y4?Pyw5($k}8Q?y6v?gzE?N4d_SrVc*fkyjf%XQnlBDvOu`|X#<$5y)1sn zq#KPAs7z_g&ZqofWRxoqx!xrY0^QlfdD1K}F44%% zeLu)fP9T!sgZcL550x&ivD@tK~SAcqS$PY-=nqVIX6yoM^`zg zjn;D};vIKmTEahWB1#_uxT(xcFm56m9|AhH24GDf*GH^6dhin6cW{P$|h<@k+&BC*HkI!b z3s*K8TGD4MiT6nA!!f1NRp66YVeJRlCtcA7$ouJ;}7Ikyv-hTqv zqu$7v!`{e*gYHnnH>g*W?UlYumzmg%kHG6QCMQrilTNG_h@39wy5b_fT$@g*heX8%2<(eGrh#qbrG!u0881>%b zuVlaS8zt&qEI`sfmp!w8wB?5&tm7^-^Jv|12VT!zR$-%c&mDrlp1Wj#DO~~te?51} zkXixY?;C;@(2LK7UThPEa6R+_nUi-!Q1S2MNE^EYtXb~L2>t}Ho}HqfQ5xiJ7L?We z9Z%j?7|-m6wFK^m6FCIj8l51{jcm*7k5y#EKQ28N}RuXxkU(=LzXr2C8Cn~6qk ze3P{~QUPJG`9dwunO)g99Ff4s@pY-^C4}*1UYlgL*N8u0VLse9a1F{ZF*-mQwprP} zh?ihLjFLdh*47?ptnugWVqk2L2(C z2PGeP$LzCE?!Slr%6LbmSxwxZ{3L;no8ij|XCr~|xmOY%$#rgFKRp?}KxJz%s#G%0 zcMRM&B9Wc@q^QG19hlBg9L7fc4RU)~Wa#S!ToR#q|H&=cD{vBJ{PsUxHaO;w$g}wY z>WB<{&Wf31#&{|H>akM#Ho2o=U^kC)lm1!KTkY*^HE4f!qTNrAZf($-_*GEv}%_`0JdEaq4quMP%T;B!i|BGv-n` zZru{UMgH6%f5uSEE$xaiNcqh|u_`$l?@^yF82Ne~ATm7K>9+dx3t60T$Sic|!m=IJ zb>-MhThV=qMhdNK$vy8r!G)=;gATUj_7)F)JfCQGei*`DDMQ$1{KleAGMrKj3#ibs zuCoTOpZZkgalx>d8pJ*URMnB;Ju@42zk)cCX z&(R%7=dUi#w8efyvXxzkjeA$hDky&0%I@;HWMvQe^k2z6MYeb$d8;WtRzh;ze-L-T zbVtQ4;@?Uxh)BgBN2av9!I%#ov8%=K4>IR}ORjdWg+H}qA>zEth2{)BG)o~ji;Nbm zXB&)bEesr?N)QV2xtg93p!XH_JWO^WC7{Wgd0w6&Y__adn&OuT4ffrf>?9V z0^tk3xJRLiy9I0dgZzaA82bUMi8iS-e|`%q@?S#b2lE@j&(BZnzb5dLD^PCdcMrdL z`~XbypWvG>G<4#WJX=dy+N9MLLvM@a*=*(C&?+B+MF)&u0|cn=r@n@aizFHUj6XWk zZS@(Kk<>nEb?SOY%BvXKS0c(gO^Q85I(W;moAQKHx0DeyfZ~ek$fe+|>er7|4E@TG zEG)1OPKq^{xf;o3gv{DC+VlCjDral~_jfL(-h_Q=#n6{j=5EF>GNf65!e^TV!y5Wf zqF$Hrj-X>h#&klY2a{HtATaC4=J6O6ET)1}QW;+tmHL*NlZiuVf0@UZ2b#W5MGlbvxIm zkDLy{8bLua^h>7@u5T+kpveBD*yLM#idBH{00Bk?c@_PyH9MGuFR)IoucUtW1oyS> z@$PZg_$v3-kjEF!cw#0qGEC{-rqD{6RyOUCo1hCcED*kHx-b08`GkcB87n4ao3r`V z3Ico)^%mtT!*Lg_HNF^r3Kvy0K-eEyi&cU@;>|+^Dx2@|A?}(wupTpC_UhIeZ`_y7 z4g&I?FRThuC0L~q{a>vGRZx(&Oer^IEnfBWG;}tc!Kr!%fQ1g(%U=s(AX;ne?~_5p z*0B0=Y1OBst4vd<**(a6u2#Lqp#pwp2Ar)`?=u5#G6T-hs(wQk^3$3OZ5d=5^X3Du zV8CEAhRmX&%c><^zO&9qZ;cjqX`GP~?W!{ztjJ&;l zB;c|c*=FP&?ITrFzn-b;{6+gn)ztSTvOtXy8c-Q;E!!458&Wf$!O^Nt#bsQ5x(rZ* zwv5e6w)nSW+5vGs@QQFWV3XPv@r+S*T| zv(mXcoeWYGB?^#2QQjZp`IGZ`0PBX_$IX0MH7ef*$+uSf$vVlmj$H(<*v`F^C^U@! zUZ?3dLOsbGo4~j2`qQc-bf~jdHA11@rCQY~%2BLUUq*WP1F}K*f$8pwxpboHdqlqXjIjy=qkBnWSB)>+cioHhbYQskHA=F^5Y)8PUWM{XlUDt3XC zo9?FbD>0938)G8nGBfhd_K^xH|J{tdt9_(G%GqY*%=VEADQ`3*%iBjPq#PlU%c}1t zlFk&B6}6q+s(>2=ahI`|r4Z7Z_bRuC7{E5Xb~pg`Xd}6r^ff_ji$(?XBgT0dNIpZ@ ziva`dGFS?b*ipMH=A?rNvQ1O8mN9-Jir$dp3J4I6`1zzxm()|GVOUs`+D_{IM&|PIlCT71@eGHt5b))yfVSjG?re}uj<;i>C>*+x!Pa@1HF&-qyuX~+=@XYDP zRhm$=vJr}!bq3ozDQeaYYNqIx_s?3k_hq445HFK(o#|49tBiLPhd$X`5v^DIaoJVH zobI;rQ~2~?X8c~pHAgD{8q}onUh*EpylR4(OW7Ru{5iCDPPVPA9AaDEoj+5dxLzpk zC%LM9P~4wSH~!X5wQp>a+InrOfkB%^Z#^~Tiqe{`{p)e9olXZKv#PawPgAYUqP5=Y zmitgTgp`ETUj((^PDHe?Zh^JTB4f**nNDM~Jy}C1clZ3307C5S}~TcqkL8tYLI7$>DAo%~f?^f~KjjeZ^jl7Q#$dntInc0P+EK_*9P zacz+4gvD(jOQN`-S==uu4sb2M)dbgIZ*zH8;+WbE?i(kqHvaz4-fiqLlkzdracD22 zDd3)E<=4GiwB@5M@Oc|BegrHH-WT|5t116`&7CjOzopVYMX2V}KRvqC9y*Nh@ORRH zbXk6PJcr%UFYwIH2a7%V*}RPDu9%(gvX$Sh z{5GR=4*|R-oMv-U$BGMFM4X`ykw5UGR7gA zXy@59!B~))Xs3zWF4`EI0C7{edH*d5{M}NX#bTqsAg>9$@^2OJ+OPlU=2&!XEb?Oi zD3H}pyY)}4;HRuuJSKjVKF>=3T1V++y`u2n9F5qtB=WOeGy5l;oM((SS)q)vR=q-i z-Li@UbcjizH5^Km2FJc2ICR)vemy6cxIqUrd#bB~-Hdu~Ek~Z`ynIr4dn*7p$Mx*8 zOKE&_t{PK2ZI7Q%Q+%yWDVMeXVHKa!j`z>Yl!aS3>r9nWXhU;3JAH|Ut~O3TDkPv4 zJ~lLs0?((&c^o|3ukYIXTi1Kg5ZbqBY65^w7--MvPtX%qkh*(kgFr7bbZ3s#X|`&j zdy)ylJ~RN626cAx8^$9LzGb>Gf%o0Ozz2AGp&m)rQ*-BY05Sy)7Y8xJL(wtk&o7@z z;TWM)fYJYmock18pEJvHIgoTd`n^BDE(v^v?-`wlZNn_Sq?QEOxe99NZK{37uYLsB zxo8M*zH@T|Rh!CXJ1zAvs?m73HzlXc@0Egv#?dNsu{|9f8`|fOZlFz(zMt_~X=8d9 z9iW8)eLHIgPAwR7#`b3BVep>bQS6N>mZP5|ox(CR=yiE-k>3tnB|U91KIbb8;z!l2 z+_z%#oSaJudM`(|3Z#)rDc}naGhUHA;Rl??-^|SPi}il&Q`)_H+I-S;lCW*ZAY3l& zEf^iWsc+{g91n-(kq!!g-tZ8q;#OS|>;mFrtut$Dtr!CgKv+uLmX+qG6> z!{yEK^DB>v0ppC`;K&@&`a}jUg1ne2---EPixYR~sAFa~(WELBx}s;Hqi4+Oje$eM zbGG5|#~sh5=h@IKhgJ`D>z~9og^muIbyjQi>d@*Pi_**b`yv^;dvI~)g&NxOC`x>->OT6*fd|(#{gl|9;;!CWmNBh?@da&V1ztj+`(Ql{ z%PT+AbPO-Q#vK{;bm-7&vr65e`ab}RSdk>Ftfy7mn3bKhU&=|smnV_Uqy6DaEtHMd zKc$|24LFs@yuuC`NmePn345ZB*nZ}VJYUz+vQi4$Dc;Dam7znuXZB3AD4kVRJvU(N zi@l+uuRIhwe9x@HS~cqRbDVe|W@%+Q~+ViP6_7p+2KNiZ*_%&}d zRw0oE5_ylf3dMDYxcZ6fCUFfA*OlVBDCs&|T$f7NIpXRsu6%L*NL(t1a{Wlcx=Yx3 z;&O_suegr!r}ih}`dVBUCtVka3mMr~%jMv>t*8WsJzc4>{tH#79tJcM*sAj~kR&9u1 zp{k90YA=)wqic)gGrYFHe2P_7@q$|ELHz96f%3^WQ}!@ZW|}E8R9x$Tnv?p5NvlQQ zd>y}=Q+~5j+^ON;=dSD^Uzjj%ylQ!Z@6-IA z6H|+``5ol ze#`m2&hHI=Z}IzAmH&O^Y@)6Y`EBQC@JsNg$`(aiVb?>??yP8QKi>1Sms=E{y% zBx~6fdGNUb$iB!T@~@5l*(&2q%J{gGD#NMDFjk(4xE{&a+7&hYYE{skQcyS(D#y|x zV-*pcd5BVIqCE+I4!eX=77l(&AvUY56KzCOFuxQ%<+V zr>od)EpLX7cA7Pw)#t7;Kt|bACGM(3vcJ{}#o1jNjhgM~(FR$7iT987-N@S$DQ((5ine=@mz3@`sMjW%nkWbvk>&@qfcN%NZG| zxXWe6c}9+snj+(yQTpni7(M0c>AJG~1K#HJ@-u z%SI&#jfnpZ4_buA=N3gvUVNf@;UX_S&iy*$mKP7WUw6pY<9;1&bRN5BuXmE~00_cj zyCMjmKz&V-RzEEhlYoO*G;C}oPqFkpIX3s}oypZ!$fd2R{}T9U?gxhUmbi5eTw?ir zl;^VMK9psve6^V-F3hlX*Q&3gQRY5n4PnN6v?;~7t0?P&hE4vXD^(i zX@^GMeLA%Mj{^mP^nK6(p(N=Q1WPY2HmCc8M93Nq%kFduC8K3F=D_UgN1A zn)*)77mZM7WfifGHgiC@|tN!>J7aaz?2X4oLG(D47%sluKnjEyHcV)NB9p8T`Z zHSa>dtOCmy8q)_T{obvr)Voz`85>f|Un})|GxdDq?`G=BD)mTGi@K@MD?i?1_AYGj zHc6&L;g1z$n3gKNq-pvuZ>0sMf@%c{s^@(TUXhb+ex-?&)&W_{SR~Fw8DkP<$WdX+ zxYsJ<#I>H0$RWGOzDV$Sa!t2#WxHKkw%ym@&ZCNss%t*aYVuUGx(fM(hhf(betd5H ztvo})RSt2Yj4hE;I0B9#;6z4pF@l7N4j*J?scib^`YK+}H2h#A#kj*0O5EWw6Q!u0 z_W=3uFjEVA7!OqAbw}RCJ&lJePCV&E7m zf5kQ&O+bTjewQpZYcpQxB4+A?@LwNMAUc z=6r%^K}*JV%7UMO|Nlg;Q<|odR>gSi?>S-#!_+dMYAF#)pll;gCiPom_5H{O9}Mlr zi=msT_1D9?$t=S)Ub)ub3STB+Z{R8#F0Oi9yKzn9;^PLm=Q-ZZcHEbqvj($EK5xJy z@8SN9V~yPECPr8swrpt(9m?P+l~@dior)U|gGJsG)y6heZ`2-NmDiZpWYXe<;w;rZ zL$!CDrC;732(J_>6TYmnCB4_RJ?Eb8UXjTVRJJ%6)v|N>GVW!k$12T0#=Xobk=OP_ zAG`v3YmwysxQt0NOl{U!$Z>dNANZzLeLnaYP7hzbik)jES#_I5>2GNaFD6I(nH@2*+Bw zi|q@y5N>em*Y@&Fxx&dCBt8y6X-mFB(pWWAJrUViJrP-6Y>F?Jp0m~t=(y46$T~u} z7i`AHvjDd^b`bL*F_-py->xk=VsDXa747et&#!b=&##mZlrf7+5e(81MnTC$8>9#k zj?hwPIcJcr@bag5CWK>b?f; z3x;~Gcd7iTv*;KX`n~8=5)WVj7Qr=KA>#{=#6Z!z!mCenGKWOVZhWXnb0_L3JMHCf zx2=t(pHj)HY9*$>=%Pa#?Z7HiTJS_0V6GN1_t`8m?t7>MJlLZ48gf)V=e=S333J!&0@mssBD zkuv$KP8K#)it{kV4;p{ERhltaTJ&&HhFA& zJ5L-k+t0+I=6i0@0i5!F({Sza`j+~*1Ciq^CN4M0aBUsez+$go@?{~Gko zGHZ}^M@AeM`=;#kMR#%e$rvXX*Le=yO4b*bGi?4T>~@TCi5m40Q5o{UDQv(Y>gAj_ zecV$U67@TtMlLzi9(ooJg1GDvyze{szB~s|fVEM^x!?A&@y+B4j}k6J%9wMg#Ij`lJ4gYX27d~KDHc}#f^S>C`giX-~l zq~D1@^GMRmsiTH8U-9Acm*X?_b#ekDav!65%(vllx%yEKE;+DB9qKo)zA9=#P6!|F zlWM<6c}MAhmYsQss*bvpJ8+0o6b;<*%RPvn$Wgj7O>;R&mk}hlmhCvi)hgxLNg{{k zs#3W7A_JO|VB&%t*5R>3{As5zYNdCfz4rpJ;9L9=L-F83p*K8kub%up%5sSLH=Wt$ ztLC8M6D&wZAq9JDfWoL=$e{C$kMGN})tIw5G^f9fYiz#hrAE)o8Y4K!r+FF!Q;PiB z63nLmf#AYOBDEL??gt^{b|XQGvGCmRq~RQQ?vH#|mhW|(hi+&~IP$%K z<0&pj=lxo#R}OJzJMtyK)0vSk^}Zz`o_q(1nJZBa;e~?>Np2SzoZYvjMi%{-79#N> zm6xiz-C7S%zF>;CRtlMK7Q$6AF7FD{&0dZIE3^^&x)EFox#Z3~IddBh_9BbJZYJwx z#Zy+P$L=r#`>2KRn!G@9d5u0Qf{l*ubCi}F=xOO2>*leY^6_9-U!Z+-Ks~mB|)xFSxd8A z4o!NR3P7z508aqDcV@MPo>Y4h(8G9~LsPxv4x*|av|0dg9stm)ZlC~wP+q8-8FnmE z2MSa5rDpq=ISOKf6+9T)SP?GlETwi6;=>)L#iWl-qJ6+*{QRP|@Ww@4khCx+3%pc# zl=nwN(@j69Etvy2S_B+@h5?RAJk*}uTf7s82{0zfEW6Hu;kmYi%dP3CtIr^4XI@P96;ykc z<)p>LP*U2zD)uu8=4NZ`{zL-2w{;D~{%#6?tFMs#Cp6=!_|aZ}W7-JG+xAZ@o>oN? zXIv|VVG_)ZX*-N{TSbpMSW*~^B*v1`_KI7ma6J=AWK*kkNZykns&)8P6Y$?E6kCbu zw3X%SB9^a8U^jM`h}`vsap8@8BY&7rn;VoiNE*+K19}xrbW~OJ4i({75>A*Z9r-Hw zErOMC^W!)Ikqfr*iC-q@G)kyz5K7s-Nh`$|xzyVThIkvbo*W#^er#c~HUVWYe9v%I z%rSiKFeY;?p~GEf8U87Oh%LZ12;1G^YhA(cwWQiucDuVct$eCKd}V)k_?~|5@PmWA z;ZZ|^`j<(3_ZMH@pG(^)EXeiR#rF@=s%72gEgn5Ys~#tH6wm6XRf}NbPM<)*6Qp3R zYKY2lnDWb3#N@S3&a=kOlT^|n?RxBvLrt_-%|rU9Jo^c!#}8hKwpdnM?}ZJL_`{=e z(2(uJi3mB$SrZbxjdcgjrLY{BQJq{{V2quSg~Ft)3!JIWn2F~kpeO2zm~8g7Ehe!V+9svknR zb)Lc(deD_tJ^?YYcvQdgG5+wZ;asLFsRxpp)kfLJ@gE2EccdC@M9>Skwa4q+nC_Z& z8P`(_TA)}DDgvg77Jx0b_zs@wjsFAQACs+=(5r&E_VQ6!PTVWISsBJ(Pf21vivu-J zST@}HPlwDD=F+{bXj>oZ0+em;Wp=WbcZ&~~QcPdj0As2Y)G+d1QrO~seUXtwCvmxY z04D3K?ViTsh8>^cbkR-Ln`+}hDb(m2l69dQa=s|S?;iXw@g2uE@sqF<(qtv?c>H}>W4zM=eaX;qK$sTIIg9+qW;R#k1fW#urZ z@~~Pslo!=i9yZqvbuD%AY2lG_fm`TM(X8_@0v-Oc=*>6==BF68&F1;+O)bp?UfeT2 z=w;{dyk7Al0P!NGLh-8zp4Bsc_RDFm@wxHde5!KeJ^0Majb}>Q-tml=T@`t!Ys;ek zDYNsPIu~Fb@*UhU-NkCvKcy@`(}x^=aQEH7d+1z>RQrfq?Xpnba{THJYSpN(GhThi zI>9GK321Sw)iPA6QTM(Gb(2vx3GhB$%Sb!1(s!F$0|*Mf66Eq_neiV<_|yEi)jH%Z8V;Immv#qH`ziE5@0O~-HSp1 z{=q{U;oEu@ZMEhzWS=ZpF#%d*Dw#;z8!~6VCpS$?^aaf zz6S3?a#Q7%!+q9sMBys~IAtA`KvnM+-CGg%ex!S=8oV_^8OSE{Bhk{xOFohtzXTnv zAmf248Md%@i+k{>KzSBxn?1b6pK02ei8dHOyx|iMuU%}2KmP_oMVy=6&1<{pQ=7kz9t?!j($^LLY&0dOzao@C=E;^BaF&r z^riU}EX|gGOccN-TRO(|w88YsK8q1ZdhZqQ(4<#3Q;eS|?@Yywm0bFdGo%O06uu=y z)8{5ii7CQsfthP^Qg|IrfF->8A`c8QCY?Z9oUg$z8`ZfVU?6=qV zG+|-N+ev-HScUsb1ouP7>}A6M&+tH4?F0tHQ`ue>lv8JJj+y7{j$Nmw!Npb>U9uT_ z2xC)xUpx;+A3q&l@KZFCxS1F0k8)sA%q~O@y1>2M?j2k{u`J&oo_)kJh~~jd~qxCx5v*Ey?g~Xe(1rD z=ZUiAWS%U}k{RI1XQIr`XQq_pGgT($`-FD1Q;|b^+pd31`NE^G<{nL6fkA2mQ8~bR zFZUjlb$5qeHzlkgBK%*SCa9$-nm@8^z5qtX3;D|VwSyMC!DPMH-SCiPk$>*`hm?fn z50CCI0!wxvyig`mQ5_1-?%d(tt7t8@n2$&0!p6FIS9jQxpJ}Q&!xQ@PpaRdpu{9tM zD1;xXpg<`kE3vW&)j8u1e+1c&y{k3;$b*CYk$c!fKv)UZ8voT31eR6LU#JjU3MTcv zG`fjWj8~30Z0?HJ)!MMEw-qCDxY3_!V71yFA4nS2{<0q?MSMs9B=lCY!OO*I z9A?h7c9w7qc5;t8pbk6BhWV$A9^#)eW{@wsokvi=^o6UUlU19lOH?tej?5FkzQ_|& z8jvnJV6uBRWh9notP#}mjQitsQBA4ESt4N#1X!SKGKt4w5>>DTkxBT-@gzRu_%wK* zr5AL=mC^SfXjk3Z4G(Qm0VWfX2v;IPZkk{jrt&u^#XLqE!&u2=e6Y60*UG(O-RuizoN}=!IfQ{2%({O(muEAa>(iL~oGeAXs7*K^-TK=urA^KnNZYl7 zCaqwLCEuXy{YoqNlvU@aT0xAHuzPX7OXwD@U>DB5oh8RlHqU%dD||^5=m6QcCD&yG z5p2i+Qn(TCV>7NX!(3L_76}_>hUHmdjS}`_2`h+5UUu2ejz|VBmck{;^2F8HpM$(T zq~5|{g;emEWc(_pO{F0T`@{@OR60|_)|p|6N~cKJG6_40O8v?WM?Yf*rc$d!ARlvc26zc!J)H>@&7(tN^)p8BcG%+ic>6)$CGeQT(oMy=p| ztza7yj&uX(5(xidX0GaRzHZYBn#sIN=IVz$7^y8mc_w#E=W_x$!nW*(h3hCM@I-}A zd!;#F3yFS3n~?P?<;FVUhL)@>GHJKoJ2o5;9}Teb{CFR~~XvR`Z{+lx3S; z&KvFbXsmMu02IC=S2P0>^kVKH%k_Nj5Yv@C{16=?Ro{HGf1ABfBDYqsUb>efVIHmY zJvk{%wrRTD+3yZGNlC z_O^8J+1&YbODp+MJdfu-E`1co0;}6Aa(|DDhH+i4jC$!B8vPO2;$yeXbwOV#ld?YM zkC56`S`T(cTv^!?u9eD5XCxecK|f-~+9o?^(oZr5{Q7PRacbfb$XGPbfqn zQ}Q_w+oKhHtd*Y8!)o+X8x7b`@46B}o&)6BFV!?q?-{>Q{Gn7HhbTEDMd$vK z5Uuor=lS40<3*Jq`@ZMNM)6tVC+(Xal-%gLcWEWt$p$LyGXao2*`VANxnG-rc{ulw z1(@e^zg0om!}n?h)Lpt70Bxa|>H7pQnW`S(qQDZB-rrX%C1)M@Obr9D5zu(F?(guY zlMDmI5b`zn<8u7N){LyiHLhj9vg9_Op|_*tEdgjXwlhjQPf9ofUV zd9w6td|%=NKjh2W<(=4sg#Psa3jZ{hL@5+z>g}2ChOh${c9?o5=I(}~xo~qmzEqFYiTPrTX zr4?pSb}18vM5WACwuM}Mw+IQPB&L`ANs zpt{fYvDZ_w8^`1o(xMBB&8E4A4iX1tW5OxZwa3^xt0F!Eiu(*ujvQQ1%rJs=>5>8b z#{GD%3;IlXz$nLZ{XVysxMWNv;_=)*c^BI3OGaQnJ z5VwbjlIIl(`b5ZQkCLS{C;O^Hf)bzLEX^&HmH{uBl%?;e0U%tFj3s=-i>j#}> zdu2Eoj1|$|w%S_B8p$dkQDVOj@K!kk0!pCklof~o+$qZi9KUzUDh0>0PSGRbc-|=s z3LGywMf-_kg;Q?85tvswWz8Y3hn=!_C$7hxvn|&|X9ckNy;WKEi)LlO=3%S0>?*6a z>=kBh#650RM}M0zQIx7q5~

?B^4eWqYJDm&f@qe*@0>{2k|foWB#D3;27p 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 z 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

~rXHzH_>!dyIJd*ubV@U6h7;fAf89ZB!4&NV6I zm~lv~(>JwPX99<39zh@qpm1kMF7UJg0 zlFMB3$>czrkH3Tkh1w`MYX?^~S?N$UWQg@S2{HdG^3j8E8>hGMz1$UAUXzgW+SMs9 z?pmbG5iyPk-z*0_!0eg8$CDT=1p*wwO`3YAZ@5BWMi-C()cvM`Np&UbJb|x3qmNu~m#(Gyx<55yC|g@B*lCh9E>lZX)yl zt$og!TM{nz{l4#?=b4<_zOJ?Q+H0-7_S%_NE0)@=D3Mm=TCE5?Vzpqt(}F(&t$t4{ zSX!f9BgAz+=_WWO&S0iDK}0OQOvEVx)pc*>6(%{!iWNd*GLm zFm-`ZCB)IbSx?1jq4l&5+gEl=V%xe|ZTr~9RU&M5eM_1hXtrT9Qd)Fygw>+wQd*Sf zwCHz5#)r^;%h?WZXbBLHM7;A85A86Q{mYI=BJzQAW``QNWd60C+0eImL-*$f@5e7g zH!o~-b_AUZZ;}~Y7-o|?n8G>};3eT)GAqK=gvYV-qf7|NIp3r8ZqsZ~tBKLF=~hOy zMTbDjf%DDLoQv1#4j4}oFa7g9ikA*9Hae+tnWA6@qKa>5-g=ihOXRh)9H49o^nziE z;0?o6f!bdBXUG1U%ATADP-fei4c!c0?$Rn{J%9i_Oe-p8i23v|FcTg=^9wtOh=>%w z;2m)@WubX63(aNMh?rCLTXG`cO(3{fpYbGzU9_mkxA53`;IZ}R>=GQC&aqgHk#tXR zi$=POQ_@YBbl>w-%!Yl2GhSMe>%vXh;`7vE2kraFTycr&QyS&O-Yt}Op^UrxJFv9eUh}M(=dKqd zHdTUuZX$nXw}ln2$lUt6GLplc*jS<0(YDL5D__XYhWTY(x%+k?gWZGTL9su|L;~{|OS$#JQJ#F3Cyrz+y8lVYFZfLN*k0mn2W=R;7OaFt(i z=tqH4PR3#@JAd@>L%_2CkU~xZML;i8^H9Tb15UGe~xm~N0a~SMw z87iAr`L!gdcp$&aMb>6H^*PPlepuRVZCjR*du~+LG;;{0;=3sooX0Ia5;fjyl)p$@ zTTfFEi?=$^l|u;){oiT}?Q9$sh!7H}!+%L;%-H$^d~`^$JNjxKC5cP#FV9oc!tKhR zN%pCVL(|d+-ovX7mwG(+a9AWlC%I6Z^GyHc=m$VJ&u8GZXclF?%sxwwMnh*^$rB;T;Pw@xFI8Xi@GKd5M}?YunRDR)&IKb)g>1GNtq-nN4s)#}{}NJvc*h;)lNWyXc0S>EYuUAu27) zrzX?SOAIRgjK+G`ir-x^bnSu95j?Y&W&Bv$HFUFa*3I0gvZamIdd}oX^FLtJ$@V{k z_y@8A6%On(U*fal9X)x8mC^pM>`%gvWWCLaoJK>+o)aUoR{1Mvc3E&Asoj>dc@DQ` z-w_J!=&O7#HbxX1vohhWd!R?3K`@7&8R>F&wY(f}-6Bu*{0@2(Z>Mv+Pu+%Ow&Ce~ zA`keCkWxv)JqKA&YPF91>gnn{GGZ_6dA0S3Bk9#6cpR0fiY(-IV3xY|aeJ?Ii|X66 zM|bu125xJ5soPt)eZsoEo!c|cm$#u>t0lXvr}@^?QR}JBddj&#r4(lAGlIfS;Q4Qj zg653i7G4rAfuI;4$uUG3-flPyrsrMSm-Fx3IWzjqp3Y5L-q^m{BWkMSq2E*tuTg#eelp%jC6cZtm-W)OL5Lk5p34SC%; zm-Lx)qugkx_R${wgR~Jxl1d3^_Ij6`i~I1YOZF*!w90P0iBw7@(y;UUYL5!Xm(R3a zt9;vOWnUV0hNQj0O6%6XN5ONQw3m=pKu6*CScPB5n^nAtNMusVOBWDS%A6t({U-6S zR6dK=FV)e|vRSI$i~DF*dsSJqu=Ng={QSOUGvx-jYE|z@A;6?>-^jyOd0l8t*$-6i zd&vEwmHWCrt=9-H9_rhAtE8XQxAmsiC28vjE~oZs?I~~1@7wC7*_ZSY8D;EM$O^2* zO5x^69$E)U31j=V=8Aisb1A{AJ+tMWOY3XxTkSy!yjCy17xG05=JIIub!uPJ z@3H#vP~XTUvG?cqHHX{p$M%h!$@}>HA^cwGnT$`2^qC#8fU!P`ev|^AbjaF>zouviIz6w&##?^${r>OM52xhD;SR-c{`%4Gsb3C+J8F-FKRh}l zBa|@!KqN7Q-E^n_SK9smQ)2(cOAQst9mt^jtv~V_dxP7KPSx(tFpExu6E!M%jP}3_ zZeFgPn#C;#vT;9E8!@_hs`hSCro7^iHThhWBM<$OzV}nxB7#fuf{Tv^Uh?c;<}N#j zRB0q?&`#yd@0>AGV1pExaSydps3)_7?k4kV%fGf*B0e*ah^90l^YuJB1Ew$huIg#o z*+os`L|uVJ^Zd5?eo_lu3U_Tv6!yUP|C z`&6}sR<#R9Th(4o#1?`F=Q~w*v#XA`qENu3w@_4Jo-agb*olJ--w<&pd!K3whsm8( zSSb4#!8&ck$1HxnO$^_PpIGOiY6bpU%O?1imw;2Shk5LsqlwH0#3G>(AVe^YA&~O0 zH?wK7aA9vg$m*@H_l0%j(vlGjxR&D5%ZnJzV&`0IZXHFZ&}*e3mAgbVmLj~G9w_u1 z59H%^%VvyRCQLcW(u;I`2&7*>By)IkoY0M!; zTt8r&jZ3gTPwShVDH}Q%eH4=`Ckp!4GpDW53Q8(?_^(s(36`fP#HOWQK#A(bExf>e zI6Yq!*G%)<6OPFDi~;}d%LFQ!CvzBJPR|)*IY&>skqLSE7uw=AZjB>{nIRw8$qdPa z>8XYaB;StLBwyI7W-_h0F=K?vy0~Zbd#7;guGEohauu!hB5 z7re}6=T<&|9m0N``p87J!Kwm6VnPx8y_`NPas@A^)<6Q0q1-8&co}T#MpX1^ixzS$ zTKI$@+s%=i_{#d9mH(C){=spMZysIorYYnzcg+K@>D{#(^*R|(e9C1cryw*f6`^U# z2t8Ft(c5Ewzt}?O#8;Ei`K-4?bUtr7kkTnGC*yRLEeV@HQ8^d)9C}?GoA<`EWl6Se zuP7o&MCK)Sw!_!Pvt1d_CZbrz-&M9aE~8^CTrNw<(<7dz2SyJ(sk8kfca&WzC@dQ& z=+i2HV<9podX) z(kBrxjBvem+mG8i)zgL?xR%Ln>s<_89bvaYgj{uGwI%IpH}(l$B?9zf^Y_~=5!mz* zF%eOcRhZ1@W$Rj?0dW+^jfHY{{F@?**6kIEo)qj`E<=u$R- zzr?csSykKLsx~ggt6INam|W|%QtO?utk0-gg?-2BdrRer*Ehhf@3L5?XCrTc7gcE| zeSJ8k*3E^~y8jdDYj5z_Nl&j$srfl_NlzD98P!UMs;o|01ORH<~XUeVQo~_pF{G67> zCQN2FMadJw`6KkuU4xO~>tz?SIYd#pUZW=HD=-;_a+vNbE3h!Jg7`>*yz!++f;|7{ zl`ZKbL&~m94i>d4Lq<@Q{f}K4lIH(HWo#UbS9S+Q21mF8-Gj5zU0UT$c8%9@H8vS* zf?HAH4zmQa36mU)c4zS(r~x@5MusYsI$@vX=K$^ib_Mpq4VEOup;}2oY_4g4(iWEg znH&8X3jq!6AHfoVYpJVVjvmI|a8L_w;gL9a6NR@Jlk4PgKbB%q>&#o8VS(8=D3Nz3 z*Lg!$5{CP4)pVYyie+13;S-P7y!o%hyPZUE8i14OOS5<=95F_9ubwLTe_#Wz zJ{5RVEZ`}^4t@prR;SzG)1G-x3pVm(Mc5O-i8sx+uzMIEg{-K1aiFY}RiITsR9pCx zG+Z7R03)urG)w_PHdp{Q9vF$BG3%2-(~FN+!z2}Kt|ox)*dd~N}^Tec5P**>~ri|ft% zWDAG(@Fq;qjt%2$)>r;YQ;~q5SQ`15FaFTfOc+s|2@TG(#C(C1Y!PP%`QSwQ_#Nkb zDi4MU2$F2~vj(7EM>JPOGrrI~c}1Xzl<}r;VfY(@hoG8O&Y%nV8?wC=_Tg zPXUa+kRNVJG}%#LA>48u&v;%Ka=QEK->1 z4J>KNe)?gdhXK!tUjmyrhF;^bBMjYHXk+MiB#2|^iHWqx7akuqT4EUb0M-PCE|ZcD zdh<+gUc)H(We&rkqP&5qqC>cgxcO&)-XfpB1FNi1q9Q3q@enzSf6Ti=M*j_=%T)X{ zSL3~@+Fgs;{H+DEcpSP`MMkv~PGhV{!YN!662508R0ls7tSC-fBvPsvjAHg5;d=-j zv#)7W{LQ1idrh13PIF#yF#9q*hnt90vNu3{(&ZSju?{)uvWGbdvxmtkSeG*W)iIhB zkYrR%2UuMFY7)S-WNc#p?nKXZ<_~_0a~l?l$a!B1o)x2JU^jqr0Wf*+RFcUD^!|B= zkPmn#yU}QVj2s==y$@jGC7ot04sJU#Rh!;C5g@JMX6;0$x6vehgTCJV{b-w9@;QR( z?#NW_)}1u}1K!Nx1Gl^6b}$-DQ@U^DVd?MwvOM(9a~j=KYxp)hdws0G>p4e{sH_3= zFD?Nw8sd0joD{%szT*$jMP7W^sl zFTVH+miauAwGVoLa+Aj_@(m1uu~KNc+6_E$M15UcJb8Re&~*!G9B;w ziN2Am0*gfZyb`0YQ54Spr7z9W7aO;*6rEl%bgfWh^7zZ{Z5NZ>n=*2RoFbS%L2AaCaT6>lzHron+S9lTsp*q%LUeeQToUu4;Yck z&jnnIF=3~)pYh;FkOV~V4!`0hek^MCbGD2Zf4|tXD2=oI`LXAGfgH6Ak?p?!63B6g zWOk7aIi-JFkSiRz)}m*IUlP2s9e8PvY-t1YY0uTcUa{bp<(oy}|H|K|hl=yt zJRxuX5uM2}Q{>TNW2?t_&vV^G^SR4ar*k~PH|g}!e0}8C4=jy5N`dw&&6$pb!zxYs z%$_R9QZeeLHx`-<`X1E8+zEQMhleufywV#k z&zh3w4Q5%_j9cNFt+h+QQF$p{JC%i2U-@Z)HLa z5JIKo9g^a?_L2G9dCaQ%FC~kF85DWp0j3o^VjCcdfDXB&0XAKA`0&Sr@5zh-72p#j!LrqyMY2f^D`{+2Y8#C=nu#gr2jC5Fug- zEkiiK6;~7sOE};dM(MWs^3#a?OZaLos-~?}POZNpL*-_vmt&?ybPV4xD6~kV>(EOg z4kMqdAwuX+IYd3Y$dV!s6^E-t$|w$7!p&=(CB&+Zg0HKP7||hrov|Xg%^lp@g(AX| zmg^IllE;`LjirW_uYnGVIhc2fv(kv-v z+t*)F0RUJ+NmDTa%YYWqCeS}J4S=yuocLC&yn&ZPH)A`@9e=UM`k?2<16#5 z5u!c#5Kj?Fp*qEhpK%Ip0|Jmgr01iHVm`g|Sj9GX3vuk= zi&pifdX({}O0Xza3N(uu3u12kBP{?V1Vk4Sw~%dq2i+~D0oEuQx<8?aEQ*L6plk>| zVd(xDpo;;)CNgXGs}iGlWU{J^aC;X0*`KbIPgn5|SGdSX4%JeC77{T3o3Rt=!6)tJ zDrq*RatMe;HhbU-SlSQ6A-}i!wuH8|>)ZDpPwksiws^)_ODj(C$(*tE*||!zVnY7PPVVp%ip&RDrZH^MG_E$(WFJ_jQ1^|zvovxZ_n3zl$O+8$;jN=3U#Ps!9L7!L zhXe|@=L=`u|6tdd-Crpd@_454o*r@@TGxv54big6GDbtQ`h}+3%<$t1s~?;hYxCHq z*J181^Hl(euwRXYlS}}A;)4(X=(I6B8OTL$;om>qk!whg_#DCjFE;dqh4`9}Bhlz* z{4!|n=lqtnMx&SPibiYsokK+Ask@`mX>DX5V8Ohp3Uo)`F+=umihfA_!bAH^SztE^}N|aDrJ}XOS}3xt7)JI)8tj*^ln#-$()mm z1%S~#3nlg5>~MD1E3VF-%~4RJmp6$&in-ziap^)LaYD>W^%S|bT#5`l-?}aIJpvY8 zjYVuhBlB_^@p(g6<3>=Ffj>iIk-Om)@j8kZ5NTckX(sq1Cpg}8ogBIUx2I5F;{JBq z(_(Vung`)?$?}h^U&wy8gH9o#d1{3M0?9D1oC7dofhw-e$w~0v!QX%lcoH0ku6CuX zruzc?w&8LY$jRpC$dvZSCr(lGBDbGBpn7{-+*JzKpy2^rG8mg{&FB6mKHojh|D$q> z8_K0pLMeP+96s-F%k1;3&Q~X&o8zrQ$^Gj;8e{PmtoZu)qg2e!acPy0@yR(=^tAu8SzW+3Q zknWS)UiW9i8c|m!N5YDW^~NW|S|nz6g?X`nE4)!}!+zGrgmHneVoATm@!w@X^c($v z3Foz24#LA24_;$PQ=yD$m)XZHnB|zXF`4GZQ+oruF)9pI1_Xe-2zg^AWj2rPs&eR6 zVEa>t=)P*|#$b;Ie~!2~!1Axb&p5~ImfPF)27aF|^Xqv>)#tzt_2G4?3X71Ga+-My zjgTkvH_px3auXxiTH0=fi;LR}q-tkBHHF+|`R(2t=sq>gWNi!84n_-KjzJ3!FLATLVOJ#d74)HLU`0jKjzTfP#Q$Eks_kY zTc_Y>)H)+pdaWv5`TQ>nT+@23sxp*XW#HS4*qFV;DcjeySU_j?cdFQ~s*tjctJA3` z+H9n$4Y~JIpbBn33cvGNss#NV0NYBIJ%b280?(cVZfXLE=} zra73>WUsm%vd&dq+NKj8 zo!uZ~dcPbNJePBU;Vq}e-iX_Dhm0+{^fi8Gy zy?khHv;>=T+1R3SW0teyFl>&Q-ZbX>RL1$J zKhM)%o^g)$^7r!1Ptw$cHbzh+IJ_KwdTk@yd@y;t%t>i#m)3br`aZ#uN)#S`Ip49m z<5pv4^zM$1wGSd2a|;6w9`dgbG~pp^@?B!jcH*R__=$=+k?2nf|H7$nx-ZE7)-ta# zktYVsD-~2#wRYB-6|>m+)2CuvTE*h7Y;HW_POC0qmI)kb?Zx9kciJ-jFbxSDR3V$p zLocP<+^YkB!y9~|jCp21x&UL)TY_(hUo=7aUIZd)_bkmY^lDu2#Ce@~KCi7LI5wOu z^jZZksHNuBLT)(K`E%-F`vy$l5jl=htz!R7iV2ZF*wBY^D%kK?6WK(1hd&^~JdT9F zH8ZPm?&q!wKD@D9$(s9LRnpM|JJ~d}P=BJ6G}vNY<_(hO4gZr?K4!~t){A*|L5N2# z^AhXb@9cMia8u4FAR`kZg8P08T0MBjx?W*@At}7t7$*Mm3Tyex96nn-Bvr>%r+H1k z54{-c_ur|iqP)fx*l3nMCaiKPZT}VKf$9;S)7Wf4kw#<1R(CkpRk1BQb47#MCBI8% zi?&df_-F!ce`}ZO@UQZ78qDB))x>_BH-mPN?~bQpY`V{R((aA$Pd`l_0M2o^5*`E`CeeTjcl zcyT%3lDa}4cL>}iQ*u8Pp5%NA^)0y{3SSHCZ%O??#3w!jUm|s^niB_4XCF|FLtn}0 z+7G(M|0|s>D08+$s#xLf>&+6BB5h1;ADJI)(3HE{ZyPu&q~cQ<7uHcBn8=sjkRW86 z_uVg>-W+*AL=NPm;?T_L=AnmWg!~{A_XqsM#`cka=gB{!JoFx`OEt>~>*FzS;RuiZ z>#GiD{TXNedaB3fB1fNx$ee@7OmM(n_Q20iOP9gEi@~n%X4vg&?I&BsL-iH(pAV)C z`<*f%O^cAb{F7nNxz>~q?~=U_Ov7d|l{Af+-h)g{W4uCDO=E5mz$-^*D_mVF|5Tj| zW&G?DhfN&hq>VNg1XLaPqIw#hj)69dFFyT?BT=KV&dm}XQ98q;KmN5i|C>9WV;LaS zbBHQH;CV2>CU=pi%!}_+TQHO6S2E^2Dj6q7o+oEJelENbhv!@@hrwnFY1iKH=$1#U z{L?zjA0Az2fA@Fty~h52VMpJYPeMPOPAflS0|Kxe1o&h^t^u~}`;vj>uzIyWD%GD^ z%|~pJvL@8aInH;)nB20G>M??PywVlseH;g8v3wiz`vmitP6GR6w;2M1gZVbW{9eI) zn}zwzIxtU2jf#!2DMy;5{zRVeg)^q`;6r`m_HUvi8{_ct%vf#R4&n9_>$Z^FBKQjl zeB9n;-A?58RE9WjZ{hZKb=yt8Lr}cDVQSO3>2A09VJrDX?KckYxKm>OcSL?{De}Y+rN0(a-q+t(TND|ZHPQT$s>yn8Dx63iv__qoatV^!4X(1mhcU3ygOHIF0$t*gf}aFVO~gfC83{-v{@l}V&fAVN1Ga-k4oC&(9iO4 z$jBMFMk`(;XI>PS;{DSky8MuU2tf`Q@}v+>hQV~E4BX})@5%)`2bHL6ZwzV2pPlwh z&lAP6Z)*D|M{c4JX`*GH5`Js-K#(g!lxiqjG7-#&n3s^)X%Gzo30Jmzla}~K;j9UD`rL*1 zrFa}jDVwGyi-)Z*w@j9+(de6JlD#71P<)f z*mh?wyuuWgL4sZ+fG?Qvgc6l>I_rjwK5g z!#){5tFu7*S3gxenAqH-{r^%t_z0KCNYRk2TrC~sy4A|X0bip}vvO^eTxsNDe|+9; zcLX|~241w!LTl3B&r~B+4cHJzUa?6Y6ul1_%va2!~^cLUKHjv4#WDk z{$5Qpm3@_H@sWA$xjESVu5VzeMpyspnBK+Tx!X*FLiZdi$sB)Y`s#Mw=89}kv^+XO z*_8OGRbo|FW|YVq7D&3drl1Lsj4WxcDp%xL>ptCerz;{88SgV(4_hH0xbNz^&!yrR zSh9#HHLq&?17kx<6=VjJs+;TIuGY!zlk~KboK2EU*CHl6mA0JGGy1x7PjkJ_*mSj? zs=ijp%gORm5Ms`N7{&OYCM-c`0(=2(-RpM(+*k4>>1}sNJG4si@TLsy1%)LSFi==B za9xrmC=n;)g-kT(V(Kprza|R37@Kc>;7F8_{+;CUgFTf+%Z#dXXczf8wTsFm`6ViO z*+({cmGzWCF@fO`nMpd(h7cC4BnJ-L++KbAUd~I|tKHB*iLln6P>kg0pGyv%9Ha?Z z$t5S^oA!g|z4(xSHSjcc7K3Y2GtYi0%e5C*`-8gM;mKZO78@I* z77*_`D7@L3{MmU67+$6*wY#KRZj5MA;|@ZKd=iTnWX)Vm6rmY+5?!uev3r~O;g1!B zl>`(6VPU`Vq4YeN+d}`6vO+m#Vd6C6%zCdBJwvG`kn_|qPppt3UoU}VDpY##1n z6){+f*p2?nt3CfvrCuzrHuI`x32T8n`R(V|g%`c}ox$&XentE`;-_CZQ?4;F&)fhn zjDf|Pw9ibPw5jjA{Yg6Y6WO zQtUQ{Gh50~mdfE&(BXLl)a<)5KD!^jO?B^Fa{SBA!3kMf)osAS7oPH7 zfs|ymmFMO7ZULfW-uv?7qFqVEcrpfyfc~KXm%lsqvm0dn2#0%Dqm+4F0 zG*VQ7=2Mka6Ihq)B7hh;%Z}J;kaHElmRR_0gl|SKrTxjsi;-T0I6l)~ESNVoF z2#x!VrRLsSg$@FXL**+?c8)15z2uV>D{&RKlWh_FEGDI`bW&EWlm%0*TEZ2ZgYZ}B zJA0C5WDQ-;vUP|jan9`aN+x$|Q#OG*3)c9;-Y^ z_6lD?vz+JRb8p1)EE9O8;d95{&uDYtOQYmj0p#EIYACkPg1$OfE~7^pZULe~;8kpV zEI?Bp#TiTJL95&e+m_C} z{eD)mejvp>vQoYhW3}Rev}m5sXfBH^^Wyzsi7(P!bGTG2*!&Yoy~ZFsgoJRbeVCjN z(E=opTA!i9ydlAw+xJ^EbGCxh@Xco^JzxkW$=B*zatW9sb%w0aYvU+AGL9GK_uzjW z%Ij~jbRzNwhD4h$w*kF<4qv{4B1hjl<+g!k89nrU0VR>oJ)l|K*P2`^$!+Pc*aL3} zWnR%Mkd0L^{qnKtxID=!3wAf9kHz^X>)Bp*5D*m?c|I^mTR1t7n`!;{HzmgiEHz57 zpse(=5Mq9hBaSi0U5f*uw>q$)NCjE&Wf0N9ZyYU~96Zz|Fb73?wCkX-(w@2J$)(Rz zOX#|QjchmMtI*N)bwo(_oX1W znU(F8Ft---%=>ytKQ9XfmJ$RaMDIgv5fARl#0bBEor>@9d!HYS_<$FO$Dg=y?8d+J z`sg|)!Xe6RoY4MG*OTq|7Czu#4}j}9S;}^hI3lA86($_xy$Ev=ru@R8*2Z#&=EcP*cLnZ6I#%>+! z3t$-C_7{v(7sWvx`)Y&wy5CEIJ%1mtLA{ssYVuDwTQbt~Q5)35_NmlwbEYYv#`nNK zpB-FMZ9UgUu60~-2+-#hTGv{_hoHY}zpRCfi^4y+O^#W#{6|}d$M_{XPeLV2EqsV* zJuw=nj|S?ZfqBtDZM0;*;DBwt{*j-S-OO~h1M#Inu1A=5#)Q&$us>fO(+zzk{6d&L z*oOlA%`&x_XU$aDUlj5;*WtFOuN-ql_72e85_o9b6=Y+FZ{$80gRfLyk7riXK{%;r zz9JZR$JtMDAm$cnm&r#3Z(?lGQYl}mE8YnF_cMc#sB9o$&1lT3WhfcgekFi#0 zfpN(;{)Hv|7@s+w=yFf+kbC9`Xz(b;(vR-gJhuW5z}C~Wg==}?fY3U9y#$=%>f8`sZRQLtAFe<0aPneWmk5+S2vFKcIO z<)L7efrWbED)$<#Y9(nR+s|gEBun5ntG*Y6HH0%Z4`^SXw(y>e-yS&Xm1WjB#7$Y_ zD{b}`ysL$ugIC&Z2&a#en6eTF<#VZz-*mlTvDbJv5|&h)4PLNHH}-iBFnWF4b>khq z;7#4w?K$uv&tK{z_XX~ihA4n&4^LpBkJh|RBRlQA&deUVzMo#OMhoAMqU;44MWqKh z-06N_=^?ocjgI`hPF(vQkQT48!dq~-UZxOa zCEYj_Ig^hkfUmOvPG|UvbmQX*lp$95PRn@c#L8HCtTM!YbOP-dlyQu9oWjQwD5D34 zwod!P*;afcs$aU#rsc{3{dpDc^Wy1*g$rFb=)guK)yv}kF^xOA&D|lBpJ(n?W=7Xl z;ZcuzWT_+TAgA}HPbXxJvD$q=tK2{wBu@8DpYAo98uxS$?iipg9CbM)=4p&%c!FC8 zxIdb!_MhF8@rDdmVxkTp_GNZ=Z<>F-XYL_+cTZQ3+Iq(O^e(#lJ+Y4?Ke?R zz1&BB%B>BCPKVV%Xz}>NDvMOdE9t2dDha>%RAktooRa33I|EyB{KR`n4Ofck-(7 z<8E_5mXZ*22%8z)wuRY|QMuWZwJvxlM|;o&|K6}CS`?m$f0lOFlD*pW25fQs<4lpy zi?Q%F?g1H1#!>d;6$K9t(Sm1@M<*QP?Oap9cJMUCCc=GEz;<%*Vuo2_!wW%ufq%U~ z3n;A;|iSpW%t>urY|kqYe%fN82VG zZCp6L2JC`>Mi7vlfPl(03Z;YD5JYndL9760u(fRiJO=acf;KvEpr~>81>DCdLU*^> z91O;$xR>xjML6D2K&WGHLbe1-+3T5m*ye|7KdvG=T~+jXLXH@%=}fj32h|=tQ>b5Y z(MV2v>K`g0B*J}`otg@!5jOpw6nsAJbA0$D0)!#b89+!D1AsTJgc+d&2qX+I-Mul^ zW!a%&cX>3osgq=)n1dY_jGnZZ^DfzrRqWJbOHbLeqRV}yjgEZRhV*ogNKX^UcC2DK z9rT;DR$PgXRqQAxnQs7u{P^4y6QC1e+g~`&$-_3?%GOfEinNkEaeZ_o&!;TOllf+u z*WIjD-h-DlI$XEjLcT?Ve5LzaM<$Q&W6wYA>CC++N7$+f$C<1(~ve6AN9 zVq-Z|vyKJR*oUqXm!Ch=jiZqanYKHXzqR0>`JPgDlKlPql>EtUNB`A=zalDeqWr#- zMM{z2hc*axOU&ZL26RvW>k!8%04us{OgQ&Sqol=KutG0bP4IKIs6_~IYWNahvX^G$ z=N|1TqPqKcdyQ!;jm85TMS&RE!rM1Be>0@257C8qh7+iQO+0Ri_oP?v7!yvv5`SKO zzFxh1OxSxVmft!oPk0a$d#ZF!4%*Wnd$F$}9D(VF>c$a*-7;N#GQi{h&@=a_&D>SQ1rMS! zsqzPU)26`oj@aM+Emz);8mYTK^4OwtSC1t-H*QCe*lvmCpIDRFu>bZn?qL!;FjY5b z0!AO^n3bHSf|q{vSYeBL18?Sgu}wxU6^ct4M^DeIewM<7MXkLqNI$ZbeZ?Rs(4*y}z_%zwVcWF!nB>zUZP zAkaBtlAg81eKfkt*bv;&t?Vp>9((>n1n4J~c%lv7kxhX%Z^7c=(Qev<2O(ykdwGp~ z=hr{e=Wdp(`y{R;4K6+y_;=**GBP>@|6@{3c=-9*$>5LcV2L{I1Lr z2RrMINSR1V`w=eC9xFN8Db4{yZv0kY>g87W{JD*WJt;Wds@jsvfh;o1rRlu>;={+X3H)Q`bG$AtguLYGmp zQi-!~JK`)WiHNQ(wsC*xXCpt?o}*HS6-W3cvcBoV9%h-t{Mv%I6U<=;c>Yq^N!%Y| z4LdKz7UmIK*lwiQRaI;0nC8=2zVtVs{P^o(H^XLz%I9moLmm;rS6M=M)p+Km$c-4b zMOE+^>%9eg^@0Pyc9B|4Fb)C4mAbKq= z2C&w9s+XcHaWLz%PwTi{%%%r=H$c#Ox;*bJCQN5>S4OFO>uhGTQvet<11jY zso33GwU&hq>C8&t%4t{JPH7P~I>T#xq4_p?+?%}a?Oyi^w2Q!-kxEt#Ed9qKm_+>t zYUxP-Nv4(*{YMrdY-&l+e;^e{|A~=Gv915OE&a#yZ_7gJ6?JDVjt<8p4_MNdp2p8m zcRm%xW^jQ+9zzjF$+;Bj$b%V7TMsepV&r_mb)O=IqQ=j#{e8N{ll3M={Ne<55~8E|#U18$zT`tz_ii=p?dJ>DAZ@iw3FHpyiHvR>e5 zOn$ueOvislckgu{RR|AFew=;zRNyb&hDJGMesS6q%3zK3%}VAum*Fv!6adcQKc%E=^m}zu3iv_E&6%0$k$F~_q3Ha#GW89l%NzKJLAz!pD8oh_>KlsVj z`Rz`)citslzeAjo#OIT}mwL}7{>iAV(dhkL*YK08^BaUmt#jYeb4>E4tcO+SJa!<599%{vE$SKgPeK5{Hr# z^Y5tFg0co}*@v6k`*&Q+$JAAd4)Ap`!0FVVp+6r_po~|JRmL+XRz~DlWvn}~GHy`r z7ajW+MXuuG3G`*evHUyEQ6H21JC^kqC3N`u19H^sBpgHU9fFTX6dw=e&yPNpDGRU6 z)1JB8SWlMqP*%TV>!Gt)B32912MPa1S*QcqvzXRcoHcu}Fe$6!js|*V=L>v&J6+UE zSjf9O8e7P_jawTUosO;vkmT`4*QKO7UP((%sHDH2KuN=)>f^Ub7TS;3rYBFRq}eA> z(sWtLu{hx|xX=w&st(o!f*j?EgXLpi3JJ}Ggysxs9Ts0NJ|_Ld?7iQm5NIbek#rJ_ zy~iM((>fuYUWtmf_}|-Wz;|$);vLXvIjXGQmplkON}Q7g#F#uM+OClIDwI|s?`#Y% zd+oLUD`n}vuLx$`47*r#el(Y6QExr&jXZAPu|=Fcq{SkZ@odTGh-Jh?!Q(>>w8m{| z47M%sZoC^Th4)=iZ>_Pm+~YoEouU}Yl6EIMI_&Q!X1z?DKNzyg`6I2p^G6RcuAijy z$7m=?oIgTbQ|f$>I^iKTUvvh(Zv;P7z_)Dpi8@#!>R<~{6LqkSX~TvV@XW`;y2Vlm z-^DhN3@ZFVwzc;MS*`p*hJUcPqb9dr94n^C-{D5=jf~|Cb=I#=;Dn=o?duxi9n{758b}5RdP|Nm&YzdUJJ!QR6h!B&s zRJ1K2M~wD#_cq&kLVNIR85PQfBywu|QSo=>3^M$c&pU+CrS|*~C)?w~=Ozkd0Cf(Z zM1U}4Is*vFVgT@_aSmkiim3&GgyAN>RhGYq_Tbg=E*El}I-@2!EV#d!OvGVY4)gBN z58|O?7u%UL$X#SRR%;I*yV%YoxNXNN_J>SrjK0nse>*F7TzoF<5D25-BHy4`4#1Rb zoh@-lYhunIyOcA?@WZ=>d?zT$##b6;Y$x*bqt)wAdKp^H7f**N` zS4e%wR#Dr|+o4y;e=Dz$dNJwMCs;*m+gn93#wi1O9R|IsU6wtlICT4v)-x022g@F0 zxrba$(M6?;v6JChlBPElm+l{{y_`QCi{25OFMD7P8a2{u>}cGR5!?ZRwR7_je-Ulr z1EXDONzrXtdT!Gq&J7k zTQCob*0$D|RFQZI8Br~ATI6UD87h+A!7 zVI5cTK#Pf6yAijxBfp66?Op^_KoIu_VSkb65*<*HslzXO|0n!X{6&x|@fR6KdrnlKJ=1D?K}T(Gy~MHC9h*PcHEWftEPs(s zJNu3J=QmJQdw(%V>pW}QqCgHBIq`=c3l^D7O9Ini`3hT*R=_Y*T3B= zvhFP?ScQZI(dQ-USC+rXeA^*_Y?i+WBJMJl`Fq&zB91=*29o83rk#gmGPuBNuoKww zkXDW(o>ydboRS)2?jw5uQ$!ZEy=l`NgWBgY_mRx=ENj}QSkpcgYZ`6?mNiYe4K(9E zf)n&KjyCg6YY?Lm?j!Y%`-tN$5TXRwO zq}mqx8c>eOxRiYCxRl^)!u|>6Rq{rJsLpm@Ef0xAuM)_rBd?NVvP$+UnJP;kD0o6v z3HlQ><#?5JL{s`lj{bDZ5KrR%yAJ7T@J#4QoQgzc8s_#IW}}%A+;XL&u9%w%EJI9( zvJEQ_m1{ke)WmRX<=r0iVR4v8F`|@w+`u8KZ$U14)|cX8Vv|ZhNF^YoGB}Y`Yn9NJ|Fu{RDd6?jTKLw4py@!b$zGrVzIE~^t&tAYekC*r!IWAp~ z$2?33Lgj2zPzq@+3hBNNgaP^n5vZWq9;ovzx1HAhiSih(Q;z3U<==5OkzF_1g7R9N zy=4Cai#y|(B4vzmsI0#kMKk7X0vz|Lu?IZ4-__39}y5cepMv5Jf< z#b9ppNvlBjsuT;KR1I>onVs1^zF@hN3(aFSXk968CtmmRBwq;pPEdY7RV=}=R2F|J zekb0nGK7t^OIR`+->Ob6gRzkkUHRfYn0dst+f%FXm3cw=Vn@L6*sZ!9;CJeX5+jn198nzn%-w1k zCyL*WIikRwK@jmu@C|AZ1c^Qc%$O`f<&Q_i-#)<&WopeEoPF~U{tQvBqwqVCtMhvx z<=J`fTo)bZyOXZ7tJFK6^LQS|7bD7b5)a&@qCHbQeR%L{-j&WBK3pv8WlvvD>%NYS{q5Ez69iPmtKwfCvWk(%Z>%HT! z^=1!mn9LU}zN0~2G@7Rw`uf&hlyjI5+)Eie1vp9k?hzbf5oOeQjS^f38w%dTsq{ts zO_v64x4b64WaKlDpS~#BO@lK0@c<;HEk5^JU)uHkjOKziE!+%SX16HTt*c@YNQ%R` z5`hGJ&B6~o?j>5)%Or}tG?+fH`c4p%A6oSdU^b?{e_WVcAEP*6MIc#>1rOiV<;A5f z1)H>RPh=E2D^4=u^sz(N65gXo^R5-kT5-7lL~p?oV^icy3N`i?tVlFEZ`KQlHn!=& zCXeP@=Nb8KV7k?SR?HGK;CWh>=$8`fu-BjkbNWf$1C)hFRvubVm#$9@ITBkZ;dsO$ zg_ThPqYzRm_a17EbS0}*-yCHi>$B+FF4u(8>|YeQ*ARBZZ?G3|t!mp^kFnTuU=#Ct zi-Ek;VpK_(IxRQ}o2HvUGW8w_r1Fk!UtdnP$PIjAAtu&j1)mfgT>#uV!%?I+ACFgn z95|g?fG<2sAvwbNPRA|a#~l>lP)X!ks{p^T^O(K(u_#aND6PNMh->+Hyk4w9$!uSM zMXHh4)W=mcYP>_Xm1*A+dRyqnraIj7j)*Mjt7O9^2L=)oOmF6z%~fJ8>HW#2pFTd6 zOO&OO8s3zgCA~R=D4pa9%;Q*f{MiGwDs*VUsyC?4vj>8WZfsmA?qfacQ*YK6-mKQCV~qay6V%O% z{K0B`<<$iU&DzWT?`KYI_6&UAXe?T{i#UbzJp(^5))cM#?A*z1mVK&;3exiuRz`*Itv`h}yq7E~lem+$=-sAC>_* zaTpgHNJ?JuHA)!CPm&ItI_0RvP{j^>r7fOZH^k4yTmdl&9@b^z?R}gGqgVm{An>~3+ zbi9I^Slvr$QM@3B&n+MkF6tI9g#Ag3oDbdWv`YU4lG~!%(AxhiR9l|gTIkU0XF{)^ z3ccjT#d$?o!=TOu@Dv~H(Ov#8{0)1cWTk8zu36+J_-oZU z@$wrbP~Godrd9r(S9O^$Wcm%$^DTcrD1|Tn{t%0T*bAAwJ)O-bo^=taZL6NO)$=X= z45N{q(d$e}d-l35dJlgtJ8*(WbF|=N%=tL>MP6WVrDBkHl~+)o|j!{SsSB}ytZKSQnZ%$1$o@Rh>G*R?1|umwL?X)mWVM>w`SePiTLtnZ3bDM ztPccVGHpmpW!|WoEcohmt_{QfG7;|fxZl(&51*p|I9>oaVpSplud)Gnl>@-5WFoxE znFs}d*U3aU-kAsi;5{-C9t(iu&-R4I=NkSB6*FPKBL7wo>$l1C;Z7lrZK`W~6e;e| zvo?5pOsUYbcF?y`GYC@aC61%}bFFd&JplTnW>`Gsh&?5iFp>_-=n<|WFwY+t@-Kz= zuEfspmQvi=+)~eQ_*h(|Jnog=bIUC(?dgoYg#0g3z>0(dN~C~wvLNNbu9X}s#zyU^ zk+LHT%{3t#M~G_+zA9?mL$=j+PzCn(qy2kSV1>wM+@_K{46ArxoZNr0GKQ`Ha}3K9 z^5+_1S;!G6CbO+pe}cb(;BU9ElI=BnsZj4Bz ziB1~(&seD^tug)9lKjw&L@ZXirws+&_*z8BezTC1HU?I~2tbP5dK|$Y_5(OAXO-VW>Nr)ez-K zpl_yGSToVl_8LXVpHpo3YXyW#vnVb-)T$?~hsb#BSYESL45eRu%tp8~u7NN-BCGAj ztsWcQ86v2OKH&&zqGyPpma1EPBRMTaxA-rHlQpo$%fO0j%S+If(3am5ZTUSd*bgj- zUdF`WUZWeU^n#7HuDn(h@l*J$8yjSAt>!!IF`V4Gaab?lO!?;rQMwlV8p)a?A2>Gz z86;i=fr~zh9O9duFrgVqO1l<(Ggq2X??#I#xh)N&)h5TzK#)Z0D}`6ujdpSj)2AE8@H6HJ%W|0}DKA zAM#oiwP*>8No-Fp2fU5MNgcY}Gx9yc7Byg6W}U!4AL1?_;&E@#D&N9;KBP<+7?IUg zuinI_ zTsEG6fb20g*HFi~w+@iek}!X{*J1p3zv+pt)+%wWa21z+%oIIk9-Cil@Rvj9&Mjj# zpxQHV4Pr^rx`;2NDjP_|SVTPY+$W?K)O4Q`I7CWkuWA|+hrKvphZJQZt6;N=J57Ia zw5ZhgWT=3A#7URAQFItw_H8*LL%H#URHqS`l{mCD6qatUGpTmn7UPg8UmFpXvYLB5 zA$oe&VoV0PW#UigZw{5rCwjkDJ%A4u)~s;sp(m#ECX&fN)bkEiP0rFIo;;g=E!q04 zr7>aSe?zu50u?dDC7DU$@`mSCQH`cL_Eiq(K!?19sTv9UfM8$`@*c9nKE;|uIsxQ^ zM{*;o;HZJ#a|4z%x0{6#Hrg-Pg>b#o)_e%lwcrTPheZVQrj@@4RucK;9+5whIrmVU zrErm99~t)AsuTggk#(@{q4;i(2{uPjemUe~zu!`RtHueG=i#g$12M)6AEb!zy4ve* z(kg$>N2L^{s7m@-ma61gw?``4p`Ol2Qj)TE=sn8OlbRTQa_aP<;MQ(sXR7ciUQX`x z8sDX|Nh*Fyqr{JD;s7M=!S1pj!M(PIqtvDvU8fr9eSPkCxmkrkWk>cllqmtf5*QgKEH_QpF${`VX;uyV!WQnAr3Bz@0)bJ1yD)wa^Y4 zS#3-s6Fb>3&TCahvD}f!2?5c>)S4g zkz(BblQ;(SEQY}%;bD4~41Z?qj1@qRAUhg$mCs)Sr$l1o`l zJh3HV?ZHE$o~clIk=@)T;4E&T`@6F5Sv)iH`u|;=DTbMduMYLGm_EHH#-xU_V z`d=;h`c$MT?d2;hZS1Iw9$OpxT1Jo9oE&Ye+``BnTN?vz4vTEBjZIP7*kA@pgmexs zZm*3^5p8VLDAFAwox`Ki#+2*1_Fx`VX6wna9_tHkvx0#o&gaVCbDWCuHO`6$HqMF% zHqMF%HqMF%HqMF%HqMF%HqMR*wwQQe7@d5q5e2sq5^Q^yPpSAQ{oUFhR-T69%B-r2I?A?E9wsGV~myvCuaMt8hN zx^R93mz)#3kV+0VYK)vpF(*NBpUAo9}yu0qvJp3D=?s)+_G+mf2~1=&P;JoZFh?aBJkp5ZED z#Pxk4uII7DBtdz6xPOPHf(;(`TCH+6$$|20f%3oWV^C&XkF{;DqSGkjwNhxtCfZ&n ziS2bl%=X$jlqZO(K*se1Oa(v4^(GB$Yoc!*Q*%P|JBk@Y%WGU>t1B2@uJ%Y6{THoG z0LK&0+fDGW`0{#qe8LQG3+?S^ctH%SKSm^RhNpljQb6ZZyd}P;Oz~t3NVax!{Fm`L zey5t_PuTAB0)F|>$)BUNlUQZtCwRIu z;x0!3fWyZG0ED-g03hm?m}4EA`H7fgr_2*`tP%hc_*#07u>3^rQ; z$mMoiIQvXYLY{&(o`Q84I@BTQ&^fjX*3c}g(9q4w(m`Nk|6wd0IMIn^C(+V@B41Jy zw{&d92|n&m`UOhXnG&VB)-iDC)wXqmX;Qo&)oup}KoG%3Vs-Xip@&`tX*7Up> z3p@kg#Nwc2KV^>qKWI#0=>mKpa!#iIA5c zUE!^cc*D14#X|GFkXamBG>Gaw-@2w>NMEWJIj`xD=|)G@SvXGV`PZE84VApeLb_;- z+eFy7CZ_9O!-A-{N6AvX$Mq=tiyeCi`15fZI!Z{f+XN0k1~@dUczzqOo0dy_y4>kF zgyI;r%)P|xKB|Br@%*~dY_SgNMr*2Z5ce@9{}?P}8Y|_Dr=f8Z;Z{7#FcB{0wF3|_ z5pIFl_Iup#YL(B6yARe;+|$^@>evPKn%J0`XOEd$+akyqQosQaGHhOc!5KCs6`|{8 z$XG_P>rXEZrLQSAs$?+Hz;TXkP)1a2#0V|MMvM@kdhixts1&*ijS~Z*5S5hBpMTe% z#rg*CZm{0{@a)hy#*0wzjQntpKjDB{c4yA?;vJ2$VXWjxKk5TAl{)-E31Vy-}I^24MHU~#8`x5Y1Pe0 zSRqBOAw>(JMM4CT7kF)xV)IFmVrNsjLy9?gs-83{&a+9e7P1g0lRml6$7rzH6Do%W zp+z($hX4h`kc#dQpx`7%fFpQ_5nzlOy|S<&V;bYPLxoa=tYOHc?oS{=nbc)PUVuvY z$N2v61p2#xbsl^9qL$^0dDim9s4`!uq+%e#k3Fjk?Rf?ge%7|=R158$Yq2v~#t@SZ zjL9N&hXT_|mL^dhlbiHd#5%RgZl#89_Sly8_QKsF0SO=*btRI4!~YIh;z4qB0eh*# zVS55FjPx`ZFEpDALUS9TxvV`Fon>uc^i2c) z3{g2B6z6={>H362M2U>uz^kQ6{`@(l<5(HXqhE?aZXd$oyvZkt-eLKe@3)-ztMU_k z+GUBeC^Tt=w(x!&>m_hT13t7qj$$iHn`ArkzYXWJyrUm9HdX9(QzxdT8u8=T7QW?f z)T$PdBJw93sS*zo9mCx13uiou*I3MjK3<)3l4wx~`$haD(MuB@`5zv-zjCvEkZ29g zvUT=Bq60`|94J_Ae05;6=KIJxLzE++4}64d^7Y8C0y9*H0fqMPd@+E9GiqpD2dz+@ z=I|sy(9c`2K?}bfb00ZKA78Z`US5rzA1dw|fWmH98%h32y^(ryNtMM$piX=EM(nLb zM|cWnD}4DMEpi{im)}??ZQW$)0|?k{oZno~h80!|_QYK7-fT=>X>4NGraBE96EUH* zBfa<%2U+JBDi=^I2l#dvirmh(j>?$l<0P4)w6XSiv6EF1;%8kGM{>F#d2htmNfD`p z5w4jP)^+&A zr~A5CNw|B|gHyfQ-A()(;abA~qwLVs?q02)-1=8$aX?jxNxeyDY~x*IAZ}xv^gv$6d$R*QyIVl#>n~E zRn5+>$;i{5oMGG|j`!vs#Od*G3iuZU{LAc;sXATBFJjY(t(t8vrcMKYUSh&7p-_;A68Jl#WiOI>17y)3_o|K;jM)d=XfS5?W!7;rvA9Fjikd`MJSS|5XAzGC`eYiIEg3(WvmdCF-A~E zYnC9C?Uc4V$m7ZzeyotkkbgPVQ;^8jpOy0zf6mIT$eY34NIh6^95W#Ev+4CmYZ8smDkAm z3SD`ns=Pu~ULlp&%FS)5%A4f8Raf4iDz~W0tx_4Kf$_+eROMxIzED?QqAD*}l~wUT z0e9nzrE}mn{vK4QO?nq!E~qWvMQui{#Mf8o?Xy^vDfFhyeUkfOX1MTqdu?!LBBsXYUR(i9@bOu{-UOMP)v|4epS zbDC?vP+6c5IFtN=5}Fq{>yR}(1MFNI@;eb&n;l`HgIc?n>*y@c8xpURS09{1zd`6 zQ6S)_@h^RRO}SiI$)D4${Am?r6<;qfQJBIVqCil%V;>e$Dcm6+oc!KS@Q3D)n4J?2 z3h9rItJ%RH{YBv=X`mJMi0-7>{S!6N|3jj_D2q->M080P=t-D9u$EYd56kF zhrdIy;yrn8H>Iw$zeVaDPPM;T&K*G5kphI%@2d9SmG*Z_`|&Qezg+4aOtr7bp#!3; zRr`=X`Y*#XboeR(w?jR+5EsyY?64wI_$?aoZ31XTDL{M1MLs{ktSbp<@qXxu1ld4D z=J`)RQ%t*1Qxc=*E-?V}&@Q_TfSczMDauLuI$9xroqD@l-~m zIHHJLZWS*#B2K=#b7)jj_pa;Ms8`s(O$RkQhek!%zm}&mdg^U-#s_NjU*5mb8+7Qn zbL{CCoq%&?W9MEU$)AGni5x&2YA?I~+DP6A@jjU+dy$d@81oq=EC8S3-XF5OAl6CG z5=!os*pnhap@cm~NSxpzd!Fb;2sqIsZW_1HW7}Gy!|t+2wy1c$a?`+15`S$Og;el{ zxMIu#Y;!lP56hVT0?7WY;TRZx(Ol z%N@sy{g@-L%Pfu;&J50Hm$}_;mrT)4s;>q&dKVci$ba{mQPUm$7j{pgUup`}?f2D- z6#}`^wqTLqm+~yh0v8{cLGLZ!BJz1j{9oNn13i{a*Rrt(!4&(;e0xJ|qv$z2*c3%a2ezye_J6TxJ)q_&K2Uqut`Piu?B~iB%ZVrJ zbm@dn;cUw-N7N-~FG)!@=URR?<;SeF{GRO1eHBG_^fNkKZ=GY#cfd{Gd^K$a$gg?H%k#!7f@D=|662 zhWrt=bKOt8o@%L2^nO&wC3iOILuB9%Qtsq7?WHG;&}Z6SdeS}mOzfrmd-Er^x%rbPX=CZG5<q~j|L zhOp3sxeF989#pSbL$=#Y{1dUw)0UlLns-ccO}G|&ZgIT8}f zS|S!|O9FLq$Eb7Gh`M&2G?fS^8NJsgSW%^>)thu_6?kKGQeX$=GVtejS`1+k$>v4HQ{=4+e@4!FlSD zS}Orpgvm^0bjDn*43|NAg=syR+5_vMA!sFyj$^|q=>0^zFf!Ff5EMHx=osA)vo@6Nkb zcOc0-2kHpsP;`x%SRxZl7L5X(ii^;uRj-A{J}%#YHOoQxWihP`7tS>8O=r6J~m|)ROx5AG|T3hr?Rl;et0T=zF+x)WhQ7t7@5t`LSf}M`i?U;M(uqv(QRyDxD%bWA{tElq!?#9w$2O-=2$6{&D4t6 z%w=>9dR54m8#OP}D9m|-7Hb*;b%z4j%9;uGvCF2*`VcFF~GmdU`9^FKFohbKxCp4S$SU1Juu)N?~8DrBv#q_A?IWe(E;u%R9tzH-K?Mst) z0A%uLqdpG!xA@zywewyBUc`{7N`(QH{Ie`P+=0VY{~Z&1;xo;_DMH(LW&jH%qAA#t zUPcLd4o=#|<%}5^fO*F`%z%nkED4+^@u^6oi=246di*5^aB%Dh#(%wn!t61O|5C<3 zY&Ws1!rbp-z$NdmvedFV|E_?4|Fw2bSdTfQpa%Uj$wBAJf5!?q^;m07{r|XO8?>@_YZ{5zy^4{6RdVTVpMB*aixQ^o|NB8%Zr|e$y z9($03*n57iWqI#i*n^GVkVw43aX&vfy1y@NNtNAe-eb*K?tANYR+jgEnm*LDV)MoE zH~i%2{tkG`?ltdm2;=8HKi9In*UQhGtGyORny+r^V6U~NqrKLG`@Qj3*+5FO*Al~v z`>sm2*7}aN);g)JwSM@iGaD|kKI%JIYpqe3Q^KxJ3D{fH&9xvbOT=DlK6PTh><@ij zM9kIu^b3Cs*~C)nrpYgS*1AO$pOLG7iJ45wS}UcyLpKPk03Ahn0SDOz z<7ZU=16Bqq1j91>c%bfW?dL_8LfvYoL(z`#OQ12@D1v3!#Lw~yIfqzbHh)nYhvXk zreCKIs#6{wI{dJ+=cKp2jmM7Vav^>~{v4NE+6Ih#2}XRWXjV$5$WByfN)NOsxtM|( zwI$F#wdeU;%wg14ln~mKevJ)o&6c7f66(Gcpn(zq-=YO|oy|e&89K`X^n>V+zJ{St+()Z(=FqZ10Rfqxhjrx2phu zEp`X3J0?@^`n--y%B*TFpe8m`$AzS+G{6$BX^Gf@eTq6B8!(Rn*w6Tob1(o~&k%|M zSdpM}c?ZfZP3>xkqoMop7E+w_V_ipF@?*EoAV`&%fSpE-kwQmCux9c)PB*$I>WKPNp66P{w#@aQ1J-9 zA%s}U_^J!KRBe2U-KlKDxTdGSinU;?^Ow)apC8jRa=~gnBR`Y#j`ZL|nIEvb(2H}L zq@lxwu4o&-E=`qC96%;DVGs(j^T@CmHfk?*C+t}X!(=DTrFzN!3(_t6POVs1mQnXn zDV#S|N#rBICt#{Nky})I*cqCaAhPTw%AAJ%BonW zR*6`(99C9Nj$PwoWw^9Hb#s+ecI-)7)XlZ2n_|f6uCICS`Vx|^4Vspgb3fk1A9w;5 zzL;iqFowLwowbz`UQleko$ZTG=(}gV%|rASb0t^5BxaHQU44{RLPt0I&B>d+>ZXh( z_siHlyfb5FGOW?MV#f5(EA-sFppQd-qK{V>RdhZ-GK@@(OqEz3f)F_u)26Q4ryg0z z6K6F|W!ME0WWmwC@O($s%X4S9e+5{mcQ&J1+80YYu_~f{;SZ09-C9@Lk4n9>S@_bv zcpAv+7nt%`)k^m|SWEuvX@^S;V||?jBoYHpb=E)jN*-gS`;>c1&hz#HRB{Rd*lpl( z7p~HFU8S;)j55UIuw~r0 ztRH*74Nv&FhJftC?19%y*(yzfyJW}dL*ZxL4cOOWwy@+$E2Wg%mWchu$BgPf(qC8C zZKFj$sO^SYE&D+14ellFja>DC%{Iyw6bQtmXFodW?{(aqqqPTQzB>_nPFXm)7DpZ5 z`YDV7&h*wk-0Qr@=qgV>4pMvqR%pY>y!Fxd3cc+%8VW9>aRn-#kkRL$%;J}nA`Bs|Od68y0c{E;-J=|=sODb2azk8`soB3dcD_1W!+6#mc> zxr(=s{Zv(Z9nDc6OzVLpP*LwV}BKVqAjc&6sxjyP`%o~3E0PAR2;S> zG3B>0n)R&{kp}|=C*YY_EGJW+N@i)Lir)+r?INDL zYx&a}6p(f<5=Zym%F)fIi8J+m%=Y z>DYBlvhmV90eWXx~qFRU--$<{q6IV-D}?CV8+jTey(MCuka6P_B!NCzRI*$ zf+W%sCRZjCCJzU3kwW&>Bi8*#Cr=W&cCQm*X_d!fXO@nz)Odf&VrO<-TkOa!+nO!S z@Rl)G5r=XpCceacjZZ!#l0I3J1I3s{R=!?&k2a?{CYywjZl4+Kv1O5Xkwm+oiR;tS zCKGNcl{b04LWPb2Pcq(8p^CQ@Yv87d4_NWB%6s*DYGgAr((RfrbbOC7)3Mrdvn2<| z;`FxFh*ZO}faG+Z)gQ>NG`6OJ7V!iMMFtb;1oFBy_8n?T{!+=AY_B=CiOfiry;X%l zagq`bTT?kf_u`k@a%b2-dU^pXKrCugeXq0AfZ0{PBi+0RsQ6HSc%?eb|VY@$R;Bn6AQPFgQhKAQ~761Kfw z>dd`|Ba_T;WGfDWf*YYnQCiZo9 z$;&$3X+3tU`U@kU%gVYgT=KFNzCTyuV3QPMj}?A2PvT<}LUFIfO0fpC*$0TsX$^cb z-)<+*4Be1G*(y_7W++7NIaxHakxh_sr@OW=uBz{ED;*p z#sbyz`F$~GOUD%0uSn)%FQynvt@PF~({nPkW1wgiZ!sc!WwR*N5~e}7sN+C)skSZRF-IOx1OS6dbd`sOQ=USr0*353G=KSs|lkJ&cz1u!i*@E94Pb54X#DV1-moS80!m z;mxNy>tLZ><}Qil-X$SV^^4y+ZYtpKCKzW0xCsunIdD}}%vu2G4@kUL*28;h5o|a8 zCr$qb%l>r8UVKwz@N@Wh=&yPHvtm@U&I*6d3f}|tlewIHfM)piJjur(DQ?a16FmY0 zXpz97*1&I*W`GE_k|?GgFg{b#<|dsCa8}w*p)3noxY<>+^@gJ{gN!(HP$~Fkyo~rQGUCiZ z)ikbrzn`hb-7FTrle!cJnv|Rb6};9tTdv~-)BR+g)IB=xy5OTx;r#!x!Xp{GW*NI( zR`>=m$8y0OG5KP(*eS@WFY$91T(VqniQE-Tmglzy-lCAoZmvi&1kzozSBsF@-~>F9 z{LUvhKj~yOlYG#NIak^T0@cjsyoGa>%ZgOl^$H>GlAz<8RRT1fYDI_SC8o5XNAk@{ z$ZUyC4u&MhH|TK@nZ8Ha`TtXzXrwDm0bk6h6?_zXpje29YrA#GH(z7UTevJi%}Wa` zdq2T}8QW4)LT~11s`%%nz3^_5^in#}St-HKXX|PNKUYr@-+woKkSF^|W?=sUVxgP< zB{NcrcVm;Ay`H zo(?E@vck6jJqHDP1XhFqmH4cI;}!I{$;5N~+!AQZb2Fcj%>jX1lAWDW0K{IsM1XEo z(1n-NY);-*;mC!gGFwng2ZBH$8iHJyc|^g?UV)h%7GZPzOD+HW>+HcEs%ohGjj=C& zM$JOniiW3Y+}wo>%XL|m z5;r@YztDNj)pFV`3y65_dN6j$U~IPhF^j|n{wBgmZ?=Z2A z4vQg(BI=pgx!#Gr0!%JB&)!B-*M2r6R$`)*SC8p?+Zs4hP5Z74{R;gToRjA#9s`dr z^gJ#oW0}meBn)sAE$5p`Y3zWE#3-N5Q^_FZ4q{o8o(S8RvKo67Q)RJ?Ef&)h!Q3Ss zF!vWOP0jP`Hz()$FT&g^g^F3c6p7BAT;|zbVhi=;o*8o=)tEc}wdDS-r2f+hb=BPN z60*73om+RNHL8rsOq1Gvm*rn>`Jl2ObZo2J%M3GN4#_ahV!_{ z#E+e?=Z<T5f@FK8Kdw@py~J-nV5v+7CeL&Z+ehHQHa%k8Lg++d%H?XH@*5!e`QQ zU&AyVBKL=86CW6$7V;AXp~%(ovR+xG;hY3QU_GeUVR~=q!1UhGf$6;orZ)uB>vCV> z+B?-r{0R#@%~Z=4`9CQL(uv#qv1=$fBSicQ!0e~-ze289uLyWMoyAd9O#07GIbh3w zGGGs+8e&ah*i0x#bCpv?%rsZn7JL?GCB3kEPTs z7(Owkx`EjUH!2v@K{VsU)lS+*t&Y9PEzjFC@?$@P{WkkXB>Nye_VRQc%@pq8@2!G- zd%66uR%&SD^JRKJ0VzJ1(x9Em?ryh6QJh0z;3a})a!5pZo(Tkp1=%y0o!MUXM$aQsop4S6Uao; zlWf@EBT#aQuCnD2sHVZB$uL)VCoTMgYs7$*t^J}n``Rhq-GJN?l`QOecy!cA#^L8mS7MuSLC zD%%veEVvAls;TT|S~J+h{2du}NIf;(^sOXaBrKEUn_3DHjNK)WD4V_0P)4{Kf^F0@ zYD{ji2?sbR1;L+#!t`i$0E&P@v}DZmh@`+O8Umf1EGT(JL~SsQYkf(ZPQB3r5eTj2 zWRDr$PiNUl0)}uTDZmgIa?W6ZWK^9qz(hcZbZ=zMAn$Ko$Ubg`zbt(Wgh#-PYQ0tf ziQgJyG4wEU}xP2s}; zA(_q_6E5gk!2TSapo8^+VbMzBiRpCSZD2)7_CP!_A_{yiU|%8myg5id?=BpY`MgQ3 zl!X#5^~rD;DUB8xDrzFsD78<}+3Q8c(*3$5qt2R`d9A2eu5}?+1m&-YisgD&#Ujl7 zV}1E^=Ov_YQc5jOzSqy3EjnDY7<<6(`H2zYQPi;V@_O-{C33M6k{w|f$aRHbEeAv`{}#*s zI2yH|s%&(!?qXk-c*aQpLoAZf7VMy*tDm|(^A;KE=>av=EOEt3-Qa4oa?qzM4f}Xk zo27K_N^VNiW;wF2BNG7^m30b11d8W^HJl<;MDV?HMz$_N9U=Rn=_FB%-`hdZ4_8i8 z`XK}yhDFK3#VK(}fZkop0Om1w0VDWY_64EvL(^}Hl)TDvvzP1d{XEQp75=QO1-8k&Lti{0AwXdB(3)3T3VB_@8T&i|el~ z1)JJ(^qXSc=CSus^WQ=KMaE6dxyIN6HKIGzpfB>TWgD{S$|5B{WWpW!7nPkAHvS^< zcW)QPUpF4S%Ot>LD^qR`Hb~ij~QwCm%VOA7#Z9_%#*zh#k15@Q{R{= zQeL-iBSgx}Z1zl3XRg>%vT%JDQ51VR#E zN+Bd+2As3?n*Rj{JA$8PUr72@3Hx$i-Bh+J!cXMNj)Y3f7#@h)!&{3C{;Q%ORz|4%nBYcbSrkU#QcaUq*iYN%@x!a zo>1oCH^bBBKyjDXyI3X3U4B#MV6!s^j|t0j=ljlqXpfvZ*vT9?#Z9Delt=X}=mo8f z@9s&#D=ZEl&jyv^2(|W?ZpmBuFNuxEAHod(3IwWcuT!#ijs*vl}(<;L@KeeZ<#gl0cX$E(IjbmZp;Ij(p|KxKUZ* z3#{-1$$cH>oz3$Fiaa67FxOGV=`!{*W1{W9R?p}z##7Y&@5ApXWub-#l^X|*VkQ{K zdQNKaT^0sbr`^%?EB1w#>s>7eK3vubR!8j|7*n<^N zAgI(NLZ?cFi}t&j=S>8q3m^X{rALvp>xzzos)Zxr_RVevX(6agx+z+wpObjr4xO$E=`K4)kK3OMf7S{P(+h- zk2Zo0U}gvW;pN$Dp58l1Z{vJka_D_p9)1hhR{1- zY1r7-bu&v7PCThG%Nb;aA43|Z(n4&MxFH`5C=4EC0$-+m++GuYQFP^NF-3eVoa}th-nhjOYa@izZOFY1UzupoPc{00~)uD1jQ%YKQ(`G!vDoZz~(@Y;O z#i-pD2_N((5E*+Hg#wPO7mFk7F{}8X;~iqz%LNqd_2#kl1U(h^5E5sUwMZ5MSH0V4 zl&u9A<`Du_bGrXdTbRe2b!$dN3W*ZB7}wQ6WU!xIf#2p{9xNbhd&_Q=c!e!nZBb^; z{5Hy;%Y*2CQ0WU1K;g7guJlHyHXCgZb^D^}kxQ4LIaUw%YuW0;bfA0H>jD4nfd9Cl zf#BFuN8h?6=!@2pf}2S0!76b?urU1;as7 zC|^txgfvArNxa!inPHEaCaE`FRrh?OY?D1^ddGz+dIPmEpBFIrByN7g+;M)?K^3DW&3; zbtfahx-9JFtWm8@RUgjf91+mUUr*Pc8m|)6lMu7AI=MTWrAOx1-K2}x>n^GCmLXyp z(lNCRWsF*O(=*Z0$f^?!t1xqxzr_^egtemTwr0rsg0EruO}EslL&F>_pNfvkx774S zWyP(M6*nG}S=swQD_wltEIvM{-c5P&qO`74UL=7H7bKL%aKN}1rFK@tRZASrg%g`+ z`r1M`Eh3`e!P8R=a@F<_;HQo$2vmC$fx3m7Itack4UZJcAd>~~juNWyjX?r{B~S&G z+?vZ13+<|UIYJfkFcMOjlNa9vRmfk+-it#eZWF4o9I7DTn4}6qA~YE$OD9umLh;j(o%$WT}u&j;HZ4aKhWC2 zRK%q$UR{~ngy_o7Xf5JG_25C8lU(X~w-62$IMxK3GOb_Lh%3HT5hO4tAF9%RYtWAI zsY>A1puLxmRWw9__AX)80p^$@B26RhoF9i3B;$EAN&I|%2-Iqj3P(I7Irg~2(a6qW z21}#Y2??(KlJgH^8=FlKZ73}756hJ#7sR3c=0!5E;H zF{KAUG3uOa0b=&P(A<;V!^6LrzLSC!bix_;gYU$JqI9eU03T+u_lL68j-mqKlAi`( zhRHv#V0I6J&ww^25$FrR44VVmnM1X&wl_2H4G*cQ2luZsD|eVmWxHWO!E4xJdRc4 zrp7lV5)DfeiOV-968H0yqx*Z=Q+BU;k6X@i-&?n{vb@*7A(3c)JCXPn$9eqZ=>GcP z_v4m3J3fAv`<*@Gy(aJ7-<(J+T9Qb7nLO@w{N(8VR(Zx#zv-=USHcPNWZ8 z7bg-6IU0jc*JGxCRewxDO6^k_IqdICdRYC_2osf3n3-iv03ddR&gou+>8lCJ3fOI{R`bo&7s0 z|0*}rdB{m;PfuD+-#j6qMy;g1kNwwY>BX{?x7Ah9R9^ajFwgfyD0W}!x?7coD|KG! zT?EN7B3HtKpa)61TdBO#j*CGdE(S_WIZs zQLd=8_K=@vMxbBA-Rc$Wq?_}o zdtI2WFETEUM^S3J90#WXGO%4}vC#U{}M%r#psqir};_<$i(KdmIHrK~f>R~B;P zZsdmijj|2H$!)S9{J3nrA4N|lobKa&mEOzMk2Pr;P!YZP5ueU_P5^e z6GJ(iJX*Gi_^?-0oICLPl{IE|zdJwRKSa8>|HPCTJs8eXM$H%L>ZtJG{}c|@8gN9} zwwmF)(RLkDt|HdJ$9ssX%e6#T&QY$(4x4i-@{-8E+B@X+Oz#j;b7QNXa+)%x+z3rH zRczeYNGT>ks>6bAQcLP{O4aOL&>jaQd!x*#v#LKSHPf3@5zG~SP_9u2jL0Qw_aNEa z(M->%`4UttM=GVaq*i$vrnx`8C7r=O6VrU<{aRAqOb4|m(^uF{Nyl3t2gi{q`Gv!! z(wX|@ZSCLE9l+?D+gjR)P14ooyJk;?b-=N&Md9R{-k+8pX)sw6g4fD6`+aDN^`yVzE(Ed1+Qw znT;LE7rY>Bg>OT;KPbxi-CYJ@K$ZRFl+haCt&9Nx?@qvYR0@nsC@ORL!e?Di%O<1< zbjfRq)DV^lCiuapl0zt~+!D)>a(4(ttyc*7seF~Bsxe*q8K|yfX@$na3AIW<*SRKs? z4r?-|+{N9}NU1M8G~hoL@UJ1Aw+<&=S{-dKvoTcLm0gM3da!@JAb;j1iTs(5$NOqW*^bB`*I5{|>CDm$ zHSaT^18=F&vr|WfulUbE_;C>UUP0h{10ZlqeEr1oZ(xO*UUBb}y^4}S6cji^gw&Qd zC|!0Ak*7{Lu0)lub8<-OiOI+#YOA=C++>EeE0IzI@0De`LrL>{gwnig`A-MBKh7H6 zJIWp`R7N^0WTsZ~smB)S@lr(iS$NQ8$|u=bDZk++;ICH7UHy_{rdJ9#s)S~q7Lx?E zQe^E2%>?~8E9DI1hVMCGFs4pEKeb-;mSHfNztH<(djCl65o!R&bxl^Y)xC;OTZ6l? z7l>;PV{3k0xbXK@xSR=CudJTTa24xpliDwGhP%XZ!;!cs?*3fW3|5hH05oM&aEzL$ zct`Vc;39KB5fwG;1kPVHAm$AjIX8K!TFbq($B_8`sFxC!VHNLGPK92}r{jpIj^)!n zkygd`rvozk7+>m6(I5I`Owosp%;MLl_H)zmONu_g=^SX;24d0Eb6-9Vv7_vwwCO4D zhrUxy&wXexHpuiqEXvWqtyk2+nVzBnrW${+Whdw_Bfk}|n>Nard23H$^}U$THFtI? z2NkC?Vt4h)N<*NI53Mm}Aj?80`jq%JDZ<`CtoR~Q$T^D@g(6n;2_`4FU z^jw9k!7>_m^W^*VcsUH@IXA3^`H%X^{biE&TY2By7|BoHN*9q2Y`@8L`Kv!-SkAIh zV#58sdu6eG@`1$!t2j+e2#wtmx03uoI)C;4@_}jhzA2LbpKPBQHNB*R;eYfpRv)o! zAo*?`*+BTK&IMiu@u91X>fbWtXN)oOYq{x)%kz+$knz{Dp;o-fsQv{^v~mMcUN7q$ zf0+Q_@iKRkPbGa`S^~u_M)h}vRkl}|zEz|(N|&x5<5tJVaPeujtry6%juTH(FrS|O z=xFi&ar>Ekqk6RV2}Z!ECT4!>>H74i<(}R;M8jU3<|L!GA52WZovlM1RBRKZu-@G} z+@ExkfxuKSplV4Pp)S zvrj6+5G)F|4Yd2>UCwSHs0ygwy?6?=oeArS=b#{0`1FqxtTXtAi+F^>z*p zG52sHkM@lhdGy&9=JSp_N9q&q5)=5bH=)ly4Fl62%C4GDRAN};U#7eEi~q|iAq9Kz z+3z7vEW!!b!78N%^Z=zhhN$j7i4ui7#tBiXXIGTKj5WkXOfnSLc$UiMUveT2CQ6E6iIeV7_ds0 zO;s~v7E9vEI#*BOuw3{A3VVwGwV211Lw%1c=7`S{MzrW6O@@zq$#CIC=D;f0AT|!D z=I}ioq!Cc`I=GlkuBC&7?vrd7@Ie^UD9$Y@jj)v}qq|Mi`YMKo<=a+uz$UtNnU69*=zl{$8%&SzHc~>#C|IX zB-t-GGcBcSS%U;NuB=g%pPa}UB5Tn5l#HG!Y#@CgY^c3acj9Cgrzbr&EztyHw4ruy z()3MbHa^dvO_w;n#WKP)5$?(>am;Wf4w>=61DI10JsgRHDLkH(I5;_&lsGt1dqqmN z=tSaB=3eO%N15Gd*yEetWgh!Na>ppC|JFiR=5&{<=>zkjA43}gRxPQEf)AP zA@?Egr34C*{Y2g5z?e}r!3xRkE2l4YXkLZz#^cIZNy?z+u`O-T4%HQjOi zc1c4GT^8`}GJzP}RRVDUfOk{f;s@X*5Si1T)MK~=Vu#he5(04=gu-mr$x;-gBJr4G z-Cz-AOiRZqFO8raO8z)#g|<qQ4RsL{wVh zfw)~bA-SaJhEOTU#N{J2zYBNIQpO!C^v%zsU0zI!L5nBjSoCgLgmugIHRRr=q&vo0s9 zCiTDXznsisSow_Q6i?GxOk780*0c<|T{ zOxR&d1-t+_6;`U5fPzQueh4`_oYZf*yC00UnlQ*wrP42Ae$|1Y&X^%yR^L_qmMFp| z3=x#*#ki0om0aAI(qG7t-tFs2@eC0iO#7sHY=didDB-V(b$8!1({A9hSp4oEVZ0>4 z!tq|YZ#uK^u5!(PqPrybu|zc0(H!c;Dl3Hbxf0Uk+jT$(C6q~Q5LTG-;&0ED#VFqS zFDi*l`NO>^vL=m>mR%V{o$ZGPIK=?NzRfo%8Kt6))u2+2>`y}G(QI^u_VD=obV^m=q^4}Ee zRSZ^{V077NFeS`_bQ^CLHgJ?BD>v}%mmAV)m~7eExw(g8Nr)`Zb?LFNWF`vNLA}ysfzP<&NYiJa+R{~63f)6*oVv4DLYlnra6_*lidNR*iO^mYIVPZ zhyrExmgF#75H70`ku}(a@QO?oBwz>;<->DE@DN7Q#ACqAZMAr*h)@3>n8esiAEXS4~UWYy?zNU53GzXP&E3cf z?fii6wB?J5arn&GzhYuADslx;P+}Ph9%8m=14md7zF5`_@jI$!bhc)ME+wN~N}3R7 z(P+!?de@ZEA_R)-uVGDhmP*g1-4xxzCR{0WMqm*xpy{j=WdZIip%ISlwzE!@F}Ogv zvrcNgfT6-vglWLP8uQ~~=J0vGm6YMt1>5xCXf80a@tJOSxtXzV>Qz5wWsQ1*TB zl^A=r(OL9-j#I1tCS_v?KoF(mZ9u3V zKo~Q_vh!aLgw+TrO^*>=snlB=)#|{CJ0YuMA~rCN;%|BeT$I1isn!p}S5bp{ap~HC z{gR9{Uq1%$P!fPv|MjQ&u=Rqt5WHZf6n`>TF081j(z-vbz+<(+v5o> z9Jd}tE7`#-!9aVC%qt*K)rUnZM|QmP+Oc>Q#0BVBeUsMPG9MafK&Ju+`h>jjHQFY- zuZ}O_Tdj=T;a`MK>TkFUbEVR;qW}`o|FwlQLPZ6LK{hHt;cn)Fppe*1wu7WR4YvRX zAOx|>h8-@yt`#%}{4*%4J#gP*bD-4&M2HD&hQ*7TRK1Ii*s;icnz@_-i?f3BHDdPf zTjVGPyE!HX>g$yeb=fR@|J>(zW-jFgVi4xvC_)v2xnq}#A3c#!y7rLw$9JO*C03xi|)j^-aLJ(}_f5PRIJSwDG zP!boDHWU)JWR5_ff+)q45tCQJUP`wt5SP>~3$VreD0u{UI<3~52cGiicq#g15&WQx z!R)F!fQcZ}ztpA{CzPp$=rk=9omvy1xDZW>s{~vKGVKuGIiebc_`c&1-!v!+g?}TT zlVZViEERCwDmNBShF+N`hbXip zC@u*kpkOHAKSA~g)X??es%gOUbftxE77$X<7p{W2DSsjMC$6BltZvIzzOz$We3(fP z_9nHTYlfA#WB}h4yNT>M_WA0HIFdElIT94ddoIy&GS5{goRiSU@6vc_^=3jiEL2e& zo>fsBp4Cwsp4Cwsp4Cwsp4Cwsp4Cwsp4Cwso+WBSv_J6~PFDW86l;&_%|vZTO!&f$ z*obh4s0}-b+OR^@pQ-+<_zf5BmqX4)rPXu$hltI;J2Wh6)a*c=5h!L4Fn@}esn{Da zJQ;Cxe)fb*O~UC`Z_XZ+K>rlZwItf)fq?z7VD;RbU}AwetgUia@#*UJY-7rQ(uRFt z5Gj-UY5hoes73Zx|0eca{hREP--)ftCQ48JE+~MF5yIE=oi|Cy5e6a<-7}mz6IX%p`Dy_sd_#`k41Zbk41a=_C(^|Rf)vE za9qewj_xn(-Bj7V<~d76 zo}X)3-aBkfBJu4OY}q-k;3r4-SGYD+cCUGl51i$`w{B-;dGDv_!+7lC$8r1>KRLR; zy`Hjr&3hco_<7IIwJh%iW|RM1d-hvKhr*8!4Tb-_nOn0GKTISBK9j|Qz4~GdyC+!H zZ5K~?pt`L`<%1yZQQd-(KEEetL3LY>QS%B9RJWbSK8Y&$DsKo@|9KZ>vBi#1i^|_U zFDonlJ+u1h{H)5$%}Eox`Hb4n39d=ieEAVov*dnij#f1%^cd6{wATW>xnDECZr(j+ zp8M`kUgx~~sQd1_Xso);SGmm7;sHywxckc-jKJFX?`NTN%`yj`e|1*Y`B{}e*Dra= zxq5-V`rNMdpS(D$rrxOevh**~r#sedu}VR@lb-IDW7Iw%#mRgKX{QY3!^2r#7K3Wk zDs$P%Pv^=AS6*ONPt5H%p%=G%D0OeGgj?rgkA6mNkrczD@~+;DZL?9+S4Mg>RLiLS zn68vhQP@X%;O|Ed4(W1L1?8QTNi>{m4j+|k)QY>f8NM;k9DY-tQ7hqq&G1)yn8R=D zVbso%Gu`jsN%81)g%=pLO>~c9ABuByu`k8nQQUR)C-levJ14w)={>ye37)K;_ypa2 zST!!armGW%=+4*P&edHjdtS@~7tSeH&mFy;S-fo5=T&PHh)B|B`(?EBIjQ+8U31%= zs^(o^&tkNLhP5u%L$!XsIs5_ur{VMJ_MX8!_GNC+#AG(QWARh+eSEuoG2iK*>lgM6 zpf+lkagTbjZ&Gg_W#JE8_%_SUTW<-E8eGfFzQ~w|!WH+Bh+#x9eADeA0)oK(e79S0 z>`f&^l$;R?-<=x@-*j2{rmF&xo3kS~pO4RwX_T%Aj-6PD3Gi#t)_-TpCqPxjXvpiEGH;8waGdD2s z>3nYWgInXfN`~@sk|@ty!9K|{j>2XR<2aZEeKQ}N<>T+Yv(CeB23~yu;nSi!bJ6uh z@-Iltm5hAzeG3u`tYXQCgg^JLC@BMrcU>FF?~#}r@ZmeNIuOY}&*Y?d3k?u;VY8~T zIg+1C1L)V6`kE5;(On;hd5G@IoxF21gK0*0cQ>oI7Gj!6Z2eOEonUS2g!47S7z$T5 zTXh$eCZc7&L+=X(EwseAbwg4Lj?E#bPjg~3Uo$*@b2`8CVa?Z9nJ)!bB4|bWR2~ty z%9-cRR}W{t<^fhzq!P23FIRiBDD|U&6*8JUQzAEHzUFmdzAh2~n##9Ln5yP$>UqU& zGF|rZ=+@lgy{B&&@EzxtcQE+P7 zGP>Tu*B{aR3_1A!`}~L^FgZu)_~F)!=Qg&XJQVY@rq~gR9vNjfr(c5Z|MX-caR~bU z@pfbdes%n2@yj`pNEGn9jNk42en!0+{ATgn#qYB`J5=}ve!{@G@>x1RaNA&ffon#w zPb|DZC_HL3XzZ)q0PYdp=+&&?*ikS9)>N1Q7=pVm3y-=g63mX=em)wR(si&4a06x2 zq9@M74HKMi*TVvxFRhKunH==VhfNRRIuw_22@l z_NY-aSUBF97t@n#!1n_NEu@#TP*9j}u}rhnA5%Egtm*{gaF_y|;e7UXVT5KWMu-QR zc|14%^;CXYF1(o=FVo-8R0bJgxgNJ2UaD;`GZRqP`cnb1$-wxclo5?d-?O0cur za9xBkNX#>%arwj(R`GjOCX1WH`&<{v>mTrKR#k~iVkV*{tx|J~gU%)H&*Xz5-tgS& zYa@j{V3bt#NT9%H%-j%y*JGEubZpKaL&CF&wOz0PMXtq?KX!pYM95cOFJB)dLOa-^If*K=HL94$K66J@ zaf9@S$3Pq(8Ga~>|IP8kYBrkxx8R2_@BTY}I4gb_f{y6#_~FCBhh4)DExCUy{BY&Y zzd3%`p|v&tEBJ@LJN}Lz&Wax_G+%$m4}TT>kfr&DZF0~ej7QY?Yw!;jZu>Ct!yx1f z80IhW`wWcQFpCWZkuZV@EmkNAL+M+Uru7hv9!&iarMPi4t-@yUcy4@*mM8T28RQF8 zU}qLDkUV~WM)`u?iF_dzF^eb%wK})k=`9S0D_>ko^B2Q=pR0UvMd$Jb;!2^CFPtG! zLy$l*g8Gy%ZsARD)0I}Uc#Q}UCYh(A+j7m~77X}?BR~vSYN#x zN-aP%D|KA+b&>p}0D-JQ)ugNuD3+`!rvrAAs@fEYTQNFTV-=e$H>?{zT$de)sbGIlt`(FmO6Zncqr&*YV7) z{O;xV0>3XD=03k$`Mtnz<&i{U@KMVA8u)#Y_XPOe%CCmsKy*lh`33mZ@M}PCRD>?6 zhTrS_K26^S^9%5sz%L)YQ4znv{3h`GGkZw+=#D1vlX!7y`$@^&q*6gL;ZY^#ax6D* zx-1aJ3^Ce%UNC%HZXkTyRc7RS*=FRi^J^1E>9OeP^VkZ=E*;xmHnyI~xk$(Vz~eU& zHi{vSUyS|*&u)TVn6g>44`@y_nf5{ANd>~aaT@^y$;&I7a{;?G8o#9aM8C=_RWWz+ zwyZX!aC@T}-P_HayhAn?O+RPxY_ob>Kg)k8evjC%8gCA=>`i8LXLob*&aAA>7g+WN zf|BK$leen|NL8JDWSeClqh=4we~ilg+NfN70+W?is&un_C(Oy)^Rxb*a@XJavi?}t@4Nm!rq^G#UVnaBf6~DFtiPu= zXLnqGT>L=muPYr+TYrD=?>XVO|83*@VXr^2rwCSW-yEF$UKVsJeD_uOg$)jczr{vL z#bs=qur(4W8m)Iw0!6`Kc+?2FGBg;TI66EkpJHw>GNC9Z7`e6RuAu!?QU6^N&+C?@ zHU|C`kx#OlZ48EQEgIUewd#p$`!$|=v^l%+RBO*WntQ^dUR#LLH53jM^@l@3mAu(_ z^ZGuG?GHyA+ofK6YqvqmduBCkeUhlz#+yO8wNTFF&nPNA9c|e5fzQEt|RoW|%r{0(?ZFcQoU+M%M$8Xr2@?dYN%#dZ-^)p6qrH9dA4}v8HIcT={0z9arv)b8s=7I zHOZfOjYsZT-gxBO3mZ?x=QqBwuf8EVWZxLNcF#8X#4Gzq$M@`8)v)!UoRy8IzD@mo zZ#QhM%&BjD>C_^A^^KA33;ESI9{E;%V`H2Ko}Or77utYjXJh|JFqiyW!}i-vPuC`v z;iwrI4iS(Ez~qA@oVOOS8AUp*TZ;+=H2Nc`TuYMIKv6!W5q+f8L#~NYNw6<}zS7rj zI@avlU)^>AAeLuL`42vo9E`PyxLIYsy)s|-ltyxDn7o|QVU4EoqXlKd4s)0n8vbC> z2;)cfpE;D{qQ#6T31X^=ThpjSxG&dM|swgKk>=YtcQy1d;fggP5x-n8KS~rf%WBqp@KWGWPG7ET+t~kC?@86EzH*koc#(`%(Vr zNIUPX(!>Hr?4&j9lu@&uUSTKyr=UGI94f-TX16_`LP5*k5d@N;l;5%gx1LZ@kCuI0 z!Dk~%U}R!X?jr0gn@5RN$&jj2`_^4$w8PMHgNut)0Jbgnf-pM1EUOM(no zZIhf!(bT1ToJ(_A$+xd9wHFAKUM45~Lv|Yz$AbK4wfMdB$C6#sU{+PEYB;ZI$b)lw zG)#WFB5!uXl&T@O&H+nQS{jBL-)QCSmDXMK_>I=qhOPIF`ibgm!#69f*NapS%?n!( zG<@^IQLn4sHAdo8tF->PNIJ$t3mfKEj#}LKQhZ_KyYYn$+p2~w_R;$x)T$c75*&Y^ zpz)pYhxik3<>7^mwXO1N<>JADhUkUkj}$bR7smH+e+AdKHkdtIk2OT^JF&6x$cZJ= zUZZMnkF;0cSb3NwJ$`xr#v>HoJ^Xg#yW?B>Q+TH#TK?#fT>0kRjK~^JPwZ_xvhwZ5 zJ&zvDZQOHWW#gQcD;iIY-`~ISMJcSD+qh@^AvsytxJQ1EHdAe7J%!~`0D)I#E#swG z3+Tjk%LnmyXw=tua{k=9#cNs70 zlr}2YLQNf2jCxHU#jQ(|M{7wiQrR4gym+f1Kx__oed9!qrj9>?I$HLAg7c9qlwI|H z;{wLR_2Z0v3n>iEijFf4NFe3bZdXe0*}Ye^vg|cTWoaLhi*W#tezg$8fR?RTKK707 z6}!FCzAZa2s9ZhHc%-Zug7C1ER#2!|S6#IPYREf8gZ7#xhGjE&$H{K%7J7-{IOBBB z1#(3Z!&>n}qE^L~EuZa~C50iE57ULKms3lwTsUKvF7*7FbEVHKPT|ryf9}brE}+`P z+8)xBG4aLz`lu2ZaIXBK?5dxWtAqVbm)^Z3ei8)6znz1od6p2p+q#J{K~7aJL~lCy zVQMD5J7gNrJNa8F-@Tc!9GbOx9Dn9=`rbI>9)926KF)~CFz-`;4sfT9JE!H!ZtCXj zqt1Le+bU<$$f>ye*~Xvk@5vup_!ce2vC~f;rXoxx?D*CgZtB={ji$ zhqW7#Pg7*vnQUla`7A{O$xDI}38}gY2}Nwoe58+E+0Ys3Yr}{HXG7v=PUVBsNS`(7 zOqB08GH;6ZRn9Peq*KpC%2&FCud+Eb?5IokNbdwDNKVQPlGNE(m^gA)Mu)TmQk@x zs><~hr=;pBRaJGFs_K$z@;9pEQpt2HN$jd9l6E_WNaG=6^pAAg!BsAj}ZOI5iJCNNsJaO)Vy16(~p zofEQ@D^}6qK6Cu4{!-e*-HLtuIlPzC@oV}^QJSqdG|qVRST3yy z-dK4`F72lD=>A-3zJWh0`GoOD`b%k^{E?=|AL~EPSb0JoNl4S}lq#qPm6U6gDt2=E-7hZlTa1XAc z+~@SCrCf38cmGixuk6bwW2!fe*tT^N%{Gn{Ldn;HBvEQ_D6@}=-nNLIB=Ar#pIRCz z{A6jQB)@bRmgqm4Upj09azp8`V~7+(z`@WYj)Kf#+uNTt3VH zlg!-1Utn<_%^Jj7Ew3Lpl_?)O9%mCF<;oYh*g+Q;yH2w4#|mt;^LdnWzWm z(h6XrAeyJvathlg)ukBcPU{JIq?Jn*Z_C{SayPjgsMsL2-HNg2T#Z7&U{q5HC>dTuS~8+1twO)1XA#T0(BJKr!f1q_U8`vGgrh zu<^*-*M{?7CdTtCf$+yoKdJwAhqU|@@;8+c^&z^Ypv;ePE1$k!A?;IhfGgFF@8)!#pNq@DkY5JO@%2Zrsed@fXc0wNN& z$N-LMDL&Pu_8}O<>9KD>Os2wEXA-aB7mo6?8RzfHx zf7nsr?*{c(D6e8cCf1Io3Aru2Y{ivN_7$c>@%^yqFI^=!k%v{lg7}CGdR11ux2*WR zkPZkeQGG($l~akjGOf%$0xg5(Dzk|rhP(Sbved&pp$RM_ERKzTe@mIY6%dyIM=E|0 zpWi*?iv@>au`bNZDGm+6;bV{pqrqWSv*2Rp2ayVc!&+c#LJ_OEbQlS%ezd@<*-`n$ z5&aKT4jR$_IEfi5d&w%A04K9=Mf?lWmaxsMw4RGU~UdVxU;DZMC~0>>XfhVjAfFvCNK6m=J|{?-eX z(%~R%!V0FW0$FHSui~)#PX?oWrtG@_p<7WdmT{mX;RphhK;W|BzIV7ayQHRA_041S*?SqcW`Y~$z0oQnp#y-graZ7ju4-cXA32FR8So=3kMqh|}@g6V{ z0e9Gj3y;F*IVgS{qq_;Q|GvXX;Q0JF+jkQ$bNrkhQGQMb96zVmuwFsO%QCdy< zIn9a}sP}_z@OQ47fv_U}P3Kcd{F*%e&g{oUzLNNZ$X=%Qaz2i8kN7_0>`4gjLwsYiZJkUw--K7^UZ;`_mKMdwTdsw zh~B~M!uh+L~aWr+sU-5&KQK>%?%D8IYJK zDOU*Tx-JnV#jo*di+uu~viL-#&Y_V~{UF}<+n5#UN=P8F}{FMtYzy%h6a!>RG-ti)y#?zP2>_(A);;?s=pA-kQ?FK&+%4q^xo7&DLg4kV(1 zVjPiPB`n_#R%W1hN2Kr*++A(VT;n?^-rl>oOKkDI>h9i1;rZO1FT=k-0a>bSKJygR z9#zBtiL(sSkNk+o`=vMke;)7Oi@GHZ+kDjHedWymH^&?D*p!5E*IaZz z_Lk6`rkEccp@&eN=DNtgCn3#M*j*NI`wD&~{2t`@4A*|b@4xwN;CGaIQa2B}U&8OJ zJbM>EY2zpSy!1bf{t>F?`?fV(v>q1Tvkp1@k`zZ>B|g1cniel!6;Dvd|4 zy>|hOs=5}xXYznV2`4~;h=3rViK3Dk6cChw8JN+GP!+){N{dq4s!&XXszBl-lGEc@ zTICjRwWYnb^T0F!_U;Uy?4-~-Pv$WwXC{C{ijGm}X``||d?-}hbgWX{=- zwbx#I?X~w_d+oLHG^g!mr_YO>D-tz1|1C+^C8s|r>jqSYGHT8Rnv9yWarg#|>iF&D zMG-Y(YGd{3bJI~}a`h;_YZ%$tGz{m=Y{Ec|oJFw_qJKqx6s3-r)Mt!35M1J3gn*T?lwTFzVShqqAIS$MPBDcKM$#r$Q9CjVUElvBi z7e}Jc45sHrJlsbq85l2jOPBRA)+nb733Dcf}sRGw9sf z8Ox_!E_9P3xYF%vtIcLP<6Ok|SwX8y1Gg-226`lidOw##y%)&ECmvP7-3XwdxfKd? zv26{0M`{>!II{abw}-rnA^kRHs%p0IF2?gcm@7D^dzmhvydcYVZy~gOVXqIH5hf14 z!k8~ye2FLA<&yYv1~-rUpeJ63MX(s>AH<0#X(KH3blUa4a9+CCy;&Rbb2^u~gaB=9 zvh~+zd&$Ka(=HvnG8F;G@b#VD{6MBcJTQ-(&}C83z1$P$DveX$0?6&Awd;3CEa!TK z$Q=2u-+M8xn?5_%H(*ax* zhj^=tlN?f=ae8c2g1^3<^34v;WjFK07Z7@}`7QgiF-zvcPGA059br|{#OceNy{ROg zDf548e}3eJf4)D9M1pywPxJHjoqD6xGn{EqM>_S~#4&!!TM!!o1$bLn(B!{B_h%i> z`IZ~r^{^uDG(E&bUO&bY)maZ}tWrBnL~8v%*}r|HCv z%j=GuqE9z^IB4T3Y)tm)wLW!Tf0^pjL#0y-m#U7PQ;rYjkrOf=54syXa%%ry@7TVE z>fER_ezWoK+krgM%sr`pmo-$k=_pODq<(dATh*3~0M!|7zuo@rYcO-!e2J*OjR4dA zn<>%L;h*Y-t{%2eFr?Ke?$0UGCvaa(taFQE0WI&oo&G)I)Z=x(=busiyY5uuHS61x z$7@zOCy&=CUA|_(eqYrte**gc<^y(8e*JUfwddt{v|Lzcc5=KP!FX-cq>R^gNx18V zzo_wgy)?M=?KEe+MyL59r*m+{VUtjX>@+&^2!`xi8M0OXW+-RKt_zxbWz;@X_W>EX zGg3!x@$SI}b#Q)sr9LbuYX?N0)7O^)6+cHc?=aAE3T_1&OQ*9hXI$pG`r+Y>o?iFI zGAwT$9xhIIx-eOGcnd#dgr&c4mLBRW+)TgZ+)$UkY78G9?$fR5gx!~V5U=%_syj>X z59j^!9bS*(%h9?7@GVy&zU97+9;pWLl{6UV<^FZaF|HwX{7#Gqj5d1Eb~<>UW&`+0 zNB{fnlrQ5q{afzbOOD^)*uN{ZBIV!RzgPeH-_pNdLQnB;?%!Yh>3{oo%?jmQCpk&~ zI|g*!zdNvz^1uE28S(m|K>+^ut54(IDsYqIX_^@?>N&mRpsrkOCZVe#toegZ@@$~wna`l_}VRUz<=E*6bgQom$OI@_3ZE>>5@Pv1Em17_o= z8&5Zmd}(als{+3I()j5?!eiJ$8k3G=2x%PIV|;2GKm9V(_-c<4+ih%l&)D*japZkt z<7PJUPB*@KUxH#E7&9SOJw^j{Ss-#;qfj}B(mmmuT7wS`bGOtUOOK0%{J#euW74fz z#-xcn{~gu6g}P!p7OKmQzZp8_Hh$3;ja~F=I*~EeaZo*Rc0&L7b^WJLL9+k60WXW= zFl!{8g&s17&N8BlIz~QK9UbS$9!JOT!}+k#@>p$L9UkZ8IK9Ycu4C5wb3lxokoRcN z{a!3z={M**!|`Z;mGqz6h>fr0iV?1Xh<`*65$1;fzVolLUuO<^OON{>4Ubc?)HR8t zKJ-pEPjpVz??0A)pOg;CF6>KoVIQX=xx}p{-=8NZ8l~G8;qIb8e@5a zPpW*~_^-%U&K)v_hc zj*jS@v>)4W9QnxDxD7jQ1nx%?6x(6UJogj=R~((5EO1lgZ34eZY#3}g zW(bZ41jk9R26%#+gQ`S=Z7QB%2dba$OCSh#lY)&H!ee0E0>kYZLu1kp5x;lyFqi;v zqpHi%Bt?#r~rD$6cs2VY8?4ANrg|PSfRqimU6fg{Y}A`6l{o|_4ml* zrvCTDIm!O_KSdt@+gl@SXnM>6KxAbZ1W=fwQU{-dQEmwfh4W4k;7bXQvTd8^VsdV7n{mSy$8+4 zJ}iZPMO&KFlWThP;k*OJr1P;M>&wA{JLEi0|Gu2Lxg(0j+7T?)Hj1(3MmY}g6*hWD zI7PIPvpE|%ocEO+)H#A-+7UUCH;K@nz9YvDzH;7-Nm$g$i2~!R#LEw{r;B}Yz?k_R zNX7(kS*|C13q-8T@^OOZksnc6@x@fm=x|cQuJ&5zsCxoBd9$~9do*|o>pbQc;v-8n zZk_nPa__~*u2J)rySDoL1ixSzG~n0+FFI@^3>w;pq)%CWYJG8HzNz>b<>&p}apA8x zBDfe;rEsfke!s%ZLb)iaJ&a$Xf80mWugRbAQPiz@dpQ1zDx{ceNv8c3G2|J!DC`X3#{xcYE^SGd~RMr6akc!K-t??Z`3n$ctLG%4U?I)Z>c|Xtt zcM!1vk|&rQ3-mY;EPNkx#qB}!jbPyi1ZQ#ZFzDt83>kK1NoqHFHU!O&xq7s__>JP$ zbx(!3)yJn#4=&i^v9-D$Dd4z6zpc@O3HJWY%l61qR z1k7|CX1YX}DcHQrV;_AbAyZ+o93EMF{02QvfGJN7&j#L`$pgpW<#Vyr)b^hZC)s~m zx0bSXku(9Fhv5q*pg%md3FyyoIBVRLZL$=P?`lgtoa5KUyrMSC*f6;`#r}i)8ZJ(?|6u!Nlw;q5J!Q=_HV5`# z(;^qa3}LSrmoaX9GkhMq$&uGS>tad9e%UCz-D|hxl2-e>?>Bw6@<(~XV@>0p6C9L_ z0kJj+9aQJBhOkGBaiFpZRlnGTW~^q<3JsZ48AmdvHuc+w>wwvDhY- zD%;Qp%rsBomkbFpbDtO|?!z*)P%J|^C+3(ZVt6Cwi3gPd;=$(TiRyNg<>m?E3Qsh* zP5gShM0VLzOhfZ}S>rZvo-F9z^bM^cHaZv@t~G#2U79tA+K)S+Om7O`ZD}g{KcX#`>9)9r5tj~_ z(iSc4b^n{&V_f+E+wDQW@KopZ`kQ^jX^+*6w*QZ|$J^HbkJ^Jhnnj5{n#Z)Q>7wX! zyrj&M|G;MnmTNeI8@$Y{uAX9688zZx^<$a=+Zu zmhV|CN9Vvpr#B|kO!aV&RSh8FX?^7wBUeVR z^63j)WqqS>BYb9Kui^xp9etGmzSa2V?Uh!$EjPPC(i)Y2Am(!4e53MlUZ9QK2iJoG z4C*>K^w=Fu*w)I!dP7|Y*JdDT#M*K__ssODSC`D>5jLZ9&*5AprY@`tSZ#1cTGPi} zw9*^C-?=hI-=L?ANm=7!Zj&b+GMt%49oVpL=JP!_b|3R8kEPMqS2;$HFl!frCG}_6 zo#Fp^VQ%be?vp9blHp&OAaLM7eI!iM)O|9KBB)P-XNg_xH0M5<^#TAZ7P(KRZM9ga z4dT8tV2U-$*^*E$@H?#UlUc9rP6x?B-LajyFr5jA0w9M{xKBo`)SUZd{FtfvdX7rm zC$kgVmo^>5?2#KpBAPm*K6IrfEmeK&KQXGX|~tB zvZeLuN__s$}Tu#i60YI=VBQSaS83ZaDbsrhUU9cQodX77^k0z|Nt~-nScOHu6q%7&fB$>s#fPE)l^6ejyx^jlt0w%fy!hwE z;@>GRv~g?7j3Lou%KnY=Vp;irv%H{||8J8Q&(Hi{dGQa(3-nI^D=+?)Y1H4A7b9hU zp*2b=@ zTP?RQGWqU<3a{mggXNE#TV%pl$F&8#UT~pnx)8s$tS zTCO*`IyFqr2hrD@!CE8vt!A@wf`M6a8$-U-T7#EC>Psy)h$}Yac9~!6*-FZM%x9fJ zT3Ksw-oM9M1&->m=K90^LW4oa6ilkCpifg|z-IpMSZ-i6|6$NPz`~)J70S2<0VL<$ z-b`I}$SpG%Pmhj3GDRWr^C825v+j78>~d4L*v%g+A*&Gzi;rEHN=J7wxbtKR)9(G0rku7e5m^ z%{MGSeA!1>fOxal$SmAbePvWGB$Cx=N_&3mjt2)0;eA9=UI(7q+;^_)Xa7R`UHeHo3j9 z$F1a9z|)&@B4qyUknG=9+ABo>}|0dJSyHhjD_!*?;LuEQ^yS+ z4loEDomM z8#F(|4N-Itc@yg;&%qUGMwJqqDqSFaOPbHR;RNZ8@D)f?@&wEeqP4sVJ)HI9!Ye%H zsvi4#9O<#i(_@{-eblpdCzsyB%x!uFuyVxRTADR|15h6Lxpe8!&U7WDy~fbB+(MEw z8yK+K2+dF^uzUHLc|?_OO?Qb*HIMmv zEcdL9d3&t!_Sod>A;5g@_q^^+FtBXmi_^XE&rTro%p+4*itpiCniTZuL<^^5{BdgZ z4f2A0eOmNaB%dhyHPNSibA4BkqfY9ZO1+1d0l+*Gil*!9ls(4KH$z8qrWD3&*G4_& znvvn+rDSV`w|gUWCDkP0RRVAedcX)>B!n5a)6FJ^O|s< zmqvyME$|i|;(zH*xD&;bwy$Vii~a<5?;RLQ9Uc`=yS*Oc8zYs0MyxGw?}OEL9y~rN z>;$PTo560qVD~Z4r{tR13x7w;;NN%3UZkjj9oMA`>sE;;x2VaV6d~yn{q=RD0w&)3 zk1>W_NLOS}?@#=2npU5~P2;ebk@NDB-)d!Dlc78q z*KY6P&#twGXN9&I+!D~8TLPFtg|=VG#Q?ojOm1jfYhunPM%@<>?dC74^)Gtm(@(nG zHDc`Rc<9679`^`D&yw)Pv35lrmIN9fBYdq~now(>UDQa~$@!3!FA?UU#d(6eS!e&~ z!Yr|Jc`QOYWq*C$C_gSR&3EjXnO`C2w(1H*zdy9COU3)GE5}7U80`@#sy?1Eo*R^W zJ>6z+8Debto8=ao1U@D9!!=vLldZOp3v ze0r=dy)fvXQ#G0obE|!@Z7UbI7KV;wa#K6}{2IBr494L=vB);vXa4YZX^`&6oW;#Yb&URfbnbW)gW)8KV+q4AF^l zPj6mE-=;DKk-``gG1@6FZT#d)Ks)7cnjf*8;YZv&^V6t*#7Q(?^Yza>ejrv~@<|KS zD?l_B?5jxTH><=BRQdBPG56RVK4?XgRmq->gyAoEk8S9%xrEiL!UR%XmCd)Jey*vU zXH$$Ehmpwos<)gs!M?CcnaUOVcx5-E&^M1~wzOLoULi}b#gn4nQVm^Vm6ey>SMQsP z%E?vlllvN6{zYgQU1$x2m7cEm&4)J#loXwG;G+5}aogFQFLBN1ie2-K5L9Bxx=2B4 zDmm6MkxwO&BJrP$$Ihxn)W#pib*QQ6T3_`v0S*sf4~ zNiPo%{v`zqHT=a{H1ROzV#E4)UWKZ00Jx2+4j>S^-|H%yXe_+?(yEoEx5!!IvzMMt z`Nq(F;Tdl8Xy~KXp%bm|X;pNvXl1N-=(EG}k~07IEE2xNX`MH_E>xQ}U`^TQRqIOI zC&y>wnbp{fttvZY-s82d_8SZDDP~GowX&>WV(3KLlymso>Xj=2@w$i{W7rV_GQ>WR z_ci9#{#XX!?qa_7nR~#ddu|I)bu*PSyoUz7GkuIVJe)61FnQ}d0~)7~V1mgvdtTnd z12#?X?=e?;Lfdo6B96VihkWcJ;P+SC^Z3sE+>`wkP|gT#?@p-i%!ns@ug_c&Yvp-O zNCc*RjfK~J2iFm=OBIV&l0Rr38TI3P?awaAb|J*!tYNsSy{?O~@cv>ylZi{03gg?I z*a-5QA>|B5gl<3R?5p~GS~kAcCe~;8UFG<{m9Opki|m(5_ReA)=d$0uTxE~&u4MK> zUPv-9B}t7=(vV29UMK0VlSu!vAJs`36G`Ut!p7nKgJ7f5iGk3JzAmFuPX8}uFH*6| z_jQiVi5xR{379LyPcarsj=msZ4evYDSU8A<=>xqEtGspr83SfUFX7`7bv43@+~9z( zrmUCpuAn@lQqZ8x{;tyREfonNY`Jfss^>O7C1?A9bxr??Voh9jRnfZWgAz>7-NJ9t z7IU*2G`Wp$oW74wq9T$cJb1~M9bD0wOmigcSsk`Y!hS-S*E|v0!RmNg_o8)PD`TzK z9I=gy3A}4F4jAo5*j~%KHjA*sDy$7*t+Be4gK>TR%wOL29ISVjcC?Du;(PR3vsfpS ztlq;}_V~+lT}(=>{5`)$jR~K2#@`1%9j#ww(U1g`?ekaE%6qIe9d)IoGS4*Y?baQ$ zUDjDqxn?LKUu2GO%s#P%o?5k~bg177JuNkXF0K65{ddG08ThMJF_F?y{sEgyF*cU@ zkKdZ@6jnMwCN4}x2E11mjpb;1sk;k{R{FygI@L3dFo!TtqcoSoI8xft zUtjJQHk8uqRj_)s?#~kD%CVmrK&#ac6CR`RC7Q|OrMdR6RD|MsCoUpM$dqf}tK%d< z{*h0!uEc#$$4P+vBTnbeY{+ zvgx!})n{BLS#dUq_#4D}A~!Ige#&P1^=DSsKT0&Rm}q=53cHuTr?TT^mi)TveysMC&c5VTbO8 zs=2)UT3!&Nga62jB5yKXw0`5s{3!Q(jPh|qfca*?L<#am!2HVoZH?6F^HP7%dQP}f z-UoTC@GkK8Tpr%bPnq98K|JDS2CUaquMgFAw;w7-SkR5i0%ny2I$2^p!Drr{rshrz zPtks06tGm<@ORxFbB>fC>aE)CnO+kQ|DhAzbcghP6 zv4>C_wN`g(FmAb8@3w@$NakBoq_duH`Au)-00&d=tqY`HndKNk!+E9WOEJAY@zp8x zaPaYjcBdi~m6Z8@%Rf!1(Z+90yTkmD6R+dq+vRVI^}MR@J*upnJj&AbUFpz_e~X^kEcrDx)!NBrF$Jn3yjKTP_?? zY!36v@1^Fj$?`kU95y~+{!V5JOw(pE`d;cQI>_}Ssrv!QP!R@0t>V5i9lP+fY=+(y zlHD15S4_c;d1&SpuF@+LV>bYj{7n9BDt~F;!|0)MGZdJKO<=BI2=5dauwu%_Kl}$|V$_d9S>9Qh8Flzfs=um{Z=yS6Y{op+%hhDJ_QJ; z5OI=zFSM(Z47F1i9*+miH|+QeYREMz|HL{nXf06Wq-6Fo2w>?oS?JkHijFsWtcT`P z=F{%dE9g)&idA=vgW@7W*};qtHC}Hs4K-7Vxr4FUp2Fk7?_}4NzGu9?%8NFlsjy5| zI842dkz8cSHT`2XiPADOzLzHPjU-^Q=i9#tL|VIM_+HwCZ&qoE)Oet))C;!F=iAg@ zW=gvL&EWmDIlO^Q@N$hxIoSiA!v{^QV!{4AUq$Om%rd;G-PIWDoWdV?@i!JW$V~tt z=~Myh5fOL#3Yd)0pd#0d5B%YbA~aO8EmefD%3307Ha0FqQqB%ot=M7qcH;PEuD6q{ zCrdgV=WiZ2cgZF+yA#_3=0^Jyuq`onB0I6*i})uX`mgPx(_c8lB&&gmN(qd09 zEM@3Wnd()rdeuW(GkInodRDRyo-5YJj8I)t=x@KtMk#R*=(w^y4Bn~ZkJEoqxXXm$ zc?BqEB#C7hEEM_MOC}7-@y3}AIpd+ktMO1?&`tfU58i%^g`P`ci_%sHJzjTNhoW_y z)|oh9@6@ibzD~ccPnU|-4a;!-)vY7%%_nhMslh^7qN=ZJb7EOaOoqgW{*RcvW-(b3 z(@Dp4X%>?!G2L}cuVyjbC8j{f^l26|L}L2tnBrzJr0#i&6EF z_5|yaW-+Qhqjb#m&0I&pl7(dG{0UcQ&i-m&w_rl_%w+ZNvh))w2aS?c#)|(UL-}c{8C4P1?UVMV2<{zQzKQ|fwL~4A;gPsv- zrMdN?dCB;vcrzA$w|FA@EI8ipF3Tx8IK-$qF>%1rsb|M7uMdfQ6+LHN=q>)bhSa#7 z=zF`7KCQG zDQLbMWQ~W$qyGb=?nb3}8mkZOZA$zFuWCpZdBJ!+{o@WUd*0v-HDT$%JaQxf=;Q5@ zKC+otnjvczt+t&mlP#<@}NO#!6e^k?z9P`|Ql&FMp{`ORwavA~xM zETp-E*X8HQLu$%aPDZDW9bFl`nZ6D6zV}^V>JLwEwEyhMl^sg8mD*Pc(4;&RdbC^*vAJpe zhj5tnh;Y}^R#awObjrNr*aIl~NxX2V^@woi(oEv*>xhWUokf#o7_tUWXF2k)RTDTZ_^6 zRP#$`+RXWs!C!8JWJ?AL$@FgUIz_T8A(`}PEZ~^$ltmQTJ}(LP9(%8_@s0{G}MUATacuCT7-&sN?X`IqCF|!G9fZrO_%l=+lA?6!pFN>1^Np1Tj z#C$`=4sv3DEnkYFJMBeX6h$kAqU`ELtkF>Q`d$$2jRY=LrA&fAq0Ara3~B$ACZzpL ztppTxrA39haYfx%whDDWXSM|?f4FGF}~%`;N=>&JBG&#irpc4K))bvN4ibB%VOJ$XDDqb>f#j)~HcHuXQj zvYT`|lqzTo@V}OhB=B z0aVm0BXXs&S%l3Tuhw7V)Dq8?sBd?`#nN7KJE%2V4_${4E5OR3NsdL3W7{B!ngU(| zm1HybDhSMlc=kr*Aq%hT1J;P{Qsxf=Qf7E`geI3ISy^7JKNPR}Q0ig-xi(!=pNo1C zT@KpsU_an?%H9)|*_P5wc1=vK{aR5#o$)j&tGdM~XmLjKj3(Tj;rO)rSM1@XnH>uJ&d(r8x(xbX{gf=W&L z4vSIQnVSl>&}(!6OM(I+?+pR#fnMY3FQDZ&-%YI2RrB^x2qc1{muu|28oO@IBfBZw z5@`jqAJPP|NE3f5)=b#H$e!5Jn?c6@;~5NtAaXWm?zg@#+uDa5?OJl}5v_e4x**6e zmJFp%h94kV83Fc4o^U_?bKxg^Ir|rj8LK20b+aSnp^X1hidhx5+kRGu{ers+{c(2a z9q{=CJ2Lwuh5JhH_=K|?kC__%c!{b08*1mbo-v+m) zkmv*uON_5yQ-58a)PKmS>;G<3{eedPy8ThL!r`Wf;~ZK}sXsWJy8c?`A`X>U{2r21 zHlQat;<1MLE>%auZ?*rT-$y_Ozo7MFO$KzusY4)M`DZVYTb`$H zW*6!Q@1KEGXSrqd+w=yn;pv<0w;pNlOs-4Y1e2Gn@|U57i;UcB6_UJldA zP@Czw*(v7}+WwO=gJyj|xZ^9o)%83w`^`=9^-8^H9*Wa&+z%X=-+KFO3MZn0d6TTa z(V%749U_C(SH|?Wt@fytZ_f%^cjd~$_Cl38A6FC26oU)p z%_AyyYdn9f!fJYh{XZ9>G#6xLW!#WlEJK31gNJHhY1EX z`5sVjR8Gi})ec5YBX}t>U-N7Dt2RsK57~8_3~WyvcCEM9Kb)XM&y|YGPWTeSHFe|p z0fl?N??t4PJ(55s2~TooNs0OL5P+*Wan&f~I2NBn^iN;?)14nO#q-;!`UuH81IHhp zBQgGPcocID&!Svm2WjGsUrM#BW(&$viYPDqR+T_g(!i%QJrCQEAb z$+`TTbiZ=~Hb-Lm%@gu9FIlM2RNB)_wrH$7HV7%I<^!*2UF_;+{BJ!e1)J)x-+Jw7 zKH~Z33D(w}JNQ8V?!SDF;9p{C#4LrFQ8|T_$*P2<9{vGYrEOv0fVsgw7xrg$PJ#ld ztEqumgBtzT%Yum0E6Gf!%{#*LP7Q8tu!4_bZ|xdm!*ur+(My8`y)zgYNa}*Ta zIi*CWc^@K~ChRs%%Dwu>MH0xID=8Bc6r?l-Pt!G&EYdj>;HreB6sHW(d@H~-*~Sw? zw^aI_B)t?stKX}O6}?iR(P3upbp(DB&`)%?EL)?_=RO zh3ab_aqwZ(qGQNC9ulG= zo*draC>>a)3rFqest|_ObBo9pnD7RdInga5d@#qX4d75SzJe{lk^!pM8I?y=RjM?7 z!a|%xzZRObHXbKmyuKY_*O7;WYZqtIAjp*CT32i6421k9;!ekC=t(Z+%1z8 zAqIoW(^7{gDk)5h2LFU6*^ok(p!+yvp#qPRIXaPo)vz1pD|R^&v{GPN&y@pBBG#8! zuZ@y->yJX%tLrn4)1cCt@%2TdU=e!Mc5Tifk28Phw{wM>We^e1zX)gmy;%Lc)*lEm zFM6#nFZOr9)tM+|cKck?x%`*=^ce=34arL1*^RaH9&CRKd(@`+Q)t&%r3B2}xJv_K z{$y_o35D5rUNV_|hIsyq6e1M227e~pZ1w9zABgAwT*_vOvsWeOK`Vet~WLx~Y|a{W9QdMxflN_$i*tq-|QO$!D;4)hYM->(?)m{DE;c$9f+ zg65k?;a5qt3J}q64W7cceKv*rtw*I~zh#YAKmEo^A64@=ka;?R7^>~rMx{8+W>bHW zgB-kA3Mv5^1vBR+iGW|U-uquV1N|-g0rUc>i3;xl7juz2tW-eHPXQ`%QYiiCIt6O_)6%W2 z>9h6EJbs9~OvlZYFEt~U<>uUAXdMDLV1xA94?CIKS65Y z8-(%W>J@o}Bp$rrO#$|(!+C#dAdfY85-FrYfLsS}=!ST(E&-2rRuj&AxI5ow}v{SK_>&m>Z}C{g+fRPW9E0Mz3}&CY6rU z1CF4SYik78-piv7OV!)wswDOPdiXOrg`q^oRw`SCq2j`R!zg1!UWC4*ZretJb_9ur98BL^EJtoUpI%@P~qDJbt z9RYVrai%)HCkJrBz{wO=Ih+Zolx+7@2v%(dW{EXuGn}PW#R0e0Ef#1JqxZ6NXG-5L-vZO4#Np#Euo|Hp{MpY4ilhY4HJFDMd;oWd5b>sPN1usd^svW9=iiC_V zLQr-RV-skbUogiIbwU2>&jba;LzR%-Z+7yB@6WLNww7}|vJokJIQ;^;m&>Zjd^eu| zpXBk>XLJ$XP(Xf3024fEDyJNVtOo=#V;X_7pwNqYd&YF(jm$|qG(XC4l`q?u6)S{a zQ~Ip^gZtHp)oedHb-cn}?hufAJCJ0&I!}OOZv|@)mqoVKZz@a?&yPwP=sc2mizH-`qzWE8Bnau&Yw0BwLPx=TWC(~T3}V zMCUOKk4#5glCyQI($R^WrB|C=7Tzhe-3Wj8c<5-_)K0Z_9_O_~k*`AAj*^PAiJnlS zJJvH)dqm*a3B;9R4|lL^jufHMp&sN-{+kkL-}ccAVSgN`+<6x&crLzBqhFhy@OW~ z3cxHitNQR}xvL^xQ*A+)UebbKJr%Xe*mG2pr05`1PU#%>fjcrd+ivHeh5)hX}ot5R|-V`q1BdbLh`P$gzRKpo)5t%=7Rt}fKugW5>; z`B(FMXwG;bL0?fQ`PbT{7J+8@Dtqq*DYI&_iVjP8{TjfI zojy`56~J$in2)cM9`v$E>zHriY#f187d&2?+&0269L^Ge=?X5wMv?_5+}%Hzes@98 zyt}{?y1UrTomeP`tq4j$mL_ zOP3DLH)=}evXviPBrlvV2}ZC(otqv#%Iv$TejagabC@F3tT&u94>a(#S)qL012`%s zNGbG4ruTu8Kb$kZW%_C)L`r%~P?J7txn4QG)sDIwY9pts0`HYoKsd)p1z>KjwYf7} zv5~yD(eI1oJuUhos2B^+ie2P@Ot{+jyWcZvCgYcCce>yGA%2gPqkX)x7Hx^$ZgF3_ z_I+T~+=E;9>#};hhXlB~3x9@*mwjk|MiH*4((?{^tb5w@_)whe@0Qpz1L?)}9&1=` zkIj+;7q_Z)Mb5H?-;T9)xkislo8h)(yETJ2cp-^Qkxb zdf62z?I8^zEr8|G{PjD?yU1g{DgLuQ_GBMm^%gPLuK(DZy~W`IsinF35;ZVXslli0 zC(Y%Bcnk}j;QW1GbS2T#+1@OQ6s<%KZi%jCfv*JRJV#s#uV~RZzi3MW&#JMoN-V!< zi((?FffTCsRX9B`_adAnN$52Z%CJOh`X&d?j9DjiAKQZ3l|CbBl6@Oa_7R9z4-p%I zEUeTsDvX-zE07tZaXHOf8UmvtJ(?yx9Yrn)#e)Z6XA8IC<3qqEWCa%ZK38;s#57BL zK8;PqgyaKF# zih%eT_i)ImiGWB54-#TeNjU$@J|ZCo?e|zeA~)&CeV!=-X%}x zV0y+fqvlGZrY)aJCQu@MO(D!{W4*6IdMu51&{qj()If^p82%7JI78(+#So25k93O1 zB!xH@;3xo5`TTBfR-{fIG=#q!Kb3LHBKro z((!)WqVsxn7gg=SCoT{%Q7k8UuI>ur8COU;qy$0M{R!9TZLW}pkQh9I-=C`?ASw3X zBmEG$@&;I=s|5t2qIiv`=P>aJel?=P24XAo9riGVp*3dDfK+VcDVtgX(_$0V4`5rc zfpA8GuubEe04@6-fARA5l&=0Lqv}=OqFnvtIwh<`;cHWc2S^I6(gn@u2eiX{ggD`$)zEbL+Yq6cIN9UfA8`rvZ; zuA0Iq<4yO?_f#B~1WE>ZjbRbWZA=d?syL#u4QueGf`L zC?a2r%vJoIj{`8#=$ou<|sEDQq#gsTy0#>G362tD=!u*2aOk& z(SOfN!Rr;L;98kXlAL+cGTQIFbl)Ofv0=5w3x^10GQ9h|^s-3B361zZ1w4$0QzeKh7k$?O?XKjH#)}(}#wDUsT4h!D5|nREj2Quo$EpRaYl4zF_)1 zP?+xx59*J1$iu2#xNPb$Bl~$C4LyM?&hvbW@a)*%cwuxS4aJ0Y=Xsih#;~>N(=jOo zE%FL#NyPl-bTw_(C_M)XI4qnUy%z6)4#|S^3fBn95@kmcw1S$@W>cc5^wEn*wh8PS z1C%T+D8xvV=w2hW*LAmC| zyTdtFrWz%hjYlOicdq@cliA1`M=Ins*K!+CcC9Bn?#W)`z5F$CO~fT{UjPFCoz4P_ zCSr3}L2?#aKfej9eoF-j7?h2TYK-@^jPs39Oy1}RBq%xW*8%tr;c#Gv+K7A-Uv zxBaLga3ykdeaZz*jzj-5z2@rmyYcV8L%E{t>@^$JDB$n5Uf&78Y)!D8-k5aspUnyI zRoV5~sE>nBd#a~{?)1j!ukiM$hQsC)WsO|1jKSfYAJ7+*$f?HWeE!gI2G(UVGI;B& z)`i=MA4HeoUFEAUVixOJop_g8k+SKc>~NY(tstn)`| zGLZ}_ojx_M#H`P*^Hi6qu`*gsDM{v$?%dP?UuVJ;mAl5^JO+1<9{;KzNE!aB8S9cG zpL|671MlC^k~n{KnzA0pp8tjdljV(}yl;ma*42KL;D)uZ0W1MS)GIzUgRbcAy;8An zslB0>)8N1UHo+#LdVpHAGCB;gfzG7A8IfH={QU*o!wWq1!(~{GqmdMiSc*o{(RK~m z%@U)z-l}IpFC}^_M=68u>UHwFLYv&to5+F+OR00v?-;X&5s=6ux-279M2OO7z1$7= zc!MgU-3gdI1VkU;d6wsWo})aUz_aN{1n~*`fB0Ta6R+pFjPM`veVoV5_k}$DkX#dZ ze!;VZXEV=o{KIbLxd5NAzvNqd$8O;1LfB}&xAA<&V-Qw_;a?}#CSUOTbCxH6=6ROq zW%}7-o}+}XApS9)etfs(_XNL{{ElWRma4C4sc#f@07k0T2=sBUA`+%m`xfx?vuf>u zuV%!3)xLRh)opdv1JWMW$RSu-iYD$3rOy~MN*P{i6&!94#crM}Du;NjJBE181GTZ! zLLZ;)Gk0+nNwxn%69jfyX}_=WB+5m3c3;}g`!=N#C?9KB4ndNr+w~bAWD|@5>wD11`8K)u12ZE z%Pzj}LP=(iz8w!@;eJb>7jFedf!edM`&MN*_6-rhDGylM+(AB_M8-w6_ugp~stG3Y zSg+Rl+nE~PECmn6b=fR^lUw!62y*PQN(Laf7LtSV~A7@DrI*SMPm0j2puqPj2Hz9AN+*&sKw9ez&1HgRpz}m6ZWZ+FNpzl|_5Xl&z+LI7U&WxgM3!xe_LW zrlYzZ&q$~3y0wUcqLoO2&|0^e@h1y3DqkX9b2N?0-w~!IOqHM`i#$h@ z`kJt;QWtjzWqZZ787@=-^WCQJiD-M0aFmGAhveq|nHy3QDVJ?eu9%zpt1wK_yL|vert? zANz?TDP63URd1C_ft|=%> zClra76558(ijTy$!JH#eR#;?9Z8S5q{cO3z&6*>X@vq$(w8{z&811!d(!#1yU{bHN zJ3`>tz*KoGNm=6;lX*7D{OJltU_!8ez`Z(XmKB6-+!gtXjR(KaeuKvf_BF%XNQl)h zR>wLI-jaEhTA@XkYGaWk{VLW^^!JNA)vcT!Dm~eWLj@+JDoKA?#BAs_fysjDE(v4L zs@BeBC{{u_Fk!k<*e(M4nhZa{_ZZMX-$!9=*Zta8-uR*p%8R_~?Lf>o%j{U4Gs-F6uh7eZI&XDe2yR zG|(2~MpcM0w(Ip@<&nMP#|MmCaEv8owhO++%X(g<@Ee!&;@cp5v24yZl?y%s&VDSA z;R?MbTmcnl$>baw$rhsZ@?-*)HC8`pyJXe!!HzH&!{oerWt z?c^(WwA4o!# z8Dn%Ce+U+a8tVg{cJfED)>t2?w39!|N!(apL#)6_d1LdGH#SdsqcjffLG@drT6s5J zK{+M-(??rsx_(F z`Q`~S3dM5!hs~h%l9+P)S_jS3Zz+cbDjd$ z0b?A6-AYrtB_tvLHj=>ut4{*g4^d&eAnNV zLQr~S0e&Y3_V{BXMdTv8MVP8xj(g9I_6K|8#y^hIrH2KJ)D*_7Gf2Q>YS3v2)Py<& zA-_WPW9fwBm=LStdOvnT=zJrDShh^j`M>_4_)4`h_+%P_PeBme#))LgoS-r+%Q?S| zYM2Jt)1IXBC|=C`@E(<+Jdxo$PKG0=H)Xhj3^e`KnVvYlk-2nr)@_F&rPt`A%0&$? zY$JvCiKq*y_p;aVB$M`$+$$4wul2~qGUs32X+66qSEJDx)^+`75^$!z(K7p}d~{yF zo7isacbtA*UiN-Zb;oF&Md#Ph;bAonHqpUpO8c?jYjQ|C2svE3c1d#R@pDg+RqOXu?&eKyyA+>H^i z+-@ZSB}Sja3;}tb?5%28+{Y0$C)H_;2{b>0==)A!Bztqp?B8RyiXKICg$H)t_VOl! z@0ibxF`qF0Cb@!3oTtNGM!_1R08ZT&9jCtD#O^`Z$2JP;lWEcX6B#;uno+r%wwL)- z)vpC`q3XhF&eJ4r1CS z3{R6xKh&AZ6PdOmD#o!i@0&gyVg#YcEznOVWqw|r*V1o=jaIp3v|Yoj?8+v89xyCKJg zSNGTinOO*hKclsqC|dQr2wU-3A%7-j$ltrOz&F>Z8YKAgeNCHa5wB8|>yjy*&DFKL z&lrMtsEYV62r(YKkz#UO53tn-Q9*P2*P?k&3p6i23C(l9wv-D}N*SI;G132)VvbX# zL}i9M4R;9&RtjACwFREvqF$G`tQV9S-YOc~o1mic;CiZa5+%inRI>0^(IuqUkY~Co zR?*O|P<*m6YbB{(oH3+epSfxMp6tWnYyPnQBSp4y;~|NQZsyM^@`+i&*X5JA=%!QW ztN(_45*K~v)cNYZA)mxW-{w#4&Yarq9cp)+=HBaW%ybP>mRHc(mcj{gx}RX>v_(RnKSFNq&^=18KGUHN=%05ZOCARF&A$bv-+{! zi2+f#-zBZoK>-joYD+U=d z^4yZ+Co+1bgrn?t%$CH4hH28A)E!=<=CbHZgr_7c)U&BuS|*cYOKRekej1ia#+WT? zLTyO(Z~~FvO{I6PV>D~cWwkp`LoUlYT~m+=6qsH3mkjZ6e|K&4IPkz91^V4%G9d5N zESZsAhVcC!nFtu!COSs4zdkYzX|W@xVux#6+#tCc#D6SsJPZtMKv%4mk-)ep^F{)3 zF}{zRI3Sw7MsJ0osD_XIDf@G{z$^!E@S9J+6feN^f@P2Jqj1zcA)jEZFl^A)R zh+Sn}CQ<0h2H)7a6PB}AWqEq+lZ;}&#|@*`q_^4RwXWql)%_+Hs=~8F&n!vLtM54_ zmsD6MG5;Id*)JBJMopS-BC+0rR&opB!0xStYDMr`L|SdbUgiq7WPXq)qkV4I?@!D_ z2cmHo%d_b74)R6Hq!Zi)4b+_cX0%r3gw#PUIR$*JfX_I?{bD?JpLH1tJF)6|w3V1z z4O(_`O@MeN*P5>KT2rXaL8;B|VSv5FYke=*)8l|tC$K)oPv@Xjyoz6LLCss$b4nhs zSXqfJYn$(2IGQJgFPk__O7E7e9SeP@_Eaoq*B;fyqttbun?{pGjq1qnMtjpuq#K{c zqw*IHh=9hH%rowUxHm;8^DCve$nEOB z9r}tf;i;ia1d7B+fznv#)G9b@exl%D@=5O$yn*p=uW=F~#2ysIb5hrjY=!ue_Ngi4CT`?vA##!8v{Hv+Y;+&)UA}n9~uR_ zS)a$~L+>)f;#6RFEXg}@lq=U$YiD{w+s^hdVJ#iS-`vtM{6+64TR}`q#f2kRd5xQA zuk9J02wi znDS=w4&%@78E+bR_VAp`<6@xufZ=o}&sRK0d3N)NYn$basJnTJ`F@7)M#ia)JQ;+Q z@}16m7SDw|5J-(*esOujoj!w?{IUa%C|`-S@Q0p^|BZ?t@OjI4?hE;TdzZd#>2h)# zHH>(J?^3BR5NJ*If-+uu%{p_X_YxTF!o+Dn(IH{1pclP2Tl!<$W(O`_>M^(gluUO+jqWl zjz(6iDO@O0PG_L6@#N<0S4x-M{N4Ju>*B*AO>%qRN5{0?^K$q=(eygoMX%h5ozWDh>Ry+K>mIQ)o8p+# zx$M6X0Jj{~05|F1uK(o#oFD*qJ^?_~iA+9Tf7@vXMXeWKP$2(9fh=o< z4F>zI%>h5?0G{ChzRCf7ngIT#0H(ijUrVTmq!R$3+JdCI;cn@-rAWyjibJHs{M;w7GXX(7ODhH#E=KJLOOm%zk&RPMyV&08<~H}ABCoo1Ycs{*nE zKWO@sTJ+1c1`^nt zS|0ZUr~=P-3N)7|%FCiW?|{9fg%s!=aI7pwffrI>(H1PeD03`jHm?llbq}1!AwK-Z z_LSytYJcy5ON>ep@P6wzQel#m#q_kHnooPzN;PdjpCOUT-^o&;mcGH}qBjk^?p{(q zOe+iMP`khl|98{;q5HF3WmwY2?K26I_Gu$$if@i^xS6{?v z4h}oVZB+hI1#DF%*^g5QAcsj*+4azx6hsDWVTbdv1q)2UT1MBFb| z835mEKTZ{hmDwGcufCR%HQev|Y6as$fiaNaeZaJ5UZzjlbH=USesFbbw6?dsavQi9 zB@IOf(dvxc7t35K0Rs2C``QY+9D?|TfOZPDcTz0qo+(jf7Xtb(8r@|-;&#>BH4=5- zRYbAL=$qD5c{D^b;U21ikojYuXsc%UW;jeow1O0P@4Bg zd+*P~_NI1sJ1Py!DR9H~wuOUre{t@o(dfRnQqd#Vb8t8W5quvPe6iyj{Q4+GhK7d} z8Gg@^P6yx6F^%qjHK8jWTCg9{?pmY0RcTItfsyii3wPt~azKA%qg7rmZG;uw-c$Lv z#J6XHmV-5N8P-|i@_g_`8llSsAx;O|Z7DRx8?;kiO8&1JROPr^i~A>~J9D4TYS=D3 z_~VhPZo8^f-QM_NQVbydQu?3B7yF0w5T>q=|f#TPuTM3)3SvBI>`HPtFy4*v}cX}N}N(=aK7|32_6A_bGbc_94WOEnkD5O z{x?P74kn3M@%2+cjmk_0G5Pjsz!xdNM%5v5O7L!El{km_jBjMl%${226gJ5lif351 zztjnmMBr8 z!SaJ$*o6&P0YL?|QcznFi@V}05Znaw>$*s-4{U2oz1q@ywMDCd?@dTZc&LG(f+&WE zuxP-_{-gmWTV8b>3_rL^K9zcmi|&-q6+BJjasATI!jF=LIX%-D+MB1*SiUXZGt1^M zZtHE%Qp>)dI!paKKBYfqP(@sw>g9YWa`|uy#xO@vHM4JW$4ME{kHO$rNfipeOd5cY zn51^qnUmCKwYiqCMpkfCokkyR^h+qiG4;+hG+D^(GDtOi-zLh0fGT9?FB&p}r5xsR zJ1bb^CZ79Xjq3WDQBMO#td`-Osa3`(!GY!(V^XdDT7Nw7hb%GC8&c`hV;oW%x9YT| zrR%2-F+Ba(^M*!#8w*$JrN^Q~rP$q4Vim7$|Dw+2``|vCC?Jl9tGLm7G4^r3i1|L@rzPgwVHS0;hRo%@-Uu8EqozK+D`%)N=k3bhBKr?a^P#yddB1*C={a!nrE z)$Oml3@b`yqg}imAK|~Jugl`yo}kh2sbJ<5Uuc&x~}mM4zR7 zyZnmC-?^S;^^X$s1)N->DAwdJYasW4eQFPLx*jQ(g8Q_AZ(x2otrum{sMf7c+6x8| z7zs9`#7MCE3Kn#if)Yl8@6HN8Q!VUZ+~jQnaFIs|P37m>uBXMz73>RT=sO+7w{@NM zBk7`0MbK7`VhWqfe@{Dld$G$Z>Z#OnHy}*Ef`h(vD}1yomu{b856Au9=y zC|JtDrhF(cXv*mVfS9*aIEo+%Z7gHW0PICYPBEF^3cz5_$0_Sg5cn~ZpA;C{)m&~w z2l^dmBj(Iju)m7xlmsT80O+R8Cn@C(N|u)}3rTr>&GHJ(@=p3D<$Y4E+Gh`3-BT^7 zAGj2JcFdw_vY@_-BC3=n$Am{pd!8}#)4$%W{aaub@<%Bo6uyfhzPf+NzeHhlVvWDj zEVGkr5Bf0Qx2qi5Q+s%M^fbCU$SitTqJ7;dT+CC*{4HWFwSQ9cFXvIp=$^^c*v&Gp z5svyMRu?mLcS!Yqy0$b^uN>CXd$%4K)|G|jJa^!BxzKGBf?|qA-%(<}%0N03(wc^D z%*$ZsJ;lvx|8PGIiVmfLze8^}6YEoD_+`^~zv;iwgvBk_(%dr$_L;%6NCt?;6HH)N zGm#sg0$6fM@>o&*hBlw~!h_bs2~?|C?4oW)eGEI%k%LDVo}PoXyi6@`WS*8crl*#7 zHCEL-P3$Ru$M)>WUr*0G{@Qqbawz(z*7d!0zl4@AWvREtgiX`y0voMjE<`Om?y5)R zqj*+VO&R3@kfvcAU?7N<62o1+(>8U;CALeo$|p$gvGTxGHT=n~Ca3Wvp((8% zc)V5*RIMJUT0Ky;df?x!iebJ~#B9N$;rGPJ^Ym+gXC9#IEwnELn?p#OeIb!qX0E-z zjqkM+>fD1eqpt)nPfMwRjK-Lu; zzy!3z=FYr5kB%ED8u26NZ&NeS-A>hoin|r&CsCE6lgTFTOQq_RwkZCR+Ee!v#b(uK z%KSG_&41^sxzDWHm3bSIWOLGs0d(oVS!E})%8w_;tK4G}-+TDuY<%l}Aho`gud1$| zA@yCP>MLX`WAhE6==A=mMYSpAHvq_z#Nult^1ja#( z2qwPvOp0uy%GUlTC!;m5sLmH)wnpmkVnfJ;?S2!TPY+eyec?`7vt=_Mpm=%|UqICQ zk<#8WvpCTrZO)gGs9DZW&2pwu4uuR$ZR1z12j|Ai!xnwdzhoeFm5EYzM)_uW-K9JM z`e&T^CMWW=^#%G$_V@jlRewj)U;o_$ESe$Do?OA(2Fj6Cr(u`|8ir}0VVDML=c*qz zm`F=tXwO9%z6<_hp?cpK>i$9jS`kGV)eCz!+IVn!&gs4x><-ekVd6Fo=1fIKu?cZfHxGRTH70%SAR_uva(+w2|BDL$1En!i_sC?6YRs6^ zRbz&wHAW$OzS)My2CFtaal2~6-Kq_0I8c8K3Wzga*Aqd=&&(E$l@@VFNY*1lpE=x_ zlei0h5LY+bcKoX+TPf#NjITh^nCrU87S{2oXdcJ^_o?_%Q7_+rFuxNrHmqy3IsZ!V z3z)sbz&n~FbOW;k@~Gba_FYnna|4Au_tP$%kvh51TFMCU^kxXydh?W~F?{B^bXdtW z<6^f!(X{DZxF_-2dK6+l_XtvIQM4?|P5aD{@({utG5ycnru+(*X2|lJyI8Q$%%Dr; z*)m0?k!WNCYtKn%5h670 zpJXjs*Z(<}w$ESy{}@(`2esi|)FWF$DK_@7XzUdwrsIAt1)=!=eS-8$hUNL-KZ<@t z@hag8Le)ndA9Nu6HW(~SU(e#UFOJgEGLZzTmX48@8k52R{kl7)66YRD{_=-8`D&&ar(du1DUzLm+KYfUu2BJ!NK%$I#|l-G~hI=R7swwlD~NG zI5kR$wDIY7dXQg2^h-{nH2IN;HMYnOVvj)!&BjCw)beW;2MJkRp~y z!x)U_#1{(t7aa)?5C#)1VQR{DnCk=U`8R3*UMVVQui@v! z?O!9Y$7}y@B|_T&oP0?8ACr$n`+tXrFdsi{+JCczAE*8P!+GA0{=+?eVpj4;QWAIj z>}T>}j!X+ZMc~}#ysv!FAmVuexZi@P^rbKJs4-W*xfM9kE~fPmsjQ`#A99*al#2r& zLK<8~!5g_W!^nMypRi6wrY}xU?2iZd?gKe;xZ_$i~#&8So(U!KGs#k}yraFxF<%g~4I9NI=V`_DE)>LD3MoETuB7R%kZ!5|4 zdhoZ4``eY+ye0Uv;{L1>yZ0RYC&m3Im9+DA!=DrP=ajVf=HTxb_jlyVThNtPymr>f z#f|sOj?7~UEi^-Bqshk=)bl)(Ydpc6(Qbcro+p?;%I&YoE992ybo<0X`EuZ!>@PQ> zrh7*0k)Qk#To|Ae`rr}qZZ7k zW}UmD%+xiWeyd!-ZAQTeDjpTIjq>zEG2V9p<{EgdT`7th$y8R7%t zrq3om;BETa(Q+FiT3>Z^irZ+U<~<{WIa#IFm7{|B9R)bt)D&2u;#GijQ3=esdEUE! zDDb&zkNo6c)e0Z{vprWz@a+661vaI{8+=Wk;u@{80G30Tg$f#P&L@hV?ipv&(ryBu z%}LM__dy`0Ks#M)P=u6ud(Xfqo3_#zZG(vN1EaF!I|~BJ3XIB;Z&4|#kgv^qmZAg; ze?0~ZISLC8fQ5NUEOaB)39!(;l^z^{oO!yo5?nkG$HgZmF5F~iy$R&c(^eVz4+O@} zv+*(Z0UKXg>MM({9QBoxfcILZ`XNr6+5@8jO)7mp0L=SCpYuRLf0I7%-*6oI{AHui z=h$C1%g@ALDr)Wh%T{d2*9Q61tmxKI>B6<&%yeq++dZ(3WV=;JYyJ|2TUvRdimZfa{wAC>F0dE3CH!4Zm# zph>9Yb@kf^+?yaD4~M#M;l;6f@$Y%`3s;O8xB81kn#*YL zz2iTkY4iRfg^rMe3WUQs4>*EDK4TKN&k-DPXq56_{sn~nXndZVUIPq856kp|-f#2S zxBI#L;O$eyuh9g2gJbpxh|lTD6NfPL)&KLU+KmyCv`p20azvYObgFjKXWE4QQytp$ zI{y5m#-UB%`sYo%v(2#SAlt&gC+6u8?8l2wuf- z>h=eJ4d&^)JzBU9$l6a`r%;poeSX2z4@__O3&hL(q)qSrV_CM&`7t9%kn>q9as(CT zxSIZDD}n@NItZH2pWeUbPsxJ}oL_UyyvGq7kf-}s;97djeA0?yK|$5LbW|<1jY{dU zLe(OglN>|WB~bOCG*vpYgdw_pT{71Ke!qG!p!jZSYGBYNnWN0ELP+$vqx&lEHzfS{aafg z+jdO7{YM15wRiDLA86X|-%7{-P}=8jB+K7HnyluQZ!{FwA+fM>4Ios{6Y&z1-hiZg@Ig(ENZJadKC%piE)5POVj-!mdY zOpYhnb;tLU*MJon0vIVd)LYXHfU?11RF`kbEXle3l)?~dDJxcLl~wdP@;ZN@GP#JU zmpA7WGKTZ)yWW&hkSCp+z&33%3-`tOIr6?6aMIq^Ku>$C8A_8=Lo>`!TAdn-=!v$o zkJH)TItNz!e#3BR&-rhOCpg-QE^n!PI+d&WEVX`K)#PVcN`p2lVAfmEGu)(?Z`1UF zt9|dNP0H+>jgV{dDoAbU8v^y|xzY24$rn|Jfv{@R2_ zZ33MATSGPJpPbFlG1 zjn#V^t+&mi$M&aH6DEfQY&Pzl#Hu~kkaw{3?pH*q`#5-VBylTzH3hSIZQ-j~fmwA1 zwff!=9xvISZxi1Z8YS(CUkl&!`!~S%x- zx&5hFU&dqCSA-d%X)RFN&jqsungv0UHaC;Jq#h*%muppBXiYOZ!&1Tp;}4k^B#jL3 z+z(deTV7Nps;8MLiEWmWOs(R%cw!m#xr<4hTIuL^mJ*v*AuNOxm?vrOKVgAc7DQE3 zBq2|MC*)2}FYF`>qARDwca`{|CoCw(f=sKMB;?P8+*8vF;zGM9a0(92D{h>1iq6t~ z|I;)vG7#VZZZl%`PNq*+Qrd+SK}i#kdWp1)IcIl+NrMOZjq~@i^2&mmH&GVUyr0T~ zns<)DL<3aTs>!BhBN%C7!Xadfnsi#&@cjHE5H@@42veFcB3+vBXGhSMr6U%Twg%zZO_!k8d?`XT zmsY`oUR;nrT#z?btpRN!#tzSrxjjSHr8?Q;C@FA)URTpflP9}J=(Vj-N~*sPxbfSW zMXr$*kE(LkLd93V#~XZfhHT~8F$w`YohAI*FGzTWESfan;+$1hlJQcNC-gNNN%kJe zt`+WWgd~G(zp}s^gq`atDP?_4DUi~tDGfzhordSMQiwJW1rrtp`3ib+EacClEc=V~ z$>|i9X1qWyXRWkz6~)$2th^VsDTcw?pjBLKjzjysWTW#5d7vy*iAEg{7`^YKE`J-&Byq7C44ms6&kggCVXftxOxpZ(`w$ww-HX$t9Z|w74JD#@t)n% zx_$$SfJqDMwekR6n`r6Nh^1|Y@OY) zkf*r%w#!L@EChiqS9e*+t@~WXt8Ob{KgWVCc-&YgqdMOIpx(m6@OE?dDftNR@);Wq z;87UAm1=YU!KCFz4J@b#(%O44%q5#PyDDRPZZ5xYpcmHWb9ARTU@C5z*!fHO z`Dy3FB2$aY7PZ~X47-^U-ecdUt=M!Loa)3!Khsuhm#?2bx*bO35R=d$-;1u|8t;9P zkw8XmuiEkl-!eQ_()eTGAsSbP^IH6C!sGMh=1iGOS-|5=yk7$zQQ#5%HsGPntA`|v zwf-YHw`IY)MeY{wD#2QVzZtCQ3Tr)R7O&qM5L>C%vA+ag$fstFz2e9|?bdat$@j!7 z_VK;xG%$AogM8ox$nO<;!KsI6Eh_!=vii{r2rbAN-_yn~p7h0<;lsHlHQ z{x0Zh5fSK|eM+8?0$;@CSXn=0oe90A@q=Szlir`{L`nR;`FQHQ<=C*RmGa;sKcQ7wB zR_8PKZE{s_%V1VGeLM5e>7U6CPBxc~Y*grUkI&fB^w{n&n!ZjlWDc^A+ap3d2)o6% z&~@-V)wGH!)NifP@*Iy)kLMBUVYA4dvS0+QU@IpZx=tQo+{y9ib`dqZBqX=7lQQQI=pzoktQj0^=FD{!AJ*pX5$FVS+PjMPYI8+^&Yf^| zx`a4U2Y)8lzl8R%bk7PogKVt^FLN5J^y(u$oQ13O7iW{n*>7zksMjiIVU43IpU0jn ztsGHl6_>>qfnP|cx-bN1+64~S0JoysTQ&ATR>;VmL5}`+H^TMnX$D8p}XJ0FQaDq5yFlf zmV`9~9jReN6(7YruoyA#?k^?n3YjFokT6Rvno~-;@HxxTg+;C=%T>HqtGpdzQFJ`f zTpEs<4{w&CktI*k6mD<7CXUzJ#}%^C&a>~Ov;S%M>*dwuf&U;XR%lJ*KH(K5R;CYY0bB{LRP!f=QyhX2DR;Gdxh;9^!ZWG`F zO#W;nQ38;BtrC!~7RUij`77VRQz5{Fr~F+b0U}=C{RV$#*%W|1DFBwyC;+YyEvAuG zKsiO8Ez^%uej+fwtv%Xa+EUWMI1C1xzXdM!Yf{qv^gUHR_+L*?x^^>4K4+JVPg2tz zW@o))g)(-&Dh*7|&&L^`uOtSejL#SY)Y-4?_)MHU3vs+|p4cSIOUyqaYgRO>;I||( z5|48*b*eN7LC5#ycfK5+nrNQHOrZAC zYjbK~5e5rv3fIc?rT1D3U?A69So_XtR6)#L=0UK4rgjo!Bk)Mx=i*-EADRILsz7Ze zNK#)0NIZid_+spVSnP}k1ZG@bh1>HM^JcX2clci)NZ zA}%3~;mh4)^E;_-kQcBbw4h08TFjm0j zu3>f_U$ME-?%P5F)^~L2RB%HpP*SZ2hUdr&yNyKfm&2t8ytc}fzRh~T)7yqOM|s~8Zx-G>kD#T~4p!z#b$t&uR<7{*<+GdNT#xD4uzzD7_W97!5jw-UUcZD0t@2t1j>8B? z`zcj2sU4i#gQ!A8aq`|h@lI+v0X$xlhbr!XqkT`h|AE}-q1Ja)=8K2gedp_#=DcJ~ zmaiWlIhTyd@%7{*?~*ZjzAk8J^Y!7)Oa3K8^L>|qf;X|875xpteBb+hiqafh2x*Ak zSCYX!p}ezI$f^>F{yUdUxnxuwxsjIPA4BrUM84bdV{PbB?iU7z4=|hyP+>6G6}a{? z?!)=-fIv=Ccz($FeAKqW`MlK;xS_u%FdOSw)BCz659fWib0NQMGMtN0uu#sM#R{&5 zh0oh5cZhv!@KHd$cx1HSfUS8dynakOn4(;y1_yr1- zGL_k~B_p~UrT3#JS6gy-H{C!dwU|d8(v1Pww9T2l9P@*iv)Uu+$von82RCM#ngio1 zl;W+@Dp8|b`RF5{~}8Z zj`D`@GLa4nC`0jTEN}rFWyw7#} z>utOTw0Sbi7J4$LEz)Ce2FgNMO~6VgCFy}4#(TzLQBSrG8)92^1CjPdGy-F@vC-J8 z$3y5zSkGPu(KH5}^Ce-R>>;v6>FILbkJ3>+yV1#i!zpdIdhgQ%*V>Htu)C+q#_rzN zDO^fEL9sT9&G5m^)^nGsE-Uf_fkO|*=CxVhW;MuwzR2|DQcVukJ`Ixz4O3@7t_{BgQZ6s*Zf>$d7!%vqbul|83ThPaW-49rEO~Yh;00N7r~A z&_<0|uWf2J-h-%`J|SWAo_llM;I*?VC!<%3| z!5?x#NB$-GhuZ2{)6c5iI?1x7?#t+Qe6y!u3a7p&t?C(cWpVW3C~h_yX1(hu-ct5p z?bbUBCwG(SLcV?`8p}@?<$F4F!NIjo>lT!tx7Y6FbjQNkbdZ(Rf(h7>!IB4DGER%X z)U^kfmlmTE@IlNd`5N8DpAXg^td}XwQ@n!Ekh5aHRwJOCsIN?&VfaNp!^JU$gx7LoU9a45>h_5%)*UGv(Z)qfG!a6?QlaEcc*OyJ0 zvWACBNqI!Ab=LHAmeyWh;5<;5yJ>&z^|`|j)($Cf9;&l%I$Ar#KKyX4ZjT<2ppWYc zHbwau9<9~8M?b06bNOSPHT&il#CQ-lsP_AwEiK-tDXR$49I9Y{19Cu-)7Yl>TkR}d zDOIUMrsw{p`yK8Al@clg$padp*ER1)ek6w@d>{x>j1-=MdV9xrm|{ zuhF&9YYsMY9DAs}=Km}4LSbD_hOoMr?M=+1iiT>@KBp)qNiRmVP)v{7ty3%;p_olV zF_T&;M$h7wBBUbp(p>hOP|4NMOR1ulpLCl#zqaPi2|uje`eSFbZtbRz`53;7Zhro0 z-P-7<@-a?60LZLqQmC5RVE%!r)EA&6ipaQT}L@e2cB-n^n4gD&e7A1F8c zjsA33{W;#q_!Mvy9sm`k#^F*U+6EuSp4vIHrsrQ&yLFmnEgf8kclOvK8dKd9DFbdr z&)}``aWQKx^mx(epzS+2$$-sNNX+n{mZr*)C&JMuA3J_MiK&J}cq zY_Syp>z?|^_2f=@udLo*%-JQU%Z|Wo>?sW&4EJ-Ha6XDd>Y)3}sPrLcNLZv$oJE?M z1s4@(kt)@`%jA;akX{gG%oTiCnePddEeu;XD`sgiVP2w8v4?hn-QkZv$V5u_rSAVk z7$x)v(}ENp69c6S;R|l>7dx z!yTb|CX-LMFiK6$j(}>2u9&5u)Gxe8b`4yIY-x~M+#0f!mxbVuUS;-Vm&I{Li+$45 zA~KuuidHF_Mi|sKEhyS}9fq^YVN80OS6YT|jbfghFi(S|%QTo4^bnR2X2$#s!Dg*@ z1jaqhlMVQ+s_0qq{Ws`E46@t?U$tJ0Nl5{jlgjnjTUy0#FysuJ2S<*rSTQEuh~OVK z&j<&6YmB`T5>jw5b}6Q6S2hP%OV&$&w^H6h#UXwI3_gNQ(wnyH+3WS}T8D9lzw8yO zx6&E71*Ij&lzrlYX`<8)vv!<9C)+4B!>7qqOoy@}XVaCb^Qk1OwGzNk4K9q2sYJ1a zhnu!y+|X=24c#8_t(O%X`J>bVdbA~V!s9hNvYWFT(E~;C+@x5ZqZ@nEz*V^xa7A8b z?gf{ni$P(F{rCSKM_+|5)XqJ|r*oK^e$cx9x`kuk$O6F#U+fO~zrpX_vqmJeW{cL?ql(vom{_ zqr;TNPzX9)N{xfVjoy#AMLWv!FC4|=LcXV5{WiG!edq{GdBqW!));9}^9T2ae$BjW zD>c@R4(30CFxciPZi17jFD>58Pn|31eBM>OoX;9Q7ki2~@VVSsv0JM=7YcFqd{3+F z%}0XG*z$$Lx{{fD-l$+nfCGy6aELZ;*)79#4sGO~RtI1%Oohr&f_QglqcymnOixLEAY~9p#U|Y@;YBZMBh>vyJJp#cUdaabW)XaW`Y!dYOS`-i3>1 za#hnRq}+qAE8EoDvNAi#jB&i-4)MjwkYNrnCg@a61RpVlXMZGgrf0wHFn&O5 z)fB1J}BMzpEJ}`fo>P3 z4%u!OAVZg(ALDjKUhuL6OqxoA=UfOHE^riYEqlZhm?R6)-QA3`r+IldpRNyQ^>MCY zJgKcbkA5%-O~`r)5g?70K|Q92C)oRf(te-0`+Y{(wLRRhhPQQ*{sqdORuZX{{Xiyy zguttUaJRLk)cD+O{oG|eDldnvLj04SX6lcRh-o1{d`$Pw-^tiGCP?7dF5+G-UzJ=7|^uHbdK9lr6lKA}+|Cz+^Q<-*1{Ac`$ey;pG zB~fZ2GDw;w(JuZBEZV}~b?;05_mp48<31ULQ5k;G&HJ6&>~0qc++D>7waQ6!9IC5w z6)USJaUh|v>36!Z5pjxE(Ltu2R{GZiK8vwmws_i-P0WN%+jwTLmb*`ZJzwkfCRBMI zR1==!;nmUtt*>qRbTBDo?%SbfZ+2w2II<5I{n>ayZLmo-VEvwj5i#qQQr|K1B$pTm zpG`@lvAK(-_`t1~f#qR#C4Fqq=VfgxB1B-E0J1}$Cunx;!Y`*yyptOgDP zk?S}D9luEy)YT!sa;|Y1@|0ZZ;X(nIvsTP1I*oV3vqqxm3`Hw_I?74vAzp+BM`h~4 zVeM#^ySn;NhVI{y=`i*poV$P|F05*~tZSpEw&KT=Ib{)Yp~Yx$srWD#A?aI2jj@dr#9iqz!OS%GV!c|?UKzvt=gFo@Gnw`@s4ZqIB83MzFsws z4vmuzDGwbQCmm8AIy6o?q&#$JoOGxl*`eSSF@K9yo3{cYk8I?RNfxt&_beA3Y+k;; zAz8?c7gxQlH;x>2X-V$_dapLkA1phNWOh;zhy8X5tGVHwp! z1kLX`vJW}fOI0~d^FOKZmel`z(OA-PTB2p}BeZ{%vIR1{%A2cvSObY<4z2Q_f{q57 zcGeu|101dPAKy;>Qhh1PH3H6srPeye@G^uKicI82d7Mh*6Ds*l)-hBvs+In}TY94e2zNebOY?EfxID_3g`1CCh-<_RK{U1yw+GjgdLF?o#4W}( z<1R-+w-{$(+ut8|y#0P)bbr~&2d-uJK9k-1Yz{z1%jSMQzp}aKddcj;%of+$MI0c~ z0Js0B&G)ksn{TQk(B28t|4_BVs8ROf_9*j~Z0c+DInCy#{*c<#+p^ZmW~1HLORiOZ zjL0BstyZy>Ul|52W>kOKA`Xf!l@kkXNwde8w9I2n5tW9m@-qwwWtJ@nOnOrC!v7@{cSQEz*-~P7uH&F+NUAv!`nmTeA%0vas=_d z(>M!h+A{2ig|H>Im_0pN9w> zJ>yR$D32hij$l_Hr%6oHS@ECd3D{OU&KQr~y3sw@5Dg_uUa}px4~Xn%u%yAeFvO`f z63ms!blQDuNS4H(;ad!9x8UUZ%tn4U05j}9p?C-F(+wjg=ge_gtCgYiQC?<>^&|Id~>6@rL-EP}TAkP7&d6=#4Z#3i_NR^?#YX&Bf8uV|HvyiU>-kwya| zjWvigL}~r{@T!3(`HMmtZb~c)j>rrSNeZm|TQhmx9V{qGSpZH;;ZHr8=6I07AlE1u z3<-Hv1MnSip7$f4rjGew-CWE(`x6mgZ3ZHR{nas^VVdK-cN4O!I;FZJek)~mXR zq$&PAUPK;B{z1fe5lAWdhj@}rPR#3K)h=RXWE?ZE?;+;jh?t6#t5P>IXWoIU!ZqL? z1Vv%oK+5;f9@unbX6CJl(u-DNh*?G2H!ZmVWlg z)0%eEb_~VulpB*ZV8t1{s=Xc@fvj_ruDMrNAI{YMTiZJgF-iX?;^QXiquP8APav#s zO1@tTHXC$fwXqsg^@;WbPR%}QVDe9n7;0?ag^w2(j=-sU_EAS`J&xejG5=9`n@NB! zA_o}K!mx0{tQ>*SIUPo4br{XuAlT3_H889$B%MrM? zzaG4r0e^Q#Rv))H+_$waoxHMi@;WE)wu0TiPwAs3cl)i|x+z+qBaAQZ2;#&Ar3AAW&Dqhas+QPXV9Y{%wg=0d=JFLb=Kza zxf1tR+^=ymzsf{A1a}thc=%KHRk$C1Bj3-7Oz6&4~pj0eDUGRNOet)|A<|??V{8!_18WAx}Q!$$F z;K=sDp&jGrX_@|Q?F|tjd_+uQf7(5@z3?a8vo2dCr+gI}sr1-Nqb9Z`v7YIH3pwoU zwbM~t@6FVWixN!8|CI3Hj2K$Hw0Zg9$=DZ>DAf*7kxj$2=c z8)_GwpvJ%0CuzI?Vao#lOpXY-Eq)7HN-DInCiUi0Gh?M3IC_lLaGBe8#$juIj z&CxklvYti`F31eeH>24Eg()m2!)%Q2{D@4SvI9!qZ;>mz+^k%OtwOWG6<0`-WW0zK z#kw`y#X&@9OPc84DqJ1p!br;f0XR(V9!+VLY)`v2ZB6c7^`?j%3~h<;UgaE!-D|UW z*}cj!61&%JdiGjgVK}o_JF9vq)4(b6^?$NN_CG!3G{_+x7-sHYtGdaaC%*s5Pws!5 zRp+#iUf$aOZ>L8_5A*(E*)r&JagzFG_JZ<`aQ+jYieg(7(0Rs%ic58nzt{}t(Jacm{? z*~}hLR0BsuZ7FJEl3!^Z@82yw+2;Ps(9=qem;R5QzH-Jr&is@@PYV!Q{&&;U^ZtJs zdU`BXUiz)fC$i%GFP@*|!eQdDX(HzeFl^kKNpN6uXAub=6U%JiLPxJ1 zj^Y*G3y>bF>u`t^MevxABr3sUQVJ=8M-l0Xc(PUS_`k1|#O^@Oo7ht)prlpGc0OWb zvw)!T#+271^Oq1&MY!z!zTo>$oH^AZkMwdD)Ek_>fIoz5#N~0mv>DeQgv%MzVw^^r z{P_rHVREmv!=S3Wr;flC`A!UBW@}4ack^gB z+P>Z?Z=Rqyb@!CxDRuXBLBJ&kSPLD2>)7Pp$O+c1eYsS~vmbV|?*=+^HA^o)YU8wM zkyd#CqBL(I?h?Z0IjrN7YqC(;fe%6DC1{ zf#!Wd<#w&&3^Du=@GT5p(LOk;BZ=Ir5Z?NCv^Vx)0pg&olem%=6-~`qnuCi zlv;9sBxa;zYm7Hr<(Yb*jDwCt&R&OfOoQ69>viK&bI)66``-{3oMqk!{Y)snB_cCWPn81LVh20t~6+1Y%FjbHWdDZBNQ{a_n> z7Lic!sa7CJd|NpeSiIr-X zj9XT!cn`G776KyQhY+~QQX9W_pE$q_!A(3L&hDnLz)L}m$Jk$mh@BD}N5t{w%NK}0 z2L3-v1-Zb#72*Paxt$(|KfdRaKDnY@t5=m=7{>~;YXU3(Kb4rk>qF^y{gdFenLlbW zyoA>fUuQD>NWGdcCqo4K!Vjj*ho39??$??RJDc<2u&+HI{x@Ve?tI9kCa-#z`7YGU z58HhG;R%kjRHaIDwaQh<^yFH7jgrs87_5=!2{K;|$qbH25zO8%$Nh~+0Y6di7i`>w zKpd;ydde*m82yFO(@#8q`N+li2{`X3WjXJF*TDU)hbZ7TGK*lJfrl_4G3-PCo%9c2_f2d{RkJiR*;)bKXCspCtJ-d}H!?q?LT? zvHbcC$!85h^Y4IsJ~zpyl|I_g&uRaE(T^S+$&KmEnO7lbx>?ECZ9Kzw$*qncND=T{J{P0xxdA%O3JB{-jB_Z;?9D{ZSGVPo2-+`;bEyA6Fy!#GZ1MU#+ z8q(Z>TY#%#^!LCmz=d&LDPtCH0d5&?5pwTKam#R7)G-kEIBpqk1Fiwt_cgc;xW34| zC*TIt_9omDxL@FU?uy0!j=LB4W8A=xkO~_l<_oj^Z7V0ZUU|Z z*Ar*MCH5C0FGrGGFg4#YDKb6I9i+@Z@%YcDN&M&&#=q^8_#d7y{snYlO^P61QQUf3 z`PiR}-v<1Y1cA{dj-WfUa-~CauS9EZ2G;`-kB&#=KE6K}PcxldPv;`DQ*$qOO`hFN zS85fuW^(V(ywLnCg(PlZYS=;;5zPOkT=)AG;W0E7FLxNr<%aK)Q`qMH!a6MAJz#TW z4%qB4&X+sQq96P}8>g;Srj|RbZMn(&rJ`Rtau50XX2N@WiP{JNuJPi4~xr^TmeTH#kNfI znxvoD#5GCLR*-_9*896pYJN(7%yp z)Z`Mbf_|tQEqZLHIe*jCi>dDV3~qW}>ZqEU;j+F-52TXWr(k#fS`z@VhBkT8+IoVF z-z+#EjQ43EalOPsq6|5JNx7VIU?K^Eh|y?j*)DIX~dGz8B@WM=L+#${g1ie;^>- z2p5`TTiLB&-2LP)RKE3LtOww?yxP&QtvZ@dJAWe=8q9%izzDOv#N} z0q9Dv-k#;m{sK)~PSL}5X5!fa$t3ArlIeQ+`dOyv>q0_AE^^d6vv)ePcgG1*2K6`3 z!6o2$rWq8z0}aAvZBk41mMoY#NA?y+_Fki7qE*h|Oo&s?FWv=tN@guU{uE%->ydT_ zzku3&gCXPzu;oIyQ0M0)YC~Z%d?iX=WV><5FHrgM?WyR|EzL%^UF17 zx&3;4e90Tm)B&tuI750RqgY_K1K6!_X1D0*_EGnq&B6R_CuEQdXtgC*wN_re4UjH( zWFJjDFOfl*9PJlE{gDy;5iL@wsIMB9;i#HrbyS_1GHy?0+}<50R2jH72K@##=n>N~ zaKEyIe=b^S)J{E5-_BaQ2Pf|%626ohr1M)I-dRo@skaH?n&UMo#02d ziT@Bk|25fC@RO`i@YAN9-!^{6!%@18x44tt$C{C8GfxA;@J~7VoNe(CH0(qfG5LXO z^O9kl4MaJg=sKy3tV=Ub9Tga`mr1yr=%$-_iul;UnZB;#<5XZkyTGvgQZAAFM3@C` z+@Hp?SJaJdjaMV@R^u{=PtAh?mXcWs1v^nuFloL5R`;e)Z`w9Qp36#((>SNd-mhnG zVtwghERSAT85+DaE3GUVc15xr_$kM$Xf@SirGI$EIz(CN?%#f2yt< zbk&Xbv?cX}(dR}}V~l(68MOcG$^+gDuw_0+F40>>@8s}cx2wepg+&{(I(i0Cx-yOw z?W(KLWfB$bV46R888I2#I&F9 zoYa}4EzDIrH(+q!nQQEF9iT$lv8deSy|MgdOixm_y2me7_N%;%LbQHPKAnqk3vu&t z&gcW;s&?26G@Fdfp-qXi{`!C3Dvo1zuZ~4E$Y2`IO z3=eyNb_$EvK$lVaiZ1bmqM+OI8e(Tl_=Y~YX7nHNxs5tGQu7!$=DC7pRpFohu9Mm< z%7_myeXNruFfjZY!-%VC`*xm8X)6jtVdshrOQ5WwGIobO9FsIm$;d<(KD0nJKSq~m{+ML*=hkIdBE49@r03;#SS{Y(a-F$yrCQ*W zQ5}?(1WFgMPZkS1rQENKc}L4`&+F!IhWB>Yyl2$sGtB?renEvWx@xG@>iF9Pp? z?`dfec;53H1=Y&Agz69i%jk_9Llvovq&OfCJ3`^NR5I`I@TF$Uoo36sk}M+j&nc}T zydhr0cvS^mp1R&(c0z%B$qbJ zGjQ4*y_BZ?M#YycR*SuK2D{5o@)Q0+yrKzETl8#d4~2)tTU1A?fR9UaWsB8N2pX_p3=0dRnxq;NV6`cS(%AuNe@$-^-#R3 zYPkF8PpD^E_-|(3^8>zDRFfo2c&bY0{ZV++BZ@e-(jACn_D2cYzG*o|e`#jeCB!E~ zVk94m+BKsid%B4HQ7Kx?3f3mc=%RY(A{m6?@<%&a{D)%Ri82bW1Z>z4S!C2h2?tE@ zRmsKBK-r?onD4CUwP+eFcL(}ILyNgNUxnU(x3Mw&Aw&Qj>*4-pQ!g@``UFjl$O<3s zYKHeP!>33Wf<;%Vp4321f2e`X3rUC;nT2{_R+f7*x>timcab7|`4VOnNZB_4mB|41 zfu>F)M%7ZwdIdSDWm)(&mG+hJ5`Gm}-vW3F@ay={mslh3Gl7SH zAjt-X&sSI(RJ9!-j0D#TO2>!aAIM%A^0hCFh1-!i9C=8UaD<<9dFvQVUA^Nn_Jbf} zDN{0FKig&0hbO)%#8C7nYGXP#EsTbTzo=$+=7c*=a~hXM&w_q#Cxx2HHUs!Gt1~Ro zu7m~%br}-$J%Y%fYmcokXDtkcDM4Uc`AuSd8pGPu)orwd{{zq)%PT{7+~W*f>M&wz z@KD}vI^l1yN{EoPA^6@zm@{y@&0!o&Bx^_{JJ_1+dBUKy4X<;3&Qf?F{G@=}U$(*G z>&lw4L54ci8joHVt`sP4(jE&j)pkuZ`dIi0_Y@rT!8S;1uOJc#{v2Zgs(Y>Lx8Qys zU6SY_=#efEAm7ltJ%c6l9?W0W8}*5%=h94(gO&SMu>?4P#Z#0^zL%wt2Y%hj!non9 zQocIBE?bE3O|+Ft5&Iy~%`7{0G3GzTBwJkMI+*>6#AM9ckpiP9DZs2~i>l~AxWuez zU3lq(ieg@q76%7)q;qQhYb`W#$?F+#m~HqI;V;Hu8Keol+Mp0*Ffibd!k18yzX9~b z)HPA-wHrhA%@J>hc&z z!UGm(THx!kzSr8eguQZXmE;8mRvuW!6(!4SawwxY_k_=zaDETtC%TBvFrpmSElypx0ilKB~qm%Yx_ zFH3mFqND6oB;_Jf(vonLD~<=*hAw#*^4m^ac$LD#9fjV@1J3PYbab}=@NDlW%m7}l zEvYp!qbCWZ>IJ;CG^OX^7A|2kS=h}^RX4{w6~6yfM&>((q3F7>HIxBTqATk&MT1ZD z^@AIY4$&9W=vBs};PNQe?wALD_GTw|%J9^`n^OePuMgk!4!qFa5}R+vx>93Dw#L#3 z@}8X60RtcFQ#n%#!eu`bFh}AbQ25$m9Q^`YQc3|Ec-niZLizmlq`~ z2`pUs`YE;3+Uv{CuiDfRs|fbupNTi}UsOZ`WVy>0kDV$X7QYO1SmW0B$MNw#c5F9MsD5CD)l_Lo*1gry3_Z21_o~BLG6}^Tg?k)@8wxil6SHWE zkn=J|t!clQ(Zp<+SMS^;l?OaQU)ZBL53pS9QbS>1_{I5(d$tFh zyP{fsCMCu6dO2q?4K(Jda-}5sr{Ei~fAV2xO#NnHzrOwP>0P}qf(}X>8PT3VpU>VG zJC^5`Er(m>zCgh}N6=Ev3K8gjJzwm)J;tZ8CRd>7l9eRH0veb6o8alsB52?S6%;GD zh@?V6k3+0(1G^%zSiuhnE0yfA@LgswId+7kn)+B1RZw=Uz%DrhMQ^Ts~yYzUzwH4L?@d!IBaxZ0KBqq|t56Sw?z3 z+Cjk!2(_ipK<*2hJ2RGC{t`_LfRZ3}eL$A*IPnO|G*@7(mUW!`m0uN~+^=0$Dk|Fq z1z#wjx0hZT%Uyv%Q#MKYMW0sF-@u>`4;3)cze~WY^#ZsLfj<5?_+NZSg~bY%kxamU z`U3*~I?}}oo+iv=L_zK44Jw)7v0$F06i%)aQ!ut)sB!rRoh|O-ZYACh9xFS+&Ed`S zm_GydmkEd6YAiJdVD#l48{-xWI-gRYTea$Kpz(m@t+#P4TDD(~9FDt-Zj+`PJM|a| zimox6$W$+Wns_&bdyI(Ms}+Ul)JrJ;Omk<{!%PHw#tl&wqIQ!AD55xO|(y^lJUlVxL zn+>##^XCflA(R8=onmPSM+m z_SGJc_SJ{arc=N{*bt{HP|#h*aj*=7TL;2l-Y@+v7(pYnJVb+er3RPEEQ3Pn#5p+i!b7#AcWQyd?nqYprxh%5H#+Sxfa%*~uV)@IwUO|03c zb?Sh3mdBRGyt#H9w&o>xzqSLT-B*Q(9-5_f8kr{oyAGws57}nWtKnIt$Zh-3#1CJW zCT41RBWYZ+g=LGSc^A>VXa}=Zru?xl;?BOMAt_Mnl&P@%+UEj|4aZs)YcqZe8PKWl zW<8RCav@)tKaYtI40_>RL2XgTS36rK#rlkYLcKz{qmb$489%ISVafTEs&eZ0iwWGconKB?7~caR2jS43-)BMn*c z8T}Q~Y}0;9&!vQVn;Znij-CHqnS>a zSKpS|Wzg?y<)_cV{W4i`xnVtBec}xP-$9w_*7IwI!%!?lZ?!plC%6xRL2}98vD#6dX?)1{ltzbg67%AxgxWbtO{Z%3&54y$the0Bt1lwghnq(P7Ih86%SxDNOx+ufoPFdrZV4e)DN`*p(t%3%@`MkHa6E`yIFOW|I7G zk;07S0A8l58};%_E#B*)vCrQ!cmF#&w-=6oG(p4OF@u`Spz{bC6b}lSL1z$D6c2hv z1z{`O6rpuA1zaNNl1(rKcJpdQU@T6tf(_D_#9Aafz*wI*2$CMOnO|Dh52fF1zihi} z1mCE#@}NJ~9eB+g)sK=}F$$AHuE5LXCP`lpturKlPF#GAeN*xViaNa{O>s7;MN=)l zFA%|U4U<^@D1@izfn;#VZ;jhQWS9W{g?s&(7Mi+a6cl=nOqL47E*Q{6RXyj z#i?)V;v}o{yE5$riq^BLs|tkiQB%OW-7;CERC!js%0N;3H>IVLSq7a(xZM_JB_2HKw9kbBO z70XOzgqvkZ>UgqWCzJhl32owyr()fXm-NPD(t#|4Bn8lPHl9@cs)4)tE9IC!%fj0# z1Ub&duD~)AsWqP_rfQlIEBH6O(%|fP@g`U}bt(ahs#}A~Ng~CON|h!Y=(vz;PR&4* zA_gm_(*!4T;FTm-7`TiNwM$Laz;J@`q>tr98+mtpJ?XAmg+Y=*-&0h@tlknUIQWU# z)=Bh9=t_tuN|>DdT>?tpRq?Q&YKfq^160C#_nZ~+rasIDf^3S>WYvhp3jV{)6DxRv zkHyx+a*(>-$JaXSh`{^+mNNsm6{_1=oiclO@sEO9_+44yLhZ z^Q}OfXzYC|AzP}V9`MGrQY~yWF-uAc6z!Eo5COtEbHR%h?AfL0GHfAZO3S};yt`!8 z7KZm_GOLzz!1uPoq< zC+oFh!We|>KQ6FD2e2T~(+0i;A2bFWZfLv8#hL+!G^F4!BvX@V_eWI*)q3?ON&{D$ zq#Y}mK_p0JO+Me74KGm#G5C6hV`b*5zL(z@OVm;xQLDSIIp2upItvkSMW%wI*)uz7 zOREu$KRW?qtbyM5>c$%hQtC|E5Lb>?ah9OVf2f02G1>frdl1P!E&0VVfgB_ijudc; z@c>tjSxT#oIBGjMD1Ofu>(c7P`HVQn%Oei8N`F0kd--5 zl=-ZbxX+AzQpK_$7Tv#8f=w|A(5EPTtp#>Z7Wj)qfkku7)k)CE0f)@+Z%0n&KtOsx ziFYLsv^FewtQQ-~)t_|I{U0%;>f7;(y2=@H3=C@(vSuxozznUz&v&GpKa_B*T0;Ts z1C$UR;y#4*eyME76?Eyph)S;ZcCbYL%z;q2(;Wa>CW^=8cqmX*n8<#aWY0V{dwi>M zij**gJhb6py~UDY@o^#!a~mp*OZ(ToxP=yl_uSTjTX|pT)w@pC{o5t6wI{M%>BwTo zz-I4BsuPU-Xl}eH+i{9&mZF}bD2H*hI{H2THt9Jt45cg^xFKFh&y+&4%tHE4OKX$b z%1l&k63FJqA=_0I)c|DUWo4z5m8Z%=ZOLLs|1G+)rfo0PUg#uB6hqVT+_se5CS=IH ztp7%1b=$ljNw?md(E&`tk9hM0lt70>QyRQ^QRTPTOuxX_*?(8t0z{4-4ypnwHhHrE z%3yDYXa|LoI0)LHMD5ciB`cH+dC3fBKigKI_HpNsL5MZtK!=C4cj zgRfWdr{eF0R6qE5CN2F_squpUH2=eC{$QHFGSyG{W%yI+-Iwa8{AsD_@lQ$fPfGKT zOY@he`JHM0L23S?R6p%I7k_H|`lR{0r}+!g{JCj7~1^7Ik7XNT+Jn4g}e$rQ_rWgFD`F*K=!GBu* zDXH<~pOoewm*y``^E=c0gHrv}SA;*=Km6yW`l+u^YI^+LQ~jhbNKKDFH_dNP^^^b0 z4k`F2{pa{o>;ELp|52)+{2!#|$NzSk|BX~X<=3U=$Ny@opZx!ixATFov3~!*a3UIu z=1&?$3u%ZJ()?d0hNeYnh!*NIM2kKeqQz;Q5*E@B4gDFyK14&bh=#BzhG;orh?c*z z-}Sy;_qp%)ec8@A`u6Mdczmqqd0p4_zTW@e_kGT}Plj$!oGv&`aH`-G!7jl`I#c7{O73BLs&F4%3;+4<$C|Kb04v>%_r=g9HZ%b_g!4V6T6H z;C#V(f^!Au2+kIqB{)-O)&In1eO3PpP7|CeI7P5aaFXCeovA$&i1qOhFE~zctl$`( zDgP*9vpy6*Lf47I1&0X^)tTaj5S#Icg9Qf(4$zs(a}b;LBmcr%?C}Z&=L^mgoU1d% z&mlJB6KCs8%{Sb;{?YFj?tOo zM-l7sBZM9<^e|ng@?L)Xc^u)JnZT%a?RpHHm!XP(YvpR3yw z=LpUgoFzC@XDTm)ST8SKaGKy$!6|}Wf|CR%3QiClFE~zctl$`(sXd~I&Hf;c(3$ER zuGtyc|oFq6=aDvVhKb}}`k2s;n3Oz>Gsr)FNDPDxI z57%|F4-*_JI7DZP7fh_@7o_VHFF>$EaN*6O|B20b6hB{Zp5R=;IXYAM*~I#M&Jvs{ zI74SDKb_djhvKE_I&rGt6u~aRNrDq~rt%Vq_449%oyv>Tne1bQeT=S?eU#2*AEDb5 zhYJqVnfya_f8r3q!GePX2k1=YIf%{r5f?h_Tp&1KXDUCB*z8a8&((F}9G%HNTi9pm zI@xFHO!gVNJ#o6=G{LEYQv|yNCkal}nes^>Hrt2FkJokLIKi=kV+2PDju0F!I80~C zCzM#vCq&mNpJ2g3f&&CQbf)-)WwrRk1v*pwd}6b|iSq>K3eFLntuw{XBG&7Zsp}L! zLvXs_G{LEYQ*@^CT*P{LNxDwuCF)G}3Bo>J*U3IkaID}M!BK)E1c&QP<%bdL`G)E` zl^-HFSZDGN(*2181Um#5ma&&tK&9XX{M)WD%S7BhJ)W^}lXUoGv&` zaH`-G!7jl`I#cD)hCEpuTOxk zQ+*tQ3rpMkyFhTh&J;h7SdX78^cpGR6rL*dPVV|MvWS=fLO>nBt6fcEX&(Edn z6fa3|qTmF<@j6rdIAT41tgci17{O73BLs&F4ig+II7D!;&Xivev6&xnfMAEtlyBip zqW=Zw>rC zc{)@6xx{AuiF0(Oc-g`}OV`OhQ*eghbirwYQ+1~DQi#p^P<)rrlXRWz69p#-ju#xK zGsTZ3*6SZ5I7)DY;BdiVI#Yh3#Cm-~be+l%)|u>sbbI0e!4AQN*R=R#Um!SNaGuUo zelD?DfAY`Kb>eKnSvr${rtVLip)>iX>-NNHf>Q;j2zKdA@so)4d=qt@;wR`#_VKzs zah%R%AFJCF#|VxR93ePdaG1_iUMR7iZ-}l_dBHl9eUNTX93a@CGx--5YW+|41;l!J z`MOT_c{-DQu5M49BRE@U^3T%!i8BRf2u>HACOB1aieQ)EB%LYWL}Il57J8PhlYOS(44uh8UH2zW6P&6u#Y++XE?p=8B*BS-69mT#juRX!I7V=k;0T>5 z-*95Ry~2bZs_SGQA~;xZkj_-!0AhXraOgV4E4*Sazkt}ZC;xoGd4h8V=LpUgoFzC@ zXUZpo*lZ8tbirwYQw668b_q@roTxL^H-T8Mf4ty0!Lfp41V;&u(3$ENPHfhf$`8|Z z;!wdMf`bJI2@VkK&{_5WWvzVT0>Sw@Q$Bgbdi&%G&Jmm~I7??LFOyiWe}=A8dFeWn zeVT4hoT@X~rwDtO(35nX>=Oki2#(j8%8Mg5^Cgbenc~Ih_QX*-lYNA4PaLi@*@x-& z#GyKqeTZ&P94t6UaDZTk;KEB%`D#5sbq1!oD)6r3SAU2vM< zRKY2NU4oMYCkjpw94|OdaID}M!BK)Ebf)$WCpO!g+AmDki9-d42o4q;Bsf5@LvZ0m zt^cXK0>Sw@Q@(k`dcL{3uKHhRvdUD>z1Ql;8-RDc^8ny*nB<6rHL4UBr5SBneK`nc6!+_a}}Q949zdaE#z6!4ZPP1&0X^6&#{7)i0RX ztRLkYr0c{1f*pbj3q=15&KH~~I9G6v&Xiv^v7TR+u2X)Qf-?lC3r-W9DmX>3OK_6l zM4c($1Y$kkcwMJ_<8&tbSYaO{^eCZ6=sLv<7aS%yRA(wLgjmlnSl20Dkl+Bp4#9HACOB1aieQ)EB*BS- z6LhBe7Ef%>H{v+Ku{zWIixK`&LXXgOHU9;N2@Vw;qBG?aOl;<-=D*Mbbe-%Sf(y^t z{R@co^HjdzJe?_CuI^8qBRE@dmf%dm8G_RVrwL9KoFdpII7x7#&eVPh#CrYX1;^=3 z^^Mj2iDLvu362mPt}~S%Mr@W(@j`_jBJ^NgC;K450fHTZ3;)pipZp61=L^mgoU1eC zpF^zYpDpw(p=Sy`L+I&3PZN5o&{Kr&5_*!ZQ@)9U69mT#juRZKv+93heLhABJwn&X zK3s5^&XixM?oS+|Gx-M#`ygE>`v9HE-XZJ@&)WN|fLPBzU)L#Kp5R=;IXY8$*~Df% z;w+shUZ!qOoFO<}aGKy$!6|}Wf|CR%3QiClFE~zctl${IQGz1`hYJo994a_OXVw42 zdiw?m4$zs}*CG51&)EG71m_FR)0yJs5}Wg#I7esI|GK^Ef5DkLtNz#hiPHtA=}hrb zb${X%oyp&&+Y=}0O!kSoJ#m80WFN2F6UXUH_OZG>ag5+7!4ZPP1&8TO<%JUK?Hi&q zl^3kr69)+n5bO|Kcv|$o&QyLru~|OF&(n3{T){aylYh4EPn;zJ#nhw6u~aRNrDq~ zR{c+GmQV5Hg&wEtWFIRyMsSqi2*Kfk!vu#44iOwII7o1S&Qu=3OK_6TR9+&nSwG?g z!SRCQbf)rSiOu#T{}^2-j?$UzBXoP>aGl9MOt&Wv6&xZsSa6Ww0KpEOsrj}>~1 zu9JO~;0T?myl~y0I80~q57q67Lv$wlU|}Dm>tr9GGub& zl;8-#;ex{ihYAi69IP|dH;CA5AM5$Fub&!1Pw%4#Z$>&Z#?YhgBAqD{_>XG}Klmrm4=RYYM`A_OD{*!iu|D>PgKN+Ryae|c_W(M+81syAA z(W3|Pgy%?Cs`|B|NM~vT`qPabfldzHoSE&I;sU!l(^}GhcF8PHk1T6S|L^8ZZ>k(z zF7;>q1bT^{^~w)@zM5C9RJeNKwHA?El2knUZ;yi!$Os+j%2ax!D@8@2XPOrU{g1rq zr*Nu8CTBnjzjqWp8h&F@&{ygap~-M)b@=6*i-OkvqF!;FoQZm<2O8f_KT+`dH>wHs zry3u=pPp)Ld%pSWr*=_N)VQjKkxu^k$!<>mLC9`Sm-^i+YTSE`Ut6Tc9YL>DZWuG6 za>H19KyTdq$_?X}S8kX(sQK)Bb^cM$Tjpkb=+)3 zN9cEXjuZtQ`c>r~(1ab;FECzAxP>xTShJ>FS}X#W(Zy z<6-?#PP)RM!-!9OPM7r*x zSw(-7?%_$8S%d$isI`Ztq+0!GN~+b5rleZ^XiDB!xnat3`p?P@Q?byc?P5yDLYHxt zDN`+UG%bIa?y1%;xx%FlAWK?}u)@XD3YX3++_94!Ykb1$mA5PaABQ>sRveb_0{ibs@71yv#DBVdFi5{S~N8H3A*~) zxBj4Nf5(|=sG(Z>?p06cef=BNzS`o)zp3c)O!)TXHun$p)f})rAKjR*U7VL`+fnWC zkFAW|jRZ@Y37!oFD`V6VdLU|9ZvEXwLD4(8jup*1+SbSlRE^4Y+Tr(o{;Bn5-g}-A zQ~boeetk^e!AU-EIJSck{Tu-2-w65t`mSdx*m~gDJ^xPraYpea4fN~Uzl8>-|glr@eE7{hA=g|2B+&BY?<%VcmZx z|BxHapMHhL82`xs*SCuw|9Ag8`NtW>`#t{4dGdepJBi*8dj0Z*d+E8^lPA%C({H9+8cx5#=XBhcK?S)S_4rS~%YR;`Z7x7P zcbtBC@%<}I)j?A(GTjDRdzq;s=>AJg4p8l@Ohv0W%C5hdE`cUqU^)+41;2dIZ{1W% z0mngGSKqAY7tjYQnGS%yU%`|E>b{C;CurB_fy(bYP~G8IRE;)+{#?qG33|TqC8ezf zZ9Q04`F#P}R`aUTJ_CJtCsP{eS~aG5pu4`|tY?F!-BVsgnGRajl*@C09&N@n8Pwoq zF7I{FV?F7&tDOO3LHFn0swe?;?Jf2j4hsB`X((u71k)hUbHA`(ENIaorrw}F@37_L zpgZ1W>I(XNI#UFw`+H1nLCd3D^R1KE(K}$xmb~otfmzZjSx{YEA z0@WVNR2dXFn&}qMxiqFSpt4Q5bqiPW$a=m5(*@9y2blfs8Q#iX3GWXz!cs7Z3XFKCaPV&_&R*pr1i~LAQ?Nu^R(A6vB1y0Sc_h zS{G2==eR~4LHEQkg@YEgVrl_u@EFqrpgZ<*o{c~UQ@Q0sK<{7%)B&As&MjCIH1Tb& zQB}}Al{vEj&_fHkAIgD-q;pT-1X}w&YgbnA$U3-(OD_N|t;8*O1~eg#b2$O3+lT2G z=!qwoazTHA_JLZ4vGxOK?NdzKL03UppdC-MwgF_6_a$h>ajxG=(B9dV)aXeE{dP0A z#9~m(0ItzTpr@B|OUwbC0;PZ|J-~kNf|`aqR7@u*dJSunKp%q=LDgpQ7#t0X+|HIS zf!5N+DMfh^bZZdzZ5(KBO{V^!yMmdX0!5=AdV!wX&oQGwzkxb~hGetW9`tEV9=okU z&(vTF1HDs`TcQbQ0{sFwW!4Z>`ZBj*JrT{Q|n|;H(dT?nM9PfUbqI zwiC3mHTU0lpxyKf$yD3Tpl{yi9?Jy1S&dtMHE7Hpw)_J0LRoIJ&p@wLWl95ezk^$M z9;oMIT%*~b-D^4P>7b9X%eX*)P2<{52F=1OejW7K9M;Byu3}$F0G*!5+HlbFu1rHg zo3I}Z0(~6IHHrnj8O2%m1~mXZ4tk*-Yh6K~LyG`)@5owP(1f;3tw43LQ#J?Pj&&&% zbZ{%Sn?^FTYY*zYjtu5X!s0+k-Zd&eHo8((mq*`RNe zIF~J;A)v28AAr_@K7WjJ$pCfl&a@2F6z%y5s7fc+7J{DW%9IMK2AT=#(}uP8Kx?}( zC4&wY@u*7zb*JCsr7=Gq)NVCvuYwk|XKfUyETY7N{sIjKHMor}p9Ot@zU>RT6Jsz2 z)UPM^dk@e?P#4g^$64zLT7`KV4tg?%M@S3M*1k*+fIeu))ChE{15*g-bR<(9(1@-~ zH9^fVkE((`euH}~0Q5glInY+nO`xAaSC;X}It3~KT?3r~jX+PI0M+flCP$1SY&2kk<6Pk{#F+|vuRw-wL7C{VSdJR&=T_K)S3Zx8z5EvD9>&lfO-f!;}G zY61%Un5iLX!P`vrK=&+U3I_e=VyX_h2+P|*A8h0kZbi_Yo0%M-epyUKOL;6!-Ocmw z5~vya=sf5N)FB`A=zg|54qCE>=@-z?-*8JD0ClUzvnmI4=x5GzCusR9_WKSL{SCL- zX3%p(xHmIFKjyOEYS8|}OkaSWKE(7H=pZc9KI5oG=aF^qBdlEj%_`0G2dKj1OeaClv|-8v zjVr@+7*q-??N6WuZCTp`TGgE?8}xh>(-u(qo=jhZ9tN!g-TDA)8KBx&ua|)~qP$N) zM{#FiA?Q!sSx5yv)QqFd1U0D2^d9H~#7qW#-iWm%P^B(R<3R(OGQA2K`54nE&=b(& zK@Xv}gF&;fuRIHS8kT)Qr=Z1vxVQU|J!^s{qFt(jzG=di0ibWM@yIF%ibPA?1bP9MS3c*F^;JXm zD*&}w%WKFPP}6!m15SX>-N)K7&=a|Qg3krr`xDbX(5xSregLfnZ3mqKWr22Nv*iX* zJJ6S)qsw@1t^_^z1yed`(W6X@LFIcheFSOt*oa zexIo#=quFL0a}W7Df*1ZQmK#F@)Bqu{LX`Bpk4AoH_u?pOBf2O`##ek(5jKVYsZ4Bb>jKn8?>Y~&*{fOYaeFn3i=9lhyeBL!Y$tx6xfZa z6=)NvIcNs1eM3Pv@8_)RgSMveI&nAX;g7ivwLn*K#U2EzJ)P@N88m+r*Wnh>$g3Q) z4Cq%-;io*Ze#_@xxd0l1KKcXn^I_Ibf}ZKfG4nuk8*yfbK~rB7RhAT;n_!f;ts3rGoD5 z$bB>uwDmrw_dst2^H@p--P(vL3Dl+*(|Ax|1EyC&(U<|FK)>F@T0H2@noNU1k@qq^ z3%YM5_d{RMorPS77*LzCd_w90n&4pS0vdS}Q%BGnrJ2G(|69mWT7br!V|oB|-+87+ zpga4rUkIr2(@b?hXK_!iCTQ9v_Nxl|^%_$E=%G_gA84to9^(_&D|(@YP663pg7RnS6J&0THb)$>?zR1s(jz37wAFU zH;n>4iTib(L9=dS%l4qBt1z_&y>>HG7-)S3rY4|Ww=gvXt#B~a1Koa@YZMHswuINL z>Y(yhc^2OWdaDClRs?nXf$QJ^?En=m;jz>d_Z2UJ24eJ_2feYA{qjN8HZdIsU4-8+ zpclSp?EvUtS-xM81FGa;+6fB0gIE3UK&5LkZ3dNH#C6C7RRgUC4f&Y0FFjevE}Qa7m9eb84LOz_p=f} zr*UmK9JK2QM;Qu=hUFm8j5-`M7W8~2rrw}6w=z8r`Wcp8K?m<*EdumTO{TV>`6!_k zsP0ZKy*cO&aKpw~i}fpFqp*vY!Fyu{=-Mi#WuOtuc-{R3v){sh~G&^2uW+sQiTr>df~Z z=rNR@47wAP1X}+S=Q18N;BBT?LA!ru8U?y%HD?wNda^FhvB9A7f!O~*Pv6PZ7xW*L z5Ca+q>H(Sx>H=B->Ihl|3I{!eJHahLTUT&q4}k8#`!bC{kF@7=K?tZ{2c|lpv*AoN zK}Xv#RRz7=lPLi7TT7m|DV??=5rFaOL@qCk)4GIa(`+09od z?Lklfm)H5$pgYfU)?uI>e=s!x?RoAQJce+K$IleIKZ?M+PcKvTbF znhly5#%(&n^Er=)c$lx`OWig0%?HwMZUIZ9!8z@_1;3_{jQM^N^q;A`YUF`V_uv*h3_9DL=_k;%$C>tkKF0c)4SKW}Yg<5( zxTEwns6rHL>p-tzEM9_VM}nG8Aw z%Oud!uAIww&|O1$ReTk+=}YdTQJ@E>a0|wRZbrWk22BAy3)+THPxS?T2rULQ7k%3U zbQiQPplE0vL3=^rpqt<1zHI^O^B2a|n;}nxGYB zxUH*#{;bF`13+)WuN-I={B8n0c7fN{D+_sKeSey%0Ms~-=?tjpZ%ijZ1Mz8}W1vpA za@M(^H=8i+1MLU>0D25p(Az;Dg0et!k;?|q5nP#m30l#PW3B|<-i9e1w5S}@V$j9% zOdo+h4P=@FI@N$F1+=sp)4QO%?qqU;cAwzdP6EAAm&Z~f=;k3zqd`L&GQ9+PYbN*D zi=eBsnBqX|PxDExKWM_&ypKHv8tLF!+zYgK6|ZMepdaxbW@nIl3-^0_(0^O;dfggy z6%+>Qhx@xtKog$eHMt>ZVl^I1^*|qIam--Q%{X0D2W<`G`rQVqP{dIxg1&lyvvzr1C$9S?(78B{avt>S^Gx}m=W$Q&IA}laJpTfEx*3;u0QC9YoOKRpZe6CG zpaJzb=69fITq$k_JqOAJJqlV4>Vvla0<;bE8R+d3ye6lCD*eGU4|EnZ8x(ztwdtTY z&M>(^?}H|Troi%b(0{A(I2#MPGnM@kK*JU@4F~o7i`Vj@pwbh$tp|b1p5nU4f)=gd zk=z^PUe5G5=+huBuPf-(qr6T;fX20DY6}X4)(SKbD_C>T41D?~6!atf>VqQda+JG4 zPor;ZfljsH(HaEmj(6@VgWBQUq+38M8n9&<(66g`d=`GhBkNw!1<;!Jd7S+L`tN&8 zCqds|!2Soi_8%Tghe1>Ej>Au&bGW0s2eh|7TV{ivY{;|)jpUxQx2y9(<-r$X5> z19a_K?v-Vrz=2GkfTDNt>|Y3aa2-=B=*h2`W`Y`g%k&=TEzE#q&{v7PP9%XU;hz6^ z(15Dk)31V}4|BVW0{t1tT0H2@0H(p9{fl_iJqx;wRlhIjE9?(3pdDw}uLtO^lT2Me zn?M~wZ|r9+9Q31`sRhWm-}3&a>&oLE%4izw+0d2g>bOIE8f=AXd(5l8f8*@QV zW^!ixKx;rhfbQ79+IG;LYnie@OF6BE+@K_jPdyG#c? zIDz*77pNL`i^-si=XoBz4*K9S(^$|m$C(m9hputmhl7qh!mTtEw4fo^ZxCqjMm`C| zg5F%s)EhJe+T)I=GcF;fia+IY^h2WTUx z3uyQ29J3>6Z$48v=r2$U(3DfGJplT24%fC3=&RXGA)vFHP!qJ^70#t9 z=+^|M0MIKfc?^~VEy1TnZUQ}x`vq50d1T$%g)Iv}>pL@@0gb@b^$Ad2++{ol+S`#W zb3xUxGVBADkL2C=2T%ok+haTEHI$wOYK$v}4WJ{cbXWLnq`N}B=nP*8t&=L<6#&?Z5f0l!rE zy#j4Cv>MPJfc65k7opt`%>k_+wEoaW{FlpnO8s#LL__NZZErui>+TAVQh%HQk3#DV zZPv@QzPQ5gM$CtywT5;l$_s(k7+Mo(O`&yxRu@`5Xq}+B@HN0{(5ge5LQepp@{Iab zfL0NjQNJ+6y!IjYQIY!N3NXrR1??QP^Uxkdd9l!bgLWKRA82>0YB~dchIRnjokzLN z3Vz`>+W~DSw08I2q}t`ny7b2xunF2`XnSk07JMgb|AV#~n!7q{Uj(!EDYVa^y><_4 zX?L?W7uq~%XX~+c0@^fa)1j?WNw~rTl!-IoO=y#$wG3hHacKXAHWu1z)mTeFF2kS= zhc=)#Yq#9RF$Y2$1Z_qg)>5H839UD@mg+@U_-)F>8SogiuFxJ)yOS$Cc+0dFnYYy#p^^SupJRSXaFSPp5#x!T`Huc9Da0j$n&~Ala65g<=1g$c(5lz_7 zss1mv5nMfz|-!wMQ;%p{;}V2(%z*OQ9`;whP)%&=x>j2(8mFF3&ZB$Nc-y zWCQ>k0c*AiVvjen_(4J5)QhCb68SoIa7SP7P z?`vrHL2Cr<)No$w!jMaCXmz0VM4q#uRe@F&+6-vf2f6MyLn{Yu3bgm&cliSzOIOq% zSHRoQQlOoNb_Uv6^_g|5UjoNG3hfxQH`E`Teu~ek~xB{lCf#M4P4sCW0 z+IeUXzQS5O4&=Wg6WU$sMOXOHSk^W{ z+YD_L#!@K!{s(O}w2O%OgEDajd9ZXv3lPY|Jsg`-uGp zLK_6FtXeo}zs36bB(&bp-0J#|_CI_utQA7L7g~L2v$nAIgZe}JAGBJ~K7?OZI@hlfw93$S1+d>xyir^lS{Z1!$8)>n zU*2V-M7>Do>!GZzg|-gb{pv+mcpS8)(3U}K`XXy5;@NKjw1v<* z4Pz}`{c#4o4{av2HPC*6_7=2cXjh?y3}?S_(8fdSIf7$4p^bz#3fe05qANTf+Vju` zL)(9VwcFBoFMb+YUuXwWUR-}JuRF9J&?Y=uw$uX$DE-cgTYdX-kaIUZVdLwURA*g? zbbebDlrz0rDd+ykN#B(38@t)_yr%X~_A(z4cb*@1$WH)_bh^~Tr|79){8%nLmXDtL z)sP;<*OLT#5Z?g)lY-~*#nSWm;^=vN@$@{t1bQA{;zoKT*1^u62f?`ABaW!&eXjqrqZ!byL|MDhk>;i84)XB`J(+LD!9aR= z7X8omJS0_{{q#hVNaq!LfEGX2%lXgMsDfFev+lWvOQ@0dAT6p<)Gp&eT9MA5i-K-> zL)FT$=~2%UV$LR1pjxSnsZ-n=4^W+K^|AF&d-X8Nf37x<7+E+Y-0oe6N~n$Yv?Q)g zC+CIr>VYv_ork%T9OolE)sdZahQ1_cd*0*!&-(nwNJG`9)Q!|fJphX9^TI^#o_ZzL zr_R4wpAS1(^QUR<4fKzCBoEi;gV(t}y^KJuBV_;d_~~ElpYJxd%>l{~9K`+n{F(~7WkU!d)Ilm9>G&;4d~-0qD(-$4J+ za}Loz_n|_^+LyE*9R5-EkG}u>!|U5KMjC28IQ!EL)JHwgjyve-aoj;wORP`jf3rSs zxAP1)xBIResgHWV8rSEoM6ORqBhdBpr)`exADTbyW77mHm=(#`t#(Aupk%^iQM}G8cK3M0m#mTBR0p&SHap$qJREz7+W9oUc)|qTi7w2DH z{<-ycY`ABf9C24hg?z8S-JG=IWBonw7T4)P4x{RH{rcN@x0m(zA3iUC{)neKZg;z! z8|d@on%hWe+gllx}|hbg{)-k~Sl=+9$Tqs^%< zWZc*GP=U#g7ID?+;f(5joPTz47P{vm{_*Ej{4?F0zjbq7?&kcXi*bq7{+af%yoVPZ5&0p#{%~K; z?iZ}=M1EF%8pB~S9K6@3w7ouk$;YTqFRt&=-M0F6v~(&D`E5`p$&RMJ@>BDhVj45s zJq2zzv70f`xLJ+1kk@Ng{kp?*=OC~B#p{Vt9-ZXeHQ@CTdC|cN6WeQfBH#T#a5aZ= zsebya-O#zci}T0!&I?_fSKTuZBa~wt@8rBjPv4Jp{-hrLtPXK%08F4An8y>^f1vWP z#@m&FTK~{+>`1bu=CRrd{?>Tx#N)BOIUXw^iw$Ir@z{ySV|(x85&7)iWy@!hl@FK4 z^=2MKpgI5lG@zsAS){gso=_5G{= z-)yfG_^^Y8ix!N0qI{$_h0`kt#@huyrkx4GVV=0801`*DNO{P(inS?d-3 zyg=LK4yRmG{Ud}tVo zP`hJQ)2XCX_4Z<=F6QJ={CQgT$L$E3#6i`1>{oxt_S&(H+pDvg8qPC5+6()~H05jU zSQROTdETHN9!0XH7CfU=&wgf($L=WqFsWY7Ywr4FMn4j?k<4Nuop~s~ioN{LxCGYS z7rtZr`8NBb^rDt;vSz;p_7eZUGHV-p7Q|RxKrzWLuHukc$f_6 zI*#t6`8*GZ^PYPP2e=6V{5>x^)r~_{{wHwX_VkUE&-YJy+Lpfd&I0P!zKHe)MROkR zVxu8pJasi{wb?IRJyT{`%@otYe2l#i1&sT4;w>qwRs-xk*(j2RPG-ukSiJ|M0OMTGun<;D5M}*Y(Wm zPg;*rzOhxbf&XImH})?-%Gc`S*=oC(TkY@PaHI64m>3`3^sQF*kTE`-=hg9j8C)BX zD=mLs+f%Jcp6kIeaJ$r-CyXES%^Z(y;JJl8y^cp(BR%u;7C3!?;`~@2-1|23{xE_( z?DNYuUyY;6r({gaPggQF=a+R*7{tP{Pq2@7s-}d_@uVJTjQxQ%05o2 zm;KSQzqW~U-QdICvp(XT5%*Sjy+>Z=8x^P*E@kEQJMT}^$;rw;w)p&qA#!IQ`B?oA z`#S#GSAzY87(d(R(AV5PJN>m^3j4+W+K+?%c<=V^-egASnE_;`#viw5M|#a_&nS|t z^O8Bg)%vfmm+F8~0cF-B4;pUzj#Au;Y0htTyKLu1ZjQ50aPyTozd65!WNYP@MJ{H3 z?#ZN4eb&&6D!zL(c)7vW`0R%Q=b^xo?gwyr&28l+=;g6q)uzYVb=5BCHrVE0N4CIx zH^8`+=R9KWH*`Odt`BIxX;1ePyCc+wUMiH@Z*JiJ zO%;3nCQ%H1eL25g@2_}PI~8+3iS{4lqwa66Cnsu;&SXuOD#*u={l{$2aqzFq{w1&9 zp8dK9%-zx6$Dg%d%KNdE5MUVxu&(!txvH|=kM*p7^v;Cp(5;zV>z62s-}e)7Jx2G( zjQfFaAVwHxqHe%=yFX@|&*piK&Od70K8#4`AJ^uy_wyXjhce`5&Cg8ow&v&YuXuhg zrx%U+Z`?26K?3#nJQBR@FPQ&iYQ;~`<72;@sA5?bec8fT-&DN@+Vzf7?_k#(NxiOJ zuPXJ@cKu3EZ9b^-kFK-jcg)gheKPKUE0bi$E|R>RA5q_F_IL}ec*g#3*OR3lZP!QX zI;Gp3WUDn}SvBS_;#aZzchvoP{ab6RZzHMiw(C`;zQV3w=^@&4nq5C8^^tacyVRrY z`bw!cv+Hwoo!X}=$yWO$v1+uB`@)wz-pA03Jl@rOQ}=7F>6$|p)YJXQ0{2U4x_Z6e zOLM?;yqyi-``Fjt`;V&6JOTP3z#rXJ;VJ;VPw(x#h5g6!uL1urZ^YlT|9Gws=vJJu z-fUaLO)-k1iSvWH6<6H(me*sWJ&oICNeJ=~r)0c6;I%zH`Kaq3YyWA3Fc+d!%lNa=YO$5%q@Q1#lWeJ}ta{F` zYQI+ZCn}@7DI|KkKY{X&uC$fcS1(WPmz(T*N2xEc>y0ekJ((n0AMT=;)cSz(M%wKw zTJ}c$?fUsHTK!c%&FuOCsaLV5!#R*#Ib%7Z@9uJ@JtK)c@2(yi;mHp+&s$4K*X9(7kIGs-uR%y@tIjEABx*u50J z?tMH^^X?&At2Q~2+I&TQR;XZ>#X7by)_;+~M`xCC&HDIjzXA45{k4A=_T_!s z8`oR?;Bfd+@8i1#nNj^Wk{Qp(`rtJlt`1)A;d0<59=@=Y{pWl5ICz$a_kpJxjQ-d} zFKYcUmPB(sR_oCMyFSR$-IEcok1gIvyM0H?-spe3-bm`r?0Qv8x8_qNWs~eEitsw0 zu>a!xtj-7f)7k3>_VVNWjq6`>vPNqv`I`GX_J5n6be%rPrpI5WceLp-c3ri9T{6)6 zr!`v`>yOe)+x2=*FT6~*B<{xD?aqncDqQ&$w!BxnytWA7j2Qg?)AJ_D21ctu;bUb~Nh` zeV|?6W9jbBB+-1|N-yzx$LC=_FRJ0%5J{{c7021@t`^1Tq1+cf<#eE#`_>$8D0ulucvw@KMr^_ec?sSRi@;*BTGXZwt_$LnRqbN42R z`a6Zhw1(%T@S0z4$#%P=O%GO6k3<8&6~vPa|HAelHxvjdj01|+{c%2dG7Yc zezFgI#9$sDo9Q*H_Sq!a*SCc>Jww;!{2oK5G>T@EjbGPq?#{?(gqe@(k7g>0l~G?V zk=x5%9ris9dv`f-q``VVY67_zb3PA{?BDgEdA+n0o<;4v_P1yKG~P~o6;8X!iHh^% z{Yc^83jQDX?{A)e7jZ?0uxH8VBlkYCQ{#{9_+wxLc4!{S!zp@%mtn$J&Tr)W++0M0=e3 z*jC>?{#tRzN+t}Q-NxkIz=0YT4(vK2j#)lT~7 zw-?y`w_E1q4p!q%l<(2c)y_s%%{TK_x+VRupi>D{h0-vPCFm=7%!WYvDE@q z$;oqmGsoXt1T1>QzxoY_`F@y}SU;5C!CwAnf4?b^G@;e-Ae?|WdRDM>*2U=?NrF=Wu^2uV=tPjtB zyZ>jpztT(F_364!^05!~_DH-w{w6Ze@*8CNTjPDMvPpLIAkE8ocaJ7BI$ty;Gd^Dq z1~)L6*JpJ()dS&bAe@i&xvny{+V5lwd;66k*-~>@wYA^TIX3@wy1#0_O?G{uu9Liw zWGlYw`uG#={-bn%p8s~euce#q(N>uxJ0eM<=JnAYRqXLDhK&jfZG^{FNep zbDMvv?qA&cWPRTE@+@wIQRG3@qtAnTeFxS!{~MowfonT*_152LziG z?fR7m?d{i#WXn5`RkQt+e>1!PcHv*u=AUuB|GAmA{N@P%JtSM@C+Yq)o;>&eR1Et5 z2dQ4xJG93{dwCs2d4p`_h3e(Ozk}Vss_?I8^Dk_!TGQ5ErS1O5*g`uW9(~`|9^0k9 z$*!-|b?T0VBwOv3dVTp5?f#R5{~()x{Pq4F?EbxUe>EQJ+V$3!j`fF^A9cIuQVMrk zT{7_R{tNDZk(X7!{AODFx)+m1``HnC5&Jo%Gu>vNt=pqNN2)Zeh%4Db>yK!=KF89n z@z+?{(0QCRuj7yMDPzkgR?ny8^@9Ai&)^~+BnRKC1wOA~%zx!*)$hs!+WhAEZ`Y4m zx^2BTKG4t!X=IU=&(FJ{{3`bN)2;aK3)8v3rqD}#{x}YvU@-Uh9(v8nKAyde`DC^K zQZl0U?@g+&_Mc>n7pli|4@UWS8RffsgKK!WGdR%0Ex_dsHutwW^g5+;u_>qH<9u*# znyr7flap1xYmDBIzaWzxv>I9C;s6IpJC2s#M z-~k51e}&z@tL1O3e|EjO)JNL&T9%Ibs2fz>l})mv9BE$e7hC;pU5}cdx2uQ{--r6Y zetV6#?j26)jT?xE_L!&~tr66f0+{O!?K6W&w$w0IJ?pKSf5!E;{dp^mkxXT>##g8P zd)`Wk@eaATa$D}d@p$t2ABdF1k$hdB=izfqZ*wdB(nz(!-|(LW|4;s|e;@e2i*iVhy9uR z{9KRTf&CUA_9c$T?(lz?{cq^|E5*;3Yj1IVJKtD5tpDU{&CdXeVBc>%fo~mTl?v?$z0#VBzW0RQJ>w) z)~fGH@-fF34X>3XTWTt+w(IR_cK=D1KgNT(Tn|N3FOY%1pQoboo7>6{yT1G?_VR04 z<)eP*-n7-PjILAsJtSN8%fDBf@9ldN>%lW#MOz9NXkZk_eemDjGe}wqykM@mLURDpRBX48; z>G`P}8VwNtBeL-Cdd6J8PQSr58_t=PxZYap%X-*%_SgO$*w^vbz8~x_+~a-y($7oA zesd2zv)I$eeq)UPNw)T#PM)6jHQQ&0vPpJ~_nr^pEwIPyWyOO&(XO|)boXGAX#HwR zFY)z8Z*T*H;orgTU)A#0$Adb*)linnj!X6Y9B)?t9-7FWTiDZ&@vs#3^Zd0R2m8@J z?2GB&PVkIiPaplO+JoM&v|X>4g@1rQ{%G&ruiM7Qfx5+vkEO~c*|CK*Z~HCfqhfl_ z=VRbCo4x!vZy5b=&u5U85A?cry{o0W%aKIms~x?>GB{c%eBQ?0f;6hn5_(b9hwbax>{E1m zIX^Cr=PX|3Ec|GH9#6$ye=bF&797d%^Eujcr1G_Dc;zm$y`V?i^!YMT(60BDdI!7S z(b8r6)limnULgy=&MQX!U$fQ!d~I2OyMDmZt?@Ef+0c4OnwRk+^Bn@O+3fW<`nv)A zpY_)t^*uM%R^LX&)n|vYNp@8CULV9;V2^h)ShU|nyS~TLd3_PjQ+)y@XOI=HpZ$DZ zg#CF@l@Mh#N3ot4rN0U*dVdsK2tcR-CF<{oIpDqV>8wy~O*^XmBYH z4+dYn({ug-pY?EOu-jmi*Nk4&%G*PtF<;%)VZYV1r|DaUUbC{xU~6MNr16VSsUCin zt2>`WZ=VNruO>UH&jcgBdog&7hi8IEcz7~+h=)gm2Y7fexQ~Z>gL`_oGdR-2Ex_#z z#{5(Fi))iWl^rAK%#*%p5dH&jHuJ2&dywumdkIX3lNF%=0 zUhCoC!n?m^{|@Xc`>+@1!#?o(^}s!o%vAf48TudG&S1`Wl&!o_y*%U_t;(|Ut;!ZwzRhj^ zg*CPMx~rqSv-BdDUk>c{@P!1fmA9QE!hZ|wHyZZT9{4=WGUbx&SWd6g zaPskf>qL9}NmhI_UVp?J;Uk{aAC2MA84e{qFAMvvc|5xGGG~1UJE`I2>-%C>dF$bN zyoT5LgZ7-JY_0xVM?RkUSj_d=bBLVEk^Q;8v!BO}=QGwul>QvWcs`@==kFW+KgyPG zJu6@L7LsT@*Pxfwc!K>3yL}nUp2zoelC9e3SJ%cT{72gT_ppT)KiaOZlX^3|zEJ8_ z?0T}LTjvey3);VqA=SYklSOo+@w0FfOl-_wvwx3zV%j zKF(J)#|N*6lSsDITvpBd5p+HuWYe?ky1M@EV2}Tq72jQ-BU==sx}*v>$n3f1~>Dq1UX^TwI#jU#dS=kb#!ZC@UX~hiP`buceo~ zKJ`;R)P7`pBhUAu@k-w}be`vL9I7u4R70E#w{gGocMY9~v~L^Qe@_$n9(~bPpUvcJ ztZ&da+4avXU9S(X|F-8}E4O6F8)WXZz7692`PZKD(F49cQH>JEhr2%6(fDslcIZFV zKUM7c))M*Jf1f1p1nJi7Ax5T z>zO!jwL})PISW6}TWSn@4onw^a05K+x4(7$56>p-S#p1y_V2*HoWJ({V1Kxh*Y>s6 z+s3e8?XUf{!Cdoq{k7i#`@#O&&xL(kANFE@R=*eZ96STq)7Sp2{Eh1$&-3-H=QZAe zNZSMa{{ES@ep#O%wBl`hp4)8F4aBqhAHF@v*USEE^=CiW*Z0@HG3<+O^)vppIIhb+ zf9-d`ewn}ab74Q(U;AOO@9)FjGyje6Pql>C1MKC;_ow)LQ-++Z)uphaw*FY{f9N@G zpW~$Z)n7|tzrkPoaj>81uYGse5BJx;Htak5YkztW*SC(p_UmDPp@N_7^A7BH`fJ}0 z_KW?sZw&kK-tFDx$c*-*0c2)BADvLce9rt`wz}f6P1@W0#Dvz zp0BL&*AJ2Rk>+LmAzm|kyw9w7Jl?C4Y?YS6YA56Q=H~iz`dP03c<<$1SATdt&R+i4 zUwK&>)zb4-=e2=$y^N*n<WDh${;EFd(HNN=F0b0FNS$+krGKK1T>s2q+w(QF z{$V!2q<;*{aYQH`b<$nqH73A)3`D%PmRBqPzA4~3@ z`@!b;>4(sRIdsY6$Fy$@`?fyp?c?oIELXpZ-}$Th%g+<7LXaGXY6O4IYxMr^q*Hg% zXOgHd;=ZSUVt3I$G4xw@w?*xzeZXHga+7hOatl-e0^`1?Z#`4T z-DUl#b>zEB1=j45-DO594ynJH-;~uFit?u0Yn(Sd|Hrz+W~|Rx-=meIHC~b_fW17v9yD&_g`kvS zdMRG-kLvrGyD!(g6+8Q}p1W6*1MR1QH^#eu|2az;Cp(@eBitYG z`aEfj2i-pj{*C{xe+2yhD*ZRhcff!Bjrg0NA5`~Gzj=xqAc+Fd`xD-ux9(XljpMo# zuF+h!IB$_W{=p{aX+VdTXvIhE{ue$}}we-aEe14-2A~m4by?uVe(?9s( zdH0FlT-VE`Zlt}m_WlI^n{LS8bABHEp?ahRI zJzvAzPY*rGO;MRWOCE2g{ZiN;FAAce=FJ}WyT`+PBg{*@pJ`nWbce%CKjYVd`3N8J z`8*WyC#`{}W4OMZ$-(&TP0txf?w_9hLVezT4ZLcSmw%tP7yUB^{=ZyPt>(vmW8|wA z?Qpm*C0CkjY9Ia6ld<*tx0-zb?BDcikNIGYpZ!m8t32gzequh&hI?Jp-JkVGn@>-{ z|Mx;q^Z4g)097oPWOJ~Id6@5i znB&p<{iPTL9>;-woj=gt{P{m_Qv~hwc#)t4kf)mCD!W`-MJMWLw)=?FM9G@2G1Hk z@!=(gnr4kyBjylSPpAWLB4dSe~jA@boj7c z!F%p6WBk605bZdG-~I6vysG$LA9H`H4cEhesiyG09-Z&1kH-x1u+}3rp44)(lWgd! zcRq=}_c!G*7Y?K0P}2N!k0vv^9_mA8p6elbf9VNC3MUhDLoVt0c09l8k%KkA0?5y* z505vTkJJI@;$vK`KMFht96!!Sd|t5jn+$~bAB8}A{_Z!b{4sET{f5f7f8LWmucv+= zwJ{>K1TES|uG8Dsef5{wAJCsebj(Do2L0@5s2~IAO4Idvpp)qYYlsO zZ4aYVTkrqCy|n4>^ZL}2ZxLM} z(sH)ztoQMu-9N~N$0G9ZOht1RTJzr%e;%wS_=sQ3c|Q)G-PzMTY*_CN(9MlEN~!6tC;!78xqbGZ@!me>_*w@0QaJ28%?(!Ke39cHUZ1d+KjYtA zf7`%ww2$&U{aG32Jz-w*dT7iqW4-#RJ-0$#r037|o!x&n{D03^jpEmO=gGG}JlC+N z*YyhHp$Y7#`nEUv>smXm+F&@8)L;7iheI23@C?;r=f4quF3hWYk1zIzp>X>B)D5>+ z6L_v+Pe0nLs4Z82s&9LvK0Dwr7!D=1m#EKdI6Zvh_301K@_y&n7!HR|dY^yh{JGYK z8(_7+_B&wzt`B<}|K|0JaR8hF&sg?U3wk%_Ij`3*gUG=;jfaw-xxe83r4A~hWl@za zupiK8Tj}|~cKyol)_Gp#XaByB@qWwcaBh!%WP1ajH+QclH@bdXLT-HhX14EK#GA?S zN2V6w`9I)Szdn&-n@SF)US(kM;GTl4htt9z4pBw8> zcR0+0Ly7B;XaA@J^D#c+Bj0lm+v?lZ$`|@>yWU*tE9`nLsZX=(Wu!jRuAe+E+B4d& z?~!^lyS`59RqXmgsh?|QtADc8ciZ(*QeR=$`$~P9UGFIMk#@b2rSo`Ex08A(lVnE? zlDyu3GRD90es)cG{r($|e}C@hvcL8I+5VPX>=$MLANPlh@vpqB`8k%njrj?EqFo;( z^?`Q1tJFK#_2yEqYu9U8I<+UwC)J?WT5!$Ek>=(70b~3tTdO_?^33{}^LZJt&=q&90yPRc}9IeH*51k{$a<^K!q|-I>g&{%gq0zTY;6|6(8h z<={WXo#)01*##y|?QPhFm$9Q+ICI`wVQj6y~UtItB(YFx29vPeaIeq`v`bgb% z`? z3)G%o>W^?;DV(46H}4NvpNNb=kV>4B@$st?>syS!1O7iA^{2fIfAjNS>iaq0H0MT1 z)dQ4tp2hWmwVqCa?@;#j<9ZkU6|KCi{%TI%#rIc3gulZK@2kJu7nv09^i^pV^8C9rNr@td{!tItACCiG26@Re`9@_g5ckg1rDS> z))%Ay?eV8;@jd6gCI~!%1AD#xHP+i}O}U!A;ZV|f(s*Mq>LT5ikGSgo4o>%x6WykY zxT@||U8K7Jf%G20RO~1A`}ecpa1%LD11TST#NE7eAnxDuel>`ktk%pvtXk8yUv*GX zEsK?Gf&D<7e^C4fWPp!r_?i!5eE!sg8)@JT`djmT76LRh1Ni7~bNu#)&NGJt^JIy&*}Rm*7qUThH@iLr${s$@%w(hpXXtICq#YLKZZWY@A(>! z`LU9Lh})4f#BD=0b?}8A`Y+`a7`vbEW4G_uzCXVM=Q$6ded-`Yc@E)qJ%Ih0`?)Gd z4*EIXHo$(3zxMCKeyVSKWBl}k!(cf09zTs?-`1x+>RZ%^>s!M|KD-|7AzN#;$v>d2 zM{0dk-=DbXUP?yl3lhe17_x)R_zecz_b-g~l$O$QWUo5)DwfZXMa9}%^P@Wwo=j$5 z_E+o|b(O7^abM1u$A^{gwfpS(wkfuJE8iVtujgB>M0>QyToM2D&n2}7*+-p)(@=7v zL&P?+<+h}MqR#63i;<6KKWYX01!T{;(LeV6$jZNx$p4jM^FjL^ZD?!1USw*!e%)l( zTU)x?KRox##OFVi4?RDUZ2#u(lX$-0ZGBJYVZ_}2lXjl={`;cVc)Her^O;G$UdEF( zUUrbZKE9tPM{nbMF4^njrA>+UdjBJ-JIL0*{)hd!{oeW?L#vX=|6B6$mj9vp_Wb7- zYj2+K=z>Xoo@EJnQ7^wr#{ZAKH-V3;Ivf8JAeyi^(SibHNd%QBRZytmg(xF4Fu{pZ z6-6zUnu1bmrJ5*8(a1x;S}!AHLrlJ~aMTQQqDDyk^U5Rq?kC+JCCq^1A)+H)wxCv*mUB*EDGVnr6$p z=qrOtOix$JwurtqUZl!@{9bePW$XV^EWvMAP&|oW{46>Dm4^8bCg=a!osawFX0j8l zm#f?)efY}c`u8R3TNjXpe_|X-w!cKXzhb@B$VQQVI)9?|KIN$2&#te>yI3kGAo^;e zKb`-4a(?SXzI(l>_y-L}Eafbb+hW*#~QfPSei}WvJ zbl#t`K-c$v+4_@p{fsYLKUddZv;GU<&kcY5g=+l2Y-xR~h6>QbBq}I+QuY@3z`j-d zPq%kF+3>$J`_DAJJSepi^wf*mN&bxlz5}}bjF!S{(~H|*mZqCnwN6mh6917KU$xm9 zU#fCT=+&{$p4JubRTWR8k30CZ9dKiGwLvZJuUY-$9Np5fwKD847$3PdD`|e-pbck! z;`^O{mojGBpH=&(-|uwRuYF*lNY^Y@HP2v=DSdnx6%y3qSJ3zze>VKGS5p4h8s)c6 z%J0-De@9Pu`zP1PXx;5sC*|*Il>djM{FUzfguH&7LT-8bcZ!`(AGv|@Zhh*>Cd(`Q z^h)Y~eAE4(>XF?4@Fv?!=nJbT@9w`xljT+af1qe$eoodk#9wJr{;o#(g-Q7<8|4p6 z%AeaPzgJTJEO)-<|B8JJyE@)o5$%sC((?0NjL~8Luj%?DsoygHl575{>Yo2|Xrt-* z*ZR>74a)Cc-CTLCAN8QTd%oT}L-_;UlFR?1+435mw(R8F*iVnt&8 z#r1{9bq9OMYmxuq2Fknn%{(eL%`a{KM|n5@d#cIuBCj+#AGkmb_yLM3a*l()Eh*lZ z@|v9A(&a}`UXgRteMb2J)stxB3IsYD?^g2K58F{-BoD z*YKT}3}5R6d^-Q*j!E!GYnz3?R!W*_Ybf!h z{IzE&-vGbXSJe2<{o?TbUDw=Nb0+%L^!S7>zCagmmLB!|+$4ov^hG6yzT)G(TsQd0 z8T)tkf6r4Rz3~j?8{nr_*UDD4T1>xjec8~}_bzqF=L_z~=Ii?Z{Ic~kbp6M^Z2e{D zDx_W4;`)02ekRot^Vg2*_WULI`}Zm1=I;mIK0SZGhVpLyyR^yj${za)MH9WhK*6|v zpz@Doy7NQs`~-ZfDCCCk`%U&I<+XhHE#=+t4R5l%OFoJ{HjzrOmkTNTrR=dBU4QSA zFG*h!kLv%QEv~QU_n%TNf#E4sch+Zv^;4lc_;$R5GsFYf>p!{u%Utaz*1vA~0@ZT! z{ILN%_2;MoN2(o!odKRE^1$AF%!>puFg^glqik=LUBh1cXX$FRJKkz}{J?43dr7zV>o3@zvmapZ=Y2=FGL}}Dz|)@>v#zEv_|K(q z!oP8$w2;6@FEX9=5~uf5XREP$R4>iq*QK9`KXRF_^wC0xot-qVaR7=3~SE@Vk zG~i$N>JFZXchE9)2TefBh(}*0X{q&fhkYi$2yh4$hgz z3;k;Q=6AZL^`>HP&Du9gpRoO5jp_3a-N;{Q1oXwvzY#Cr?D@C&{PxgwAJG6bXTQ7q zPmb65Fij2pT2;Tr{3N^#RX3cWyNB=lKb59-dqF5!p`b4W6~*k3Qgt` zG|EfVB~-zstg7fzPtJ@=Zaq1(s?_C$I(2z@o4U+Bq%I3nq$M-$neTOEoWpaLX!~FA-^Z%O2PvGM~D}|5e$U6-_G(3x?Yy#f< zTo)wfD2+_8xMz*O33~W^Y%`vVzWZ{z$`nWpewy67B2!^OE!1HO&8* z1??K|k@<1_>H2Gv^EWrl|7UW3b;JChCFlROVg7^3`OhZut=q^#zE_as$R{TrJDFc! zE^Y8VS_-=38(Mt6IS|UbV0Wh!>*4xOVzp@~Yy! z-lhJOl(!I0Db_DPS1lIx%r|NRMh&xV{ZuD;%AceF9#(523I2-lDKwIrU;05z8kGUk zW$~Ya=D^=g=$MjkUK0ony!D22fwj}u^lrWf7|&<@J(_ z>HPbfPQ_r%fu(73oG+D8cIK*f6+Aa3 zQlyxE-ZuqJ_}Nny-73TT>BSz|p-GB=7J51!FuPmhg_94a-QQ6Ou%F-p%$rUCE9s?6 z((fD_d7h`lU()< zcG`BG_CrY!j%cV^}(A4@z1Goi>v+0q+Nrc05~EolRP2(jJzy zT{`VW(y~Z6# zRz+HXw5gKzfKIC=Z4_x!B<)Vs+!B(;ko1To1ys`8B#k5KAxRpjYu1r=FKG(J*(z<= zq$8fk{T2Kxm_EVty|CQOTjl`#BR>YH-@Jd6dueE?`jha<^ARHjw#oh!93`%)3{9ZDulAJ z)cPm#UMTZMnuAdULTTkJ(*omjs$_E)^!Vx*^@}%{NfQ^P>$ke~QTn$#5?@aCcLnX`?W{zqds zLnxiT(xCinbR%m&*q};VqvkEi(zQOgKDn3IK(5p}zlmCsrEC4UVJ(IxwYC|_;7MPS zMXmlZh86n?oc`xk0kgx`zb!MA5g1%hSJW|jRewplFp*ZA&BVLDgi&3YN`cfwfugNe z#!*j_J{K?-Rj9uD1k5+4$L~twceCSnFUId?#_txy@2cW=B9me_OM7+kyAAQX+W4In zzdIDa+ZMk|0o}Tl^!QzUJhyW^Eh~N}B%*8di{ItO@A|~=0`a?1@w=h+ouf!bR+O|u zU?j;4wO+(OfW!DyuyFVFp*G(Mns3&W02QR>jomsaP`=qy_79$~AM~5uV`$S;_6MF2 zEnV^<8C6Iqup?GRYkt?a;or^aMh%r=NCQs<+@(5^IgBlg%u#Kz!c3><8*iJ%(n|leK_dbnh@ydAK+z&mfLMp=E01H4=0$Teb&~#? z1{nw6IUZAmNC}vuUnFUZD=BE~C1p7&)23FI(3a;%Vq>EiS><#d`3eu#GatLv2dzKi zAHZJ;S_8(^Z6NiM>%_OMzxH6Gb|IRD6@O4lo9cuyq?t!=v(|1h{h8E zlSwOITU0>fD=rd1I{fg_jwxt(vs436>wADZ=1!r3+<i(X|!r*7_S((YizZr=TL=@0Iy;)(^@&L4on~1N!0Be%Bu6cfzq1H z{zu0~etN`{(7zRRj5_5r zWhiqVFL-tr-x5T>JL$`=j7 zzA-PVAj2D5FT@v>UVz*j*m|ICyDugyXy)A~wT-Rb*!w{Aq;3PHW8f6puq*#PUiq8> zQn|QJ8UNCNt_iSNh{C5n12Py#)`c>bf|;+$nh2Pk>aUXL(X&yP{QY+d+lYuLQua^2 zIkrzQ^+eDtuA~36=pV9$PzRpKmD{u>cXUjNLHjjUAE1C$NY`dD3h-ib{}j({t8$l$ zRcC(fIg-7xcg@x>wnCLS{HDxyhrO?H@%Yxfhz_5&P|`epH4w9ScC6DksY27#%8xAx zn)kn$U+B*=3*Lz>%ZIx22Q8VJ>i@q*g7>`!d(Ih_U(EfZ@|1UOVOtJNWXyjjdWRPKs`2c#mQJqh0i7PBi1|RAI^GR z7R%U3&;5${%XrZ7^#SvVEVYovMl#4t`V;#M{O|uWECdFl`AaD6TELG#vJn+{)XSUo*G= z=Ke>m@lm1uw7ba_Zv8ceM(RDJ!Z?GZTF+R*20B!!O6MwUEwzSHAlg+7lq=DhLj#A7 zRv12khVzCHwt*~!Nj8C>{#E5MM5vK=f)hKsM3TM&p}$K`pgdO814v%mE4}9}CdvAA z5BD``|Kwi&tPWoV4OO(^jxS8I59FlQ=M#L!`1KQvvF}-L;=^SrR&3XJ*ng{thkl9q zV{qUvEsq!-y8a{Gm2Nv(TAy0H+h=T>kg>s2Hb>VqRZWCQr`NaxJFiOuiu+NkBeh^r zg3JLE{1`}=qXw*3Gfn}kr^?3eANU+gPGNJgRlgf_8+%k;5tHAXfU0pD_1=ru+d~n> zT?amqs8^*Dw_01|YUa&SXL^oWe<27X+81sT5#^GMGBN<|8AE zesX*%uAG8FCyRz$Zw@&i6MWG6iL?)@(1XILp+y~##JNFZyOtMr>KrtHJJJCgo zLmsnQ3DKHUYpor-q{p4bmwD#<*TcrHxKUgo1A|;9wDZ3QM>`CSuD&8OMc}Ej?mRyg zL~mqardSJ^KUlSQp-Keus}v4utf7FCZ!EEVTy-vdvA7eH zSf}hFLGk6}`ON$45^Y{dn_$nHK(m5}ui34Ayi>P!RIZKM*-fg?oC@d1zP`Uoy*6R$ z5+8==rI*Nj`B7^JJ_4Oc)9rNAp0XPt24sZH-LtCsrBf}mmk4~P!^wwGXRC6`fA-N8!@sv+dl4NS7wbssg z&&m0=&e6E0g9TQYEHU9l9?@E*ngw#+wEk@8e2pBlc!4?k&B4W0#TkP~FY%Oh(WPIs zwsGuJDDpf(M_DULhBPCe!$JhXkt1@0b_6ZuCIpA#cuD+B{PB?bU`S~?ez~CeP_A{I zVyROytwH)G%j&0Z`dF994YSshYtT5t>MUNCq;JOg+bB-4+h+#boB$R9QyC)6kny&x ziZ0O+$?LDcygygmHQ$)vA2c<+_z;)kw#AWrvp7@O&lM~ymfA*{>=L1Gr+jw9@>4-g ztf;Lug+fql^kP=o#J)-rw8J+6(XiMK;51L}UyXkX;}?=d-L?kl8^*717{A=e__+p+ z6R?xwWzp6&7*wjJ>-ApM6O?`(#|KtPA8qEnJxX{o&G_rAW%Zin?}DDSx3iWz>nve* zthWi!vza!D(=k{8HN)DI2YF5z1GoIM%tYvonWXUa4VjP7E8+)WC6iD=0ygnjiioLC z%H=v`m{QzRL=g=brDDoQb3xC@%M^Ng;Z8yDR#|oDiZYVc#fFs)IZxTG0$O*NgfNS2 z)#D$;#%FS9|9stkFM1Rkij+4&5-@m^daNW5w0X+rs6GwUKIQPL*)Jl0hk+vdieh4+V^71W(*3 z*v`e#XZ`9UnY`AD6n{hSCW;%Z;P)g8b^etkud#%bMU0U-^%=WSRY68;uq94wy1yve z2W)k_RAK9!kwQ!{O8g#C=ADOUND39DS&^-@Pll>o;uGq8FKI)xaKsziPXtn&CE& z3jzdd%^D@wL2nm}sMmZ(5IU69K;hKNXcs}kOkfm`=u(BHNI5{s89~I0Ro2(p32~8PA<4=;rCaA}!L zV`O3?P*u<@94d}_{{mzf82l)q?*@!D0rRHJSQUPg;*W#IqnV}kJs-@5aw^i}+x#|4mTFGyAz)_)$vEs_Oiv75N;orcl z9vUgL%3>Hj9S*sBvryr%KGq7kp;;CSZiX6bF3;9Hotu?l?AClR*yK{^AJmKuvb&}S@<0M3TB(I0>l4i>at6oqVdSd~IVWu+U`lq+_+LYp}yrtKq6n`yXPU$Sh z$cAT?F>(Q*h61tD2|rj=Wzh?k^L0t@gx&<|EK0KEVV&+3qMXAJ4Qdgtm0)186uModpCHfsV~Zy}YH5XQmVt z;AT}NHc|q9wCX}7=zcT&+>~gaMY6way{3Sxb_!NXK^j1v$(t>u75D0!k(v^{k$v|I zn9B0CZ0F>s)*xTJdYch1N=8EKug#T%)&mOP>Hy-STZzR!U|l?}coIsC%vhQN6vT zi)4kS6#1P}KhdS0NR(n|XG00zw-j&1v=htd38qq(G=%Krmrti?qdF>9jtIdvJ7s#`pndPERfV|1N!<8{u~bv8O^DipRF${UlVka@RP zxrVmEs5F`)8<6*<^+Sr&(YhivJUA6E)fIc{inmcQ@@ujcn}yaswk`vDLfaz0NJQR53Uj(Ub5Sw!dP+a`MgL>48CY0nc?C0&t3R^Ubr^|3TD8Lnyv!d}U){igoQ2H)7e%d)YNYn%25;_o`j!ZAj)SFWl?@QDm&{iBoNEo_Ht zvjP0c`IKsqAGd$72ifcr7J(#X^6T*1U+J)lI=H0u!P&wpjuu^BItAKi>Aazs#H+$V z*$MBVrt1-CAFA%3mYSjzhUlHLXCGUMXSz=671y$uf+2sMTK*^v$E`WfHT_W3snpWC2Ej7b34SO$COueFg094T!tp(2?}7t|Q7A!D zn)g>u52O^IrNFzO%dKpd5Z8Bv`S?Os**){0drCoFv-OI z5p;NKe82sinSel}Y$a+b_^HfjC~xmqRV&}ntvpC8irNy=*Y+1cGIr}{tGux|H`zP9 z)`~^N03comn0GmAW2SCAq#Hk5H{OZHkt_kbeu6$*j*p+wStER0raQ~ho&9Qv!pDoL z$@u7Frc*t_};3 zxvueV5h}twzUg_)`p6oZLWQ|nM-f`ZtC0e@avzl|&ext86I*O2F7bqhOp)n*Su z*Q(L_x(qcC`f-)0M&+2{9X9{{JlTmv7E}y$*tEjzxMThK<4?w@`om~_cmNw_LP;A=kv@zieu$fhC&!uojMZ$ zZ}l06k)-p#lO_e&81M9Z3aI_@OsS-De@QMoGM}j+_fuBaTX}>5v8SK6n>4&|RaTl# zEb6WzqxKAzAxh-Qw&L!f7#&j?SSqe+c_OoDhqbn@vAtoY{epJOs~&HU{g?I=?jhlC zFpcLa;0BHXwEk|%IaD6f}JEYykZbz&b9wb$y6qSTa%w0x5-qj5Xf^$RQN1oN%N zR@bC;qH*~%(|U0ieOkvu7^`*NYgOIjM5oJSmPkRFe-Y^`7`;V?w(ySL*^ax-MV^wu zDMcz|aKKGzDbZF8*hmXYF%|1-^LI0C9!cVEl$dHvW~0LkB(RI;d3rV}HEBQNQT|Hu zp5-pJ7@t7iOWf(+e!&V@n)axaA$_EsE?be8lS9(gBw62G!F^5IB~pw(>qk&M=vsBP z+JEYZ<^m3w@R`Mh}AAQC5SDGh}lpMyB&rGZ3sisYD>59W98xG>V zLYy(>udyESgD$f!hibrI`FT=3G)s!u^TU4UG^&f=@`k5gxg@W(UeJkQ5;dvZLPAB_M-?Fc_%`Lw zFMo>mYSLaIR$cyLX<_b4@)papr@S6RU}@T19#VA~3Nxv%N-n7Whg|ssr8j|6GuQex zV}Y3dNCvCVQ?@~Jjp~|m8N4bQ%G=B|T6?8nXy6-aN;|y68#02SkQ5S4$yn@Xz0aix zL%x(rzJ>NIzf`G7^Vyw7vl99O+VUWBO*IWxrm9%H*VU`p{agVFkD_#bzqAw@DEIJ2 z-0qD#&sA-B%6_Sam$z;n04&k8TFt%u)ue^(yZ%)bX}{+lS}9)->aD+hbR5TMhZ&^7 zZZ$*1np}WeA~2}dQ~EU3&F&M(F5g`2sYx5douF3S&VtS0)tW$Yb9&0lNW*5DwnV5G zXD9Itj5i-(?D1xC3#;1;qAsJMnzS7L%O4BTQ}!*Ei{+t+k=98%tRiTjBJJb38r+Kj zHxi_X+5LTzV%0|X)m)jw4O|G)E5D!2$nDa|J2aAzF9~_6UgPRG5=-+Qr(#Ocqwx7t zp7}?t%B?b~)g^h~eUfxfS+xR;KuOs~WrG{{d>xU_(atXWq`-Wb{WYSH_fdG!DE?W$ zyj7T2Rnbm#3#ADywI<+F&JX!cr14inRctrOQ z&UN^W4S!KT4f_Y9HSAUb_Ln#s*%Jv2IE*unbz(4Cd(S7Z~9mx9^-UjZncUERn5)x%qy1Cm572w3 zrFl=jBJ=)T<~_zw8HqptNDu`d_%(=v2o{awYOT7Z9l8^K0v!XPBF?P*TRV{01J&eP z-;mg};pup*y`FQ2XUe}U`PWbW4V8bR*u;zmndm?DR};OjUQOuS`_(MZ*NMk;;%uGx zCW(5MZzQ22?SoQg`IF5u%S9cOgVk|K)TF&2Z&Bhemi7vFkxQBGWcyj!ClW7tqBQSm zDO@yOa5dK%?jkD3hr9LWCWd>*XlJ;S*tl%La24(u@vHsRh(9}~MqK?pHR88*VwxWD z-*w`067`73l2DNr{ShN>rAAzwU6WSz4`-08xD)V?Zr8I_?q$IJt5lE4>s`&ajW_(K3(Va^y^r47b&`n zp0bA`8!B`%lsFqX4dFgZOfR2ap?X<##O}q}OsS6VZ#RPf54R}zyT{=lika2K0Dh&L z{*KdhVtfgIynWtSLp@SA{1u#E%28$x?d+WN1JdhtbDf;#G^!Kw%)v(^c#quN5MIps zCg9zBxkAOOA2)^Yp-FBZ{CP*QS~b|uHfkR;xrz3FqT9dai?)ANqxSnX+5V-v{Z9^` z27a~vG}v2iQfL{eoKeHlW218Mh(gjT7f!$L8yz&CJ2FZ!yew<4zUgOe*EhM=2DxDs z)Nze=WRm{$HHE`Tz@YuDxT5t$HBV1BYd~D|G_=X_jnr*-Jl*(`&tvL=9$_G?H&^?C zCfncJSI_^U)8MbE_MdIkKCHH>`Pc2=a)$QBU!YzHpx>vU$8d%2Bg?&@$29S71*V{v z?q>hNhAUdJ^SuN~(bKUDs2HOb-2K$L`$81#WD zWS^hn$X}!V6rr~xoc$250RDutt)o82dTQ;(8BXAf?2YNXI|e&>!w_Kehj*Spi~-qM zlHJ7`Og26;aPYX=emmdFkqYOEDHcyH=3oJjeQ3NN5e-}h7{dk}@p>K@K6HX-Qq`a% zo+mgyS2HXi!b*{*%l^~;sJJgfW9F3`8`96cP0sI2mn!-xI?z1*fS|a4#o<@_yvVeD zxw4IKrj_?~?5sM@>%YhbzW}PV(o$}`;$;66jOv|vrRL2Gqt-B46A+(1Lq!pCALz#R~$B z#9(m@ZeZ$kJ&?I?seyRP{w}C7$|bZyMl*;ye&b-i@d4VG-`Fi3%+VeA4T3m73>s0t zaZ)sml;X!}uuh;e7fO9xCNRC*C@rY`CYeVR=rQXd($vXYPNL?MexhNe3w0$=+23Re zLjyn46=^P=91Pa-s-d2r*M#@9ie~hWMbp&OdFIa*bVBFr`K|PsYTo>w`8C$_`&D>} zM>y-xt7u_!q>z>gCBCm8|E64tE^jSl#>%UF#tU!Kicv0MB}HA>1PO%Z3ekX#Szt-@ z$N}uz!53mUysbgij86`-4lGtc9r$|Q=a4y;$dk5Y1&#YM8O7?SG)4RYL?@5p zAzj|ONR6V#`mJOQdo$*k7ozAG2N-mf~RlZxE8E35nbLDOo|I zu#c(MKP)=kEEgK&u5HrNzv`!YZq62xfvyJHboJ~4J*4O4%82qDPQ%?poN50QZe)6UdY>9P~T#+CBb%ZsJ zu+Zpttm{Z6*i#s29=Gy>htARBWP4OHv&hsvE$JmOBYUm8>Bp!poyvjobI7sI=b0^I z!@nM{)4ATzh*WQBtQCCL^P}qlQw@%CC@5*xUIcF(+ zbL03#Uz)aW8~DyQK9=nwV}=e54E14>2te$oE-D<+4nQ1A3IT|t)Mdsvb(u9uU0x_r zmzSrj%iP)OqJ$mu+`YG>XIL=rO!5$pGweCWUI9pNMWUfMa@17DyA;H++-la(ErCttcS;g(~&B-{G24?*U%!xk4`%I4@ z+e)ES$oHZod@<<;>9MrJ=LwkJYTcy@68J9I*jNvh|^?@&ix9l~#=XHM8Raoe;K zQo{Q#@XYhCS1GkRB_b(xq)e=rgz&)&uz_!Z^NS>XJ+{2`v!0$G zKbt1|Z}UcHdZ&G?)S*z?N)J61cAOqaT^#$!XWrW04|SFOS*709Mq(h$+j6OMN7^sF z$4&$bH{^TfY!0Mu4z&JO=Ro0Efl!-a=3VLDoXw$!T8C~v3x{t0d*RPomF^IwZNU%l zI++jm@yuHW`1LZ)1%)fT#%5mS!Xf6A8w$JqIzM&u8v;x8tI6<>47CX;SiVX@Z)~}G z<>dR`*bcPpEI;SY!w1`XOZW5~?wL2_8q|1icz>F=beBB$z1&;6Q*L@+>`h(mou+IO zpJ&(!Z|X_!w3E^sPf>sB67RIn?WY~y@Sd~1)Ak5`dZ+DTo>NAIhRlKVTl+KQSX>rI z&s+U(?c2}7RA}Gr4IcpQy9K)gzJ40CukubiWux}U>CwI$wC_$r`+&b|w148D-5+`+ zh8#=vJhfZ)GCt#<&%6s##XtW!?_doUKJ1XHqSRw2I8qz*%sEn!dNkPj5h2w4P@CaC zUM=FwIpPgH+}azuHBPGxM~JoE1C59^ShykxSN0o+dEHVWud%(pu-j9?)Fa-vrj?YG zM7u+=ar;=_5vXYvpzZ-EZwyMu`dzO`Hr)?f5AOqaHf8#al?_OCyCAjwIeyQaj|x0< zcISupUE)oJH_qA1uK`_7iOcSBmN5hFY**c5rT=!6T zcUs0OFUdSC%Q&20c!c22P}(2qE5C5af?#S*G?V=!IQb;SZ~w~cT@}Br^BQYndnRZC zO1}7wu$|x!c^S^})W;V^-;Ilpd*uzWEgna+;^Wc#;wzF>2>7*x=_U!0-_emRM4FW! zn-TSl$1{H{QJ(XQX<&Z6`l$B12oulzT(7|#?Pp=yvcotYj--`t?|-!H8O-NuFx%r)H6E%u$s!p@ctYe>{>2%7JGNE-HHL4D zuCsam1ry^G<|rtE!gai2q86Tyl5z!ojV$bF22wYXSf%;CcahRpdM4{D0dq7biQ9}) zLg}8f6#qBrNDiL98yjCGtjA}p2uItN?&yg^)whRwO5@23(tO5V&zvylmocH5pA;(QMM9`j0ns%Pgb{j3Z->TaM6VcyHU%kJKp6S5Ij?=}|;I zb2d)gtVR)SFp3Y7M{)lDxlwrLcQ!V;#vl(e1g53^`7%9UWHLa2dp4R!u(2s=CYqZz z*F1QqZI_7{7P=*r5{|acSU17wEDS|0!%WySvjgK&ibL;n^fOCwd(Z2jl5?B^`HYVm zkd{loSZ}MqP{5v+O~@CaD6O2hD5~Rc8W5B}BC)y}&S&ogvljkqFS$m#x@#>pH>qxz8_s8=)zZyg zE%E70td{#lc`WB&Wop77B5`ATK90qP9E!zW`7{=ra#UaCUVa-09&zrQx-Mq*HI?4d zH0ihV@mTC0ylsCZ0P92Ue+vwCM6%q=uQfj}WfmNc#Rl&IRp8AjIrFsZ$0pj z{RCK##A3JdD*^7A{GQ_XV}4HjRa5?rhteAPH}LZ{;oo>prM6VjZcahX+b~Y}$|HU7 zi}pjgMm4SCx2&LWbI=%z=--UlxP`7T8-J_JMx{8Mui{~X=2)>8$0(iqYzirzJ8m!b zK~4Q2KOAkxQs~{oZ$!P}C`)6f$s9uoTn9 zQbeG5r|m$I#J|yP3yLUa;s>ycKDL?ozpP_z6uJjJ>^^%1ih##1mr_R3RsfjjX=E&>gE!Jd4pzj(m&DhN$*mFyqDIz?dq^=J+a%O1v}T z3{OW=g!99eNQyRR`HW@CeZj(O?{VuXOZ^k8l1*^d+dF>Sj}f*!obXAhPsM}LQF$^3Ib8-jJIv?jEt-A72eWqJr!md&MJF2+#a;uGu$q5FdL45#O;Da zT3~3q7#gk~tE)f50*&nG;D`-PpJ-m>KZQ*%04z zIbXZ64{0~{;b2!$@m|Ck%p1iyVBc>uT5znbpweD zG}HIKsdW_M(>Wa<>Uf?SICm^j`V3ev@qT+s?YFHw%Qu=>t0*mO0P>@k-Rpp zPR8QWhD$nWHfoz)z}M*o>|Vdkv!VY%;3z&PYp@xZ)PhT5dTtCQ(`w7Hqu0`vtR>$2 z8(&L@+-s>B4PEb+!*KT{_gxjAndJF&wta;~f1yjqs}c@U~XL)+5*nM}4@9UGNQF0yg}iDX0%VPyVU= zP{-+B6bP8AY#*Yae#-B7un=8gLon3+L0T^;Y+qWCy3wn{HM*(okHr4>$WX^0DPP8O zoPflafnn|Eom;W(W>?QV`Fs)fNv3DsW*0-)oO;M1qiS#JsRS!H65f#+-j?pmIFzwL z$>%oza~dH|+W}_B8AkMZ!ZowQ8PPUpME=kOwzy6q5EhFj_?}x6yrq#Hm81!VceK*s zH*QtX9~!Rbaw%NPu1&k-3-5s2#CD zV2z$k%a>7a&*uN=<_LCaFy6z$~u7t3Zm`!i`d*&TxmRHK&c$nU|r)M1YWrUrr{#|t8Z1u&N(Be|2S2!_l)b4pL&N;k}+|A92Oa^jXFxBNKbAjS0^}`JeY$crSNrX>Gl3gbi2SY{S;} zo=qdtTGT_cs(s{GzqvJ^v01=d1$b;=HU!TOQ2@NHE{iH02QT8mR#o6_%vhr* z*cZA}>!`mIGJVC(lES#wUDND@Sv3?c$d;T9NETls$)cw?oXm^}KMr+2s+xB3B4~6d zesvc=8b%TJ+iZc7%ssaI3|QQpTJ2v5M`YLeBNpop$LXbG{2n|@o3=(c9=$KZv)Evh;jV_eJIM?HAep{0~?*Bn)2Y&qj7nk19a9g4eMemcB z?A^pQZsk3J4fWr&f_AE=T`TA-@_qr=`jK}=H@kk^>m?Br>#Ucg6{7VudxbQV^V(MU z0!!lmb)3wa{*9>rW-zvtT%F&A*gMXBQ`hg%Zd2(k zO_P4VP9J@+mwtqOwS{{>FkFd^C3fAj{NAR_bJ$Kd@@va)IDP(uapdw_#Qj9zza1Ow zY<>&4_W}Ry{6_H`$V2X&o)5@qu)d89#o_SliaDKvN zh95~ycqca}BC#>hqZc8$VqQ@gccf=j`!bHOy=HX9S=Hu0)28mfg}^omCkjCV)D!mb z?PgtDwI`a#fwE5Y@K3~t?+-n0bMhylw8*dc=QD>BZ_cs1pJ3hw3nw^sHqpdxU1(c= zcqfMTJz{7lbfNn+2^@d~e(nvQwAEd)vV{a<$}p=HU8uun^7^2{Hq-Q5Z0qbm^Ntdq ztNn4ypq3wOnWP;umb!US9)F+{KvMvkL= z6>rVGgvc4~bra{1xXr`cI%m|1O5@EC&$%yShfNh-#s7+)S;bi$`ojM0oLsdwsa-Lf z;vjfaKPNLDsOU@G9Ny8Hro-DZGd76D5;oc@()&+zf^))b&=2Oq83*GE2j?VoSTWp@HR8VFEM%SbV1*%y1N=4y3YYV;<|+xz?lhe)0)_2= zqF?O2KzXrvhYMqivWGDgep$f&Wt$4V{Zy-9TBB^p)jsw}IjZ9|R&&sj4NNoB!H=;D zq#V+y&|7@VacZqlEb_39yJRnM6-=AY`+4S^bfWdei2Rt6M*;+{q@L2}o+v5UUhbnG zS7g5!r^{IvE9Cr6Qq1BiJul(ync>~(8SiDR@;P|^zXn3ai}(?D#Bx0tUVEK{Qn$kI zP5mU{9^I{Q|LGZV?^ETD#LFdP^Kc>pl;|NWa-_-{U&eM{#xjSKeQqNY7>_pq6}ID= zeOiutIK8RI>_dcTO{e}FK*d3-K|P)THE~YpN;KWbX#T}@kh9nnXj%tR>+7S05+Y8+ zGM{+^9{=Uu&<{BG_9(gt4u2R0b@&#Y1$hM zj?rV(iMON`BMWOSlJdPkcrR+prfHukSBz)a`{9o|v-zad+I1*(g!Ve_xBmxIOYlU1 znS1(J)ZzlQr_ZI)xnfUc58&TAeJo$pa;9%beEJfhXHUqI_!a+>EZXUJVk6$le%lM! zgZE+o$<_IlU{^Z#Oe?wroAN?5+HYfuRgL_7Z-pxF1cKTd-+Q za{UXxE%YfLZD_-95~CRe{NKZlZNu+(+!q1A!LNkhWBlCqV3Iw{J8kaeJbq@7!`cI7 z74RN`pfUPIG^y*-O6%Kr%7&mN$%~uIe~b(_qqv2qrNCbbStPH>lneK=@e zx=r|t5$eo6j9>%5<4TH$GD$Iz&>c3b?roE&Tt0uT&R6-2S(CZv1yKPm^5XDvsX}kV zeCAyF{5D{EjT3(3eO2C57Ap|Lc$Lpkxv>|dDXgX!J@ZC&rk~5y$Af2#BQ5vkIfjWO0-$SWA};~{d7iGGDfM4ZfktzD73&pkBU$(Ddy0Q zd@kB7@54Qi$w(s)zz-Yjk7`H)oqguGbf0;z>Xwg1cVS@#y7O;TSD!gF6Q!quhoL=m ztISRjU(^no18VtNG6z#ohIzR~NCx4}VW`EGe&c{>@F_Wmje-U0&X=>sD3~2E=E^_< zX8S`_n8a;Rk6@(PrcQ#uoG~xv3)g(I)mIUcp+Yfhd==#~Fm4Z-AsH4Y7IBaGje4J{ zW-`(Nhe?y;QM<~BOxT%5;B~|A%~``6Ju20w zjpHL&Ym8ptHJ01MI_)5q%Cxj_5TDA5FPC9?<_|Xg>y5?PpLyn$3p$K&VBKCh)Wphb ze=c?}uj$J^<(a4Gn$M}M6UDl3KVSCyo_TX+)={q4@qN;)SKu$6gzK_*ZQ(wDOxBzV_F7>yD3uG=oTGMkCq1>SZ0Imxze z7r~OiM}d$`u3dmQ+1cK8QRA?8-40&mG2NfB!k-Z(sOqb{>JJ-XG|OfFS9!+=3cWvj zt0~>&uRF+Rj7yMW{_GEoHTmoI`?J>>hx6A(gJ>utI8gCl{2Ritje;rya=LZ#$8}K# zu*cVWp&npNI4LPHU+Y-`HDqc( zGoYvpXoo*zhZ@a6!T%m#yQ$!RE5jKq$T!tOf;TW8hSdw1qlUG^o`fjusl=bXTSj&O zNNd6MkS@H7O2#30@9*n1zCuR1&mKqbY`^<`9kJKc1Q_op4P>LAcZa)Q-LYK_;-E~% z9yJ*nb_Mu80eq)FrBfC8J!0AxnP0s^iOfHbND`U0L+5c)d1FdwRBL>6`E?>ac@;_krCJ0g5jY8n zxu8jjDRgg3%z~M)U(UPFW*LUH#8j(OB<3>JyCX5PsH7LCrjY1GHa}BL9C=v^IrO6t zyXC4Jp9LDOT*yAY7fE{T1!=;~|N6rJ3`Ii1#^KrsNTD4q5y$8|5tXveg;R?7;!zk5 z0td!fP$5FBqFk1`SuW#>oZziKuJ>g)@=#ibwRZQ+n=G<$XjlG?;(bMFQ!W!J(jLKA zFdZ=JZ!iZSvosjUto87FfdqaJtE_b-qtJcMDxsop@5iEPkggVU=<0FzMLw< zU+Jq*f(1l>Y$~1uEl2)_*<U4IA|zN8`K1tP_)8++ zZce{Y@Ol-z1Db;unY&TX5GqWwFgwD`2KX?-?8`!X4l_R;VLBbq<*Ux4U-X;TrF*mM zVf8Yf25)FuXZg*M?Y-H@L9m)vKKYTqF5>O=7^;?Sdf%TqWApRg+seW~vt zU+bweZN8=#gJRobXD1loR&VOtE}=!Okj#Z6XXIICK@pNKXO-7DY`jOJq8BB_eL0Jn zG0*_J7l8vqMCIbZ1@Z}2$1KBZb{L~8g>~+i2SnNlf4e(6BC!hi0H8U3x|UmQd=47! zNJk8a#71aE8C>5Ue)Ep@k~X?lNd)2d-TYud&~Xs%R3Ru}xc4*MleU05=xd!c(j*=q zL&^y}u*Y3V>=6m3`MLt{Qw`_|8$!OR+BA@S+iW@@e6M@TX(1ITulaXFnGB-oFCiM4 zmv8zII6kwNCM?0|4s-N+g*}+ebfJ^Ze)BP~x`#a!r5=bRy4K(8ZiUr-z}ov_C2Kg+ zSD-}jY^3ERs3Ac<8~t%F5YqH`LkR?m9kHX-0WFM_lAtBfR)4$4AOvVeglC(C__-NF z5gv!A8P6g)6hX#YQWl!A4*M*1-5TC|)WA9m zh6Xfkopok(O4dl^7;c+G+DPC5m8+zIjdt60(v>4|(y6LW2pVdoMlaL+QrTw(p#i*S zN!fmQT~#SiDZJ2AcGpl5J9uDKwqu};hRu$I&8Ge2A`v?wVSK{(%?GiQ?m+Dx+0EgA zBau1EN(q`BYsu*DsP-d~K8k|}%{H~Bu#D>vK3TM6Uf0pKS*}++Gyc9NNB;QCG3n;0 z_9*7IB+?cc;s}Fm6b9L7EQ~SQ9wQ(=ZD(&025k^a{z`|bE111GZ~*^I#ZNFy6lc>9 z$C+KsF_EC6gLN zPAx-lM3n%XbI4d~KhF}VbC5_C(r*uHWBAr;8S0q__zP|D->(R1@S!9dd~LEuN|m)$ zf@B7V3HYb?`o9GJo=7t1eGnj!;p>4JN=kAxY5^;`lJjJj`?3#+@Q|tXi4AtZE8n=< z>dWQ@E;9sAN}Mq#?fbJMF&lNC(t(FbcI?=Y#pqYtpk7R zcG6Dp7?T)WOqNL$^~_UhgQmKT20G-r2)$!=A>3p(m2g8nf+aZ?i)`d38C*C?n@ESexOP97%gXiE^c2tHP z6^SF38Qp1nrIMz*h;;ZbU$6UNvmz6>Gh}&BBRy_(y3z-Nk2e^hSum5{={hk4Z^l+J zALQ7UfE;fCSdo?@nzw66|MM`;RoYD)*KzFAlY)uES`=aTjlb=<*j2=&ueGK+ z&z$2V*%96~h}aTvi?@BVeOjBD5DR#X7>tV7K~iWy=ncvY6Cyb*2BgSb2`&)==^_N; z4Heji*D?$*Q?DG8m4g`<-Fr#~gmp!@RvCsH%+IrHq|qevR7enfG0S4CY5WU-MIF{lr<& zkKdDzV)k`Zu?OXh4f>BrQr^|4T;sOTM3M;mSH!8Dt`Zeg-kBu6_7v*yLavKKm8KQF zSUj*UeMS`){mWFYPl0#e*Kzi*Fw`?Hnir%mu1e5weYuZ38{_f+`eDN_iwudqkjX!- z9Vu__k*~VE0d3Z3bxE9|7~sO+xJ4~fnjmT$M(3pNnqQzbhoA~gt@JLm-Q|<% zj8B0(su}({b?eW;4px9`FL^;#&`<(&q&Z|m+%m>XAcJ9I)}rDF+}s{>90sfXhUGIA z<|6Wbau#2is5bx+-+A~)SAj|SlPhI7;t*#z%AFkOLTAf>mKVga-=M}t%0^Qh;`S~binyBb z)Rw}locNP*;tx5l;dK<^85-ktHf-ACo&@efQS<#dY{EAQ?kpSSIPV4H%6adAD=)mB zFde|Lxly;O*v8=qFnY%|d}_q_(3gG6Yb-{aQo>hMFXMe*HchB$R6VIEF^l zm~+tiXFKxIpYaY=Wx$&5ygADP=F|!_miE`8v8?b-+^BntUZA}R!q|ys8oj`uu?`n3 zO47^;{zg4|f)BLh7kii@~b4M&Ul_Fa6&I!3m|brb~u z=5)GW?whz>cfXJB*?tmkijD;cwhL8cJf2epuTAUJTiFcQ?ZyIjGR#Juo}D<@r-Qaq z`oUt+I}l%`r*|}dcz*yR;OzE}IJl+)S8IeWV7(bz7_Nig(*x=t)-1rAz)N1|bM}9e zFMG4Cz2ee-$Dh4LwAX#UUSkzbMRh`rZI3T|tkOGs$rSYT%qf`Z!lh@<*y;L&kOuq% zH|hnw&i27<;9n#2Esi8T^|;-6Awx#BH)FE{pEqclQuacyL$(w^)%tbM!;zXdLW-f`_IX#+O}idD)J0itM5N)=_b`EaOGo<8gE z7EOmp)`wzzhFZIZTI$iOMOr1vtB|x%5b7PoUyx2$_zO%`mR&}*=*zwa_}XD0`LP$I zZR0c64xH*nF??_9B(g~{G8k;Fd1E?E(`P<{*WgCH2Dwz?4)LU9D_kDAAUlRP;yLJ} zGsSbzncINbjhas&o<`t05EC2Z{u71+#<3%Q9Y2W(mp?L#*)`HKLovN6AwK+rmPh zjJaAo>LDRfuThIp5Xq2PRQkA{)}W!RIn2f(y)neR@Ezr1S1t&jaJ7ivID{*n@xCC4 zRK~c4OQH&yY1AP#r7I;h@!&6j(X~GZPUSvthxLdFX&lwT>WNUTWr=XSm6{`!!Y$gnLu(8op`d2)PSBdAb>#<7p%Wo6! zn)rb6sO@#Nf+SGD@o$PpWHibyLQOWKX9(@th1TeqQikk!z!Y^q?KNB0ke34-klc=G8Nr=i~UAmX!cf-!D<=~ z3SO?^drN!=#+$tb3l9L6iO@mDAdXDwL|N?$g?+Q~jZYL76UXYzVlm`TEf505ZBlQ) zx7XZ6OAC!#3US`s^z?(E&lq41H7BlJ?DaP6{F58hZ9);Q19(31cKi^ zrq-8m?ucw-H{_&t6=;EHj;@sWt|*QHjV^3;TxbLy%KyaUj@sw} zAMEhUj=9<`+7EpRg$~JWfEn9`c0#RP#`jq=YT_G4LZ4uUaBQ=D9CYCxF~i@?kT;3@ z!x=Jx0D{Z{V;jBp&Vgc3kA_lF)T20MqqOXx(~pwRqq2zreuT+4K$m!|mZ1)?XKnjc z_NkqvoxXPCE75FF2(k(w55d~_Ftwf6z z4DvM(KE@>I^P*{Z`SgwEPoAeH5T(b5jKD~hEL&4;X%j0nh7m{pg5nk5eR<}Re?_$t z)kp8XAS<;;N*PI7wNiSH?DVhh<5sN{pI4ur&_=aS3&;5Wi&R6O^11XWWqfPK>?!;3 z;$(G7+H)yWZQI9{DG_WaQ$BM9n$#m=>E}|GTU05fjG!$Y;!!Mpks92Jr7tp!%>|Sk z*^qm{rAwJ3IvRE`fDAqIeMg~+>l@nswB_+^*^yDf3EJwPjF(Lrn*n6iZJ3~Krz zv2#_c$m3u;TSsXmi$`m#SxmALo6{4KC@YVhm@EZy`+B4>zI&y0IEqV!5|Zp}Ab|6Y z!;UV6%&kq5z?G)bWQC!t$%*Vj2oti9&<`uy#`QxsT||ePEgO;u@S7aXa0p17xsL;p##`T(=3?)dAEykLMvFd-t=Hc_gL6xvQ;LD zO>k5u?kml5H90Zy2e{!slp*jBvGqS-XQw_6JDXvLFsK*UdS5d5e)GFu9Q=O)cCAB3 zsi8mbRZXTTyDh%y{4c-d=R6jD}~0b&xpUM1lgi|#iGEFDfFSW7jzw20kT0; z3Aa@44>wLSu}Y^_CNUD&|dhm1C-Rw|i-Z^jWL z*_;l*Tt!QflXS=Johy+hHZmNZMB3uYO)Od5k9xNSlzOe};p*|(Vs-OWG zfypf@2;YvYn2i zCbG{suADvVZ80gYtVC35r0^L*@iL&}2yWoNxQyk_(KBrPpid~J7Jb50yN|kn%Q%!;fb1AFi=_415o}lbmM?bI?0x{47VyY82@0mAF0tQC{ zg&mo(fGBf`(3p)FtwW4fI-n4MU4?Zm(BLA$n67n%>o}4U(GREsvZ8&GqQxyidZScI z9rD&!p|(=M`x2A`CrG|Faz2vZIbVxE9ms~_rs`1Hs#D5Hvt!snjKEI7;}{$#12$q5 z&L%!Nw1MniR1ztK6d2Ne&WuN#YjL`|#P@6m|Ji{)ccA0z<`&i<* z!f0T+sWi68U$h36q<=Z^rZfewz{qCB0AN%Aj}w5me`$d6U}+2kpM&8SG={e|gjk)e z&?YoN5klv7TtcKze7{p?`^}3*aUokuc_oG@d$;X;hucUT28tK#h%`YeLLQzZ9G2nr z?Jpr=aHZLBr6GgVQlXqsM%;1Fvw&>}Qt%`o>unEq1cLBHie!p245=9VSLMCMDK?IBgc$l0;l7`9k)Fe za9G%RG46!Je5hBp-VaL189@g=BbSZ$HeR!b;0Dc;*vqYODmx^@wwe9LcE5QyA(&h2 zC^-RM+%>(ky}jkdq*>MALsO=CG2C|)js5g%LQ@8LKA28n|Ku9IT50c1n zfs25a@gSc+_qV&7IJtd(<6;3?n_g!E{WNf+tAUb@2qT#b4Y}fKdOG6pds8{NkboW0 zDV)^}zpa0qZVYtP)F2R*;+kOJrs;uz5Iom35C)q>TbmmW2&pLE8e2brn2riDo%FZ+F2wYK z&$wI>lWjPAo~kB_R3cP1~4WoLwC!FVEwXqOsRn zJ|z|2WGCjP!k?E_a|dK@v~|tgU|McBX&Z}Gy=~LC_|-B*`z}iR-|KBoRz~pbh36i@J!sVNrzcHyT^>vXc#6!QZql)u+2|}e82MkW$$m9* z)CGtIrbZ9BEBPIhopH1{6K<1<>VLX+Z-3!DP0d+Jk&~h7C_-UnH6PLR9LZa-Ua-65h66TgOx(v8s&PNFHWzD( zT^gcGIKto(>BW&4T%ro&ri&O{6FKz^t|i9c5)FshI+UN(<}80oKEO;dU$*a+PoNjF zR5n{Rm^!kL?>w{p!P`#2qr_}60C@W|1P073*~<2WNyV5|U-qdziFn5gCOHGEN}!9B zz3jU%1Ug(87%KBr^J4W74^+@zHpXCX{6^vX_Wu(2?l;CrE_~5qLo^L2b=a#D#a{iz z9{IlbS#6%JI?uCJmvkng?nN`U>Vjts5fk-gFOW0pQ&2sfk+SDK3hMakUJ}Aaejdd# z-$s2dbuLt-o{(oLkv@ir^bUrMj2t^LP%kF2pEhM8u@cf^7+H_9kk*tMa%s3h22S5u zMlQB`FFmUW{?MUQHTD4!qrs@LL4#$1B(~5H;zi9lfpT>0q_&*kIH!xVf%C9UlBk^` z(I0C8mCfo@PFb(XmN{}1WLwF0v3x{pQmRxpt;t3KV&^7jB0pjbAA{=agh^D1im^jv z-`jfkK?Eg>8(rNOX@OaCU{68^F9G<{K?de*o`!(j0i*Tsb&LHkT#^VPOFvmq0v)h& zM0B66iy)v*h|NTaLIB9tcH?%)j}yB5Uk@Z7FlKu~XE5<~5c$(Q-|-6wE>denT<2k% z-8?r!U2pd#q*Y!Jx*iW3Nb1X=Q{v9eLR)r{u$X@#C!2(1<6PR_3~l{yuX?mqI=&+o zZVyMp1|iG^=uvVQRLd^mYDjiej3Lk!BL`(kFTAU6sd1U#Od!{0J}m#%k=#BTQz5 zD4NVe@(=YvaLEPNe<}PvD z2qOqQMptAvB#2s)1^9fGGK9>BNrP-a@I+nC3b)gWe1WMIV3vfbPb4i5drtJ3$YYat zr|WM9jBOsC|KLclh?4~(o1eXmhQ-KaLIV-Wr4!N_0CE54tjPawfU6E>Lipb5)={Ca zW<6oN)Gc@wI{D)#@Av|G7fO+ZPPD%K|2nOIJse^%zQjU0)A}x>0^tusd{dUmA+Wtq z8HNS<3Hu?qrdjH;Y%6;KS@%c+f)Z5)g^N|F{?c;Ho5f}mpqfu2Ya~>D>JeVzIL=q+ zAyHk(5bqO1WCeImW)`BFz|PmZ{V2G4nDMHLhZ*i3WLEizX~L8;X|rKRw2~D3)up<8 zt1KG|cO|6h6<5{-gx3fQcm3AIdX%TIujg#%OnBGm$90^I6^NCKL+tt#-9YlZ?51G- z_`bKeN1`RreJdp~p7mIEkq^yP&9S)0MaeFAmiQ6-Te2#X-6x%wm@I$gsqDSTF76kq zhu*B|7x?Q**$B_JLfpT(q3aGh8qdT*=qM}H6TTAtJjx%Vpj+>ooBe_L{K*_ZSb6$3Fg!{x*9bv=e<2c5cC0 z^d<{eaY)#^DLEQ;rihaWfw_Uz72)y6J(WX1%@_c@jxfF#_z-VU7i4_`x+vzw zVr+RS0IMNa7FF@)tCke!k{%q8PO-6rR%Eqi?*xkMo}iAz4MQWmX>IE25MPus*k;e| zAqkmeu^x4c_&g$=eIELH>%PnPpbz`2bKgt1oYmuhXh(>N(8-RF>0#^$8N4pu{WbbJ z-;OAfu14N^brWu`PY=z>N6+!^ci0m**ISJ%D5aNcOvsb?oH^=Jvm1A$bBu{WSP8Nr z(-;yLW(|p)t(k?=rHdg!lkCV8wc)KZPd$kL+34r&BC}ezVrB~h+$eBhrbx0po9~;^ z&5~f)=KIQ7bdnsHV@R02^qw7*>)Y2AwmQ#^X@R$YERY#*Ke_S(CRFEv3(dO8b2mG> zyj6ZR(b3fRQO$mQB1^EAEduCS09S|Eb-Qd6x&(7WjG@x?oMe@=Ql-PRpl(f0O#-PE zm>Ie|JAZWQt38x!8nOHp(#F?cm4&NOC(I_E{}NiBg>gZ>UW2})-- zypdU5FP}A;n~@Fn`n?;%^q-Pu-3D6>8tx^GJuCrB{mjXMHE~R+RyWJ#sk_;a-)|s^ zu){LIr=npH-xk=zxeTQrZ-8LxF*ij8-p2;O1xz6OLu^tFXk#PHL%N4_%Cj7*Td3Ra z5bJSAT`MH`GPJ$&zh1St9^sEN&OkJ`vF#LC(t(Pb`G4 zds_oP@~DJOwO1(mb#a*=oGx@p0S=5L$@1CFgt_!Vd%fDpAB|;XA_FLXKU{s(Or!2^ zuJ6$G)ZOW-?icI+hq%4TvwXm037GgAf7U`xPhef38h`i~V&(||iSIa%Ow$39>g zJJhed_eS0^k8gvm=Qm2tztEOU#!Y83i};Q5JC8nl_`l$B&i~0b&Uxn^{x1Q&sW>ct z4*UggbI$*%n=+a6fqN?d+xS1!&1AMeMSc9mnasN7)CX)ezj7@9`>pPL?zj8Dx4!bl z*ZqEn`jz)i;~h)dftla+FJv++fFarj%qwZ<|7`jc{1u$}zvyq7%#V0y@p{hrzvxxQ z7WijAO-=u2cn1G}1KjKRAAOel`S0(i>ss${X4DxyT+~wi%x?Ks)AhJUr2?YXX+rZ^ z_r&`I0;U$CX7u0{>2GEu)71z?K?%@I=3Iew0Os}7(OKr8~ zNc_+YRpZ2A7lmJLqs2BGV$FV5Mvj05NgXn-;*wFLkL6B#Y8%#`&yR>6@Es%Gwly2G z_TED4(dk4K?~?SCky0W`Oph^?h|-NB67U-*w3t57di09HheVbtRf24|4BUKdy?hk5 zeEL-$$^8RcwRbNf9T)6mzzueiz7g@7PI=ob@Mui@yRz`+Q?#E40c_KyoK8OVQ(uk>5tUzNHy%^3jR)r}Z zPRmZzZ+nN+3D3DYAdNqXk;fyn1;bW+B7mzYJ=tpnNw%_s2fJ`@)G-ktsU3jdNo&w} z{Wz0};#->AS?-HHlm89u8JJA$uBE<-X>w0oc9cneAfatH(sNtb&XY<;G5gJkQwRBE zW7q{$U)qMnDTopSxR4mY_PFejR%l4Eg(?f>EkVf)j-2p`M3-`5CJ>gos&;= z&0q%^z)tI7dKgYp3{MdZDNZHkXczp<;@ukAVh)V>i3DHju(G87Lp#|t9oAXO!xzJG zqrsQLn1Y;Oj6b`cm*=19VXcdQA%};#46+&0jS;&?jOcp8{@m1TirD``#V%6h6Rc@v zqnr$J8$~I?cDv#qc5Y{ssTQVNrc9|v8RAoe7;iGUI6kYK`xx#v$9p++lYz(!85?=X zh5a2-lk%PqU`el!<-VLydCMe zHPW+%k{J=(^6(Yb^GiP5wg(kyPg)dpbfxCo{%~$;1x6;txqfk$SDb5RPI0c2$4GH5 z&#L&*iC@mDpg!ZltqO042ol7zDnufwRiX0K7#16`AT*@3gV%K=db-B25Xqh{%jP3C zNpG(nq?jJYypT>-t+lRkP?%?nXV66c{6^J19Xsj;Nt=19y7 z5h=Jiq>H$KMCf@DD3Uub!n_EWzG7Y!=tVIv%x?k6woUoh|moDC~=V&FnuF8{;x5LkVV&^R|tCJ?t(xE5eU>2%E~qf02O%;b#S5-B)6&nfPdHZcFM4 zQ!*nA_jYjG+*kg8i|?J;_?YZOF%ZSoxWi%9A&iiDd7;}NmB#R`oZPH7?K2BARI`~ToCSvpBghAS zvbsK(1MD4atTGi9S9Ob))GCzBDd; zLfdxv(lm>LvE1O1phf0tD9DZ(oe3-bnV@{-*|*A7rdHU&2%^)HIl*E8qEOOTrv+x3 zP{Fr;UX(4cvV+GAr0haVU5we|mB4y*P&URD)?^v-D_=ADm0gp2VQ2is0=^4dbzLlFsqh%+EmYqRyHkQ^RIje_K zon6xJP0b&!X^A$(2ZeN4jvSoi7D9D7-fF7|^rGLr)$M`Wt(CS{&Xcyf#79r(F8QZpgaZat>&z#}QWjcCj~ zq>Bc%%`OvP*SpWlNm^*2ctmB~^vQ1pNNY?Q%Jv~oONk5d1|3#T~kZ>c8=Ggc38OVHPWoL zC0w@8*d7E#s=-3Tq=p2H6Lzu0poI*^5%*Hq?49QtcJY!N=M;%kf}EG6=6_Ko%ilTp z-uB%8Dt!Cx39$|Ke~$76UES361qP+e&nw|Nd#+{bLlSBAus zI@Sy)?ndJCnnuBJ5?^OF(NYLrd-$Khr}r(^CLGjn*wU?0M79w@e!pP_DU1?sB^(v??Nx~Vz95J zE(^+SW2ogLZZX^AJNjVOegrK<0<+D$6(D7<>-Dl0&SaLD3Q3`|rDXo*pAj{-K9*4a z$)x8j3wM;;(>?1c>g0&t#BevxceV2|^VPUx7f7V%o`{_4K!1@wZlMr71AnF zu8&ldZ=QTbyo`Nn@Tw!NPw~?7bcK1iwq++-enD5f2x?$XF8j);!M2k@Q!qS-#K{tl z4@44@yxoB$!`TH%<6cd6&@KGGLnUveoeP`ko(C^&1qgFV_XLSene|fAg ztWADh_=cA3+%T(L`n(vqVU^DcI`kiTsfcjCD}2g&gVkJ0SDZe^e#PEBk)Erm+Z(aZ zQg-dA`+vnA=DocE-X#bYX~x+ooRiwD31wID5jM1Sj2Nbum>y1E!ah2zi?znOSc`SB z^viryMucImy}b>|#LPCvwho=z+tc(_zA-V8o7h>=*`APLHvU5mDky}1EK+;ItCx_` zYGdNYKuko@%hBWJB`9?|^O$I|;!n@2SB{TQMKK8YLYY&zn%{c5P8Q`naUdG|Ee@s* zHU%|OE;gtyFHPde=s`#ttn*{y$!?ePyaW+8Dd$JPf}dk!#!I$Aw=jiKf z{}%0kUW+FJK{5Ld&-<0S)id{V?x*|dA=Ii*PD3 z>C=>cvmS0myv?GD`*V>SUhvsGWKt}-Xub*FRwbbqlVwDXPK!*X?v$WncI@Q#NhpX16R~Bf0K+YLVltdYClp#NupfCOr?#uTCl1PQhD(rG7H2L8>#LgWeYR4j~#8 zo$La7FC?|FPfjdcTyQc~a$fw9W`y#)qJ_*#EYfoe?~L@^5w`n^_eYhYGcZfi^#o=I z>4qm4WO_iZF~<<>TcWC#y}*yw9LHN_cX+bmqow`Wz<(C(S~rj7e)t5r`FP9;858LI zt?-a5P_%aq7Gad8WhA*isPTulSPzeHHqwJ!@sJiE1M4ouvJ71baj?%xNV;1_WPZpD z2lsKu4xwl$xH_J!x)xyK_R=v|6nRlkL7w)j9QTZ|Wz+{t#)_uOAv*s-FyE;Z8)}-pP=i*CNuUa5Xm4 zc|rCFh;ZdIhaLQWL&h-dM+4M(hd5nfczuuZy5{&pK!)WYd9Os*lh_`GRfP=;> zQ}~LP{YI7-Pv6ATU!*sM#>@sLDufTL-o_OVPAMEjhu#QL#N+HieYD5+oR_~joD;aS z>88O*7L`QPDa@srED@U&*N1WJJltaJ%ocZmNtT6+eIJ$=xbq9|wPMoW`;2M_qRQ*J zcLmR=V+O32F=7V5!!0>H%($>;uAZ?k91xS*p08OCuj$J4vOSd<%Ey6&t4zEd%A-b> zs1Aql67a>jGn7#fp#tNwY*da{AAwN*?H4yel5J1-3y5wKsduzo!(!ti+YmQ}dp3u9 zt_{KIo|J(TeNWm-G(2FU-j(@N$B@pIbsXH%^DC(KLvNDT@|-67h_ZQ)Zew)3&&7$q zKsEaceUq=*)q9{Tq_F*v8g6EplOERDzk(&J9tXD2GqU0=K;JWu*&lh*WX)ipLQf6d+kmCTxoDid6HKLSA@Kpft-zDLZ43#w{S( zM}oI;3rG!D!Hgke57kR%znW%)q~7l)Mh^yu$-jvwkGt*3eu0>iFQNGP;_d*Mn`C)B z=9n?2bqNz2+b4ggOnxqSz7B8OoMwMX`uiep+nf?zlif|>xTr}Y;!{65!M#D&&RRYO zQKLa7-u5YPSd4lbY?iOaA)kw7c-~(GOYoAwAI=XCOPn7bmbQufwU~^f9Q!GoZ#4G_ z6$OlQ*0pmJvCcwrP_<4=HlIpxy+X!z`oKdDAQ?U~fKqw)fDt_0@O2=Xi{jx2(x4c# zKTrKS8}AdsAq?i5tp;3k&R09xiIS{K8n{**@S;&;$-(9WuF5a6l0*Ad7j^w!-Vm~& ztw&ioNsJK5RA_m1KUl{2g-%yVkbrLmd6jtm)RL9NiDm2USw|ygx1r6{x**&zRff*k z6lk>VCOgAZu4qw;%FGF=S6@zzRgE0 zaHZ_4(|{Co;)8uX5jNEG@3}i<&kDpEp3M*2?@98P%r+DJ*~o$sYa73S7yMzvlUIv( zD{D@Yym0r6PXVgSctS=ovuns#(o{N=VGc2*@ZVYG*)iGUkBL`&cDH9aXvJ2DyOm;H-xwEiagFR7BZB6oXNM@t)AQqqeVw70(E;{bahqlLzOZu+8x+Z$yHn!U*dWj) z;@rtHh23zI<|!p<2w}Z#Gdn4Kmy8=3avN0BSSdglM+^e)yh`kLvp(_58N*O}grUO0 z_kAQk^+>D)+Yh!{?>G|l_ai{kPxXClGhe_UeYYF#t%u*E<3>XkP0H$^%sU=k^ULYB zf^N+*Z02xY1nOzt84p|r^`xL;vsTZ`(lOLC;~QpB47bN-rJiSDXp9Ft?TBc@QWhaZ zAIHMBc3Z+u;bD|xyeSj;2|JV4f90= zbkN4+7Ix%e358^{Dm{sicOrH!4^j&O9`vG=Ebd@966bXCKvzGGYa;qS8wydGwPdrw zjFj({+`OpW%56eGj09@UB>OUI8HuKiRo;&*QRD;dgMPIDWwYH}+&QR{{SA{D0$h?tdeb2?F&->(tZm%_jm@=XF|zD&*yK0t z?J?tgGT$1mEee!3v&$lylleBR6k9e~Rat29Q!(mbU3y6uwro-A=Fy!E`+_qrw;mn; z5=*1(qKePBU^Pfn_=ZhpY4*VYT3*iW)Udatc4))iqT1?)y;j|~=guq$+#LwiMKSG; z3du~0G^fYo>Y!iUdbt|N1nN$1n29->?Dq3(>5=TU<5mJ?L*?QgZtcZ|#ozXBJ=W{_ zo7viP-V6L#VG`8%wnn0@Y31yhcHKXa`faQv6UpnpYyT_sSTLTv8NtoRSH#mrRDijJ zz4v7L=uYuUwr3YbGykfsWEU-E-sAQbcV+jULgROx$Uksqi-Rj}2Y!!7zcpPPAW!TSou+<2!C_)TtUE8R<0JB@`5WuSB0*gl$yhnbve@EA5;7;8|QAmqgMbJp24sRJUx^@?oaBERG|6jcH=K; zh}jPobCq#jpl97VlJBv_>`?_Aj>Pcfu!zH%xbQeE;qceya43gM&EYT(A7f`M9fouG z0h?_(tmbgLIgGl|@AnEowV=F>-^c$?FCq5VE)aTD^eyif$n;MrRr-u9-eL6_Qxe6g z`#>{DPFm)VS7?0b(s5%$_A4RXAMReTONRjZxMc(7u+^PGlaRfsx%LX4{}Z0?TD0v5 zStl=-KQHjQCr=Y93)M6I*I(V2;cu=zEoQeGLgA$ixHrs!P&6MyMOU&EGyR+CN0*o# zE-grRkCbO3<(uQqX}_hJ>!HlcI!Z4`?G5fjpY*0}qZy+sLz8rzmK{XC2rm2GyXg)i zg&OwvweI;E^a)b}FWGClP|AEqHnS0+e>N1LlT{O!_YI`}3lM2)G)>n@lZ+-!KR;7@ z{Y0APnWovM>1vwN>;$TK`WxEiqh*{=g+{l8ICm=kNOPwD%Bvs;bo?ejr6+K8thsv4 ziE{Nny{moXY9&|CFjrp$kWBxicXj8-T*Ws~vH2u@(}}#Gt3$;DyNK@O2qN-cbApF}%wzmxwmtUjC*A0gTRzzFhHoU*3!qjWo*{n3%IRckMJ0yY(XT(LE9A zQ(eGOqK%_y(TYIOJ>`Smf%+%@12h9x(^CHGEOjTRbDIB?X7|w_!@AA_;aFrfFB;E_ ziYC2OH>f=0{`~G1#x5HQ)+-e@|U0|4$FjuyiF&@VlL!_P7m8;4zZ{8|jTfWjQ zn$^p2S8*5a>dIdeLYJXkn4LvTlkd4xQw3&Xz5)`;ao(6e_8l2w7^0%COve1gpK1eR zi+$MY?)pf^oH9l{!=(h{Vhx2OsaRFsk!bBWYilY zxYMbaG`wFR<SpHsAGR3-e%@phQwS%Wv`{iI$kb`#XilvOPRfa_Q=$7md zTSLiIVt^S|YiQdPtACrD*dolu+uezM1B{ccZ>>ER&C>rnp1E2ilv3NGL9(Wts0+zWmfs|$LxGE^fdM|&nZ1u@#=LUVK}s|c+C9ysBOxhmFk@o< z4ln}eK0Vxf0TR+)!_SncbxZRU>)LKZSN37U!94_VhcyvCzA~{MHsbCUxx2f) zzG34L_N!}B4R0UO@Xj&G{E<>6(X3YMK z0uIdo2|h3U_-q~QO#gY()Uc;#-7ucG>}6V8yDi~I{$={#t~Wsb8?@W<+$9!5l*v8z z9C^?NGHx^d&(q$m?(aS{LeFl^^dCkWg1vUA-)Vr?X%?M$l_MhI5|2mNr!zBAw$-#Xq%=KoiQW6ZRgUou7p}CzL40 zUV8?qVbr?SSR`}Z>A&^sbV$ysryQ@ln#-x~v@h8h2owk$R>Q|=O*iztUhu*q5lD%q z53NQ~yF7=rOe8RmY{eB3<-jdM6{jMtHp+E>LJ$D^aGc}&}DX`=e=I4C*Q;*)B%3F}x;F`f_{E?8+sTjiy z1Jq3a3%F_x9baz^oiyL-b7g6f)u&%6({+d2n`MyIw1mt`?O3M3M#%5OY=UKa>Upbs zD=$WcH!EVJ@%$&8CrgcSK}h0k8i3(BV@50{b)l2KML_{i!gi8(e*1G=`T@Q*=u|_lfua({n zdycj4`5nZ0{K!Dyh^Y1Z7VG=x%PF%ZUr!qvg`~-D(~mrAO%;VRSQLf zIu+eYJt}@S?%-7X^ZQE0#@i`uNdKneRd=tZH#FrLGDZuzP|F3srC(&>6a-TJtmZ)N zWFu>vh4mr@(%DUIRuT0yKUopgwA_fOr2cjmQSDQ#ehKB>ND+tf@GFtf6BBUB4x<*8O2?%1S4}yD@ndFvPa8xdPO*me+Vw*rPg!I!a|6`NaECe- zL3%35MF&LI)3QP348wvNl{q*-=b)T7HrHKd=GD*y4>`T%jzXRrX?D*$JwK3!tf#l# zVVRaKv?x)<>RHcCE46ta6s+babw+Xau1Vmuo8KR$WSryi`+rCv6yOYkOuju z3sG#|Z2TyzpH-jD{Xo|KQN9q2i(2I0=?p=#>PL?6VF2l&zYEUEovbv|`=GGC$U-#LN>~Iu$!bG6?Jcjcdr=#?W)kFf6TO(*U< znzzUd3Ed=gwv;K7Ncvn<*#m&m|tupRQ znA=FPml;;vvF%pl#R7=Vp>urQ^D8O~0Y(F$d1kI5^bHq!B zS$)E#C31ug$uH%mZjbcr6HrzKPI(vfmmwF?C-OYg|GA4qz`v0`OY8{%rN>`Isj;Uy z)BlfLl+o-3@UrgHvNE&UQ!hdqfth;-335M26f#upjO+4$$he9<@pWEg2qlkLrCr37 z{>3o@0Hdn}Y~!BA-aSfH>HKRt8?8eB8|hDHtXfV!^kf+2i-aa^To79d-y!k@XhmKL za%k8|&FRwt@Gjvur{WC}EsE6Igh6V!zQjYSVmYl!qjl=y@ty+nMCUG-In%MCNImsV zZyLOR{`|tfXj2L6oM`LlV!0#(*QW>eRo!vvaXIS`Ky|0yd?bQ)e}V}-JmJhPi8-@} zBJ78UoXf_BGM5dDIwOZiM~tkVzBcNN85*;D$L;AuqnYNYJ#x6YPZr;I4UM*r6i*-X zf8=oe<$+!I0|An|=X<(l7GSnAblisbXzg$%3qJ#>(%Ai$sRN7lhFkt?DJPt7kdtj1LZlZ6J@yc zah>iL{we@M=*#l6u8IiQl;SUBGLo|o!ep{`T^6@TfL5`f2(#7|a3b{4$smhH>PY$g zZ~V0hdvyZMZNC_^KhZ)&V9`JBTn~HqD~;L{;9@k-=;7iroP+W3ocrVr!kcd!8`ElR z=II!j#Z1*AMhWviTsm3*j@7@_`gfTAEz!S4{3YeRHC#GPKoiFUv4mOe343=USz9_W zRx>_db{jz$$*HsdkeJ^Z#M(!jM){hZ=J-H4boCz^1s9~&$C?2gl8m2bqUL=wxJGaPk*;C4@ci*-Zr z`e?lD9qaz)x&i4^JM0y4wQFG(gnN*C5-M@$YE-AZE9d2ggK#87In=A|(>} z=U7pDOjLPsW!`K<11Y{0s`GCe8*;3cR9?f|gGs=R(tKKai<1$FNEF47E3u)dDyNC*ZtlHcB4Y?LDxtG6 z5l_Du`PM_M+j=lm`!?!)3pnfx3ZhPrCCo-(02>Rb$` zwZwL>iC3f_EyY7xFi8+*Az_Sz7eE<#ScG(Uu&qGfAdsNucAMDQ8MSJ)ZB>HCApOa3%g zga3PHye3jiGAE1S@ry{5U?1an@X(z)dA09MXi^F%U|u;Vm*KtwA;y_6a}nb zG+PfWEm%t0Q%M13(RN3z$ew7^E`IjMcsI{T%$I}esJ%K~#thQEG*aM##P~LKU6YPC z6+EY(-MCgJyA^R+9mK7$OPCfJGHXGsY&8~9ebkv=%p;~>TD~hK)4BZh)L0GceI9cV zXwkA4V!`$C%2uo4bhK6D+Bhi)R-_Ggjl_H9f$A~3or~ltFNo#UA`_)Z!FBcNbE0|E z5iMl@>~Q0+$qe5bbL6^nX=$~nrE_RhH?E{}u&o8~w_C&LPBK1IH!n0UbcuUE3t~8`z9a z35VS!&K=bW=ay)!?2}mK%cKA=h?;yptHF^8&X$i@l29fwkXYUw!+~a@1fhTUs$g(S zb^5y^Zad_YAhM_iD8bRv)@Woer`2N{jE^_>|$K-*C{~yw3u^MiG)QPFQ<*CEs8qBP~(Wz z@0At_Nzn^0B}BfGrZ}0`k4c{OO{M-O_oej$`@1SX^%`a7)2xnVJsB%|B_7<*C3g|M zWZ+`*VN)zn?2UCcyjjH^LrV;4tUszx|J96YY86<<>{q~gcr>^(7Tle%XIBGJ zv((R0rb*XvBaegKyulaXa~Pm0gH@IK5nPR?O-V%&Qk)n|K5&-v7)iuoU68E0;DVw+ zx(5eWa8Ukwd9yng20EaxJOj+o&m9=Vkqye2myC5kTa2TITtisXXS`rbEGWwgmS~1a zn^szlDU~xD;rF=1l(@Q@3=-zs`etybbQ%cwPTI?El)UeO2l6KJJ|g$eq{nV&)TS+vyul`Pv@7rtFrwh#e z<-7QL*%8s*?X*TKmtsoY{)i{#MW=McUoRbJ#Ch$-YIlX4^GfYKEp8r4{L0e&hK-ck zT_3Bws$}|^Zt=r7SHx_6%l*8Bl@8kTSTS^**+uS?C*-4_oUSLtMQA< zKi{4khi=-#IkQ`n$Zf5gL?(8Dh#Ffrr;~GC%o({dXIN!gtI;Ym<)_MY`?yu6_4=$b z&FQns{vvYGDyyrv%4Q*9yKSsuCG7Bu$i`^Wq_vZc8%;)FcLa`RIuBDAA`2yLrZK4} zpPDG)+SR+necu{@v1H!B7KEU1Pl!Vk+F?WAQ4~!knuRnEP01(XHS=QpdWp)}MKeal zoKeL>=&D#o2wfl^?RIH6m28p%q4?n*c?pjMiGdyxBO)8?ieRg`%Y|$vVP=`zcdd!= z9CZEE@IeU=c+6b?0THw zK?Oh)o5z$}jsI6BS&`GHVc!w8N0DS!mmhUP1#n)n+oGzXfP~09(TDp#d5-%TjqYZF zt8w(~^S$x!=z`!R`)!gWUHSa$$Ip;9-DZyPDcl}U&Y0YCKXHI?-ng92LieM}shm9Joydj-xA{To=FEDs_Pfy~HB+yfe#8GEMc$6IMwd*Tar*bp zthuI!v*u`PL>LWsQe;tq{3d5LN0W63*71wVSCTH{ZeY6d7?}l3Z?tH7e$zIj6rMO{})v&K{#xWl0*G;$P z?hO_M`qssx4R=KYwGrN2WVg(H8?d&`-OJyix^lavgLR7kX$Ec8^xjo^W8YZA9BwRx zIe&D?XPMLm5|eG!(c^AqsTt2H`&3p6`?x)|VtKDi&JhMPquO{fH@TNR*E>+(>$ZFP zk*d<~AswQ|8@W*5YZ7foxFud&jkd*T%XbI;+8ZOQX(G+3$M}Y9}0U_(LaA|(DW=s*wz?Nv<$YNS>hdFm~Yx8Ie1#m zvzE||(33|sb7(tl{PiBiI0Q2PHjlqJD9EKn5?%KS_QbL267ui-v%>V(LjMTTfOiT7 zw%Z*5+Tva0nH$_AIWhUSxo#OAssFO{#$P%20|n9km{dsBAzFmdO^x@wv;X1_G;P=( z7M?dbKbq7sUt!*N&A%jH24P7po=cg;aN{=S^xi-{nB3n|(h{0?aX0hCD9>6 z9`&c;J~fjCFN3i+Le4CvG2U;tpeG> z;CYiPz_S@v1D<6SIq*z93_Ke9@%&lNh^Nm4QOJ4~FNGSXxefZx{Mya#o#q|&<{fi* zhazl9o(l3B&9*v#{+bUNdNf!+CqGboiZjCf6%XRsCGJV)iKm+P0mJ3hLB_)ajfC#BQ)}12G;};4v^2_ z3vh_${m#|lrq}CEberA~Q93HDSOD6)_>ur^$(bH#&+-Y0oN!8Kd)Cia$jYB=bf}1- za&P#yCx3Qu26Ga!LH?+q``Ze6jmjaU{cD^ZP7L+Tp-quI*b_s4koZoBvBoNDLkWyL1z~2a8G{6DBbs-1(%w3 zE~fhFMR)SMSurJ2{f~6WiYaOMDGdzmac;|Uof~a%w9uYsn~8eyb|a>KHdYWlKur1h z(4Kq}H#{N8ZrGl+yNn#LEdv0FEe7KPpGxK$Thk68Exr*xexGz9FZ9c3g5|sG(@oYbI$xb==&SK@cn)K z_YXVB`|mdI?{D5e$h`m4VLnNI&nm)yzsM5_MnwU88U4X&fcwT$gHxpu)#c4P*J94M z+&|OB_WU<2zC8IhTW`Gc6!-UfqsX_Pa|G@Sb=Fk<#(%dwC^dxli*tlM9tWH6_NOY} z3Iesbenz+h4OAuWDD%jKdE|}$Bi)zSBjyRXV=n3taE89%XXd(yk!kQ<{rQ2~sW4yd z^m^7+w}@Cw@nAI&8ghAFRbqYA z-NHmM%h8{(?!h0D##pEtCGNRo#e=8A$-Oy0+noO!=aKSVD2M)l&sUSOiXE!BSF|Yg zt`#OvR(;R(#VJMZ3U|EoA>;R)Ov?=Y=rB3kA^l$mmv`c_c~i051@2~_0sL+xR52Ia zTjHMR6ZfQM$Ka)&SuiGL~32UlmILkG}*k;7oZ`O$zTW-Wy0s{WwG?7$f*z9v_-r~{8iof_R zJKW!HM0}kDCDy;B)SkvArFNS+|1Rh1*j@C2S~gkp2_d(QTn~5Sm?K5tZSKmC8h|=Q zV^k(SB{9LhO>1lWWj!b;%!>=s*r*p5Me|sbT7;;I@a5vCZHZR4N3GGA@z~sDZQ^FB zDi%y5n`3=;?~F=aHYub&zd!CfKKxCcqf02 z-p|c=mneD{E8FkgEO##La;Mni?)w)W$x6Dbzf`?nYZyWCehI(4tjD?h@-1%ENn_ZG zRQE&jOJC{gDZjr9TX@lMcVk=aDC4M+VaG zb)H}2#+rFC6tvt^=pY8rbdb%NF8#dbOSAK&*EK=~I||;trkF$U?)8K@WZ}^Z*&-cE z$TyKk18=XJRozE1t0v;L;=>}U_e6dT;RWgj6l<|FeDH5^^pw$f_`G~~dmGGKB+QEs zFj#knuq~M=J_{Es3tvq5bwcq0JY3}S@TDg!4_}eW<>9Qn_4&65{w+R$f6seb`M2m0 z{Ojl2kJZc(5~a~hbHp)P94*_!bg~*Mkr$ko==pl9;dssy&gl|k8bF}}l^@@5uU@OX z5wauUGz6`Brdwh-g!vyl5jb)?)HzBF5?)9U+Y4J}+4KXS%-I#NBjEd?|FXm7p zwro|xo>CAGZp6J^6c28S*_Ra)qf6Mgl!#uU>hdih@nPNRlDpyllxc|P02esL8m1a# zcD$g-JUdj7`4D8*upJs?{swko3A=7`&wrJmZFB8861j*b^9S=TLqUxn;bIq8{Ng7` zt_xmOlr?X%D=Z=#ANuQcUDL#!^Cf8n3eNzzU3K4ZKW`VnR)p-)2B=8}s9_3}D7Nzq zP{%1yyP@zHM1{-`dn(M>td?B+Otf}4XLPlS&QDh>+N)1e?t7E1 z;7b^Laawnhp8}>zP?jLPjp)H$!!zxGnl8YwNcZIr*0TGdI5Pp@-AIScfcWn`f3oXK z*}oUE$uN{?fQm=8&nZ2}JL2*g)5e(qW8Q`CCpaE@Mp!9f#rDUNbAs-hVUIHw3j^EB zsj2%?Jb4qr(OuTO$7sW!v;-PkjlTsc$wK0sY0WM_gCAbF;y`U>>&R-Z2i!@*z@SEU z&Jx5s@%aq3f7wekiqs{sRvK?WVl?c@t1U~7;AnoRH4^B?oy>;Mpd=&oi+8b{=u9W8 zX#jmxYPmaK*po^BSaO1*1Td5Ng}|@`fXF^*BYVJVx*c&GPgXoCq@VIf=7pSd&jU;M$(FP>4W@d`b;Yk0Xy%hmvkHE#v2Ea$Sl-stEB)`3hrBbL4R zws(<9Qoc6Ro+?KjnYT+e3%elo)#da`oyi}pxLEQBGSsj^TP%5BPy`4y1MmVuxW)0x zJ+qZQ;LTVqa>FB!l<_CYY_Sa2QK_?d3h_#Oi9Edxi|Z^QxS{O1S*qR)zb7hp*Xozz z%XV}Oy+7^=Gw!u@GUg|wFZAgR9Sfl&r27+954`cNJH=4E$Lc*90hFK}fLiy>U}#g9 z@Fx~rkt&sOmc9HAtP0}kGkI1sz7(Ey70-&buAoOIWf5+d>#oh9manWI9&A_>4B3f* z+{mMstbm~rZ9O<{i`m^JGp|&(K@NuKI!U{mi6irJJib4fmx&7`p1Kh|m+R2?U->IG zafk(c61^A}A41+z_lxvz0P`3F=3{&i(!0kW;HJT1UnHw`<0%1=2k4PX@VFd#hX@&D zM2Kczl03{jQy-MLDcG2uthz<~Ysrex5EVvac?dqzZK?S(!3;CjhUKl2=`10R7l$=b);PA$pxW_mlf+7 zVO~66bdl699L#n-cOae~W>D?X=o1!4n%r*8qEt22OoYpNU~38j9p=%Y%ZFieiaj6icx}Jx;L+q(FQANiV$Kv*v!7G)y(Ya z-x7^0PTkxvLDnDQ@#94u{0MyC>CBIl;S}M=6T9$ZiN}v2<;NZ#Tv+hKAj1>tIjFdA zu*ZkLd<%9P&_Sm6aFi$?exD1uD}c`Sg`_l-dQ$O98Xo)^z6>D`76;2SjDy!67fPs~ znTRP(uKC> znvi`m6n4Pg{3h8a!#E`Sq*{NpN;}ynll4r$NobYbOxj7^d{R#qMxAcg4fIn2)<>7% zP6-UtHxWEF*(Yt$q?R#5Ct?!JT0-o!*{zOga>ci0j*pcoWoFVyz7a^Wi%Iw1hja5Ye1A0C!i2cVS?k^FqF;pCdLOl`;F13p zYLDPg1GRaBJk%a|y)$YXL0wV1n+u?}-d%RCnCjvI?btpo^%o&*OqoQS7N53`t_IP7 z`>e1N`v@?zCD{Z)Ai8r|H4-|rhOlAph7p0f?ya)dN^B=T9s$wC(+6Z*2g)Q!eNNe? zgWBV&16D-dR{+McLX0Qp_*yH}I?6zCK2Wgs8BVnQeQ(#(UN+PaNRTQqbz?&f=i{++ z*E4*guO@|Bdk8@3D}dwQ)c0301vre0?shYe%T1!u=q*oqHT`DCdPVokpwkYA&#eIZCGaUY7(UC?OIY#KV|{#n$5*8f zz{dq^gHMCG{6E5HN^9gj1O_Z}s1f=#?B!wf-amyrajL_29idy@v*{)ybd^6s5{}xA zD+^9pPK4Ef+`it&sI+5*j?QBAS97_xhxJ(Gy(#h?oBhP`4?RTd({CF2Iw|!H1Xqsy z_s8q-_&o(z92URn?qzfn{I2!!n+$$^41Sx7ef+k);^Q~81HZEwSA+f*M3@{dHej_PD1f7`d=FA(k#wVSN_$WwkfM$bWQ#;d?zFHGS=wBb`v!(k9e6t6>{eJS{UCxidh;LH3|;al6+gKxvy&hVY= z!?%J9hlOv7UAOfM=yya1d|N%$bU6B5ZQwh@hwuC@@cj__D*e7;;PceaA?SA)_^uV^ zGW7eh@ICXm((fl<^XT^*ifiVM?-t-!_O2dnM_^#*z-yeWqX?Vfm;Ir#K_yYE8 z5Ee0{`@mDAhhx8uk11$>_Y-%TU+7G_qkPc*$OTB}sY}CtIs5MOx7Z*si#d}sK|eE6Q_!r|Z}vLxFA52Zhj=m5|441vQj z;ME4aGkoyQ?*iTrA+M6}8wNa2*&jmw9R|K@g-HzgzASvt{6oq2lU~03d#*G2wgA7v z_X93KzQe$0tv(Eh&j^=%H4q0G5I-vPK>X}qok1M!gZK^?x`OE0x8D4X9u~gAUmd=? z|E?sw*oW`RF7W*k_?3hs4+0;yXV#yj`I>wShb_?5F%Q|F&CN_4|D7{tmr!dw`knEY z%{hmI@6b{kmV?W_Gro32ig<2-vx_b}qrCPsJt#k;wp6ckFi=bCaTeqL+Fl%t=RT`R zcCf3f^XZ8kxptWsgL{lKd_dI6Ca9XT8m~U=j&xxc7li8f^9{I~|axm5n$^kKvO5o4QnaqZ3dA1P7YWz3z zqKhso=dC~R-wJ{HrB~8Ph*Eng2STR0$HMmXl2G!ZU`uLnIJiC2vSzP6rd0N-lWHL! zS&}^FAjpm!4k0p2Tei@R-!**eXN`P`I7l(7G1aN>v1H^UJsGwFnCApnHoX0rJ*GsS zle$Q+c79RA+xvNw_nQ5&nirx$EaZ{HQzy{bk57nzIzyO71JL+3i``10xlm@?&ppb# zF9-Gp&+UKA&?5tEwrd1&!*94ohehq~&gc^R2(JQYC;K`#zRO-`qPzb)qbb;Kmt+e_`CbIY#hIXVbr%r0iWU7=m z8z)L{9f-Bj8e(G2b%Ppa=LhPJ=G*E8;Sr+?>k6IA3P(&RvKpVEYs2iqfOTJ-g|#Fq z)?7vueSCYgWRm{O9Ve>mDTP{D@=}(2PF%;3ok>2Sa5k}S;z?$CdUTh-r!O}q4LGM{~;)j2gT1J ztbCY3_G4w5LkdM}rgaVBOg{Wb91keBMQe7&^4Kk3vms37z}A+J0989#5A%{tG`L%e zbb{rV!TU3wxHP(e@G2k70@E!JAVJmA*XJAjBvY#x+{k+O@v1JgTXb>-+k`-JGiXU1 z$mw#aa@pOFr^-BLks1`%eFHh;1BnIkWGO`qBXA)#nJVgZXwqy9rJ!6c_Oe59{8H-5|}KMA(+lL3`fi?y!(}uWG{Fue3P>9 zby*g^!mx1NIGMk8y9|1C!IY4e^E~(KOCj1F6lL2-?YjesH=8Tx9=$3Ep9PsBYuOM( zh{fIabE+$bd8L^V=jzM9a60IO$(a#my_z#0{>URc=EDT$!^;Pm4*Ab39n-bBWV4#b_W^k#+2S3tfM7v z+Z>D`SKR&20~ylSU!CknR;feH{6CKQuf>h{y*0x0g=JG<9XLDiPelkA^T)K3yk@@u=E>jpeSO_Sf!P)h zej0K{eZ?uh?P+wSBu;bQ-!)$~SKbsS z_~0sgChgVK*kR-_L_e*ZP(Zo|Cb1ZYz1-A~u>M*{j)l1c4z&vS7*0cFpsqp>?!=a& zoA15R0TvAACbmfk_t#IY`x+BAtTd1=|Uf@iEmOOT4EgvSmjm>&D z6vpjqifwk>IwPZEosCYP&W=6#YN;f@ydAQe-M#b0`W(q^-uA+_&zn$3RVllBDz?5h&9GdHAH%iKF8D zxtRSjpH-Crw9{?fr(Z)fgB7}7QiaJPE0DWmUUnbJEVTu(*8EawloSk-EPBW>0Y$4( zR%vA7T8;1M0p*q1|0vzerw+pQBZI`kH>E7e6__SxW%?C)e#V+JlR4n!5om$|(Tn*! z2M>JJS#rew&1+t6n!n{W-|aR3 z!!)1aHDBj7|2xfup?{}WtLFSWB0X90V^SWOpsWe6dXm*z1c0tHSN>za6-Xb?`FL~w zpq$HwkBB*6z`41zlshFw29>$N9j&hBZj<*Js_T~e(w@2rm(&3nqK?JGGEH|)_g#Wr z9!M81!LkdayDecw5RkG}$*LK=!+p2h(B@)88)*~T+*cyBA?qwzaVt$im%B_;IZZWQ z(^S)RB2AZjP2)||F{A_^>jR)~E;MlX0Ne`z!??%&Zf5|bO#tZC0l?PJ4FLNFD@+2w ze|SyrnhMC&;BY0YyHu3|3gmoU~f$j>@OJJR_V>q!< z3jOo4MO-7Z1cRoP!Tm9?K3;T^q|XNH@(}uVQa|;{fc=07yG-|avZXuv_-L$ztrurg~295l*?8#4IUBD~S_xXSHenrXmJE>gcy8qYbSEslO;TRUdx_^L@Ql z3%Ljya{u#^&H>=|XyAn!kJATKfBHB{VUGk!%orG>sExa>nCw(u=mC5nRq+@^r z4Z#uwdxlb z1%cM4ew-^R=Hs5};ZBo0Et;p`MyZYV{r8mq2K)xGkMRbXO zC04n@`q4(38r}}Zg7_-2ymv8ZcM^LirH{&FR#OX?eO?qEb3YJK1V36$f8df>I+5q> zWC{yVulSQ+qk*H`kVUjA%6-$^CPm67oqiA22N7 zuGE0vx=%evx=ex6x&7`L>6|uJk73H{pxJgxv+>tHjxlk(Gi}==yF+UO}WT?Y14z)!`~TyFFS6m#>Zg&4&qo% zPwBajrPcHo&JAfOKCwG8|5ILJHT{fMWR`Mso{m9EwhNhu0!^~&<-N>?L2w(#r^#^< z$GI=stE1w-$QOW`_iq?GZss>jPuUuD_1vdq>~(<0p*b#Q?1hJ8nbqvb%HJnay-5bv znkQQavQ+9%lwBDtsIVB}RZW(Q2(Jymz-#0=-s4(T!3$GR#QD$u;86x$>qqse##xb_ zBSr4;ex2q>j*u}ZR2|La3Oy}-!%w2F#gW)(>{dQBq0fo&g&Qw(s)>=MfPw z{*`$ECRd)|@=K;CNen7>IqdF{_OsXKjAhm|7a%2`hXpgF|?NNdM(BD0Q?{h$7{yrw#vHXE^uHCJj>gkkzmGjRy zPrbZXuRX?b`YEuT(UU6|^0@TF91N6$KX7oXT>mx9aUTaBb1-_sBk3Ptl2$71YL9jz z_h#DAtTPI^=``+6T_>= zxjb+LrID82ejd=*7E2=awU3v~z+NMEz5ud|*FQYt4#yDXuD9P{;n`8hIQ<`nHThwenHb5IO!1#~ziyQ0r)K$)F1Z-T4tS8M!PHC?v-8$fo3*O<#U~w66c8Uf=b_vE9q*RnKxSSv7T+ zaHXF_o7%J(aAdVIhi!!Kxg($be|UTM_$Z6(@qafLNFeZRAl#HogrLMr3kXV-NEUWs z7dC(b0<9=kjZm#1>;e`c8+KFkxUNu@)?RFFtu3wXNBs07#2aJ*lK?6Sc&BPW#b;fW zn{qe%d!Kop&4r?^-#>nNy|T|d^PHJEb7tnu%$YOiDD1TG{Ul)3>x(WIM7cs?%!3)R zXYzZZiwlGY%rf6^<$Z{}_hv%m`*hwfmG><3-NieXO^+KxO!yJn#&P*&`nZAK&>6=f z)~kz$%hyik*Pg_7TQri`5fb|)Y=oI$a4W)F%VZsyCm&~SR}H%1D;n`)X#f;an*+Cz z!;nQC%RCRi{tG!W`HqubW{Zr=ASjjtY_6h1)?Di^kuLUSXPIZ!eLVl=7{_JN zh}mW1>({_sk5z**v+Sg-KwrKwepv_{F&4^^F^8!%N@g_xLJBPYD5EgnB>zK~8)IF^ zVFZyWAj(DOqWVAwY;Mm=+^ub#G*qta%6(mjbzgT|X!+DMzm}L_-r7~KfvY0priYd< zObZP17HwN0`}e_+R<|N8Pwtf=_%hvk@RGvq5tf*Y^?_2D@bz(h#kR-iU|; zS%+AhWeg9r2PX0u-a9Z3JPNFv9K&{dkADe@OE570v0N8ca*|af@m8?7OO9E3r3ecr zMn}jd4hkL;X=P%us!GauwUtE|((jYYabkY_QjlhyLw{;7^ohUl6st8;IAh%!NU(<+ z=kV$s-TH;*?RtlZz5*oWnyD0Tnm>swXFu18W`yU@KzUyb@ME-xgvitComkM`z^$gw z{iDI-wuVX3oLkX9&^Aub`dZuI&q|K1b*(#ND;uj%U-$LcD*w8qH#&nBjeU)v387Np z4e{wIn*Z$){x<)N%t>A*6uAZ+r3V;`(;NUp&0)S|4qo|Dlpq!cI4iox|N;83I+{dm%!jLrHV|e zO6*;T3~Z*tpn#2Xo5nsajeP+WIw>G-PxbXP%s;YQoGn(ZINZTlK(x3{aRalcC7Tc>5b` zPH!mbSbPJscKkw^Q2GH%t0sOx{ec#{WpN zXmNi~kBh)=Vl-zNP24;wnl}bN?wpRj<|)L0?`uoT`83Lt+zvUGF6U<381;^^<0YPG z&QM|(|3oqt^P1n7iFTh{*=@~8yYF@0+hnGNb`oJ_sD*@1lBox5yY>j1ZZNUysZARs9A>!a}em>aA``x=U2=0BI z@1usk%kTWX5*)UhZ;Ouf;#>0@N8Q>F)%#KP{+_%ms7v-pw(m+dM?0zcO-;XRMe)w3UzN;pl5!~0&smuU7_cS@53)1nOd-jzCKha9G4VW~2`h-&nBKhjJ*E^pJ z1K=)8u^hX8#VM8Fn1r5zK}Rhuz9=u#H@t#ccVXXsFy@-Ija3o zl9g=XZPexDy6CX_u!9eD*HI)|f_ zlDLN0jc1UJ zW!#&2c|8c>gTvZX%lw567}L1{;knG->%>T?gUGouh6y8~azCzg-&jWkjR(`zbb%F2 zVdr{{u=WQJ2z!j?hzTE?x9}a0cswZDh3?CGZB<|3*g~Nv6ZAHIiVYF2#^wCR6EVG5 zC=PE)(bh_lzUaN(?LOTUX+&LVIN?y+eNWWYNy0Km`1D5dc}z<4u{bNlFw)xID!#^7 zNJE%sJ)(2Ry;)pwRO8ITCf_5t(a=jDg%E3innx5nXOSz2-FIzV1Nq2ojk$cEm})u9 znd(j^7H!o}WVVVZn&6v368h{0SxhBVCI?o(mzs+&nv>XFSjGf%wKtl>ncCW+3ieY3 zM59#b3nUq;4)%k-sCx@jy)P1#Y$j+Math1bMV%J?$gOSMF1VIPuFIMb$+=&`Zar%} z%ab1`%iOxBS%P;Z%f{0QnO%NLv@CLsi)|OR8{jG5epU%Rtc9a zJf_HSuj07RE)yvISr3n4#}Y$)5#?XR%U+6;(<)zd^i^IqXvj zA~tp=@`q`7S>ZX2h^OChMMt0Ktf&)NzWrU7<~`+%C9^P%`{uB{Vw(F`TVo$)xT2SK zcZObOC-ZdNZU5TIlDynzySIb$C3*5{4?>!V>W(XjwegAxl=^FP#Q<;K_2?++jj?!E z1)?&h&Q%&1KPSO>CL!DxaDQD|i2fwh{kImv$xB3aZ0*4(z>_luApou!86|kQ(Lx#Q z5!4P@2LGLEcbm5O`?PYkF({c0kuv+f--ZjlESW@$w|vU-EC4T+vJ*ZeR?=#LP9`dW zDtc5Tx=>1z5fcei30uQcGW!Yv;rfz(NG+!m9VBr4u&n7g*?^;fuS060Q?@(k)YId` zr5u)q4>v1(9(b<>pMcz{?kc#%Ma(Ej-vtocj!2i=6qsUtfo`06w&$1F!drx+BJo#p zHvgBEd1_Zco-Hh1_LRmhgnlwSj>1O0ktws}V84`>nt;|RK4qdKm>gY6K}INN2C%FzOM(W@Jb@(47J#qJ90ZtKE#cY z`*EJamEmJ6>Wx>=KqYm`4w^p2?Qet2y`+Yg{;b*j%4>tQC!4cI>7pXDIOsHW5n~Cl7oAr<8f)NWT1dGz$>bh zCayV&L^CjgVsYCUk7Ed^r_*|AWf#yQB?j27dzokJ>bZi=lN&sO|mRYZ> zWpbC2$!d|-!^6|7pL7q~3yVcf_U9CxRJOni$QPMHin-RuiLnv#s7rySK5^u3>-Tkppy?Sju(aM=t3M9(JsyJgb`02#3AVyb<2$ zh>f1~XQdH_$>rrR_{xFEM%N}5sCvdS#84TVTvZuY!F)YMCj%dO?MPDt)t=;QK7E(3 z5JN@gIY|*~E4&!_YP`{sj?4pH>3SZ`3xhbB&MJtL#i%d=PtmT$BU1who^e8i9mf(K zCEz@M%oWY(<_tA;@LauCn4g@S+kD!1)N@&eFwv_sK98<>Mw+%xtNaD9 zRKZ1ahLTxo2jbCu*n5cy%ktWHdJ1bjg>~ioK-omaJd|2>F%zTME__h!1tY2qU-}B> z$!3w%SF6R=S?XR5N3un_4ip;4kwb%kcM| zp$|2lc_ZB6-HP-sZE~YCcxo22+w-#^FCVwadCR0+8;g=lorKp<%$4Yz&TdjJcIiG9}@+uz?AJ2k+K!T3hQeL;iM&f5MR&YX|GPxueZQ!Oz_15o?wb+BJ~de*LBiEe8^4AIn&>XusL6L zbV&%GfQ5TX?R(?JV0(`JjCr*ov^AfTmfzu*U9FCU&3}J?x~S{iOZ=m4<9nI$^N4?_ zZG3W{f}ctJ18w6!G2_P*|FgF7yUchFEk*|0#&0y^3q(53{{^PT&v~Y_lJWoWr$^vFKDz&9*<;zur>|^^p{vk|JY@vZ#J#7Pn?*J!8jt2cqO> zu#!@9Puj5UI@X{R;Zpos);rUtLcHOkBs2y&w=65luAWd3@Ms(BIa5kobYn|(rl*iB zNg*lKxduFjgGZtt0iA&O6fnz)|8^~iVFvAAZRk`*Tx-SIpP8H7?^f{-RgT7J$=?#6 z|5p`1$M~?$13k({HGFYG0b8_}rKNp^F>Pb{P?>ZJ>*-WWhL7P`&zE@! zx14nxvz4djn^V7jl(x~EhmQ(o80U-f z%X!H@D)MAcDFFefWVBgQUB)!tTo;s_ShmIg-r^Yy4cbMpRn~X39_vE$GZ*2Dt#4DL(!tJ3N>`QMLitKfehVc;A(4 zW0#hz)(5gI2-T)}ica}2hw8q2db*=5dW1_WPa8;a$TZnyX`@Tq+|^xF@5f40@nfJA zpC_z4GJX^avsupQgfvX`k7Cd0zc5sTG2*&K{W&5+t+|DqVmPd|9-=vXzhom9!Oqbi zIB7#Fle1PxB;8@CPp|P6)^qqa+^g@P`FFQ%{sGebM;P}R{sD4ASVr!Zif(h_zk5j5 z{!a6AU|(rbZ0Ri4DCuQxFrTc>_OP|aL1f;dZoG})kP)Aww5Ye6K4ny7$|yDzS16(O z;?ZRLS1a2IWXtOWUiH_M{<9fzqxJnFUbzfF7AozcZFAxUP#|^wHf^fv-;la^Te*%hzc*eyu$KE!a;>MrD zDfkEl>0We|Lv*BCbtSMfXR~R6Dw=9`-HgOIq;>6)ADU9RJH7Vj8Vy$<^70qG& zyRUM=p_fY9p=RCc#)w2 zo?ohznER`CoD=^ISqfpTKcVlO_#bcW+V=hI`#{`pkM{f2muFM=d5n2?AG2)li_WX@ z&cb7&PVuoQZgQ3OxH5wmUMhQM)7U>lx@CPT*l{8o|;Fq2{Y-t?|5-zP1H z$;qWhQQhoHH>KKs)&VhB(Y&msGd+<$zM|9U)IkTNx$M5{{ZmE3h93HXD8KyXh}@Pf ztruy5n4=~^V#Ma&gp8@5DJg=#8<(I(;Eli7q;biI=~zg|5wMV$$0KIO{xQl_F#w$a zkPH)-Lrt9>!5!iUUg-m{1iTk;6J4wz%C+eqg1^2s;gRH$z@GA7mT&HdBFnH+KTibe zBtQb2B#2kx&jTOJ3b+&$P5ZH>>?-DG{nIWq+4xiPe7k*9o@IXq1EF}T=qfej99ue7 zPgS0n(>IPMWc`0!?8I^#_5;;HKO`=7e;$1d(|O0cAP88lgFbWS#_d)SbV51|G3|)!tW<|e4H2XUG!#Xc*e#u?Ok^=oP z(c-eD&X|3VkdUT)pBC@CN(p#WUze-g-pGgo(WSaVZsRCrpyv-sae<2yqJi_?V%67k ze`@vhHV%{G&qU~;q#9x#63~tMGkz`ldn0%t)87|UpQ#4;NU4JF{FJ3ciz>LQK%_nN zw2!p4T%1oDmx8SFpPNNB)v(AXU_3d?qz|5xJXCW0PgEr<&u5IBxBzd9K;J+bUAWW_&y(zwh_&^a;O zD;^s!MZm?Xkp73-T$}zr7jy9JI3Ty`?@iD%@Ugg7nG+XkE14oz3>B?Yi=M0$uLugr6T7YE{eqIiC7Gg`c=mFDH`W@}f z4nxPL*DX4pAYiPxKGjctGoC{Gt3m^jM19-+54B@BL+TmUydbVXq9hm2yz_Ha8@WCb zw4$obsDVyx(>0;wW&UiV_Ad&k2MN?*?+FCrl*|`cb-_u@iAlAO%tx%XC@f#wps~E` z6FNCm)DK7Y6@2HAP+WoXAr05^_&7bs`gGb<{iq>M2!%+4v<+E6_mymVkj)!=gyeNb zcXIltoq>!0E5*x{--ed%w%fXk(IbPI}AUdW(TC_st`;HAZA&ZrTDL( zt(W3ZV(na1w}g8swvV-RW8Mn0e_TapSZ`0z(Td#*6kob0aE>{+&wXm*9B6{<#70bF zuZhCbADa`@tulnI<5JT~2QD#EGfpRlfmt*gKACaiV5hrZmvQIS-40wTz|oS%?lTmF zxdSFe*%@--b&u5L4xl6M*Av~ixof;nff9K=k!P zDi+s4<_uJI>Y?yZY@6qA}=P~L;!stwDY@UZ}#tp@EU~t7BFVY^_n!i=Km5XF{u?oD}Z3H^2VK!9_cB9iQ zIZ!HTJx@ZLAoSTnrBIyt)|M2SZ<}^w)=MeZerOGdKQKnrq|)2NhQJ|v`FwWUxNTp& zkk!TzHDv!HNmjnbT1nj5RzAurYIj4ljo3_6hi$dWgTiIn#*(x$y>c-`uB{C4dzlGV zl0obe6}zlWYzJcRQL)S0#FA&FDA&|hu51(AiP&<9bypyk8<$@!2TcA!_$Kv+>KxA6 z@eahEAYZF=2wFh`?*To~0xN#Jvj`#{8Sl_4l?rd92>?1W#pYKa(RfZR3pJmEpj;(#uPHCO;gD zPwsJ6WhyU+a#DfN_Kb>?V#=5s)3xJ!*$`jWjk^I7+n_`@n_pv+bG>S=D<(h9kcmFK zP>9YF>>#hw3^GXkLyYz7vn{{cfjLe%s6Rhw-UjpgfF5?t*!9nBTVkw{1!Iu!fhJ1G zwfXn2x2FIHC*BZ(tEQ+pIlPBZc0Mz28I9D#Zja9)j3gn_C1bM;X*pni+Zv3aZ3|m? zBNgdxhi2hdfafL84&lOe=1UKIihAKKW=v1|M2dv>y+oWRnt6IS_c}7xSj6;q*ER-z zTLvfVgpR}HAM>;1&N8{Fvs3ux#?r@y;^9rgdXWv@B|r<~PxERloQ7@i7XB~%vl{Xx z#XFbF;@_sD`eAf^^OE)nEcN}An&$dc@LYvD~jp2R=M}_ zxUI_F6fDoP`4%QT8})O{f1M!@Lr29;daifM=0siYJ-pgTR5)z4teZECWX1 z^+xX#sStS@ zSbOjxVR#$VEuyIBVCZD_;(5+c^W;T4f-l+0+jdW^)*bwV+CIpoTNJ|Ht2vW=ej@df zn=)S*ukp%Uym}QeS65CXjTU}^uLd_-Gs`ttESmglnga0-1lIWB~jnc%J<3gdiSBLx| zMPkzaftYqA(?aXW)LA>Bul+fOBlRio4O10HBCE((=(|*@AAF|CgzJZ$71Sx2{DO6E zQT~_j3^(+!)p)CrCj%}>v`iFIO@d`~ee-&HWUcfaloF)h1mlrbTXX$%sq!PDPRUEVB1RE2T^{8*G}xHt9R^1L=HS#SgOV>ZfwAsyvhWMwF;AHOyZ?ac-_H0sd$26Jj+N2E z;Ih6pe{l=RDaF01b@?HoHJD`&=GGXwbCevCTT$pK=^s2lnevP?M7HS&G=#$z=*%OR zrV)2ek&y5XwHG=~fc~lGOl#a(<*Fe@S!&@V&$-Y-o^l>7&l2l7)OzMyPY2Ihm6}zO z;yr348-e@OAZD#}@4Z;~QM9F7irSdAAu7k;)`BSuLS=-v`>+4+7fZD-vr~?)2&$D5 zZQQb0T8M2o;kOV+B!$)3#kGFkoDek zUW)Cuhj~}QpkY_TG`wPCY8q}(dS24GWEP%d-tsXP`nVj9XqbfrtYYOgl}uPp-0Szn0pdY!Q;#U`nb8l78uG!a%pV=ns%aP?hh5f&4+bn&+_iE~Wg>ax3W z1B9eqpL{meuB~(UUnX|7DR~A+u9+)H&WT?Jg8$aO>~R+c@9A&z=V=?R&9m>;8$$Jt z;5|KTnrn+CWH}dohp94YAh%losP)V(wG+zhRWom|nljH-HDUgLUIkUn*k4upp{wo6 z#H?6|Z4VWD<^NhMR%k9xXon3d*5;8VOLwaG%uTIrFp*80@szjC`bDkI^f&b#D(5-z zA!MDJ&sG0U$(zwpc%u&3IT%F^|BD*MNL#is|1;4Ldc(fKPXLu${F~7@h2r>{Ru_U$CqxjoiM_ z8N9ck8z7k-SwuxP2dSb};gnc_r|dw}q!@Dt+IN-gl?G`KG%&?R*V7@Eo=^(eW?6~6ZlaCg26v+y*Ya* zV^CrG32bKK4;7oK*d|<}b=r)-b+;@NM7UD=P;6fo>KJin_RG9I9C1GqYs%6#AJR6= z_(g1gmO?v_BO?jpVc~T0#aqlTwT&x&Ri>|afah;`R`Gm{=Yu?d&+~q5!-}=~im)qjDvg zxTp1~=<+dwk7^fhVb|d+xRcQKquOjyUIN( zAK;uZC>fl5kSyI)cE$bj`YEsJ?l9*8Z8EtuRYGfKLrGBOiu^<9BkBHEWfP1jk%mP4 zL1h$dpV5ea&uCO+tq@RexTMk~UyY7YWz8PbHg9h{Styq#rWcG>BwA>ZNWI*p&4hRt zZ-11ZhNIdns(fQi8v?~{+`-jQ>RS?7E6pG|n~iX;oL!Ha`P6Ge$mPaHNjklN+auCi zl2q2Zh}F)4lrNQ3N|to4f~n40SHU1V*D&raC@_8(O}7=>=-}o3sCVYoH#%&9-QX%1 zVq6|cw`t$Y^v!YDmUK{w5JQpZQe%GmL>*cZ4K|W89Ul1y1gZl$GFK%wCwCeK4WeBM8jJWO*Jky z6OC(|h~YYj9VInzKr7WgKd4XKhLp=yP{8t6o|nRucnoFnI7UT`Fe65_M2t2gN?IaZ zW`w6D!e>TIm53vnqsz~3chCx4I+L+@gb}1(?$l=P=B43?cH@>K+U(4l0l7B9)>Dn% z38t_)FpUILka@lg6Axq@(PnKwqWxey^^nmg)tO!}R35&9QAf2Okn8LQ1xDxxy9G?X zlY$SiKr!iS5?7v;1DC!nhoYEj!F#|sZvb6FpwzY;_dWn zL1%hFiHXjQB%7Uiu)kDrc7qb22j;3ed82f0q0zg1Y^~tz##YQrB&!<=JZ6ql$#E~a zye$=+{SIJz1s(Zr)_hA~0v}=tr^4k2sWB_5eQh%lVx+1H89f+up4z6KSOid2)wq;Y zb)#%Vvi{aGl>~~BhMqltY;7|I2+Nl#K&Aqj0`9k_fU5WjG@gw;*PLU2#@RD_Gv=qC zZdBVQ4@)=MHZ^>twoMP1v0GT{N$m3yTQ@F?DU2OkzU*8Q}FQ%~!R$!P1l}#dg8X}wtcV_WHpT!K|COI#Xg(3gAn{)?#kxQJx6)XfV3NA-p zeE~8tg#P0OJ4)?SqaK=slIFoei2Uvce5g`Sq z!llHF)x#rYh67KD znLcBc+(JUDP)U%(LJDwB?HoQruw)@EHNaA$lA&ex{Yz_KM}e!j7lLGUlG}zF@xL&? z8d;<1%9eh5u$y#N)B=Ce;~DhV3+%z=-EIDH60dET zG@z{7Nawo#@xwCf)|im>K>qu8Yx!WFnm!4L>U|lt;|6j*akW`?yx(Kl=a7H2><_Vb z?9^YC6MxZ#mObL7e{LBIM#)r`*UG2-i>Rb^(jNFwweJNChj&z{FQHw8WG6U?pUDMc z5K&`Yn7xH7+{7#y%!SJA*El_6J2udU(1vPp>wI?Ro<6xY!mknTvQvc}J(geZu-%i+ zY~ZY_QHIDl{YN4_>hI{pQN%@3#E^e0qOeU77fKN(WmG9YA!o(Q%z}Po71Zq<1)1CQ zSDwm{J1Tc&xJErCt75HEbUL&RA)Ocbkm(v_Xq8iF!gV?RBEhKRu-(Cv_Dy`Z^*L6O z^;(Ix;TUH>uEWl%B^?DIi_d*_XYJ57?B*EA)#$9cUT%tx?=UJP`ZeMn`ekSE*|*v}227>}{c0!sS^Al2QcSwQLE03@u@_#Qx^6))1& zI`SS|PLB!8h4$cb>1r<#qTZAH>GcKLu^0!)cc`|hvDZX%g29tFRo_G=Xpv`Rs!98)t{E*r5fyy5Gixu0UCDyFqTYPZVd@hZdY6ykyW{IaEGC~+F zpe@op&)d_}I%MQzWqbB~Iy$QwbZp!t*EZ}hOQ(?AYkeCE6pk)wdF%xnr>du-gVX==kte z;ZXTBF?TWi56_jb)CSA&@$*4iwv09}3Rc_Bd9Hxws*Zx-GtAIp~W!pHmIJp&^4sF$H&PTkvQp*mZWn zC8}VKFj@=l*;=sgtb$p^Nx|lzhcGsu9v3vMf{Q7b^;!r1CvyPgxSpesheiIZqMo&{fD%ft&KZJGB>rH_nP`M`OHhCyV^>pyA9_i;T)nG#1-9LhO;)^ zCbyc>mv&K>26OXr(VZPpA!{3FQEhIJ5qM4BW*Q)H4K#?tN*0dbLi|I^H0GE8d`%+z1gdOMQ^E& zbhYWbn0YRkF1?7010!D~O0;k5u)s;bH)bdeY=1%ML{eQzDCOb;dx3^IROxoLl59Ov zgH>VXW=1ypmuMTxVa2^bi*@oEK_@J-fK0&gnz5YtO`yE`>Z@{60XLEJ{-M78*Nq!YX@H(y2hbQUngY%ycFdEa340En3$ zwlVUTR=Tm*qTs=j8C%4W88y_>Sjd(^$lCr&$h$5CD(%jj+Tm~dqfqF-1^Vb+azpr- zTQIMsv{QNt^DU(*%)cfM@)|Z1^O*UHtt;bqz>p|Qp$Pr=8#hd`eAR(y1Bi0#;jmH1 zTuugOAvz31+v^KYb?e)(JV9>)vj#Q@#+(+!Cbb||Xcqc#3XM;VPfP;-#Eg;MrqEBx zq(xg6f(jPS7A)F!j;F>+w{H29^DJY+Xt?Is`CZTo$q1k)P3Q4&Il`FINWY;M=80!z zO|+n2TF()*p84nAc_^YvCTE|A$&$=Cel=V?RLnIzR^R=MSuXlxq)P>_!eaA16|rg- z+H!|7kG)>SHc8alf4NPTIYVG0#n;Fqs>~!CM;MTLY*-D($GTzzVk$jZt_5^TY(i;Y z6#F;$t}Y%-0{=fqnW0h!s*UAnUrHT*!O%2r1To|*eB-d(0~=4AC#Rcj^k2Prxw)m@ zTlCtBLQt;lm1mn6>3di%A$%-bMB~oq)S`$n3o=AY^#jfq?FAB#HOY(6FcO^`<6yN} z_?1sfD=1SNkvXrI7By=jSxA@aUlCqh(6&AdDmTsAWocKZ_QbZuSy(N?D8?eARR4nK z;-Ng-)gSl{p%b0_y-4Hl1~tfW(WkBB%URn2qz*C&u90gP(HRZ!mtLFGMWHA#ymIfd zuKEY57Fz>Ocw`g&R*4Wg-h&7!tqr~PIj@u5ref%21f_F9k?=(Td-Sc?O{f(TNNESh zW6`+$C38X+Gt6f6R_;g`^Hj9|Ml&%%=ZxgJ}ZcGxaPk?vZE1d=2Vf=7rmK{Lfg5 z#TCY1M}TbFTDkPl?t4lfUO&ntW=sUw7b)JGmxocpX82~*}b=X>4_akm%YUV z3Y9Umm@71%TQchv=%Mm{7+|b}(-g)q&GV|-*IawCu+G7M2EwNo-^atPADa{!eH=wG z^Nv8|Su-y>^(2Q!7geNmM4t?{*+5U!GY-pW$xTn)Q4_wPEXua7ueq;r+IaZN4CYWe zT#urDSCVpN7v}Pw1Td%)$w*zxH~H=L(~MgIha{hM7m|cmNq4)Js7U5%VqgYW3p40a zw&twy&&RXIzo1Xs+{%;j&v$eD6ELRAH^x6<`D6TBAsB>T0KRVm+-gOub-V&?{Skgz zkxc9D=v96#wl*A#dT6Uf15Ls`2`y(>%?~-1~?aT}x{gattdj6F?wbh4ICh5I<5?-$|u{&0Q?U%4NY9qA>*JqgF z#XYpj9b^br?>%8=QYvmxSAV23p`LxU)sL!7wBS^*ZBUsw1oQ9%DwCYKCFg6Em1ZV? zhYv~B><$+tK46u8IbpGXA*DmNFxOF4csQktT74UubSyyuZgo&4gbsusR|z`^eZrTj zgjpr|=V_JQ&4ho0cSwopz00VtUnNZMeLdkSl`unS5}tG>R8 zQzvMv=c$C^$xB8ebWR;vs%X?eLHLt+!35he}2{kxX!9wnu9(ZPSI^FIS4)! zaj``!+7$Yj)u&CN&tenc3k!z~>67ZP1^VRAgeKRS0B=}0h@UtuY_bvMFSl}-3D7fz zgY>uX>#C!sY2Cp=2nY^8wCIo}eJuQ<0-%kc!$HCTT-kyH{VMz?1(1<{1vtEB0yJ8+ zm?C{CY!2J0Lx&B;mx>8++Ujg+(tpC{C`)t900#l42*bi5NBT_o233S3m=7gIYze^s zq;Qaa5_TzojQpR0!$cF{Q40rgPie}{Dw3uP>OvD>kivni7Ca{HPT+o3D1n!LXT_AM zQiyS;K3%8CON_4aCvaXWpRK8U;;B!!rBaooKK)NB=X+E6JdlFvlgej83i!rUKI2oV zzD%VmO~v#|#axogCntsT&8d7Art=6;b_N1G6aq<>Ph>0QCtKqM zNX6?oPwpK$poMDBu-n$|6D1Lea}bw&E!3Q~_y;i~53#fe@H#Fn_1*G5i_|gMxwf&9 z5x-;qG+hNp|K1nvF`wXsNZzlp!LX9x_(~ANVTsr;>bDjDqRXEA# zKv)c{%!&WK6mgT@$EA1Ei=6sU^}Pi;(Zj9xCZT?nich^b#h)XUBb{4!=tcT)^}0s3 z7Qg1dn*VzKk%T1o@Q+?>vWfrH{kmz%U7_Rv?Y_?NylNZE2w${|%--HxMnC7X?@E4B zEsUN5s)aZ5tT@(0Z9+%-W*-S1PS0+1WyhYADXCh`QLdPProl>(o@^IOEj=nu$%-M+ zrJ~uU@yraJ)cjBL1(!)Qi1}5kj1UerYg*+h0%UMq4-DA=?+?dizQh`UqguEU*~{hH zzM!Zd8foLArv6sN@g}g(KH=22J41&DIJ40kcqA6+suD;^;nCDsKNLDNz^U(WRveLJ zuI#t6>kzNk36cUjtw%{1KTf%TIx9}tKswOh!o8=3J7A9CJ*WU)6Isb)vPcVDfYnr~ zS07*`O)fBFL0&4Yg|`aW*|||q1-8hlqZa<{IdW4}liXGb7;joQVC5DR0m>s=_;z^@ zceqijyunOw2jgbj39#r{ajJ$x38@&J$ zj8^#=#4$_LD&=Ob3Cc2$uqsA@{|xX%pjrmEwE0qADV{N`h3`;d8Nz|-062QlFQg%* zHO^>eYuFBrfy^2Cy}%?%2hqYKNp%*Kd{9s`1z(bAVGSr5k6WuVSR6^oU$gbnk5_P! zFNr8=xAY+4Ep)ev!-9h|`=mR&G1Zx}RX^G;Y3QM(aUwyiIBF)ABr0)s%$@y?^ix5o zD@9${(~TxT<37_Ve!Hk#E1bse?@97Hf!b4nZ0_(#PKD?z>9zLydYLnt;eE2}C ze47ud!iUB{9~wd5RdHO%n_ZXvR*E*DM0+R#tpmQ|m;gW#2%mj8dxu4iEz^IJv}bsSRymz$<%UUhBARf`cmd@9N;j8f>&nuoHBle#o_~PO~DmtSHI~K-m z_jIvwcRSk`2{grR0B_ERp2inX%I?l1OmO@4CKy1(Ri-haxk|F`FNUc~(`^2;Nu0g~VO|0%x#-=5$3 zG~^xWA{kY!Nb?sjqEpa@+%hVbO9rq0i3W@mj~5`Tseigunwm+Bp2va#A=feE7k!T< z6FFE{Xfl373L;Ir9~^3$vX*x8B0AQ4Y4piM=c_(>Aq9La@A=aA>N4LTEPsG)AUNz8 z{-eoXF2I&3`EX=H9_`#o@4&^n0Xp*K$dsJUQ?fcwaU5^dy9$f7CH?2iGimep9acjK zRuXta*^L$W>fV5;fWr#3vv0s+bC`Z&FrN;I9MRz)RFRaeM78ZgTes(GGi(DjSA9iN zc74_2p_y~@Ia~FU75f10T5Tgn;n2z7r{WX(vWD!$*0IBLlG=oK0pG^|HOJpwnvS85 z{k{6d{ZZV_+{+6pw3%?$_XPFAM%D-S04oP;eg3NWFF%Ha?qGn~@MGObv+V^5hL}9nf4-|w0h;2Y9 z-QrnYyk@e}69O@+1>%n?kJ*{uQ!%qLFE+o-0PMyF0qsYGHe`!&j|G^^J4YN2v8mF& zzi^*QDt_oIsfnXU#&CJgX;4S=TVi%?#ukpP4@sVlfEYsrw?cOl&LdUiixSygAza!d zr~UOD_ILSTVzpUaUQn6#M62LNG@eBjq01VgK!p2L@85)MwjI9^{;D^J4h$Gpqt@+9 zm%~HLX?X7~Bi8%uwaEjqgS|taXlyDL-;P$ji2cFQ(`vsf>5*FKRVQ$9hf2u^c)-%qP`gIvQG+#WY9;4Z4V_eJDJ(* z6a=Bqhmv;Q{(4g0q|b-yPKA;k7dy;!cekbkq4xc|BXsS_e<%KDXV3}XC2#@HCc4>& z5}C!zJG@}%I#)XJY`Ua^x;dvUSY8`2#>(t#`|{)LO+wKh^U_adp(K*qiB8n2KcVa+ zVXb*8@@Z3QJmdH9HJHdv91FOyhY|ZEO$5`|NVGmKOFoTu>6d$yk{J^cu_9fr+azle zIl22;56sjIf<@gigp<|i$lOQRV2R_XNhPpFtY3d%{G7~&?e$p3eN0A}k{^p*lM)m< zA{`4Gin#9Z7^g(1JYeBT$9H_uaepq3D}42yTN<&%m}cZq8a}&{H3}ciT@N-1%YBxT z`nKa=$`+JASF)dwhm!z(N*)XBl`Z;>a_;oy@1&;qln|B2_yOKp=~XetCUbD*Gju~- zs%7CIX2IYmj+h>F`u)uc^mxV!bg7nrwqRrpPaN8`8!u?#;G#%daM?c<(BAhX0u$$Z zzs4)gf-_`ohPF!RWr;I@SoB6ZX~ZAR0?eQ{PFDKHvU@WVe?T zN7E&QGoMArRA?WeFIC~EB>Us(q@f1d-jDgmm^&4OTH+(f#QF>1Rb|c)cuOV3*sQjw zL29yxIPe7%Jo(^L$U^W{$>K|ug~DE30#O?>Qn1*MPmnSJJQSb;;@c@9@YF&oB>swS z$IsA$2Jq=I@vyYcsG&Q`w0U?ET9D~g5pVEuLBE$Sk&k=H?u~k$(CBvVmjL}9Zi*5h zzl4j&H-8`qfa2Un(qNK)F8>QMbIpt$w8zb0Cz+3OyaDy*iPG1?_grP#{0~57-eF1p z8b5PEd6YxQJpZ7;9ph(|un(Il} z+#o-1%TH68c4p+?`Q~A|RULLUi(;8Q&YC|W9a+LYSi#6eqf@j!xnYg(rmOO|*ttb5 zff$z9r-+UxL?N2C!9CMvSSHqCImhYNIv2hn$Py<_e{jSaS@{I96R+dS#hCh zcEHHGOD(QDp(U}RKK>N-a7vXp%Wcpel(|QLA4w9H+2g&vk(pUiL)>uzz0;`_G|=Yd zNIQ`u{NJ0b@fG3gbgZ_a@2bL`5ba&xS?diR4?di{* z_V;)kbKAe*vDa-s>Mq)|_&GNR*j=#x?#30~-zD>OLeLMp_bX5zJYXv49=yGaXklPR zxUJDmX`puVd!*wt7(!dQhQYxP1*C&HQ~zqt^=j>W&_ zMZZq$A!NZnW2YD^d^Ub2Kb@=BN5ml99coX$53(N;L&&l|oCU3SJd<_tl-|xg@&83H zdMnv{T4}L|6eoj#o zcY?0Ig+4v72DQhl2G*rji`51dk?x6HpJn#(8v1y5lmAOUtyM;8WBwA=$yYH185YvD zrL$kvbw|yA>hhaKi14glOHX`1Ax3}4U!dxB`T=W_ys(IUycqBlqj$1yW|0gjJ9c2w zVOs$;*{AONf(6>f5fg=+dk*m1k2+}^`;IjUiJ^Hqu~0GlXnX^y)Yy7I@t1!a|7QCw zw%Tu{lF#jjO0?f89uEHW}*?M2lWCzw~xw7AcrVSEz-W~z$ zzh^%Y?_50Ld_A@&LBxPPA7&pJM3e4`e?it%eNw)v`pF1Qx|=8|J@zS0x}PRJMU(E5 z$QP_8-J^vzOFEGV$uX_jq#cF3QTGk7Sk;{QHFoJsv_`%-kzfa`ZJ>S5!MgeiHQJ0f z#fKCVYxECS?Yri`Wnux7Ynd(TAE2sLNVU|mXZn@j*rLC0X;JO-bGB&4SlaLqRltOI zo;0^bR-yCxEo9vi7rhCqksoQRkBP@G^nj2j;K0Zg6K5jov7N_uMadT}O8S5N?`=Pm zQEu{}?j8ow>XO*42YVBNeK)h2qN-Gr+ODlIn%SJ`ZgQ;E_juLX}JDujKjMF-n`DqI_E%fa7 z);2}Yo!>}Lz9@QPvQd#5iVCTrXpZ&CJ_u);8zv7hNsS@$F005?wkafq;%P7vK_-@9 zXnn}gI-Rq0wi;C~?TNjMCkw@|gyQ%j{?8OoQ6CwT%C|NR^0zd>zp*T_Y1C5dZ)$^< zs;Nd%ZogCeF;C>aCTQuodi*F-xmw10dVy^7WMk4fvf2SdxZ2|g ze8BSDW5wlJaXUTw#`PqVBc+B+{FZM95#=xMlM2MHY|pMV5O? zBX<^zD#dG=#~JBBC2$5Q9huWSa|#{ljJT0zY2gh-w*RJu|43YE(HB}}GYS)AENI4$ z5RMtWIWxn+;?kPugoA2N#1?Nz}`DdZR@lRku0*)HawiogL&YI zPUiEUoq4J=M4#@isVaS?YDR;ul(P_)atJaBDz4DXX_VYb~^c0(5yGKW06B3`@?72|eFyf?GHn)C;gxtjCUl;4Xt zRfRMafMh~J?=8KYS7YbYT~mHxX;GaPE|&u~7F6EI!Ys9i+`l}X)^OJdk$=QTR0ON7 zM%paPXR{~VxkfxkU?mx-sX%$qDvS(eI(qPC^){m>k|wL^N$Rb%+7t1@xUS1$3E16@ z{naWQ|B5@Q<63wqATq;bJm*wqs#I-vCwjD-kF51*UD;S!P_x$f)&=!WchSzpugK!_ zVYmJcQS8d}K-Tfy# z9yH@EI}&(3UIDf(`+edMKa=IWxRj;m7Zgz1m!BCdUJl@g@+0-7k8{swdZTmCN8DT9 zqheURxU;{M%p?V~E#;{X=kGBjW&rbXgDab3&x_vP9Cg?+K+gO0*`9pV-OFn zyHR`E{mT6MiXdG--iw)Qqn(%r*Zd}la>hPWaX4WF`}uF1aS0Wdjzh+}`86t~(TgJ~ z|2&FqNbU%oN?*Fx&A`y>-TFyiw73*fdT+`5rO$rKt?z#{;n?0dfIAIN9ggo z;{Pa@u0zSRT3AYAK5U}>2O_6iL$ghWiSPMzHJyZ(FM}DGsRMlyzYyWuZMLp3CG|P= ziH01X;k?S7;qPd%s$n(H(ft|eOo~n{C+iWJv}EA(I>DibWEx~%V-L#qq7ClxMc-%R zvt}YSY~bASWkdzCX;AB*smzF;y89lLocU7w35m--UM6f{in2AYA*tjn`*N&~q!&KBKPC||21{h*C-fe$j8`Wf>EsUIZ6%>@fE%GK@h=XI+BJyT(W2Z z__+y?CIHgsW>e=x2kc7VQ`IbBbqa|)Rqjr0Z7paBZ9JgCG>5TKl<@oACvbH9=!_b} zsX$#-f!(gE6?^=n>)fvc54l&=Y=Zhysn?AXfP|l8ZqOB3@e235lhurO)@@Txh!zrz za`K@>C+8*=213fQ3TQg62r}}V8Gph@4u30aBugc{BFmF5eZ?z04<#}rWY+EIYl^@% z#u}2~o{+y65-ZO?;?yp#lb_cx!=fyfxG!+nj<~c-PdG!#TdQwXBq}{2-7R9P z++hrP+6GrViV6_sq*ttwy8##zOvapgS79uV9#b9FSi|#NW=DhqXOCy$!Hi@^*>$&B zqYRg{D0<;8FUuR^FTmhp64a{d!nXC+>c1t`o-TtocaVbU-a3jz{*MXRsekZ zQ3j`TlUyypcXvWVKR;CK@K!XxO)v6K=5Wgw>LwoGJ3y2ouL5k)d@z16I(u*n{BW>m3FNYR#4&Sb!~oF9qmMez+k<TBakjpgPucW}e@-*^ja+3vZM3 zBJlc%M({=Ymx@bvX%K`uT&*C$Y)`LLU$YTOXyKnoWMq`u2HmV6v8-Js`9#i(bQFv8 z;rn>w`k7WK`#5FQ#S=Q6rmYf*AD(}``upC-FG{1!?Tq-_Spc3v>kCsR1muV>&;x_x z%>gYg-G(4&ZX)DOzNUrc2CPh~Z4(CS67N{Pq~il9aM)fG4P~pJTUKBeI-Q}dLMbp+ zdhCldicgnZzLxIPJ#o44`%sacqf80Lj2LVO@2^q2yV4Idl=eZ0t zzQmvB}z%SZIhp$q0wxRixJ z&RyRTC%T8QWlQH;l*4*;oW0=C=pe2r>f9oBw8f=gK|Udq0BNg|P*TcJMPhq}=Ph=3 z_Uon5#c96i@@8kn7F)jTNlw{NiCT1>bb`H<{ImN&$%%nynx(j1j<-h*Vl`L~+}M=pYQ_&Ho_*vXXqW~Ko8x;(LWP?a z%@h(y4{>h5C0F1@D51%R_LOL{DDk>bA~8*FAGXv6O-HLXpd-$G<9C>uL;N37Q#N^_ zruU0$0E3!bUle#%*y|KFz#^|Nx|l8wrrF*4>$G=` z)r4n)WD>ZFB}BDrV4xld{Ab^`zSRCN)>$O2cg7BMKr}zboqZ&@;&q!AUQ2>f9ZT#D z@ugrukBQ4|02w%}(m-_>QzQ8-P9tfSH#$!BHFxwEsV1b|wa}A-yK1?(Vk1^+28RQj zwN;-1C4DCyV~wf)>WZ#umxmI!nt7Ch0cGBjhVdvmXbpW+D#nEtDJQm{Dtts0UJtH# zkv`1ov66U~eu#?1pCO25ry__;^Ki4bfiWQUdRo3fvvgk3_%HS#iK7qa*uG zxBW|J#Wov~BCozRP5@RtLnzp-4ftRIc4gxOdYc6t{{xVz?vofQSaVdk9~y)8sURN% z-A$qk#$PH@HzhPuq|@QPhE4nQIrT2CAcM5?c{LI>_ZI0d%;ww{cZNP`w&L-ofXL2f z%e5^|=Qj3W+lg|E>iCsz=9{0Qzbv-BE%kKmm-eFtu*ztIDOwC>Ir^AzmY@0ThmuWd zez6l%JqASax>~-ZPhyOUO`J-_R-6&(*<$AMro^CBKQoaaDs-Y;yKe#jD%G>3LZa_Y z#=Oa0aZPeIdCQrW1jXWxQM=Da66s{xstQSi)}k}EB?|+VxrvLvDb0^s(v*@0Gm*ks z+56Qs!&&2h5RA_*jSs@$wN>Y*zA_ap!>L~rMLM+|loy|q`oz#}L9->{{*zX=B-E7xFaG-;(;SQrl@7GxOH^3@`zIbuPfRm5Bcfh~gw%UAs>B;<-dj$$B}Aoi1{lZ>F)7fhV5z3r|VMt3NOi0-Ou z?Pi`BOx>SOzW*YMqZ4O(0&{ypuLP|5TXMSFPF5pSR$Rjn?AqqUxq_2+F=xGamZ}!5 zzH|b4r)#TLled`&L#;cSs8UM>_m3ean8GjE@+!Hd)6!qZHfVLmAd|6dy!bsaeKXV`qf*jMU{<{IBEx&v3a8RCX5s6267F0RNBkUd?~%UFX~H z`G0}`(_|yuF&{Q7VcC{E%)gjKIK=;5{Qrgj)OjEdiILdIuENOuskneg+mo3$*;XH| z&HD4RA!4V6`ND%)3XwbHh##7cEJp)f6Bn>dK6)3j8MYriWbffHO1b0W31N2Q{P@+h zF019;02o(T(OOt!^{nW<(Ulp-p=D~NuZ87=LCF@xa!{bA4yp-5V96^d!oKL>4ghf5 zK9Rr1Q|E4wufw)uGe8Ufm7r-!#&k6%`~GO4n$582Pb&jR#$Ue_oNAbOF#WR#<`wqY zn^+bl5ne>76+VWkT;gdZ|3v&yKQTJuGS)&ipZyEjrafn(>7P?-|Gcyi=V&pXxS}O@ zOdAzSsAg(AIt%FQ9ZEE$B@sV0t-x;6fzqK*#lSFGKQIAN!xV+Y7zRyGD9Ub`>p3o5~ z&5BZUi~X@wIa>T@U{J^INDYuhI!x8TcIPd0@p)>`ZPmF2;mlQ}m0hJEj2P^F4_8>R|%@3g1B#fXQ_oTUvf~Y zAnWa0+u{~2KK458kqv?Mt?We0jR&bX+hz2}`Jj9n-g!c(AGq}_>OaeOy@mR9o^#aX ze=(r1YBC!pQ-*Z zi5~jFWXYn7!9(=qQ@1QsCk>VSf2_R=oRw1-_mqS#H6rm_OG&FQHqccq8 z(p4oQxhH2-5|f!x$Kw!+c=6_*7q5`yR?~Hg)F>({<(B6-sf3E?{J(4M=Q-z@%K!KN zKA&Ho&vf>)_u6Z%z4qQ~uf6t-H1R?D8<30lU@NP7h@UK8@XZ>q6#h&V%0zexMK+Jn z-s?n=x@*|~|Kn&LeBlAi zDjv?XZfBWsd|s+X^bL)tD@Y0C+9wkbYR5^0^Oo-sggyI@^(>4m`o4<{V!w*s{YXUT zw*BfNnc0EPfA?yd&3>m3*i+7@IOP*;rU5fGy2diCxED&$}tt!;h>er?}qs({*x$`HX) ze;!XQ<#7pKc02wnX_w1!o{Qzb`r-2K?dp^^FShP#mt(&_QhZRobkB9?Vrv4m$?1_l z%?`rX&(+q|C0u@Poze!fplY856#}_-7XniAC-N&}4oej&yEPw6xm*~3W35Z9yyL$r z`|6^-@a#h$o=U}6);JZvR~7&sM=?_wd!;ZZYeimr?O_HbrxTFx9e=9mH(e)d#iH(p zBra>Fk{@hR7HNuojzsE_25);mfIc^u`2Dr$AK{@-bEj3chrU51+Wdg^l1zQ|7R~($ zJt-XfOFC0m?qD>^Lo4W^QKo_lt7Xc9@J8lDVgq>Ab!?u#ph}lsm~0^)m-@)E%Wi!k zRbL*jEzHFEC2yv}l=~UMisV;d6h3eWub#eQELLjoYhHFRMLVuIX zn0q4A@VhuI(Wwn^G)T)impdIallTxtX$lerH@fZA0%?7L$}dS)wS+-NP)@5>O2AQ1 zoUPRlS4Ab_@+pKwLpvE|`mPxzkj_}9A8y8ERC9^9z{xe4pyrZ*s}1k*Xv5nzhxk{V z9HQeihXm4ebf`${(1g)gsL`Kqp+$%q{hk1|w@JPklfRJPc)^1#HK1}9vPhPsn~>o{ zH^bW|!)s247fgmBCd1-uoQ^>wkON?eP=GB`s@VI&T3(S&z`HNk$DgZs^8l5s+H{<7QLFU-)I~vZ-_$ z%z~>9V_4g3nywyO!+!CM?|QwF^s0_5IC^?jzTiVsbaZ>w*c`d6O&4^NPO!`B4BA8v z^A)#?nB#F7`|?oq&aF*v`Avr2`5Af)^TVaOW097T>K=InDT&KMfO_@Aqlu}-$=%GX zL~CvZB~Y8q&wBZBy6~a+i^TQ}NxTivKgj0*evbrFSZ}4lm+E+?Yi{F)aOoZRv zo4BkgWuI#J?eM?wyNE0ve#4iuCNK9@Nre{F7VyX$4Z}UT;;mW^v(juhpL(^7Q-$qx zpvp7MabsVmhTWT`5*?JwAMGjNF}`l6H5F#oyDsZvZt>=buBRz&zrj#$TP=<>$jW=$ zTqP!Z13V3=8t+Q&3aYh!Ztf@L3`NtTZKjYO5|%^a_-dc%U`|>UZ3D7Lrp-b~joidA zmyEG_4>(U1)?3JH^M6W)fBc%h!pVo`zrKsuQ4a@<4-WsXeTM1GD18GZk%{=#@|^t; z#(>q!ytdl+-E|CLxqvt8b;x{c2>Ra{Q0U{v?&`~c@wNRfz+lCktuMX5(CTaePy!#4 zi#1hNGF>qo!ak}!cj~eM_O3T$RrD%dM!N$3POHUVp@+W$<*(VH`IE8g2!Ok6fW3Oc zp4BqV-O=Rn%tGAu?C_%lsEypks=38sXoNB}42GVq_6qFnvoiuaPZ^px_>ckN|A%TJ(iXL1GgDKGwv z=I>GdesKIBZh!FBFP9`y6jy!+8A$Ie@z!;9e!8x?w9A#>!-M{@z8@n4_08M#G{2nk z1^dhYs5>UioU*UVuhIRHtj|*4NUPC14(s291Y(Pla&EH+2RR2-*|Xc#_3erTI<8MP z49ppjldRoh`Uz=oiHdwTq|N5ekxobQklsuAdE@~RLmtH zD(^R%&m8uKXXbIsx_OHKfaDdE`jLT$EWYT6$H_qP``0RdF~uJ$nTLCdZ*RPTa#G-A zdo6qN=(4dnzEZilJlUN8evJf9>XDN~Cb|CJzXx0fow?%0us{kd%K<4lGwXYmvajIp zef}2k=gyDuPt~se4`9Wuewm+{?jxq7lz&mJ@}KD`f4M?P`3D@b{L+0MCj;fDM|i5g z2jv%kZ>{nN=KN|eze}c*$vi1;U}2A(Y@RAzRQ_F7vWdtd>5r82W2U!eMmqq?p30x{ zF6G?JUp0SU@^_H_kof^^po6QAOz1>}H0NuY4!N_DLYmLfH=*G_YNKF53!P7AkPA_DLePkS_KLa$!gyA!g69@AC$vYL4zj7`?U0ss zz3S9WA_M6Z6Z&bRs1bz70x=;Xe9d%(wQVg#CTqTqW2%208R09B+>9fSGJptP(v zsN%s7_^FWL<1^5|Yw{%9Vy7f?`7bT&qfBvbH2~ay4e_lr_oNah(siahPJ;;%7|7o} z{Jp>*+^7G!^9$@>*)X|pEv+E7$k>MsfqFle|8VP7EN{%_pFqV%K1;Ztqj__>4<45N zso=9c*s3I>@;bBcG*+DoP9u)ppwaV6to9QL8`yB_a{>GsBC`Bph0bpvzSZh3t4YD8 zP6dYuE-Tcem7+KCR>294GSp6Ys6C-b7Lz*_Ji$Y)`GM3%rKxRca{#p+=PI>jM`Wm} z%g{7~g#AV1^n5SeS7r$1+Xl#xvP`bht|9f1q8hji&%zu|uyO|&R&R;b>AJ&&fON!~tBP;LHaNT<8u!sMEg*msyulT*P3WQTLMD5iq16HXpU`#hzus<$DmtK%w8^kgm}TYjui z&lbv1m({7@SfvX;V+bVj08#F)=ZhksiIG?v?dxqCQw&tX{ybdYS9~s-sqwC}q_TKR zI@Cd$gB3cFd|defb24Tw3#Zm9S5mI?o1)uNyoyw9-$riP4Qmx#0x}erZ0lg2<|JP# z$Z@+@7tL_WeJM?wwX_+OTX%~t6i92rj8t%0ffRfxO?nO?T8g&X9sI9rcd{b|+V?h= z0`FneoeUIiNV25RnAP^yHA1V}Uah~lcSGl73rp2Pfs>(^iw2Q<_>b7HQZy8xP1&S- zB(^g5q#!lNAeACPVm1Cg-<3*38X1+_9HL@f?ARvQs5fb3R>2FBrzv^Vt>u45vjMZ65(bB+#sDl zwJ>V=;qJm(!D&MI@zqjvCHC>rO6+7U`Vbaczmkm`rm_|TrVJLm0F-@||RIrs$S5By}dVHu1_wc_Ch_aB1#fiE7(50Nj zJ;5})wP({ated55pVSdyppq66$AZQP(_^+Z;pk%QYa^SWmP#7WOoyj}BPm?G?@ZHa zOv{;>3O)!9?d+SWp>ceWpLR?u1*^VM1gHp&UPiC#4+Q(ZtI#3|Im`u+yv1O(Im2Y7 z4L$jpQ6JSs(;d>6`h|4w=~OzaiXsuiU!kj4hAz1=R z0|zDE8)@8U?bF6hnWQeLJM%Nw{LGRc?O7rKLiW`lGiyZyJiA}Pod{?NM6(>N1<=an z5J?78;!Q@~L)%NL&&~VV>LTZPz0i-+D`M-kF%}7N6Iy0}ze=0$ENZ$ b0IyW=hY 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%0A0{Z{oPA@R#zX6a)N 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

d@n9GihA)x0H4VVC`8vrxEk`Y=cT|xMR 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%0A99p|l6sdz1Qd+TcD$cOjqx_IlJJ%jh=+Ozou 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�j|ke3#1_~ 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

Gv!INTdg?1h) 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≫MmN=t# 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%0Ai&n?6 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

tkC$G)xY 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 D)(h*bDCpF;}zi!Web!9j{e`=Bxx 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

sAeka9ViyETY% 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%0DeJ*O@`+vC-|JW( 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


fw`CVpJ;@=&i$t} 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%0A&$S6T;DhOdO@Jy=k5U#V#-e?55S&SAlW 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 + + + + files + + Resources/CMake/SDL3Config.cmake + + E+bsKFeYRozn4nSWM4OxBPxu3Wo= + + Resources/CMake/SDL3ConfigVersion.cmake + + gQ+LV+T54JMbmVqczZwWryOwVns= + + Resources/INSTALL.md + + fyUlqOEcE7zuLv8JGb0kUDRY4lc= + + Resources/Info.plist + + HhOaMbnHjC3Z/NCvKNBzDrcJxlk= + + Resources/LICENSE.txt + + MV/H0zYdw5DZw6QWBIZwa65FY04= + + Resources/README.md + + ED8RfQwxZj7wFttxnetM9Q6jXX4= + + Resources/default.metallib + + /n7Rttmv06hDJMXNGqZU4OsO4ow= + + + files2 + + Headers/SDL.h + + hash2 + + b14FzZsKmrDmlLiTjqPfVFdIvBdk1vtJJRs3wQLCdXs= + + + Headers/SDL_assert.h + + hash2 + + 23xjAAulwf/TPG8RyKcMmmR4FypXZagveCM0mgH1nvU= + + + Headers/SDL_asyncio.h + + hash2 + + 6eQHTxs1vaIfPh2XJZ8Dxl4txtqcXyGNKYkEdckwbaY= + + + Headers/SDL_atomic.h + + hash2 + + CB/5E61jeha5TKWHD7p9ntcQ6OjiCxuGb+rC3xmljxc= + + + Headers/SDL_audio.h + + hash2 + + nfL+V/SrMa6O4cjxFwmOmU/TmD6g5Iq9AUVBtWZBD80= + + + Headers/SDL_begin_code.h + + hash2 + + fxk2E7HjevknSqJuM6gdTVdk729oKqu6dGiIKlngKOI= + + + Headers/SDL_bits.h + + hash2 + + H88Gt0fGZ+U7ts+dAX1avFoprYg8Be7fz7AhxXG2FZI= + + + Headers/SDL_blendmode.h + + hash2 + + hAasxDnDlaxJ6necLTgqEtqXgyUxOY9o6DttaAzAP8U= + + + Headers/SDL_camera.h + + hash2 + + s9EmoTc6ncVTtp22vtX6f6Iycd7bqc8O/6RxEHWi6ag= + + + Headers/SDL_clipboard.h + + hash2 + + fCCxcYk+9gIKgTCbsKtlSHYkUToEMlKmYENXpVwbkgE= + + + Headers/SDL_close_code.h + + hash2 + + zjynPn/VKTMQ/RVWksWLXoLlFvGoJn+E0K9XLIOY4+k= + + + Headers/SDL_copying.h + + hash2 + + ZENtUHjWdC8RyLCs+LyHI30V2jZxbrJVKYaotFxBmWc= + + + Headers/SDL_cpuinfo.h + + hash2 + + wDNjucbJP3UbWyU9Y2IIuqnWZYxpJoArNRaXNrlvGu8= + + + Headers/SDL_dialog.h + + hash2 + + fWdNdINp9i4+55zpuS5nqJBBOvtlGljAX4xte6D/Te4= + + + Headers/SDL_egl.h + + hash2 + + ZI1DHIxRuv6skDbbF8PuX96mtre4/huG2LdUFjDXzds= + + + Headers/SDL_endian.h + + hash2 + + yMXqdfb/IZaz45jcQnZIH/qbZfg7X5bJgjjQUyKPvHw= + + + Headers/SDL_error.h + + hash2 + + fSlLo+mUuJpCvGNG5+Wb/4L7zi0FD3zbGJ2PRfMXlfI= + + + Headers/SDL_events.h + + hash2 + + ilhuR8Rl0tkJGmKtszG4Su88IRTbLtO3SgpMafptuas= + + + Headers/SDL_filesystem.h + + hash2 + + bR6AD/KyDeLQQW98aBfdbxGzufw7+4C+WDTjBpRmy9I= + + + Headers/SDL_gamepad.h + + hash2 + + L8Hbn3bNeMp6e1PfSnF7jw/nBHbT8RH4qSTMkM0XBKc= + + + Headers/SDL_gpu.h + + hash2 + + EihkVmVQ/tKFyZvC2t+jj7KtRGB2kyx9oKqgFupDYvM= + + + Headers/SDL_guid.h + + hash2 + + Bin1tfP91r/CUte+qxryFOEhRXTMUecoceLA+cMI5po= + + + Headers/SDL_haptic.h + + hash2 + + qLujijGSmObisRAEHA+3sUS2/sicBu5CiFRULbc9tw8= + + + Headers/SDL_hidapi.h + + hash2 + + BS/UNHgeoUgUP0ZE7Wr1ElicSkMtMcXZRy0vOU1OsWs= + + + Headers/SDL_hints.h + + hash2 + + vHbmQHG4ehFSeSoBFv7bq/Het5rQlkYSJM7Ln47iJao= + + + Headers/SDL_init.h + + hash2 + + Q/6gi1EsuqozGyGx+IW6mMiMiz3UI7zj6kbwwNDjU2w= + + + Headers/SDL_intrin.h + + hash2 + + YlLnI56pNm7vQnEwH6oDfki+eqMkQ0FPStKovXGGxmY= + + + Headers/SDL_iostream.h + + hash2 + + 2wZxMiUAboSqkmYgGObh9demGS4uXGetGIOddzOoBxU= + + + Headers/SDL_joystick.h + + hash2 + + r0aPy8paE7O55PiB3ku4l++dZITgfb2mBLYkZXPzg7U= + + + Headers/SDL_keyboard.h + + hash2 + + QMAEiiN+f9SUaPFtczb4DFrl44iMPNHXveQxWfYGgq0= + + + Headers/SDL_keycode.h + + hash2 + + CGHx7BS7/S7d8qMTXN1PVcyq+oGig+V0AjbvTRDo5wA= + + + Headers/SDL_loadso.h + + hash2 + + LucDpNvlT+qEmAE0wm0hy4fDDfS3r9+ho8xspu9k4J4= + + + Headers/SDL_locale.h + + hash2 + + s0UA/AyUaFIR/UxuFbAnLzul37UAYEB8OQHGyemDmFs= + + + Headers/SDL_log.h + + hash2 + + uPdwfHMobxYxKTt3Zu5oSraGuMXQClukWk9TzHOPutg= + + + Headers/SDL_main.h + + hash2 + + 6ij4ibmAqVTRApNnN6TFDCrFjwOHdaSmD1zlGfizN6o= + + + Headers/SDL_main_impl.h + + hash2 + + nLJhKmOzMf/3oNn8MHvp28Ph8hx7CuZOgYGvyxa0Fg8= + + + Headers/SDL_messagebox.h + + hash2 + + f9JqShergM7ApYxHQJp0rMwnRA2TW3m1COEQmJgrwMg= + + + Headers/SDL_metal.h + + hash2 + + 7Fs5+iU7qLHNh8XkDvbeNtwypYjyDVB4sBEoASSwgkA= + + + Headers/SDL_misc.h + + hash2 + + zlOAZjhmbs3kUq4/i86aZTyFOf54uMb9lYW9SIjsk+A= + + + Headers/SDL_mouse.h + + hash2 + + MlOYlWsvSYdPROdCRK3zBHOMR4tnoRiSSLX2tX6jk70= + + + Headers/SDL_mutex.h + + hash2 + + K0mA/DdrF5+fAYkt6vZ5qNonce+zAecF0f+2ay6eciU= + + + Headers/SDL_oldnames.h + + hash2 + + pGGsTEnGS1qN38nfrQooK1X/CM4p6EhYwHuSrUCuZCE= + + + Headers/SDL_opengl.h + + hash2 + + LqWxBvkb9UooP3YdPv2hhaUV7Z1hcCrHNXJ0kg5pIC4= + + + Headers/SDL_opengl_glext.h + + hash2 + + 2IXkrwf1MIPKwa6QphzLOTF5R+5z5SFlBvsl9q5QMyQ= + + + Headers/SDL_opengles.h + + hash2 + + q8cYr3RT0WnR58ff37XZOaJQUZvuAt99QuDWplt+DIU= + + + Headers/SDL_opengles2.h + + hash2 + + 0ENhHFweBuRmpiO4jR7kmHRilduMwfFfGHLBl0IEUhc= + + + Headers/SDL_opengles2_gl2.h + + hash2 + + 1uxEsdc/OvzjogrGl223+z2sZWxRkPC1Y+TOkNeaFao= + + + Headers/SDL_opengles2_gl2ext.h + + hash2 + + T8WwA03N6cElki4+cNAUiaazNQdoVu5mApThpjBaNxk= + + + Headers/SDL_opengles2_gl2platform.h + + hash2 + + R3m+mZrNGQRFgjjwnIaYO3lgrEDmEuBdstuX22FfHg8= + + + Headers/SDL_opengles2_khrplatform.h + + hash2 + + ex4Bqqetj2/DS1x733nr9RibsJ4sTS55/F01BiPRHoM= + + + Headers/SDL_pen.h + + hash2 + + kMVe4rIilC0D2bCBXaQuTbyJcfYuFB6NF2zY0GMHZSc= + + + Headers/SDL_pixels.h + + hash2 + + eCSeVfXrBb9lEOXeUyQutsk4yy569mZ2ssZOwQIX7po= + + + Headers/SDL_platform.h + + hash2 + + rJzzCb3cDnVV++HUJYN7rROraIegCilBvo1PzfSzERo= + + + Headers/SDL_platform_defines.h + + hash2 + + JmBmZtUwp3fLQOsnxG2IInhTnZZJsa06aSbCTBL4W80= + + + Headers/SDL_power.h + + hash2 + + CrwC8JYjRRi4dSfpF+uz/vFin8z5SllcSVOv0/hp6P8= + + + Headers/SDL_process.h + + hash2 + + onC1Bw1n1WHtkngzkWRJqUjbAxb9QnazDLWjfNn5HQQ= + + + Headers/SDL_properties.h + + hash2 + + FMSMnEfaIzvmuD/o5CBL6rhd6pXGuhrkjmSQ1F6mTt8= + + + Headers/SDL_rect.h + + hash2 + + jeGck0FYHHopFvmb2FU5lKLFWMIb006jcqASU53b+3Y= + + + Headers/SDL_render.h + + hash2 + + xgrnZk3ugjRZkSwbRT0Hqoh2Pxt8TlzImnvlFVyYCwM= + + + Headers/SDL_revision.h + + hash2 + + lVfkAs2nTN/ggogpOipOMvvzil7LFJ+RFT4fiCB+guQ= + + + Headers/SDL_scancode.h + + hash2 + + BVsEwii4ZFHpfJcmFKdssHhajYad9wuozvmLCpYjVBg= + + + Headers/SDL_sensor.h + + hash2 + + hkGEpyGOUWQhmMkuMasy86uqDchGDP1O8OLMic0d45M= + + + Headers/SDL_stdinc.h + + hash2 + + 85CO1MQfWl81J2QkPetxET1HC0gvdyndv3uIoFbZs+A= + + + Headers/SDL_storage.h + + hash2 + + dzxmg5+xagBNYyqw99NPt6O0NxEGtf/ikiVaFfAd3Z4= + + + Headers/SDL_surface.h + + hash2 + + l6TEe5JtABy9VsH3A4YQmf97J+Ecmi92UZ57Oy4bgYk= + + + Headers/SDL_system.h + + hash2 + + j+vc/6qa/tWwnNVuxFtl/+ZasjDpFiKIj/SWs9WvmoA= + + + Headers/SDL_thread.h + + hash2 + + +Ll2GtdwkIKBAtSax/AZYuS8kYtrGc+hw+ntYHqhmiE= + + + Headers/SDL_time.h + + hash2 + + 2uMjroK2pJQqTpQYR37U8oTurEuBWWavK4ypNIQrjiI= + + + Headers/SDL_timer.h + + hash2 + + 5hkyTURkMquzzC9SGKwImyNFwA5FTsUrX8cj8Tfkvzw= + + + Headers/SDL_touch.h + + hash2 + + IkjbfrMdhQ3G93hAl6yyUMG6/mUIs+kVUEeP//1GUmE= + + + Headers/SDL_tray.h + + hash2 + + ZddMsXJ698uQKcva2c1tCnuf54Lv7wX+yJ//JnykUDY= + + + Headers/SDL_version.h + + hash2 + + AlOPsnE7l/CDCthWtfMtYxQ3Wu+CTQfXh1XPrjUGzzE= + + + Headers/SDL_video.h + + hash2 + + uVRxAEcrEzyV65bJhFd4zGM3oSz8ETWnh/QtgqpoUTI= + + + Headers/SDL_vulkan.h + + hash2 + + oNG4xqKnmC5Bnb246mD84J6ZOQI4Y0yhF9gkQpU6Thw= + + + Resources/CMake/SDL3Config.cmake + + hash2 + + VxylhJ7S86lzsQJvXNKSHDGFR01PL4b7kLkIhMAayCI= + + + Resources/CMake/SDL3ConfigVersion.cmake + + hash2 + + o4od03lMXeFmSf7XQVrg+cMoEnzDAA0bJIE6oslEQe0= + + + Resources/INSTALL.md + + hash2 + + cfN7quEEdthPBp+Ef9Fnvue8PyOFBgmdeNoftdFDzR8= + + + Resources/Info.plist + + hash2 + + gHnncUY/KYhVqa53ZLImeQxU02aMxf8P2C5kAgrOJOc= + + + Resources/LICENSE.txt + + hash2 + + l/NbMCs2FoDsHokeldLVIJe7lav/NhQ0kW2Z3BMF8Sc= + + + Resources/README.md + + hash2 + + QboZO+koFZBptSlJqxoTwskW+z99BRNKDR6cxw1Mfrg= + + + Resources/default.metallib + + hash2 + + cfZuGQ3DcwZ9KcoVxa3jVp0vsLMJbXysYttqEMHllro= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/Current b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/Current new file mode 100644 index 0000000..8c7e5a6 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/macos-arm64_x86_64/SDL3.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL.h new file mode 100644 index 0000000..587b541 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL.h @@ -0,0 +1,90 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * Main include header for the SDL library, version 3.2.20 + * + * It is almost always best to include just this one header instead of + * picking out individual headers included here. There are exceptions to + * this rule--SDL_main.h is special and not included here--but usually + * letting SDL.h include the kitchen sink for you is the correct approach. + */ + +#ifndef SDL_h_ +#define SDL_h_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#endif /* SDL_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_assert.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_assert.h new file mode 100644 index 0000000..053af13 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_assert.h @@ -0,0 +1,662 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryAssert + * + * A helpful assertion macro! + * + * SDL assertions operate like your usual `assert` macro, but with some added + * features: + * + * - It uses a trick with the `sizeof` operator, so disabled assertions + * vaporize out of the compiled code, but variables only referenced in the + * assertion won't trigger compiler warnings about being unused. + * - It is safe to use with a dangling-else: `if (x) SDL_assert(y); else + * do_something();` + * - It works the same everywhere, instead of counting on various platforms' + * compiler and C runtime to behave. + * - It provides multiple levels of assertion (SDL_assert, SDL_assert_release, + * SDL_assert_paranoid) instead of a single all-or-nothing option. + * - It offers a variety of responses when an assertion fails (retry, trigger + * the debugger, abort the program, ignore the failure once, ignore it for + * the rest of the program's run). + * - It tries to show the user a dialog by default, if possible, but the app + * can provide a callback to handle assertion failures however they like. + * - It lets failed assertions be retried. Perhaps you had a network failure + * and just want to retry the test after plugging your network cable back + * in? You can. + * - It lets the user ignore an assertion failure, if there's a harmless + * problem that one can continue past. + * - It lets the user mark an assertion as ignored for the rest of the + * program's run; if there's a harmless problem that keeps popping up. + * - It provides statistics and data on all failed assertions to the app. + * - It allows the default assertion handler to be controlled with environment + * variables, in case an automated script needs to control it. + * - It can be used as an aid to Clang's static analysis; it will treat SDL + * assertions as universally true (under the assumption that you are serious + * about the asserted claims and that your debug builds will detect when + * these claims were wrong). This can help the analyzer avoid false + * positives. + * + * To use it: compile a debug build and just sprinkle around tests to check + * your code! + */ + +#ifndef SDL_assert_h_ +#define SDL_assert_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * The level of assertion aggressiveness. + * + * This value changes depending on compiler options and other preprocessor + * defines. + * + * It is currently one of the following values, but future SDL releases might + * add more: + * + * - 0: All SDL assertion macros are disabled. + * - 1: Release settings: SDL_assert disabled, SDL_assert_release enabled. + * - 2: Debug settings: SDL_assert and SDL_assert_release enabled. + * - 3: Paranoid settings: All SDL assertion macros enabled, including + * SDL_assert_paranoid. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ASSERT_LEVEL SomeNumberBasedOnVariousFactors + +#elif !defined(SDL_ASSERT_LEVEL) +#ifdef SDL_DEFAULT_ASSERT_LEVEL +#define SDL_ASSERT_LEVEL SDL_DEFAULT_ASSERT_LEVEL +#elif defined(_DEBUG) || defined(DEBUG) || \ + (defined(__GNUC__) && !defined(__OPTIMIZE__)) +#define SDL_ASSERT_LEVEL 2 +#else +#define SDL_ASSERT_LEVEL 1 +#endif +#endif + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Attempt to tell an attached debugger to pause. + * + * This allows an app to programmatically halt ("break") the debugger as if it + * had hit a breakpoint, allowing the developer to examine program state, etc. + * + * This is a macro--not a function--so that the debugger breaks on the source + * code line that used SDL_TriggerBreakpoint and not in some random guts of + * SDL. SDL_assert uses this macro for the same reason. + * + * If the program is not running under a debugger, SDL_TriggerBreakpoint will + * likely terminate the app, possibly without warning. If the current platform + * isn't supported, this macro is left undefined. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TriggerBreakpoint() TriggerABreakpointInAPlatformSpecificManner + +#elif defined(_MSC_VER) && _MSC_VER >= 1310 + /* Don't include intrin.h here because it contains C++ code */ + extern void __cdecl __debugbreak(void); + #define SDL_TriggerBreakpoint() __debugbreak() +#elif defined(_MSC_VER) && defined(_M_IX86) + #define SDL_TriggerBreakpoint() { _asm { int 0x03 } } +#elif defined(ANDROID) + #include + #define SDL_TriggerBreakpoint() assert(0) +#elif SDL_HAS_BUILTIN(__builtin_debugtrap) + #define SDL_TriggerBreakpoint() __builtin_debugtrap() +#elif SDL_HAS_BUILTIN(__builtin_trap) + #define SDL_TriggerBreakpoint() __builtin_trap() +#elif (defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__)) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "int $3\n\t" ) +#elif (defined(__GNUC__) || defined(__clang__)) && defined(__riscv) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "ebreak\n\t" ) +#elif ( defined(SDL_PLATFORM_APPLE) && (defined(__arm64__) || defined(__aarch64__)) ) /* this might work on other ARM targets, but this is a known quantity... */ + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "brk #22\n\t" ) +#elif defined(SDL_PLATFORM_APPLE) && defined(__arm__) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "bkpt #22\n\t" ) +#elif defined(_WIN32) && ((defined(__GNUC__) || defined(__clang__)) && (defined(__arm64__) || defined(__aarch64__)) ) + #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "brk #0xF000\n\t" ) +#elif defined(__GNUC__) || defined(__clang__) + #define SDL_TriggerBreakpoint() __builtin_trap() /* older gcc may not support SDL_HAS_BUILTIN(__builtin_trap) above */ +#elif defined(__386__) && defined(__WATCOMC__) + #define SDL_TriggerBreakpoint() { _asm { int 0x03 } } +#elif defined(HAVE_SIGNAL_H) && !defined(__WATCOMC__) + #include + #define SDL_TriggerBreakpoint() raise(SIGTRAP) +#else + /* SDL_TriggerBreakpoint is intentionally left undefined on unknown platforms. */ +#endif + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro that reports the current function being compiled. + * + * If SDL can't figure how the compiler reports this, it will use "???". + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FUNCTION __FUNCTION__ + +#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 supports __func__ as a standard. */ +# define SDL_FUNCTION __func__ +#elif ((defined(__GNUC__) && (__GNUC__ >= 2)) || defined(_MSC_VER) || defined (__WATCOMC__)) +# define SDL_FUNCTION __FUNCTION__ +#else +# define SDL_FUNCTION "???" +#endif + +/** + * A macro that reports the current file being compiled. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FILE __FILE__ + +/** + * A macro that reports the current line number of the file being compiled. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_LINE __LINE__ + +/* +sizeof (x) makes the compiler still parse the expression even without +assertions enabled, so the code is always checked at compile time, but +doesn't actually generate code for it, so there are no side effects or +expensive checks at run time, just the constant size of what x WOULD be, +which presumably gets optimized out as unused. +This also solves the problem of... + + int somevalue = blah(); + SDL_assert(somevalue == 1); + +...which would cause compiles to complain that somevalue is unused if we +disable assertions. +*/ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro for wrapping code in `do {} while (0);` without compiler warnings. + * + * Visual Studio with really aggressive warnings enabled needs this to avoid + * compiler complaints. + * + * the `do {} while (0);` trick is useful for wrapping code in a macro that + * may or may not be a single statement, to avoid various C language + * accidents. + * + * To use: + * + * ```c + * do { SomethingOnce(); } while (SDL_NULL_WHILE_LOOP_CONDITION (0)); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NULL_WHILE_LOOP_CONDITION (0) + +#elif defined(_MSC_VER) /* Avoid /W4 warnings. */ +/* "while (0,0)" fools Microsoft's compiler's /W4 warning level into thinking + this condition isn't constant. And looks like an owl's face! */ +#define SDL_NULL_WHILE_LOOP_CONDITION (0,0) +#else +#define SDL_NULL_WHILE_LOOP_CONDITION (0) +#endif + +/** + * The macro used when an assertion is disabled. + * + * This isn't for direct use by apps, but this is the code that is inserted + * when an SDL_assert is disabled (perhaps in a release build). + * + * The code does nothing, but wraps `condition` in a sizeof operator, which + * generates no code and has no side effects, but avoid compiler warnings + * about unused variables. + * + * \param condition the condition to assert (but not actually run here). + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_disabled_assert(condition) \ + do { (void) sizeof ((condition)); } while (SDL_NULL_WHILE_LOOP_CONDITION) + +/** + * Possible outcomes from a triggered assertion. + * + * When an enabled assertion triggers, it may call the assertion handler + * (possibly one provided by the app via SDL_SetAssertionHandler), which will + * return one of these values, possibly after asking the user. + * + * Then SDL will respond based on this outcome (loop around to retry the + * condition, try to break in a debugger, kill the program, or ignore the + * problem). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AssertState +{ + SDL_ASSERTION_RETRY, /**< Retry the assert immediately. */ + SDL_ASSERTION_BREAK, /**< Make the debugger trigger a breakpoint. */ + SDL_ASSERTION_ABORT, /**< Terminate the program. */ + SDL_ASSERTION_IGNORE, /**< Ignore the assert. */ + SDL_ASSERTION_ALWAYS_IGNORE /**< Ignore the assert from now on. */ +} SDL_AssertState; + +/** + * Information about an assertion failure. + * + * This structure is filled in with information about a triggered assertion, + * used by the assertion handler, then added to the assertion report. This is + * returned as a linked list from SDL_GetAssertionReport(). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_AssertData +{ + bool always_ignore; /**< true if app should always continue when assertion is triggered. */ + unsigned int trigger_count; /**< Number of times this assertion has been triggered. */ + const char *condition; /**< A string of this assert's test code. */ + const char *filename; /**< The source file where this assert lives. */ + int linenum; /**< The line in `filename` where this assert lives. */ + const char *function; /**< The name of the function where this assert lives. */ + const struct SDL_AssertData *next; /**< next item in the linked list. */ +} SDL_AssertData; + +/** + * Never call this directly. + * + * Use the SDL_assert macros instead. + * + * \param data assert data structure. + * \param func function name. + * \param file file name. + * \param line line number. + * \returns assert state. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_AssertState SDLCALL SDL_ReportAssertion(SDL_AssertData *data, + const char *func, + const char *file, int line) SDL_ANALYZER_NORETURN; + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * The macro used when an assertion triggers a breakpoint. + * + * This isn't for direct use by apps; use SDL_assert or SDL_TriggerBreakpoint + * instead. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AssertBreakpoint() SDL_TriggerBreakpoint() + +#elif !defined(SDL_AssertBreakpoint) +# if defined(ANDROID) && defined(assert) + /* Define this as empty in case assert() is defined as SDL_assert */ +# define SDL_AssertBreakpoint() +# else +# define SDL_AssertBreakpoint() SDL_TriggerBreakpoint() +# endif +#endif /* !SDL_AssertBreakpoint */ + +/** + * The macro used when an assertion is enabled. + * + * This isn't for direct use by apps, but this is the code that is inserted + * when an SDL_assert is enabled. + * + * The `do {} while(0)` avoids dangling else problems: + * + * ```c + * if (x) SDL_assert(y); else blah(); + * ``` + * + * ... without the do/while, the "else" could attach to this macro's "if". We + * try to handle just the minimum we need here in a macro...the loop, the + * static vars, and break points. The heavy lifting is handled in + * SDL_ReportAssertion(). + * + * \param condition the condition to assert. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_enabled_assert(condition) \ + do { \ + while ( !(condition) ) { \ + static struct SDL_AssertData sdl_assert_data = { false, 0, #condition, NULL, 0, NULL, NULL }; \ + const SDL_AssertState sdl_assert_state = SDL_ReportAssertion(&sdl_assert_data, SDL_FUNCTION, SDL_FILE, SDL_LINE); \ + if (sdl_assert_state == SDL_ASSERTION_RETRY) { \ + continue; /* go again. */ \ + } else if (sdl_assert_state == SDL_ASSERTION_BREAK) { \ + SDL_AssertBreakpoint(); \ + } \ + break; /* not retrying. */ \ + } \ + } while (SDL_NULL_WHILE_LOOP_CONDITION) + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * An assertion test that is normally performed only in debug builds. + * + * This macro is enabled when the SDL_ASSERT_LEVEL is >= 2, otherwise it is + * disabled. This is meant to only do these tests in debug builds, so they can + * tend to be more expensive, and they are meant to bring everything to a halt + * when they fail, with the programmer there to assess the problem. + * + * In short: you can sprinkle these around liberally and assume they will + * evaporate out of the build when building for end-users. + * + * When assertions are disabled, this wraps `condition` in a `sizeof` + * operator, which means any function calls and side effects will not run, but + * the compiler will not complain about any otherwise-unused variables that + * are only referenced in the assertion. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert(condition) if (assertion_enabled && (condition)) { trigger_assertion; } + +/** + * An assertion test that is performed even in release builds. + * + * This macro is enabled when the SDL_ASSERT_LEVEL is >= 1, otherwise it is + * disabled. This is meant to be for tests that are cheap to make and + * extremely unlikely to fail; generally it is frowned upon to have an + * assertion failure in a release build, so these assertions generally need to + * be of more than life-and-death importance if there's a chance they might + * trigger. You should almost always consider handling these cases more + * gracefully than an assert allows. + * + * When assertions are disabled, this wraps `condition` in a `sizeof` + * operator, which means any function calls and side effects will not run, but + * the compiler will not complain about any otherwise-unused variables that + * are only referenced in the assertion. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * * + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert_release(condition) SDL_disabled_assert(condition) + +/** + * An assertion test that is performed only when built with paranoid settings. + * + * This macro is enabled when the SDL_ASSERT_LEVEL is >= 3, otherwise it is + * disabled. This is a higher level than both release and debug, so these + * tests are meant to be expensive and only run when specifically looking for + * extremely unexpected failure cases in a special build. + * + * When assertions are disabled, this wraps `condition` in a `sizeof` + * operator, which means any function calls and side effects will not run, but + * the compiler will not complain about any otherwise-unused variables that + * are only referenced in the assertion. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) + +/* Enable various levels of assertions. */ +#elif SDL_ASSERT_LEVEL == 0 /* assertions disabled */ +# define SDL_assert(condition) SDL_disabled_assert(condition) +# define SDL_assert_release(condition) SDL_disabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 1 /* release settings. */ +# define SDL_assert(condition) SDL_disabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 2 /* debug settings. */ +# define SDL_assert(condition) SDL_enabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_disabled_assert(condition) +#elif SDL_ASSERT_LEVEL == 3 /* paranoid settings. */ +# define SDL_assert(condition) SDL_enabled_assert(condition) +# define SDL_assert_release(condition) SDL_enabled_assert(condition) +# define SDL_assert_paranoid(condition) SDL_enabled_assert(condition) +#else +# error Unknown assertion level. +#endif + +/** + * An assertion test that is always performed. + * + * This macro is always enabled no matter what SDL_ASSERT_LEVEL is set to. You + * almost never want to use this, as it could trigger on an end-user's system, + * crashing your program. + * + * One can set the environment variable "SDL_ASSERT" to one of several strings + * ("abort", "break", "retry", "ignore", "always_ignore") to force a default + * behavior, which may be desirable for automation purposes. If your platform + * requires GUI interfaces to happen on the main thread but you're debugging + * an assertion in a background thread, it might be desirable to set this to + * "break" so that your debugger takes control as soon as assert is triggered, + * instead of risking a bad UI interaction (deadlock, etc) in the application. + * + * \param condition boolean value to test. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_assert_always(condition) SDL_enabled_assert(condition) + + +/** + * A callback that fires when an SDL assertion fails. + * + * \param data a pointer to the SDL_AssertData structure corresponding to the + * current assertion. + * \param userdata what was passed as `userdata` to SDL_SetAssertionHandler(). + * \returns an SDL_AssertState value indicating how to handle the failure. + * + * \threadsafety This callback may be called from any thread that triggers an + * assert at any time. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AssertState (SDLCALL *SDL_AssertionHandler)( + const SDL_AssertData *data, void *userdata); + +/** + * Set an application-defined assertion handler. + * + * This function allows an application to show its own assertion UI and/or + * force the response to an assertion failure. If the application doesn't + * provide this, SDL will try to do the right thing, popping up a + * system-specific GUI dialog, and probably minimizing any fullscreen windows. + * + * This callback may fire from any thread, but it runs wrapped in a mutex, so + * it will only fire from one thread at a time. + * + * This callback is NOT reset to SDL's internal handler upon SDL_Quit()! + * + * \param handler the SDL_AssertionHandler function to call when an assertion + * fails or NULL for the default handler. + * \param userdata a pointer that is passed to `handler`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAssertionHandler + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetAssertionHandler( + SDL_AssertionHandler handler, + void *userdata); + +/** + * Get the default assertion handler. + * + * This returns the function pointer that is called by default when an + * assertion is triggered. This is an internal function provided by SDL, that + * is used for assertions when SDL_SetAssertionHandler() hasn't been used to + * provide a different function. + * + * \returns the default SDL_AssertionHandler that is called when an assert + * triggers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAssertionHandler + */ +extern SDL_DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetDefaultAssertionHandler(void); + +/** + * Get the current assertion handler. + * + * This returns the function pointer that is called when an assertion is + * triggered. This is either the value last passed to + * SDL_SetAssertionHandler(), or if no application-specified function is set, + * is equivalent to calling SDL_GetDefaultAssertionHandler(). + * + * The parameter `puserdata` is a pointer to a void*, which will store the + * "userdata" pointer that was passed to SDL_SetAssertionHandler(). This value + * will always be NULL for the default handler. If you don't care about this + * data, it is safe to pass a NULL pointer to this function to ignore it. + * + * \param puserdata pointer which is filled with the "userdata" pointer that + * was passed to SDL_SetAssertionHandler(). + * \returns the SDL_AssertionHandler that is called when an assert triggers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAssertionHandler + */ +extern SDL_DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetAssertionHandler(void **puserdata); + +/** + * Get a list of all assertion failures. + * + * This function gets all assertions triggered since the last call to + * SDL_ResetAssertionReport(), or the start of the program. + * + * The proper way to examine this data looks something like this: + * + * ```c + * const SDL_AssertData *item = SDL_GetAssertionReport(); + * while (item) { + * printf("'%s', %s (%s:%d), triggered %u times, always ignore: %s.\\n", + * item->condition, item->function, item->filename, + * item->linenum, item->trigger_count, + * item->always_ignore ? "yes" : "no"); + * item = item->next; + * } + * ``` + * + * \returns a list of all failed assertions or NULL if the list is empty. This + * memory should not be modified or freed by the application. This + * pointer remains valid until the next call to SDL_Quit() or + * SDL_ResetAssertionReport(). + * + * \threadsafety This function is not thread safe. Other threads calling + * SDL_ResetAssertionReport() simultaneously, may render the + * returned pointer invalid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResetAssertionReport + */ +extern SDL_DECLSPEC const SDL_AssertData * SDLCALL SDL_GetAssertionReport(void); + +/** + * Clear the list of all assertion failures. + * + * This function will clear the list of all assertions triggered up to that + * point. Immediately following this call, SDL_GetAssertionReport will return + * no items. In addition, any previously-triggered assertions will be reset to + * a trigger_count of zero, and their always_ignore state will be false. + * + * \threadsafety This function is not thread safe. Other threads triggering an + * assertion, or simultaneously calling this function may cause + * memory leaks or crashes. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAssertionReport + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetAssertionReport(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_assert_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_asyncio.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_asyncio.h new file mode 100644 index 0000000..b36cb07 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_asyncio.h @@ -0,0 +1,546 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: AsyncIO */ + +/** + * # CategoryAsyncIO + * + * SDL offers a way to perform I/O asynchronously. This allows an app to read + * or write files without waiting for data to actually transfer; the functions + * that request I/O never block while the request is fulfilled. + * + * Instead, the data moves in the background and the app can check for results + * at their leisure. + * + * This is more complicated than just reading and writing files in a + * synchronous way, but it can allow for more efficiency, and never having + * framerate drops as the hard drive catches up, etc. + * + * The general usage pattern for async I/O is: + * + * - Create one or more SDL_AsyncIOQueue objects. + * - Open files with SDL_AsyncIOFromFile. + * - Start I/O tasks to the files with SDL_ReadAsyncIO or SDL_WriteAsyncIO, + * putting those tasks into one of the queues. + * - Later on, use SDL_GetAsyncIOResult on a queue to see if any task is + * finished without blocking. Tasks might finish in any order with success + * or failure. + * - When all your tasks are done, close the file with SDL_CloseAsyncIO. This + * also generates a task, since it might flush data to disk! + * + * This all works, without blocking, in a single thread, but one can also wait + * on a queue in a background thread, sleeping until new results have arrived: + * + * - Call SDL_WaitAsyncIOResult from one or more threads to efficiently block + * until new tasks complete. + * - When shutting down, call SDL_SignalAsyncIOQueue to unblock any sleeping + * threads despite there being no new tasks completed. + * + * And, of course, to match the synchronous SDL_LoadFile, we offer + * SDL_LoadFileAsync as a convenience function. This will handle allocating a + * buffer, slurping in the file data, and null-terminating it; you still check + * for results later. + * + * Behind the scenes, SDL will use newer, efficient APIs on platforms that + * support them: Linux's io_uring and Windows 11's IoRing, for example. If + * those technologies aren't available, SDL will offload the work to a thread + * pool that will manage otherwise-synchronous loads without blocking the app. + * + * ## Best Practices + * + * Simple non-blocking I/O--for an app that just wants to pick up data + * whenever it's ready without losing framerate waiting on disks to spin--can + * use whatever pattern works well for the program. In this case, simply call + * SDL_ReadAsyncIO, or maybe SDL_LoadFileAsync, as needed. Once a frame, call + * SDL_GetAsyncIOResult to check for any completed tasks and deal with the + * data as it arrives. + * + * If two separate pieces of the same program need their own I/O, it is legal + * for each to create their own queue. This will prevent either piece from + * accidentally consuming the other's completed tasks. Each queue does require + * some amount of resources, but it is not an overwhelming cost. Do not make a + * queue for each task, however. It is better to put many tasks into a single + * queue. They will be reported in order of completion, not in the order they + * were submitted, so it doesn't generally matter what order tasks are + * started. + * + * One async I/O queue can be shared by multiple threads, or one thread can + * have more than one queue, but the most efficient way--if ruthless + * efficiency is the goal--is to have one queue per thread, with multiple + * threads working in parallel, and attempt to keep each queue loaded with + * tasks that are both started by and consumed by the same thread. On modern + * platforms that can use newer interfaces, this can keep data flowing as + * efficiently as possible all the way from storage hardware to the app, with + * no contention between threads for access to the same queue. + * + * Written data is not guaranteed to make it to physical media by the time a + * closing task is completed, unless SDL_CloseAsyncIO is called with its + * `flush` parameter set to true, which is to say that a successful result + * here can still result in lost data during an unfortunately-timed power + * outage if not flushed. However, flushing will take longer and may be + * unnecessary, depending on the app's needs. + */ + +#ifndef SDL_asyncio_h_ +#define SDL_asyncio_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The asynchronous I/O operation structure. + * + * This operates as an opaque handle. One can then request read or write + * operations on it. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AsyncIOFromFile + */ +typedef struct SDL_AsyncIO SDL_AsyncIO; + +/** + * Types of asynchronous I/O tasks. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AsyncIOTaskType +{ + SDL_ASYNCIO_TASK_READ, /**< A read operation. */ + SDL_ASYNCIO_TASK_WRITE, /**< A write operation. */ + SDL_ASYNCIO_TASK_CLOSE /**< A close operation. */ +} SDL_AsyncIOTaskType; + +/** + * Possible outcomes of an asynchronous I/O task. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AsyncIOResult +{ + SDL_ASYNCIO_COMPLETE, /**< request was completed without error */ + SDL_ASYNCIO_FAILURE, /**< request failed for some reason; check SDL_GetError()! */ + SDL_ASYNCIO_CANCELED /**< request was canceled before completing. */ +} SDL_AsyncIOResult; + +/** + * Information about a completed asynchronous I/O request. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_AsyncIOOutcome +{ + SDL_AsyncIO *asyncio; /**< what generated this task. This pointer will be invalid if it was closed! */ + SDL_AsyncIOTaskType type; /**< What sort of task was this? Read, write, etc? */ + SDL_AsyncIOResult result; /**< the result of the work (success, failure, cancellation). */ + void *buffer; /**< buffer where data was read/written. */ + Uint64 offset; /**< offset in the SDL_AsyncIO where data was read/written. */ + Uint64 bytes_requested; /**< number of bytes the task was to read/write. */ + Uint64 bytes_transferred; /**< actual number of bytes that were read/written. */ + void *userdata; /**< pointer provided by the app when starting the task */ +} SDL_AsyncIOOutcome; + +/** + * A queue of completed asynchronous I/O tasks. + * + * When starting an asynchronous operation, you specify a queue for the new + * task. A queue can be asked later if any tasks in it have completed, + * allowing an app to manage multiple pending tasks in one place, in whatever + * order they complete. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateAsyncIOQueue + * \sa SDL_ReadAsyncIO + * \sa SDL_WriteAsyncIO + * \sa SDL_GetAsyncIOResult + * \sa SDL_WaitAsyncIOResult + */ +typedef struct SDL_AsyncIOQueue SDL_AsyncIOQueue; + +/** + * Use this function to create a new SDL_AsyncIO object for reading from + * and/or writing to a named file. + * + * The `mode` string understands the following values: + * + * - "r": Open a file for reading only. It must exist. + * - "w": Open a file for writing only. It will create missing files or + * truncate existing ones. + * - "r+": Open a file for update both reading and writing. The file must + * exist. + * - "w+": Create an empty file for both reading and writing. If a file with + * the same name already exists its content is erased and the file is + * treated as a new empty file. + * + * There is no "b" mode, as there is only "binary" style I/O, and no "a" mode + * for appending, since you specify the position when starting a task. + * + * This function supports Unicode filenames, but they must be encoded in UTF-8 + * format, regardless of the underlying operating system. + * + * This call is _not_ asynchronous; it will open the file before returning, + * under the assumption that doing so is generally a fast operation. Future + * reads and writes to the opened file will be async, however. + * + * \param file a UTF-8 string representing the filename to open. + * \param mode an ASCII string representing the mode to be used for opening + * the file. + * \returns a pointer to the SDL_AsyncIO structure that is created or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseAsyncIO + * \sa SDL_ReadAsyncIO + * \sa SDL_WriteAsyncIO + */ +extern SDL_DECLSPEC SDL_AsyncIO * SDLCALL SDL_AsyncIOFromFile(const char *file, const char *mode); + +/** + * Use this function to get the size of the data stream in an SDL_AsyncIO. + * + * This call is _not_ asynchronous; it assumes that obtaining this info is a + * non-blocking operation in most reasonable cases. + * + * \param asyncio the SDL_AsyncIO to get the size of the data stream from. + * \returns the size of the data stream in the SDL_IOStream on success or a + * negative error code on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_GetAsyncIOSize(SDL_AsyncIO *asyncio); + +/** + * Start an async read. + * + * This function reads up to `size` bytes from `offset` position in the data + * source to the area pointed at by `ptr`. This function may read less bytes + * than requested. + * + * This function returns as quickly as possible; it does not wait for the read + * to complete. On a successful return, this work will continue in the + * background. If the work begins, even failure is asynchronous: a failing + * return value from this function only means the work couldn't start at all. + * + * `ptr` must remain available until the work is done, and may be accessed by + * the system at any time until then. Do not allocate it on the stack, as this + * might take longer than the life of the calling function to complete! + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param asyncio a pointer to an SDL_AsyncIO structure. + * \param ptr a pointer to a buffer to read data into. + * \param offset the position to start reading in the data source. + * \param size the number of bytes to read from the data source. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WriteAsyncIO + * \sa SDL_CreateAsyncIOQueue + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadAsyncIO(SDL_AsyncIO *asyncio, void *ptr, Uint64 offset, Uint64 size, SDL_AsyncIOQueue *queue, void *userdata); + +/** + * Start an async write. + * + * This function writes `size` bytes from `offset` position in the data source + * to the area pointed at by `ptr`. + * + * This function returns as quickly as possible; it does not wait for the + * write to complete. On a successful return, this work will continue in the + * background. If the work begins, even failure is asynchronous: a failing + * return value from this function only means the work couldn't start at all. + * + * `ptr` must remain available until the work is done, and may be accessed by + * the system at any time until then. Do not allocate it on the stack, as this + * might take longer than the life of the calling function to complete! + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param asyncio a pointer to an SDL_AsyncIO structure. + * \param ptr a pointer to a buffer to write data from. + * \param offset the position to start writing to the data source. + * \param size the number of bytes to write to the data source. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ReadAsyncIO + * \sa SDL_CreateAsyncIOQueue + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteAsyncIO(SDL_AsyncIO *asyncio, void *ptr, Uint64 offset, Uint64 size, SDL_AsyncIOQueue *queue, void *userdata); + +/** + * Close and free any allocated resources for an async I/O object. + * + * Closing a file is _also_ an asynchronous task! If a write failure were to + * happen during the closing process, for example, the task results will + * report it as usual. + * + * Closing a file that has been written to does not guarantee the data has + * made it to physical media; it may remain in the operating system's file + * cache, for later writing to disk. This means that a successfully-closed + * file can be lost if the system crashes or loses power in this small window. + * To prevent this, call this function with the `flush` parameter set to true. + * This will make the operation take longer, and perhaps increase system load + * in general, but a successful result guarantees that the data has made it to + * physical storage. Don't use this for temporary files, caches, and + * unimportant data, and definitely use it for crucial irreplaceable files, + * like game saves. + * + * This function guarantees that the close will happen after any other pending + * tasks to `asyncio`, so it's safe to open a file, start several operations, + * close the file immediately, then check for all results later. This function + * will not block until the tasks have completed. + * + * Once this function returns true, `asyncio` is no longer valid, regardless + * of any future outcomes. Any completed tasks might still contain this + * pointer in their SDL_AsyncIOOutcome data, in case the app was using this + * value to track information, but it should not be used again. + * + * If this function returns false, the close wasn't started at all, and it's + * safe to attempt to close again later. + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param asyncio a pointer to an SDL_AsyncIO structure to close. + * \param flush true if data should sync to disk before the task completes. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, but two + * threads should not attempt to close the same object. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CloseAsyncIO(SDL_AsyncIO *asyncio, bool flush, SDL_AsyncIOQueue *queue, void *userdata); + +/** + * Create a task queue for tracking multiple I/O operations. + * + * Async I/O operations are assigned to a queue when started. The queue can be + * checked for completed tasks thereafter. + * + * \returns a new task queue object or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyAsyncIOQueue + * \sa SDL_GetAsyncIOResult + * \sa SDL_WaitAsyncIOResult + */ +extern SDL_DECLSPEC SDL_AsyncIOQueue * SDLCALL SDL_CreateAsyncIOQueue(void); + +/** + * Destroy a previously-created async I/O task queue. + * + * If there are still tasks pending for this queue, this call will block until + * those tasks are finished. All those tasks will be deallocated. Their + * results will be lost to the app. + * + * Any pending reads from SDL_LoadFileAsync() that are still in this queue + * will have their buffers deallocated by this function, to prevent a memory + * leak. + * + * Once this function is called, the queue is no longer valid and should not + * be used, including by other threads that might access it while destruction + * is blocking on pending tasks. + * + * Do not destroy a queue that still has threads waiting on it through + * SDL_WaitAsyncIOResult(). You can call SDL_SignalAsyncIOQueue() first to + * unblock those threads, and take measures (such as SDL_WaitThread()) to make + * sure they have finished their wait and won't wait on the queue again. + * + * \param queue the task queue to destroy. + * + * \threadsafety It is safe to call this function from any thread, so long as + * no other thread is waiting on the queue with + * SDL_WaitAsyncIOResult. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyAsyncIOQueue(SDL_AsyncIOQueue *queue); + +/** + * Query an async I/O task queue for completed tasks. + * + * If a task assigned to this queue has finished, this will return true and + * fill in `outcome` with the details of the task. If no task in the queue has + * finished, this function will return false. This function does not block. + * + * If a task has completed, this function will free its resources and the task + * pointer will no longer be valid. The task will be removed from the queue. + * + * It is safe for multiple threads to call this function on the same queue at + * once; a completed task will only go to one of the threads. + * + * \param queue the async I/O task queue to query. + * \param outcome details of a finished task will be written here. May not be + * NULL. + * \returns true if a task has completed, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAsyncIOResult + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetAsyncIOResult(SDL_AsyncIOQueue *queue, SDL_AsyncIOOutcome *outcome); + +/** + * Block until an async I/O task queue has a completed task. + * + * This function puts the calling thread to sleep until there a task assigned + * to the queue that has finished. + * + * If a task assigned to the queue has finished, this will return true and + * fill in `outcome` with the details of the task. If no task in the queue has + * finished, this function will return false. + * + * If a task has completed, this function will free its resources and the task + * pointer will no longer be valid. The task will be removed from the queue. + * + * It is safe for multiple threads to call this function on the same queue at + * once; a completed task will only go to one of the threads. + * + * Note that by the nature of various platforms, more than one waiting thread + * may wake to handle a single task, but only one will obtain it, so + * `timeoutMS` is a _maximum_ wait time, and this function may return false + * sooner. + * + * This function may return false if there was a system error, the OS + * inadvertently awoke multiple threads, or if SDL_SignalAsyncIOQueue() was + * called to wake up all waiting threads without a finished task. + * + * A timeout can be used to specify a maximum wait time, but rather than + * polling, it is possible to have a timeout of -1 to wait forever, and use + * SDL_SignalAsyncIOQueue() to wake up the waiting threads later. + * + * \param queue the async I/O task queue to wait on. + * \param outcome details of a finished task will be written here. May not be + * NULL. + * \param timeoutMS the maximum time to wait, in milliseconds, or -1 to wait + * indefinitely. + * \returns true if task has completed, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalAsyncIOQueue + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitAsyncIOResult(SDL_AsyncIOQueue *queue, SDL_AsyncIOOutcome *outcome, Sint32 timeoutMS); + +/** + * Wake up any threads that are blocking in SDL_WaitAsyncIOResult(). + * + * This will unblock any threads that are sleeping in a call to + * SDL_WaitAsyncIOResult for the specified queue, and cause them to return + * from that function. + * + * This can be useful when destroying a queue to make sure nothing is touching + * it indefinitely. In this case, once this call completes, the caller should + * take measures to make sure any previously-blocked threads have returned + * from their wait and will not touch the queue again (perhaps by setting a + * flag to tell the threads to terminate and then using SDL_WaitThread() to + * make sure they've done so). + * + * \param queue the async I/O task queue to signal. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAsyncIOResult + */ +extern SDL_DECLSPEC void SDLCALL SDL_SignalAsyncIOQueue(SDL_AsyncIOQueue *queue); + +/** + * Load all the data from a file path, asynchronously. + * + * This function returns as quickly as possible; it does not wait for the read + * to complete. On a successful return, this work will continue in the + * background. If the work begins, even failure is asynchronous: a failing + * return value from this function only means the work couldn't start at all. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in SDL_AsyncIOOutcome's + * bytes_transferred value. + * + * This function will allocate the buffer to contain the file. It must be + * deallocated by calling SDL_free() on SDL_AsyncIOOutcome's buffer field + * after completion. + * + * An SDL_AsyncIOQueue must be specified. The newly-created task will be added + * to it when it completes its work. + * + * \param file the path to read all available data from. + * \param queue a queue to add the new SDL_AsyncIO to. + * \param userdata an app-defined pointer that will be provided with the task + * results. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFile_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LoadFileAsync(const char *file, SDL_AsyncIOQueue *queue, void *userdata); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_asyncio_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_atomic.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_atomic.h new file mode 100644 index 0000000..78b5e0f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_atomic.h @@ -0,0 +1,664 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryAtomic + * + * Atomic operations. + * + * IMPORTANT: If you are not an expert in concurrent lockless programming, you + * should not be using any functions in this file. You should be protecting + * your data structures with full mutexes instead. + * + * ***Seriously, here be dragons!*** + * + * You can find out a little more about lockless programming and the subtle + * issues that can arise here: + * https://learn.microsoft.com/en-us/windows/win32/dxtecharts/lockless-programming + * + * There's also lots of good information here: + * + * - https://www.1024cores.net/home/lock-free-algorithms + * - https://preshing.com/ + * + * These operations may or may not actually be implemented using processor + * specific atomic operations. When possible they are implemented as true + * processor specific atomic operations. When that is not possible the are + * implemented using locks that *do* use the available atomic operations. + * + * All of the atomic operations that modify memory are full memory barriers. + */ + +#ifndef SDL_atomic_h_ +#define SDL_atomic_h_ + +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An atomic spinlock. + * + * The atomic locks are efficient spinlocks using CPU instructions, but are + * vulnerable to starvation and can spin forever if a thread holding a lock + * has been terminated. For this reason you should minimize the code executed + * inside an atomic lock and never do expensive things like API or system + * calls while holding them. + * + * They are also vulnerable to starvation if the thread holding the lock is + * lower priority than other threads and doesn't get scheduled. In general you + * should use mutexes instead, since they have better performance and + * contention behavior. + * + * The atomic locks are not safe to lock recursively. + * + * Porting Note: The spin lock functions and type are required and can not be + * emulated because they are used in the atomic emulation code. + */ +typedef int SDL_SpinLock; + +/** + * Try to lock a spin lock by setting it to a non-zero value. + * + * ***Please note that spinlocks are dangerous if you don't know what you're + * doing. Please be careful using any sort of spinlock!*** + * + * \param lock a pointer to a lock variable. + * \returns true if the lock succeeded, false if the lock is already held. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockSpinlock + * \sa SDL_UnlockSpinlock + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockSpinlock(SDL_SpinLock *lock); + +/** + * Lock a spin lock by setting it to a non-zero value. + * + * ***Please note that spinlocks are dangerous if you don't know what you're + * doing. Please be careful using any sort of spinlock!*** + * + * \param lock a pointer to a lock variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TryLockSpinlock + * \sa SDL_UnlockSpinlock + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockSpinlock(SDL_SpinLock *lock); + +/** + * Unlock a spin lock by setting it to 0. + * + * Always returns immediately. + * + * ***Please note that spinlocks are dangerous if you don't know what you're + * doing. Please be careful using any sort of spinlock!*** + * + * \param lock a pointer to a lock variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockSpinlock + * \sa SDL_TryLockSpinlock + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockSpinlock(SDL_SpinLock *lock); + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Mark a compiler barrier. + * + * A compiler barrier prevents the compiler from reordering reads and writes + * to globally visible variables across the call. + * + * This macro only prevents the compiler from reordering reads and writes, it + * does not prevent the CPU from reordering reads and writes. However, all of + * the atomic operations that modify memory are full memory barriers. + * + * \threadsafety Obviously this macro is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CompilerBarrier() DoCompilerSpecificReadWriteBarrier() + +#elif defined(_MSC_VER) && (_MSC_VER > 1200) && !defined(__clang__) +void _ReadWriteBarrier(void); +#pragma intrinsic(_ReadWriteBarrier) +#define SDL_CompilerBarrier() _ReadWriteBarrier() +#elif (defined(__GNUC__) && !defined(SDL_PLATFORM_EMSCRIPTEN)) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x5120)) +/* This is correct for all CPUs when using GCC or Solaris Studio 12.1+. */ +#define SDL_CompilerBarrier() __asm__ __volatile__ ("" : : : "memory") +#elif defined(__WATCOMC__) +extern __inline void SDL_CompilerBarrier(void); +#pragma aux SDL_CompilerBarrier = "" parm [] modify exact []; +#else +#define SDL_CompilerBarrier() \ +{ SDL_SpinLock _tmp = 0; SDL_LockSpinlock(&_tmp); SDL_UnlockSpinlock(&_tmp); } +#endif + +/** + * Insert a memory release barrier (function version). + * + * Please refer to SDL_MemoryBarrierRelease for details. This is a function + * version, which might be useful if you need to use this functionality from a + * scripting language, etc. Also, some of the macro versions call this + * function behind the scenes, where more heavy lifting can happen inside of + * SDL. Generally, though, an app written in C/C++/etc should use the macro + * version, as it will be more efficient. + * + * \threadsafety Obviously this function is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierRelease + */ +extern SDL_DECLSPEC void SDLCALL SDL_MemoryBarrierReleaseFunction(void); + +/** + * Insert a memory acquire barrier (function version). + * + * Please refer to SDL_MemoryBarrierRelease for details. This is a function + * version, which might be useful if you need to use this functionality from a + * scripting language, etc. Also, some of the macro versions call this + * function behind the scenes, where more heavy lifting can happen inside of + * SDL. Generally, though, an app written in C/C++/etc should use the macro + * version, as it will be more efficient. + * + * \threadsafety Obviously this function is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierAcquire + */ +extern SDL_DECLSPEC void SDLCALL SDL_MemoryBarrierAcquireFunction(void); + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Insert a memory release barrier (macro version). + * + * Memory barriers are designed to prevent reads and writes from being + * reordered by the compiler and being seen out of order on multi-core CPUs. + * + * A typical pattern would be for thread A to write some data and a flag, and + * for thread B to read the flag and get the data. In this case you would + * insert a release barrier between writing the data and the flag, + * guaranteeing that the data write completes no later than the flag is + * written, and you would insert an acquire barrier between reading the flag + * and reading the data, to ensure that all the reads associated with the flag + * have completed. + * + * In this pattern you should always see a release barrier paired with an + * acquire barrier and you should gate the data reads/writes with a single + * flag variable. + * + * For more information on these semantics, take a look at the blog post: + * http://preshing.com/20120913/acquire-and-release-semantics + * + * This is the macro version of this functionality; if possible, SDL will use + * compiler intrinsics or inline assembly, but some platforms might need to + * call the function version of this, SDL_MemoryBarrierReleaseFunction to do + * the heavy lifting. Apps that can use the macro should favor it over the + * function. + * + * \threadsafety Obviously this macro is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierAcquire + * \sa SDL_MemoryBarrierReleaseFunction + */ +#define SDL_MemoryBarrierRelease() SDL_MemoryBarrierReleaseFunction() + +/** + * Insert a memory acquire barrier (macro version). + * + * Please see SDL_MemoryBarrierRelease for the details on what memory barriers + * are and when to use them. + * + * This is the macro version of this functionality; if possible, SDL will use + * compiler intrinsics or inline assembly, but some platforms might need to + * call the function version of this, SDL_MemoryBarrierAcquireFunction, to do + * the heavy lifting. Apps that can use the macro should favor it over the + * function. + * + * \threadsafety Obviously this macro is safe to use from any thread at any + * time, but if you find yourself needing this, you are probably + * dealing with some very sensitive code; be careful! + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_MemoryBarrierRelease + * \sa SDL_MemoryBarrierAcquireFunction + */ +#define SDL_MemoryBarrierAcquire() SDL_MemoryBarrierAcquireFunction() + +#elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__)) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("lwsync" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("lwsync" : : : "memory") +#elif defined(__GNUC__) && defined(__aarch64__) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory") +#elif defined(__GNUC__) && defined(__arm__) +#if 0 /* defined(SDL_PLATFORM_LINUX) || defined(SDL_PLATFORM_ANDROID) */ +/* Information from: + https://chromium.googlesource.com/chromium/chromium/+/trunk/base/atomicops_internals_arm_gcc.h#19 + + The Linux kernel provides a helper function which provides the right code for a memory barrier, + hard-coded at address 0xffff0fa0 +*/ +typedef void (*SDL_KernelMemoryBarrierFunc)(); +#define SDL_MemoryBarrierRelease() ((SDL_KernelMemoryBarrierFunc)0xffff0fa0)() +#define SDL_MemoryBarrierAcquire() ((SDL_KernelMemoryBarrierFunc)0xffff0fa0)() +#else +#if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7EM__) || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7S__) || defined(__ARM_ARCH_8A__) +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory") +#elif defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6T2__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) +#ifdef __thumb__ +/* The mcr instruction isn't available in thumb mode, use real functions */ +#define SDL_MEMORY_BARRIER_USES_FUNCTION +#define SDL_MemoryBarrierRelease() SDL_MemoryBarrierReleaseFunction() +#define SDL_MemoryBarrierAcquire() SDL_MemoryBarrierAcquireFunction() +#else +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory") +#endif /* __thumb__ */ +#else +#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("" : : : "memory") +#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("" : : : "memory") +#endif /* SDL_PLATFORM_LINUX || SDL_PLATFORM_ANDROID */ +#endif /* __GNUC__ && __arm__ */ +#else +#if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x5120)) +/* This is correct for all CPUs on Solaris when using Solaris Studio 12.1+. */ +#include +#define SDL_MemoryBarrierRelease() __machine_rel_barrier() +#define SDL_MemoryBarrierAcquire() __machine_acq_barrier() +#else +/* This is correct for the x86 and x64 CPUs, and we'll expand this over time. */ +#define SDL_MemoryBarrierRelease() SDL_CompilerBarrier() +#define SDL_MemoryBarrierAcquire() SDL_CompilerBarrier() +#endif +#endif + +/* "REP NOP" is PAUSE, coded for tools that don't know it by that name. */ +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to insert a CPU-specific "pause" instruction into the program. + * + * This can be useful in busy-wait loops, as it serves as a hint to the CPU as + * to the program's intent; some CPUs can use this to do more efficient + * processing. On some platforms, this doesn't do anything, so using this + * macro might just be a harmless no-op. + * + * Note that if you are busy-waiting, there are often more-efficient + * approaches with other synchronization primitives: mutexes, semaphores, + * condition variables, etc. + * + * \threadsafety This macro is safe to use from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CPUPauseInstruction() DoACPUPauseInACompilerAndArchitectureSpecificWay + +#elif (defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__)) + #define SDL_CPUPauseInstruction() __asm__ __volatile__("pause\n") /* Some assemblers can't do REP NOP, so go with PAUSE. */ +#elif (defined(__arm__) && defined(__ARM_ARCH) && __ARM_ARCH >= 7) || defined(__aarch64__) + #define SDL_CPUPauseInstruction() __asm__ __volatile__("yield" ::: "memory") +#elif (defined(__powerpc__) || defined(__powerpc64__)) + #define SDL_CPUPauseInstruction() __asm__ __volatile__("or 27,27,27"); +#elif (defined(__riscv) && __riscv_xlen == 64) + #define SDL_CPUPauseInstruction() __asm__ __volatile__(".insn i 0x0F, 0, x0, x0, 0x010"); +#elif defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64)) + #define SDL_CPUPauseInstruction() _mm_pause() /* this is actually "rep nop" and not a SIMD instruction. No inline asm in MSVC x86-64! */ +#elif defined(_MSC_VER) && (defined(_M_ARM) || defined(_M_ARM64)) + #define SDL_CPUPauseInstruction() __yield() +#elif defined(__WATCOMC__) && defined(__386__) + extern __inline void SDL_CPUPauseInstruction(void); + #pragma aux SDL_CPUPauseInstruction = ".686p" ".xmm2" "pause" +#else + #define SDL_CPUPauseInstruction() +#endif + + +/** + * A type representing an atomic integer value. + * + * This can be used to manage a value that is synchronized across multiple + * CPUs without a race condition; when an app sets a value with + * SDL_SetAtomicInt all other threads, regardless of the CPU it is running on, + * will see that value when retrieved with SDL_GetAtomicInt, regardless of CPU + * caches, etc. + * + * This is also useful for atomic compare-and-swap operations: a thread can + * change the value as long as its current value matches expectations. When + * done in a loop, one can guarantee data consistency across threads without a + * lock (but the usual warnings apply: if you don't know what you're doing, or + * you don't do it carefully, you can confidently cause any number of + * disasters with this, so in most cases, you _should_ use a mutex instead of + * this!). + * + * This is a struct so people don't accidentally use numeric operations on it + * directly. You have to use SDL atomic functions. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicInt + * \sa SDL_GetAtomicInt + * \sa SDL_SetAtomicInt + * \sa SDL_AddAtomicInt + */ +typedef struct SDL_AtomicInt { int value; } SDL_AtomicInt; + +/** + * Set an atomic variable to a new value if it is currently an old value. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable to be modified. + * \param oldval the old value. + * \param newval the new value. + * \returns true if the atomic variable was set, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicInt + * \sa SDL_SetAtomicInt + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CompareAndSwapAtomicInt(SDL_AtomicInt *a, int oldval, int newval); + +/** + * Set an atomic variable to a value. + * + * This function also acts as a full memory barrier. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable to be modified. + * \param v the desired value. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicInt + */ +extern SDL_DECLSPEC int SDLCALL SDL_SetAtomicInt(SDL_AtomicInt *a, int v); + +/** + * Get the value of an atomic variable. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable. + * \returns the current value of an atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAtomicInt + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAtomicInt(SDL_AtomicInt *a); + +/** + * Add to an atomic variable. + * + * This function also acts as a full memory barrier. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicInt variable to be modified. + * \param v the desired value to add. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AtomicDecRef + * \sa SDL_AtomicIncRef + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddAtomicInt(SDL_AtomicInt *a, int v); + +#ifndef SDL_AtomicIncRef + +/** + * Increment an atomic variable used as a reference count. + * + * ***Note: If you don't know what this macro is for, you shouldn't use it!*** + * + * \param a a pointer to an SDL_AtomicInt to increment. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AtomicDecRef + */ +#define SDL_AtomicIncRef(a) SDL_AddAtomicInt(a, 1) +#endif + +#ifndef SDL_AtomicDecRef + +/** + * Decrement an atomic variable used as a reference count. + * + * ***Note: If you don't know what this macro is for, you shouldn't use it!*** + * + * \param a a pointer to an SDL_AtomicInt to decrement. + * \returns true if the variable reached zero after decrementing, false + * otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AtomicIncRef + */ +#define SDL_AtomicDecRef(a) (SDL_AddAtomicInt(a, -1) == 1) +#endif + +/** + * A type representing an atomic unsigned 32-bit value. + * + * This can be used to manage a value that is synchronized across multiple + * CPUs without a race condition; when an app sets a value with + * SDL_SetAtomicU32 all other threads, regardless of the CPU it is running on, + * will see that value when retrieved with SDL_GetAtomicU32, regardless of CPU + * caches, etc. + * + * This is also useful for atomic compare-and-swap operations: a thread can + * change the value as long as its current value matches expectations. When + * done in a loop, one can guarantee data consistency across threads without a + * lock (but the usual warnings apply: if you don't know what you're doing, or + * you don't do it carefully, you can confidently cause any number of + * disasters with this, so in most cases, you _should_ use a mutex instead of + * this!). + * + * This is a struct so people don't accidentally use numeric operations on it + * directly. You have to use SDL atomic functions. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicU32 + * \sa SDL_GetAtomicU32 + * \sa SDL_SetAtomicU32 + */ +typedef struct SDL_AtomicU32 { Uint32 value; } SDL_AtomicU32; + +/** + * Set an atomic variable to a new value if it is currently an old value. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicU32 variable to be modified. + * \param oldval the old value. + * \param newval the new value. + * \returns true if the atomic variable was set, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicU32 + * \sa SDL_SetAtomicU32 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CompareAndSwapAtomicU32(SDL_AtomicU32 *a, Uint32 oldval, Uint32 newval); + +/** + * Set an atomic variable to a value. + * + * This function also acts as a full memory barrier. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicU32 variable to be modified. + * \param v the desired value. + * \returns the previous value of the atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAtomicU32 + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_SetAtomicU32(SDL_AtomicU32 *a, Uint32 v); + +/** + * Get the value of an atomic variable. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to an SDL_AtomicU32 variable. + * \returns the current value of an atomic variable. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAtomicU32 + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetAtomicU32(SDL_AtomicU32 *a); + +/** + * Set a pointer to a new value if it is currently an old value. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to a pointer. + * \param oldval the old pointer value. + * \param newval the new pointer value. + * \returns true if the pointer was set, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicInt + * \sa SDL_GetAtomicPointer + * \sa SDL_SetAtomicPointer + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CompareAndSwapAtomicPointer(void **a, void *oldval, void *newval); + +/** + * Set a pointer to a value atomically. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to a pointer. + * \param v the desired pointer value. + * \returns the previous value of the pointer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicPointer + * \sa SDL_GetAtomicPointer + */ +extern SDL_DECLSPEC void * SDLCALL SDL_SetAtomicPointer(void **a, void *v); + +/** + * Get the value of a pointer atomically. + * + * ***Note: If you don't know what this function is for, you shouldn't use + * it!*** + * + * \param a a pointer to a pointer. + * \returns the current value of a pointer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CompareAndSwapAtomicPointer + * \sa SDL_SetAtomicPointer + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetAtomicPointer(void **a); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif + +#include + +#endif /* SDL_atomic_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_audio.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_audio.h new file mode 100644 index 0000000..51af40e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_audio.h @@ -0,0 +1,2203 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryAudio + * + * Audio functionality for the SDL library. + * + * All audio in SDL3 revolves around SDL_AudioStream. Whether you want to play + * or record audio, convert it, stream it, buffer it, or mix it, you're going + * to be passing it through an audio stream. + * + * Audio streams are quite flexible; they can accept any amount of data at a + * time, in any supported format, and output it as needed in any other format, + * even if the data format changes on either side halfway through. + * + * An app opens an audio device and binds any number of audio streams to it, + * feeding more data to the streams as available. When the device needs more + * data, it will pull it from all bound streams and mix them together for + * playback. + * + * Audio streams can also use an app-provided callback to supply data + * on-demand, which maps pretty closely to the SDL2 audio model. + * + * SDL also provides a simple .WAV loader in SDL_LoadWAV (and SDL_LoadWAV_IO + * if you aren't reading from a file) as a basic means to load sound data into + * your program. + * + * ## Logical audio devices + * + * In SDL3, opening a physical device (like a SoundBlaster 16 Pro) gives you a + * logical device ID that you can bind audio streams to. In almost all cases, + * logical devices can be used anywhere in the API that a physical device is + * normally used. However, since each device opening generates a new logical + * device, different parts of the program (say, a VoIP library, or + * text-to-speech framework, or maybe some other sort of mixer on top of SDL) + * can have their own device opens that do not interfere with each other; each + * logical device will mix its separate audio down to a single buffer, fed to + * the physical device, behind the scenes. As many logical devices as you like + * can come and go; SDL will only have to open the physical device at the OS + * level once, and will manage all the logical devices on top of it + * internally. + * + * One other benefit of logical devices: if you don't open a specific physical + * device, instead opting for the default, SDL can automatically migrate those + * logical devices to different hardware as circumstances change: a user + * plugged in headphones? The system default changed? SDL can transparently + * migrate the logical devices to the correct physical device seamlessly and + * keep playing; the app doesn't even have to know it happened if it doesn't + * want to. + * + * ## Simplified audio + * + * As a simplified model for when a single source of audio is all that's + * needed, an app can use SDL_OpenAudioDeviceStream, which is a single + * function to open an audio device, create an audio stream, bind that stream + * to the newly-opened device, and (optionally) provide a callback for + * obtaining audio data. When using this function, the primary interface is + * the SDL_AudioStream and the device handle is mostly hidden away; destroying + * a stream created through this function will also close the device, stream + * bindings cannot be changed, etc. One other quirk of this is that the device + * is started in a _paused_ state and must be explicitly resumed; this is + * partially to offer a clean migration for SDL2 apps and partially because + * the app might have to do more setup before playback begins; in the + * non-simplified form, nothing will play until a stream is bound to a device, + * so they start _unpaused_. + * + * ## Channel layouts + * + * Audio data passing through SDL is uncompressed PCM data, interleaved. One + * can provide their own decompression through an MP3, etc, decoder, but SDL + * does not provide this directly. Each interleaved channel of data is meant + * to be in a specific order. + * + * Abbreviations: + * + * - FRONT = single mono speaker + * - FL = front left speaker + * - FR = front right speaker + * - FC = front center speaker + * - BL = back left speaker + * - BR = back right speaker + * - SR = surround right speaker + * - SL = surround left speaker + * - BC = back center speaker + * - LFE = low-frequency speaker + * + * These are listed in the order they are laid out in memory, so "FL, FR" + * means "the front left speaker is laid out in memory first, then the front + * right, then it repeats for the next audio frame". + * + * - 1 channel (mono) layout: FRONT + * - 2 channels (stereo) layout: FL, FR + * - 3 channels (2.1) layout: FL, FR, LFE + * - 4 channels (quad) layout: FL, FR, BL, BR + * - 5 channels (4.1) layout: FL, FR, LFE, BL, BR + * - 6 channels (5.1) layout: FL, FR, FC, LFE, BL, BR (last two can also be + * SL, SR) + * - 7 channels (6.1) layout: FL, FR, FC, LFE, BC, SL, SR + * - 8 channels (7.1) layout: FL, FR, FC, LFE, BL, BR, SL, SR + * + * This is the same order as DirectSound expects, but applied to all + * platforms; SDL will swizzle the channels as necessary if a platform expects + * something different. + * + * SDL_AudioStream can also be provided channel maps to change this ordering + * to whatever is necessary, in other audio processing scenarios. + */ + +#ifndef SDL_audio_h_ +#define SDL_audio_h_ + +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Mask of bits in an SDL_AudioFormat that contains the format bit size. + * + * Generally one should use SDL_AUDIO_BITSIZE instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_BITSIZE (0xFFu) + +/** + * Mask of bits in an SDL_AudioFormat that contain the floating point flag. + * + * Generally one should use SDL_AUDIO_ISFLOAT instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_FLOAT (1u<<8) + +/** + * Mask of bits in an SDL_AudioFormat that contain the bigendian flag. + * + * Generally one should use SDL_AUDIO_ISBIGENDIAN or SDL_AUDIO_ISLITTLEENDIAN + * instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_BIG_ENDIAN (1u<<12) + +/** + * Mask of bits in an SDL_AudioFormat that contain the signed data flag. + * + * Generally one should use SDL_AUDIO_ISSIGNED instead of this macro directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_MASK_SIGNED (1u<<15) + +/** + * Define an SDL_AudioFormat value. + * + * SDL does not support custom audio formats, so this macro is not of much use + * externally, but it can be illustrative as to what the various bits of an + * SDL_AudioFormat mean. + * + * For example, SDL_AUDIO_S32LE looks like this: + * + * ```c + * SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 32) + * ``` + * + * \param signed 1 for signed data, 0 for unsigned data. + * \param bigendian 1 for bigendian data, 0 for littleendian data. + * \param flt 1 for floating point data, 0 for integer data. + * \param size number of bits per sample. + * \returns a format value in the style of SDL_AudioFormat. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_AUDIO_FORMAT(signed, bigendian, flt, size) \ + (((Uint16)(signed) << 15) | ((Uint16)(bigendian) << 12) | ((Uint16)(flt) << 8) | ((size) & SDL_AUDIO_MASK_BITSIZE)) + +/** + * Audio format. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_AUDIO_BITSIZE + * \sa SDL_AUDIO_BYTESIZE + * \sa SDL_AUDIO_ISINT + * \sa SDL_AUDIO_ISFLOAT + * \sa SDL_AUDIO_ISBIGENDIAN + * \sa SDL_AUDIO_ISLITTLEENDIAN + * \sa SDL_AUDIO_ISSIGNED + * \sa SDL_AUDIO_ISUNSIGNED + */ +typedef enum SDL_AudioFormat +{ + SDL_AUDIO_UNKNOWN = 0x0000u, /**< Unspecified audio format */ + SDL_AUDIO_U8 = 0x0008u, /**< Unsigned 8-bit samples */ + /* SDL_DEFINE_AUDIO_FORMAT(0, 0, 0, 8), */ + SDL_AUDIO_S8 = 0x8008u, /**< Signed 8-bit samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 8), */ + SDL_AUDIO_S16LE = 0x8010u, /**< Signed 16-bit samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 16), */ + SDL_AUDIO_S16BE = 0x9010u, /**< As above, but big-endian byte order */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 0, 16), */ + SDL_AUDIO_S32LE = 0x8020u, /**< 32-bit integer samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 0, 32), */ + SDL_AUDIO_S32BE = 0x9020u, /**< As above, but big-endian byte order */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 0, 32), */ + SDL_AUDIO_F32LE = 0x8120u, /**< 32-bit floating point samples */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 0, 1, 32), */ + SDL_AUDIO_F32BE = 0x9120u, /**< As above, but big-endian byte order */ + /* SDL_DEFINE_AUDIO_FORMAT(1, 1, 1, 32), */ + + /* These represent the current system's byteorder. */ + #if SDL_BYTEORDER == SDL_LIL_ENDIAN + SDL_AUDIO_S16 = SDL_AUDIO_S16LE, + SDL_AUDIO_S32 = SDL_AUDIO_S32LE, + SDL_AUDIO_F32 = SDL_AUDIO_F32LE + #else + SDL_AUDIO_S16 = SDL_AUDIO_S16BE, + SDL_AUDIO_S32 = SDL_AUDIO_S32BE, + SDL_AUDIO_F32 = SDL_AUDIO_F32BE + #endif +} SDL_AudioFormat; + + +/** + * Retrieve the size, in bits, from an SDL_AudioFormat. + * + * For example, `SDL_AUDIO_BITSIZE(SDL_AUDIO_S16)` returns 16. + * + * \param x an SDL_AudioFormat value. + * \returns data size in bits. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_BITSIZE(x) ((x) & SDL_AUDIO_MASK_BITSIZE) + +/** + * Retrieve the size, in bytes, from an SDL_AudioFormat. + * + * For example, `SDL_AUDIO_BYTESIZE(SDL_AUDIO_S16)` returns 2. + * + * \param x an SDL_AudioFormat value. + * \returns data size in bytes. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_BYTESIZE(x) (SDL_AUDIO_BITSIZE(x) / 8) + +/** + * Determine if an SDL_AudioFormat represents floating point data. + * + * For example, `SDL_AUDIO_ISFLOAT(SDL_AUDIO_S16)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is floating point, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISFLOAT(x) ((x) & SDL_AUDIO_MASK_FLOAT) + +/** + * Determine if an SDL_AudioFormat represents bigendian data. + * + * For example, `SDL_AUDIO_ISBIGENDIAN(SDL_AUDIO_S16LE)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is bigendian, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISBIGENDIAN(x) ((x) & SDL_AUDIO_MASK_BIG_ENDIAN) + +/** + * Determine if an SDL_AudioFormat represents littleendian data. + * + * For example, `SDL_AUDIO_ISLITTLEENDIAN(SDL_AUDIO_S16BE)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is littleendian, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISLITTLEENDIAN(x) (!SDL_AUDIO_ISBIGENDIAN(x)) + +/** + * Determine if an SDL_AudioFormat represents signed data. + * + * For example, `SDL_AUDIO_ISSIGNED(SDL_AUDIO_U8)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is signed, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISSIGNED(x) ((x) & SDL_AUDIO_MASK_SIGNED) + +/** + * Determine if an SDL_AudioFormat represents integer data. + * + * For example, `SDL_AUDIO_ISINT(SDL_AUDIO_F32)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is integer, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISINT(x) (!SDL_AUDIO_ISFLOAT(x)) + +/** + * Determine if an SDL_AudioFormat represents unsigned data. + * + * For example, `SDL_AUDIO_ISUNSIGNED(SDL_AUDIO_S16)` returns 0. + * + * \param x an SDL_AudioFormat value. + * \returns non-zero if format is unsigned, zero otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_ISUNSIGNED(x) (!SDL_AUDIO_ISSIGNED(x)) + + +/** + * SDL Audio Device instance IDs. + * + * Zero is used to signify an invalid/null device. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_AudioDeviceID; + +/** + * A value used to request a default playback audio device. + * + * Several functions that require an SDL_AudioDeviceID will accept this value + * to signify the app just wants the system to choose a default device instead + * of the app providing a specific one. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK ((SDL_AudioDeviceID) 0xFFFFFFFFu) + +/** + * A value used to request a default recording audio device. + * + * Several functions that require an SDL_AudioDeviceID will accept this value + * to signify the app just wants the system to choose a default device instead + * of the app providing a specific one. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_DEVICE_DEFAULT_RECORDING ((SDL_AudioDeviceID) 0xFFFFFFFEu) + +/** + * Format specifier for audio data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AudioFormat + */ +typedef struct SDL_AudioSpec +{ + SDL_AudioFormat format; /**< Audio data format */ + int channels; /**< Number of channels: 1 mono, 2 stereo, etc */ + int freq; /**< sample rate: sample frames per second */ +} SDL_AudioSpec; + +/** + * Calculate the size of each audio frame (in bytes) from an SDL_AudioSpec. + * + * This reports on the size of an audio sample frame: stereo Sint16 data (2 + * channels of 2 bytes each) would be 4 bytes per frame, for example. + * + * \param x an SDL_AudioSpec to query. + * \returns the number of bytes used per sample frame. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_AUDIO_FRAMESIZE(x) (SDL_AUDIO_BYTESIZE((x).format) * (x).channels) + +/** + * The opaque handle that represents an audio stream. + * + * SDL_AudioStream is an audio conversion interface. + * + * - It can handle resampling data in chunks without generating artifacts, + * when it doesn't have the complete buffer available. + * - It can handle incoming data in any variable size. + * - It can handle input/output format changes on the fly. + * - It can remap audio channels between inputs and outputs. + * - You push data as you have it, and pull it when you need it + * - It can also function as a basic audio data queue even if you just have + * sound that needs to pass from one place to another. + * - You can hook callbacks up to them when more data is added or requested, + * to manage data on-the-fly. + * + * Audio streams are the core of the SDL3 audio interface. You create one or + * more of them, bind them to an opened audio device, and feed data to them + * (or for recording, consume data from them). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateAudioStream + */ +typedef struct SDL_AudioStream SDL_AudioStream; + + +/* Function prototypes */ + +/** + * Use this function to get the number of built-in audio drivers. + * + * This function returns a hardcoded number. This never returns a negative + * value; if there are no drivers compiled into this build of SDL, this + * function returns zero. The presence of a driver in this list does not mean + * it will function, it just means SDL is capable of interacting with that + * interface. For example, a build of SDL might have esound support, but if + * there's no esound server available, SDL's esound driver would fail if used. + * + * By default, SDL tries all drivers, in its preferred order, until one is + * found to be usable. + * + * \returns the number of built-in audio drivers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumAudioDrivers(void); + +/** + * Use this function to get the name of a built in audio driver. + * + * The list of audio drivers is given in the order that they are normally + * initialized by default; the drivers that seem more reasonable to choose + * first (as far as the SDL developers believe) are earlier in the list. + * + * The names of drivers are all simple, low-ASCII identifiers, like "alsa", + * "coreaudio" or "wasapi". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of the audio driver; the value ranges from 0 to + * SDL_GetNumAudioDrivers() - 1. + * \returns the name of the audio driver at the requested index, or NULL if an + * invalid index was specified. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumAudioDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioDriver(int index); + +/** + * Get the name of the current audio driver. + * + * The names of drivers are all simple, low-ASCII identifiers, like "alsa", + * "coreaudio" or "wasapi". These never have Unicode characters, and are not + * meant to be proper names. + * + * \returns the name of the current audio driver or NULL if no driver has been + * initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCurrentAudioDriver(void); + +/** + * Get a list of currently-connected audio playback devices. + * + * This returns of list of available devices that play sound, perhaps to + * speakers or headphones ("playback" devices). If you want devices that + * record audio, like a microphone ("recording" devices), use + * SDL_GetAudioRecordingDevices() instead. + * + * This only returns a list of physical devices; it will not have any device + * IDs returned by SDL_OpenAudioDevice(). + * + * If this function returns NULL, to signify an error, `*count` will be set to + * zero. + * + * \param count a pointer filled in with the number of devices returned, may + * be NULL. + * \returns a 0 terminated array of device instance IDs or NULL on error; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenAudioDevice + * \sa SDL_GetAudioRecordingDevices + */ +extern SDL_DECLSPEC SDL_AudioDeviceID * SDLCALL SDL_GetAudioPlaybackDevices(int *count); + +/** + * Get a list of currently-connected audio recording devices. + * + * This returns of list of available devices that record audio, like a + * microphone ("recording" devices). If you want devices that play sound, + * perhaps to speakers or headphones ("playback" devices), use + * SDL_GetAudioPlaybackDevices() instead. + * + * This only returns a list of physical devices; it will not have any device + * IDs returned by SDL_OpenAudioDevice(). + * + * If this function returns NULL, to signify an error, `*count` will be set to + * zero. + * + * \param count a pointer filled in with the number of devices returned, may + * be NULL. + * \returns a 0 terminated array of device instance IDs, or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenAudioDevice + * \sa SDL_GetAudioPlaybackDevices + */ +extern SDL_DECLSPEC SDL_AudioDeviceID * SDLCALL SDL_GetAudioRecordingDevices(int *count); + +/** + * Get the human-readable name of a specific audio device. + * + * \param devid the instance ID of the device to query. + * \returns the name of the audio device, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioPlaybackDevices + * \sa SDL_GetAudioRecordingDevices + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioDeviceName(SDL_AudioDeviceID devid); + +/** + * Get the current audio format of a specific audio device. + * + * For an opened device, this will report the format the device is currently + * using. If the device isn't yet opened, this will report the device's + * preferred format (or a reasonable default if this can't be determined). + * + * You may also specify SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK or + * SDL_AUDIO_DEVICE_DEFAULT_RECORDING here, which is useful for getting a + * reasonable recommendation before opening the system-recommended default + * device. + * + * You can also use this to request the current device buffer size. This is + * specified in sample frames and represents the amount of data SDL will feed + * to the physical hardware in each chunk. This can be converted to + * milliseconds of audio with the following equation: + * + * `ms = (int) ((((Sint64) frames) * 1000) / spec.freq);` + * + * Buffer size is only important if you need low-level control over the audio + * playback timing. Most apps do not need this. + * + * \param devid the instance ID of the device to query. + * \param spec on return, will be filled with device details. + * \param sample_frames pointer to store device buffer size, in sample frames. + * Can be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetAudioDeviceFormat(SDL_AudioDeviceID devid, SDL_AudioSpec *spec, int *sample_frames); + +/** + * Get the current channel map of an audio device. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * Audio devices usually have no remapping applied. This is represented by + * returning NULL, and does not signify an error. + * + * \param devid the instance ID of the device to query. + * \param count On output, set to number of channels in the map. Can be NULL. + * \returns an array of the current channel mapping, with as many elements as + * the current output spec's channels, or NULL if default. This + * should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioDeviceChannelMap(SDL_AudioDeviceID devid, int *count); + +/** + * Open a specific audio device. + * + * You can open both playback and recording devices through this function. + * Playback devices will take data from bound audio streams, mix it, and send + * it to the hardware. Recording devices will feed any bound audio streams + * with a copy of any incoming data. + * + * An opened audio device starts out with no audio streams bound. To start + * audio playing, bind a stream and supply audio data to it. Unlike SDL2, + * there is no audio callback; you only bind audio streams and make sure they + * have data flowing into them (however, you can simulate SDL2's semantics + * fairly closely by using SDL_OpenAudioDeviceStream instead of this + * function). + * + * If you don't care about opening a specific device, pass a `devid` of either + * `SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK` or + * `SDL_AUDIO_DEVICE_DEFAULT_RECORDING`. In this case, SDL will try to pick + * the most reasonable default, and may also switch between physical devices + * seamlessly later, if the most reasonable default changes during the + * lifetime of this opened device (user changed the default in the OS's system + * preferences, the default got unplugged so the system jumped to a new + * default, the user plugged in headphones on a mobile device, etc). Unless + * you have a good reason to choose a specific device, this is probably what + * you want. + * + * You may request a specific format for the audio device, but there is no + * promise the device will honor that request for several reasons. As such, + * it's only meant to be a hint as to what data your app will provide. Audio + * streams will accept data in whatever format you specify and manage + * conversion for you as appropriate. SDL_GetAudioDeviceFormat can tell you + * the preferred format for the device before opening and the actual format + * the device is using after opening. + * + * It's legal to open the same device ID more than once; each successful open + * will generate a new logical SDL_AudioDeviceID that is managed separately + * from others on the same physical device. This allows libraries to open a + * device separately from the main app and bind its own streams without + * conflicting. + * + * It is also legal to open a device ID returned by a previous call to this + * function; doing so just creates another logical device on the same physical + * device. This may be useful for making logical groupings of audio streams. + * + * This function returns the opened device ID on success. This is a new, + * unique SDL_AudioDeviceID that represents a logical device. + * + * Some backends might offer arbitrary devices (for example, a networked audio + * protocol that can connect to an arbitrary server). For these, as a change + * from SDL2, you should open a default device ID and use an SDL hint to + * specify the target if you care, or otherwise let the backend figure out a + * reasonable default. Most backends don't offer anything like this, and often + * this would be an end user setting an environment variable for their custom + * need, and not something an application should specifically manage. + * + * When done with an audio device, possibly at the end of the app's life, one + * should call SDL_CloseAudioDevice() on the returned device id. + * + * \param devid the device instance id to open, or + * SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK or + * SDL_AUDIO_DEVICE_DEFAULT_RECORDING for the most reasonable + * default device. + * \param spec the requested device configuration. Can be NULL to use + * reasonable defaults. + * \returns the device ID on success or 0 on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseAudioDevice + * \sa SDL_GetAudioDeviceFormat + */ +extern SDL_DECLSPEC SDL_AudioDeviceID SDLCALL SDL_OpenAudioDevice(SDL_AudioDeviceID devid, const SDL_AudioSpec *spec); + +/** + * Determine if an audio device is physical (instead of logical). + * + * An SDL_AudioDeviceID that represents physical hardware is a physical + * device; there is one for each piece of hardware that SDL can see. Logical + * devices are created by calling SDL_OpenAudioDevice or + * SDL_OpenAudioDeviceStream, and while each is associated with a physical + * device, there can be any number of logical devices on one physical device. + * + * For the most part, logical and physical IDs are interchangeable--if you try + * to open a logical device, SDL understands to assign that effort to the + * underlying physical device, etc. However, it might be useful to know if an + * arbitrary device ID is physical or logical. This function reports which. + * + * This function may return either true or false for invalid device IDs. + * + * \param devid the device ID to query. + * \returns true if devid is a physical device, false if it is logical. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsAudioDevicePhysical(SDL_AudioDeviceID devid); + +/** + * Determine if an audio device is a playback device (instead of recording). + * + * This function may return either true or false for invalid device IDs. + * + * \param devid the device ID to query. + * \returns true if devid is a playback device, false if it is recording. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsAudioDevicePlayback(SDL_AudioDeviceID devid); + +/** + * Use this function to pause audio playback on a specified device. + * + * This function pauses audio processing for a given device. Any bound audio + * streams will not progress, and no audio will be generated. Pausing one + * device does not prevent other unpaused devices from running. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. Pausing a paused device is + * a legal no-op. + * + * Pausing a device can be useful to halt all audio without unbinding all the + * audio streams. This might be useful while a game is paused, or a level is + * loading, etc. + * + * Physical devices can not be paused or unpaused, only logical devices + * created through SDL_OpenAudioDevice() can be. + * + * \param devid a device opened by SDL_OpenAudioDevice(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResumeAudioDevice + * \sa SDL_AudioDevicePaused + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PauseAudioDevice(SDL_AudioDeviceID devid); + +/** + * Use this function to unpause audio playback on a specified device. + * + * This function unpauses audio processing for a given device that has + * previously been paused with SDL_PauseAudioDevice(). Once unpaused, any + * bound audio streams will begin to progress again, and audio can be + * generated. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. Unpausing an unpaused + * device is a legal no-op. + * + * Physical devices can not be paused or unpaused, only logical devices + * created through SDL_OpenAudioDevice() can be. + * + * \param devid a device opened by SDL_OpenAudioDevice(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AudioDevicePaused + * \sa SDL_PauseAudioDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResumeAudioDevice(SDL_AudioDeviceID devid); + +/** + * Use this function to query if an audio device is paused. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. + * + * Physical devices can not be paused or unpaused, only logical devices + * created through SDL_OpenAudioDevice() can be. Physical and invalid device + * IDs will report themselves as unpaused here. + * + * \param devid a device opened by SDL_OpenAudioDevice(). + * \returns true if device is valid and paused, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseAudioDevice + * \sa SDL_ResumeAudioDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AudioDevicePaused(SDL_AudioDeviceID devid); + +/** + * Get the gain of an audio device. + * + * The gain of a device is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio devices default to a gain of 1.0f (no change in output). + * + * Physical devices may not have their gain changed, only logical devices, and + * this function will always return -1.0f when used on physical devices. + * + * \param devid the audio device to query. + * \returns the gain of the device or -1.0f on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioDeviceGain + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetAudioDeviceGain(SDL_AudioDeviceID devid); + +/** + * Change the gain of an audio device. + * + * The gain of a device is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio devices default to a gain of 1.0f (no change in output). + * + * Physical devices may not have their gain changed, only logical devices, and + * this function will always return false when used on physical devices. While + * it might seem attractive to adjust several logical devices at once in this + * way, it would allow an app or library to interfere with another portion of + * the program's otherwise-isolated devices. + * + * This is applied, along with any per-audiostream gain, during playback to + * the hardware, and can be continuously changed to create various effects. On + * recording devices, this will adjust the gain before passing the data into + * an audiostream; that recording audiostream can then adjust its gain further + * when outputting the data elsewhere, if it likes, but that second gain is + * not applied until the data leaves the audiostream again. + * + * \param devid the audio device on which to change gain. + * \param gain the gain. 1.0f is no change, 0.0f is silence. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioDeviceGain + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioDeviceGain(SDL_AudioDeviceID devid, float gain); + +/** + * Close a previously-opened audio device. + * + * The application should close open audio devices once they are no longer + * needed. + * + * This function may block briefly while pending audio data is played by the + * hardware, so that applications don't drop the last buffer of data they + * supplied if terminating immediately afterwards. + * + * \param devid an audio device id previously returned by + * SDL_OpenAudioDevice(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenAudioDevice + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseAudioDevice(SDL_AudioDeviceID devid); + +/** + * Bind a list of audio streams to an audio device. + * + * Audio data will flow through any bound streams. For a playback device, data + * for all bound streams will be mixed together and fed to the device. For a + * recording device, a copy of recorded data will be provided to each bound + * stream. + * + * Audio streams can only be bound to an open device. This operation is + * atomic--all streams bound in the same call will start processing at the + * same time, so they can stay in sync. Also: either all streams will be bound + * or none of them will be. + * + * It is an error to bind an already-bound stream; it must be explicitly + * unbound first. + * + * Binding a stream to a device will set its output format for playback + * devices, and its input format for recording devices, so they match the + * device's settings. The caller is welcome to change the other end of the + * stream's format at any time with SDL_SetAudioStreamFormat(). If the other + * end of the stream's format has never been set (the audio stream was created + * with a NULL audio spec), this function will set it to match the device + * end's format. + * + * \param devid an audio device to bind a stream to. + * \param streams an array of audio streams to bind. + * \param num_streams number streams listed in the `streams` array. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStreams + * \sa SDL_UnbindAudioStream + * \sa SDL_GetAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BindAudioStreams(SDL_AudioDeviceID devid, SDL_AudioStream * const *streams, int num_streams); + +/** + * Bind a single audio stream to an audio device. + * + * This is a convenience function, equivalent to calling + * `SDL_BindAudioStreams(devid, &stream, 1)`. + * + * \param devid an audio device to bind a stream to. + * \param stream an audio stream to bind to a device. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStreams + * \sa SDL_UnbindAudioStream + * \sa SDL_GetAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BindAudioStream(SDL_AudioDeviceID devid, SDL_AudioStream *stream); + +/** + * Unbind a list of audio streams from their audio devices. + * + * The streams being unbound do not all have to be on the same device. All + * streams on the same device will be unbound atomically (data will stop + * flowing through all unbound streams on the same device at the same time). + * + * Unbinding a stream that isn't bound to a device is a legal no-op. + * + * \param streams an array of audio streams to unbind. Can be NULL or contain + * NULL. + * \param num_streams number streams listed in the `streams` array. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStreams + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnbindAudioStreams(SDL_AudioStream * const *streams, int num_streams); + +/** + * Unbind a single audio stream from its audio device. + * + * This is a convenience function, equivalent to calling + * `SDL_UnbindAudioStreams(&stream, 1)`. + * + * \param stream an audio stream to unbind from a device. Can be NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStream + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnbindAudioStream(SDL_AudioStream *stream); + +/** + * Query an audio stream for its currently-bound device. + * + * This reports the logical audio device that an audio stream is currently bound to. + * + * If not bound, or invalid, this returns zero, which is not a valid device + * ID. + * + * \param stream the audio stream to query. + * \returns the bound audio device, or 0 if not bound or invalid. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindAudioStream + * \sa SDL_BindAudioStreams + */ +extern SDL_DECLSPEC SDL_AudioDeviceID SDLCALL SDL_GetAudioStreamDevice(SDL_AudioStream *stream); + +/** + * Create a new audio stream. + * + * \param src_spec the format details of the input audio. + * \param dst_spec the format details of the output audio. + * \returns a new audio stream on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PutAudioStreamData + * \sa SDL_GetAudioStreamData + * \sa SDL_GetAudioStreamAvailable + * \sa SDL_FlushAudioStream + * \sa SDL_ClearAudioStream + * \sa SDL_SetAudioStreamFormat + * \sa SDL_DestroyAudioStream + */ +extern SDL_DECLSPEC SDL_AudioStream * SDLCALL SDL_CreateAudioStream(const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec); + +/** + * Get the properties associated with an audio stream. + * + * \param stream the SDL_AudioStream to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetAudioStreamProperties(SDL_AudioStream *stream); + +/** + * Query the current format of an audio stream. + * + * \param stream the SDL_AudioStream to query. + * \param src_spec where to store the input audio format; ignored if NULL. + * \param dst_spec where to store the output audio format; ignored if NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamFormat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetAudioStreamFormat(SDL_AudioStream *stream, SDL_AudioSpec *src_spec, SDL_AudioSpec *dst_spec); + +/** + * Change the input and output formats of an audio stream. + * + * Future calls to and SDL_GetAudioStreamAvailable and SDL_GetAudioStreamData + * will reflect the new format, and future calls to SDL_PutAudioStreamData + * must provide data in the new input formats. + * + * Data that was previously queued in the stream will still be operated on in + * the format that was current when it was added, which is to say you can put + * the end of a sound file in one format to a stream, change formats for the + * next sound file, and start putting that new data while the previous sound + * file is still queued, and everything will still play back correctly. + * + * If a stream is bound to a device, then the format of the side of the stream + * bound to a device cannot be changed (src_spec for recording devices, + * dst_spec for playback devices). Attempts to make a change to this side will + * be ignored, but this will not report an error. The other side's format can + * be changed. + * + * \param stream the stream the format is being changed. + * \param src_spec the new format of the audio input; if NULL, it is not + * changed. + * \param dst_spec the new format of the audio output; if NULL, it is not + * changed. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamFormat + * \sa SDL_SetAudioStreamFrequencyRatio + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamFormat(SDL_AudioStream *stream, const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec); + +/** + * Get the frequency ratio of an audio stream. + * + * \param stream the SDL_AudioStream to query. + * \returns the frequency ratio of the stream or 0.0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamFrequencyRatio + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetAudioStreamFrequencyRatio(SDL_AudioStream *stream); + +/** + * Change the frequency ratio of an audio stream. + * + * The frequency ratio is used to adjust the rate at which input data is + * consumed. Changing this effectively modifies the speed and pitch of the + * audio. A value greater than 1.0 will play the audio faster, and at a higher + * pitch. A value less than 1.0 will play the audio slower, and at a lower + * pitch. + * + * This is applied during SDL_GetAudioStreamData, and can be continuously + * changed to create various effects. + * + * \param stream the stream the frequency ratio is being changed. + * \param ratio the frequency ratio. 1.0 is normal speed. Must be between 0.01 + * and 100. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamFrequencyRatio + * \sa SDL_SetAudioStreamFormat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamFrequencyRatio(SDL_AudioStream *stream, float ratio); + +/** + * Get the gain of an audio stream. + * + * The gain of a stream is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio streams default to a gain of 1.0f (no change in output). + * + * \param stream the SDL_AudioStream to query. + * \returns the gain of the stream or -1.0f on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamGain + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetAudioStreamGain(SDL_AudioStream *stream); + +/** + * Change the gain of an audio stream. + * + * The gain of a stream is its volume; a larger gain means a louder output, + * with a gain of zero being silence. + * + * Audio streams default to a gain of 1.0f (no change in output). + * + * This is applied during SDL_GetAudioStreamData, and can be continuously + * changed to create various effects. + * + * \param stream the stream on which the gain is being changed. + * \param gain the gain. 1.0f is no change, 0.0f is silence. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamGain + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamGain(SDL_AudioStream *stream, float gain); + +/** + * Get the current input channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * Audio streams default to no remapping applied. This is represented by + * returning NULL, and does not signify an error. + * + * \param stream the SDL_AudioStream to query. + * \param count On output, set to number of channels in the map. Can be NULL. + * \returns an array of the current channel mapping, with as many elements as + * the current output spec's channels, or NULL if default. This + * should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioStreamInputChannelMap(SDL_AudioStream *stream, int *count); + +/** + * Get the current output channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * Audio streams default to no remapping applied. This is represented by + * returning NULL, and does not signify an error. + * + * \param stream the SDL_AudioStream to query. + * \param count On output, set to number of channels in the map. Can be NULL. + * \returns an array of the current channel mapping, with as many elements as + * the current output spec's channels, or NULL if default. This + * should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC int * SDLCALL SDL_GetAudioStreamOutputChannelMap(SDL_AudioStream *stream, int *count); + +/** + * Set the current input channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * The input channel map reorders data that is added to a stream via + * SDL_PutAudioStreamData. Future calls to SDL_PutAudioStreamData must provide + * data in the new channel order. + * + * Each item in the array represents an input channel, and its value is the + * channel that it should be remapped to. To reverse a stereo signal's left + * and right values, you'd have an array of `{ 1, 0 }`. It is legal to remap + * multiple channels to the same thing, so `{ 1, 1 }` would duplicate the + * right channel to both channels of a stereo signal. An element in the + * channel map set to -1 instead of a valid channel will mute that channel, + * setting it to a silence value. + * + * You cannot change the number of channels through a channel map, just + * reorder/mute them. + * + * Data that was previously queued in the stream will still be operated on in + * the order that was current when it was added, which is to say you can put + * the end of a sound file in one order to a stream, change orders for the + * next sound file, and start putting that new data while the previous sound + * file is still queued, and everything will still play back correctly. + * + * Audio streams default to no remapping applied. Passing a NULL channel map + * is legal, and turns off remapping. + * + * SDL will copy the channel map; the caller does not have to save this array + * after this call. + * + * If `count` is not equal to the current number of channels in the audio + * stream's format, this will fail. This is a safety measure to make sure a + * race condition hasn't changed the format while this call is setting the + * channel map. + * + * Unlike attempting to change the stream's format, the input channel map on a + * stream bound to a recording device is permitted to change at any time; any + * data added to the stream from the device after this call will have the new + * mapping, but previously-added data will still have the prior mapping. + * + * \param stream the SDL_AudioStream to change. + * \param chmap the new channel map, NULL to reset to default. + * \param count The number of channels in the map. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. Don't change the + * stream's format to have a different number of channels from a + * a different thread at the same time, though! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamInputChannelMap(SDL_AudioStream *stream, const int *chmap, int count); + +/** + * Set the current output channel map of an audio stream. + * + * Channel maps are optional; most things do not need them, instead passing + * data in the [order that SDL expects](CategoryAudio#channel-layouts). + * + * The output channel map reorders data that leaving a stream via + * SDL_GetAudioStreamData. + * + * Each item in the array represents an input channel, and its value is the + * channel that it should be remapped to. To reverse a stereo signal's left + * and right values, you'd have an array of `{ 1, 0 }`. It is legal to remap + * multiple channels to the same thing, so `{ 1, 1 }` would duplicate the + * right channel to both channels of a stereo signal. An element in the + * channel map set to -1 instead of a valid channel will mute that channel, + * setting it to a silence value. + * + * You cannot change the number of channels through a channel map, just + * reorder/mute them. + * + * The output channel map can be changed at any time, as output remapping is + * applied during SDL_GetAudioStreamData. + * + * Audio streams default to no remapping applied. Passing a NULL channel map + * is legal, and turns off remapping. + * + * SDL will copy the channel map; the caller does not have to save this array + * after this call. + * + * If `count` is not equal to the current number of channels in the audio + * stream's format, this will fail. This is a safety measure to make sure a + * race condition hasn't changed the format while this call is setting the + * channel map. + * + * Unlike attempting to change the stream's format, the output channel map on + * a stream bound to a recording device is permitted to change at any time; + * any data added to the stream after this call will have the new mapping, but + * previously-added data will still have the prior mapping. When the channel + * map doesn't match the hardware's channel layout, SDL will convert the data + * before feeding it to the device for playback. + * + * \param stream the SDL_AudioStream to change. + * \param chmap the new channel map, NULL to reset to default. + * \param count The number of channels in the map. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as it holds + * a stream-specific mutex while running. Don't change the + * stream's format to have a different number of channels from a + * a different thread at the same time, though! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamInputChannelMap + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamOutputChannelMap(SDL_AudioStream *stream, const int *chmap, int count); + +/** + * Add data to the stream. + * + * This data must match the format/channels/samplerate specified in the latest + * call to SDL_SetAudioStreamFormat, or the format specified when creating the + * stream if it hasn't been changed. + * + * Note that this call simply copies the unconverted data for later. This is + * different than SDL2, where data was converted during the Put call and the + * Get call would just dequeue the previously-converted data. + * + * \param stream the stream the audio data is being added to. + * \param buf a pointer to the audio data to add. + * \param len the number of bytes to write to the stream. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, but if the + * stream has a callback set, the caller might need to manage + * extra locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearAudioStream + * \sa SDL_FlushAudioStream + * \sa SDL_GetAudioStreamData + * \sa SDL_GetAudioStreamQueued + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PutAudioStreamData(SDL_AudioStream *stream, const void *buf, int len); + +/** + * Get converted/resampled data from the stream. + * + * The input/output data format/channels/samplerate is specified when creating + * the stream, and can be changed after creation by calling + * SDL_SetAudioStreamFormat. + * + * Note that any conversion and resampling necessary is done during this call, + * and SDL_PutAudioStreamData simply queues unconverted data for later. This + * is different than SDL2, where that work was done while inputting new data + * to the stream and requesting the output just copied the converted data. + * + * \param stream the stream the audio is being requested from. + * \param buf a buffer to fill with audio data. + * \param len the maximum number of bytes to fill. + * \returns the number of bytes read from the stream or -1 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread, but if the + * stream has a callback set, the caller might need to manage + * extra locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearAudioStream + * \sa SDL_GetAudioStreamAvailable + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamData(SDL_AudioStream *stream, void *buf, int len); + +/** + * Get the number of converted/resampled bytes available. + * + * The stream may be buffering data behind the scenes until it has enough to + * resample correctly, so this number might be lower than what you expect, or + * even be zero. Add more data or flush the stream if you need the data now. + * + * If the stream has so much data that it would overflow an int, the return + * value is clamped to a maximum value, but no queued data is lost; if there + * are gigabytes of data queued, the app might need to read some of it with + * SDL_GetAudioStreamData before this function's return value is no longer + * clamped. + * + * \param stream the audio stream to query. + * \returns the number of converted/resampled bytes available or -1 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamData + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamAvailable(SDL_AudioStream *stream); + + +/** + * Get the number of bytes currently queued. + * + * This is the number of bytes put into a stream as input, not the number that + * can be retrieved as output. Because of several details, it's not possible + * to calculate one number directly from the other. If you need to know how + * much usable data can be retrieved right now, you should use + * SDL_GetAudioStreamAvailable() and not this function. + * + * Note that audio streams can change their input format at any time, even if + * there is still data queued in a different format, so the returned byte + * count will not necessarily match the number of _sample frames_ available. + * Users of this API should be aware of format changes they make when feeding + * a stream and plan accordingly. + * + * Queued data is not converted until it is consumed by + * SDL_GetAudioStreamData, so this value should be representative of the exact + * data that was put into the stream. + * + * If the stream has so much data that it would overflow an int, the return + * value is clamped to a maximum value, but no queued data is lost; if there + * are gigabytes of data queued, the app might need to read some of it with + * SDL_GetAudioStreamData before this function's return value is no longer + * clamped. + * + * \param stream the audio stream to query. + * \returns the number of bytes queued or -1 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PutAudioStreamData + * \sa SDL_ClearAudioStream + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAudioStreamQueued(SDL_AudioStream *stream); + + +/** + * Tell the stream that you're done sending data, and anything being buffered + * should be converted/resampled and made available immediately. + * + * It is legal to add more data to a stream after flushing, but there may be + * audio gaps in the output. Generally this is intended to signal the end of + * input, so the complete output becomes available. + * + * \param stream the audio stream to flush. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlushAudioStream(SDL_AudioStream *stream); + +/** + * Clear any pending data in the stream. + * + * This drops any queued data, so there will be nothing to read from the + * stream until more is added. + * + * \param stream the audio stream to clear. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamAvailable + * \sa SDL_GetAudioStreamData + * \sa SDL_GetAudioStreamQueued + * \sa SDL_PutAudioStreamData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearAudioStream(SDL_AudioStream *stream); + +/** + * Use this function to pause audio playback on the audio device associated + * with an audio stream. + * + * This function pauses audio processing for a given device. Any bound audio + * streams will not progress, and no audio will be generated. Pausing one + * device does not prevent other unpaused devices from running. + * + * Pausing a device can be useful to halt all audio without unbinding all the + * audio streams. This might be useful while a game is paused, or a level is + * loading, etc. + * + * \param stream the audio stream associated with the audio device to pause. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResumeAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PauseAudioStreamDevice(SDL_AudioStream *stream); + +/** + * Use this function to unpause audio playback on the audio device associated + * with an audio stream. + * + * This function unpauses audio processing for a given device that has + * previously been paused. Once unpaused, any bound audio streams will begin + * to progress again, and audio can be generated. + * + * Remember, SDL_OpenAudioDeviceStream opens device in a paused state, so this + * function call is required for audio playback to begin on such device. + * + * \param stream the audio stream associated with the audio device to resume. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResumeAudioStreamDevice(SDL_AudioStream *stream); + +/** + * Use this function to query if an audio device associated with a stream is + * paused. + * + * Unlike in SDL2, audio devices start in an _unpaused_ state, since an app + * has to bind a stream before any audio will flow. + * + * \param stream the audio stream associated with the audio device to query. + * \returns true if device is valid and paused, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseAudioStreamDevice + * \sa SDL_ResumeAudioStreamDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AudioStreamDevicePaused(SDL_AudioStream *stream); + + +/** + * Lock an audio stream for serialized access. + * + * Each SDL_AudioStream has an internal mutex it uses to protect its data + * structures from threading conflicts. This function allows an app to lock + * that mutex, which could be useful if registering callbacks on this stream. + * + * One does not need to lock a stream to use in it most cases, as the stream + * manages this lock internally. However, this lock is held during callbacks, + * which may run from arbitrary threads at any time, so if an app needs to + * protect shared data during those callbacks, locking the stream guarantees + * that the callback is not running while the lock is held. + * + * As this is just a wrapper over SDL_LockMutex for an internal lock; it has + * all the same attributes (recursive locks are allowed, etc). + * + * \param stream the audio stream to lock. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UnlockAudioStream + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockAudioStream(SDL_AudioStream *stream); + + +/** + * Unlock an audio stream for serialized access. + * + * This unlocks an audio stream after a call to SDL_LockAudioStream. + * + * \param stream the audio stream to unlock. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety You should only call this from the same thread that + * previously called SDL_LockAudioStream. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockAudioStream + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UnlockAudioStream(SDL_AudioStream *stream); + +/** + * A callback that fires when data passes through an SDL_AudioStream. + * + * Apps can (optionally) register a callback with an audio stream that is + * called when data is added with SDL_PutAudioStreamData, or requested with + * SDL_GetAudioStreamData. + * + * Two values are offered here: one is the amount of additional data needed to + * satisfy the immediate request (which might be zero if the stream already + * has enough data queued) and the other is the total amount being requested. + * In a Get call triggering a Put callback, these values can be different. In + * a Put call triggering a Get callback, these values are always the same. + * + * Byte counts might be slightly overestimated due to buffering or resampling, + * and may change from call to call. + * + * This callback is not required to do anything. Generally this is useful for + * adding/reading data on demand, and the app will often put/get data as + * appropriate, but the system goes on with the data currently available to it + * if this callback does nothing. + * + * \param stream the SDL audio stream associated with this callback. + * \param additional_amount the amount of data, in bytes, that is needed right + * now. + * \param total_amount the total amount of data requested, in bytes, that is + * requested or available. + * \param userdata an opaque pointer provided by the app for their personal + * use. + * + * \threadsafety This callbacks may run from any thread, so if you need to + * protect shared data, you should use SDL_LockAudioStream to + * serialize access; this lock will be held before your callback + * is called, so your callback does not need to manage the lock + * explicitly. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamGetCallback + * \sa SDL_SetAudioStreamPutCallback + */ +typedef void (SDLCALL *SDL_AudioStreamCallback)(void *userdata, SDL_AudioStream *stream, int additional_amount, int total_amount); + +/** + * Set a callback that runs when data is requested from an audio stream. + * + * This callback is called _before_ data is obtained from the stream, giving + * the callback the chance to add more on-demand. + * + * The callback can (optionally) call SDL_PutAudioStreamData() to add more + * audio to the stream during this call; if needed, the request that triggered + * this callback will obtain the new data immediately. + * + * The callback's `additional_amount` argument is roughly how many bytes of + * _unconverted_ data (in the stream's input format) is needed by the caller, + * although this may overestimate a little for safety. This takes into account + * how much is already in the stream and only asks for any extra necessary to + * resolve the request, which means the callback may be asked for zero bytes, + * and a different amount on each call. + * + * The callback is not required to supply exact amounts; it is allowed to + * supply too much or too little or none at all. The caller will get what's + * available, up to the amount they requested, regardless of this callback's + * outcome. + * + * Clearing or flushing an audio stream does not call this callback. + * + * This function obtains the stream's lock, which means any existing callback + * (get or put) in progress will finish running before setting the new + * callback. + * + * Setting a NULL function turns off the callback. + * + * \param stream the audio stream to set the new callback on. + * \param callback the new callback function to call when data is requested + * from the stream. + * \param userdata an opaque pointer provided to the callback for its own + * personal use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. This only fails if `stream` is NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamPutCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamGetCallback(SDL_AudioStream *stream, SDL_AudioStreamCallback callback, void *userdata); + +/** + * Set a callback that runs when data is added to an audio stream. + * + * This callback is called _after_ the data is added to the stream, giving the + * callback the chance to obtain it immediately. + * + * The callback can (optionally) call SDL_GetAudioStreamData() to obtain audio + * from the stream during this call. + * + * The callback's `additional_amount` argument is how many bytes of + * _converted_ data (in the stream's output format) was provided by the + * caller, although this may underestimate a little for safety. This value + * might be less than what is currently available in the stream, if data was + * already there, and might be less than the caller provided if the stream + * needs to keep a buffer to aid in resampling. Which means the callback may + * be provided with zero bytes, and a different amount on each call. + * + * The callback may call SDL_GetAudioStreamAvailable to see the total amount + * currently available to read from the stream, instead of the total provided + * by the current call. + * + * The callback is not required to obtain all data. It is allowed to read less + * or none at all. Anything not read now simply remains in the stream for + * later access. + * + * Clearing or flushing an audio stream does not call this callback. + * + * This function obtains the stream's lock, which means any existing callback + * (get or put) in progress will finish running before setting the new + * callback. + * + * Setting a NULL function turns off the callback. + * + * \param stream the audio stream to set the new callback on. + * \param callback the new callback function to call when data is added to the + * stream. + * \param userdata an opaque pointer provided to the callback for its own + * personal use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. This only fails if `stream` is NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAudioStreamGetCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioStreamPutCallback(SDL_AudioStream *stream, SDL_AudioStreamCallback callback, void *userdata); + + +/** + * Free an audio stream. + * + * This will release all allocated data, including any audio that is still + * queued. You do not need to manually clear the stream first. + * + * If this stream was bound to an audio device, it is unbound during this + * call. If this stream was created with SDL_OpenAudioDeviceStream, the audio + * device that was opened alongside this stream's creation will be closed, + * too. + * + * \param stream the audio stream to destroy. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateAudioStream + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyAudioStream(SDL_AudioStream *stream); + + +/** + * Convenience function for straightforward audio init for the common case. + * + * If all your app intends to do is provide a single source of PCM audio, this + * function allows you to do all your audio setup in a single call. + * + * This is also intended to be a clean means to migrate apps from SDL2. + * + * This function will open an audio device, create a stream and bind it. + * Unlike other methods of setup, the audio device will be closed when this + * stream is destroyed, so the app can treat the returned SDL_AudioStream as + * the only object needed to manage audio playback. + * + * Also unlike other functions, the audio device begins paused. This is to map + * more closely to SDL2-style behavior, since there is no extra step here to + * bind a stream to begin audio flowing. The audio device should be resumed + * with `SDL_ResumeAudioStreamDevice(stream);` + * + * This function works with both playback and recording devices. + * + * The `spec` parameter represents the app's side of the audio stream. That + * is, for recording audio, this will be the output format, and for playing + * audio, this will be the input format. If spec is NULL, the system will + * choose the format, and the app can use SDL_GetAudioStreamFormat() to obtain + * this information later. + * + * If you don't care about opening a specific audio device, you can (and + * probably _should_), use SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK for playback and + * SDL_AUDIO_DEVICE_DEFAULT_RECORDING for recording. + * + * One can optionally provide a callback function; if NULL, the app is + * expected to queue audio data for playback (or unqueue audio data if + * capturing). Otherwise, the callback will begin to fire once the device is + * unpaused. + * + * Destroying the returned stream with SDL_DestroyAudioStream will also close + * the audio device associated with this stream. + * + * \param devid an audio device to open, or SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK + * or SDL_AUDIO_DEVICE_DEFAULT_RECORDING. + * \param spec the audio stream's data format. Can be NULL. + * \param callback a callback where the app will provide new data for + * playback, or receive new data for recording. Can be NULL, + * in which case the app will need to call + * SDL_PutAudioStreamData or SDL_GetAudioStreamData as + * necessary. + * \param userdata app-controlled pointer passed to callback. Can be NULL. + * Ignored if callback is NULL. + * \returns an audio stream on success, ready to use, or NULL on failure; call + * SDL_GetError() for more information. When done with this stream, + * call SDL_DestroyAudioStream to free resources and close the + * device. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAudioStreamDevice + * \sa SDL_ResumeAudioStreamDevice + */ +extern SDL_DECLSPEC SDL_AudioStream * SDLCALL SDL_OpenAudioDeviceStream(SDL_AudioDeviceID devid, const SDL_AudioSpec *spec, SDL_AudioStreamCallback callback, void *userdata); + +/** + * A callback that fires when data is about to be fed to an audio device. + * + * This is useful for accessing the final mix, perhaps for writing a + * visualizer or applying a final effect to the audio data before playback. + * + * This callback should run as quickly as possible and not block for any + * significant time, as this callback delays submission of data to the audio + * device, which can cause audio playback problems. + * + * The postmix callback _must_ be able to handle any audio data format + * specified in `spec`, which can change between callbacks if the audio device + * changed. However, this only covers frequency and channel count; data is + * always provided here in SDL_AUDIO_F32 format. + * + * The postmix callback runs _after_ logical device gain and audiostream gain + * have been applied, which is to say you can make the output data louder at + * this point than the gain settings would suggest. + * + * \param userdata a pointer provided by the app through + * SDL_SetAudioPostmixCallback, for its own use. + * \param spec the current format of audio that is to be submitted to the + * audio device. + * \param buffer the buffer of audio samples to be submitted. The callback can + * inspect and/or modify this data. + * \param buflen the size of `buffer` in bytes. + * + * \threadsafety This will run from a background thread owned by SDL. The + * application is responsible for locking resources the callback + * touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetAudioPostmixCallback + */ +typedef void (SDLCALL *SDL_AudioPostmixCallback)(void *userdata, const SDL_AudioSpec *spec, float *buffer, int buflen); + +/** + * Set a callback that fires when data is about to be fed to an audio device. + * + * This is useful for accessing the final mix, perhaps for writing a + * visualizer or applying a final effect to the audio data before playback. + * + * The buffer is the final mix of all bound audio streams on an opened device; + * this callback will fire regularly for any device that is both opened and + * unpaused. If there is no new data to mix, either because no streams are + * bound to the device or all the streams are empty, this callback will still + * fire with the entire buffer set to silence. + * + * This callback is allowed to make changes to the data; the contents of the + * buffer after this call is what is ultimately passed along to the hardware. + * + * The callback is always provided the data in float format (values from -1.0f + * to 1.0f), but the number of channels or sample rate may be different than + * the format the app requested when opening the device; SDL might have had to + * manage a conversion behind the scenes, or the playback might have jumped to + * new physical hardware when a system default changed, etc. These details may + * change between calls. Accordingly, the size of the buffer might change + * between calls as well. + * + * This callback can run at any time, and from any thread; if you need to + * serialize access to your app's data, you should provide and use a mutex or + * other synchronization device. + * + * All of this to say: there are specific needs this callback can fulfill, but + * it is not the simplest interface. Apps should generally provide audio in + * their preferred format through an SDL_AudioStream and let SDL handle the + * difference. + * + * This function is extremely time-sensitive; the callback should do the least + * amount of work possible and return as quickly as it can. The longer the + * callback runs, the higher the risk of audio dropouts or other problems. + * + * This function will block until the audio device is in between iterations, + * so any existing callback that might be running will finish before this + * function sets the new callback and returns. + * + * Setting a NULL callback function disables any previously-set callback. + * + * \param devid the ID of an opened audio device. + * \param callback a callback function to be called. Can be NULL. + * \param userdata app-controlled pointer passed to callback. Can be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAudioPostmixCallback(SDL_AudioDeviceID devid, SDL_AudioPostmixCallback callback, void *userdata); + + +/** + * Load the audio data of a WAVE file into memory. + * + * Loading a WAVE file requires `src`, `spec`, `audio_buf` and `audio_len` to + * be valid pointers. The entire data portion of the file is then loaded into + * memory and decoded if necessary. + * + * Supported formats are RIFF WAVE files with the formats PCM (8, 16, 24, and + * 32 bits), IEEE Float (32 bits), Microsoft ADPCM and IMA ADPCM (4 bits), and + * A-law and mu-law (8 bits). Other formats are currently unsupported and + * cause an error. + * + * If this function succeeds, the return value is zero and the pointer to the + * audio data allocated by the function is written to `audio_buf` and its + * length in bytes to `audio_len`. The SDL_AudioSpec members `freq`, + * `channels`, and `format` are set to the values of the audio data in the + * buffer. + * + * It's necessary to use SDL_free() to free the audio data returned in + * `audio_buf` when it is no longer used. + * + * Because of the underspecification of the .WAV format, there are many + * problematic files in the wild that cause issues with strict decoders. To + * provide compatibility with these files, this decoder is lenient in regards + * to the truncation of the file, the fact chunk, and the size of the RIFF + * chunk. The hints `SDL_HINT_WAVE_RIFF_CHUNK_SIZE`, + * `SDL_HINT_WAVE_TRUNCATION`, and `SDL_HINT_WAVE_FACT_CHUNK` can be used to + * tune the behavior of the loading process. + * + * Any file that is invalid (due to truncation, corruption, or wrong values in + * the headers), too big, or unsupported causes an error. Additionally, any + * critical I/O error from the data source will terminate the loading process + * with an error. The function returns NULL on error and in all cases (with + * the exception of `src` being NULL), an appropriate error message will be + * set. + * + * It is required that the data source supports seeking. + * + * Example: + * + * ```c + * SDL_LoadWAV_IO(SDL_IOFromFile("sample.wav", "rb"), true, &spec, &buf, &len); + * ``` + * + * Note that the SDL_LoadWAV function does this same thing for you, but in a + * less messy way: + * + * ```c + * SDL_LoadWAV("sample.wav", &spec, &buf, &len); + * ``` + * + * \param src the data source for the WAVE data. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \param spec a pointer to an SDL_AudioSpec that will be set to the WAVE + * data's format details on successful return. + * \param audio_buf a pointer filled with the audio data, allocated by the + * function. + * \param audio_len a pointer filled with the length of the audio data buffer + * in bytes. + * \returns true on success. `audio_buf` will be filled with a pointer to an + * allocated buffer containing the audio data, and `audio_len` is + * filled with the length of that audio buffer in bytes. + * + * This function returns false if the .WAV file cannot be opened, + * uses an unknown data format, or is corrupt; call SDL_GetError() + * for more information. + * + * When the application is done with the data returned in + * `audio_buf`, it should call SDL_free() to dispose of it. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_LoadWAV + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LoadWAV_IO(SDL_IOStream *src, bool closeio, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); + +/** + * Loads a WAV from a file path. + * + * This is a convenience function that is effectively the same as: + * + * ```c + * SDL_LoadWAV_IO(SDL_IOFromFile(path, "rb"), true, spec, audio_buf, audio_len); + * ``` + * + * \param path the file path of the WAV file to open. + * \param spec a pointer to an SDL_AudioSpec that will be set to the WAVE + * data's format details on successful return. + * \param audio_buf a pointer filled with the audio data, allocated by the + * function. + * \param audio_len a pointer filled with the length of the audio data buffer + * in bytes. + * \returns true on success. `audio_buf` will be filled with a pointer to an + * allocated buffer containing the audio data, and `audio_len` is + * filled with the length of that audio buffer in bytes. + * + * This function returns false if the .WAV file cannot be opened, + * uses an unknown data format, or is corrupt; call SDL_GetError() + * for more information. + * + * When the application is done with the data returned in + * `audio_buf`, it should call SDL_free() to dispose of it. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_LoadWAV_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LoadWAV(const char *path, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); + +/** + * Mix audio data in a specified format. + * + * This takes an audio buffer `src` of `len` bytes of `format` data and mixes + * it into `dst`, performing addition, volume adjustment, and overflow + * clipping. The buffer pointed to by `dst` must also be `len` bytes of + * `format` data. + * + * This is provided for convenience -- you can mix your own audio data. + * + * Do not use this function for mixing together more than two streams of + * sample data. The output from repeated application of this function may be + * distorted by clipping, because there is no accumulator with greater range + * than the input (not to mention this being an inefficient way of doing it). + * + * It is a common misconception that this function is required to write audio + * data to an output stream in an audio callback. While you can do that, + * SDL_MixAudio() is really only needed when you're mixing a single audio + * stream with a volume adjustment. + * + * \param dst the destination for the mixed audio. + * \param src the source audio buffer to be mixed. + * \param format the SDL_AudioFormat structure representing the desired audio + * format. + * \param len the length of the audio buffer in bytes. + * \param volume ranges from 0.0 - 1.0, and should be set to 1.0 for full + * audio volume. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_MixAudio(Uint8 *dst, const Uint8 *src, SDL_AudioFormat format, Uint32 len, float volume); + +/** + * Convert some audio data of one format to another format. + * + * Please note that this function is for convenience, but should not be used + * to resample audio in blocks, as it will introduce audio artifacts on the + * boundaries. You should only use this function if you are converting audio + * data in its entirety in one call. If you want to convert audio in smaller + * chunks, use an SDL_AudioStream, which is designed for this situation. + * + * Internally, this function creates and destroys an SDL_AudioStream on each + * use, so it's also less efficient than using one directly, if you need to + * convert multiple times. + * + * \param src_spec the format details of the input audio. + * \param src_data the audio data to be converted. + * \param src_len the len of src_data. + * \param dst_spec the format details of the output audio. + * \param dst_data will be filled with a pointer to converted audio data, + * which should be freed with SDL_free(). On error, it will be + * NULL. + * \param dst_len will be filled with the len of dst_data. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertAudioSamples(const SDL_AudioSpec *src_spec, const Uint8 *src_data, int src_len, const SDL_AudioSpec *dst_spec, Uint8 **dst_data, int *dst_len); + +/** + * Get the human readable name of an audio format. + * + * \param format the audio format to query. + * \returns the human readable name of the specified audio format or + * "SDL_AUDIO_UNKNOWN" if the format isn't recognized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAudioFormatName(SDL_AudioFormat format); + +/** + * Get the appropriate memset value for silencing an audio format. + * + * The value returned by this function can be used as the second argument to + * memset (or SDL_memset) to set an audio buffer in a specific format to + * silence. + * + * \param format the audio data format to query. + * \returns a byte value that can be passed to memset. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSilenceValueForFormat(SDL_AudioFormat format); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_audio_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_begin_code.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_begin_code.h new file mode 100644 index 0000000..a6b47cf --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_begin_code.h @@ -0,0 +1,486 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: BeginCode */ + +/** + * # CategoryBeginCode + * + * `SDL_begin_code.h` sets things up for C dynamic library function + * definitions, static inlined functions, and structures aligned at 4-byte + * alignment. If you don't like ugly C preprocessor code, don't look at this + * file. :) + * + * SDL's headers use this; applications generally should not include this + * header directly. + */ + +/* This shouldn't be nested -- included it around code only. */ +#ifdef SDL_begin_code_h +#error Nested inclusion of SDL_begin_code.h +#endif +#define SDL_begin_code_h + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to tag a symbol as deprecated. + * + * A function is marked deprecated by adding this macro to its declaration: + * + * ```c + * extern SDL_DEPRECATED int ThisFunctionWasABadIdea(void); + * ``` + * + * Compilers with deprecation support can give a warning when a deprecated + * function is used. This symbol may be used in SDL's headers, but apps are + * welcome to use it for their own interfaces as well. + * + * SDL, on occasion, might deprecate a function for various reasons. However, + * SDL never removes symbols before major versions, so deprecated interfaces + * in SDL3 will remain available until SDL4, where it would be expected an app + * would have to take steps to migrate anyhow. + * + * On compilers without a deprecation mechanism, this is defined to nothing, + * and using a deprecated function will not generate a warning. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEPRECATED __attribute__((deprecated)) + +/** + * A macro to tag a symbol as a public API. + * + * SDL uses this macro for all its public functions. On some targets, it is + * used to signal to the compiler that this function needs to be exported from + * a shared library, but it might have other side effects. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DECLSPEC __attribute__ ((visibility("default"))) + +/** + * A macro to set a function's calling conventions. + * + * SDL uses this macro for all its public functions, and any callbacks it + * defines. This macro guarantees that calling conventions match between SDL + * and the app, even if the two were built with different compilers or + * optimization settings. + * + * When writing a callback function, it is very important for it to be + * correctly tagged with SDLCALL, as mismatched calling conventions can cause + * strange behaviors and can be difficult to diagnose. Plus, on many + * platforms, SDLCALL is defined to nothing, so compilers won't be able to + * warn that the tag is missing. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDLCALL __cdecl + +/** + * A macro to request a function be inlined. + * + * This is a hint to the compiler to inline a function. The compiler is free + * to ignore this request. On compilers without inline support, this is + * defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_INLINE __inline + +/** + * A macro to demand a function be inlined. + * + * This is a command to the compiler to inline a function. SDL uses this macro + * in its public headers for a handful of simple functions. On compilers + * without forceinline support, this is defined to `static SDL_INLINE`, which + * is often good enough. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FORCE_INLINE __forceinline + +/** + * A macro to tag a function as never-returning. + * + * This is a hint to the compiler that a function does not return. An example + * of a function like this is the C runtime's exit() function. + * + * This hint can lead to code optimizations, and help analyzers understand + * code flow better. On compilers without noreturn support, this is defined to + * nothing. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NORETURN __attribute__((noreturn)) + +/** + * A macro to tag a function as never-returning (for analysis purposes). + * + * This is almost identical to SDL_NORETURN, except functions marked with this + * _can_ actually return. The difference is that this isn't used for code + * generation, but rather static analyzers use this information to assume + * truths about program state and available code paths. Specifically, this tag + * is useful for writing an assertion mechanism. Indeed, SDL_assert uses this + * tag behind the scenes. Generally, apps that don't understand the specific + * use-case for this tag should avoid using it directly. + * + * On compilers without analyzer_noreturn support, this is defined to nothing. + * + * This symbol is used in SDL's headers, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ANALYZER_NORETURN __attribute__((analyzer_noreturn)) + + +/** + * A macro to signal that a case statement without a `break` is intentional. + * + * C compilers have gotten more aggressive about warning when a switch's + * `case` block does not end with a `break` or other flow control statement, + * flowing into the next case's code, as this is a common accident that leads + * to strange bugs. But sometimes falling through to the next case is the + * correct and desired behavior. This symbol lets an app communicate this + * intention to the compiler, so it doesn't generate a warning. + * + * It is used like this: + * + * ```c + * switch (x) { + * case 1: + * DoSomethingOnlyForOne(); + * SDL_FALLTHROUGH; // tell the compiler this was intentional. + * case 2: + * DoSomethingForOneAndTwo(); + * break; + * } + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FALLTHROUGH [[fallthrough]] + +/** + * A macro to tag a function's return value as critical. + * + * This is a hint to the compiler that a function's return value should not be + * ignored. + * + * If an NODISCARD function's return value is thrown away (the function is + * called as if it returns `void`), the compiler will issue a warning. + * + * While it's generally good practice to check return values for errors, often + * times legitimate programs do not for good reasons. Be careful about what + * functions are tagged as NODISCARD. It operates best when used on a function + * that's failure is surprising and catastrophic; a good example would be a + * program that checks the return values of all its file write function calls + * but not the call to close the file, which it assumes incorrectly never + * fails. + * + * Function callers that want to throw away a NODISCARD return value can call + * the function with a `(void)` cast, which informs the compiler the act is + * intentional. + * + * On compilers without nodiscard support, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NODISCARD [[nodiscard]] + +/** + * A macro to tag a function as an allocator. + * + * This is a hint to the compiler that a function is an allocator, like + * malloc(), with certain rules. A description of how GCC treats this hint is + * here: + * + * https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-malloc-function-attribute + * + * On compilers without allocator tag support, this is defined to nothing. + * + * Most apps don't need to, and should not, use this directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MALLOC __declspec(allocator) __desclspec(restrict) + +/** + * A macro to tag a function as returning a certain allocation. + * + * This is a hint to the compiler that a function allocates and returns a + * specific amount of memory based on one of its arguments. For example, the C + * runtime's malloc() function could use this macro with an argument of 1 + * (first argument to malloc is the size of the allocation). + * + * On compilers without alloc_size support, this is defined to nothing. + * + * Most apps don't need to, and should not, use this directly. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ALLOC_SIZE(p) __attribute__((alloc_size(p))) + +/** + * A macro to tag a pointer variable, to help with pointer aliasing. + * + * A good explanation of the restrict keyword is here: + * + * https://en.wikipedia.org/wiki/Restrict + * + * On compilers without restrict support, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RESTRICT __restrict__ + +/** + * Check if the compiler supports a given builtin functionality. + * + * This allows preprocessor checks for things that otherwise might fail to + * compile. + * + * Supported by virtually all clang versions and more-recent GCCs. Use this + * instead of checking the clang version if possible. + * + * On compilers without has_builtin support, this is defined to 0 (always + * false). + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAS_BUILTIN(x) __has_builtin(x) + +/* end of wiki documentation section. */ +#endif + +#ifndef SDL_HAS_BUILTIN +#ifdef __has_builtin +#define SDL_HAS_BUILTIN(x) __has_builtin(x) +#else +#define SDL_HAS_BUILTIN(x) 0 +#endif +#endif + +#ifndef SDL_DEPRECATED +# if defined(__GNUC__) && (__GNUC__ >= 4) /* technically, this arrived in gcc 3.1, but oh well. */ +# define SDL_DEPRECATED __attribute__((deprecated)) +# elif defined(_MSC_VER) +# define SDL_DEPRECATED __declspec(deprecated) +# else +# define SDL_DEPRECATED +# endif +#endif + +#ifndef SDL_UNUSED +# ifdef __GNUC__ +# define SDL_UNUSED __attribute__((unused)) +# else +# define SDL_UNUSED +# endif +#endif + +/* Some compilers use a special export keyword */ +#ifndef SDL_DECLSPEC +# if defined(SDL_PLATFORM_WINDOWS) +# ifdef DLL_EXPORT +# define SDL_DECLSPEC __declspec(dllexport) +# else +# define SDL_DECLSPEC +# endif +# else +# if defined(__GNUC__) && __GNUC__ >= 4 +# define SDL_DECLSPEC __attribute__ ((visibility("default"))) +# else +# define SDL_DECLSPEC +# endif +# endif +#endif + +/* By default SDL uses the C calling convention */ +#ifndef SDLCALL +#if defined(SDL_PLATFORM_WINDOWS) && !defined(__GNUC__) +#define SDLCALL __cdecl +#else +#define SDLCALL +#endif +#endif /* SDLCALL */ + +/* Force structure packing at 4 byte alignment. + This is necessary if the header is included in code which has structure + packing set to an alternate value, say for loading structures from disk. + The packing is reset to the previous value in SDL_close_code.h + */ +#if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__) +#ifdef _MSC_VER +#pragma warning(disable: 4103) +#endif +#ifdef __clang__ +#pragma clang diagnostic ignored "-Wpragma-pack" +#endif +#ifdef __BORLANDC__ +#pragma nopackwarning +#endif +#ifdef _WIN64 +/* Use 8-byte alignment on 64-bit architectures, so pointers are aligned */ +#pragma pack(push,8) +#else +#pragma pack(push,4) +#endif +#endif /* Compiler needs structure packing set */ + +#ifndef SDL_INLINE +#ifdef __GNUC__ +#define SDL_INLINE __inline__ +#elif defined(_MSC_VER) || defined(__BORLANDC__) || \ + defined(__DMC__) || defined(__SC__) || \ + defined(__WATCOMC__) || defined(__LCC__) || \ + defined(__DECC) || defined(__CC_ARM) +#define SDL_INLINE __inline +#ifndef __inline__ +#define __inline__ __inline +#endif +#else +#define SDL_INLINE inline +#ifndef __inline__ +#define __inline__ inline +#endif +#endif +#endif /* SDL_INLINE not defined */ + +#ifndef SDL_FORCE_INLINE +#ifdef _MSC_VER +#define SDL_FORCE_INLINE __forceinline +#elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) ) +#define SDL_FORCE_INLINE __attribute__((always_inline)) static __inline__ +#else +#define SDL_FORCE_INLINE static SDL_INLINE +#endif +#endif /* SDL_FORCE_INLINE not defined */ + +#ifndef SDL_NORETURN +#ifdef __GNUC__ +#define SDL_NORETURN __attribute__((noreturn)) +#elif defined(_MSC_VER) +#define SDL_NORETURN __declspec(noreturn) +#else +#define SDL_NORETURN +#endif +#endif /* SDL_NORETURN not defined */ + +#ifdef __clang__ +#if __has_feature(attribute_analyzer_noreturn) +#define SDL_ANALYZER_NORETURN __attribute__((analyzer_noreturn)) +#endif +#endif + +#ifndef SDL_ANALYZER_NORETURN +#define SDL_ANALYZER_NORETURN +#endif + +/* Apparently this is needed by several Windows compilers */ +#ifndef __MACH__ +#ifndef NULL +#ifdef __cplusplus +#define NULL 0 +#else +#define NULL ((void *)0) +#endif +#endif /* NULL */ +#endif /* ! macOS - breaks precompiled headers */ + +#ifndef SDL_FALLTHROUGH +#if (defined(__cplusplus) && __cplusplus >= 201703L) || \ + (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202000L) +#define SDL_FALLTHROUGH [[fallthrough]] +#else +#if defined(__has_attribute) && !defined(__SUNPRO_C) && !defined(__SUNPRO_CC) +#define SDL_HAS_FALLTHROUGH __has_attribute(__fallthrough__) +#else +#define SDL_HAS_FALLTHROUGH 0 +#endif /* __has_attribute */ +#if SDL_HAS_FALLTHROUGH && \ + ((defined(__GNUC__) && __GNUC__ >= 7) || \ + (defined(__clang_major__) && __clang_major__ >= 10)) +#define SDL_FALLTHROUGH __attribute__((__fallthrough__)) +#else +#define SDL_FALLTHROUGH do {} while (0) /* fallthrough */ +#endif /* SDL_HAS_FALLTHROUGH */ +#undef SDL_HAS_FALLTHROUGH +#endif /* C++17 or C2x */ +#endif /* SDL_FALLTHROUGH not defined */ + +#ifndef SDL_NODISCARD +#if (defined(__cplusplus) && __cplusplus >= 201703L) || \ + (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) +#define SDL_NODISCARD [[nodiscard]] +#elif ( (defined(__GNUC__) && (__GNUC__ >= 4)) || defined(__clang__) ) +#define SDL_NODISCARD __attribute__((warn_unused_result)) +#elif defined(_MSC_VER) && (_MSC_VER >= 1700) +#define SDL_NODISCARD _Check_return_ +#else +#define SDL_NODISCARD +#endif /* C++17 or C23 */ +#endif /* SDL_NODISCARD not defined */ + +#ifndef SDL_MALLOC +#if defined(__GNUC__) && (__GNUC__ >= 3) +#define SDL_MALLOC __attribute__((malloc)) +/** FIXME +#elif defined(_MSC_VER) +#define SDL_MALLOC __declspec(allocator) __desclspec(restrict) +**/ +#else +#define SDL_MALLOC +#endif +#endif /* SDL_MALLOC not defined */ + +#ifndef SDL_ALLOC_SIZE +#if (defined(__clang__) && __clang_major__ >= 4) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) +#define SDL_ALLOC_SIZE(p) __attribute__((alloc_size(p))) +#elif defined(_MSC_VER) +#define SDL_ALLOC_SIZE(p) +#else +#define SDL_ALLOC_SIZE(p) +#endif +#endif /* SDL_ALLOC_SIZE not defined */ + +#ifndef SDL_ALLOC_SIZE2 +#if (defined(__clang__) && __clang_major__ >= 4) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) +#define SDL_ALLOC_SIZE2(p1, p2) __attribute__((alloc_size(p1, p2))) +#elif defined(_MSC_VER) +#define SDL_ALLOC_SIZE2(p1, p2) +#else +#define SDL_ALLOC_SIZE2(p1, p2) +#endif +#endif /* SDL_ALLOC_SIZE2 not defined */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_bits.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_bits.h new file mode 100644 index 0000000..7435ce6 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_bits.h @@ -0,0 +1,147 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryBits + * + * Functions for fiddling with bits and bitmasks. + */ + +#ifndef SDL_bits_h_ +#define SDL_bits_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#if defined(__WATCOMC__) && defined(__386__) +extern __inline int _SDL_bsr_watcom(Uint32); +#pragma aux _SDL_bsr_watcom = \ + "bsr eax, eax" \ + parm [eax] nomemory \ + value [eax] \ + modify exact [eax] nomemory; +#endif + +/** + * Get the index of the most significant (set) bit in a 32-bit number. + * + * Result is undefined when called with 0. This operation can also be stated + * as "count leading zeroes" and "log base 2". + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the 32-bit value to examine. + * \returns the index of the most significant bit, or -1 if the value is 0. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE int SDL_MostSignificantBitIndex32(Uint32 x) +{ +#if defined(__GNUC__) && (__GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) + /* Count Leading Zeroes builtin in GCC. + * http://gcc.gnu.org/onlinedocs/gcc-4.3.4/gcc/Other-Builtins.html + */ + if (x == 0) { + return -1; + } + return 31 - __builtin_clz(x); +#elif defined(__WATCOMC__) && defined(__386__) + if (x == 0) { + return -1; + } + return _SDL_bsr_watcom(x); +#elif defined(_MSC_VER) && _MSC_VER >= 1400 + unsigned long index; + if (_BitScanReverse(&index, x)) { + return (int)index; + } + return -1; +#else + /* Based off of Bit Twiddling Hacks by Sean Eron Anderson + * , released in the public domain. + * http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog + */ + const Uint32 b[] = {0x2, 0xC, 0xF0, 0xFF00, 0xFFFF0000}; + const int S[] = {1, 2, 4, 8, 16}; + + int msbIndex = 0; + int i; + + if (x == 0) { + return -1; + } + + for (i = 4; i >= 0; i--) + { + if (x & b[i]) + { + x >>= S[i]; + msbIndex |= S[i]; + } + } + + return msbIndex; +#endif +} + +/** + * Determine if a unsigned 32-bit value has exactly one bit set. + * + * If there are no bits set (`x` is zero), or more than one bit set, this + * returns false. If any one bit is exclusively set, this returns true. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the 32-bit value to examine. + * \returns true if exactly one bit is set in `x`, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_HasExactlyOneBitSet32(Uint32 x) +{ + if (x && !(x & (x - 1))) { + return true; + } + return false; +} + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_bits_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_blendmode.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_blendmode.h new file mode 100644 index 0000000..8f00cbc --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_blendmode.h @@ -0,0 +1,202 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryBlendmode + * + * Blend modes decide how two colors will mix together. There are both + * standard modes for basic needs and a means to create custom modes, + * dictating what sort of math to do on what color components. + */ + +#ifndef SDL_blendmode_h_ +#define SDL_blendmode_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A set of blend modes used in drawing operations. + * + * These predefined blend modes are supported everywhere. + * + * Additional values may be obtained from SDL_ComposeCustomBlendMode. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_ComposeCustomBlendMode + */ +typedef Uint32 SDL_BlendMode; + +#define SDL_BLENDMODE_NONE 0x00000000u /**< no blending: dstRGBA = srcRGBA */ +#define SDL_BLENDMODE_BLEND 0x00000001u /**< alpha blending: dstRGB = (srcRGB * srcA) + (dstRGB * (1-srcA)), dstA = srcA + (dstA * (1-srcA)) */ +#define SDL_BLENDMODE_BLEND_PREMULTIPLIED 0x00000010u /**< pre-multiplied alpha blending: dstRGBA = srcRGBA + (dstRGBA * (1-srcA)) */ +#define SDL_BLENDMODE_ADD 0x00000002u /**< additive blending: dstRGB = (srcRGB * srcA) + dstRGB, dstA = dstA */ +#define SDL_BLENDMODE_ADD_PREMULTIPLIED 0x00000020u /**< pre-multiplied additive blending: dstRGB = srcRGB + dstRGB, dstA = dstA */ +#define SDL_BLENDMODE_MOD 0x00000004u /**< color modulate: dstRGB = srcRGB * dstRGB, dstA = dstA */ +#define SDL_BLENDMODE_MUL 0x00000008u /**< color multiply: dstRGB = (srcRGB * dstRGB) + (dstRGB * (1-srcA)), dstA = dstA */ +#define SDL_BLENDMODE_INVALID 0x7FFFFFFFu + +/** + * The blend operation used when combining source and destination pixel + * components. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_BlendOperation +{ + SDL_BLENDOPERATION_ADD = 0x1, /**< dst + src: supported by all renderers */ + SDL_BLENDOPERATION_SUBTRACT = 0x2, /**< src - dst : supported by D3D, OpenGL, OpenGLES, and Vulkan */ + SDL_BLENDOPERATION_REV_SUBTRACT = 0x3, /**< dst - src : supported by D3D, OpenGL, OpenGLES, and Vulkan */ + SDL_BLENDOPERATION_MINIMUM = 0x4, /**< min(dst, src) : supported by D3D, OpenGL, OpenGLES, and Vulkan */ + SDL_BLENDOPERATION_MAXIMUM = 0x5 /**< max(dst, src) : supported by D3D, OpenGL, OpenGLES, and Vulkan */ +} SDL_BlendOperation; + +/** + * The normalized factor used to multiply pixel components. + * + * The blend factors are multiplied with the pixels from a drawing operation + * (src) and the pixels from the render target (dst) before the blend + * operation. The comma-separated factors listed above are always applied in + * the component order red, green, blue, and alpha. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_BlendFactor +{ + SDL_BLENDFACTOR_ZERO = 0x1, /**< 0, 0, 0, 0 */ + SDL_BLENDFACTOR_ONE = 0x2, /**< 1, 1, 1, 1 */ + SDL_BLENDFACTOR_SRC_COLOR = 0x3, /**< srcR, srcG, srcB, srcA */ + SDL_BLENDFACTOR_ONE_MINUS_SRC_COLOR = 0x4, /**< 1-srcR, 1-srcG, 1-srcB, 1-srcA */ + SDL_BLENDFACTOR_SRC_ALPHA = 0x5, /**< srcA, srcA, srcA, srcA */ + SDL_BLENDFACTOR_ONE_MINUS_SRC_ALPHA = 0x6, /**< 1-srcA, 1-srcA, 1-srcA, 1-srcA */ + SDL_BLENDFACTOR_DST_COLOR = 0x7, /**< dstR, dstG, dstB, dstA */ + SDL_BLENDFACTOR_ONE_MINUS_DST_COLOR = 0x8, /**< 1-dstR, 1-dstG, 1-dstB, 1-dstA */ + SDL_BLENDFACTOR_DST_ALPHA = 0x9, /**< dstA, dstA, dstA, dstA */ + SDL_BLENDFACTOR_ONE_MINUS_DST_ALPHA = 0xA /**< 1-dstA, 1-dstA, 1-dstA, 1-dstA */ +} SDL_BlendFactor; + +/** + * Compose a custom blend mode for renderers. + * + * The functions SDL_SetRenderDrawBlendMode and SDL_SetTextureBlendMode accept + * the SDL_BlendMode returned by this function if the renderer supports it. + * + * A blend mode controls how the pixels from a drawing operation (source) get + * combined with the pixels from the render target (destination). First, the + * components of the source and destination pixels get multiplied with their + * blend factors. Then, the blend operation takes the two products and + * calculates the result that will get stored in the render target. + * + * Expressed in pseudocode, it would look like this: + * + * ```c + * dstRGB = colorOperation(srcRGB * srcColorFactor, dstRGB * dstColorFactor); + * dstA = alphaOperation(srcA * srcAlphaFactor, dstA * dstAlphaFactor); + * ``` + * + * Where the functions `colorOperation(src, dst)` and `alphaOperation(src, + * dst)` can return one of the following: + * + * - `src + dst` + * - `src - dst` + * - `dst - src` + * - `min(src, dst)` + * - `max(src, dst)` + * + * The red, green, and blue components are always multiplied with the first, + * second, and third components of the SDL_BlendFactor, respectively. The + * fourth component is not used. + * + * The alpha component is always multiplied with the fourth component of the + * SDL_BlendFactor. The other components are not used in the alpha + * calculation. + * + * Support for these blend modes varies for each renderer. To check if a + * specific SDL_BlendMode is supported, create a renderer and pass it to + * either SDL_SetRenderDrawBlendMode or SDL_SetTextureBlendMode. They will + * return with an error if the blend mode is not supported. + * + * This list describes the support of custom blend modes for each renderer. + * All renderers support the four blend modes listed in the SDL_BlendMode + * enumeration. + * + * - **direct3d**: Supports all operations with all factors. However, some + * factors produce unexpected results with `SDL_BLENDOPERATION_MINIMUM` and + * `SDL_BLENDOPERATION_MAXIMUM`. + * - **direct3d11**: Same as Direct3D 9. + * - **opengl**: Supports the `SDL_BLENDOPERATION_ADD` operation with all + * factors. OpenGL versions 1.1, 1.2, and 1.3 do not work correctly here. + * - **opengles2**: Supports the `SDL_BLENDOPERATION_ADD`, + * `SDL_BLENDOPERATION_SUBTRACT`, `SDL_BLENDOPERATION_REV_SUBTRACT` + * operations with all factors. + * - **psp**: No custom blend mode support. + * - **software**: No custom blend mode support. + * + * Some renderers do not provide an alpha component for the default render + * target. The `SDL_BLENDFACTOR_DST_ALPHA` and + * `SDL_BLENDFACTOR_ONE_MINUS_DST_ALPHA` factors do not have an effect in this + * case. + * + * \param srcColorFactor the SDL_BlendFactor applied to the red, green, and + * blue components of the source pixels. + * \param dstColorFactor the SDL_BlendFactor applied to the red, green, and + * blue components of the destination pixels. + * \param colorOperation the SDL_BlendOperation used to combine the red, + * green, and blue components of the source and + * destination pixels. + * \param srcAlphaFactor the SDL_BlendFactor applied to the alpha component of + * the source pixels. + * \param dstAlphaFactor the SDL_BlendFactor applied to the alpha component of + * the destination pixels. + * \param alphaOperation the SDL_BlendOperation used to combine the alpha + * component of the source and destination pixels. + * \returns an SDL_BlendMode that represents the chosen factors and + * operations. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawBlendMode + * \sa SDL_GetRenderDrawBlendMode + * \sa SDL_SetTextureBlendMode + * \sa SDL_GetTextureBlendMode + */ +extern SDL_DECLSPEC SDL_BlendMode SDLCALL SDL_ComposeCustomBlendMode(SDL_BlendFactor srcColorFactor, + SDL_BlendFactor dstColorFactor, + SDL_BlendOperation colorOperation, + SDL_BlendFactor srcAlphaFactor, + SDL_BlendFactor dstAlphaFactor, + SDL_BlendOperation alphaOperation); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_blendmode_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_camera.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_camera.h new file mode 100644 index 0000000..5f3911f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_camera.h @@ -0,0 +1,519 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryCamera + * + * Video capture for the SDL library. + * + * This API lets apps read input from video sources, like webcams. Camera + * devices can be enumerated, queried, and opened. Once opened, it will + * provide SDL_Surface objects as new frames of video come in. These surfaces + * can be uploaded to an SDL_Texture or processed as pixels in memory. + * + * Several platforms will alert the user if an app tries to access a camera, + * and some will present a UI asking the user if your application should be + * allowed to obtain images at all, which they can deny. A successfully opened + * camera will not provide images until permission is granted. Applications, + * after opening a camera device, can see if they were granted access by + * either polling with the SDL_GetCameraPermissionState() function, or waiting + * for an SDL_EVENT_CAMERA_DEVICE_APPROVED or SDL_EVENT_CAMERA_DEVICE_DENIED + * event. Platforms that don't have any user approval process will report + * approval immediately. + * + * Note that SDL cameras only provide video as individual frames; they will + * not provide full-motion video encoded in a movie file format, although an + * app is free to encode the acquired frames into any format it likes. It also + * does not provide audio from the camera hardware through this API; not only + * do many webcams not have microphones at all, many people--from streamers to + * people on Zoom calls--will want to use a separate microphone regardless of + * the camera. In any case, recorded audio will be available through SDL's + * audio API no matter what hardware provides the microphone. + * + * ## Camera gotchas + * + * Consumer-level camera hardware tends to take a little while to warm up, + * once the device has been opened. Generally most camera apps have some sort + * of UI to take a picture (a button to snap a pic while a preview is showing, + * some sort of multi-second countdown for the user to pose, like a photo + * booth), which puts control in the users' hands, or they are intended to + * stay on for long times (Pokemon Go, etc). + * + * It's not uncommon that a newly-opened camera will provide a couple of + * completely black frames, maybe followed by some under-exposed images. If + * taking a single frame automatically, or recording video from a camera's + * input without the user initiating it from a preview, it could be wise to + * drop the first several frames (if not the first several _seconds_ worth of + * frames!) before using images from a camera. + */ + +#ifndef SDL_camera_h_ +#define SDL_camera_h_ + +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a camera device for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the device is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + */ +typedef Uint32 SDL_CameraID; + +/** + * The opaque structure used to identify an opened SDL camera. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Camera SDL_Camera; + +/** + * The details of an output format for a camera device. + * + * Cameras often support multiple formats; each one will be encapsulated in + * this struct. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetCameraSupportedFormats + * \sa SDL_GetCameraFormat + */ +typedef struct SDL_CameraSpec +{ + SDL_PixelFormat format; /**< Frame format */ + SDL_Colorspace colorspace; /**< Frame colorspace */ + int width; /**< Frame width */ + int height; /**< Frame height */ + int framerate_numerator; /**< Frame rate numerator ((num / denom) == FPS, (denom / num) == duration in seconds) */ + int framerate_denominator; /**< Frame rate demoninator ((num / denom) == FPS, (denom / num) == duration in seconds) */ +} SDL_CameraSpec; + +/** + * The position of camera in relation to system device. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetCameraPosition + */ +typedef enum SDL_CameraPosition +{ + SDL_CAMERA_POSITION_UNKNOWN, + SDL_CAMERA_POSITION_FRONT_FACING, + SDL_CAMERA_POSITION_BACK_FACING +} SDL_CameraPosition; + + +/** + * Use this function to get the number of built-in camera drivers. + * + * This function returns a hardcoded number. This never returns a negative + * value; if there are no drivers compiled into this build of SDL, this + * function returns zero. The presence of a driver in this list does not mean + * it will function, it just means SDL is capable of interacting with that + * interface. For example, a build of SDL might have v4l2 support, but if + * there's no kernel support available, SDL's v4l2 driver would fail if used. + * + * By default, SDL tries all drivers, in its preferred order, until one is + * found to be usable. + * + * \returns the number of built-in camera drivers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameraDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumCameraDrivers(void); + +/** + * Use this function to get the name of a built in camera driver. + * + * The list of camera drivers is given in the order that they are normally + * initialized by default; the drivers that seem more reasonable to choose + * first (as far as the SDL developers believe) are earlier in the list. + * + * The names of drivers are all simple, low-ASCII identifiers, like "v4l2", + * "coremedia" or "android". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of the camera driver; the value ranges from 0 to + * SDL_GetNumCameraDrivers() - 1. + * \returns the name of the camera driver at the requested index, or NULL if + * an invalid index was specified. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumCameraDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCameraDriver(int index); + +/** + * Get the name of the current camera driver. + * + * The names of drivers are all simple, low-ASCII identifiers, like "v4l2", + * "coremedia" or "android". These never have Unicode characters, and are not + * meant to be proper names. + * + * \returns the name of the current camera driver or NULL if no driver has + * been initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCurrentCameraDriver(void); + +/** + * Get a list of currently connected camera devices. + * + * \param count a pointer filled in with the number of cameras returned, may + * be NULL. + * \returns a 0 terminated array of camera instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC SDL_CameraID * SDLCALL SDL_GetCameras(int *count); + +/** + * Get the list of native formats/sizes a camera supports. + * + * This returns a list of all formats and frame sizes that a specific camera + * can offer. This is useful if your app can accept a variety of image formats + * and sizes and so want to find the optimal spec that doesn't require + * conversion. + * + * This function isn't strictly required; if you call SDL_OpenCamera with a + * NULL spec, SDL will choose a native format for you, and if you instead + * specify a desired format, it will transparently convert to the requested + * format on your behalf. + * + * If `count` is not NULL, it will be filled with the number of elements in + * the returned array. + * + * Note that it's legal for a camera to supply an empty list. This is what + * will happen on Emscripten builds, since that platform won't tell _anything_ + * about available cameras until you've opened one, and won't even tell if + * there _is_ a camera until the user has given you permission to check + * through a scary warning popup. + * + * \param instance_id the camera device instance ID. + * \param count a pointer filled in with the number of elements in the list, + * may be NULL. + * \returns a NULL terminated array of pointers to SDL_CameraSpec or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC SDL_CameraSpec ** SDLCALL SDL_GetCameraSupportedFormats(SDL_CameraID instance_id, int *count); + +/** + * Get the human-readable device name for a camera. + * + * \param instance_id the camera device instance ID. + * \returns a human-readable device name or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCameraName(SDL_CameraID instance_id); + +/** + * Get the position of the camera in relation to the system. + * + * Most platforms will report UNKNOWN, but mobile devices, like phones, can + * often make a distinction between cameras on the front of the device (that + * points towards the user, for taking "selfies") and cameras on the back (for + * filming in the direction the user is facing). + * + * \param instance_id the camera device instance ID. + * \returns the position of the camera on the system hardware. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + */ +extern SDL_DECLSPEC SDL_CameraPosition SDLCALL SDL_GetCameraPosition(SDL_CameraID instance_id); + +/** + * Open a video recording device (a "camera"). + * + * You can open the device with any reasonable spec, and if the hardware can't + * directly support it, it will convert data seamlessly to the requested + * format. This might incur overhead, including scaling of image data. + * + * If you would rather accept whatever format the device offers, you can pass + * a NULL spec here and it will choose one for you (and you can use + * SDL_Surface's conversion/scaling functions directly if necessary). + * + * You can call SDL_GetCameraFormat() to get the actual data format if passing + * a NULL spec here. You can see the exact specs a device can support without + * conversion with SDL_GetCameraSupportedFormats(). + * + * SDL will not attempt to emulate framerate; it will try to set the hardware + * to the rate closest to the requested speed, but it won't attempt to limit + * or duplicate frames artificially; call SDL_GetCameraFormat() to see the + * actual framerate of the opened the device, and check your timestamps if + * this is crucial to your app! + * + * Note that the camera is not usable until the user approves its use! On some + * platforms, the operating system will prompt the user to permit access to + * the camera, and they can choose Yes or No at that point. Until they do, the + * camera will not be usable. The app should either wait for an + * SDL_EVENT_CAMERA_DEVICE_APPROVED (or SDL_EVENT_CAMERA_DEVICE_DENIED) event, + * or poll SDL_GetCameraPermissionState() occasionally until it returns + * non-zero. On platforms that don't require explicit user approval (and + * perhaps in places where the user previously permitted access), the approval + * event might come immediately, but it might come seconds, minutes, or hours + * later! + * + * \param instance_id the camera device instance ID. + * \param spec the desired format for data the device will provide. Can be + * NULL. + * \returns an SDL_Camera object or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCameras + * \sa SDL_GetCameraFormat + */ +extern SDL_DECLSPEC SDL_Camera * SDLCALL SDL_OpenCamera(SDL_CameraID instance_id, const SDL_CameraSpec *spec); + +/** + * Query if camera access has been approved by the user. + * + * Cameras will not function between when the device is opened by the app and + * when the user permits access to the hardware. On some platforms, this + * presents as a popup dialog where the user has to explicitly approve access; + * on others the approval might be implicit and not alert the user at all. + * + * This function can be used to check the status of that approval. It will + * return 0 if still waiting for user response, 1 if the camera is approved + * for use, and -1 if the user denied access. + * + * Instead of polling with this function, you can wait for a + * SDL_EVENT_CAMERA_DEVICE_APPROVED (or SDL_EVENT_CAMERA_DEVICE_DENIED) event + * in the standard SDL event loop, which is guaranteed to be sent once when + * permission to use the camera is decided. + * + * If a camera is declined, there's nothing to be done but call + * SDL_CloseCamera() to dispose of it. + * + * \param camera the opened camera device to query. + * \returns -1 if user denied access to the camera, 1 if user approved access, + * 0 if no decision has been made yet. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + * \sa SDL_CloseCamera + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetCameraPermissionState(SDL_Camera *camera); + +/** + * Get the instance ID of an opened camera. + * + * \param camera an SDL_Camera to query. + * \returns the instance ID of the specified camera on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC SDL_CameraID SDLCALL SDL_GetCameraID(SDL_Camera *camera); + +/** + * Get the properties associated with an opened camera. + * + * \param camera the SDL_Camera obtained from SDL_OpenCamera(). + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetCameraProperties(SDL_Camera *camera); + +/** + * Get the spec that a camera is using when generating images. + * + * Note that this might not be the native format of the hardware, as SDL might + * be converting to this format behind the scenes. + * + * If the system is waiting for the user to approve access to the camera, as + * some platforms require, this will return false, but this isn't necessarily + * a fatal error; you should either wait for an + * SDL_EVENT_CAMERA_DEVICE_APPROVED (or SDL_EVENT_CAMERA_DEVICE_DENIED) event, + * or poll SDL_GetCameraPermissionState() occasionally until it returns + * non-zero. + * + * \param camera opened camera device. + * \param spec the SDL_CameraSpec to be initialized by this function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetCameraFormat(SDL_Camera *camera, SDL_CameraSpec *spec); + +/** + * Acquire a frame. + * + * The frame is a memory pointer to the image data, whose size and format are + * given by the spec requested when opening the device. + * + * This is a non blocking API. If there is a frame available, a non-NULL + * surface is returned, and timestampNS will be filled with a non-zero value. + * + * Note that an error case can also return NULL, but a NULL by itself is + * normal and just signifies that a new frame is not yet available. Note that + * even if a camera device fails outright (a USB camera is unplugged while in + * use, etc), SDL will send an event separately to notify the app, but + * continue to provide blank frames at ongoing intervals until + * SDL_CloseCamera() is called, so real failure here is almost always an out + * of memory condition. + * + * After use, the frame should be released with SDL_ReleaseCameraFrame(). If + * you don't do this, the system may stop providing more video! + * + * Do not call SDL_DestroySurface() on the returned surface! It must be given + * back to the camera subsystem with SDL_ReleaseCameraFrame! + * + * If the system is waiting for the user to approve access to the camera, as + * some platforms require, this will return NULL (no frames available); you + * should either wait for an SDL_EVENT_CAMERA_DEVICE_APPROVED (or + * SDL_EVENT_CAMERA_DEVICE_DENIED) event, or poll + * SDL_GetCameraPermissionState() occasionally until it returns non-zero. + * + * \param camera opened camera device. + * \param timestampNS a pointer filled in with the frame's timestamp, or 0 on + * error. Can be NULL. + * \returns a new frame of video on success, NULL if none is currently + * available. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ReleaseCameraFrame + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_AcquireCameraFrame(SDL_Camera *camera, Uint64 *timestampNS); + +/** + * Release a frame of video acquired from a camera. + * + * Let the back-end re-use the internal buffer for camera. + * + * This function _must_ be called only on surface objects returned by + * SDL_AcquireCameraFrame(). This function should be called as quickly as + * possible after acquisition, as SDL keeps a small FIFO queue of surfaces for + * video frames; if surfaces aren't released in a timely manner, SDL may drop + * upcoming video frames from the camera. + * + * If the app needs to keep the surface for a significant time, they should + * make a copy of it and release the original. + * + * The app should not use the surface again after calling this function; + * assume the surface is freed and the pointer is invalid. + * + * \param camera opened camera device. + * \param frame the video frame surface to release. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireCameraFrame + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseCameraFrame(SDL_Camera *camera, SDL_Surface *frame); + +/** + * Use this function to shut down camera processing and close the camera + * device. + * + * \param camera opened camera device. + * + * \threadsafety It is safe to call this function from any thread, but no + * thread may reference `device` once this function is called. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenCamera + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseCamera(SDL_Camera *camera); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_camera_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_clipboard.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_clipboard.h new file mode 100644 index 0000000..3ca56a4 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_clipboard.h @@ -0,0 +1,331 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryClipboard + * + * SDL provides access to the system clipboard, both for reading information + * from other processes and publishing information of its own. + * + * This is not just text! SDL apps can access and publish data by mimetype. + * + * ## Basic use (text) + * + * Obtaining and publishing simple text to the system clipboard is as easy as + * calling SDL_GetClipboardText() and SDL_SetClipboardText(), respectively. + * These deal with C strings in UTF-8 encoding. Data transmission and encoding + * conversion is completely managed by SDL. + * + * ## Clipboard callbacks (data other than text) + * + * Things get more complicated when the clipboard contains something other + * than text. Not only can the system clipboard contain data of any type, in + * some cases it can contain the same data in different formats! For example, + * an image painting app might let the user copy a graphic to the clipboard, + * and offers it in .BMP, .JPG, or .PNG format for other apps to consume. + * + * Obtaining clipboard data ("pasting") like this is a matter of calling + * SDL_GetClipboardData() and telling it the mimetype of the data you want. + * But how does one know if that format is available? SDL_HasClipboardData() + * can report if a specific mimetype is offered, and + * SDL_GetClipboardMimeTypes() can provide the entire list of mimetypes + * available, so the app can decide what to do with the data and what formats + * it can support. + * + * Setting the clipboard ("copying") to arbitrary data is done with + * SDL_SetClipboardData. The app does not provide the data in this call, but + * rather the mimetypes it is willing to provide and a callback function. + * During the callback, the app will generate the data. This allows massive + * data sets to be provided to the clipboard, without any data being copied + * before it is explicitly requested. More specifically, it allows an app to + * offer data in multiple formats without providing a copy of all of them + * upfront. If the app has an image that it could provide in PNG or JPG + * format, it doesn't have to encode it to either of those unless and until + * something tries to paste it. + * + * ## Primary Selection + * + * The X11 and Wayland video targets have a concept of the "primary selection" + * in addition to the usual clipboard. This is generally highlighted (but not + * explicitly copied) text from various apps. SDL offers APIs for this through + * SDL_GetPrimarySelectionText() and SDL_SetPrimarySelectionText(). SDL offers + * these APIs on platforms without this concept, too, but only so far that it + * will keep a copy of a string that the app sets for later retrieval; the + * operating system will not ever attempt to change the string externally if + * it doesn't support a primary selection. + */ + +#ifndef SDL_clipboard_h_ +#define SDL_clipboard_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Function prototypes */ + +/** + * Put UTF-8 text into the clipboard. + * + * \param text the text to store in the clipboard. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetClipboardText + * \sa SDL_HasClipboardText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetClipboardText(const char *text); + +/** + * Get UTF-8 text from the clipboard. + * + * This function returns an empty string if there is not enough memory left + * for a copy of the clipboard's content. + * + * \returns the clipboard text on success or an empty string on failure; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasClipboardText + * \sa SDL_SetClipboardText + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetClipboardText(void); + +/** + * Query whether the clipboard exists and contains a non-empty text string. + * + * \returns true if the clipboard has text, or false if it does not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetClipboardText + * \sa SDL_SetClipboardText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasClipboardText(void); + +/** + * Put UTF-8 text into the primary selection. + * + * \param text the text to store in the primary selection. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPrimarySelectionText + * \sa SDL_HasPrimarySelectionText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPrimarySelectionText(const char *text); + +/** + * Get UTF-8 text from the primary selection. + * + * This function returns an empty string if there is not enough memory left + * for a copy of the primary selection's content. + * + * \returns the primary selection text on success or an empty string on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasPrimarySelectionText + * \sa SDL_SetPrimarySelectionText + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetPrimarySelectionText(void); + +/** + * Query whether the primary selection exists and contains a non-empty text + * string. + * + * \returns true if the primary selection has text, or false if it does not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPrimarySelectionText + * \sa SDL_SetPrimarySelectionText + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasPrimarySelectionText(void); + +/** + * Callback function that will be called when data for the specified mime-type + * is requested by the OS. + * + * The callback function is called with NULL as the mime_type when the + * clipboard is cleared or new data is set. The clipboard is automatically + * cleared in SDL_Quit(). + * + * \param userdata a pointer to the provided user data. + * \param mime_type the requested mime-type. + * \param size a pointer filled in with the length of the returned data. + * \returns a pointer to the data for the provided mime-type. Returning NULL + * or setting the length to 0 will cause no data to be sent to the + * "receiver". It is up to the receiver to handle this. Essentially + * returning no data is more or less undefined behavior and may cause + * breakage in receiving applications. The returned data will not be + * freed, so it needs to be retained and dealt with internally. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +typedef const void *(SDLCALL *SDL_ClipboardDataCallback)(void *userdata, const char *mime_type, size_t *size); + +/** + * Callback function that will be called when the clipboard is cleared, or when new + * data is set. + * + * \param userdata a pointer to the provided user data. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +typedef void (SDLCALL *SDL_ClipboardCleanupCallback)(void *userdata); + +/** + * Offer clipboard data to the OS. + * + * Tell the operating system that the application is offering clipboard data + * for each of the provided mime-types. Once another application requests the + * data the callback function will be called, allowing it to generate and + * respond with the data for the requested mime-type. + * + * The size of text data does not include any terminator, and the text does + * not need to be null-terminated (e.g., you can directly copy a portion of a + * document). + * + * \param callback a function pointer to the function that provides the + * clipboard data. + * \param cleanup a function pointer to the function that cleans up the + * clipboard data. + * \param userdata an opaque pointer that will be forwarded to the callbacks. + * \param mime_types a list of mime-types that are being offered. SDL copies the given list. + * \param num_mime_types the number of mime-types in the mime_types list. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearClipboardData + * \sa SDL_GetClipboardData + * \sa SDL_HasClipboardData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetClipboardData(SDL_ClipboardDataCallback callback, SDL_ClipboardCleanupCallback cleanup, void *userdata, const char **mime_types, size_t num_mime_types); + +/** + * Clear the clipboard data. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearClipboardData(void); + +/** + * Get the data from the clipboard for a given mime type. + * + * The size of text data does not include the terminator, but the text is + * guaranteed to be null-terminated. + * + * \param mime_type the mime type to read from the clipboard. + * \param size a pointer filled in with the length of the returned data. + * \returns the retrieved data buffer or NULL on failure; call SDL_GetError() + * for more information. This should be freed with SDL_free() when it + * is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasClipboardData + * \sa SDL_SetClipboardData + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetClipboardData(const char *mime_type, size_t *size); + +/** + * Query whether there is data in the clipboard for the provided mime type. + * + * \param mime_type the mime type to check for data. + * \returns true if data exists in the clipboard for the provided mime type, + * false if it does not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + * \sa SDL_GetClipboardData + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasClipboardData(const char *mime_type); + +/** + * Retrieve the list of mime types available in the clipboard. + * + * \param num_mime_types a pointer filled with the number of mime types, may + * be NULL. + * \returns a null-terminated array of strings with mime types, or NULL on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetClipboardData + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GetClipboardMimeTypes(size_t *num_mime_types); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_clipboard_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_close_code.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_close_code.h new file mode 100644 index 0000000..da1dea7 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_close_code.h @@ -0,0 +1,41 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This file reverses the effects of SDL_begin_code.h and should be included + * after you finish any function and structure declarations in your headers. + * + * SDL's headers use this; applications generally should not include this + * header directly. + */ + +#ifndef SDL_begin_code_h +#error SDL_close_code.h included without matching SDL_begin_code.h +#endif +#undef SDL_begin_code_h + +/* Reset structure packing at previous byte alignment */ +#if defined(_MSC_VER) || defined(__MWERKS__) || defined(__BORLANDC__) +#ifdef __BORLANDC__ +#pragma nopackwarning +#endif +#pragma pack(pop) +#endif /* Compiler needs structure packing set */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_copying.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_copying.h new file mode 100644 index 0000000..747bd35 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_copying.h @@ -0,0 +1,22 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* Header file containing SDL's license. */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_cpuinfo.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_cpuinfo.h new file mode 100644 index 0000000..1745bd9 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_cpuinfo.h @@ -0,0 +1,353 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: CPUInfo */ + +/** + * # CategoryCPUInfo + * + * CPU feature detection for SDL. + * + * These functions are largely concerned with reporting if the system has + * access to various SIMD instruction sets, but also has other important info + * to share, such as system RAM size and number of logical CPU cores. + * + * CPU instruction set checks, like SDL_HasSSE() and SDL_HasNEON(), are + * available on all platforms, even if they don't make sense (an ARM processor + * will never have SSE and an x86 processor will never have NEON, for example, + * but these functions still exist and will simply return false in these + * cases). + */ + +#ifndef SDL_cpuinfo_h_ +#define SDL_cpuinfo_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A guess for the cacheline size used for padding. + * + * Most x86 processors have a 64 byte cache line. The 64-bit PowerPC + * processors have a 128 byte cache line. We use the larger value to be + * generally safe. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CACHELINE_SIZE 128 + +/** + * Get the number of logical CPU cores available. + * + * \returns the total number of logical CPU cores. On CPUs that include + * technologies such as hyperthreading, the number of logical cores + * may be more than the number of physical cores. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumLogicalCPUCores(void); + +/** + * Determine the L1 cache line size of the CPU. + * + * This is useful for determining multi-threaded structure padding or SIMD + * prefetch sizes. + * + * \returns the L1 cache line size of the CPU, in bytes. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetCPUCacheLineSize(void); + +/** + * Determine whether the CPU has AltiVec features. + * + * This always returns false on CPUs that aren't using PowerPC instruction + * sets. + * + * \returns true if the CPU has AltiVec features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAltiVec(void); + +/** + * Determine whether the CPU has MMX features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has MMX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasMMX(void); + +/** + * Determine whether the CPU has SSE features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE41 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE(void); + +/** + * Determine whether the CPU has SSE2 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE2 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE41 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE2(void); + +/** + * Determine whether the CPU has SSE3 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE3 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE41 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE3(void); + +/** + * Determine whether the CPU has SSE4.1 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE4.1 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE42 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE41(void); + +/** + * Determine whether the CPU has SSE4.2 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has SSE4.2 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasSSE + * \sa SDL_HasSSE2 + * \sa SDL_HasSSE3 + * \sa SDL_HasSSE41 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasSSE42(void); + +/** + * Determine whether the CPU has AVX features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has AVX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasAVX2 + * \sa SDL_HasAVX512F + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAVX(void); + +/** + * Determine whether the CPU has AVX2 features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has AVX2 features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasAVX + * \sa SDL_HasAVX512F + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAVX2(void); + +/** + * Determine whether the CPU has AVX-512F (foundation) features. + * + * This always returns false on CPUs that aren't using Intel instruction sets. + * + * \returns true if the CPU has AVX-512F features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasAVX + * \sa SDL_HasAVX2 + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasAVX512F(void); + +/** + * Determine whether the CPU has ARM SIMD (ARMv6) features. + * + * This is different from ARM NEON, which is a different instruction set. + * + * This always returns false on CPUs that aren't using ARM instruction sets. + * + * \returns true if the CPU has ARM SIMD features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasNEON + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasARMSIMD(void); + +/** + * Determine whether the CPU has NEON (ARM SIMD) features. + * + * This always returns false on CPUs that aren't using ARM instruction sets. + * + * \returns true if the CPU has ARM NEON features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasNEON(void); + +/** + * Determine whether the CPU has LSX (LOONGARCH SIMD) features. + * + * This always returns false on CPUs that aren't using LOONGARCH instruction + * sets. + * + * \returns true if the CPU has LOONGARCH LSX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasLSX(void); + +/** + * Determine whether the CPU has LASX (LOONGARCH SIMD) features. + * + * This always returns false on CPUs that aren't using LOONGARCH instruction + * sets. + * + * \returns true if the CPU has LOONGARCH LASX features or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasLASX(void); + +/** + * Get the amount of RAM configured in the system. + * + * \returns the amount of RAM configured in the system in MiB. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSystemRAM(void); + +/** + * Report the alignment this system needs for SIMD allocations. + * + * This will return the minimum number of bytes to which a pointer must be + * aligned to be compatible with SIMD instructions on the current machine. For + * example, if the machine supports SSE only, it will return 16, but if it + * supports AVX-512F, it'll return 64 (etc). This only reports values for + * instruction sets SDL knows about, so if your SDL build doesn't have + * SDL_HasAVX512F(), then it might return 16 for the SSE support it sees and + * not 64 for the AVX-512 instructions that exist but SDL doesn't know about. + * Plan accordingly. + * + * \returns the alignment in bytes needed for available, known SIMD + * instructions. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_aligned_alloc + * \sa SDL_aligned_free + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_GetSIMDAlignment(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_cpuinfo_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_dialog.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_dialog.h new file mode 100644 index 0000000..ddb9e24 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_dialog.h @@ -0,0 +1,341 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryDialog + * + * File dialog support. + * + * SDL offers file dialogs, to let users select files with native GUI + * interfaces. There are "open" dialogs, "save" dialogs, and folder selection + * dialogs. The app can control some details, such as filtering to specific + * files, or whether multiple files can be selected by the user. + * + * Note that launching a file dialog is a non-blocking operation; control + * returns to the app immediately, and a callback is called later (possibly in + * another thread) when the user makes a choice. + */ + +#ifndef SDL_dialog_h_ +#define SDL_dialog_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An entry for filters for file dialogs. + * + * `name` is a user-readable label for the filter (for example, "Office + * document"). + * + * `pattern` is a semicolon-separated list of file extensions (for example, + * "doc;docx"). File extensions may only contain alphanumeric characters, + * hyphens, underscores and periods. Alternatively, the whole string can be a + * single asterisk ("*"), which serves as an "All files" filter. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +typedef struct SDL_DialogFileFilter +{ + const char *name; + const char *pattern; +} SDL_DialogFileFilter; + +/** + * Callback used by file dialog functions. + * + * The specific usage is described in each function. + * + * If `filelist` is: + * + * - NULL, an error occurred. Details can be obtained with SDL_GetError(). + * - A pointer to NULL, the user either didn't choose any file or canceled the + * dialog. + * - A pointer to non-`NULL`, the user chose one or more files. The argument + * is a null-terminated array of pointers to UTF-8 encoded strings, each + * containing a path. + * + * The filelist argument should not be freed; it will automatically be freed + * when the callback returns. + * + * The filter argument is the index of the filter that was selected, or -1 if + * no filter was selected or if the platform or method doesn't support + * fetching the selected filter. + * + * In Android, the `filelist` are `content://` URIs. They should be opened + * using SDL_IOFromFile() with appropriate modes. This applies both to open + * and save file dialog. + * + * \param userdata an app-provided pointer, for the callback's use. + * \param filelist the file(s) chosen by the user. + * \param filter index of the selected filter. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_DialogFileFilter + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +typedef void (SDLCALL *SDL_DialogFileCallback)(void *userdata, const char * const *filelist, int filter); + +/** + * Displays a dialog that lets the user select a file on their filesystem. + * + * This is an asynchronous function; it will return immediately, and the + * result will be passed to the callback. + * + * The callback will be invoked with a null-terminated list of files the user + * chose. The list will be empty if the user canceled the dialog, and it will + * be NULL if an error occurred. + * + * Note that the callback may be called from a different thread than the one + * the function was invoked on. + * + * Depending on the platform, the user may be allowed to input paths that + * don't yet exist. + * + * On Linux, dialogs may require XDG Portals, which requires DBus, which + * requires an event-handling loop. Apps that do not use SDL to handle events + * should add a call to SDL_PumpEvents in their main loop. + * + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param window the window that the dialog should be modal for, may be NULL. + * Not all platforms support this option. + * \param filters a list of filters, may be NULL. Not all platforms support + * this option, and platforms that do support it may allow the + * user to ignore the filters. If non-NULL, it must remain + * valid at least until the callback is invoked. + * \param nfilters the number of filters. Ignored if filters is NULL. + * \param default_location the default folder or file to start the dialog at, + * may be NULL. Not all platforms support this option. + * \param allow_many if non-zero, the user will be allowed to select multiple + * entries. Not all platforms support this option. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_DialogFileFilter + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowOpenFileDialog(SDL_DialogFileCallback callback, void *userdata, SDL_Window *window, const SDL_DialogFileFilter *filters, int nfilters, const char *default_location, bool allow_many); + +/** + * Displays a dialog that lets the user choose a new or existing file on their + * filesystem. + * + * This is an asynchronous function; it will return immediately, and the + * result will be passed to the callback. + * + * The callback will be invoked with a null-terminated list of files the user + * chose. The list will be empty if the user canceled the dialog, and it will + * be NULL if an error occurred. + * + * Note that the callback may be called from a different thread than the one + * the function was invoked on. + * + * The chosen file may or may not already exist. + * + * On Linux, dialogs may require XDG Portals, which requires DBus, which + * requires an event-handling loop. Apps that do not use SDL to handle events + * should add a call to SDL_PumpEvents in their main loop. + * + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param window the window that the dialog should be modal for, may be NULL. + * Not all platforms support this option. + * \param filters a list of filters, may be NULL. Not all platforms support + * this option, and platforms that do support it may allow the + * user to ignore the filters. If non-NULL, it must remain + * valid at least until the callback is invoked. + * \param nfilters the number of filters. Ignored if filters is NULL. + * \param default_location the default folder or file to start the dialog at, + * may be NULL. Not all platforms support this option. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_DialogFileFilter + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowOpenFolderDialog + * \sa SDL_ShowFileDialogWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowSaveFileDialog(SDL_DialogFileCallback callback, void *userdata, SDL_Window *window, const SDL_DialogFileFilter *filters, int nfilters, const char *default_location); + +/** + * Displays a dialog that lets the user select a folder on their filesystem. + * + * This is an asynchronous function; it will return immediately, and the + * result will be passed to the callback. + * + * The callback will be invoked with a null-terminated list of files the user + * chose. The list will be empty if the user canceled the dialog, and it will + * be NULL if an error occurred. + * + * Note that the callback may be called from a different thread than the one + * the function was invoked on. + * + * Depending on the platform, the user may be allowed to input paths that + * don't yet exist. + * + * On Linux, dialogs may require XDG Portals, which requires DBus, which + * requires an event-handling loop. Apps that do not use SDL to handle events + * should add a call to SDL_PumpEvents in their main loop. + * + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param window the window that the dialog should be modal for, may be NULL. + * Not all platforms support this option. + * \param default_location the default folder or file to start the dialog at, + * may be NULL. Not all platforms support this option. + * \param allow_many if non-zero, the user will be allowed to select multiple + * entries. Not all platforms support this option. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DialogFileCallback + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowFileDialogWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowOpenFolderDialog(SDL_DialogFileCallback callback, void *userdata, SDL_Window *window, const char *default_location, bool allow_many); + +/** + * Various types of file dialogs. + * + * This is used by SDL_ShowFileDialogWithProperties() to decide what kind of + * dialog to present to the user. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_ShowFileDialogWithProperties + */ +typedef enum SDL_FileDialogType +{ + SDL_FILEDIALOG_OPENFILE, + SDL_FILEDIALOG_SAVEFILE, + SDL_FILEDIALOG_OPENFOLDER +} SDL_FileDialogType; + +/** + * Create and launch a file dialog with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_FILE_DIALOG_FILTERS_POINTER`: a pointer to a list of + * SDL_DialogFileFilter structs, which will be used as filters for + * file-based selections. Ignored if the dialog is an "Open Folder" dialog. + * If non-NULL, the array of filters must remain valid at least until the + * callback is invoked. + * - `SDL_PROP_FILE_DIALOG_NFILTERS_NUMBER`: the number of filters in the + * array of filters, if it exists. + * - `SDL_PROP_FILE_DIALOG_WINDOW_POINTER`: the window that the dialog should + * be modal for. + * - `SDL_PROP_FILE_DIALOG_LOCATION_STRING`: the default folder or file to + * start the dialog at. + * - `SDL_PROP_FILE_DIALOG_MANY_BOOLEAN`: true to allow the user to select + * more than one entry. + * - `SDL_PROP_FILE_DIALOG_TITLE_STRING`: the title for the dialog. + * - `SDL_PROP_FILE_DIALOG_ACCEPT_STRING`: the label that the accept button + * should have. + * - `SDL_PROP_FILE_DIALOG_CANCEL_STRING`: the label that the cancel button + * should have. + * + * Note that each platform may or may not support any of the properties. + * + * \param type the type of file dialog. + * \param callback a function pointer to be invoked when the user selects a + * file and accepts, or cancels the dialog, or an error + * occurs. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param props the properties to use. + * + * \threadsafety This function should be called only from the main thread. The + * callback may be invoked from the same thread or from a + * different one, depending on the OS's constraints. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FileDialogType + * \sa SDL_DialogFileCallback + * \sa SDL_DialogFileFilter + * \sa SDL_ShowOpenFileDialog + * \sa SDL_ShowSaveFileDialog + * \sa SDL_ShowOpenFolderDialog + */ +extern SDL_DECLSPEC void SDLCALL SDL_ShowFileDialogWithProperties(SDL_FileDialogType type, SDL_DialogFileCallback callback, void *userdata, SDL_PropertiesID props); + +#define SDL_PROP_FILE_DIALOG_FILTERS_POINTER "SDL.filedialog.filters" +#define SDL_PROP_FILE_DIALOG_NFILTERS_NUMBER "SDL.filedialog.nfilters" +#define SDL_PROP_FILE_DIALOG_WINDOW_POINTER "SDL.filedialog.window" +#define SDL_PROP_FILE_DIALOG_LOCATION_STRING "SDL.filedialog.location" +#define SDL_PROP_FILE_DIALOG_MANY_BOOLEAN "SDL.filedialog.many" +#define SDL_PROP_FILE_DIALOG_TITLE_STRING "SDL.filedialog.title" +#define SDL_PROP_FILE_DIALOG_ACCEPT_STRING "SDL.filedialog.accept" +#define SDL_PROP_FILE_DIALOG_CANCEL_STRING "SDL.filedialog.cancel" + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_dialog_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_egl.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_egl.h new file mode 100644 index 0000000..65d4e96 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_egl.h @@ -0,0 +1,2355 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the EGL API headers. + */ + +#include + +#if !defined(_MSC_VER) && !defined(SDL_PLATFORM_ANDROID) && !defined(SDL_USE_BUILTIN_OPENGL_DEFINITIONS) + +#if defined(SDL_PLATFORM_VITA) +#include +#include +#include +#endif + +#include +#include + +#else /* _MSC_VER */ + +/* EGL headers for Visual Studio */ + +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ + + +#ifndef __eglplatform_h_ +#define __eglplatform_h_ + +/* +** Copyright 2007-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +*/ + +/* Platform-specific types and definitions for egl.h + * + * Adopters may modify khrplatform.h and this file to suit their platform. + * You are encouraged to submit all modifications to the Khronos group so that + * they can be included in future versions of this file. Please submit changes + * by filing an issue or pull request on the public Khronos EGL Registry, at + * https://www.github.com/KhronosGroup/EGL-Registry/ + */ + +/*#include */ + +/* Macros used in EGL function prototype declarations. + * + * EGL functions should be prototyped as: + * + * EGLAPI return-type EGLAPIENTRY eglFunction(arguments); + * typedef return-type (EXPAPIENTRYP PFNEGLFUNCTIONPROC) (arguments); + * + * KHRONOS_APICALL and KHRONOS_APIENTRY are defined in KHR/khrplatform.h + */ + +#ifndef EGLAPI +#define EGLAPI KHRONOS_APICALL +#endif + +#ifndef EGLAPIENTRY +#define EGLAPIENTRY KHRONOS_APIENTRY +#endif +#define EGLAPIENTRYP EGLAPIENTRY* + +/* The types NativeDisplayType, NativeWindowType, and NativePixmapType + * are aliases of window-system-dependent types, such as X Display * or + * Windows Device Context. They must be defined in platform-specific + * code below. The EGL-prefixed versions of Native*Type are the same + * types, renamed in EGL 1.3 so all types in the API start with "EGL". + * + * Khronos STRONGLY RECOMMENDS that you use the default definitions + * provided below, since these changes affect both binary and source + * portability of applications using EGL running on different EGL + * implementations. + */ + +#if defined(EGL_NO_PLATFORM_SPECIFIC_TYPES) + +typedef void *EGLNativeDisplayType; +typedef void *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(_WIN32) || defined(__VC32__) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) /* Win32 and WinCE */ +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN 1 +#endif +#include + +typedef HDC EGLNativeDisplayType; +typedef HBITMAP EGLNativePixmapType; +typedef HWND EGLNativeWindowType; + +#elif defined(SDL_PLATFORM_EMSCRIPTEN) + +typedef int EGLNativeDisplayType; +typedef int EGLNativePixmapType; +typedef int EGLNativeWindowType; + +#elif defined(__WINSCW__) || defined(__SYMBIAN32__) /* Symbian */ + +typedef int EGLNativeDisplayType; +typedef void *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(WL_EGL_PLATFORM) + +typedef struct wl_display *EGLNativeDisplayType; +typedef struct wl_egl_pixmap *EGLNativePixmapType; +typedef struct wl_egl_window *EGLNativeWindowType; + +#elif defined(__GBM__) + +typedef struct gbm_device *EGLNativeDisplayType; +typedef struct gbm_bo *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(__ANDROID__) || defined(ANDROID) + +struct ANativeWindow; +struct egl_native_pixmap_t; + +typedef void* EGLNativeDisplayType; +typedef struct egl_native_pixmap_t* EGLNativePixmapType; +typedef struct ANativeWindow* EGLNativeWindowType; + +#elif defined(USE_OZONE) + +typedef intptr_t EGLNativeDisplayType; +typedef intptr_t EGLNativePixmapType; +typedef intptr_t EGLNativeWindowType; + +#elif defined(USE_X11) + +/* X11 (tentative) */ +#include +#include + +typedef Display *EGLNativeDisplayType; +typedef Pixmap EGLNativePixmapType; +typedef Window EGLNativeWindowType; + +#elif defined(__unix__) + +typedef void *EGLNativeDisplayType; +typedef khronos_uintptr_t EGLNativePixmapType; +typedef khronos_uintptr_t EGLNativeWindowType; + +#elif defined(__APPLE__) + +typedef int EGLNativeDisplayType; +typedef void *EGLNativePixmapType; +typedef void *EGLNativeWindowType; + +#elif defined(__HAIKU__) + +#include + +typedef void *EGLNativeDisplayType; +typedef khronos_uintptr_t EGLNativePixmapType; +typedef khronos_uintptr_t EGLNativeWindowType; + +#elif defined(__Fuchsia__) + +typedef void *EGLNativeDisplayType; +typedef khronos_uintptr_t EGLNativePixmapType; +typedef khronos_uintptr_t EGLNativeWindowType; + +#else +#error "Platform not recognized" +#endif + +/* EGL 1.2 types, renamed for consistency in EGL 1.3 */ +typedef EGLNativeDisplayType NativeDisplayType; +typedef EGLNativePixmapType NativePixmapType; +typedef EGLNativeWindowType NativeWindowType; + + +/* Define EGLint. This must be a signed integral type large enough to contain + * all legal attribute names and values passed into and out of EGL, whether + * their type is boolean, bitmask, enumerant (symbolic constant), integer, + * handle, or other. While in general a 32-bit integer will suffice, if + * handles are 64 bit types, then EGLint should be defined as a signed 64-bit + * integer type. + */ +typedef khronos_int32_t EGLint; + + +/* C++ / C typecast macros for special EGL handle values */ +#if defined(__cplusplus) +#define EGL_CAST(type, value) (static_cast(value)) +#else +#define EGL_CAST(type, value) ((type) (value)) +#endif + +#endif /* __eglplatform_h */ + + +#ifndef __egl_h_ +#define __egl_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +** +** This header is generated from the Khronos EGL XML API Registry. +** The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** http://www.khronos.org/registry/egl +** +** Khronos $Git commit SHA1: 6fb1daea15 $ on $Git commit date: 2022-05-25 09:41:13 -0600 $ +*/ + +/*#include */ + +#ifndef EGL_EGL_PROTOTYPES +#define EGL_EGL_PROTOTYPES 1 +#endif + +/* Generated on date 20220525 */ + +/* Generated C header for: + * API: egl + * Versions considered: .* + * Versions emitted: .* + * Default extensions included: None + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef EGL_VERSION_1_0 +#define EGL_VERSION_1_0 1 +typedef unsigned int EGLBoolean; +typedef void *EGLDisplay; +/*#include */ +/*#include */ +typedef void *EGLConfig; +typedef void *EGLSurface; +typedef void *EGLContext; +typedef void (*__eglMustCastToProperFunctionPointerType)(void); +#define EGL_ALPHA_SIZE 0x3021 +#define EGL_BAD_ACCESS 0x3002 +#define EGL_BAD_ALLOC 0x3003 +#define EGL_BAD_ATTRIBUTE 0x3004 +#define EGL_BAD_CONFIG 0x3005 +#define EGL_BAD_CONTEXT 0x3006 +#define EGL_BAD_CURRENT_SURFACE 0x3007 +#define EGL_BAD_DISPLAY 0x3008 +#define EGL_BAD_MATCH 0x3009 +#define EGL_BAD_NATIVE_PIXMAP 0x300A +#define EGL_BAD_NATIVE_WINDOW 0x300B +#define EGL_BAD_PARAMETER 0x300C +#define EGL_BAD_SURFACE 0x300D +#define EGL_BLUE_SIZE 0x3022 +#define EGL_BUFFER_SIZE 0x3020 +#define EGL_CONFIG_CAVEAT 0x3027 +#define EGL_CONFIG_ID 0x3028 +#define EGL_CORE_NATIVE_ENGINE 0x305B +#define EGL_DEPTH_SIZE 0x3025 +#define EGL_DONT_CARE EGL_CAST(EGLint,-1) +#define EGL_DRAW 0x3059 +#define EGL_EXTENSIONS 0x3055 +#define EGL_FALSE 0 +#define EGL_GREEN_SIZE 0x3023 +#define EGL_HEIGHT 0x3056 +#define EGL_LARGEST_PBUFFER 0x3058 +#define EGL_LEVEL 0x3029 +#define EGL_MAX_PBUFFER_HEIGHT 0x302A +#define EGL_MAX_PBUFFER_PIXELS 0x302B +#define EGL_MAX_PBUFFER_WIDTH 0x302C +#define EGL_NATIVE_RENDERABLE 0x302D +#define EGL_NATIVE_VISUAL_ID 0x302E +#define EGL_NATIVE_VISUAL_TYPE 0x302F +#define EGL_NONE 0x3038 +#define EGL_NON_CONFORMANT_CONFIG 0x3051 +#define EGL_NOT_INITIALIZED 0x3001 +#define EGL_NO_CONTEXT EGL_CAST(EGLContext,0) +#define EGL_NO_DISPLAY EGL_CAST(EGLDisplay,0) +#define EGL_NO_SURFACE EGL_CAST(EGLSurface,0) +#define EGL_PBUFFER_BIT 0x0001 +#define EGL_PIXMAP_BIT 0x0002 +#define EGL_READ 0x305A +#define EGL_RED_SIZE 0x3024 +#define EGL_SAMPLES 0x3031 +#define EGL_SAMPLE_BUFFERS 0x3032 +#define EGL_SLOW_CONFIG 0x3050 +#define EGL_STENCIL_SIZE 0x3026 +#define EGL_SUCCESS 0x3000 +#define EGL_SURFACE_TYPE 0x3033 +#define EGL_TRANSPARENT_BLUE_VALUE 0x3035 +#define EGL_TRANSPARENT_GREEN_VALUE 0x3036 +#define EGL_TRANSPARENT_RED_VALUE 0x3037 +#define EGL_TRANSPARENT_RGB 0x3052 +#define EGL_TRANSPARENT_TYPE 0x3034 +#define EGL_TRUE 1 +#define EGL_VENDOR 0x3053 +#define EGL_VERSION 0x3054 +#define EGL_WIDTH 0x3057 +#define EGL_WINDOW_BIT 0x0004 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCHOOSECONFIGPROC) (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOPYBUFFERSPROC) (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target); +typedef EGLContext (EGLAPIENTRYP PFNEGLCREATECONTEXTPROC) (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPBUFFERSURFACEPROC) (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPIXMAPSURFACEPROC) (EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEWINDOWSURFACEPROC) (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSURFACEPROC) (EGLDisplay dpy, EGLSurface surface); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCONFIGATTRIBPROC) (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCONFIGSPROC) (EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config); +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETCURRENTDISPLAYPROC) (void); +typedef EGLSurface (EGLAPIENTRYP PFNEGLGETCURRENTSURFACEPROC) (EGLint readdraw); +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETDISPLAYPROC) (EGLNativeDisplayType display_id); +typedef EGLint (EGLAPIENTRYP PFNEGLGETERRORPROC) (void); +typedef __eglMustCastToProperFunctionPointerType (EGLAPIENTRYP PFNEGLGETPROCADDRESSPROC) (const char *procname); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLINITIALIZEPROC) (EGLDisplay dpy, EGLint *major, EGLint *minor); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLMAKECURRENTPROC) (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYSTRINGPROC) (EGLDisplay dpy, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSPROC) (EGLDisplay dpy, EGLSurface surface); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLTERMINATEPROC) (EGLDisplay dpy); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITGLPROC) (void); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITNATIVEPROC) (EGLint engine); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config); +EGLAPI EGLBoolean EGLAPIENTRY eglCopyBuffers (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target); +EGLAPI EGLContext EGLAPIENTRY eglCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurface (EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface (EGLDisplay dpy, EGLSurface surface); +EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigAttrib (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value); +EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigs (EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config); +EGLAPI EGLDisplay EGLAPIENTRY eglGetCurrentDisplay (void); +EGLAPI EGLSurface EGLAPIENTRY eglGetCurrentSurface (EGLint readdraw); +EGLAPI EGLDisplay EGLAPIENTRY eglGetDisplay (EGLNativeDisplayType display_id); +EGLAPI EGLint EGLAPIENTRY eglGetError (void); +EGLAPI __eglMustCastToProperFunctionPointerType EGLAPIENTRY eglGetProcAddress (const char *procname); +EGLAPI EGLBoolean EGLAPIENTRY eglInitialize (EGLDisplay dpy, EGLint *major, EGLint *minor); +EGLAPI EGLBoolean EGLAPIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value); +EGLAPI const char *EGLAPIENTRY eglQueryString (EGLDisplay dpy, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value); +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffers (EGLDisplay dpy, EGLSurface surface); +EGLAPI EGLBoolean EGLAPIENTRY eglTerminate (EGLDisplay dpy); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitGL (void); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitNative (EGLint engine); +#endif +#endif /* EGL_VERSION_1_0 */ + +#ifndef EGL_VERSION_1_1 +#define EGL_VERSION_1_1 1 +#define EGL_BACK_BUFFER 0x3084 +#define EGL_BIND_TO_TEXTURE_RGB 0x3039 +#define EGL_BIND_TO_TEXTURE_RGBA 0x303A +#define EGL_CONTEXT_LOST 0x300E +#define EGL_MIN_SWAP_INTERVAL 0x303B +#define EGL_MAX_SWAP_INTERVAL 0x303C +#define EGL_MIPMAP_TEXTURE 0x3082 +#define EGL_MIPMAP_LEVEL 0x3083 +#define EGL_NO_TEXTURE 0x305C +#define EGL_TEXTURE_2D 0x305F +#define EGL_TEXTURE_FORMAT 0x3080 +#define EGL_TEXTURE_RGB 0x305D +#define EGL_TEXTURE_RGBA 0x305E +#define EGL_TEXTURE_TARGET 0x3081 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDTEXIMAGEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLRELEASETEXIMAGEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSURFACEATTRIBPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPINTERVALPROC) (EGLDisplay dpy, EGLint interval); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +EGLAPI EGLBoolean EGLAPIENTRY eglReleaseTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +EGLAPI EGLBoolean EGLAPIENTRY eglSurfaceAttrib (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value); +EGLAPI EGLBoolean EGLAPIENTRY eglSwapInterval (EGLDisplay dpy, EGLint interval); +#endif +#endif /* EGL_VERSION_1_1 */ + +#ifndef EGL_VERSION_1_2 +#define EGL_VERSION_1_2 1 +typedef unsigned int EGLenum; +typedef void *EGLClientBuffer; +#define EGL_ALPHA_FORMAT 0x3088 +#define EGL_ALPHA_FORMAT_NONPRE 0x308B +#define EGL_ALPHA_FORMAT_PRE 0x308C +#define EGL_ALPHA_MASK_SIZE 0x303E +#define EGL_BUFFER_PRESERVED 0x3094 +#define EGL_BUFFER_DESTROYED 0x3095 +#define EGL_CLIENT_APIS 0x308D +#define EGL_COLORSPACE 0x3087 +#define EGL_COLORSPACE_sRGB 0x3089 +#define EGL_COLORSPACE_LINEAR 0x308A +#define EGL_COLOR_BUFFER_TYPE 0x303F +#define EGL_CONTEXT_CLIENT_TYPE 0x3097 +#define EGL_DISPLAY_SCALING 10000 +#define EGL_HORIZONTAL_RESOLUTION 0x3090 +#define EGL_LUMINANCE_BUFFER 0x308F +#define EGL_LUMINANCE_SIZE 0x303D +#define EGL_OPENGL_ES_BIT 0x0001 +#define EGL_OPENVG_BIT 0x0002 +#define EGL_OPENGL_ES_API 0x30A0 +#define EGL_OPENVG_API 0x30A1 +#define EGL_OPENVG_IMAGE 0x3096 +#define EGL_PIXEL_ASPECT_RATIO 0x3092 +#define EGL_RENDERABLE_TYPE 0x3040 +#define EGL_RENDER_BUFFER 0x3086 +#define EGL_RGB_BUFFER 0x308E +#define EGL_SINGLE_BUFFER 0x3085 +#define EGL_SWAP_BEHAVIOR 0x3093 +#define EGL_UNKNOWN EGL_CAST(EGLint,-1) +#define EGL_VERTICAL_RESOLUTION 0x3091 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDAPIPROC) (EGLenum api); +typedef EGLenum (EGLAPIENTRYP PFNEGLQUERYAPIPROC) (void); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPBUFFERFROMCLIENTBUFFERPROC) (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLRELEASETHREADPROC) (void); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITCLIENTPROC) (void); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglBindAPI (EGLenum api); +EGLAPI EGLenum EGLAPIENTRY eglQueryAPI (void); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferFromClientBuffer (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglReleaseThread (void); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitClient (void); +#endif +#endif /* EGL_VERSION_1_2 */ + +#ifndef EGL_VERSION_1_3 +#define EGL_VERSION_1_3 1 +#define EGL_CONFORMANT 0x3042 +#define EGL_CONTEXT_CLIENT_VERSION 0x3098 +#define EGL_MATCH_NATIVE_PIXMAP 0x3041 +#define EGL_OPENGL_ES2_BIT 0x0004 +#define EGL_VG_ALPHA_FORMAT 0x3088 +#define EGL_VG_ALPHA_FORMAT_NONPRE 0x308B +#define EGL_VG_ALPHA_FORMAT_PRE 0x308C +#define EGL_VG_ALPHA_FORMAT_PRE_BIT 0x0040 +#define EGL_VG_COLORSPACE 0x3087 +#define EGL_VG_COLORSPACE_sRGB 0x3089 +#define EGL_VG_COLORSPACE_LINEAR 0x308A +#define EGL_VG_COLORSPACE_LINEAR_BIT 0x0020 +#endif /* EGL_VERSION_1_3 */ + +#ifndef EGL_VERSION_1_4 +#define EGL_VERSION_1_4 1 +#define EGL_DEFAULT_DISPLAY EGL_CAST(EGLNativeDisplayType,0) +#define EGL_MULTISAMPLE_RESOLVE_BOX_BIT 0x0200 +#define EGL_MULTISAMPLE_RESOLVE 0x3099 +#define EGL_MULTISAMPLE_RESOLVE_DEFAULT 0x309A +#define EGL_MULTISAMPLE_RESOLVE_BOX 0x309B +#define EGL_OPENGL_API 0x30A2 +#define EGL_OPENGL_BIT 0x0008 +#define EGL_SWAP_BEHAVIOR_PRESERVED_BIT 0x0400 +typedef EGLContext (EGLAPIENTRYP PFNEGLGETCURRENTCONTEXTPROC) (void); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLContext EGLAPIENTRY eglGetCurrentContext (void); +#endif +#endif /* EGL_VERSION_1_4 */ + +#ifndef EGL_VERSION_1_5 +#define EGL_VERSION_1_5 1 +typedef void *EGLSync; +typedef intptr_t EGLAttrib; +typedef khronos_utime_nanoseconds_t EGLTime; +typedef void *EGLImage; +#define EGL_CONTEXT_MAJOR_VERSION 0x3098 +#define EGL_CONTEXT_MINOR_VERSION 0x30FB +#define EGL_CONTEXT_OPENGL_PROFILE_MASK 0x30FD +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY 0x31BD +#define EGL_NO_RESET_NOTIFICATION 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET 0x31BF +#define EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT 0x00000001 +#define EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT 0x00000002 +#define EGL_CONTEXT_OPENGL_DEBUG 0x31B0 +#define EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE 0x31B1 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS 0x31B2 +#define EGL_OPENGL_ES3_BIT 0x00000040 +#define EGL_CL_EVENT_HANDLE 0x309C +#define EGL_SYNC_CL_EVENT 0x30FE +#define EGL_SYNC_CL_EVENT_COMPLETE 0x30FF +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE 0x30F0 +#define EGL_SYNC_TYPE 0x30F7 +#define EGL_SYNC_STATUS 0x30F1 +#define EGL_SYNC_CONDITION 0x30F8 +#define EGL_SIGNALED 0x30F2 +#define EGL_UNSIGNALED 0x30F3 +#define EGL_SYNC_FLUSH_COMMANDS_BIT 0x0001 +#define EGL_FOREVER 0xFFFFFFFFFFFFFFFFull +#define EGL_TIMEOUT_EXPIRED 0x30F5 +#define EGL_CONDITION_SATISFIED 0x30F6 +#define EGL_NO_SYNC EGL_CAST(EGLSync,0) +#define EGL_SYNC_FENCE 0x30F9 +#define EGL_GL_COLORSPACE 0x309D +#define EGL_GL_COLORSPACE_SRGB 0x3089 +#define EGL_GL_COLORSPACE_LINEAR 0x308A +#define EGL_GL_RENDERBUFFER 0x30B9 +#define EGL_GL_TEXTURE_2D 0x30B1 +#define EGL_GL_TEXTURE_LEVEL 0x30BC +#define EGL_GL_TEXTURE_3D 0x30B2 +#define EGL_GL_TEXTURE_ZOFFSET 0x30BD +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x30B3 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x30B4 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x30B5 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x30B6 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x30B7 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x30B8 +#define EGL_IMAGE_PRESERVED 0x30D2 +#define EGL_NO_IMAGE EGL_CAST(EGLImage,0) +typedef EGLSync (EGLAPIENTRYP PFNEGLCREATESYNCPROC) (EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCPROC) (EGLDisplay dpy, EGLSync sync); +typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCPROC) (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBPROC) (EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value); +typedef EGLImage (EGLAPIENTRYP PFNEGLCREATEIMAGEPROC) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYIMAGEPROC) (EGLDisplay dpy, EGLImage image); +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETPLATFORMDISPLAYPROC) (EGLenum platform, void *native_display, const EGLAttrib *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMWINDOWSURFACEPROC) (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLAttrib *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMPIXMAPSURFACEPROC) (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLWAITSYNCPROC) (EGLDisplay dpy, EGLSync sync, EGLint flags); +#if EGL_EGL_PROTOTYPES +EGLAPI EGLSync EGLAPIENTRY eglCreateSync (EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySync (EGLDisplay dpy, EGLSync sync); +EGLAPI EGLint EGLAPIENTRY eglClientWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout); +EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttrib (EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value); +EGLAPI EGLImage EGLAPIENTRY eglCreateImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImage (EGLDisplay dpy, EGLImage image); +EGLAPI EGLDisplay EGLAPIENTRY eglGetPlatformDisplay (EGLenum platform, void *native_display, const EGLAttrib *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformWindowSurface (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLAttrib *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformPixmapSurface (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags); +#endif +#endif /* EGL_VERSION_1_5 */ + +#ifdef __cplusplus +} +#endif + +#endif /* __egl_h_ */ + + +#ifndef __eglext_h_ +#define __eglext_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +** +** This header is generated from the Khronos EGL XML API Registry. +** The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** http://www.khronos.org/registry/egl +** +** Khronos $Git commit SHA1: 6fb1daea15 $ on $Git commit date: 2022-05-25 09:41:13 -0600 $ +*/ + +/*#include */ + +#define EGL_EGLEXT_VERSION 20220525 + +/* Generated C header for: + * API: egl + * Versions considered: .* + * Versions emitted: _nomatch_^ + * Default extensions included: egl + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef EGL_KHR_cl_event +#define EGL_KHR_cl_event 1 +#define EGL_CL_EVENT_HANDLE_KHR 0x309C +#define EGL_SYNC_CL_EVENT_KHR 0x30FE +#define EGL_SYNC_CL_EVENT_COMPLETE_KHR 0x30FF +#endif /* EGL_KHR_cl_event */ + +#ifndef EGL_KHR_cl_event2 +#define EGL_KHR_cl_event2 1 +typedef void *EGLSyncKHR; +typedef intptr_t EGLAttribKHR; +typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNC64KHRPROC) (EGLDisplay dpy, EGLenum type, const EGLAttribKHR *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSync64KHR (EGLDisplay dpy, EGLenum type, const EGLAttribKHR *attrib_list); +#endif +#endif /* EGL_KHR_cl_event2 */ + +#ifndef EGL_KHR_client_get_all_proc_addresses +#define EGL_KHR_client_get_all_proc_addresses 1 +#endif /* EGL_KHR_client_get_all_proc_addresses */ + +#ifndef EGL_KHR_config_attribs +#define EGL_KHR_config_attribs 1 +#define EGL_CONFORMANT_KHR 0x3042 +#define EGL_VG_COLORSPACE_LINEAR_BIT_KHR 0x0020 +#define EGL_VG_ALPHA_FORMAT_PRE_BIT_KHR 0x0040 +#endif /* EGL_KHR_config_attribs */ + +#ifndef EGL_KHR_context_flush_control +#define EGL_KHR_context_flush_control 1 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_NONE_KHR 0 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_KHR 0x2097 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_KHR 0x2098 +#endif /* EGL_KHR_context_flush_control */ + +#ifndef EGL_KHR_create_context +#define EGL_KHR_create_context 1 +#define EGL_CONTEXT_MAJOR_VERSION_KHR 0x3098 +#define EGL_CONTEXT_MINOR_VERSION_KHR 0x30FB +#define EGL_CONTEXT_FLAGS_KHR 0x30FC +#define EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR 0x30FD +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_KHR 0x31BD +#define EGL_NO_RESET_NOTIFICATION_KHR 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET_KHR 0x31BF +#define EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR 0x00000001 +#define EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR 0x00000002 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR 0x00000004 +#define EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR 0x00000001 +#define EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT_KHR 0x00000002 +#define EGL_OPENGL_ES3_BIT_KHR 0x00000040 +#endif /* EGL_KHR_create_context */ + +#ifndef EGL_KHR_create_context_no_error +#define EGL_KHR_create_context_no_error 1 +#define EGL_CONTEXT_OPENGL_NO_ERROR_KHR 0x31B3 +#endif /* EGL_KHR_create_context_no_error */ + +#ifndef EGL_KHR_debug +#define EGL_KHR_debug 1 +typedef void *EGLLabelKHR; +typedef void *EGLObjectKHR; +typedef void (EGLAPIENTRY *EGLDEBUGPROCKHR)(EGLenum error,const char *command,EGLint messageType,EGLLabelKHR threadLabel,EGLLabelKHR objectLabel,const char* message); +#define EGL_OBJECT_THREAD_KHR 0x33B0 +#define EGL_OBJECT_DISPLAY_KHR 0x33B1 +#define EGL_OBJECT_CONTEXT_KHR 0x33B2 +#define EGL_OBJECT_SURFACE_KHR 0x33B3 +#define EGL_OBJECT_IMAGE_KHR 0x33B4 +#define EGL_OBJECT_SYNC_KHR 0x33B5 +#define EGL_OBJECT_STREAM_KHR 0x33B6 +#define EGL_DEBUG_MSG_CRITICAL_KHR 0x33B9 +#define EGL_DEBUG_MSG_ERROR_KHR 0x33BA +#define EGL_DEBUG_MSG_WARN_KHR 0x33BB +#define EGL_DEBUG_MSG_INFO_KHR 0x33BC +#define EGL_DEBUG_CALLBACK_KHR 0x33B8 +typedef EGLint (EGLAPIENTRYP PFNEGLDEBUGMESSAGECONTROLKHRPROC) (EGLDEBUGPROCKHR callback, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEBUGKHRPROC) (EGLint attribute, EGLAttrib *value); +typedef EGLint (EGLAPIENTRYP PFNEGLLABELOBJECTKHRPROC) (EGLDisplay display, EGLenum objectType, EGLObjectKHR object, EGLLabelKHR label); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLint EGLAPIENTRY eglDebugMessageControlKHR (EGLDEBUGPROCKHR callback, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDebugKHR (EGLint attribute, EGLAttrib *value); +EGLAPI EGLint EGLAPIENTRY eglLabelObjectKHR (EGLDisplay display, EGLenum objectType, EGLObjectKHR object, EGLLabelKHR label); +#endif +#endif /* EGL_KHR_debug */ + +#ifndef EGL_KHR_display_reference +#define EGL_KHR_display_reference 1 +#define EGL_TRACK_REFERENCES_KHR 0x3352 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBKHRPROC) (EGLDisplay dpy, EGLint name, EGLAttrib *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribKHR (EGLDisplay dpy, EGLint name, EGLAttrib *value); +#endif +#endif /* EGL_KHR_display_reference */ + +#ifndef EGL_KHR_fence_sync +#define EGL_KHR_fence_sync 1 +typedef khronos_utime_nanoseconds_t EGLTimeKHR; +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE_KHR 0x30F0 +#define EGL_SYNC_CONDITION_KHR 0x30F8 +#define EGL_SYNC_FENCE_KHR 0x30F9 +typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESYNCKHRPROC) (EGLDisplay dpy, EGLenum type, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync); +typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateSyncKHR (EGLDisplay dpy, EGLenum type, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR (EGLDisplay dpy, EGLSyncKHR sync); +EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout); +EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint *value); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_fence_sync */ + +#ifndef EGL_KHR_get_all_proc_addresses +#define EGL_KHR_get_all_proc_addresses 1 +#endif /* EGL_KHR_get_all_proc_addresses */ + +#ifndef EGL_KHR_gl_colorspace +#define EGL_KHR_gl_colorspace 1 +#define EGL_GL_COLORSPACE_KHR 0x309D +#define EGL_GL_COLORSPACE_SRGB_KHR 0x3089 +#define EGL_GL_COLORSPACE_LINEAR_KHR 0x308A +#endif /* EGL_KHR_gl_colorspace */ + +#ifndef EGL_KHR_gl_renderbuffer_image +#define EGL_KHR_gl_renderbuffer_image 1 +#define EGL_GL_RENDERBUFFER_KHR 0x30B9 +#endif /* EGL_KHR_gl_renderbuffer_image */ + +#ifndef EGL_KHR_gl_texture_2D_image +#define EGL_KHR_gl_texture_2D_image 1 +#define EGL_GL_TEXTURE_2D_KHR 0x30B1 +#define EGL_GL_TEXTURE_LEVEL_KHR 0x30BC +#endif /* EGL_KHR_gl_texture_2D_image */ + +#ifndef EGL_KHR_gl_texture_3D_image +#define EGL_KHR_gl_texture_3D_image 1 +#define EGL_GL_TEXTURE_3D_KHR 0x30B2 +#define EGL_GL_TEXTURE_ZOFFSET_KHR 0x30BD +#endif /* EGL_KHR_gl_texture_3D_image */ + +#ifndef EGL_KHR_gl_texture_cubemap_image +#define EGL_KHR_gl_texture_cubemap_image 1 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR 0x30B3 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X_KHR 0x30B4 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y_KHR 0x30B5 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_KHR 0x30B6 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z_KHR 0x30B7 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_KHR 0x30B8 +#endif /* EGL_KHR_gl_texture_cubemap_image */ + +#ifndef EGL_KHR_image +#define EGL_KHR_image 1 +typedef void *EGLImageKHR; +#define EGL_NATIVE_PIXMAP_KHR 0x30B0 +#define EGL_NO_IMAGE_KHR EGL_CAST(EGLImageKHR,0) +typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEIMAGEKHRPROC) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYIMAGEKHRPROC) (EGLDisplay dpy, EGLImageKHR image); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImageKHR (EGLDisplay dpy, EGLImageKHR image); +#endif +#endif /* EGL_KHR_image */ + +#ifndef EGL_KHR_image_base +#define EGL_KHR_image_base 1 +#define EGL_IMAGE_PRESERVED_KHR 0x30D2 +#endif /* EGL_KHR_image_base */ + +#ifndef EGL_KHR_image_pixmap +#define EGL_KHR_image_pixmap 1 +#endif /* EGL_KHR_image_pixmap */ + +#ifndef EGL_KHR_lock_surface +#define EGL_KHR_lock_surface 1 +#define EGL_READ_SURFACE_BIT_KHR 0x0001 +#define EGL_WRITE_SURFACE_BIT_KHR 0x0002 +#define EGL_LOCK_SURFACE_BIT_KHR 0x0080 +#define EGL_OPTIMAL_FORMAT_BIT_KHR 0x0100 +#define EGL_MATCH_FORMAT_KHR 0x3043 +#define EGL_FORMAT_RGB_565_EXACT_KHR 0x30C0 +#define EGL_FORMAT_RGB_565_KHR 0x30C1 +#define EGL_FORMAT_RGBA_8888_EXACT_KHR 0x30C2 +#define EGL_FORMAT_RGBA_8888_KHR 0x30C3 +#define EGL_MAP_PRESERVE_PIXELS_KHR 0x30C4 +#define EGL_LOCK_USAGE_HINT_KHR 0x30C5 +#define EGL_BITMAP_POINTER_KHR 0x30C6 +#define EGL_BITMAP_PITCH_KHR 0x30C7 +#define EGL_BITMAP_ORIGIN_KHR 0x30C8 +#define EGL_BITMAP_PIXEL_RED_OFFSET_KHR 0x30C9 +#define EGL_BITMAP_PIXEL_GREEN_OFFSET_KHR 0x30CA +#define EGL_BITMAP_PIXEL_BLUE_OFFSET_KHR 0x30CB +#define EGL_BITMAP_PIXEL_ALPHA_OFFSET_KHR 0x30CC +#define EGL_BITMAP_PIXEL_LUMINANCE_OFFSET_KHR 0x30CD +#define EGL_LOWER_LEFT_KHR 0x30CE +#define EGL_UPPER_LEFT_KHR 0x30CF +typedef EGLBoolean (EGLAPIENTRYP PFNEGLLOCKSURFACEKHRPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNLOCKSURFACEKHRPROC) (EGLDisplay dpy, EGLSurface surface); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglLockSurfaceKHR (EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglUnlockSurfaceKHR (EGLDisplay dpy, EGLSurface surface); +#endif +#endif /* EGL_KHR_lock_surface */ + +#ifndef EGL_KHR_lock_surface2 +#define EGL_KHR_lock_surface2 1 +#define EGL_BITMAP_PIXEL_SIZE_KHR 0x3110 +#endif /* EGL_KHR_lock_surface2 */ + +#ifndef EGL_KHR_lock_surface3 +#define EGL_KHR_lock_surface3 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACE64KHRPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLAttribKHR *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface64KHR (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLAttribKHR *value); +#endif +#endif /* EGL_KHR_lock_surface3 */ + +#ifndef EGL_KHR_mutable_render_buffer +#define EGL_KHR_mutable_render_buffer 1 +#define EGL_MUTABLE_RENDER_BUFFER_BIT_KHR 0x1000 +#endif /* EGL_KHR_mutable_render_buffer */ + +#ifndef EGL_KHR_no_config_context +#define EGL_KHR_no_config_context 1 +#define EGL_NO_CONFIG_KHR EGL_CAST(EGLConfig,0) +#endif /* EGL_KHR_no_config_context */ + +#ifndef EGL_KHR_partial_update +#define EGL_KHR_partial_update 1 +#define EGL_BUFFER_AGE_KHR 0x313D +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETDAMAGEREGIONKHRPROC) (EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSetDamageRegionKHR (EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects); +#endif +#endif /* EGL_KHR_partial_update */ + +#ifndef EGL_KHR_platform_android +#define EGL_KHR_platform_android 1 +#define EGL_PLATFORM_ANDROID_KHR 0x3141 +#endif /* EGL_KHR_platform_android */ + +#ifndef EGL_KHR_platform_gbm +#define EGL_KHR_platform_gbm 1 +#define EGL_PLATFORM_GBM_KHR 0x31D7 +#endif /* EGL_KHR_platform_gbm */ + +#ifndef EGL_KHR_platform_wayland +#define EGL_KHR_platform_wayland 1 +#define EGL_PLATFORM_WAYLAND_KHR 0x31D8 +#endif /* EGL_KHR_platform_wayland */ + +#ifndef EGL_KHR_platform_x11 +#define EGL_KHR_platform_x11 1 +#define EGL_PLATFORM_X11_KHR 0x31D5 +#define EGL_PLATFORM_X11_SCREEN_KHR 0x31D6 +#endif /* EGL_KHR_platform_x11 */ + +#ifndef EGL_KHR_reusable_sync +#define EGL_KHR_reusable_sync 1 +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_SYNC_STATUS_KHR 0x30F1 +#define EGL_SIGNALED_KHR 0x30F2 +#define EGL_UNSIGNALED_KHR 0x30F3 +#define EGL_TIMEOUT_EXPIRED_KHR 0x30F5 +#define EGL_CONDITION_SATISFIED_KHR 0x30F6 +#define EGL_SYNC_TYPE_KHR 0x30F7 +#define EGL_SYNC_REUSABLE_KHR 0x30FA +#define EGL_SYNC_FLUSH_COMMANDS_BIT_KHR 0x0001 +#define EGL_FOREVER_KHR 0xFFFFFFFFFFFFFFFFull +#define EGL_NO_SYNC_KHR EGL_CAST(EGLSyncKHR,0) +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSIGNALSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_reusable_sync */ + +#ifndef EGL_KHR_stream +#define EGL_KHR_stream 1 +typedef void *EGLStreamKHR; +typedef khronos_uint64_t EGLuint64KHR; +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_NO_STREAM_KHR EGL_CAST(EGLStreamKHR,0) +#define EGL_CONSUMER_LATENCY_USEC_KHR 0x3210 +#define EGL_PRODUCER_FRAME_KHR 0x3212 +#define EGL_CONSUMER_FRAME_KHR 0x3213 +#define EGL_STREAM_STATE_KHR 0x3214 +#define EGL_STREAM_STATE_CREATED_KHR 0x3215 +#define EGL_STREAM_STATE_CONNECTING_KHR 0x3216 +#define EGL_STREAM_STATE_EMPTY_KHR 0x3217 +#define EGL_STREAM_STATE_NEW_FRAME_AVAILABLE_KHR 0x3218 +#define EGL_STREAM_STATE_OLD_FRAME_AVAILABLE_KHR 0x3219 +#define EGL_STREAM_STATE_DISCONNECTED_KHR 0x321A +#define EGL_BAD_STREAM_KHR 0x321B +#define EGL_BAD_STATE_KHR 0x321C +typedef EGLStreamKHR (EGLAPIENTRYP PFNEGLCREATESTREAMKHRPROC) (EGLDisplay dpy, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSTREAMKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMU64KHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLuint64KHR *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLStreamKHR EGLAPIENTRY eglCreateStreamKHR (EGLDisplay dpy, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroyStreamKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint *value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamu64KHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLuint64KHR *value); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_stream */ + +#ifndef EGL_KHR_stream_attrib +#define EGL_KHR_stream_attrib 1 +#ifdef KHRONOS_SUPPORT_INT64 +typedef EGLStreamKHR (EGLAPIENTRYP PFNEGLCREATESTREAMATTRIBKHRPROC) (EGLDisplay dpy, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERACQUIREATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERRELEASEATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLStreamKHR EGLAPIENTRY eglCreateStreamAttribKHR (EGLDisplay dpy, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglSetStreamAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib *value); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerAcquireAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerReleaseAttribKHR (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_KHR_stream_attrib */ + +#ifndef EGL_KHR_stream_consumer_gltexture +#define EGL_KHR_stream_consumer_gltexture 1 +#ifdef EGL_KHR_stream +#define EGL_CONSUMER_ACQUIRE_TIMEOUT_USEC_KHR 0x321E +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERGLTEXTUREEXTERNALKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERACQUIREKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERRELEASEKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerGLTextureExternalKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerAcquireKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerReleaseKHR (EGLDisplay dpy, EGLStreamKHR stream); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_consumer_gltexture */ + +#ifndef EGL_KHR_stream_cross_process_fd +#define EGL_KHR_stream_cross_process_fd 1 +typedef int EGLNativeFileDescriptorKHR; +#ifdef EGL_KHR_stream +#define EGL_NO_FILE_DESCRIPTOR_KHR EGL_CAST(EGLNativeFileDescriptorKHR,-1) +typedef EGLNativeFileDescriptorKHR (EGLAPIENTRYP PFNEGLGETSTREAMFILEDESCRIPTORKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLStreamKHR (EGLAPIENTRYP PFNEGLCREATESTREAMFROMFILEDESCRIPTORKHRPROC) (EGLDisplay dpy, EGLNativeFileDescriptorKHR file_descriptor); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLNativeFileDescriptorKHR EGLAPIENTRY eglGetStreamFileDescriptorKHR (EGLDisplay dpy, EGLStreamKHR stream); +EGLAPI EGLStreamKHR EGLAPIENTRY eglCreateStreamFromFileDescriptorKHR (EGLDisplay dpy, EGLNativeFileDescriptorKHR file_descriptor); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_cross_process_fd */ + +#ifndef EGL_KHR_stream_fifo +#define EGL_KHR_stream_fifo 1 +#ifdef EGL_KHR_stream +#define EGL_STREAM_FIFO_LENGTH_KHR 0x31FC +#define EGL_STREAM_TIME_NOW_KHR 0x31FD +#define EGL_STREAM_TIME_CONSUMER_KHR 0x31FE +#define EGL_STREAM_TIME_PRODUCER_KHR 0x31FF +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMTIMEKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLTimeKHR *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamTimeKHR (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLTimeKHR *value); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_fifo */ + +#ifndef EGL_KHR_stream_producer_aldatalocator +#define EGL_KHR_stream_producer_aldatalocator 1 +#ifdef EGL_KHR_stream +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_producer_aldatalocator */ + +#ifndef EGL_KHR_stream_producer_eglsurface +#define EGL_KHR_stream_producer_eglsurface 1 +#ifdef EGL_KHR_stream +#define EGL_STREAM_BIT_KHR 0x0800 +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATESTREAMPRODUCERSURFACEKHRPROC) (EGLDisplay dpy, EGLConfig config, EGLStreamKHR stream, const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSurface EGLAPIENTRY eglCreateStreamProducerSurfaceKHR (EGLDisplay dpy, EGLConfig config, EGLStreamKHR stream, const EGLint *attrib_list); +#endif +#endif /* EGL_KHR_stream */ +#endif /* EGL_KHR_stream_producer_eglsurface */ + +#ifndef EGL_KHR_surfaceless_context +#define EGL_KHR_surfaceless_context 1 +#endif /* EGL_KHR_surfaceless_context */ + +#ifndef EGL_KHR_swap_buffers_with_damage +#define EGL_KHR_swap_buffers_with_damage 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSWITHDAMAGEKHRPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersWithDamageKHR (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#endif +#endif /* EGL_KHR_swap_buffers_with_damage */ + +#ifndef EGL_KHR_vg_parent_image +#define EGL_KHR_vg_parent_image 1 +#define EGL_VG_PARENT_IMAGE_KHR 0x30BA +#endif /* EGL_KHR_vg_parent_image */ + +#ifndef EGL_KHR_wait_sync +#define EGL_KHR_wait_sync 1 +typedef EGLint (EGLAPIENTRYP PFNEGLWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLint EGLAPIENTRY eglWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags); +#endif +#endif /* EGL_KHR_wait_sync */ + +#ifndef EGL_ANDROID_GLES_layers +#define EGL_ANDROID_GLES_layers 1 +#endif /* EGL_ANDROID_GLES_layers */ + +#ifndef EGL_ANDROID_blob_cache +#define EGL_ANDROID_blob_cache 1 +typedef khronos_ssize_t EGLsizeiANDROID; +typedef void (*EGLSetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, const void *value, EGLsizeiANDROID valueSize); +typedef EGLsizeiANDROID (*EGLGetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, void *value, EGLsizeiANDROID valueSize); +typedef void (EGLAPIENTRYP PFNEGLSETBLOBCACHEFUNCSANDROIDPROC) (EGLDisplay dpy, EGLSetBlobFuncANDROID set, EGLGetBlobFuncANDROID get); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI void EGLAPIENTRY eglSetBlobCacheFuncsANDROID (EGLDisplay dpy, EGLSetBlobFuncANDROID set, EGLGetBlobFuncANDROID get); +#endif +#endif /* EGL_ANDROID_blob_cache */ + +#ifndef EGL_ANDROID_create_native_client_buffer +#define EGL_ANDROID_create_native_client_buffer 1 +#define EGL_NATIVE_BUFFER_USAGE_ANDROID 0x3143 +#define EGL_NATIVE_BUFFER_USAGE_PROTECTED_BIT_ANDROID 0x00000001 +#define EGL_NATIVE_BUFFER_USAGE_RENDERBUFFER_BIT_ANDROID 0x00000002 +#define EGL_NATIVE_BUFFER_USAGE_TEXTURE_BIT_ANDROID 0x00000004 +typedef EGLClientBuffer (EGLAPIENTRYP PFNEGLCREATENATIVECLIENTBUFFERANDROIDPROC) (const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLClientBuffer EGLAPIENTRY eglCreateNativeClientBufferANDROID (const EGLint *attrib_list); +#endif +#endif /* EGL_ANDROID_create_native_client_buffer */ + +#ifndef EGL_ANDROID_framebuffer_target +#define EGL_ANDROID_framebuffer_target 1 +#define EGL_FRAMEBUFFER_TARGET_ANDROID 0x3147 +#endif /* EGL_ANDROID_framebuffer_target */ + +#ifndef EGL_ANDROID_front_buffer_auto_refresh +#define EGL_ANDROID_front_buffer_auto_refresh 1 +#define EGL_FRONT_BUFFER_AUTO_REFRESH_ANDROID 0x314C +#endif /* EGL_ANDROID_front_buffer_auto_refresh */ + +#ifndef EGL_ANDROID_get_frame_timestamps +#define EGL_ANDROID_get_frame_timestamps 1 +typedef khronos_stime_nanoseconds_t EGLnsecsANDROID; +#define EGL_TIMESTAMP_PENDING_ANDROID EGL_CAST(EGLnsecsANDROID,-2) +#define EGL_TIMESTAMP_INVALID_ANDROID EGL_CAST(EGLnsecsANDROID,-1) +#define EGL_TIMESTAMPS_ANDROID 0x3430 +#define EGL_COMPOSITE_DEADLINE_ANDROID 0x3431 +#define EGL_COMPOSITE_INTERVAL_ANDROID 0x3432 +#define EGL_COMPOSITE_TO_PRESENT_LATENCY_ANDROID 0x3433 +#define EGL_REQUESTED_PRESENT_TIME_ANDROID 0x3434 +#define EGL_RENDERING_COMPLETE_TIME_ANDROID 0x3435 +#define EGL_COMPOSITION_LATCH_TIME_ANDROID 0x3436 +#define EGL_FIRST_COMPOSITION_START_TIME_ANDROID 0x3437 +#define EGL_LAST_COMPOSITION_START_TIME_ANDROID 0x3438 +#define EGL_FIRST_COMPOSITION_GPU_FINISHED_TIME_ANDROID 0x3439 +#define EGL_DISPLAY_PRESENT_TIME_ANDROID 0x343A +#define EGL_DEQUEUE_READY_TIME_ANDROID 0x343B +#define EGL_READS_DONE_TIME_ANDROID 0x343C +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCOMPOSITORTIMINGSUPPORTEDANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETCOMPOSITORTIMINGANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETNEXTFRAMEIDANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR *frameId); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETFRAMETIMESTAMPSUPPORTEDANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLint timestamp); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETFRAMETIMESTAMPSANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglGetCompositorTimingSupportedANDROID (EGLDisplay dpy, EGLSurface surface, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglGetCompositorTimingANDROID (EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values); +EGLAPI EGLBoolean EGLAPIENTRY eglGetNextFrameIdANDROID (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR *frameId); +EGLAPI EGLBoolean EGLAPIENTRY eglGetFrameTimestampSupportedANDROID (EGLDisplay dpy, EGLSurface surface, EGLint timestamp); +EGLAPI EGLBoolean EGLAPIENTRY eglGetFrameTimestampsANDROID (EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values); +#endif +#endif /* EGL_ANDROID_get_frame_timestamps */ + +#ifndef EGL_ANDROID_get_native_client_buffer +#define EGL_ANDROID_get_native_client_buffer 1 +struct AHardwareBuffer; +typedef EGLClientBuffer (EGLAPIENTRYP PFNEGLGETNATIVECLIENTBUFFERANDROIDPROC) (const struct AHardwareBuffer *buffer); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLClientBuffer EGLAPIENTRY eglGetNativeClientBufferANDROID (const struct AHardwareBuffer *buffer); +#endif +#endif /* EGL_ANDROID_get_native_client_buffer */ + +#ifndef EGL_ANDROID_image_native_buffer +#define EGL_ANDROID_image_native_buffer 1 +#define EGL_NATIVE_BUFFER_ANDROID 0x3140 +#endif /* EGL_ANDROID_image_native_buffer */ + +#ifndef EGL_ANDROID_native_fence_sync +#define EGL_ANDROID_native_fence_sync 1 +#define EGL_SYNC_NATIVE_FENCE_ANDROID 0x3144 +#define EGL_SYNC_NATIVE_FENCE_FD_ANDROID 0x3145 +#define EGL_SYNC_NATIVE_FENCE_SIGNALED_ANDROID 0x3146 +#define EGL_NO_NATIVE_FENCE_FD_ANDROID -1 +typedef EGLint (EGLAPIENTRYP PFNEGLDUPNATIVEFENCEFDANDROIDPROC) (EGLDisplay dpy, EGLSyncKHR sync); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLint EGLAPIENTRY eglDupNativeFenceFDANDROID (EGLDisplay dpy, EGLSyncKHR sync); +#endif +#endif /* EGL_ANDROID_native_fence_sync */ + +#ifndef EGL_ANDROID_presentation_time +#define EGL_ANDROID_presentation_time 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLPRESENTATIONTIMEANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLnsecsANDROID time); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglPresentationTimeANDROID (EGLDisplay dpy, EGLSurface surface, EGLnsecsANDROID time); +#endif +#endif /* EGL_ANDROID_presentation_time */ + +#ifndef EGL_ANDROID_recordable +#define EGL_ANDROID_recordable 1 +#define EGL_RECORDABLE_ANDROID 0x3142 +#endif /* EGL_ANDROID_recordable */ + +#ifndef EGL_ANGLE_d3d_share_handle_client_buffer +#define EGL_ANGLE_d3d_share_handle_client_buffer 1 +#define EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE 0x3200 +#endif /* EGL_ANGLE_d3d_share_handle_client_buffer */ + +#ifndef EGL_ANGLE_device_d3d +#define EGL_ANGLE_device_d3d 1 +#define EGL_D3D9_DEVICE_ANGLE 0x33A0 +#define EGL_D3D11_DEVICE_ANGLE 0x33A1 +#endif /* EGL_ANGLE_device_d3d */ + +#ifndef EGL_ANGLE_query_surface_pointer +#define EGL_ANGLE_query_surface_pointer 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACEPOINTERANGLEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, void **value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurfacePointerANGLE (EGLDisplay dpy, EGLSurface surface, EGLint attribute, void **value); +#endif +#endif /* EGL_ANGLE_query_surface_pointer */ + +#ifndef EGL_ANGLE_surface_d3d_texture_2d_share_handle +#define EGL_ANGLE_surface_d3d_texture_2d_share_handle 1 +#endif /* EGL_ANGLE_surface_d3d_texture_2d_share_handle */ + +#ifndef EGL_ANGLE_sync_control_rate +#define EGL_ANGLE_sync_control_rate 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETMSCRATEANGLEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint *numerator, EGLint *denominator); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglGetMscRateANGLE (EGLDisplay dpy, EGLSurface surface, EGLint *numerator, EGLint *denominator); +#endif +#endif /* EGL_ANGLE_sync_control_rate */ + +#ifndef EGL_ANGLE_window_fixed_size +#define EGL_ANGLE_window_fixed_size 1 +#define EGL_FIXED_SIZE_ANGLE 0x3201 +#endif /* EGL_ANGLE_window_fixed_size */ + +#ifndef EGL_ARM_image_format +#define EGL_ARM_image_format 1 +#define EGL_COLOR_COMPONENT_TYPE_UNSIGNED_INTEGER_ARM 0x3287 +#define EGL_COLOR_COMPONENT_TYPE_INTEGER_ARM 0x3288 +#endif /* EGL_ARM_image_format */ + +#ifndef EGL_ARM_implicit_external_sync +#define EGL_ARM_implicit_external_sync 1 +#define EGL_SYNC_PRIOR_COMMANDS_IMPLICIT_EXTERNAL_ARM 0x328A +#endif /* EGL_ARM_implicit_external_sync */ + +#ifndef EGL_ARM_pixmap_multisample_discard +#define EGL_ARM_pixmap_multisample_discard 1 +#define EGL_DISCARD_SAMPLES_ARM 0x3286 +#endif /* EGL_ARM_pixmap_multisample_discard */ + +#ifndef EGL_EXT_bind_to_front +#define EGL_EXT_bind_to_front 1 +#define EGL_FRONT_BUFFER_EXT 0x3464 +#endif /* EGL_EXT_bind_to_front */ + +#ifndef EGL_EXT_buffer_age +#define EGL_EXT_buffer_age 1 +#define EGL_BUFFER_AGE_EXT 0x313D +#endif /* EGL_EXT_buffer_age */ + +#ifndef EGL_EXT_client_extensions +#define EGL_EXT_client_extensions 1 +#endif /* EGL_EXT_client_extensions */ + +#ifndef EGL_EXT_client_sync +#define EGL_EXT_client_sync 1 +#define EGL_SYNC_CLIENT_EXT 0x3364 +#define EGL_SYNC_CLIENT_SIGNAL_EXT 0x3365 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCLIENTSIGNALSYNCEXTPROC) (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglClientSignalSyncEXT (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#endif +#endif /* EGL_EXT_client_sync */ + +#ifndef EGL_EXT_compositor +#define EGL_EXT_compositor 1 +#define EGL_PRIMARY_COMPOSITOR_CONTEXT_EXT 0x3460 +#define EGL_EXTERNAL_REF_ID_EXT 0x3461 +#define EGL_COMPOSITOR_DROP_NEWEST_FRAME_EXT 0x3462 +#define EGL_COMPOSITOR_KEEP_NEWEST_FRAME_EXT 0x3463 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETCONTEXTLISTEXTPROC) (const EGLint *external_ref_ids, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETCONTEXTATTRIBUTESEXTPROC) (EGLint external_ref_id, const EGLint *context_attributes, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETWINDOWLISTEXTPROC) (EGLint external_ref_id, const EGLint *external_win_ids, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETWINDOWATTRIBUTESEXTPROC) (EGLint external_win_id, const EGLint *window_attributes, EGLint num_entries); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORBINDTEXWINDOWEXTPROC) (EGLint external_win_id); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSETSIZEEXTPROC) (EGLint external_win_id, EGLint width, EGLint height); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLCOMPOSITORSWAPPOLICYEXTPROC) (EGLint external_win_id, EGLint policy); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetContextListEXT (const EGLint *external_ref_ids, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetContextAttributesEXT (EGLint external_ref_id, const EGLint *context_attributes, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetWindowListEXT (EGLint external_ref_id, const EGLint *external_win_ids, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetWindowAttributesEXT (EGLint external_win_id, const EGLint *window_attributes, EGLint num_entries); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorBindTexWindowEXT (EGLint external_win_id); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSetSizeEXT (EGLint external_win_id, EGLint width, EGLint height); +EGLAPI EGLBoolean EGLAPIENTRY eglCompositorSwapPolicyEXT (EGLint external_win_id, EGLint policy); +#endif +#endif /* EGL_EXT_compositor */ + +#ifndef EGL_EXT_config_select_group +#define EGL_EXT_config_select_group 1 +#define EGL_CONFIG_SELECT_GROUP_EXT 0x34C0 +#endif /* EGL_EXT_config_select_group */ + +#ifndef EGL_EXT_create_context_robustness +#define EGL_EXT_create_context_robustness 1 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS_EXT 0x30BF +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_EXT 0x3138 +#define EGL_NO_RESET_NOTIFICATION_EXT 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET_EXT 0x31BF +#endif /* EGL_EXT_create_context_robustness */ + +#ifndef EGL_EXT_device_base +#define EGL_EXT_device_base 1 +typedef void *EGLDeviceEXT; +#define EGL_NO_DEVICE_EXT EGL_CAST(EGLDeviceEXT,0) +#define EGL_BAD_DEVICE_EXT 0x322B +#define EGL_DEVICE_EXT 0x322C +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEVICEATTRIBEXTPROC) (EGLDeviceEXT device, EGLint attribute, EGLAttrib *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYDEVICESTRINGEXTPROC) (EGLDeviceEXT device, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEVICESEXTPROC) (EGLint max_devices, EGLDeviceEXT *devices, EGLint *num_devices); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBEXTPROC) (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDeviceAttribEXT (EGLDeviceEXT device, EGLint attribute, EGLAttrib *value); +EGLAPI const char *EGLAPIENTRY eglQueryDeviceStringEXT (EGLDeviceEXT device, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDevicesEXT (EGLint max_devices, EGLDeviceEXT *devices, EGLint *num_devices); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribEXT (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +#endif +#endif /* EGL_EXT_device_base */ + +#ifndef EGL_EXT_device_drm +#define EGL_EXT_device_drm 1 +#define EGL_DRM_DEVICE_FILE_EXT 0x3233 +#define EGL_DRM_MASTER_FD_EXT 0x333C +#endif /* EGL_EXT_device_drm */ + +#ifndef EGL_EXT_device_drm_render_node +#define EGL_EXT_device_drm_render_node 1 +#define EGL_DRM_RENDER_NODE_FILE_EXT 0x3377 +#endif /* EGL_EXT_device_drm_render_node */ + +#ifndef EGL_EXT_device_enumeration +#define EGL_EXT_device_enumeration 1 +#endif /* EGL_EXT_device_enumeration */ + +#ifndef EGL_EXT_device_openwf +#define EGL_EXT_device_openwf 1 +#define EGL_OPENWF_DEVICE_ID_EXT 0x3237 +#define EGL_OPENWF_DEVICE_EXT 0x333D +#endif /* EGL_EXT_device_openwf */ + +#ifndef EGL_EXT_device_persistent_id +#define EGL_EXT_device_persistent_id 1 +#define EGL_DEVICE_UUID_EXT 0x335C +#define EGL_DRIVER_UUID_EXT 0x335D +#define EGL_DRIVER_NAME_EXT 0x335E +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEVICEBINARYEXTPROC) (EGLDeviceEXT device, EGLint name, EGLint max_size, void *value, EGLint *size); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDeviceBinaryEXT (EGLDeviceEXT device, EGLint name, EGLint max_size, void *value, EGLint *size); +#endif +#endif /* EGL_EXT_device_persistent_id */ + +#ifndef EGL_EXT_device_query +#define EGL_EXT_device_query 1 +#endif /* EGL_EXT_device_query */ + +#ifndef EGL_EXT_device_query_name +#define EGL_EXT_device_query_name 1 +#define EGL_RENDERER_EXT 0x335F +#endif /* EGL_EXT_device_query_name */ + +#ifndef EGL_EXT_explicit_device +#define EGL_EXT_explicit_device 1 +#endif /* EGL_EXT_explicit_device */ + +#ifndef EGL_EXT_gl_colorspace_bt2020_linear +#define EGL_EXT_gl_colorspace_bt2020_linear 1 +#define EGL_GL_COLORSPACE_BT2020_LINEAR_EXT 0x333F +#endif /* EGL_EXT_gl_colorspace_bt2020_linear */ + +#ifndef EGL_EXT_gl_colorspace_bt2020_pq +#define EGL_EXT_gl_colorspace_bt2020_pq 1 +#define EGL_GL_COLORSPACE_BT2020_PQ_EXT 0x3340 +#endif /* EGL_EXT_gl_colorspace_bt2020_pq */ + +#ifndef EGL_EXT_gl_colorspace_display_p3 +#define EGL_EXT_gl_colorspace_display_p3 1 +#define EGL_GL_COLORSPACE_DISPLAY_P3_EXT 0x3363 +#endif /* EGL_EXT_gl_colorspace_display_p3 */ + +#ifndef EGL_EXT_gl_colorspace_display_p3_linear +#define EGL_EXT_gl_colorspace_display_p3_linear 1 +#define EGL_GL_COLORSPACE_DISPLAY_P3_LINEAR_EXT 0x3362 +#endif /* EGL_EXT_gl_colorspace_display_p3_linear */ + +#ifndef EGL_EXT_gl_colorspace_display_p3_passthrough +#define EGL_EXT_gl_colorspace_display_p3_passthrough 1 +#define EGL_GL_COLORSPACE_DISPLAY_P3_PASSTHROUGH_EXT 0x3490 +#endif /* EGL_EXT_gl_colorspace_display_p3_passthrough */ + +#ifndef EGL_EXT_gl_colorspace_scrgb +#define EGL_EXT_gl_colorspace_scrgb 1 +#define EGL_GL_COLORSPACE_SCRGB_EXT 0x3351 +#endif /* EGL_EXT_gl_colorspace_scrgb */ + +#ifndef EGL_EXT_gl_colorspace_scrgb_linear +#define EGL_EXT_gl_colorspace_scrgb_linear 1 +#define EGL_GL_COLORSPACE_SCRGB_LINEAR_EXT 0x3350 +#endif /* EGL_EXT_gl_colorspace_scrgb_linear */ + +#ifndef EGL_EXT_image_dma_buf_import +#define EGL_EXT_image_dma_buf_import 1 +#define EGL_LINUX_DMA_BUF_EXT 0x3270 +#define EGL_LINUX_DRM_FOURCC_EXT 0x3271 +#define EGL_DMA_BUF_PLANE0_FD_EXT 0x3272 +#define EGL_DMA_BUF_PLANE0_OFFSET_EXT 0x3273 +#define EGL_DMA_BUF_PLANE0_PITCH_EXT 0x3274 +#define EGL_DMA_BUF_PLANE1_FD_EXT 0x3275 +#define EGL_DMA_BUF_PLANE1_OFFSET_EXT 0x3276 +#define EGL_DMA_BUF_PLANE1_PITCH_EXT 0x3277 +#define EGL_DMA_BUF_PLANE2_FD_EXT 0x3278 +#define EGL_DMA_BUF_PLANE2_OFFSET_EXT 0x3279 +#define EGL_DMA_BUF_PLANE2_PITCH_EXT 0x327A +#define EGL_YUV_COLOR_SPACE_HINT_EXT 0x327B +#define EGL_SAMPLE_RANGE_HINT_EXT 0x327C +#define EGL_YUV_CHROMA_HORIZONTAL_SITING_HINT_EXT 0x327D +#define EGL_YUV_CHROMA_VERTICAL_SITING_HINT_EXT 0x327E +#define EGL_ITU_REC601_EXT 0x327F +#define EGL_ITU_REC709_EXT 0x3280 +#define EGL_ITU_REC2020_EXT 0x3281 +#define EGL_YUV_FULL_RANGE_EXT 0x3282 +#define EGL_YUV_NARROW_RANGE_EXT 0x3283 +#define EGL_YUV_CHROMA_SITING_0_EXT 0x3284 +#define EGL_YUV_CHROMA_SITING_0_5_EXT 0x3285 +#endif /* EGL_EXT_image_dma_buf_import */ + +#ifndef EGL_EXT_image_dma_buf_import_modifiers +#define EGL_EXT_image_dma_buf_import_modifiers 1 +#define EGL_DMA_BUF_PLANE3_FD_EXT 0x3440 +#define EGL_DMA_BUF_PLANE3_OFFSET_EXT 0x3441 +#define EGL_DMA_BUF_PLANE3_PITCH_EXT 0x3442 +#define EGL_DMA_BUF_PLANE0_MODIFIER_LO_EXT 0x3443 +#define EGL_DMA_BUF_PLANE0_MODIFIER_HI_EXT 0x3444 +#define EGL_DMA_BUF_PLANE1_MODIFIER_LO_EXT 0x3445 +#define EGL_DMA_BUF_PLANE1_MODIFIER_HI_EXT 0x3446 +#define EGL_DMA_BUF_PLANE2_MODIFIER_LO_EXT 0x3447 +#define EGL_DMA_BUF_PLANE2_MODIFIER_HI_EXT 0x3448 +#define EGL_DMA_BUF_PLANE3_MODIFIER_LO_EXT 0x3449 +#define EGL_DMA_BUF_PLANE3_MODIFIER_HI_EXT 0x344A +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDMABUFFORMATSEXTPROC) (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDMABUFMODIFIERSEXTPROC) (EGLDisplay dpy, EGLint format, EGLint max_modifiers, EGLuint64KHR *modifiers, EGLBoolean *external_only, EGLint *num_modifiers); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDmaBufFormatsEXT (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDmaBufModifiersEXT (EGLDisplay dpy, EGLint format, EGLint max_modifiers, EGLuint64KHR *modifiers, EGLBoolean *external_only, EGLint *num_modifiers); +#endif +#endif /* EGL_EXT_image_dma_buf_import_modifiers */ + +#ifndef EGL_EXT_image_gl_colorspace +#define EGL_EXT_image_gl_colorspace 1 +#define EGL_GL_COLORSPACE_DEFAULT_EXT 0x314D +#endif /* EGL_EXT_image_gl_colorspace */ + +#ifndef EGL_EXT_image_implicit_sync_control +#define EGL_EXT_image_implicit_sync_control 1 +#define EGL_IMPORT_SYNC_TYPE_EXT 0x3470 +#define EGL_IMPORT_IMPLICIT_SYNC_EXT 0x3471 +#define EGL_IMPORT_EXPLICIT_SYNC_EXT 0x3472 +#endif /* EGL_EXT_image_implicit_sync_control */ + +#ifndef EGL_EXT_multiview_window +#define EGL_EXT_multiview_window 1 +#define EGL_MULTIVIEW_VIEW_COUNT_EXT 0x3134 +#endif /* EGL_EXT_multiview_window */ + +#ifndef EGL_EXT_output_base +#define EGL_EXT_output_base 1 +typedef void *EGLOutputLayerEXT; +typedef void *EGLOutputPortEXT; +#define EGL_NO_OUTPUT_LAYER_EXT EGL_CAST(EGLOutputLayerEXT,0) +#define EGL_NO_OUTPUT_PORT_EXT EGL_CAST(EGLOutputPortEXT,0) +#define EGL_BAD_OUTPUT_LAYER_EXT 0x322D +#define EGL_BAD_OUTPUT_PORT_EXT 0x322E +#define EGL_SWAP_INTERVAL_EXT 0x322F +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETOUTPUTLAYERSEXTPROC) (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputLayerEXT *layers, EGLint max_layers, EGLint *num_layers); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETOUTPUTPORTSEXTPROC) (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputPortEXT *ports, EGLint max_ports, EGLint *num_ports); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLOUTPUTLAYERATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYOUTPUTLAYERATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYOUTPUTLAYERSTRINGEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint name); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLOUTPUTPORTATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYOUTPUTPORTATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib *value); +typedef const char *(EGLAPIENTRYP PFNEGLQUERYOUTPUTPORTSTRINGEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint name); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglGetOutputLayersEXT (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputLayerEXT *layers, EGLint max_layers, EGLint *num_layers); +EGLAPI EGLBoolean EGLAPIENTRY eglGetOutputPortsEXT (EGLDisplay dpy, const EGLAttrib *attrib_list, EGLOutputPortEXT *ports, EGLint max_ports, EGLint *num_ports); +EGLAPI EGLBoolean EGLAPIENTRY eglOutputLayerAttribEXT (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryOutputLayerAttribEXT (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib *value); +EGLAPI const char *EGLAPIENTRY eglQueryOutputLayerStringEXT (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint name); +EGLAPI EGLBoolean EGLAPIENTRY eglOutputPortAttribEXT (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib value); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryOutputPortAttribEXT (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib *value); +EGLAPI const char *EGLAPIENTRY eglQueryOutputPortStringEXT (EGLDisplay dpy, EGLOutputPortEXT port, EGLint name); +#endif +#endif /* EGL_EXT_output_base */ + +#ifndef EGL_EXT_output_drm +#define EGL_EXT_output_drm 1 +#define EGL_DRM_CRTC_EXT 0x3234 +#define EGL_DRM_PLANE_EXT 0x3235 +#define EGL_DRM_CONNECTOR_EXT 0x3236 +#endif /* EGL_EXT_output_drm */ + +#ifndef EGL_EXT_output_openwf +#define EGL_EXT_output_openwf 1 +#define EGL_OPENWF_PIPELINE_ID_EXT 0x3238 +#define EGL_OPENWF_PORT_ID_EXT 0x3239 +#endif /* EGL_EXT_output_openwf */ + +#ifndef EGL_EXT_pixel_format_float +#define EGL_EXT_pixel_format_float 1 +#define EGL_COLOR_COMPONENT_TYPE_EXT 0x3339 +#define EGL_COLOR_COMPONENT_TYPE_FIXED_EXT 0x333A +#define EGL_COLOR_COMPONENT_TYPE_FLOAT_EXT 0x333B +#endif /* EGL_EXT_pixel_format_float */ + +#ifndef EGL_EXT_platform_base +#define EGL_EXT_platform_base 1 +typedef EGLDisplay (EGLAPIENTRYP PFNEGLGETPLATFORMDISPLAYEXTPROC) (EGLenum platform, void *native_display, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMWINDOWSURFACEEXTPROC) (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLint *attrib_list); +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPLATFORMPIXMAPSURFACEEXTPROC) (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLDisplay EGLAPIENTRY eglGetPlatformDisplayEXT (EGLenum platform, void *native_display, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformWindowSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLint *attrib_list); +EGLAPI EGLSurface EGLAPIENTRY eglCreatePlatformPixmapSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint *attrib_list); +#endif +#endif /* EGL_EXT_platform_base */ + +#ifndef EGL_EXT_platform_device +#define EGL_EXT_platform_device 1 +#define EGL_PLATFORM_DEVICE_EXT 0x313F +#endif /* EGL_EXT_platform_device */ + +#ifndef EGL_EXT_platform_wayland +#define EGL_EXT_platform_wayland 1 +#define EGL_PLATFORM_WAYLAND_EXT 0x31D8 +#endif /* EGL_EXT_platform_wayland */ + +#ifndef EGL_EXT_platform_x11 +#define EGL_EXT_platform_x11 1 +#define EGL_PLATFORM_X11_EXT 0x31D5 +#define EGL_PLATFORM_X11_SCREEN_EXT 0x31D6 +#endif /* EGL_EXT_platform_x11 */ + +#ifndef EGL_EXT_platform_xcb +#define EGL_EXT_platform_xcb 1 +#define EGL_PLATFORM_XCB_EXT 0x31DC +#define EGL_PLATFORM_XCB_SCREEN_EXT 0x31DE +#endif /* EGL_EXT_platform_xcb */ + +#ifndef EGL_EXT_present_opaque +#define EGL_EXT_present_opaque 1 +#define EGL_PRESENT_OPAQUE_EXT 0x31DF +#endif /* EGL_EXT_present_opaque */ + +#ifndef EGL_EXT_protected_content +#define EGL_EXT_protected_content 1 +#define EGL_PROTECTED_CONTENT_EXT 0x32C0 +#endif /* EGL_EXT_protected_content */ + +#ifndef EGL_EXT_protected_surface +#define EGL_EXT_protected_surface 1 +#endif /* EGL_EXT_protected_surface */ + +#ifndef EGL_EXT_stream_consumer_egloutput +#define EGL_EXT_stream_consumer_egloutput 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMEROUTPUTEXTPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLOutputLayerEXT layer); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerOutputEXT (EGLDisplay dpy, EGLStreamKHR stream, EGLOutputLayerEXT layer); +#endif +#endif /* EGL_EXT_stream_consumer_egloutput */ + +#ifndef EGL_EXT_surface_CTA861_3_metadata +#define EGL_EXT_surface_CTA861_3_metadata 1 +#define EGL_CTA861_3_MAX_CONTENT_LIGHT_LEVEL_EXT 0x3360 +#define EGL_CTA861_3_MAX_FRAME_AVERAGE_LEVEL_EXT 0x3361 +#endif /* EGL_EXT_surface_CTA861_3_metadata */ + +#ifndef EGL_EXT_surface_SMPTE2086_metadata +#define EGL_EXT_surface_SMPTE2086_metadata 1 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_RX_EXT 0x3341 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_RY_EXT 0x3342 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_GX_EXT 0x3343 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_GY_EXT 0x3344 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_BX_EXT 0x3345 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_BY_EXT 0x3346 +#define EGL_SMPTE2086_WHITE_POINT_X_EXT 0x3347 +#define EGL_SMPTE2086_WHITE_POINT_Y_EXT 0x3348 +#define EGL_SMPTE2086_MAX_LUMINANCE_EXT 0x3349 +#define EGL_SMPTE2086_MIN_LUMINANCE_EXT 0x334A +#define EGL_METADATA_SCALING_EXT 50000 +#endif /* EGL_EXT_surface_SMPTE2086_metadata */ + +#ifndef EGL_EXT_surface_compression +#define EGL_EXT_surface_compression 1 +#define EGL_SURFACE_COMPRESSION_EXT 0x34B0 +#define EGL_SURFACE_COMPRESSION_PLANE1_EXT 0x328E +#define EGL_SURFACE_COMPRESSION_PLANE2_EXT 0x328F +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_NONE_EXT 0x34B1 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_DEFAULT_EXT 0x34B2 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_1BPC_EXT 0x34B4 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_2BPC_EXT 0x34B5 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_3BPC_EXT 0x34B6 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_4BPC_EXT 0x34B7 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_5BPC_EXT 0x34B8 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_6BPC_EXT 0x34B9 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_7BPC_EXT 0x34BA +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_8BPC_EXT 0x34BB +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_9BPC_EXT 0x34BC +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_10BPC_EXT 0x34BD +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_11BPC_EXT 0x34BE +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_12BPC_EXT 0x34BF +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSUPPORTEDCOMPRESSIONRATESEXTPROC) (EGLDisplay dpy, EGLConfig config, const EGLAttrib *attrib_list, EGLint *rates, EGLint rate_size, EGLint *num_rates); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySupportedCompressionRatesEXT (EGLDisplay dpy, EGLConfig config, const EGLAttrib *attrib_list, EGLint *rates, EGLint rate_size, EGLint *num_rates); +#endif +#endif /* EGL_EXT_surface_compression */ + +#ifndef EGL_EXT_swap_buffers_with_damage +#define EGL_EXT_swap_buffers_with_damage 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSWITHDAMAGEEXTPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersWithDamageEXT (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); +#endif +#endif /* EGL_EXT_swap_buffers_with_damage */ + +#ifndef EGL_EXT_sync_reuse +#define EGL_EXT_sync_reuse 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNSIGNALSYNCEXTPROC) (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglUnsignalSyncEXT (EGLDisplay dpy, EGLSync sync, const EGLAttrib *attrib_list); +#endif +#endif /* EGL_EXT_sync_reuse */ + +#ifndef EGL_EXT_yuv_surface +#define EGL_EXT_yuv_surface 1 +#define EGL_YUV_ORDER_EXT 0x3301 +#define EGL_YUV_NUMBER_OF_PLANES_EXT 0x3311 +#define EGL_YUV_SUBSAMPLE_EXT 0x3312 +#define EGL_YUV_DEPTH_RANGE_EXT 0x3317 +#define EGL_YUV_CSC_STANDARD_EXT 0x330A +#define EGL_YUV_PLANE_BPP_EXT 0x331A +#define EGL_YUV_BUFFER_EXT 0x3300 +#define EGL_YUV_ORDER_YUV_EXT 0x3302 +#define EGL_YUV_ORDER_YVU_EXT 0x3303 +#define EGL_YUV_ORDER_YUYV_EXT 0x3304 +#define EGL_YUV_ORDER_UYVY_EXT 0x3305 +#define EGL_YUV_ORDER_YVYU_EXT 0x3306 +#define EGL_YUV_ORDER_VYUY_EXT 0x3307 +#define EGL_YUV_ORDER_AYUV_EXT 0x3308 +#define EGL_YUV_SUBSAMPLE_4_2_0_EXT 0x3313 +#define EGL_YUV_SUBSAMPLE_4_2_2_EXT 0x3314 +#define EGL_YUV_SUBSAMPLE_4_4_4_EXT 0x3315 +#define EGL_YUV_DEPTH_RANGE_LIMITED_EXT 0x3318 +#define EGL_YUV_DEPTH_RANGE_FULL_EXT 0x3319 +#define EGL_YUV_CSC_STANDARD_601_EXT 0x330B +#define EGL_YUV_CSC_STANDARD_709_EXT 0x330C +#define EGL_YUV_CSC_STANDARD_2020_EXT 0x330D +#define EGL_YUV_PLANE_BPP_0_EXT 0x331B +#define EGL_YUV_PLANE_BPP_8_EXT 0x331C +#define EGL_YUV_PLANE_BPP_10_EXT 0x331D +#endif /* EGL_EXT_yuv_surface */ + +#ifndef EGL_HI_clientpixmap +#define EGL_HI_clientpixmap 1 +struct EGLClientPixmapHI { + void *pData; + EGLint iWidth; + EGLint iHeight; + EGLint iStride; +}; +#define EGL_CLIENT_PIXMAP_POINTER_HI 0x8F74 +typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPIXMAPSURFACEHIPROC) (EGLDisplay dpy, EGLConfig config, struct EGLClientPixmapHI *pixmap); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurfaceHI (EGLDisplay dpy, EGLConfig config, struct EGLClientPixmapHI *pixmap); +#endif +#endif /* EGL_HI_clientpixmap */ + +#ifndef EGL_HI_colorformats +#define EGL_HI_colorformats 1 +#define EGL_COLOR_FORMAT_HI 0x8F70 +#define EGL_COLOR_RGB_HI 0x8F71 +#define EGL_COLOR_RGBA_HI 0x8F72 +#define EGL_COLOR_ARGB_HI 0x8F73 +#endif /* EGL_HI_colorformats */ + +#ifndef EGL_IMG_context_priority +#define EGL_IMG_context_priority 1 +#define EGL_CONTEXT_PRIORITY_LEVEL_IMG 0x3100 +#define EGL_CONTEXT_PRIORITY_HIGH_IMG 0x3101 +#define EGL_CONTEXT_PRIORITY_MEDIUM_IMG 0x3102 +#define EGL_CONTEXT_PRIORITY_LOW_IMG 0x3103 +#endif /* EGL_IMG_context_priority */ + +#ifndef EGL_IMG_image_plane_attribs +#define EGL_IMG_image_plane_attribs 1 +#define EGL_NATIVE_BUFFER_MULTIPLANE_SEPARATE_IMG 0x3105 +#define EGL_NATIVE_BUFFER_PLANE_OFFSET_IMG 0x3106 +#endif /* EGL_IMG_image_plane_attribs */ + +#ifndef EGL_MESA_drm_image +#define EGL_MESA_drm_image 1 +#define EGL_DRM_BUFFER_FORMAT_MESA 0x31D0 +#define EGL_DRM_BUFFER_USE_MESA 0x31D1 +#define EGL_DRM_BUFFER_FORMAT_ARGB32_MESA 0x31D2 +#define EGL_DRM_BUFFER_MESA 0x31D3 +#define EGL_DRM_BUFFER_STRIDE_MESA 0x31D4 +#define EGL_DRM_BUFFER_USE_SCANOUT_MESA 0x00000001 +#define EGL_DRM_BUFFER_USE_SHARE_MESA 0x00000002 +#define EGL_DRM_BUFFER_USE_CURSOR_MESA 0x00000004 +typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEDRMIMAGEMESAPROC) (EGLDisplay dpy, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDRMIMAGEMESAPROC) (EGLDisplay dpy, EGLImageKHR image, EGLint *name, EGLint *handle, EGLint *stride); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLImageKHR EGLAPIENTRY eglCreateDRMImageMESA (EGLDisplay dpy, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglExportDRMImageMESA (EGLDisplay dpy, EGLImageKHR image, EGLint *name, EGLint *handle, EGLint *stride); +#endif +#endif /* EGL_MESA_drm_image */ + +#ifndef EGL_MESA_image_dma_buf_export +#define EGL_MESA_image_dma_buf_export 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDMABUFIMAGEQUERYMESAPROC) (EGLDisplay dpy, EGLImageKHR image, int *fourcc, int *num_planes, EGLuint64KHR *modifiers); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLEXPORTDMABUFIMAGEMESAPROC) (EGLDisplay dpy, EGLImageKHR image, int *fds, EGLint *strides, EGLint *offsets); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglExportDMABUFImageQueryMESA (EGLDisplay dpy, EGLImageKHR image, int *fourcc, int *num_planes, EGLuint64KHR *modifiers); +EGLAPI EGLBoolean EGLAPIENTRY eglExportDMABUFImageMESA (EGLDisplay dpy, EGLImageKHR image, int *fds, EGLint *strides, EGLint *offsets); +#endif +#endif /* EGL_MESA_image_dma_buf_export */ + +#ifndef EGL_MESA_platform_gbm +#define EGL_MESA_platform_gbm 1 +#define EGL_PLATFORM_GBM_MESA 0x31D7 +#endif /* EGL_MESA_platform_gbm */ + +#ifndef EGL_MESA_platform_surfaceless +#define EGL_MESA_platform_surfaceless 1 +#define EGL_PLATFORM_SURFACELESS_MESA 0x31DD +#endif /* EGL_MESA_platform_surfaceless */ + +#ifndef EGL_MESA_query_driver +#define EGL_MESA_query_driver 1 +typedef char *(EGLAPIENTRYP PFNEGLGETDISPLAYDRIVERCONFIGPROC) (EGLDisplay dpy); +typedef const char *(EGLAPIENTRYP PFNEGLGETDISPLAYDRIVERNAMEPROC) (EGLDisplay dpy); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI char *EGLAPIENTRY eglGetDisplayDriverConfig (EGLDisplay dpy); +EGLAPI const char *EGLAPIENTRY eglGetDisplayDriverName (EGLDisplay dpy); +#endif +#endif /* EGL_MESA_query_driver */ + +#ifndef EGL_NOK_swap_region +#define EGL_NOK_swap_region 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSREGIONNOKPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersRegionNOK (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#endif +#endif /* EGL_NOK_swap_region */ + +#ifndef EGL_NOK_swap_region2 +#define EGL_NOK_swap_region2 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSREGION2NOKPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersRegion2NOK (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint *rects); +#endif +#endif /* EGL_NOK_swap_region2 */ + +#ifndef EGL_NOK_texture_from_pixmap +#define EGL_NOK_texture_from_pixmap 1 +#define EGL_Y_INVERTED_NOK 0x307F +#endif /* EGL_NOK_texture_from_pixmap */ + +#ifndef EGL_NV_3dvision_surface +#define EGL_NV_3dvision_surface 1 +#define EGL_AUTO_STEREO_NV 0x3136 +#endif /* EGL_NV_3dvision_surface */ + +#ifndef EGL_NV_context_priority_realtime +#define EGL_NV_context_priority_realtime 1 +#define EGL_CONTEXT_PRIORITY_REALTIME_NV 0x3357 +#endif /* EGL_NV_context_priority_realtime */ + +#ifndef EGL_NV_coverage_sample +#define EGL_NV_coverage_sample 1 +#define EGL_COVERAGE_BUFFERS_NV 0x30E0 +#define EGL_COVERAGE_SAMPLES_NV 0x30E1 +#endif /* EGL_NV_coverage_sample */ + +#ifndef EGL_NV_coverage_sample_resolve +#define EGL_NV_coverage_sample_resolve 1 +#define EGL_COVERAGE_SAMPLE_RESOLVE_NV 0x3131 +#define EGL_COVERAGE_SAMPLE_RESOLVE_DEFAULT_NV 0x3132 +#define EGL_COVERAGE_SAMPLE_RESOLVE_NONE_NV 0x3133 +#endif /* EGL_NV_coverage_sample_resolve */ + +#ifndef EGL_NV_cuda_event +#define EGL_NV_cuda_event 1 +#define EGL_CUDA_EVENT_HANDLE_NV 0x323B +#define EGL_SYNC_CUDA_EVENT_NV 0x323C +#define EGL_SYNC_CUDA_EVENT_COMPLETE_NV 0x323D +#endif /* EGL_NV_cuda_event */ + +#ifndef EGL_NV_depth_nonlinear +#define EGL_NV_depth_nonlinear 1 +#define EGL_DEPTH_ENCODING_NV 0x30E2 +#define EGL_DEPTH_ENCODING_NONE_NV 0 +#define EGL_DEPTH_ENCODING_NONLINEAR_NV 0x30E3 +#endif /* EGL_NV_depth_nonlinear */ + +#ifndef EGL_NV_device_cuda +#define EGL_NV_device_cuda 1 +#define EGL_CUDA_DEVICE_NV 0x323A +#endif /* EGL_NV_device_cuda */ + +#ifndef EGL_NV_native_query +#define EGL_NV_native_query 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEDISPLAYNVPROC) (EGLDisplay dpy, EGLNativeDisplayType *display_id); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEWINDOWNVPROC) (EGLDisplay dpy, EGLSurface surf, EGLNativeWindowType *window); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYNATIVEPIXMAPNVPROC) (EGLDisplay dpy, EGLSurface surf, EGLNativePixmapType *pixmap); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativeDisplayNV (EGLDisplay dpy, EGLNativeDisplayType *display_id); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativeWindowNV (EGLDisplay dpy, EGLSurface surf, EGLNativeWindowType *window); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryNativePixmapNV (EGLDisplay dpy, EGLSurface surf, EGLNativePixmapType *pixmap); +#endif +#endif /* EGL_NV_native_query */ + +#ifndef EGL_NV_post_convert_rounding +#define EGL_NV_post_convert_rounding 1 +#endif /* EGL_NV_post_convert_rounding */ + +#ifndef EGL_NV_post_sub_buffer +#define EGL_NV_post_sub_buffer 1 +#define EGL_POST_SUB_BUFFER_SUPPORTED_NV 0x30BE +typedef EGLBoolean (EGLAPIENTRYP PFNEGLPOSTSUBBUFFERNVPROC) (EGLDisplay dpy, EGLSurface surface, EGLint x, EGLint y, EGLint width, EGLint height); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglPostSubBufferNV (EGLDisplay dpy, EGLSurface surface, EGLint x, EGLint y, EGLint width, EGLint height); +#endif +#endif /* EGL_NV_post_sub_buffer */ + +#ifndef EGL_NV_quadruple_buffer +#define EGL_NV_quadruple_buffer 1 +#define EGL_QUADRUPLE_BUFFER_NV 0x3231 +#endif /* EGL_NV_quadruple_buffer */ + +#ifndef EGL_NV_robustness_video_memory_purge +#define EGL_NV_robustness_video_memory_purge 1 +#define EGL_GENERATE_RESET_ON_VIDEO_MEMORY_PURGE_NV 0x334C +#endif /* EGL_NV_robustness_video_memory_purge */ + +#ifndef EGL_NV_stream_consumer_eglimage +#define EGL_NV_stream_consumer_eglimage 1 +#define EGL_STREAM_CONSUMER_IMAGE_NV 0x3373 +#define EGL_STREAM_IMAGE_ADD_NV 0x3374 +#define EGL_STREAM_IMAGE_REMOVE_NV 0x3375 +#define EGL_STREAM_IMAGE_AVAILABLE_NV 0x3376 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMIMAGECONSUMERCONNECTNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLint num_modifiers, const EGLuint64KHR *modifiers, const EGLAttrib *attrib_list); +typedef EGLint (EGLAPIENTRYP PFNEGLQUERYSTREAMCONSUMEREVENTNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLTime timeout, EGLenum *event, EGLAttrib *aux); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMACQUIREIMAGENVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLImage *pImage, EGLSync sync); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMRELEASEIMAGENVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLImage image, EGLSync sync); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamImageConsumerConnectNV (EGLDisplay dpy, EGLStreamKHR stream, EGLint num_modifiers, const EGLuint64KHR *modifiers, const EGLAttrib *attrib_list); +EGLAPI EGLint EGLAPIENTRY eglQueryStreamConsumerEventNV (EGLDisplay dpy, EGLStreamKHR stream, EGLTime timeout, EGLenum *event, EGLAttrib *aux); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamAcquireImageNV (EGLDisplay dpy, EGLStreamKHR stream, EGLImage *pImage, EGLSync sync); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamReleaseImageNV (EGLDisplay dpy, EGLStreamKHR stream, EGLImage image, EGLSync sync); +#endif +#endif /* EGL_NV_stream_consumer_eglimage */ + +#ifndef EGL_NV_stream_consumer_gltexture_yuv +#define EGL_NV_stream_consumer_gltexture_yuv 1 +#define EGL_YUV_PLANE0_TEXTURE_UNIT_NV 0x332C +#define EGL_YUV_PLANE1_TEXTURE_UNIT_NV 0x332D +#define EGL_YUV_PLANE2_TEXTURE_UNIT_NV 0x332E +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMCONSUMERGLTEXTUREEXTERNALATTRIBSNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerGLTextureExternalAttribsNV (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); +#endif +#endif /* EGL_NV_stream_consumer_gltexture_yuv */ + +#ifndef EGL_NV_stream_cross_display +#define EGL_NV_stream_cross_display 1 +#define EGL_STREAM_CROSS_DISPLAY_NV 0x334E +#endif /* EGL_NV_stream_cross_display */ + +#ifndef EGL_NV_stream_cross_object +#define EGL_NV_stream_cross_object 1 +#define EGL_STREAM_CROSS_OBJECT_NV 0x334D +#endif /* EGL_NV_stream_cross_object */ + +#ifndef EGL_NV_stream_cross_partition +#define EGL_NV_stream_cross_partition 1 +#define EGL_STREAM_CROSS_PARTITION_NV 0x323F +#endif /* EGL_NV_stream_cross_partition */ + +#ifndef EGL_NV_stream_cross_process +#define EGL_NV_stream_cross_process 1 +#define EGL_STREAM_CROSS_PROCESS_NV 0x3245 +#endif /* EGL_NV_stream_cross_process */ + +#ifndef EGL_NV_stream_cross_system +#define EGL_NV_stream_cross_system 1 +#define EGL_STREAM_CROSS_SYSTEM_NV 0x334F +#endif /* EGL_NV_stream_cross_system */ + +#ifndef EGL_NV_stream_dma +#define EGL_NV_stream_dma 1 +#define EGL_STREAM_DMA_NV 0x3371 +#define EGL_STREAM_DMA_SERVER_NV 0x3372 +#endif /* EGL_NV_stream_dma */ + +#ifndef EGL_NV_stream_fifo_next +#define EGL_NV_stream_fifo_next 1 +#define EGL_PENDING_FRAME_NV 0x3329 +#define EGL_STREAM_TIME_PENDING_NV 0x332A +#endif /* EGL_NV_stream_fifo_next */ + +#ifndef EGL_NV_stream_fifo_synchronous +#define EGL_NV_stream_fifo_synchronous 1 +#define EGL_STREAM_FIFO_SYNCHRONOUS_NV 0x3336 +#endif /* EGL_NV_stream_fifo_synchronous */ + +#ifndef EGL_NV_stream_flush +#define EGL_NV_stream_flush 1 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMFLUSHNVPROC) (EGLDisplay dpy, EGLStreamKHR stream); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglStreamFlushNV (EGLDisplay dpy, EGLStreamKHR stream); +#endif +#endif /* EGL_NV_stream_flush */ + +#ifndef EGL_NV_stream_frame_limits +#define EGL_NV_stream_frame_limits 1 +#define EGL_PRODUCER_MAX_FRAME_HINT_NV 0x3337 +#define EGL_CONSUMER_MAX_FRAME_HINT_NV 0x3338 +#endif /* EGL_NV_stream_frame_limits */ + +#ifndef EGL_NV_stream_metadata +#define EGL_NV_stream_metadata 1 +#define EGL_MAX_STREAM_METADATA_BLOCKS_NV 0x3250 +#define EGL_MAX_STREAM_METADATA_BLOCK_SIZE_NV 0x3251 +#define EGL_MAX_STREAM_METADATA_TOTAL_SIZE_NV 0x3252 +#define EGL_PRODUCER_METADATA_NV 0x3253 +#define EGL_CONSUMER_METADATA_NV 0x3254 +#define EGL_PENDING_METADATA_NV 0x3328 +#define EGL_METADATA0_SIZE_NV 0x3255 +#define EGL_METADATA1_SIZE_NV 0x3256 +#define EGL_METADATA2_SIZE_NV 0x3257 +#define EGL_METADATA3_SIZE_NV 0x3258 +#define EGL_METADATA0_TYPE_NV 0x3259 +#define EGL_METADATA1_TYPE_NV 0x325A +#define EGL_METADATA2_TYPE_NV 0x325B +#define EGL_METADATA3_TYPE_NV 0x325C +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBNVPROC) (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETSTREAMMETADATANVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLint n, EGLint offset, EGLint size, const void *data); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSTREAMMETADATANVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum name, EGLint n, EGLint offset, EGLint size, void *data); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribNV (EGLDisplay dpy, EGLint attribute, EGLAttrib *value); +EGLAPI EGLBoolean EGLAPIENTRY eglSetStreamMetadataNV (EGLDisplay dpy, EGLStreamKHR stream, EGLint n, EGLint offset, EGLint size, const void *data); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryStreamMetadataNV (EGLDisplay dpy, EGLStreamKHR stream, EGLenum name, EGLint n, EGLint offset, EGLint size, void *data); +#endif +#endif /* EGL_NV_stream_metadata */ + +#ifndef EGL_NV_stream_origin +#define EGL_NV_stream_origin 1 +#define EGL_STREAM_FRAME_ORIGIN_X_NV 0x3366 +#define EGL_STREAM_FRAME_ORIGIN_Y_NV 0x3367 +#define EGL_STREAM_FRAME_MAJOR_AXIS_NV 0x3368 +#define EGL_CONSUMER_AUTO_ORIENTATION_NV 0x3369 +#define EGL_PRODUCER_AUTO_ORIENTATION_NV 0x336A +#define EGL_LEFT_NV 0x336B +#define EGL_RIGHT_NV 0x336C +#define EGL_TOP_NV 0x336D +#define EGL_BOTTOM_NV 0x336E +#define EGL_X_AXIS_NV 0x336F +#define EGL_Y_AXIS_NV 0x3370 +#endif /* EGL_NV_stream_origin */ + +#ifndef EGL_NV_stream_remote +#define EGL_NV_stream_remote 1 +#define EGL_STREAM_STATE_INITIALIZING_NV 0x3240 +#define EGL_STREAM_TYPE_NV 0x3241 +#define EGL_STREAM_PROTOCOL_NV 0x3242 +#define EGL_STREAM_ENDPOINT_NV 0x3243 +#define EGL_STREAM_LOCAL_NV 0x3244 +#define EGL_STREAM_PRODUCER_NV 0x3247 +#define EGL_STREAM_CONSUMER_NV 0x3248 +#define EGL_STREAM_PROTOCOL_FD_NV 0x3246 +#endif /* EGL_NV_stream_remote */ + +#ifndef EGL_NV_stream_reset +#define EGL_NV_stream_reset 1 +#define EGL_SUPPORT_RESET_NV 0x3334 +#define EGL_SUPPORT_REUSE_NV 0x3335 +typedef EGLBoolean (EGLAPIENTRYP PFNEGLRESETSTREAMNVPROC) (EGLDisplay dpy, EGLStreamKHR stream); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglResetStreamNV (EGLDisplay dpy, EGLStreamKHR stream); +#endif +#endif /* EGL_NV_stream_reset */ + +#ifndef EGL_NV_stream_socket +#define EGL_NV_stream_socket 1 +#define EGL_STREAM_PROTOCOL_SOCKET_NV 0x324B +#define EGL_SOCKET_HANDLE_NV 0x324C +#define EGL_SOCKET_TYPE_NV 0x324D +#endif /* EGL_NV_stream_socket */ + +#ifndef EGL_NV_stream_socket_inet +#define EGL_NV_stream_socket_inet 1 +#define EGL_SOCKET_TYPE_INET_NV 0x324F +#endif /* EGL_NV_stream_socket_inet */ + +#ifndef EGL_NV_stream_socket_unix +#define EGL_NV_stream_socket_unix 1 +#define EGL_SOCKET_TYPE_UNIX_NV 0x324E +#endif /* EGL_NV_stream_socket_unix */ + +#ifndef EGL_NV_stream_sync +#define EGL_NV_stream_sync 1 +#define EGL_SYNC_NEW_FRAME_NV 0x321F +typedef EGLSyncKHR (EGLAPIENTRYP PFNEGLCREATESTREAMSYNCNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum type, const EGLint *attrib_list); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncKHR EGLAPIENTRY eglCreateStreamSyncNV (EGLDisplay dpy, EGLStreamKHR stream, EGLenum type, const EGLint *attrib_list); +#endif +#endif /* EGL_NV_stream_sync */ + +#ifndef EGL_NV_sync +#define EGL_NV_sync 1 +typedef void *EGLSyncNV; +typedef khronos_utime_nanoseconds_t EGLTimeNV; +#ifdef KHRONOS_SUPPORT_INT64 +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE_NV 0x30E6 +#define EGL_SYNC_STATUS_NV 0x30E7 +#define EGL_SIGNALED_NV 0x30E8 +#define EGL_UNSIGNALED_NV 0x30E9 +#define EGL_SYNC_FLUSH_COMMANDS_BIT_NV 0x0001 +#define EGL_FOREVER_NV 0xFFFFFFFFFFFFFFFFull +#define EGL_ALREADY_SIGNALED_NV 0x30EA +#define EGL_TIMEOUT_EXPIRED_NV 0x30EB +#define EGL_CONDITION_SATISFIED_NV 0x30EC +#define EGL_SYNC_TYPE_NV 0x30ED +#define EGL_SYNC_CONDITION_NV 0x30EE +#define EGL_SYNC_FENCE_NV 0x30EF +#define EGL_NO_SYNC_NV EGL_CAST(EGLSyncNV,0) +typedef EGLSyncNV (EGLAPIENTRYP PFNEGLCREATEFENCESYNCNVPROC) (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCNVPROC) (EGLSyncNV sync); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLFENCENVPROC) (EGLSyncNV sync); +typedef EGLint (EGLAPIENTRYP PFNEGLCLIENTWAITSYNCNVPROC) (EGLSyncNV sync, EGLint flags, EGLTimeNV timeout); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSIGNALSYNCNVPROC) (EGLSyncNV sync, EGLenum mode); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBNVPROC) (EGLSyncNV sync, EGLint attribute, EGLint *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLSyncNV EGLAPIENTRY eglCreateFenceSyncNV (EGLDisplay dpy, EGLenum condition, const EGLint *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncNV (EGLSyncNV sync); +EGLAPI EGLBoolean EGLAPIENTRY eglFenceNV (EGLSyncNV sync); +EGLAPI EGLint EGLAPIENTRY eglClientWaitSyncNV (EGLSyncNV sync, EGLint flags, EGLTimeNV timeout); +EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncNV (EGLSyncNV sync, EGLenum mode); +EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribNV (EGLSyncNV sync, EGLint attribute, EGLint *value); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_NV_sync */ + +#ifndef EGL_NV_system_time +#define EGL_NV_system_time 1 +typedef khronos_utime_nanoseconds_t EGLuint64NV; +#ifdef KHRONOS_SUPPORT_INT64 +typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMEFREQUENCYNVPROC) (void); +typedef EGLuint64NV (EGLAPIENTRYP PFNEGLGETSYSTEMTIMENVPROC) (void); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeFrequencyNV (void); +EGLAPI EGLuint64NV EGLAPIENTRY eglGetSystemTimeNV (void); +#endif +#endif /* KHRONOS_SUPPORT_INT64 */ +#endif /* EGL_NV_system_time */ + +#ifndef EGL_NV_triple_buffer +#define EGL_NV_triple_buffer 1 +#define EGL_TRIPLE_BUFFER_NV 0x3230 +#endif /* EGL_NV_triple_buffer */ + +#ifndef EGL_TIZEN_image_native_buffer +#define EGL_TIZEN_image_native_buffer 1 +#define EGL_NATIVE_BUFFER_TIZEN 0x32A0 +#endif /* EGL_TIZEN_image_native_buffer */ + +#ifndef EGL_TIZEN_image_native_surface +#define EGL_TIZEN_image_native_surface 1 +#define EGL_NATIVE_SURFACE_TIZEN 0x32A1 +#endif /* EGL_TIZEN_image_native_surface */ + +#ifndef EGL_WL_bind_wayland_display +#define EGL_WL_bind_wayland_display 1 +#define PFNEGLBINDWAYLANDDISPLAYWL PFNEGLBINDWAYLANDDISPLAYWLPROC +#define PFNEGLUNBINDWAYLANDDISPLAYWL PFNEGLUNBINDWAYLANDDISPLAYWLPROC +#define PFNEGLQUERYWAYLANDBUFFERWL PFNEGLQUERYWAYLANDBUFFERWLPROC +struct wl_display; +struct wl_resource; +#define EGL_WAYLAND_BUFFER_WL 0x31D5 +#define EGL_WAYLAND_PLANE_WL 0x31D6 +#define EGL_TEXTURE_Y_U_V_WL 0x31D7 +#define EGL_TEXTURE_Y_UV_WL 0x31D8 +#define EGL_TEXTURE_Y_XUXV_WL 0x31D9 +#define EGL_TEXTURE_EXTERNAL_WL 0x31DA +#define EGL_WAYLAND_Y_INVERTED_WL 0x31DB +typedef EGLBoolean (EGLAPIENTRYP PFNEGLBINDWAYLANDDISPLAYWLPROC) (EGLDisplay dpy, struct wl_display *display); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNBINDWAYLANDDISPLAYWLPROC) (EGLDisplay dpy, struct wl_display *display); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYWAYLANDBUFFERWLPROC) (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglBindWaylandDisplayWL (EGLDisplay dpy, struct wl_display *display); +EGLAPI EGLBoolean EGLAPIENTRY eglUnbindWaylandDisplayWL (EGLDisplay dpy, struct wl_display *display); +EGLAPI EGLBoolean EGLAPIENTRY eglQueryWaylandBufferWL (EGLDisplay dpy, struct wl_resource *buffer, EGLint attribute, EGLint *value); +#endif +#endif /* EGL_WL_bind_wayland_display */ + +#ifndef EGL_WL_create_wayland_buffer_from_image +#define EGL_WL_create_wayland_buffer_from_image 1 +#define PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWL PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWLPROC +struct wl_buffer; +typedef struct wl_buffer *(EGLAPIENTRYP PFNEGLCREATEWAYLANDBUFFERFROMIMAGEWLPROC) (EGLDisplay dpy, EGLImageKHR image); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI struct wl_buffer *EGLAPIENTRY eglCreateWaylandBufferFromImageWL (EGLDisplay dpy, EGLImageKHR image); +#endif +#endif /* EGL_WL_create_wayland_buffer_from_image */ + +#ifdef __cplusplus +} +#endif + +#endif /* __eglext_h_ */ + +#endif /* _MSC_VER */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_endian.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_endian.h new file mode 100644 index 0000000..2a9b8a3 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_endian.h @@ -0,0 +1,645 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryEndian + * + * Functions converting endian-specific values to different byte orders. + * + * These functions either unconditionally swap byte order (SDL_Swap16, + * SDL_Swap32, SDL_Swap64, SDL_SwapFloat), or they swap to/from the system's + * native byte order (SDL_Swap16LE, SDL_Swap16BE, SDL_Swap32LE, SDL_Swap32BE, + * SDL_Swap32LE, SDL_Swap32BE, SDL_SwapFloatLE, SDL_SwapFloatBE). In the + * latter case, the functionality is provided by macros that become no-ops if + * a swap isn't necessary: on an x86 (littleendian) processor, SDL_Swap32LE + * does nothing, but SDL_Swap32BE reverses the bytes of the data. On a PowerPC + * processor (bigendian), the macros behavior is reversed. + * + * The swap routines are inline functions, and attempt to use compiler + * intrinsics, inline assembly, and other magic to make byteswapping + * efficient. + */ + +#ifndef SDL_endian_h_ +#define SDL_endian_h_ + +#include + +#if defined(_MSC_VER) && (_MSC_VER >= 1400) +/* As of Clang 11, '_m_prefetchw' is conflicting with the winnt.h's version, + so we define the needed '_m_prefetch' here as a pseudo-header, until the issue is fixed. */ +#ifdef __clang__ +#ifndef __PRFCHWINTRIN_H +#define __PRFCHWINTRIN_H +static __inline__ void __attribute__((__always_inline__, __nodebug__)) +_m_prefetch(void *__P) +{ + __builtin_prefetch(__P, 0, 3 /* _MM_HINT_T0 */); +} +#endif /* __PRFCHWINTRIN_H */ +#endif /* __clang__ */ + +#include +#endif + +/** + * \name The two types of endianness + */ +/* @{ */ + + +/** + * A value to represent littleendian byteorder. + * + * This is used with the preprocessor macro SDL_BYTEORDER, to determine a + * platform's byte ordering: + * + * ```c + * #if SDL_BYTEORDER == SDL_LIL_ENDIAN + * SDL_Log("This system is littleendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BYTEORDER + * \sa SDL_BIG_ENDIAN + */ +#define SDL_LIL_ENDIAN 1234 + +/** + * A value to represent bigendian byteorder. + * + * This is used with the preprocessor macro SDL_BYTEORDER, to determine a + * platform's byte ordering: + * + * ```c + * #if SDL_BYTEORDER == SDL_BIG_ENDIAN + * SDL_Log("This system is bigendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BYTEORDER + * \sa SDL_LIL_ENDIAN + */ +#define SDL_BIG_ENDIAN 4321 + +/* @} */ + +#ifndef SDL_BYTEORDER +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro that reports the target system's byte order. + * + * This is set to either SDL_LIL_ENDIAN or SDL_BIG_ENDIAN (and maybe other + * values in the future, if something else becomes popular). This can be + * tested with the preprocessor, so decisions can be made at compile time. + * + * ```c + * #if SDL_BYTEORDER == SDL_BIG_ENDIAN + * SDL_Log("This system is bigendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LIL_ENDIAN + * \sa SDL_BIG_ENDIAN + */ +#define SDL_BYTEORDER SDL_LIL_ENDIAN___or_maybe___SDL_BIG_ENDIAN +#elif defined(SDL_PLATFORM_LINUX) +#include +#define SDL_BYTEORDER __BYTE_ORDER +#elif defined(SDL_PLATFORM_SOLARIS) +#include +#if defined(_LITTLE_ENDIAN) +#define SDL_BYTEORDER SDL_LIL_ENDIAN +#elif defined(_BIG_ENDIAN) +#define SDL_BYTEORDER SDL_BIG_ENDIAN +#else +#error Unsupported endianness +#endif +#elif defined(SDL_PLATFORM_OPENBSD) || defined(__DragonFly__) +#include +#define SDL_BYTEORDER BYTE_ORDER +#elif defined(SDL_PLATFORM_FREEBSD) || defined(SDL_PLATFORM_NETBSD) +#include +#define SDL_BYTEORDER BYTE_ORDER +/* predefs from newer gcc and clang versions: */ +#elif defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__) && defined(__BYTE_ORDER__) +#if (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) +#define SDL_BYTEORDER SDL_LIL_ENDIAN +#elif (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__) +#define SDL_BYTEORDER SDL_BIG_ENDIAN +#else +#error Unsupported endianness +#endif /**/ +#else +#if defined(__hppa__) || \ + defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \ + (defined(__MIPS__) && defined(__MIPSEB__)) || \ + defined(__ppc__) || defined(__POWERPC__) || defined(__powerpc__) || defined(__PPC__) || \ + defined(__sparc__) || defined(__sparc) +#define SDL_BYTEORDER SDL_BIG_ENDIAN +#else +#define SDL_BYTEORDER SDL_LIL_ENDIAN +#endif +#endif /* SDL_PLATFORM_LINUX */ +#endif /* !SDL_BYTEORDER */ + +#ifndef SDL_FLOATWORDORDER +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro that reports the target system's floating point word order. + * + * This is set to either SDL_LIL_ENDIAN or SDL_BIG_ENDIAN (and maybe other + * values in the future, if something else becomes popular). This can be + * tested with the preprocessor, so decisions can be made at compile time. + * + * ```c + * #if SDL_FLOATWORDORDER == SDL_BIG_ENDIAN + * SDL_Log("This system's floats are bigendian."); + * #endif + * ``` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LIL_ENDIAN + * \sa SDL_BIG_ENDIAN + */ +#define SDL_FLOATWORDORDER SDL_LIL_ENDIAN___or_maybe___SDL_BIG_ENDIAN +/* predefs from newer gcc versions: */ +#elif defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__) && defined(__FLOAT_WORD_ORDER__) +#if (__FLOAT_WORD_ORDER__ == __ORDER_LITTLE_ENDIAN__) +#define SDL_FLOATWORDORDER SDL_LIL_ENDIAN +#elif (__FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__) +#define SDL_FLOATWORDORDER SDL_BIG_ENDIAN +#else +#error Unsupported endianness +#endif /**/ +#elif defined(__MAVERICK__) +/* For Maverick, float words are always little-endian. */ +#define SDL_FLOATWORDORDER SDL_LIL_ENDIAN +#elif (defined(__arm__) || defined(__thumb__)) && !defined(__VFP_FP__) && !defined(__ARM_EABI__) +/* For FPA, float words are always big-endian. */ +#define SDL_FLOATWORDORDER SDL_BIG_ENDIAN +#else +/* By default, assume that floats words follow the memory system mode. */ +#define SDL_FLOATWORDORDER SDL_BYTEORDER +#endif /* __FLOAT_WORD_ORDER__ */ +#endif /* !SDL_FLOATWORDORDER */ + + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* various modern compilers may have builtin swap */ +#if defined(__GNUC__) || defined(__clang__) +# define HAS_BUILTIN_BSWAP16 (SDL_HAS_BUILTIN(__builtin_bswap16)) || \ + (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)) +# define HAS_BUILTIN_BSWAP32 (SDL_HAS_BUILTIN(__builtin_bswap32)) || \ + (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) +# define HAS_BUILTIN_BSWAP64 (SDL_HAS_BUILTIN(__builtin_bswap64)) || \ + (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) + + /* this one is broken */ +# define HAS_BROKEN_BSWAP (__GNUC__ == 2 && __GNUC_MINOR__ <= 95) +#else +# define HAS_BUILTIN_BSWAP16 0 +# define HAS_BUILTIN_BSWAP32 0 +# define HAS_BUILTIN_BSWAP64 0 +# define HAS_BROKEN_BSWAP 0 +#endif + +/* Byte swap 16-bit integer. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if HAS_BUILTIN_BSWAP16 +#define SDL_Swap16(x) __builtin_bswap16(x) +#elif (defined(_MSC_VER) && (_MSC_VER >= 1400)) && !defined(__ICL) +#pragma intrinsic(_byteswap_ushort) +#define SDL_Swap16(x) _byteswap_ushort(x) +#elif defined(__i386__) && !HAS_BROKEN_BSWAP +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + __asm__("xchgb %b0,%h0": "=q"(x):"0"(x)); + return x; +} +#elif defined(__x86_64__) +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + __asm__("xchgb %b0,%h0": "=Q"(x):"0"(x)); + return x; +} +#elif (defined(__powerpc__) || defined(__ppc__)) +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + int result; + + __asm__("rlwimi %0,%2,8,16,23": "=&r"(result):"0"(x >> 8), "r"(x)); + return (Uint16)result; +} +#elif (defined(__m68k__) && !defined(__mcoldfire__)) +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + __asm__("rorw #8,%0": "=d"(x): "0"(x):"cc"); + return x; +} +#elif defined(__WATCOMC__) && defined(__386__) +extern __inline Uint16 SDL_Swap16(Uint16); +#pragma aux SDL_Swap16 = \ + "xchg al, ah" \ + parm [ax] \ + modify [ax]; +#else +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) +{ + return SDL_static_cast(Uint16, ((x << 8) | (x >> 8))); +} +#endif +#endif + +/* Byte swap 32-bit integer. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if HAS_BUILTIN_BSWAP32 +#define SDL_Swap32(x) __builtin_bswap32(x) +#elif (defined(_MSC_VER) && (_MSC_VER >= 1400)) && !defined(__ICL) +#pragma intrinsic(_byteswap_ulong) +#define SDL_Swap32(x) _byteswap_ulong(x) +#elif defined(__i386__) && !HAS_BROKEN_BSWAP +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + __asm__("bswap %0": "=r"(x):"0"(x)); + return x; +} +#elif defined(__x86_64__) +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + __asm__("bswapl %0": "=r"(x):"0"(x)); + return x; +} +#elif (defined(__powerpc__) || defined(__ppc__)) +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + Uint32 result; + + __asm__("rlwimi %0,%2,24,16,23": "=&r"(result): "0" (x>>24), "r"(x)); + __asm__("rlwimi %0,%2,8,8,15" : "=&r"(result): "0" (result), "r"(x)); + __asm__("rlwimi %0,%2,24,0,7" : "=&r"(result): "0" (result), "r"(x)); + return result; +} +#elif (defined(__m68k__) && !defined(__mcoldfire__)) +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + __asm__("rorw #8,%0\n\tswap %0\n\trorw #8,%0": "=d"(x): "0"(x):"cc"); + return x; +} +#elif defined(__WATCOMC__) && defined(__386__) +extern __inline Uint32 SDL_Swap32(Uint32); +#pragma aux SDL_Swap32 = \ + "bswap eax" \ + parm [eax] \ + modify [eax]; +#else +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) +{ + return SDL_static_cast(Uint32, ((x << 24) | ((x << 8) & 0x00FF0000) | + ((x >> 8) & 0x0000FF00) | (x >> 24))); +} +#endif +#endif + +/* Byte swap 64-bit integer. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if HAS_BUILTIN_BSWAP64 +#define SDL_Swap64(x) __builtin_bswap64(x) +#elif (defined(_MSC_VER) && (_MSC_VER >= 1400)) && !defined(__ICL) +#pragma intrinsic(_byteswap_uint64) +#define SDL_Swap64(x) _byteswap_uint64(x) +#elif defined(__i386__) && !HAS_BROKEN_BSWAP +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) +{ + union { + struct { + Uint32 a, b; + } s; + Uint64 u; + } v; + v.u = x; + __asm__("bswapl %0 ; bswapl %1 ; xchgl %0,%1" + : "=r"(v.s.a), "=r"(v.s.b) + : "0" (v.s.a), "1"(v.s.b)); + return v.u; +} +#elif defined(__x86_64__) +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) +{ + __asm__("bswapq %0": "=r"(x):"0"(x)); + return x; +} +#elif defined(__WATCOMC__) && defined(__386__) +extern __inline Uint64 SDL_Swap64(Uint64); +#pragma aux SDL_Swap64 = \ + "bswap eax" \ + "bswap edx" \ + "xchg eax,edx" \ + parm [eax edx] \ + modify [eax edx]; +#else +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) +{ + Uint32 hi, lo; + + /* Separate into high and low 32-bit values and swap them */ + lo = SDL_static_cast(Uint32, x & 0xFFFFFFFF); + x >>= 32; + hi = SDL_static_cast(Uint32, x & 0xFFFFFFFF); + x = SDL_Swap32(lo); + x <<= 32; + x |= SDL_Swap32(hi); + return (x); +} +#endif +#endif + +/** + * Byte-swap a floating point number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_SwapFloatLE or + * SDL_SwapFloatBE instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns x, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE float SDL_SwapFloat(float x) +{ + union { + float f; + Uint32 ui32; + } swapper; + swapper.f = x; + swapper.ui32 = SDL_Swap32(swapper.ui32); + return swapper.f; +} + +/* remove extra macros */ +#undef HAS_BROKEN_BSWAP +#undef HAS_BUILTIN_BSWAP16 +#undef HAS_BUILTIN_BSWAP32 +#undef HAS_BUILTIN_BSWAP64 + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Byte-swap an unsigned 16-bit number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_Swap16LE or SDL_Swap16BE + * instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns `x`, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE Uint16 SDL_Swap16(Uint16 x) { return x_but_byteswapped; } + +/** + * Byte-swap an unsigned 32-bit number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_Swap32LE or SDL_Swap32BE + * instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns `x`, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE Uint32 SDL_Swap32(Uint32 x) { return x_but_byteswapped; } + +/** + * Byte-swap an unsigned 64-bit number. + * + * This will always byte-swap the value, whether it's currently in the native + * byteorder of the system or not. You should use SDL_Swap64LE or SDL_Swap64BE + * instead, in most cases. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param x the value to byte-swap. + * \returns `x`, with its bytes in the opposite endian order. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE Uint64 SDL_Swap64(Uint64 x) { return x_but_byteswapped; } + +/** + * Swap a 16-bit value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap16LE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 32-bit value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap32LE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 64-bit value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap64LE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a floating point value from littleendian to native byte order. + * + * If this is running on a littleendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in littleendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SwapFloatLE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 16-bit value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap16BE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 32-bit value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap32BE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a 64-bit value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Swap64BE(x) SwapOnlyIfNecessary(x) + +/** + * Swap a floating point value from bigendian to native byte order. + * + * If this is running on a bigendian system, `x` is returned unchanged. + * + * This macro never references `x` more than once, avoiding side effects. + * + * \param x the value to swap, in bigendian byte order. + * \returns `x` in native byte order. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SwapFloatBE(x) SwapOnlyIfNecessary(x) + +#elif SDL_BYTEORDER == SDL_LIL_ENDIAN +#define SDL_Swap16LE(x) (x) +#define SDL_Swap32LE(x) (x) +#define SDL_Swap64LE(x) (x) +#define SDL_SwapFloatLE(x) (x) +#define SDL_Swap16BE(x) SDL_Swap16(x) +#define SDL_Swap32BE(x) SDL_Swap32(x) +#define SDL_Swap64BE(x) SDL_Swap64(x) +#define SDL_SwapFloatBE(x) SDL_SwapFloat(x) +#else +#define SDL_Swap16LE(x) SDL_Swap16(x) +#define SDL_Swap32LE(x) SDL_Swap32(x) +#define SDL_Swap64LE(x) SDL_Swap64(x) +#define SDL_SwapFloatLE(x) SDL_SwapFloat(x) +#define SDL_Swap16BE(x) (x) +#define SDL_Swap32BE(x) (x) +#define SDL_Swap64BE(x) (x) +#define SDL_SwapFloatBE(x) (x) +#endif + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_endian_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_error.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_error.h new file mode 100644 index 0000000..934967c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_error.h @@ -0,0 +1,226 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryError + * + * Simple error message routines for SDL. + * + * Most apps will interface with these APIs in exactly one function: when + * almost any SDL function call reports failure, you can get a human-readable + * string of the problem from SDL_GetError(). + * + * These strings are maintained per-thread, and apps are welcome to set their + * own errors, which is popular when building libraries on top of SDL for + * other apps to consume. These strings are set by calling SDL_SetError(). + * + * A common usage pattern is to have a function that returns true for success + * and false for failure, and do this when something fails: + * + * ```c + * if (something_went_wrong) { + * return SDL_SetError("The thing broke in this specific way: %d", errcode); + * } + * ``` + * + * It's also common to just return `false` in this case if the failing thing + * is known to call SDL_SetError(), so errors simply propagate through. + */ + +#ifndef SDL_error_h_ +#define SDL_error_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Public functions */ + + +/** + * Set the SDL error message for the current thread. + * + * Calling this function will replace any previous error message that was set. + * + * This function always returns false, since SDL frequently uses false to + * signify a failing result, leading to this idiom: + * + * ```c + * if (error_code) { + * return SDL_SetError("This operation has failed: %d", error_code); + * } + * ``` + * + * \param fmt a printf()-style message format string. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * \returns false. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearError + * \sa SDL_GetError + * \sa SDL_SetErrorV + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetError(SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(1); + +/** + * Set the SDL error message for the current thread. + * + * Calling this function will replace any previous error message that was set. + * + * \param fmt a printf()-style message format string. + * \param ap a variable argument list. + * \returns false. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearError + * \sa SDL_GetError + * \sa SDL_SetError + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetErrorV(SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(1); + +/** + * Set an error indicating that memory allocation failed. + * + * This function does not do any memory allocation. + * + * \returns false. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_OutOfMemory(void); + +/** + * Retrieve a message about the last error that occurred on the current + * thread. + * + * It is possible for multiple errors to occur before calling SDL_GetError(). + * Only the last error is returned. + * + * The message is only applicable when an SDL function has signaled an error. + * You must check the return values of SDL function calls to determine when to + * appropriately call SDL_GetError(). You should *not* use the results of + * SDL_GetError() to decide if an error has occurred! Sometimes SDL will set + * an error string even when reporting success. + * + * SDL will *not* clear the error string for successful API calls. You *must* + * check return values for failure cases before you can assume the error + * string applies. + * + * Error strings are set per-thread, so an error set in a different thread + * will not interfere with the current thread's operation. + * + * The returned value is a thread-local string which will remain valid until + * the current thread's error string is changed. The caller should make a copy + * if the value is needed after the next SDL API call. + * + * \returns a message with information about the specific error that occurred, + * or an empty string if there hasn't been an error message set since + * the last call to SDL_ClearError(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClearError + * \sa SDL_SetError + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetError(void); + +/** + * Clear any previous error message for this thread. + * + * \returns true. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetError + * \sa SDL_SetError + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearError(void); + +/** + * \name Internal error functions + * + * \internal + * Private error reporting function - used internally. + */ +/* @{ */ + +/** + * A macro to standardize error reporting on unsupported operations. + * + * This simply calls SDL_SetError() with a standardized error string, for + * convenience, consistency, and clarity. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_Unsupported() SDL_SetError("That operation is not supported") + +/** + * A macro to standardize error reporting on unsupported operations. + * + * This simply calls SDL_SetError() with a standardized error string, for + * convenience, consistency, and clarity. + * + * A common usage pattern inside SDL is this: + * + * ```c + * bool MyFunction(const char *str) { + * if (!str) { + * return SDL_InvalidParamError("str"); // returns false. + * } + * DoSomething(str); + * return true; + * } + * ``` + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_InvalidParamError(param) SDL_SetError("Parameter '%s' is invalid", (param)) + +/* @} *//* Internal error functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_error_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_events.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_events.h new file mode 100644 index 0000000..d267f05 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_events.h @@ -0,0 +1,1576 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryEvents + * + * Event queue management. + * + * It's extremely common--often required--that an app deal with SDL's event + * queue. Almost all useful information about interactions with the real world + * flow through here: the user interacting with the computer and app, hardware + * coming and going, the system changing in some way, etc. + * + * An app generally takes a moment, perhaps at the start of a new frame, to + * examine any events that have occured since the last time and process or + * ignore them. This is generally done by calling SDL_PollEvent() in a loop + * until it returns false (or, if using the main callbacks, events are + * provided one at a time in calls to SDL_AppEvent() before the next call to + * SDL_AppIterate(); in this scenario, the app does not call SDL_PollEvent() + * at all). + * + * There is other forms of control, too: SDL_PeepEvents() has more + * functionality at the cost of more complexity, and SDL_WaitEvent() can block + * the process until something interesting happens, which might be beneficial + * for certain types of programs on low-power hardware. One may also call + * SDL_AddEventWatch() to set a callback when new events arrive. + * + * The app is free to generate their own events, too: SDL_PushEvent allows the + * app to put events onto the queue for later retrieval; SDL_RegisterEvents + * can guarantee that these events have a type that isn't in use by other + * parts of the system. + */ + +#ifndef SDL_events_h_ +#define SDL_events_h_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* General keyboard/mouse/pen state definitions */ + +/** + * The types of events that can be delivered. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_EventType +{ + SDL_EVENT_FIRST = 0, /**< Unused (do not remove) */ + + /* Application events */ + SDL_EVENT_QUIT = 0x100, /**< User-requested quit */ + + /* These application events have special meaning on iOS and Android, see README-ios.md and README-android.md for details */ + SDL_EVENT_TERMINATING, /**< The application is being terminated by the OS. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationWillTerminate() + Called on Android in onDestroy() + */ + SDL_EVENT_LOW_MEMORY, /**< The application is low on memory, free memory if possible. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationDidReceiveMemoryWarning() + Called on Android in onTrimMemory() + */ + SDL_EVENT_WILL_ENTER_BACKGROUND, /**< The application is about to enter the background. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationWillResignActive() + Called on Android in onPause() + */ + SDL_EVENT_DID_ENTER_BACKGROUND, /**< The application did enter the background and may not get CPU for some time. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationDidEnterBackground() + Called on Android in onPause() + */ + SDL_EVENT_WILL_ENTER_FOREGROUND, /**< The application is about to enter the foreground. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationWillEnterForeground() + Called on Android in onResume() + */ + SDL_EVENT_DID_ENTER_FOREGROUND, /**< The application is now interactive. This event must be handled in a callback set with SDL_AddEventWatch(). + Called on iOS in applicationDidBecomeActive() + Called on Android in onResume() + */ + + SDL_EVENT_LOCALE_CHANGED, /**< The user's locale preferences have changed. */ + + SDL_EVENT_SYSTEM_THEME_CHANGED, /**< The system theme changed */ + + /* Display events */ + /* 0x150 was SDL_DISPLAYEVENT, reserve the number for sdl2-compat */ + SDL_EVENT_DISPLAY_ORIENTATION = 0x151, /**< Display orientation has changed to data1 */ + SDL_EVENT_DISPLAY_ADDED, /**< Display has been added to the system */ + SDL_EVENT_DISPLAY_REMOVED, /**< Display has been removed from the system */ + SDL_EVENT_DISPLAY_MOVED, /**< Display has changed position */ + SDL_EVENT_DISPLAY_DESKTOP_MODE_CHANGED, /**< Display has changed desktop mode */ + SDL_EVENT_DISPLAY_CURRENT_MODE_CHANGED, /**< Display has changed current mode */ + SDL_EVENT_DISPLAY_CONTENT_SCALE_CHANGED, /**< Display has changed content scale */ + SDL_EVENT_DISPLAY_FIRST = SDL_EVENT_DISPLAY_ORIENTATION, + SDL_EVENT_DISPLAY_LAST = SDL_EVENT_DISPLAY_CONTENT_SCALE_CHANGED, + + /* Window events */ + /* 0x200 was SDL_WINDOWEVENT, reserve the number for sdl2-compat */ + /* 0x201 was SDL_SYSWMEVENT, reserve the number for sdl2-compat */ + SDL_EVENT_WINDOW_SHOWN = 0x202, /**< Window has been shown */ + SDL_EVENT_WINDOW_HIDDEN, /**< Window has been hidden */ + SDL_EVENT_WINDOW_EXPOSED, /**< Window has been exposed and should be redrawn, and can be redrawn directly from event watchers for this event */ + SDL_EVENT_WINDOW_MOVED, /**< Window has been moved to data1, data2 */ + SDL_EVENT_WINDOW_RESIZED, /**< Window has been resized to data1xdata2 */ + SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED,/**< The pixel size of the window has changed to data1xdata2 */ + SDL_EVENT_WINDOW_METAL_VIEW_RESIZED,/**< The pixel size of a Metal view associated with the window has changed */ + SDL_EVENT_WINDOW_MINIMIZED, /**< Window has been minimized */ + SDL_EVENT_WINDOW_MAXIMIZED, /**< Window has been maximized */ + SDL_EVENT_WINDOW_RESTORED, /**< Window has been restored to normal size and position */ + SDL_EVENT_WINDOW_MOUSE_ENTER, /**< Window has gained mouse focus */ + SDL_EVENT_WINDOW_MOUSE_LEAVE, /**< Window has lost mouse focus */ + SDL_EVENT_WINDOW_FOCUS_GAINED, /**< Window has gained keyboard focus */ + SDL_EVENT_WINDOW_FOCUS_LOST, /**< Window has lost keyboard focus */ + SDL_EVENT_WINDOW_CLOSE_REQUESTED, /**< The window manager requests that the window be closed */ + SDL_EVENT_WINDOW_HIT_TEST, /**< Window had a hit test that wasn't SDL_HITTEST_NORMAL */ + SDL_EVENT_WINDOW_ICCPROF_CHANGED, /**< The ICC profile of the window's display has changed */ + SDL_EVENT_WINDOW_DISPLAY_CHANGED, /**< Window has been moved to display data1 */ + SDL_EVENT_WINDOW_DISPLAY_SCALE_CHANGED, /**< Window display scale has been changed */ + SDL_EVENT_WINDOW_SAFE_AREA_CHANGED, /**< The window safe area has been changed */ + SDL_EVENT_WINDOW_OCCLUDED, /**< The window has been occluded */ + SDL_EVENT_WINDOW_ENTER_FULLSCREEN, /**< The window has entered fullscreen mode */ + SDL_EVENT_WINDOW_LEAVE_FULLSCREEN, /**< The window has left fullscreen mode */ + SDL_EVENT_WINDOW_DESTROYED, /**< The window with the associated ID is being or has been destroyed. If this message is being handled + in an event watcher, the window handle is still valid and can still be used to retrieve any properties + associated with the window. Otherwise, the handle has already been destroyed and all resources + associated with it are invalid */ + SDL_EVENT_WINDOW_HDR_STATE_CHANGED, /**< Window HDR properties have changed */ + SDL_EVENT_WINDOW_FIRST = SDL_EVENT_WINDOW_SHOWN, + SDL_EVENT_WINDOW_LAST = SDL_EVENT_WINDOW_HDR_STATE_CHANGED, + + /* Keyboard events */ + SDL_EVENT_KEY_DOWN = 0x300, /**< Key pressed */ + SDL_EVENT_KEY_UP, /**< Key released */ + SDL_EVENT_TEXT_EDITING, /**< Keyboard text editing (composition) */ + SDL_EVENT_TEXT_INPUT, /**< Keyboard text input */ + SDL_EVENT_KEYMAP_CHANGED, /**< Keymap changed due to a system event such as an + input language or keyboard layout change. */ + SDL_EVENT_KEYBOARD_ADDED, /**< A new keyboard has been inserted into the system */ + SDL_EVENT_KEYBOARD_REMOVED, /**< A keyboard has been removed */ + SDL_EVENT_TEXT_EDITING_CANDIDATES, /**< Keyboard text editing candidates */ + + /* Mouse events */ + SDL_EVENT_MOUSE_MOTION = 0x400, /**< Mouse moved */ + SDL_EVENT_MOUSE_BUTTON_DOWN, /**< Mouse button pressed */ + SDL_EVENT_MOUSE_BUTTON_UP, /**< Mouse button released */ + SDL_EVENT_MOUSE_WHEEL, /**< Mouse wheel motion */ + SDL_EVENT_MOUSE_ADDED, /**< A new mouse has been inserted into the system */ + SDL_EVENT_MOUSE_REMOVED, /**< A mouse has been removed */ + + /* Joystick events */ + SDL_EVENT_JOYSTICK_AXIS_MOTION = 0x600, /**< Joystick axis motion */ + SDL_EVENT_JOYSTICK_BALL_MOTION, /**< Joystick trackball motion */ + SDL_EVENT_JOYSTICK_HAT_MOTION, /**< Joystick hat position change */ + SDL_EVENT_JOYSTICK_BUTTON_DOWN, /**< Joystick button pressed */ + SDL_EVENT_JOYSTICK_BUTTON_UP, /**< Joystick button released */ + SDL_EVENT_JOYSTICK_ADDED, /**< A new joystick has been inserted into the system */ + SDL_EVENT_JOYSTICK_REMOVED, /**< An opened joystick has been removed */ + SDL_EVENT_JOYSTICK_BATTERY_UPDATED, /**< Joystick battery level change */ + SDL_EVENT_JOYSTICK_UPDATE_COMPLETE, /**< Joystick update is complete */ + + /* Gamepad events */ + SDL_EVENT_GAMEPAD_AXIS_MOTION = 0x650, /**< Gamepad axis motion */ + SDL_EVENT_GAMEPAD_BUTTON_DOWN, /**< Gamepad button pressed */ + SDL_EVENT_GAMEPAD_BUTTON_UP, /**< Gamepad button released */ + SDL_EVENT_GAMEPAD_ADDED, /**< A new gamepad has been inserted into the system */ + SDL_EVENT_GAMEPAD_REMOVED, /**< A gamepad has been removed */ + SDL_EVENT_GAMEPAD_REMAPPED, /**< The gamepad mapping was updated */ + SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN, /**< Gamepad touchpad was touched */ + SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION, /**< Gamepad touchpad finger was moved */ + SDL_EVENT_GAMEPAD_TOUCHPAD_UP, /**< Gamepad touchpad finger was lifted */ + SDL_EVENT_GAMEPAD_SENSOR_UPDATE, /**< Gamepad sensor was updated */ + SDL_EVENT_GAMEPAD_UPDATE_COMPLETE, /**< Gamepad update is complete */ + SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED, /**< Gamepad Steam handle has changed */ + + /* Touch events */ + SDL_EVENT_FINGER_DOWN = 0x700, + SDL_EVENT_FINGER_UP, + SDL_EVENT_FINGER_MOTION, + SDL_EVENT_FINGER_CANCELED, + + /* 0x800, 0x801, and 0x802 were the Gesture events from SDL2. Do not reuse these values! sdl2-compat needs them! */ + + /* Clipboard events */ + SDL_EVENT_CLIPBOARD_UPDATE = 0x900, /**< The clipboard or primary selection changed */ + + /* Drag and drop events */ + SDL_EVENT_DROP_FILE = 0x1000, /**< The system requests a file open */ + SDL_EVENT_DROP_TEXT, /**< text/plain drag-and-drop event */ + SDL_EVENT_DROP_BEGIN, /**< A new set of drops is beginning (NULL filename) */ + SDL_EVENT_DROP_COMPLETE, /**< Current set of drops is now complete (NULL filename) */ + SDL_EVENT_DROP_POSITION, /**< Position while moving over the window */ + + /* Audio hotplug events */ + SDL_EVENT_AUDIO_DEVICE_ADDED = 0x1100, /**< A new audio device is available */ + SDL_EVENT_AUDIO_DEVICE_REMOVED, /**< An audio device has been removed. */ + SDL_EVENT_AUDIO_DEVICE_FORMAT_CHANGED, /**< An audio device's format has been changed by the system. */ + + /* Sensor events */ + SDL_EVENT_SENSOR_UPDATE = 0x1200, /**< A sensor was updated */ + + /* Pressure-sensitive pen events */ + SDL_EVENT_PEN_PROXIMITY_IN = 0x1300, /**< Pressure-sensitive pen has become available */ + SDL_EVENT_PEN_PROXIMITY_OUT, /**< Pressure-sensitive pen has become unavailable */ + SDL_EVENT_PEN_DOWN, /**< Pressure-sensitive pen touched drawing surface */ + SDL_EVENT_PEN_UP, /**< Pressure-sensitive pen stopped touching drawing surface */ + SDL_EVENT_PEN_BUTTON_DOWN, /**< Pressure-sensitive pen button pressed */ + SDL_EVENT_PEN_BUTTON_UP, /**< Pressure-sensitive pen button released */ + SDL_EVENT_PEN_MOTION, /**< Pressure-sensitive pen is moving on the tablet */ + SDL_EVENT_PEN_AXIS, /**< Pressure-sensitive pen angle/pressure/etc changed */ + + /* Camera hotplug events */ + SDL_EVENT_CAMERA_DEVICE_ADDED = 0x1400, /**< A new camera device is available */ + SDL_EVENT_CAMERA_DEVICE_REMOVED, /**< A camera device has been removed. */ + SDL_EVENT_CAMERA_DEVICE_APPROVED, /**< A camera device has been approved for use by the user. */ + SDL_EVENT_CAMERA_DEVICE_DENIED, /**< A camera device has been denied for use by the user. */ + + /* Render events */ + SDL_EVENT_RENDER_TARGETS_RESET = 0x2000, /**< The render targets have been reset and their contents need to be updated */ + SDL_EVENT_RENDER_DEVICE_RESET, /**< The device has been reset and all textures need to be recreated */ + SDL_EVENT_RENDER_DEVICE_LOST, /**< The device has been lost and can't be recovered. */ + + /* Reserved events for private platforms */ + SDL_EVENT_PRIVATE0 = 0x4000, + SDL_EVENT_PRIVATE1, + SDL_EVENT_PRIVATE2, + SDL_EVENT_PRIVATE3, + + /* Internal events */ + SDL_EVENT_POLL_SENTINEL = 0x7F00, /**< Signals the end of an event poll cycle */ + + /** Events SDL_EVENT_USER through SDL_EVENT_LAST are for your use, + * and should be allocated with SDL_RegisterEvents() + */ + SDL_EVENT_USER = 0x8000, + + /** + * This last event is only for bounding internal arrays + */ + SDL_EVENT_LAST = 0xFFFF, + + /* This just makes sure the enum is the size of Uint32 */ + SDL_EVENT_ENUM_PADDING = 0x7FFFFFFF + +} SDL_EventType; + +/** + * Fields shared by every event + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_CommonEvent +{ + Uint32 type; /**< Event type, shared with all events, Uint32 to cover user events which are not in the SDL_EventType enumeration */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ +} SDL_CommonEvent; + +/** + * Display state change event data (event.display.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_DisplayEvent +{ + SDL_EventType type; /**< SDL_DISPLAYEVENT_* */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_DisplayID displayID;/**< The associated display */ + Sint32 data1; /**< event dependent data */ + Sint32 data2; /**< event dependent data */ +} SDL_DisplayEvent; + +/** + * Window state change event data (event.window.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_WindowEvent +{ + SDL_EventType type; /**< SDL_EVENT_WINDOW_* */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The associated window */ + Sint32 data1; /**< event dependent data */ + Sint32 data2; /**< event dependent data */ +} SDL_WindowEvent; + +/** + * Keyboard device event structure (event.kdevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_KeyboardDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_KEYBOARD_ADDED or SDL_EVENT_KEYBOARD_REMOVED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_KeyboardID which; /**< The keyboard instance id */ +} SDL_KeyboardDeviceEvent; + +/** + * Keyboard button event structure (event.key.*) + * + * The `key` is the base SDL_Keycode generated by pressing the `scancode` + * using the current keyboard layout, applying any options specified in + * SDL_HINT_KEYCODE_OPTIONS. You can get the SDL_Keycode corresponding to the + * event scancode and modifiers directly from the keyboard layout, bypassing + * SDL_HINT_KEYCODE_OPTIONS, by calling SDL_GetKeyFromScancode(). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromScancode + * \sa SDL_HINT_KEYCODE_OPTIONS + */ +typedef struct SDL_KeyboardEvent +{ + SDL_EventType type; /**< SDL_EVENT_KEY_DOWN or SDL_EVENT_KEY_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + SDL_KeyboardID which; /**< The keyboard instance id, or 0 if unknown or virtual */ + SDL_Scancode scancode; /**< SDL physical key code */ + SDL_Keycode key; /**< SDL virtual key code */ + SDL_Keymod mod; /**< current key modifiers */ + Uint16 raw; /**< The platform dependent scancode for this event */ + bool down; /**< true if the key is pressed */ + bool repeat; /**< true if this is a key repeat */ +} SDL_KeyboardEvent; + +/** + * Keyboard text editing event structure (event.edit.*) + * + * The start cursor is the position, in UTF-8 characters, where new typing + * will be inserted into the editing text. The length is the number of UTF-8 + * characters that will be replaced by new typing. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TextEditingEvent +{ + SDL_EventType type; /**< SDL_EVENT_TEXT_EDITING */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + const char *text; /**< The editing text */ + Sint32 start; /**< The start cursor of selected editing text, or -1 if not set */ + Sint32 length; /**< The length of selected editing text, or -1 if not set */ +} SDL_TextEditingEvent; + +/** + * Keyboard IME candidates event structure (event.edit_candidates.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TextEditingCandidatesEvent +{ + SDL_EventType type; /**< SDL_EVENT_TEXT_EDITING_CANDIDATES */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + const char * const *candidates; /**< The list of candidates, or NULL if there are no candidates available */ + Sint32 num_candidates; /**< The number of strings in `candidates` */ + Sint32 selected_candidate; /**< The index of the selected candidate, or -1 if no candidate is selected */ + bool horizontal; /**< true if the list is horizontal, false if it's vertical */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_TextEditingCandidatesEvent; + +/** + * Keyboard text input event structure (event.text.*) + * + * This event will never be delivered unless text input is enabled by calling + * SDL_StartTextInput(). Text input is disabled by default! + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + * \sa SDL_StopTextInput + */ +typedef struct SDL_TextInputEvent +{ + SDL_EventType type; /**< SDL_EVENT_TEXT_INPUT */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with keyboard focus, if any */ + const char *text; /**< The input text, UTF-8 encoded */ +} SDL_TextInputEvent; + +/** + * Mouse device event structure (event.mdevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_ADDED or SDL_EVENT_MOUSE_REMOVED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_MouseID which; /**< The mouse instance id */ +} SDL_MouseDeviceEvent; + +/** + * Mouse motion event structure (event.motion.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseMotionEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_MouseID which; /**< The mouse instance id in relative mode, SDL_TOUCH_MOUSEID for touch events, or 0 */ + SDL_MouseButtonFlags state; /**< The current button state */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + float xrel; /**< The relative motion in the X direction */ + float yrel; /**< The relative motion in the Y direction */ +} SDL_MouseMotionEvent; + +/** + * Mouse button event structure (event.button.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_BUTTON_DOWN or SDL_EVENT_MOUSE_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_MouseID which; /**< The mouse instance id in relative mode, SDL_TOUCH_MOUSEID for touch events, or 0 */ + Uint8 button; /**< The mouse button index */ + bool down; /**< true if the button is pressed */ + Uint8 clicks; /**< 1 for single-click, 2 for double-click, etc. */ + Uint8 padding; + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ +} SDL_MouseButtonEvent; + +/** + * Mouse wheel event structure (event.wheel.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MouseWheelEvent +{ + SDL_EventType type; /**< SDL_EVENT_MOUSE_WHEEL */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_MouseID which; /**< The mouse instance id in relative mode or 0 */ + float x; /**< The amount scrolled horizontally, positive to the right and negative to the left */ + float y; /**< The amount scrolled vertically, positive away from the user and negative toward the user */ + SDL_MouseWheelDirection direction; /**< Set to one of the SDL_MOUSEWHEEL_* defines. When FLIPPED the values in X and Y will be opposite. Multiply by -1 to change them back */ + float mouse_x; /**< X coordinate, relative to window */ + float mouse_y; /**< Y coordinate, relative to window */ + Sint32 integer_x; /**< The amount scrolled horizontally, accumulated to whole scroll "ticks" (added in 3.2.12) */ + Sint32 integer_y; /**< The amount scrolled vertically, accumulated to whole scroll "ticks" (added in 3.2.12) */ +} SDL_MouseWheelEvent; + +/** + * Joystick axis motion event structure (event.jaxis.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyAxisEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_AXIS_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 axis; /**< The joystick axis index */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 value; /**< The axis value (range: -32768 to 32767) */ + Uint16 padding4; +} SDL_JoyAxisEvent; + +/** + * Joystick trackball motion event structure (event.jball.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyBallEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_BALL_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 ball; /**< The joystick trackball index */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 xrel; /**< The relative motion in the X direction */ + Sint16 yrel; /**< The relative motion in the Y direction */ +} SDL_JoyBallEvent; + +/** + * Joystick hat position change event structure (event.jhat.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyHatEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_HAT_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 hat; /**< The joystick hat index */ + Uint8 value; /**< The hat position value. + * \sa SDL_HAT_LEFTUP SDL_HAT_UP SDL_HAT_RIGHTUP + * \sa SDL_HAT_LEFT SDL_HAT_CENTERED SDL_HAT_RIGHT + * \sa SDL_HAT_LEFTDOWN SDL_HAT_DOWN SDL_HAT_RIGHTDOWN + * + * Note that zero means the POV is centered. + */ + Uint8 padding1; + Uint8 padding2; +} SDL_JoyHatEvent; + +/** + * Joystick button event structure (event.jbutton.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_BUTTON_DOWN or SDL_EVENT_JOYSTICK_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 button; /**< The joystick button index */ + bool down; /**< true if the button is pressed */ + Uint8 padding1; + Uint8 padding2; +} SDL_JoyButtonEvent; + +/** + * Joystick device event structure (event.jdevice.*) + * + * SDL will send JOYSTICK_ADDED events for devices that are already plugged in + * during SDL_Init. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GamepadDeviceEvent + */ +typedef struct SDL_JoyDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_ADDED or SDL_EVENT_JOYSTICK_REMOVED or SDL_EVENT_JOYSTICK_UPDATE_COMPLETE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ +} SDL_JoyDeviceEvent; + +/** + * Joystick battery level change event structure (event.jbattery.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_JoyBatteryEvent +{ + SDL_EventType type; /**< SDL_EVENT_JOYSTICK_BATTERY_UPDATED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + SDL_PowerState state; /**< The joystick battery state */ + int percent; /**< The joystick battery percent charge remaining */ +} SDL_JoyBatteryEvent; + +/** + * Gamepad axis motion event structure (event.gaxis.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadAxisEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_AXIS_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 axis; /**< The gamepad axis (SDL_GamepadAxis) */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; + Sint16 value; /**< The axis value (range: -32768 to 32767) */ + Uint16 padding4; +} SDL_GamepadAxisEvent; + + +/** + * Gamepad button event structure (event.gbutton.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_BUTTON_DOWN or SDL_EVENT_GAMEPAD_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Uint8 button; /**< The gamepad button (SDL_GamepadButton) */ + bool down; /**< true if the button is pressed */ + Uint8 padding1; + Uint8 padding2; +} SDL_GamepadButtonEvent; + + +/** + * Gamepad device event structure (event.gdevice.*) + * + * Joysticks that are supported gamepads receive both an SDL_JoyDeviceEvent + * and an SDL_GamepadDeviceEvent. + * + * SDL will send GAMEPAD_ADDED events for joysticks that are already plugged + * in during SDL_Init() and are recognized as gamepads. It will also send + * events for joysticks that get gamepad mappings at runtime. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_JoyDeviceEvent + */ +typedef struct SDL_GamepadDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_ADDED, SDL_EVENT_GAMEPAD_REMOVED, or SDL_EVENT_GAMEPAD_REMAPPED, SDL_EVENT_GAMEPAD_UPDATE_COMPLETE or SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ +} SDL_GamepadDeviceEvent; + +/** + * Gamepad touchpad event structure (event.gtouchpad.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadTouchpadEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN or SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION or SDL_EVENT_GAMEPAD_TOUCHPAD_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Sint32 touchpad; /**< The index of the touchpad */ + Sint32 finger; /**< The index of the finger on the touchpad */ + float x; /**< Normalized in the range 0...1 with 0 being on the left */ + float y; /**< Normalized in the range 0...1 with 0 being at the top */ + float pressure; /**< Normalized in the range 0...1 */ +} SDL_GamepadTouchpadEvent; + +/** + * Gamepad sensor event structure (event.gsensor.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GamepadSensorEvent +{ + SDL_EventType type; /**< SDL_EVENT_GAMEPAD_SENSOR_UPDATE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_JoystickID which; /**< The joystick instance id */ + Sint32 sensor; /**< The type of the sensor, one of the values of SDL_SensorType */ + float data[3]; /**< Up to 3 values from the sensor, as defined in SDL_sensor.h */ + Uint64 sensor_timestamp; /**< The timestamp of the sensor reading in nanoseconds, not necessarily synchronized with the system clock */ +} SDL_GamepadSensorEvent; + +/** + * Audio device event structure (event.adevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_AudioDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_AUDIO_DEVICE_ADDED, or SDL_EVENT_AUDIO_DEVICE_REMOVED, or SDL_EVENT_AUDIO_DEVICE_FORMAT_CHANGED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_AudioDeviceID which; /**< SDL_AudioDeviceID for the device being added or removed or changing */ + bool recording; /**< false if a playback device, true if a recording device. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_AudioDeviceEvent; + +/** + * Camera device event structure (event.cdevice.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_CameraDeviceEvent +{ + SDL_EventType type; /**< SDL_EVENT_CAMERA_DEVICE_ADDED, SDL_EVENT_CAMERA_DEVICE_REMOVED, SDL_EVENT_CAMERA_DEVICE_APPROVED, SDL_EVENT_CAMERA_DEVICE_DENIED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_CameraID which; /**< SDL_CameraID for the device being added or removed or changing */ +} SDL_CameraDeviceEvent; + + +/** + * Renderer event structure (event.render.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_RenderEvent +{ + SDL_EventType type; /**< SDL_EVENT_RENDER_TARGETS_RESET, SDL_EVENT_RENDER_DEVICE_RESET, SDL_EVENT_RENDER_DEVICE_LOST */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window containing the renderer in question. */ +} SDL_RenderEvent; + + +/** + * Touch finger event structure (event.tfinger.*) + * + * Coordinates in this event are normalized. `x` and `y` are normalized to a + * range between 0.0f and 1.0f, relative to the window, so (0,0) is the top + * left and (1,1) is the bottom right. Delta coordinates `dx` and `dy` are + * normalized in the ranges of -1.0f (traversed all the way from the bottom or + * right to all the way up or left) to 1.0f (traversed all the way from the + * top or left to all the way down or right). + * + * Note that while the coordinates are _normalized_, they are not _clamped_, + * which means in some circumstances you can get a value outside of this + * range. For example, a renderer using logical presentation might give a + * negative value when the touch is in the letterboxing. Some platforms might + * report a touch outside of the window, which will also be outside of the + * range. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TouchFingerEvent +{ + SDL_EventType type; /**< SDL_EVENT_FINGER_DOWN, SDL_EVENT_FINGER_UP, SDL_EVENT_FINGER_MOTION, or SDL_EVENT_FINGER_CANCELED */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_TouchID touchID; /**< The touch device id */ + SDL_FingerID fingerID; + float x; /**< Normalized in the range 0...1 */ + float y; /**< Normalized in the range 0...1 */ + float dx; /**< Normalized in the range -1...1 */ + float dy; /**< Normalized in the range -1...1 */ + float pressure; /**< Normalized in the range 0...1 */ + SDL_WindowID windowID; /**< The window underneath the finger, if any */ +} SDL_TouchFingerEvent; + +/** + * Pressure-sensitive pen proximity event structure (event.pmotion.*) + * + * When a pen becomes visible to the system (it is close enough to a tablet, + * etc), SDL will send an SDL_EVENT_PEN_PROXIMITY_IN event with the new pen's + * ID. This ID is valid until the pen leaves proximity again (has been removed + * from the tablet's area, the tablet has been unplugged, etc). If the same + * pen reenters proximity again, it will be given a new ID. + * + * Note that "proximity" means "close enough for the tablet to know the tool + * is there." The pen touching and lifting off from the tablet while not + * leaving the area are handled by SDL_EVENT_PEN_DOWN and SDL_EVENT_PEN_UP. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenProximityEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_PROXIMITY_IN or SDL_EVENT_PEN_PROXIMITY_OUT */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ +} SDL_PenProximityEvent; + +/** + * Pressure-sensitive pen motion event structure (event.pmotion.*) + * + * Depending on the hardware, you may get motion events when the pen is not + * touching a tablet, for tracking a pen even when it isn't drawing. You + * should listen for SDL_EVENT_PEN_DOWN and SDL_EVENT_PEN_UP events, or check + * `pen_state & SDL_PEN_INPUT_DOWN` to decide if a pen is "drawing" when + * dealing with pen motion. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenMotionEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_MOTION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ +} SDL_PenMotionEvent; + +/** + * Pressure-sensitive pen touched event structure (event.ptouch.*) + * + * These events come when a pen touches a surface (a tablet, etc), or lifts + * off from one. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenTouchEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_DOWN or SDL_EVENT_PEN_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + bool eraser; /**< true if eraser end is used (not all pens support this). */ + bool down; /**< true if the pen is touching or false if the pen is lifted off */ +} SDL_PenTouchEvent; + +/** + * Pressure-sensitive pen button event structure (event.pbutton.*) + * + * This is for buttons on the pen itself that the user might click. The pen + * itself pressing down to draw triggers a SDL_EVENT_PEN_DOWN event instead. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenButtonEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_BUTTON_DOWN or SDL_EVENT_PEN_BUTTON_UP */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with mouse focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + Uint8 button; /**< The pen button index (first button is 1). */ + bool down; /**< true if the button is pressed */ +} SDL_PenButtonEvent; + +/** + * Pressure-sensitive pen pressure / angle event structure (event.paxis.*) + * + * You might get some of these events even if the pen isn't touching the + * tablet. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PenAxisEvent +{ + SDL_EventType type; /**< SDL_EVENT_PEN_AXIS */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window with pen focus, if any */ + SDL_PenID which; /**< The pen instance id */ + SDL_PenInputFlags pen_state; /**< Complete pen input state at time of event */ + float x; /**< X coordinate, relative to window */ + float y; /**< Y coordinate, relative to window */ + SDL_PenAxis axis; /**< Axis that has changed */ + float value; /**< New value of axis */ +} SDL_PenAxisEvent; + +/** + * An event used to drop text or request a file open by the system + * (event.drop.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_DropEvent +{ + SDL_EventType type; /**< SDL_EVENT_DROP_BEGIN or SDL_EVENT_DROP_FILE or SDL_EVENT_DROP_TEXT or SDL_EVENT_DROP_COMPLETE or SDL_EVENT_DROP_POSITION */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The window that was dropped on, if any */ + float x; /**< X coordinate, relative to window (not on begin) */ + float y; /**< Y coordinate, relative to window (not on begin) */ + const char *source; /**< The source app that sent this drop event, or NULL if that isn't available */ + const char *data; /**< The text for SDL_EVENT_DROP_TEXT and the file name for SDL_EVENT_DROP_FILE, NULL for other events */ +} SDL_DropEvent; + +/** + * An event triggered when the clipboard contents have changed + * (event.clipboard.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_ClipboardEvent +{ + SDL_EventType type; /**< SDL_EVENT_CLIPBOARD_UPDATE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + bool owner; /**< are we owning the clipboard (internal update) */ + Sint32 num_mime_types; /**< number of mime types */ + const char **mime_types; /**< current mime types */ +} SDL_ClipboardEvent; + +/** + * Sensor event structure (event.sensor.*) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_SensorEvent +{ + SDL_EventType type; /**< SDL_EVENT_SENSOR_UPDATE */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_SensorID which; /**< The instance ID of the sensor */ + float data[6]; /**< Up to 6 values from the sensor - additional values can be queried using SDL_GetSensorData() */ + Uint64 sensor_timestamp; /**< The timestamp of the sensor reading in nanoseconds, not necessarily synchronized with the system clock */ +} SDL_SensorEvent; + +/** + * The "quit requested" event + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_QuitEvent +{ + SDL_EventType type; /**< SDL_EVENT_QUIT */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ +} SDL_QuitEvent; + +/** + * A user-defined event type (event.user.*) + * + * This event is unique; it is never created by SDL, but only by the + * application. The event can be pushed onto the event queue using + * SDL_PushEvent(). The contents of the structure members are completely up to + * the programmer; the only requirement is that '''type''' is a value obtained + * from SDL_RegisterEvents(). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_UserEvent +{ + Uint32 type; /**< SDL_EVENT_USER through SDL_EVENT_LAST-1, Uint32 because these are not in the SDL_EventType enumeration */ + Uint32 reserved; + Uint64 timestamp; /**< In nanoseconds, populated using SDL_GetTicksNS() */ + SDL_WindowID windowID; /**< The associated window if any */ + Sint32 code; /**< User defined event code */ + void *data1; /**< User defined data pointer */ + void *data2; /**< User defined data pointer */ +} SDL_UserEvent; + + +/** + * The structure for all events in SDL. + * + * The SDL_Event structure is the core of all event handling in SDL. SDL_Event + * is a union of all event structures used in SDL. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef union SDL_Event +{ + Uint32 type; /**< Event type, shared with all events, Uint32 to cover user events which are not in the SDL_EventType enumeration */ + SDL_CommonEvent common; /**< Common event data */ + SDL_DisplayEvent display; /**< Display event data */ + SDL_WindowEvent window; /**< Window event data */ + SDL_KeyboardDeviceEvent kdevice; /**< Keyboard device change event data */ + SDL_KeyboardEvent key; /**< Keyboard event data */ + SDL_TextEditingEvent edit; /**< Text editing event data */ + SDL_TextEditingCandidatesEvent edit_candidates; /**< Text editing candidates event data */ + SDL_TextInputEvent text; /**< Text input event data */ + SDL_MouseDeviceEvent mdevice; /**< Mouse device change event data */ + SDL_MouseMotionEvent motion; /**< Mouse motion event data */ + SDL_MouseButtonEvent button; /**< Mouse button event data */ + SDL_MouseWheelEvent wheel; /**< Mouse wheel event data */ + SDL_JoyDeviceEvent jdevice; /**< Joystick device change event data */ + SDL_JoyAxisEvent jaxis; /**< Joystick axis event data */ + SDL_JoyBallEvent jball; /**< Joystick ball event data */ + SDL_JoyHatEvent jhat; /**< Joystick hat event data */ + SDL_JoyButtonEvent jbutton; /**< Joystick button event data */ + SDL_JoyBatteryEvent jbattery; /**< Joystick battery event data */ + SDL_GamepadDeviceEvent gdevice; /**< Gamepad device event data */ + SDL_GamepadAxisEvent gaxis; /**< Gamepad axis event data */ + SDL_GamepadButtonEvent gbutton; /**< Gamepad button event data */ + SDL_GamepadTouchpadEvent gtouchpad; /**< Gamepad touchpad event data */ + SDL_GamepadSensorEvent gsensor; /**< Gamepad sensor event data */ + SDL_AudioDeviceEvent adevice; /**< Audio device event data */ + SDL_CameraDeviceEvent cdevice; /**< Camera device event data */ + SDL_SensorEvent sensor; /**< Sensor event data */ + SDL_QuitEvent quit; /**< Quit request event data */ + SDL_UserEvent user; /**< Custom event data */ + SDL_TouchFingerEvent tfinger; /**< Touch finger event data */ + SDL_PenProximityEvent pproximity; /**< Pen proximity event data */ + SDL_PenTouchEvent ptouch; /**< Pen tip touching event data */ + SDL_PenMotionEvent pmotion; /**< Pen motion event data */ + SDL_PenButtonEvent pbutton; /**< Pen button event data */ + SDL_PenAxisEvent paxis; /**< Pen axis event data */ + SDL_RenderEvent render; /**< Render event data */ + SDL_DropEvent drop; /**< Drag and drop event data */ + SDL_ClipboardEvent clipboard; /**< Clipboard event data */ + + /* This is necessary for ABI compatibility between Visual C++ and GCC. + Visual C++ will respect the push pack pragma and use 52 bytes (size of + SDL_TextEditingEvent, the largest structure for 32-bit and 64-bit + architectures) for this union, and GCC will use the alignment of the + largest datatype within the union, which is 8 bytes on 64-bit + architectures. + + So... we'll add padding to force the size to be the same for both. + + On architectures where pointers are 16 bytes, this needs rounding up to + the next multiple of 16, 64, and on architectures where pointers are + even larger the size of SDL_UserEvent will dominate as being 3 pointers. + */ + Uint8 padding[128]; +} SDL_Event; + +/* Make sure we haven't broken binary compatibility */ +SDL_COMPILE_TIME_ASSERT(SDL_Event, sizeof(SDL_Event) == sizeof(((SDL_Event *)NULL)->padding)); + + +/* Function prototypes */ + +/** + * Pump the event loop, gathering events from the input devices. + * + * This function updates the event queue and internal input device state. + * + * SDL_PumpEvents() gathers all the pending input information from devices and + * places it in the event queue. Without calls to SDL_PumpEvents() no events + * would ever be placed on the queue. Often the need for calls to + * SDL_PumpEvents() is hidden from the user since SDL_PollEvent() and + * SDL_WaitEvent() implicitly call SDL_PumpEvents(). However, if you are not + * polling or waiting for events (e.g. you are filtering them), then you must + * call SDL_PumpEvents() to force an event queue update. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_WaitEvent + */ +extern SDL_DECLSPEC void SDLCALL SDL_PumpEvents(void); + +/* @{ */ + +/** + * The type of action to request from SDL_PeepEvents(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_EventAction +{ + SDL_ADDEVENT, /**< Add events to the back of the queue. */ + SDL_PEEKEVENT, /**< Check but don't remove events from the queue front. */ + SDL_GETEVENT /**< Retrieve/remove events from the front of the queue. */ +} SDL_EventAction; + +/** + * Check the event queue for messages and optionally return them. + * + * `action` may be any of the following: + * + * - `SDL_ADDEVENT`: up to `numevents` events will be added to the back of the + * event queue. + * - `SDL_PEEKEVENT`: `numevents` events at the front of the event queue, + * within the specified minimum and maximum type, will be returned to the + * caller and will _not_ be removed from the queue. If you pass NULL for + * `events`, then `numevents` is ignored and the total number of matching + * events will be returned. + * - `SDL_GETEVENT`: up to `numevents` events at the front of the event queue, + * within the specified minimum and maximum type, will be returned to the + * caller and will be removed from the queue. + * + * You may have to call SDL_PumpEvents() before calling this function. + * Otherwise, the events may not be ready to be filtered when you call + * SDL_PeepEvents(). + * + * \param events destination buffer for the retrieved events, may be NULL to + * leave the events in the queue and return the number of events + * that would have been stored. + * \param numevents if action is SDL_ADDEVENT, the number of events to add + * back to the event queue; if action is SDL_PEEKEVENT or + * SDL_GETEVENT, the maximum number of events to retrieve. + * \param action action to take; see [Remarks](#remarks) for details. + * \param minType minimum value of the event type to be considered; + * SDL_EVENT_FIRST is a safe choice. + * \param maxType maximum value of the event type to be considered; + * SDL_EVENT_LAST is a safe choice. + * \returns the number of events actually stored or -1 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_PumpEvents + * \sa SDL_PushEvent + */ +extern SDL_DECLSPEC int SDLCALL SDL_PeepEvents(SDL_Event *events, int numevents, SDL_EventAction action, Uint32 minType, Uint32 maxType); +/* @} */ + +/** + * Check for the existence of a certain event type in the event queue. + * + * If you need to check for a range of event types, use SDL_HasEvents() + * instead. + * + * \param type the type of event to be queried; see SDL_EventType for details. + * \returns true if events matching `type` are present, or false if events + * matching `type` are not present. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasEvents + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasEvent(Uint32 type); + + +/** + * Check for the existence of certain event types in the event queue. + * + * If you need to check for a single event type, use SDL_HasEvent() instead. + * + * \param minType the low end of event type to be queried, inclusive; see + * SDL_EventType for details. + * \param maxType the high end of event type to be queried, inclusive; see + * SDL_EventType for details. + * \returns true if events with type >= `minType` and <= `maxType` are + * present, or false if not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasEvents + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasEvents(Uint32 minType, Uint32 maxType); + +/** + * Clear events of a specific type from the event queue. + * + * This will unconditionally remove any events from the queue that match + * `type`. If you need to remove a range of event types, use SDL_FlushEvents() + * instead. + * + * It's also normal to just ignore events you don't care about in your event + * loop without calling this function. + * + * This function only affects currently queued events. If you want to make + * sure that all pending OS events are flushed, you can call SDL_PumpEvents() + * on the main thread immediately before the flush call. + * + * If you have user events with custom data that needs to be freed, you should + * use SDL_PeepEvents() to remove and clean up those events before calling + * this function. + * + * \param type the type of event to be cleared; see SDL_EventType for details. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FlushEvents + */ +extern SDL_DECLSPEC void SDLCALL SDL_FlushEvent(Uint32 type); + +/** + * Clear events of a range of types from the event queue. + * + * This will unconditionally remove any events from the queue that are in the + * range of `minType` to `maxType`, inclusive. If you need to remove a single + * event type, use SDL_FlushEvent() instead. + * + * It's also normal to just ignore events you don't care about in your event + * loop without calling this function. + * + * This function only affects currently queued events. If you want to make + * sure that all pending OS events are flushed, you can call SDL_PumpEvents() + * on the main thread immediately before the flush call. + * + * \param minType the low end of event type to be cleared, inclusive; see + * SDL_EventType for details. + * \param maxType the high end of event type to be cleared, inclusive; see + * SDL_EventType for details. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FlushEvent + */ +extern SDL_DECLSPEC void SDLCALL SDL_FlushEvents(Uint32 minType, Uint32 maxType); + +/** + * Poll for currently pending events. + * + * If `event` is not NULL, the next event is removed from the queue and stored + * in the SDL_Event structure pointed to by `event`. The 1 returned refers to + * this event, immediately stored in the SDL Event structure -- not an event + * to follow. + * + * If `event` is NULL, it simply returns 1 if there is an event in the queue, + * but will not remove it from the queue. + * + * As this function may implicitly call SDL_PumpEvents(), you can only call + * this function in the thread that set the video mode. + * + * SDL_PollEvent() is the favored way of receiving system events since it can + * be done from the main loop and does not suspend the main loop while waiting + * on an event to be posted. + * + * The common practice is to fully process the event queue once every frame, + * usually as a first step before updating the game's state: + * + * ```c + * while (game_is_still_running) { + * SDL_Event event; + * while (SDL_PollEvent(&event)) { // poll until all events are handled! + * // decide what to do with this event. + * } + * + * // update game state, draw the current frame + * } + * ``` + * + * \param event the SDL_Event structure to be filled with the next event from + * the queue, or NULL. + * \returns true if this got an event or false if there are none available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PushEvent + * \sa SDL_WaitEvent + * \sa SDL_WaitEventTimeout + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PollEvent(SDL_Event *event); + +/** + * Wait indefinitely for the next available event. + * + * If `event` is not NULL, the next event is removed from the queue and stored + * in the SDL_Event structure pointed to by `event`. + * + * As this function may implicitly call SDL_PumpEvents(), you can only call + * this function in the thread that initialized the video subsystem. + * + * \param event the SDL_Event structure to be filled in with the next event + * from the queue, or NULL. + * \returns true on success or false if there was an error while waiting for + * events; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_PushEvent + * \sa SDL_WaitEventTimeout + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitEvent(SDL_Event *event); + +/** + * Wait until the specified timeout (in milliseconds) for the next available + * event. + * + * If `event` is not NULL, the next event is removed from the queue and stored + * in the SDL_Event structure pointed to by `event`. + * + * As this function may implicitly call SDL_PumpEvents(), you can only call + * this function in the thread that initialized the video subsystem. + * + * The timeout is not guaranteed, the actual wait time could be longer due to + * system scheduling. + * + * \param event the SDL_Event structure to be filled in with the next event + * from the queue, or NULL. + * \param timeoutMS the maximum number of milliseconds to wait for the next + * available event. + * \returns true if this got an event or false if the timeout elapsed without + * any events available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_PushEvent + * \sa SDL_WaitEvent + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitEventTimeout(SDL_Event *event, Sint32 timeoutMS); + +/** + * Add an event to the event queue. + * + * The event queue can actually be used as a two way communication channel. + * Not only can events be read from the queue, but the user can also push + * their own events onto it. `event` is a pointer to the event structure you + * wish to push onto the queue. The event is copied into the queue, and the + * caller may dispose of the memory pointed to after SDL_PushEvent() returns. + * + * Note: Pushing device input events onto the queue doesn't modify the state + * of the device within SDL. + * + * Note: Events pushed onto the queue with SDL_PushEvent() get passed through + * the event filter but events added with SDL_PeepEvents() do not. + * + * For pushing application-specific events, please use SDL_RegisterEvents() to + * get an event type that does not conflict with other code that also wants + * its own custom event types. + * + * \param event the SDL_Event to be added to the queue. + * \returns true on success, false if the event was filtered or on failure; + * call SDL_GetError() for more information. A common reason for + * error is the event queue being full. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PeepEvents + * \sa SDL_PollEvent + * \sa SDL_RegisterEvents + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PushEvent(SDL_Event *event); + +/** + * A function pointer used for callbacks that watch the event queue. + * + * \param userdata what was passed as `userdata` to SDL_SetEventFilter() or + * SDL_AddEventWatch, etc. + * \param event the event that triggered the callback. + * \returns true to permit event to be added to the queue, and false to + * disallow it. When used with SDL_AddEventWatch, the return value is + * ignored. + * + * \threadsafety SDL may call this callback at any time from any thread; the + * application is responsible for locking resources the callback + * touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetEventFilter + * \sa SDL_AddEventWatch + */ +typedef bool (SDLCALL *SDL_EventFilter)(void *userdata, SDL_Event *event); + +/** + * Set up a filter to process all events before they are added to the internal + * event queue. + * + * If you just want to see events without modifying them or preventing them + * from being queued, you should use SDL_AddEventWatch() instead. + * + * If the filter function returns true when called, then the event will be + * added to the internal queue. If it returns false, then the event will be + * dropped from the queue, but the internal state will still be updated. This + * allows selective filtering of dynamically arriving events. + * + * **WARNING**: Be very careful of what you do in the event filter function, + * as it may run in a different thread! + * + * On platforms that support it, if the quit event is generated by an + * interrupt signal (e.g. pressing Ctrl-C), it will be delivered to the + * application at the next event poll. + * + * Note: Disabled events never make it to the event filter function; see + * SDL_SetEventEnabled(). + * + * Note: Events pushed onto the queue with SDL_PushEvent() get passed through + * the event filter, but events pushed onto the queue with SDL_PeepEvents() do + * not. + * + * \param filter an SDL_EventFilter function to call when an event happens. + * \param userdata a pointer that is passed to `filter`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + * \sa SDL_SetEventEnabled + * \sa SDL_GetEventFilter + * \sa SDL_PeepEvents + * \sa SDL_PushEvent + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetEventFilter(SDL_EventFilter filter, void *userdata); + +/** + * Query the current event filter. + * + * This function can be used to "chain" filters, by saving the existing filter + * before replacing it with a function that will call that saved filter. + * + * \param filter the current callback function will be stored here. + * \param userdata the pointer that is passed to the current event filter will + * be stored here. + * \returns true on success or false if there is no event filter set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetEventFilter + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetEventFilter(SDL_EventFilter *filter, void **userdata); + +/** + * Add a callback to be triggered when an event is added to the event queue. + * + * `filter` will be called when an event happens, and its return value is + * ignored. + * + * **WARNING**: Be very careful of what you do in the event filter function, + * as it may run in a different thread! + * + * If the quit event is generated by a signal (e.g. SIGINT), it will bypass + * the internal queue and be delivered to the watch callback immediately, and + * arrive at the next event poll. + * + * Note: the callback is called for events posted by the user through + * SDL_PushEvent(), but not for disabled events, nor for events by a filter + * callback set with SDL_SetEventFilter(), nor for events posted by the user + * through SDL_PeepEvents(). + * + * \param filter an SDL_EventFilter function to call when an event happens. + * \param userdata a pointer that is passed to `filter`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveEventWatch + * \sa SDL_SetEventFilter + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddEventWatch(SDL_EventFilter filter, void *userdata); + +/** + * Remove an event watch callback added with SDL_AddEventWatch(). + * + * This function takes the same input as SDL_AddEventWatch() to identify and + * delete the corresponding callback. + * + * \param filter the function originally passed to SDL_AddEventWatch(). + * \param userdata the pointer originally passed to SDL_AddEventWatch(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveEventWatch(SDL_EventFilter filter, void *userdata); + +/** + * Run a specific filter function on the current event queue, removing any + * events for which the filter returns false. + * + * See SDL_SetEventFilter() for more information. Unlike SDL_SetEventFilter(), + * this function does not change the filter permanently, it only uses the + * supplied filter until this function returns. + * + * \param filter the SDL_EventFilter function to call when an event happens. + * \param userdata a pointer that is passed to `filter`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEventFilter + * \sa SDL_SetEventFilter + */ +extern SDL_DECLSPEC void SDLCALL SDL_FilterEvents(SDL_EventFilter filter, void *userdata); + +/** + * Set the state of processing events by type. + * + * \param type the type of event; see SDL_EventType for details. + * \param enabled whether to process the event or not. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EventEnabled + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetEventEnabled(Uint32 type, bool enabled); + +/** + * Query the state of processing events by type. + * + * \param type the type of event; see SDL_EventType for details. + * \returns true if the event is being processed, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetEventEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EventEnabled(Uint32 type); + +/** + * Allocate a set of user-defined events, and return the beginning event + * number for that set of events. + * + * \param numevents the number of events to be allocated. + * \returns the beginning event number, or 0 if numevents is invalid or if + * there are not enough user-defined events left. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PushEvent + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_RegisterEvents(int numevents); + +/** + * Get window associated with an event. + * + * \param event an event containing a `windowID`. + * \returns the associated window on success or NULL if there is none. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PollEvent + * \sa SDL_WaitEvent + * \sa SDL_WaitEventTimeout + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetWindowFromEvent(const SDL_Event *event); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_events_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_filesystem.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_filesystem.h new file mode 100644 index 0000000..af3ca27 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_filesystem.h @@ -0,0 +1,503 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryFilesystem + * + * SDL offers an API for examining and manipulating the system's filesystem. + * This covers most things one would need to do with directories, except for + * actual file I/O (which is covered by [CategoryIOStream](CategoryIOStream) + * and [CategoryAsyncIO](CategoryAsyncIO) instead). + * + * There are functions to answer necessary path questions: + * + * - Where is my app's data? SDL_GetBasePath(). + * - Where can I safely write files? SDL_GetPrefPath(). + * - Where are paths like Downloads, Desktop, Music? SDL_GetUserFolder(). + * - What is this thing at this location? SDL_GetPathInfo(). + * - What items live in this folder? SDL_EnumerateDirectory(). + * - What items live in this folder by wildcard? SDL_GlobDirectory(). + * - What is my current working directory? SDL_GetCurrentDirectory(). + * + * SDL also offers functions to manipulate the directory tree: renaming, + * removing, copying files. + */ + +#ifndef SDL_filesystem_h_ +#define SDL_filesystem_h_ + +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Get the directory where the application was run from. + * + * SDL caches the result of this call internally, but the first call to this + * function is not necessarily fast, so plan accordingly. + * + * **macOS and iOS Specific Functionality**: If the application is in a ".app" + * bundle, this function returns the Resource directory (e.g. + * MyApp.app/Contents/Resources/). This behaviour can be overridden by adding + * a property to the Info.plist file. Adding a string key with the name + * SDL_FILESYSTEM_BASE_DIR_TYPE with a supported value will change the + * behaviour. + * + * Supported values for the SDL_FILESYSTEM_BASE_DIR_TYPE property (Given an + * application in /Applications/SDLApp/MyApp.app): + * + * - `resource`: bundle resource directory (the default). For example: + * `/Applications/SDLApp/MyApp.app/Contents/Resources` + * - `bundle`: the Bundle directory. For example: + * `/Applications/SDLApp/MyApp.app/` + * - `parent`: the containing directory of the bundle. For example: + * `/Applications/SDLApp/` + * + * **Nintendo 3DS Specific Functionality**: This function returns "romfs" + * directory of the application as it is uncommon to store resources outside + * the executable. As such it is not a writable directory. + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * \returns an absolute path in UTF-8 encoding to the application data + * directory. NULL will be returned on error or when the platform + * doesn't implement this functionality, call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPrefPath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetBasePath(void); + +/** + * Get the user-and-app-specific path where files can be written. + * + * Get the "pref dir". This is meant to be where users can write personal + * files (preferences and save games, etc) that are specific to your + * application. This directory is unique per user, per application. + * + * This function will decide the appropriate location in the native + * filesystem, create the directory if necessary, and return a string of the + * absolute path to the directory in UTF-8 encoding. + * + * On Windows, the string might look like: + * + * `C:\\Users\\bob\\AppData\\Roaming\\My Company\\My Program Name\\` + * + * On Linux, the string might look like: + * + * `/home/bob/.local/share/My Program Name/` + * + * On macOS, the string might look like: + * + * `/Users/bob/Library/Application Support/My Program Name/` + * + * You should assume the path returned by this function is the only safe place + * to write files (and that SDL_GetBasePath(), while it might be writable, or + * even the parent of the returned path, isn't where you should be writing + * things). + * + * Both the org and app strings may become part of a directory name, so please + * follow these rules: + * + * - Try to use the same org string (_including case-sensitivity_) for all + * your applications that use this function. + * - Always use a unique app string for each one, and make sure it never + * changes for an app once you've decided on it. + * - Unicode characters are legal, as long as they are UTF-8 encoded, but... + * - ...only use letters, numbers, and spaces. Avoid punctuation like "Game + * Name 2: Bad Guy's Revenge!" ... "Game Name 2" is sufficient. + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * \param org the name of your organization. + * \param app the name of your application. + * \returns a UTF-8 string of the user directory in platform-dependent + * notation. NULL if there's a problem (creating directory failed, + * etc.). This should be freed with SDL_free() when it is no longer + * needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetBasePath + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetPrefPath(const char *org, const char *app); + +/** + * The type of the OS-provided default folder for a specific purpose. + * + * Note that the Trash folder isn't included here, because trashing files + * usually involves extra OS-specific functionality to remember the file's + * original location. + * + * The folders supported per platform are: + * + * | | Windows | macOS/iOS | tvOS | Unix (XDG) | Haiku | Emscripten | + * | ----------- | ------- | --------- | ---- | ---------- | ----- | ---------- | + * | HOME | X | X | | X | X | X | + * | DESKTOP | X | X | | X | X | | + * | DOCUMENTS | X | X | | X | | | + * | DOWNLOADS | Vista+ | X | | X | | | + * | MUSIC | X | X | | X | | | + * | PICTURES | X | X | | X | | | + * | PUBLICSHARE | | X | | X | | | + * | SAVEDGAMES | Vista+ | | | | | | + * | SCREENSHOTS | Vista+ | | | | | | + * | TEMPLATES | X | X | | X | | | + * | VIDEOS | X | X* | | X | | | + * + * Note that on macOS/iOS, the Videos folder is called "Movies". + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetUserFolder + */ +typedef enum SDL_Folder +{ + SDL_FOLDER_HOME, /**< The folder which contains all of the current user's data, preferences, and documents. It usually contains most of the other folders. If a requested folder does not exist, the home folder can be considered a safe fallback to store a user's documents. */ + SDL_FOLDER_DESKTOP, /**< The folder of files that are displayed on the desktop. Note that the existence of a desktop folder does not guarantee that the system does show icons on its desktop; certain GNU/Linux distros with a graphical environment may not have desktop icons. */ + SDL_FOLDER_DOCUMENTS, /**< User document files, possibly application-specific. This is a good place to save a user's projects. */ + SDL_FOLDER_DOWNLOADS, /**< Standard folder for user files downloaded from the internet. */ + SDL_FOLDER_MUSIC, /**< Music files that can be played using a standard music player (mp3, ogg...). */ + SDL_FOLDER_PICTURES, /**< Image files that can be displayed using a standard viewer (png, jpg...). */ + SDL_FOLDER_PUBLICSHARE, /**< Files that are meant to be shared with other users on the same computer. */ + SDL_FOLDER_SAVEDGAMES, /**< Save files for games. */ + SDL_FOLDER_SCREENSHOTS, /**< Application screenshots. */ + SDL_FOLDER_TEMPLATES, /**< Template files to be used when the user requests the desktop environment to create a new file in a certain folder, such as "New Text File.txt". Any file in the Templates folder can be used as a starting point for a new file. */ + SDL_FOLDER_VIDEOS, /**< Video files that can be played using a standard video player (mp4, webm...). */ + SDL_FOLDER_COUNT /**< Total number of types in this enum, not a folder type by itself. */ +} SDL_Folder; + +/** + * Finds the most suitable user folder for a specific purpose. + * + * Many OSes provide certain standard folders for certain purposes, such as + * storing pictures, music or videos for a certain user. This function gives + * the path for many of those special locations. + * + * This function is specifically for _user_ folders, which are meant for the + * user to access and manage. For application-specific folders, meant to hold + * data for the application to manage, see SDL_GetBasePath() and + * SDL_GetPrefPath(). + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * If NULL is returned, the error may be obtained with SDL_GetError(). + * + * \param folder the type of folder to find. + * \returns either a null-terminated C string containing the full path to the + * folder, or NULL if an error happened. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetUserFolder(SDL_Folder folder); + + +/* Abstract filesystem interface */ + +/** + * Types of filesystem entries. + * + * Note that there may be other sorts of items on a filesystem: devices, + * symlinks, named pipes, etc. They are currently reported as + * SDL_PATHTYPE_OTHER. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_PathInfo + */ +typedef enum SDL_PathType +{ + SDL_PATHTYPE_NONE, /**< path does not exist */ + SDL_PATHTYPE_FILE, /**< a normal file */ + SDL_PATHTYPE_DIRECTORY, /**< a directory */ + SDL_PATHTYPE_OTHER /**< something completely different like a device node (not a symlink, those are always followed) */ +} SDL_PathType; + +/** + * Information about a path on the filesystem. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetPathInfo + * \sa SDL_GetStoragePathInfo + */ +typedef struct SDL_PathInfo +{ + SDL_PathType type; /**< the path type */ + Uint64 size; /**< the file size in bytes */ + SDL_Time create_time; /**< the time when the path was created */ + SDL_Time modify_time; /**< the last time the path was modified */ + SDL_Time access_time; /**< the last time the path was read */ +} SDL_PathInfo; + +/** + * Flags for path matching. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GlobDirectory + * \sa SDL_GlobStorageDirectory + */ +typedef Uint32 SDL_GlobFlags; + +#define SDL_GLOB_CASEINSENSITIVE (1u << 0) + +/** + * Create a directory, and any missing parent directories. + * + * This reports success if `path` already exists as a directory. + * + * If parent directories are missing, it will also create them. Note that if + * this fails, it will not remove any parent directories it already made. + * + * \param path the path of the directory to create. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CreateDirectory(const char *path); + +/** + * Possible results from an enumeration callback. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_EnumerateDirectoryCallback + */ +typedef enum SDL_EnumerationResult +{ + SDL_ENUM_CONTINUE, /**< Value that requests that enumeration continue. */ + SDL_ENUM_SUCCESS, /**< Value that requests that enumeration stop, successfully. */ + SDL_ENUM_FAILURE /**< Value that requests that enumeration stop, as a failure. */ +} SDL_EnumerationResult; + +/** + * Callback for directory enumeration. + * + * Enumeration of directory entries will continue until either all entries + * have been provided to the callback, or the callback has requested a stop + * through its return value. + * + * Returning SDL_ENUM_CONTINUE will let enumeration proceed, calling the + * callback with further entries. SDL_ENUM_SUCCESS and SDL_ENUM_FAILURE will + * terminate the enumeration early, and dictate the return value of the + * enumeration function itself. + * + * `dirname` is guaranteed to end with a path separator ('\\' on Windows, '/' + * on most other platforms). + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \param dirname the directory that is being enumerated. + * \param fname the next entry in the enumeration. + * \returns how the enumeration should proceed. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EnumerateDirectory + */ +typedef SDL_EnumerationResult (SDLCALL *SDL_EnumerateDirectoryCallback)(void *userdata, const char *dirname, const char *fname); + +/** + * Enumerate a directory through a callback function. + * + * This function provides every directory entry through an app-provided + * callback, called once for each directory entry, until all results have been + * provided or the callback returns either SDL_ENUM_SUCCESS or + * SDL_ENUM_FAILURE. + * + * This will return false if there was a system problem in general, or if a + * callback returns SDL_ENUM_FAILURE. A successful return means a callback + * returned SDL_ENUM_SUCCESS to halt enumeration, or all directory entries + * were enumerated. + * + * \param path the path of the directory to enumerate. + * \param callback a function that is called for each entry in the directory. + * \param userdata a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnumerateDirectory(const char *path, SDL_EnumerateDirectoryCallback callback, void *userdata); + +/** + * Remove a file or an empty directory. + * + * Directories that are not empty will fail; this function will not recursely + * delete directory trees. + * + * \param path the path to remove from the filesystem. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RemovePath(const char *path); + +/** + * Rename a file or directory. + * + * If the file at `newpath` already exists, it will replaced. + * + * Note that this will not copy files across filesystems/drives/volumes, as + * that is a much more complicated (and possibly time-consuming) operation. + * + * Which is to say, if this function fails, SDL_CopyFile() to a temporary file + * in the same directory as `newpath`, then SDL_RenamePath() from the + * temporary file to `newpath` and SDL_RemovePath() on `oldpath` might work + * for files. Renaming a non-empty directory across filesystems is + * dramatically more complex, however. + * + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenamePath(const char *oldpath, const char *newpath); + +/** + * Copy a file. + * + * If the file at `newpath` already exists, it will be overwritten with the + * contents of the file at `oldpath`. + * + * This function will block until the copy is complete, which might be a + * significant time for large files on slow disks. On some platforms, the copy + * can be handed off to the OS itself, but on others SDL might just open both + * paths, and read from one and write to the other. + * + * Note that this is not an atomic operation! If something tries to read from + * `newpath` while the copy is in progress, it will see an incomplete copy of + * the data, and if the calling thread terminates (or the power goes out) + * during the copy, `newpath`'s previous contents will be gone, replaced with + * an incomplete copy of the data. To avoid this risk, it is recommended that + * the app copy to a temporary file in the same directory as `newpath`, and if + * the copy is successful, use SDL_RenamePath() to replace `newpath` with the + * temporary file. This will ensure that reads of `newpath` will either see a + * complete copy of the data, or it will see the pre-copy state of `newpath`. + * + * This function attempts to synchronize the newly-copied data to disk before + * returning, if the platform allows it, so that the renaming trick will not + * have a problem in a system crash or power failure, where the file could be + * renamed but the contents never made it from the system file cache to the + * physical disk. + * + * If the copy fails for any reason, the state of `newpath` is undefined. It + * might be half a copy, it might be the untouched data of what was already + * there, or it might be a zero-byte file, etc. + * + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CopyFile(const char *oldpath, const char *newpath); + +/** + * Get information about a filesystem path. + * + * \param path the path to query. + * \param info a pointer filled in with information about the path, or NULL to + * check for the existence of a file. + * \returns true on success or false if the file doesn't exist, or another + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetPathInfo(const char *path, SDL_PathInfo *info); + +/** + * Enumerate a directory tree, filtered by pattern, and return a list. + * + * Files are filtered out if they don't match the string in `pattern`, which + * may contain wildcard characters '\*' (match everything) and '?' (match one + * character). If pattern is NULL, no filtering is done and all results are + * returned. Subdirectories are permitted, and are specified with a path + * separator of '/'. Wildcard characters '\*' and '?' never match a path + * separator. + * + * `flags` may be set to SDL_GLOB_CASEINSENSITIVE to make the pattern matching + * case-insensitive. + * + * The returned array is always NULL-terminated, for your iterating + * convenience, but if `count` is non-NULL, on return it will contain the + * number of items in the array, not counting the NULL terminator. + * + * \param path the path of the directory to enumerate. + * \param pattern the pattern that files in the directory must match. Can be + * NULL. + * \param flags `SDL_GLOB_*` bitflags that affect this search. + * \param count on return, will be set to the number of items in the returned + * array. Can be NULL. + * \returns an array of strings on success or NULL on failure; call + * SDL_GetError() for more information. This is a single allocation + * that should be freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GlobDirectory(const char *path, const char *pattern, SDL_GlobFlags flags, int *count); + +/** + * Get what the system believes is the "current working directory." + * + * For systems without a concept of a current working directory, this will + * still attempt to provide something reasonable. + * + * SDL does not provide a means to _change_ the current working directory; for + * platforms without this concept, this would cause surprises with file access + * outside of SDL. + * + * The returned path is guaranteed to end with a path separator ('\\' on + * Windows, '/' on most other platforms). + * + * \returns a UTF-8 string of the current working directory in + * platform-dependent notation. NULL if there's a problem. This + * should be freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetCurrentDirectory(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_filesystem_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_gamepad.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_gamepad.h new file mode 100644 index 0000000..99f8b65 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_gamepad.h @@ -0,0 +1,1509 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryGamepad + * + * SDL provides a low-level joystick API, which just treats joysticks as an + * arbitrary pile of buttons, axes, and hat switches. If you're planning to + * write your own control configuration screen, this can give you a lot of + * flexibility, but that's a lot of work, and most things that we consider + * "joysticks" now are actually console-style gamepads. So SDL provides the + * gamepad API on top of the lower-level joystick functionality. + * + * The difference between a joystick and a gamepad is that a gamepad tells you + * _where_ a button or axis is on the device. You don't speak to gamepads in + * terms of arbitrary numbers like "button 3" or "axis 2" but in standard + * locations: the d-pad, the shoulder buttons, triggers, A/B/X/Y (or + * X/O/Square/Triangle, if you will). + * + * One turns a joystick into a gamepad by providing a magic configuration + * string, which tells SDL the details of a specific device: when you see this + * specific hardware, if button 2 gets pressed, this is actually D-Pad Up, + * etc. + * + * SDL has many popular controllers configured out of the box, and users can + * add their own controller details through an environment variable if it's + * otherwise unknown to SDL. + * + * In order to use these functions, SDL_Init() must have been called with the + * SDL_INIT_GAMEPAD flag. This causes SDL to scan the system for gamepads, and + * load appropriate drivers. + * + * If you would like to receive gamepad updates while the application is in + * the background, you should set the following hint before calling + * SDL_Init(): SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS + * + * Gamepads support various optional features such as rumble, color LEDs, + * touchpad, gyro, etc. The support for these features varies depending on the + * controller and OS support available. You can check for LED and rumble + * capabilities at runtime by calling SDL_GetGamepadProperties() and checking + * the various capability properties. You can check for touchpad by calling + * SDL_GetNumGamepadTouchpads() and check for gyro and accelerometer by + * calling SDL_GamepadHasSensor(). + * + * By default SDL will try to use the most capable driver available, but you + * can tune which OS drivers to use with the various joystick hints in + * SDL_hints.h. + * + * Your application should always support gamepad hotplugging. On some + * platforms like Xbox, Steam Deck, etc., this is a requirement for + * certification. On other platforms, like macOS and Windows when using + * Windows.Gaming.Input, controllers may not be available at startup and will + * come in at some point after you've started processing events. + */ + +#ifndef SDL_gamepad_h_ +#define SDL_gamepad_h_ + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The structure used to identify an SDL gamepad + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Gamepad SDL_Gamepad; + +/** + * Standard gamepad types. + * + * This type does not necessarily map to first-party controllers from + * Microsoft/Sony/Nintendo; in many cases, third-party controllers can report + * as these, either because they were designed for a specific console, or they + * simply most closely match that console's controllers (does it have A/B/X/Y + * buttons or X/O/Square/Triangle? Does it have a touchpad? etc). + */ +typedef enum SDL_GamepadType +{ + SDL_GAMEPAD_TYPE_UNKNOWN = 0, + SDL_GAMEPAD_TYPE_STANDARD, + SDL_GAMEPAD_TYPE_XBOX360, + SDL_GAMEPAD_TYPE_XBOXONE, + SDL_GAMEPAD_TYPE_PS3, + SDL_GAMEPAD_TYPE_PS4, + SDL_GAMEPAD_TYPE_PS5, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_PRO, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_LEFT, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT, + SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_PAIR, + SDL_GAMEPAD_TYPE_COUNT +} SDL_GamepadType; + +/** + * The list of buttons available on a gamepad + * + * For controllers that use a diamond pattern for the face buttons, the + * south/east/west/north buttons below correspond to the locations in the + * diamond pattern. For Xbox controllers, this would be A/B/X/Y, for Nintendo + * Switch controllers, this would be B/A/Y/X, for PlayStation controllers this + * would be Cross/Circle/Square/Triangle. + * + * For controllers that don't use a diamond pattern for the face buttons, the + * south/east/west/north buttons indicate the buttons labeled A, B, C, D, or + * 1, 2, 3, 4, or for controllers that aren't labeled, they are the primary, + * secondary, etc. buttons. + * + * The activate action is often the south button and the cancel action is + * often the east button, but in some regions this is reversed, so your game + * should allow remapping actions based on user preferences. + * + * You can query the labels for the face buttons using + * SDL_GetGamepadButtonLabel() + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadButton +{ + SDL_GAMEPAD_BUTTON_INVALID = -1, + SDL_GAMEPAD_BUTTON_SOUTH, /**< Bottom face button (e.g. Xbox A button) */ + SDL_GAMEPAD_BUTTON_EAST, /**< Right face button (e.g. Xbox B button) */ + SDL_GAMEPAD_BUTTON_WEST, /**< Left face button (e.g. Xbox X button) */ + SDL_GAMEPAD_BUTTON_NORTH, /**< Top face button (e.g. Xbox Y button) */ + SDL_GAMEPAD_BUTTON_BACK, + SDL_GAMEPAD_BUTTON_GUIDE, + SDL_GAMEPAD_BUTTON_START, + SDL_GAMEPAD_BUTTON_LEFT_STICK, + SDL_GAMEPAD_BUTTON_RIGHT_STICK, + SDL_GAMEPAD_BUTTON_LEFT_SHOULDER, + SDL_GAMEPAD_BUTTON_RIGHT_SHOULDER, + SDL_GAMEPAD_BUTTON_DPAD_UP, + SDL_GAMEPAD_BUTTON_DPAD_DOWN, + SDL_GAMEPAD_BUTTON_DPAD_LEFT, + SDL_GAMEPAD_BUTTON_DPAD_RIGHT, + SDL_GAMEPAD_BUTTON_MISC1, /**< Additional button (e.g. Xbox Series X share button, PS5 microphone button, Nintendo Switch Pro capture button, Amazon Luna microphone button, Google Stadia capture button) */ + SDL_GAMEPAD_BUTTON_RIGHT_PADDLE1, /**< Upper or primary paddle, under your right hand (e.g. Xbox Elite paddle P1) */ + SDL_GAMEPAD_BUTTON_LEFT_PADDLE1, /**< Upper or primary paddle, under your left hand (e.g. Xbox Elite paddle P3) */ + SDL_GAMEPAD_BUTTON_RIGHT_PADDLE2, /**< Lower or secondary paddle, under your right hand (e.g. Xbox Elite paddle P2) */ + SDL_GAMEPAD_BUTTON_LEFT_PADDLE2, /**< Lower or secondary paddle, under your left hand (e.g. Xbox Elite paddle P4) */ + SDL_GAMEPAD_BUTTON_TOUCHPAD, /**< PS4/PS5 touchpad button */ + SDL_GAMEPAD_BUTTON_MISC2, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC3, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC4, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC5, /**< Additional button */ + SDL_GAMEPAD_BUTTON_MISC6, /**< Additional button */ + SDL_GAMEPAD_BUTTON_COUNT +} SDL_GamepadButton; + +/** + * The set of gamepad button labels + * + * This isn't a complete set, just the face buttons to make it easy to show + * button prompts. + * + * For a complete set, you should look at the button and gamepad type and have + * a set of symbols that work well with your art style. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadButtonLabel +{ + SDL_GAMEPAD_BUTTON_LABEL_UNKNOWN, + SDL_GAMEPAD_BUTTON_LABEL_A, + SDL_GAMEPAD_BUTTON_LABEL_B, + SDL_GAMEPAD_BUTTON_LABEL_X, + SDL_GAMEPAD_BUTTON_LABEL_Y, + SDL_GAMEPAD_BUTTON_LABEL_CROSS, + SDL_GAMEPAD_BUTTON_LABEL_CIRCLE, + SDL_GAMEPAD_BUTTON_LABEL_SQUARE, + SDL_GAMEPAD_BUTTON_LABEL_TRIANGLE +} SDL_GamepadButtonLabel; + +/** + * The list of axes available on a gamepad + * + * Thumbstick axis values range from SDL_JOYSTICK_AXIS_MIN to + * SDL_JOYSTICK_AXIS_MAX, and are centered within ~8000 of zero, though + * advanced UI will allow users to set or autodetect the dead zone, which + * varies between gamepads. + * + * Trigger axis values range from 0 (released) to SDL_JOYSTICK_AXIS_MAX (fully + * pressed) when reported by SDL_GetGamepadAxis(). Note that this is not the + * same range that will be reported by the lower-level SDL_GetJoystickAxis(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadAxis +{ + SDL_GAMEPAD_AXIS_INVALID = -1, + SDL_GAMEPAD_AXIS_LEFTX, + SDL_GAMEPAD_AXIS_LEFTY, + SDL_GAMEPAD_AXIS_RIGHTX, + SDL_GAMEPAD_AXIS_RIGHTY, + SDL_GAMEPAD_AXIS_LEFT_TRIGGER, + SDL_GAMEPAD_AXIS_RIGHT_TRIGGER, + SDL_GAMEPAD_AXIS_COUNT +} SDL_GamepadAxis; + +/** + * Types of gamepad control bindings. + * + * A gamepad is a collection of bindings that map arbitrary joystick buttons, + * axes and hat switches to specific positions on a generic console-style + * gamepad. This enum is used as part of SDL_GamepadBinding to specify those + * mappings. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GamepadBindingType +{ + SDL_GAMEPAD_BINDTYPE_NONE = 0, + SDL_GAMEPAD_BINDTYPE_BUTTON, + SDL_GAMEPAD_BINDTYPE_AXIS, + SDL_GAMEPAD_BINDTYPE_HAT +} SDL_GamepadBindingType; + +/** + * A mapping between one joystick input to a gamepad control. + * + * A gamepad has a collection of several bindings, to say, for example, when + * joystick button number 5 is pressed, that should be treated like the + * gamepad's "start" button. + * + * SDL has these bindings built-in for many popular controllers, and can add + * more with a simple text string. Those strings are parsed into a collection + * of these structs to make it easier to operate on the data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadBindings + */ +typedef struct SDL_GamepadBinding +{ + SDL_GamepadBindingType input_type; + union + { + int button; + + struct + { + int axis; + int axis_min; + int axis_max; + } axis; + + struct + { + int hat; + int hat_mask; + } hat; + + } input; + + SDL_GamepadBindingType output_type; + union + { + SDL_GamepadButton button; + + struct + { + SDL_GamepadAxis axis; + int axis_min; + int axis_max; + } axis; + + } output; +} SDL_GamepadBinding; + + +/** + * Add support for gamepads that SDL is unaware of or change the binding of an + * existing gamepad. + * + * The mapping string has the format "GUID,name,mapping", where GUID is the + * string value from SDL_GUIDToString(), name is the human readable string for + * the device and mappings are gamepad mappings to joystick ones. Under + * Windows there is a reserved GUID of "xinput" that covers all XInput + * devices. The mapping format for joystick is: + * + * - `bX`: a joystick button, index X + * - `hX.Y`: hat X with value Y + * - `aX`: axis X of the joystick + * + * Buttons can be used as a gamepad axes and vice versa. + * + * If a device with this GUID is already plugged in, SDL will generate an + * SDL_EVENT_GAMEPAD_ADDED event. + * + * This string shows an example of a valid mapping for a gamepad: + * + * ```c + * "341a3608000000000000504944564944,Afterglow PS3 Controller,a:b1,b:b2,y:b3,x:b0,start:b9,guide:b12,back:b8,dpup:h0.1,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,leftshoulder:b4,rightshoulder:b5,leftstick:b10,rightstick:b11,leftx:a0,lefty:a1,rightx:a2,righty:a3,lefttrigger:b6,righttrigger:b7" + * ``` + * + * \param mapping the mapping string. + * \returns 1 if a new mapping is added, 0 if an existing mapping is updated, + * -1 on failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMappingsFromFile + * \sa SDL_AddGamepadMappingsFromIO + * \sa SDL_GetGamepadMapping + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_HINT_GAMECONTROLLERCONFIG + * \sa SDL_HINT_GAMECONTROLLERCONFIG_FILE + * \sa SDL_EVENT_GAMEPAD_ADDED + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddGamepadMapping(const char *mapping); + +/** + * Load a set of gamepad mappings from an SDL_IOStream. + * + * You can call this function several times, if needed, to load different + * database files. + * + * If a new mapping is loaded for an already known gamepad GUID, the later + * version will overwrite the one currently loaded. + * + * Any new mappings for already plugged in controllers will generate + * SDL_EVENT_GAMEPAD_ADDED events. + * + * Mappings not belonging to the current platform or with no platform field + * specified will be ignored (i.e. mappings for Linux will be ignored in + * Windows, etc). + * + * This function will load the text database entirely in memory before + * processing it, so take this into consideration if you are in a memory + * constrained environment. + * + * \param src the data stream for the mappings to be added. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns the number of mappings added or -1 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_AddGamepadMappingsFromFile + * \sa SDL_GetGamepadMapping + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_HINT_GAMECONTROLLERCONFIG + * \sa SDL_HINT_GAMECONTROLLERCONFIG_FILE + * \sa SDL_EVENT_GAMEPAD_ADDED + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddGamepadMappingsFromIO(SDL_IOStream *src, bool closeio); + +/** + * Load a set of gamepad mappings from a file. + * + * You can call this function several times, if needed, to load different + * database files. + * + * If a new mapping is loaded for an already known gamepad GUID, the later + * version will overwrite the one currently loaded. + * + * Any new mappings for already plugged in controllers will generate + * SDL_EVENT_GAMEPAD_ADDED events. + * + * Mappings not belonging to the current platform or with no platform field + * specified will be ignored (i.e. mappings for Linux will be ignored in + * Windows, etc). + * + * \param file the mappings file to load. + * \returns the number of mappings added or -1 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_AddGamepadMappingsFromIO + * \sa SDL_GetGamepadMapping + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_HINT_GAMECONTROLLERCONFIG + * \sa SDL_HINT_GAMECONTROLLERCONFIG_FILE + * \sa SDL_EVENT_GAMEPAD_ADDED + */ +extern SDL_DECLSPEC int SDLCALL SDL_AddGamepadMappingsFromFile(const char *file); + +/** + * Reinitialize the SDL mapping database to its initial state. + * + * This will generate gamepad events as needed if device mappings change. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReloadGamepadMappings(void); + +/** + * Get the current gamepad mappings. + * + * \param count a pointer filled in with the number of mappings returned, can + * be NULL. + * \returns an array of the mapping strings, NULL-terminated, or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GetGamepadMappings(int *count); + +/** + * Get the gamepad mapping string for a given GUID. + * + * \param guid a structure containing the GUID for which a mapping is desired. + * \returns a mapping string or NULL on failure; call SDL_GetError() for more + * information. This should be freed with SDL_free() when it is no + * longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUIDForID + * \sa SDL_GetJoystickGUID + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetGamepadMappingForGUID(SDL_GUID guid); + +/** + * Get the current mapping of a gamepad. + * + * Details about mappings are discussed with SDL_AddGamepadMapping(). + * + * \param gamepad the gamepad you want to get the current mapping for. + * \returns a string that has the gamepad's mapping or NULL if no mapping is + * available; call SDL_GetError() for more information. This should + * be freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_GetGamepadMappingForID + * \sa SDL_GetGamepadMappingForGUID + * \sa SDL_SetGamepadMapping + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetGamepadMapping(SDL_Gamepad *gamepad); + +/** + * Set the current mapping of a joystick or gamepad. + * + * Details about mappings are discussed with SDL_AddGamepadMapping(). + * + * \param instance_id the joystick instance ID. + * \param mapping the mapping to use for this device, or NULL to clear the + * mapping. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddGamepadMapping + * \sa SDL_GetGamepadMapping + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadMapping(SDL_JoystickID instance_id, const char *mapping); + +/** + * Return whether a gamepad is currently connected. + * + * \returns true if a gamepad is connected, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasGamepad(void); + +/** + * Get a list of currently connected gamepads. + * + * \param count a pointer filled in with the number of gamepads returned, may + * be NULL. + * \returns a 0 terminated array of joystick instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasGamepad + * \sa SDL_OpenGamepad + */ +extern SDL_DECLSPEC SDL_JoystickID * SDLCALL SDL_GetGamepads(int *count); + +/** + * Check if the given joystick is supported by the gamepad interface. + * + * \param instance_id the joystick instance ID. + * \returns true if the given joystick is supported by the gamepad interface, + * false if it isn't or it's an invalid index. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoysticks + * \sa SDL_OpenGamepad + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsGamepad(SDL_JoystickID instance_id); + +/** + * Get the implementation dependent name of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the name of the selected gamepad. If no name can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadName + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadNameForID(SDL_JoystickID instance_id); + +/** + * Get the implementation dependent path of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the path of the selected gamepad. If no path can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPath + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadPathForID(SDL_JoystickID instance_id); + +/** + * Get the player index of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the player index of a gamepad, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPlayerIndex + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetGamepadPlayerIndexForID(SDL_JoystickID instance_id); + +/** + * Get the implementation-dependent GUID of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the GUID of the selected gamepad. If called on an invalid index, + * this function returns a zero GUID. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GUIDToString + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_GetGamepadGUIDForID(SDL_JoystickID instance_id); + +/** + * Get the USB vendor ID of a gamepad, if available. + * + * This can be called before any gamepads are opened. If the vendor ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB vendor ID of the selected gamepad. If called on an invalid + * index, this function returns zero. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadVendor + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadVendorForID(SDL_JoystickID instance_id); + +/** + * Get the USB product ID of a gamepad, if available. + * + * This can be called before any gamepads are opened. If the product ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB product ID of the selected gamepad. If called on an + * invalid index, this function returns zero. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProduct + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProductForID(SDL_JoystickID instance_id); + +/** + * Get the product version of a gamepad, if available. + * + * This can be called before any gamepads are opened. If the product version + * isn't available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the product version of the selected gamepad. If called on an + * invalid index, this function returns zero. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProductVersion + * \sa SDL_GetGamepads + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProductVersionForID(SDL_JoystickID instance_id); + +/** + * Get the type of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the gamepad type. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadType + * \sa SDL_GetGamepads + * \sa SDL_GetRealGamepadTypeForID + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadTypeForID(SDL_JoystickID instance_id); + +/** + * Get the type of a gamepad, ignoring any mapping override. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the gamepad type. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTypeForID + * \sa SDL_GetGamepads + * \sa SDL_GetRealGamepadType + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetRealGamepadTypeForID(SDL_JoystickID instance_id); + +/** + * Get the mapping of a gamepad. + * + * This can be called before any gamepads are opened. + * + * \param instance_id the joystick instance ID. + * \returns the mapping string. Returns NULL if no mapping is available. This + * should be freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepads + * \sa SDL_GetGamepadMapping + */ +extern SDL_DECLSPEC char * SDLCALL SDL_GetGamepadMappingForID(SDL_JoystickID instance_id); + +/** + * Open a gamepad for use. + * + * \param instance_id the joystick instance ID. + * \returns a gamepad identifier or NULL if an error occurred; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseGamepad + * \sa SDL_IsGamepad + */ +extern SDL_DECLSPEC SDL_Gamepad * SDLCALL SDL_OpenGamepad(SDL_JoystickID instance_id); + +/** + * Get the SDL_Gamepad associated with a joystick instance ID, if it has been + * opened. + * + * \param instance_id the joystick instance ID of the gamepad. + * \returns an SDL_Gamepad on success or NULL on failure or if it hasn't been + * opened yet; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Gamepad * SDLCALL SDL_GetGamepadFromID(SDL_JoystickID instance_id); + +/** + * Get the SDL_Gamepad associated with a player index. + * + * \param player_index the player index, which different from the instance ID. + * \returns the SDL_Gamepad associated with a player index. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPlayerIndex + * \sa SDL_SetGamepadPlayerIndex + */ +extern SDL_DECLSPEC SDL_Gamepad * SDLCALL SDL_GetGamepadFromPlayerIndex(int player_index); + +/** + * Get the properties associated with an opened gamepad. + * + * These properties are shared with the underlying joystick object. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_GAMEPAD_CAP_MONO_LED_BOOLEAN`: true if this gamepad has an LED + * that has adjustable brightness + * - `SDL_PROP_GAMEPAD_CAP_RGB_LED_BOOLEAN`: true if this gamepad has an LED + * that has adjustable color + * - `SDL_PROP_GAMEPAD_CAP_PLAYER_LED_BOOLEAN`: true if this gamepad has a + * player LED + * - `SDL_PROP_GAMEPAD_CAP_RUMBLE_BOOLEAN`: true if this gamepad has + * left/right rumble + * - `SDL_PROP_GAMEPAD_CAP_TRIGGER_RUMBLE_BOOLEAN`: true if this gamepad has + * simple trigger rumble + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetGamepadProperties(SDL_Gamepad *gamepad); + +#define SDL_PROP_GAMEPAD_CAP_MONO_LED_BOOLEAN SDL_PROP_JOYSTICK_CAP_MONO_LED_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_RGB_LED_BOOLEAN SDL_PROP_JOYSTICK_CAP_RGB_LED_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_PLAYER_LED_BOOLEAN SDL_PROP_JOYSTICK_CAP_PLAYER_LED_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_RUMBLE_BOOLEAN SDL_PROP_JOYSTICK_CAP_RUMBLE_BOOLEAN +#define SDL_PROP_GAMEPAD_CAP_TRIGGER_RUMBLE_BOOLEAN SDL_PROP_JOYSTICK_CAP_TRIGGER_RUMBLE_BOOLEAN + +/** + * Get the instance ID of an opened gamepad. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns the instance ID of the specified gamepad on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickID SDLCALL SDL_GetGamepadID(SDL_Gamepad *gamepad); + +/** + * Get the implementation-dependent name for an opened gamepad. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns the implementation dependent name for the gamepad, or NULL if + * there is no name or the identifier passed is invalid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadNameForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadName(SDL_Gamepad *gamepad); + +/** + * Get the implementation-dependent path for an opened gamepad. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns the implementation dependent path for the gamepad, or NULL if + * there is no path or the identifier passed is invalid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPathForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadPath(SDL_Gamepad *gamepad); + +/** + * Get the type of an opened gamepad. + * + * \param gamepad the gamepad object to query. + * \returns the gamepad type, or SDL_GAMEPAD_TYPE_UNKNOWN if it's not + * available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTypeForID + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadType(SDL_Gamepad *gamepad); + +/** + * Get the type of an opened gamepad, ignoring any mapping override. + * + * \param gamepad the gamepad object to query. + * \returns the gamepad type, or SDL_GAMEPAD_TYPE_UNKNOWN if it's not + * available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRealGamepadTypeForID + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetRealGamepadType(SDL_Gamepad *gamepad); + +/** + * Get the player index of an opened gamepad. + * + * For XInput gamepads this returns the XInput user index. + * + * \param gamepad the gamepad object to query. + * \returns the player index for gamepad, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetGamepadPlayerIndex + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetGamepadPlayerIndex(SDL_Gamepad *gamepad); + +/** + * Set the player index of an opened gamepad. + * + * \param gamepad the gamepad object to adjust. + * \param player_index player index to assign to this gamepad, or -1 to clear + * the player index and turn off player LEDs. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadPlayerIndex + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadPlayerIndex(SDL_Gamepad *gamepad, int player_index); + +/** + * Get the USB vendor ID of an opened gamepad, if available. + * + * If the vendor ID isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the USB vendor ID, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadVendorForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadVendor(SDL_Gamepad *gamepad); + +/** + * Get the USB product ID of an opened gamepad, if available. + * + * If the product ID isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the USB product ID, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProductForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProduct(SDL_Gamepad *gamepad); + +/** + * Get the product version of an opened gamepad, if available. + * + * If the product version isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the USB product version, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadProductVersionForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadProductVersion(SDL_Gamepad *gamepad); + +/** + * Get the firmware version of an opened gamepad, if available. + * + * If the firmware version isn't available this function returns 0. + * + * \param gamepad the gamepad object to query. + * \returns the gamepad firmware version, or zero if unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetGamepadFirmwareVersion(SDL_Gamepad *gamepad); + +/** + * Get the serial number of an opened gamepad, if available. + * + * Returns the serial number of the gamepad, or NULL if it is not available. + * + * \param gamepad the gamepad object to query. + * \returns the serial number, or NULL if unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadSerial(SDL_Gamepad *gamepad); + +/** + * Get the Steam Input handle of an opened gamepad, if available. + * + * Returns an InputHandle_t for the gamepad that can be used with Steam Input + * API: https://partner.steamgames.com/doc/api/ISteamInput + * + * \param gamepad the gamepad object to query. + * \returns the gamepad handle, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetGamepadSteamHandle(SDL_Gamepad *gamepad); + +/** + * Get the connection state of a gamepad. + * + * \param gamepad the gamepad object to query. + * \returns the connection state on success or + * `SDL_JOYSTICK_CONNECTION_INVALID` on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickConnectionState SDLCALL SDL_GetGamepadConnectionState(SDL_Gamepad *gamepad); + +/** + * Get the battery state of a gamepad. + * + * You should never take a battery status as absolute truth. Batteries + * (especially failing batteries) are delicate hardware, and the values + * reported here are best estimates based on what that hardware reports. It's + * not uncommon for older batteries to lose stored power much faster than it + * reports, or completely drain when reporting it has 20 percent left, etc. + * + * \param gamepad the gamepad object to query. + * \param percent a pointer filled in with the percentage of battery life + * left, between 0 and 100, or NULL to ignore. This will be + * filled in with -1 we can't determine a value or there is no + * battery. + * \returns the current battery state. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PowerState SDLCALL SDL_GetGamepadPowerInfo(SDL_Gamepad *gamepad, int *percent); + +/** + * Check if a gamepad has been opened and is currently connected. + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * \returns true if the gamepad has been opened and is currently connected, or + * false if not. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadConnected(SDL_Gamepad *gamepad); + +/** + * Get the underlying joystick from a gamepad. + * + * This function will give you a SDL_Joystick object, which allows you to use + * the SDL_Joystick functions with a SDL_Gamepad object. This would be useful + * for getting a joystick's position at any given time, even if it hasn't + * moved (moving it would produce an event, which would have the axis' value). + * + * The pointer returned is owned by the SDL_Gamepad. You should not call + * SDL_CloseJoystick() on it, for example, since doing so will likely cause + * SDL to crash. + * + * \param gamepad the gamepad object that you want to get a joystick from. + * \returns an SDL_Joystick object, or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_GetGamepadJoystick(SDL_Gamepad *gamepad); + +/** + * Set the state of gamepad event processing. + * + * If gamepad events are disabled, you must call SDL_UpdateGamepads() yourself + * and check the state of the gamepad when you want gamepad information. + * + * \param enabled whether to process gamepad events or not. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadEventsEnabled + * \sa SDL_UpdateGamepads + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGamepadEventsEnabled(bool enabled); + +/** + * Query the state of gamepad event processing. + * + * If gamepad events are disabled, you must call SDL_UpdateGamepads() yourself + * and check the state of the gamepad when you want gamepad information. + * + * \returns true if gamepad events are being processed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetGamepadEventsEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadEventsEnabled(void); + +/** + * Get the SDL joystick layer bindings for a gamepad. + * + * \param gamepad a gamepad. + * \param count a pointer filled in with the number of bindings returned. + * \returns a NULL terminated array of pointers to bindings or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GamepadBinding ** SDLCALL SDL_GetGamepadBindings(SDL_Gamepad *gamepad, int *count); + +/** + * Manually pump gamepad updates if not using the loop. + * + * This function is called automatically by the event loop if events are + * enabled. Under such circumstances, it will not be necessary to call this + * function. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateGamepads(void); + +/** + * Convert a string into SDL_GamepadType enum. + * + * This function is called internally to translate SDL_Gamepad mapping strings + * for the underlying joystick device into the consistent SDL_Gamepad mapping. + * You do not normally need to call this function unless you are parsing + * SDL_Gamepad mappings in your own code. + * + * \param str string representing a SDL_GamepadType type. + * \returns the SDL_GamepadType enum corresponding to the input string, or + * `SDL_GAMEPAD_TYPE_UNKNOWN` if no match was found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadStringForType + */ +extern SDL_DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadTypeFromString(const char *str); + +/** + * Convert from an SDL_GamepadType enum to a string. + * + * \param type an enum value for a given SDL_GamepadType. + * \returns a string for the given type, or NULL if an invalid type is + * specified. The string returned is of the format used by + * SDL_Gamepad mapping strings. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTypeFromString + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadStringForType(SDL_GamepadType type); + +/** + * Convert a string into SDL_GamepadAxis enum. + * + * This function is called internally to translate SDL_Gamepad mapping strings + * for the underlying joystick device into the consistent SDL_Gamepad mapping. + * You do not normally need to call this function unless you are parsing + * SDL_Gamepad mappings in your own code. + * + * Note specially that "righttrigger" and "lefttrigger" map to + * `SDL_GAMEPAD_AXIS_RIGHT_TRIGGER` and `SDL_GAMEPAD_AXIS_LEFT_TRIGGER`, + * respectively. + * + * \param str string representing a SDL_Gamepad axis. + * \returns the SDL_GamepadAxis enum corresponding to the input string, or + * `SDL_GAMEPAD_AXIS_INVALID` if no match was found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadStringForAxis + */ +extern SDL_DECLSPEC SDL_GamepadAxis SDLCALL SDL_GetGamepadAxisFromString(const char *str); + +/** + * Convert from an SDL_GamepadAxis enum to a string. + * + * \param axis an enum value for a given SDL_GamepadAxis. + * \returns a string for the given axis, or NULL if an invalid axis is + * specified. The string returned is of the format used by + * SDL_Gamepad mapping strings. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadAxisFromString + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadStringForAxis(SDL_GamepadAxis axis); + +/** + * Query whether a gamepad has a given axis. + * + * This merely reports whether the gamepad's mapping defined this axis, as + * that is all the information SDL has about the physical device. + * + * \param gamepad a gamepad. + * \param axis an axis enum value (an SDL_GamepadAxis value). + * \returns true if the gamepad has this axis, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasButton + * \sa SDL_GetGamepadAxis + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadHasAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis); + +/** + * Get the current state of an axis control on a gamepad. + * + * The axis indices start at index 0. + * + * For thumbsticks, the state is a value ranging from -32768 (up/left) to + * 32767 (down/right). + * + * Triggers range from 0 when released to 32767 when fully pressed, and never + * return a negative value. Note that this differs from the value reported by + * the lower-level SDL_GetJoystickAxis(), which normally uses the full range. + * + * \param gamepad a gamepad. + * \param axis an axis index (one of the SDL_GamepadAxis values). + * \returns axis state (including 0) on success or 0 (also) on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasAxis + * \sa SDL_GetGamepadButton + */ +extern SDL_DECLSPEC Sint16 SDLCALL SDL_GetGamepadAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis); + +/** + * Convert a string into an SDL_GamepadButton enum. + * + * This function is called internally to translate SDL_Gamepad mapping strings + * for the underlying joystick device into the consistent SDL_Gamepad mapping. + * You do not normally need to call this function unless you are parsing + * SDL_Gamepad mappings in your own code. + * + * \param str string representing a SDL_Gamepad axis. + * \returns the SDL_GamepadButton enum corresponding to the input string, or + * `SDL_GAMEPAD_BUTTON_INVALID` if no match was found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadStringForButton + */ +extern SDL_DECLSPEC SDL_GamepadButton SDLCALL SDL_GetGamepadButtonFromString(const char *str); + +/** + * Convert from an SDL_GamepadButton enum to a string. + * + * \param button an enum value for a given SDL_GamepadButton. + * \returns a string for the given button, or NULL if an invalid button is + * specified. The string returned is of the format used by + * SDL_Gamepad mapping strings. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadButtonFromString + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadStringForButton(SDL_GamepadButton button); + +/** + * Query whether a gamepad has a given button. + * + * This merely reports whether the gamepad's mapping defined this button, as + * that is all the information SDL has about the physical device. + * + * \param gamepad a gamepad. + * \param button a button enum value (an SDL_GamepadButton value). + * \returns true if the gamepad has this button, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasAxis + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadHasButton(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Get the current state of a button on a gamepad. + * + * \param gamepad a gamepad. + * \param button a button index (one of the SDL_GamepadButton values). + * \returns true if the button is pressed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasButton + * \sa SDL_GetGamepadAxis + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGamepadButton(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Get the label of a button on a gamepad. + * + * \param type the type of gamepad to check. + * \param button a button index (one of the SDL_GamepadButton values). + * \returns the SDL_GamepadButtonLabel enum corresponding to the button label. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadButtonLabel + */ +extern SDL_DECLSPEC SDL_GamepadButtonLabel SDLCALL SDL_GetGamepadButtonLabelForType(SDL_GamepadType type, SDL_GamepadButton button); + +/** + * Get the label of a button on a gamepad. + * + * \param gamepad a gamepad. + * \param button a button index (one of the SDL_GamepadButton values). + * \returns the SDL_GamepadButtonLabel enum corresponding to the button label. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadButtonLabelForType + */ +extern SDL_DECLSPEC SDL_GamepadButtonLabel SDLCALL SDL_GetGamepadButtonLabel(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Get the number of touchpads on a gamepad. + * + * \param gamepad a gamepad. + * \returns number of touchpads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumGamepadTouchpadFingers + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumGamepadTouchpads(SDL_Gamepad *gamepad); + +/** + * Get the number of supported simultaneous fingers on a touchpad on a game + * gamepad. + * + * \param gamepad a gamepad. + * \param touchpad a touchpad. + * \returns number of supported simultaneous fingers. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadTouchpadFinger + * \sa SDL_GetNumGamepadTouchpads + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumGamepadTouchpadFingers(SDL_Gamepad *gamepad, int touchpad); + +/** + * Get the current state of a finger on a touchpad on a gamepad. + * + * \param gamepad a gamepad. + * \param touchpad a touchpad. + * \param finger a finger. + * \param down a pointer filled with true if the finger is down, false + * otherwise, may be NULL. + * \param x a pointer filled with the x position, normalized 0 to 1, with the + * origin in the upper left, may be NULL. + * \param y a pointer filled with the y position, normalized 0 to 1, with the + * origin in the upper left, may be NULL. + * \param pressure a pointer filled with pressure value, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumGamepadTouchpadFingers + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGamepadTouchpadFinger(SDL_Gamepad *gamepad, int touchpad, int finger, bool *down, float *x, float *y, float *pressure); + +/** + * Return whether a gamepad has a particular sensor. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \returns true if the sensor exists, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadSensorData + * \sa SDL_GetGamepadSensorDataRate + * \sa SDL_SetGamepadSensorEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadHasSensor(SDL_Gamepad *gamepad, SDL_SensorType type); + +/** + * Set whether data reporting for a gamepad sensor is enabled. + * + * \param gamepad the gamepad to update. + * \param type the type of sensor to enable/disable. + * \param enabled whether data reporting should be enabled. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GamepadHasSensor + * \sa SDL_GamepadSensorEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadSensorEnabled(SDL_Gamepad *gamepad, SDL_SensorType type, bool enabled); + +/** + * Query whether sensor data reporting is enabled for a gamepad. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \returns true if the sensor is enabled, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetGamepadSensorEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GamepadSensorEnabled(SDL_Gamepad *gamepad, SDL_SensorType type); + +/** + * Get the data rate (number of events per second) of a gamepad sensor. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \returns the data rate, or 0.0f if the data rate is not available. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetGamepadSensorDataRate(SDL_Gamepad *gamepad, SDL_SensorType type); + +/** + * Get the current state of a gamepad sensor. + * + * The number of values and interpretation of the data is sensor dependent. + * See SDL_sensor.h for the details for each type of sensor. + * + * \param gamepad the gamepad to query. + * \param type the type of sensor to query. + * \param data a pointer filled with the current sensor state. + * \param num_values the number of values to write to data. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGamepadSensorData(SDL_Gamepad *gamepad, SDL_SensorType type, float *data, int num_values); + +/** + * Start a rumble effect on a gamepad. + * + * Each call to this function cancels any previous rumble effect, and calling + * it with 0 intensity stops any rumbling. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param gamepad the gamepad to vibrate. + * \param low_frequency_rumble the intensity of the low frequency (left) + * rumble motor, from 0 to 0xFFFF. + * \param high_frequency_rumble the intensity of the high frequency (right) + * rumble motor, from 0 to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleGamepad(SDL_Gamepad *gamepad, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble, Uint32 duration_ms); + +/** + * Start a rumble effect in the gamepad's triggers. + * + * Each call to this function cancels any previous trigger rumble effect, and + * calling it with 0 intensity stops any rumbling. + * + * Note that this is rumbling of the _triggers_ and not the gamepad as a + * whole. This is currently only supported on Xbox One gamepads. If you want + * the (more common) whole-gamepad rumble, use SDL_RumbleGamepad() instead. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param gamepad the gamepad to vibrate. + * \param left_rumble the intensity of the left trigger rumble motor, from 0 + * to 0xFFFF. + * \param right_rumble the intensity of the right trigger rumble motor, from 0 + * to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RumbleGamepad + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleGamepadTriggers(SDL_Gamepad *gamepad, Uint16 left_rumble, Uint16 right_rumble, Uint32 duration_ms); + +/** + * Update a gamepad's LED color. + * + * An example of a joystick LED is the light on the back of a PlayStation 4's + * DualShock 4 controller. + * + * For gamepads with a single color LED, the maximum of the RGB values will be + * used as the LED brightness. + * + * \param gamepad the gamepad to update. + * \param red the intensity of the red LED. + * \param green the intensity of the green LED. + * \param blue the intensity of the blue LED. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGamepadLED(SDL_Gamepad *gamepad, Uint8 red, Uint8 green, Uint8 blue); + +/** + * Send a gamepad specific effect packet. + * + * \param gamepad the gamepad to affect. + * \param data the data to send to the gamepad. + * \param size the size of the data to send to the gamepad. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendGamepadEffect(SDL_Gamepad *gamepad, const void *data, int size); + +/** + * Close a gamepad previously opened with SDL_OpenGamepad(). + * + * \param gamepad a gamepad identifier previously returned by + * SDL_OpenGamepad(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenGamepad + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseGamepad(SDL_Gamepad *gamepad); + +/** + * Return the sfSymbolsName for a given button on a gamepad on Apple + * platforms. + * + * \param gamepad the gamepad to query. + * \param button a button on the gamepad. + * \returns the sfSymbolsName or NULL if the name can't be found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadAppleSFSymbolsNameForAxis + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadAppleSFSymbolsNameForButton(SDL_Gamepad *gamepad, SDL_GamepadButton button); + +/** + * Return the sfSymbolsName for a given axis on a gamepad on Apple platforms. + * + * \param gamepad the gamepad to query. + * \param axis an axis on the gamepad. + * \returns the sfSymbolsName or NULL if the name can't be found. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGamepadAppleSFSymbolsNameForButton + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGamepadAppleSFSymbolsNameForAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_gamepad_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_gpu.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_gpu.h new file mode 100644 index 0000000..4a5e32f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_gpu.h @@ -0,0 +1,4213 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: GPU */ + +/** + * # CategoryGPU + * + * The GPU API offers a cross-platform way for apps to talk to modern graphics + * hardware. It offers both 3D graphics and compute support, in the style of + * Metal, Vulkan, and Direct3D 12. + * + * A basic workflow might be something like this: + * + * The app creates a GPU device with SDL_CreateGPUDevice(), and assigns it to + * a window with SDL_ClaimWindowForGPUDevice()--although strictly speaking you + * can render offscreen entirely, perhaps for image processing, and not use a + * window at all. + * + * Next, the app prepares static data (things that are created once and used + * over and over). For example: + * + * - Shaders (programs that run on the GPU): use SDL_CreateGPUShader(). + * - Vertex buffers (arrays of geometry data) and other rendering data: use + * SDL_CreateGPUBuffer() and SDL_UploadToGPUBuffer(). + * - Textures (images): use SDL_CreateGPUTexture() and + * SDL_UploadToGPUTexture(). + * - Samplers (how textures should be read from): use SDL_CreateGPUSampler(). + * - Render pipelines (precalculated rendering state): use + * SDL_CreateGPUGraphicsPipeline() + * + * To render, the app creates one or more command buffers, with + * SDL_AcquireGPUCommandBuffer(). Command buffers collect rendering + * instructions that will be submitted to the GPU in batch. Complex scenes can + * use multiple command buffers, maybe configured across multiple threads in + * parallel, as long as they are submitted in the correct order, but many apps + * will just need one command buffer per frame. + * + * Rendering can happen to a texture (what other APIs call a "render target") + * or it can happen to the swapchain texture (which is just a special texture + * that represents a window's contents). The app can use + * SDL_WaitAndAcquireGPUSwapchainTexture() to render to the window. + * + * Rendering actually happens in a Render Pass, which is encoded into a + * command buffer. One can encode multiple render passes (or alternate between + * render and compute passes) in a single command buffer, but many apps might + * simply need a single render pass in a single command buffer. Render Passes + * can render to up to four color textures and one depth texture + * simultaneously. If the set of textures being rendered to needs to change, + * the Render Pass must be ended and a new one must be begun. + * + * The app calls SDL_BeginGPURenderPass(). Then it sets states it needs for + * each draw: + * + * - SDL_BindGPUGraphicsPipeline() + * - SDL_SetGPUViewport() + * - SDL_BindGPUVertexBuffers() + * - SDL_BindGPUVertexSamplers() + * - etc + * + * Then, make the actual draw commands with these states: + * + * - SDL_DrawGPUPrimitives() + * - SDL_DrawGPUPrimitivesIndirect() + * - SDL_DrawGPUIndexedPrimitivesIndirect() + * - etc + * + * After all the drawing commands for a pass are complete, the app should call + * SDL_EndGPURenderPass(). Once a render pass ends all render-related state is + * reset. + * + * The app can begin new Render Passes and make new draws in the same command + * buffer until the entire scene is rendered. + * + * Once all of the render commands for the scene are complete, the app calls + * SDL_SubmitGPUCommandBuffer() to send it to the GPU for processing. + * + * If the app needs to read back data from texture or buffers, the API has an + * efficient way of doing this, provided that the app is willing to tolerate + * some latency. When the app uses SDL_DownloadFromGPUTexture() or + * SDL_DownloadFromGPUBuffer(), submitting the command buffer with + * SDL_SubmitGPUCommandBufferAndAcquireFence() will return a fence handle that + * the app can poll or wait on in a thread. Once the fence indicates that the + * command buffer is done processing, it is safe to read the downloaded data. + * Make sure to call SDL_ReleaseGPUFence() when done with the fence. + * + * The API also has "compute" support. The app calls SDL_BeginGPUComputePass() + * with compute-writeable textures and/or buffers, which can be written to in + * a compute shader. Then it sets states it needs for the compute dispatches: + * + * - SDL_BindGPUComputePipeline() + * - SDL_BindGPUComputeStorageBuffers() + * - SDL_BindGPUComputeStorageTextures() + * + * Then, dispatch compute work: + * + * - SDL_DispatchGPUCompute() + * + * For advanced users, this opens up powerful GPU-driven workflows. + * + * Graphics and compute pipelines require the use of shaders, which as + * mentioned above are small programs executed on the GPU. Each backend + * (Vulkan, Metal, D3D12) requires a different shader format. When the app + * creates the GPU device, the app lets the device know which shader formats + * the app can provide. It will then select the appropriate backend depending + * on the available shader formats and the backends available on the platform. + * When creating shaders, the app must provide the correct shader format for + * the selected backend. If you would like to learn more about why the API + * works this way, there is a detailed + * [blog post](https://moonside.games/posts/layers-all-the-way-down/) + * explaining this situation. + * + * It is optimal for apps to pre-compile the shader formats they might use, + * but for ease of use SDL provides a separate project, + * [SDL_shadercross](https://github.com/libsdl-org/SDL_shadercross) + * , for performing runtime shader cross-compilation. It also has a CLI + * interface for offline precompilation as well. + * + * This is an extremely quick overview that leaves out several important + * details. Already, though, one can see that GPU programming can be quite + * complex! If you just need simple 2D graphics, the + * [Render API](https://wiki.libsdl.org/SDL3/CategoryRender) + * is much easier to use but still hardware-accelerated. That said, even for + * 2D applications the performance benefits and expressiveness of the GPU API + * are significant. + * + * The GPU API targets a feature set with a wide range of hardware support and + * ease of portability. It is designed so that the app won't have to branch + * itself by querying feature support. If you need cutting-edge features with + * limited hardware support, this API is probably not for you. + * + * Examples demonstrating proper usage of this API can be found + * [here](https://github.com/TheSpydog/SDL_gpu_examples) + * . + * + * ## Performance considerations + * + * Here are some basic tips for maximizing your rendering performance. + * + * - Beginning a new render pass is relatively expensive. Use as few render + * passes as you can. + * - Minimize the amount of state changes. For example, binding a pipeline is + * relatively cheap, but doing it hundreds of times when you don't need to + * will slow the performance significantly. + * - Perform your data uploads as early as possible in the frame. + * - Don't churn resources. Creating and releasing resources is expensive. + * It's better to create what you need up front and cache it. + * - Don't use uniform buffers for large amounts of data (more than a matrix + * or so). Use a storage buffer instead. + * - Use cycling correctly. There is a detailed explanation of cycling further + * below. + * - Use culling techniques to minimize pixel writes. The less writing the GPU + * has to do the better. Culling can be a very advanced topic but even + * simple culling techniques can boost performance significantly. + * + * In general try to remember the golden rule of performance: doing things is + * more expensive than not doing things. Don't Touch The Driver! + * + * ## FAQ + * + * **Question: When are you adding more advanced features, like ray tracing or + * mesh shaders?** + * + * Answer: We don't have immediate plans to add more bleeding-edge features, + * but we certainly might in the future, when these features prove worthwhile, + * and reasonable to implement across several platforms and underlying APIs. + * So while these things are not in the "never" category, they are definitely + * not "near future" items either. + * + * **Question: Why is my shader not working?** + * + * Answer: A common oversight when using shaders is not properly laying out + * the shader resources/registers correctly. The GPU API is very strict with + * how it wants resources to be laid out and it's difficult for the API to + * automatically validate shaders to see if they have a compatible layout. See + * the documentation for SDL_CreateGPUShader() and + * SDL_CreateGPUComputePipeline() for information on the expected layout. + * + * Another common issue is not setting the correct number of samplers, + * textures, and buffers in SDL_GPUShaderCreateInfo. If possible use shader + * reflection to extract the required information from the shader + * automatically instead of manually filling in the struct's values. + * + * **Question: My application isn't performing very well. Is this the GPU + * API's fault?** + * + * Answer: No. Long answer: The GPU API is a relatively thin layer over the + * underlying graphics API. While it's possible that we have done something + * inefficiently, it's very unlikely especially if you are relatively + * inexperienced with GPU rendering. Please see the performance tips above and + * make sure you are following them. Additionally, tools like RenderDoc can be + * very helpful for diagnosing incorrect behavior and performance issues. + * + * ## System Requirements + * + * **Vulkan:** Supported on Windows, Linux, Nintendo Switch, and certain + * Android devices. Requires Vulkan 1.0 with the following extensions and + * device features: + * + * - `VK_KHR_swapchain` + * - `VK_KHR_maintenance1` + * - `independentBlend` + * - `imageCubeArray` + * - `depthClamp` + * - `shaderClipDistance` + * - `drawIndirectFirstInstance` + * + * **D3D12:** Supported on Windows 10 or newer, Xbox One (GDK), and Xbox + * Series X|S (GDK). Requires a GPU that supports DirectX 12 Feature Level + * 11_1. + * + * **Metal:** Supported on macOS 10.14+ and iOS/tvOS 13.0+. Hardware + * requirements vary by operating system: + * + * - macOS requires an Apple Silicon or + * [Intel Mac2 family](https://developer.apple.com/documentation/metal/mtlfeatureset/mtlfeatureset_macos_gpufamily2_v1?language=objc) + * GPU + * - iOS/tvOS requires an A9 GPU or newer + * - iOS Simulator and tvOS Simulator are unsupported + * + * ## Uniform Data + * + * Uniforms are for passing data to shaders. The uniform data will be constant + * across all executions of the shader. + * + * There are 4 available uniform slots per shader stage (where the stages are + * vertex, fragment, and compute). Uniform data pushed to a slot on a stage + * keeps its value throughout the command buffer until you call the relevant + * Push function on that slot again. + * + * For example, you could write your vertex shaders to read a camera matrix + * from uniform binding slot 0, push the camera matrix at the start of the + * command buffer, and that data will be used for every subsequent draw call. + * + * It is valid to push uniform data during a render or compute pass. + * + * Uniforms are best for pushing small amounts of data. If you are pushing + * more than a matrix or two per call you should consider using a storage + * buffer instead. + * + * ## A Note On Cycling + * + * When using a command buffer, operations do not occur immediately - they + * occur some time after the command buffer is submitted. + * + * When a resource is used in a pending or active command buffer, it is + * considered to be "bound". When a resource is no longer used in any pending + * or active command buffers, it is considered to be "unbound". + * + * If data resources are bound, it is unspecified when that data will be + * unbound unless you acquire a fence when submitting the command buffer and + * wait on it. However, this doesn't mean you need to track resource usage + * manually. + * + * All of the functions and structs that involve writing to a resource have a + * "cycle" bool. SDL_GPUTransferBuffer, SDL_GPUBuffer, and SDL_GPUTexture all + * effectively function as ring buffers on internal resources. When cycle is + * true, if the resource is bound, the cycle rotates to the next unbound + * internal resource, or if none are available, a new one is created. This + * means you don't have to worry about complex state tracking and + * synchronization as long as cycling is correctly employed. + * + * For example: you can call SDL_MapGPUTransferBuffer(), write texture data, + * SDL_UnmapGPUTransferBuffer(), and then SDL_UploadToGPUTexture(). The next + * time you write texture data to the transfer buffer, if you set the cycle + * param to true, you don't have to worry about overwriting any data that is + * not yet uploaded. + * + * Another example: If you are using a texture in a render pass every frame, + * this can cause a data dependency between frames. If you set cycle to true + * in the SDL_GPUColorTargetInfo struct, you can prevent this data dependency. + * + * Cycling will never undefine already bound data. When cycling, all data in + * the resource is considered to be undefined for subsequent commands until + * that data is written again. You must take care not to read undefined data. + * + * Note that when cycling a texture, the entire texture will be cycled, even + * if only part of the texture is used in the call, so you must consider the + * entire texture to contain undefined data after cycling. + * + * You must also take care not to overwrite a section of data that has been + * referenced in a command without cycling first. It is OK to overwrite + * unreferenced data in a bound resource without cycling, but overwriting a + * section of data that has already been referenced will produce unexpected + * results. + */ + +#ifndef SDL_gpu_h_ +#define SDL_gpu_h_ + +#include +#include +#include +#include +#include +#include + +#include +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/* Type Declarations */ + +/** + * An opaque handle representing the SDL_GPU context. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GPUDevice SDL_GPUDevice; + +/** + * An opaque handle representing a buffer. + * + * Used for vertices, indices, indirect draw commands, and general compute + * data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_CopyGPUBufferToBuffer + * \sa SDL_BindGPUVertexBuffers + * \sa SDL_BindGPUIndexBuffer + * \sa SDL_BindGPUVertexStorageBuffers + * \sa SDL_BindGPUFragmentStorageBuffers + * \sa SDL_DrawGPUPrimitivesIndirect + * \sa SDL_DrawGPUIndexedPrimitivesIndirect + * \sa SDL_BindGPUComputeStorageBuffers + * \sa SDL_DispatchGPUComputeIndirect + * \sa SDL_ReleaseGPUBuffer + */ +typedef struct SDL_GPUBuffer SDL_GPUBuffer; + +/** + * An opaque handle representing a transfer buffer. + * + * Used for transferring data to and from the device. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTransferBuffer + * \sa SDL_MapGPUTransferBuffer + * \sa SDL_UnmapGPUTransferBuffer + * \sa SDL_UploadToGPUBuffer + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_ReleaseGPUTransferBuffer + */ +typedef struct SDL_GPUTransferBuffer SDL_GPUTransferBuffer; + +/** + * An opaque handle representing a texture. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_CopyGPUTextureToTexture + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUVertexStorageTextures + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_BindGPUFragmentStorageTextures + * \sa SDL_BindGPUComputeStorageTextures + * \sa SDL_GenerateMipmapsForGPUTexture + * \sa SDL_BlitGPUTexture + * \sa SDL_ReleaseGPUTexture + */ +typedef struct SDL_GPUTexture SDL_GPUTexture; + +/** + * An opaque handle representing a sampler. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_ReleaseGPUSampler + */ +typedef struct SDL_GPUSampler SDL_GPUSampler; + +/** + * An opaque handle representing a compiled shader object. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_ReleaseGPUShader + */ +typedef struct SDL_GPUShader SDL_GPUShader; + +/** + * An opaque handle representing a compute pipeline. + * + * Used during compute passes. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUComputePipeline + * \sa SDL_BindGPUComputePipeline + * \sa SDL_ReleaseGPUComputePipeline + */ +typedef struct SDL_GPUComputePipeline SDL_GPUComputePipeline; + +/** + * An opaque handle representing a graphics pipeline. + * + * Used during render passes. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_BindGPUGraphicsPipeline + * \sa SDL_ReleaseGPUGraphicsPipeline + */ +typedef struct SDL_GPUGraphicsPipeline SDL_GPUGraphicsPipeline; + +/** + * An opaque handle representing a command buffer. + * + * Most state is managed via command buffers. When setting state using a + * command buffer, that state is local to the command buffer. + * + * Commands only begin execution on the GPU once SDL_SubmitGPUCommandBuffer is + * called. Once the command buffer is submitted, it is no longer valid to use + * it. + * + * Command buffers are executed in submission order. If you submit command + * buffer A and then command buffer B all commands in A will begin executing + * before any command in B begins executing. + * + * In multi-threading scenarios, you should only access a command buffer on + * the thread you acquired it from. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +typedef struct SDL_GPUCommandBuffer SDL_GPUCommandBuffer; + +/** + * An opaque handle representing a render pass. + * + * This handle is transient and should not be held or referenced after + * SDL_EndGPURenderPass is called. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + * \sa SDL_EndGPURenderPass + */ +typedef struct SDL_GPURenderPass SDL_GPURenderPass; + +/** + * An opaque handle representing a compute pass. + * + * This handle is transient and should not be held or referenced after + * SDL_EndGPUComputePass is called. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUComputePass + * \sa SDL_EndGPUComputePass + */ +typedef struct SDL_GPUComputePass SDL_GPUComputePass; + +/** + * An opaque handle representing a copy pass. + * + * This handle is transient and should not be held or referenced after + * SDL_EndGPUCopyPass is called. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUCopyPass + * \sa SDL_EndGPUCopyPass + */ +typedef struct SDL_GPUCopyPass SDL_GPUCopyPass; + +/** + * An opaque handle representing a fence. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_QueryGPUFence + * \sa SDL_WaitForGPUFences + * \sa SDL_ReleaseGPUFence + */ +typedef struct SDL_GPUFence SDL_GPUFence; + +/** + * Specifies the primitive topology of a graphics pipeline. + * + * If you are using POINTLIST you must include a point size output in the + * vertex shader. + * + * - For HLSL compiling to SPIRV you must decorate a float output with + * [[vk::builtin("PointSize")]]. + * - For GLSL you must set the gl_PointSize builtin. + * - For MSL you must include a float output with the [[point_size]] + * decorator. + * + * Note that sized point topology is totally unsupported on D3D12. Any size + * other than 1 will be ignored. In general, you should avoid using point + * topology for both compatibility and performance reasons. You WILL regret + * using it. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUPrimitiveType +{ + SDL_GPU_PRIMITIVETYPE_TRIANGLELIST, /**< A series of separate triangles. */ + SDL_GPU_PRIMITIVETYPE_TRIANGLESTRIP, /**< A series of connected triangles. */ + SDL_GPU_PRIMITIVETYPE_LINELIST, /**< A series of separate lines. */ + SDL_GPU_PRIMITIVETYPE_LINESTRIP, /**< A series of connected lines. */ + SDL_GPU_PRIMITIVETYPE_POINTLIST /**< A series of separate points. */ +} SDL_GPUPrimitiveType; + +/** + * Specifies how the contents of a texture attached to a render pass are + * treated at the beginning of the render pass. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef enum SDL_GPULoadOp +{ + SDL_GPU_LOADOP_LOAD, /**< The previous contents of the texture will be preserved. */ + SDL_GPU_LOADOP_CLEAR, /**< The contents of the texture will be cleared to a color. */ + SDL_GPU_LOADOP_DONT_CARE /**< The previous contents of the texture need not be preserved. The contents will be undefined. */ +} SDL_GPULoadOp; + +/** + * Specifies how the contents of a texture attached to a render pass are + * treated at the end of the render pass. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef enum SDL_GPUStoreOp +{ + SDL_GPU_STOREOP_STORE, /**< The contents generated during the render pass will be written to memory. */ + SDL_GPU_STOREOP_DONT_CARE, /**< The contents generated during the render pass are not needed and may be discarded. The contents will be undefined. */ + SDL_GPU_STOREOP_RESOLVE, /**< The multisample contents generated during the render pass will be resolved to a non-multisample texture. The contents in the multisample texture may then be discarded and will be undefined. */ + SDL_GPU_STOREOP_RESOLVE_AND_STORE /**< The multisample contents generated during the render pass will be resolved to a non-multisample texture. The contents in the multisample texture will be written to memory. */ +} SDL_GPUStoreOp; + +/** + * Specifies the size of elements in an index buffer. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUIndexElementSize +{ + SDL_GPU_INDEXELEMENTSIZE_16BIT, /**< The index elements are 16-bit. */ + SDL_GPU_INDEXELEMENTSIZE_32BIT /**< The index elements are 32-bit. */ +} SDL_GPUIndexElementSize; + +/** + * Specifies the pixel format of a texture. + * + * Texture format support varies depending on driver, hardware, and usage + * flags. In general, you should use SDL_GPUTextureSupportsFormat to query if + * a format is supported before using it. However, there are a few guaranteed + * formats. + * + * FIXME: Check universal support for 32-bit component formats FIXME: Check + * universal support for SIMULTANEOUS_READ_WRITE + * + * For SAMPLER usage, the following formats are universally supported: + * + * - R8G8B8A8_UNORM + * - B8G8R8A8_UNORM + * - R8_UNORM + * - R8_SNORM + * - R8G8_UNORM + * - R8G8_SNORM + * - R8G8B8A8_SNORM + * - R16_FLOAT + * - R16G16_FLOAT + * - R16G16B16A16_FLOAT + * - R32_FLOAT + * - R32G32_FLOAT + * - R32G32B32A32_FLOAT + * - R11G11B10_UFLOAT + * - R8G8B8A8_UNORM_SRGB + * - B8G8R8A8_UNORM_SRGB + * - D16_UNORM + * + * For COLOR_TARGET usage, the following formats are universally supported: + * + * - R8G8B8A8_UNORM + * - B8G8R8A8_UNORM + * - R8_UNORM + * - R16_FLOAT + * - R16G16_FLOAT + * - R16G16B16A16_FLOAT + * - R32_FLOAT + * - R32G32_FLOAT + * - R32G32B32A32_FLOAT + * - R8_UINT + * - R8G8_UINT + * - R8G8B8A8_UINT + * - R16_UINT + * - R16G16_UINT + * - R16G16B16A16_UINT + * - R8_INT + * - R8G8_INT + * - R8G8B8A8_INT + * - R16_INT + * - R16G16_INT + * - R16G16B16A16_INT + * - R8G8B8A8_UNORM_SRGB + * - B8G8R8A8_UNORM_SRGB + * + * For STORAGE usages, the following formats are universally supported: + * + * - R8G8B8A8_UNORM + * - R8G8B8A8_SNORM + * - R16G16B16A16_FLOAT + * - R32_FLOAT + * - R32G32_FLOAT + * - R32G32B32A32_FLOAT + * - R8G8B8A8_UINT + * - R16G16B16A16_UINT + * - R8G8B8A8_INT + * - R16G16B16A16_INT + * + * For DEPTH_STENCIL_TARGET usage, the following formats are universally + * supported: + * + * - D16_UNORM + * - Either (but not necessarily both!) D24_UNORM or D32_FLOAT + * - Either (but not necessarily both!) D24_UNORM_S8_UINT or D32_FLOAT_S8_UINT + * + * Unless D16_UNORM is sufficient for your purposes, always check which of + * D24/D32 is supported before creating a depth-stencil texture! + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_GPUTextureSupportsFormat + */ +typedef enum SDL_GPUTextureFormat +{ + SDL_GPU_TEXTUREFORMAT_INVALID, + + /* Unsigned Normalized Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_A8_UNORM, + SDL_GPU_TEXTUREFORMAT_R8_UNORM, + SDL_GPU_TEXTUREFORMAT_R8G8_UNORM, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UNORM, + SDL_GPU_TEXTUREFORMAT_R16_UNORM, + SDL_GPU_TEXTUREFORMAT_R16G16_UNORM, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_UNORM, + SDL_GPU_TEXTUREFORMAT_R10G10B10A2_UNORM, + SDL_GPU_TEXTUREFORMAT_B5G6R5_UNORM, + SDL_GPU_TEXTUREFORMAT_B5G5R5A1_UNORM, + SDL_GPU_TEXTUREFORMAT_B4G4R4A4_UNORM, + SDL_GPU_TEXTUREFORMAT_B8G8R8A8_UNORM, + /* Compressed Unsigned Normalized Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC1_RGBA_UNORM, + SDL_GPU_TEXTUREFORMAT_BC2_RGBA_UNORM, + SDL_GPU_TEXTUREFORMAT_BC3_RGBA_UNORM, + SDL_GPU_TEXTUREFORMAT_BC4_R_UNORM, + SDL_GPU_TEXTUREFORMAT_BC5_RG_UNORM, + SDL_GPU_TEXTUREFORMAT_BC7_RGBA_UNORM, + /* Compressed Signed Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC6H_RGB_FLOAT, + /* Compressed Unsigned Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC6H_RGB_UFLOAT, + /* Signed Normalized Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8_SNORM, + SDL_GPU_TEXTUREFORMAT_R8G8_SNORM, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_SNORM, + SDL_GPU_TEXTUREFORMAT_R16_SNORM, + SDL_GPU_TEXTUREFORMAT_R16G16_SNORM, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_SNORM, + /* Signed Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_R16_FLOAT, + SDL_GPU_TEXTUREFORMAT_R16G16_FLOAT, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_FLOAT, + SDL_GPU_TEXTUREFORMAT_R32_FLOAT, + SDL_GPU_TEXTUREFORMAT_R32G32_FLOAT, + SDL_GPU_TEXTUREFORMAT_R32G32B32A32_FLOAT, + /* Unsigned Float Color Formats */ + SDL_GPU_TEXTUREFORMAT_R11G11B10_UFLOAT, + /* Unsigned Integer Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8_UINT, + SDL_GPU_TEXTUREFORMAT_R8G8_UINT, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UINT, + SDL_GPU_TEXTUREFORMAT_R16_UINT, + SDL_GPU_TEXTUREFORMAT_R16G16_UINT, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_UINT, + SDL_GPU_TEXTUREFORMAT_R32_UINT, + SDL_GPU_TEXTUREFORMAT_R32G32_UINT, + SDL_GPU_TEXTUREFORMAT_R32G32B32A32_UINT, + /* Signed Integer Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8_INT, + SDL_GPU_TEXTUREFORMAT_R8G8_INT, + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_INT, + SDL_GPU_TEXTUREFORMAT_R16_INT, + SDL_GPU_TEXTUREFORMAT_R16G16_INT, + SDL_GPU_TEXTUREFORMAT_R16G16B16A16_INT, + SDL_GPU_TEXTUREFORMAT_R32_INT, + SDL_GPU_TEXTUREFORMAT_R32G32_INT, + SDL_GPU_TEXTUREFORMAT_R32G32B32A32_INT, + /* SRGB Unsigned Normalized Color Formats */ + SDL_GPU_TEXTUREFORMAT_R8G8B8A8_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_B8G8R8A8_UNORM_SRGB, + /* Compressed SRGB Unsigned Normalized Color Formats */ + SDL_GPU_TEXTUREFORMAT_BC1_RGBA_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_BC2_RGBA_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_BC3_RGBA_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_BC7_RGBA_UNORM_SRGB, + /* Depth Formats */ + SDL_GPU_TEXTUREFORMAT_D16_UNORM, + SDL_GPU_TEXTUREFORMAT_D24_UNORM, + SDL_GPU_TEXTUREFORMAT_D32_FLOAT, + SDL_GPU_TEXTUREFORMAT_D24_UNORM_S8_UINT, + SDL_GPU_TEXTUREFORMAT_D32_FLOAT_S8_UINT, + /* Compressed ASTC Normalized Float Color Formats*/ + SDL_GPU_TEXTUREFORMAT_ASTC_4x4_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_5x4_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_5x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_6x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_6x6_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_8x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_8x6_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_8x8_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x5_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x6_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x8_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_10x10_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_12x10_UNORM, + SDL_GPU_TEXTUREFORMAT_ASTC_12x12_UNORM, + /* Compressed SRGB ASTC Normalized Float Color Formats*/ + SDL_GPU_TEXTUREFORMAT_ASTC_4x4_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_5x4_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_5x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_6x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_6x6_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_8x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_8x6_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_8x8_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x5_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x6_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x8_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_10x10_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_12x10_UNORM_SRGB, + SDL_GPU_TEXTUREFORMAT_ASTC_12x12_UNORM_SRGB, + /* Compressed ASTC Signed Float Color Formats*/ + SDL_GPU_TEXTUREFORMAT_ASTC_4x4_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_5x4_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_5x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_6x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_6x6_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_8x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_8x6_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_8x8_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x5_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x6_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x8_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_10x10_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_12x10_FLOAT, + SDL_GPU_TEXTUREFORMAT_ASTC_12x12_FLOAT +} SDL_GPUTextureFormat; + +/** + * Specifies how a texture is intended to be used by the client. + * + * A texture must have at least one usage flag. Note that some usage flag + * combinations are invalid. + * + * With regards to compute storage usage, READ | WRITE means that you can have + * shader A that only writes into the texture and shader B that only reads + * from the texture and bind the same texture to either shader respectively. + * SIMULTANEOUS means that you can do reads and writes within the same shader + * or compute pass. It also implies that atomic ops can be used, since those + * are read-modify-write operations. If you use SIMULTANEOUS, you are + * responsible for avoiding data races, as there is no data synchronization + * within a compute pass. Note that SIMULTANEOUS usage is only supported by a + * limited number of texture formats. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + */ +typedef Uint32 SDL_GPUTextureUsageFlags; + +#define SDL_GPU_TEXTUREUSAGE_SAMPLER (1u << 0) /**< Texture supports sampling. */ +#define SDL_GPU_TEXTUREUSAGE_COLOR_TARGET (1u << 1) /**< Texture is a color render target. */ +#define SDL_GPU_TEXTUREUSAGE_DEPTH_STENCIL_TARGET (1u << 2) /**< Texture is a depth stencil target. */ +#define SDL_GPU_TEXTUREUSAGE_GRAPHICS_STORAGE_READ (1u << 3) /**< Texture supports storage reads in graphics stages. */ +#define SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_READ (1u << 4) /**< Texture supports storage reads in the compute stage. */ +#define SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_WRITE (1u << 5) /**< Texture supports storage writes in the compute stage. */ +#define SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE (1u << 6) /**< Texture supports reads and writes in the same compute shader. This is NOT equivalent to READ | WRITE. */ + +/** + * Specifies the type of a texture. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + */ +typedef enum SDL_GPUTextureType +{ + SDL_GPU_TEXTURETYPE_2D, /**< The texture is a 2-dimensional image. */ + SDL_GPU_TEXTURETYPE_2D_ARRAY, /**< The texture is a 2-dimensional array image. */ + SDL_GPU_TEXTURETYPE_3D, /**< The texture is a 3-dimensional image. */ + SDL_GPU_TEXTURETYPE_CUBE, /**< The texture is a cube image. */ + SDL_GPU_TEXTURETYPE_CUBE_ARRAY /**< The texture is a cube array image. */ +} SDL_GPUTextureType; + +/** + * Specifies the sample count of a texture. + * + * Used in multisampling. Note that this value only applies when the texture + * is used as a render target. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_GPUTextureSupportsSampleCount + */ +typedef enum SDL_GPUSampleCount +{ + SDL_GPU_SAMPLECOUNT_1, /**< No multisampling. */ + SDL_GPU_SAMPLECOUNT_2, /**< MSAA 2x */ + SDL_GPU_SAMPLECOUNT_4, /**< MSAA 4x */ + SDL_GPU_SAMPLECOUNT_8 /**< MSAA 8x */ +} SDL_GPUSampleCount; + + +/** + * Specifies the face of a cube map. + * + * Can be passed in as the layer field in texture-related structs. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GPUCubeMapFace +{ + SDL_GPU_CUBEMAPFACE_POSITIVEX, + SDL_GPU_CUBEMAPFACE_NEGATIVEX, + SDL_GPU_CUBEMAPFACE_POSITIVEY, + SDL_GPU_CUBEMAPFACE_NEGATIVEY, + SDL_GPU_CUBEMAPFACE_POSITIVEZ, + SDL_GPU_CUBEMAPFACE_NEGATIVEZ +} SDL_GPUCubeMapFace; + +/** + * Specifies how a buffer is intended to be used by the client. + * + * A buffer must have at least one usage flag. Note that some usage flag + * combinations are invalid. + * + * Unlike textures, READ | WRITE can be used for simultaneous read-write + * usage. The same data synchronization concerns as textures apply. + * + * If you use a STORAGE flag, the data in the buffer must respect std140 + * layout conventions. In practical terms this means you must ensure that vec3 + * and vec4 fields are 16-byte aligned. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + */ +typedef Uint32 SDL_GPUBufferUsageFlags; + +#define SDL_GPU_BUFFERUSAGE_VERTEX (1u << 0) /**< Buffer is a vertex buffer. */ +#define SDL_GPU_BUFFERUSAGE_INDEX (1u << 1) /**< Buffer is an index buffer. */ +#define SDL_GPU_BUFFERUSAGE_INDIRECT (1u << 2) /**< Buffer is an indirect buffer. */ +#define SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ (1u << 3) /**< Buffer supports storage reads in graphics stages. */ +#define SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_READ (1u << 4) /**< Buffer supports storage reads in the compute stage. */ +#define SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_WRITE (1u << 5) /**< Buffer supports storage writes in the compute stage. */ + +/** + * Specifies how a transfer buffer is intended to be used by the client. + * + * Note that mapping and copying FROM an upload transfer buffer or TO a + * download transfer buffer is undefined behavior. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTransferBuffer + */ +typedef enum SDL_GPUTransferBufferUsage +{ + SDL_GPU_TRANSFERBUFFERUSAGE_UPLOAD, + SDL_GPU_TRANSFERBUFFERUSAGE_DOWNLOAD +} SDL_GPUTransferBufferUsage; + +/** + * Specifies which stage a shader program corresponds to. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +typedef enum SDL_GPUShaderStage +{ + SDL_GPU_SHADERSTAGE_VERTEX, + SDL_GPU_SHADERSTAGE_FRAGMENT +} SDL_GPUShaderStage; + +/** + * Specifies the format of shader code. + * + * Each format corresponds to a specific backend that accepts it. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +typedef Uint32 SDL_GPUShaderFormat; + +#define SDL_GPU_SHADERFORMAT_INVALID 0 +#define SDL_GPU_SHADERFORMAT_PRIVATE (1u << 0) /**< Shaders for NDA'd platforms. */ +#define SDL_GPU_SHADERFORMAT_SPIRV (1u << 1) /**< SPIR-V shaders for Vulkan. */ +#define SDL_GPU_SHADERFORMAT_DXBC (1u << 2) /**< DXBC SM5_1 shaders for D3D12. */ +#define SDL_GPU_SHADERFORMAT_DXIL (1u << 3) /**< DXIL SM6_0 shaders for D3D12. */ +#define SDL_GPU_SHADERFORMAT_MSL (1u << 4) /**< MSL shaders for Metal. */ +#define SDL_GPU_SHADERFORMAT_METALLIB (1u << 5) /**< Precompiled metallib shaders for Metal. */ + +/** + * Specifies the format of a vertex attribute. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUVertexElementFormat +{ + SDL_GPU_VERTEXELEMENTFORMAT_INVALID, + + /* 32-bit Signed Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_INT, + SDL_GPU_VERTEXELEMENTFORMAT_INT2, + SDL_GPU_VERTEXELEMENTFORMAT_INT3, + SDL_GPU_VERTEXELEMENTFORMAT_INT4, + + /* 32-bit Unsigned Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_UINT, + SDL_GPU_VERTEXELEMENTFORMAT_UINT2, + SDL_GPU_VERTEXELEMENTFORMAT_UINT3, + SDL_GPU_VERTEXELEMENTFORMAT_UINT4, + + /* 32-bit Floats */ + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT, + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT2, + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT3, + SDL_GPU_VERTEXELEMENTFORMAT_FLOAT4, + + /* 8-bit Signed Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_BYTE2, + SDL_GPU_VERTEXELEMENTFORMAT_BYTE4, + + /* 8-bit Unsigned Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE2, + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE4, + + /* 8-bit Signed Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_BYTE2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_BYTE4_NORM, + + /* 8-bit Unsigned Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_UBYTE4_NORM, + + /* 16-bit Signed Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_SHORT2, + SDL_GPU_VERTEXELEMENTFORMAT_SHORT4, + + /* 16-bit Unsigned Integers */ + SDL_GPU_VERTEXELEMENTFORMAT_USHORT2, + SDL_GPU_VERTEXELEMENTFORMAT_USHORT4, + + /* 16-bit Signed Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_SHORT2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_SHORT4_NORM, + + /* 16-bit Unsigned Normalized */ + SDL_GPU_VERTEXELEMENTFORMAT_USHORT2_NORM, + SDL_GPU_VERTEXELEMENTFORMAT_USHORT4_NORM, + + /* 16-bit Floats */ + SDL_GPU_VERTEXELEMENTFORMAT_HALF2, + SDL_GPU_VERTEXELEMENTFORMAT_HALF4 +} SDL_GPUVertexElementFormat; + +/** + * Specifies the rate at which vertex attributes are pulled from buffers. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUVertexInputRate +{ + SDL_GPU_VERTEXINPUTRATE_VERTEX, /**< Attribute addressing is a function of the vertex index. */ + SDL_GPU_VERTEXINPUTRATE_INSTANCE /**< Attribute addressing is a function of the instance index. */ +} SDL_GPUVertexInputRate; + +/** + * Specifies the fill mode of the graphics pipeline. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUFillMode +{ + SDL_GPU_FILLMODE_FILL, /**< Polygons will be rendered via rasterization. */ + SDL_GPU_FILLMODE_LINE /**< Polygon edges will be drawn as line segments. */ +} SDL_GPUFillMode; + +/** + * Specifies the facing direction in which triangle faces will be culled. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUCullMode +{ + SDL_GPU_CULLMODE_NONE, /**< No triangles are culled. */ + SDL_GPU_CULLMODE_FRONT, /**< Front-facing triangles are culled. */ + SDL_GPU_CULLMODE_BACK /**< Back-facing triangles are culled. */ +} SDL_GPUCullMode; + +/** + * Specifies the vertex winding that will cause a triangle to be determined to + * be front-facing. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUFrontFace +{ + SDL_GPU_FRONTFACE_COUNTER_CLOCKWISE, /**< A triangle with counter-clockwise vertex winding will be considered front-facing. */ + SDL_GPU_FRONTFACE_CLOCKWISE /**< A triangle with clockwise vertex winding will be considered front-facing. */ +} SDL_GPUFrontFace; + +/** + * Specifies a comparison operator for depth, stencil and sampler operations. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUCompareOp +{ + SDL_GPU_COMPAREOP_INVALID, + SDL_GPU_COMPAREOP_NEVER, /**< The comparison always evaluates false. */ + SDL_GPU_COMPAREOP_LESS, /**< The comparison evaluates reference < test. */ + SDL_GPU_COMPAREOP_EQUAL, /**< The comparison evaluates reference == test. */ + SDL_GPU_COMPAREOP_LESS_OR_EQUAL, /**< The comparison evaluates reference <= test. */ + SDL_GPU_COMPAREOP_GREATER, /**< The comparison evaluates reference > test. */ + SDL_GPU_COMPAREOP_NOT_EQUAL, /**< The comparison evaluates reference != test. */ + SDL_GPU_COMPAREOP_GREATER_OR_EQUAL, /**< The comparison evalutes reference >= test. */ + SDL_GPU_COMPAREOP_ALWAYS /**< The comparison always evaluates true. */ +} SDL_GPUCompareOp; + +/** + * Specifies what happens to a stored stencil value if stencil tests fail or + * pass. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUStencilOp +{ + SDL_GPU_STENCILOP_INVALID, + SDL_GPU_STENCILOP_KEEP, /**< Keeps the current value. */ + SDL_GPU_STENCILOP_ZERO, /**< Sets the value to 0. */ + SDL_GPU_STENCILOP_REPLACE, /**< Sets the value to reference. */ + SDL_GPU_STENCILOP_INCREMENT_AND_CLAMP, /**< Increments the current value and clamps to the maximum value. */ + SDL_GPU_STENCILOP_DECREMENT_AND_CLAMP, /**< Decrements the current value and clamps to 0. */ + SDL_GPU_STENCILOP_INVERT, /**< Bitwise-inverts the current value. */ + SDL_GPU_STENCILOP_INCREMENT_AND_WRAP, /**< Increments the current value and wraps back to 0. */ + SDL_GPU_STENCILOP_DECREMENT_AND_WRAP /**< Decrements the current value and wraps to the maximum value. */ +} SDL_GPUStencilOp; + +/** + * Specifies the operator to be used when pixels in a render target are + * blended with existing pixels in the texture. + * + * The source color is the value written by the fragment shader. The + * destination color is the value currently existing in the texture. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUBlendOp +{ + SDL_GPU_BLENDOP_INVALID, + SDL_GPU_BLENDOP_ADD, /**< (source * source_factor) + (destination * destination_factor) */ + SDL_GPU_BLENDOP_SUBTRACT, /**< (source * source_factor) - (destination * destination_factor) */ + SDL_GPU_BLENDOP_REVERSE_SUBTRACT, /**< (destination * destination_factor) - (source * source_factor) */ + SDL_GPU_BLENDOP_MIN, /**< min(source, destination) */ + SDL_GPU_BLENDOP_MAX /**< max(source, destination) */ +} SDL_GPUBlendOp; + +/** + * Specifies a blending factor to be used when pixels in a render target are + * blended with existing pixels in the texture. + * + * The source color is the value written by the fragment shader. The + * destination color is the value currently existing in the texture. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef enum SDL_GPUBlendFactor +{ + SDL_GPU_BLENDFACTOR_INVALID, + SDL_GPU_BLENDFACTOR_ZERO, /**< 0 */ + SDL_GPU_BLENDFACTOR_ONE, /**< 1 */ + SDL_GPU_BLENDFACTOR_SRC_COLOR, /**< source color */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_SRC_COLOR, /**< 1 - source color */ + SDL_GPU_BLENDFACTOR_DST_COLOR, /**< destination color */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_DST_COLOR, /**< 1 - destination color */ + SDL_GPU_BLENDFACTOR_SRC_ALPHA, /**< source alpha */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_SRC_ALPHA, /**< 1 - source alpha */ + SDL_GPU_BLENDFACTOR_DST_ALPHA, /**< destination alpha */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_DST_ALPHA, /**< 1 - destination alpha */ + SDL_GPU_BLENDFACTOR_CONSTANT_COLOR, /**< blend constant */ + SDL_GPU_BLENDFACTOR_ONE_MINUS_CONSTANT_COLOR, /**< 1 - blend constant */ + SDL_GPU_BLENDFACTOR_SRC_ALPHA_SATURATE /**< min(source alpha, 1 - destination alpha) */ +} SDL_GPUBlendFactor; + +/** + * Specifies which color components are written in a graphics pipeline. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + */ +typedef Uint8 SDL_GPUColorComponentFlags; + +#define SDL_GPU_COLORCOMPONENT_R (1u << 0) /**< the red component */ +#define SDL_GPU_COLORCOMPONENT_G (1u << 1) /**< the green component */ +#define SDL_GPU_COLORCOMPONENT_B (1u << 2) /**< the blue component */ +#define SDL_GPU_COLORCOMPONENT_A (1u << 3) /**< the alpha component */ + +/** + * Specifies a filter operation used by a sampler. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + */ +typedef enum SDL_GPUFilter +{ + SDL_GPU_FILTER_NEAREST, /**< Point filtering. */ + SDL_GPU_FILTER_LINEAR /**< Linear filtering. */ +} SDL_GPUFilter; + +/** + * Specifies a mipmap mode used by a sampler. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + */ +typedef enum SDL_GPUSamplerMipmapMode +{ + SDL_GPU_SAMPLERMIPMAPMODE_NEAREST, /**< Point filtering. */ + SDL_GPU_SAMPLERMIPMAPMODE_LINEAR /**< Linear filtering. */ +} SDL_GPUSamplerMipmapMode; + +/** + * Specifies behavior of texture sampling when the coordinates exceed the 0-1 + * range. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + */ +typedef enum SDL_GPUSamplerAddressMode +{ + SDL_GPU_SAMPLERADDRESSMODE_REPEAT, /**< Specifies that the coordinates will wrap around. */ + SDL_GPU_SAMPLERADDRESSMODE_MIRRORED_REPEAT, /**< Specifies that the coordinates will wrap around mirrored. */ + SDL_GPU_SAMPLERADDRESSMODE_CLAMP_TO_EDGE /**< Specifies that the coordinates will clamp to the 0-1 range. */ +} SDL_GPUSamplerAddressMode; + +/** + * Specifies the timing that will be used to present swapchain textures to the + * OS. + * + * VSYNC mode will always be supported. IMMEDIATE and MAILBOX modes may not be + * supported on certain systems. + * + * It is recommended to query SDL_WindowSupportsGPUPresentMode after claiming + * the window if you wish to change the present mode to IMMEDIATE or MAILBOX. + * + * - VSYNC: Waits for vblank before presenting. No tearing is possible. If + * there is a pending image to present, the new image is enqueued for + * presentation. Disallows tearing at the cost of visual latency. + * - IMMEDIATE: Immediately presents. Lowest latency option, but tearing may + * occur. + * - MAILBOX: Waits for vblank before presenting. No tearing is possible. If + * there is a pending image to present, the pending image is replaced by the + * new image. Similar to VSYNC, but with reduced visual latency. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_SetGPUSwapchainParameters + * \sa SDL_WindowSupportsGPUPresentMode + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + */ +typedef enum SDL_GPUPresentMode +{ + SDL_GPU_PRESENTMODE_VSYNC, + SDL_GPU_PRESENTMODE_IMMEDIATE, + SDL_GPU_PRESENTMODE_MAILBOX +} SDL_GPUPresentMode; + +/** + * Specifies the texture format and colorspace of the swapchain textures. + * + * SDR will always be supported. Other compositions may not be supported on + * certain systems. + * + * It is recommended to query SDL_WindowSupportsGPUSwapchainComposition after + * claiming the window if you wish to change the swapchain composition from + * SDR. + * + * - SDR: B8G8R8A8 or R8G8B8A8 swapchain. Pixel values are in sRGB encoding. + * - SDR_LINEAR: B8G8R8A8_SRGB or R8G8B8A8_SRGB swapchain. Pixel values are + * stored in memory in sRGB encoding but accessed in shaders in "linear + * sRGB" encoding which is sRGB but with a linear transfer function. + * - HDR_EXTENDED_LINEAR: R16G16B16A16_FLOAT swapchain. Pixel values are in + * extended linear sRGB encoding and permits values outside of the [0, 1] + * range. + * - HDR10_ST2084: A2R10G10B10 or A2B10G10R10 swapchain. Pixel values are in + * BT.2020 ST2084 (PQ) encoding. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_SetGPUSwapchainParameters + * \sa SDL_WindowSupportsGPUSwapchainComposition + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + */ +typedef enum SDL_GPUSwapchainComposition +{ + SDL_GPU_SWAPCHAINCOMPOSITION_SDR, + SDL_GPU_SWAPCHAINCOMPOSITION_SDR_LINEAR, + SDL_GPU_SWAPCHAINCOMPOSITION_HDR_EXTENDED_LINEAR, + SDL_GPU_SWAPCHAINCOMPOSITION_HDR10_ST2084 +} SDL_GPUSwapchainComposition; + +/* Structures */ + +/** + * A structure specifying a viewport. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_SetGPUViewport + */ +typedef struct SDL_GPUViewport +{ + float x; /**< The left offset of the viewport. */ + float y; /**< The top offset of the viewport. */ + float w; /**< The width of the viewport. */ + float h; /**< The height of the viewport. */ + float min_depth; /**< The minimum depth of the viewport. */ + float max_depth; /**< The maximum depth of the viewport. */ +} SDL_GPUViewport; + +/** + * A structure specifying parameters related to transferring data to or from a + * texture. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + */ +typedef struct SDL_GPUTextureTransferInfo +{ + SDL_GPUTransferBuffer *transfer_buffer; /**< The transfer buffer used in the transfer operation. */ + Uint32 offset; /**< The starting byte of the image data in the transfer buffer. */ + Uint32 pixels_per_row; /**< The number of pixels from one row to the next. */ + Uint32 rows_per_layer; /**< The number of rows from one layer/depth-slice to the next. */ +} SDL_GPUTextureTransferInfo; + +/** + * A structure specifying a location in a transfer buffer. + * + * Used when transferring buffer data to or from a transfer buffer. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + */ +typedef struct SDL_GPUTransferBufferLocation +{ + SDL_GPUTransferBuffer *transfer_buffer; /**< The transfer buffer used in the transfer operation. */ + Uint32 offset; /**< The starting byte of the buffer data in the transfer buffer. */ +} SDL_GPUTransferBufferLocation; + +/** + * A structure specifying a location in a texture. + * + * Used when copying data from one texture to another. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CopyGPUTextureToTexture + */ +typedef struct SDL_GPUTextureLocation +{ + SDL_GPUTexture *texture; /**< The texture used in the copy operation. */ + Uint32 mip_level; /**< The mip level index of the location. */ + Uint32 layer; /**< The layer index of the location. */ + Uint32 x; /**< The left offset of the location. */ + Uint32 y; /**< The top offset of the location. */ + Uint32 z; /**< The front offset of the location. */ +} SDL_GPUTextureLocation; + +/** + * A structure specifying a region of a texture. + * + * Used when transferring data to or from a texture. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_CreateGPUTexture + */ +typedef struct SDL_GPUTextureRegion +{ + SDL_GPUTexture *texture; /**< The texture used in the copy operation. */ + Uint32 mip_level; /**< The mip level index to transfer. */ + Uint32 layer; /**< The layer index to transfer. */ + Uint32 x; /**< The left offset of the region. */ + Uint32 y; /**< The top offset of the region. */ + Uint32 z; /**< The front offset of the region. */ + Uint32 w; /**< The width of the region. */ + Uint32 h; /**< The height of the region. */ + Uint32 d; /**< The depth of the region. */ +} SDL_GPUTextureRegion; + +/** + * A structure specifying a region of a texture used in the blit operation. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BlitGPUTexture + */ +typedef struct SDL_GPUBlitRegion +{ + SDL_GPUTexture *texture; /**< The texture. */ + Uint32 mip_level; /**< The mip level index of the region. */ + Uint32 layer_or_depth_plane; /**< The layer index or depth plane of the region. This value is treated as a layer index on 2D array and cube textures, and as a depth plane on 3D textures. */ + Uint32 x; /**< The left offset of the region. */ + Uint32 y; /**< The top offset of the region. */ + Uint32 w; /**< The width of the region. */ + Uint32 h; /**< The height of the region. */ +} SDL_GPUBlitRegion; + +/** + * A structure specifying a location in a buffer. + * + * Used when copying data between buffers. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CopyGPUBufferToBuffer + */ +typedef struct SDL_GPUBufferLocation +{ + SDL_GPUBuffer *buffer; /**< The buffer. */ + Uint32 offset; /**< The starting byte within the buffer. */ +} SDL_GPUBufferLocation; + +/** + * A structure specifying a region of a buffer. + * + * Used when transferring data to or from buffers. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + */ +typedef struct SDL_GPUBufferRegion +{ + SDL_GPUBuffer *buffer; /**< The buffer. */ + Uint32 offset; /**< The starting byte within the buffer. */ + Uint32 size; /**< The size in bytes of the region. */ +} SDL_GPUBufferRegion; + +/** + * A structure specifying the parameters of an indirect draw command. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DrawGPUPrimitivesIndirect + */ +typedef struct SDL_GPUIndirectDrawCommand +{ + Uint32 num_vertices; /**< The number of vertices to draw. */ + Uint32 num_instances; /**< The number of instances to draw. */ + Uint32 first_vertex; /**< The index of the first vertex to draw. */ + Uint32 first_instance; /**< The ID of the first instance to draw. */ +} SDL_GPUIndirectDrawCommand; + +/** + * A structure specifying the parameters of an indexed indirect draw command. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DrawGPUIndexedPrimitivesIndirect + */ +typedef struct SDL_GPUIndexedIndirectDrawCommand +{ + Uint32 num_indices; /**< The number of indices to draw per instance. */ + Uint32 num_instances; /**< The number of instances to draw. */ + Uint32 first_index; /**< The base index within the index buffer. */ + Sint32 vertex_offset; /**< The value added to the vertex index before indexing into the vertex buffer. */ + Uint32 first_instance; /**< The ID of the first instance to draw. */ +} SDL_GPUIndexedIndirectDrawCommand; + +/** + * A structure specifying the parameters of an indexed dispatch command. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DispatchGPUComputeIndirect + */ +typedef struct SDL_GPUIndirectDispatchCommand +{ + Uint32 groupcount_x; /**< The number of local workgroups to dispatch in the X dimension. */ + Uint32 groupcount_y; /**< The number of local workgroups to dispatch in the Y dimension. */ + Uint32 groupcount_z; /**< The number of local workgroups to dispatch in the Z dimension. */ +} SDL_GPUIndirectDispatchCommand; + +/* State structures */ + +/** + * A structure specifying the parameters of a sampler. + * + * Note that mip_lod_bias is a no-op for the Metal driver. For Metal, LOD bias + * must be applied via shader instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUSampler + * \sa SDL_GPUFilter + * \sa SDL_GPUSamplerMipmapMode + * \sa SDL_GPUSamplerAddressMode + * \sa SDL_GPUCompareOp + */ +typedef struct SDL_GPUSamplerCreateInfo +{ + SDL_GPUFilter min_filter; /**< The minification filter to apply to lookups. */ + SDL_GPUFilter mag_filter; /**< The magnification filter to apply to lookups. */ + SDL_GPUSamplerMipmapMode mipmap_mode; /**< The mipmap filter to apply to lookups. */ + SDL_GPUSamplerAddressMode address_mode_u; /**< The addressing mode for U coordinates outside [0, 1). */ + SDL_GPUSamplerAddressMode address_mode_v; /**< The addressing mode for V coordinates outside [0, 1). */ + SDL_GPUSamplerAddressMode address_mode_w; /**< The addressing mode for W coordinates outside [0, 1). */ + float mip_lod_bias; /**< The bias to be added to mipmap LOD calculation. */ + float max_anisotropy; /**< The anisotropy value clamp used by the sampler. If enable_anisotropy is false, this is ignored. */ + SDL_GPUCompareOp compare_op; /**< The comparison operator to apply to fetched data before filtering. */ + float min_lod; /**< Clamps the minimum of the computed LOD value. */ + float max_lod; /**< Clamps the maximum of the computed LOD value. */ + bool enable_anisotropy; /**< true to enable anisotropic filtering. */ + bool enable_compare; /**< true to enable comparison against a reference value during lookups. */ + Uint8 padding1; + Uint8 padding2; + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUSamplerCreateInfo; + +/** + * A structure specifying the parameters of vertex buffers used in a graphics + * pipeline. + * + * When you call SDL_BindGPUVertexBuffers, you specify the binding slots of + * the vertex buffers. For example if you called SDL_BindGPUVertexBuffers with + * a first_slot of 2 and num_bindings of 3, the binding slots 2, 3, 4 would be + * used by the vertex buffers you pass in. + * + * Vertex attributes are linked to buffers via the buffer_slot field of + * SDL_GPUVertexAttribute. For example, if an attribute has a buffer_slot of + * 0, then that attribute belongs to the vertex buffer bound at slot 0. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUVertexAttribute + * \sa SDL_GPUVertexInputRate + */ +typedef struct SDL_GPUVertexBufferDescription +{ + Uint32 slot; /**< The binding slot of the vertex buffer. */ + Uint32 pitch; /**< The size of a single element + the offset between elements. */ + SDL_GPUVertexInputRate input_rate; /**< Whether attribute addressing is a function of the vertex index or instance index. */ + Uint32 instance_step_rate; /**< Reserved for future use. Must be set to 0. */ +} SDL_GPUVertexBufferDescription; + +/** + * A structure specifying a vertex attribute. + * + * All vertex attribute locations provided to an SDL_GPUVertexInputState must + * be unique. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUVertexBufferDescription + * \sa SDL_GPUVertexInputState + * \sa SDL_GPUVertexElementFormat + */ +typedef struct SDL_GPUVertexAttribute +{ + Uint32 location; /**< The shader input location index. */ + Uint32 buffer_slot; /**< The binding slot of the associated vertex buffer. */ + SDL_GPUVertexElementFormat format; /**< The size and type of the attribute data. */ + Uint32 offset; /**< The byte offset of this attribute relative to the start of the vertex element. */ +} SDL_GPUVertexAttribute; + +/** + * A structure specifying the parameters of a graphics pipeline vertex input + * state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + * \sa SDL_GPUVertexBufferDescription + * \sa SDL_GPUVertexAttribute + */ +typedef struct SDL_GPUVertexInputState +{ + const SDL_GPUVertexBufferDescription *vertex_buffer_descriptions; /**< A pointer to an array of vertex buffer descriptions. */ + Uint32 num_vertex_buffers; /**< The number of vertex buffer descriptions in the above array. */ + const SDL_GPUVertexAttribute *vertex_attributes; /**< A pointer to an array of vertex attribute descriptions. */ + Uint32 num_vertex_attributes; /**< The number of vertex attribute descriptions in the above array. */ +} SDL_GPUVertexInputState; + +/** + * A structure specifying the stencil operation state of a graphics pipeline. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUDepthStencilState + */ +typedef struct SDL_GPUStencilOpState +{ + SDL_GPUStencilOp fail_op; /**< The action performed on samples that fail the stencil test. */ + SDL_GPUStencilOp pass_op; /**< The action performed on samples that pass the depth and stencil tests. */ + SDL_GPUStencilOp depth_fail_op; /**< The action performed on samples that pass the stencil test and fail the depth test. */ + SDL_GPUCompareOp compare_op; /**< The comparison operator used in the stencil test. */ +} SDL_GPUStencilOpState; + +/** + * A structure specifying the blend state of a color target. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUColorTargetDescription + */ +typedef struct SDL_GPUColorTargetBlendState +{ + SDL_GPUBlendFactor src_color_blendfactor; /**< The value to be multiplied by the source RGB value. */ + SDL_GPUBlendFactor dst_color_blendfactor; /**< The value to be multiplied by the destination RGB value. */ + SDL_GPUBlendOp color_blend_op; /**< The blend operation for the RGB components. */ + SDL_GPUBlendFactor src_alpha_blendfactor; /**< The value to be multiplied by the source alpha. */ + SDL_GPUBlendFactor dst_alpha_blendfactor; /**< The value to be multiplied by the destination alpha. */ + SDL_GPUBlendOp alpha_blend_op; /**< The blend operation for the alpha component. */ + SDL_GPUColorComponentFlags color_write_mask; /**< A bitmask specifying which of the RGBA components are enabled for writing. Writes to all channels if enable_color_write_mask is false. */ + bool enable_blend; /**< Whether blending is enabled for the color target. */ + bool enable_color_write_mask; /**< Whether the color write mask is enabled. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPUColorTargetBlendState; + + +/** + * A structure specifying code and metadata for creating a shader object. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +typedef struct SDL_GPUShaderCreateInfo +{ + size_t code_size; /**< The size in bytes of the code pointed to. */ + const Uint8 *code; /**< A pointer to shader code. */ + const char *entrypoint; /**< A pointer to a null-terminated UTF-8 string specifying the entry point function name for the shader. */ + SDL_GPUShaderFormat format; /**< The format of the shader code. */ + SDL_GPUShaderStage stage; /**< The stage the shader program corresponds to. */ + Uint32 num_samplers; /**< The number of samplers defined in the shader. */ + Uint32 num_storage_textures; /**< The number of storage textures defined in the shader. */ + Uint32 num_storage_buffers; /**< The number of storage buffers defined in the shader. */ + Uint32 num_uniform_buffers; /**< The number of uniform buffers defined in the shader. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUShaderCreateInfo; + +/** + * A structure specifying the parameters of a texture. + * + * Usage flags can be bitwise OR'd together for combinations of usages. Note + * that certain usage combinations are invalid, for example SAMPLER and + * GRAPHICS_STORAGE. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + * \sa SDL_GPUTextureType + * \sa SDL_GPUTextureFormat + * \sa SDL_GPUTextureUsageFlags + * \sa SDL_GPUSampleCount + */ +typedef struct SDL_GPUTextureCreateInfo +{ + SDL_GPUTextureType type; /**< The base dimensionality of the texture. */ + SDL_GPUTextureFormat format; /**< The pixel format of the texture. */ + SDL_GPUTextureUsageFlags usage; /**< How the texture is intended to be used by the client. */ + Uint32 width; /**< The width of the texture. */ + Uint32 height; /**< The height of the texture. */ + Uint32 layer_count_or_depth; /**< The layer count or depth of the texture. This value is treated as a layer count on 2D array textures, and as a depth value on 3D textures. */ + Uint32 num_levels; /**< The number of mip levels in the texture. */ + SDL_GPUSampleCount sample_count; /**< The number of samples per texel. Only applies if the texture is used as a render target. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUTextureCreateInfo; + +/** + * A structure specifying the parameters of a buffer. + * + * Usage flags can be bitwise OR'd together for combinations of usages. Note + * that certain combinations are invalid, for example VERTEX and INDEX. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + * \sa SDL_GPUBufferUsageFlags + */ +typedef struct SDL_GPUBufferCreateInfo +{ + SDL_GPUBufferUsageFlags usage; /**< How the buffer is intended to be used by the client. */ + Uint32 size; /**< The size in bytes of the buffer. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUBufferCreateInfo; + +/** + * A structure specifying the parameters of a transfer buffer. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTransferBuffer + */ +typedef struct SDL_GPUTransferBufferCreateInfo +{ + SDL_GPUTransferBufferUsage usage; /**< How the transfer buffer is intended to be used by the client. */ + Uint32 size; /**< The size in bytes of the transfer buffer. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUTransferBufferCreateInfo; + +/* Pipeline state structures */ + +/** + * A structure specifying the parameters of the graphics pipeline rasterizer + * state. + * + * Note that SDL_GPU_FILLMODE_LINE is not supported on many Android devices. + * For those devices, the fill mode will automatically fall back to FILL. + * + * Also note that the D3D12 driver will enable depth clamping even if + * enable_depth_clip is true. If you need this clamp+clip behavior, consider + * enabling depth clip and then manually clamping depth in your fragment + * shaders on Metal and Vulkan. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + */ +typedef struct SDL_GPURasterizerState +{ + SDL_GPUFillMode fill_mode; /**< Whether polygons will be filled in or drawn as lines. */ + SDL_GPUCullMode cull_mode; /**< The facing direction in which triangles will be culled. */ + SDL_GPUFrontFace front_face; /**< The vertex winding that will cause a triangle to be determined as front-facing. */ + float depth_bias_constant_factor; /**< A scalar factor controlling the depth value added to each fragment. */ + float depth_bias_clamp; /**< The maximum depth bias of a fragment. */ + float depth_bias_slope_factor; /**< A scalar factor applied to a fragment's slope in depth calculations. */ + bool enable_depth_bias; /**< true to bias fragment depth values. */ + bool enable_depth_clip; /**< true to enable depth clip, false to enable depth clamp. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPURasterizerState; + +/** + * A structure specifying the parameters of the graphics pipeline multisample + * state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + */ +typedef struct SDL_GPUMultisampleState +{ + SDL_GPUSampleCount sample_count; /**< The number of samples to be used in rasterization. */ + Uint32 sample_mask; /**< Reserved for future use. Must be set to 0. */ + bool enable_mask; /**< Reserved for future use. Must be set to false. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUMultisampleState; + +/** + * A structure specifying the parameters of the graphics pipeline depth + * stencil state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + */ +typedef struct SDL_GPUDepthStencilState +{ + SDL_GPUCompareOp compare_op; /**< The comparison operator used for depth testing. */ + SDL_GPUStencilOpState back_stencil_state; /**< The stencil op state for back-facing triangles. */ + SDL_GPUStencilOpState front_stencil_state; /**< The stencil op state for front-facing triangles. */ + Uint8 compare_mask; /**< Selects the bits of the stencil values participating in the stencil test. */ + Uint8 write_mask; /**< Selects the bits of the stencil values updated by the stencil test. */ + bool enable_depth_test; /**< true enables the depth test. */ + bool enable_depth_write; /**< true enables depth writes. Depth writes are always disabled when enable_depth_test is false. */ + bool enable_stencil_test; /**< true enables the stencil test. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUDepthStencilState; + +/** + * A structure specifying the parameters of color targets used in a graphics + * pipeline. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineTargetInfo + */ +typedef struct SDL_GPUColorTargetDescription +{ + SDL_GPUTextureFormat format; /**< The pixel format of the texture to be used as a color target. */ + SDL_GPUColorTargetBlendState blend_state; /**< The blend state to be used for the color target. */ +} SDL_GPUColorTargetDescription; + +/** + * A structure specifying the descriptions of render targets used in a + * graphics pipeline. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GPUGraphicsPipelineCreateInfo + * \sa SDL_GPUColorTargetDescription + * \sa SDL_GPUTextureFormat + */ +typedef struct SDL_GPUGraphicsPipelineTargetInfo +{ + const SDL_GPUColorTargetDescription *color_target_descriptions; /**< A pointer to an array of color target descriptions. */ + Uint32 num_color_targets; /**< The number of color target descriptions in the above array. */ + SDL_GPUTextureFormat depth_stencil_format; /**< The pixel format of the depth-stencil target. Ignored if has_depth_stencil_target is false. */ + bool has_depth_stencil_target; /**< true specifies that the pipeline uses a depth-stencil target. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUGraphicsPipelineTargetInfo; + +/** + * A structure specifying the parameters of a graphics pipeline state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_GPUShader + * \sa SDL_GPUVertexInputState + * \sa SDL_GPUPrimitiveType + * \sa SDL_GPURasterizerState + * \sa SDL_GPUMultisampleState + * \sa SDL_GPUDepthStencilState + * \sa SDL_GPUGraphicsPipelineTargetInfo + */ +typedef struct SDL_GPUGraphicsPipelineCreateInfo +{ + SDL_GPUShader *vertex_shader; /**< The vertex shader used by the graphics pipeline. */ + SDL_GPUShader *fragment_shader; /**< The fragment shader used by the graphics pipeline. */ + SDL_GPUVertexInputState vertex_input_state; /**< The vertex layout of the graphics pipeline. */ + SDL_GPUPrimitiveType primitive_type; /**< The primitive topology of the graphics pipeline. */ + SDL_GPURasterizerState rasterizer_state; /**< The rasterizer state of the graphics pipeline. */ + SDL_GPUMultisampleState multisample_state; /**< The multisample state of the graphics pipeline. */ + SDL_GPUDepthStencilState depth_stencil_state; /**< The depth-stencil state of the graphics pipeline. */ + SDL_GPUGraphicsPipelineTargetInfo target_info; /**< Formats and blend modes for the render targets of the graphics pipeline. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUGraphicsPipelineCreateInfo; + +/** + * A structure specifying the parameters of a compute pipeline state. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUComputePipeline + * \sa SDL_GPUShaderFormat + */ +typedef struct SDL_GPUComputePipelineCreateInfo +{ + size_t code_size; /**< The size in bytes of the compute shader code pointed to. */ + const Uint8 *code; /**< A pointer to compute shader code. */ + const char *entrypoint; /**< A pointer to a null-terminated UTF-8 string specifying the entry point function name for the shader. */ + SDL_GPUShaderFormat format; /**< The format of the compute shader code. */ + Uint32 num_samplers; /**< The number of samplers defined in the shader. */ + Uint32 num_readonly_storage_textures; /**< The number of readonly storage textures defined in the shader. */ + Uint32 num_readonly_storage_buffers; /**< The number of readonly storage buffers defined in the shader. */ + Uint32 num_readwrite_storage_textures; /**< The number of read-write storage textures defined in the shader. */ + Uint32 num_readwrite_storage_buffers; /**< The number of read-write storage buffers defined in the shader. */ + Uint32 num_uniform_buffers; /**< The number of uniform buffers defined in the shader. */ + Uint32 threadcount_x; /**< The number of threads in the X dimension. This should match the value in the shader. */ + Uint32 threadcount_y; /**< The number of threads in the Y dimension. This should match the value in the shader. */ + Uint32 threadcount_z; /**< The number of threads in the Z dimension. This should match the value in the shader. */ + + SDL_PropertiesID props; /**< A properties ID for extensions. Should be 0 if no extensions are needed. */ +} SDL_GPUComputePipelineCreateInfo; + +/** + * A structure specifying the parameters of a color target used by a render + * pass. + * + * The load_op field determines what is done with the texture at the beginning + * of the render pass. + * + * - LOAD: Loads the data currently in the texture. Not recommended for + * multisample textures as it requires significant memory bandwidth. + * - CLEAR: Clears the texture to a single color. + * - DONT_CARE: The driver will do whatever it wants with the texture memory. + * This is a good option if you know that every single pixel will be touched + * in the render pass. + * + * The store_op field determines what is done with the color results of the + * render pass. + * + * - STORE: Stores the results of the render pass in the texture. Not + * recommended for multisample textures as it requires significant memory + * bandwidth. + * - DONT_CARE: The driver will do whatever it wants with the texture memory. + * This is often a good option for depth/stencil textures. + * - RESOLVE: Resolves a multisample texture into resolve_texture, which must + * have a sample count of 1. Then the driver may discard the multisample + * texture memory. This is the most performant method of resolving a + * multisample target. + * - RESOLVE_AND_STORE: Resolves a multisample texture into the + * resolve_texture, which must have a sample count of 1. Then the driver + * stores the multisample texture's contents. Not recommended as it requires + * significant memory bandwidth. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef struct SDL_GPUColorTargetInfo +{ + SDL_GPUTexture *texture; /**< The texture that will be used as a color target by a render pass. */ + Uint32 mip_level; /**< The mip level to use as a color target. */ + Uint32 layer_or_depth_plane; /**< The layer index or depth plane to use as a color target. This value is treated as a layer index on 2D array and cube textures, and as a depth plane on 3D textures. */ + SDL_FColor clear_color; /**< The color to clear the color target to at the start of the render pass. Ignored if SDL_GPU_LOADOP_CLEAR is not used. */ + SDL_GPULoadOp load_op; /**< What is done with the contents of the color target at the beginning of the render pass. */ + SDL_GPUStoreOp store_op; /**< What is done with the results of the render pass. */ + SDL_GPUTexture *resolve_texture; /**< The texture that will receive the results of a multisample resolve operation. Ignored if a RESOLVE* store_op is not used. */ + Uint32 resolve_mip_level; /**< The mip level of the resolve texture to use for the resolve operation. Ignored if a RESOLVE* store_op is not used. */ + Uint32 resolve_layer; /**< The layer index of the resolve texture to use for the resolve operation. Ignored if a RESOLVE* store_op is not used. */ + bool cycle; /**< true cycles the texture if the texture is bound and load_op is not LOAD */ + bool cycle_resolve_texture; /**< true cycles the resolve texture if the resolve texture is bound. Ignored if a RESOLVE* store_op is not used. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPUColorTargetInfo; + +/** + * A structure specifying the parameters of a depth-stencil target used by a + * render pass. + * + * The load_op field determines what is done with the depth contents of the + * texture at the beginning of the render pass. + * + * - LOAD: Loads the depth values currently in the texture. + * - CLEAR: Clears the texture to a single depth. + * - DONT_CARE: The driver will do whatever it wants with the memory. This is + * a good option if you know that every single pixel will be touched in the + * render pass. + * + * The store_op field determines what is done with the depth results of the + * render pass. + * + * - STORE: Stores the depth results in the texture. + * - DONT_CARE: The driver will do whatever it wants with the depth results. + * This is often a good option for depth/stencil textures that don't need to + * be reused again. + * + * The stencil_load_op field determines what is done with the stencil contents + * of the texture at the beginning of the render pass. + * + * - LOAD: Loads the stencil values currently in the texture. + * - CLEAR: Clears the stencil values to a single value. + * - DONT_CARE: The driver will do whatever it wants with the memory. This is + * a good option if you know that every single pixel will be touched in the + * render pass. + * + * The stencil_store_op field determines what is done with the stencil results + * of the render pass. + * + * - STORE: Stores the stencil results in the texture. + * - DONT_CARE: The driver will do whatever it wants with the stencil results. + * This is often a good option for depth/stencil textures that don't need to + * be reused again. + * + * Note that depth/stencil targets do not support multisample resolves. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPURenderPass + */ +typedef struct SDL_GPUDepthStencilTargetInfo +{ + SDL_GPUTexture *texture; /**< The texture that will be used as the depth stencil target by the render pass. */ + float clear_depth; /**< The value to clear the depth component to at the beginning of the render pass. Ignored if SDL_GPU_LOADOP_CLEAR is not used. */ + SDL_GPULoadOp load_op; /**< What is done with the depth contents at the beginning of the render pass. */ + SDL_GPUStoreOp store_op; /**< What is done with the depth results of the render pass. */ + SDL_GPULoadOp stencil_load_op; /**< What is done with the stencil contents at the beginning of the render pass. */ + SDL_GPUStoreOp stencil_store_op; /**< What is done with the stencil results of the render pass. */ + bool cycle; /**< true cycles the texture if the texture is bound and any load ops are not LOAD */ + Uint8 clear_stencil; /**< The value to clear the stencil component to at the beginning of the render pass. Ignored if SDL_GPU_LOADOP_CLEAR is not used. */ + Uint8 padding1; + Uint8 padding2; +} SDL_GPUDepthStencilTargetInfo; + +/** + * A structure containing parameters for a blit command. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BlitGPUTexture + */ +typedef struct SDL_GPUBlitInfo { + SDL_GPUBlitRegion source; /**< The source region for the blit. */ + SDL_GPUBlitRegion destination; /**< The destination region for the blit. */ + SDL_GPULoadOp load_op; /**< What is done with the contents of the destination before the blit. */ + SDL_FColor clear_color; /**< The color to clear the destination region to before the blit. Ignored if load_op is not SDL_GPU_LOADOP_CLEAR. */ + SDL_FlipMode flip_mode; /**< The flip mode for the source region. */ + SDL_GPUFilter filter; /**< The filter mode used when blitting. */ + bool cycle; /**< true cycles the destination texture if it is already bound. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUBlitInfo; + +/* Binding structs */ + +/** + * A structure specifying parameters in a buffer binding call. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BindGPUVertexBuffers + * \sa SDL_BindGPUIndexBuffer + */ +typedef struct SDL_GPUBufferBinding +{ + SDL_GPUBuffer *buffer; /**< The buffer to bind. Must have been created with SDL_GPU_BUFFERUSAGE_VERTEX for SDL_BindGPUVertexBuffers, or SDL_GPU_BUFFERUSAGE_INDEX for SDL_BindGPUIndexBuffer. */ + Uint32 offset; /**< The starting byte of the data to bind in the buffer. */ +} SDL_GPUBufferBinding; + +/** + * A structure specifying parameters in a sampler binding call. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUFragmentSamplers + */ +typedef struct SDL_GPUTextureSamplerBinding +{ + SDL_GPUTexture *texture; /**< The texture to bind. Must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. */ + SDL_GPUSampler *sampler; /**< The sampler to bind. */ +} SDL_GPUTextureSamplerBinding; + +/** + * A structure specifying parameters related to binding buffers in a compute + * pass. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUComputePass + */ +typedef struct SDL_GPUStorageBufferReadWriteBinding +{ + SDL_GPUBuffer *buffer; /**< The buffer to bind. Must have been created with SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_WRITE. */ + bool cycle; /**< true cycles the buffer if it is already bound. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUStorageBufferReadWriteBinding; + +/** + * A structure specifying parameters related to binding textures in a compute + * pass. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_BeginGPUComputePass + */ +typedef struct SDL_GPUStorageTextureReadWriteBinding +{ + SDL_GPUTexture *texture; /**< The texture to bind. Must have been created with SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_WRITE or SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE. */ + Uint32 mip_level; /**< The mip level index to bind. */ + Uint32 layer; /**< The layer index to bind. */ + bool cycle; /**< true cycles the texture if it is already bound. */ + Uint8 padding1; + Uint8 padding2; + Uint8 padding3; +} SDL_GPUStorageTextureReadWriteBinding; + +/* Functions */ + +/* Device */ + +/** + * Checks for GPU runtime support. + * + * \param format_flags a bitflag indicating which shader formats the app is + * able to provide. + * \param name the preferred GPU driver, or NULL to let SDL pick the optimal + * driver. + * \returns true if supported, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUSupportsShaderFormats( + SDL_GPUShaderFormat format_flags, + const char *name); + +/** + * Checks for GPU runtime support. + * + * \param props the properties to use. + * \returns true if supported, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUDeviceWithProperties + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUSupportsProperties( + SDL_PropertiesID props); + +/** + * Creates a GPU context. + * + * \param format_flags a bitflag indicating which shader formats the app is + * able to provide. + * \param debug_mode enable debug mode properties and validations. + * \param name the preferred GPU driver, or NULL to let SDL pick the optimal + * driver. + * \returns a GPU context on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGPUShaderFormats + * \sa SDL_GetGPUDeviceDriver + * \sa SDL_DestroyGPUDevice + * \sa SDL_GPUSupportsShaderFormats + */ +extern SDL_DECLSPEC SDL_GPUDevice * SDLCALL SDL_CreateGPUDevice( + SDL_GPUShaderFormat format_flags, + bool debug_mode, + const char *name); + +/** + * Creates a GPU context. + * + * These are the supported properties: + * + * - `SDL_PROP_GPU_DEVICE_CREATE_DEBUGMODE_BOOLEAN`: enable debug mode + * properties and validations, defaults to true. + * - `SDL_PROP_GPU_DEVICE_CREATE_PREFERLOWPOWER_BOOLEAN`: enable to prefer + * energy efficiency over maximum GPU performance, defaults to false. + * - `SDL_PROP_GPU_DEVICE_CREATE_NAME_STRING`: the name of the GPU driver to + * use, if a specific one is desired. + * + * These are the current shader format properties: + * + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_PRIVATE_BOOLEAN`: The app is able to + * provide shaders for an NDA platform. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_SPIRV_BOOLEAN`: The app is able to + * provide SPIR-V shaders if applicable. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXBC_BOOLEAN`: The app is able to + * provide DXBC shaders if applicable + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXIL_BOOLEAN`: The app is able to + * provide DXIL shaders if applicable. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_MSL_BOOLEAN`: The app is able to + * provide MSL shaders if applicable. + * - `SDL_PROP_GPU_DEVICE_CREATE_SHADERS_METALLIB_BOOLEAN`: The app is able to + * provide Metal shader libraries if applicable. + * + * With the D3D12 renderer: + * + * - `SDL_PROP_GPU_DEVICE_CREATE_D3D12_SEMANTIC_NAME_STRING`: the prefix to + * use for all vertex semantics, default is "TEXCOORD". + * + * \param props the properties to use. + * \returns a GPU context on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGPUShaderFormats + * \sa SDL_GetGPUDeviceDriver + * \sa SDL_DestroyGPUDevice + * \sa SDL_GPUSupportsProperties + */ +extern SDL_DECLSPEC SDL_GPUDevice * SDLCALL SDL_CreateGPUDeviceWithProperties( + SDL_PropertiesID props); + +#define SDL_PROP_GPU_DEVICE_CREATE_DEBUGMODE_BOOLEAN "SDL.gpu.device.create.debugmode" +#define SDL_PROP_GPU_DEVICE_CREATE_PREFERLOWPOWER_BOOLEAN "SDL.gpu.device.create.preferlowpower" +#define SDL_PROP_GPU_DEVICE_CREATE_NAME_STRING "SDL.gpu.device.create.name" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_PRIVATE_BOOLEAN "SDL.gpu.device.create.shaders.private" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_SPIRV_BOOLEAN "SDL.gpu.device.create.shaders.spirv" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXBC_BOOLEAN "SDL.gpu.device.create.shaders.dxbc" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_DXIL_BOOLEAN "SDL.gpu.device.create.shaders.dxil" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_MSL_BOOLEAN "SDL.gpu.device.create.shaders.msl" +#define SDL_PROP_GPU_DEVICE_CREATE_SHADERS_METALLIB_BOOLEAN "SDL.gpu.device.create.shaders.metallib" +#define SDL_PROP_GPU_DEVICE_CREATE_D3D12_SEMANTIC_NAME_STRING "SDL.gpu.device.create.d3d12.semantic" + +/** + * Destroys a GPU context previously returned by SDL_CreateGPUDevice. + * + * \param device a GPU Context to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUDevice + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyGPUDevice(SDL_GPUDevice *device); + +/** + * Get the number of GPU drivers compiled into SDL. + * + * \returns the number of built in GPU drivers. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGPUDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumGPUDrivers(void); + +/** + * Get the name of a built in GPU driver. + * + * The GPU drivers are presented in the order in which they are normally + * checked during initialization. + * + * The names of drivers are all simple, low-ASCII identifiers, like "vulkan", + * "metal" or "direct3d12". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of a GPU driver. + * \returns the name of the GPU driver with the given **index**. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumGPUDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGPUDriver(int index); + +/** + * Returns the name of the backend used to create this GPU context. + * + * \param device a GPU context to query. + * \returns the name of the device's driver, or NULL on error. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetGPUDeviceDriver(SDL_GPUDevice *device); + +/** + * Returns the supported shader formats for this GPU context. + * + * \param device a GPU context to query. + * \returns a bitflag indicating which shader formats the driver is able to + * consume. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GPUShaderFormat SDLCALL SDL_GetGPUShaderFormats(SDL_GPUDevice *device); + +/* State Creation */ + +/** + * Creates a pipeline object to be used in a compute workflow. + * + * Shader resource bindings must be authored to follow a particular order + * depending on the shader format. + * + * For SPIR-V shaders, use the following resource sets: + * + * - 0: Sampled textures, followed by read-only storage textures, followed by + * read-only storage buffers + * - 1: Read-write storage textures, followed by read-write storage buffers + * - 2: Uniform buffers + * + * For DXBC and DXIL shaders, use the following register order: + * + * - (t[n], space0): Sampled textures, followed by read-only storage textures, + * followed by read-only storage buffers + * - (u[n], space1): Read-write storage textures, followed by read-write + * storage buffers + * - (b[n], space2): Uniform buffers + * + * For MSL/metallib, use the following order: + * + * - [[buffer]]: Uniform buffers, followed by read-only storage buffers, + * followed by read-write storage buffers + * - [[texture]]: Sampled textures, followed by read-only storage textures, + * followed by read-write storage textures + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_COMPUTEPIPELINE_CREATE_NAME_STRING`: a name that can be + * displayed in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the compute pipeline to + * create. + * \returns a compute pipeline object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindGPUComputePipeline + * \sa SDL_ReleaseGPUComputePipeline + */ +extern SDL_DECLSPEC SDL_GPUComputePipeline * SDLCALL SDL_CreateGPUComputePipeline( + SDL_GPUDevice *device, + const SDL_GPUComputePipelineCreateInfo *createinfo); + +#define SDL_PROP_GPU_COMPUTEPIPELINE_CREATE_NAME_STRING "SDL.gpu.computepipeline.create.name" + +/** + * Creates a pipeline object to be used in a graphics workflow. + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_GRAPHICSPIPELINE_CREATE_NAME_STRING`: a name that can be + * displayed in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the graphics pipeline to + * create. + * \returns a graphics pipeline object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + * \sa SDL_BindGPUGraphicsPipeline + * \sa SDL_ReleaseGPUGraphicsPipeline + */ +extern SDL_DECLSPEC SDL_GPUGraphicsPipeline * SDLCALL SDL_CreateGPUGraphicsPipeline( + SDL_GPUDevice *device, + const SDL_GPUGraphicsPipelineCreateInfo *createinfo); + +#define SDL_PROP_GPU_GRAPHICSPIPELINE_CREATE_NAME_STRING "SDL.gpu.graphicspipeline.create.name" + +/** + * Creates a sampler object to be used when binding textures in a graphics + * workflow. + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_SAMPLER_CREATE_NAME_STRING`: a name that can be displayed + * in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the sampler to create. + * \returns a sampler object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_ReleaseGPUSampler + */ +extern SDL_DECLSPEC SDL_GPUSampler * SDLCALL SDL_CreateGPUSampler( + SDL_GPUDevice *device, + const SDL_GPUSamplerCreateInfo *createinfo); + +#define SDL_PROP_GPU_SAMPLER_CREATE_NAME_STRING "SDL.gpu.sampler.create.name" + +/** + * Creates a shader to be used when creating a graphics pipeline. + * + * Shader resource bindings must be authored to follow a particular order + * depending on the shader format. + * + * For SPIR-V shaders, use the following resource sets: + * + * For vertex shaders: + * + * - 0: Sampled textures, followed by storage textures, followed by storage + * buffers + * - 1: Uniform buffers + * + * For fragment shaders: + * + * - 2: Sampled textures, followed by storage textures, followed by storage + * buffers + * - 3: Uniform buffers + * + * For DXBC and DXIL shaders, use the following register order: + * + * For vertex shaders: + * + * - (t[n], space0): Sampled textures, followed by storage textures, followed + * by storage buffers + * - (s[n], space0): Samplers with indices corresponding to the sampled + * textures + * - (b[n], space1): Uniform buffers + * + * For pixel shaders: + * + * - (t[n], space2): Sampled textures, followed by storage textures, followed + * by storage buffers + * - (s[n], space2): Samplers with indices corresponding to the sampled + * textures + * - (b[n], space3): Uniform buffers + * + * For MSL/metallib, use the following order: + * + * - [[texture]]: Sampled textures, followed by storage textures + * - [[sampler]]: Samplers with indices corresponding to the sampled textures + * - [[buffer]]: Uniform buffers, followed by storage buffers. Vertex buffer 0 + * is bound at [[buffer(14)]], vertex buffer 1 at [[buffer(15)]], and so on. + * Rather than manually authoring vertex buffer indices, use the + * [[stage_in]] attribute which will automatically use the vertex input + * information from the SDL_GPUGraphicsPipeline. + * + * Shader semantics other than system-value semantics do not matter in D3D12 + * and for ease of use the SDL implementation assumes that non system-value + * semantics will all be TEXCOORD. If you are using HLSL as the shader source + * language, your vertex semantics should start at TEXCOORD0 and increment + * like so: TEXCOORD1, TEXCOORD2, etc. If you wish to change the semantic + * prefix to something other than TEXCOORD you can use + * SDL_PROP_GPU_DEVICE_CREATE_D3D12_SEMANTIC_NAME_STRING with + * SDL_CreateGPUDeviceWithProperties(). + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_SHADER_CREATE_NAME_STRING`: a name that can be displayed in + * debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the shader to create. + * \returns a shader object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUGraphicsPipeline + * \sa SDL_ReleaseGPUShader + */ +extern SDL_DECLSPEC SDL_GPUShader * SDLCALL SDL_CreateGPUShader( + SDL_GPUDevice *device, + const SDL_GPUShaderCreateInfo *createinfo); + +#define SDL_PROP_GPU_SHADER_CREATE_NAME_STRING "SDL.gpu.shader.create.name" + +/** + * Creates a texture object to be used in graphics or compute workflows. + * + * The contents of this texture are undefined until data is written to the + * texture. + * + * Note that certain combinations of usage flags are invalid. For example, a + * texture cannot have both the SAMPLER and GRAPHICS_STORAGE_READ flags. + * + * If you request a sample count higher than the hardware supports, the + * implementation will automatically fall back to the highest available sample + * count. + * + * There are optional properties that can be provided through + * SDL_GPUTextureCreateInfo's `props`. These are the supported properties: + * + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_R_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this red intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_G_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this green intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_B_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this blue intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_A_FLOAT`: (Direct3D 12 only) if + * the texture usage is SDL_GPU_TEXTUREUSAGE_COLOR_TARGET, clear the texture + * to a color with this alpha intensity. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_DEPTH_FLOAT`: (Direct3D 12 only) + * if the texture usage is SDL_GPU_TEXTUREUSAGE_DEPTH_STENCIL_TARGET, clear + * the texture to a depth of this value. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_STENCIL_NUMBER`: (Direct3D 12 + * only) if the texture usage is SDL_GPU_TEXTUREUSAGE_DEPTH_STENCIL_TARGET, + * clear the texture to a stencil of this Uint8 value. Defaults to zero. + * - `SDL_PROP_GPU_TEXTURE_CREATE_NAME_STRING`: a name that can be displayed + * in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the texture to create. + * \returns a texture object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_BindGPUVertexSamplers + * \sa SDL_BindGPUVertexStorageTextures + * \sa SDL_BindGPUFragmentSamplers + * \sa SDL_BindGPUFragmentStorageTextures + * \sa SDL_BindGPUComputeStorageTextures + * \sa SDL_BlitGPUTexture + * \sa SDL_ReleaseGPUTexture + * \sa SDL_GPUTextureSupportsFormat + */ +extern SDL_DECLSPEC SDL_GPUTexture * SDLCALL SDL_CreateGPUTexture( + SDL_GPUDevice *device, + const SDL_GPUTextureCreateInfo *createinfo); + +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_R_FLOAT "SDL.gpu.texture.create.d3d12.clear.r" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_G_FLOAT "SDL.gpu.texture.create.d3d12.clear.g" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_B_FLOAT "SDL.gpu.texture.create.d3d12.clear.b" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_A_FLOAT "SDL.gpu.texture.create.d3d12.clear.a" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_DEPTH_FLOAT "SDL.gpu.texture.create.d3d12.clear.depth" +#define SDL_PROP_GPU_TEXTURE_CREATE_D3D12_CLEAR_STENCIL_NUMBER "SDL.gpu.texture.create.d3d12.clear.stencil" +#define SDL_PROP_GPU_TEXTURE_CREATE_NAME_STRING "SDL.gpu.texture.create.name" + +/** + * Creates a buffer object to be used in graphics or compute workflows. + * + * The contents of this buffer are undefined until data is written to the + * buffer. + * + * Note that certain combinations of usage flags are invalid. For example, a + * buffer cannot have both the VERTEX and INDEX flags. + * + * If you use a STORAGE flag, the data in the buffer must respect std140 + * layout conventions. In practical terms this means you must ensure that vec3 + * and vec4 fields are 16-byte aligned. + * + * For better understanding of underlying concepts and memory management with + * SDL GPU API, you may refer + * [this blog post](https://moonside.games/posts/sdl-gpu-concepts-cycling/) + * . + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_BUFFER_CREATE_NAME_STRING`: a name that can be displayed in + * debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the buffer to create. + * \returns a buffer object on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_CopyGPUBufferToBuffer + * \sa SDL_BindGPUVertexBuffers + * \sa SDL_BindGPUIndexBuffer + * \sa SDL_BindGPUVertexStorageBuffers + * \sa SDL_BindGPUFragmentStorageBuffers + * \sa SDL_DrawGPUPrimitivesIndirect + * \sa SDL_DrawGPUIndexedPrimitivesIndirect + * \sa SDL_BindGPUComputeStorageBuffers + * \sa SDL_DispatchGPUComputeIndirect + * \sa SDL_ReleaseGPUBuffer + */ +extern SDL_DECLSPEC SDL_GPUBuffer * SDLCALL SDL_CreateGPUBuffer( + SDL_GPUDevice *device, + const SDL_GPUBufferCreateInfo *createinfo); + +#define SDL_PROP_GPU_BUFFER_CREATE_NAME_STRING "SDL.gpu.buffer.create.name" + +/** + * Creates a transfer buffer to be used when uploading to or downloading from + * graphics resources. + * + * Download buffers can be particularly expensive to create, so it is good + * practice to reuse them if data will be downloaded regularly. + * + * There are optional properties that can be provided through `props`. These + * are the supported properties: + * + * - `SDL_PROP_GPU_TRANSFERBUFFER_CREATE_NAME_STRING`: a name that can be + * displayed in debugging tools. + * + * \param device a GPU Context. + * \param createinfo a struct describing the state of the transfer buffer to + * create. + * \returns a transfer buffer on success, or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUBuffer + * \sa SDL_DownloadFromGPUBuffer + * \sa SDL_UploadToGPUTexture + * \sa SDL_DownloadFromGPUTexture + * \sa SDL_ReleaseGPUTransferBuffer + */ +extern SDL_DECLSPEC SDL_GPUTransferBuffer * SDLCALL SDL_CreateGPUTransferBuffer( + SDL_GPUDevice *device, + const SDL_GPUTransferBufferCreateInfo *createinfo); + +#define SDL_PROP_GPU_TRANSFERBUFFER_CREATE_NAME_STRING "SDL.gpu.transferbuffer.create.name" + +/* Debug Naming */ + +/** + * Sets an arbitrary string constant to label a buffer. + * + * You should use SDL_PROP_GPU_BUFFER_CREATE_NAME_STRING with + * SDL_CreateGPUBuffer instead of this function to avoid thread safety issues. + * + * \param device a GPU Context. + * \param buffer a buffer to attach the name to. + * \param text a UTF-8 string constant to mark as the name of the buffer. + * + * \threadsafety This function is not thread safe, you must make sure the + * buffer is not simultaneously used by any other thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUBuffer + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUBufferName( + SDL_GPUDevice *device, + SDL_GPUBuffer *buffer, + const char *text); + +/** + * Sets an arbitrary string constant to label a texture. + * + * You should use SDL_PROP_GPU_TEXTURE_CREATE_NAME_STRING with + * SDL_CreateGPUTexture instead of this function to avoid thread safety + * issues. + * + * \param device a GPU Context. + * \param texture a texture to attach the name to. + * \param text a UTF-8 string constant to mark as the name of the texture. + * + * \threadsafety This function is not thread safe, you must make sure the + * texture is not simultaneously used by any other thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUTexture + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUTextureName( + SDL_GPUDevice *device, + SDL_GPUTexture *texture, + const char *text); + +/** + * Inserts an arbitrary string label into the command buffer callstream. + * + * Useful for debugging. + * + * \param command_buffer a command buffer. + * \param text a UTF-8 string constant to insert as the label. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_InsertGPUDebugLabel( + SDL_GPUCommandBuffer *command_buffer, + const char *text); + +/** + * Begins a debug group with an arbitary name. + * + * Used for denoting groups of calls when viewing the command buffer + * callstream in a graphics debugging tool. + * + * Each call to SDL_PushGPUDebugGroup must have a corresponding call to + * SDL_PopGPUDebugGroup. + * + * On some backends (e.g. Metal), pushing a debug group during a + * render/blit/compute pass will create a group that is scoped to the native + * pass rather than the command buffer. For best results, if you push a debug + * group during a pass, always pop it in the same pass. + * + * \param command_buffer a command buffer. + * \param name a UTF-8 string constant that names the group. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PopGPUDebugGroup + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUDebugGroup( + SDL_GPUCommandBuffer *command_buffer, + const char *name); + +/** + * Ends the most-recently pushed debug group. + * + * \param command_buffer a command buffer. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PushGPUDebugGroup + */ +extern SDL_DECLSPEC void SDLCALL SDL_PopGPUDebugGroup( + SDL_GPUCommandBuffer *command_buffer); + +/* Disposal */ + +/** + * Frees the given texture as soon as it is safe to do so. + * + * You must not reference the texture after calling this function. + * + * \param device a GPU context. + * \param texture a texture to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUTexture( + SDL_GPUDevice *device, + SDL_GPUTexture *texture); + +/** + * Frees the given sampler as soon as it is safe to do so. + * + * You must not reference the sampler after calling this function. + * + * \param device a GPU context. + * \param sampler a sampler to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUSampler( + SDL_GPUDevice *device, + SDL_GPUSampler *sampler); + +/** + * Frees the given buffer as soon as it is safe to do so. + * + * You must not reference the buffer after calling this function. + * + * \param device a GPU context. + * \param buffer a buffer to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUBuffer( + SDL_GPUDevice *device, + SDL_GPUBuffer *buffer); + +/** + * Frees the given transfer buffer as soon as it is safe to do so. + * + * You must not reference the transfer buffer after calling this function. + * + * \param device a GPU context. + * \param transfer_buffer a transfer buffer to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUTransferBuffer( + SDL_GPUDevice *device, + SDL_GPUTransferBuffer *transfer_buffer); + +/** + * Frees the given compute pipeline as soon as it is safe to do so. + * + * You must not reference the compute pipeline after calling this function. + * + * \param device a GPU context. + * \param compute_pipeline a compute pipeline to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUComputePipeline( + SDL_GPUDevice *device, + SDL_GPUComputePipeline *compute_pipeline); + +/** + * Frees the given shader as soon as it is safe to do so. + * + * You must not reference the shader after calling this function. + * + * \param device a GPU context. + * \param shader a shader to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUShader( + SDL_GPUDevice *device, + SDL_GPUShader *shader); + +/** + * Frees the given graphics pipeline as soon as it is safe to do so. + * + * You must not reference the graphics pipeline after calling this function. + * + * \param device a GPU context. + * \param graphics_pipeline a graphics pipeline to be destroyed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUGraphicsPipeline( + SDL_GPUDevice *device, + SDL_GPUGraphicsPipeline *graphics_pipeline); + +/** + * Acquire a command buffer. + * + * This command buffer is managed by the implementation and should not be + * freed by the user. The command buffer may only be used on the thread it was + * acquired on. The command buffer should be submitted on the thread it was + * acquired on. + * + * It is valid to acquire multiple command buffers on the same thread at once. + * In fact a common design pattern is to acquire two command buffers per frame + * where one is dedicated to render and compute passes and the other is + * dedicated to copy passes and other preparatory work such as generating + * mipmaps. Interleaving commands between the two command buffers reduces the + * total amount of passes overall which improves rendering performance. + * + * \param device a GPU context. + * \returns a command buffer, or NULL on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC SDL_GPUCommandBuffer * SDLCALL SDL_AcquireGPUCommandBuffer( + SDL_GPUDevice *device); + +/* Uniform Data */ + +/** + * Pushes data to a vertex uniform slot on the command buffer. + * + * Subsequent draw calls will use this uniform data. + * + * The data being pushed must respect std140 layout conventions. In practical + * terms this means you must ensure that vec3 and vec4 fields are 16-byte + * aligned. + * + * \param command_buffer a command buffer. + * \param slot_index the vertex uniform slot to push data to. + * \param data client data to write. + * \param length the length of the data to write. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUVertexUniformData( + SDL_GPUCommandBuffer *command_buffer, + Uint32 slot_index, + const void *data, + Uint32 length); + +/** + * Pushes data to a fragment uniform slot on the command buffer. + * + * Subsequent draw calls will use this uniform data. + * + * The data being pushed must respect std140 layout conventions. In practical + * terms this means you must ensure that vec3 and vec4 fields are 16-byte + * aligned. + * + * \param command_buffer a command buffer. + * \param slot_index the fragment uniform slot to push data to. + * \param data client data to write. + * \param length the length of the data to write. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUFragmentUniformData( + SDL_GPUCommandBuffer *command_buffer, + Uint32 slot_index, + const void *data, + Uint32 length); + +/** + * Pushes data to a uniform slot on the command buffer. + * + * Subsequent draw calls will use this uniform data. + * + * The data being pushed must respect std140 layout conventions. In practical + * terms this means you must ensure that vec3 and vec4 fields are 16-byte + * aligned. + * + * \param command_buffer a command buffer. + * \param slot_index the uniform slot to push data to. + * \param data client data to write. + * \param length the length of the data to write. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_PushGPUComputeUniformData( + SDL_GPUCommandBuffer *command_buffer, + Uint32 slot_index, + const void *data, + Uint32 length); + +/* Graphics State */ + +/** + * Begins a render pass on a command buffer. + * + * A render pass consists of a set of texture subresources (or depth slices in + * the 3D texture case) which will be rendered to during the render pass, + * along with corresponding clear values and load/store operations. All + * operations related to graphics pipelines must take place inside of a render + * pass. A default viewport and scissor state are automatically set when this + * is called. You cannot begin another render pass, or begin a compute pass or + * copy pass until you have ended the render pass. + * + * \param command_buffer a command buffer. + * \param color_target_infos an array of texture subresources with + * corresponding clear values and load/store ops. + * \param num_color_targets the number of color targets in the + * color_target_infos array. + * \param depth_stencil_target_info a texture subresource with corresponding + * clear value and load/store ops, may be + * NULL. + * \returns a render pass handle. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EndGPURenderPass + */ +extern SDL_DECLSPEC SDL_GPURenderPass * SDLCALL SDL_BeginGPURenderPass( + SDL_GPUCommandBuffer *command_buffer, + const SDL_GPUColorTargetInfo *color_target_infos, + Uint32 num_color_targets, + const SDL_GPUDepthStencilTargetInfo *depth_stencil_target_info); + +/** + * Binds a graphics pipeline on a render pass to be used in rendering. + * + * A graphics pipeline must be bound before making any draw calls. + * + * \param render_pass a render pass handle. + * \param graphics_pipeline the graphics pipeline to bind. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUGraphicsPipeline( + SDL_GPURenderPass *render_pass, + SDL_GPUGraphicsPipeline *graphics_pipeline); + +/** + * Sets the current viewport state on a command buffer. + * + * \param render_pass a render pass handle. + * \param viewport the viewport to set. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUViewport( + SDL_GPURenderPass *render_pass, + const SDL_GPUViewport *viewport); + +/** + * Sets the current scissor state on a command buffer. + * + * \param render_pass a render pass handle. + * \param scissor the scissor area to set. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUScissor( + SDL_GPURenderPass *render_pass, + const SDL_Rect *scissor); + +/** + * Sets the current blend constants on a command buffer. + * + * \param render_pass a render pass handle. + * \param blend_constants the blend constant color. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GPU_BLENDFACTOR_CONSTANT_COLOR + * \sa SDL_GPU_BLENDFACTOR_ONE_MINUS_CONSTANT_COLOR + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUBlendConstants( + SDL_GPURenderPass *render_pass, + SDL_FColor blend_constants); + +/** + * Sets the current stencil reference value on a command buffer. + * + * \param render_pass a render pass handle. + * \param reference the stencil reference value to set. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetGPUStencilReference( + SDL_GPURenderPass *render_pass, + Uint8 reference); + +/** + * Binds vertex buffers on a command buffer for use with subsequent draw + * calls. + * + * \param render_pass a render pass handle. + * \param first_slot the vertex buffer slot to begin binding from. + * \param bindings an array of SDL_GPUBufferBinding structs containing vertex + * buffers and offset values. + * \param num_bindings the number of bindings in the bindings array. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexBuffers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + const SDL_GPUBufferBinding *bindings, + Uint32 num_bindings); + +/** + * Binds an index buffer on a command buffer for use with subsequent draw + * calls. + * + * \param render_pass a render pass handle. + * \param binding a pointer to a struct containing an index buffer and offset. + * \param index_element_size whether the index values in the buffer are 16- or + * 32-bit. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUIndexBuffer( + SDL_GPURenderPass *render_pass, + const SDL_GPUBufferBinding *binding, + SDL_GPUIndexElementSize index_element_size); + +/** + * Binds texture-sampler pairs for use on the vertex shader. + * + * The textures must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the vertex sampler slot to begin binding from. + * \param texture_sampler_bindings an array of texture-sampler binding + * structs. + * \param num_bindings the number of texture-sampler pairs to bind from the + * array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexSamplers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + const SDL_GPUTextureSamplerBinding *texture_sampler_bindings, + Uint32 num_bindings); + +/** + * Binds storage textures for use on the vertex shader. + * + * These textures must have been created with + * SDL_GPU_TEXTUREUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the vertex storage texture slot to begin binding from. + * \param storage_textures an array of storage textures. + * \param num_bindings the number of storage texture to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexStorageTextures( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUTexture *const *storage_textures, + Uint32 num_bindings); + +/** + * Binds storage buffers for use on the vertex shader. + * + * These buffers must have been created with + * SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the vertex storage buffer slot to begin binding from. + * \param storage_buffers an array of buffers. + * \param num_bindings the number of buffers to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUVertexStorageBuffers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUBuffer *const *storage_buffers, + Uint32 num_bindings); + +/** + * Binds texture-sampler pairs for use on the fragment shader. + * + * The textures must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the fragment sampler slot to begin binding from. + * \param texture_sampler_bindings an array of texture-sampler binding + * structs. + * \param num_bindings the number of texture-sampler pairs to bind from the + * array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUFragmentSamplers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + const SDL_GPUTextureSamplerBinding *texture_sampler_bindings, + Uint32 num_bindings); + +/** + * Binds storage textures for use on the fragment shader. + * + * These textures must have been created with + * SDL_GPU_TEXTUREUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the fragment storage texture slot to begin binding from. + * \param storage_textures an array of storage textures. + * \param num_bindings the number of storage textures to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUFragmentStorageTextures( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUTexture *const *storage_textures, + Uint32 num_bindings); + +/** + * Binds storage buffers for use on the fragment shader. + * + * These buffers must have been created with + * SDL_GPU_BUFFERUSAGE_GRAPHICS_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param render_pass a render pass handle. + * \param first_slot the fragment storage buffer slot to begin binding from. + * \param storage_buffers an array of storage buffers. + * \param num_bindings the number of storage buffers to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUFragmentStorageBuffers( + SDL_GPURenderPass *render_pass, + Uint32 first_slot, + SDL_GPUBuffer *const *storage_buffers, + Uint32 num_bindings); + +/* Drawing */ + +/** + * Draws data using bound graphics state with an index buffer and instancing + * enabled. + * + * You must not call this function before binding a graphics pipeline. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \param render_pass a render pass handle. + * \param num_indices the number of indices to draw per instance. + * \param num_instances the number of instances to draw. + * \param first_index the starting index within the index buffer. + * \param vertex_offset value added to vertex index before indexing into the + * vertex buffer. + * \param first_instance the ID of the first instance to draw. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUIndexedPrimitives( + SDL_GPURenderPass *render_pass, + Uint32 num_indices, + Uint32 num_instances, + Uint32 first_index, + Sint32 vertex_offset, + Uint32 first_instance); + +/** + * Draws data using bound graphics state. + * + * You must not call this function before binding a graphics pipeline. + * + * Note that the `first_vertex` and `first_instance` parameters are NOT + * compatible with built-in vertex/instance ID variables in shaders (for + * example, SV_VertexID); GPU APIs and shader languages do not define these + * built-in variables consistently, so if your shader depends on them, the + * only way to keep behavior consistent and portable is to always pass 0 for + * the correlating parameter in the draw calls. + * + * \param render_pass a render pass handle. + * \param num_vertices the number of vertices to draw. + * \param num_instances the number of instances that will be drawn. + * \param first_vertex the index of the first vertex to draw. + * \param first_instance the ID of the first instance to draw. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUPrimitives( + SDL_GPURenderPass *render_pass, + Uint32 num_vertices, + Uint32 num_instances, + Uint32 first_vertex, + Uint32 first_instance); + +/** + * Draws data using bound graphics state and with draw parameters set from a + * buffer. + * + * The buffer must consist of tightly-packed draw parameter sets that each + * match the layout of SDL_GPUIndirectDrawCommand. You must not call this + * function before binding a graphics pipeline. + * + * \param render_pass a render pass handle. + * \param buffer a buffer containing draw parameters. + * \param offset the offset to start reading from the draw buffer. + * \param draw_count the number of draw parameter sets that should be read + * from the draw buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUPrimitivesIndirect( + SDL_GPURenderPass *render_pass, + SDL_GPUBuffer *buffer, + Uint32 offset, + Uint32 draw_count); + +/** + * Draws data using bound graphics state with an index buffer enabled and with + * draw parameters set from a buffer. + * + * The buffer must consist of tightly-packed draw parameter sets that each + * match the layout of SDL_GPUIndexedIndirectDrawCommand. You must not call + * this function before binding a graphics pipeline. + * + * \param render_pass a render pass handle. + * \param buffer a buffer containing draw parameters. + * \param offset the offset to start reading from the draw buffer. + * \param draw_count the number of draw parameter sets that should be read + * from the draw buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DrawGPUIndexedPrimitivesIndirect( + SDL_GPURenderPass *render_pass, + SDL_GPUBuffer *buffer, + Uint32 offset, + Uint32 draw_count); + +/** + * Ends the given render pass. + * + * All bound graphics state on the render pass command buffer is unset. The + * render pass handle is now invalid. + * + * \param render_pass a render pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EndGPURenderPass( + SDL_GPURenderPass *render_pass); + +/* Compute Pass */ + +/** + * Begins a compute pass on a command buffer. + * + * A compute pass is defined by a set of texture subresources and buffers that + * may be written to by compute pipelines. These textures and buffers must + * have been created with the COMPUTE_STORAGE_WRITE bit or the + * COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE bit. If you do not create a texture + * with COMPUTE_STORAGE_SIMULTANEOUS_READ_WRITE, you must not read from the + * texture in the compute pass. All operations related to compute pipelines + * must take place inside of a compute pass. You must not begin another + * compute pass, or a render pass or copy pass before ending the compute pass. + * + * A VERY IMPORTANT NOTE - Reads and writes in compute passes are NOT + * implicitly synchronized. This means you may cause data races by both + * reading and writing a resource region in a compute pass, or by writing + * multiple times to a resource region. If your compute work depends on + * reading the completed output from a previous dispatch, you MUST end the + * current compute pass and begin a new one before you can safely access the + * data. Otherwise you will receive unexpected results. Reading and writing a + * texture in the same compute pass is only supported by specific texture + * formats. Make sure you check the format support! + * + * \param command_buffer a command buffer. + * \param storage_texture_bindings an array of writeable storage texture + * binding structs. + * \param num_storage_texture_bindings the number of storage textures to bind + * from the array. + * \param storage_buffer_bindings an array of writeable storage buffer binding + * structs. + * \param num_storage_buffer_bindings the number of storage buffers to bind + * from the array. + * \returns a compute pass handle. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EndGPUComputePass + */ +extern SDL_DECLSPEC SDL_GPUComputePass * SDLCALL SDL_BeginGPUComputePass( + SDL_GPUCommandBuffer *command_buffer, + const SDL_GPUStorageTextureReadWriteBinding *storage_texture_bindings, + Uint32 num_storage_texture_bindings, + const SDL_GPUStorageBufferReadWriteBinding *storage_buffer_bindings, + Uint32 num_storage_buffer_bindings); + +/** + * Binds a compute pipeline on a command buffer for use in compute dispatch. + * + * \param compute_pass a compute pass handle. + * \param compute_pipeline a compute pipeline to bind. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputePipeline( + SDL_GPUComputePass *compute_pass, + SDL_GPUComputePipeline *compute_pipeline); + +/** + * Binds texture-sampler pairs for use on the compute shader. + * + * The textures must have been created with SDL_GPU_TEXTUREUSAGE_SAMPLER. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param compute_pass a compute pass handle. + * \param first_slot the compute sampler slot to begin binding from. + * \param texture_sampler_bindings an array of texture-sampler binding + * structs. + * \param num_bindings the number of texture-sampler bindings to bind from the + * array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputeSamplers( + SDL_GPUComputePass *compute_pass, + Uint32 first_slot, + const SDL_GPUTextureSamplerBinding *texture_sampler_bindings, + Uint32 num_bindings); + +/** + * Binds storage textures as readonly for use on the compute pipeline. + * + * These textures must have been created with + * SDL_GPU_TEXTUREUSAGE_COMPUTE_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param compute_pass a compute pass handle. + * \param first_slot the compute storage texture slot to begin binding from. + * \param storage_textures an array of storage textures. + * \param num_bindings the number of storage textures to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputeStorageTextures( + SDL_GPUComputePass *compute_pass, + Uint32 first_slot, + SDL_GPUTexture *const *storage_textures, + Uint32 num_bindings); + +/** + * Binds storage buffers as readonly for use on the compute pipeline. + * + * These buffers must have been created with + * SDL_GPU_BUFFERUSAGE_COMPUTE_STORAGE_READ. + * + * Be sure your shader is set up according to the requirements documented in + * SDL_CreateGPUShader(). + * + * \param compute_pass a compute pass handle. + * \param first_slot the compute storage buffer slot to begin binding from. + * \param storage_buffers an array of storage buffer binding structs. + * \param num_bindings the number of storage buffers to bind from the array. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateGPUShader + */ +extern SDL_DECLSPEC void SDLCALL SDL_BindGPUComputeStorageBuffers( + SDL_GPUComputePass *compute_pass, + Uint32 first_slot, + SDL_GPUBuffer *const *storage_buffers, + Uint32 num_bindings); + +/** + * Dispatches compute work. + * + * You must not call this function before binding a compute pipeline. + * + * A VERY IMPORTANT NOTE If you dispatch multiple times in a compute pass, and + * the dispatches write to the same resource region as each other, there is no + * guarantee of which order the writes will occur. If the write order matters, + * you MUST end the compute pass and begin another one. + * + * \param compute_pass a compute pass handle. + * \param groupcount_x number of local workgroups to dispatch in the X + * dimension. + * \param groupcount_y number of local workgroups to dispatch in the Y + * dimension. + * \param groupcount_z number of local workgroups to dispatch in the Z + * dimension. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DispatchGPUCompute( + SDL_GPUComputePass *compute_pass, + Uint32 groupcount_x, + Uint32 groupcount_y, + Uint32 groupcount_z); + +/** + * Dispatches compute work with parameters set from a buffer. + * + * The buffer layout should match the layout of + * SDL_GPUIndirectDispatchCommand. You must not call this function before + * binding a compute pipeline. + * + * A VERY IMPORTANT NOTE If you dispatch multiple times in a compute pass, and + * the dispatches write to the same resource region as each other, there is no + * guarantee of which order the writes will occur. If the write order matters, + * you MUST end the compute pass and begin another one. + * + * \param compute_pass a compute pass handle. + * \param buffer a buffer containing dispatch parameters. + * \param offset the offset to start reading from the dispatch buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DispatchGPUComputeIndirect( + SDL_GPUComputePass *compute_pass, + SDL_GPUBuffer *buffer, + Uint32 offset); + +/** + * Ends the current compute pass. + * + * All bound compute state on the command buffer is unset. The compute pass + * handle is now invalid. + * + * \param compute_pass a compute pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EndGPUComputePass( + SDL_GPUComputePass *compute_pass); + +/* TransferBuffer Data */ + +/** + * Maps a transfer buffer into application address space. + * + * You must unmap the transfer buffer before encoding upload commands. The + * memory is owned by the graphics driver - do NOT call SDL_free() on the + * returned pointer. + * + * \param device a GPU context. + * \param transfer_buffer a transfer buffer. + * \param cycle if true, cycles the transfer buffer if it is already bound. + * \returns the address of the mapped transfer buffer memory, or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_MapGPUTransferBuffer( + SDL_GPUDevice *device, + SDL_GPUTransferBuffer *transfer_buffer, + bool cycle); + +/** + * Unmaps a previously mapped transfer buffer. + * + * \param device a GPU context. + * \param transfer_buffer a previously mapped transfer buffer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnmapGPUTransferBuffer( + SDL_GPUDevice *device, + SDL_GPUTransferBuffer *transfer_buffer); + +/* Copy Pass */ + +/** + * Begins a copy pass on a command buffer. + * + * All operations related to copying to or from buffers or textures take place + * inside a copy pass. You must not begin another copy pass, or a render pass + * or compute pass before ending the copy pass. + * + * \param command_buffer a command buffer. + * \returns a copy pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GPUCopyPass * SDLCALL SDL_BeginGPUCopyPass( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Uploads data from a transfer buffer to a texture. + * + * The upload occurs on the GPU timeline. You may assume that the upload has + * finished in subsequent commands. + * + * You must align the data in the transfer buffer to a multiple of the texel + * size of the texture format. + * + * \param copy_pass a copy pass handle. + * \param source the source transfer buffer with image layout information. + * \param destination the destination texture region. + * \param cycle if true, cycles the texture if the texture is bound, otherwise + * overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UploadToGPUTexture( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTextureTransferInfo *source, + const SDL_GPUTextureRegion *destination, + bool cycle); + +/** + * Uploads data from a transfer buffer to a buffer. + * + * The upload occurs on the GPU timeline. You may assume that the upload has + * finished in subsequent commands. + * + * \param copy_pass a copy pass handle. + * \param source the source transfer buffer with offset. + * \param destination the destination buffer with offset and size. + * \param cycle if true, cycles the buffer if it is already bound, otherwise + * overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UploadToGPUBuffer( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTransferBufferLocation *source, + const SDL_GPUBufferRegion *destination, + bool cycle); + +/** + * Performs a texture-to-texture copy. + * + * This copy occurs on the GPU timeline. You may assume the copy has finished + * in subsequent commands. + * + * \param copy_pass a copy pass handle. + * \param source a source texture region. + * \param destination a destination texture region. + * \param w the width of the region to copy. + * \param h the height of the region to copy. + * \param d the depth of the region to copy. + * \param cycle if true, cycles the destination texture if the destination + * texture is bound, otherwise overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CopyGPUTextureToTexture( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTextureLocation *source, + const SDL_GPUTextureLocation *destination, + Uint32 w, + Uint32 h, + Uint32 d, + bool cycle); + +/** + * Performs a buffer-to-buffer copy. + * + * This copy occurs on the GPU timeline. You may assume the copy has finished + * in subsequent commands. + * + * \param copy_pass a copy pass handle. + * \param source the buffer and offset to copy from. + * \param destination the buffer and offset to copy to. + * \param size the length of the buffer to copy. + * \param cycle if true, cycles the destination buffer if it is already bound, + * otherwise overwrites the data. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CopyGPUBufferToBuffer( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUBufferLocation *source, + const SDL_GPUBufferLocation *destination, + Uint32 size, + bool cycle); + +/** + * Copies data from a texture to a transfer buffer on the GPU timeline. + * + * This data is not guaranteed to be copied until the command buffer fence is + * signaled. + * + * \param copy_pass a copy pass handle. + * \param source the source texture region. + * \param destination the destination transfer buffer with image layout + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DownloadFromGPUTexture( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUTextureRegion *source, + const SDL_GPUTextureTransferInfo *destination); + +/** + * Copies data from a buffer to a transfer buffer on the GPU timeline. + * + * This data is not guaranteed to be copied until the command buffer fence is + * signaled. + * + * \param copy_pass a copy pass handle. + * \param source the source buffer with offset and size. + * \param destination the destination transfer buffer with offset. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_DownloadFromGPUBuffer( + SDL_GPUCopyPass *copy_pass, + const SDL_GPUBufferRegion *source, + const SDL_GPUTransferBufferLocation *destination); + +/** + * Ends the current copy pass. + * + * \param copy_pass a copy pass handle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EndGPUCopyPass( + SDL_GPUCopyPass *copy_pass); + +/** + * Generates mipmaps for the given texture. + * + * This function must not be called inside of any pass. + * + * \param command_buffer a command_buffer. + * \param texture a texture with more than 1 mip level. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_GenerateMipmapsForGPUTexture( + SDL_GPUCommandBuffer *command_buffer, + SDL_GPUTexture *texture); + +/** + * Blits from a source texture region to a destination texture region. + * + * This function must not be called inside of any pass. + * + * \param command_buffer a command buffer. + * \param info the blit info struct containing the blit parameters. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_BlitGPUTexture( + SDL_GPUCommandBuffer *command_buffer, + const SDL_GPUBlitInfo *info); + +/* Submission/Presentation */ + +/** + * Determines whether a swapchain composition is supported by the window. + * + * The window must be claimed before calling this function. + * + * \param device a GPU context. + * \param window an SDL_Window. + * \param swapchain_composition the swapchain composition to check. + * \returns true if supported, false if unsupported. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WindowSupportsGPUSwapchainComposition( + SDL_GPUDevice *device, + SDL_Window *window, + SDL_GPUSwapchainComposition swapchain_composition); + +/** + * Determines whether a presentation mode is supported by the window. + * + * The window must be claimed before calling this function. + * + * \param device a GPU context. + * \param window an SDL_Window. + * \param present_mode the presentation mode to check. + * \returns true if supported, false if unsupported. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WindowSupportsGPUPresentMode( + SDL_GPUDevice *device, + SDL_Window *window, + SDL_GPUPresentMode present_mode); + +/** + * Claims a window, creating a swapchain structure for it. + * + * This must be called before SDL_AcquireGPUSwapchainTexture is called using + * the window. You should only call this function from the thread that created + * the window. + * + * The swapchain will be created with SDL_GPU_SWAPCHAINCOMPOSITION_SDR and + * SDL_GPU_PRESENTMODE_VSYNC. If you want to have different swapchain + * parameters, you must call SDL_SetGPUSwapchainParameters after claiming the + * window. + * + * \param device a GPU context. + * \param window an SDL_Window. + * \returns true on success, or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_ReleaseWindowFromGPUDevice + * \sa SDL_WindowSupportsGPUPresentMode + * \sa SDL_WindowSupportsGPUSwapchainComposition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClaimWindowForGPUDevice( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Unclaims a window, destroying its swapchain structure. + * + * \param device a GPU context. + * \param window an SDL_Window that has been claimed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseWindowFromGPUDevice( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Changes the swapchain parameters for the given claimed window. + * + * This function will fail if the requested present mode or swapchain + * composition are unsupported by the device. Check if the parameters are + * supported via SDL_WindowSupportsGPUPresentMode / + * SDL_WindowSupportsGPUSwapchainComposition prior to calling this function. + * + * SDL_GPU_PRESENTMODE_VSYNC with SDL_GPU_SWAPCHAINCOMPOSITION_SDR are always + * supported. + * + * \param device a GPU context. + * \param window an SDL_Window that has been claimed. + * \param swapchain_composition the desired composition of the swapchain. + * \param present_mode the desired present mode for the swapchain. + * \returns true if successful, false on error; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WindowSupportsGPUPresentMode + * \sa SDL_WindowSupportsGPUSwapchainComposition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGPUSwapchainParameters( + SDL_GPUDevice *device, + SDL_Window *window, + SDL_GPUSwapchainComposition swapchain_composition, + SDL_GPUPresentMode present_mode); + +/** + * Configures the maximum allowed number of frames in flight. + * + * The default value when the device is created is 2. This means that after + * you have submitted 2 frames for presentation, if the GPU has not finished + * working on the first frame, SDL_AcquireGPUSwapchainTexture() will fill the + * swapchain texture pointer with NULL, and + * SDL_WaitAndAcquireGPUSwapchainTexture() will block. + * + * Higher values increase throughput at the expense of visual latency. Lower + * values decrease visual latency at the expense of throughput. + * + * Note that calling this function will stall and flush the command queue to + * prevent synchronization issues. + * + * The minimum value of allowed frames in flight is 1, and the maximum is 3. + * + * \param device a GPU context. + * \param allowed_frames_in_flight the maximum number of frames that can be + * pending on the GPU. + * \returns true if successful, false on error; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetGPUAllowedFramesInFlight( + SDL_GPUDevice *device, + Uint32 allowed_frames_in_flight); + +/** + * Obtains the texture format of the swapchain for the given window. + * + * Note that this format can change if the swapchain parameters change. + * + * \param device a GPU context. + * \param window an SDL_Window that has been claimed. + * \returns the texture format of the swapchain. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_GPUTextureFormat SDLCALL SDL_GetGPUSwapchainTextureFormat( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Acquire a texture to use in presentation. + * + * When a swapchain texture is acquired on a command buffer, it will + * automatically be submitted for presentation when the command buffer is + * submitted. The swapchain texture should only be referenced by the command + * buffer used to acquire it. + * + * This function will fill the swapchain texture handle with NULL if too many + * frames are in flight. This is not an error. + * + * If you use this function, it is possible to create a situation where many + * command buffers are allocated while the rendering context waits for the GPU + * to catch up, which will cause memory usage to grow. You should use + * SDL_WaitAndAcquireGPUSwapchainTexture() unless you know what you are doing + * with timing. + * + * The swapchain texture is managed by the implementation and must not be + * freed by the user. You MUST NOT call this function from any thread other + * than the one that created the window. + * + * \param command_buffer a command buffer. + * \param window a window that has been claimed. + * \param swapchain_texture a pointer filled in with a swapchain texture + * handle. + * \param swapchain_texture_width a pointer filled in with the swapchain + * texture width, may be NULL. + * \param swapchain_texture_height a pointer filled in with the swapchain + * texture height, may be NULL. + * \returns true on success, false on error; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ClaimWindowForGPUDevice + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_CancelGPUCommandBuffer + * \sa SDL_GetWindowSizeInPixels + * \sa SDL_WaitForGPUSwapchain + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_SetGPUAllowedFramesInFlight + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AcquireGPUSwapchainTexture( + SDL_GPUCommandBuffer *command_buffer, + SDL_Window *window, + SDL_GPUTexture **swapchain_texture, + Uint32 *swapchain_texture_width, + Uint32 *swapchain_texture_height); + +/** + * Blocks the thread until a swapchain texture is available to be acquired. + * + * \param device a GPU context. + * \param window a window that has been claimed. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUSwapchainTexture + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_SetGPUAllowedFramesInFlight + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitForGPUSwapchain( + SDL_GPUDevice *device, + SDL_Window *window); + +/** + * Blocks the thread until a swapchain texture is available to be acquired, + * and then acquires it. + * + * When a swapchain texture is acquired on a command buffer, it will + * automatically be submitted for presentation when the command buffer is + * submitted. The swapchain texture should only be referenced by the command + * buffer used to acquire it. It is an error to call + * SDL_CancelGPUCommandBuffer() after a swapchain texture is acquired. + * + * This function can fill the swapchain texture handle with NULL in certain + * cases, for example if the window is minimized. This is not an error. You + * should always make sure to check whether the pointer is NULL before + * actually using it. + * + * The swapchain texture is managed by the implementation and must not be + * freed by the user. You MUST NOT call this function from any thread other + * than the one that created the window. + * + * The swapchain texture is write-only and cannot be used as a sampler or for + * another reading operation. + * + * \param command_buffer a command buffer. + * \param window a window that has been claimed. + * \param swapchain_texture a pointer filled in with a swapchain texture + * handle. + * \param swapchain_texture_width a pointer filled in with the swapchain + * texture width, may be NULL. + * \param swapchain_texture_height a pointer filled in with the swapchain + * texture height, may be NULL. + * \returns true on success, false on error; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called from the thread that + * created the window. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_AcquireGPUSwapchainTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitAndAcquireGPUSwapchainTexture( + SDL_GPUCommandBuffer *command_buffer, + SDL_Window *window, + SDL_GPUTexture **swapchain_texture, + Uint32 *swapchain_texture_width, + Uint32 *swapchain_texture_height); + +/** + * Submits a command buffer so its commands can be processed on the GPU. + * + * It is invalid to use the command buffer after this is called. + * + * This must be called from the thread the command buffer was acquired on. + * + * All commands in the submission are guaranteed to begin executing before any + * command in a subsequent submission begins executing. + * + * \param command_buffer a command buffer. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_AcquireGPUSwapchainTexture + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SubmitGPUCommandBuffer( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Submits a command buffer so its commands can be processed on the GPU, and + * acquires a fence associated with the command buffer. + * + * You must release this fence when it is no longer needed or it will cause a + * leak. It is invalid to use the command buffer after this is called. + * + * This must be called from the thread the command buffer was acquired on. + * + * All commands in the submission are guaranteed to begin executing before any + * command in a subsequent submission begins executing. + * + * \param command_buffer a command buffer. + * \returns a fence associated with the command buffer, or NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_AcquireGPUSwapchainTexture + * \sa SDL_SubmitGPUCommandBuffer + * \sa SDL_ReleaseGPUFence + */ +extern SDL_DECLSPEC SDL_GPUFence * SDLCALL SDL_SubmitGPUCommandBufferAndAcquireFence( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Cancels a command buffer. + * + * None of the enqueued commands are executed. + * + * It is an error to call this function after a swapchain texture has been + * acquired. + * + * This must be called from the thread the command buffer was acquired on. + * + * You must not reference the command buffer after calling this function. + * + * \param command_buffer a command buffer. + * \returns true on success, false on error; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitAndAcquireGPUSwapchainTexture + * \sa SDL_AcquireGPUCommandBuffer + * \sa SDL_AcquireGPUSwapchainTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CancelGPUCommandBuffer( + SDL_GPUCommandBuffer *command_buffer); + +/** + * Blocks the thread until the GPU is completely idle. + * + * \param device a GPU context. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WaitForGPUFences + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitForGPUIdle( + SDL_GPUDevice *device); + +/** + * Blocks the thread until the given fences are signaled. + * + * \param device a GPU context. + * \param wait_all if 0, wait for any fence to be signaled, if 1, wait for all + * fences to be signaled. + * \param fences an array of fences to wait on. + * \param num_fences the number of fences in the fences array. + * \returns true on success, false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + * \sa SDL_WaitForGPUIdle + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitForGPUFences( + SDL_GPUDevice *device, + bool wait_all, + SDL_GPUFence *const *fences, + Uint32 num_fences); + +/** + * Checks the status of a fence. + * + * \param device a GPU context. + * \param fence a fence. + * \returns true if the fence is signaled, false if it is not. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC bool SDLCALL SDL_QueryGPUFence( + SDL_GPUDevice *device, + SDL_GPUFence *fence); + +/** + * Releases a fence obtained from SDL_SubmitGPUCommandBufferAndAcquireFence. + * + * You must not reference the fence after calling this function. + * + * \param device a GPU context. + * \param fence a fence. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SubmitGPUCommandBufferAndAcquireFence + */ +extern SDL_DECLSPEC void SDLCALL SDL_ReleaseGPUFence( + SDL_GPUDevice *device, + SDL_GPUFence *fence); + +/* Format Info */ + +/** + * Obtains the texel block size for a texture format. + * + * \param format the texture format you want to know the texel size of. + * \returns the texel block size of the texture format. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UploadToGPUTexture + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GPUTextureFormatTexelBlockSize( + SDL_GPUTextureFormat format); + +/** + * Determines whether a texture format is supported for a given type and + * usage. + * + * \param device a GPU context. + * \param format the texture format to check. + * \param type the type of texture (2D, 3D, Cube). + * \param usage a bitmask of all usage scenarios to check. + * \returns whether the texture format is supported for this type and usage. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUTextureSupportsFormat( + SDL_GPUDevice *device, + SDL_GPUTextureFormat format, + SDL_GPUTextureType type, + SDL_GPUTextureUsageFlags usage); + +/** + * Determines if a sample count for a texture format is supported. + * + * \param device a GPU context. + * \param format the texture format to check. + * \param sample_count the sample count to check. + * \returns whether the sample count is supported for this texture format. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GPUTextureSupportsSampleCount( + SDL_GPUDevice *device, + SDL_GPUTextureFormat format, + SDL_GPUSampleCount sample_count); + +/** + * Calculate the size in bytes of a texture format with dimensions. + * + * \param format a texture format. + * \param width width in pixels. + * \param height height in pixels. + * \param depth_or_layer_count depth for 3D textures or layer count otherwise. + * \returns the size of a texture with this format and dimensions. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_CalculateGPUTextureFormatSize( + SDL_GPUTextureFormat format, + Uint32 width, + Uint32 height, + Uint32 depth_or_layer_count); + +#ifdef SDL_PLATFORM_GDK + +/** + * Call this to suspend GPU operation on Xbox when you receive the + * SDL_EVENT_DID_ENTER_BACKGROUND event. + * + * Do NOT call any SDL_GPU functions after calling this function! This must + * also be called before calling SDL_GDKSuspendComplete. + * + * \param device a GPU context. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + */ +extern SDL_DECLSPEC void SDLCALL SDL_GDKSuspendGPU(SDL_GPUDevice *device); + +/** + * Call this to resume GPU operation on Xbox when you receive the + * SDL_EVENT_WILL_ENTER_FOREGROUND event. + * + * When resuming, this function MUST be called before calling any other + * SDL_GPU functions. + * + * \param device a GPU context. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddEventWatch + */ +extern SDL_DECLSPEC void SDLCALL SDL_GDKResumeGPU(SDL_GPUDevice *device); + +#endif /* SDL_PLATFORM_GDK */ + +#ifdef __cplusplus +} +#endif /* __cplusplus */ +#include + +#endif /* SDL_gpu_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_guid.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_guid.h new file mode 100644 index 0000000..312c42c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_guid.h @@ -0,0 +1,106 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: GUID */ + +/** + * # CategoryGUID + * + * A GUID is a 128-bit value that represents something that is uniquely + * identifiable by this value: "globally unique." + * + * SDL provides functions to convert a GUID to/from a string. + */ + +#ifndef SDL_guid_h_ +#define SDL_guid_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An SDL_GUID is a 128-bit identifier for an input device that identifies + * that device across runs of SDL programs on the same platform. + * + * If the device is detached and then re-attached to a different port, or if + * the base system is rebooted, the device should still report the same GUID. + * + * GUIDs are as precise as possible but are not guaranteed to distinguish + * physically distinct but equivalent devices. For example, two game + * controllers from the same vendor with the same product ID and revision may + * have the same GUID. + * + * GUIDs may be platform-dependent (i.e., the same device may report different + * GUIDs on different operating systems). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_GUID { + Uint8 data[16]; +} SDL_GUID; + +/* Function prototypes */ + +/** + * Get an ASCII string representation for a given SDL_GUID. + * + * \param guid the SDL_GUID you wish to convert to string. + * \param pszGUID buffer in which to write the ASCII string. + * \param cbGUID the size of pszGUID, should be at least 33 bytes. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StringToGUID + */ +extern SDL_DECLSPEC void SDLCALL SDL_GUIDToString(SDL_GUID guid, char *pszGUID, int cbGUID); + +/** + * Convert a GUID string into a SDL_GUID structure. + * + * Performs no error checking. If this function is given a string containing + * an invalid GUID, the function will silently succeed, but the GUID generated + * will not be useful. + * + * \param pchGUID string containing an ASCII representation of a GUID. + * \returns a SDL_GUID structure. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GUIDToString + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_StringToGUID(const char *pchGUID); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_guid_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_haptic.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_haptic.h new file mode 100644 index 0000000..a45335b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_haptic.h @@ -0,0 +1,1441 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryHaptic + * + * The SDL haptic subsystem manages haptic (force feedback) devices. + * + * The basic usage is as follows: + * + * - Initialize the subsystem (SDL_INIT_HAPTIC). + * - Open a haptic device. + * - SDL_OpenHaptic() to open from index. + * - SDL_OpenHapticFromJoystick() to open from an existing joystick. + * - Create an effect (SDL_HapticEffect). + * - Upload the effect with SDL_CreateHapticEffect(). + * - Run the effect with SDL_RunHapticEffect(). + * - (optional) Free the effect with SDL_DestroyHapticEffect(). + * - Close the haptic device with SDL_CloseHaptic(). + * + * Simple rumble example: + * + * ```c + * SDL_Haptic *haptic = NULL; + * + * // Open the device + * SDL_HapticID *haptics = SDL_GetHaptics(NULL); + * if (haptics) { + * haptic = SDL_OpenHaptic(haptics[0]); + * SDL_free(haptics); + * } + * if (haptic == NULL) + * return; + * + * // Initialize simple rumble + * if (!SDL_InitHapticRumble(haptic)) + * return; + * + * // Play effect at 50% strength for 2 seconds + * if (!SDL_PlayHapticRumble(haptic, 0.5, 2000)) + * return; + * SDL_Delay(2000); + * + * // Clean up + * SDL_CloseHaptic(haptic); + * ``` + * + * Complete example: + * + * ```c + * bool test_haptic(SDL_Joystick *joystick) + * { + * SDL_Haptic *haptic; + * SDL_HapticEffect effect; + * int effect_id; + * + * // Open the device + * haptic = SDL_OpenHapticFromJoystick(joystick); + * if (haptic == NULL) return false; // Most likely joystick isn't haptic + * + * // See if it can do sine waves + * if ((SDL_GetHapticFeatures(haptic) & SDL_HAPTIC_SINE)==0) { + * SDL_CloseHaptic(haptic); // No sine effect + * return false; + * } + * + * // Create the effect + * SDL_memset(&effect, 0, sizeof(SDL_HapticEffect)); // 0 is safe default + * effect.type = SDL_HAPTIC_SINE; + * effect.periodic.direction.type = SDL_HAPTIC_POLAR; // Polar coordinates + * effect.periodic.direction.dir[0] = 18000; // Force comes from south + * effect.periodic.period = 1000; // 1000 ms + * effect.periodic.magnitude = 20000; // 20000/32767 strength + * effect.periodic.length = 5000; // 5 seconds long + * effect.periodic.attack_length = 1000; // Takes 1 second to get max strength + * effect.periodic.fade_length = 1000; // Takes 1 second to fade away + * + * // Upload the effect + * effect_id = SDL_CreateHapticEffect(haptic, &effect); + * + * // Test the effect + * SDL_RunHapticEffect(haptic, effect_id, 1); + * SDL_Delay(5000); // Wait for the effect to finish + * + * // We destroy the effect, although closing the device also does this + * SDL_DestroyHapticEffect(haptic, effect_id); + * + * // Close the device + * SDL_CloseHaptic(haptic); + * + * return true; // Success + * } + * ``` + * + * Note that the SDL haptic subsystem is not thread-safe. + */ + + +#ifndef SDL_haptic_h_ +#define SDL_haptic_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/* FIXME: + * + * At the moment the magnitude variables are mixed between signed/unsigned, and + * it is also not made clear that ALL of those variables expect a max of 0x7FFF. + * + * Some platforms may have higher precision than that (Linux FF, Windows XInput) + * so we should fix the inconsistency in favor of higher possible precision, + * adjusting for platforms that use different scales. + * -flibit + */ + +/** + * The haptic structure used to identify an SDL haptic. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_OpenHaptic + * \sa SDL_OpenHapticFromJoystick + * \sa SDL_CloseHaptic + */ +typedef struct SDL_Haptic SDL_Haptic; + + +/** + * \name Haptic features + * + * Different haptic features a device can have. + */ +/* @{ */ + +/** + * \name Haptic effects + */ +/* @{ */ + +/** + * Constant effect supported. + * + * Constant haptic effect. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_CONSTANT (1u<<0) + +/** + * Sine wave effect supported. + * + * Periodic haptic effect that simulates sine waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SINE (1u<<1) + +/** + * Square wave effect supported. + * + * Periodic haptic effect that simulates square waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SQUARE (1u<<2) + +/** + * Triangle wave effect supported. + * + * Periodic haptic effect that simulates triangular waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_TRIANGLE (1u<<3) + +/** + * Sawtoothup wave effect supported. + * + * Periodic haptic effect that simulates saw tooth up waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SAWTOOTHUP (1u<<4) + +/** + * Sawtoothdown wave effect supported. + * + * Periodic haptic effect that simulates saw tooth down waves. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticPeriodic + */ +#define SDL_HAPTIC_SAWTOOTHDOWN (1u<<5) + +/** + * Ramp effect supported. + * + * Ramp haptic effect. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticRamp + */ +#define SDL_HAPTIC_RAMP (1u<<6) + +/** + * Spring effect supported - uses axes position. + * + * Condition haptic effect that simulates a spring. Effect is based on the + * axes position. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_SPRING (1u<<7) + +/** + * Damper effect supported - uses axes velocity. + * + * Condition haptic effect that simulates dampening. Effect is based on the + * axes velocity. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_DAMPER (1u<<8) + +/** + * Inertia effect supported - uses axes acceleration. + * + * Condition haptic effect that simulates inertia. Effect is based on the axes + * acceleration. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_INERTIA (1u<<9) + +/** + * Friction effect supported - uses axes movement. + * + * Condition haptic effect that simulates friction. Effect is based on the + * axes movement. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticCondition + */ +#define SDL_HAPTIC_FRICTION (1u<<10) + +/** + * Left/Right effect supported. + * + * Haptic effect for direct control over high/low frequency motors. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticLeftRight + */ +#define SDL_HAPTIC_LEFTRIGHT (1u<<11) + +/** + * Reserved for future use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_RESERVED1 (1u<<12) + +/** + * Reserved for future use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_RESERVED2 (1u<<13) + +/** + * Reserved for future use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_RESERVED3 (1u<<14) + +/** + * Custom effect is supported. + * + * User defined custom haptic effect. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_HAPTIC_CUSTOM (1u<<15) + +/* @} *//* Haptic effects */ + +/* These last few are features the device has, not effects */ + +/** + * Device can set global gain. + * + * Device supports setting the global gain. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SetHapticGain + */ +#define SDL_HAPTIC_GAIN (1u<<16) + +/** + * Device can set autocenter. + * + * Device supports setting autocenter. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SetHapticAutocenter + */ +#define SDL_HAPTIC_AUTOCENTER (1u<<17) + +/** + * Device can be queried for effect status. + * + * Device supports querying effect status. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_GetHapticEffectStatus + */ +#define SDL_HAPTIC_STATUS (1u<<18) + +/** + * Device can be paused. + * + * Devices supports being paused. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PauseHaptic + * \sa SDL_ResumeHaptic + */ +#define SDL_HAPTIC_PAUSE (1u<<19) + + +/** + * \name Direction encodings + */ +/* @{ */ + +/** + * Uses polar coordinates for the direction. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_POLAR 0 + +/** + * Uses cartesian coordinates for the direction. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_CARTESIAN 1 + +/** + * Uses spherical coordinates for the direction. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_SPHERICAL 2 + +/** + * Use this value to play an effect on the steering wheel axis. + * + * This provides better compatibility across platforms and devices as SDL will + * guess the correct axis. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + */ +#define SDL_HAPTIC_STEERING_AXIS 3 + +/* @} *//* Direction encodings */ + +/* @} *//* Haptic features */ + +/* + * Misc defines. + */ + +/** + * Used to play a device an infinite number of times. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_RunHapticEffect + */ +#define SDL_HAPTIC_INFINITY 4294967295U + + +/** + * Structure that represents a haptic direction. + * + * This is the direction where the force comes from, instead of the direction + * in which the force is exerted. + * + * Directions can be specified by: + * + * - SDL_HAPTIC_POLAR : Specified by polar coordinates. + * - SDL_HAPTIC_CARTESIAN : Specified by cartesian coordinates. + * - SDL_HAPTIC_SPHERICAL : Specified by spherical coordinates. + * + * Cardinal directions of the haptic device are relative to the positioning of + * the device. North is considered to be away from the user. + * + * The following diagram represents the cardinal directions: + * + * ``` + * .--. + * |__| .-------. + * |=.| |.-----.| + * |--| || || + * | | |'-----'| + * |__|~')_____(' + * [ COMPUTER ] + * + * + * North (0,-1) + * ^ + * | + * | + * (-1,0) West <----[ HAPTIC ]----> East (1,0) + * | + * | + * v + * South (0,1) + * + * + * [ USER ] + * \|||/ + * (o o) + * ---ooO-(_)-Ooo--- + * ``` + * + * If type is SDL_HAPTIC_POLAR, direction is encoded by hundredths of a degree + * starting north and turning clockwise. SDL_HAPTIC_POLAR only uses the first + * `dir` parameter. The cardinal directions would be: + * + * - North: 0 (0 degrees) + * - East: 9000 (90 degrees) + * - South: 18000 (180 degrees) + * - West: 27000 (270 degrees) + * + * If type is SDL_HAPTIC_CARTESIAN, direction is encoded by three positions (X + * axis, Y axis and Z axis (with 3 axes)). SDL_HAPTIC_CARTESIAN uses the first + * three `dir` parameters. The cardinal directions would be: + * + * - North: 0,-1, 0 + * - East: 1, 0, 0 + * - South: 0, 1, 0 + * - West: -1, 0, 0 + * + * The Z axis represents the height of the effect if supported, otherwise it's + * unused. In cartesian encoding (1, 2) would be the same as (2, 4), you can + * use any multiple you want, only the direction matters. + * + * If type is SDL_HAPTIC_SPHERICAL, direction is encoded by two rotations. The + * first two `dir` parameters are used. The `dir` parameters are as follows + * (all values are in hundredths of degrees): + * + * - Degrees from (1, 0) rotated towards (0, 1). + * - Degrees towards (0, 0, 1) (device needs at least 3 axes). + * + * Example of force coming from the south with all encodings (force coming + * from the south means the user will have to pull the stick to counteract): + * + * ```c + * SDL_HapticDirection direction; + * + * // Cartesian directions + * direction.type = SDL_HAPTIC_CARTESIAN; // Using cartesian direction encoding. + * direction.dir[0] = 0; // X position + * direction.dir[1] = 1; // Y position + * // Assuming the device has 2 axes, we don't need to specify third parameter. + * + * // Polar directions + * direction.type = SDL_HAPTIC_POLAR; // We'll be using polar direction encoding. + * direction.dir[0] = 18000; // Polar only uses first parameter + * + * // Spherical coordinates + * direction.type = SDL_HAPTIC_SPHERICAL; // Spherical encoding + * direction.dir[0] = 9000; // Since we only have two axes we don't need more parameters. + * ``` + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_POLAR + * \sa SDL_HAPTIC_CARTESIAN + * \sa SDL_HAPTIC_SPHERICAL + * \sa SDL_HAPTIC_STEERING_AXIS + * \sa SDL_HapticEffect + * \sa SDL_GetNumHapticAxes + */ +typedef struct SDL_HapticDirection +{ + Uint8 type; /**< The type of encoding. */ + Sint32 dir[3]; /**< The encoded direction. */ +} SDL_HapticDirection; + + +/** + * A structure containing a template for a Constant effect. + * + * This struct is exclusively for the SDL_HAPTIC_CONSTANT effect. + * + * A constant effect applies a constant force in the specified direction to + * the joystick. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_CONSTANT + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticConstant +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_CONSTANT */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Constant */ + Sint16 level; /**< Strength of the constant effect. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticConstant; + +/** + * A structure containing a template for a Periodic effect. + * + * The struct handles the following effects: + * + * - SDL_HAPTIC_SINE + * - SDL_HAPTIC_SQUARE + * - SDL_HAPTIC_TRIANGLE + * - SDL_HAPTIC_SAWTOOTHUP + * - SDL_HAPTIC_SAWTOOTHDOWN + * + * A periodic effect consists in a wave-shaped effect that repeats itself over + * time. The type determines the shape of the wave and the parameters + * determine the dimensions of the wave. + * + * Phase is given by hundredth of a degree meaning that giving the phase a + * value of 9000 will displace it 25% of its period. Here are sample values: + * + * - 0: No phase displacement. + * - 9000: Displaced 25% of its period. + * - 18000: Displaced 50% of its period. + * - 27000: Displaced 75% of its period. + * - 36000: Displaced 100% of its period, same as 0, but 0 is preferred. + * + * Examples: + * + * ``` + * SDL_HAPTIC_SINE + * __ __ __ __ + * / \ / \ / \ / + * / \__/ \__/ \__/ + * + * SDL_HAPTIC_SQUARE + * __ __ __ __ __ + * | | | | | | | | | | + * | |__| |__| |__| |__| | + * + * SDL_HAPTIC_TRIANGLE + * /\ /\ /\ /\ /\ + * / \ / \ / \ / \ / + * / \/ \/ \/ \/ + * + * SDL_HAPTIC_SAWTOOTHUP + * /| /| /| /| /| /| /| + * / | / | / | / | / | / | / | + * / |/ |/ |/ |/ |/ |/ | + * + * SDL_HAPTIC_SAWTOOTHDOWN + * \ |\ |\ |\ |\ |\ |\ | + * \ | \ | \ | \ | \ | \ | \ | + * \| \| \| \| \| \| \| + * ``` + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_SINE + * \sa SDL_HAPTIC_SQUARE + * \sa SDL_HAPTIC_TRIANGLE + * \sa SDL_HAPTIC_SAWTOOTHUP + * \sa SDL_HAPTIC_SAWTOOTHDOWN + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticPeriodic +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_SINE, SDL_HAPTIC_SQUARE + SDL_HAPTIC_TRIANGLE, SDL_HAPTIC_SAWTOOTHUP or + SDL_HAPTIC_SAWTOOTHDOWN */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Periodic */ + Uint16 period; /**< Period of the wave. */ + Sint16 magnitude; /**< Peak value; if negative, equivalent to 180 degrees extra phase shift. */ + Sint16 offset; /**< Mean value of the wave. */ + Uint16 phase; /**< Positive phase shift given by hundredth of a degree. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticPeriodic; + +/** + * A structure containing a template for a Condition effect. + * + * The struct handles the following effects: + * + * - SDL_HAPTIC_SPRING: Effect based on axes position. + * - SDL_HAPTIC_DAMPER: Effect based on axes velocity. + * - SDL_HAPTIC_INERTIA: Effect based on axes acceleration. + * - SDL_HAPTIC_FRICTION: Effect based on axes movement. + * + * Direction is handled by condition internals instead of a direction member. + * The condition effect specific members have three parameters. The first + * refers to the X axis, the second refers to the Y axis and the third refers + * to the Z axis. The right terms refer to the positive side of the axis and + * the left terms refer to the negative side of the axis. Please refer to the + * SDL_HapticDirection diagram for which side is positive and which is + * negative. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HapticDirection + * \sa SDL_HAPTIC_SPRING + * \sa SDL_HAPTIC_DAMPER + * \sa SDL_HAPTIC_INERTIA + * \sa SDL_HAPTIC_FRICTION + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticCondition +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_SPRING, SDL_HAPTIC_DAMPER, + SDL_HAPTIC_INERTIA or SDL_HAPTIC_FRICTION */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Condition */ + Uint16 right_sat[3]; /**< Level when joystick is to the positive side; max 0xFFFF. */ + Uint16 left_sat[3]; /**< Level when joystick is to the negative side; max 0xFFFF. */ + Sint16 right_coeff[3]; /**< How fast to increase the force towards the positive side. */ + Sint16 left_coeff[3]; /**< How fast to increase the force towards the negative side. */ + Uint16 deadband[3]; /**< Size of the dead zone; max 0xFFFF: whole axis-range when 0-centered. */ + Sint16 center[3]; /**< Position of the dead zone. */ +} SDL_HapticCondition; + +/** + * A structure containing a template for a Ramp effect. + * + * This struct is exclusively for the SDL_HAPTIC_RAMP effect. + * + * The ramp effect starts at start strength and ends at end strength. It + * augments in linear fashion. If you use attack and fade with a ramp the + * effects get added to the ramp effect making the effect become quadratic + * instead of linear. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_RAMP + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticRamp +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_RAMP */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Ramp */ + Sint16 start; /**< Beginning strength level. */ + Sint16 end; /**< Ending strength level. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticRamp; + +/** + * A structure containing a template for a Left/Right effect. + * + * This struct is exclusively for the SDL_HAPTIC_LEFTRIGHT effect. + * + * The Left/Right effect is used to explicitly control the large and small + * motors, commonly found in modern game controllers. The small (right) motor + * is high frequency, and the large (left) motor is low frequency. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_LEFTRIGHT + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticLeftRight +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_LEFTRIGHT */ + + /* Replay */ + Uint32 length; /**< Duration of the effect in milliseconds. */ + + /* Rumble */ + Uint16 large_magnitude; /**< Control of the large controller motor. */ + Uint16 small_magnitude; /**< Control of the small controller motor. */ +} SDL_HapticLeftRight; + +/** + * A structure containing a template for the SDL_HAPTIC_CUSTOM effect. + * + * This struct is exclusively for the SDL_HAPTIC_CUSTOM effect. + * + * A custom force feedback effect is much like a periodic effect, where the + * application can define its exact shape. You will have to allocate the data + * yourself. Data should consist of channels * samples Uint16 samples. + * + * If channels is one, the effect is rotated using the defined direction. + * Otherwise it uses the samples in data for the different axes. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HAPTIC_CUSTOM + * \sa SDL_HapticEffect + */ +typedef struct SDL_HapticCustom +{ + /* Header */ + Uint16 type; /**< SDL_HAPTIC_CUSTOM */ + SDL_HapticDirection direction; /**< Direction of the effect. */ + + /* Replay */ + Uint32 length; /**< Duration of the effect. */ + Uint16 delay; /**< Delay before starting the effect. */ + + /* Trigger */ + Uint16 button; /**< Button that triggers the effect. */ + Uint16 interval; /**< How soon it can be triggered again after button. */ + + /* Custom */ + Uint8 channels; /**< Axes to use, minimum of one. */ + Uint16 period; /**< Sample periods. */ + Uint16 samples; /**< Amount of samples. */ + Uint16 *data; /**< Should contain channels*samples items. */ + + /* Envelope */ + Uint16 attack_length; /**< Duration of the attack. */ + Uint16 attack_level; /**< Level at the start of the attack. */ + Uint16 fade_length; /**< Duration of the fade. */ + Uint16 fade_level; /**< Level at the end of the fade. */ +} SDL_HapticCustom; + +/** + * The generic template for any haptic effect. + * + * All values max at 32767 (0x7FFF). Signed values also can be negative. Time + * values unless specified otherwise are in milliseconds. + * + * You can also pass SDL_HAPTIC_INFINITY to length instead of a 0-32767 value. + * Neither delay, interval, attack_length nor fade_length support + * SDL_HAPTIC_INFINITY. Fade will also not be used since effect never ends. + * + * Additionally, the SDL_HAPTIC_RAMP effect does not support a duration of + * SDL_HAPTIC_INFINITY. + * + * Button triggers may not be supported on all devices, it is advised to not + * use them if possible. Buttons start at index 1 instead of index 0 like the + * joystick. + * + * If both attack_length and fade_level are 0, the envelope is not used, + * otherwise both values are used. + * + * Common parts: + * + * ```c + * // Replay - All effects have this + * Uint32 length; // Duration of effect (ms). + * Uint16 delay; // Delay before starting effect. + * + * // Trigger - All effects have this + * Uint16 button; // Button that triggers effect. + * Uint16 interval; // How soon before effect can be triggered again. + * + * // Envelope - All effects except condition effects have this + * Uint16 attack_length; // Duration of the attack (ms). + * Uint16 attack_level; // Level at the start of the attack. + * Uint16 fade_length; // Duration of the fade out (ms). + * Uint16 fade_level; // Level at the end of the fade. + * ``` + * + * Here we have an example of a constant effect evolution in time: + * + * ``` + * Strength + * ^ + * | + * | effect level --> _________________ + * | / \ + * | / \ + * | / \ + * | / \ + * | attack_level --> | \ + * | | | <--- fade_level + * | + * +--------------------------------------------------> Time + * [--] [---] + * attack_length fade_length + * + * [------------------][-----------------------] + * delay length + * ``` + * + * Note either the attack_level or the fade_level may be above the actual + * effect level. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_HapticConstant + * \sa SDL_HapticPeriodic + * \sa SDL_HapticCondition + * \sa SDL_HapticRamp + * \sa SDL_HapticLeftRight + * \sa SDL_HapticCustom + */ +typedef union SDL_HapticEffect +{ + /* Common for all force feedback effects */ + Uint16 type; /**< Effect type. */ + SDL_HapticConstant constant; /**< Constant effect. */ + SDL_HapticPeriodic periodic; /**< Periodic effect. */ + SDL_HapticCondition condition; /**< Condition effect. */ + SDL_HapticRamp ramp; /**< Ramp effect. */ + SDL_HapticLeftRight leftright; /**< Left/Right effect. */ + SDL_HapticCustom custom; /**< Custom effect. */ +} SDL_HapticEffect; + +/** + * This is a unique ID for a haptic device for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the haptic device is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_HapticID; + + +/* Function prototypes */ + +/** + * Get a list of currently connected haptic devices. + * + * \param count a pointer filled in with the number of haptic devices + * returned, may be NULL. + * \returns a 0 terminated array of haptic device instance IDs or NULL on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHaptic + */ +extern SDL_DECLSPEC SDL_HapticID * SDLCALL SDL_GetHaptics(int *count); + +/** + * Get the implementation dependent name of a haptic device. + * + * This can be called before any haptic devices are opened. + * + * \param instance_id the haptic device instance ID. + * \returns the name of the selected haptic device. If no name can be found, + * this function returns NULL; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticName + * \sa SDL_OpenHaptic + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetHapticNameForID(SDL_HapticID instance_id); + +/** + * Open a haptic device for use. + * + * The index passed as an argument refers to the N'th haptic device on this + * system. + * + * When opening a haptic device, its gain will be set to maximum and + * autocenter will be disabled. To modify these values use SDL_SetHapticGain() + * and SDL_SetHapticAutocenter(). + * + * \param instance_id the haptic device instance ID. + * \returns the device identifier or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseHaptic + * \sa SDL_GetHaptics + * \sa SDL_OpenHapticFromJoystick + * \sa SDL_OpenHapticFromMouse + * \sa SDL_SetHapticAutocenter + * \sa SDL_SetHapticGain + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_OpenHaptic(SDL_HapticID instance_id); + + +/** + * Get the SDL_Haptic associated with an instance ID, if it has been opened. + * + * \param instance_id the instance ID to get the SDL_Haptic for. + * \returns an SDL_Haptic on success or NULL on failure or if it hasn't been + * opened yet; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_GetHapticFromID(SDL_HapticID instance_id); + +/** + * Get the instance ID of an opened haptic device. + * + * \param haptic the SDL_Haptic device to query. + * \returns the instance ID of the specified haptic device on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_HapticID SDLCALL SDL_GetHapticID(SDL_Haptic *haptic); + +/** + * Get the implementation dependent name of a haptic device. + * + * \param haptic the SDL_Haptic obtained from SDL_OpenJoystick(). + * \returns the name of the selected haptic device. If no name can be found, + * this function returns NULL; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticNameForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetHapticName(SDL_Haptic *haptic); + +/** + * Query whether or not the current mouse has haptic capabilities. + * + * \returns true if the mouse is haptic or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHapticFromMouse + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsMouseHaptic(void); + +/** + * Try to open a haptic device from the current mouse. + * + * \returns the haptic device identifier or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseHaptic + * \sa SDL_IsMouseHaptic + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_OpenHapticFromMouse(void); + +/** + * Query if a joystick has haptic features. + * + * \param joystick the SDL_Joystick to test for haptic capabilities. + * \returns true if the joystick is haptic or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHapticFromJoystick + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsJoystickHaptic(SDL_Joystick *joystick); + +/** + * Open a haptic device for use from a joystick device. + * + * You must still close the haptic device separately. It will not be closed + * with the joystick. + * + * When opened from a joystick you should first close the haptic device before + * closing the joystick device. If not, on some implementations the haptic + * device will also get unallocated and you'll be unable to use force feedback + * on that device. + * + * \param joystick the SDL_Joystick to create a haptic device from. + * \returns a valid haptic device identifier on success or NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseHaptic + * \sa SDL_IsJoystickHaptic + */ +extern SDL_DECLSPEC SDL_Haptic * SDLCALL SDL_OpenHapticFromJoystick(SDL_Joystick *joystick); + +/** + * Close a haptic device previously opened with SDL_OpenHaptic(). + * + * \param haptic the SDL_Haptic device to close. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenHaptic + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseHaptic(SDL_Haptic *haptic); + +/** + * Get the number of effects a haptic device can store. + * + * On some platforms this isn't fully supported, and therefore is an + * approximation. Always check to see if your created effect was actually + * created and do not rely solely on SDL_GetMaxHapticEffects(). + * + * \param haptic the SDL_Haptic device to query. + * \returns the number of effects the haptic device can store or a negative + * error code on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMaxHapticEffectsPlaying + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetMaxHapticEffects(SDL_Haptic *haptic); + +/** + * Get the number of effects a haptic device can play at the same time. + * + * This is not supported on all platforms, but will always return a value. + * + * \param haptic the SDL_Haptic device to query maximum playing effects. + * \returns the number of effects the haptic device can play at the same time + * or -1 on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMaxHapticEffects + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetMaxHapticEffectsPlaying(SDL_Haptic *haptic); + +/** + * Get the haptic device's supported features in bitwise manner. + * + * \param haptic the SDL_Haptic device to query. + * \returns a list of supported haptic features in bitwise manner (OR'd), or 0 + * on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HapticEffectSupported + * \sa SDL_GetMaxHapticEffects + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetHapticFeatures(SDL_Haptic *haptic); + +/** + * Get the number of haptic axes the device has. + * + * The number of haptic axes might be useful if working with the + * SDL_HapticDirection effect. + * + * \param haptic the SDL_Haptic device to query. + * \returns the number of axes on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumHapticAxes(SDL_Haptic *haptic); + +/** + * Check to see if an effect is supported by a haptic device. + * + * \param haptic the SDL_Haptic device to query. + * \param effect the desired effect to query. + * \returns true if the effect is supported or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateHapticEffect + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HapticEffectSupported(SDL_Haptic *haptic, const SDL_HapticEffect *effect); + +/** + * Create a new haptic effect on a specified device. + * + * \param haptic an SDL_Haptic device to create the effect on. + * \param effect an SDL_HapticEffect structure containing the properties of + * the effect to create. + * \returns the ID of the effect on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyHapticEffect + * \sa SDL_RunHapticEffect + * \sa SDL_UpdateHapticEffect + */ +extern SDL_DECLSPEC int SDLCALL SDL_CreateHapticEffect(SDL_Haptic *haptic, const SDL_HapticEffect *effect); + +/** + * Update the properties of an effect. + * + * Can be used dynamically, although behavior when dynamically changing + * direction may be strange. Specifically the effect may re-upload itself and + * start playing from the start. You also cannot change the type either when + * running SDL_UpdateHapticEffect(). + * + * \param haptic the SDL_Haptic device that has the effect. + * \param effect the identifier of the effect to update. + * \param data an SDL_HapticEffect structure containing the new effect + * properties to use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateHapticEffect + * \sa SDL_RunHapticEffect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateHapticEffect(SDL_Haptic *haptic, int effect, const SDL_HapticEffect *data); + +/** + * Run the haptic effect on its associated haptic device. + * + * To repeat the effect over and over indefinitely, set `iterations` to + * `SDL_HAPTIC_INFINITY`. (Repeats the envelope - attack and fade.) To make + * one instance of the effect last indefinitely (so the effect does not fade), + * set the effect's `length` in its structure/union to `SDL_HAPTIC_INFINITY` + * instead. + * + * \param haptic the SDL_Haptic device to run the effect on. + * \param effect the ID of the haptic effect to run. + * \param iterations the number of iterations to run the effect; use + * `SDL_HAPTIC_INFINITY` to repeat forever. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticEffectStatus + * \sa SDL_StopHapticEffect + * \sa SDL_StopHapticEffects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RunHapticEffect(SDL_Haptic *haptic, int effect, Uint32 iterations); + +/** + * Stop the haptic effect on its associated haptic device. + * + * \param haptic the SDL_Haptic device to stop the effect on. + * \param effect the ID of the haptic effect to stop. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RunHapticEffect + * \sa SDL_StopHapticEffects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopHapticEffect(SDL_Haptic *haptic, int effect); + +/** + * Destroy a haptic effect on the device. + * + * This will stop the effect if it's running. Effects are automatically + * destroyed when the device is closed. + * + * \param haptic the SDL_Haptic device to destroy the effect on. + * \param effect the ID of the haptic effect to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateHapticEffect + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyHapticEffect(SDL_Haptic *haptic, int effect); + +/** + * Get the status of the current effect on the specified haptic device. + * + * Device must support the SDL_HAPTIC_STATUS feature. + * + * \param haptic the SDL_Haptic device to query for the effect status on. + * \param effect the ID of the haptic effect to query its status. + * \returns true if it is playing, false if it isn't playing or haptic status + * isn't supported. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetHapticEffectStatus(SDL_Haptic *haptic, int effect); + +/** + * Set the global gain of the specified haptic device. + * + * Device must support the SDL_HAPTIC_GAIN feature. + * + * The user may specify the maximum gain by setting the environment variable + * `SDL_HAPTIC_GAIN_MAX` which should be between 0 and 100. All calls to + * SDL_SetHapticGain() will scale linearly using `SDL_HAPTIC_GAIN_MAX` as the + * maximum. + * + * \param haptic the SDL_Haptic device to set the gain on. + * \param gain value to set the gain to, should be between 0 and 100 (0 - + * 100). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHapticGain(SDL_Haptic *haptic, int gain); + +/** + * Set the global autocenter of the device. + * + * Autocenter should be between 0 and 100. Setting it to 0 will disable + * autocentering. + * + * Device must support the SDL_HAPTIC_AUTOCENTER feature. + * + * \param haptic the SDL_Haptic device to set autocentering on. + * \param autocenter value to set autocenter to (0-100). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHapticFeatures + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHapticAutocenter(SDL_Haptic *haptic, int autocenter); + +/** + * Pause a haptic device. + * + * Device must support the `SDL_HAPTIC_PAUSE` feature. Call SDL_ResumeHaptic() + * to resume playback. + * + * Do not modify the effects nor add new ones while the device is paused. That + * can cause all sorts of weird errors. + * + * \param haptic the SDL_Haptic device to pause. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResumeHaptic + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PauseHaptic(SDL_Haptic *haptic); + +/** + * Resume a haptic device. + * + * Call to unpause after SDL_PauseHaptic(). + * + * \param haptic the SDL_Haptic device to unpause. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PauseHaptic + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResumeHaptic(SDL_Haptic *haptic); + +/** + * Stop all the currently playing effects on a haptic device. + * + * \param haptic the SDL_Haptic device to stop. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RunHapticEffect + * \sa SDL_StopHapticEffects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopHapticEffects(SDL_Haptic *haptic); + +/** + * Check whether rumble is supported on a haptic device. + * + * \param haptic haptic device to check for rumble support. + * \returns true if the effect is supported or false if it isn't. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InitHapticRumble + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HapticRumbleSupported(SDL_Haptic *haptic); + +/** + * Initialize a haptic device for simple rumble playback. + * + * \param haptic the haptic device to initialize for simple rumble playback. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PlayHapticRumble + * \sa SDL_StopHapticRumble + * \sa SDL_HapticRumbleSupported + */ +extern SDL_DECLSPEC bool SDLCALL SDL_InitHapticRumble(SDL_Haptic *haptic); + +/** + * Run a simple rumble effect on a haptic device. + * + * \param haptic the haptic device to play the rumble effect on. + * \param strength strength of the rumble to play as a 0-1 float value. + * \param length length of the rumble to play in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InitHapticRumble + * \sa SDL_StopHapticRumble + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PlayHapticRumble(SDL_Haptic *haptic, float strength, Uint32 length); + +/** + * Stop the simple rumble on a haptic device. + * + * \param haptic the haptic device to stop the rumble effect on. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PlayHapticRumble + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopHapticRumble(SDL_Haptic *haptic); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_haptic_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_hidapi.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_hidapi.h new file mode 100644 index 0000000..131b037 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_hidapi.h @@ -0,0 +1,552 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: HIDAPI */ + +/** + * # CategoryHIDAPI + * + * Header file for SDL HIDAPI functions. + * + * This is an adaptation of the original HIDAPI interface by Alan Ott, and + * includes source code licensed under the following license: + * + * ``` + * HIDAPI - Multi-Platform library for + * communication with HID devices. + * + * Copyright 2009, Alan Ott, Signal 11 Software. + * All Rights Reserved. + * + * This software may be used by anyone for any reason so + * long as the copyright notice in the source files + * remains intact. + * ``` + * + * (Note that this license is the same as item three of SDL's zlib license, so + * it adds no new requirements on the user.) + * + * If you would like a version of SDL without this code, you can build SDL + * with SDL_HIDAPI_DISABLED defined to 1. You might want to do this for + * example on iOS or tvOS to avoid a dependency on the CoreBluetooth + * framework. + */ + +#ifndef SDL_hidapi_h_ +#define SDL_hidapi_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque handle representing an open HID device. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_hid_device SDL_hid_device; + +/** + * HID underlying bus types. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_hid_bus_type { + /** Unknown bus type */ + SDL_HID_API_BUS_UNKNOWN = 0x00, + + /** USB bus + Specifications: + https://usb.org/hid */ + SDL_HID_API_BUS_USB = 0x01, + + /** Bluetooth or Bluetooth LE bus + Specifications: + https://www.bluetooth.com/specifications/specs/human-interface-device-profile-1-1-1/ + https://www.bluetooth.com/specifications/specs/hid-service-1-0/ + https://www.bluetooth.com/specifications/specs/hid-over-gatt-profile-1-0/ */ + SDL_HID_API_BUS_BLUETOOTH = 0x02, + + /** I2C bus + Specifications: + https://docs.microsoft.com/previous-versions/windows/hardware/design/dn642101(v=vs.85) */ + SDL_HID_API_BUS_I2C = 0x03, + + /** SPI bus + Specifications: + https://www.microsoft.com/download/details.aspx?id=103325 */ + SDL_HID_API_BUS_SPI = 0x04 + +} SDL_hid_bus_type; + +/** hidapi info structure */ + +/** + * Information about a connected HID device + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_hid_device_info +{ + /** Platform-specific device path */ + char *path; + /** Device Vendor ID */ + unsigned short vendor_id; + /** Device Product ID */ + unsigned short product_id; + /** Serial Number */ + wchar_t *serial_number; + /** Device Release Number in binary-coded decimal, + also known as Device Version Number */ + unsigned short release_number; + /** Manufacturer String */ + wchar_t *manufacturer_string; + /** Product string */ + wchar_t *product_string; + /** Usage Page for this Device/Interface + (Windows/Mac/hidraw only) */ + unsigned short usage_page; + /** Usage for this Device/Interface + (Windows/Mac/hidraw only) */ + unsigned short usage; + /** The USB interface which this logical device + represents. + + Valid only if the device is a USB HID device. + Set to -1 in all other cases. + */ + int interface_number; + + /** Additional information about the USB interface. + Valid on libusb and Android implementations. */ + int interface_class; + int interface_subclass; + int interface_protocol; + + /** Underlying bus type */ + SDL_hid_bus_type bus_type; + + /** Pointer to the next device */ + struct SDL_hid_device_info *next; + +} SDL_hid_device_info; + + +/** + * Initialize the HIDAPI library. + * + * This function initializes the HIDAPI library. Calling it is not strictly + * necessary, as it will be called automatically by SDL_hid_enumerate() and + * any of the SDL_hid_open_*() functions if it is needed. This function should + * be called at the beginning of execution however, if there is a chance of + * HIDAPI handles being opened by different threads simultaneously. + * + * Each call to this function should have a matching call to SDL_hid_exit() + * + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_exit + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_init(void); + +/** + * Finalize the HIDAPI library. + * + * This function frees all of the static data associated with HIDAPI. It + * should be called at the end of execution to avoid memory leaks. + * + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_init + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_exit(void); + +/** + * Check to see if devices may have been added or removed. + * + * Enumerating the HID devices is an expensive operation, so you can call this + * to see if there have been any system device changes since the last call to + * this function. A change in the counter returned doesn't necessarily mean + * that anything has changed, but you can call SDL_hid_enumerate() to get an + * updated device list. + * + * Calling this function for the first time may cause a thread or other system + * resource to be allocated to track device change notifications. + * + * \returns a change counter that is incremented with each potential device + * change, or 0 if device change detection isn't available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_enumerate + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_hid_device_change_count(void); + +/** + * Enumerate the HID Devices. + * + * This function returns a linked list of all the HID devices attached to the + * system which match vendor_id and product_id. If `vendor_id` is set to 0 + * then any vendor matches. If `product_id` is set to 0 then any product + * matches. If `vendor_id` and `product_id` are both set to 0, then all HID + * devices will be returned. + * + * By default SDL will only enumerate controllers, to reduce risk of hanging + * or crashing on bad drivers, but SDL_HINT_HIDAPI_ENUMERATE_ONLY_CONTROLLERS + * can be set to "0" to enumerate all HID devices. + * + * \param vendor_id the Vendor ID (VID) of the types of device to open, or 0 + * to match any vendor. + * \param product_id the Product ID (PID) of the types of device to open, or 0 + * to match any product. + * \returns a pointer to a linked list of type SDL_hid_device_info, containing + * information about the HID devices attached to the system, or NULL + * in the case of failure. Free this linked list by calling + * SDL_hid_free_enumeration(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_hid_device_change_count + */ +extern SDL_DECLSPEC SDL_hid_device_info * SDLCALL SDL_hid_enumerate(unsigned short vendor_id, unsigned short product_id); + +/** + * Free an enumeration linked list. + * + * This function frees a linked list created by SDL_hid_enumerate(). + * + * \param devs pointer to a list of struct_device returned from + * SDL_hid_enumerate(). + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_hid_free_enumeration(SDL_hid_device_info *devs); + +/** + * Open a HID device using a Vendor ID (VID), Product ID (PID) and optionally + * a serial number. + * + * If `serial_number` is NULL, the first device with the specified VID and PID + * is opened. + * + * \param vendor_id the Vendor ID (VID) of the device to open. + * \param product_id the Product ID (PID) of the device to open. + * \param serial_number the Serial Number of the device to open (Optionally + * NULL). + * \returns a pointer to a SDL_hid_device object on success or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_hid_device * SDLCALL SDL_hid_open(unsigned short vendor_id, unsigned short product_id, const wchar_t *serial_number); + +/** + * Open a HID device by its path name. + * + * The path name be determined by calling SDL_hid_enumerate(), or a + * platform-specific path name can be used (eg: /dev/hidraw0 on Linux). + * + * \param path the path name of the device to open. + * \returns a pointer to a SDL_hid_device object on success or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_hid_device * SDLCALL SDL_hid_open_path(const char *path); + +/** + * Write an Output report to a HID device. + * + * The first byte of `data` must contain the Report ID. For devices which only + * support a single report, this must be set to 0x0. The remaining bytes + * contain the report data. Since the Report ID is mandatory, calls to + * SDL_hid_write() will always contain one more byte than the report contains. + * For example, if a hid report is 16 bytes long, 17 bytes must be passed to + * SDL_hid_write(), the Report ID (or 0x0, for devices with a single report), + * followed by the report data (16 bytes). In this example, the length passed + * in would be 17. + * + * SDL_hid_write() will send the data on the first OUT endpoint, if one + * exists. If it does not, it will send the data through the Control Endpoint + * (Endpoint 0). + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data the data to send, including the report number as the first + * byte. + * \param length the length in bytes of the data to send. + * \returns the actual number of bytes written and -1 on on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_write(SDL_hid_device *dev, const unsigned char *data, size_t length); + +/** + * Read an Input report from a HID device with timeout. + * + * Input reports are returned to the host through the INTERRUPT IN endpoint. + * The first byte will contain the Report number if the device uses numbered + * reports. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into. + * \param length the number of bytes to read. For devices with multiple + * reports, make sure to read an extra byte for the report + * number. + * \param milliseconds timeout in milliseconds or -1 for blocking wait. + * \returns the actual number of bytes read and -1 on on failure; call + * SDL_GetError() for more information. If no packet was available to + * be read within the timeout period, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_read_timeout(SDL_hid_device *dev, unsigned char *data, size_t length, int milliseconds); + +/** + * Read an Input report from a HID device. + * + * Input reports are returned to the host through the INTERRUPT IN endpoint. + * The first byte will contain the Report number if the device uses numbered + * reports. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into. + * \param length the number of bytes to read. For devices with multiple + * reports, make sure to read an extra byte for the report + * number. + * \returns the actual number of bytes read and -1 on failure; call + * SDL_GetError() for more information. If no packet was available to + * be read and the handle is in non-blocking mode, this function + * returns 0. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_read(SDL_hid_device *dev, unsigned char *data, size_t length); + +/** + * Set the device handle to be non-blocking. + * + * In non-blocking mode calls to SDL_hid_read() will return immediately with a + * value of 0 if there is no data to be read. In blocking mode, SDL_hid_read() + * will wait (block) until there is data to read before returning. + * + * Nonblocking can be turned on and off at any time. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param nonblock enable or not the nonblocking reads - 1 to enable + * nonblocking - 0 to disable nonblocking. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_set_nonblocking(SDL_hid_device *dev, int nonblock); + +/** + * Send a Feature report to the device. + * + * Feature reports are sent over the Control endpoint as a Set_Report + * transfer. The first byte of `data` must contain the Report ID. For devices + * which only support a single report, this must be set to 0x0. The remaining + * bytes contain the report data. Since the Report ID is mandatory, calls to + * SDL_hid_send_feature_report() will always contain one more byte than the + * report contains. For example, if a hid report is 16 bytes long, 17 bytes + * must be passed to SDL_hid_send_feature_report(): the Report ID (or 0x0, for + * devices which do not use numbered reports), followed by the report data (16 + * bytes). In this example, the length passed in would be 17. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data the data to send, including the report number as the first + * byte. + * \param length the length in bytes of the data to send, including the report + * number. + * \returns the actual number of bytes written and -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_send_feature_report(SDL_hid_device *dev, const unsigned char *data, size_t length); + +/** + * Get a feature report from a HID device. + * + * Set the first byte of `data` to the Report ID of the report to be read. + * Make sure to allow space for this extra byte in `data`. Upon return, the + * first byte will still contain the Report ID, and the report data will start + * in data[1]. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into, including the Report ID. + * Set the first byte of `data` to the Report ID of the report to + * be read, or set it to zero if your device does not use numbered + * reports. + * \param length the number of bytes to read, including an extra byte for the + * report ID. The buffer can be longer than the actual report. + * \returns the number of bytes read plus one for the report ID (which is + * still in the first byte), or -1 on on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_feature_report(SDL_hid_device *dev, unsigned char *data, size_t length); + +/** + * Get an input report from a HID device. + * + * Set the first byte of `data` to the Report ID of the report to be read. + * Make sure to allow space for this extra byte in `data`. Upon return, the + * first byte will still contain the Report ID, and the report data will start + * in data[1]. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param data a buffer to put the read data into, including the Report ID. + * Set the first byte of `data` to the Report ID of the report to + * be read, or set it to zero if your device does not use numbered + * reports. + * \param length the number of bytes to read, including an extra byte for the + * report ID. The buffer can be longer than the actual report. + * \returns the number of bytes read plus one for the report ID (which is + * still in the first byte), or -1 on on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_input_report(SDL_hid_device *dev, unsigned char *data, size_t length); + +/** + * Close a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_close(SDL_hid_device *dev); + +/** + * Get The Manufacturer String from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_manufacturer_string(SDL_hid_device *dev, wchar_t *string, size_t maxlen); + +/** + * Get The Product String from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_product_string(SDL_hid_device *dev, wchar_t *string, size_t maxlen); + +/** + * Get The Serial Number String from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_serial_number_string(SDL_hid_device *dev, wchar_t *string, size_t maxlen); + +/** + * Get a string from a HID device, based on its string index. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param string_index the index of the string to get. + * \param string a wide string buffer to put the data into. + * \param maxlen the length of the buffer in multiples of wchar_t. + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_indexed_string(SDL_hid_device *dev, int string_index, wchar_t *string, size_t maxlen); + +/** + * Get the device info from a HID device. + * + * \param dev a device handle returned from SDL_hid_open(). + * \returns a pointer to the SDL_hid_device_info for this hid_device or NULL + * on failure; call SDL_GetError() for more information. This struct + * is valid until the device is closed with SDL_hid_close(). + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_hid_device_info * SDLCALL SDL_hid_get_device_info(SDL_hid_device *dev); + +/** + * Get a report descriptor from a HID device. + * + * User has to provide a preallocated buffer where descriptor will be copied + * to. The recommended size for a preallocated buffer is 4096 bytes. + * + * \param dev a device handle returned from SDL_hid_open(). + * \param buf the buffer to copy descriptor into. + * \param buf_size the size of the buffer in bytes. + * \returns the number of bytes actually copied or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_hid_get_report_descriptor(SDL_hid_device *dev, unsigned char *buf, size_t buf_size); + +/** + * Start or stop a BLE scan on iOS and tvOS to pair Steam Controllers. + * + * \param active true to start the scan, false to stop the scan. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_hid_ble_scan(bool active); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_hidapi_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_hints.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_hints.h new file mode 100644 index 0000000..a081535 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_hints.h @@ -0,0 +1,4486 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryHints + * + * This file contains functions to set and get configuration hints, as well as + * listing each of them alphabetically. + * + * The convention for naming hints is SDL_HINT_X, where "SDL_X" is the + * environment variable that can be used to override the default. + * + * In general these hints are just that - they may or may not be supported or + * applicable on any given platform, but they provide a way for an application + * or user to give the library a hint as to how they would like the library to + * work. + */ + +#ifndef SDL_hints_h_ +#define SDL_hints_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Specify the behavior of Alt+Tab while the keyboard is grabbed. + * + * By default, SDL emulates Alt+Tab functionality while the keyboard is + * grabbed and your window is full-screen. This prevents the user from getting + * stuck in your application if you've enabled keyboard grab. + * + * The variable can be set to the following values: + * + * - "0": SDL will not handle Alt+Tab. Your application is responsible for + * handling Alt+Tab while the keyboard is grabbed. + * - "1": SDL will minimize your window when Alt+Tab is pressed (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ALLOW_ALT_TAB_WHILE_GRABBED "SDL_ALLOW_ALT_TAB_WHILE_GRABBED" + +/** + * A variable to control whether the SDL activity is allowed to be re-created. + * + * If this hint is true, the activity can be recreated on demand by the OS, + * and Java static data and C++ static data remain with their current values. + * If this hint is false, then SDL will call exit() when you return from your + * main function and the application will be terminated and then started fresh + * each time. + * + * The variable can be set to the following values: + * + * - "0": The application starts fresh at each launch. (default) + * - "1": The application activity can be recreated by the OS. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_ALLOW_RECREATE_ACTIVITY "SDL_ANDROID_ALLOW_RECREATE_ACTIVITY" + +/** + * A variable to control whether the event loop will block itself when the app + * is paused. + * + * The variable can be set to the following values: + * + * - "0": Non blocking. + * - "1": Blocking. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_BLOCK_ON_PAUSE "SDL_ANDROID_BLOCK_ON_PAUSE" + +/** + * A variable to control whether low latency audio should be enabled. + * + * Some devices have poor quality output when this is enabled, but this is + * usually an improvement in audio latency. + * + * The variable can be set to the following values: + * + * - "0": Low latency audio is not enabled. + * - "1": Low latency audio is enabled. (default) + * + * This hint should be set before SDL audio is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_LOW_LATENCY_AUDIO "SDL_ANDROID_LOW_LATENCY_AUDIO" + +/** + * A variable to control whether we trap the Android back button to handle it + * manually. + * + * This is necessary for the right mouse button to work on some Android + * devices, or to be able to trap the back button for use in your code + * reliably. If this hint is true, the back button will show up as an + * SDL_EVENT_KEY_DOWN / SDL_EVENT_KEY_UP pair with a keycode of + * SDL_SCANCODE_AC_BACK. + * + * The variable can be set to the following values: + * + * - "0": Back button will be handled as usual for system. (default) + * - "1": Back button will be trapped, allowing you to handle the key press + * manually. (This will also let right mouse click work on systems where the + * right mouse button functions as back.) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ANDROID_TRAP_BACK_BUTTON "SDL_ANDROID_TRAP_BACK_BUTTON" + +/** + * A variable setting the app ID string. + * + * This string is used by desktop compositors to identify and group windows + * together, as well as match applications with associated desktop settings + * and icons. + * + * This will override SDL_PROP_APP_METADATA_IDENTIFIER_STRING, if set by the + * application. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APP_ID "SDL_APP_ID" + +/** + * A variable setting the application name. + * + * This hint lets you specify the application name sent to the OS when + * required. For example, this will often appear in volume control applets for + * audio streams, and in lists of applications which are inhibiting the + * screensaver. You should use a string that describes your program ("My Game + * 2: The Revenge") + * + * This will override SDL_PROP_APP_METADATA_NAME_STRING, if set by the + * application. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APP_NAME "SDL_APP_NAME" + +/** + * A variable controlling whether controllers used with the Apple TV generate + * UI events. + * + * When UI events are generated by controller input, the app will be + * backgrounded when the Apple TV remote's menu button is pressed, and when + * the pause or B buttons on gamepads are pressed. + * + * More information about properly making use of controllers for the Apple TV + * can be found here: + * https://developer.apple.com/tvos/human-interface-guidelines/remote-and-controllers/ + * + * The variable can be set to the following values: + * + * - "0": Controller input does not generate UI events. (default) + * - "1": Controller input generates UI events. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APPLE_TV_CONTROLLER_UI_EVENTS "SDL_APPLE_TV_CONTROLLER_UI_EVENTS" + +/** + * A variable controlling whether the Apple TV remote's joystick axes will + * automatically match the rotation of the remote. + * + * The variable can be set to the following values: + * + * - "0": Remote orientation does not affect joystick axes. (default) + * - "1": Joystick axes are based on the orientation of the remote. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_APPLE_TV_REMOTE_ALLOW_ROTATION "SDL_APPLE_TV_REMOTE_ALLOW_ROTATION" + +/** + * Specify the default ALSA audio device name. + * + * This variable is a specific audio device to open when the "default" audio + * device is used. + * + * This hint will be ignored when opening the default playback device if + * SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE is set, or when opening the + * default recording device if SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE is + * set. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE + */ +#define SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE "SDL_AUDIO_ALSA_DEFAULT_DEVICE" + +/** + * Specify the default ALSA audio playback device name. + * + * This variable is a specific audio device to open for playback, when the + * "default" audio device is used. + * + * If this hint isn't set, SDL will check SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + * before choosing a reasonable default. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + */ +#define SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE "SDL_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE" + +/** + * Specify the default ALSA audio recording device name. + * + * This variable is a specific audio device to open for recording, when the + * "default" audio device is used. + * + * If this hint isn't set, SDL will check SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + * before choosing a reasonable default. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_PLAYBACK_DEVICE + * \sa SDL_HINT_AUDIO_ALSA_DEFAULT_DEVICE + */ +#define SDL_HINT_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE "SDL_AUDIO_ALSA_DEFAULT_RECORDING_DEVICE" + +/** + * A variable controlling the audio category on iOS and macOS. + * + * The variable can be set to the following values: + * + * - "ambient": Use the AVAudioSessionCategoryAmbient audio category, will be + * muted by the phone mute switch (default) + * - "playback": Use the AVAudioSessionCategoryPlayback category. + * + * For more information, see Apple's documentation: + * https://developer.apple.com/library/content/documentation/Audio/Conceptual/AudioSessionProgrammingGuide/AudioSessionCategoriesandModes/AudioSessionCategoriesandModes.html + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_CATEGORY "SDL_AUDIO_CATEGORY" + +/** + * A variable controlling the default audio channel count. + * + * If the application doesn't specify the audio channel count when opening the + * device, this hint can be used to specify a default channel count that will + * be used. This defaults to "1" for recording and "2" for playback devices. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_CHANNELS "SDL_AUDIO_CHANNELS" + +/** + * Specify an application icon name for an audio device. + * + * Some audio backends (such as Pulseaudio and Pipewire) allow you to set an + * XDG icon name for your application. Among other things, this icon might + * show up in a system control panel that lets the user adjust the volume on + * specific audio streams instead of using one giant master volume slider. + * Note that this is unrelated to the icon used by the windowing system, which + * may be set with SDL_SetWindowIcon (or via desktop file on Wayland). + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default, "applications-games", which is likely to be installed. See + * https://specifications.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html + * and + * https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html + * for the relevant XDG icon specs. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_APP_ICON_NAME "SDL_AUDIO_DEVICE_APP_ICON_NAME" + +/** + * A variable controlling device buffer size. + * + * This hint is an integer > 0, that represents the size of the device's + * buffer in sample frames (stereo audio data in 16-bit format is 4 bytes per + * sample frame, for example). + * + * SDL3 generally decides this value on behalf of the app, but if for some + * reason the app needs to dictate this (because they want either lower + * latency or higher throughput AND ARE WILLING TO DEAL WITH what that might + * require of the app), they can specify it. + * + * SDL will try to accommodate this value, but there is no promise you'll get + * the buffer size requested. Many platforms won't honor this request at all, + * or might adjust it. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_SAMPLE_FRAMES "SDL_AUDIO_DEVICE_SAMPLE_FRAMES" + +/** + * Specify an audio stream name for an audio device. + * + * Some audio backends (such as PulseAudio) allow you to describe your audio + * stream. Among other things, this description might show up in a system + * control panel that lets the user adjust the volume on specific audio + * streams instead of using one giant master volume slider. + * + * This hints lets you transmit that information to the OS. The contents of + * this hint are used while opening an audio device. You should use a string + * that describes your what your program is playing ("audio stream" is + * probably sufficient in many cases, but this could be useful for something + * like "team chat" if you have a headset playing VoIP audio separately). + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default: "audio stream" or something similar. + * + * Note that while this talks about audio streams, this is an OS-level + * concept, so it applies to a physical audio device in this case, and not an + * SDL_AudioStream, nor an SDL logical audio device. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_STREAM_NAME "SDL_AUDIO_DEVICE_STREAM_NAME" + +/** + * Specify an application role for an audio device. + * + * Some audio backends (such as Pipewire) allow you to describe the role of + * your audio stream. Among other things, this description might show up in a + * system control panel or software for displaying and manipulating media + * playback/recording graphs. + * + * This hints lets you transmit that information to the OS. The contents of + * this hint are used while opening an audio device. You should use a string + * that describes your what your program is playing (Game, Music, Movie, + * etc...). + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default: "Game" or something similar. + * + * Note that while this talks about audio streams, this is an OS-level + * concept, so it applies to a physical audio device in this case, and not an + * SDL_AudioStream, nor an SDL logical audio device. + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DEVICE_STREAM_ROLE "SDL_AUDIO_DEVICE_STREAM_ROLE" + +/** + * Specify the input file when recording audio using the disk audio driver. + * + * This defaults to "sdlaudio-in.raw" + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DISK_INPUT_FILE "SDL_AUDIO_DISK_INPUT_FILE" + +/** + * Specify the output file when playing audio using the disk audio driver. + * + * This defaults to "sdlaudio.raw" + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DISK_OUTPUT_FILE "SDL_AUDIO_DISK_OUTPUT_FILE" + +/** + * A variable controlling the audio rate when using the disk audio driver. + * + * The disk audio driver normally simulates real-time for the audio rate that + * was specified, but you can use this variable to adjust this rate higher or + * lower down to 0. The default value is "1.0". + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DISK_TIMESCALE "SDL_AUDIO_DISK_TIMESCALE" + +/** + * A variable that specifies an audio backend to use. + * + * By default, SDL will try all available audio backends in a reasonable order + * until it finds one that can work, but this hint allows the app or user to + * force a specific driver, such as "pipewire" if, say, you are on PulseAudio + * but want to try talking to the lower level instead. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DRIVER "SDL_AUDIO_DRIVER" + +/** + * A variable controlling the audio rate when using the dummy audio driver. + * + * The dummy audio driver normally simulates real-time for the audio rate that + * was specified, but you can use this variable to adjust this rate higher or + * lower down to 0. The default value is "1.0". + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_DUMMY_TIMESCALE "SDL_AUDIO_DUMMY_TIMESCALE" + +/** + * A variable controlling the default audio format. + * + * If the application doesn't specify the audio format when opening the + * device, this hint can be used to specify a default format that will be + * used. + * + * The variable can be set to the following values: + * + * - "U8": Unsigned 8-bit audio + * - "S8": Signed 8-bit audio + * - "S16LE": Signed 16-bit little-endian audio + * - "S16BE": Signed 16-bit big-endian audio + * - "S16": Signed 16-bit native-endian audio (default) + * - "S32LE": Signed 32-bit little-endian audio + * - "S32BE": Signed 32-bit big-endian audio + * - "S32": Signed 32-bit native-endian audio + * - "F32LE": Floating point little-endian audio + * - "F32BE": Floating point big-endian audio + * - "F32": Floating point native-endian audio + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_FORMAT "SDL_AUDIO_FORMAT" + +/** + * A variable controlling the default audio frequency. + * + * If the application doesn't specify the audio frequency when opening the + * device, this hint can be used to specify a default frequency that will be + * used. This defaults to "44100". + * + * This hint should be set before an audio device is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_FREQUENCY "SDL_AUDIO_FREQUENCY" + +/** + * A variable that causes SDL to not ignore audio "monitors". + * + * This is currently only used by the PulseAudio driver. + * + * By default, SDL ignores audio devices that aren't associated with physical + * hardware. Changing this hint to "1" will expose anything SDL sees that + * appears to be an audio source or sink. This will add "devices" to the list + * that the user probably doesn't want or need, but it can be useful in + * scenarios where you want to hook up SDL to some sort of virtual device, + * etc. + * + * The variable can be set to the following values: + * + * - "0": Audio monitor devices will be ignored. (default) + * - "1": Audio monitor devices will show up in the device list. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUDIO_INCLUDE_MONITORS "SDL_AUDIO_INCLUDE_MONITORS" + +/** + * A variable controlling whether SDL updates joystick state when getting + * input events. + * + * The variable can be set to the following values: + * + * - "0": You'll call SDL_UpdateJoysticks() manually. + * - "1": SDL will automatically call SDL_UpdateJoysticks(). (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUTO_UPDATE_JOYSTICKS "SDL_AUTO_UPDATE_JOYSTICKS" + +/** + * A variable controlling whether SDL updates sensor state when getting input + * events. + * + * The variable can be set to the following values: + * + * - "0": You'll call SDL_UpdateSensors() manually. + * - "1": SDL will automatically call SDL_UpdateSensors(). (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_AUTO_UPDATE_SENSORS "SDL_AUTO_UPDATE_SENSORS" + +/** + * Prevent SDL from using version 4 of the bitmap header when saving BMPs. + * + * The bitmap header version 4 is required for proper alpha channel support + * and SDL will use it when required. Should this not be desired, this hint + * can force the use of the 40 byte header version which is supported + * everywhere. + * + * The variable can be set to the following values: + * + * - "0": Surfaces with a colorkey or an alpha channel are saved to a 32-bit + * BMP file with an alpha mask. SDL will use the bitmap header version 4 and + * set the alpha mask accordingly. (default) + * - "1": Surfaces with a colorkey or an alpha channel are saved to a 32-bit + * BMP file without an alpha mask. The alpha channel data will be in the + * file, but applications are going to ignore it. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_BMP_SAVE_LEGACY_FORMAT "SDL_BMP_SAVE_LEGACY_FORMAT" + +/** + * A variable that decides what camera backend to use. + * + * By default, SDL will try all available camera backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target, such as "directshow" if, say, you are on + * Windows Media Foundations but want to try DirectShow instead. + * + * The default value is unset, in which case SDL will try to figure out the + * best camera backend on your behalf. This hint needs to be set before + * SDL_Init() is called to be useful. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_CAMERA_DRIVER "SDL_CAMERA_DRIVER" + +/** + * A variable that limits what CPU features are available. + * + * By default, SDL marks all features the current CPU supports as available. + * This hint allows to limit these to a subset. + * + * When the hint is unset, or empty, SDL will enable all detected CPU + * features. + * + * The variable can be set to a comma separated list containing the following + * items: + * + * - "all" + * - "altivec" + * - "sse" + * - "sse2" + * - "sse3" + * - "sse41" + * - "sse42" + * - "avx" + * - "avx2" + * - "avx512f" + * - "arm-simd" + * - "neon" + * - "lsx" + * - "lasx" + * + * The items can be prefixed by '+'/'-' to add/remove features. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_CPU_FEATURE_MASK "SDL_CPU_FEATURE_MASK" + +/** + * A variable controlling whether DirectInput should be used for controllers. + * + * The variable can be set to the following values: + * + * - "0": Disable DirectInput detection. + * - "1": Enable DirectInput detection. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_DIRECTINPUT "SDL_JOYSTICK_DIRECTINPUT" + +/** + * A variable that specifies a dialog backend to use. + * + * By default, SDL will try all available dialog backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target. + * + * If the specified target does not exist or is not available, the + * dialog-related function calls will fail. + * + * This hint currently only applies to platforms using the generic "Unix" + * dialog implementation, but may be extended to more platforms in the future. + * Note that some Unix and Unix-like platforms have their own implementation, + * such as macOS and Haiku. + * + * The variable can be set to the following values: + * + * - NULL: Select automatically (default, all platforms) + * - "portal": Use XDG Portals through DBus (Unix only) + * - "zenity": Use the Zenity program (Unix only) + * + * More options may be added in the future. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_FILE_DIALOG_DRIVER "SDL_FILE_DIALOG_DRIVER" + +/** + * Override for SDL_GetDisplayUsableBounds(). + * + * If set, this hint will override the expected results for + * SDL_GetDisplayUsableBounds() for display index 0. Generally you don't want + * to do this, but this allows an embedded system to request that some of the + * screen be reserved for other uses when paired with a well-behaved + * application. + * + * The contents of this hint must be 4 comma-separated integers, the first is + * the bounds x, then y, width and height, in that order. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_DISPLAY_USABLE_BOUNDS "SDL_DISPLAY_USABLE_BOUNDS" + +/** + * Disable giving back control to the browser automatically when running with + * asyncify. + * + * With -s ASYNCIFY, SDL calls emscripten_sleep during operations such as + * refreshing the screen or polling events. + * + * This hint only applies to the emscripten platform. + * + * The variable can be set to the following values: + * + * - "0": Disable emscripten_sleep calls (if you give back browser control + * manually or use asyncify for other purposes). + * - "1": Enable emscripten_sleep calls. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EMSCRIPTEN_ASYNCIFY "SDL_EMSCRIPTEN_ASYNCIFY" + +/** + * Specify the CSS selector used for the "default" window/canvas. + * + * This hint only applies to the emscripten platform. + * + * The default value is "#canvas" + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EMSCRIPTEN_CANVAS_SELECTOR "SDL_EMSCRIPTEN_CANVAS_SELECTOR" + +/** + * Override the binding element for keyboard inputs for Emscripten builds. + * + * This hint only applies to the emscripten platform. + * + * The variable can be one of: + * + * - "#window": the javascript window object (default) + * - "#document": the javascript document object + * - "#screen": the javascript window.screen object + * - "#canvas": the WebGL canvas element + * - "#none": Don't bind anything at all + * - any other string without a leading # sign applies to the element on the + * page with that ID. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EMSCRIPTEN_KEYBOARD_ELEMENT "SDL_EMSCRIPTEN_KEYBOARD_ELEMENT" + +/** + * A variable that controls whether the on-screen keyboard should be shown + * when text input is active. + * + * The variable can be set to the following values: + * + * - "auto": The on-screen keyboard will be shown if there is no physical + * keyboard attached. (default) + * - "0": Do not show the on-screen keyboard. + * - "1": Show the on-screen keyboard, if available. + * + * This hint must be set before SDL_StartTextInput() is called + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ENABLE_SCREEN_KEYBOARD "SDL_ENABLE_SCREEN_KEYBOARD" + +/** + * A variable containing a list of evdev devices to use if udev is not + * available. + * + * The list of devices is in the form: + * + * deviceclass:path[,deviceclass:path[,...]] + * + * where device class is an integer representing the SDL_UDEV_deviceclass and + * path is the full path to the event device. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EVDEV_DEVICES "SDL_EVDEV_DEVICES" + +/** + * A variable controlling verbosity of the logging of SDL events pushed onto + * the internal queue. + * + * The variable can be set to the following values, from least to most + * verbose: + * + * - "0": Don't log any events. (default) + * - "1": Log most events (other than the really spammy ones). + * - "2": Include mouse and finger motion events. + * + * This is generally meant to be used to debug SDL itself, but can be useful + * for application developers that need better visibility into what is going + * on in the event queue. Logged events are sent through SDL_Log(), which + * means by default they appear on stdout on most platforms or maybe + * OutputDebugString() on Windows, and can be funneled by the app with + * SDL_SetLogOutputFunction(), etc. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EVENT_LOGGING "SDL_EVENT_LOGGING" + +/** + * A variable controlling whether raising the window should be done more + * forcefully. + * + * The variable can be set to the following values: + * + * - "0": Honor the OS policy for raising windows. (default) + * - "1": Force the window to be raised, overriding any OS policy. + * + * At present, this is only an issue under MS Windows, which makes it nearly + * impossible to programmatically move a window to the foreground, for + * "security" reasons. See http://stackoverflow.com/a/34414846 for a + * discussion. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_FORCE_RAISEWINDOW "SDL_FORCE_RAISEWINDOW" + +/** + * A variable controlling how 3D acceleration is used to accelerate the SDL + * screen surface. + * + * SDL can try to accelerate the SDL screen surface by using streaming + * textures with a 3D rendering engine. This variable controls whether and how + * this is done. + * + * The variable can be set to the following values: + * + * - "0": Disable 3D acceleration + * - "1": Enable 3D acceleration, using the default renderer. (default) + * - "X": Enable 3D acceleration, using X where X is one of the valid + * rendering drivers. (e.g. "direct3d", "opengl", etc.) + * + * This hint should be set before calling SDL_GetWindowSurface() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_FRAMEBUFFER_ACCELERATION "SDL_FRAMEBUFFER_ACCELERATION" + +/** + * A variable that lets you manually hint extra gamecontroller db entries. + * + * The variable should be newline delimited rows of gamecontroller config + * data, see SDL_gamepad.h + * + * You can update mappings after SDL is initialized with + * SDL_GetGamepadMappingForGUID() and SDL_AddGamepadMapping() + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLERCONFIG "SDL_GAMECONTROLLERCONFIG" + +/** + * A variable that lets you provide a file with extra gamecontroller db + * entries. + * + * The file should contain lines of gamecontroller config data, see + * SDL_gamepad.h + * + * You can update mappings after SDL is initialized with + * SDL_GetGamepadMappingForGUID() and SDL_AddGamepadMapping() + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLERCONFIG_FILE "SDL_GAMECONTROLLERCONFIG_FILE" + +/** + * A variable that overrides the automatic controller type detection. + * + * The variable should be comma separated entries, in the form: VID/PID=type + * + * The VID and PID should be hexadecimal with exactly 4 digits, e.g. 0x00fd + * + * This hint affects what low level protocol is used with the HIDAPI driver. + * + * The variable can be set to the following values: + * + * - "Xbox360" + * - "XboxOne" + * - "PS3" + * - "PS4" + * - "PS5" + * - "SwitchPro" + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLERTYPE "SDL_GAMECONTROLLERTYPE" + +/** + * A variable containing a list of devices to skip when scanning for game + * controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * 0xAAAA/0xBBBB,0xCCCC/0xDDDD + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLER_IGNORE_DEVICES "SDL_GAMECONTROLLER_IGNORE_DEVICES" + +/** + * If set, all devices will be skipped when scanning for game controllers + * except for the ones listed in this variable. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * 0xAAAA/0xBBBB,0xCCCC/0xDDDD + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLER_IGNORE_DEVICES_EXCEPT "SDL_GAMECONTROLLER_IGNORE_DEVICES_EXCEPT" + +/** + * A variable that controls whether the device's built-in accelerometer and + * gyro should be used as sensors for gamepads. + * + * The variable can be set to the following values: + * + * - "0": Sensor fusion is disabled + * - "1": Sensor fusion is enabled for all controllers that lack sensors + * + * Or the variable can be a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * 0xAAAA/0xBBBB,0xCCCC/0xDDDD + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before a gamepad is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GAMECONTROLLER_SENSOR_FUSION "SDL_GAMECONTROLLER_SENSOR_FUSION" + +/** + * This variable sets the default text of the TextInput window on GDK + * platforms. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_DEFAULT_TEXT "SDL_GDK_TEXTINPUT_DEFAULT_TEXT" + +/** + * This variable sets the description of the TextInput window on GDK + * platforms. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_DESCRIPTION "SDL_GDK_TEXTINPUT_DESCRIPTION" + +/** + * This variable sets the maximum input length of the TextInput window on GDK + * platforms. + * + * The value must be a stringified integer, for example "10" to allow for up + * to 10 characters of text input. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_MAX_LENGTH "SDL_GDK_TEXTINPUT_MAX_LENGTH" + +/** + * This variable sets the input scope of the TextInput window on GDK + * platforms. + * + * Set this hint to change the XGameUiTextEntryInputScope value that will be + * passed to the window creation function. The value must be a stringified + * integer, for example "0" for XGameUiTextEntryInputScope::Default. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_SCOPE "SDL_GDK_TEXTINPUT_SCOPE" + +/** + * This variable sets the title of the TextInput window on GDK platforms. + * + * This hint is available only if SDL_GDK_TEXTINPUT defined. + * + * This hint should be set before calling SDL_StartTextInput() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GDK_TEXTINPUT_TITLE "SDL_GDK_TEXTINPUT_TITLE" + +/** + * A variable to control whether HIDAPI uses libusb for device access. + * + * By default libusb will only be used for a few devices that require direct + * USB access, and this can be controlled with + * SDL_HINT_HIDAPI_LIBUSB_WHITELIST. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI will not use libusb for device access. + * - "1": HIDAPI will use libusb for device access if available. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_LIBUSB "SDL_HIDAPI_LIBUSB" + +/** + * A variable to control whether HIDAPI uses libusb only for whitelisted + * devices. + * + * By default libusb will only be used for a few devices that require direct + * USB access. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI will use libusb for all device access. + * - "1": HIDAPI will use libusb only for whitelisted devices. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_LIBUSB_WHITELIST "SDL_HIDAPI_LIBUSB_WHITELIST" + +/** + * A variable to control whether HIDAPI uses udev for device detection. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI will poll for device changes. + * - "1": HIDAPI will use udev for device detection. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_UDEV "SDL_HIDAPI_UDEV" + +/** + * A variable that specifies a GPU backend to use. + * + * By default, SDL will try all available GPU backends in a reasonable order + * until it finds one that can work, but this hint allows the app or user to + * force a specific target, such as "direct3d12" if, say, your hardware + * supports Vulkan but you want to try using D3D12 instead. + * + * This hint should be set before any GPU functions are called. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_GPU_DRIVER "SDL_GPU_DRIVER" + +/** + * A variable to control whether SDL_hid_enumerate() enumerates all HID + * devices or only controllers. + * + * The variable can be set to the following values: + * + * - "0": SDL_hid_enumerate() will enumerate all HID devices. + * - "1": SDL_hid_enumerate() will only enumerate controllers. (default) + * + * By default SDL will only enumerate controllers, to reduce risk of hanging + * or crashing on devices with bad drivers and avoiding macOS keyboard capture + * permission prompts. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_ENUMERATE_ONLY_CONTROLLERS "SDL_HIDAPI_ENUMERATE_ONLY_CONTROLLERS" + +/** + * A variable containing a list of devices to ignore in SDL_hid_enumerate(). + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * For example, to ignore the Shanwan DS3 controller and any Valve controller, + * you might use the string "0x2563/0x0523,0x28de/0x0000" + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_HIDAPI_IGNORE_DEVICES "SDL_HIDAPI_IGNORE_DEVICES" + +/** + * A variable describing what IME UI elements the application can display. + * + * By default IME UI is handled using native components by the OS where + * possible, however this can interfere with or not be visible when exclusive + * fullscreen mode is used. + * + * The variable can be set to a comma separated list containing the following + * items: + * + * - "none" or "0": The application can't render any IME elements, and native + * UI should be used. (default) + * - "composition": The application handles SDL_EVENT_TEXT_EDITING events and + * can render the composition text. + * - "candidates": The application handles SDL_EVENT_TEXT_EDITING_CANDIDATES + * and can render the candidate list. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_IME_IMPLEMENTED_UI "SDL_IME_IMPLEMENTED_UI" + +/** + * A variable controlling whether the home indicator bar on iPhone X should be + * hidden. + * + * The variable can be set to the following values: + * + * - "0": The indicator bar is not hidden. (default for windowed applications) + * - "1": The indicator bar is hidden and is shown when the screen is touched + * (useful for movie playback applications). + * - "2": The indicator bar is dim and the first swipe makes it visible and + * the second swipe performs the "home" action. (default for fullscreen + * applications) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_IOS_HIDE_HOME_INDICATOR "SDL_IOS_HIDE_HOME_INDICATOR" + +/** + * A variable that lets you enable joystick (and gamecontroller) events even + * when your app is in the background. + * + * The variable can be set to the following values: + * + * - "0": Disable joystick & gamecontroller input events when the application + * is in the background. (default) + * - "1": Enable joystick & gamecontroller input events when the application + * is in the background. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS "SDL_JOYSTICK_ALLOW_BACKGROUND_EVENTS" + +/** + * A variable containing a list of arcade stick style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ARCADESTICK_DEVICES "SDL_JOYSTICK_ARCADESTICK_DEVICES" + +/** + * A variable containing a list of devices that are not arcade stick style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_ARCADESTICK_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ARCADESTICK_DEVICES_EXCLUDED "SDL_JOYSTICK_ARCADESTICK_DEVICES_EXCLUDED" + +/** + * A variable containing a list of devices that should not be considered + * joysticks. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_BLACKLIST_DEVICES "SDL_JOYSTICK_BLACKLIST_DEVICES" + +/** + * A variable containing a list of devices that should be considered + * joysticks. + * + * This will override SDL_HINT_JOYSTICK_BLACKLIST_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_BLACKLIST_DEVICES_EXCLUDED "SDL_JOYSTICK_BLACKLIST_DEVICES_EXCLUDED" + +/** + * A variable containing a comma separated list of devices to open as + * joysticks. + * + * This variable is currently only used by the Linux joystick driver. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_DEVICE "SDL_JOYSTICK_DEVICE" + +/** + * A variable controlling whether enhanced reports should be used for + * controllers when using the HIDAPI driver. + * + * Enhanced reports allow rumble and effects on Bluetooth PlayStation + * controllers and gyro on Nintendo Switch controllers, but break Windows + * DirectInput for other applications that don't use SDL. + * + * Once enhanced reports are enabled, they can't be disabled on PlayStation + * controllers without power cycling the controller. + * + * The variable can be set to the following values: + * + * - "0": enhanced reports are not enabled. + * - "1": enhanced reports are enabled. (default) + * - "auto": enhanced features are advertised to the application, but SDL + * doesn't change the controller report mode unless the application uses + * them. + * + * This hint can be enabled anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ENHANCED_REPORTS "SDL_JOYSTICK_ENHANCED_REPORTS" + +/** + * A variable containing a list of flightstick style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of @file, in which case the named file + * will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_FLIGHTSTICK_DEVICES "SDL_JOYSTICK_FLIGHTSTICK_DEVICES" + +/** + * A variable containing a list of devices that are not flightstick style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_FLIGHTSTICK_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_FLIGHTSTICK_DEVICES_EXCLUDED "SDL_JOYSTICK_FLIGHTSTICK_DEVICES_EXCLUDED" + +/** + * A variable controlling whether GameInput should be used for controller + * handling on Windows. + * + * The variable can be set to the following values: + * + * - "0": GameInput is not used. + * - "1": GameInput is used. + * + * The default is "1" on GDK platforms, and "0" otherwise. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_GAMEINPUT "SDL_JOYSTICK_GAMEINPUT" + +/** + * A variable containing a list of devices known to have a GameCube form + * factor. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_GAMECUBE_DEVICES "SDL_JOYSTICK_GAMECUBE_DEVICES" + +/** + * A variable containing a list of devices known not to have a GameCube form + * factor. + * + * This will override SDL_HINT_JOYSTICK_GAMECUBE_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_GAMECUBE_DEVICES_EXCLUDED "SDL_JOYSTICK_GAMECUBE_DEVICES_EXCLUDED" + +/** + * A variable controlling whether the HIDAPI joystick drivers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI drivers are not used. + * - "1": HIDAPI drivers are used. (default) + * + * This variable is the default for all drivers, but can be overridden by the + * hints for specific drivers below. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI "SDL_JOYSTICK_HIDAPI" + +/** + * A variable controlling whether Nintendo Switch Joy-Con controllers will be + * combined into a single Pro-like controller when using the HIDAPI driver. + * + * The variable can be set to the following values: + * + * - "0": Left and right Joy-Con controllers will not be combined and each + * will be a mini-gamepad. + * - "1": Left and right Joy-Con controllers will be combined into a single + * controller. (default) + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_COMBINE_JOY_CONS "SDL_JOYSTICK_HIDAPI_COMBINE_JOY_CONS" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo GameCube + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE "SDL_JOYSTICK_HIDAPI_GAMECUBE" + +/** + * A variable controlling whether rumble is used to implement the GameCube + * controller's 3 rumble modes, Stop(0), Rumble(1), and StopHard(2). + * + * This is useful for applications that need full compatibility for things + * like ADSR envelopes. - Stop is implemented by setting low_frequency_rumble + * to 0 and high_frequency_rumble >0 - Rumble is both at any arbitrary value - + * StopHard is implemented by setting both low_frequency_rumble and + * high_frequency_rumble to 0 + * + * The variable can be set to the following values: + * + * - "0": Normal rumble behavior is behavior is used. (default) + * - "1": Proper GameCube controller rumble behavior is used. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE "SDL_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Switch + * Joy-Cons should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_JOY_CONS "SDL_JOYSTICK_HIDAPI_JOY_CONS" + +/** + * A variable controlling whether the Home button LED should be turned on when + * a Nintendo Switch Joy-Con controller is opened. + * + * The variable can be set to the following values: + * + * - "0": home button LED is turned off + * - "1": home button LED is turned on + * + * By default the Home button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Home button LED. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_JOYCON_HOME_LED "SDL_JOYSTICK_HIDAPI_JOYCON_HOME_LED" + +/** + * A variable controlling whether the HIDAPI driver for Amazon Luna + * controllers connected via Bluetooth should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_LUNA "SDL_JOYSTICK_HIDAPI_LUNA" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Online + * classic controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_NINTENDO_CLASSIC "SDL_JOYSTICK_HIDAPI_NINTENDO_CLASSIC" + +/** + * A variable controlling whether the HIDAPI driver for PS3 controllers should + * be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI on macOS, and "0" on + * other platforms. + * + * For official Sony driver (sixaxis.sys) use + * SDL_HINT_JOYSTICK_HIDAPI_PS3_SIXAXIS_DRIVER. See + * https://github.com/ViGEm/DsHidMini for an alternative driver on Windows. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS3 "SDL_JOYSTICK_HIDAPI_PS3" + +/** + * A variable controlling whether the Sony driver (sixaxis.sys) for PS3 + * controllers (Sixaxis/DualShock 3) should be used. + * + * The variable can be set to the following values: + * + * - "0": Sony driver (sixaxis.sys) is not used. + * - "1": Sony driver (sixaxis.sys) is used. + * + * The default value is 0. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS3_SIXAXIS_DRIVER "SDL_JOYSTICK_HIDAPI_PS3_SIXAXIS_DRIVER" + +/** + * A variable controlling whether the HIDAPI driver for PS4 controllers should + * be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS4 "SDL_JOYSTICK_HIDAPI_PS4" + +/** + * A variable controlling the update rate of the PS4 controller over Bluetooth + * when using the HIDAPI driver. + * + * This defaults to 4 ms, to match the behavior over USB, and to be more + * friendly to other Bluetooth devices and older Bluetooth hardware on the + * computer. It can be set to "1" (1000Hz), "2" (500Hz) and "4" (250Hz) + * + * This hint can be set anytime, but only takes effect when extended input + * reports are enabled. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS4_REPORT_INTERVAL "SDL_JOYSTICK_HIDAPI_PS4_REPORT_INTERVAL" + +/** + * A variable controlling whether the HIDAPI driver for PS5 controllers should + * be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS5 "SDL_JOYSTICK_HIDAPI_PS5" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with a PS5 controller. + * + * The variable can be set to the following values: + * + * - "0": player LEDs are not enabled. + * - "1": player LEDs are enabled. (default) + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS5_PLAYER_LED "SDL_JOYSTICK_HIDAPI_PS5_PLAYER_LED" + +/** + * A variable controlling whether the HIDAPI driver for NVIDIA SHIELD + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SHIELD "SDL_JOYSTICK_HIDAPI_SHIELD" + +/** + * A variable controlling whether the HIDAPI driver for Google Stadia + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STADIA "SDL_JOYSTICK_HIDAPI_STADIA" + +/** + * A variable controlling whether the HIDAPI driver for Bluetooth Steam + * Controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. (default) + * - "1": HIDAPI driver is used for Steam Controllers, which requires + * Bluetooth access and may prompt the user for permission on iOS and + * Android. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAM "SDL_JOYSTICK_HIDAPI_STEAM" + +/** + * A variable controlling whether the Steam button LED should be turned on + * when a Steam controller is opened. + * + * The variable can be set to the following values: + * + * - "0": Steam button LED is turned off. + * - "1": Steam button LED is turned on. + * + * By default the Steam button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Steam button LED. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAM_HOME_LED "SDL_JOYSTICK_HIDAPI_STEAM_HOME_LED" + +/** + * A variable controlling whether the HIDAPI driver for the Steam Deck builtin + * controller should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAMDECK "SDL_JOYSTICK_HIDAPI_STEAMDECK" + +/** + * A variable controlling whether the HIDAPI driver for HORI licensed Steam + * controllers should be used. + * + * This variable can be set to the following values: "0" - HIDAPI driver is + * not used "1" - HIDAPI driver is used + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI + */ +#define SDL_HINT_JOYSTICK_HIDAPI_STEAM_HORI "SDL_JOYSTICK_HIDAPI_STEAM_HORI" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Switch + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SWITCH "SDL_JOYSTICK_HIDAPI_SWITCH" + +/** + * A variable controlling whether the Home button LED should be turned on when + * a Nintendo Switch Pro controller is opened. + * + * The variable can be set to the following values: + * + * - "0": Home button LED is turned off. + * - "1": Home button LED is turned on. + * + * By default the Home button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Home button LED. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SWITCH_HOME_LED "SDL_JOYSTICK_HIDAPI_SWITCH_HOME_LED" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with a Nintendo Switch controller. + * + * The variable can be set to the following values: + * + * - "0": Player LEDs are not enabled. + * - "1": Player LEDs are enabled. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_SWITCH_PLAYER_LED "SDL_JOYSTICK_HIDAPI_SWITCH_PLAYER_LED" + +/** + * A variable controlling whether Nintendo Switch Joy-Con controllers will be + * in vertical mode when using the HIDAPI driver. + * + * The variable can be set to the following values: + * + * - "0": Left and right Joy-Con controllers will not be in vertical mode. + * (default) + * - "1": Left and right Joy-Con controllers will be in vertical mode. + * + * This hint should be set before opening a Joy-Con controller. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_VERTICAL_JOY_CONS "SDL_JOYSTICK_HIDAPI_VERTICAL_JOY_CONS" + +/** + * A variable controlling whether the HIDAPI driver for Nintendo Wii and Wii U + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * This driver doesn't work with the dolphinbar, so the default is false for + * now. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_WII "SDL_JOYSTICK_HIDAPI_WII" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with a Wii controller. + * + * The variable can be set to the following values: + * + * - "0": Player LEDs are not enabled. + * - "1": Player LEDs are enabled. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_WII_PLAYER_LED "SDL_JOYSTICK_HIDAPI_WII_PLAYER_LED" + +/** + * A variable controlling whether the HIDAPI driver for XBox controllers + * should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is "0" on Windows, otherwise the value of + * SDL_HINT_JOYSTICK_HIDAPI + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX "SDL_JOYSTICK_HIDAPI_XBOX" + +/** + * A variable controlling whether the HIDAPI driver for XBox 360 controllers + * should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360 "SDL_JOYSTICK_HIDAPI_XBOX_360" + +/** + * A variable controlling whether the player LEDs should be lit to indicate + * which player is associated with an Xbox 360 controller. + * + * The variable can be set to the following values: + * + * - "0": Player LEDs are not enabled. + * - "1": Player LEDs are enabled. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360_PLAYER_LED "SDL_JOYSTICK_HIDAPI_XBOX_360_PLAYER_LED" + +/** + * A variable controlling whether the HIDAPI driver for XBox 360 wireless + * controllers should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX_360 + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360_WIRELESS "SDL_JOYSTICK_HIDAPI_XBOX_360_WIRELESS" + +/** + * A variable controlling whether the HIDAPI driver for XBox One controllers + * should be used. + * + * The variable can be set to the following values: + * + * - "0": HIDAPI driver is not used. + * - "1": HIDAPI driver is used. + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX. + * + * This hint should be set before initializing joysticks and gamepads. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_ONE "SDL_JOYSTICK_HIDAPI_XBOX_ONE" + +/** + * A variable controlling whether the Home button LED should be turned on when + * an Xbox One controller is opened. + * + * The variable can be set to the following values: + * + * - "0": Home button LED is turned off. + * - "1": Home button LED is turned on. + * + * By default the Home button LED state is not changed. This hint can also be + * set to a floating point value between 0.0 and 1.0 which controls the + * brightness of the Home button LED. The default brightness is 0.4. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_ONE_HOME_LED "SDL_JOYSTICK_HIDAPI_XBOX_ONE_HOME_LED" + +/** + * A variable controlling whether IOKit should be used for controller + * handling. + * + * The variable can be set to the following values: + * + * - "0": IOKit is not used. + * - "1": IOKit is used. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_IOKIT "SDL_JOYSTICK_IOKIT" + +/** + * A variable controlling whether to use the classic /dev/input/js* joystick + * interface or the newer /dev/input/event* joystick interface on Linux. + * + * The variable can be set to the following values: + * + * - "0": Use /dev/input/event* (default) + * - "1": Use /dev/input/js* + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_CLASSIC "SDL_JOYSTICK_LINUX_CLASSIC" + +/** + * A variable controlling whether joysticks on Linux adhere to their + * HID-defined deadzones or return unfiltered values. + * + * The variable can be set to the following values: + * + * - "0": Return unfiltered joystick axis values. (default) + * - "1": Return axis values with deadzones taken into account. + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_DEADZONES "SDL_JOYSTICK_LINUX_DEADZONES" + +/** + * A variable controlling whether joysticks on Linux will always treat 'hat' + * axis inputs (ABS_HAT0X - ABS_HAT3Y) as 8-way digital hats without checking + * whether they may be analog. + * + * The variable can be set to the following values: + * + * - "0": Only map hat axis inputs to digital hat outputs if the input axes + * appear to actually be digital. (default) + * - "1": Always handle the input axes numbered ABS_HAT0X to ABS_HAT3Y as + * digital hats. + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_DIGITAL_HATS "SDL_JOYSTICK_LINUX_DIGITAL_HATS" + +/** + * A variable controlling whether digital hats on Linux will apply deadzones + * to their underlying input axes or use unfiltered values. + * + * The variable can be set to the following values: + * + * - "0": Return digital hat values based on unfiltered input axis values. + * - "1": Return digital hat values with deadzones on the input axes taken + * into account. (default) + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_LINUX_HAT_DEADZONES "SDL_JOYSTICK_LINUX_HAT_DEADZONES" + +/** + * A variable controlling whether GCController should be used for controller + * handling. + * + * The variable can be set to the following values: + * + * - "0": GCController is not used. + * - "1": GCController is used. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_MFI "SDL_JOYSTICK_MFI" + +/** + * A variable controlling whether the RAWINPUT joystick drivers should be used + * for better handling XInput-capable devices. + * + * The variable can be set to the following values: + * + * - "0": RAWINPUT drivers are not used. (default) + * - "1": RAWINPUT drivers are used. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_RAWINPUT "SDL_JOYSTICK_RAWINPUT" + +/** + * A variable controlling whether the RAWINPUT driver should pull correlated + * data from XInput. + * + * The variable can be set to the following values: + * + * - "0": RAWINPUT driver will only use data from raw input APIs. + * - "1": RAWINPUT driver will also pull data from XInput and + * Windows.Gaming.Input, providing better trigger axes, guide button + * presses, and rumble support for Xbox controllers. (default) + * + * This hint should be set before a gamepad is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_RAWINPUT_CORRELATE_XINPUT "SDL_JOYSTICK_RAWINPUT_CORRELATE_XINPUT" + +/** + * A variable controlling whether the ROG Chakram mice should show up as + * joysticks. + * + * The variable can be set to the following values: + * + * - "0": ROG Chakram mice do not show up as joysticks. (default) + * - "1": ROG Chakram mice show up as joysticks. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ROG_CHAKRAM "SDL_JOYSTICK_ROG_CHAKRAM" + +/** + * A variable controlling whether a separate thread should be used for + * handling joystick detection and raw input messages on Windows. + * + * The variable can be set to the following values: + * + * - "0": A separate thread is not used. + * - "1": A separate thread is used for handling raw input messages. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_THREAD "SDL_JOYSTICK_THREAD" + +/** + * A variable containing a list of throttle style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_THROTTLE_DEVICES "SDL_JOYSTICK_THROTTLE_DEVICES" + +/** + * A variable containing a list of devices that are not throttle style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_THROTTLE_DEVICES and the built in + * device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_THROTTLE_DEVICES_EXCLUDED "SDL_JOYSTICK_THROTTLE_DEVICES_EXCLUDED" + +/** + * A variable controlling whether Windows.Gaming.Input should be used for + * controller handling. + * + * The variable can be set to the following values: + * + * - "0": WGI is not used. + * - "1": WGI is used. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_WGI "SDL_JOYSTICK_WGI" + +/** + * A variable containing a list of wheel style controllers. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_WHEEL_DEVICES "SDL_JOYSTICK_WHEEL_DEVICES" + +/** + * A variable containing a list of devices that are not wheel style + * controllers. + * + * This will override SDL_HINT_JOYSTICK_WHEEL_DEVICES and the built in device + * list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_WHEEL_DEVICES_EXCLUDED "SDL_JOYSTICK_WHEEL_DEVICES_EXCLUDED" + +/** + * A variable containing a list of devices known to have all axes centered at + * zero. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before a controller is opened. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_JOYSTICK_ZERO_CENTERED_DEVICES "SDL_JOYSTICK_ZERO_CENTERED_DEVICES" + +/** + * A variable containing a list of devices and their desired number of haptic + * (force feedback) enabled axis. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form plus the number of desired axes, e.g. + * + * `0xAAAA/0xBBBB/1,0xCCCC/0xDDDD/3` + * + * This hint supports a "wildcard" device that will set the number of haptic + * axes on all initialized haptic devices which were not defined explicitly in + * this hint. + * + * `0xFFFF/0xFFFF/1` + * + * This hint should be set before a controller is opened. The number of haptic + * axes won't exceed the number of real axes found on the device. + * + * \since This hint is available since SDL 3.2.5. + */ +#define SDL_HINT_JOYSTICK_HAPTIC_AXES "SDL_JOYSTICK_HAPTIC_AXES" + +/** + * A variable that controls keycode representation in keyboard events. + * + * This variable is a comma separated set of options for translating keycodes + * in events: + * + * - "none": Keycode options are cleared, this overrides other options. + * - "hide_numpad": The numpad keysyms will be translated into their + * non-numpad versions based on the current NumLock state. For example, + * SDLK_KP_4 would become SDLK_4 if SDL_KMOD_NUM is set in the event + * modifiers, and SDLK_LEFT if it is unset. + * - "french_numbers": The number row on French keyboards is inverted, so + * pressing the 1 key would yield the keycode SDLK_1, or '1', instead of + * SDLK_AMPERSAND, or '&' + * - "latin_letters": For keyboards using non-Latin letters, such as Russian + * or Thai, the letter keys generate keycodes as though it had an en_US + * layout. e.g. pressing the key associated with SDL_SCANCODE_A on a Russian + * keyboard would yield 'a' instead of a Cyrillic letter. + * + * The default value for this hint is "french_numbers,latin_letters" + * + * Some platforms like Emscripten only provide modified keycodes and the + * options are not used. + * + * These options do not affect the return value of SDL_GetKeyFromScancode() or + * SDL_GetScancodeFromKey(), they just apply to the keycode included in key + * events. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_KEYCODE_OPTIONS "SDL_KEYCODE_OPTIONS" + +/** + * A variable that controls what KMSDRM device to use. + * + * SDL might open something like "/dev/dri/cardNN" to access KMSDRM + * functionality, where "NN" is a device index number. SDL makes a guess at + * the best index to use (usually zero), but the app or user can set this hint + * to a number between 0 and 99 to force selection. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_KMSDRM_DEVICE_INDEX "SDL_KMSDRM_DEVICE_INDEX" + +/** + * A variable that controls whether SDL requires DRM master access in order to + * initialize the KMSDRM video backend. + * + * The DRM subsystem has a concept of a "DRM master" which is a DRM client + * that has the ability to set planes, set cursor, etc. When SDL is DRM + * master, it can draw to the screen using the SDL rendering APIs. Without DRM + * master, SDL is still able to process input and query attributes of attached + * displays, but it cannot change display state or draw to the screen + * directly. + * + * In some cases, it can be useful to have the KMSDRM backend even if it + * cannot be used for rendering. An app may want to use SDL for input + * processing while using another rendering API (such as an MMAL overlay on + * Raspberry Pi) or using its own code to render to DRM overlays that SDL + * doesn't support. + * + * The variable can be set to the following values: + * + * - "0": SDL will allow usage of the KMSDRM backend without DRM master. + * - "1": SDL Will require DRM master to use the KMSDRM backend. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_KMSDRM_REQUIRE_DRM_MASTER "SDL_KMSDRM_REQUIRE_DRM_MASTER" + +/** + * A variable controlling the default SDL log levels. + * + * This variable is a comma separated set of category=level tokens that define + * the default logging levels for SDL applications. + * + * The category can be a numeric category, one of "app", "error", "assert", + * "system", "audio", "video", "render", "input", "test", or `*` for any + * unspecified category. + * + * The level can be a numeric level, one of "verbose", "debug", "info", + * "warn", "error", "critical", or "quiet" to disable that category. + * + * You can omit the category if you want to set the logging level for all + * categories. + * + * If this hint isn't set, the default log levels are equivalent to: + * + * `app=info,assert=warn,test=verbose,*=error` + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_LOGGING "SDL_LOGGING" + +/** + * A variable controlling whether to force the application to become the + * foreground process when launched on macOS. + * + * The variable can be set to the following values: + * + * - "0": The application is brought to the foreground when launched. + * (default) + * - "1": The application may remain in the background when launched. + * + * This hint needs to be set before SDL_Init(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_BACKGROUND_APP "SDL_MAC_BACKGROUND_APP" + +/** + * A variable that determines whether Ctrl+Click should generate a right-click + * event on macOS. + * + * The variable can be set to the following values: + * + * - "0": Ctrl+Click does not generate a right mouse button click event. + * (default) + * - "1": Ctrl+Click generated a right mouse button click event. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK "SDL_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK" + +/** + * A variable controlling whether dispatching OpenGL context updates should + * block the dispatching thread until the main thread finishes processing on + * macOS. + * + * The variable can be set to the following values: + * + * - "0": Dispatching OpenGL context updates will block the dispatching thread + * until the main thread finishes processing. (default) + * - "1": Dispatching OpenGL context updates will allow the dispatching thread + * to continue execution. + * + * Generally you want the default, but if you have OpenGL code in a background + * thread on a Mac, and the main thread hangs because it's waiting for that + * background thread, but that background thread is also hanging because it's + * waiting for the main thread to do an update, this might fix your issue. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_OPENGL_ASYNC_DISPATCH "SDL_MAC_OPENGL_ASYNC_DISPATCH" + +/** + * A variable controlling whether the Option key on macOS should be remapped + * to act as the Alt key. + * + * The variable can be set to the following values: + * + * - "none": The Option key is not remapped to Alt. (default) + * - "only_left": Only the left Option key is remapped to Alt. + * - "only_right": Only the right Option key is remapped to Alt. + * - "both": Both Option keys are remapped to Alt. + * + * This will prevent the triggering of key compositions that rely on the + * Option key, but will still send the Alt modifier for keyboard events. In + * the case that both Alt and Option are pressed, the Option key will be + * ignored. This is particularly useful for applications like terminal + * emulators and graphical user interfaces (GUIs) that rely on Alt key + * functionality for shortcuts or navigation. This does not apply to + * SDL_GetKeyFromScancode and only has an effect if IME is enabled. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_OPTION_AS_ALT "SDL_MAC_OPTION_AS_ALT" + +/** + * A variable controlling whether SDL_EVENT_MOUSE_WHEEL event values will have + * momentum on macOS. + * + * The variable can be set to the following values: + * + * - "0": The mouse wheel events will have no momentum. (default) + * - "1": The mouse wheel events will have momentum. + * + * This hint needs to be set before SDL_Init(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAC_SCROLL_MOMENTUM "SDL_MAC_SCROLL_MOMENTUM" + +/** + * Request SDL_AppIterate() be called at a specific rate. + * + * If this is set to a number, it represents Hz, so "60" means try to iterate + * 60 times per second. "0" means to iterate as fast as possible. Negative + * values are illegal, but reserved, in case they are useful in a future + * revision of SDL. + * + * There are other strings that have special meaning. If set to "waitevent", + * SDL_AppIterate will not be called until new event(s) have arrived (and been + * processed by SDL_AppEvent). This can be useful for apps that are completely + * idle except in response to input. + * + * On some platforms, or if you are using SDL_main instead of SDL_AppIterate, + * this hint is ignored. When the hint can be used, it is allowed to be + * changed at any time. + * + * This defaults to 0, and specifying NULL for the hint's value will restore + * the default. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MAIN_CALLBACK_RATE "SDL_MAIN_CALLBACK_RATE" + +/** + * A variable controlling whether the mouse is captured while mouse buttons + * are pressed. + * + * The variable can be set to the following values: + * + * - "0": The mouse is not captured while mouse buttons are pressed. + * - "1": The mouse is captured while mouse buttons are pressed. + * + * By default the mouse is captured while mouse buttons are pressed so if the + * mouse is dragged outside the window, the application continues to receive + * mouse events until the button is released. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_AUTO_CAPTURE "SDL_MOUSE_AUTO_CAPTURE" + +/** + * A variable setting the double click radius, in pixels. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_DOUBLE_CLICK_RADIUS "SDL_MOUSE_DOUBLE_CLICK_RADIUS" + +/** + * A variable setting the double click time, in milliseconds. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_DOUBLE_CLICK_TIME "SDL_MOUSE_DOUBLE_CLICK_TIME" + +/** + * A variable setting which system cursor to use as the default cursor. + * + * This should be an integer corresponding to the SDL_SystemCursor enum. The + * default value is zero (SDL_SYSTEM_CURSOR_DEFAULT). + * + * This hint needs to be set before SDL_Init(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_DEFAULT_SYSTEM_CURSOR "SDL_MOUSE_DEFAULT_SYSTEM_CURSOR" + +/** + * A variable controlling whether warping a hidden mouse cursor will activate + * relative mouse mode. + * + * When this hint is set, the mouse cursor is hidden, and multiple warps to + * the window center occur within a short time period, SDL will emulate mouse + * warps using relative mouse mode. This can provide smoother and more + * reliable mouse motion for some older games, which continuously calculate + * the distance travelled by the mouse pointer and warp it back to the center + * of the window, rather than using relative mouse motion. + * + * Note that relative mouse mode may have different mouse acceleration + * behavior than pointer warps. + * + * If your application needs to repeatedly warp the hidden mouse cursor at a + * high-frequency for other purposes, it should disable this hint. + * + * The variable can be set to the following values: + * + * - "0": Attempts to warp the mouse will always be made. + * - "1": Some mouse warps will be emulated by forcing relative mouse mode. + * (default) + * + * If not set, this is automatically enabled unless an application uses + * relative mouse mode directly. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_EMULATE_WARP_WITH_RELATIVE "SDL_MOUSE_EMULATE_WARP_WITH_RELATIVE" + +/** + * Allow mouse click events when clicking to focus an SDL window. + * + * The variable can be set to the following values: + * + * - "0": Ignore mouse clicks that activate a window. (default) + * - "1": Generate events for mouse clicks that activate a window. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH "SDL_MOUSE_FOCUS_CLICKTHROUGH" + +/** + * A variable setting the speed scale for mouse motion, in floating point, + * when the mouse is not in relative mode. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_NORMAL_SPEED_SCALE "SDL_MOUSE_NORMAL_SPEED_SCALE" + +/** + * A variable controlling whether relative mouse mode constrains the mouse to + * the center of the window. + * + * Constraining to the center of the window works better for FPS games and + * when the application is running over RDP. Constraining to the whole window + * works better for 2D games and increases the chance that the mouse will be + * in the correct position when using high DPI mice. + * + * The variable can be set to the following values: + * + * - "0": Relative mouse mode constrains the mouse to the window. + * - "1": Relative mouse mode constrains the mouse to the center of the + * window. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_MODE_CENTER "SDL_MOUSE_RELATIVE_MODE_CENTER" + +/** + * A variable setting the scale for mouse motion, in floating point, when the + * mouse is in relative mode. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_SPEED_SCALE "SDL_MOUSE_RELATIVE_SPEED_SCALE" + +/** + * A variable controlling whether the system mouse acceleration curve is used + * for relative mouse motion. + * + * The variable can be set to the following values: + * + * - "0": Relative mouse motion will be unscaled. (default) + * - "1": Relative mouse motion will be scaled using the system mouse + * acceleration curve. + * + * If SDL_HINT_MOUSE_RELATIVE_SPEED_SCALE is set, that will be applied after + * system speed scale. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_SYSTEM_SCALE "SDL_MOUSE_RELATIVE_SYSTEM_SCALE" + +/** + * A variable controlling whether a motion event should be generated for mouse + * warping in relative mode. + * + * The variable can be set to the following values: + * + * - "0": Warping the mouse will not generate a motion event in relative mode + * - "1": Warping the mouse will generate a motion event in relative mode + * + * By default warping the mouse will not generate motion events in relative + * mode. This avoids the application having to filter out large relative + * motion due to warping. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_WARP_MOTION "SDL_MOUSE_RELATIVE_WARP_MOTION" + +/** + * A variable controlling whether the hardware cursor stays visible when + * relative mode is active. + * + * This variable can be set to the following values: + * + * - "0": The cursor will be hidden while relative mode is active (default) + * - "1": The cursor will remain visible while relative mode is active + * + * Note that for systems without raw hardware inputs, relative mode is + * implemented using warping, so the hardware cursor will visibly warp between + * frames if this is enabled on those systems. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_RELATIVE_CURSOR_VISIBLE "SDL_MOUSE_RELATIVE_CURSOR_VISIBLE" + +/** + * A variable controlling whether mouse events should generate synthetic touch + * events. + * + * The variable can be set to the following values: + * + * - "0": Mouse events will not generate touch events. (default for desktop + * platforms) + * - "1": Mouse events will generate touch events. (default for mobile + * platforms, such as Android and iOS) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MOUSE_TOUCH_EVENTS "SDL_MOUSE_TOUCH_EVENTS" + +/** + * A variable controlling whether the keyboard should be muted on the console. + * + * Normally the keyboard is muted while SDL applications are running so that + * keyboard input doesn't show up as key strokes on the console. This hint + * allows you to turn that off for debugging purposes. + * + * The variable can be set to the following values: + * + * - "0": Allow keystrokes to go through to the console. + * - "1": Mute keyboard input so it doesn't show up on the console. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_MUTE_CONSOLE_KEYBOARD "SDL_MUTE_CONSOLE_KEYBOARD" + +/** + * Tell SDL not to catch the SIGINT or SIGTERM signals on POSIX platforms. + * + * The variable can be set to the following values: + * + * - "0": SDL will install a SIGINT and SIGTERM handler, and when it catches a + * signal, convert it into an SDL_EVENT_QUIT event. (default) + * - "1": SDL will not install a signal handler at all. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_NO_SIGNAL_HANDLERS "SDL_NO_SIGNAL_HANDLERS" + +/** + * Specify the OpenGL library to load. + * + * This hint should be set before creating an OpenGL window or creating an + * OpenGL context. If this hint isn't set, SDL will choose a reasonable + * default. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_OPENGL_LIBRARY "SDL_OPENGL_LIBRARY" + +/** + * Specify the EGL library to load. + * + * This hint should be set before creating an OpenGL window or creating an + * OpenGL context. This hint is only considered if SDL is using EGL to manage + * OpenGL contexts. If this hint isn't set, SDL will choose a reasonable + * default. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_EGL_LIBRARY "SDL_EGL_LIBRARY" + +/** + * A variable controlling what driver to use for OpenGL ES contexts. + * + * On some platforms, currently Windows and X11, OpenGL drivers may support + * creating contexts with an OpenGL ES profile. By default SDL uses these + * profiles, when available, otherwise it attempts to load an OpenGL ES + * library, e.g. that provided by the ANGLE project. This variable controls + * whether SDL follows this default behaviour or will always load an OpenGL ES + * library. + * + * Circumstances where this is useful include - Testing an app with a + * particular OpenGL ES implementation, e.g ANGLE, or emulator, e.g. those + * from ARM, Imagination or Qualcomm. - Resolving OpenGL ES function addresses + * at link time by linking with the OpenGL ES library instead of querying them + * at run time with SDL_GL_GetProcAddress(). + * + * Caution: for an application to work with the default behaviour across + * different OpenGL drivers it must query the OpenGL ES function addresses at + * run time using SDL_GL_GetProcAddress(). + * + * This variable is ignored on most platforms because OpenGL ES is native or + * not supported. + * + * The variable can be set to the following values: + * + * - "0": Use ES profile of OpenGL, if available. (default) + * - "1": Load OpenGL ES library using the default library names. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_OPENGL_ES_DRIVER "SDL_OPENGL_ES_DRIVER" + +/** + * Mechanism to specify openvr_api library location + * + * By default, when using the OpenVR driver, it will search for the API + * library in the current folder. But, if you wish to use a system API you can + * specify that by using this hint. This should be the full or relative path + * to a .dll on Windows or .so on Linux. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_OPENVR_LIBRARY "SDL_OPENVR_LIBRARY" + +/** + * A variable controlling which orientations are allowed on iOS/Android. + * + * In some circumstances it is necessary to be able to explicitly control + * which UI orientations are allowed. + * + * This variable is a space delimited list of the following values: + * + * - "LandscapeLeft" + * - "LandscapeRight" + * - "Portrait" + * - "PortraitUpsideDown" + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ORIENTATIONS "SDL_ORIENTATIONS" + +/** + * A variable controlling the use of a sentinel event when polling the event + * queue. + * + * When polling for events, SDL_PumpEvents is used to gather new events from + * devices. If a device keeps producing new events between calls to + * SDL_PumpEvents, a poll loop will become stuck until the new events stop. + * This is most noticeable when moving a high frequency mouse. + * + * The variable can be set to the following values: + * + * - "0": Disable poll sentinels. + * - "1": Enable poll sentinels. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_POLL_SENTINEL "SDL_POLL_SENTINEL" + +/** + * Override for SDL_GetPreferredLocales(). + * + * If set, this will be favored over anything the OS might report for the + * user's preferred locales. Changing this hint at runtime will not generate a + * SDL_EVENT_LOCALE_CHANGED event (but if you can change the hint, you can + * push your own event, if you want). + * + * The format of this hint is a comma-separated list of language and locale, + * combined with an underscore, as is a common format: "en_GB". Locale is + * optional: "en". So you might have a list like this: "en_GB,jp,es_PT" + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_PREFERRED_LOCALES "SDL_PREFERRED_LOCALES" + +/** + * A variable that decides whether to send SDL_EVENT_QUIT when closing the + * last window. + * + * The variable can be set to the following values: + * + * - "0": SDL will not send an SDL_EVENT_QUIT event when the last window is + * requesting to close. Note that in this case, there are still other + * legitimate reasons one might get an SDL_EVENT_QUIT event: choosing "Quit" + * from the macOS menu bar, sending a SIGINT (ctrl-c) on Unix, etc. + * - "1": SDL will send a quit event when the last window is requesting to + * close. (default) + * + * If there is at least one active system tray icon, SDL_EVENT_QUIT will + * instead be sent when both the last window will be closed and the last tray + * icon will be destroyed. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_QUIT_ON_LAST_WINDOW_CLOSE "SDL_QUIT_ON_LAST_WINDOW_CLOSE" + +/** + * A variable controlling whether the Direct3D device is initialized for + * thread-safe operations. + * + * The variable can be set to the following values: + * + * - "0": Thread-safety is not enabled. (default) + * - "1": Thread-safety is enabled. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_DIRECT3D_THREADSAFE "SDL_RENDER_DIRECT3D_THREADSAFE" + +/** + * A variable controlling whether to enable Direct3D 11+'s Debug Layer. + * + * This variable does not have any effect on the Direct3D 9 based renderer. + * + * The variable can be set to the following values: + * + * - "0": Disable Debug Layer use. (default) + * - "1": Enable Debug Layer use. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_DIRECT3D11_DEBUG "SDL_RENDER_DIRECT3D11_DEBUG" + +/** + * A variable controlling whether to enable Vulkan Validation Layers. + * + * This variable can be set to the following values: + * + * - "0": Disable Validation Layer use + * - "1": Enable Validation Layer use + * + * By default, SDL does not use Vulkan Validation Layers. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_VULKAN_DEBUG "SDL_RENDER_VULKAN_DEBUG" + +/** + * A variable controlling whether to create the GPU device in debug mode. + * + * This variable can be set to the following values: + * + * - "0": Disable debug mode use (default) + * - "1": Enable debug mode use + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_GPU_DEBUG "SDL_RENDER_GPU_DEBUG" + +/** + * A variable controlling whether to prefer a low-power GPU on multi-GPU + * systems. + * + * This variable can be set to the following values: + * + * - "0": Prefer high-performance GPU (default) + * - "1": Prefer low-power GPU + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_GPU_LOW_POWER "SDL_RENDER_GPU_LOW_POWER" + +/** + * A variable specifying which render driver to use. + * + * If the application doesn't pick a specific renderer to use, this variable + * specifies the name of the preferred renderer. If the preferred renderer + * can't be initialized, creating a renderer will fail. + * + * This variable is case insensitive and can be set to the following values: + * + * - "direct3d" + * - "direct3d11" + * - "direct3d12" + * - "opengl" + * - "opengles2" + * - "opengles" + * - "metal" + * - "vulkan" + * - "gpu" + * - "software" + * + * This hint accepts a comma-separated list of driver names, and each will be + * tried in the order listed when creating a renderer until one succeeds or + * all of them fail. + * + * The default varies by platform, but it's the first one in the list that is + * available on the current platform. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_DRIVER "SDL_RENDER_DRIVER" + +/** + * A variable controlling how the 2D render API renders lines. + * + * The variable can be set to the following values: + * + * - "0": Use the default line drawing method (Bresenham's line algorithm) + * - "1": Use the driver point API using Bresenham's line algorithm (correct, + * draws many points) + * - "2": Use the driver line API (occasionally misses line endpoints based on + * hardware driver quirks + * - "3": Use the driver geometry API (correct, draws thicker diagonal lines) + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_LINE_METHOD "SDL_RENDER_LINE_METHOD" + +/** + * A variable controlling whether the Metal render driver select low power + * device over default one. + * + * The variable can be set to the following values: + * + * - "0": Use the preferred OS device. (default) + * - "1": Select a low power device. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_METAL_PREFER_LOW_POWER_DEVICE "SDL_RENDER_METAL_PREFER_LOW_POWER_DEVICE" + +/** + * A variable controlling whether updates to the SDL screen surface should be + * synchronized with the vertical refresh, to avoid tearing. + * + * This hint overrides the application preference when creating a renderer. + * + * The variable can be set to the following values: + * + * - "0": Disable vsync. (default) + * - "1": Enable vsync. + * + * This hint should be set before creating a renderer. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RENDER_VSYNC "SDL_RENDER_VSYNC" + +/** + * A variable to control whether the return key on the soft keyboard should + * hide the soft keyboard on Android and iOS. + * + * This hint sets the default value of SDL_PROP_TEXTINPUT_MULTILINE_BOOLEAN. + * + * The variable can be set to the following values: + * + * - "0": The return key will be handled as a key event. (default) + * - "1": The return key will hide the keyboard. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RETURN_KEY_HIDES_IME "SDL_RETURN_KEY_HIDES_IME" + +/** + * A variable containing a list of ROG gamepad capable mice. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + * + * \sa SDL_HINT_ROG_GAMEPAD_MICE_EXCLUDED + */ +#define SDL_HINT_ROG_GAMEPAD_MICE "SDL_ROG_GAMEPAD_MICE" + +/** + * A variable containing a list of devices that are not ROG gamepad capable + * mice. + * + * This will override SDL_HINT_ROG_GAMEPAD_MICE and the built in device list. + * + * The format of the string is a comma separated list of USB VID/PID pairs in + * hexadecimal form, e.g. + * + * `0xAAAA/0xBBBB,0xCCCC/0xDDDD` + * + * The variable can also take the form of "@file", in which case the named + * file will be loaded and interpreted as the value of the variable. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ROG_GAMEPAD_MICE_EXCLUDED "SDL_ROG_GAMEPAD_MICE_EXCLUDED" + +/** + * A variable controlling which Dispmanx layer to use on a Raspberry PI. + * + * Also known as Z-order. The variable can take a negative or positive value. + * The default is 10000. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_RPI_VIDEO_LAYER "SDL_RPI_VIDEO_LAYER" + +/** + * Specify an "activity name" for screensaver inhibition. + * + * Some platforms, notably Linux desktops, list the applications which are + * inhibiting the screensaver or other power-saving features. + * + * This hint lets you specify the "activity name" sent to the OS when + * SDL_DisableScreenSaver() is used (or the screensaver is automatically + * disabled). The contents of this hint are used when the screensaver is + * disabled. You should use a string that describes what your program is doing + * (and, therefore, why the screensaver is disabled). For example, "Playing a + * game" or "Watching a video". + * + * Setting this to "" or leaving it unset will have SDL use a reasonable + * default: "Playing a game" or something similar. + * + * This hint should be set before calling SDL_DisableScreenSaver() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_SCREENSAVER_INHIBIT_ACTIVITY_NAME "SDL_SCREENSAVER_INHIBIT_ACTIVITY_NAME" + +/** + * A variable controlling whether SDL calls dbus_shutdown() on quit. + * + * This is useful as a debug tool to validate memory leaks, but shouldn't ever + * be set in production applications, as other libraries used by the + * application might use dbus under the hood and this can cause crashes if + * they continue after SDL_Quit(). + * + * The variable can be set to the following values: + * + * - "0": SDL will not call dbus_shutdown() on quit. (default) + * - "1": SDL will call dbus_shutdown() on quit. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_SHUTDOWN_DBUS_ON_QUIT "SDL_SHUTDOWN_DBUS_ON_QUIT" + +/** + * A variable that specifies a backend to use for title storage. + * + * By default, SDL will try all available storage backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target, such as "pc" if, say, you are on Steam but + * want to avoid SteamRemoteStorage for title data. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_STORAGE_TITLE_DRIVER "SDL_STORAGE_TITLE_DRIVER" + +/** + * A variable that specifies a backend to use for user storage. + * + * By default, SDL will try all available storage backends in a reasonable + * order until it finds one that can work, but this hint allows the app or + * user to force a specific target, such as "pc" if, say, you are on Steam but + * want to avoid SteamRemoteStorage for user data. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_STORAGE_USER_DRIVER "SDL_STORAGE_USER_DRIVER" + +/** + * Specifies whether SDL_THREAD_PRIORITY_TIME_CRITICAL should be treated as + * realtime. + * + * On some platforms, like Linux, a realtime priority thread may be subject to + * restrictions that require special handling by the application. This hint + * exists to let SDL know that the app is prepared to handle said + * restrictions. + * + * On Linux, SDL will apply the following configuration to any thread that + * becomes realtime: + * + * - The SCHED_RESET_ON_FORK bit will be set on the scheduling policy, + * - An RLIMIT_RTTIME budget will be configured to the rtkit specified limit. + * - Exceeding this limit will result in the kernel sending SIGKILL to the + * app, refer to the man pages for more information. + * + * The variable can be set to the following values: + * + * - "0": default platform specific behaviour + * - "1": Force SDL_THREAD_PRIORITY_TIME_CRITICAL to a realtime scheduling + * policy + * + * This hint should be set before calling SDL_SetCurrentThreadPriority() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_THREAD_FORCE_REALTIME_TIME_CRITICAL "SDL_THREAD_FORCE_REALTIME_TIME_CRITICAL" + +/** + * A string specifying additional information to use with + * SDL_SetCurrentThreadPriority. + * + * By default SDL_SetCurrentThreadPriority will make appropriate system + * changes in order to apply a thread priority. For example on systems using + * pthreads the scheduler policy is changed automatically to a policy that + * works well with a given priority. Code which has specific requirements can + * override SDL's default behavior with this hint. + * + * pthread hint values are "current", "other", "fifo" and "rr". Currently no + * other platform hint values are defined but may be in the future. + * + * On Linux, the kernel may send SIGKILL to realtime tasks which exceed the + * distro configured execution budget for rtkit. This budget can be queried + * through RLIMIT_RTTIME after calling SDL_SetCurrentThreadPriority(). + * + * This hint should be set before calling SDL_SetCurrentThreadPriority() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_THREAD_PRIORITY_POLICY "SDL_THREAD_PRIORITY_POLICY" + +/** + * A variable that controls the timer resolution, in milliseconds. + * + * The higher resolution the timer, the more frequently the CPU services timer + * interrupts, and the more precise delays are, but this takes up power and + * CPU time. This hint is only used on Windows. + * + * See this blog post for more information: + * http://randomascii.wordpress.com/2013/07/08/windows-timer-resolution-megawatts-wasted/ + * + * The default value is "1". + * + * If this variable is set to "0", the system timer resolution is not set. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TIMER_RESOLUTION "SDL_TIMER_RESOLUTION" + +/** + * A variable controlling whether touch events should generate synthetic mouse + * events. + * + * The variable can be set to the following values: + * + * - "0": Touch events will not generate mouse events. + * - "1": Touch events will generate mouse events. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TOUCH_MOUSE_EVENTS "SDL_TOUCH_MOUSE_EVENTS" + +/** + * A variable controlling whether trackpads should be treated as touch + * devices. + * + * On macOS (and possibly other platforms in the future), SDL will report + * touches on a trackpad as mouse input, which is generally what users expect + * from this device; however, these are often actually full multitouch-capable + * touch devices, so it might be preferable to some apps to treat them as + * such. + * + * The variable can be set to the following values: + * + * - "0": Trackpad will send mouse events. (default) + * - "1": Trackpad will send touch events. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TRACKPAD_IS_TOUCH_ONLY "SDL_TRACKPAD_IS_TOUCH_ONLY" + +/** + * A variable controlling whether the Android / tvOS remotes should be listed + * as joystick devices, instead of sending keyboard events. + * + * The variable can be set to the following values: + * + * - "0": Remotes send enter/escape/arrow key events. + * - "1": Remotes are available as 2 axis, 2 button joysticks. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_TV_REMOTE_AS_JOYSTICK "SDL_TV_REMOTE_AS_JOYSTICK" + +/** + * A variable controlling whether the screensaver is enabled. + * + * The variable can be set to the following values: + * + * - "0": Disable screensaver. (default) + * - "1": Enable screensaver. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_ALLOW_SCREENSAVER "SDL_VIDEO_ALLOW_SCREENSAVER" + +/** + * A comma separated list containing the names of the displays that SDL should + * sort to the front of the display list. + * + * When this hint is set, displays with matching name strings will be + * prioritized in the list of displays, as exposed by calling + * SDL_GetDisplays(), with the first listed becoming the primary display. The + * naming convention can vary depending on the environment, but it is usually + * a connector name (e.g. 'DP-1', 'DP-2', 'HDMI-A-1',etc...). + * + * On Wayland and X11 desktops, the connector names associated with displays + * can typically be found by using the `xrandr` utility. + * + * This hint is currently supported on the following drivers: + * + * - KMSDRM (kmsdrm) + * - Wayland (wayland) + * - X11 (x11) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DISPLAY_PRIORITY "SDL_VIDEO_DISPLAY_PRIORITY" + +/** + * Tell the video driver that we only want a double buffer. + * + * By default, most lowlevel 2D APIs will use a triple buffer scheme that + * wastes no CPU time on waiting for vsync after issuing a flip, but + * introduces a frame of latency. On the other hand, using a double buffer + * scheme instead is recommended for cases where low latency is an important + * factor because we save a whole frame of latency. + * + * We do so by waiting for vsync immediately after issuing a flip, usually + * just after eglSwapBuffers call in the backend's *_SwapWindow function. + * + * This hint is currently supported on the following drivers: + * + * - Raspberry Pi (raspberrypi) + * - Wayland (wayland) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DOUBLE_BUFFER "SDL_VIDEO_DOUBLE_BUFFER" + +/** + * A variable that specifies a video backend to use. + * + * By default, SDL will try all available video backends in a reasonable order + * until it finds one that can work, but this hint allows the app or user to + * force a specific target, such as "x11" if, say, you are on Wayland but want + * to try talking to the X server instead. + * + * This hint accepts a comma-separated list of driver names, and each will be + * tried in the order listed during init, until one succeeds or all of them + * fail. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DRIVER "SDL_VIDEO_DRIVER" + +/** + * A variable controlling whether the dummy video driver saves output frames. + * + * - "0": Video frames are not saved to disk. (default) + * - "1": Video frames are saved to files in the format "SDL_windowX-Y.bmp", + * where X is the window ID, and Y is the frame number. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_DUMMY_SAVE_FRAMES "SDL_VIDEO_DUMMY_SAVE_FRAMES" + +/** + * If eglGetPlatformDisplay fails, fall back to calling eglGetDisplay. + * + * The variable can be set to one of the following values: + * + * - "0": Do not fall back to eglGetDisplay. + * - "1": Fall back to eglGetDisplay if eglGetPlatformDisplay fails. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_EGL_ALLOW_GETDISPLAY_FALLBACK "SDL_VIDEO_EGL_ALLOW_GETDISPLAY_FALLBACK" + +/** + * A variable controlling whether the OpenGL context should be created with + * EGL. + * + * The variable can be set to the following values: + * + * - "0": Use platform-specific GL context creation API (GLX, WGL, CGL, etc). + * (default) + * - "1": Use EGL + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_FORCE_EGL "SDL_VIDEO_FORCE_EGL" + +/** + * A variable that specifies the policy for fullscreen Spaces on macOS. + * + * The variable can be set to the following values: + * + * - "0": Disable Spaces support (FULLSCREEN_DESKTOP won't use them and + * SDL_WINDOW_RESIZABLE windows won't offer the "fullscreen" button on their + * titlebars). + * - "1": Enable Spaces support (FULLSCREEN_DESKTOP will use them and + * SDL_WINDOW_RESIZABLE windows will offer the "fullscreen" button on their + * titlebars). (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_MAC_FULLSCREEN_SPACES "SDL_VIDEO_MAC_FULLSCREEN_SPACES" + +/** + * A variable that specifies the menu visibility when a window is fullscreen + * in Spaces on macOS. + * + * The variable can be set to the following values: + * + * - "0": The menu will be hidden when the window is in a fullscreen space, + * and not accessible by moving the mouse to the top of the screen. + * - "1": The menu will be accessible when the window is in a fullscreen + * space. + * - "auto": The menu will be hidden if fullscreen mode was toggled on + * programmatically via `SDL_SetWindowFullscreen()`, and accessible if + * fullscreen was entered via the "fullscreen" button on the window title + * bar. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_MAC_FULLSCREEN_MENU_VISIBILITY "SDL_VIDEO_MAC_FULLSCREEN_MENU_VISIBILITY" + +/** + * A variable controlling whether fullscreen windows are minimized when they + * lose focus. + * + * The variable can be set to the following values: + * + * - "0": Fullscreen windows will not be minimized when they lose focus. + * (default) + * - "1": Fullscreen windows are minimized when they lose focus. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS "SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS" + +/** + * A variable controlling whether the offscreen video driver saves output + * frames. + * + * This only saves frames that are generated using software rendering, not + * accelerated OpenGL rendering. + * + * - "0": Video frames are not saved to disk. (default) + * - "1": Video frames are saved to files in the format "SDL_windowX-Y.bmp", + * where X is the window ID, and Y is the frame number. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_OFFSCREEN_SAVE_FRAMES "SDL_VIDEO_OFFSCREEN_SAVE_FRAMES" + +/** + * A variable controlling whether all window operations will block until + * complete. + * + * Window systems that run asynchronously may not have the results of window + * operations that resize or move the window applied immediately upon the + * return of the requesting function. Setting this hint will cause such + * operations to block after every call until the pending operation has + * completed. Setting this to '1' is the equivalent of calling + * SDL_SyncWindow() after every function call. + * + * Be aware that amount of time spent blocking while waiting for window + * operations to complete can be quite lengthy, as animations may have to + * complete, which can take upwards of multiple seconds in some cases. + * + * The variable can be set to the following values: + * + * - "0": Window operations are non-blocking. (default) + * - "1": Window operations will block until completed. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_SYNC_WINDOW_OPERATIONS "SDL_VIDEO_SYNC_WINDOW_OPERATIONS" + +/** + * A variable controlling whether the libdecor Wayland backend is allowed to + * be used. + * + * libdecor is used over xdg-shell when xdg-decoration protocol is + * unavailable. + * + * The variable can be set to the following values: + * + * - "0": libdecor use is disabled. + * - "1": libdecor use is enabled. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_ALLOW_LIBDECOR "SDL_VIDEO_WAYLAND_ALLOW_LIBDECOR" + +/** + * A variable controlling whether video mode emulation is enabled under + * Wayland. + * + * When this hint is set, a standard set of emulated CVT video modes will be + * exposed for use by the application. If it is disabled, the only modes + * exposed will be the logical desktop size and, in the case of a scaled + * desktop, the native display resolution. + * + * The variable can be set to the following values: + * + * - "0": Video mode emulation is disabled. + * - "1": Video mode emulation is enabled. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_MODE_EMULATION "SDL_VIDEO_WAYLAND_MODE_EMULATION" + +/** + * A variable controlling how modes with a non-native aspect ratio are + * displayed under Wayland. + * + * When this hint is set, the requested scaling will be used when displaying + * fullscreen video modes that don't match the display's native aspect ratio. + * This is contingent on compositor viewport support. + * + * The variable can be set to the following values: + * + * - "aspect" - Video modes will be displayed scaled, in their proper aspect + * ratio, with black bars. + * - "stretch" - Video modes will be scaled to fill the entire display. + * (default) + * - "none" - Video modes will be displayed as 1:1 with no scaling. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_MODE_SCALING "SDL_VIDEO_WAYLAND_MODE_SCALING" + +/** + * A variable controlling whether the libdecor Wayland backend is preferred + * over native decorations. + * + * When this hint is set, libdecor will be used to provide window decorations, + * even if xdg-decoration is available. (Note that, by default, libdecor will + * use xdg-decoration itself if available). + * + * The variable can be set to the following values: + * + * - "0": libdecor is enabled only if server-side decorations are unavailable. + * (default) + * - "1": libdecor is always enabled if available. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_PREFER_LIBDECOR "SDL_VIDEO_WAYLAND_PREFER_LIBDECOR" + +/** + * A variable forcing non-DPI-aware Wayland windows to output at 1:1 scaling. + * + * This must be set before initializing the video subsystem. + * + * When this hint is set, Wayland windows that are not flagged as being + * DPI-aware will be output with scaling designed to force 1:1 pixel mapping. + * + * This is intended to allow legacy applications to be displayed without + * desktop scaling being applied, and has issues with certain display + * configurations, as this forces the window to behave in a way that Wayland + * desktops were not designed to accommodate: + * + * - Rounding errors can result with odd window sizes and/or desktop scales, + * which can cause the window contents to appear slightly blurry. + * - Positioning the window may be imprecise due to unit conversions and + * rounding. + * - The window may be unusably small on scaled desktops. + * - The window may jump in size when moving between displays of different + * scale factors. + * - Displays may appear to overlap when using a multi-monitor setup with + * scaling enabled. + * - Possible loss of cursor precision due to the logical size of the window + * being reduced. + * + * New applications should be designed with proper DPI awareness handling + * instead of enabling this. + * + * The variable can be set to the following values: + * + * - "0": Windows will be scaled normally. + * - "1": Windows will be forced to scale to achieve 1:1 output. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WAYLAND_SCALE_TO_DISPLAY "SDL_VIDEO_WAYLAND_SCALE_TO_DISPLAY" + +/** + * A variable specifying which shader compiler to preload when using the + * Chrome ANGLE binaries. + * + * SDL has EGL and OpenGL ES2 support on Windows via the ANGLE project. It can + * use two different sets of binaries, those compiled by the user from source + * or those provided by the Chrome browser. In the later case, these binaries + * require that SDL loads a DLL providing the shader compiler. + * + * The variable can be set to the following values: + * + * - "d3dcompiler_46.dll" - best for Vista or later. (default) + * - "d3dcompiler_43.dll" - for XP support. + * - "none" - do not load any library, useful if you compiled ANGLE from + * source and included the compiler in your binaries. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_WIN_D3DCOMPILER "SDL_VIDEO_WIN_D3DCOMPILER" + +/** + * A variable controlling whether SDL should call XSelectInput() to enable + * input events on X11 windows wrapped by SDL windows. + * + * The variable can be set to the following values: + * + * - "0": Don't call XSelectInput(), assuming the native window code has done + * it already. + * - "1": Call XSelectInput() to enable input events. (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.10. + */ +#define SDL_HINT_VIDEO_X11_EXTERNAL_WINDOW_INPUT "SDL_VIDEO_X11_EXTERNAL_WINDOW_INPUT" + +/** + * A variable controlling whether the X11 _NET_WM_BYPASS_COMPOSITOR hint + * should be used. + * + * The variable can be set to the following values: + * + * - "0": Disable _NET_WM_BYPASS_COMPOSITOR. + * - "1": Enable _NET_WM_BYPASS_COMPOSITOR. (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR "SDL_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR" + +/** + * A variable controlling whether the X11 _NET_WM_PING protocol should be + * supported. + * + * By default SDL will use _NET_WM_PING, but for applications that know they + * will not always be able to respond to ping requests in a timely manner they + * can turn it off to avoid the window manager thinking the app is hung. + * + * The variable can be set to the following values: + * + * - "0": Disable _NET_WM_PING. + * - "1": Enable _NET_WM_PING. (default) + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_NET_WM_PING "SDL_VIDEO_X11_NET_WM_PING" + +/** + * A variable controlling whether SDL uses DirectColor visuals. + * + * The variable can be set to the following values: + * + * - "0": Disable DirectColor visuals. + * - "1": Enable DirectColor visuals. (default) + * + * This hint should be set before initializing the video subsystem. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_NODIRECTCOLOR "SDL_VIDEO_X11_NODIRECTCOLOR" + +/** + * A variable forcing the content scaling factor for X11 displays. + * + * The variable can be set to a floating point value in the range 1.0-10.0f + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_SCALING_FACTOR "SDL_VIDEO_X11_SCALING_FACTOR" + +/** + * A variable forcing the visual ID used for X11 display modes. + * + * This hint should be set before initializing the video subsystem. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_VISUALID "SDL_VIDEO_X11_VISUALID" + +/** + * A variable forcing the visual ID chosen for new X11 windows. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_WINDOW_VISUALID "SDL_VIDEO_X11_WINDOW_VISUALID" + +/** + * A variable controlling whether the X11 XRandR extension should be used. + * + * The variable can be set to the following values: + * + * - "0": Disable XRandR. + * - "1": Enable XRandR. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VIDEO_X11_XRANDR "SDL_VIDEO_X11_XRANDR" + +/** + * A variable controlling whether touch should be enabled on the back panel of + * the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "0": Disable touch on the back panel. + * - "1": Enable touch on the back panel. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_ENABLE_BACK_TOUCH "SDL_VITA_ENABLE_BACK_TOUCH" + +/** + * A variable controlling whether touch should be enabled on the front panel + * of the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "0": Disable touch on the front panel. + * - "1": Enable touch on the front panel. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_ENABLE_FRONT_TOUCH "SDL_VITA_ENABLE_FRONT_TOUCH" + +/** + * A variable controlling the module path on the PlayStation Vita. + * + * This hint defaults to "app0:module" + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_MODULE_PATH "SDL_VITA_MODULE_PATH" + +/** + * A variable controlling whether to perform PVR initialization on the + * PlayStation Vita. + * + * - "0": Skip PVR initialization. + * - "1": Perform the normal PVR initialization. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_PVR_INIT "SDL_VITA_PVR_INIT" + +/** + * A variable overriding the resolution reported on the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "544": 544p (default) + * - "720": 725p for PSTV + * - "1080": 1088i for PSTV + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_RESOLUTION "SDL_VITA_RESOLUTION" + +/** + * A variable controlling whether OpenGL should be used instead of OpenGL ES + * on the PlayStation Vita. + * + * The variable can be set to the following values: + * + * - "0": Use OpenGL ES. (default) + * - "1": Use OpenGL. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_PVR_OPENGL "SDL_VITA_PVR_OPENGL" + +/** + * A variable controlling which touchpad should generate synthetic mouse + * events. + * + * The variable can be set to the following values: + * + * - "0": Only front touchpad should generate mouse events. (default) + * - "1": Only back touchpad should generate mouse events. + * - "2": Both touchpads should generate mouse events. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VITA_TOUCH_MOUSE_DEVICE "SDL_VITA_TOUCH_MOUSE_DEVICE" + +/** + * A variable overriding the display index used in SDL_Vulkan_CreateSurface() + * + * The display index starts at 0, which is the default. + * + * This hint should be set before calling SDL_Vulkan_CreateSurface() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VULKAN_DISPLAY "SDL_VULKAN_DISPLAY" + +/** + * Specify the Vulkan library to load. + * + * This hint should be set before creating a Vulkan window or calling + * SDL_Vulkan_LoadLibrary(). + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_VULKAN_LIBRARY "SDL_VULKAN_LIBRARY" + +/** + * A variable controlling how the fact chunk affects the loading of a WAVE + * file. + * + * The fact chunk stores information about the number of samples of a WAVE + * file. The Standards Update from Microsoft notes that this value can be used + * to 'determine the length of the data in seconds'. This is especially useful + * for compressed formats (for which this is a mandatory chunk) if they + * produce multiple sample frames per block and truncating the block is not + * allowed. The fact chunk can exactly specify how many sample frames there + * should be in this case. + * + * Unfortunately, most application seem to ignore the fact chunk and so SDL + * ignores it by default as well. + * + * The variable can be set to the following values: + * + * - "truncate" - Use the number of samples to truncate the wave data if the + * fact chunk is present and valid. + * - "strict" - Like "truncate", but raise an error if the fact chunk is + * invalid, not present for non-PCM formats, or if the data chunk doesn't + * have that many samples. + * - "ignorezero" - Like "truncate", but ignore fact chunk if the number of + * samples is zero. + * - "ignore" - Ignore fact chunk entirely. (default) + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_FACT_CHUNK "SDL_WAVE_FACT_CHUNK" + +/** + * A variable controlling the maximum number of chunks in a WAVE file. + * + * This sets an upper bound on the number of chunks in a WAVE file to avoid + * wasting time on malformed or corrupt WAVE files. This defaults to "10000". + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_CHUNK_LIMIT "SDL_WAVE_CHUNK_LIMIT" + +/** + * A variable controlling how the size of the RIFF chunk affects the loading + * of a WAVE file. + * + * The size of the RIFF chunk (which includes all the sub-chunks of the WAVE + * file) is not always reliable. In case the size is wrong, it's possible to + * just ignore it and step through the chunks until a fixed limit is reached. + * + * Note that files that have trailing data unrelated to the WAVE file or + * corrupt files may slow down the loading process without a reliable + * boundary. By default, SDL stops after 10000 chunks to prevent wasting time. + * Use SDL_HINT_WAVE_CHUNK_LIMIT to adjust this value. + * + * The variable can be set to the following values: + * + * - "force" - Always use the RIFF chunk size as a boundary for the chunk + * search. + * - "ignorezero" - Like "force", but a zero size searches up to 4 GiB. + * (default) + * - "ignore" - Ignore the RIFF chunk size and always search up to 4 GiB. + * - "maximum" - Search for chunks until the end of file. (not recommended) + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_RIFF_CHUNK_SIZE "SDL_WAVE_RIFF_CHUNK_SIZE" + +/** + * A variable controlling how a truncated WAVE file is handled. + * + * A WAVE file is considered truncated if any of the chunks are incomplete or + * the data chunk size is not a multiple of the block size. By default, SDL + * decodes until the first incomplete block, as most applications seem to do. + * + * The variable can be set to the following values: + * + * - "verystrict" - Raise an error if the file is truncated. + * - "strict" - Like "verystrict", but the size of the RIFF chunk is ignored. + * - "dropframe" - Decode until the first incomplete sample frame. + * - "dropblock" - Decode until the first incomplete block. (default) + * + * This hint should be set before calling SDL_LoadWAV() or SDL_LoadWAV_IO() + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WAVE_TRUNCATION "SDL_WAVE_TRUNCATION" + +/** + * A variable controlling whether the window is activated when the + * SDL_RaiseWindow function is called. + * + * The variable can be set to the following values: + * + * - "0": The window is not activated when the SDL_RaiseWindow function is + * called. + * - "1": The window is activated when the SDL_RaiseWindow function is called. + * (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_ACTIVATE_WHEN_RAISED "SDL_WINDOW_ACTIVATE_WHEN_RAISED" + +/** + * A variable controlling whether the window is activated when the + * SDL_ShowWindow function is called. + * + * The variable can be set to the following values: + * + * - "0": The window is not activated when the SDL_ShowWindow function is + * called. + * - "1": The window is activated when the SDL_ShowWindow function is called. + * (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_ACTIVATE_WHEN_SHOWN "SDL_WINDOW_ACTIVATE_WHEN_SHOWN" + +/** + * If set to "0" then never set the top-most flag on an SDL Window even if the + * application requests it. + * + * This is a debugging aid for developers and not expected to be used by end + * users. + * + * The variable can be set to the following values: + * + * - "0": don't allow topmost + * - "1": allow topmost (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_ALLOW_TOPMOST "SDL_WINDOW_ALLOW_TOPMOST" + +/** + * A variable controlling whether the window frame and title bar are + * interactive when the cursor is hidden. + * + * The variable can be set to the following values: + * + * - "0": The window frame is not interactive when the cursor is hidden (no + * move, resize, etc). + * - "1": The window frame is interactive when the cursor is hidden. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN "SDL_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN" + +/** + * A variable controlling whether SDL generates window-close events for Alt+F4 + * on Windows. + * + * The variable can be set to the following values: + * + * - "0": SDL will only do normal key handling for Alt+F4. + * - "1": SDL will generate a window-close event when it sees Alt+F4. + * (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_CLOSE_ON_ALT_F4 "SDL_WINDOWS_CLOSE_ON_ALT_F4" + +/** + * A variable controlling whether menus can be opened with their keyboard + * shortcut (Alt+mnemonic). + * + * If the mnemonics are enabled, then menus can be opened by pressing the Alt + * key and the corresponding mnemonic (for example, Alt+F opens the File + * menu). However, in case an invalid mnemonic is pressed, Windows makes an + * audible beep to convey that nothing happened. This is true even if the + * window has no menu at all! + * + * Because most SDL applications don't have menus, and some want to use the + * Alt key for other purposes, SDL disables mnemonics (and the beeping) by + * default. + * + * Note: This also affects keyboard events: with mnemonics enabled, when a + * menu is opened from the keyboard, you will not receive a KEYUP event for + * the mnemonic key, and *might* not receive one for Alt. + * + * The variable can be set to the following values: + * + * - "0": Alt+mnemonic does nothing, no beeping. (default) + * - "1": Alt+mnemonic opens menus, invalid mnemonics produce a beep. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_ENABLE_MENU_MNEMONICS "SDL_WINDOWS_ENABLE_MENU_MNEMONICS" + +/** + * A variable controlling whether the windows message loop is processed by + * SDL. + * + * The variable can be set to the following values: + * + * - "0": The window message loop is not run. + * - "1": The window message loop is processed in SDL_PumpEvents(). (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP "SDL_WINDOWS_ENABLE_MESSAGELOOP" + +/** + * A variable controlling whether GameInput is used for raw keyboard and mouse + * on Windows. + * + * The variable can be set to the following values: + * + * - "0": GameInput is not used for raw keyboard and mouse events. + * - "1": GameInput is used for raw keyboard and mouse events, if available. + * (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_GAMEINPUT "SDL_WINDOWS_GAMEINPUT" + +/** + * A variable controlling whether raw keyboard events are used on Windows. + * + * The variable can be set to the following values: + * + * - "0": The Windows message loop is used for keyboard events. (default) + * - "1": Low latency raw keyboard events are used. + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_RAW_KEYBOARD "SDL_WINDOWS_RAW_KEYBOARD" + +/** + * A variable controlling whether SDL uses Kernel Semaphores on Windows. + * + * Kernel Semaphores are inter-process and require a context switch on every + * interaction. On Windows 8 and newer, the WaitOnAddress API is available. + * Using that and atomics to implement semaphores increases performance. SDL + * will fall back to Kernel Objects on older OS versions or if forced to by + * this hint. + * + * The variable can be set to the following values: + * + * - "0": Use Atomics and WaitOnAddress API when available, otherwise fall + * back to Kernel Objects. (default) + * - "1": Force the use of Kernel Objects in all cases. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_FORCE_SEMAPHORE_KERNEL "SDL_WINDOWS_FORCE_SEMAPHORE_KERNEL" + +/** + * A variable to specify custom icon resource id from RC file on Windows + * platform. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_INTRESOURCE_ICON "SDL_WINDOWS_INTRESOURCE_ICON" + +/** + * A variable to specify custom icon resource id from RC file on Windows + * platform. + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_INTRESOURCE_ICON_SMALL "SDL_WINDOWS_INTRESOURCE_ICON_SMALL" + +/** + * A variable controlling whether SDL uses the D3D9Ex API introduced in + * Windows Vista, instead of normal D3D9. + * + * Direct3D 9Ex contains changes to state management that can eliminate device + * loss errors during scenarios like Alt+Tab or UAC prompts. D3D9Ex may + * require some changes to your application to cope with the new behavior, so + * this is disabled by default. + * + * For more information on Direct3D 9Ex, see: + * + * - https://docs.microsoft.com/en-us/windows/win32/direct3darticles/graphics-apis-in-windows-vista#direct3d-9ex + * - https://docs.microsoft.com/en-us/windows/win32/direct3darticles/direct3d-9ex-improvements + * + * The variable can be set to the following values: + * + * - "0": Use the original Direct3D 9 API. (default) + * - "1": Use the Direct3D 9Ex API on Vista and later (and fall back if D3D9Ex + * is unavailable) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_USE_D3D9EX "SDL_WINDOWS_USE_D3D9EX" + +/** + * A variable controlling whether SDL will clear the window contents when the + * WM_ERASEBKGND message is received. + * + * The variable can be set to the following values: + * + * - "0"/"never": Never clear the window. + * - "1"/"initial": Clear the window when the first WM_ERASEBKGND event fires. + * (default) + * - "2"/"always": Clear the window on every WM_ERASEBKGND event. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_WINDOWS_ERASE_BACKGROUND_MODE "SDL_WINDOWS_ERASE_BACKGROUND_MODE" + +/** + * A variable controlling whether X11 windows are marked as override-redirect. + * + * If set, this _might_ increase framerate at the expense of the desktop not + * working as expected. Override-redirect windows aren't noticed by the window + * manager at all. + * + * You should probably only use this for fullscreen windows, and you probably + * shouldn't even use it for that. But it's here if you want to try! + * + * The variable can be set to the following values: + * + * - "0": Do not mark the window as override-redirect. (default) + * - "1": Mark the window as override-redirect. + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_X11_FORCE_OVERRIDE_REDIRECT "SDL_X11_FORCE_OVERRIDE_REDIRECT" + +/** + * A variable specifying the type of an X11 window. + * + * During SDL_CreateWindow, SDL uses the _NET_WM_WINDOW_TYPE X11 property to + * report to the window manager the type of window it wants to create. This + * might be set to various things if SDL_WINDOW_TOOLTIP or + * SDL_WINDOW_POPUP_MENU, etc, were specified. For "normal" windows that + * haven't set a specific type, this hint can be used to specify a custom + * type. For example, a dock window might set this to + * "_NET_WM_WINDOW_TYPE_DOCK". + * + * This hint should be set before creating a window. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_X11_WINDOW_TYPE "SDL_X11_WINDOW_TYPE" + +/** + * Specify the XCB library to load for the X11 driver. + * + * The default is platform-specific, often "libX11-xcb.so.1". + * + * This hint should be set before initializing the video subsystem. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_X11_XCB_LIBRARY "SDL_X11_XCB_LIBRARY" + +/** + * A variable controlling whether XInput should be used for controller + * handling. + * + * The variable can be set to the following values: + * + * - "0": XInput is not enabled. + * - "1": XInput is enabled. (default) + * + * This hint should be set before SDL is initialized. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_XINPUT_ENABLED "SDL_XINPUT_ENABLED" + +/** + * A variable controlling response to SDL_assert failures. + * + * The variable can be set to the following case-sensitive values: + * + * - "abort": Program terminates immediately. + * - "break": Program triggers a debugger breakpoint. + * - "retry": Program reruns the SDL_assert's test again. + * - "ignore": Program continues on, ignoring this assertion failure this + * time. + * - "always_ignore": Program continues on, ignoring this assertion failure + * for the rest of the run. + * + * Note that SDL_SetAssertionHandler offers a programmatic means to deal with + * assertion failures through a callback, and this hint is largely intended to + * be used via environment variables by end users and automated tools. + * + * This hint should be set before an assertion failure is triggered and can be + * changed at any time. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_ASSERT "SDL_ASSERT" + +/** + * A variable controlling whether pen events should generate synthetic mouse + * events. + * + * The variable can be set to the following values: + * + * - "0": Pen events will not generate mouse events. + * - "1": Pen events will generate mouse events. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_PEN_MOUSE_EVENTS "SDL_PEN_MOUSE_EVENTS" + +/** + * A variable controlling whether pen events should generate synthetic touch + * events. + * + * The variable can be set to the following values: + * + * - "0": Pen events will not generate touch events. + * - "1": Pen events will generate touch events. (default) + * + * This hint can be set anytime. + * + * \since This hint is available since SDL 3.2.0. + */ +#define SDL_HINT_PEN_TOUCH_EVENTS "SDL_PEN_TOUCH_EVENTS" + + +/** + * An enumeration of hint priorities. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_HintPriority +{ + SDL_HINT_DEFAULT, + SDL_HINT_NORMAL, + SDL_HINT_OVERRIDE +} SDL_HintPriority; + +/** + * Set a hint with a specific priority. + * + * The priority controls the behavior when setting a hint that already has a + * value. Hints will replace existing hints of their priority and lower. + * Environment variables are considered to have override priority. + * + * \param name the hint to set. + * \param value the value of the hint variable. + * \param priority the SDL_HintPriority level for the hint. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHint + * \sa SDL_ResetHint + * \sa SDL_SetHint + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHintWithPriority(const char *name, const char *value, SDL_HintPriority priority); + +/** + * Set a hint with normal priority. + * + * Hints will not be set if there is an existing override hint or environment + * variable that takes precedence. You can use SDL_SetHintWithPriority() to + * set the hint with override priority instead. + * + * \param name the hint to set. + * \param value the value of the hint variable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHint + * \sa SDL_ResetHint + * \sa SDL_SetHintWithPriority + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetHint(const char *name, const char *value); + +/** + * Reset a hint to the default value. + * + * This will reset a hint to the value of the environment variable, or NULL if + * the environment isn't set. Callbacks will be called normally with this + * change. + * + * \param name the hint to set. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetHint + * \sa SDL_ResetHints + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ResetHint(const char *name); + +/** + * Reset all hints to the default values. + * + * This will reset all hints to the value of the associated environment + * variable, or NULL if the environment isn't set. Callbacks will be called + * normally with this change. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResetHint + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetHints(void); + +/** + * Get the value of a hint. + * + * \param name the hint to query. + * \returns the string value of a hint or NULL if the hint isn't set. + * + * \threadsafety It is safe to call this function from any thread, however the + * return value only remains valid until the hint is changed; if + * another thread might do so, the app should supply locks + * and/or make a copy of the string. Note that using a hint + * callback instead is always thread-safe, as SDL holds a lock + * on the thread subsystem during the callback. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetHint + * \sa SDL_SetHintWithPriority + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetHint(const char *name); + +/** + * Get the boolean value of a hint variable. + * + * \param name the name of the hint to get the boolean value from. + * \param default_value the value to return if the hint does not exist. + * \returns the boolean value of a hint or the provided default value if the + * hint does not exist. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetHint + * \sa SDL_SetHint + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetHintBoolean(const char *name, bool default_value); + +/** + * A callback used to send notifications of hint value changes. + * + * This is called an initial time during SDL_AddHintCallback with the hint's + * current value, and then again each time the hint's value changes. + * + * \param userdata what was passed as `userdata` to SDL_AddHintCallback(). + * \param name what was passed as `name` to SDL_AddHintCallback(). + * \param oldValue the previous hint value. + * \param newValue the new value hint is to be set to. + * + * \threadsafety This callback is fired from whatever thread is setting a new + * hint value. SDL holds a lock on the hint subsystem when + * calling this callback. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_AddHintCallback + */ +typedef void(SDLCALL *SDL_HintCallback)(void *userdata, const char *name, const char *oldValue, const char *newValue); + +/** + * Add a function to watch a particular hint. + * + * The callback function is called _during_ this function, to provide it an + * initial value, and again each time the hint's value changes. + * + * \param name the hint to watch. + * \param callback An SDL_HintCallback function that will be called when the + * hint value changes. + * \param userdata a pointer to pass to the callback function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveHintCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddHintCallback(const char *name, SDL_HintCallback callback, void *userdata); + +/** + * Remove a function watching a particular hint. + * + * \param name the hint being watched. + * \param callback an SDL_HintCallback function that will be called when the + * hint value changes. + * \param userdata a pointer being passed to the callback function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddHintCallback + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveHintCallback(const char *name, + SDL_HintCallback callback, + void *userdata); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_hints_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_init.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_init.h new file mode 100644 index 0000000..27ebe4b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_init.h @@ -0,0 +1,497 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryInit + * + * All SDL programs need to initialize the library before starting to work + * with it. + * + * Almost everything can simply call SDL_Init() near startup, with a handful + * of flags to specify subsystems to touch. These are here to make sure SDL + * does not even attempt to touch low-level pieces of the operating system + * that you don't intend to use. For example, you might be using SDL for video + * and input but chose an external library for audio, and in this case you + * would just need to leave off the `SDL_INIT_AUDIO` flag to make sure that + * external library has complete control. + * + * Most apps, when terminating, should call SDL_Quit(). This will clean up + * (nearly) everything that SDL might have allocated, and crucially, it'll + * make sure that the display's resolution is back to what the user expects if + * you had previously changed it for your game. + * + * SDL3 apps are strongly encouraged to call SDL_SetAppMetadata() at startup + * to fill in details about the program. This is completely optional, but it + * helps in small ways (we can provide an About dialog box for the macOS menu, + * we can name the app in the system's audio mixer, etc). Those that want to + * provide a _lot_ of information should look at the more-detailed + * SDL_SetAppMetadataProperty(). + */ + +#ifndef SDL_init_h_ +#define SDL_init_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* As of version 0.5, SDL is loaded dynamically into the application */ + +/** + * Initialization flags for SDL_Init and/or SDL_InitSubSystem + * + * These are the flags which may be passed to SDL_Init(). You should specify + * the subsystems which you will be using in your application. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_Quit + * \sa SDL_InitSubSystem + * \sa SDL_QuitSubSystem + * \sa SDL_WasInit + */ +typedef Uint32 SDL_InitFlags; + +#define SDL_INIT_AUDIO 0x00000010u /**< `SDL_INIT_AUDIO` implies `SDL_INIT_EVENTS` */ +#define SDL_INIT_VIDEO 0x00000020u /**< `SDL_INIT_VIDEO` implies `SDL_INIT_EVENTS`, should be initialized on the main thread */ +#define SDL_INIT_JOYSTICK 0x00000200u /**< `SDL_INIT_JOYSTICK` implies `SDL_INIT_EVENTS` */ +#define SDL_INIT_HAPTIC 0x00001000u +#define SDL_INIT_GAMEPAD 0x00002000u /**< `SDL_INIT_GAMEPAD` implies `SDL_INIT_JOYSTICK` */ +#define SDL_INIT_EVENTS 0x00004000u +#define SDL_INIT_SENSOR 0x00008000u /**< `SDL_INIT_SENSOR` implies `SDL_INIT_EVENTS` */ +#define SDL_INIT_CAMERA 0x00010000u /**< `SDL_INIT_CAMERA` implies `SDL_INIT_EVENTS` */ + +/** + * Return values for optional main callbacks. + * + * Returning SDL_APP_SUCCESS or SDL_APP_FAILURE from SDL_AppInit, + * SDL_AppEvent, or SDL_AppIterate will terminate the program and report + * success/failure to the operating system. What that means is + * platform-dependent. On Unix, for example, on success, the process error + * code will be zero, and on failure it will be 1. This interface doesn't + * allow you to return specific exit codes, just whether there was an error + * generally or not. + * + * Returning SDL_APP_CONTINUE from these functions will let the app continue + * to run. + * + * See + * [Main callbacks in SDL3](https://wiki.libsdl.org/SDL3/README/main-functions#main-callbacks-in-sdl3) + * for complete details. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_AppResult +{ + SDL_APP_CONTINUE, /**< Value that requests that the app continue from the main callbacks. */ + SDL_APP_SUCCESS, /**< Value that requests termination with success from the main callbacks. */ + SDL_APP_FAILURE /**< Value that requests termination with error from the main callbacks. */ +} SDL_AppResult; + +/** + * Function pointer typedef for SDL_AppInit. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppInit directly. + * + * \param appstate a place where the app can optionally store a pointer for + * future use. + * \param argc the standard ANSI C main's argc; number of elements in `argv`. + * \param argv the standard ANSI C main's argv; array of command line + * arguments. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AppResult (SDLCALL *SDL_AppInit_func)(void **appstate, int argc, char *argv[]); + +/** + * Function pointer typedef for SDL_AppIterate. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppIterate directly. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AppResult (SDLCALL *SDL_AppIterate_func)(void *appstate); + +/** + * Function pointer typedef for SDL_AppEvent. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppEvent directly. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param event the new event for the app to examine. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef SDL_AppResult (SDLCALL *SDL_AppEvent_func)(void *appstate, SDL_Event *event); + +/** + * Function pointer typedef for SDL_AppQuit. + * + * These are used by SDL_EnterAppMainCallbacks. This mechanism operates behind + * the scenes for apps using the optional main callbacks. Apps that want to + * use this should just implement SDL_AppEvent directly. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param result the result code that terminated the app (success or failure). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void (SDLCALL *SDL_AppQuit_func)(void *appstate, SDL_AppResult result); + + +/** + * Initialize the SDL library. + * + * SDL_Init() simply forwards to calling SDL_InitSubSystem(). Therefore, the + * two may be used interchangeably. Though for readability of your code + * SDL_InitSubSystem() might be preferred. + * + * The file I/O (for example: SDL_IOFromFile) and threading (SDL_CreateThread) + * subsystems are initialized by default. Message boxes + * (SDL_ShowSimpleMessageBox) also attempt to work without initializing the + * video subsystem, in hopes of being useful in showing an error dialog when + * SDL_Init fails. You must specifically initialize other subsystems if you + * use them in your application. + * + * Logging (such as SDL_Log) works without initialization, too. + * + * `flags` may be any of the following OR'd together: + * + * - `SDL_INIT_AUDIO`: audio subsystem; automatically initializes the events + * subsystem + * - `SDL_INIT_VIDEO`: video subsystem; automatically initializes the events + * subsystem, should be initialized on the main thread. + * - `SDL_INIT_JOYSTICK`: joystick subsystem; automatically initializes the + * events subsystem + * - `SDL_INIT_HAPTIC`: haptic (force feedback) subsystem + * - `SDL_INIT_GAMEPAD`: gamepad subsystem; automatically initializes the + * joystick subsystem + * - `SDL_INIT_EVENTS`: events subsystem + * - `SDL_INIT_SENSOR`: sensor subsystem; automatically initializes the events + * subsystem + * - `SDL_INIT_CAMERA`: camera subsystem; automatically initializes the events + * subsystem + * + * Subsystem initialization is ref-counted, you must call SDL_QuitSubSystem() + * for each SDL_InitSubSystem() to correctly shutdown a subsystem manually (or + * call SDL_Quit() to force shutdown). If a subsystem is already loaded then + * this call will increase the ref-count and return. + * + * Consider reporting some basic metadata about your application before + * calling SDL_Init, using either SDL_SetAppMetadata() or + * SDL_SetAppMetadataProperty(). + * + * \param flags subsystem initialization flags. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAppMetadata + * \sa SDL_SetAppMetadataProperty + * \sa SDL_InitSubSystem + * \sa SDL_Quit + * \sa SDL_SetMainReady + * \sa SDL_WasInit + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Init(SDL_InitFlags flags); + +/** + * Compatibility function to initialize the SDL library. + * + * This function and SDL_Init() are interchangeable. + * + * \param flags any of the flags used by SDL_Init(); see SDL_Init for details. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_Quit + * \sa SDL_QuitSubSystem + */ +extern SDL_DECLSPEC bool SDLCALL SDL_InitSubSystem(SDL_InitFlags flags); + +/** + * Shut down specific SDL subsystems. + * + * You still need to call SDL_Quit() even if you close all open subsystems + * with SDL_QuitSubSystem(). + * + * \param flags any of the flags used by SDL_Init(); see SDL_Init for details. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InitSubSystem + * \sa SDL_Quit + */ +extern SDL_DECLSPEC void SDLCALL SDL_QuitSubSystem(SDL_InitFlags flags); + +/** + * Get a mask of the specified subsystems which are currently initialized. + * + * \param flags any of the flags used by SDL_Init(); see SDL_Init for details. + * \returns a mask of all initialized subsystems if `flags` is 0, otherwise it + * returns the initialization status of the specified subsystems. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_InitSubSystem + */ +extern SDL_DECLSPEC SDL_InitFlags SDLCALL SDL_WasInit(SDL_InitFlags flags); + +/** + * Clean up all initialized subsystems. + * + * You should call this function even if you have already shutdown each + * initialized subsystem with SDL_QuitSubSystem(). It is safe to call this + * function even in the case of errors in initialization. + * + * You can use this function with atexit() to ensure that it is run when your + * application is shutdown, but it is not wise to do this from a library or + * other dynamically loaded code. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + * \sa SDL_QuitSubSystem + */ +extern SDL_DECLSPEC void SDLCALL SDL_Quit(void); + +/** + * Return whether this is the main thread. + * + * On Apple platforms, the main thread is the thread that runs your program's + * main() entry point. On other platforms, the main thread is the one that + * calls SDL_Init(SDL_INIT_VIDEO), which should usually be the one that runs + * your program's main() entry point. If you are using the main callbacks, + * SDL_AppInit(), SDL_AppIterate(), and SDL_AppQuit() are all called on the + * main thread. + * + * \returns true if this thread is the main thread, or false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RunOnMainThread + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsMainThread(void); + +/** + * Callback run on the main thread. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_RunOnMainThread + */ +typedef void (SDLCALL *SDL_MainThreadCallback)(void *userdata); + +/** + * Call a function on the main thread during event processing. + * + * If this is called on the main thread, the callback is executed immediately. + * If this is called on another thread, this callback is queued for execution + * on the main thread during event processing. + * + * Be careful of deadlocks when using this functionality. You should not have + * the main thread wait for the current thread while this function is being + * called with `wait_complete` true. + * + * \param callback the callback to call on the main thread. + * \param userdata a pointer that is passed to `callback`. + * \param wait_complete true to wait for the callback to complete, false to + * return immediately. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IsMainThread + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RunOnMainThread(SDL_MainThreadCallback callback, void *userdata, bool wait_complete); + +/** + * Specify basic metadata about your app. + * + * You can optionally provide metadata about your app to SDL. This is not + * required, but strongly encouraged. + * + * There are several locations where SDL can make use of metadata (an "About" + * box in the macOS menu bar, the name of the app can be shown on some audio + * mixers, etc). Any piece of metadata can be left as NULL, if a specific + * detail doesn't make sense for the app. + * + * This function should be called as early as possible, before SDL_Init. + * Multiple calls to this function are allowed, but various state might not + * change once it has been set up with a previous call to this function. + * + * Passing a NULL removes any previous metadata. + * + * This is a simplified interface for the most important information. You can + * supply significantly more detailed metadata with + * SDL_SetAppMetadataProperty(). + * + * \param appname The name of the application ("My Game 2: Bad Guy's + * Revenge!"). + * \param appversion The version of the application ("1.0.0beta5" or a git + * hash, or whatever makes sense). + * \param appidentifier A unique string in reverse-domain format that + * identifies this app ("com.example.mygame2"). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAppMetadataProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAppMetadata(const char *appname, const char *appversion, const char *appidentifier); + +/** + * Specify metadata about your app through a set of properties. + * + * You can optionally provide metadata about your app to SDL. This is not + * required, but strongly encouraged. + * + * There are several locations where SDL can make use of metadata (an "About" + * box in the macOS menu bar, the name of the app can be shown on some audio + * mixers, etc). Any piece of metadata can be left out, if a specific detail + * doesn't make sense for the app. + * + * This function should be called as early as possible, before SDL_Init. + * Multiple calls to this function are allowed, but various state might not + * change once it has been set up with a previous call to this function. + * + * Once set, this metadata can be read using SDL_GetAppMetadataProperty(). + * + * These are the supported properties: + * + * - `SDL_PROP_APP_METADATA_NAME_STRING`: The human-readable name of the + * application, like "My Game 2: Bad Guy's Revenge!". This will show up + * anywhere the OS shows the name of the application separately from window + * titles, such as volume control applets, etc. This defaults to "SDL + * Application". + * - `SDL_PROP_APP_METADATA_VERSION_STRING`: The version of the app that is + * running; there are no rules on format, so "1.0.3beta2" and "April 22nd, + * 2024" and a git hash are all valid options. This has no default. + * - `SDL_PROP_APP_METADATA_IDENTIFIER_STRING`: A unique string that + * identifies this app. This must be in reverse-domain format, like + * "com.example.mygame2". This string is used by desktop compositors to + * identify and group windows together, as well as match applications with + * associated desktop settings and icons. If you plan to package your + * application in a container such as Flatpak, the app ID should match the + * name of your Flatpak container as well. This has no default. + * - `SDL_PROP_APP_METADATA_CREATOR_STRING`: The human-readable name of the + * creator/developer/maker of this app, like "MojoWorkshop, LLC" + * - `SDL_PROP_APP_METADATA_COPYRIGHT_STRING`: The human-readable copyright + * notice, like "Copyright (c) 2024 MojoWorkshop, LLC" or whatnot. Keep this + * to one line, don't paste a copy of a whole software license in here. This + * has no default. + * - `SDL_PROP_APP_METADATA_URL_STRING`: A URL to the app on the web. Maybe a + * product page, or a storefront, or even a GitHub repository, for user's + * further information This has no default. + * - `SDL_PROP_APP_METADATA_TYPE_STRING`: The type of application this is. + * Currently this string can be "game" for a video game, "mediaplayer" for a + * media player, or generically "application" if nothing else applies. + * Future versions of SDL might add new types. This defaults to + * "application". + * + * \param name the name of the metadata property to set. + * \param value the value of the property, or NULL to remove that property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAppMetadataProperty + * \sa SDL_SetAppMetadata + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetAppMetadataProperty(const char *name, const char *value); + +#define SDL_PROP_APP_METADATA_NAME_STRING "SDL.app.metadata.name" +#define SDL_PROP_APP_METADATA_VERSION_STRING "SDL.app.metadata.version" +#define SDL_PROP_APP_METADATA_IDENTIFIER_STRING "SDL.app.metadata.identifier" +#define SDL_PROP_APP_METADATA_CREATOR_STRING "SDL.app.metadata.creator" +#define SDL_PROP_APP_METADATA_COPYRIGHT_STRING "SDL.app.metadata.copyright" +#define SDL_PROP_APP_METADATA_URL_STRING "SDL.app.metadata.url" +#define SDL_PROP_APP_METADATA_TYPE_STRING "SDL.app.metadata.type" + +/** + * Get metadata about your app. + * + * This returns metadata previously set using SDL_SetAppMetadata() or + * SDL_SetAppMetadataProperty(). See SDL_SetAppMetadataProperty() for the list + * of available properties and their meanings. + * + * \param name the name of the metadata property to get. + * \returns the current value of the metadata property, or the default if it + * is not set, NULL for properties with no default. + * + * \threadsafety It is safe to call this function from any thread, although + * the string returned is not protected and could potentially be + * freed if you call SDL_SetAppMetadataProperty() to set that + * property from another thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetAppMetadata + * \sa SDL_SetAppMetadataProperty + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAppMetadataProperty(const char *name); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_init_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_intrin.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_intrin.h new file mode 100644 index 0000000..bac6d7a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_intrin.h @@ -0,0 +1,407 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Intrinsics */ + +/** + * # CategoryIntrinsics + * + * SDL does some preprocessor gymnastics to determine if any CPU-specific + * compiler intrinsics are available, as this is not necessarily an easy thing + * to calculate, and sometimes depends on quirks of a system, versions of + * build tools, and other external forces. + * + * Apps including SDL's headers will be able to check consistent preprocessor + * definitions to decide if it's safe to use compiler intrinsics for a + * specific CPU architecture. This check only tells you that the compiler is + * capable of using those intrinsics; at runtime, you should still check if + * they are available on the current system with the + * [CPU info functions](https://wiki.libsdl.org/SDL3/CategoryCPUInfo) + * , such as SDL_HasSSE() or SDL_HasNEON(). Otherwise, the process might crash + * for using an unsupported CPU instruction. + * + * SDL only sets preprocessor defines for CPU intrinsics if they are + * supported, so apps should check with `#ifdef` and not `#if`. + * + * SDL will also include the appropriate instruction-set-specific support + * headers, so if SDL decides to define SDL_SSE2_INTRINSICS, it will also + * `#include ` as well. + */ + +#ifndef SDL_intrin_h_ +#define SDL_intrin_h_ + +#include + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Defined if (and only if) the compiler supports Loongarch LSX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LASX_INTRINSICS + */ +#define SDL_LSX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Loongarch LSX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_LASX_INTRINSICS + */ +#define SDL_LASX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports ARM NEON intrinsics. + * + * If this macro is defined, SDL will have already included `` + * ``, ``, and ``, as appropriate. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NEON_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports PowerPC Altivec intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ALTIVEC_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel MMX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + */ +#define SDL_MMX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE2 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE2_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE3 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE3_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE4.1 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_2_INTRINSICS + */ +#define SDL_SSE4_1_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel SSE4.2 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SSE_INTRINSICS + * \sa SDL_SSE2_INTRINSICS + * \sa SDL_SSE3_INTRINSICS + * \sa SDL_SSE4_1_INTRINSICS + */ +#define SDL_SSE4_2_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel AVX intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AVX2_INTRINSICS + * \sa SDL_AVX512F_INTRINSICS + */ +#define SDL_AVX_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel AVX2 intrinsics. + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AVX_INTRINSICS + * \sa SDL_AVX512F_INTRINSICS + */ +#define SDL_AVX2_INTRINSICS 1 + +/** + * Defined if (and only if) the compiler supports Intel AVX-512F intrinsics. + * + * AVX-512F is also sometimes referred to as "AVX-512 Foundation." + * + * If this macro is defined, SDL will have already included `` + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_AVX_INTRINSICS + * \sa SDL_AVX2_INTRINSICS + */ +#define SDL_AVX512F_INTRINSICS 1 +#endif + +/* Need to do this here because intrin.h has C++ code in it */ +/* Visual Studio 2005 has a bug where intrin.h conflicts with winnt.h */ +#if defined(_MSC_VER) && (_MSC_VER >= 1500) && (defined(_M_IX86) || defined(_M_X64)) +#ifdef __clang__ +/* As of Clang 11, '_m_prefetchw' is conflicting with the winnt.h's version, + so we define the needed '_m_prefetch' here as a pseudo-header, until the issue is fixed. */ +#ifndef __PRFCHWINTRIN_H +#define __PRFCHWINTRIN_H +static __inline__ void __attribute__((__always_inline__, __nodebug__)) +_m_prefetch(void *__P) +{ + __builtin_prefetch (__P, 0, 3 /* _MM_HINT_T0 */); +} +#endif /* __PRFCHWINTRIN_H */ +#endif /* __clang__ */ +#include + +#elif defined(__MINGW64_VERSION_MAJOR) +#include +#if defined(__ARM_NEON) && !defined(SDL_DISABLE_NEON) +# define SDL_NEON_INTRINSICS 1 +# include +#endif + +#else +/* altivec.h redefining bool causes a number of problems, see bugs 3993 and 4392, so you need to explicitly define SDL_ENABLE_ALTIVEC to have it included. */ +#if defined(__ALTIVEC__) && defined(SDL_ENABLE_ALTIVEC) +#define SDL_ALTIVEC_INTRINSICS 1 +#include +#endif +#ifndef SDL_DISABLE_NEON +# ifdef __ARM_NEON +# define SDL_NEON_INTRINSICS 1 +# include +# elif defined(SDL_PLATFORM_WINDOWS) +/* Visual Studio doesn't define __ARM_ARCH, but _M_ARM (if set, always 7), and _M_ARM64 (if set, always 1). */ +# ifdef _M_ARM +# define SDL_NEON_INTRINSICS 1 +# include +# include +# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */ +# endif +# if defined (_M_ARM64) +# define SDL_NEON_INTRINSICS 1 +# include +# include +# define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */ +# define __ARM_ARCH 8 +# endif +# endif +#endif +#endif /* compiler version */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION +/** + * A macro to decide if the compiler supports `__attribute__((target))`. + * + * Even though this is defined in SDL's public headers, it is generally not + * used directly by apps. Apps should probably just use SDL_TARGETING + * directly, instead. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_TARGETING + */ +#define SDL_HAS_TARGET_ATTRIBS + +#elif defined(__clang__) && defined(__has_attribute) +# if __has_attribute(target) +# define SDL_HAS_TARGET_ATTRIBS +# endif +#elif defined(__GNUC__) && (__GNUC__ + (__GNUC_MINOR__ >= 9) > 4) /* gcc >= 4.9 */ +# define SDL_HAS_TARGET_ATTRIBS +#elif defined(__ICC) && __ICC >= 1600 +# define SDL_HAS_TARGET_ATTRIBS +#endif + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to tag a function as targeting a specific CPU architecture. + * + * This is a hint to the compiler that a function should be built with support + * for a CPU instruction set that might be different than the rest of the + * program. + * + * The particulars of this are explained in the GCC documentation: + * + * https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-target-function-attribute + * + * An example of using this feature is to turn on SSE2 support for a specific + * function, even if the rest of the source code is not compiled to use SSE2 + * code: + * + * ```c + * #ifdef SDL_SSE2_INTRINSICS + * static void SDL_TARGETING("sse2") DoSomethingWithSSE2(char *x) { + * ...use SSE2 intrinsic functions, etc... + * } + * #endif + * + * // later... + * #ifdef SDL_SSE2_INTRINSICS + * if (SDL_HasSSE2()) { + * DoSomethingWithSSE2(str); + * } + * #endif + * ``` + * + * The application is, on a whole, built without SSE2 instructions, so it will + * run on Intel machines that don't support SSE2. But then at runtime, it + * checks if the system supports the instructions, and then calls into a + * function that uses SSE2 opcodes. The ifdefs make sure that this code isn't + * used on platforms that don't have SSE2 at all. + * + * On compilers without target support, this is defined to nothing. + * + * This symbol is used by SDL internally, but apps and other libraries are + * welcome to use it for their own interfaces as well. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TARGETING(x) __attribute__((target(x))) + +#elif defined(SDL_HAS_TARGET_ATTRIBS) +# define SDL_TARGETING(x) __attribute__((target(x))) +#else +# define SDL_TARGETING(x) +#endif + +#ifdef __loongarch64 +# ifndef SDL_DISABLE_LSX +# define SDL_LSX_INTRINSICS 1 +# include +# endif +# ifndef SDL_DISABLE_LASX +# define SDL_LASX_INTRINSICS 1 +# include +# endif +#endif + +#if defined(__x86_64__) || defined(_M_X64) || defined(__i386__) || defined(_M_IX86) +# if ((defined(_MSC_VER) && !defined(_M_X64)) || defined(__MMX__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_MMX) +# define SDL_MMX_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE) +# define SDL_SSE_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE2__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE2) +# define SDL_SSE2_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE3__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE3) +# define SDL_SSE3_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE4_1__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE4_1) +# define SDL_SSE4_1_INTRINSICS 1 +# include +# endif +# if (defined(_MSC_VER) || defined(__SSE4_2__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(SDL_DISABLE_SSE4_2) +# define SDL_SSE4_2_INTRINSICS 1 +# include +# endif +# if defined(__clang__) && (defined(_MSC_VER) || defined(__SCE__)) && !defined(__AVX__) && !defined(SDL_DISABLE_AVX) +# define SDL_DISABLE_AVX /* see https://reviews.llvm.org/D20291 and https://reviews.llvm.org/D79194 */ +# endif +# if (defined(_MSC_VER) || defined(__AVX__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(_M_ARM64EC) && !defined(SDL_DISABLE_AVX) +# define SDL_AVX_INTRINSICS 1 +# include +# endif +# if defined(__clang__) && (defined(_MSC_VER) || defined(__SCE__)) && !defined(__AVX2__) && !defined(SDL_DISABLE_AVX2) +# define SDL_DISABLE_AVX2 /* see https://reviews.llvm.org/D20291 and https://reviews.llvm.org/D79194 */ +# endif +# if (defined(_MSC_VER) || defined(__AVX2__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(_M_ARM64EC) && !defined(SDL_DISABLE_AVX2) +# define SDL_AVX2_INTRINSICS 1 +# include +# endif +# if defined(__clang__) && (defined(_MSC_VER) || defined(__SCE__)) && !defined(__AVX512F__) && !defined(SDL_DISABLE_AVX512F) +# define SDL_DISABLE_AVX512F /* see https://reviews.llvm.org/D20291 and https://reviews.llvm.org/D79194 */ +# endif +# if (defined(_MSC_VER) || defined(__AVX512F__) || defined(SDL_HAS_TARGET_ATTRIBS)) && !defined(_M_ARM64EC) && !defined(SDL_DISABLE_AVX512F) +# define SDL_AVX512F_INTRINSICS 1 +# include +# endif +#endif /* defined(__x86_64__) || defined(_M_X64) || defined(__i386__) || defined(_M_IX86) */ + +#endif /* SDL_intrin_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_iostream.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_iostream.h new file mode 100644 index 0000000..4ca1609 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_iostream.h @@ -0,0 +1,1354 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: IOStream */ + +/** + * # CategoryIOStream + * + * SDL provides an abstract interface for reading and writing data streams. It + * offers implementations for files, memory, etc, and the app can provide + * their own implementations, too. + * + * SDL_IOStream is not related to the standard C++ iostream class, other than + * both are abstract interfaces to read/write data. + */ + +#ifndef SDL_iostream_h_ +#define SDL_iostream_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SDL_IOStream status, set by a read or write operation. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_IOStatus +{ + SDL_IO_STATUS_READY, /**< Everything is ready (no errors and not EOF). */ + SDL_IO_STATUS_ERROR, /**< Read or write I/O error */ + SDL_IO_STATUS_EOF, /**< End of file */ + SDL_IO_STATUS_NOT_READY, /**< Non blocking I/O, not ready */ + SDL_IO_STATUS_READONLY, /**< Tried to write a read-only buffer */ + SDL_IO_STATUS_WRITEONLY /**< Tried to read a write-only buffer */ +} SDL_IOStatus; + +/** + * Possible `whence` values for SDL_IOStream seeking. + * + * These map to the same "whence" concept that `fseek` or `lseek` use in the + * standard C runtime. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_IOWhence +{ + SDL_IO_SEEK_SET, /**< Seek from the beginning of data */ + SDL_IO_SEEK_CUR, /**< Seek relative to current read point */ + SDL_IO_SEEK_END /**< Seek relative to the end of data */ +} SDL_IOWhence; + +/** + * The function pointers that drive an SDL_IOStream. + * + * Applications can provide this struct to SDL_OpenIO() to create their own + * implementation of SDL_IOStream. This is not necessarily required, as SDL + * already offers several common types of I/O streams, via functions like + * SDL_IOFromFile() and SDL_IOFromMem(). + * + * This structure should be initialized using SDL_INIT_INTERFACE() + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_INIT_INTERFACE + */ +typedef struct SDL_IOStreamInterface +{ + /* The version of this interface */ + Uint32 version; + + /** + * Return the number of bytes in this SDL_IOStream + * + * \return the total size of the data stream, or -1 on error. + */ + Sint64 (SDLCALL *size)(void *userdata); + + /** + * Seek to `offset` relative to `whence`, one of stdio's whence values: + * SDL_IO_SEEK_SET, SDL_IO_SEEK_CUR, SDL_IO_SEEK_END + * + * \return the final offset in the data stream, or -1 on error. + */ + Sint64 (SDLCALL *seek)(void *userdata, Sint64 offset, SDL_IOWhence whence); + + /** + * Read up to `size` bytes from the data stream to the area pointed + * at by `ptr`. + * + * On an incomplete read, you should set `*status` to a value from the + * SDL_IOStatus enum. You do not have to explicitly set this on + * a complete, successful read. + * + * \return the number of bytes read + */ + size_t (SDLCALL *read)(void *userdata, void *ptr, size_t size, SDL_IOStatus *status); + + /** + * Write exactly `size` bytes from the area pointed at by `ptr` + * to data stream. + * + * On an incomplete write, you should set `*status` to a value from the + * SDL_IOStatus enum. You do not have to explicitly set this on + * a complete, successful write. + * + * \return the number of bytes written + */ + size_t (SDLCALL *write)(void *userdata, const void *ptr, size_t size, SDL_IOStatus *status); + + /** + * If the stream is buffering, make sure the data is written out. + * + * On failure, you should set `*status` to a value from the + * SDL_IOStatus enum. You do not have to explicitly set this on + * a successful flush. + * + * \return true if successful or false on write error when flushing data. + */ + bool (SDLCALL *flush)(void *userdata, SDL_IOStatus *status); + + /** + * Close and free any allocated resources. + * + * This does not guarantee file writes will sync to physical media; they + * can be in the system's file cache, waiting to go to disk. + * + * The SDL_IOStream is still destroyed even if this fails, so clean up anything + * even if flushing buffers, etc, returns an error. + * + * \return true if successful or false on write error when flushing data. + */ + bool (SDLCALL *close)(void *userdata); + +} SDL_IOStreamInterface; + +/* Check the size of SDL_IOStreamInterface + * + * If this assert fails, either the compiler is padding to an unexpected size, + * or the interface has been updated and this should be updated to match and + * the code using this interface should be updated to handle the old version. + */ +SDL_COMPILE_TIME_ASSERT(SDL_IOStreamInterface_SIZE, + (sizeof(void *) == 4 && sizeof(SDL_IOStreamInterface) == 28) || + (sizeof(void *) == 8 && sizeof(SDL_IOStreamInterface) == 56)); + +/** + * The read/write operation structure. + * + * This operates as an opaque handle. There are several APIs to create various + * types of I/O streams, or an app can supply an SDL_IOStreamInterface to + * SDL_OpenIO() to provide their own stream implementation behind this + * struct's abstract interface. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_IOStream SDL_IOStream; + + +/** + * \name IOFrom functions + * + * Functions to create SDL_IOStream structures from various data streams. + */ +/* @{ */ + +/** + * Use this function to create a new SDL_IOStream structure for reading from + * and/or writing to a named file. + * + * The `mode` string is treated roughly the same as in a call to the C + * library's fopen(), even if SDL doesn't happen to use fopen() behind the + * scenes. + * + * Available `mode` strings: + * + * - "r": Open a file for reading. The file must exist. + * - "w": Create an empty file for writing. If a file with the same name + * already exists its content is erased and the file is treated as a new + * empty file. + * - "a": Append to a file. Writing operations append data at the end of the + * file. The file is created if it does not exist. + * - "r+": Open a file for update both reading and writing. The file must + * exist. + * - "w+": Create an empty file for both reading and writing. If a file with + * the same name already exists its content is erased and the file is + * treated as a new empty file. + * - "a+": Open a file for reading and appending. All writing operations are + * performed at the end of the file, protecting the previous content to be + * overwritten. You can reposition (fseek, rewind) the internal pointer to + * anywhere in the file for reading, but writing operations will move it + * back to the end of file. The file is created if it does not exist. + * + * **NOTE**: In order to open a file as a binary file, a "b" character has to + * be included in the `mode` string. This additional "b" character can either + * be appended at the end of the string (thus making the following compound + * modes: "rb", "wb", "ab", "r+b", "w+b", "a+b") or be inserted between the + * letter and the "+" sign for the mixed modes ("rb+", "wb+", "ab+"). + * Additional characters may follow the sequence, although they should have no + * effect. For example, "t" is sometimes appended to make explicit the file is + * a text file. + * + * This function supports Unicode filenames, but they must be encoded in UTF-8 + * format, regardless of the underlying operating system. + * + * In Android, SDL_IOFromFile() can be used to open content:// URIs. As a + * fallback, SDL_IOFromFile() will transparently open a matching filename in + * the app's `assets`. + * + * Closing the SDL_IOStream will close SDL's internal file handle. + * + * The following properties may be set at creation time by SDL: + * + * - `SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER`: a pointer, that can be cast + * to a win32 `HANDLE`, that this SDL_IOStream is using to access the + * filesystem. If the program isn't running on Windows, or SDL used some + * other method to access the filesystem, this property will not be set. + * - `SDL_PROP_IOSTREAM_STDIO_FILE_POINTER`: a pointer, that can be cast to a + * stdio `FILE *`, that this SDL_IOStream is using to access the filesystem. + * If SDL used some other method to access the filesystem, this property + * will not be set. PLEASE NOTE that if SDL is using a different C runtime + * than your app, trying to use this pointer will almost certainly result in + * a crash! This is mostly a problem on Windows; make sure you build SDL and + * your app with the same compiler and settings to avoid it. + * - `SDL_PROP_IOSTREAM_FILE_DESCRIPTOR_NUMBER`: a file descriptor that this + * SDL_IOStream is using to access the filesystem. + * - `SDL_PROP_IOSTREAM_ANDROID_AASSET_POINTER`: a pointer, that can be cast + * to an Android NDK `AAsset *`, that this SDL_IOStream is using to access + * the filesystem. If SDL used some other method to access the filesystem, + * this property will not be set. + * + * \param file a UTF-8 string representing the filename to open. + * \param mode an ASCII string representing the mode to be used for opening + * the file. + * \returns a pointer to the SDL_IOStream structure that is created or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseIO + * \sa SDL_FlushIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromFile(const char *file, const char *mode); + +#define SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER "SDL.iostream.windows.handle" +#define SDL_PROP_IOSTREAM_STDIO_FILE_POINTER "SDL.iostream.stdio.file" +#define SDL_PROP_IOSTREAM_FILE_DESCRIPTOR_NUMBER "SDL.iostream.file_descriptor" +#define SDL_PROP_IOSTREAM_ANDROID_AASSET_POINTER "SDL.iostream.android.aasset" + +/** + * Use this function to prepare a read-write memory buffer for use with + * SDL_IOStream. + * + * This function sets up an SDL_IOStream struct based on a memory area of a + * certain size, for both read and write access. + * + * This memory buffer is not copied by the SDL_IOStream; the pointer you + * provide must remain valid until you close the stream. Closing the stream + * will not free the original buffer. + * + * If you need to make sure the SDL_IOStream never writes to the memory + * buffer, you should use SDL_IOFromConstMem() with a read-only buffer of + * memory instead. + * + * The following properties will be set at creation time by SDL: + * + * - `SDL_PROP_IOSTREAM_MEMORY_POINTER`: this will be the `mem` parameter that + * was passed to this function. + * - `SDL_PROP_IOSTREAM_MEMORY_SIZE_NUMBER`: this will be the `size` parameter + * that was passed to this function. + * + * \param mem a pointer to a buffer to feed an SDL_IOStream stream. + * \param size the buffer size, in bytes. + * \returns a pointer to a new SDL_IOStream structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOFromConstMem + * \sa SDL_CloseIO + * \sa SDL_FlushIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromMem(void *mem, size_t size); + +#define SDL_PROP_IOSTREAM_MEMORY_POINTER "SDL.iostream.memory.base" +#define SDL_PROP_IOSTREAM_MEMORY_SIZE_NUMBER "SDL.iostream.memory.size" + +/** + * Use this function to prepare a read-only memory buffer for use with + * SDL_IOStream. + * + * This function sets up an SDL_IOStream struct based on a memory area of a + * certain size. It assumes the memory area is not writable. + * + * Attempting to write to this SDL_IOStream stream will report an error + * without writing to the memory buffer. + * + * This memory buffer is not copied by the SDL_IOStream; the pointer you + * provide must remain valid until you close the stream. Closing the stream + * will not free the original buffer. + * + * If you need to write to a memory buffer, you should use SDL_IOFromMem() + * with a writable buffer of memory instead. + * + * The following properties will be set at creation time by SDL: + * + * - `SDL_PROP_IOSTREAM_MEMORY_POINTER`: this will be the `mem` parameter that + * was passed to this function. + * - `SDL_PROP_IOSTREAM_MEMORY_SIZE_NUMBER`: this will be the `size` parameter + * that was passed to this function. + * + * \param mem a pointer to a read-only buffer to feed an SDL_IOStream stream. + * \param size the buffer size, in bytes. + * \returns a pointer to a new SDL_IOStream structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOFromMem + * \sa SDL_CloseIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromConstMem(const void *mem, size_t size); + +/** + * Use this function to create an SDL_IOStream that is backed by dynamically + * allocated memory. + * + * This supports the following properties to provide access to the memory and + * control over allocations: + * + * - `SDL_PROP_IOSTREAM_DYNAMIC_MEMORY_POINTER`: a pointer to the internal + * memory of the stream. This can be set to NULL to transfer ownership of + * the memory to the application, which should free the memory with + * SDL_free(). If this is done, the next operation on the stream must be + * SDL_CloseIO(). + * - `SDL_PROP_IOSTREAM_DYNAMIC_CHUNKSIZE_NUMBER`: memory will be allocated in + * multiples of this size, defaulting to 1024. + * + * \returns a pointer to a new SDL_IOStream structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseIO + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_TellIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_IOFromDynamicMem(void); + +#define SDL_PROP_IOSTREAM_DYNAMIC_MEMORY_POINTER "SDL.iostream.dynamic.memory" +#define SDL_PROP_IOSTREAM_DYNAMIC_CHUNKSIZE_NUMBER "SDL.iostream.dynamic.chunksize" + +/* @} *//* IOFrom functions */ + + +/** + * Create a custom SDL_IOStream. + * + * Applications do not need to use this function unless they are providing + * their own SDL_IOStream implementation. If you just need an SDL_IOStream to + * read/write a common data source, you should use the built-in + * implementations in SDL, like SDL_IOFromFile() or SDL_IOFromMem(), etc. + * + * This function makes a copy of `iface` and the caller does not need to keep + * it around after this call. + * + * \param iface the interface that implements this SDL_IOStream, initialized + * using SDL_INIT_INTERFACE(). + * \param userdata the pointer that will be passed to the interface functions. + * \returns a pointer to the allocated memory on success or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseIO + * \sa SDL_INIT_INTERFACE + * \sa SDL_IOFromConstMem + * \sa SDL_IOFromFile + * \sa SDL_IOFromMem + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_OpenIO(const SDL_IOStreamInterface *iface, void *userdata); + +/** + * Close and free an allocated SDL_IOStream structure. + * + * SDL_CloseIO() closes and cleans up the SDL_IOStream stream. It releases any + * resources used by the stream and frees the SDL_IOStream itself. This + * returns true on success, or false if the stream failed to flush to its + * output (e.g. to disk). + * + * Note that if this fails to flush the stream for any reason, this function + * reports an error, but the SDL_IOStream is still invalid once this function + * returns. + * + * This call flushes any buffered writes to the operating system, but there + * are no guarantees that those writes have gone to physical media; they might + * be in the OS's file cache, waiting to go to disk later. If it's absolutely + * crucial that writes go to disk immediately, so they are definitely stored + * even if the power fails before the file cache would have caught up, one + * should call SDL_FlushIO() before closing. Note that flushing takes time and + * makes the system and your app operate less efficiently, so do so sparingly. + * + * \param context SDL_IOStream structure to close. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenIO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CloseIO(SDL_IOStream *context); + +/** + * Get the properties associated with an SDL_IOStream. + * + * \param context a pointer to an SDL_IOStream structure. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetIOProperties(SDL_IOStream *context); + +/** + * Query the stream status of an SDL_IOStream. + * + * This information can be useful to decide if a short read or write was due + * to an error, an EOF, or a non-blocking operation that isn't yet ready to + * complete. + * + * An SDL_IOStream's status is only expected to change after a SDL_ReadIO or + * SDL_WriteIO call; don't expect it to change if you just call this query + * function in a tight loop. + * + * \param context the SDL_IOStream to query. + * \returns an SDL_IOStatus enum with the current state. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_IOStatus SDLCALL SDL_GetIOStatus(SDL_IOStream *context); + +/** + * Use this function to get the size of the data stream in an SDL_IOStream. + * + * \param context the SDL_IOStream to get the size of the data stream from. + * \returns the size of the data stream in the SDL_IOStream on success or a + * negative error code on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_GetIOSize(SDL_IOStream *context); + +/** + * Seek within an SDL_IOStream data stream. + * + * This function seeks to byte `offset`, relative to `whence`. + * + * `whence` may be any of the following values: + * + * - `SDL_IO_SEEK_SET`: seek from the beginning of data + * - `SDL_IO_SEEK_CUR`: seek relative to current read point + * - `SDL_IO_SEEK_END`: seek relative to the end of data + * + * If this stream can not seek, it will return -1. + * + * \param context a pointer to an SDL_IOStream structure. + * \param offset an offset in bytes, relative to `whence` location; can be + * negative. + * \param whence any of `SDL_IO_SEEK_SET`, `SDL_IO_SEEK_CUR`, + * `SDL_IO_SEEK_END`. + * \returns the final offset in the data stream after the seek or -1 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TellIO + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_SeekIO(SDL_IOStream *context, Sint64 offset, SDL_IOWhence whence); + +/** + * Determine the current read/write offset in an SDL_IOStream data stream. + * + * SDL_TellIO is actually a wrapper function that calls the SDL_IOStream's + * `seek` method, with an offset of 0 bytes from `SDL_IO_SEEK_CUR`, to + * simplify application development. + * + * \param context an SDL_IOStream data stream object from which to get the + * current offset. + * \returns the current offset in the stream, or -1 if the information can not + * be determined. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SeekIO + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_TellIO(SDL_IOStream *context); + +/** + * Read from a data source. + * + * This function reads up `size` bytes from the data source to the area + * pointed at by `ptr`. This function may read less bytes than requested. + * + * This function will return zero when the data stream is completely read, and + * SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If zero is returned and + * the stream is not at EOF, SDL_GetIOStatus() will return a different error + * value and SDL_GetError() will offer a human-readable message. + * + * \param context a pointer to an SDL_IOStream structure. + * \param ptr a pointer to a buffer to read data into. + * \param size the number of bytes to read from the data source. + * \returns the number of bytes read, or 0 on end of file or other failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WriteIO + * \sa SDL_GetIOStatus + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_ReadIO(SDL_IOStream *context, void *ptr, size_t size); + +/** + * Write to an SDL_IOStream data stream. + * + * This function writes exactly `size` bytes from the area pointed at by `ptr` + * to the stream. If this fails for any reason, it'll return less than `size` + * to demonstrate how far the write progressed. On success, it returns `size`. + * + * On error, this function still attempts to write as much as possible, so it + * might return a positive value less than the requested write size. + * + * The caller can use SDL_GetIOStatus() to determine if the problem is + * recoverable, such as a non-blocking write that can simply be retried later, + * or a fatal error. + * + * \param context a pointer to an SDL_IOStream structure. + * \param ptr a pointer to a buffer containing data to write. + * \param size the number of bytes to write. + * \returns the number of bytes written, which will be less than `size` on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOprintf + * \sa SDL_ReadIO + * \sa SDL_SeekIO + * \sa SDL_FlushIO + * \sa SDL_GetIOStatus + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_WriteIO(SDL_IOStream *context, const void *ptr, size_t size); + +/** + * Print to an SDL_IOStream data stream. + * + * This function does formatted printing to the stream. + * + * \param context a pointer to an SDL_IOStream structure. + * \param fmt a printf() style format string. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * \returns the number of bytes written or 0 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOvprintf + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_IOprintf(SDL_IOStream *context, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Print to an SDL_IOStream data stream. + * + * This function does formatted printing to the stream. + * + * \param context a pointer to an SDL_IOStream structure. + * \param fmt a printf() style format string. + * \param ap a variable argument list. + * \returns the number of bytes written or 0 on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_IOprintf + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_IOvprintf(SDL_IOStream *context, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + +/** + * Flush any buffered data in the stream. + * + * This function makes sure that any buffered data is written to the stream. + * Normally this isn't necessary but if the stream is a pipe or socket it + * guarantees that any pending data is sent. + * + * \param context SDL_IOStream structure to flush. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenIO + * \sa SDL_WriteIO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlushIO(SDL_IOStream *context); + +/** + * Load all the data from an SDL data stream. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in the value reported via + * `datasize`. + * + * The data should be freed with SDL_free(). + * + * \param src the SDL_IOStream to read all available data from. + * \param datasize a pointer filled in with the number of bytes read, may be + * NULL. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns the data or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFile + * \sa SDL_SaveFile_IO + */ +extern SDL_DECLSPEC void * SDLCALL SDL_LoadFile_IO(SDL_IOStream *src, size_t *datasize, bool closeio); + +/** + * Load all the data from a file path. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in the value reported via + * `datasize`. + * + * The data should be freed with SDL_free(). + * + * \param file the path to read all available data from. + * \param datasize if not NULL, will store the number of bytes read. + * \returns the data or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFile_IO + * \sa SDL_SaveFile + */ +extern SDL_DECLSPEC void * SDLCALL SDL_LoadFile(const char *file, size_t *datasize); + +/** + * Save all the data into an SDL data stream. + * + * \param src the SDL_IOStream to write all data to. + * \param data the data to be written. If datasize is 0, may be NULL or a + * invalid pointer. + * \param datasize the number of bytes to be written. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SaveFile + * \sa SDL_LoadFile_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveFile_IO(SDL_IOStream *src, const void *data, size_t datasize, bool closeio); + +/** + * Save all the data into a file path. + * + * \param file the path to write all available data into. + * \param data the data to be written. If datasize is 0, may be NULL or a + * invalid pointer. + * \param datasize the number of bytes to be written. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SaveFile_IO + * \sa SDL_LoadFile + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveFile(const char *file, const void *data, size_t datasize); + +/** + * \name Read endian functions + * + * Read an item of the specified endianness and return in native format. + */ +/* @{ */ + +/** + * Use this function to read a byte from an SDL_IOStream. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the SDL_IOStream to read from. + * \param value a pointer filled in with the data read. + * \returns true on success or false on failure or EOF; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU8(SDL_IOStream *src, Uint8 *value); + +/** + * Use this function to read a signed byte from an SDL_IOStream. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the SDL_IOStream to read from. + * \param value a pointer filled in with the data read. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS8(SDL_IOStream *src, Sint8 *value); + +/** + * Use this function to read 16 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU16LE(SDL_IOStream *src, Uint16 *value); + +/** + * Use this function to read 16 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS16LE(SDL_IOStream *src, Sint16 *value); + +/** + * Use this function to read 16 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU16BE(SDL_IOStream *src, Uint16 *value); + +/** + * Use this function to read 16 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS16BE(SDL_IOStream *src, Sint16 *value); + +/** + * Use this function to read 32 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU32LE(SDL_IOStream *src, Uint32 *value); + +/** + * Use this function to read 32 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS32LE(SDL_IOStream *src, Sint32 *value); + +/** + * Use this function to read 32 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU32BE(SDL_IOStream *src, Uint32 *value); + +/** + * Use this function to read 32 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS32BE(SDL_IOStream *src, Sint32 *value); + +/** + * Use this function to read 64 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU64LE(SDL_IOStream *src, Uint64 *value); + +/** + * Use this function to read 64 bits of little-endian data from an + * SDL_IOStream and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS64LE(SDL_IOStream *src, Sint64 *value); + +/** + * Use this function to read 64 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadU64BE(SDL_IOStream *src, Uint64 *value); + +/** + * Use this function to read 64 bits of big-endian data from an SDL_IOStream + * and return in native format. + * + * SDL byteswaps the data only if necessary, so the data returned will be in + * the native byte order. + * + * This function will return false when the data stream is completely read, + * and SDL_GetIOStatus() will return SDL_IO_STATUS_EOF. If false is returned + * and the stream is not at EOF, SDL_GetIOStatus() will return a different + * error value and SDL_GetError() will offer a human-readable message. + * + * \param src the stream from which to read data. + * \param value a pointer filled in with the data read. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadS64BE(SDL_IOStream *src, Sint64 *value); +/* @} *//* Read endian functions */ + +/** + * \name Write endian functions + * + * Write an item of native format to the specified endianness. + */ +/* @{ */ + +/** + * Use this function to write a byte to an SDL_IOStream. + * + * \param dst the SDL_IOStream to write to. + * \param value the byte value to write. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU8(SDL_IOStream *dst, Uint8 value); + +/** + * Use this function to write a signed byte to an SDL_IOStream. + * + * \param dst the SDL_IOStream to write to. + * \param value the byte value to write. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS8(SDL_IOStream *dst, Sint8 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU16LE(SDL_IOStream *dst, Uint16 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS16LE(SDL_IOStream *dst, Sint16 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU16BE(SDL_IOStream *dst, Uint16 value); + +/** + * Use this function to write 16 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS16BE(SDL_IOStream *dst, Sint16 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU32LE(SDL_IOStream *dst, Uint32 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS32LE(SDL_IOStream *dst, Sint32 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU32BE(SDL_IOStream *dst, Uint32 value); + +/** + * Use this function to write 32 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS32BE(SDL_IOStream *dst, Sint32 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU64LE(SDL_IOStream *dst, Uint64 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * little-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in little-endian + * format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS64LE(SDL_IOStream *dst, Sint64 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteU64BE(SDL_IOStream *dst, Uint64 value); + +/** + * Use this function to write 64 bits in native format to an SDL_IOStream as + * big-endian data. + * + * SDL byteswaps the data only if necessary, so the application always + * specifies native format, and the data written will be in big-endian format. + * + * \param dst the stream to which data will be written. + * \param value the data to be written, in native format. + * \returns true on successful write or false on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteS64BE(SDL_IOStream *dst, Sint64 value); + +/* @} *//* Write endian functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_iostream_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_joystick.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_joystick.h new file mode 100644 index 0000000..d15668b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_joystick.h @@ -0,0 +1,1202 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryJoystick + * + * SDL joystick support. + * + * This is the lower-level joystick handling. If you want the simpler option, + * where what each button does is well-defined, you should use the gamepad API + * instead. + * + * The term "instance_id" is the current instantiation of a joystick device in + * the system, if the joystick is removed and then re-inserted then it will + * get a new instance_id, instance_id's are monotonically increasing + * identifiers of a joystick plugged in. + * + * The term "player_index" is the number assigned to a player on a specific + * controller. For XInput controllers this returns the XInput user index. Many + * joysticks will not be able to supply this information. + * + * SDL_GUID is used as a stable 128-bit identifier for a joystick device that + * does not change over time. It identifies class of the device (a X360 wired + * controller for example). This identifier is platform dependent. + * + * In order to use these functions, SDL_Init() must have been called with the + * SDL_INIT_JOYSTICK flag. This causes SDL to scan the system for joysticks, + * and load appropriate drivers. + * + * If you would like to receive joystick updates while the application is in + * the background, you should set the following hint before calling + * SDL_Init(): SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS + */ + +#ifndef SDL_joystick_h_ +#define SDL_joystick_h_ + +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef SDL_THREAD_SAFETY_ANALYSIS +/* + * This is not an exported symbol from SDL, this is only in the headers to + * help Clang's thread safety analysis tools to function. Do not attempt + * to access this symbol from your app, it will not work! + */ +extern SDL_Mutex *SDL_joystick_lock; +#endif + +/** + * The joystick structure used to identify an SDL joystick. + * + * This is opaque data. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Joystick SDL_Joystick; + +/** + * This is a unique ID for a joystick for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the joystick is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_JoystickID; + +/** + * An enum of some common joystick types. + * + * In some cases, SDL can identify a low-level joystick as being a certain + * type of device, and will report it through SDL_GetJoystickType (or + * SDL_GetJoystickTypeForID). + * + * This is by no means a complete list of everything that can be plugged into + * a computer. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_JoystickType +{ + SDL_JOYSTICK_TYPE_UNKNOWN, + SDL_JOYSTICK_TYPE_GAMEPAD, + SDL_JOYSTICK_TYPE_WHEEL, + SDL_JOYSTICK_TYPE_ARCADE_STICK, + SDL_JOYSTICK_TYPE_FLIGHT_STICK, + SDL_JOYSTICK_TYPE_DANCE_PAD, + SDL_JOYSTICK_TYPE_GUITAR, + SDL_JOYSTICK_TYPE_DRUM_KIT, + SDL_JOYSTICK_TYPE_ARCADE_PAD, + SDL_JOYSTICK_TYPE_THROTTLE, + SDL_JOYSTICK_TYPE_COUNT +} SDL_JoystickType; + +/** + * Possible connection states for a joystick device. + * + * This is used by SDL_GetJoystickConnectionState to report how a device is + * connected to the system. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_JoystickConnectionState +{ + SDL_JOYSTICK_CONNECTION_INVALID = -1, + SDL_JOYSTICK_CONNECTION_UNKNOWN, + SDL_JOYSTICK_CONNECTION_WIRED, + SDL_JOYSTICK_CONNECTION_WIRELESS +} SDL_JoystickConnectionState; + +/** + * The largest value an SDL_Joystick's axis can report. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_JOYSTICK_AXIS_MIN + */ +#define SDL_JOYSTICK_AXIS_MAX 32767 + +/** + * The smallest value an SDL_Joystick's axis can report. + * + * This is a negative number! + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_JOYSTICK_AXIS_MAX + */ +#define SDL_JOYSTICK_AXIS_MIN -32768 + + +/* Function prototypes */ + +/** + * Locking for atomic access to the joystick API. + * + * The SDL joystick functions are thread-safe, however you can lock the + * joysticks while processing to guarantee that the joystick list won't change + * and joystick and gamepad events will not be delivered. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockJoysticks(void) SDL_ACQUIRE(SDL_joystick_lock); + +/** + * Unlocking for atomic access to the joystick API. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockJoysticks(void) SDL_RELEASE(SDL_joystick_lock); + +/** + * Return whether a joystick is currently connected. + * + * \returns true if a joystick is connected, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasJoystick(void); + +/** + * Get a list of currently connected joysticks. + * + * \param count a pointer filled in with the number of joysticks returned, may + * be NULL. + * \returns a 0 terminated array of joystick instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasJoystick + * \sa SDL_OpenJoystick + */ +extern SDL_DECLSPEC SDL_JoystickID * SDLCALL SDL_GetJoysticks(int *count); + +/** + * Get the implementation dependent name of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the name of the selected joystick. If no name can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickName + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickNameForID(SDL_JoystickID instance_id); + +/** + * Get the implementation dependent path of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the path of the selected joystick. If no path can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPath + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickPathForID(SDL_JoystickID instance_id); + +/** + * Get the player index of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the player index of a joystick, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPlayerIndex + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetJoystickPlayerIndexForID(SDL_JoystickID instance_id); + +/** + * Get the implementation-dependent GUID of a joystick. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the GUID of the selected joystick. If called with an invalid + * instance_id, this function returns a zero GUID. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUID + * \sa SDL_GUIDToString + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_GetJoystickGUIDForID(SDL_JoystickID instance_id); + +/** + * Get the USB vendor ID of a joystick, if available. + * + * This can be called before any joysticks are opened. If the vendor ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB vendor ID of the selected joystick. If called with an + * invalid instance_id, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickVendor + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickVendorForID(SDL_JoystickID instance_id); + +/** + * Get the USB product ID of a joystick, if available. + * + * This can be called before any joysticks are opened. If the product ID isn't + * available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the USB product ID of the selected joystick. If called with an + * invalid instance_id, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProduct + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProductForID(SDL_JoystickID instance_id); + +/** + * Get the product version of a joystick, if available. + * + * This can be called before any joysticks are opened. If the product version + * isn't available this function returns 0. + * + * \param instance_id the joystick instance ID. + * \returns the product version of the selected joystick. If called with an + * invalid instance_id, this function returns 0. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProductVersion + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProductVersionForID(SDL_JoystickID instance_id); + +/** + * Get the type of a joystick, if available. + * + * This can be called before any joysticks are opened. + * + * \param instance_id the joystick instance ID. + * \returns the SDL_JoystickType of the selected joystick. If called with an + * invalid instance_id, this function returns + * `SDL_JOYSTICK_TYPE_UNKNOWN`. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickType + * \sa SDL_GetJoysticks + */ +extern SDL_DECLSPEC SDL_JoystickType SDLCALL SDL_GetJoystickTypeForID(SDL_JoystickID instance_id); + +/** + * Open a joystick for use. + * + * The joystick subsystem must be initialized before a joystick can be opened + * for use. + * + * \param instance_id the joystick instance ID. + * \returns a joystick identifier or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseJoystick + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_OpenJoystick(SDL_JoystickID instance_id); + +/** + * Get the SDL_Joystick associated with an instance ID, if it has been opened. + * + * \param instance_id the instance ID to get the SDL_Joystick for. + * \returns an SDL_Joystick on success or NULL on failure or if it hasn't been + * opened yet; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_GetJoystickFromID(SDL_JoystickID instance_id); + +/** + * Get the SDL_Joystick associated with a player index. + * + * \param player_index the player index to get the SDL_Joystick for. + * \returns an SDL_Joystick on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPlayerIndex + * \sa SDL_SetJoystickPlayerIndex + */ +extern SDL_DECLSPEC SDL_Joystick * SDLCALL SDL_GetJoystickFromPlayerIndex(int player_index); + +/** + * The structure that describes a virtual joystick touchpad. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_VirtualJoystickDesc + */ +typedef struct SDL_VirtualJoystickTouchpadDesc +{ + Uint16 nfingers; /**< the number of simultaneous fingers on this touchpad */ + Uint16 padding[3]; +} SDL_VirtualJoystickTouchpadDesc; + +/** + * The structure that describes a virtual joystick sensor. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_VirtualJoystickDesc + */ +typedef struct SDL_VirtualJoystickSensorDesc +{ + SDL_SensorType type; /**< the type of this sensor */ + float rate; /**< the update frequency of this sensor, may be 0.0f */ +} SDL_VirtualJoystickSensorDesc; + +/** + * The structure that describes a virtual joystick. + * + * This structure should be initialized using SDL_INIT_INTERFACE(). All + * elements of this structure are optional. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_AttachVirtualJoystick + * \sa SDL_INIT_INTERFACE + * \sa SDL_VirtualJoystickSensorDesc + * \sa SDL_VirtualJoystickTouchpadDesc + */ +typedef struct SDL_VirtualJoystickDesc +{ + Uint32 version; /**< the version of this interface */ + Uint16 type; /**< `SDL_JoystickType` */ + Uint16 padding; /**< unused */ + Uint16 vendor_id; /**< the USB vendor ID of this joystick */ + Uint16 product_id; /**< the USB product ID of this joystick */ + Uint16 naxes; /**< the number of axes on this joystick */ + Uint16 nbuttons; /**< the number of buttons on this joystick */ + Uint16 nballs; /**< the number of balls on this joystick */ + Uint16 nhats; /**< the number of hats on this joystick */ + Uint16 ntouchpads; /**< the number of touchpads on this joystick, requires `touchpads` to point at valid descriptions */ + Uint16 nsensors; /**< the number of sensors on this joystick, requires `sensors` to point at valid descriptions */ + Uint16 padding2[2]; /**< unused */ + Uint32 button_mask; /**< A mask of which buttons are valid for this controller + e.g. (1 << SDL_GAMEPAD_BUTTON_SOUTH) */ + Uint32 axis_mask; /**< A mask of which axes are valid for this controller + e.g. (1 << SDL_GAMEPAD_AXIS_LEFTX) */ + const char *name; /**< the name of the joystick */ + const SDL_VirtualJoystickTouchpadDesc *touchpads; /**< A pointer to an array of touchpad descriptions, required if `ntouchpads` is > 0 */ + const SDL_VirtualJoystickSensorDesc *sensors; /**< A pointer to an array of sensor descriptions, required if `nsensors` is > 0 */ + + void *userdata; /**< User data pointer passed to callbacks */ + void (SDLCALL *Update)(void *userdata); /**< Called when the joystick state should be updated */ + void (SDLCALL *SetPlayerIndex)(void *userdata, int player_index); /**< Called when the player index is set */ + bool (SDLCALL *Rumble)(void *userdata, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble); /**< Implements SDL_RumbleJoystick() */ + bool (SDLCALL *RumbleTriggers)(void *userdata, Uint16 left_rumble, Uint16 right_rumble); /**< Implements SDL_RumbleJoystickTriggers() */ + bool (SDLCALL *SetLED)(void *userdata, Uint8 red, Uint8 green, Uint8 blue); /**< Implements SDL_SetJoystickLED() */ + bool (SDLCALL *SendEffect)(void *userdata, const void *data, int size); /**< Implements SDL_SendJoystickEffect() */ + bool (SDLCALL *SetSensorsEnabled)(void *userdata, bool enabled); /**< Implements SDL_SetGamepadSensorEnabled() */ + void (SDLCALL *Cleanup)(void *userdata); /**< Cleans up the userdata when the joystick is detached */ +} SDL_VirtualJoystickDesc; + +/* Check the size of SDL_VirtualJoystickDesc + * + * If this assert fails, either the compiler is padding to an unexpected size, + * or the interface has been updated and this should be updated to match and + * the code using this interface should be updated to handle the old version. + */ +SDL_COMPILE_TIME_ASSERT(SDL_VirtualJoystickDesc_SIZE, + (sizeof(void *) == 4 && sizeof(SDL_VirtualJoystickDesc) == 84) || + (sizeof(void *) == 8 && sizeof(SDL_VirtualJoystickDesc) == 136)); + +/** + * Attach a new virtual joystick. + * + * \param desc joystick description, initialized using SDL_INIT_INTERFACE(). + * \returns the joystick instance ID, or 0 on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DetachVirtualJoystick + */ +extern SDL_DECLSPEC SDL_JoystickID SDLCALL SDL_AttachVirtualJoystick(const SDL_VirtualJoystickDesc *desc); + +/** + * Detach a virtual joystick. + * + * \param instance_id the joystick instance ID, previously returned from + * SDL_AttachVirtualJoystick(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AttachVirtualJoystick + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DetachVirtualJoystick(SDL_JoystickID instance_id); + +/** + * Query whether or not a joystick is virtual. + * + * \param instance_id the joystick instance ID. + * \returns true if the joystick is virtual, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsJoystickVirtual(SDL_JoystickID instance_id); + +/** + * Set the state of an axis on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * Note that when sending trigger axes, you should scale the value to the full + * range of Sint16. For example, a trigger at rest would have the value of + * `SDL_JOYSTICK_AXIS_MIN`. + * + * \param joystick the virtual joystick on which to set state. + * \param axis the index of the axis on the virtual joystick to update. + * \param value the new value for the specified axis. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualAxis(SDL_Joystick *joystick, int axis, Sint16 value); + +/** + * Generate ball motion on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param ball the index of the ball on the virtual joystick to update. + * \param xrel the relative motion on the X axis. + * \param yrel the relative motion on the Y axis. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualBall(SDL_Joystick *joystick, int ball, Sint16 xrel, Sint16 yrel); + +/** + * Set the state of a button on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param button the index of the button on the virtual joystick to update. + * \param down true if the button is pressed, false otherwise. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualButton(SDL_Joystick *joystick, int button, bool down); + +/** + * Set the state of a hat on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param hat the index of the hat on the virtual joystick to update. + * \param value the new value for the specified hat. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualHat(SDL_Joystick *joystick, int hat, Uint8 value); + +/** + * Set touchpad finger state on an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param touchpad the index of the touchpad on the virtual joystick to + * update. + * \param finger the index of the finger on the touchpad to set. + * \param down true if the finger is pressed, false if the finger is released. + * \param x the x coordinate of the finger on the touchpad, normalized 0 to 1, + * with the origin in the upper left. + * \param y the y coordinate of the finger on the touchpad, normalized 0 to 1, + * with the origin in the upper left. + * \param pressure the pressure of the finger. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickVirtualTouchpad(SDL_Joystick *joystick, int touchpad, int finger, bool down, float x, float y, float pressure); + +/** + * Send a sensor update for an opened virtual joystick. + * + * Please note that values set here will not be applied until the next call to + * SDL_UpdateJoysticks, which can either be called directly, or can be called + * indirectly through various other SDL APIs, including, but not limited to + * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, + * SDL_WaitEvent. + * + * \param joystick the virtual joystick on which to set state. + * \param type the type of the sensor on the virtual joystick to update. + * \param sensor_timestamp a 64-bit timestamp in nanoseconds associated with + * the sensor reading. + * \param data the data associated with the sensor reading. + * \param num_values the number of values pointed to by `data`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendJoystickVirtualSensorData(SDL_Joystick *joystick, SDL_SensorType type, Uint64 sensor_timestamp, const float *data, int num_values); + +/** + * Get the properties associated with a joystick. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_JOYSTICK_CAP_MONO_LED_BOOLEAN`: true if this joystick has an + * LED that has adjustable brightness + * - `SDL_PROP_JOYSTICK_CAP_RGB_LED_BOOLEAN`: true if this joystick has an LED + * that has adjustable color + * - `SDL_PROP_JOYSTICK_CAP_PLAYER_LED_BOOLEAN`: true if this joystick has a + * player LED + * - `SDL_PROP_JOYSTICK_CAP_RUMBLE_BOOLEAN`: true if this joystick has + * left/right rumble + * - `SDL_PROP_JOYSTICK_CAP_TRIGGER_RUMBLE_BOOLEAN`: true if this joystick has + * simple trigger rumble + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetJoystickProperties(SDL_Joystick *joystick); + +#define SDL_PROP_JOYSTICK_CAP_MONO_LED_BOOLEAN "SDL.joystick.cap.mono_led" +#define SDL_PROP_JOYSTICK_CAP_RGB_LED_BOOLEAN "SDL.joystick.cap.rgb_led" +#define SDL_PROP_JOYSTICK_CAP_PLAYER_LED_BOOLEAN "SDL.joystick.cap.player_led" +#define SDL_PROP_JOYSTICK_CAP_RUMBLE_BOOLEAN "SDL.joystick.cap.rumble" +#define SDL_PROP_JOYSTICK_CAP_TRIGGER_RUMBLE_BOOLEAN "SDL.joystick.cap.trigger_rumble" + +/** + * Get the implementation dependent name of a joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the name of the selected joystick. If no name can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickNameForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickName(SDL_Joystick *joystick); + +/** + * Get the implementation dependent path of a joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the path of the selected joystick. If no path can be found, this + * function returns NULL; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPathForID + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickPath(SDL_Joystick *joystick); + +/** + * Get the player index of an opened joystick. + * + * For XInput controllers this returns the XInput user index. Many joysticks + * will not be able to supply this information. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the player index, or -1 if it's not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetJoystickPlayerIndex + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetJoystickPlayerIndex(SDL_Joystick *joystick); + +/** + * Set the player index of an opened joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \param player_index player index to assign to this joystick, or -1 to clear + * the player index and turn off player LEDs. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickPlayerIndex + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickPlayerIndex(SDL_Joystick *joystick, int player_index); + +/** + * Get the implementation-dependent GUID for the joystick. + * + * This function requires an open joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the GUID of the given joystick. If called on an invalid index, + * this function returns a zero GUID; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUIDForID + * \sa SDL_GUIDToString + */ +extern SDL_DECLSPEC SDL_GUID SDLCALL SDL_GetJoystickGUID(SDL_Joystick *joystick); + +/** + * Get the USB vendor ID of an opened joystick, if available. + * + * If the vendor ID isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the USB vendor ID of the selected joystick, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickVendorForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickVendor(SDL_Joystick *joystick); + +/** + * Get the USB product ID of an opened joystick, if available. + * + * If the product ID isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the USB product ID of the selected joystick, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProductForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProduct(SDL_Joystick *joystick); + +/** + * Get the product version of an opened joystick, if available. + * + * If the product version isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the product version of the selected joystick, or 0 if unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickProductVersionForID + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickProductVersion(SDL_Joystick *joystick); + +/** + * Get the firmware version of an opened joystick, if available. + * + * If the firmware version isn't available this function returns 0. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the firmware version of the selected joystick, or 0 if + * unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_GetJoystickFirmwareVersion(SDL_Joystick *joystick); + +/** + * Get the serial number of an opened joystick, if available. + * + * Returns the serial number of the joystick, or NULL if it is not available. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the serial number of the selected joystick, or NULL if + * unavailable. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetJoystickSerial(SDL_Joystick *joystick); + +/** + * Get the type of an opened joystick. + * + * \param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). + * \returns the SDL_JoystickType of the selected joystick. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickTypeForID + */ +extern SDL_DECLSPEC SDL_JoystickType SDLCALL SDL_GetJoystickType(SDL_Joystick *joystick); + +/** + * Get the device information encoded in a SDL_GUID structure. + * + * \param guid the SDL_GUID you wish to get info about. + * \param vendor a pointer filled in with the device VID, or 0 if not + * available. + * \param product a pointer filled in with the device PID, or 0 if not + * available. + * \param version a pointer filled in with the device version, or 0 if not + * available. + * \param crc16 a pointer filled in with a CRC used to distinguish different + * products with the same VID/PID, or 0 if not available. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickGUIDForID + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetJoystickGUIDInfo(SDL_GUID guid, Uint16 *vendor, Uint16 *product, Uint16 *version, Uint16 *crc16); + +/** + * Get the status of a specified joystick. + * + * \param joystick the joystick to query. + * \returns true if the joystick has been opened, false if it has not; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_JoystickConnected(SDL_Joystick *joystick); + +/** + * Get the instance ID of an opened joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the instance ID of the specified joystick on success or 0 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickID SDLCALL SDL_GetJoystickID(SDL_Joystick *joystick); + +/** + * Get the number of general axis controls on a joystick. + * + * Often, the directional pad on a game controller will either look like 4 + * separate buttons or a POV hat, and not axes, but all of this is up to the + * device and platform. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of axis controls/number of axes on success or -1 on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickAxis + * \sa SDL_GetNumJoystickBalls + * \sa SDL_GetNumJoystickButtons + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickAxes(SDL_Joystick *joystick); + +/** + * Get the number of trackballs on a joystick. + * + * Joystick trackballs have only relative motion events associated with them + * and their state cannot be polled. + * + * Most joysticks do not have trackballs. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of trackballs on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickBall + * \sa SDL_GetNumJoystickAxes + * \sa SDL_GetNumJoystickButtons + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickBalls(SDL_Joystick *joystick); + +/** + * Get the number of POV hats on a joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of POV hats on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickHat + * \sa SDL_GetNumJoystickAxes + * \sa SDL_GetNumJoystickBalls + * \sa SDL_GetNumJoystickButtons + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickHats(SDL_Joystick *joystick); + +/** + * Get the number of buttons on a joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \returns the number of buttons on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetJoystickButton + * \sa SDL_GetNumJoystickAxes + * \sa SDL_GetNumJoystickBalls + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumJoystickButtons(SDL_Joystick *joystick); + +/** + * Set the state of joystick event processing. + * + * If joystick events are disabled, you must call SDL_UpdateJoysticks() + * yourself and check the state of the joystick when you want joystick + * information. + * + * \param enabled whether to process joystick events or not. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_JoystickEventsEnabled + * \sa SDL_UpdateJoysticks + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetJoystickEventsEnabled(bool enabled); + +/** + * Query the state of joystick event processing. + * + * If joystick events are disabled, you must call SDL_UpdateJoysticks() + * yourself and check the state of the joystick when you want joystick + * information. + * + * \returns true if joystick events are being processed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetJoystickEventsEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_JoystickEventsEnabled(void); + +/** + * Update the current state of the open joysticks. + * + * This is called automatically by the event loop if any joystick events are + * enabled. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateJoysticks(void); + +/** + * Get the current state of an axis control on a joystick. + * + * SDL makes no promises about what part of the joystick any given axis refers + * to. Your game should have some sort of configuration UI to let users + * specify what each axis should be bound to. Alternately, SDL's higher-level + * Game Controller API makes a great effort to apply order to this lower-level + * interface, so you know that a specific axis is the "left thumb stick," etc. + * + * The value returned by SDL_GetJoystickAxis() is a signed integer (-32768 to + * 32767) representing the current position of the axis. It may be necessary + * to impose certain tolerances on these values to account for jitter. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param axis the axis to query; the axis indices start at index 0. + * \returns a 16-bit signed integer representing the current position of the + * axis or 0 on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickAxes + */ +extern SDL_DECLSPEC Sint16 SDLCALL SDL_GetJoystickAxis(SDL_Joystick *joystick, int axis); + +/** + * Get the initial state of an axis control on a joystick. + * + * The state is a value ranging from -32768 to 32767. + * + * The axis indices start at index 0. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param axis the axis to query; the axis indices start at index 0. + * \param state upon return, the initial value is supplied here. + * \returns true if this axis has any initial value, or false if not. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetJoystickAxisInitialState(SDL_Joystick *joystick, int axis, Sint16 *state); + +/** + * Get the ball axis change since the last poll. + * + * Trackballs can only return relative motion since the last call to + * SDL_GetJoystickBall(), these motion deltas are placed into `dx` and `dy`. + * + * Most joysticks do not have trackballs. + * + * \param joystick the SDL_Joystick to query. + * \param ball the ball index to query; ball indices start at index 0. + * \param dx stores the difference in the x axis position since the last poll. + * \param dy stores the difference in the y axis position since the last poll. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickBalls + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetJoystickBall(SDL_Joystick *joystick, int ball, int *dx, int *dy); + +/** + * Get the current state of a POV hat on a joystick. + * + * The returned value will be one of the `SDL_HAT_*` values. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param hat the hat index to get the state from; indices start at index 0. + * \returns the current hat position. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickHats + */ +extern SDL_DECLSPEC Uint8 SDLCALL SDL_GetJoystickHat(SDL_Joystick *joystick, int hat); + +#define SDL_HAT_CENTERED 0x00u +#define SDL_HAT_UP 0x01u +#define SDL_HAT_RIGHT 0x02u +#define SDL_HAT_DOWN 0x04u +#define SDL_HAT_LEFT 0x08u +#define SDL_HAT_RIGHTUP (SDL_HAT_RIGHT|SDL_HAT_UP) +#define SDL_HAT_RIGHTDOWN (SDL_HAT_RIGHT|SDL_HAT_DOWN) +#define SDL_HAT_LEFTUP (SDL_HAT_LEFT|SDL_HAT_UP) +#define SDL_HAT_LEFTDOWN (SDL_HAT_LEFT|SDL_HAT_DOWN) + +/** + * Get the current state of a button on a joystick. + * + * \param joystick an SDL_Joystick structure containing joystick information. + * \param button the button index to get the state from; indices start at + * index 0. + * \returns true if the button is pressed, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumJoystickButtons + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetJoystickButton(SDL_Joystick *joystick, int button); + +/** + * Start a rumble effect. + * + * Each call to this function cancels any previous rumble effect, and calling + * it with 0 intensity stops any rumbling. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param joystick the joystick to vibrate. + * \param low_frequency_rumble the intensity of the low frequency (left) + * rumble motor, from 0 to 0xFFFF. + * \param high_frequency_rumble the intensity of the high frequency (right) + * rumble motor, from 0 to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true, or false if rumble isn't supported on this joystick. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleJoystick(SDL_Joystick *joystick, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble, Uint32 duration_ms); + +/** + * Start a rumble effect in the joystick's triggers. + * + * Each call to this function cancels any previous trigger rumble effect, and + * calling it with 0 intensity stops any rumbling. + * + * Note that this is rumbling of the _triggers_ and not the game controller as + * a whole. This is currently only supported on Xbox One controllers. If you + * want the (more common) whole-controller rumble, use SDL_RumbleJoystick() + * instead. + * + * This function requires you to process SDL events or call + * SDL_UpdateJoysticks() to update rumble state. + * + * \param joystick the joystick to vibrate. + * \param left_rumble the intensity of the left trigger rumble motor, from 0 + * to 0xFFFF. + * \param right_rumble the intensity of the right trigger rumble motor, from 0 + * to 0xFFFF. + * \param duration_ms the duration of the rumble effect, in milliseconds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RumbleJoystick + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RumbleJoystickTriggers(SDL_Joystick *joystick, Uint16 left_rumble, Uint16 right_rumble, Uint32 duration_ms); + +/** + * Update a joystick's LED color. + * + * An example of a joystick LED is the light on the back of a PlayStation 4's + * DualShock 4 controller. + * + * For joysticks with a single color LED, the maximum of the RGB values will + * be used as the LED brightness. + * + * \param joystick the joystick to update. + * \param red the intensity of the red LED. + * \param green the intensity of the green LED. + * \param blue the intensity of the blue LED. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetJoystickLED(SDL_Joystick *joystick, Uint8 red, Uint8 green, Uint8 blue); + +/** + * Send a joystick specific effect packet. + * + * \param joystick the joystick to affect. + * \param data the data to send to the joystick. + * \param size the size of the data to send to the joystick. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendJoystickEffect(SDL_Joystick *joystick, const void *data, int size); + +/** + * Close a joystick previously opened with SDL_OpenJoystick(). + * + * \param joystick the joystick device to close. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenJoystick + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseJoystick(SDL_Joystick *joystick); + +/** + * Get the connection state of a joystick. + * + * \param joystick the joystick to query. + * \returns the connection state on success or + * `SDL_JOYSTICK_CONNECTION_INVALID` on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_JoystickConnectionState SDLCALL SDL_GetJoystickConnectionState(SDL_Joystick *joystick); + +/** + * Get the battery state of a joystick. + * + * You should never take a battery status as absolute truth. Batteries + * (especially failing batteries) are delicate hardware, and the values + * reported here are best estimates based on what that hardware reports. It's + * not uncommon for older batteries to lose stored power much faster than it + * reports, or completely drain when reporting it has 20 percent left, etc. + * + * \param joystick the joystick to query. + * \param percent a pointer filled in with the percentage of battery life + * left, between 0 and 100, or NULL to ignore. This will be + * filled in with -1 we can't determine a value or there is no + * battery. + * \returns the current battery state or `SDL_POWERSTATE_ERROR` on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PowerState SDLCALL SDL_GetJoystickPowerInfo(SDL_Joystick *joystick, int *percent); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_joystick_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_keyboard.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_keyboard.h new file mode 100644 index 0000000..afa77b6 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_keyboard.h @@ -0,0 +1,609 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryKeyboard + * + * SDL keyboard management. + * + * Please refer to the Best Keyboard Practices document for details on how + * best to accept keyboard input in various types of programs: + * + * https://wiki.libsdl.org/SDL3/BestKeyboardPractices + */ + +#ifndef SDL_keyboard_h_ +#define SDL_keyboard_h_ + +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a keyboard for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the keyboard is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_KeyboardID; + +/* Function prototypes */ + +/** + * Return whether a keyboard is currently connected. + * + * \returns true if a keyboard is connected, false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboards + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasKeyboard(void); + +/** + * Get a list of currently connected keyboards. + * + * Note that this will include any device or virtual driver that includes + * keyboard functionality, including some mice, KVM switches, motherboard + * power buttons, etc. You should wait for input from a device before you + * consider it actively in use. + * + * \param count a pointer filled in with the number of keyboards returned, may + * be NULL. + * \returns a 0 terminated array of keyboards instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboardNameForID + * \sa SDL_HasKeyboard + */ +extern SDL_DECLSPEC SDL_KeyboardID * SDLCALL SDL_GetKeyboards(int *count); + +/** + * Get the name of a keyboard. + * + * This function returns "" if the keyboard doesn't have a name. + * + * \param instance_id the keyboard instance ID. + * \returns the name of the selected keyboard or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboards + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetKeyboardNameForID(SDL_KeyboardID instance_id); + +/** + * Query the window which currently has keyboard focus. + * + * \returns the window with keyboard focus. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetKeyboardFocus(void); + +/** + * Get a snapshot of the current state of the keyboard. + * + * The pointer returned is a pointer to an internal SDL array. It will be + * valid for the whole lifetime of the application and should not be freed by + * the caller. + * + * A array element with a value of true means that the key is pressed and a + * value of false means that it is not. Indexes into this array are obtained + * by using SDL_Scancode values. + * + * Use SDL_PumpEvents() to update the state array. + * + * This function gives you the current state after all events have been + * processed, so if a key or button has been pressed and released before you + * process events, then the pressed state will never show up in the + * SDL_GetKeyboardState() calls. + * + * Note: This function doesn't take into account whether shift has been + * pressed or not. + * + * \param numkeys if non-NULL, receives the length of the returned array. + * \returns a pointer to an array of key states. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_PumpEvents + * \sa SDL_ResetKeyboard + */ +extern SDL_DECLSPEC const bool * SDLCALL SDL_GetKeyboardState(int *numkeys); + +/** + * Clear the state of the keyboard. + * + * This function will generate key up events for all pressed keys. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboardState + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetKeyboard(void); + +/** + * Get the current key modifier state for the keyboard. + * + * \returns an OR'd combination of the modifier keys for the keyboard. See + * SDL_Keymod for details. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyboardState + * \sa SDL_SetModState + */ +extern SDL_DECLSPEC SDL_Keymod SDLCALL SDL_GetModState(void); + +/** + * Set the current key modifier state for the keyboard. + * + * The inverse of SDL_GetModState(), SDL_SetModState() allows you to impose + * modifier key states on your application. Simply pass your desired modifier + * states into `modstate`. This value may be a bitwise, OR'd combination of + * SDL_Keymod values. + * + * This does not change the keyboard state, only the key modifier flags that + * SDL reports. + * + * \param modstate the desired SDL_Keymod for the keyboard. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetModState + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetModState(SDL_Keymod modstate); + +/** + * Get the key code corresponding to the given scancode according to the + * current keyboard layout. + * + * If you want to get the keycode as it would be delivered in key events, + * including options specified in SDL_HINT_KEYCODE_OPTIONS, then you should + * pass `key_event` as true. Otherwise this function simply translates the + * scancode based on the given modifier state. + * + * \param scancode the desired SDL_Scancode to query. + * \param modstate the modifier state to use when translating the scancode to + * a keycode. + * \param key_event true if the keycode will be used in key events. + * \returns the SDL_Keycode that corresponds to the given SDL_Scancode. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyName + * \sa SDL_GetScancodeFromKey + */ +extern SDL_DECLSPEC SDL_Keycode SDLCALL SDL_GetKeyFromScancode(SDL_Scancode scancode, SDL_Keymod modstate, bool key_event); + +/** + * Get the scancode corresponding to the given key code according to the + * current keyboard layout. + * + * Note that there may be multiple scancode+modifier states that can generate + * this keycode, this will just return the first one found. + * + * \param key the desired SDL_Keycode to query. + * \param modstate a pointer to the modifier state that would be used when the + * scancode generates this key, may be NULL. + * \returns the SDL_Scancode that corresponds to the given SDL_Keycode. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromScancode + * \sa SDL_GetScancodeName + */ +extern SDL_DECLSPEC SDL_Scancode SDLCALL SDL_GetScancodeFromKey(SDL_Keycode key, SDL_Keymod *modstate); + +/** + * Set a human-readable name for a scancode. + * + * \param scancode the desired SDL_Scancode. + * \param name the name to use for the scancode, encoded as UTF-8. The string + * is not copied, so the pointer given to this function must stay + * valid while SDL is being used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetScancodeName + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetScancodeName(SDL_Scancode scancode, const char *name); + +/** + * Get a human-readable name for a scancode. + * + * **Warning**: The returned name is by design not stable across platforms, + * e.g. the name for `SDL_SCANCODE_LGUI` is "Left GUI" under Linux but "Left + * Windows" under Microsoft Windows, and some scancodes like + * `SDL_SCANCODE_NONUSBACKSLASH` don't have any name at all. There are even + * scancodes that share names, e.g. `SDL_SCANCODE_RETURN` and + * `SDL_SCANCODE_RETURN2` (both called "Return"). This function is therefore + * unsuitable for creating a stable cross-platform two-way mapping between + * strings and scancodes. + * + * \param scancode the desired SDL_Scancode to query. + * \returns a pointer to the name for the scancode. If the scancode doesn't + * have a name this function returns an empty string (""). + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetScancodeFromKey + * \sa SDL_GetScancodeFromName + * \sa SDL_SetScancodeName + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetScancodeName(SDL_Scancode scancode); + +/** + * Get a scancode from a human-readable name. + * + * \param name the human-readable scancode name. + * \returns the SDL_Scancode, or `SDL_SCANCODE_UNKNOWN` if the name wasn't + * recognized; call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromName + * \sa SDL_GetScancodeFromKey + * \sa SDL_GetScancodeName + */ +extern SDL_DECLSPEC SDL_Scancode SDLCALL SDL_GetScancodeFromName(const char *name); + +/** + * Get a human-readable name for a key. + * + * If the key doesn't have a name, this function returns an empty string (""). + * + * Letters will be presented in their uppercase form, if applicable. + * + * \param key the desired SDL_Keycode to query. + * \returns a UTF-8 encoded string of the key name. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromName + * \sa SDL_GetKeyFromScancode + * \sa SDL_GetScancodeFromKey + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetKeyName(SDL_Keycode key); + +/** + * Get a key code from a human-readable name. + * + * \param name the human-readable key name. + * \returns key code, or `SDLK_UNKNOWN` if the name wasn't recognized; call + * SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetKeyFromScancode + * \sa SDL_GetKeyName + * \sa SDL_GetScancodeFromName + */ +extern SDL_DECLSPEC SDL_Keycode SDLCALL SDL_GetKeyFromName(const char *name); + +/** + * Start accepting Unicode text input events in a window. + * + * This function will enable text input (SDL_EVENT_TEXT_INPUT and + * SDL_EVENT_TEXT_EDITING events) in the specified window. Please use this + * function paired with SDL_StopTextInput(). + * + * Text input events are not received by default. + * + * On some platforms using this function shows the screen keyboard and/or + * activates an IME, which can prevent some key press events from being passed + * through. + * + * \param window the window to enable text input. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextInputArea + * \sa SDL_StartTextInputWithProperties + * \sa SDL_StopTextInput + * \sa SDL_TextInputActive + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StartTextInput(SDL_Window *window); + +/** + * Text input type. + * + * These are the valid values for SDL_PROP_TEXTINPUT_TYPE_NUMBER. Not every + * value is valid on every platform, but where a value isn't supported, a + * reasonable fallback will be used. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_StartTextInputWithProperties + */ +typedef enum SDL_TextInputType +{ + SDL_TEXTINPUT_TYPE_TEXT, /**< The input is text */ + SDL_TEXTINPUT_TYPE_TEXT_NAME, /**< The input is a person's name */ + SDL_TEXTINPUT_TYPE_TEXT_EMAIL, /**< The input is an e-mail address */ + SDL_TEXTINPUT_TYPE_TEXT_USERNAME, /**< The input is a username */ + SDL_TEXTINPUT_TYPE_TEXT_PASSWORD_HIDDEN, /**< The input is a secure password that is hidden */ + SDL_TEXTINPUT_TYPE_TEXT_PASSWORD_VISIBLE, /**< The input is a secure password that is visible */ + SDL_TEXTINPUT_TYPE_NUMBER, /**< The input is a number */ + SDL_TEXTINPUT_TYPE_NUMBER_PASSWORD_HIDDEN, /**< The input is a secure PIN that is hidden */ + SDL_TEXTINPUT_TYPE_NUMBER_PASSWORD_VISIBLE /**< The input is a secure PIN that is visible */ +} SDL_TextInputType; + +/** + * Auto capitalization type. + * + * These are the valid values for SDL_PROP_TEXTINPUT_CAPITALIZATION_NUMBER. + * Not every value is valid on every platform, but where a value isn't + * supported, a reasonable fallback will be used. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_StartTextInputWithProperties + */ +typedef enum SDL_Capitalization +{ + SDL_CAPITALIZE_NONE, /**< No auto-capitalization will be done */ + SDL_CAPITALIZE_SENTENCES, /**< The first letter of sentences will be capitalized */ + SDL_CAPITALIZE_WORDS, /**< The first letter of words will be capitalized */ + SDL_CAPITALIZE_LETTERS /**< All letters will be capitalized */ +} SDL_Capitalization; + +/** + * Start accepting Unicode text input events in a window, with properties + * describing the input. + * + * This function will enable text input (SDL_EVENT_TEXT_INPUT and + * SDL_EVENT_TEXT_EDITING events) in the specified window. Please use this + * function paired with SDL_StopTextInput(). + * + * Text input events are not received by default. + * + * On some platforms using this function shows the screen keyboard and/or + * activates an IME, which can prevent some key press events from being passed + * through. + * + * These are the supported properties: + * + * - `SDL_PROP_TEXTINPUT_TYPE_NUMBER` - an SDL_TextInputType value that + * describes text being input, defaults to SDL_TEXTINPUT_TYPE_TEXT. + * - `SDL_PROP_TEXTINPUT_CAPITALIZATION_NUMBER` - an SDL_Capitalization value + * that describes how text should be capitalized, defaults to + * SDL_CAPITALIZE_SENTENCES for normal text entry, SDL_CAPITALIZE_WORDS for + * SDL_TEXTINPUT_TYPE_TEXT_NAME, and SDL_CAPITALIZE_NONE for e-mail + * addresses, usernames, and passwords. + * - `SDL_PROP_TEXTINPUT_AUTOCORRECT_BOOLEAN` - true to enable auto completion + * and auto correction, defaults to true. + * - `SDL_PROP_TEXTINPUT_MULTILINE_BOOLEAN` - true if multiple lines of text + * are allowed. This defaults to true if SDL_HINT_RETURN_KEY_HIDES_IME is + * "0" or is not set, and defaults to false if SDL_HINT_RETURN_KEY_HIDES_IME + * is "1". + * + * On Android you can directly specify the input type: + * + * - `SDL_PROP_TEXTINPUT_ANDROID_INPUTTYPE_NUMBER` - the text input type to + * use, overriding other properties. This is documented at + * https://developer.android.com/reference/android/text/InputType + * + * \param window the window to enable text input. + * \param props the properties to use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextInputArea + * \sa SDL_StartTextInput + * \sa SDL_StopTextInput + * \sa SDL_TextInputActive + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StartTextInputWithProperties(SDL_Window *window, SDL_PropertiesID props); + +#define SDL_PROP_TEXTINPUT_TYPE_NUMBER "SDL.textinput.type" +#define SDL_PROP_TEXTINPUT_CAPITALIZATION_NUMBER "SDL.textinput.capitalization" +#define SDL_PROP_TEXTINPUT_AUTOCORRECT_BOOLEAN "SDL.textinput.autocorrect" +#define SDL_PROP_TEXTINPUT_MULTILINE_BOOLEAN "SDL.textinput.multiline" +#define SDL_PROP_TEXTINPUT_ANDROID_INPUTTYPE_NUMBER "SDL.textinput.android.inputtype" + +/** + * Check whether or not Unicode text input events are enabled for a window. + * + * \param window the window to check. + * \returns true if text input events are enabled else false. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TextInputActive(SDL_Window *window); + +/** + * Stop receiving any text input events in a window. + * + * If SDL_StartTextInput() showed the screen keyboard, this function will hide + * it. + * + * \param window the window to disable text input. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StopTextInput(SDL_Window *window); + +/** + * Dismiss the composition window/IME without disabling the subsystem. + * + * \param window the window to affect. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + * \sa SDL_StopTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearComposition(SDL_Window *window); + +/** + * Set the area used to type Unicode text input. + * + * Native input methods may place a window with word suggestions near the + * cursor, without covering the text being entered. + * + * \param window the window for which to set the text input area. + * \param rect the SDL_Rect representing the text input area, in window + * coordinates, or NULL to clear it. + * \param cursor the offset of the current cursor location relative to + * `rect->x`, in window coordinates. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextInputArea + * \sa SDL_StartTextInput + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextInputArea(SDL_Window *window, const SDL_Rect *rect, int cursor); + +/** + * Get the area used to type Unicode text input. + * + * This returns the values previously set by SDL_SetTextInputArea(). + * + * \param window the window for which to query the text input area. + * \param rect a pointer to an SDL_Rect filled in with the text input area, + * may be NULL. + * \param cursor a pointer to the offset of the current cursor location + * relative to `rect->x`, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextInputArea + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextInputArea(SDL_Window *window, SDL_Rect *rect, int *cursor); + +/** + * Check whether the platform has screen keyboard support. + * + * \returns true if the platform has some screen keyboard support or false if + * not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StartTextInput + * \sa SDL_ScreenKeyboardShown + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasScreenKeyboardSupport(void); + +/** + * Check whether the screen keyboard is shown for given window. + * + * \param window the window for which screen keyboard should be queried. + * \returns true if screen keyboard is shown or false if not. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasScreenKeyboardSupport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ScreenKeyboardShown(SDL_Window *window); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_keyboard_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_keycode.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_keycode.h new file mode 100644 index 0000000..61b68e7 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_keycode.h @@ -0,0 +1,343 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryKeycode + * + * Defines constants which identify keyboard keys and modifiers. + * + * Please refer to the Best Keyboard Practices document for details on what + * this information means and how best to use it. + * + * https://wiki.libsdl.org/SDL3/BestKeyboardPractices + */ + +#ifndef SDL_keycode_h_ +#define SDL_keycode_h_ + +#include +#include + +/** + * The SDL virtual key representation. + * + * Values of this type are used to represent keyboard keys using the current + * layout of the keyboard. These values include Unicode values representing + * the unmodified character that would be generated by pressing the key, or an + * `SDLK_*` constant for those keys that do not generate characters. + * + * A special exception is the number keys at the top of the keyboard which map + * to SDLK_0...SDLK_9 on AZERTY layouts. + * + * Keys with the `SDLK_EXTENDED_MASK` bit set do not map to a scancode or + * unicode code point. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_Keycode; + +#define SDLK_EXTENDED_MASK (1u << 29) +#define SDLK_SCANCODE_MASK (1u << 30) +#define SDL_SCANCODE_TO_KEYCODE(X) (X | SDLK_SCANCODE_MASK) +#define SDLK_UNKNOWN 0x00000000u /**< 0 */ +#define SDLK_RETURN 0x0000000du /**< '\r' */ +#define SDLK_ESCAPE 0x0000001bu /**< '\x1B' */ +#define SDLK_BACKSPACE 0x00000008u /**< '\b' */ +#define SDLK_TAB 0x00000009u /**< '\t' */ +#define SDLK_SPACE 0x00000020u /**< ' ' */ +#define SDLK_EXCLAIM 0x00000021u /**< '!' */ +#define SDLK_DBLAPOSTROPHE 0x00000022u /**< '"' */ +#define SDLK_HASH 0x00000023u /**< '#' */ +#define SDLK_DOLLAR 0x00000024u /**< '$' */ +#define SDLK_PERCENT 0x00000025u /**< '%' */ +#define SDLK_AMPERSAND 0x00000026u /**< '&' */ +#define SDLK_APOSTROPHE 0x00000027u /**< '\'' */ +#define SDLK_LEFTPAREN 0x00000028u /**< '(' */ +#define SDLK_RIGHTPAREN 0x00000029u /**< ')' */ +#define SDLK_ASTERISK 0x0000002au /**< '*' */ +#define SDLK_PLUS 0x0000002bu /**< '+' */ +#define SDLK_COMMA 0x0000002cu /**< ',' */ +#define SDLK_MINUS 0x0000002du /**< '-' */ +#define SDLK_PERIOD 0x0000002eu /**< '.' */ +#define SDLK_SLASH 0x0000002fu /**< '/' */ +#define SDLK_0 0x00000030u /**< '0' */ +#define SDLK_1 0x00000031u /**< '1' */ +#define SDLK_2 0x00000032u /**< '2' */ +#define SDLK_3 0x00000033u /**< '3' */ +#define SDLK_4 0x00000034u /**< '4' */ +#define SDLK_5 0x00000035u /**< '5' */ +#define SDLK_6 0x00000036u /**< '6' */ +#define SDLK_7 0x00000037u /**< '7' */ +#define SDLK_8 0x00000038u /**< '8' */ +#define SDLK_9 0x00000039u /**< '9' */ +#define SDLK_COLON 0x0000003au /**< ':' */ +#define SDLK_SEMICOLON 0x0000003bu /**< ';' */ +#define SDLK_LESS 0x0000003cu /**< '<' */ +#define SDLK_EQUALS 0x0000003du /**< '=' */ +#define SDLK_GREATER 0x0000003eu /**< '>' */ +#define SDLK_QUESTION 0x0000003fu /**< '?' */ +#define SDLK_AT 0x00000040u /**< '@' */ +#define SDLK_LEFTBRACKET 0x0000005bu /**< '[' */ +#define SDLK_BACKSLASH 0x0000005cu /**< '\\' */ +#define SDLK_RIGHTBRACKET 0x0000005du /**< ']' */ +#define SDLK_CARET 0x0000005eu /**< '^' */ +#define SDLK_UNDERSCORE 0x0000005fu /**< '_' */ +#define SDLK_GRAVE 0x00000060u /**< '`' */ +#define SDLK_A 0x00000061u /**< 'a' */ +#define SDLK_B 0x00000062u /**< 'b' */ +#define SDLK_C 0x00000063u /**< 'c' */ +#define SDLK_D 0x00000064u /**< 'd' */ +#define SDLK_E 0x00000065u /**< 'e' */ +#define SDLK_F 0x00000066u /**< 'f' */ +#define SDLK_G 0x00000067u /**< 'g' */ +#define SDLK_H 0x00000068u /**< 'h' */ +#define SDLK_I 0x00000069u /**< 'i' */ +#define SDLK_J 0x0000006au /**< 'j' */ +#define SDLK_K 0x0000006bu /**< 'k' */ +#define SDLK_L 0x0000006cu /**< 'l' */ +#define SDLK_M 0x0000006du /**< 'm' */ +#define SDLK_N 0x0000006eu /**< 'n' */ +#define SDLK_O 0x0000006fu /**< 'o' */ +#define SDLK_P 0x00000070u /**< 'p' */ +#define SDLK_Q 0x00000071u /**< 'q' */ +#define SDLK_R 0x00000072u /**< 'r' */ +#define SDLK_S 0x00000073u /**< 's' */ +#define SDLK_T 0x00000074u /**< 't' */ +#define SDLK_U 0x00000075u /**< 'u' */ +#define SDLK_V 0x00000076u /**< 'v' */ +#define SDLK_W 0x00000077u /**< 'w' */ +#define SDLK_X 0x00000078u /**< 'x' */ +#define SDLK_Y 0x00000079u /**< 'y' */ +#define SDLK_Z 0x0000007au /**< 'z' */ +#define SDLK_LEFTBRACE 0x0000007bu /**< '{' */ +#define SDLK_PIPE 0x0000007cu /**< '|' */ +#define SDLK_RIGHTBRACE 0x0000007du /**< '}' */ +#define SDLK_TILDE 0x0000007eu /**< '~' */ +#define SDLK_DELETE 0x0000007fu /**< '\x7F' */ +#define SDLK_PLUSMINUS 0x000000b1u /**< '\xB1' */ +#define SDLK_CAPSLOCK 0x40000039u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CAPSLOCK) */ +#define SDLK_F1 0x4000003au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F1) */ +#define SDLK_F2 0x4000003bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F2) */ +#define SDLK_F3 0x4000003cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F3) */ +#define SDLK_F4 0x4000003du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F4) */ +#define SDLK_F5 0x4000003eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F5) */ +#define SDLK_F6 0x4000003fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F6) */ +#define SDLK_F7 0x40000040u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F7) */ +#define SDLK_F8 0x40000041u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F8) */ +#define SDLK_F9 0x40000042u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F9) */ +#define SDLK_F10 0x40000043u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F10) */ +#define SDLK_F11 0x40000044u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F11) */ +#define SDLK_F12 0x40000045u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F12) */ +#define SDLK_PRINTSCREEN 0x40000046u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PRINTSCREEN) */ +#define SDLK_SCROLLLOCK 0x40000047u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SCROLLLOCK) */ +#define SDLK_PAUSE 0x40000048u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAUSE) */ +#define SDLK_INSERT 0x40000049u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_INSERT) */ +#define SDLK_HOME 0x4000004au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_HOME) */ +#define SDLK_PAGEUP 0x4000004bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAGEUP) */ +#define SDLK_END 0x4000004du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_END) */ +#define SDLK_PAGEDOWN 0x4000004eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PAGEDOWN) */ +#define SDLK_RIGHT 0x4000004fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RIGHT) */ +#define SDLK_LEFT 0x40000050u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LEFT) */ +#define SDLK_DOWN 0x40000051u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_DOWN) */ +#define SDLK_UP 0x40000052u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_UP) */ +#define SDLK_NUMLOCKCLEAR 0x40000053u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_NUMLOCKCLEAR) */ +#define SDLK_KP_DIVIDE 0x40000054u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DIVIDE) */ +#define SDLK_KP_MULTIPLY 0x40000055u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MULTIPLY) */ +#define SDLK_KP_MINUS 0x40000056u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MINUS) */ +#define SDLK_KP_PLUS 0x40000057u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PLUS) */ +#define SDLK_KP_ENTER 0x40000058u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_ENTER) */ +#define SDLK_KP_1 0x40000059u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_1) */ +#define SDLK_KP_2 0x4000005au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_2) */ +#define SDLK_KP_3 0x4000005bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_3) */ +#define SDLK_KP_4 0x4000005cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_4) */ +#define SDLK_KP_5 0x4000005du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_5) */ +#define SDLK_KP_6 0x4000005eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_6) */ +#define SDLK_KP_7 0x4000005fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_7) */ +#define SDLK_KP_8 0x40000060u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_8) */ +#define SDLK_KP_9 0x40000061u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_9) */ +#define SDLK_KP_0 0x40000062u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_0) */ +#define SDLK_KP_PERIOD 0x40000063u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PERIOD) */ +#define SDLK_APPLICATION 0x40000065u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_APPLICATION) */ +#define SDLK_POWER 0x40000066u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_POWER) */ +#define SDLK_KP_EQUALS 0x40000067u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EQUALS) */ +#define SDLK_F13 0x40000068u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F13) */ +#define SDLK_F14 0x40000069u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F14) */ +#define SDLK_F15 0x4000006au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F15) */ +#define SDLK_F16 0x4000006bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F16) */ +#define SDLK_F17 0x4000006cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F17) */ +#define SDLK_F18 0x4000006du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F18) */ +#define SDLK_F19 0x4000006eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F19) */ +#define SDLK_F20 0x4000006fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F20) */ +#define SDLK_F21 0x40000070u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F21) */ +#define SDLK_F22 0x40000071u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F22) */ +#define SDLK_F23 0x40000072u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F23) */ +#define SDLK_F24 0x40000073u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_F24) */ +#define SDLK_EXECUTE 0x40000074u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_EXECUTE) */ +#define SDLK_HELP 0x40000075u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_HELP) */ +#define SDLK_MENU 0x40000076u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MENU) */ +#define SDLK_SELECT 0x40000077u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SELECT) */ +#define SDLK_STOP 0x40000078u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_STOP) */ +#define SDLK_AGAIN 0x40000079u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AGAIN) */ +#define SDLK_UNDO 0x4000007au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_UNDO) */ +#define SDLK_CUT 0x4000007bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CUT) */ +#define SDLK_COPY 0x4000007cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_COPY) */ +#define SDLK_PASTE 0x4000007du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PASTE) */ +#define SDLK_FIND 0x4000007eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_FIND) */ +#define SDLK_MUTE 0x4000007fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MUTE) */ +#define SDLK_VOLUMEUP 0x40000080u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_VOLUMEUP) */ +#define SDLK_VOLUMEDOWN 0x40000081u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_VOLUMEDOWN) */ +#define SDLK_KP_COMMA 0x40000085u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_COMMA) */ +#define SDLK_KP_EQUALSAS400 0x40000086u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EQUALSAS400) */ +#define SDLK_ALTERASE 0x40000099u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_ALTERASE) */ +#define SDLK_SYSREQ 0x4000009au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SYSREQ) */ +#define SDLK_CANCEL 0x4000009bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CANCEL) */ +#define SDLK_CLEAR 0x4000009cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CLEAR) */ +#define SDLK_PRIOR 0x4000009du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_PRIOR) */ +#define SDLK_RETURN2 0x4000009eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RETURN2) */ +#define SDLK_SEPARATOR 0x4000009fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SEPARATOR) */ +#define SDLK_OUT 0x400000a0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_OUT) */ +#define SDLK_OPER 0x400000a1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_OPER) */ +#define SDLK_CLEARAGAIN 0x400000a2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CLEARAGAIN) */ +#define SDLK_CRSEL 0x400000a3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CRSEL) */ +#define SDLK_EXSEL 0x400000a4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_EXSEL) */ +#define SDLK_KP_00 0x400000b0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_00) */ +#define SDLK_KP_000 0x400000b1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_000) */ +#define SDLK_THOUSANDSSEPARATOR 0x400000b2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_THOUSANDSSEPARATOR) */ +#define SDLK_DECIMALSEPARATOR 0x400000b3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_DECIMALSEPARATOR) */ +#define SDLK_CURRENCYUNIT 0x400000b4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CURRENCYUNIT) */ +#define SDLK_CURRENCYSUBUNIT 0x400000b5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CURRENCYSUBUNIT) */ +#define SDLK_KP_LEFTPAREN 0x400000b6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LEFTPAREN) */ +#define SDLK_KP_RIGHTPAREN 0x400000b7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_RIGHTPAREN) */ +#define SDLK_KP_LEFTBRACE 0x400000b8u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LEFTBRACE) */ +#define SDLK_KP_RIGHTBRACE 0x400000b9u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_RIGHTBRACE) */ +#define SDLK_KP_TAB 0x400000bau /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_TAB) */ +#define SDLK_KP_BACKSPACE 0x400000bbu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_BACKSPACE) */ +#define SDLK_KP_A 0x400000bcu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_A) */ +#define SDLK_KP_B 0x400000bdu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_B) */ +#define SDLK_KP_C 0x400000beu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_C) */ +#define SDLK_KP_D 0x400000bfu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_D) */ +#define SDLK_KP_E 0x400000c0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_E) */ +#define SDLK_KP_F 0x400000c1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_F) */ +#define SDLK_KP_XOR 0x400000c2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_XOR) */ +#define SDLK_KP_POWER 0x400000c3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_POWER) */ +#define SDLK_KP_PERCENT 0x400000c4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PERCENT) */ +#define SDLK_KP_LESS 0x400000c5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_LESS) */ +#define SDLK_KP_GREATER 0x400000c6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_GREATER) */ +#define SDLK_KP_AMPERSAND 0x400000c7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_AMPERSAND) */ +#define SDLK_KP_DBLAMPERSAND 0x400000c8u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DBLAMPERSAND) */ +#define SDLK_KP_VERTICALBAR 0x400000c9u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_VERTICALBAR) */ +#define SDLK_KP_DBLVERTICALBAR 0x400000cau /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DBLVERTICALBAR) */ +#define SDLK_KP_COLON 0x400000cbu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_COLON) */ +#define SDLK_KP_HASH 0x400000ccu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_HASH) */ +#define SDLK_KP_SPACE 0x400000cdu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_SPACE) */ +#define SDLK_KP_AT 0x400000ceu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_AT) */ +#define SDLK_KP_EXCLAM 0x400000cfu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_EXCLAM) */ +#define SDLK_KP_MEMSTORE 0x400000d0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMSTORE) */ +#define SDLK_KP_MEMRECALL 0x400000d1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMRECALL) */ +#define SDLK_KP_MEMCLEAR 0x400000d2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMCLEAR) */ +#define SDLK_KP_MEMADD 0x400000d3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMADD) */ +#define SDLK_KP_MEMSUBTRACT 0x400000d4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMSUBTRACT) */ +#define SDLK_KP_MEMMULTIPLY 0x400000d5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMMULTIPLY) */ +#define SDLK_KP_MEMDIVIDE 0x400000d6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_MEMDIVIDE) */ +#define SDLK_KP_PLUSMINUS 0x400000d7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_PLUSMINUS) */ +#define SDLK_KP_CLEAR 0x400000d8u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_CLEAR) */ +#define SDLK_KP_CLEARENTRY 0x400000d9u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_CLEARENTRY) */ +#define SDLK_KP_BINARY 0x400000dau /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_BINARY) */ +#define SDLK_KP_OCTAL 0x400000dbu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_OCTAL) */ +#define SDLK_KP_DECIMAL 0x400000dcu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_DECIMAL) */ +#define SDLK_KP_HEXADECIMAL 0x400000ddu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_KP_HEXADECIMAL) */ +#define SDLK_LCTRL 0x400000e0u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LCTRL) */ +#define SDLK_LSHIFT 0x400000e1u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LSHIFT) */ +#define SDLK_LALT 0x400000e2u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LALT) */ +#define SDLK_LGUI 0x400000e3u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_LGUI) */ +#define SDLK_RCTRL 0x400000e4u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RCTRL) */ +#define SDLK_RSHIFT 0x400000e5u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RSHIFT) */ +#define SDLK_RALT 0x400000e6u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RALT) */ +#define SDLK_RGUI 0x400000e7u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_RGUI) */ +#define SDLK_MODE 0x40000101u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MODE) */ +#define SDLK_SLEEP 0x40000102u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SLEEP) */ +#define SDLK_WAKE 0x40000103u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_WAKE) */ +#define SDLK_CHANNEL_INCREMENT 0x40000104u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CHANNEL_INCREMENT) */ +#define SDLK_CHANNEL_DECREMENT 0x40000105u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CHANNEL_DECREMENT) */ +#define SDLK_MEDIA_PLAY 0x40000106u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PLAY) */ +#define SDLK_MEDIA_PAUSE 0x40000107u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PAUSE) */ +#define SDLK_MEDIA_RECORD 0x40000108u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_RECORD) */ +#define SDLK_MEDIA_FAST_FORWARD 0x40000109u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_FAST_FORWARD) */ +#define SDLK_MEDIA_REWIND 0x4000010au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_REWIND) */ +#define SDLK_MEDIA_NEXT_TRACK 0x4000010bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_NEXT_TRACK) */ +#define SDLK_MEDIA_PREVIOUS_TRACK 0x4000010cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PREVIOUS_TRACK) */ +#define SDLK_MEDIA_STOP 0x4000010du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_STOP) */ +#define SDLK_MEDIA_EJECT 0x4000010eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_EJECT) */ +#define SDLK_MEDIA_PLAY_PAUSE 0x4000010fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_PLAY_PAUSE) */ +#define SDLK_MEDIA_SELECT 0x40000110u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_MEDIA_SELECT) */ +#define SDLK_AC_NEW 0x40000111u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_NEW) */ +#define SDLK_AC_OPEN 0x40000112u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_OPEN) */ +#define SDLK_AC_CLOSE 0x40000113u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_CLOSE) */ +#define SDLK_AC_EXIT 0x40000114u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_EXIT) */ +#define SDLK_AC_SAVE 0x40000115u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_SAVE) */ +#define SDLK_AC_PRINT 0x40000116u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_PRINT) */ +#define SDLK_AC_PROPERTIES 0x40000117u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_PROPERTIES) */ +#define SDLK_AC_SEARCH 0x40000118u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_SEARCH) */ +#define SDLK_AC_HOME 0x40000119u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_HOME) */ +#define SDLK_AC_BACK 0x4000011au /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_BACK) */ +#define SDLK_AC_FORWARD 0x4000011bu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_FORWARD) */ +#define SDLK_AC_STOP 0x4000011cu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_STOP) */ +#define SDLK_AC_REFRESH 0x4000011du /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_REFRESH) */ +#define SDLK_AC_BOOKMARKS 0x4000011eu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_AC_BOOKMARKS) */ +#define SDLK_SOFTLEFT 0x4000011fu /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SOFTLEFT) */ +#define SDLK_SOFTRIGHT 0x40000120u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_SOFTRIGHT) */ +#define SDLK_CALL 0x40000121u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_CALL) */ +#define SDLK_ENDCALL 0x40000122u /**< SDL_SCANCODE_TO_KEYCODE(SDL_SCANCODE_ENDCALL) */ +#define SDLK_LEFT_TAB 0x20000001u /**< Extended key Left Tab */ +#define SDLK_LEVEL5_SHIFT 0x20000002u /**< Extended key Level 5 Shift */ +#define SDLK_MULTI_KEY_COMPOSE 0x20000003u /**< Extended key Multi-key Compose */ +#define SDLK_LMETA 0x20000004u /**< Extended key Left Meta */ +#define SDLK_RMETA 0x20000005u /**< Extended key Right Meta */ +#define SDLK_LHYPER 0x20000006u /**< Extended key Left Hyper */ +#define SDLK_RHYPER 0x20000007u /**< Extended key Right Hyper */ + +/** + * Valid key modifiers (possibly OR'd together). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint16 SDL_Keymod; + +#define SDL_KMOD_NONE 0x0000u /**< no modifier is applicable. */ +#define SDL_KMOD_LSHIFT 0x0001u /**< the left Shift key is down. */ +#define SDL_KMOD_RSHIFT 0x0002u /**< the right Shift key is down. */ +#define SDL_KMOD_LEVEL5 0x0004u /**< the Level 5 Shift key is down. */ +#define SDL_KMOD_LCTRL 0x0040u /**< the left Ctrl (Control) key is down. */ +#define SDL_KMOD_RCTRL 0x0080u /**< the right Ctrl (Control) key is down. */ +#define SDL_KMOD_LALT 0x0100u /**< the left Alt key is down. */ +#define SDL_KMOD_RALT 0x0200u /**< the right Alt key is down. */ +#define SDL_KMOD_LGUI 0x0400u /**< the left GUI key (often the Windows key) is down. */ +#define SDL_KMOD_RGUI 0x0800u /**< the right GUI key (often the Windows key) is down. */ +#define SDL_KMOD_NUM 0x1000u /**< the Num Lock key (may be located on an extended keypad) is down. */ +#define SDL_KMOD_CAPS 0x2000u /**< the Caps Lock key is down. */ +#define SDL_KMOD_MODE 0x4000u /**< the !AltGr key is down. */ +#define SDL_KMOD_SCROLL 0x8000u /**< the Scroll Lock key is down. */ +#define SDL_KMOD_CTRL (SDL_KMOD_LCTRL | SDL_KMOD_RCTRL) /**< Any Ctrl key is down. */ +#define SDL_KMOD_SHIFT (SDL_KMOD_LSHIFT | SDL_KMOD_RSHIFT) /**< Any Shift key is down. */ +#define SDL_KMOD_ALT (SDL_KMOD_LALT | SDL_KMOD_RALT) /**< Any Alt key is down. */ +#define SDL_KMOD_GUI (SDL_KMOD_LGUI | SDL_KMOD_RGUI) /**< Any GUI key is down. */ + +#endif /* SDL_keycode_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_loadso.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_loadso.h new file mode 100644 index 0000000..f8649d7 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_loadso.h @@ -0,0 +1,145 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: SharedObject */ + +/** + * # CategorySharedObject + * + * System-dependent library loading routines. + * + * Shared objects are code that is programmatically loadable at runtime. + * Windows calls these "DLLs", Linux calls them "shared libraries", etc. + * + * To use them, build such a library, then call SDL_LoadObject() on it. Once + * loaded, you can use SDL_LoadFunction() on that object to find the address + * of its exported symbols. When done with the object, call SDL_UnloadObject() + * to dispose of it. + * + * Some things to keep in mind: + * + * - These functions only work on C function names. Other languages may have + * name mangling and intrinsic language support that varies from compiler to + * compiler. + * - Make sure you declare your function pointers with the same calling + * convention as the actual library function. Your code will crash + * mysteriously if you do not do this. + * - Avoid namespace collisions. If you load a symbol from the library, it is + * not defined whether or not it goes into the global symbol namespace for + * the application. If it does and it conflicts with symbols in your code or + * other shared libraries, you will not get the results you expect. :) + * - Once a library is unloaded, all pointers into it obtained through + * SDL_LoadFunction() become invalid, even if the library is later reloaded. + * Don't unload a library if you plan to use these pointers in the future. + * Notably: beware of giving one of these pointers to atexit(), since it may + * call that pointer after the library unloads. + */ + +#ifndef SDL_loadso_h_ +#define SDL_loadso_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque datatype that represents a loaded shared object. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_LoadObject + * \sa SDL_LoadFunction + * \sa SDL_UnloadObject + */ +typedef struct SDL_SharedObject SDL_SharedObject; + +/** + * Dynamically load a shared object. + * + * \param sofile a system-dependent name of the object file. + * \returns an opaque pointer to the object handle or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadFunction + * \sa SDL_UnloadObject + */ +extern SDL_DECLSPEC SDL_SharedObject * SDLCALL SDL_LoadObject(const char *sofile); + +/** + * Look up the address of the named function in a shared object. + * + * This function pointer is no longer valid after calling SDL_UnloadObject(). + * + * This function can only look up C function names. Other languages may have + * name mangling and intrinsic language support that varies from compiler to + * compiler. + * + * Make sure you declare your function pointers with the same calling + * convention as the actual library function. Your code will crash + * mysteriously if you do not do this. + * + * If the requested function doesn't exist, NULL is returned. + * + * \param handle a valid shared object handle returned by SDL_LoadObject(). + * \param name the name of the function to look up. + * \returns a pointer to the function or NULL on failure; call SDL_GetError() + * for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadObject + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_LoadFunction(SDL_SharedObject *handle, const char *name); + +/** + * Unload a shared object from memory. + * + * Note that any pointers from this object looked up through + * SDL_LoadFunction() will no longer be valid. + * + * \param handle a valid shared object handle returned by SDL_LoadObject(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadObject + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnloadObject(SDL_SharedObject *handle); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_loadso_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_locale.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_locale.h new file mode 100644 index 0000000..902843e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_locale.h @@ -0,0 +1,117 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryLocale + * + * SDL locale services. + * + * This provides a way to get a list of preferred locales (language plus + * country) for the user. There is exactly one function: + * SDL_GetPreferredLocales(), which handles all the heavy lifting, and offers + * documentation on all the strange ways humans might have configured their + * language settings. + */ + +#ifndef SDL_locale_h +#define SDL_locale_h + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +extern "C" { +/* *INDENT-ON* */ +#endif + +/** + * A struct to provide locale data. + * + * Locale data is split into a spoken language, like English, and an optional + * country, like Canada. The language will be in ISO-639 format (so English + * would be "en"), and the country, if not NULL, will be an ISO-3166 country + * code (so Canada would be "CA"). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPreferredLocales + */ +typedef struct SDL_Locale +{ + const char *language; /**< A language name, like "en" for English. */ + const char *country; /**< A country, like "US" for America. Can be NULL. */ +} SDL_Locale; + +/** + * Report the user's preferred locale. + * + * Returned language strings are in the format xx, where 'xx' is an ISO-639 + * language specifier (such as "en" for English, "de" for German, etc). + * Country strings are in the format YY, where "YY" is an ISO-3166 country + * code (such as "US" for the United States, "CA" for Canada, etc). Country + * might be NULL if there's no specific guidance on them (so you might get { + * "en", "US" } for American English, but { "en", NULL } means "English + * language, generically"). Language strings are never NULL, except to + * terminate the array. + * + * Please note that not all of these strings are 2 characters; some are three + * or more. + * + * The returned list of locales are in the order of the user's preference. For + * example, a German citizen that is fluent in US English and knows enough + * Japanese to navigate around Tokyo might have a list like: { "de", "en_US", + * "jp", NULL }. Someone from England might prefer British English (where + * "color" is spelled "colour", etc), but will settle for anything like it: { + * "en_GB", "en", NULL }. + * + * This function returns NULL on error, including when the platform does not + * supply this information at all. + * + * This might be a "slow" call that has to query the operating system. It's + * best to ask for this once and save the results. However, this list can + * change, usually because the user has changed a system preference outside of + * your program; SDL will send an SDL_EVENT_LOCALE_CHANGED event in this case, + * if possible, and you can call this function again to get an updated copy of + * preferred locales. + * + * \param count a pointer filled in with the number of locales returned, may + * be NULL. + * \returns a NULL terminated array of locale pointers, or NULL on failure; + * call SDL_GetError() for more information. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Locale ** SDLCALL SDL_GetPreferredLocales(int *count); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +} +/* *INDENT-ON* */ +#endif +#include + +#endif /* SDL_locale_h */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_log.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_log.h new file mode 100644 index 0000000..3fd7ec2 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_log.h @@ -0,0 +1,538 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryLog + * + * Simple log messages with priorities and categories. A message's + * SDL_LogPriority signifies how important the message is. A message's + * SDL_LogCategory signifies from what domain it belongs to. Every category + * has a minimum priority specified: when a message belongs to that category, + * it will only be sent out if it has that minimum priority or higher. + * + * SDL's own logs are sent below the default priority threshold, so they are + * quiet by default. + * + * You can change the log verbosity programmatically using + * SDL_SetLogPriority() or with SDL_SetHint(SDL_HINT_LOGGING, ...), or with + * the "SDL_LOGGING" environment variable. This variable is a comma separated + * set of category=level tokens that define the default logging levels for SDL + * applications. + * + * The category can be a numeric category, one of "app", "error", "assert", + * "system", "audio", "video", "render", "input", "test", or `*` for any + * unspecified category. + * + * The level can be a numeric level, one of "trace", "verbose", "debug", + * "info", "warn", "error", "critical", or "quiet" to disable that category. + * + * You can omit the category if you want to set the logging level for all + * categories. + * + * If this hint isn't set, the default log levels are equivalent to: + * + * `app=info,assert=warn,test=verbose,*=error` + * + * Here's where the messages go on different platforms: + * + * - Windows: debug output stream + * - Android: log output + * - Others: standard error output (stderr) + * + * You don't need to have a newline (`\n`) on the end of messages, the + * functions will do that for you. For consistent behavior cross-platform, you + * shouldn't have any newlines in messages, such as to log multiple lines in + * one call; unusual platform-specific behavior can be observed in such usage. + * Do one log call per line instead, with no newlines in messages. + * + * Each log call is atomic, so you won't see log messages cut off one another + * when logging from multiple threads. + */ + +#ifndef SDL_log_h_ +#define SDL_log_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The predefined log categories + * + * By default the application and gpu categories are enabled at the INFO + * level, the assert category is enabled at the WARN level, test is enabled at + * the VERBOSE level and all other categories are enabled at the ERROR level. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_LogCategory +{ + SDL_LOG_CATEGORY_APPLICATION, + SDL_LOG_CATEGORY_ERROR, + SDL_LOG_CATEGORY_ASSERT, + SDL_LOG_CATEGORY_SYSTEM, + SDL_LOG_CATEGORY_AUDIO, + SDL_LOG_CATEGORY_VIDEO, + SDL_LOG_CATEGORY_RENDER, + SDL_LOG_CATEGORY_INPUT, + SDL_LOG_CATEGORY_TEST, + SDL_LOG_CATEGORY_GPU, + + /* Reserved for future SDL library use */ + SDL_LOG_CATEGORY_RESERVED2, + SDL_LOG_CATEGORY_RESERVED3, + SDL_LOG_CATEGORY_RESERVED4, + SDL_LOG_CATEGORY_RESERVED5, + SDL_LOG_CATEGORY_RESERVED6, + SDL_LOG_CATEGORY_RESERVED7, + SDL_LOG_CATEGORY_RESERVED8, + SDL_LOG_CATEGORY_RESERVED9, + SDL_LOG_CATEGORY_RESERVED10, + + /* Beyond this point is reserved for application use, e.g. + enum { + MYAPP_CATEGORY_AWESOME1 = SDL_LOG_CATEGORY_CUSTOM, + MYAPP_CATEGORY_AWESOME2, + MYAPP_CATEGORY_AWESOME3, + ... + }; + */ + SDL_LOG_CATEGORY_CUSTOM +} SDL_LogCategory; + +/** + * The predefined log priorities + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_LogPriority +{ + SDL_LOG_PRIORITY_INVALID, + SDL_LOG_PRIORITY_TRACE, + SDL_LOG_PRIORITY_VERBOSE, + SDL_LOG_PRIORITY_DEBUG, + SDL_LOG_PRIORITY_INFO, + SDL_LOG_PRIORITY_WARN, + SDL_LOG_PRIORITY_ERROR, + SDL_LOG_PRIORITY_CRITICAL, + SDL_LOG_PRIORITY_COUNT +} SDL_LogPriority; + + +/** + * Set the priority of all log categories. + * + * \param priority the SDL_LogPriority to assign. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ResetLogPriorities + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetLogPriorities(SDL_LogPriority priority); + +/** + * Set the priority of a particular log category. + * + * \param category the category to assign a priority to. + * \param priority the SDL_LogPriority to assign. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetLogPriority + * \sa SDL_ResetLogPriorities + * \sa SDL_SetLogPriorities + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetLogPriority(int category, SDL_LogPriority priority); + +/** + * Get the priority of a particular log category. + * + * \param category the category to query. + * \returns the SDL_LogPriority for the requested category. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC SDL_LogPriority SDLCALL SDL_GetLogPriority(int category); + +/** + * Reset all priorities to default. + * + * This is called by SDL_Quit(). + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogPriorities + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC void SDLCALL SDL_ResetLogPriorities(void); + +/** + * Set the text prepended to log messages of a given priority. + * + * By default SDL_LOG_PRIORITY_INFO and below have no prefix, and + * SDL_LOG_PRIORITY_WARN and higher have a prefix showing their priority, e.g. + * "WARNING: ". + * + * \param priority the SDL_LogPriority to modify. + * \param prefix the prefix to use for that log priority, or NULL to use no + * prefix. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogPriorities + * \sa SDL_SetLogPriority + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetLogPriorityPrefix(SDL_LogPriority priority, const char *prefix); + +/** + * Log a message with SDL_LOG_CATEGORY_APPLICATION and SDL_LOG_PRIORITY_INFO. + * + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_Log(SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(1); + +/** + * Log a message with SDL_LOG_PRIORITY_TRACE. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogTrace(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_VERBOSE. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogVerbose(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_DEBUG. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogDebug(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_INFO. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogInfo(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_WARN. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogWarn(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_ERROR. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogError(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with SDL_LOG_PRIORITY_CRITICAL. + * + * \param category the category of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogCritical(int category, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * Log a message with the specified category and priority. + * + * \param category the category of the message. + * \param priority the priority of the message. + * \param fmt a printf() style message format string. + * \param ... additional parameters matching % tokens in the **fmt** string, + * if any. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessageV + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogMessage(int category, + SDL_LogPriority priority, + SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(3); + +/** + * Log a message with the specified category and priority. + * + * \param category the category of the message. + * \param priority the priority of the message. + * \param fmt a printf() style message format string. + * \param ap a variable argument list. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Log + * \sa SDL_LogCritical + * \sa SDL_LogDebug + * \sa SDL_LogError + * \sa SDL_LogInfo + * \sa SDL_LogMessage + * \sa SDL_LogTrace + * \sa SDL_LogVerbose + * \sa SDL_LogWarn + */ +extern SDL_DECLSPEC void SDLCALL SDL_LogMessageV(int category, + SDL_LogPriority priority, + SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(3); + +/** + * The prototype for the log output callback function. + * + * This function is called by SDL when there is new text to be logged. A mutex + * is held so that this function is never called by more than one thread at + * once. + * + * \param userdata what was passed as `userdata` to + * SDL_SetLogOutputFunction(). + * \param category the category of the message. + * \param priority the priority of the message. + * \param message the message being output. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void (SDLCALL *SDL_LogOutputFunction)(void *userdata, int category, SDL_LogPriority priority, const char *message); + +/** + * Get the default log output function. + * + * \returns the default log output callback. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetLogOutputFunction + * \sa SDL_GetLogOutputFunction + */ +extern SDL_DECLSPEC SDL_LogOutputFunction SDLCALL SDL_GetDefaultLogOutputFunction(void); + +/** + * Get the current log output function. + * + * \param callback an SDL_LogOutputFunction filled in with the current log + * callback. + * \param userdata a pointer filled in with the pointer that is passed to + * `callback`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDefaultLogOutputFunction + * \sa SDL_SetLogOutputFunction + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetLogOutputFunction(SDL_LogOutputFunction *callback, void **userdata); + +/** + * Replace the default log output function with one of your own. + * + * \param callback an SDL_LogOutputFunction to call instead of the default. + * \param userdata a pointer that is passed to `callback`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDefaultLogOutputFunction + * \sa SDL_GetLogOutputFunction + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetLogOutputFunction(SDL_LogOutputFunction callback, void *userdata); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_log_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_main.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_main.h new file mode 100644 index 0000000..905d78e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_main.h @@ -0,0 +1,675 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMain + * + * Redefine main() if necessary so that it is called by SDL. + * + * In order to make this consistent on all platforms, the application's main() + * should look like this: + * + * ```c + * #include + * #include + * + * int main(int argc, char *argv[]) + * { + * } + * ``` + * + * SDL will take care of platform specific details on how it gets called. + * + * This is also where an app can be configured to use the main callbacks, via + * the SDL_MAIN_USE_CALLBACKS macro. + * + * SDL_main.h is a "single-header library," which is to say that including + * this header inserts code into your program, and you should only include it + * once in most cases. SDL.h does not include this header automatically. + * + * For more information, see: + * + * https://wiki.libsdl.org/SDL3/README/main-functions + */ + +#ifndef SDL_main_h_ +#define SDL_main_h_ + +#include +#include +#include +#include + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Inform SDL that the app is providing an entry point instead of SDL. + * + * SDL does not define this macro, but will check if it is defined when + * including `SDL_main.h`. If defined, SDL will expect the app to provide the + * proper entry point for the platform, and all the other magic details + * needed, like manually calling SDL_SetMainReady. + * + * Please see [README/main-functions](README/main-functions), (or + * docs/README-main-functions.md in the source tree) for a more detailed + * explanation. + * + * \since This macro is used by the headers since SDL 3.2.0. + */ +#define SDL_MAIN_HANDLED 1 + +/** + * Inform SDL to use the main callbacks instead of main. + * + * SDL does not define this macro, but will check if it is defined when + * including `SDL_main.h`. If defined, SDL will expect the app to provide + * several functions: SDL_AppInit, SDL_AppEvent, SDL_AppIterate, and + * SDL_AppQuit. The app should not provide a `main` function in this case, and + * doing so will likely cause the build to fail. + * + * Please see [README/main-functions](README/main-functions), (or + * docs/README-main-functions.md in the source tree) for a more detailed + * explanation. + * + * \since This macro is used by the headers since SDL 3.2.0. + * + * \sa SDL_AppInit + * \sa SDL_AppEvent + * \sa SDL_AppIterate + * \sa SDL_AppQuit + */ +#define SDL_MAIN_USE_CALLBACKS 1 + +/** + * Defined if the target platform offers a special mainline through SDL. + * + * This won't be defined otherwise. If defined, SDL's headers will redefine + * `main` to `SDL_main`. + * + * This macro is defined by `SDL_main.h`, which is not automatically included + * by `SDL.h`. + * + * Even if available, an app can define SDL_MAIN_HANDLED and provide their + * own, if they know what they're doing. + * + * This macro is used internally by SDL, and apps probably shouldn't rely on it. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MAIN_AVAILABLE + +/** + * Defined if the target platform _requires_ a special mainline through SDL. + * + * This won't be defined otherwise. If defined, SDL's headers will redefine + * `main` to `SDL_main`. + * + * This macro is defined by `SDL_main.h`, which is not automatically included + * by `SDL.h`. + * + * Even if required, an app can define SDL_MAIN_HANDLED and provide their + * own, if they know what they're doing. + * + * This macro is used internally by SDL, and apps probably shouldn't rely on it. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MAIN_NEEDED + +#endif + +#if defined(__has_include) + #if __has_include("SDL_main_private.h") && __has_include("SDL_main_impl_private.h") + #define SDL_PLATFORM_PRIVATE_MAIN + #endif +#endif + +#ifndef SDL_MAIN_HANDLED + #if defined(SDL_PLATFORM_PRIVATE_MAIN) + /* Private platforms may have their own ideas about entry points. */ + #include "SDL_main_private.h" + + #elif defined(SDL_PLATFORM_WIN32) + /* On Windows SDL provides WinMain(), which parses the command line and passes + the arguments to your main function. + + If you provide your own WinMain(), you may define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #elif defined(SDL_PLATFORM_GDK) + /* On GDK, SDL provides a main function that initializes the game runtime. + + If you prefer to write your own WinMain-function instead of having SDL + provide one that calls your main() function, + #define SDL_MAIN_HANDLED before #include'ing SDL_main.h + and call the SDL_RunApp function from your entry point. + */ + #define SDL_MAIN_NEEDED + + #elif defined(SDL_PLATFORM_IOS) + /* On iOS SDL provides a main function that creates an application delegate + and starts the iOS application run loop. + + To use it, just #include SDL_main.h in the source file that contains your + main() function. + + See src/video/uikit/SDL_uikitappdelegate.m for more details. + */ + #define SDL_MAIN_NEEDED + + #elif defined(SDL_PLATFORM_ANDROID) + /* On Android SDL provides a Java class in SDLActivity.java that is the + main activity entry point. + + See docs/README-android.md for more details on extending that class. + */ + #define SDL_MAIN_NEEDED + + /* As this is launched from Java, the real entry point (main() function) + is outside of the the binary built from this code. + This define makes sure that, unlike on other platforms, SDL_main.h + and SDL_main_impl.h export an `SDL_main()` function (to be called + from Java), but don't implement a native `int main(int argc, char* argv[])` + or similar. + */ + #define SDL_MAIN_EXPORTED + + #elif defined(SDL_PLATFORM_EMSCRIPTEN) + /* On Emscripten, SDL provides a main function that converts URL + parameters that start with "SDL_" to environment variables, so + they can be used as SDL hints, etc. + + This is 100% optional, so if you don't want this to happen, you may + define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #elif defined(SDL_PLATFORM_PSP) + /* On PSP SDL provides a main function that sets the module info, + activates the GPU and starts the thread required to be able to exit + the software. + + If you provide this yourself, you may define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #elif defined(SDL_PLATFORM_PS2) + #define SDL_MAIN_AVAILABLE + + #define SDL_PS2_SKIP_IOP_RESET() \ + void reset_IOP(); \ + void reset_IOP() {} + + #elif defined(SDL_PLATFORM_3DS) + /* + On N3DS, SDL provides a main function that sets up the screens + and storage. + + If you provide this yourself, you may define SDL_MAIN_HANDLED + */ + #define SDL_MAIN_AVAILABLE + + #endif +#endif /* SDL_MAIN_HANDLED */ + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A macro to tag a main entry point function as exported. + * + * Most platforms don't need this, and the macro will be defined to nothing. + * Some, like Android, keep the entry points in a shared library and need to + * explicitly export the symbols. + * + * External code rarely needs this, and if it needs something, it's almost + * always SDL_DECLSPEC instead. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_DECLSPEC + */ +#define SDLMAIN_DECLSPEC + +#elif defined(SDL_MAIN_EXPORTED) +/* We need to export SDL_main so it can be launched from external code, + like SDLActivity.java on Android */ +#define SDLMAIN_DECLSPEC SDL_DECLSPEC +#else +/* usually this is empty */ +#define SDLMAIN_DECLSPEC +#endif /* SDL_MAIN_EXPORTED */ + +#if defined(SDL_MAIN_NEEDED) || defined(SDL_MAIN_AVAILABLE) || defined(SDL_MAIN_USE_CALLBACKS) +#define main SDL_main +#endif + +#include +#include +#ifdef __cplusplus +extern "C" { +#endif + +/* + * You can (optionally!) define SDL_MAIN_USE_CALLBACKS before including + * SDL_main.h, and then your application will _not_ have a standard + * "main" entry point. Instead, it will operate as a collection of + * functions that are called as necessary by the system. On some + * platforms, this is just a layer where SDL drives your program + * instead of your program driving SDL, on other platforms this might + * hook into the OS to manage the lifecycle. Programs on most platforms + * can use whichever approach they prefer, but the decision boils down + * to: + * + * - Using a standard "main" function: this works like it always has for + * the past 50+ years in C programming, and your app is in control. + * - Using the callback functions: this might clean up some code, + * avoid some #ifdef blocks in your program for some platforms, be more + * resource-friendly to the system, and possibly be the primary way to + * access some future platforms (but none require this at the moment). + * + * This is up to the app; both approaches are considered valid and supported + * ways to write SDL apps. + * + * If using the callbacks, don't define a "main" function. Instead, implement + * the functions listed below in your program. + */ +#ifdef SDL_MAIN_USE_CALLBACKS + +/** + * App-implemented initial entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called by SDL once, at startup. The function should + * initialize whatever is necessary, possibly create windows and open audio + * devices, etc. The `argc` and `argv` parameters work like they would with a + * standard "main" function. + * + * This function should not go into an infinite mainloop; it should do any + * one-time setup it requires and then return. + * + * The app may optionally assign a pointer to `*appstate`. This pointer will + * be provided on every future call to the other entry points, to allow + * application state to be preserved between functions without the app needing + * to use a global variable. If this isn't set, the pointer will be NULL in + * future entry points. + * + * If this function returns SDL_APP_CONTINUE, the app will proceed to normal + * operation, and will begin receiving repeated calls to SDL_AppIterate and + * SDL_AppEvent for the life of the program. If this function returns + * SDL_APP_FAILURE, SDL will call SDL_AppQuit and terminate the process with + * an exit code that reports an error to the platform. If it returns + * SDL_APP_SUCCESS, SDL calls SDL_AppQuit and terminates with an exit code + * that reports success to the platform. + * + * This function is called by SDL on the main thread. + * + * \param appstate a place where the app can optionally store a pointer for + * future use. + * \param argc the standard ANSI C main's argc; number of elements in `argv`. + * \param argv the standard ANSI C main's argv; array of command line + * arguments. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppIterate + * \sa SDL_AppEvent + * \sa SDL_AppQuit + */ +extern SDLMAIN_DECLSPEC SDL_AppResult SDLCALL SDL_AppInit(void **appstate, int argc, char *argv[]); + +/** + * App-implemented iteration entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called repeatedly by SDL after SDL_AppInit returns 0. The + * function should operate as a single iteration the program's primary loop; + * it should update whatever state it needs and draw a new frame of video, + * usually. + * + * On some platforms, this function will be called at the refresh rate of the + * display (which might change during the life of your app!). There are no + * promises made about what frequency this function might run at. You should + * use SDL's timer functions if you need to see how much time has passed since + * the last iteration. + * + * There is no need to process the SDL event queue during this function; SDL + * will send events as they arrive in SDL_AppEvent, and in most cases the + * event queue will be empty when this function runs anyhow. + * + * This function should not go into an infinite mainloop; it should do one + * iteration of whatever the program does and return. + * + * The `appstate` parameter is an optional pointer provided by the app during + * SDL_AppInit(). If the app never provided a pointer, this will be NULL. + * + * If this function returns SDL_APP_CONTINUE, the app will continue normal + * operation, receiving repeated calls to SDL_AppIterate and SDL_AppEvent for + * the life of the program. If this function returns SDL_APP_FAILURE, SDL will + * call SDL_AppQuit and terminate the process with an exit code that reports + * an error to the platform. If it returns SDL_APP_SUCCESS, SDL calls + * SDL_AppQuit and terminates with an exit code that reports success to the + * platform. + * + * This function is called by SDL on the main thread. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \threadsafety This function may get called concurrently with SDL_AppEvent() + * for events not pushed on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppInit + * \sa SDL_AppEvent + */ +extern SDLMAIN_DECLSPEC SDL_AppResult SDLCALL SDL_AppIterate(void *appstate); + +/** + * App-implemented event entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called as needed by SDL after SDL_AppInit returns + * SDL_APP_CONTINUE. It is called once for each new event. + * + * There is (currently) no guarantee about what thread this will be called + * from; whatever thread pushes an event onto SDL's queue will trigger this + * function. SDL is responsible for pumping the event queue between each call + * to SDL_AppIterate, so in normal operation one should only get events in a + * serial fashion, but be careful if you have a thread that explicitly calls + * SDL_PushEvent. SDL itself will push events to the queue on the main thread. + * + * Events sent to this function are not owned by the app; if you need to save + * the data, you should copy it. + * + * This function should not go into an infinite mainloop; it should handle the + * provided event appropriately and return. + * + * The `appstate` parameter is an optional pointer provided by the app during + * SDL_AppInit(). If the app never provided a pointer, this will be NULL. + * + * If this function returns SDL_APP_CONTINUE, the app will continue normal + * operation, receiving repeated calls to SDL_AppIterate and SDL_AppEvent for + * the life of the program. If this function returns SDL_APP_FAILURE, SDL will + * call SDL_AppQuit and terminate the process with an exit code that reports + * an error to the platform. If it returns SDL_APP_SUCCESS, SDL calls + * SDL_AppQuit and terminates with an exit code that reports success to the + * platform. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param event the new event for the app to examine. + * \returns SDL_APP_FAILURE to terminate with an error, SDL_APP_SUCCESS to + * terminate with success, SDL_APP_CONTINUE to continue. + * + * \threadsafety This function may get called concurrently with + * SDL_AppIterate() or SDL_AppQuit() for events not pushed from + * the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppInit + * \sa SDL_AppIterate + */ +extern SDLMAIN_DECLSPEC SDL_AppResult SDLCALL SDL_AppEvent(void *appstate, SDL_Event *event); + +/** + * App-implemented deinit entry point for SDL_MAIN_USE_CALLBACKS apps. + * + * Apps implement this function when using SDL_MAIN_USE_CALLBACKS. If using a + * standard "main" function, you should not supply this. + * + * This function is called once by SDL before terminating the program. + * + * This function will be called no matter what, even if SDL_AppInit requests + * termination. + * + * This function should not go into an infinite mainloop; it should + * deinitialize any resources necessary, perform whatever shutdown activities, + * and return. + * + * You do not need to call SDL_Quit() in this function, as SDL will call it + * after this function returns and before the process terminates, but it is + * safe to do so. + * + * The `appstate` parameter is an optional pointer provided by the app during + * SDL_AppInit(). If the app never provided a pointer, this will be NULL. This + * function call is the last time this pointer will be provided, so any + * resources to it should be cleaned up here. + * + * This function is called by SDL on the main thread. + * + * \param appstate an optional pointer, provided by the app in SDL_AppInit. + * \param result the result code that terminated the app (success or failure). + * + * \threadsafety SDL_AppEvent() may get called concurrently with this function + * if other threads that push events are still active. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AppInit + */ +extern SDLMAIN_DECLSPEC void SDLCALL SDL_AppQuit(void *appstate, SDL_AppResult result); + +#endif /* SDL_MAIN_USE_CALLBACKS */ + + +/** + * The prototype for the application's main() function + * + * \param argc an ANSI-C style main function's argc. + * \param argv an ANSI-C style main function's argv. + * \returns an ANSI-C main return code; generally 0 is considered successful + * program completion, and small non-zero values are considered + * errors. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef int (SDLCALL *SDL_main_func)(int argc, char *argv[]); + +/** + * An app-supplied function for program entry. + * + * Apps do not directly create this function; they should create a standard + * ANSI-C `main` function instead. If SDL needs to insert some startup code + * before `main` runs, or the platform doesn't actually _use_ a function + * called "main", SDL will do some macro magic to redefine `main` to + * `SDL_main` and provide its own `main`. + * + * Apps should include `SDL_main.h` in the same file as their `main` function, + * and they should not use that symbol for anything else in that file, as it + * might get redefined. + * + * This function is only provided by the app if it isn't using + * SDL_MAIN_USE_CALLBACKS. + * + * Program startup is a surprisingly complex topic. Please see + * [README/main-functions](README/main-functions), (or + * docs/README-main-functions.md in the source tree) for a more detailed + * explanation. + * + * \param argc an ANSI-C style main function's argc. + * \param argv an ANSI-C style main function's argv. + * \returns an ANSI-C main return code; generally 0 is considered successful + * program completion, and small non-zero values are considered + * errors. + * + * \threadsafety This is the program entry point. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDLMAIN_DECLSPEC int SDLCALL SDL_main(int argc, char *argv[]); + +/** + * Circumvent failure of SDL_Init() when not using SDL_main() as an entry + * point. + * + * This function is defined in SDL_main.h, along with the preprocessor rule to + * redefine main() as SDL_main(). Thus to ensure that your main() function + * will not be changed it is necessary to define SDL_MAIN_HANDLED before + * including SDL.h. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Init + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetMainReady(void); + +/** + * Initializes and launches an SDL application, by doing platform-specific + * initialization before calling your mainFunction and cleanups after it + * returns, if that is needed for a specific platform, otherwise it just calls + * mainFunction. + * + * You can use this if you want to use your own main() implementation without + * using SDL_main (like when using SDL_MAIN_HANDLED). When using this, you do + * *not* need SDL_SetMainReady(). + * + * \param argc the argc parameter from the application's main() function, or 0 + * if the platform's main-equivalent has no argc. + * \param argv the argv parameter from the application's main() function, or + * NULL if the platform's main-equivalent has no argv. + * \param mainFunction your SDL app's C-style main(). NOT the function you're + * calling this from! Its name doesn't matter; it doesn't + * literally have to be `main`. + * \param reserved should be NULL (reserved for future use, will probably be + * platform-specific then). + * \returns the return value from mainFunction: 0 on success, otherwise + * failure; SDL_GetError() might have more information on the + * failure. + * + * \threadsafety Generally this is called once, near startup, from the + * process's initial thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_RunApp(int argc, char *argv[], SDL_main_func mainFunction, void *reserved); + +/** + * An entry point for SDL's use in SDL_MAIN_USE_CALLBACKS. + * + * Generally, you should not call this function directly. This only exists to + * hand off work into SDL as soon as possible, where it has a lot more control + * and functionality available, and make the inline code in SDL_main.h as + * small as possible. + * + * Not all platforms use this, it's actual use is hidden in a magic + * header-only library, and you should not call this directly unless you + * _really_ know what you're doing. + * + * \param argc standard Unix main argc. + * \param argv standard Unix main argv. + * \param appinit the application's SDL_AppInit function. + * \param appiter the application's SDL_AppIterate function. + * \param appevent the application's SDL_AppEvent function. + * \param appquit the application's SDL_AppQuit function. + * \returns standard Unix main return value. + * + * \threadsafety It is not safe to call this anywhere except as the only + * function call in SDL_main. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_EnterAppMainCallbacks(int argc, char *argv[], SDL_AppInit_func appinit, SDL_AppIterate_func appiter, SDL_AppEvent_func appevent, SDL_AppQuit_func appquit); + + +#if defined(SDL_PLATFORM_WINDOWS) + +/** + * Register a win32 window class for SDL's use. + * + * This can be called to set the application window class at startup. It is + * safe to call this multiple times, as long as every call is eventually + * paired with a call to SDL_UnregisterApp, but a second registration attempt + * while a previous registration is still active will be ignored, other than + * to increment a counter. + * + * Most applications do not need to, and should not, call this directly; SDL + * will call it when initializing the video subsystem. + * + * \param name the window class name, in UTF-8 encoding. If NULL, SDL + * currently uses "SDL_app" but this isn't guaranteed. + * \param style the value to use in WNDCLASSEX::style. If `name` is NULL, SDL + * currently uses `(CS_BYTEALIGNCLIENT | CS_OWNDC)` regardless of + * what is specified here. + * \param hInst the HINSTANCE to use in WNDCLASSEX::hInstance. If zero, SDL + * will use `GetModuleHandle(NULL)` instead. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RegisterApp(const char *name, Uint32 style, void *hInst); + +/** + * Deregister the win32 window class from an SDL_RegisterApp call. + * + * This can be called to undo the effects of SDL_RegisterApp. + * + * Most applications do not need to, and should not, call this directly; SDL + * will call it when deinitializing the video subsystem. + * + * It is safe to call this multiple times, as long as every call is eventually + * paired with a prior call to SDL_RegisterApp. The window class will only be + * deregistered when the registration counter in SDL_RegisterApp decrements to + * zero through calls to this function. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnregisterApp(void); + +#endif /* defined(SDL_PLATFORM_WINDOWS) */ + +/** + * Callback from the application to let the suspend continue. + * + * This function is only needed for Xbox GDK support; all other platforms will + * do nothing and set an "unsupported" error message. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_GDKSuspendComplete(void); + +#ifdef __cplusplus +} +#endif + +#include + +#if !defined(SDL_MAIN_HANDLED) && !defined(SDL_MAIN_NOIMPL) + /* include header-only SDL_main implementations */ + #if defined(SDL_MAIN_USE_CALLBACKS) || defined(SDL_MAIN_NEEDED) || defined(SDL_MAIN_AVAILABLE) + /* platforms which main (-equivalent) can be implemented in plain C */ + #include + #endif +#endif + +#endif /* SDL_main_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_main_impl.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_main_impl.h new file mode 100644 index 0000000..14ebb42 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_main_impl.h @@ -0,0 +1,151 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Main */ + +#ifndef SDL_main_impl_h_ +#define SDL_main_impl_h_ + +#ifndef SDL_main_h_ +#error "This header should not be included directly, but only via SDL_main.h!" +#endif + +/* if someone wants to include SDL_main.h but doesn't want the main handing magic, + (maybe to call SDL_RegisterApp()) they can #define SDL_MAIN_HANDLED first. + SDL_MAIN_NOIMPL is for SDL-internal usage (only affects implementation, + not definition of SDL_MAIN_AVAILABLE etc in SDL_main.h) and if the user wants + to have the SDL_main implementation (from this header) in another source file + than their main() function, for example if SDL_main requires C++ + and main() is implemented in plain C */ +#if !defined(SDL_MAIN_HANDLED) && !defined(SDL_MAIN_NOIMPL) + + /* the implementations below must be able to use the implement real main(), nothing renamed + (the user's main() will be renamed to SDL_main so it can be called from here) */ + #ifdef main + #undef main + #endif + + #ifdef SDL_MAIN_USE_CALLBACKS + + #if 0 + /* currently there are no platforms that _need_ a magic entry point here + for callbacks, but if one shows up, implement it here. */ + + #else /* use a standard SDL_main, which the app SHOULD NOT ALSO SUPPLY. */ + + /* this define makes the normal SDL_main entry point stuff work...we just provide SDL_main() instead of the app. */ + #define SDL_MAIN_CALLBACK_STANDARD 1 + + int SDL_main(int argc, char **argv) + { + return SDL_EnterAppMainCallbacks(argc, argv, SDL_AppInit, SDL_AppIterate, SDL_AppEvent, SDL_AppQuit); + } + + #endif /* platform-specific tests */ + + #endif /* SDL_MAIN_USE_CALLBACKS */ + + + /* set up the usual SDL_main stuff if we're not using callbacks or if we are but need the normal entry point, + unless the real entry point needs to be somewhere else entirely, like Android where it's in Java code */ + #if (!defined(SDL_MAIN_USE_CALLBACKS) || defined(SDL_MAIN_CALLBACK_STANDARD)) && !defined(SDL_MAIN_EXPORTED) + + #if defined(SDL_PLATFORM_PRIVATE_MAIN) + /* Private platforms may have their own ideas about entry points. */ + #include "SDL_main_impl_private.h" + + #elif defined(SDL_PLATFORM_WINDOWS) + + /* these defines/typedefs are needed for the WinMain() definition */ + #ifndef WINAPI + #define WINAPI __stdcall + #endif + + typedef struct HINSTANCE__ * HINSTANCE; + typedef char *LPSTR; + typedef wchar_t *PWSTR; + + /* The VC++ compiler needs main/wmain defined, but not for GDK */ + #if defined(_MSC_VER) && !defined(SDL_PLATFORM_GDK) + + /* This is where execution begins [console apps] */ + #if defined(UNICODE) && UNICODE + int wmain(int argc, wchar_t *wargv[], wchar_t *wenvp) + { + (void)argc; + (void)wargv; + (void)wenvp; + return SDL_RunApp(0, NULL, SDL_main, NULL); + } + #else /* ANSI */ + int main(int argc, char *argv[]) + { + (void)argc; + (void)argv; + return SDL_RunApp(0, NULL, SDL_main, NULL); + } + #endif /* UNICODE */ + + #endif /* _MSC_VER && ! SDL_PLATFORM_GDK */ + + /* This is where execution begins [windowed apps and GDK] */ + + #ifdef __cplusplus + extern "C" { + #endif + + #if defined(UNICODE) && UNICODE + int WINAPI wWinMain(HINSTANCE hInst, HINSTANCE hPrev, PWSTR szCmdLine, int sw) + #else /* ANSI */ + int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR szCmdLine, int sw) + #endif + { + (void)hInst; + (void)hPrev; + (void)szCmdLine; + (void)sw; + return SDL_RunApp(0, NULL, SDL_main, NULL); + } + + #ifdef __cplusplus + } /* extern "C" */ + #endif + + /* end of SDL_PLATFORM_WINDOWS impls */ + + #else /* platforms that use a standard main() and just call SDL_RunApp(), like iOS and 3DS */ + int main(int argc, char *argv[]) + { + return SDL_RunApp(argc, argv, SDL_main, NULL); + } + + /* end of impls for standard-conforming platforms */ + + #endif /* SDL_PLATFORM_WIN32 etc */ + + #endif /* !defined(SDL_MAIN_USE_CALLBACKS) || defined(SDL_MAIN_CALLBACK_STANDARD) */ + + /* rename users main() function to SDL_main() so it can be called from the wrappers above */ + #define main SDL_main + +#endif /* SDL_MAIN_HANDLED */ + +#endif /* SDL_main_impl_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_messagebox.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_messagebox.h new file mode 100644 index 0000000..365ae36 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_messagebox.h @@ -0,0 +1,226 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMessagebox + * + * SDL offers a simple message box API, which is useful for simple alerts, + * such as informing the user when something fatal happens at startup without + * the need to build a UI for it (or informing the user _before_ your UI is + * ready). + * + * These message boxes are native system dialogs where possible. + * + * There is both a customizable function (SDL_ShowMessageBox()) that offers + * lots of options for what to display and reports on what choice the user + * made, and also a much-simplified version (SDL_ShowSimpleMessageBox()), + * merely takes a text message and title, and waits until the user presses a + * single "OK" UI button. Often, this is all that is necessary. + */ + +#ifndef SDL_messagebox_h_ +#define SDL_messagebox_h_ + +#include +#include +#include /* For SDL_Window */ + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Message box flags. + * + * If supported will display warning icon, etc. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_MessageBoxFlags; + +#define SDL_MESSAGEBOX_ERROR 0x00000010u /**< error dialog */ +#define SDL_MESSAGEBOX_WARNING 0x00000020u /**< warning dialog */ +#define SDL_MESSAGEBOX_INFORMATION 0x00000040u /**< informational dialog */ +#define SDL_MESSAGEBOX_BUTTONS_LEFT_TO_RIGHT 0x00000080u /**< buttons placed left to right */ +#define SDL_MESSAGEBOX_BUTTONS_RIGHT_TO_LEFT 0x00000100u /**< buttons placed right to left */ + +/** + * SDL_MessageBoxButtonData flags. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_MessageBoxButtonFlags; + +#define SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT 0x00000001u /**< Marks the default button when return is hit */ +#define SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT 0x00000002u /**< Marks the default button when escape is hit */ + +/** + * Individual button data. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxButtonData +{ + SDL_MessageBoxButtonFlags flags; + int buttonID; /**< User defined button id (value returned via SDL_ShowMessageBox) */ + const char *text; /**< The UTF-8 button text */ +} SDL_MessageBoxButtonData; + +/** + * RGB value used in a message box color scheme + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxColor +{ + Uint8 r, g, b; +} SDL_MessageBoxColor; + +/** + * An enumeration of indices inside the colors array of + * SDL_MessageBoxColorScheme. + */ +typedef enum SDL_MessageBoxColorType +{ + SDL_MESSAGEBOX_COLOR_BACKGROUND, + SDL_MESSAGEBOX_COLOR_TEXT, + SDL_MESSAGEBOX_COLOR_BUTTON_BORDER, + SDL_MESSAGEBOX_COLOR_BUTTON_BACKGROUND, + SDL_MESSAGEBOX_COLOR_BUTTON_SELECTED, + SDL_MESSAGEBOX_COLOR_COUNT /**< Size of the colors array of SDL_MessageBoxColorScheme. */ +} SDL_MessageBoxColorType; + +/** + * A set of colors to use for message box dialogs + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxColorScheme +{ + SDL_MessageBoxColor colors[SDL_MESSAGEBOX_COLOR_COUNT]; +} SDL_MessageBoxColorScheme; + +/** + * MessageBox structure containing title, text, window, etc. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_MessageBoxData +{ + SDL_MessageBoxFlags flags; + SDL_Window *window; /**< Parent window, can be NULL */ + const char *title; /**< UTF-8 title */ + const char *message; /**< UTF-8 message text */ + + int numbuttons; + const SDL_MessageBoxButtonData *buttons; + + const SDL_MessageBoxColorScheme *colorScheme; /**< SDL_MessageBoxColorScheme, can be NULL to use system settings */ +} SDL_MessageBoxData; + +/** + * Create a modal message box. + * + * If your needs aren't complex, it might be easier to use + * SDL_ShowSimpleMessageBox. + * + * This function should be called on the thread that created the parent + * window, or on the main thread if the messagebox has no parent. It will + * block execution of that thread until the user clicks a button or closes the + * messagebox. + * + * This function may be called at any time, even before SDL_Init(). This makes + * it useful for reporting errors like a failure to create a renderer or + * OpenGL context. + * + * On X11, SDL rolls its own dialog box with X11 primitives instead of a + * formal toolkit like GTK+ or Qt. + * + * Note that if SDL_Init() would fail because there isn't any available video + * target, this function is likely to fail for the same reasons. If this is a + * concern, check the return value from this function and fall back to writing + * to stderr if you can. + * + * \param messageboxdata the SDL_MessageBoxData structure with title, text and + * other options. + * \param buttonid the pointer to which user id of hit button should be + * copied. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShowSimpleMessageBox + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid); + +/** + * Display a simple modal message box. + * + * If your needs aren't complex, this function is preferred over + * SDL_ShowMessageBox. + * + * `flags` may be any of the following: + * + * - `SDL_MESSAGEBOX_ERROR`: error dialog + * - `SDL_MESSAGEBOX_WARNING`: warning dialog + * - `SDL_MESSAGEBOX_INFORMATION`: informational dialog + * + * This function should be called on the thread that created the parent + * window, or on the main thread if the messagebox has no parent. It will + * block execution of that thread until the user clicks a button or closes the + * messagebox. + * + * This function may be called at any time, even before SDL_Init(). This makes + * it useful for reporting errors like a failure to create a renderer or + * OpenGL context. + * + * On X11, SDL rolls its own dialog box with X11 primitives instead of a + * formal toolkit like GTK+ or Qt. + * + * Note that if SDL_Init() would fail because there isn't any available video + * target, this function is likely to fail for the same reasons. If this is a + * concern, check the return value from this function and fall back to writing + * to stderr if you can. + * + * \param flags an SDL_MessageBoxFlags value. + * \param title UTF-8 title text. + * \param message UTF-8 message text. + * \param window the parent window, or NULL for no parent. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShowMessageBox + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowSimpleMessageBox(SDL_MessageBoxFlags flags, const char *title, const char *message, SDL_Window *window); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_messagebox_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_metal.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_metal.h new file mode 100644 index 0000000..14b1bc8 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_metal.h @@ -0,0 +1,107 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMetal + * + * Functions to creating Metal layers and views on SDL windows. + * + * This provides some platform-specific glue for Apple platforms. Most macOS + * and iOS apps can use SDL without these functions, but this API they can be + * useful for specific OS-level integration tasks. + */ + +#ifndef SDL_metal_h_ +#define SDL_metal_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A handle to a CAMetalLayer-backed NSView (macOS) or UIView (iOS/tvOS). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_MetalView; + +/** + * \name Metal support functions + */ +/* @{ */ + +/** + * Create a CAMetalLayer-backed NSView/UIView and attach it to the specified + * window. + * + * On macOS, this does *not* associate a MTLDevice with the CAMetalLayer on + * its own. It is up to user code to do that. + * + * The returned handle can be casted directly to a NSView or UIView. To access + * the backing CAMetalLayer, call SDL_Metal_GetLayer(). + * + * \param window the window. + * \returns handle NSView or UIView. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Metal_DestroyView + * \sa SDL_Metal_GetLayer + */ +extern SDL_DECLSPEC SDL_MetalView SDLCALL SDL_Metal_CreateView(SDL_Window *window); + +/** + * Destroy an existing SDL_MetalView object. + * + * This should be called before SDL_DestroyWindow, if SDL_Metal_CreateView was + * called after SDL_CreateWindow. + * + * \param view the SDL_MetalView object. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Metal_CreateView + */ +extern SDL_DECLSPEC void SDLCALL SDL_Metal_DestroyView(SDL_MetalView view); + +/** + * Get a pointer to the backing CAMetalLayer for the given view. + * + * \param view the SDL_MetalView object. + * \returns a pointer. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_Metal_GetLayer(SDL_MetalView view); + +/* @} *//* Metal support functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_metal_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_misc.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_misc.h new file mode 100644 index 0000000..3dd6fcd --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_misc.h @@ -0,0 +1,78 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMisc + * + * SDL API functions that don't fit elsewhere. + */ + +#ifndef SDL_misc_h_ +#define SDL_misc_h_ + +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Open a URL/URI in the browser or other appropriate external application. + * + * Open a URL in a separate, system-provided application. How this works will + * vary wildly depending on the platform. This will likely launch what makes + * sense to handle a specific URL's protocol (a web browser for `http://`, + * etc), but it might also be able to launch file managers for directories and + * other things. + * + * What happens when you open a URL varies wildly as well: your game window + * may lose focus (and may or may not lose focus if your game was fullscreen + * or grabbing input at the time). On mobile devices, your app will likely + * move to the background or your process might be paused. Any given platform + * may or may not handle a given URL. + * + * If this is unimplemented (or simply unavailable) for a platform, this will + * fail with an error. A successful result does not mean the URL loaded, just + * that we launched _something_ to handle it (or at least believe we did). + * + * All this to say: this function can be useful, but you should definitely + * test it on every platform you target. + * + * \param url a valid URL/URI to open. Use `file:///full/path/to/file` for + * local files, if supported. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_OpenURL(const char *url); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_misc_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_mouse.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_mouse.h new file mode 100644 index 0000000..864135d --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_mouse.h @@ -0,0 +1,689 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryMouse + * + * Any GUI application has to deal with the mouse, and SDL provides functions + * to manage mouse input and the displayed cursor. + * + * Most interactions with the mouse will come through the event subsystem. + * Moving a mouse generates an SDL_EVENT_MOUSE_MOTION event, pushing a button + * generates SDL_EVENT_MOUSE_BUTTON_DOWN, etc, but one can also query the + * current state of the mouse at any time with SDL_GetMouseState(). + * + * For certain games, it's useful to disassociate the mouse cursor from mouse + * input. An FPS, for example, would not want the player's motion to stop as + * the mouse hits the edge of the window. For these scenarios, use + * SDL_SetWindowRelativeMouseMode(), which hides the cursor, grabs mouse input + * to the window, and reads mouse input no matter how far it moves. + * + * Games that want the system to track the mouse but want to draw their own + * cursor can use SDL_HideCursor() and SDL_ShowCursor(). It might be more + * efficient to let the system manage the cursor, if possible, using + * SDL_SetCursor() with a custom image made through SDL_CreateColorCursor(), + * or perhaps just a specific system cursor from SDL_CreateSystemCursor(). + * + * SDL can, on many platforms, differentiate between multiple connected mice, + * allowing for interesting input scenarios and multiplayer games. They can be + * enumerated with SDL_GetMice(), and SDL will send SDL_EVENT_MOUSE_ADDED and + * SDL_EVENT_MOUSE_REMOVED events as they are connected and unplugged. + * + * Since many apps only care about basic mouse input, SDL offers a virtual + * mouse device for touch and pen input, which often can make a desktop + * application work on a touchscreen phone without any code changes. Apps that + * care about touch/pen separately from mouse input should filter out events + * with a `which` field of SDL_TOUCH_MOUSEID/SDL_PEN_MOUSEID. + */ + +#ifndef SDL_mouse_h_ +#define SDL_mouse_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a mouse for the time it is connected to the system, + * and is never reused for the lifetime of the application. + * + * If the mouse is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_MouseID; + +/** + * The structure used to identify an SDL cursor. + * + * This is opaque data. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Cursor SDL_Cursor; + +/** + * Cursor types for SDL_CreateSystemCursor(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_SystemCursor +{ + SDL_SYSTEM_CURSOR_DEFAULT, /**< Default cursor. Usually an arrow. */ + SDL_SYSTEM_CURSOR_TEXT, /**< Text selection. Usually an I-beam. */ + SDL_SYSTEM_CURSOR_WAIT, /**< Wait. Usually an hourglass or watch or spinning ball. */ + SDL_SYSTEM_CURSOR_CROSSHAIR, /**< Crosshair. */ + SDL_SYSTEM_CURSOR_PROGRESS, /**< Program is busy but still interactive. Usually it's WAIT with an arrow. */ + SDL_SYSTEM_CURSOR_NWSE_RESIZE, /**< Double arrow pointing northwest and southeast. */ + SDL_SYSTEM_CURSOR_NESW_RESIZE, /**< Double arrow pointing northeast and southwest. */ + SDL_SYSTEM_CURSOR_EW_RESIZE, /**< Double arrow pointing west and east. */ + SDL_SYSTEM_CURSOR_NS_RESIZE, /**< Double arrow pointing north and south. */ + SDL_SYSTEM_CURSOR_MOVE, /**< Four pointed arrow pointing north, south, east, and west. */ + SDL_SYSTEM_CURSOR_NOT_ALLOWED, /**< Not permitted. Usually a slashed circle or crossbones. */ + SDL_SYSTEM_CURSOR_POINTER, /**< Pointer that indicates a link. Usually a pointing hand. */ + SDL_SYSTEM_CURSOR_NW_RESIZE, /**< Window resize top-left. This may be a single arrow or a double arrow like NWSE_RESIZE. */ + SDL_SYSTEM_CURSOR_N_RESIZE, /**< Window resize top. May be NS_RESIZE. */ + SDL_SYSTEM_CURSOR_NE_RESIZE, /**< Window resize top-right. May be NESW_RESIZE. */ + SDL_SYSTEM_CURSOR_E_RESIZE, /**< Window resize right. May be EW_RESIZE. */ + SDL_SYSTEM_CURSOR_SE_RESIZE, /**< Window resize bottom-right. May be NWSE_RESIZE. */ + SDL_SYSTEM_CURSOR_S_RESIZE, /**< Window resize bottom. May be NS_RESIZE. */ + SDL_SYSTEM_CURSOR_SW_RESIZE, /**< Window resize bottom-left. May be NESW_RESIZE. */ + SDL_SYSTEM_CURSOR_W_RESIZE, /**< Window resize left. May be EW_RESIZE. */ + SDL_SYSTEM_CURSOR_COUNT +} SDL_SystemCursor; + +/** + * Scroll direction types for the Scroll event + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_MouseWheelDirection +{ + SDL_MOUSEWHEEL_NORMAL, /**< The scroll direction is normal */ + SDL_MOUSEWHEEL_FLIPPED /**< The scroll direction is flipped / natural */ +} SDL_MouseWheelDirection; + +/** + * A bitmask of pressed mouse buttons, as reported by SDL_GetMouseState, etc. + * + * - Button 1: Left mouse button + * - Button 2: Middle mouse button + * - Button 3: Right mouse button + * - Button 4: Side mouse button 1 + * - Button 5: Side mouse button 2 + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetMouseState + * \sa SDL_GetGlobalMouseState + * \sa SDL_GetRelativeMouseState + */ +typedef Uint32 SDL_MouseButtonFlags; + +#define SDL_BUTTON_LEFT 1 +#define SDL_BUTTON_MIDDLE 2 +#define SDL_BUTTON_RIGHT 3 +#define SDL_BUTTON_X1 4 +#define SDL_BUTTON_X2 5 + +#define SDL_BUTTON_MASK(X) (1u << ((X)-1)) +#define SDL_BUTTON_LMASK SDL_BUTTON_MASK(SDL_BUTTON_LEFT) +#define SDL_BUTTON_MMASK SDL_BUTTON_MASK(SDL_BUTTON_MIDDLE) +#define SDL_BUTTON_RMASK SDL_BUTTON_MASK(SDL_BUTTON_RIGHT) +#define SDL_BUTTON_X1MASK SDL_BUTTON_MASK(SDL_BUTTON_X1) +#define SDL_BUTTON_X2MASK SDL_BUTTON_MASK(SDL_BUTTON_X2) + + +/* Function prototypes */ + +/** + * Return whether a mouse is currently connected. + * + * \returns true if a mouse is connected, false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMice + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasMouse(void); + +/** + * Get a list of currently connected mice. + * + * Note that this will include any device or virtual driver that includes + * mouse functionality, including some game controllers, KVM switches, etc. + * You should wait for input from a device before you consider it actively in + * use. + * + * \param count a pointer filled in with the number of mice returned, may be + * NULL. + * \returns a 0 terminated array of mouse instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMouseNameForID + * \sa SDL_HasMouse + */ +extern SDL_DECLSPEC SDL_MouseID * SDLCALL SDL_GetMice(int *count); + +/** + * Get the name of a mouse. + * + * This function returns "" if the mouse doesn't have a name. + * + * \param instance_id the mouse instance ID. + * \returns the name of the selected mouse, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMice + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetMouseNameForID(SDL_MouseID instance_id); + +/** + * Get the window which currently has mouse focus. + * + * \returns the window with mouse focus. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetMouseFocus(void); + +/** + * Query SDL's cache for the synchronous mouse button state and the + * window-relative SDL-cursor position. + * + * This function returns the cached synchronous state as SDL understands it + * from the last pump of the event queue. + * + * To query the platform for immediate asynchronous state, use + * SDL_GetGlobalMouseState. + * + * Passing non-NULL pointers to `x` or `y` will write the destination with + * respective x or y coordinates relative to the focused window. + * + * In Relative Mode, the SDL-cursor's position usually contradicts the + * platform-cursor's position as manually calculated from + * SDL_GetGlobalMouseState() and SDL_GetWindowPosition. + * + * \param x a pointer to receive the SDL-cursor's x-position from the focused + * window's top left corner, can be NULL if unused. + * \param y a pointer to receive the SDL-cursor's y-position from the focused + * window's top left corner, can be NULL if unused. + * \returns a 32-bit bitmask of the button state that can be bitwise-compared + * against the SDL_BUTTON_MASK(X) macro. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGlobalMouseState + * \sa SDL_GetRelativeMouseState + */ +extern SDL_DECLSPEC SDL_MouseButtonFlags SDLCALL SDL_GetMouseState(float *x, float *y); + +/** + * Query the platform for the asynchronous mouse button state and the + * desktop-relative platform-cursor position. + * + * This function immediately queries the platform for the most recent + * asynchronous state, more costly than retrieving SDL's cached state in + * SDL_GetMouseState(). + * + * Passing non-NULL pointers to `x` or `y` will write the destination with + * respective x or y coordinates relative to the desktop. + * + * In Relative Mode, the platform-cursor's position usually contradicts the + * SDL-cursor's position as manually calculated from SDL_GetMouseState() and + * SDL_GetWindowPosition. + * + * This function can be useful if you need to track the mouse outside of a + * specific window and SDL_CaptureMouse() doesn't fit your needs. For example, + * it could be useful if you need to track the mouse while dragging a window, + * where coordinates relative to a window might not be in sync at all times. + * + * \param x a pointer to receive the platform-cursor's x-position from the + * desktop's top left corner, can be NULL if unused. + * \param y a pointer to receive the platform-cursor's y-position from the + * desktop's top left corner, can be NULL if unused. + * \returns a 32-bit bitmask of the button state that can be bitwise-compared + * against the SDL_BUTTON_MASK(X) macro. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CaptureMouse + * \sa SDL_GetMouseState + * \sa SDL_GetGlobalMouseState + */ +extern SDL_DECLSPEC SDL_MouseButtonFlags SDLCALL SDL_GetGlobalMouseState(float *x, float *y); + +/** + * Query SDL's cache for the synchronous mouse button state and accumulated + * mouse delta since last call. + * + * This function returns the cached synchronous state as SDL understands it + * from the last pump of the event queue. + * + * To query the platform for immediate asynchronous state, use + * SDL_GetGlobalMouseState. + * + * Passing non-NULL pointers to `x` or `y` will write the destination with + * respective x or y deltas accumulated since the last call to this function + * (or since event initialization). + * + * This function is useful for reducing overhead by processing relative mouse + * inputs in one go per-frame instead of individually per-event, at the + * expense of losing the order between events within the frame (e.g. quickly + * pressing and releasing a button within the same frame). + * + * \param x a pointer to receive the x mouse delta accumulated since last + * call, can be NULL if unused. + * \param y a pointer to receive the y mouse delta accumulated since last + * call, can be NULL if unused. + * \returns a 32-bit bitmask of the button state that can be bitwise-compared + * against the SDL_BUTTON_MASK(X) macro. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMouseState + * \sa SDL_GetGlobalMouseState + */ +extern SDL_DECLSPEC SDL_MouseButtonFlags SDLCALL SDL_GetRelativeMouseState(float *x, float *y); + +/** + * Move the mouse cursor to the given position within the window. + * + * This function generates a mouse motion event if relative mode is not + * enabled. If relative mode is enabled, you can force mouse events for the + * warp by setting the SDL_HINT_MOUSE_RELATIVE_WARP_MOTION hint. + * + * Note that this function will appear to succeed, but not actually move the + * mouse when used over Microsoft Remote Desktop. + * + * \param window the window to move the mouse into, or NULL for the current + * mouse focus. + * \param x the x coordinate within the window. + * \param y the y coordinate within the window. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WarpMouseGlobal + */ +extern SDL_DECLSPEC void SDLCALL SDL_WarpMouseInWindow(SDL_Window *window, + float x, float y); + +/** + * Move the mouse to the given position in global screen space. + * + * This function generates a mouse motion event. + * + * A failure of this function usually means that it is unsupported by a + * platform. + * + * Note that this function will appear to succeed, but not actually move the + * mouse when used over Microsoft Remote Desktop. + * + * \param x the x coordinate. + * \param y the y coordinate. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WarpMouseInWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WarpMouseGlobal(float x, float y); + +/** + * Set relative mouse mode for a window. + * + * While the window has focus and relative mouse mode is enabled, the cursor + * is hidden, the mouse position is constrained to the window, and SDL will + * report continuous relative mouse motion even if the mouse is at the edge of + * the window. + * + * If you'd like to keep the mouse position fixed while in relative mode you + * can use SDL_SetWindowMouseRect(). If you'd like the cursor to be at a + * specific location when relative mode ends, you should use + * SDL_WarpMouseInWindow() before disabling relative mode. + * + * This function will flush any pending mouse motion for this window. + * + * \param window the window to change. + * \param enabled true to enable relative mode, false to disable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowRelativeMouseMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowRelativeMouseMode(SDL_Window *window, bool enabled); + +/** + * Query whether relative mouse mode is enabled for a window. + * + * \param window the window to query. + * \returns true if relative mode is enabled for a window or false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowRelativeMouseMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowRelativeMouseMode(SDL_Window *window); + +/** + * Capture the mouse and to track input outside an SDL window. + * + * Capturing enables your app to obtain mouse events globally, instead of just + * within your window. Not all video targets support this function. When + * capturing is enabled, the current window will get all mouse events, but + * unlike relative mode, no change is made to the cursor and it is not + * restrained to your window. + * + * This function may also deny mouse input to other windows--both those in + * your application and others on the system--so you should use this function + * sparingly, and in small bursts. For example, you might want to track the + * mouse while the user is dragging something, until the user releases a mouse + * button. It is not recommended that you capture the mouse for long periods + * of time, such as the entire time your app is running. For that, you should + * probably use SDL_SetWindowRelativeMouseMode() or SDL_SetWindowMouseGrab(), + * depending on your goals. + * + * While captured, mouse events still report coordinates relative to the + * current (foreground) window, but those coordinates may be outside the + * bounds of the window (including negative values). Capturing is only allowed + * for the foreground window. If the window loses focus while capturing, the + * capture will be disabled automatically. + * + * While capturing is enabled, the current window will have the + * `SDL_WINDOW_MOUSE_CAPTURE` flag set. + * + * Please note that SDL will attempt to "auto capture" the mouse while the + * user is pressing a button; this is to try and make mouse behavior more + * consistent between platforms, and deal with the common case of a user + * dragging the mouse outside of the window. This means that if you are + * calling SDL_CaptureMouse() only to deal with this situation, you do not + * have to (although it is safe to do so). If this causes problems for your + * app, you can disable auto capture by setting the + * `SDL_HINT_MOUSE_AUTO_CAPTURE` hint to zero. + * + * \param enabled true to enable capturing, false to disable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetGlobalMouseState + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CaptureMouse(bool enabled); + +/** + * Create a cursor using the specified bitmap data and mask (in MSB format). + * + * `mask` has to be in MSB (Most Significant Bit) format. + * + * The cursor width (`w`) must be a multiple of 8 bits. + * + * The cursor is created in black and white according to the following: + * + * - data=0, mask=1: white + * - data=1, mask=1: black + * - data=0, mask=0: transparent + * - data=1, mask=0: inverted color if possible, black if not. + * + * Cursors created with this function must be freed with SDL_DestroyCursor(). + * + * If you want to have a color cursor, or create your cursor from an + * SDL_Surface, you should use SDL_CreateColorCursor(). Alternately, you can + * hide the cursor and draw your own as part of your game's rendering, but it + * will be bound to the framerate. + * + * Also, SDL_CreateSystemCursor() is available, which provides several + * readily-available system cursors to pick from. + * + * \param data the color value for each pixel of the cursor. + * \param mask the mask value for each pixel of the cursor. + * \param w the width of the cursor. + * \param h the height of the cursor. + * \param hot_x the x-axis offset from the left of the cursor image to the + * mouse x position, in the range of 0 to `w` - 1. + * \param hot_y the y-axis offset from the top of the cursor image to the + * mouse y position, in the range of 0 to `h` - 1. + * \returns a new cursor with the specified parameters on success or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateColorCursor + * \sa SDL_CreateSystemCursor + * \sa SDL_DestroyCursor + * \sa SDL_SetCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_CreateCursor(const Uint8 *data, + const Uint8 *mask, + int w, int h, int hot_x, + int hot_y); + +/** + * Create a color cursor. + * + * If this function is passed a surface with alternate representations, the + * surface will be interpreted as the content to be used for 100% display + * scale, and the alternate representations will be used for high DPI + * situations. For example, if the original surface is 32x32, then on a 2x + * macOS display or 200% display scale on Windows, a 64x64 version of the + * image will be used, if available. If a matching version of the image isn't + * available, the closest larger size image will be downscaled to the + * appropriate size and be used instead, if available. Otherwise, the closest + * smaller image will be upscaled and be used instead. + * + * \param surface an SDL_Surface structure representing the cursor image. + * \param hot_x the x position of the cursor hot spot. + * \param hot_y the y position of the cursor hot spot. + * \returns the new cursor on success or NULL on failure; call SDL_GetError() + * for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateCursor + * \sa SDL_CreateSystemCursor + * \sa SDL_DestroyCursor + * \sa SDL_SetCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_CreateColorCursor(SDL_Surface *surface, + int hot_x, + int hot_y); + +/** + * Create a system cursor. + * + * \param id an SDL_SystemCursor enum value. + * \returns a cursor on success or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_CreateSystemCursor(SDL_SystemCursor id); + +/** + * Set the active cursor. + * + * This function sets the currently active cursor to the specified one. If the + * cursor is currently visible, the change will be immediately represented on + * the display. SDL_SetCursor(NULL) can be used to force cursor redraw, if + * this is desired for any reason. + * + * \param cursor a cursor to make active. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetCursor(SDL_Cursor *cursor); + +/** + * Get the active cursor. + * + * This function returns a pointer to the current cursor which is owned by the + * library. It is not necessary to free the cursor with SDL_DestroyCursor(). + * + * \returns the active cursor or NULL if there is no mouse. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetCursor + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_GetCursor(void); + +/** + * Get the default cursor. + * + * You do not have to call SDL_DestroyCursor() on the return value, but it is + * safe to do so. + * + * \returns the default cursor on success or NULL on failuree; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Cursor * SDLCALL SDL_GetDefaultCursor(void); + +/** + * Free a previously-created cursor. + * + * Use this function to free cursor resources created with SDL_CreateCursor(), + * SDL_CreateColorCursor() or SDL_CreateSystemCursor(). + * + * \param cursor the cursor to free. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateColorCursor + * \sa SDL_CreateCursor + * \sa SDL_CreateSystemCursor + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyCursor(SDL_Cursor *cursor); + +/** + * Show the cursor. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CursorVisible + * \sa SDL_HideCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowCursor(void); + +/** + * Hide the cursor. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CursorVisible + * \sa SDL_ShowCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HideCursor(void); + +/** + * Return whether the cursor is currently being shown. + * + * \returns `true` if the cursor is being shown, or `false` if the cursor is + * hidden. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HideCursor + * \sa SDL_ShowCursor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CursorVisible(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_mouse_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_mutex.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_mutex.h new file mode 100644 index 0000000..c88ec15 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_mutex.h @@ -0,0 +1,1073 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_mutex_h_ +#define SDL_mutex_h_ + +/** + * # CategoryMutex + * + * SDL offers several thread synchronization primitives. This document can't + * cover the complicated topic of thread safety, but reading up on what each + * of these primitives are, why they are useful, and how to correctly use them + * is vital to writing correct and safe multithreaded programs. + * + * - Mutexes: SDL_CreateMutex() + * - Read/Write locks: SDL_CreateRWLock() + * - Semaphores: SDL_CreateSemaphore() + * - Condition variables: SDL_CreateCondition() + * + * SDL also offers a datatype, SDL_InitState, which can be used to make sure + * only one thread initializes/deinitializes some resource that several + * threads might try to use for the first time simultaneously. + */ + +#include +#include +#include +#include + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Enable thread safety attributes, only with clang. + * + * The attributes can be safely erased when compiling with other compilers. + * + * To enable analysis, set these environment variables before running cmake: + * + * ```bash + * export CC=clang + * export CFLAGS="-DSDL_THREAD_SAFETY_ANALYSIS -Wthread-safety" + * ``` + */ +#define SDL_THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) + +#elif defined(SDL_THREAD_SAFETY_ANALYSIS) && defined(__clang__) && (!defined(SWIG)) +#define SDL_THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) +#else +#define SDL_THREAD_ANNOTATION_ATTRIBUTE__(x) /* no-op */ +#endif + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCOPED_CAPABILITY \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(scoped_lockable) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_GUARDED_BY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PT_GUARDED_BY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(pt_guarded_by(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRED_BEFORE(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquired_before(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRED_AFTER(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquired_after(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_REQUIRES(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(requires_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_REQUIRES_SHARED(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(requires_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRE(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquire_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ACQUIRE_SHARED(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(acquire_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RELEASE(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(release_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RELEASE_SHARED(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(release_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RELEASE_GENERIC(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(release_generic_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TRY_ACQUIRE(x, y) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_capability(x, y)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TRY_ACQUIRE_SHARED(x, y) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_shared_capability(x, y)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_EXCLUDES(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(locks_excluded(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ASSERT_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(assert_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ASSERT_SHARED_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(assert_shared_capability(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_RETURN_CAPABILITY(x) \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(lock_returned(x)) + +/** + * Wrapper around Clang thread safety analysis annotations. + * + * Please see https://clang.llvm.org/docs/ThreadSafetyAnalysis.html#mutex-h + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NO_THREAD_SAFETY_ANALYSIS \ + SDL_THREAD_ANNOTATION_ATTRIBUTE__(no_thread_safety_analysis) + +/******************************************************************************/ + + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * \name Mutex functions + */ +/* @{ */ + +/** + * A means to serialize access to a resource between threads. + * + * Mutexes (short for "mutual exclusion") are a synchronization primitive that + * allows exactly one thread to proceed at a time. + * + * Wikipedia has a thorough explanation of the concept: + * + * https://en.wikipedia.org/wiki/Mutex + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Mutex SDL_Mutex; + +/** + * Create a new mutex. + * + * All newly-created mutexes begin in the _unlocked_ state. + * + * Calls to SDL_LockMutex() will not return while the mutex is locked by + * another thread. See SDL_TryLockMutex() to attempt to lock without blocking. + * + * SDL mutexes are reentrant. + * + * \returns the initialized and unlocked mutex or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyMutex + * \sa SDL_LockMutex + * \sa SDL_TryLockMutex + * \sa SDL_UnlockMutex + */ +extern SDL_DECLSPEC SDL_Mutex * SDLCALL SDL_CreateMutex(void); + +/** + * Lock the mutex. + * + * This will block until the mutex is available, which is to say it is in the + * unlocked state and the OS has chosen the caller as the next thread to lock + * it. Of all threads waiting to lock the mutex, only one may do so at a time. + * + * It is legal for the owning thread to lock an already-locked mutex. It must + * unlock it the same number of times before it is actually made available for + * other threads in the system (this is known as a "recursive mutex"). + * + * This function does not fail; if mutex is NULL, it will return immediately + * having locked nothing. If the mutex is valid, this function will always + * block until it can lock the mutex, and return with it locked. + * + * \param mutex the mutex to lock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TryLockMutex + * \sa SDL_UnlockMutex + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockMutex(SDL_Mutex *mutex) SDL_ACQUIRE(mutex); + +/** + * Try to lock a mutex without blocking. + * + * This works just like SDL_LockMutex(), but if the mutex is not available, + * this function returns false immediately. + * + * This technique is useful if you need exclusive access to a resource but + * don't want to wait for it, and will return to it to try again later. + * + * This function returns true if passed a NULL mutex. + * + * \param mutex the mutex to try to lock. + * \returns true on success, false if the mutex would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockMutex + * \sa SDL_UnlockMutex + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockMutex(SDL_Mutex *mutex) SDL_TRY_ACQUIRE(0, mutex); + +/** + * Unlock the mutex. + * + * It is legal for the owning thread to lock an already-locked mutex. It must + * unlock it the same number of times before it is actually made available for + * other threads in the system (this is known as a "recursive mutex"). + * + * It is illegal to unlock a mutex that has not been locked by the current + * thread, and doing so results in undefined behavior. + * + * \param mutex the mutex to unlock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockMutex + * \sa SDL_TryLockMutex + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockMutex(SDL_Mutex *mutex) SDL_RELEASE(mutex); + +/** + * Destroy a mutex created with SDL_CreateMutex(). + * + * This function must be called on any mutex that is no longer needed. Failure + * to destroy a mutex will result in a system memory or resource leak. While + * it is safe to destroy a mutex that is _unlocked_, it is not safe to attempt + * to destroy a locked mutex, and may result in undefined behavior depending + * on the platform. + * + * \param mutex the mutex to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateMutex + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyMutex(SDL_Mutex *mutex); + +/* @} *//* Mutex functions */ + + +/** + * \name Read/write lock functions + */ +/* @{ */ + +/** + * A mutex that allows read-only threads to run in parallel. + * + * A rwlock is roughly the same concept as SDL_Mutex, but allows threads that + * request read-only access to all hold the lock at the same time. If a thread + * requests write access, it will block until all read-only threads have + * released the lock, and no one else can hold the thread (for reading or + * writing) at the same time as the writing thread. + * + * This can be more efficient in cases where several threads need to access + * data frequently, but changes to that data are rare. + * + * There are other rules that apply to rwlocks that don't apply to mutexes, + * about how threads are scheduled and when they can be recursively locked. + * These are documented in the other rwlock functions. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_RWLock SDL_RWLock; + +/** + * Create a new read/write lock. + * + * A read/write lock is useful for situations where you have multiple threads + * trying to access a resource that is rarely updated. All threads requesting + * a read-only lock will be allowed to run in parallel; if a thread requests a + * write lock, it will be provided exclusive access. This makes it safe for + * multiple threads to use a resource at the same time if they promise not to + * change it, and when it has to be changed, the rwlock will serve as a + * gateway to make sure those changes can be made safely. + * + * In the right situation, a rwlock can be more efficient than a mutex, which + * only lets a single thread proceed at a time, even if it won't be modifying + * the data. + * + * All newly-created read/write locks begin in the _unlocked_ state. + * + * Calls to SDL_LockRWLockForReading() and SDL_LockRWLockForWriting will not + * return while the rwlock is locked _for writing_ by another thread. See + * SDL_TryLockRWLockForReading() and SDL_TryLockRWLockForWriting() to attempt + * to lock without blocking. + * + * SDL read/write locks are only recursive for read-only locks! They are not + * guaranteed to be fair, or provide access in a FIFO manner! They are not + * guaranteed to favor writers. You may not lock a rwlock for both read-only + * and write access at the same time from the same thread (so you can't + * promote your read-only lock to a write lock without unlocking first). + * + * \returns the initialized and unlocked read/write lock or NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyRWLock + * \sa SDL_LockRWLockForReading + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC SDL_RWLock * SDLCALL SDL_CreateRWLock(void); + +/** + * Lock the read/write lock for _read only_ operations. + * + * This will block until the rwlock is available, which is to say it is not + * locked for writing by any other thread. Of all threads waiting to lock the + * rwlock, all may do so at the same time as long as they are requesting + * read-only access; if a thread wants to lock for writing, only one may do so + * at a time, and no other threads, read-only or not, may hold the lock at the + * same time. + * + * It is legal for the owning thread to lock an already-locked rwlock for + * reading. It must unlock it the same number of times before it is actually + * made available for other threads in the system (this is known as a + * "recursive rwlock"). + * + * Note that locking for writing is not recursive (this is only available to + * read-only locks). + * + * It is illegal to request a read-only lock from a thread that already holds + * the write lock. Doing so results in undefined behavior. Unlock the write + * lock before requesting a read-only lock. (But, of course, if you have the + * write lock, you don't need further locks to read in any case.) + * + * This function does not fail; if rwlock is NULL, it will return immediately + * having locked nothing. If the rwlock is valid, this function will always + * block until it can lock the mutex, and return with it locked. + * + * \param rwlock the read/write lock to lock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockRWLockForReading(SDL_RWLock *rwlock) SDL_ACQUIRE_SHARED(rwlock); + +/** + * Lock the read/write lock for _write_ operations. + * + * This will block until the rwlock is available, which is to say it is not + * locked for reading or writing by any other thread. Only one thread may hold + * the lock when it requests write access; all other threads, whether they + * also want to write or only want read-only access, must wait until the + * writer thread has released the lock. + * + * It is illegal for the owning thread to lock an already-locked rwlock for + * writing (read-only may be locked recursively, writing can not). Doing so + * results in undefined behavior. + * + * It is illegal to request a write lock from a thread that already holds a + * read-only lock. Doing so results in undefined behavior. Unlock the + * read-only lock before requesting a write lock. + * + * This function does not fail; if rwlock is NULL, it will return immediately + * having locked nothing. If the rwlock is valid, this function will always + * block until it can lock the mutex, and return with it locked. + * + * \param rwlock the read/write lock to lock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC void SDLCALL SDL_LockRWLockForWriting(SDL_RWLock *rwlock) SDL_ACQUIRE(rwlock); + +/** + * Try to lock a read/write lock _for reading_ without blocking. + * + * This works just like SDL_LockRWLockForReading(), but if the rwlock is not + * available, then this function returns false immediately. + * + * This technique is useful if you need access to a resource but don't want to + * wait for it, and will return to it to try again later. + * + * Trying to lock for read-only access can succeed if other threads are + * holding read-only locks, as this won't prevent access. + * + * This function returns true if passed a NULL rwlock. + * + * \param rwlock the rwlock to try to lock. + * \returns true on success, false if the lock would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockRWLockForReading(SDL_RWLock *rwlock) SDL_TRY_ACQUIRE_SHARED(0, rwlock); + +/** + * Try to lock a read/write lock _for writing_ without blocking. + * + * This works just like SDL_LockRWLockForWriting(), but if the rwlock is not + * available, then this function returns false immediately. + * + * This technique is useful if you need exclusive access to a resource but + * don't want to wait for it, and will return to it to try again later. + * + * It is illegal for the owning thread to lock an already-locked rwlock for + * writing (read-only may be locked recursively, writing can not). Doing so + * results in undefined behavior. + * + * It is illegal to request a write lock from a thread that already holds a + * read-only lock. Doing so results in undefined behavior. Unlock the + * read-only lock before requesting a write lock. + * + * This function returns true if passed a NULL rwlock. + * + * \param rwlock the rwlock to try to lock. + * \returns true on success, false if the lock would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_UnlockRWLock + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryLockRWLockForWriting(SDL_RWLock *rwlock) SDL_TRY_ACQUIRE(0, rwlock); + +/** + * Unlock the read/write lock. + * + * Use this function to unlock the rwlock, whether it was locked for read-only + * or write operations. + * + * It is legal for the owning thread to lock an already-locked read-only lock. + * It must unlock it the same number of times before it is actually made + * available for other threads in the system (this is known as a "recursive + * rwlock"). + * + * It is illegal to unlock a rwlock that has not been locked by the current + * thread, and doing so results in undefined behavior. + * + * \param rwlock the rwlock to unlock. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockRWLockForReading + * \sa SDL_LockRWLockForWriting + * \sa SDL_TryLockRWLockForReading + * \sa SDL_TryLockRWLockForWriting + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockRWLock(SDL_RWLock *rwlock) SDL_RELEASE_GENERIC(rwlock); + +/** + * Destroy a read/write lock created with SDL_CreateRWLock(). + * + * This function must be called on any read/write lock that is no longer + * needed. Failure to destroy a rwlock will result in a system memory or + * resource leak. While it is safe to destroy a rwlock that is _unlocked_, it + * is not safe to attempt to destroy a locked rwlock, and may result in + * undefined behavior depending on the platform. + * + * \param rwlock the rwlock to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRWLock + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyRWLock(SDL_RWLock *rwlock); + +/* @} *//* Read/write lock functions */ + + +/** + * \name Semaphore functions + */ +/* @{ */ + +/** + * A means to manage access to a resource, by count, between threads. + * + * Semaphores (specifically, "counting semaphores"), let X number of threads + * request access at the same time, each thread granted access decrementing a + * counter. When the counter reaches zero, future requests block until a prior + * thread releases their request, incrementing the counter again. + * + * Wikipedia has a thorough explanation of the concept: + * + * https://en.wikipedia.org/wiki/Semaphore_(programming) + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Semaphore SDL_Semaphore; + +/** + * Create a semaphore. + * + * This function creates a new semaphore and initializes it with the value + * `initial_value`. Each wait operation on the semaphore will atomically + * decrement the semaphore value and potentially block if the semaphore value + * is 0. Each post operation will atomically increment the semaphore value and + * wake waiting threads and allow them to retry the wait operation. + * + * \param initial_value the starting value of the semaphore. + * \returns a new semaphore or NULL on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySemaphore + * \sa SDL_SignalSemaphore + * \sa SDL_TryWaitSemaphore + * \sa SDL_GetSemaphoreValue + * \sa SDL_WaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC SDL_Semaphore * SDLCALL SDL_CreateSemaphore(Uint32 initial_value); + +/** + * Destroy a semaphore. + * + * It is not safe to destroy a semaphore if there are threads currently + * waiting on it. + * + * \param sem the semaphore to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSemaphore + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroySemaphore(SDL_Semaphore *sem); + +/** + * Wait until a semaphore has a positive value and then decrements it. + * + * This function suspends the calling thread until the semaphore pointed to by + * `sem` has a positive value, and then atomically decrement the semaphore + * value. + * + * This function is the equivalent of calling SDL_WaitSemaphoreTimeout() with + * a time length of -1. + * + * \param sem the semaphore wait on. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalSemaphore + * \sa SDL_TryWaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_WaitSemaphore(SDL_Semaphore *sem); + +/** + * See if a semaphore has a positive value and decrement it if it does. + * + * This function checks to see if the semaphore pointed to by `sem` has a + * positive value and atomically decrements the semaphore value if it does. If + * the semaphore doesn't have a positive value, the function immediately + * returns false. + * + * \param sem the semaphore to wait on. + * \returns true if the wait succeeds, false if the wait would block. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalSemaphore + * \sa SDL_WaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TryWaitSemaphore(SDL_Semaphore *sem); + +/** + * Wait until a semaphore has a positive value and then decrements it. + * + * This function suspends the calling thread until either the semaphore + * pointed to by `sem` has a positive value or the specified time has elapsed. + * If the call is successful it will atomically decrement the semaphore value. + * + * \param sem the semaphore to wait on. + * \param timeoutMS the length of the timeout, in milliseconds, or -1 to wait + * indefinitely. + * \returns true if the wait succeeds or false if the wait times out. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalSemaphore + * \sa SDL_TryWaitSemaphore + * \sa SDL_WaitSemaphore + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitSemaphoreTimeout(SDL_Semaphore *sem, Sint32 timeoutMS); + +/** + * Atomically increment a semaphore's value and wake waiting threads. + * + * \param sem the semaphore to increment. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TryWaitSemaphore + * \sa SDL_WaitSemaphore + * \sa SDL_WaitSemaphoreTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_SignalSemaphore(SDL_Semaphore *sem); + +/** + * Get the current value of a semaphore. + * + * \param sem the semaphore to query. + * \returns the current value of the semaphore. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetSemaphoreValue(SDL_Semaphore *sem); + +/* @} *//* Semaphore functions */ + + +/** + * \name Condition variable functions + */ +/* @{ */ + +/** + * A means to block multiple threads until a condition is satisfied. + * + * Condition variables, paired with an SDL_Mutex, let an app halt multiple + * threads until a condition has occurred, at which time the app can release + * one or all waiting threads. + * + * Wikipedia has a thorough explanation of the concept: + * + * https://en.wikipedia.org/wiki/Condition_variable + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Condition SDL_Condition; + +/** + * Create a condition variable. + * + * \returns a new condition variable or NULL on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_SignalCondition + * \sa SDL_WaitCondition + * \sa SDL_WaitConditionTimeout + * \sa SDL_DestroyCondition + */ +extern SDL_DECLSPEC SDL_Condition * SDLCALL SDL_CreateCondition(void); + +/** + * Destroy a condition variable. + * + * \param cond the condition variable to destroy. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateCondition + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyCondition(SDL_Condition *cond); + +/** + * Restart one of the threads that are waiting on the condition variable. + * + * \param cond the condition variable to signal. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_WaitCondition + * \sa SDL_WaitConditionTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_SignalCondition(SDL_Condition *cond); + +/** + * Restart all threads that are waiting on the condition variable. + * + * \param cond the condition variable to signal. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SignalCondition + * \sa SDL_WaitCondition + * \sa SDL_WaitConditionTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_BroadcastCondition(SDL_Condition *cond); + +/** + * Wait until a condition variable is signaled. + * + * This function unlocks the specified `mutex` and waits for another thread to + * call SDL_SignalCondition() or SDL_BroadcastCondition() on the condition + * variable `cond`. Once the condition variable is signaled, the mutex is + * re-locked and the function returns. + * + * The mutex must be locked before calling this function. Locking the mutex + * recursively (more than once) is not supported and leads to undefined + * behavior. + * + * This function is the equivalent of calling SDL_WaitConditionTimeout() with + * a time length of -1. + * + * \param cond the condition variable to wait on. + * \param mutex the mutex used to coordinate thread access. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_SignalCondition + * \sa SDL_WaitConditionTimeout + */ +extern SDL_DECLSPEC void SDLCALL SDL_WaitCondition(SDL_Condition *cond, SDL_Mutex *mutex); + +/** + * Wait until a condition variable is signaled or a certain time has passed. + * + * This function unlocks the specified `mutex` and waits for another thread to + * call SDL_SignalCondition() or SDL_BroadcastCondition() on the condition + * variable `cond`, or for the specified time to elapse. Once the condition + * variable is signaled or the time elapsed, the mutex is re-locked and the + * function returns. + * + * The mutex must be locked before calling this function. Locking the mutex + * recursively (more than once) is not supported and leads to undefined + * behavior. + * + * \param cond the condition variable to wait on. + * \param mutex the mutex used to coordinate thread access. + * \param timeoutMS the maximum time to wait, in milliseconds, or -1 to wait + * indefinitely. + * \returns true if the condition variable is signaled, false if the condition + * is not signaled in the allotted time. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BroadcastCondition + * \sa SDL_SignalCondition + * \sa SDL_WaitCondition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitConditionTimeout(SDL_Condition *cond, + SDL_Mutex *mutex, Sint32 timeoutMS); + +/* @} *//* Condition variable functions */ + +/** + * \name Thread-safe initialization state functions + */ +/* @{ */ + +/** + * The current status of an SDL_InitState structure. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_InitStatus +{ + SDL_INIT_STATUS_UNINITIALIZED, + SDL_INIT_STATUS_INITIALIZING, + SDL_INIT_STATUS_INITIALIZED, + SDL_INIT_STATUS_UNINITIALIZING +} SDL_InitStatus; + +/** + * A structure used for thread-safe initialization and shutdown. + * + * Here is an example of using this: + * + * ```c + * static SDL_AtomicInitState init; + * + * bool InitSystem(void) + * { + * if (!SDL_ShouldInit(&init)) { + * // The system is initialized + * return true; + * } + * + * // At this point, you should not leave this function without calling SDL_SetInitialized() + * + * bool initialized = DoInitTasks(); + * SDL_SetInitialized(&init, initialized); + * return initialized; + * } + * + * bool UseSubsystem(void) + * { + * if (SDL_ShouldInit(&init)) { + * // Error, the subsystem isn't initialized + * SDL_SetInitialized(&init, false); + * return false; + * } + * + * // Do work using the initialized subsystem + * + * return true; + * } + * + * void QuitSystem(void) + * { + * if (!SDL_ShouldQuit(&init)) { + * // The system is not initialized + * return; + * } + * + * // At this point, you should not leave this function without calling SDL_SetInitialized() + * + * DoQuitTasks(); + * SDL_SetInitialized(&init, false); + * } + * ``` + * + * Note that this doesn't protect any resources created during initialization, + * or guarantee that nobody is using those resources during cleanup. You + * should use other mechanisms to protect those, if that's a concern for your + * code. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_InitState +{ + SDL_AtomicInt status; + SDL_ThreadID thread; + void *reserved; +} SDL_InitState; + +/** + * Return whether initialization should be done. + * + * This function checks the passed in state and if initialization should be + * done, sets the status to `SDL_INIT_STATUS_INITIALIZING` and returns true. + * If another thread is already modifying this state, it will wait until + * that's done before returning. + * + * If this function returns true, the calling code must call + * SDL_SetInitialized() to complete the initialization. + * + * \param state the initialization state to check. + * \returns true if initialization needs to be done, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetInitialized + * \sa SDL_ShouldQuit + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShouldInit(SDL_InitState *state); + +/** + * Return whether cleanup should be done. + * + * This function checks the passed in state and if cleanup should be done, + * sets the status to `SDL_INIT_STATUS_UNINITIALIZING` and returns true. + * + * If this function returns true, the calling code must call + * SDL_SetInitialized() to complete the cleanup. + * + * \param state the initialization state to check. + * \returns true if cleanup needs to be done, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetInitialized + * \sa SDL_ShouldInit + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShouldQuit(SDL_InitState *state); + +/** + * Finish an initialization state transition. + * + * This function sets the status of the passed in state to + * `SDL_INIT_STATUS_INITIALIZED` or `SDL_INIT_STATUS_UNINITIALIZED` and allows + * any threads waiting for the status to proceed. + * + * \param state the initialization state to check. + * \param initialized the new initialization state. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShouldInit + * \sa SDL_ShouldQuit + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetInitialized(SDL_InitState *state, bool initialized); + +/* @} *//* Thread-safe initialization state functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_mutex_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_oldnames.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_oldnames.h new file mode 100644 index 0000000..c93607e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_oldnames.h @@ -0,0 +1,1327 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * Definitions to ease transition from SDL2 code + */ + +#ifndef SDL_oldnames_h_ +#define SDL_oldnames_h_ + +#include + +/* The new function names are recommended, but if you want to have the + * old names available while you are in the process of migrating code + * to SDL3, you can define `SDL_ENABLE_OLD_NAMES` in your project. + * + * You can use https://github.com/libsdl-org/SDL/blob/main/build-scripts/rename_symbols.py to mass rename the symbols defined here in your codebase: + * rename_symbols.py --all-symbols source_code_path + */ +#ifdef SDL_ENABLE_OLD_NAMES + +/* ##SDL_atomic.h */ +#define SDL_AtomicAdd SDL_AddAtomicInt +#define SDL_AtomicCAS SDL_CompareAndSwapAtomicInt +#define SDL_AtomicCASPtr SDL_CompareAndSwapAtomicPointer +#define SDL_AtomicGet SDL_GetAtomicInt +#define SDL_AtomicGetPtr SDL_GetAtomicPointer +#define SDL_AtomicLock SDL_LockSpinlock +#define SDL_AtomicSet SDL_SetAtomicInt +#define SDL_AtomicSetPtr SDL_SetAtomicPointer +#define SDL_AtomicTryLock SDL_TryLockSpinlock +#define SDL_AtomicUnlock SDL_UnlockSpinlock +#define SDL_atomic_t SDL_AtomicInt + +/* ##SDL_audio.h */ +#define AUDIO_F32 SDL_AUDIO_F32LE +#define AUDIO_F32LSB SDL_AUDIO_F32LE +#define AUDIO_F32MSB SDL_AUDIO_F32BE +#define AUDIO_F32SYS SDL_AUDIO_F32 +#define AUDIO_S16 SDL_AUDIO_S16LE +#define AUDIO_S16LSB SDL_AUDIO_S16LE +#define AUDIO_S16MSB SDL_AUDIO_S16BE +#define AUDIO_S16SYS SDL_AUDIO_S16 +#define AUDIO_S32 SDL_AUDIO_S32LE +#define AUDIO_S32LSB SDL_AUDIO_S32LE +#define AUDIO_S32MSB SDL_AUDIO_S32BE +#define AUDIO_S32SYS SDL_AUDIO_S32 +#define AUDIO_S8 SDL_AUDIO_S8 +#define AUDIO_U8 SDL_AUDIO_U8 +#define SDL_AudioStreamAvailable SDL_GetAudioStreamAvailable +#define SDL_AudioStreamClear SDL_ClearAudioStream +#define SDL_AudioStreamFlush SDL_FlushAudioStream +#define SDL_AudioStreamGet SDL_GetAudioStreamData +#define SDL_AudioStreamPut SDL_PutAudioStreamData +#define SDL_FreeAudioStream SDL_DestroyAudioStream +#define SDL_FreeWAV SDL_free +#define SDL_LoadWAV_RW SDL_LoadWAV_IO +#define SDL_MixAudioFormat SDL_MixAudio +#define SDL_NewAudioStream SDL_CreateAudioStream + +/* ##SDL_cpuinfo.h */ +#define SDL_GetCPUCount SDL_GetNumLogicalCPUCores +#define SDL_SIMDGetAlignment SDL_GetSIMDAlignment + +/* ##SDL_endian.h */ +#define SDL_SwapBE16 SDL_Swap16BE +#define SDL_SwapBE32 SDL_Swap32BE +#define SDL_SwapBE64 SDL_Swap64BE +#define SDL_SwapLE16 SDL_Swap16LE +#define SDL_SwapLE32 SDL_Swap32LE +#define SDL_SwapLE64 SDL_Swap64LE + +/* ##SDL_events.h */ +#define SDL_APP_DIDENTERBACKGROUND SDL_EVENT_DID_ENTER_BACKGROUND +#define SDL_APP_DIDENTERFOREGROUND SDL_EVENT_DID_ENTER_FOREGROUND +#define SDL_APP_LOWMEMORY SDL_EVENT_LOW_MEMORY +#define SDL_APP_TERMINATING SDL_EVENT_TERMINATING +#define SDL_APP_WILLENTERBACKGROUND SDL_EVENT_WILL_ENTER_BACKGROUND +#define SDL_APP_WILLENTERFOREGROUND SDL_EVENT_WILL_ENTER_FOREGROUND +#define SDL_AUDIODEVICEADDED SDL_EVENT_AUDIO_DEVICE_ADDED +#define SDL_AUDIODEVICEREMOVED SDL_EVENT_AUDIO_DEVICE_REMOVED +#define SDL_CLIPBOARDUPDATE SDL_EVENT_CLIPBOARD_UPDATE +#define SDL_CONTROLLERAXISMOTION SDL_EVENT_GAMEPAD_AXIS_MOTION +#define SDL_CONTROLLERBUTTONDOWN SDL_EVENT_GAMEPAD_BUTTON_DOWN +#define SDL_CONTROLLERBUTTONUP SDL_EVENT_GAMEPAD_BUTTON_UP +#define SDL_CONTROLLERDEVICEADDED SDL_EVENT_GAMEPAD_ADDED +#define SDL_CONTROLLERDEVICEREMAPPED SDL_EVENT_GAMEPAD_REMAPPED +#define SDL_CONTROLLERDEVICEREMOVED SDL_EVENT_GAMEPAD_REMOVED +#define SDL_CONTROLLERSENSORUPDATE SDL_EVENT_GAMEPAD_SENSOR_UPDATE +#define SDL_CONTROLLERSTEAMHANDLEUPDATED SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED +#define SDL_CONTROLLERTOUCHPADDOWN SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN +#define SDL_CONTROLLERTOUCHPADMOTION SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION +#define SDL_CONTROLLERTOUCHPADUP SDL_EVENT_GAMEPAD_TOUCHPAD_UP +#define SDL_ControllerAxisEvent SDL_GamepadAxisEvent +#define SDL_ControllerButtonEvent SDL_GamepadButtonEvent +#define SDL_ControllerDeviceEvent SDL_GamepadDeviceEvent +#define SDL_ControllerSensorEvent SDL_GamepadSensorEvent +#define SDL_ControllerTouchpadEvent SDL_GamepadTouchpadEvent +#define SDL_DISPLAYEVENT_CONNECTED SDL_EVENT_DISPLAY_ADDED +#define SDL_DISPLAYEVENT_DISCONNECTED SDL_EVENT_DISPLAY_REMOVED +#define SDL_DISPLAYEVENT_MOVED SDL_EVENT_DISPLAY_MOVED +#define SDL_DISPLAYEVENT_ORIENTATION SDL_EVENT_DISPLAY_ORIENTATION +#define SDL_DROPBEGIN SDL_EVENT_DROP_BEGIN +#define SDL_DROPCOMPLETE SDL_EVENT_DROP_COMPLETE +#define SDL_DROPFILE SDL_EVENT_DROP_FILE +#define SDL_DROPTEXT SDL_EVENT_DROP_TEXT +#define SDL_DelEventWatch SDL_RemoveEventWatch +#define SDL_FINGERDOWN SDL_EVENT_FINGER_DOWN +#define SDL_FINGERMOTION SDL_EVENT_FINGER_MOTION +#define SDL_FINGERUP SDL_EVENT_FINGER_UP +#define SDL_FIRSTEVENT SDL_EVENT_FIRST +#define SDL_JOYAXISMOTION SDL_EVENT_JOYSTICK_AXIS_MOTION +#define SDL_JOYBATTERYUPDATED SDL_EVENT_JOYSTICK_BATTERY_UPDATED +#define SDL_JOYBUTTONDOWN SDL_EVENT_JOYSTICK_BUTTON_DOWN +#define SDL_JOYBUTTONUP SDL_EVENT_JOYSTICK_BUTTON_UP +#define SDL_JOYDEVICEADDED SDL_EVENT_JOYSTICK_ADDED +#define SDL_JOYDEVICEREMOVED SDL_EVENT_JOYSTICK_REMOVED +#define SDL_JOYBALLMOTION SDL_EVENT_JOYSTICK_BALL_MOTION +#define SDL_JOYHATMOTION SDL_EVENT_JOYSTICK_HAT_MOTION +#define SDL_KEYDOWN SDL_EVENT_KEY_DOWN +#define SDL_KEYMAPCHANGED SDL_EVENT_KEYMAP_CHANGED +#define SDL_KEYUP SDL_EVENT_KEY_UP +#define SDL_LASTEVENT SDL_EVENT_LAST +#define SDL_LOCALECHANGED SDL_EVENT_LOCALE_CHANGED +#define SDL_MOUSEBUTTONDOWN SDL_EVENT_MOUSE_BUTTON_DOWN +#define SDL_MOUSEBUTTONUP SDL_EVENT_MOUSE_BUTTON_UP +#define SDL_MOUSEMOTION SDL_EVENT_MOUSE_MOTION +#define SDL_MOUSEWHEEL SDL_EVENT_MOUSE_WHEEL +#define SDL_POLLSENTINEL SDL_EVENT_POLL_SENTINEL +#define SDL_QUIT SDL_EVENT_QUIT +#define SDL_RENDER_DEVICE_RESET SDL_EVENT_RENDER_DEVICE_RESET +#define SDL_RENDER_TARGETS_RESET SDL_EVENT_RENDER_TARGETS_RESET +#define SDL_SENSORUPDATE SDL_EVENT_SENSOR_UPDATE +#define SDL_TEXTEDITING SDL_EVENT_TEXT_EDITING +#define SDL_TEXTEDITING_EXT SDL_EVENT_TEXT_EDITING_EXT +#define SDL_TEXTINPUT SDL_EVENT_TEXT_INPUT +#define SDL_USEREVENT SDL_EVENT_USER +#define SDL_WINDOWEVENT_CLOSE SDL_EVENT_WINDOW_CLOSE_REQUESTED +#define SDL_WINDOWEVENT_DISPLAY_CHANGED SDL_EVENT_WINDOW_DISPLAY_CHANGED +#define SDL_WINDOWEVENT_ENTER SDL_EVENT_WINDOW_MOUSE_ENTER +#define SDL_WINDOWEVENT_EXPOSED SDL_EVENT_WINDOW_EXPOSED +#define SDL_WINDOWEVENT_FOCUS_GAINED SDL_EVENT_WINDOW_FOCUS_GAINED +#define SDL_WINDOWEVENT_FOCUS_LOST SDL_EVENT_WINDOW_FOCUS_LOST +#define SDL_WINDOWEVENT_HIDDEN SDL_EVENT_WINDOW_HIDDEN +#define SDL_WINDOWEVENT_HIT_TEST SDL_EVENT_WINDOW_HIT_TEST +#define SDL_WINDOWEVENT_ICCPROF_CHANGED SDL_EVENT_WINDOW_ICCPROF_CHANGED +#define SDL_WINDOWEVENT_LEAVE SDL_EVENT_WINDOW_MOUSE_LEAVE +#define SDL_WINDOWEVENT_MAXIMIZED SDL_EVENT_WINDOW_MAXIMIZED +#define SDL_WINDOWEVENT_MINIMIZED SDL_EVENT_WINDOW_MINIMIZED +#define SDL_WINDOWEVENT_MOVED SDL_EVENT_WINDOW_MOVED +#define SDL_WINDOWEVENT_RESIZED SDL_EVENT_WINDOW_RESIZED +#define SDL_WINDOWEVENT_RESTORED SDL_EVENT_WINDOW_RESTORED +#define SDL_WINDOWEVENT_SHOWN SDL_EVENT_WINDOW_SHOWN +#define SDL_WINDOWEVENT_SIZE_CHANGED SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED +#define SDL_eventaction SDL_EventAction + +/* ##SDL_gamecontroller.h */ +#define SDL_CONTROLLER_AXIS_INVALID SDL_GAMEPAD_AXIS_INVALID +#define SDL_CONTROLLER_AXIS_LEFTX SDL_GAMEPAD_AXIS_LEFTX +#define SDL_CONTROLLER_AXIS_LEFTY SDL_GAMEPAD_AXIS_LEFTY +#define SDL_CONTROLLER_AXIS_MAX SDL_GAMEPAD_AXIS_COUNT +#define SDL_CONTROLLER_AXIS_RIGHTX SDL_GAMEPAD_AXIS_RIGHTX +#define SDL_CONTROLLER_AXIS_RIGHTY SDL_GAMEPAD_AXIS_RIGHTY +#define SDL_CONTROLLER_AXIS_TRIGGERLEFT SDL_GAMEPAD_AXIS_LEFT_TRIGGER +#define SDL_CONTROLLER_AXIS_TRIGGERRIGHT SDL_GAMEPAD_AXIS_RIGHT_TRIGGER +#define SDL_CONTROLLER_BINDTYPE_AXIS SDL_GAMEPAD_BINDTYPE_AXIS +#define SDL_CONTROLLER_BINDTYPE_BUTTON SDL_GAMEPAD_BINDTYPE_BUTTON +#define SDL_CONTROLLER_BINDTYPE_HAT SDL_GAMEPAD_BINDTYPE_HAT +#define SDL_CONTROLLER_BINDTYPE_NONE SDL_GAMEPAD_BINDTYPE_NONE +#define SDL_CONTROLLER_BUTTON_A SDL_GAMEPAD_BUTTON_SOUTH +#define SDL_CONTROLLER_BUTTON_B SDL_GAMEPAD_BUTTON_EAST +#define SDL_CONTROLLER_BUTTON_BACK SDL_GAMEPAD_BUTTON_BACK +#define SDL_CONTROLLER_BUTTON_DPAD_DOWN SDL_GAMEPAD_BUTTON_DPAD_DOWN +#define SDL_CONTROLLER_BUTTON_DPAD_LEFT SDL_GAMEPAD_BUTTON_DPAD_LEFT +#define SDL_CONTROLLER_BUTTON_DPAD_RIGHT SDL_GAMEPAD_BUTTON_DPAD_RIGHT +#define SDL_CONTROLLER_BUTTON_DPAD_UP SDL_GAMEPAD_BUTTON_DPAD_UP +#define SDL_CONTROLLER_BUTTON_GUIDE SDL_GAMEPAD_BUTTON_GUIDE +#define SDL_CONTROLLER_BUTTON_INVALID SDL_GAMEPAD_BUTTON_INVALID +#define SDL_CONTROLLER_BUTTON_LEFTSHOULDER SDL_GAMEPAD_BUTTON_LEFT_SHOULDER +#define SDL_CONTROLLER_BUTTON_LEFTSTICK SDL_GAMEPAD_BUTTON_LEFT_STICK +#define SDL_CONTROLLER_BUTTON_MAX SDL_GAMEPAD_BUTTON_COUNT +#define SDL_CONTROLLER_BUTTON_MISC1 SDL_GAMEPAD_BUTTON_MISC1 +#define SDL_CONTROLLER_BUTTON_PADDLE1 SDL_GAMEPAD_BUTTON_RIGHT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE2 SDL_GAMEPAD_BUTTON_LEFT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE3 SDL_GAMEPAD_BUTTON_RIGHT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_PADDLE4 SDL_GAMEPAD_BUTTON_LEFT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_RIGHTSHOULDER SDL_GAMEPAD_BUTTON_RIGHT_SHOULDER +#define SDL_CONTROLLER_BUTTON_RIGHTSTICK SDL_GAMEPAD_BUTTON_RIGHT_STICK +#define SDL_CONTROLLER_BUTTON_START SDL_GAMEPAD_BUTTON_START +#define SDL_CONTROLLER_BUTTON_TOUCHPAD SDL_GAMEPAD_BUTTON_TOUCHPAD +#define SDL_CONTROLLER_BUTTON_X SDL_GAMEPAD_BUTTON_WEST +#define SDL_CONTROLLER_BUTTON_Y SDL_GAMEPAD_BUTTON_NORTH +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_LEFT SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_LEFT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_PAIR SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_PAIR +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_PRO +#define SDL_CONTROLLER_TYPE_PS3 SDL_GAMEPAD_TYPE_PS3 +#define SDL_CONTROLLER_TYPE_PS4 SDL_GAMEPAD_TYPE_PS4 +#define SDL_CONTROLLER_TYPE_PS5 SDL_GAMEPAD_TYPE_PS5 +#define SDL_CONTROLLER_TYPE_UNKNOWN SDL_GAMEPAD_TYPE_STANDARD +#define SDL_CONTROLLER_TYPE_VIRTUAL SDL_GAMEPAD_TYPE_VIRTUAL +#define SDL_CONTROLLER_TYPE_XBOX360 SDL_GAMEPAD_TYPE_XBOX360 +#define SDL_CONTROLLER_TYPE_XBOXONE SDL_GAMEPAD_TYPE_XBOXONE +#define SDL_GameController SDL_Gamepad +#define SDL_GameControllerAddMapping SDL_AddGamepadMapping +#define SDL_GameControllerAddMappingsFromFile SDL_AddGamepadMappingsFromFile +#define SDL_GameControllerAddMappingsFromRW SDL_AddGamepadMappingsFromIO +#define SDL_GameControllerAxis SDL_GamepadAxis +#define SDL_GameControllerBindType SDL_GamepadBindingType +#define SDL_GameControllerButton SDL_GamepadButton +#define SDL_GameControllerClose SDL_CloseGamepad +#define SDL_GameControllerFromInstanceID SDL_GetGamepadFromID +#define SDL_GameControllerFromPlayerIndex SDL_GetGamepadFromPlayerIndex +#define SDL_GameControllerGetAppleSFSymbolsNameForAxis SDL_GetGamepadAppleSFSymbolsNameForAxis +#define SDL_GameControllerGetAppleSFSymbolsNameForButton SDL_GetGamepadAppleSFSymbolsNameForButton +#define SDL_GameControllerGetAttached SDL_GamepadConnected +#define SDL_GameControllerGetAxis SDL_GetGamepadAxis +#define SDL_GameControllerGetAxisFromString SDL_GetGamepadAxisFromString +#define SDL_GameControllerGetButton SDL_GetGamepadButton +#define SDL_GameControllerGetButtonFromString SDL_GetGamepadButtonFromString +#define SDL_GameControllerGetFirmwareVersion SDL_GetGamepadFirmwareVersion +#define SDL_GameControllerGetJoystick SDL_GetGamepadJoystick +#define SDL_GameControllerGetNumTouchpadFingers SDL_GetNumGamepadTouchpadFingers +#define SDL_GameControllerGetNumTouchpads SDL_GetNumGamepadTouchpads +#define SDL_GameControllerGetPlayerIndex SDL_GetGamepadPlayerIndex +#define SDL_GameControllerGetProduct SDL_GetGamepadProduct +#define SDL_GameControllerGetProductVersion SDL_GetGamepadProductVersion +#define SDL_GameControllerGetSensorData SDL_GetGamepadSensorData +#define SDL_GameControllerGetSensorDataRate SDL_GetGamepadSensorDataRate +#define SDL_GameControllerGetSerial SDL_GetGamepadSerial +#define SDL_GameControllerGetSteamHandle SDL_GetGamepadSteamHandle +#define SDL_GameControllerGetStringForAxis SDL_GetGamepadStringForAxis +#define SDL_GameControllerGetStringForButton SDL_GetGamepadStringForButton +#define SDL_GameControllerGetTouchpadFinger SDL_GetGamepadTouchpadFinger +#define SDL_GameControllerGetType SDL_GetGamepadType +#define SDL_GameControllerGetVendor SDL_GetGamepadVendor +#define SDL_GameControllerHasAxis SDL_GamepadHasAxis +#define SDL_GameControllerHasButton SDL_GamepadHasButton +#define SDL_GameControllerHasSensor SDL_GamepadHasSensor +#define SDL_GameControllerIsSensorEnabled SDL_GamepadSensorEnabled +#define SDL_GameControllerMapping SDL_GetGamepadMapping +#define SDL_GameControllerMappingForGUID SDL_GetGamepadMappingForGUID +#define SDL_GameControllerName SDL_GetGamepadName +#define SDL_GameControllerOpen SDL_OpenGamepad +#define SDL_GameControllerPath SDL_GetGamepadPath +#define SDL_GameControllerRumble SDL_RumbleGamepad +#define SDL_GameControllerRumbleTriggers SDL_RumbleGamepadTriggers +#define SDL_GameControllerSendEffect SDL_SendGamepadEffect +#define SDL_GameControllerSetLED SDL_SetGamepadLED +#define SDL_GameControllerSetPlayerIndex SDL_SetGamepadPlayerIndex +#define SDL_GameControllerSetSensorEnabled SDL_SetGamepadSensorEnabled +#define SDL_GameControllerType SDL_GamepadType +#define SDL_GameControllerUpdate SDL_UpdateGamepads +#define SDL_INIT_GAMECONTROLLER SDL_INIT_GAMEPAD +#define SDL_IsGameController SDL_IsGamepad + +/* ##SDL_guid.h */ +#define SDL_GUIDFromString SDL_StringToGUID + +/* ##SDL_haptic.h */ +#define SDL_HapticClose SDL_CloseHaptic +#define SDL_HapticDestroyEffect SDL_DestroyHapticEffect +#define SDL_HapticGetEffectStatus SDL_GetHapticEffectStatus +#define SDL_HapticNewEffect SDL_CreateHapticEffect +#define SDL_HapticNumAxes SDL_GetNumHapticAxes +#define SDL_HapticNumEffects SDL_GetMaxHapticEffects +#define SDL_HapticNumEffectsPlaying SDL_GetMaxHapticEffectsPlaying +#define SDL_HapticOpen SDL_OpenHaptic +#define SDL_HapticOpenFromJoystick SDL_OpenHapticFromJoystick +#define SDL_HapticOpenFromMouse SDL_OpenHapticFromMouse +#define SDL_HapticPause SDL_PauseHaptic +#define SDL_HapticQuery SDL_GetHapticFeatures +#define SDL_HapticRumbleInit SDL_InitHapticRumble +#define SDL_HapticRumblePlay SDL_PlayHapticRumble +#define SDL_HapticRumbleStop SDL_StopHapticRumble +#define SDL_HapticRunEffect SDL_RunHapticEffect +#define SDL_HapticSetAutocenter SDL_SetHapticAutocenter +#define SDL_HapticSetGain SDL_SetHapticGain +#define SDL_HapticStopAll SDL_StopHapticEffects +#define SDL_HapticStopEffect SDL_StopHapticEffect +#define SDL_HapticUnpause SDL_ResumeHaptic +#define SDL_HapticUpdateEffect SDL_UpdateHapticEffect +#define SDL_JoystickIsHaptic SDL_IsJoystickHaptic +#define SDL_MouseIsHaptic SDL_IsMouseHaptic + +/* ##SDL_hints.h */ +#define SDL_DelHintCallback SDL_RemoveHintCallback +#define SDL_HINT_ALLOW_TOPMOST SDL_HINT_WINDOW_ALLOW_TOPMOST +#define SDL_HINT_DIRECTINPUT_ENABLED SDL_HINT_JOYSTICK_DIRECTINPUT +#define SDL_HINT_GDK_TEXTINPUT_DEFAULT SDL_HINT_GDK_TEXTINPUT_DEFAULT_TEXT +#define SDL_HINT_JOYSTICK_GAMECUBE_RUMBLE_BRAKE SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE +#define SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_LINUX_DIGITAL_HATS SDL_HINT_JOYSTICK_LINUX_DIGITAL_HATS +#define SDL_HINT_LINUX_HAT_DEADZONES SDL_HINT_JOYSTICK_LINUX_HAT_DEADZONES +#define SDL_HINT_LINUX_JOYSTICK_CLASSIC SDL_HINT_JOYSTICK_LINUX_CLASSIC +#define SDL_HINT_LINUX_JOYSTICK_DEADZONES SDL_HINT_JOYSTICK_LINUX_DEADZONES + +/* ##SDL_joystick.h */ +#define SDL_JOYSTICK_TYPE_GAMECONTROLLER SDL_JOYSTICK_TYPE_GAMEPAD +#define SDL_JoystickAttachVirtualEx SDL_AttachVirtualJoystick +#define SDL_JoystickClose SDL_CloseJoystick +#define SDL_JoystickDetachVirtual SDL_DetachVirtualJoystick +#define SDL_JoystickFromInstanceID SDL_GetJoystickFromID +#define SDL_JoystickFromPlayerIndex SDL_GetJoystickFromPlayerIndex +#define SDL_JoystickGUID SDL_GUID +#define SDL_JoystickGetAttached SDL_JoystickConnected +#define SDL_JoystickGetAxis SDL_GetJoystickAxis +#define SDL_JoystickGetAxisInitialState SDL_GetJoystickAxisInitialState +#define SDL_JoystickGetBall SDL_GetJoystickBall +#define SDL_JoystickGetButton SDL_GetJoystickButton +#define SDL_JoystickGetFirmwareVersion SDL_GetJoystickFirmwareVersion +#define SDL_JoystickGetGUID SDL_GetJoystickGUID +#define SDL_JoystickGetGUIDFromString SDL_StringToGUID +#define SDL_JoystickGetHat SDL_GetJoystickHat +#define SDL_JoystickGetPlayerIndex SDL_GetJoystickPlayerIndex +#define SDL_JoystickGetProduct SDL_GetJoystickProduct +#define SDL_JoystickGetProductVersion SDL_GetJoystickProductVersion +#define SDL_JoystickGetSerial SDL_GetJoystickSerial +#define SDL_JoystickGetType SDL_GetJoystickType +#define SDL_JoystickGetVendor SDL_GetJoystickVendor +#define SDL_JoystickInstanceID SDL_GetJoystickID +#define SDL_JoystickIsVirtual SDL_IsJoystickVirtual +#define SDL_JoystickName SDL_GetJoystickName +#define SDL_JoystickNumAxes SDL_GetNumJoystickAxes +#define SDL_JoystickNumBalls SDL_GetNumJoystickBalls +#define SDL_JoystickNumButtons SDL_GetNumJoystickButtons +#define SDL_JoystickNumHats SDL_GetNumJoystickHats +#define SDL_JoystickOpen SDL_OpenJoystick +#define SDL_JoystickPath SDL_GetJoystickPath +#define SDL_JoystickRumble SDL_RumbleJoystick +#define SDL_JoystickRumbleTriggers SDL_RumbleJoystickTriggers +#define SDL_JoystickSendEffect SDL_SendJoystickEffect +#define SDL_JoystickSetLED SDL_SetJoystickLED +#define SDL_JoystickSetPlayerIndex SDL_SetJoystickPlayerIndex +#define SDL_JoystickSetVirtualAxis SDL_SetJoystickVirtualAxis +#define SDL_JoystickSetVirtualButton SDL_SetJoystickVirtualButton +#define SDL_JoystickSetVirtualHat SDL_SetJoystickVirtualHat +#define SDL_JoystickUpdate SDL_UpdateJoysticks + +/* ##SDL_keyboard.h */ +#define SDL_IsScreenKeyboardShown SDL_ScreenKeyboardShown +#define SDL_IsTextInputActive SDL_TextInputActive + +/* ##SDL_keycode.h */ +#define KMOD_ALT SDL_KMOD_ALT +#define KMOD_CAPS SDL_KMOD_CAPS +#define KMOD_CTRL SDL_KMOD_CTRL +#define KMOD_GUI SDL_KMOD_GUI +#define KMOD_LALT SDL_KMOD_LALT +#define KMOD_LCTRL SDL_KMOD_LCTRL +#define KMOD_LGUI SDL_KMOD_LGUI +#define KMOD_LSHIFT SDL_KMOD_LSHIFT +#define KMOD_MODE SDL_KMOD_MODE +#define KMOD_NONE SDL_KMOD_NONE +#define KMOD_NUM SDL_KMOD_NUM +#define KMOD_RALT SDL_KMOD_RALT +#define KMOD_RCTRL SDL_KMOD_RCTRL +#define KMOD_RGUI SDL_KMOD_RGUI +#define KMOD_RSHIFT SDL_KMOD_RSHIFT +#define KMOD_SCROLL SDL_KMOD_SCROLL +#define KMOD_SHIFT SDL_KMOD_SHIFT +#define SDLK_AUDIOFASTFORWARD SDLK_MEDIA_FAST_FORWARD +#define SDLK_AUDIOMUTE SDLK_MUTE +#define SDLK_AUDIONEXT SDLK_MEDIA_NEXT_TRACK +#define SDLK_AUDIOPLAY SDLK_MEDIA_PLAY +#define SDLK_AUDIOPREV SDLK_MEDIA_PREVIOUS_TRACK +#define SDLK_AUDIOREWIND SDLK_MEDIA_REWIND +#define SDLK_AUDIOSTOP SDLK_MEDIA_STOP +#define SDLK_BACKQUOTE SDLK_GRAVE +#define SDLK_EJECT SDLK_MEDIA_EJECT +#define SDLK_MEDIASELECT SDLK_MEDIA_SELECT +#define SDLK_QUOTE SDLK_APOSTROPHE +#define SDLK_QUOTEDBL SDLK_DBLAPOSTROPHE +#define SDLK_a SDLK_A +#define SDLK_b SDLK_B +#define SDLK_c SDLK_C +#define SDLK_d SDLK_D +#define SDLK_e SDLK_E +#define SDLK_f SDLK_F +#define SDLK_g SDLK_G +#define SDLK_h SDLK_H +#define SDLK_i SDLK_I +#define SDLK_j SDLK_J +#define SDLK_k SDLK_K +#define SDLK_l SDLK_L +#define SDLK_m SDLK_M +#define SDLK_n SDLK_N +#define SDLK_o SDLK_O +#define SDLK_p SDLK_P +#define SDLK_q SDLK_Q +#define SDLK_r SDLK_R +#define SDLK_s SDLK_S +#define SDLK_t SDLK_T +#define SDLK_u SDLK_U +#define SDLK_v SDLK_V +#define SDLK_w SDLK_W +#define SDLK_x SDLK_X +#define SDLK_y SDLK_Y +#define SDLK_z SDLK_Z + +/* ##SDL_log.h */ +#define SDL_LogGetOutputFunction SDL_GetLogOutputFunction +#define SDL_LogGetPriority SDL_GetLogPriority +#define SDL_LogResetPriorities SDL_ResetLogPriorities +#define SDL_LogSetAllPriority SDL_SetLogPriorities +#define SDL_LogSetOutputFunction SDL_SetLogOutputFunction +#define SDL_LogSetPriority SDL_SetLogPriority +#define SDL_NUM_LOG_PRIORITIES SDL_LOG_PRIORITY_COUNT + +/* ##SDL_messagebox.h */ +#define SDL_MESSAGEBOX_COLOR_MAX SDL_MESSAGEBOX_COLOR_COUNT + +/* ##SDL_mouse.h */ +#define SDL_BUTTON SDL_BUTTON_MASK +#define SDL_FreeCursor SDL_DestroyCursor +#define SDL_NUM_SYSTEM_CURSORS SDL_SYSTEM_CURSOR_COUNT +#define SDL_SYSTEM_CURSOR_ARROW SDL_SYSTEM_CURSOR_DEFAULT +#define SDL_SYSTEM_CURSOR_HAND SDL_SYSTEM_CURSOR_POINTER +#define SDL_SYSTEM_CURSOR_IBEAM SDL_SYSTEM_CURSOR_TEXT +#define SDL_SYSTEM_CURSOR_NO SDL_SYSTEM_CURSOR_NOT_ALLOWED +#define SDL_SYSTEM_CURSOR_SIZEALL SDL_SYSTEM_CURSOR_MOVE +#define SDL_SYSTEM_CURSOR_SIZENESW SDL_SYSTEM_CURSOR_NESW_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENS SDL_SYSTEM_CURSOR_NS_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENWSE SDL_SYSTEM_CURSOR_NWSE_RESIZE +#define SDL_SYSTEM_CURSOR_SIZEWE SDL_SYSTEM_CURSOR_EW_RESIZE +#define SDL_SYSTEM_CURSOR_WAITARROW SDL_SYSTEM_CURSOR_PROGRESS +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOM SDL_SYSTEM_CURSOR_S_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMLEFT SDL_SYSTEM_CURSOR_SW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMRIGHT SDL_SYSTEM_CURSOR_SE_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_LEFT SDL_SYSTEM_CURSOR_W_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_RIGHT SDL_SYSTEM_CURSOR_E_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOP SDL_SYSTEM_CURSOR_N_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPLEFT SDL_SYSTEM_CURSOR_NW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPRIGHT SDL_SYSTEM_CURSOR_NE_RESIZE + +/* ##SDL_mutex.h */ +#define SDL_CondBroadcast SDL_BroadcastCondition +#define SDL_CondSignal SDL_SignalCondition +#define SDL_CondWait SDL_WaitCondition +#define SDL_CondWaitTimeout SDL_WaitConditionTimeout +#define SDL_CreateCond SDL_CreateCondition +#define SDL_DestroyCond SDL_DestroyCondition +#define SDL_SemPost SDL_SignalSemaphore +#define SDL_SemTryWait SDL_TryWaitSemaphore +#define SDL_SemValue SDL_GetSemaphoreValue +#define SDL_SemWait SDL_WaitSemaphore +#define SDL_SemWaitTimeout SDL_WaitSemaphoreTimeout + +/* ##SDL_mutex.h */ +#define SDL_cond SDL_Condition +#define SDL_mutex SDL_Mutex +#define SDL_sem SDL_Semaphore + +/* ##SDL_pixels.h */ +#define SDL_AllocFormat SDL_GetPixelFormatDetails +#define SDL_AllocPalette SDL_CreatePalette +#define SDL_Colour SDL_Color +#define SDL_FreePalette SDL_DestroyPalette +#define SDL_MasksToPixelFormatEnum SDL_GetPixelFormatForMasks +#define SDL_PIXELFORMAT_BGR444 SDL_PIXELFORMAT_XBGR4444 +#define SDL_PIXELFORMAT_BGR555 SDL_PIXELFORMAT_XBGR1555 +#define SDL_PIXELFORMAT_BGR888 SDL_PIXELFORMAT_XBGR8888 +#define SDL_PIXELFORMAT_RGB444 SDL_PIXELFORMAT_XRGB4444 +#define SDL_PIXELFORMAT_RGB555 SDL_PIXELFORMAT_XRGB1555 +#define SDL_PIXELFORMAT_RGB888 SDL_PIXELFORMAT_XRGB8888 +#define SDL_PixelFormatEnumToMasks SDL_GetMasksForPixelFormat + +/* ##SDL_rect.h */ +#define SDL_EncloseFPoints SDL_GetRectEnclosingPointsFloat +#define SDL_EnclosePoints SDL_GetRectEnclosingPoints +#define SDL_FRectEmpty SDL_RectEmptyFloat +#define SDL_FRectEquals SDL_RectsEqualFloat +#define SDL_FRectEqualsEpsilon SDL_RectsEqualEpsilon +#define SDL_HasIntersection SDL_HasRectIntersection +#define SDL_HasIntersectionF SDL_HasRectIntersectionFloat +#define SDL_IntersectFRect SDL_GetRectIntersectionFloat +#define SDL_IntersectFRectAndLine SDL_GetRectAndLineIntersectionFloat +#define SDL_IntersectRect SDL_GetRectIntersection +#define SDL_IntersectRectAndLine SDL_GetRectAndLineIntersection +#define SDL_PointInFRect SDL_PointInRectFloat +#define SDL_RectEquals SDL_RectsEqual +#define SDL_UnionFRect SDL_GetRectUnionFloat +#define SDL_UnionRect SDL_GetRectUnion + +/* ##SDL_render.h */ +#define SDL_GetRendererOutputSize SDL_GetCurrentRenderOutputSize +#define SDL_RenderCopy SDL_RenderTexture +#define SDL_RenderCopyEx SDL_RenderTextureRotated +#define SDL_RenderCopyExF SDL_RenderTextureRotated +#define SDL_RenderCopyF SDL_RenderTexture +#define SDL_RenderDrawLine SDL_RenderLine +#define SDL_RenderDrawLineF SDL_RenderLine +#define SDL_RenderDrawLines SDL_RenderLines +#define SDL_RenderDrawLinesF SDL_RenderLines +#define SDL_RenderDrawPoint SDL_RenderPoint +#define SDL_RenderDrawPointF SDL_RenderPoint +#define SDL_RenderDrawPoints SDL_RenderPoints +#define SDL_RenderDrawPointsF SDL_RenderPoints +#define SDL_RenderDrawRect SDL_RenderRect +#define SDL_RenderDrawRectF SDL_RenderRect +#define SDL_RenderDrawRects SDL_RenderRects +#define SDL_RenderDrawRectsF SDL_RenderRects +#define SDL_RenderFillRectF SDL_RenderFillRect +#define SDL_RenderFillRectsF SDL_RenderFillRects +#define SDL_RendererFlip SDL_FlipMode +#define SDL_RenderFlush SDL_FlushRenderer +#define SDL_RenderGetClipRect SDL_GetRenderClipRect +#define SDL_RenderGetLogicalSize SDL_GetRenderLogicalPresentation +#define SDL_RenderGetMetalCommandEncoder SDL_GetRenderMetalCommandEncoder +#define SDL_RenderGetMetalLayer SDL_GetRenderMetalLayer +#define SDL_RenderGetScale SDL_GetRenderScale +#define SDL_RenderGetViewport SDL_GetRenderViewport +#define SDL_RenderGetWindow SDL_GetRenderWindow +#define SDL_RenderIsClipEnabled SDL_RenderClipEnabled +#define SDL_RenderLogicalToWindow SDL_RenderCoordinatesToWindow +#define SDL_RenderSetClipRect SDL_SetRenderClipRect +#define SDL_RenderSetLogicalSize SDL_SetRenderLogicalPresentation +#define SDL_RenderSetScale SDL_SetRenderScale +#define SDL_RenderSetVSync SDL_SetRenderVSync +#define SDL_RenderSetViewport SDL_SetRenderViewport +#define SDL_RenderWindowToLogical SDL_RenderCoordinatesFromWindow +#define SDL_ScaleModeLinear SDL_SCALEMODE_LINEAR +#define SDL_ScaleModeNearest SDL_SCALEMODE_NEAREST + +/* ##SDL_rwops.h */ +#define RW_SEEK_CUR SDL_IO_SEEK_CUR +#define RW_SEEK_END SDL_IO_SEEK_END +#define RW_SEEK_SET SDL_IO_SEEK_SET +#define SDL_RWFromConstMem SDL_IOFromConstMem +#define SDL_RWFromFile SDL_IOFromFile +#define SDL_RWFromMem SDL_IOFromMem +#define SDL_RWclose SDL_CloseIO +#define SDL_RWops SDL_IOStream +#define SDL_RWread SDL_ReadIO +#define SDL_RWseek SDL_SeekIO +#define SDL_RWsize SDL_GetIOSize +#define SDL_RWtell SDL_TellIO +#define SDL_RWwrite SDL_WriteIO +#define SDL_ReadBE16 SDL_ReadU16BE +#define SDL_ReadBE32 SDL_ReadU32BE +#define SDL_ReadBE64 SDL_ReadU64BE +#define SDL_ReadLE16 SDL_ReadU16LE +#define SDL_ReadLE32 SDL_ReadU32LE +#define SDL_ReadLE64 SDL_ReadU64LE +#define SDL_WriteBE16 SDL_WriteU16BE +#define SDL_WriteBE32 SDL_WriteU32BE +#define SDL_WriteBE64 SDL_WriteU64BE +#define SDL_WriteLE16 SDL_WriteU16LE +#define SDL_WriteLE32 SDL_WriteU32LE +#define SDL_WriteLE64 SDL_WriteU64LE + +/* ##SDL_scancode.h */ +#define SDL_NUM_SCANCODES SDL_SCANCODE_COUNT +#define SDL_SCANCODE_AUDIOFASTFORWARD SDL_SCANCODE_MEDIA_FAST_FORWARD +#define SDL_SCANCODE_AUDIOMUTE SDL_SCANCODE_MUTE +#define SDL_SCANCODE_AUDIONEXT SDL_SCANCODE_MEDIA_NEXT_TRACK +#define SDL_SCANCODE_AUDIOPLAY SDL_SCANCODE_MEDIA_PLAY +#define SDL_SCANCODE_AUDIOPREV SDL_SCANCODE_MEDIA_PREVIOUS_TRACK +#define SDL_SCANCODE_AUDIOREWIND SDL_SCANCODE_MEDIA_REWIND +#define SDL_SCANCODE_AUDIOSTOP SDL_SCANCODE_MEDIA_STOP +#define SDL_SCANCODE_EJECT SDL_SCANCODE_MEDIA_EJECT +#define SDL_SCANCODE_MEDIASELECT SDL_SCANCODE_MEDIA_SELECT + +/* ##SDL_sensor.h */ +#define SDL_SensorClose SDL_CloseSensor +#define SDL_SensorFromInstanceID SDL_GetSensorFromID +#define SDL_SensorGetData SDL_GetSensorData +#define SDL_SensorGetInstanceID SDL_GetSensorID +#define SDL_SensorGetName SDL_GetSensorName +#define SDL_SensorGetNonPortableType SDL_GetSensorNonPortableType +#define SDL_SensorGetType SDL_GetSensorType +#define SDL_SensorOpen SDL_OpenSensor +#define SDL_SensorUpdate SDL_UpdateSensors + +/* ##SDL_stdinc.h */ +#define SDL_FALSE false +#define SDL_TABLESIZE SDL_arraysize +#define SDL_TRUE true +#define SDL_bool bool +#define SDL_size_add_overflow SDL_size_add_check_overflow +#define SDL_size_mul_overflow SDL_size_mul_check_overflow +#define SDL_strtokr SDL_strtok_r + +/* ##SDL_surface.h */ +#define SDL_BlitScaled SDL_BlitSurfaceScaled +#define SDL_ConvertSurfaceFormat SDL_ConvertSurface +#define SDL_FillRect SDL_FillSurfaceRect +#define SDL_FillRects SDL_FillSurfaceRects +#define SDL_FreeSurface SDL_DestroySurface +#define SDL_GetClipRect SDL_GetSurfaceClipRect +#define SDL_GetColorKey SDL_GetSurfaceColorKey +#define SDL_HasColorKey SDL_SurfaceHasColorKey +#define SDL_HasSurfaceRLE SDL_SurfaceHasRLE +#define SDL_LoadBMP_RW SDL_LoadBMP_IO +#define SDL_LowerBlit SDL_BlitSurfaceUnchecked +#define SDL_LowerBlitScaled SDL_BlitSurfaceUncheckedScaled +#define SDL_PREALLOC SDL_SURFACE_PREALLOCATED +#define SDL_SIMD_ALIGNED SDL_SURFACE_SIMD_ALIGNED +#define SDL_SaveBMP_RW SDL_SaveBMP_IO +#define SDL_SetClipRect SDL_SetSurfaceClipRect +#define SDL_SetColorKey SDL_SetSurfaceColorKey +#define SDL_UpperBlit SDL_BlitSurface +#define SDL_UpperBlitScaled SDL_BlitSurfaceScaled + +/* ##SDL_system.h */ +#define SDL_AndroidBackButton SDL_SendAndroidBackButton +#define SDL_AndroidGetActivity SDL_GetAndroidActivity +#define SDL_AndroidGetExternalStoragePath SDL_GetAndroidExternalStoragePath +#define SDL_AndroidGetExternalStorageState SDL_GetAndroidExternalStorageState +#define SDL_AndroidGetInternalStoragePath SDL_GetAndroidInternalStoragePath +#define SDL_AndroidGetJNIEnv SDL_GetAndroidJNIEnv +#define SDL_AndroidRequestPermission SDL_RequestAndroidPermission +#define SDL_AndroidRequestPermissionCallback SDL_RequestAndroidPermissionCallback +#define SDL_AndroidSendMessage SDL_SendAndroidMessage +#define SDL_AndroidShowToast SDL_ShowAndroidToast +#define SDL_DXGIGetOutputInfo SDL_GetDXGIOutputInfo +#define SDL_Direct3D9GetAdapterIndex SDL_GetDirect3D9AdapterIndex +#define SDL_GDKGetDefaultUser SDL_GetGDKDefaultUser +#define SDL_GDKGetTaskQueue SDL_GetGDKTaskQueue +#define SDL_LinuxSetThreadPriority SDL_SetLinuxThreadPriority +#define SDL_LinuxSetThreadPriorityAndPolicy SDL_SetLinuxThreadPriorityAndPolicy +#define SDL_OnApplicationDidBecomeActive SDL_OnApplicationDidEnterForeground +#define SDL_OnApplicationWillResignActive SDL_OnApplicationWillEnterBackground +#define SDL_iOSSetAnimationCallback SDL_SetiOSAnimationCallback +#define SDL_iOSSetEventPump SDL_SetiOSEventPump +#define SDL_iPhoneSetAnimationCallback SDL_SetiOSAnimationCallback +#define SDL_iPhoneSetEventPump SDL_SetiOSEventPump + +/* ##SDL_thread.h */ +#define SDL_SetThreadPriority SDL_SetCurrentThreadPriority +#define SDL_TLSCleanup SDL_CleanupTLS +#define SDL_TLSGet SDL_GetTLS +#define SDL_TLSSet SDL_SetTLS +#define SDL_threadID SDL_ThreadID + +/* ##SDL_timer.h */ +#define SDL_GetTicks64 SDL_GetTicks + +/* ##SDL_version.h */ +#define SDL_COMPILEDVERSION SDL_VERSION +#define SDL_PATCHLEVEL SDL_MICRO_VERSION + +/* ##SDL_video.h */ +#define SDL_GL_DeleteContext SDL_GL_DestroyContext +#define SDL_GLattr SDL_GLAttr +#define SDL_GLcontextFlag SDL_GLContextFlag +#define SDL_GLcontextReleaseFlag SDL_GLContextReleaseFlag +#define SDL_GLprofile SDL_GLProfile +#define SDL_GetClosestDisplayMode SDL_GetClosestFullscreenDisplayMode +#define SDL_GetDisplayOrientation SDL_GetCurrentDisplayOrientation +#define SDL_GetPointDisplayIndex SDL_GetDisplayForPoint +#define SDL_GetRectDisplayIndex SDL_GetDisplayForRect +#define SDL_GetWindowDisplayIndex SDL_GetDisplayForWindow +#define SDL_GetWindowDisplayMode SDL_GetWindowFullscreenMode +#define SDL_HasWindowSurface SDL_WindowHasSurface +#define SDL_IsScreenSaverEnabled SDL_ScreenSaverEnabled +#define SDL_SetWindowDisplayMode SDL_SetWindowFullscreenMode +#define SDL_WINDOW_ALLOW_HIGHDPI SDL_WINDOW_HIGH_PIXEL_DENSITY +#define SDL_WINDOW_INPUT_GRABBED SDL_WINDOW_MOUSE_GRABBED +#define SDL_WINDOW_SKIP_TASKBAR SDL_WINDOW_UTILITY + +#elif !defined(SDL_DISABLE_OLD_NAMES) + +/* ##SDL_atomic.h */ +#define SDL_AtomicAdd SDL_AtomicAdd_renamed_SDL_AddAtomicInt +#define SDL_AtomicCAS SDL_AtomicCAS_renamed_SDL_CompareAndSwapAtomicInt +#define SDL_AtomicCASPtr SDL_AtomicCASPtr_renamed_SDL_CompareAndSwapAtomicPointer +#define SDL_AtomicGet SDL_AtomicGet_renamed_SDL_GetAtomicInt +#define SDL_AtomicGetPtr SDL_AtomicGetPtr_renamed_SDL_GetAtomicPointer +#define SDL_AtomicLock SDL_AtomicLock_renamed_SDL_LockSpinlock +#define SDL_AtomicSet SDL_AtomicSet_renamed_SDL_SetAtomicInt +#define SDL_AtomicSetPtr SDL_AtomicSetPtr_renamed_SDL_SetAtomicPointer +#define SDL_AtomicTryLock SDL_AtomicTryLock_renamed_SDL_TryLockSpinlock +#define SDL_AtomicUnlock SDL_AtomicUnlock_renamed_SDL_UnlockSpinlock +#define SDL_atomic_t SDL_atomic_t_renamed_SDL_AtomicInt + +/* ##SDL_audio.h */ +#define AUDIO_F32 AUDIO_F32_renamed_SDL_AUDIO_F32LE +#define AUDIO_F32LSB AUDIO_F32LSB_renamed_SDL_AUDIO_F32LE +#define AUDIO_F32MSB AUDIO_F32MSB_renamed_SDL_AUDIO_F32BE +#define AUDIO_F32SYS AUDIO_F32SYS_renamed_SDL_AUDIO_F32 +#define AUDIO_S16 AUDIO_S16_renamed_SDL_AUDIO_S16LE +#define AUDIO_S16LSB AUDIO_S16LSB_renamed_SDL_AUDIO_S16LE +#define AUDIO_S16MSB AUDIO_S16MSB_renamed_SDL_AUDIO_S16BE +#define AUDIO_S16SYS AUDIO_S16SYS_renamed_SDL_AUDIO_S16 +#define AUDIO_S32 AUDIO_S32_renamed_SDL_AUDIO_S32LE +#define AUDIO_S32LSB AUDIO_S32LSB_renamed_SDL_AUDIO_S32LE +#define AUDIO_S32MSB AUDIO_S32MSB_renamed_SDL_AUDIO_S32BE +#define AUDIO_S32SYS AUDIO_S32SYS_renamed_SDL_AUDIO_S32 +#define AUDIO_S8 AUDIO_S8_renamed_SDL_AUDIO_S8 +#define AUDIO_U8 AUDIO_U8_renamed_SDL_AUDIO_U8 +#define SDL_AudioStreamAvailable SDL_AudioStreamAvailable_renamed_SDL_GetAudioStreamAvailable +#define SDL_AudioStreamClear SDL_AudioStreamClear_renamed_SDL_ClearAudioStream +#define SDL_AudioStreamFlush SDL_AudioStreamFlush_renamed_SDL_FlushAudioStream +#define SDL_AudioStreamGet SDL_AudioStreamGet_renamed_SDL_GetAudioStreamData +#define SDL_AudioStreamPut SDL_AudioStreamPut_renamed_SDL_PutAudioStreamData +#define SDL_FreeAudioStream SDL_FreeAudioStream_renamed_SDL_DestroyAudioStream +#define SDL_FreeWAV SDL_FreeWAV_renamed_SDL_free +#define SDL_LoadWAV_RW SDL_LoadWAV_RW_renamed_SDL_LoadWAV_IO +#define SDL_MixAudioFormat SDL_MixAudioFormat_renamed_SDL_MixAudio +#define SDL_NewAudioStream SDL_NewAudioStream_renamed_SDL_CreateAudioStream + +/* ##SDL_cpuinfo.h */ +#define SDL_GetCPUCount SDL_GetCPUCount_renamed_SDL_GetNumLogicalCPUCores +#define SDL_SIMDGetAlignment SDL_SIMDGetAlignment_renamed_SDL_GetSIMDAlignment + +/* ##SDL_endian.h */ +#define SDL_SwapBE16 SDL_SwapBE16_renamed_SDL_Swap16BE +#define SDL_SwapBE32 SDL_SwapBE32_renamed_SDL_Swap32BE +#define SDL_SwapBE64 SDL_SwapBE64_renamed_SDL_Swap64BE +#define SDL_SwapLE16 SDL_SwapLE16_renamed_SDL_Swap16LE +#define SDL_SwapLE32 SDL_SwapLE32_renamed_SDL_Swap32LE +#define SDL_SwapLE64 SDL_SwapLE64_renamed_SDL_Swap64LE + +/* ##SDL_events.h */ +#define SDL_APP_DIDENTERBACKGROUND SDL_APP_DIDENTERBACKGROUND_renamed_SDL_EVENT_DID_ENTER_BACKGROUND +#define SDL_APP_DIDENTERFOREGROUND SDL_APP_DIDENTERFOREGROUND_renamed_SDL_EVENT_DID_ENTER_FOREGROUND +#define SDL_APP_LOWMEMORY SDL_APP_LOWMEMORY_renamed_SDL_EVENT_LOW_MEMORY +#define SDL_APP_TERMINATING SDL_APP_TERMINATING_renamed_SDL_EVENT_TERMINATING +#define SDL_APP_WILLENTERBACKGROUND SDL_APP_WILLENTERBACKGROUND_renamed_SDL_EVENT_WILL_ENTER_BACKGROUND +#define SDL_APP_WILLENTERFOREGROUND SDL_APP_WILLENTERFOREGROUND_renamed_SDL_EVENT_WILL_ENTER_FOREGROUND +#define SDL_AUDIODEVICEADDED SDL_AUDIODEVICEADDED_renamed_SDL_EVENT_AUDIO_DEVICE_ADDED +#define SDL_AUDIODEVICEREMOVED SDL_AUDIODEVICEREMOVED_renamed_SDL_EVENT_AUDIO_DEVICE_REMOVED +#define SDL_CLIPBOARDUPDATE SDL_CLIPBOARDUPDATE_renamed_SDL_EVENT_CLIPBOARD_UPDATE +#define SDL_CONTROLLERAXISMOTION SDL_CONTROLLERAXISMOTION_renamed_SDL_EVENT_GAMEPAD_AXIS_MOTION +#define SDL_CONTROLLERBUTTONDOWN SDL_CONTROLLERBUTTONDOWN_renamed_SDL_EVENT_GAMEPAD_BUTTON_DOWN +#define SDL_CONTROLLERBUTTONUP SDL_CONTROLLERBUTTONUP_renamed_SDL_EVENT_GAMEPAD_BUTTON_UP +#define SDL_CONTROLLERDEVICEADDED SDL_CONTROLLERDEVICEADDED_renamed_SDL_EVENT_GAMEPAD_ADDED +#define SDL_CONTROLLERDEVICEREMAPPED SDL_CONTROLLERDEVICEREMAPPED_renamed_SDL_EVENT_GAMEPAD_REMAPPED +#define SDL_CONTROLLERDEVICEREMOVED SDL_CONTROLLERDEVICEREMOVED_renamed_SDL_EVENT_GAMEPAD_REMOVED +#define SDL_CONTROLLERSENSORUPDATE SDL_CONTROLLERSENSORUPDATE_renamed_SDL_EVENT_GAMEPAD_SENSOR_UPDATE +#define SDL_CONTROLLERSTEAMHANDLEUPDATED SDL_CONTROLLERSTEAMHANDLEUPDATED_renamed_SDL_EVENT_GAMEPAD_STEAM_HANDLE_UPDATED +#define SDL_CONTROLLERTOUCHPADDOWN SDL_CONTROLLERTOUCHPADDOWN_renamed_SDL_EVENT_GAMEPAD_TOUCHPAD_DOWN +#define SDL_CONTROLLERTOUCHPADMOTION SDL_CONTROLLERTOUCHPADMOTION_renamed_SDL_EVENT_GAMEPAD_TOUCHPAD_MOTION +#define SDL_CONTROLLERTOUCHPADUP SDL_CONTROLLERTOUCHPADUP_renamed_SDL_EVENT_GAMEPAD_TOUCHPAD_UP +#define SDL_ControllerAxisEvent SDL_ControllerAxisEvent_renamed_SDL_GamepadAxisEvent +#define SDL_ControllerButtonEvent SDL_ControllerButtonEvent_renamed_SDL_GamepadButtonEvent +#define SDL_ControllerDeviceEvent SDL_ControllerDeviceEvent_renamed_SDL_GamepadDeviceEvent +#define SDL_ControllerSensorEvent SDL_ControllerSensorEvent_renamed_SDL_GamepadSensorEvent +#define SDL_ControllerTouchpadEvent SDL_ControllerTouchpadEvent_renamed_SDL_GamepadTouchpadEvent +#define SDL_DISPLAYEVENT_CONNECTED SDL_DISPLAYEVENT_CONNECTED_renamed_SDL_EVENT_DISPLAY_ADDED +#define SDL_DISPLAYEVENT_DISCONNECTED SDL_DISPLAYEVENT_DISCONNECTED_renamed_SDL_EVENT_DISPLAY_REMOVED +#define SDL_DISPLAYEVENT_MOVED SDL_DISPLAYEVENT_MOVED_renamed_SDL_EVENT_DISPLAY_MOVED +#define SDL_DISPLAYEVENT_ORIENTATION SDL_DISPLAYEVENT_ORIENTATION_renamed_SDL_EVENT_DISPLAY_ORIENTATION +#define SDL_DROPBEGIN SDL_DROPBEGIN_renamed_SDL_EVENT_DROP_BEGIN +#define SDL_DROPCOMPLETE SDL_DROPCOMPLETE_renamed_SDL_EVENT_DROP_COMPLETE +#define SDL_DROPFILE SDL_DROPFILE_renamed_SDL_EVENT_DROP_FILE +#define SDL_DROPTEXT SDL_DROPTEXT_renamed_SDL_EVENT_DROP_TEXT +#define SDL_DelEventWatch SDL_DelEventWatch_renamed_SDL_RemoveEventWatch +#define SDL_FINGERDOWN SDL_FINGERDOWN_renamed_SDL_EVENT_FINGER_DOWN +#define SDL_FINGERMOTION SDL_FINGERMOTION_renamed_SDL_EVENT_FINGER_MOTION +#define SDL_FINGERUP SDL_FINGERUP_renamed_SDL_EVENT_FINGER_UP +#define SDL_FIRSTEVENT SDL_FIRSTEVENT_renamed_SDL_EVENT_FIRST +#define SDL_JOYAXISMOTION SDL_JOYAXISMOTION_renamed_SDL_EVENT_JOYSTICK_AXIS_MOTION +#define SDL_JOYBATTERYUPDATED SDL_JOYBATTERYUPDATED_renamed_SDL_EVENT_JOYSTICK_BATTERY_UPDATED +#define SDL_JOYBUTTONDOWN SDL_JOYBUTTONDOWN_renamed_SDL_EVENT_JOYSTICK_BUTTON_DOWN +#define SDL_JOYBUTTONUP SDL_JOYBUTTONUP_renamed_SDL_EVENT_JOYSTICK_BUTTON_UP +#define SDL_JOYDEVICEADDED SDL_JOYDEVICEADDED_renamed_SDL_EVENT_JOYSTICK_ADDED +#define SDL_JOYDEVICEREMOVED SDL_JOYDEVICEREMOVED_renamed_SDL_EVENT_JOYSTICK_REMOVED +#define SDL_JOYBALLMOTION SDL_JOYBALLMOTION_renamed_SDL_EVENT_JOYSTICK_BALL_MOTION +#define SDL_JOYHATMOTION SDL_JOYHATMOTION_renamed_SDL_EVENT_JOYSTICK_HAT_MOTION +#define SDL_KEYDOWN SDL_KEYDOWN_renamed_SDL_EVENT_KEY_DOWN +#define SDL_KEYMAPCHANGED SDL_KEYMAPCHANGED_renamed_SDL_EVENT_KEYMAP_CHANGED +#define SDL_KEYUP SDL_KEYUP_renamed_SDL_EVENT_KEY_UP +#define SDL_LASTEVENT SDL_LASTEVENT_renamed_SDL_EVENT_LAST +#define SDL_LOCALECHANGED SDL_LOCALECHANGED_renamed_SDL_EVENT_LOCALE_CHANGED +#define SDL_MOUSEBUTTONDOWN SDL_MOUSEBUTTONDOWN_renamed_SDL_EVENT_MOUSE_BUTTON_DOWN +#define SDL_MOUSEBUTTONUP SDL_MOUSEBUTTONUP_renamed_SDL_EVENT_MOUSE_BUTTON_UP +#define SDL_MOUSEMOTION SDL_MOUSEMOTION_renamed_SDL_EVENT_MOUSE_MOTION +#define SDL_MOUSEWHEEL SDL_MOUSEWHEEL_renamed_SDL_EVENT_MOUSE_WHEEL +#define SDL_POLLSENTINEL SDL_POLLSENTINEL_renamed_SDL_EVENT_POLL_SENTINEL +#define SDL_QUIT SDL_QUIT_renamed_SDL_EVENT_QUIT +#define SDL_RENDER_DEVICE_RESET SDL_RENDER_DEVICE_RESET_renamed_SDL_EVENT_RENDER_DEVICE_RESET +#define SDL_RENDER_TARGETS_RESET SDL_RENDER_TARGETS_RESET_renamed_SDL_EVENT_RENDER_TARGETS_RESET +#define SDL_SENSORUPDATE SDL_SENSORUPDATE_renamed_SDL_EVENT_SENSOR_UPDATE +#define SDL_TEXTEDITING SDL_TEXTEDITING_renamed_SDL_EVENT_TEXT_EDITING +#define SDL_TEXTEDITING_EXT SDL_TEXTEDITING_EXT_renamed_SDL_EVENT_TEXT_EDITING_EXT +#define SDL_TEXTINPUT SDL_TEXTINPUT_renamed_SDL_EVENT_TEXT_INPUT +#define SDL_USEREVENT SDL_USEREVENT_renamed_SDL_EVENT_USER +#define SDL_WINDOWEVENT_CLOSE SDL_WINDOWEVENT_CLOSE_renamed_SDL_EVENT_WINDOW_CLOSE_REQUESTED +#define SDL_WINDOWEVENT_DISPLAY_CHANGED SDL_WINDOWEVENT_DISPLAY_CHANGED_renamed_SDL_EVENT_WINDOW_DISPLAY_CHANGED +#define SDL_WINDOWEVENT_ENTER SDL_WINDOWEVENT_ENTER_renamed_SDL_EVENT_WINDOW_MOUSE_ENTER +#define SDL_WINDOWEVENT_EXPOSED SDL_WINDOWEVENT_EXPOSED_renamed_SDL_EVENT_WINDOW_EXPOSED +#define SDL_WINDOWEVENT_FOCUS_GAINED SDL_WINDOWEVENT_FOCUS_GAINED_renamed_SDL_EVENT_WINDOW_FOCUS_GAINED +#define SDL_WINDOWEVENT_FOCUS_LOST SDL_WINDOWEVENT_FOCUS_LOST_renamed_SDL_EVENT_WINDOW_FOCUS_LOST +#define SDL_WINDOWEVENT_HIDDEN SDL_WINDOWEVENT_HIDDEN_renamed_SDL_EVENT_WINDOW_HIDDEN +#define SDL_WINDOWEVENT_HIT_TEST SDL_WINDOWEVENT_HIT_TEST_renamed_SDL_EVENT_WINDOW_HIT_TEST +#define SDL_WINDOWEVENT_ICCPROF_CHANGED SDL_WINDOWEVENT_ICCPROF_CHANGED_renamed_SDL_EVENT_WINDOW_ICCPROF_CHANGED +#define SDL_WINDOWEVENT_LEAVE SDL_WINDOWEVENT_LEAVE_renamed_SDL_EVENT_WINDOW_MOUSE_LEAVE +#define SDL_WINDOWEVENT_MAXIMIZED SDL_WINDOWEVENT_MAXIMIZED_renamed_SDL_EVENT_WINDOW_MAXIMIZED +#define SDL_WINDOWEVENT_MINIMIZED SDL_WINDOWEVENT_MINIMIZED_renamed_SDL_EVENT_WINDOW_MINIMIZED +#define SDL_WINDOWEVENT_MOVED SDL_WINDOWEVENT_MOVED_renamed_SDL_EVENT_WINDOW_MOVED +#define SDL_WINDOWEVENT_RESIZED SDL_WINDOWEVENT_RESIZED_renamed_SDL_EVENT_WINDOW_RESIZED +#define SDL_WINDOWEVENT_RESTORED SDL_WINDOWEVENT_RESTORED_renamed_SDL_EVENT_WINDOW_RESTORED +#define SDL_WINDOWEVENT_SHOWN SDL_WINDOWEVENT_SHOWN_renamed_SDL_EVENT_WINDOW_SHOWN +#define SDL_WINDOWEVENT_SIZE_CHANGED SDL_WINDOWEVENT_SIZE_CHANGED_renamed_SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED +#define SDL_eventaction SDL_eventaction_renamed_SDL_EventAction + +/* ##SDL_gamecontroller.h */ +#define SDL_CONTROLLER_AXIS_INVALID SDL_CONTROLLER_AXIS_INVALID_renamed_SDL_GAMEPAD_AXIS_INVALID +#define SDL_CONTROLLER_AXIS_LEFTX SDL_CONTROLLER_AXIS_LEFTX_renamed_SDL_GAMEPAD_AXIS_LEFTX +#define SDL_CONTROLLER_AXIS_LEFTY SDL_CONTROLLER_AXIS_LEFTY_renamed_SDL_GAMEPAD_AXIS_LEFTY +#define SDL_CONTROLLER_AXIS_MAX SDL_CONTROLLER_AXIS_MAX_renamed_SDL_GAMEPAD_AXIS_COUNT +#define SDL_CONTROLLER_AXIS_RIGHTX SDL_CONTROLLER_AXIS_RIGHTX_renamed_SDL_GAMEPAD_AXIS_RIGHTX +#define SDL_CONTROLLER_AXIS_RIGHTY SDL_CONTROLLER_AXIS_RIGHTY_renamed_SDL_GAMEPAD_AXIS_RIGHTY +#define SDL_CONTROLLER_AXIS_TRIGGERLEFT SDL_CONTROLLER_AXIS_TRIGGERLEFT_renamed_SDL_GAMEPAD_AXIS_LEFT_TRIGGER +#define SDL_CONTROLLER_AXIS_TRIGGERRIGHT SDL_CONTROLLER_AXIS_TRIGGERRIGHT_renamed_SDL_GAMEPAD_AXIS_RIGHT_TRIGGER +#define SDL_CONTROLLER_BINDTYPE_AXIS SDL_CONTROLLER_BINDTYPE_AXIS_renamed_SDL_GAMEPAD_BINDTYPE_AXIS +#define SDL_CONTROLLER_BINDTYPE_BUTTON SDL_CONTROLLER_BINDTYPE_BUTTON_renamed_SDL_GAMEPAD_BINDTYPE_BUTTON +#define SDL_CONTROLLER_BINDTYPE_HAT SDL_CONTROLLER_BINDTYPE_HAT_renamed_SDL_GAMEPAD_BINDTYPE_HAT +#define SDL_CONTROLLER_BINDTYPE_NONE SDL_CONTROLLER_BINDTYPE_NONE_renamed_SDL_GAMEPAD_BINDTYPE_NONE +#define SDL_CONTROLLER_BUTTON_A SDL_CONTROLLER_BUTTON_A_renamed_SDL_GAMEPAD_BUTTON_SOUTH +#define SDL_CONTROLLER_BUTTON_B SDL_CONTROLLER_BUTTON_B_renamed_SDL_GAMEPAD_BUTTON_EAST +#define SDL_CONTROLLER_BUTTON_BACK SDL_CONTROLLER_BUTTON_BACK_renamed_SDL_GAMEPAD_BUTTON_BACK +#define SDL_CONTROLLER_BUTTON_DPAD_DOWN SDL_CONTROLLER_BUTTON_DPAD_DOWN_renamed_SDL_GAMEPAD_BUTTON_DPAD_DOWN +#define SDL_CONTROLLER_BUTTON_DPAD_LEFT SDL_CONTROLLER_BUTTON_DPAD_LEFT_renamed_SDL_GAMEPAD_BUTTON_DPAD_LEFT +#define SDL_CONTROLLER_BUTTON_DPAD_RIGHT SDL_CONTROLLER_BUTTON_DPAD_RIGHT_renamed_SDL_GAMEPAD_BUTTON_DPAD_RIGHT +#define SDL_CONTROLLER_BUTTON_DPAD_UP SDL_CONTROLLER_BUTTON_DPAD_UP_renamed_SDL_GAMEPAD_BUTTON_DPAD_UP +#define SDL_CONTROLLER_BUTTON_GUIDE SDL_CONTROLLER_BUTTON_GUIDE_renamed_SDL_GAMEPAD_BUTTON_GUIDE +#define SDL_CONTROLLER_BUTTON_INVALID SDL_CONTROLLER_BUTTON_INVALID_renamed_SDL_GAMEPAD_BUTTON_INVALID +#define SDL_CONTROLLER_BUTTON_LEFTSHOULDER SDL_CONTROLLER_BUTTON_LEFTSHOULDER_renamed_SDL_GAMEPAD_BUTTON_LEFT_SHOULDER +#define SDL_CONTROLLER_BUTTON_LEFTSTICK SDL_CONTROLLER_BUTTON_LEFTSTICK_renamed_SDL_GAMEPAD_BUTTON_LEFT_STICK +#define SDL_CONTROLLER_BUTTON_MAX SDL_CONTROLLER_BUTTON_MAX_renamed_SDL_GAMEPAD_BUTTON_COUNT +#define SDL_CONTROLLER_BUTTON_MISC1 SDL_CONTROLLER_BUTTON_MISC1_renamed_SDL_GAMEPAD_BUTTON_MISC1 +#define SDL_CONTROLLER_BUTTON_PADDLE1 SDL_CONTROLLER_BUTTON_PADDLE1_renamed_SDL_GAMEPAD_BUTTON_RIGHT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE2 SDL_CONTROLLER_BUTTON_PADDLE2_renamed_SDL_GAMEPAD_BUTTON_LEFT_PADDLE1 +#define SDL_CONTROLLER_BUTTON_PADDLE3 SDL_CONTROLLER_BUTTON_PADDLE3_renamed_SDL_GAMEPAD_BUTTON_RIGHT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_PADDLE4 SDL_CONTROLLER_BUTTON_PADDLE4_renamed_SDL_GAMEPAD_BUTTON_LEFT_PADDLE2 +#define SDL_CONTROLLER_BUTTON_RIGHTSHOULDER SDL_CONTROLLER_BUTTON_RIGHTSHOULDER_renamed_SDL_GAMEPAD_BUTTON_RIGHT_SHOULDER +#define SDL_CONTROLLER_BUTTON_RIGHTSTICK SDL_CONTROLLER_BUTTON_RIGHTSTICK_renamed_SDL_GAMEPAD_BUTTON_RIGHT_STICK +#define SDL_CONTROLLER_BUTTON_START SDL_CONTROLLER_BUTTON_START_renamed_SDL_GAMEPAD_BUTTON_START +#define SDL_CONTROLLER_BUTTON_TOUCHPAD SDL_CONTROLLER_BUTTON_TOUCHPAD_renamed_SDL_GAMEPAD_BUTTON_TOUCHPAD +#define SDL_CONTROLLER_BUTTON_X SDL_CONTROLLER_BUTTON_X_renamed_SDL_GAMEPAD_BUTTON_WEST +#define SDL_CONTROLLER_BUTTON_Y SDL_CONTROLLER_BUTTON_Y_renamed_SDL_GAMEPAD_BUTTON_NORTH +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_LEFT SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_LEFT_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_LEFT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_PAIR SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_PAIR_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_PAIR +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT +#define SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO_renamed_SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_PRO +#define SDL_CONTROLLER_TYPE_PS3 SDL_CONTROLLER_TYPE_PS3_renamed_SDL_GAMEPAD_TYPE_PS3 +#define SDL_CONTROLLER_TYPE_PS4 SDL_CONTROLLER_TYPE_PS4_renamed_SDL_GAMEPAD_TYPE_PS4 +#define SDL_CONTROLLER_TYPE_PS5 SDL_CONTROLLER_TYPE_PS5_renamed_SDL_GAMEPAD_TYPE_PS5 +#define SDL_CONTROLLER_TYPE_UNKNOWN SDL_CONTROLLER_TYPE_UNKNOWN_renamed_SDL_GAMEPAD_TYPE_STANDARD +#define SDL_CONTROLLER_TYPE_VIRTUAL SDL_CONTROLLER_TYPE_VIRTUAL_renamed_SDL_GAMEPAD_TYPE_VIRTUAL +#define SDL_CONTROLLER_TYPE_XBOX360 SDL_CONTROLLER_TYPE_XBOX360_renamed_SDL_GAMEPAD_TYPE_XBOX360 +#define SDL_CONTROLLER_TYPE_XBOXONE SDL_CONTROLLER_TYPE_XBOXONE_renamed_SDL_GAMEPAD_TYPE_XBOXONE +#define SDL_GameController SDL_GameController_renamed_SDL_Gamepad +#define SDL_GameControllerAddMapping SDL_GameControllerAddMapping_renamed_SDL_AddGamepadMapping +#define SDL_GameControllerAddMappingsFromFile SDL_GameControllerAddMappingsFromFile_renamed_SDL_AddGamepadMappingsFromFile +#define SDL_GameControllerAddMappingsFromRW SDL_GameControllerAddMappingsFromRW_renamed_SDL_AddGamepadMappingsFromIO +#define SDL_GameControllerAxis SDL_GameControllerAxis_renamed_SDL_GamepadAxis +#define SDL_GameControllerBindType SDL_GameControllerBindType_renamed_SDL_GamepadBindingType +#define SDL_GameControllerButton SDL_GameControllerButton_renamed_SDL_GamepadButton +#define SDL_GameControllerClose SDL_GameControllerClose_renamed_SDL_CloseGamepad +#define SDL_GameControllerFromInstanceID SDL_GameControllerFromInstanceID_renamed_SDL_GetGamepadFromID +#define SDL_GameControllerFromPlayerIndex SDL_GameControllerFromPlayerIndex_renamed_SDL_GetGamepadFromPlayerIndex +#define SDL_GameControllerGetAppleSFSymbolsNameForAxis SDL_GameControllerGetAppleSFSymbolsNameForAxis_renamed_SDL_GetGamepadAppleSFSymbolsNameForAxis +#define SDL_GameControllerGetAppleSFSymbolsNameForButton SDL_GameControllerGetAppleSFSymbolsNameForButton_renamed_SDL_GetGamepadAppleSFSymbolsNameForButton +#define SDL_GameControllerGetAttached SDL_GameControllerGetAttached_renamed_SDL_GamepadConnected +#define SDL_GameControllerGetAxis SDL_GameControllerGetAxis_renamed_SDL_GetGamepadAxis +#define SDL_GameControllerGetAxisFromString SDL_GameControllerGetAxisFromString_renamed_SDL_GetGamepadAxisFromString +#define SDL_GameControllerGetButton SDL_GameControllerGetButton_renamed_SDL_GetGamepadButton +#define SDL_GameControllerGetButtonFromString SDL_GameControllerGetButtonFromString_renamed_SDL_GetGamepadButtonFromString +#define SDL_GameControllerGetFirmwareVersion SDL_GameControllerGetFirmwareVersion_renamed_SDL_GetGamepadFirmwareVersion +#define SDL_GameControllerGetJoystick SDL_GameControllerGetJoystick_renamed_SDL_GetGamepadJoystick +#define SDL_GameControllerGetNumTouchpadFingers SDL_GameControllerGetNumTouchpadFingers_renamed_SDL_GetNumGamepadTouchpadFingers +#define SDL_GameControllerGetNumTouchpads SDL_GameControllerGetNumTouchpads_renamed_SDL_GetNumGamepadTouchpads +#define SDL_GameControllerGetPlayerIndex SDL_GameControllerGetPlayerIndex_renamed_SDL_GetGamepadPlayerIndex +#define SDL_GameControllerGetProduct SDL_GameControllerGetProduct_renamed_SDL_GetGamepadProduct +#define SDL_GameControllerGetProductVersion SDL_GameControllerGetProductVersion_renamed_SDL_GetGamepadProductVersion +#define SDL_GameControllerGetSensorData SDL_GameControllerGetSensorData_renamed_SDL_GetGamepadSensorData +#define SDL_GameControllerGetSensorDataRate SDL_GameControllerGetSensorDataRate_renamed_SDL_GetGamepadSensorDataRate +#define SDL_GameControllerGetSerial SDL_GameControllerGetSerial_renamed_SDL_GetGamepadSerial +#define SDL_GameControllerGetSteamHandle SDL_GameControllerGetSteamHandle_renamed_SDL_GetGamepadSteamHandle +#define SDL_GameControllerGetStringForAxis SDL_GameControllerGetStringForAxis_renamed_SDL_GetGamepadStringForAxis +#define SDL_GameControllerGetStringForButton SDL_GameControllerGetStringForButton_renamed_SDL_GetGamepadStringForButton +#define SDL_GameControllerGetTouchpadFinger SDL_GameControllerGetTouchpadFinger_renamed_SDL_GetGamepadTouchpadFinger +#define SDL_GameControllerGetType SDL_GameControllerGetType_renamed_SDL_GetGamepadType +#define SDL_GameControllerGetVendor SDL_GameControllerGetVendor_renamed_SDL_GetGamepadVendor +#define SDL_GameControllerHasAxis SDL_GameControllerHasAxis_renamed_SDL_GamepadHasAxis +#define SDL_GameControllerHasButton SDL_GameControllerHasButton_renamed_SDL_GamepadHasButton +#define SDL_GameControllerHasSensor SDL_GameControllerHasSensor_renamed_SDL_GamepadHasSensor +#define SDL_GameControllerIsSensorEnabled SDL_GameControllerIsSensorEnabled_renamed_SDL_GamepadSensorEnabled +#define SDL_GameControllerMapping SDL_GameControllerMapping_renamed_SDL_GetGamepadMapping +#define SDL_GameControllerMappingForDeviceIndex SDL_GameControllerMappingForDeviceIndex_renamed_SDL_GetGamepadMappingForDeviceIndex +#define SDL_GameControllerMappingForGUID SDL_GameControllerMappingForGUID_renamed_SDL_GetGamepadMappingForGUID +#define SDL_GameControllerName SDL_GameControllerName_renamed_SDL_GetGamepadName +#define SDL_GameControllerOpen SDL_GameControllerOpen_renamed_SDL_OpenGamepad +#define SDL_GameControllerPath SDL_GameControllerPath_renamed_SDL_GetGamepadPath +#define SDL_GameControllerRumble SDL_GameControllerRumble_renamed_SDL_RumbleGamepad +#define SDL_GameControllerRumbleTriggers SDL_GameControllerRumbleTriggers_renamed_SDL_RumbleGamepadTriggers +#define SDL_GameControllerSendEffect SDL_GameControllerSendEffect_renamed_SDL_SendGamepadEffect +#define SDL_GameControllerSetLED SDL_GameControllerSetLED_renamed_SDL_SetGamepadLED +#define SDL_GameControllerSetPlayerIndex SDL_GameControllerSetPlayerIndex_renamed_SDL_SetGamepadPlayerIndex +#define SDL_GameControllerSetSensorEnabled SDL_GameControllerSetSensorEnabled_renamed_SDL_SetGamepadSensorEnabled +#define SDL_GameControllerType SDL_GameControllerType_renamed_SDL_GamepadType +#define SDL_GameControllerUpdate SDL_GameControllerUpdate_renamed_SDL_UpdateGamepads +#define SDL_INIT_GAMECONTROLLER SDL_INIT_GAMECONTROLLER_renamed_SDL_INIT_GAMEPAD +#define SDL_IsGameController SDL_IsGameController_renamed_SDL_IsGamepad + +/* ##SDL_guid.h */ +#define SDL_GUIDFromString SDL_GUIDFromString_renamed_SDL_StringToGUID + +/* ##SDL_haptic.h */ +#define SDL_HapticClose SDL_HapticClose_renamed_SDL_CloseHaptic +#define SDL_HapticDestroyEffect SDL_HapticDestroyEffect_renamed_SDL_DestroyHapticEffect +#define SDL_HapticGetEffectStatus SDL_HapticGetEffectStatus_renamed_SDL_GetHapticEffectStatus +#define SDL_HapticNewEffect SDL_HapticNewEffect_renamed_SDL_CreateHapticEffect +#define SDL_HapticNumAxes SDL_HapticNumAxes_renamed_SDL_GetNumHapticAxes +#define SDL_HapticNumEffects SDL_HapticNumEffects_renamed_SDL_GetMaxHapticEffects +#define SDL_HapticNumEffectsPlaying SDL_HapticNumEffectsPlaying_renamed_SDL_GetMaxHapticEffectsPlaying +#define SDL_HapticOpen SDL_HapticOpen_renamed_SDL_OpenHaptic +#define SDL_HapticOpenFromJoystick SDL_HapticOpenFromJoystick_renamed_SDL_OpenHapticFromJoystick +#define SDL_HapticOpenFromMouse SDL_HapticOpenFromMouse_renamed_SDL_OpenHapticFromMouse +#define SDL_HapticPause SDL_HapticPause_renamed_SDL_PauseHaptic +#define SDL_HapticQuery SDL_HapticQuery_renamed_SDL_GetHapticFeatures +#define SDL_HapticRumbleInit SDL_HapticRumbleInit_renamed_SDL_InitHapticRumble +#define SDL_HapticRumblePlay SDL_HapticRumblePlay_renamed_SDL_PlayHapticRumble +#define SDL_HapticRumbleStop SDL_HapticRumbleStop_renamed_SDL_StopHapticRumble +#define SDL_HapticRunEffect SDL_HapticRunEffect_renamed_SDL_RunHapticEffect +#define SDL_HapticSetAutocenter SDL_HapticSetAutocenter_renamed_SDL_SetHapticAutocenter +#define SDL_HapticSetGain SDL_HapticSetGain_renamed_SDL_SetHapticGain +#define SDL_HapticStopAll SDL_HapticStopAll_renamed_SDL_StopHapticEffects +#define SDL_HapticStopEffect SDL_HapticStopEffect_renamed_SDL_StopHapticEffect +#define SDL_HapticUnpause SDL_HapticUnpause_renamed_SDL_ResumeHaptic +#define SDL_HapticUpdateEffect SDL_HapticUpdateEffect_renamed_SDL_UpdateHapticEffect +#define SDL_JoystickIsHaptic SDL_JoystickIsHaptic_renamed_SDL_IsJoystickHaptic +#define SDL_MouseIsHaptic SDL_MouseIsHaptic_renamed_SDL_IsMouseHaptic + +/* ##SDL_hints.h */ +#define SDL_DelHintCallback SDL_DelHintCallback_renamed_SDL_RemoveHintCallback +#define SDL_HINT_ALLOW_TOPMOST SDL_HINT_ALLOW_TOPMOST_renamed_SDL_HINT_WINDOW_ALLOW_TOPMOST +#define SDL_HINT_DIRECTINPUT_ENABLED SDL_HINT_DIRECTINPUT_ENABLED_renamed_SDL_HINT_JOYSTICK_DIRECTINPUT +#define SDL_HINT_GDK_TEXTINPUT_DEFAULT SDL_HINT_GDK_TEXTINPUT_DEFAULT_renamed_SDL_HINT_GDK_TEXTINPUT_DEFAULT_TEXT +#define SDL_HINT_JOYSTICK_GAMECUBE_RUMBLE_BRAKE SDL_HINT_JOYSTICK_GAMECUBE_RUMBLE_BRAKE_renamed_SDL_HINT_JOYSTICK_HIDAPI_GAMECUBE_RUMBLE_BRAKE +#define SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE_renamed_SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE_renamed_SDL_HINT_JOYSTICK_ENHANCED_REPORTS +#define SDL_HINT_LINUX_DIGITAL_HATS SDL_HINT_LINUX_DIGITAL_HATS_renamed_SDL_HINT_JOYSTICK_LINUX_DIGITAL_HATS +#define SDL_HINT_LINUX_HAT_DEADZONES SDL_HINT_LINUX_HAT_DEADZONES_renamed_SDL_HINT_JOYSTICK_LINUX_HAT_DEADZONES +#define SDL_HINT_LINUX_JOYSTICK_CLASSIC SDL_HINT_LINUX_JOYSTICK_CLASSIC_renamed_SDL_HINT_JOYSTICK_LINUX_CLASSIC +#define SDL_HINT_LINUX_JOYSTICK_DEADZONES SDL_HINT_LINUX_JOYSTICK_DEADZONES_renamed_SDL_HINT_JOYSTICK_LINUX_DEADZONES + +/* ##SDL_joystick.h */ +#define SDL_JOYSTICK_TYPE_GAMECONTROLLER SDL_JOYSTICK_TYPE_GAMECONTROLLER_renamed_SDL_JOYSTICK_TYPE_GAMEPAD +#define SDL_JoystickAttachVirtualEx SDL_JoystickAttachVirtualEx_renamed_SDL_AttachVirtualJoystick +#define SDL_JoystickClose SDL_JoystickClose_renamed_SDL_CloseJoystick +#define SDL_JoystickDetachVirtual SDL_JoystickDetachVirtual_renamed_SDL_DetachVirtualJoystick +#define SDL_JoystickFromInstanceID SDL_JoystickFromInstanceID_renamed_SDL_GetJoystickFromID +#define SDL_JoystickFromPlayerIndex SDL_JoystickFromPlayerIndex_renamed_SDL_GetJoystickFromPlayerIndex +#define SDL_JoystickGUID SDL_JoystickGUID_renamed_SDL_GUID +#define SDL_JoystickGetAttached SDL_JoystickGetAttached_renamed_SDL_JoystickConnected +#define SDL_JoystickGetAxis SDL_JoystickGetAxis_renamed_SDL_GetJoystickAxis +#define SDL_JoystickGetAxisInitialState SDL_JoystickGetAxisInitialState_renamed_SDL_GetJoystickAxisInitialState +#define SDL_JoystickGetBall SDL_JoystickGetBall_renamed_SDL_GetJoystickBall +#define SDL_JoystickGetButton SDL_JoystickGetButton_renamed_SDL_GetJoystickButton +#define SDL_JoystickGetFirmwareVersion SDL_JoystickGetFirmwareVersion_renamed_SDL_GetJoystickFirmwareVersion +#define SDL_JoystickGetGUID SDL_JoystickGetGUID_renamed_SDL_GetJoystickGUID +#define SDL_JoystickGetGUIDFromString SDL_JoystickGetGUIDFromString_renamed_SDL_GUIDFromString +#define SDL_JoystickGetHat SDL_JoystickGetHat_renamed_SDL_GetJoystickHat +#define SDL_JoystickGetPlayerIndex SDL_JoystickGetPlayerIndex_renamed_SDL_GetJoystickPlayerIndex +#define SDL_JoystickGetProduct SDL_JoystickGetProduct_renamed_SDL_GetJoystickProduct +#define SDL_JoystickGetProductVersion SDL_JoystickGetProductVersion_renamed_SDL_GetJoystickProductVersion +#define SDL_JoystickGetSerial SDL_JoystickGetSerial_renamed_SDL_GetJoystickSerial +#define SDL_JoystickGetType SDL_JoystickGetType_renamed_SDL_GetJoystickType +#define SDL_JoystickGetVendor SDL_JoystickGetVendor_renamed_SDL_GetJoystickVendor +#define SDL_JoystickInstanceID SDL_JoystickInstanceID_renamed_SDL_GetJoystickID +#define SDL_JoystickIsVirtual SDL_JoystickIsVirtual_renamed_SDL_IsJoystickVirtual +#define SDL_JoystickName SDL_JoystickName_renamed_SDL_GetJoystickName +#define SDL_JoystickNumAxes SDL_JoystickNumAxes_renamed_SDL_GetNumJoystickAxes +#define SDL_JoystickNumBalls SDL_JoystickNumBalls_renamed_SDL_GetNumJoystickBalls +#define SDL_JoystickNumButtons SDL_JoystickNumButtons_renamed_SDL_GetNumJoystickButtons +#define SDL_JoystickNumHats SDL_JoystickNumHats_renamed_SDL_GetNumJoystickHats +#define SDL_JoystickOpen SDL_JoystickOpen_renamed_SDL_OpenJoystick +#define SDL_JoystickPath SDL_JoystickPath_renamed_SDL_GetJoystickPath +#define SDL_JoystickRumble SDL_JoystickRumble_renamed_SDL_RumbleJoystick +#define SDL_JoystickRumbleTriggers SDL_JoystickRumbleTriggers_renamed_SDL_RumbleJoystickTriggers +#define SDL_JoystickSendEffect SDL_JoystickSendEffect_renamed_SDL_SendJoystickEffect +#define SDL_JoystickSetLED SDL_JoystickSetLED_renamed_SDL_SetJoystickLED +#define SDL_JoystickSetPlayerIndex SDL_JoystickSetPlayerIndex_renamed_SDL_SetJoystickPlayerIndex +#define SDL_JoystickSetVirtualAxis SDL_JoystickSetVirtualAxis_renamed_SDL_SetJoystickVirtualAxis +#define SDL_JoystickSetVirtualButton SDL_JoystickSetVirtualButton_renamed_SDL_SetJoystickVirtualButton +#define SDL_JoystickSetVirtualHat SDL_JoystickSetVirtualHat_renamed_SDL_SetJoystickVirtualHat +#define SDL_JoystickUpdate SDL_JoystickUpdate_renamed_SDL_UpdateJoysticks + +/* ##SDL_keyboard.h */ +#define SDL_IsScreenKeyboardShown SDL_IsScreenKeyboardShown_renamed_SDL_ScreenKeyboardShown +#define SDL_IsTextInputActive SDL_IsTextInputActive_renamed_SDL_TextInputActive + +/* ##SDL_keycode.h */ +#define KMOD_ALT KMOD_ALT_renamed_SDL_KMOD_ALT +#define KMOD_CAPS KMOD_CAPS_renamed_SDL_KMOD_CAPS +#define KMOD_CTRL KMOD_CTRL_renamed_SDL_KMOD_CTRL +#define KMOD_GUI KMOD_GUI_renamed_SDL_KMOD_GUI +#define KMOD_LALT KMOD_LALT_renamed_SDL_KMOD_LALT +#define KMOD_LCTRL KMOD_LCTRL_renamed_SDL_KMOD_LCTRL +#define KMOD_LGUI KMOD_LGUI_renamed_SDL_KMOD_LGUI +#define KMOD_LSHIFT KMOD_LSHIFT_renamed_SDL_KMOD_LSHIFT +#define KMOD_MODE KMOD_MODE_renamed_SDL_KMOD_MODE +#define KMOD_NONE KMOD_NONE_renamed_SDL_KMOD_NONE +#define KMOD_NUM KMOD_NUM_renamed_SDL_KMOD_NUM +#define KMOD_RALT KMOD_RALT_renamed_SDL_KMOD_RALT +#define KMOD_RCTRL KMOD_RCTRL_renamed_SDL_KMOD_RCTRL +#define KMOD_RGUI KMOD_RGUI_renamed_SDL_KMOD_RGUI +#define KMOD_RSHIFT KMOD_RSHIFT_renamed_SDL_KMOD_RSHIFT +#define KMOD_SCROLL KMOD_SCROLL_renamed_SDL_KMOD_SCROLL +#define KMOD_SHIFT KMOD_SHIFT_renamed_SDL_KMOD_SHIFT +#define SDLK_AUDIOFASTFORWARD SDLK_AUDIOFASTFORWARD_renamed_SDLK_MEDIA_FAST_FORWARD +#define SDLK_AUDIOMUTE SDLK_AUDIOMUTE_renamed_SDLK_MUTE +#define SDLK_AUDIONEXT SDLK_AUDIONEXT_renamed_SDLK_MEDIA_NEXT_TRACK +#define SDLK_AUDIOPLAY SDLK_AUDIOPLAY_renamed_SDLK_MEDIA_PLAY +#define SDLK_AUDIOPREV SDLK_AUDIOPREV_renamed_SDLK_MEDIA_PREVIOUS_TRACK +#define SDLK_AUDIOREWIND SDLK_AUDIOREWIND_renamed_SDLK_MEDIA_REWIND +#define SDLK_AUDIOSTOP SDLK_AUDIOSTOP_renamed_SDLK_MEDIA_STOP +#define SDLK_BACKQUOTE SDLK_BACKQUOTE_renamed_SDLK_GRAVE +#define SDLK_EJECT SDLK_EJECT_renamed_SDLK_MEDIA_EJECT +#define SDLK_MEDIASELECT SDLK_MEDIASELECT_renamed_SDLK_MEDIA_SELECT +#define SDLK_QUOTE SDLK_QUOTE_renamed_SDLK_APOSTROPHE +#define SDLK_QUOTEDBL SDLK_QUOTEDBL_renamed_SDLK_DBLAPOSTROPHE +#define SDLK_a SDLK_a_renamed_SDLK_A +#define SDLK_b SDLK_b_renamed_SDLK_B +#define SDLK_c SDLK_c_renamed_SDLK_C +#define SDLK_d SDLK_d_renamed_SDLK_D +#define SDLK_e SDLK_e_renamed_SDLK_E +#define SDLK_f SDLK_f_renamed_SDLK_F +#define SDLK_g SDLK_g_renamed_SDLK_G +#define SDLK_h SDLK_h_renamed_SDLK_H +#define SDLK_i SDLK_i_renamed_SDLK_I +#define SDLK_j SDLK_j_renamed_SDLK_J +#define SDLK_k SDLK_k_renamed_SDLK_K +#define SDLK_l SDLK_l_renamed_SDLK_L +#define SDLK_m SDLK_m_renamed_SDLK_M +#define SDLK_n SDLK_n_renamed_SDLK_N +#define SDLK_o SDLK_o_renamed_SDLK_O +#define SDLK_p SDLK_p_renamed_SDLK_P +#define SDLK_q SDLK_q_renamed_SDLK_Q +#define SDLK_r SDLK_r_renamed_SDLK_R +#define SDLK_s SDLK_s_renamed_SDLK_S +#define SDLK_t SDLK_t_renamed_SDLK_T +#define SDLK_u SDLK_u_renamed_SDLK_U +#define SDLK_v SDLK_v_renamed_SDLK_V +#define SDLK_w SDLK_w_renamed_SDLK_W +#define SDLK_x SDLK_x_renamed_SDLK_X +#define SDLK_y SDLK_y_renamed_SDLK_Y +#define SDLK_z SDLK_z_renamed_SDLK_Z + +/* ##SDL_log.h */ +#define SDL_LogGetOutputFunction SDL_LogGetOutputFunction_renamed_SDL_GetLogOutputFunction +#define SDL_LogGetPriority SDL_LogGetPriority_renamed_SDL_GetLogPriority +#define SDL_LogResetPriorities SDL_LogResetPriorities_renamed_SDL_ResetLogPriorities +#define SDL_LogSetAllPriority SDL_LogSetAllPriority_renamed_SDL_SetLogPriorities +#define SDL_LogSetOutputFunction SDL_LogSetOutputFunction_renamed_SDL_SetLogOutputFunction +#define SDL_LogSetPriority SDL_LogSetPriority_renamed_SDL_SetLogPriority +#define SDL_NUM_LOG_PRIORITIES SDL_NUM_LOG_PRIORITIES_renamed_SDL_LOG_PRIORITY_COUNT + +/* ##SDL_messagebox.h */ +#define SDL_MESSAGEBOX_COLOR_MAX SDL_MESSAGEBOX_COLOR_MAX_renamed_SDL_MESSAGEBOX_COLOR_COUNT + +/* ##SDL_mouse.h */ +#define SDL_BUTTON SDL_BUTTON_renamed_SDL_BUTTON_MASK +#define SDL_FreeCursor SDL_FreeCursor_renamed_SDL_DestroyCursor +#define SDL_NUM_SYSTEM_CURSORS SDL_NUM_SYSTEM_CURSORS_renamed_SDL_SYSTEM_CURSOR_COUNT +#define SDL_SYSTEM_CURSOR_ARROW SDL_SYSTEM_CURSOR_ARROW_renamed_SDL_SYSTEM_CURSOR_DEFAULT +#define SDL_SYSTEM_CURSOR_HAND SDL_SYSTEM_CURSOR_HAND_renamed_SDL_SYSTEM_CURSOR_POINTER +#define SDL_SYSTEM_CURSOR_IBEAM SDL_SYSTEM_CURSOR_IBEAM_renamed_SDL_SYSTEM_CURSOR_TEXT +#define SDL_SYSTEM_CURSOR_NO SDL_SYSTEM_CURSOR_NO_renamed_SDL_SYSTEM_CURSOR_NOT_ALLOWED +#define SDL_SYSTEM_CURSOR_SIZEALL SDL_SYSTEM_CURSOR_SIZEALL_renamed_SDL_SYSTEM_CURSOR_MOVE +#define SDL_SYSTEM_CURSOR_SIZENESW SDL_SYSTEM_CURSOR_SIZENESW_renamed_SDL_SYSTEM_CURSOR_NESW_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENS SDL_SYSTEM_CURSOR_SIZENS_renamed_SDL_SYSTEM_CURSOR_NS_RESIZE +#define SDL_SYSTEM_CURSOR_SIZENWSE SDL_SYSTEM_CURSOR_SIZENWSE_renamed_SDL_SYSTEM_CURSOR_NWSE_RESIZE +#define SDL_SYSTEM_CURSOR_SIZEWE SDL_SYSTEM_CURSOR_SIZEWE_renamed_SDL_SYSTEM_CURSOR_EW_RESIZE +#define SDL_SYSTEM_CURSOR_WAITARROW SDL_SYSTEM_CURSOR_WAITARROW_renamed_SDL_SYSTEM_CURSOR_PROGRESS +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOM SDL_SYSTEM_CURSOR_WINDOW_BOTTOM_renamed_SDL_SYSTEM_CURSOR_S_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMLEFT SDL_SYSTEM_CURSOR_WINDOW_BOTTOMLEFT_renamed_SDL_SYSTEM_CURSOR_SW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_BOTTOMRIGHT SDL_SYSTEM_CURSOR_WINDOW_BOTTOMRIGHT_renamed_SDL_SYSTEM_CURSOR_SE_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_LEFT SDL_SYSTEM_CURSOR_WINDOW_LEFT_renamed_SDL_SYSTEM_CURSOR_W_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_RIGHT SDL_SYSTEM_CURSOR_WINDOW_RIGHT_renamed_SDL_SYSTEM_CURSOR_E_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOP SDL_SYSTEM_CURSOR_WINDOW_TOP_renamed_SDL_SYSTEM_CURSOR_N_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPLEFT SDL_SYSTEM_CURSOR_WINDOW_TOPLEFT_renamed_SDL_SYSTEM_CURSOR_NW_RESIZE +#define SDL_SYSTEM_CURSOR_WINDOW_TOPRIGHT SDL_SYSTEM_CURSOR_WINDOW_TOPRIGHT_renamed_SDL_SYSTEM_CURSOR_NE_RESIZE + +/* ##SDL_mutex.h */ +#define SDL_CondBroadcast SDL_CondBroadcast_renamed_SDL_BroadcastCondition +#define SDL_CondSignal SDL_CondSignal_renamed_SDL_SignalCondition +#define SDL_CondWait SDL_CondWait_renamed_SDL_WaitCondition +#define SDL_CondWaitTimeout SDL_CondWaitTimeout_renamed_SDL_WaitConditionTimeout +#define SDL_CreateCond SDL_CreateCond_renamed_SDL_CreateCondition +#define SDL_DestroyCond SDL_DestroyCond_renamed_SDL_DestroyCondition +#define SDL_SemPost SDL_SemPost_renamed_SDL_SignalSemaphore +#define SDL_SemTryWait SDL_SemTryWait_renamed_SDL_TryWaitSemaphore +#define SDL_SemValue SDL_SemValue_renamed_SDL_GetSemaphoreValue +#define SDL_SemWait SDL_SemWait_renamed_SDL_WaitSemaphore +#define SDL_SemWaitTimeout SDL_SemWaitTimeout_renamed_SDL_WaitSemaphoreTimeout + +/* ##SDL_mutex.h */ +#define SDL_cond SDL_cond_renamed_SDL_Condition +#define SDL_mutex SDL_mutex_renamed_SDL_Mutex +#define SDL_sem SDL_sem_renamed_SDL_Semaphore + +/* ##SDL_pixels.h */ +#define SDL_AllocFormat SDL_AllocFormat_renamed_SDL_GetPixelFormatDetails +#define SDL_AllocPalette SDL_AllocPalette_renamed_SDL_CreatePalette +#define SDL_Colour SDL_Colour_renamed_SDL_Color +#define SDL_FreePalette SDL_FreePalette_renamed_SDL_DestroyPalette +#define SDL_MasksToPixelFormatEnum SDL_MasksToPixelFormatEnum_renamed_SDL_GetPixelFormatForMasks +#define SDL_PIXELFORMAT_BGR444 SDL_PIXELFORMAT_BGR444_renamed_SDL_PIXELFORMAT_XBGR4444 +#define SDL_PIXELFORMAT_BGR555 SDL_PIXELFORMAT_BGR555_renamed_SDL_PIXELFORMAT_XBGR1555 +#define SDL_PIXELFORMAT_BGR888 SDL_PIXELFORMAT_BGR888_renamed_SDL_PIXELFORMAT_XBGR8888 +#define SDL_PIXELFORMAT_RGB444 SDL_PIXELFORMAT_RGB444_renamed_SDL_PIXELFORMAT_XRGB4444 +#define SDL_PIXELFORMAT_RGB555 SDL_PIXELFORMAT_RGB555_renamed_SDL_PIXELFORMAT_XRGB1555 +#define SDL_PIXELFORMAT_RGB888 SDL_PIXELFORMAT_RGB888_renamed_SDL_PIXELFORMAT_XRGB8888 +#define SDL_PixelFormatEnumToMasks SDL_PixelFormatEnumToMasks_renamed_SDL_GetMasksForPixelFormat + +/* ##SDL_rect.h */ +#define SDL_EncloseFPoints SDL_EncloseFPoints_renamed_SDL_GetRectEnclosingPointsFloat +#define SDL_EnclosePoints SDL_EnclosePoints_renamed_SDL_GetRectEnclosingPoints +#define SDL_FRectEmpty SDL_FRectEmpty_renamed_SDL_RectEmptyFloat +#define SDL_FRectEquals SDL_FRectEquals_renamed_SDL_RectsEqualFloat +#define SDL_FRectEqualsEpsilon SDL_FRectEqualsEpsilon_renamed_SDL_RectsEqualEpsilon +#define SDL_HasIntersection SDL_HasIntersection_renamed_SDL_HasRectIntersection +#define SDL_HasIntersectionF SDL_HasIntersectionF_renamed_SDL_HasRectIntersectionFloat +#define SDL_IntersectFRect SDL_IntersectFRect_renamed_SDL_GetRectIntersectionFloat +#define SDL_IntersectFRectAndLine SDL_IntersectFRectAndLine_renamed_SDL_GetRectAndLineIntersectionFloat +#define SDL_IntersectRect SDL_IntersectRect_renamed_SDL_GetRectIntersection +#define SDL_IntersectRectAndLine SDL_IntersectRectAndLine_renamed_SDL_GetRectAndLineIntersection +#define SDL_PointInFRect SDL_PointInFRect_renamed_SDL_PointInRectFloat +#define SDL_RectEquals SDL_RectEquals_renamed_SDL_RectsEqual +#define SDL_UnionFRect SDL_UnionFRect_renamed_SDL_GetRectUnionFloat +#define SDL_UnionRect SDL_UnionRect_renamed_SDL_GetRectUnion + +/* ##SDL_render.h */ +#define SDL_GetRendererOutputSize SDL_GetRendererOutputSize_renamed_SDL_GetCurrentRenderOutputSize +#define SDL_RenderCopy SDL_RenderCopy_renamed_SDL_RenderTexture +#define SDL_RenderCopyEx SDL_RenderCopyEx_renamed_SDL_RenderTextureRotated +#define SDL_RenderCopyExF SDL_RenderCopyExF_renamed_SDL_RenderTextureRotated +#define SDL_RenderCopyF SDL_RenderCopyF_renamed_SDL_RenderTexture +#define SDL_RenderDrawLine SDL_RenderDrawLine_renamed_SDL_RenderLine +#define SDL_RenderDrawLineF SDL_RenderDrawLineF_renamed_SDL_RenderLine +#define SDL_RenderDrawLines SDL_RenderDrawLines_renamed_SDL_RenderLines +#define SDL_RenderDrawLinesF SDL_RenderDrawLinesF_renamed_SDL_RenderLines +#define SDL_RenderDrawPoint SDL_RenderDrawPoint_renamed_SDL_RenderPoint +#define SDL_RenderDrawPointF SDL_RenderDrawPointF_renamed_SDL_RenderPoint +#define SDL_RenderDrawPoints SDL_RenderDrawPoints_renamed_SDL_RenderPoints +#define SDL_RenderDrawPointsF SDL_RenderDrawPointsF_renamed_SDL_RenderPoints +#define SDL_RenderDrawRect SDL_RenderDrawRect_renamed_SDL_RenderRect +#define SDL_RenderDrawRectF SDL_RenderDrawRectF_renamed_SDL_RenderRect +#define SDL_RenderDrawRects SDL_RenderDrawRects_renamed_SDL_RenderRects +#define SDL_RenderDrawRectsF SDL_RenderDrawRectsF_renamed_SDL_RenderRects +#define SDL_RenderFillRectF SDL_RenderFillRectF_renamed_SDL_RenderFillRect +#define SDL_RenderFillRectsF SDL_RenderFillRectsF_renamed_SDL_RenderFillRects +#define SDL_RendererFlip SDL_RendererFlip_renamed_SDL_FlipMode +#define SDL_RenderFlush SDL_RenderFlush_renamed_SDL_FlushRenderer +#define SDL_RenderGetClipRect SDL_RenderGetClipRect_renamed_SDL_GetRenderClipRect +#define SDL_RenderGetLogicalSize SDL_RenderGetLogicalSize_renamed_SDL_GetRenderLogicalPresentation +#define SDL_RenderGetMetalCommandEncoder SDL_RenderGetMetalCommandEncoder_renamed_SDL_GetRenderMetalCommandEncoder +#define SDL_RenderGetMetalLayer SDL_RenderGetMetalLayer_renamed_SDL_GetRenderMetalLayer +#define SDL_RenderGetScale SDL_RenderGetScale_renamed_SDL_GetRenderScale +#define SDL_RenderGetViewport SDL_RenderGetViewport_renamed_SDL_GetRenderViewport +#define SDL_RenderGetWindow SDL_RenderGetWindow_renamed_SDL_GetRenderWindow +#define SDL_RenderIsClipEnabled SDL_RenderIsClipEnabled_renamed_SDL_RenderClipEnabled +#define SDL_RenderLogicalToWindow SDL_RenderLogicalToWindow_renamed_SDL_RenderCoordinatesToWindow +#define SDL_RenderSetClipRect SDL_RenderSetClipRect_renamed_SDL_SetRenderClipRect +#define SDL_RenderSetLogicalSize SDL_RenderSetLogicalSize_renamed_SDL_SetRenderLogicalPresentation +#define SDL_RenderSetScale SDL_RenderSetScale_renamed_SDL_SetRenderScale +#define SDL_RenderSetVSync SDL_RenderSetVSync_renamed_SDL_SetRenderVSync +#define SDL_RenderSetViewport SDL_RenderSetViewport_renamed_SDL_SetRenderViewport +#define SDL_RenderWindowToLogical SDL_RenderWindowToLogical_renamed_SDL_RenderCoordinatesFromWindow +#define SDL_ScaleModeLinear SDL_ScaleModeLinear_renamed_SDL_SCALEMODE_LINEAR +#define SDL_ScaleModeNearest SDL_ScaleModeNearest_renamed_SDL_SCALEMODE_NEAREST + +/* ##SDL_rwops.h */ +#define RW_SEEK_CUR RW_SEEK_CUR_renamed_SDL_IO_SEEK_CUR +#define RW_SEEK_END RW_SEEK_END_renamed_SDL_IO_SEEK_END +#define RW_SEEK_SET RW_SEEK_SET_renamed_SDL_IO_SEEK_SET +#define SDL_RWFromConstMem SDL_RWFromConstMem_renamed_SDL_IOFromConstMem +#define SDL_RWFromFile SDL_RWFromFile_renamed_SDL_IOFromFile +#define SDL_RWFromMem SDL_RWFromMem_renamed_SDL_IOFromMem +#define SDL_RWclose SDL_RWclose_renamed_SDL_CloseIO +#define SDL_RWops SDL_RWops_renamed_SDL_IOStream +#define SDL_RWread SDL_RWread_renamed_SDL_ReadIO +#define SDL_RWseek SDL_RWseek_renamed_SDL_SeekIO +#define SDL_RWsize SDL_RWsize_renamed_SDL_GetIOSize +#define SDL_RWtell SDL_RWtell_renamed_SDL_TellIO +#define SDL_RWwrite SDL_RWwrite_renamed_SDL_WriteIO +#define SDL_ReadBE16 SDL_ReadBE16_renamed_SDL_ReadU16BE +#define SDL_ReadBE32 SDL_ReadBE32_renamed_SDL_ReadU32BE +#define SDL_ReadBE64 SDL_ReadBE64_renamed_SDL_ReadU64BE +#define SDL_ReadLE16 SDL_ReadLE16_renamed_SDL_ReadU16LE +#define SDL_ReadLE32 SDL_ReadLE32_renamed_SDL_ReadU32LE +#define SDL_ReadLE64 SDL_ReadLE64_renamed_SDL_ReadU64LE +#define SDL_WriteBE16 SDL_WriteBE16_renamed_SDL_WriteU16BE +#define SDL_WriteBE32 SDL_WriteBE32_renamed_SDL_WriteU32BE +#define SDL_WriteBE64 SDL_WriteBE64_renamed_SDL_WriteU64BE +#define SDL_WriteLE16 SDL_WriteLE16_renamed_SDL_WriteU16LE +#define SDL_WriteLE32 SDL_WriteLE32_renamed_SDL_WriteU32LE +#define SDL_WriteLE64 SDL_WriteLE64_renamed_SDL_WriteU64LE + +/* ##SDL_scancode.h */ +#define SDL_NUM_SCANCODES SDL_NUM_SCANCODES_renamed_SDL_SCANCODE_COUNT +#define SDL_SCANCODE_AUDIOFASTFORWARD SDL_SCANCODE_AUDIOFASTFORWARD_renamed_SDL_SCANCODE_MEDIA_FAST_FORWARD +#define SDL_SCANCODE_AUDIOMUTE SDL_SCANCODE_AUDIOMUTE_renamed_SDL_SCANCODE_MUTE +#define SDL_SCANCODE_AUDIONEXT SDL_SCANCODE_AUDIONEXT_renamed_SDL_SCANCODE_MEDIA_NEXT_TRACK +#define SDL_SCANCODE_AUDIOPLAY SDL_SCANCODE_AUDIOPLAY_renamed_SDL_SCANCODE_MEDIA_PLAY +#define SDL_SCANCODE_AUDIOPREV SDL_SCANCODE_AUDIOPREV_renamed_SDL_SCANCODE_MEDIA_PREVIOUS_TRACK +#define SDL_SCANCODE_AUDIOREWIND SDL_SCANCODE_AUDIOREWIND_renamed_SDL_SCANCODE_MEDIA_REWIND +#define SDL_SCANCODE_AUDIOSTOP SDL_SCANCODE_AUDIOSTOP_renamed_SDL_SCANCODE_MEDIA_STOP +#define SDL_SCANCODE_EJECT SDL_SCANCODE_EJECT_renamed_SDL_SCANCODE_MEDIA_EJECT +#define SDL_SCANCODE_MEDIASELECT SDL_SCANCODE_MEDIASELECT_renamed_SDL_SCANCODE_MEDIA_SELECT + +/* ##SDL_sensor.h */ +#define SDL_SensorClose SDL_SensorClose_renamed_SDL_CloseSensor +#define SDL_SensorFromInstanceID SDL_SensorFromInstanceID_renamed_SDL_GetSensorFromID +#define SDL_SensorGetData SDL_SensorGetData_renamed_SDL_GetSensorData +#define SDL_SensorGetInstanceID SDL_SensorGetInstanceID_renamed_SDL_GetSensorID +#define SDL_SensorGetName SDL_SensorGetName_renamed_SDL_GetSensorName +#define SDL_SensorGetNonPortableType SDL_SensorGetNonPortableType_renamed_SDL_GetSensorNonPortableType +#define SDL_SensorGetType SDL_SensorGetType_renamed_SDL_GetSensorType +#define SDL_SensorOpen SDL_SensorOpen_renamed_SDL_OpenSensor +#define SDL_SensorUpdate SDL_SensorUpdate_renamed_SDL_UpdateSensors + +/* ##SDL_stdinc.h */ +#define SDL_FALSE SDL_FALSE_renamed_false +#define SDL_TABLESIZE SDL_TABLESIZE_renamed_SDL_arraysize +#define SDL_TRUE SDL_TRUE_renamed_true +#define SDL_bool SDL_bool_renamed_bool +#define SDL_size_add_overflow SDL_size_add_overflow_renamed_SDL_size_add_check_overflow +#define SDL_size_mul_overflow SDL_size_mul_overflow_renamed_SDL_size_mul_check_overflow +#define SDL_strtokr SDL_strtokr_renamed_SDL_strtok_r + +/* ##SDL_surface.h */ +#define SDL_BlitScaled SDL_BlitScaled_renamed_SDL_BlitSurfaceScaled +#define SDL_ConvertSurfaceFormat SDL_ConvertSurfaceFormat_renamed_SDL_ConvertSurface +#define SDL_FillRect SDL_FillRect_renamed_SDL_FillSurfaceRect +#define SDL_FillRects SDL_FillRects_renamed_SDL_FillSurfaceRects +#define SDL_FreeSurface SDL_FreeSurface_renamed_SDL_DestroySurface +#define SDL_GetClipRect SDL_GetClipRect_renamed_SDL_GetSurfaceClipRect +#define SDL_GetColorKey SDL_GetColorKey_renamed_SDL_GetSurfaceColorKey +#define SDL_HasColorKey SDL_HasColorKey_renamed_SDL_SurfaceHasColorKey +#define SDL_HasSurfaceRLE SDL_HasSurfaceRLE_renamed_SDL_SurfaceHasRLE +#define SDL_LoadBMP_RW SDL_LoadBMP_RW_renamed_SDL_LoadBMP_IO +#define SDL_LowerBlit SDL_LowerBlit_renamed_SDL_BlitSurfaceUnchecked +#define SDL_LowerBlitScaled SDL_LowerBlitScaled_renamed_SDL_BlitSurfaceUncheckedScaled +#define SDL_PREALLOC SDL_PREALLOC_renamed_SDL_SURFACE_PREALLOCATED +#define SDL_SIMD_ALIGNED SDL_SIMD_ALIGNED_renamed_SDL_SURFACE_SIMD_ALIGNED +#define SDL_SaveBMP_RW SDL_SaveBMP_RW_renamed_SDL_SaveBMP_IO +#define SDL_SetClipRect SDL_SetClipRect_renamed_SDL_SetSurfaceClipRect +#define SDL_SetColorKey SDL_SetColorKey_renamed_SDL_SetSurfaceColorKey +#define SDL_UpperBlit SDL_UpperBlit_renamed_SDL_BlitSurface +#define SDL_UpperBlitScaled SDL_UpperBlitScaled_renamed_SDL_BlitSurfaceScaled + +/* ##SDL_system.h */ +#define SDL_AndroidBackButton SDL_AndroidBackButton_renamed_SDL_SendAndroidBackButton +#define SDL_AndroidGetActivity SDL_AndroidGetActivity_renamed_SDL_GetAndroidActivity +#define SDL_AndroidGetExternalStoragePath SDL_AndroidGetExternalStoragePath_renamed_SDL_GetAndroidExternalStoragePath +#define SDL_AndroidGetExternalStorageState SDL_AndroidGetExternalStorageState_renamed_SDL_GetAndroidExternalStorageState +#define SDL_AndroidGetInternalStoragePath SDL_AndroidGetInternalStoragePath_renamed_SDL_GetAndroidInternalStoragePath +#define SDL_AndroidGetJNIEnv SDL_AndroidGetJNIEnv_renamed_SDL_GetAndroidJNIEnv +#define SDL_AndroidRequestPermission SDL_AndroidRequestPermission_renamed_SDL_RequestAndroidPermission +#define SDL_AndroidRequestPermissionCallback SDL_AndroidRequestPermissionCallback_renamed_SDL_RequestAndroidPermissionCallback +#define SDL_AndroidSendMessage SDL_AndroidSendMessage_renamed_SDL_SendAndroidMessage +#define SDL_AndroidShowToast SDL_AndroidShowToast_renamed_SDL_ShowAndroidToast +#define SDL_DXGIGetOutputInfo SDL_DXGIGetOutputInfo_renamed_SDL_GetDXGIOutputInfo +#define SDL_Direct3D9GetAdapterIndex SDL_Direct3D9GetAdapterIndex_renamed_SDL_GetDirect3D9AdapterIndex +#define SDL_GDKGetDefaultUser SDL_GDKGetDefaultUser_renamed_SDL_GetGDKDefaultUser +#define SDL_GDKGetTaskQueue SDL_GDKGetTaskQueue_renamed_SDL_GetGDKTaskQueue +#define SDL_LinuxSetThreadPriority SDL_LinuxSetThreadPriority_renamed_SDL_SetLinuxThreadPriority +#define SDL_LinuxSetThreadPriorityAndPolicy SDL_LinuxSetThreadPriorityAndPolicy_renamed_SDL_SetLinuxThreadPriorityAndPolicy +#define SDL_OnApplicationDidBecomeActive SDL_OnApplicationDidBecomeActive_renamed_SDL_OnApplicationDidEnterForeground +#define SDL_OnApplicationWillResignActive SDL_OnApplicationWillResignActive_renamed_SDL_OnApplicationWillEnterBackground +#define SDL_iOSSetAnimationCallback SDL_iOSSetAnimationCallback_renamed_SDL_SetiOSAnimationCallback +#define SDL_iOSSetEventPump SDL_iOSSetEventPump_renamed_SDL_SetiOSEventPump +#define SDL_iPhoneSetAnimationCallback SDL_iPhoneSetAnimationCallback_renamed_SDL_iOSSetAnimationCallback +#define SDL_iPhoneSetEventPump SDL_iPhoneSetEventPump_renamed_SDL_iOSSetEventPump + +/* ##SDL_thread.h */ +#define SDL_SetThreadPriority SDL_SetThreadPriority_renamed_SDL_SetCurrentThreadPriority +#define SDL_TLSCleanup SDL_TLSCleanup_renamed_SDL_CleanupTLS +#define SDL_TLSGet SDL_TLSGet_renamed_SDL_GetTLS +#define SDL_TLSSet SDL_TLSSet_renamed_SDL_SetTLS +#define SDL_threadID SDL_threadID_renamed_SDL_ThreadID + +/* ##SDL_timer.h */ +#define SDL_GetTicks64 SDL_GetTicks64_renamed_SDL_GetTicks + +/* ##SDL_version.h */ +#define SDL_COMPILEDVERSION SDL_COMPILEDVERSION_renamed_SDL_VERSION +#define SDL_PATCHLEVEL SDL_PATCHLEVEL_renamed_SDL_MICRO_VERSION + +/* ##SDL_video.h */ +#define SDL_GL_DeleteContext SDL_GL_DeleteContext_renamed_SDL_GL_DestroyContext +#define SDL_GLattr SDL_GLattr_renamed_SDL_GLAttr +#define SDL_GLcontextFlag SDL_GLcontextFlag_renamed_SDL_GLContextFlag +#define SDL_GLcontextReleaseFlag SDL_GLcontextReleaseFlag_renamed_SDL_GLContextReleaseFlag +#define SDL_GLprofile SDL_GLprofile_renamed_SDL_GLProfile +#define SDL_GetClosestDisplayMode SDL_GetClosestDisplayMode_renamed_SDL_GetClosestFullscreenDisplayMode +#define SDL_GetDisplayOrientation SDL_GetDisplayOrientation_renamed_SDL_GetCurrentDisplayOrientation +#define SDL_GetPointDisplayIndex SDL_GetPointDisplayIndex_renamed_SDL_GetDisplayForPoint +#define SDL_GetRectDisplayIndex SDL_GetRectDisplayIndex_renamed_SDL_GetDisplayForRect +#define SDL_GetWindowDisplayIndex SDL_GetWindowDisplayIndex_renamed_SDL_GetDisplayForWindow +#define SDL_GetWindowDisplayMode SDL_GetWindowDisplayMode_renamed_SDL_GetWindowFullscreenMode +#define SDL_HasWindowSurface SDL_HasWindowSurface_renamed_SDL_WindowHasSurface +#define SDL_IsScreenSaverEnabled SDL_IsScreenSaverEnabled_renamed_SDL_ScreenSaverEnabled +#define SDL_SetWindowDisplayMode SDL_SetWindowDisplayMode_renamed_SDL_SetWindowFullscreenMode +#define SDL_WINDOW_ALLOW_HIGHDPI SDL_WINDOW_ALLOW_HIGHDPI_renamed_SDL_WINDOW_HIGH_PIXEL_DENSITY +#define SDL_WINDOW_INPUT_GRABBED SDL_WINDOW_INPUT_GRABBED_renamed_SDL_WINDOW_MOUSE_GRABBED +#define SDL_WINDOW_SKIP_TASKBAR SDL_WINDOW_SKIP_TASKBAR_renamed_SDL_WINDOW_UTILITY + +#endif /* SDL_ENABLE_OLD_NAMES */ + +#endif /* SDL_oldnames_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengl.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengl.h new file mode 100644 index 0000000..d1b8b02 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengl.h @@ -0,0 +1,3101 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the OpenGL API headers. + * + * Define NO_SDL_GLEXT if you have your own version of glext.h and want + * to disable the version included in SDL_opengl.h. + */ + +#ifndef SDL_opengl_h_ +#define SDL_opengl_h_ + +#include + +#ifndef SDL_PLATFORM_IOS /* No OpenGL on iOS. */ + +/* + * Mesa 3-D graphics library + * + * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. + * Copyright (C) 2009 VMware, Inc. All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + */ + + +#ifndef __gl_h_ +#define __gl_h_ + +#ifdef USE_MGL_NAMESPACE +#include +#endif + + +/********************************************************************** + * Begin system-specific stuff. + */ + +#if defined(_WIN32) && !defined(__CYGWIN__) +# if (defined(_MSC_VER) || defined(__MINGW32__)) && defined(BUILD_GL32) /* tag specify we're building mesa as a DLL */ +# define GLAPI __declspec(dllexport) +# elif (defined(_MSC_VER) || defined(__MINGW32__)) && defined(_DLL) /* tag specifying we're building for DLL runtime support */ +# define GLAPI __declspec(dllimport) +# else /* for use with static link lib build of Win32 edition only */ +# define GLAPI extern +# endif /* _STATIC_MESA support */ +# if defined(__MINGW32__) && defined(GL_NO_STDCALL) || defined(UNDER_CE) /* The generated DLLs by MingW with STDCALL are not compatible with the ones done by Microsoft's compilers */ +# define GLAPIENTRY +# else +# define GLAPIENTRY __stdcall +# endif +#elif defined(__CYGWIN__) && defined(USE_OPENGL32) /* use native windows opengl32 */ +# define GLAPI extern +# define GLAPIENTRY __stdcall +#elif (defined(__GNUC__) && __GNUC__ >= 4) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) +# define GLAPI __attribute__((visibility("default"))) +# define GLAPIENTRY +#endif /* WIN32 && !CYGWIN */ + +/* + * WINDOWS: Include windows.h here to define APIENTRY. + * It is also useful when applications include this file by + * including only glut.h, since glut.h depends on windows.h. + * Applications needing to include windows.h with parms other + * than "WIN32_LEAN_AND_MEAN" may include windows.h before + * glut.h or gl.h. + */ +#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN 1 +#endif +#ifndef NOMINMAX /* don't define min() and max(). */ +#define NOMINMAX +#endif +#include +#endif + +#ifndef GLAPI +#define GLAPI extern +#endif + +#ifndef GLAPIENTRY +#define GLAPIENTRY +#endif + +#ifndef APIENTRY +#define APIENTRY GLAPIENTRY +#endif + +/* "P" suffix to be used for a pointer to a function */ +#ifndef APIENTRYP +#define APIENTRYP APIENTRY * +#endif + +#ifndef GLAPIENTRYP +#define GLAPIENTRYP GLAPIENTRY * +#endif + +#if defined(PRAGMA_EXPORT_SUPPORTED) +#pragma export on +#endif + +/* + * End system-specific stuff. + **********************************************************************/ + + + +#ifdef __cplusplus +extern "C" { +#endif + + + +#define GL_VERSION_1_1 1 +#define GL_VERSION_1_2 1 +#define GL_VERSION_1_3 1 +#define GL_ARB_imaging 1 + + +/* + * Datatypes + */ +typedef unsigned int GLenum; +typedef unsigned char GLboolean; +typedef unsigned int GLbitfield; +typedef void GLvoid; +typedef signed char GLbyte; /* 1-byte signed */ +typedef short GLshort; /* 2-byte signed */ +typedef int GLint; /* 4-byte signed */ +typedef unsigned char GLubyte; /* 1-byte unsigned */ +typedef unsigned short GLushort; /* 2-byte unsigned */ +typedef unsigned int GLuint; /* 4-byte unsigned */ +typedef int GLsizei; /* 4-byte signed */ +typedef float GLfloat; /* single precision float */ +typedef float GLclampf; /* single precision float in [0,1] */ +typedef double GLdouble; /* double precision float */ +typedef double GLclampd; /* double precision float in [0,1] */ + + + +/* + * Constants + */ + +/* Boolean values */ +#define GL_FALSE 0 +#define GL_TRUE 1 + +/* Data types */ +#define GL_BYTE 0x1400 +#define GL_UNSIGNED_BYTE 0x1401 +#define GL_SHORT 0x1402 +#define GL_UNSIGNED_SHORT 0x1403 +#define GL_INT 0x1404 +#define GL_UNSIGNED_INT 0x1405 +#define GL_FLOAT 0x1406 +#define GL_2_BYTES 0x1407 +#define GL_3_BYTES 0x1408 +#define GL_4_BYTES 0x1409 +#define GL_DOUBLE 0x140A + +/* Primitives */ +#define GL_POINTS 0x0000 +#define GL_LINES 0x0001 +#define GL_LINE_LOOP 0x0002 +#define GL_LINE_STRIP 0x0003 +#define GL_TRIANGLES 0x0004 +#define GL_TRIANGLE_STRIP 0x0005 +#define GL_TRIANGLE_FAN 0x0006 +#define GL_QUADS 0x0007 +#define GL_QUAD_STRIP 0x0008 +#define GL_POLYGON 0x0009 + +/* Vertex Arrays */ +#define GL_VERTEX_ARRAY 0x8074 +#define GL_NORMAL_ARRAY 0x8075 +#define GL_COLOR_ARRAY 0x8076 +#define GL_INDEX_ARRAY 0x8077 +#define GL_TEXTURE_COORD_ARRAY 0x8078 +#define GL_EDGE_FLAG_ARRAY 0x8079 +#define GL_VERTEX_ARRAY_SIZE 0x807A +#define GL_VERTEX_ARRAY_TYPE 0x807B +#define GL_VERTEX_ARRAY_STRIDE 0x807C +#define GL_NORMAL_ARRAY_TYPE 0x807E +#define GL_NORMAL_ARRAY_STRIDE 0x807F +#define GL_COLOR_ARRAY_SIZE 0x8081 +#define GL_COLOR_ARRAY_TYPE 0x8082 +#define GL_COLOR_ARRAY_STRIDE 0x8083 +#define GL_INDEX_ARRAY_TYPE 0x8085 +#define GL_INDEX_ARRAY_STRIDE 0x8086 +#define GL_TEXTURE_COORD_ARRAY_SIZE 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE 0x808A +#define GL_EDGE_FLAG_ARRAY_STRIDE 0x808C +#define GL_VERTEX_ARRAY_POINTER 0x808E +#define GL_NORMAL_ARRAY_POINTER 0x808F +#define GL_COLOR_ARRAY_POINTER 0x8090 +#define GL_INDEX_ARRAY_POINTER 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER 0x8093 +#define GL_V2F 0x2A20 +#define GL_V3F 0x2A21 +#define GL_C4UB_V2F 0x2A22 +#define GL_C4UB_V3F 0x2A23 +#define GL_C3F_V3F 0x2A24 +#define GL_N3F_V3F 0x2A25 +#define GL_C4F_N3F_V3F 0x2A26 +#define GL_T2F_V3F 0x2A27 +#define GL_T4F_V4F 0x2A28 +#define GL_T2F_C4UB_V3F 0x2A29 +#define GL_T2F_C3F_V3F 0x2A2A +#define GL_T2F_N3F_V3F 0x2A2B +#define GL_T2F_C4F_N3F_V3F 0x2A2C +#define GL_T4F_C4F_N3F_V4F 0x2A2D + +/* Matrix Mode */ +#define GL_MATRIX_MODE 0x0BA0 +#define GL_MODELVIEW 0x1700 +#define GL_PROJECTION 0x1701 +#define GL_TEXTURE 0x1702 + +/* Points */ +#define GL_POINT_SMOOTH 0x0B10 +#define GL_POINT_SIZE 0x0B11 +#define GL_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_POINT_SIZE_RANGE 0x0B12 + +/* Lines */ +#define GL_LINE_SMOOTH 0x0B20 +#define GL_LINE_STIPPLE 0x0B24 +#define GL_LINE_STIPPLE_PATTERN 0x0B25 +#define GL_LINE_STIPPLE_REPEAT 0x0B26 +#define GL_LINE_WIDTH 0x0B21 +#define GL_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_LINE_WIDTH_RANGE 0x0B22 + +/* Polygons */ +#define GL_POINT 0x1B00 +#define GL_LINE 0x1B01 +#define GL_FILL 0x1B02 +#define GL_CW 0x0900 +#define GL_CCW 0x0901 +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_POLYGON_MODE 0x0B40 +#define GL_POLYGON_SMOOTH 0x0B41 +#define GL_POLYGON_STIPPLE 0x0B42 +#define GL_EDGE_FLAG 0x0B43 +#define GL_CULL_FACE 0x0B44 +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_POLYGON_OFFSET_UNITS 0x2A00 +#define GL_POLYGON_OFFSET_POINT 0x2A01 +#define GL_POLYGON_OFFSET_LINE 0x2A02 +#define GL_POLYGON_OFFSET_FILL 0x8037 + +/* Display Lists */ +#define GL_COMPILE 0x1300 +#define GL_COMPILE_AND_EXECUTE 0x1301 +#define GL_LIST_BASE 0x0B32 +#define GL_LIST_INDEX 0x0B33 +#define GL_LIST_MODE 0x0B30 + +/* Depth buffer */ +#define GL_NEVER 0x0200 +#define GL_LESS 0x0201 +#define GL_EQUAL 0x0202 +#define GL_LEQUAL 0x0203 +#define GL_GREATER 0x0204 +#define GL_NOTEQUAL 0x0205 +#define GL_GEQUAL 0x0206 +#define GL_ALWAYS 0x0207 +#define GL_DEPTH_TEST 0x0B71 +#define GL_DEPTH_BITS 0x0D56 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_COMPONENT 0x1902 + +/* Lighting */ +#define GL_LIGHTING 0x0B50 +#define GL_LIGHT0 0x4000 +#define GL_LIGHT1 0x4001 +#define GL_LIGHT2 0x4002 +#define GL_LIGHT3 0x4003 +#define GL_LIGHT4 0x4004 +#define GL_LIGHT5 0x4005 +#define GL_LIGHT6 0x4006 +#define GL_LIGHT7 0x4007 +#define GL_SPOT_EXPONENT 0x1205 +#define GL_SPOT_CUTOFF 0x1206 +#define GL_CONSTANT_ATTENUATION 0x1207 +#define GL_LINEAR_ATTENUATION 0x1208 +#define GL_QUADRATIC_ATTENUATION 0x1209 +#define GL_AMBIENT 0x1200 +#define GL_DIFFUSE 0x1201 +#define GL_SPECULAR 0x1202 +#define GL_SHININESS 0x1601 +#define GL_EMISSION 0x1600 +#define GL_POSITION 0x1203 +#define GL_SPOT_DIRECTION 0x1204 +#define GL_AMBIENT_AND_DIFFUSE 0x1602 +#define GL_COLOR_INDEXES 0x1603 +#define GL_LIGHT_MODEL_TWO_SIDE 0x0B52 +#define GL_LIGHT_MODEL_LOCAL_VIEWER 0x0B51 +#define GL_LIGHT_MODEL_AMBIENT 0x0B53 +#define GL_FRONT_AND_BACK 0x0408 +#define GL_SHADE_MODEL 0x0B54 +#define GL_FLAT 0x1D00 +#define GL_SMOOTH 0x1D01 +#define GL_COLOR_MATERIAL 0x0B57 +#define GL_COLOR_MATERIAL_FACE 0x0B55 +#define GL_COLOR_MATERIAL_PARAMETER 0x0B56 +#define GL_NORMALIZE 0x0BA1 + +/* User clipping planes */ +#define GL_CLIP_PLANE0 0x3000 +#define GL_CLIP_PLANE1 0x3001 +#define GL_CLIP_PLANE2 0x3002 +#define GL_CLIP_PLANE3 0x3003 +#define GL_CLIP_PLANE4 0x3004 +#define GL_CLIP_PLANE5 0x3005 + +/* Accumulation buffer */ +#define GL_ACCUM_RED_BITS 0x0D58 +#define GL_ACCUM_GREEN_BITS 0x0D59 +#define GL_ACCUM_BLUE_BITS 0x0D5A +#define GL_ACCUM_ALPHA_BITS 0x0D5B +#define GL_ACCUM_CLEAR_VALUE 0x0B80 +#define GL_ACCUM 0x0100 +#define GL_ADD 0x0104 +#define GL_LOAD 0x0101 +#define GL_MULT 0x0103 +#define GL_RETURN 0x0102 + +/* Alpha testing */ +#define GL_ALPHA_TEST 0x0BC0 +#define GL_ALPHA_TEST_REF 0x0BC2 +#define GL_ALPHA_TEST_FUNC 0x0BC1 + +/* Blending */ +#define GL_BLEND 0x0BE2 +#define GL_BLEND_SRC 0x0BE1 +#define GL_BLEND_DST 0x0BE0 +#define GL_ZERO 0 +#define GL_ONE 1 +#define GL_SRC_COLOR 0x0300 +#define GL_ONE_MINUS_SRC_COLOR 0x0301 +#define GL_SRC_ALPHA 0x0302 +#define GL_ONE_MINUS_SRC_ALPHA 0x0303 +#define GL_DST_ALPHA 0x0304 +#define GL_ONE_MINUS_DST_ALPHA 0x0305 +#define GL_DST_COLOR 0x0306 +#define GL_ONE_MINUS_DST_COLOR 0x0307 +#define GL_SRC_ALPHA_SATURATE 0x0308 + +/* Render Mode */ +#define GL_FEEDBACK 0x1C01 +#define GL_RENDER 0x1C00 +#define GL_SELECT 0x1C02 + +/* Feedback */ +#define GL_2D 0x0600 +#define GL_3D 0x0601 +#define GL_3D_COLOR 0x0602 +#define GL_3D_COLOR_TEXTURE 0x0603 +#define GL_4D_COLOR_TEXTURE 0x0604 +#define GL_POINT_TOKEN 0x0701 +#define GL_LINE_TOKEN 0x0702 +#define GL_LINE_RESET_TOKEN 0x0707 +#define GL_POLYGON_TOKEN 0x0703 +#define GL_BITMAP_TOKEN 0x0704 +#define GL_DRAW_PIXEL_TOKEN 0x0705 +#define GL_COPY_PIXEL_TOKEN 0x0706 +#define GL_PASS_THROUGH_TOKEN 0x0700 +#define GL_FEEDBACK_BUFFER_POINTER 0x0DF0 +#define GL_FEEDBACK_BUFFER_SIZE 0x0DF1 +#define GL_FEEDBACK_BUFFER_TYPE 0x0DF2 + +/* Selection */ +#define GL_SELECTION_BUFFER_POINTER 0x0DF3 +#define GL_SELECTION_BUFFER_SIZE 0x0DF4 + +/* Fog */ +#define GL_FOG 0x0B60 +#define GL_FOG_MODE 0x0B65 +#define GL_FOG_DENSITY 0x0B62 +#define GL_FOG_COLOR 0x0B66 +#define GL_FOG_INDEX 0x0B61 +#define GL_FOG_START 0x0B63 +#define GL_FOG_END 0x0B64 +#define GL_LINEAR 0x2601 +#define GL_EXP 0x0800 +#define GL_EXP2 0x0801 + +/* Logic Ops */ +#define GL_LOGIC_OP 0x0BF1 +#define GL_INDEX_LOGIC_OP 0x0BF1 +#define GL_COLOR_LOGIC_OP 0x0BF2 +#define GL_LOGIC_OP_MODE 0x0BF0 +#define GL_CLEAR 0x1500 +#define GL_SET 0x150F +#define GL_COPY 0x1503 +#define GL_COPY_INVERTED 0x150C +#define GL_NOOP 0x1505 +#define GL_INVERT 0x150A +#define GL_AND 0x1501 +#define GL_NAND 0x150E +#define GL_OR 0x1507 +#define GL_NOR 0x1508 +#define GL_XOR 0x1506 +#define GL_EQUIV 0x1509 +#define GL_AND_REVERSE 0x1502 +#define GL_AND_INVERTED 0x1504 +#define GL_OR_REVERSE 0x150B +#define GL_OR_INVERTED 0x150D + +/* Stencil */ +#define GL_STENCIL_BITS 0x0D57 +#define GL_STENCIL_TEST 0x0B90 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#define GL_STENCIL_VALUE_MASK 0x0B93 +#define GL_STENCIL_FAIL 0x0B94 +#define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 +#define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 +#define GL_STENCIL_REF 0x0B97 +#define GL_STENCIL_WRITEMASK 0x0B98 +#define GL_STENCIL_INDEX 0x1901 +#define GL_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 + +/* Buffers, Pixel Drawing/Reading */ +#define GL_NONE 0 +#define GL_LEFT 0x0406 +#define GL_RIGHT 0x0407 +/*GL_FRONT 0x0404 */ +/*GL_BACK 0x0405 */ +/*GL_FRONT_AND_BACK 0x0408 */ +#define GL_FRONT_LEFT 0x0400 +#define GL_FRONT_RIGHT 0x0401 +#define GL_BACK_LEFT 0x0402 +#define GL_BACK_RIGHT 0x0403 +#define GL_AUX0 0x0409 +#define GL_AUX1 0x040A +#define GL_AUX2 0x040B +#define GL_AUX3 0x040C +#define GL_COLOR_INDEX 0x1900 +#define GL_RED 0x1903 +#define GL_GREEN 0x1904 +#define GL_BLUE 0x1905 +#define GL_ALPHA 0x1906 +#define GL_LUMINANCE 0x1909 +#define GL_LUMINANCE_ALPHA 0x190A +#define GL_ALPHA_BITS 0x0D55 +#define GL_RED_BITS 0x0D52 +#define GL_GREEN_BITS 0x0D53 +#define GL_BLUE_BITS 0x0D54 +#define GL_INDEX_BITS 0x0D51 +#define GL_SUBPIXEL_BITS 0x0D50 +#define GL_AUX_BUFFERS 0x0C00 +#define GL_READ_BUFFER 0x0C02 +#define GL_DRAW_BUFFER 0x0C01 +#define GL_DOUBLEBUFFER 0x0C32 +#define GL_STEREO 0x0C33 +#define GL_BITMAP 0x1A00 +#define GL_COLOR 0x1800 +#define GL_DEPTH 0x1801 +#define GL_STENCIL 0x1802 +#define GL_DITHER 0x0BD0 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 + +/* Implementation limits */ +#define GL_MAX_LIST_NESTING 0x0B31 +#define GL_MAX_EVAL_ORDER 0x0D30 +#define GL_MAX_LIGHTS 0x0D31 +#define GL_MAX_CLIP_PLANES 0x0D32 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_PIXEL_MAP_TABLE 0x0D34 +#define GL_MAX_ATTRIB_STACK_DEPTH 0x0D35 +#define GL_MAX_MODELVIEW_STACK_DEPTH 0x0D36 +#define GL_MAX_NAME_STACK_DEPTH 0x0D37 +#define GL_MAX_PROJECTION_STACK_DEPTH 0x0D38 +#define GL_MAX_TEXTURE_STACK_DEPTH 0x0D39 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_MAX_CLIENT_ATTRIB_STACK_DEPTH 0x0D3B + +/* Gets */ +#define GL_ATTRIB_STACK_DEPTH 0x0BB0 +#define GL_CLIENT_ATTRIB_STACK_DEPTH 0x0BB1 +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_CURRENT_INDEX 0x0B01 +#define GL_CURRENT_COLOR 0x0B00 +#define GL_CURRENT_NORMAL 0x0B02 +#define GL_CURRENT_RASTER_COLOR 0x0B04 +#define GL_CURRENT_RASTER_DISTANCE 0x0B09 +#define GL_CURRENT_RASTER_INDEX 0x0B05 +#define GL_CURRENT_RASTER_POSITION 0x0B07 +#define GL_CURRENT_RASTER_TEXTURE_COORDS 0x0B06 +#define GL_CURRENT_RASTER_POSITION_VALID 0x0B08 +#define GL_CURRENT_TEXTURE_COORDS 0x0B03 +#define GL_INDEX_CLEAR_VALUE 0x0C20 +#define GL_INDEX_MODE 0x0C30 +#define GL_INDEX_WRITEMASK 0x0C21 +#define GL_MODELVIEW_MATRIX 0x0BA6 +#define GL_MODELVIEW_STACK_DEPTH 0x0BA3 +#define GL_NAME_STACK_DEPTH 0x0D70 +#define GL_PROJECTION_MATRIX 0x0BA7 +#define GL_PROJECTION_STACK_DEPTH 0x0BA4 +#define GL_RENDER_MODE 0x0C40 +#define GL_RGBA_MODE 0x0C31 +#define GL_TEXTURE_MATRIX 0x0BA8 +#define GL_TEXTURE_STACK_DEPTH 0x0BA5 +#define GL_VIEWPORT 0x0BA2 + +/* Evaluators */ +#define GL_AUTO_NORMAL 0x0D80 +#define GL_MAP1_COLOR_4 0x0D90 +#define GL_MAP1_INDEX 0x0D91 +#define GL_MAP1_NORMAL 0x0D92 +#define GL_MAP1_TEXTURE_COORD_1 0x0D93 +#define GL_MAP1_TEXTURE_COORD_2 0x0D94 +#define GL_MAP1_TEXTURE_COORD_3 0x0D95 +#define GL_MAP1_TEXTURE_COORD_4 0x0D96 +#define GL_MAP1_VERTEX_3 0x0D97 +#define GL_MAP1_VERTEX_4 0x0D98 +#define GL_MAP2_COLOR_4 0x0DB0 +#define GL_MAP2_INDEX 0x0DB1 +#define GL_MAP2_NORMAL 0x0DB2 +#define GL_MAP2_TEXTURE_COORD_1 0x0DB3 +#define GL_MAP2_TEXTURE_COORD_2 0x0DB4 +#define GL_MAP2_TEXTURE_COORD_3 0x0DB5 +#define GL_MAP2_TEXTURE_COORD_4 0x0DB6 +#define GL_MAP2_VERTEX_3 0x0DB7 +#define GL_MAP2_VERTEX_4 0x0DB8 +#define GL_MAP1_GRID_DOMAIN 0x0DD0 +#define GL_MAP1_GRID_SEGMENTS 0x0DD1 +#define GL_MAP2_GRID_DOMAIN 0x0DD2 +#define GL_MAP2_GRID_SEGMENTS 0x0DD3 +#define GL_COEFF 0x0A00 +#define GL_ORDER 0x0A01 +#define GL_DOMAIN 0x0A02 + +/* Hints */ +#define GL_PERSPECTIVE_CORRECTION_HINT 0x0C50 +#define GL_POINT_SMOOTH_HINT 0x0C51 +#define GL_LINE_SMOOTH_HINT 0x0C52 +#define GL_POLYGON_SMOOTH_HINT 0x0C53 +#define GL_FOG_HINT 0x0C54 +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 + +/* Scissor box */ +#define GL_SCISSOR_BOX 0x0C10 +#define GL_SCISSOR_TEST 0x0C11 + +/* Pixel Mode / Transfer */ +#define GL_MAP_COLOR 0x0D10 +#define GL_MAP_STENCIL 0x0D11 +#define GL_INDEX_SHIFT 0x0D12 +#define GL_INDEX_OFFSET 0x0D13 +#define GL_RED_SCALE 0x0D14 +#define GL_RED_BIAS 0x0D15 +#define GL_GREEN_SCALE 0x0D18 +#define GL_GREEN_BIAS 0x0D19 +#define GL_BLUE_SCALE 0x0D1A +#define GL_BLUE_BIAS 0x0D1B +#define GL_ALPHA_SCALE 0x0D1C +#define GL_ALPHA_BIAS 0x0D1D +#define GL_DEPTH_SCALE 0x0D1E +#define GL_DEPTH_BIAS 0x0D1F +#define GL_PIXEL_MAP_S_TO_S_SIZE 0x0CB1 +#define GL_PIXEL_MAP_I_TO_I_SIZE 0x0CB0 +#define GL_PIXEL_MAP_I_TO_R_SIZE 0x0CB2 +#define GL_PIXEL_MAP_I_TO_G_SIZE 0x0CB3 +#define GL_PIXEL_MAP_I_TO_B_SIZE 0x0CB4 +#define GL_PIXEL_MAP_I_TO_A_SIZE 0x0CB5 +#define GL_PIXEL_MAP_R_TO_R_SIZE 0x0CB6 +#define GL_PIXEL_MAP_G_TO_G_SIZE 0x0CB7 +#define GL_PIXEL_MAP_B_TO_B_SIZE 0x0CB8 +#define GL_PIXEL_MAP_A_TO_A_SIZE 0x0CB9 +#define GL_PIXEL_MAP_S_TO_S 0x0C71 +#define GL_PIXEL_MAP_I_TO_I 0x0C70 +#define GL_PIXEL_MAP_I_TO_R 0x0C72 +#define GL_PIXEL_MAP_I_TO_G 0x0C73 +#define GL_PIXEL_MAP_I_TO_B 0x0C74 +#define GL_PIXEL_MAP_I_TO_A 0x0C75 +#define GL_PIXEL_MAP_R_TO_R 0x0C76 +#define GL_PIXEL_MAP_G_TO_G 0x0C77 +#define GL_PIXEL_MAP_B_TO_B 0x0C78 +#define GL_PIXEL_MAP_A_TO_A 0x0C79 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_PACK_LSB_FIRST 0x0D01 +#define GL_PACK_ROW_LENGTH 0x0D02 +#define GL_PACK_SKIP_PIXELS 0x0D04 +#define GL_PACK_SKIP_ROWS 0x0D03 +#define GL_PACK_SWAP_BYTES 0x0D00 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_UNPACK_LSB_FIRST 0x0CF1 +#define GL_UNPACK_ROW_LENGTH 0x0CF2 +#define GL_UNPACK_SKIP_PIXELS 0x0CF4 +#define GL_UNPACK_SKIP_ROWS 0x0CF3 +#define GL_UNPACK_SWAP_BYTES 0x0CF0 +#define GL_ZOOM_X 0x0D16 +#define GL_ZOOM_Y 0x0D17 + +/* Texture mapping */ +#define GL_TEXTURE_ENV 0x2300 +#define GL_TEXTURE_ENV_MODE 0x2200 +#define GL_TEXTURE_1D 0x0DE0 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_TEXTURE_WRAP_S 0x2802 +#define GL_TEXTURE_WRAP_T 0x2803 +#define GL_TEXTURE_MAG_FILTER 0x2800 +#define GL_TEXTURE_MIN_FILTER 0x2801 +#define GL_TEXTURE_ENV_COLOR 0x2201 +#define GL_TEXTURE_GEN_S 0x0C60 +#define GL_TEXTURE_GEN_T 0x0C61 +#define GL_TEXTURE_GEN_R 0x0C62 +#define GL_TEXTURE_GEN_Q 0x0C63 +#define GL_TEXTURE_GEN_MODE 0x2500 +#define GL_TEXTURE_BORDER_COLOR 0x1004 +#define GL_TEXTURE_WIDTH 0x1000 +#define GL_TEXTURE_HEIGHT 0x1001 +#define GL_TEXTURE_BORDER 0x1005 +#define GL_TEXTURE_COMPONENTS 0x1003 +#define GL_TEXTURE_RED_SIZE 0x805C +#define GL_TEXTURE_GREEN_SIZE 0x805D +#define GL_TEXTURE_BLUE_SIZE 0x805E +#define GL_TEXTURE_ALPHA_SIZE 0x805F +#define GL_TEXTURE_LUMINANCE_SIZE 0x8060 +#define GL_TEXTURE_INTENSITY_SIZE 0x8061 +#define GL_NEAREST_MIPMAP_NEAREST 0x2700 +#define GL_NEAREST_MIPMAP_LINEAR 0x2702 +#define GL_LINEAR_MIPMAP_NEAREST 0x2701 +#define GL_LINEAR_MIPMAP_LINEAR 0x2703 +#define GL_OBJECT_LINEAR 0x2401 +#define GL_OBJECT_PLANE 0x2501 +#define GL_EYE_LINEAR 0x2400 +#define GL_EYE_PLANE 0x2502 +#define GL_SPHERE_MAP 0x2402 +#define GL_DECAL 0x2101 +#define GL_MODULATE 0x2100 +#define GL_NEAREST 0x2600 +#define GL_REPEAT 0x2901 +#define GL_CLAMP 0x2900 +#define GL_S 0x2000 +#define GL_T 0x2001 +#define GL_R 0x2002 +#define GL_Q 0x2003 + +/* Utility */ +#define GL_VENDOR 0x1F00 +#define GL_RENDERER 0x1F01 +#define GL_VERSION 0x1F02 +#define GL_EXTENSIONS 0x1F03 + +/* Errors */ +#define GL_NO_ERROR 0 +#define GL_INVALID_ENUM 0x0500 +#define GL_INVALID_VALUE 0x0501 +#define GL_INVALID_OPERATION 0x0502 +#define GL_STACK_OVERFLOW 0x0503 +#define GL_STACK_UNDERFLOW 0x0504 +#define GL_OUT_OF_MEMORY 0x0505 + +/* glPush/PopAttrib bits */ +#define GL_CURRENT_BIT 0x00000001 +#define GL_POINT_BIT 0x00000002 +#define GL_LINE_BIT 0x00000004 +#define GL_POLYGON_BIT 0x00000008 +#define GL_POLYGON_STIPPLE_BIT 0x00000010 +#define GL_PIXEL_MODE_BIT 0x00000020 +#define GL_LIGHTING_BIT 0x00000040 +#define GL_FOG_BIT 0x00000080 +#define GL_DEPTH_BUFFER_BIT 0x00000100 +#define GL_ACCUM_BUFFER_BIT 0x00000200 +#define GL_STENCIL_BUFFER_BIT 0x00000400 +#define GL_VIEWPORT_BIT 0x00000800 +#define GL_TRANSFORM_BIT 0x00001000 +#define GL_ENABLE_BIT 0x00002000 +#define GL_COLOR_BUFFER_BIT 0x00004000 +#define GL_HINT_BIT 0x00008000 +#define GL_EVAL_BIT 0x00010000 +#define GL_LIST_BIT 0x00020000 +#define GL_TEXTURE_BIT 0x00040000 +#define GL_SCISSOR_BIT 0x00080000 +#define GL_ALL_ATTRIB_BITS 0x000FFFFF + + +/* OpenGL 1.1 */ +#define GL_PROXY_TEXTURE_1D 0x8063 +#define GL_PROXY_TEXTURE_2D 0x8064 +#define GL_TEXTURE_PRIORITY 0x8066 +#define GL_TEXTURE_RESIDENT 0x8067 +#define GL_TEXTURE_BINDING_1D 0x8068 +#define GL_TEXTURE_BINDING_2D 0x8069 +#define GL_TEXTURE_INTERNAL_FORMAT 0x1003 +#define GL_ALPHA4 0x803B +#define GL_ALPHA8 0x803C +#define GL_ALPHA12 0x803D +#define GL_ALPHA16 0x803E +#define GL_LUMINANCE4 0x803F +#define GL_LUMINANCE8 0x8040 +#define GL_LUMINANCE12 0x8041 +#define GL_LUMINANCE16 0x8042 +#define GL_LUMINANCE4_ALPHA4 0x8043 +#define GL_LUMINANCE6_ALPHA2 0x8044 +#define GL_LUMINANCE8_ALPHA8 0x8045 +#define GL_LUMINANCE12_ALPHA4 0x8046 +#define GL_LUMINANCE12_ALPHA12 0x8047 +#define GL_LUMINANCE16_ALPHA16 0x8048 +#define GL_INTENSITY 0x8049 +#define GL_INTENSITY4 0x804A +#define GL_INTENSITY8 0x804B +#define GL_INTENSITY12 0x804C +#define GL_INTENSITY16 0x804D +#define GL_R3_G3_B2 0x2A10 +#define GL_RGB4 0x804F +#define GL_RGB5 0x8050 +#define GL_RGB8 0x8051 +#define GL_RGB10 0x8052 +#define GL_RGB12 0x8053 +#define GL_RGB16 0x8054 +#define GL_RGBA2 0x8055 +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGBA8 0x8058 +#define GL_RGB10_A2 0x8059 +#define GL_RGBA12 0x805A +#define GL_RGBA16 0x805B +#define GL_CLIENT_PIXEL_STORE_BIT 0x00000001 +#define GL_CLIENT_VERTEX_ARRAY_BIT 0x00000002 +#define GL_ALL_CLIENT_ATTRIB_BITS 0xFFFFFFFF +#define GL_CLIENT_ALL_ATTRIB_BITS 0xFFFFFFFF + + + +/* + * Miscellaneous + */ + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES +GLAPI void GLAPIENTRY glClearIndex( GLfloat c ); + +GLAPI void GLAPIENTRY glClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ); + +GLAPI void GLAPIENTRY glClear( GLbitfield mask ); + +GLAPI void GLAPIENTRY glIndexMask( GLuint mask ); + +GLAPI void GLAPIENTRY glColorMask( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ); + +GLAPI void GLAPIENTRY glAlphaFunc( GLenum func, GLclampf ref ); + +GLAPI void GLAPIENTRY glBlendFunc( GLenum sfactor, GLenum dfactor ); + +GLAPI void GLAPIENTRY glLogicOp( GLenum opcode ); + +GLAPI void GLAPIENTRY glCullFace( GLenum mode ); + +GLAPI void GLAPIENTRY glFrontFace( GLenum mode ); + +GLAPI void GLAPIENTRY glPointSize( GLfloat size ); + +GLAPI void GLAPIENTRY glLineWidth( GLfloat width ); + +GLAPI void GLAPIENTRY glLineStipple( GLint factor, GLushort pattern ); + +GLAPI void GLAPIENTRY glPolygonMode( GLenum face, GLenum mode ); + +GLAPI void GLAPIENTRY glPolygonOffset( GLfloat factor, GLfloat units ); + +GLAPI void GLAPIENTRY glPolygonStipple( const GLubyte *mask ); + +GLAPI void GLAPIENTRY glGetPolygonStipple( GLubyte *mask ); + +GLAPI void GLAPIENTRY glEdgeFlag( GLboolean flag ); + +GLAPI void GLAPIENTRY glEdgeFlagv( const GLboolean *flag ); + +GLAPI void GLAPIENTRY glScissor( GLint x, GLint y, GLsizei width, GLsizei height); + +GLAPI void GLAPIENTRY glClipPlane( GLenum plane, const GLdouble *equation ); + +GLAPI void GLAPIENTRY glGetClipPlane( GLenum plane, GLdouble *equation ); + +GLAPI void GLAPIENTRY glDrawBuffer( GLenum mode ); + +GLAPI void GLAPIENTRY glReadBuffer( GLenum mode ); + +GLAPI void GLAPIENTRY glEnable( GLenum cap ); + +GLAPI void GLAPIENTRY glDisable( GLenum cap ); + +GLAPI GLboolean GLAPIENTRY glIsEnabled( GLenum cap ); + + +GLAPI void GLAPIENTRY glEnableClientState( GLenum cap ); /* 1.1 */ + +GLAPI void GLAPIENTRY glDisableClientState( GLenum cap ); /* 1.1 */ + + +GLAPI void GLAPIENTRY glGetBooleanv( GLenum pname, GLboolean *params ); + +GLAPI void GLAPIENTRY glGetDoublev( GLenum pname, GLdouble *params ); + +GLAPI void GLAPIENTRY glGetFloatv( GLenum pname, GLfloat *params ); + +GLAPI void GLAPIENTRY glGetIntegerv( GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glPushAttrib( GLbitfield mask ); + +GLAPI void GLAPIENTRY glPopAttrib( void ); + + +GLAPI void GLAPIENTRY glPushClientAttrib( GLbitfield mask ); /* 1.1 */ + +GLAPI void GLAPIENTRY glPopClientAttrib( void ); /* 1.1 */ + + +GLAPI GLint GLAPIENTRY glRenderMode( GLenum mode ); + +GLAPI GLenum GLAPIENTRY glGetError( void ); + +GLAPI const GLubyte * GLAPIENTRY glGetString( GLenum name ); + +GLAPI void GLAPIENTRY glFinish( void ); + +GLAPI void GLAPIENTRY glFlush( void ); + +GLAPI void GLAPIENTRY glHint( GLenum target, GLenum mode ); + + +/* + * Depth Buffer + */ + +GLAPI void GLAPIENTRY glClearDepth( GLclampd depth ); + +GLAPI void GLAPIENTRY glDepthFunc( GLenum func ); + +GLAPI void GLAPIENTRY glDepthMask( GLboolean flag ); + +GLAPI void GLAPIENTRY glDepthRange( GLclampd near_val, GLclampd far_val ); + + +/* + * Accumulation Buffer + */ + +GLAPI void GLAPIENTRY glClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ); + +GLAPI void GLAPIENTRY glAccum( GLenum op, GLfloat value ); + + +/* + * Transformation + */ + +GLAPI void GLAPIENTRY glMatrixMode( GLenum mode ); + +GLAPI void GLAPIENTRY glOrtho( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +GLAPI void GLAPIENTRY glFrustum( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +GLAPI void GLAPIENTRY glViewport( GLint x, GLint y, + GLsizei width, GLsizei height ); + +GLAPI void GLAPIENTRY glPushMatrix( void ); + +GLAPI void GLAPIENTRY glPopMatrix( void ); + +GLAPI void GLAPIENTRY glLoadIdentity( void ); + +GLAPI void GLAPIENTRY glLoadMatrixd( const GLdouble *m ); +GLAPI void GLAPIENTRY glLoadMatrixf( const GLfloat *m ); + +GLAPI void GLAPIENTRY glMultMatrixd( const GLdouble *m ); +GLAPI void GLAPIENTRY glMultMatrixf( const GLfloat *m ); + +GLAPI void GLAPIENTRY glRotated( GLdouble angle, + GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glRotatef( GLfloat angle, + GLfloat x, GLfloat y, GLfloat z ); + +GLAPI void GLAPIENTRY glScaled( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glScalef( GLfloat x, GLfloat y, GLfloat z ); + +GLAPI void GLAPIENTRY glTranslated( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glTranslatef( GLfloat x, GLfloat y, GLfloat z ); + + +/* + * Display Lists + */ + +GLAPI GLboolean GLAPIENTRY glIsList( GLuint list ); + +GLAPI void GLAPIENTRY glDeleteLists( GLuint list, GLsizei range ); + +GLAPI GLuint GLAPIENTRY glGenLists( GLsizei range ); + +GLAPI void GLAPIENTRY glNewList( GLuint list, GLenum mode ); + +GLAPI void GLAPIENTRY glEndList( void ); + +GLAPI void GLAPIENTRY glCallList( GLuint list ); + +GLAPI void GLAPIENTRY glCallLists( GLsizei n, GLenum type, + const GLvoid *lists ); + +GLAPI void GLAPIENTRY glListBase( GLuint base ); + + +/* + * Drawing Functions + */ + +GLAPI void GLAPIENTRY glBegin( GLenum mode ); + +GLAPI void GLAPIENTRY glEnd( void ); + + +GLAPI void GLAPIENTRY glVertex2d( GLdouble x, GLdouble y ); +GLAPI void GLAPIENTRY glVertex2f( GLfloat x, GLfloat y ); +GLAPI void GLAPIENTRY glVertex2i( GLint x, GLint y ); +GLAPI void GLAPIENTRY glVertex2s( GLshort x, GLshort y ); + +GLAPI void GLAPIENTRY glVertex3d( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glVertex3f( GLfloat x, GLfloat y, GLfloat z ); +GLAPI void GLAPIENTRY glVertex3i( GLint x, GLint y, GLint z ); +GLAPI void GLAPIENTRY glVertex3s( GLshort x, GLshort y, GLshort z ); + +GLAPI void GLAPIENTRY glVertex4d( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +GLAPI void GLAPIENTRY glVertex4f( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +GLAPI void GLAPIENTRY glVertex4i( GLint x, GLint y, GLint z, GLint w ); +GLAPI void GLAPIENTRY glVertex4s( GLshort x, GLshort y, GLshort z, GLshort w ); + +GLAPI void GLAPIENTRY glVertex2dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glVertex2fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glVertex2iv( const GLint *v ); +GLAPI void GLAPIENTRY glVertex2sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glVertex3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glVertex3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glVertex3iv( const GLint *v ); +GLAPI void GLAPIENTRY glVertex3sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glVertex4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glVertex4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glVertex4iv( const GLint *v ); +GLAPI void GLAPIENTRY glVertex4sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glNormal3b( GLbyte nx, GLbyte ny, GLbyte nz ); +GLAPI void GLAPIENTRY glNormal3d( GLdouble nx, GLdouble ny, GLdouble nz ); +GLAPI void GLAPIENTRY glNormal3f( GLfloat nx, GLfloat ny, GLfloat nz ); +GLAPI void GLAPIENTRY glNormal3i( GLint nx, GLint ny, GLint nz ); +GLAPI void GLAPIENTRY glNormal3s( GLshort nx, GLshort ny, GLshort nz ); + +GLAPI void GLAPIENTRY glNormal3bv( const GLbyte *v ); +GLAPI void GLAPIENTRY glNormal3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glNormal3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glNormal3iv( const GLint *v ); +GLAPI void GLAPIENTRY glNormal3sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glIndexd( GLdouble c ); +GLAPI void GLAPIENTRY glIndexf( GLfloat c ); +GLAPI void GLAPIENTRY glIndexi( GLint c ); +GLAPI void GLAPIENTRY glIndexs( GLshort c ); +GLAPI void GLAPIENTRY glIndexub( GLubyte c ); /* 1.1 */ + +GLAPI void GLAPIENTRY glIndexdv( const GLdouble *c ); +GLAPI void GLAPIENTRY glIndexfv( const GLfloat *c ); +GLAPI void GLAPIENTRY glIndexiv( const GLint *c ); +GLAPI void GLAPIENTRY glIndexsv( const GLshort *c ); +GLAPI void GLAPIENTRY glIndexubv( const GLubyte *c ); /* 1.1 */ + +GLAPI void GLAPIENTRY glColor3b( GLbyte red, GLbyte green, GLbyte blue ); +GLAPI void GLAPIENTRY glColor3d( GLdouble red, GLdouble green, GLdouble blue ); +GLAPI void GLAPIENTRY glColor3f( GLfloat red, GLfloat green, GLfloat blue ); +GLAPI void GLAPIENTRY glColor3i( GLint red, GLint green, GLint blue ); +GLAPI void GLAPIENTRY glColor3s( GLshort red, GLshort green, GLshort blue ); +GLAPI void GLAPIENTRY glColor3ub( GLubyte red, GLubyte green, GLubyte blue ); +GLAPI void GLAPIENTRY glColor3ui( GLuint red, GLuint green, GLuint blue ); +GLAPI void GLAPIENTRY glColor3us( GLushort red, GLushort green, GLushort blue ); + +GLAPI void GLAPIENTRY glColor4b( GLbyte red, GLbyte green, + GLbyte blue, GLbyte alpha ); +GLAPI void GLAPIENTRY glColor4d( GLdouble red, GLdouble green, + GLdouble blue, GLdouble alpha ); +GLAPI void GLAPIENTRY glColor4f( GLfloat red, GLfloat green, + GLfloat blue, GLfloat alpha ); +GLAPI void GLAPIENTRY glColor4i( GLint red, GLint green, + GLint blue, GLint alpha ); +GLAPI void GLAPIENTRY glColor4s( GLshort red, GLshort green, + GLshort blue, GLshort alpha ); +GLAPI void GLAPIENTRY glColor4ub( GLubyte red, GLubyte green, + GLubyte blue, GLubyte alpha ); +GLAPI void GLAPIENTRY glColor4ui( GLuint red, GLuint green, + GLuint blue, GLuint alpha ); +GLAPI void GLAPIENTRY glColor4us( GLushort red, GLushort green, + GLushort blue, GLushort alpha ); + + +GLAPI void GLAPIENTRY glColor3bv( const GLbyte *v ); +GLAPI void GLAPIENTRY glColor3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glColor3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glColor3iv( const GLint *v ); +GLAPI void GLAPIENTRY glColor3sv( const GLshort *v ); +GLAPI void GLAPIENTRY glColor3ubv( const GLubyte *v ); +GLAPI void GLAPIENTRY glColor3uiv( const GLuint *v ); +GLAPI void GLAPIENTRY glColor3usv( const GLushort *v ); + +GLAPI void GLAPIENTRY glColor4bv( const GLbyte *v ); +GLAPI void GLAPIENTRY glColor4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glColor4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glColor4iv( const GLint *v ); +GLAPI void GLAPIENTRY glColor4sv( const GLshort *v ); +GLAPI void GLAPIENTRY glColor4ubv( const GLubyte *v ); +GLAPI void GLAPIENTRY glColor4uiv( const GLuint *v ); +GLAPI void GLAPIENTRY glColor4usv( const GLushort *v ); + + +GLAPI void GLAPIENTRY glTexCoord1d( GLdouble s ); +GLAPI void GLAPIENTRY glTexCoord1f( GLfloat s ); +GLAPI void GLAPIENTRY glTexCoord1i( GLint s ); +GLAPI void GLAPIENTRY glTexCoord1s( GLshort s ); + +GLAPI void GLAPIENTRY glTexCoord2d( GLdouble s, GLdouble t ); +GLAPI void GLAPIENTRY glTexCoord2f( GLfloat s, GLfloat t ); +GLAPI void GLAPIENTRY glTexCoord2i( GLint s, GLint t ); +GLAPI void GLAPIENTRY glTexCoord2s( GLshort s, GLshort t ); + +GLAPI void GLAPIENTRY glTexCoord3d( GLdouble s, GLdouble t, GLdouble r ); +GLAPI void GLAPIENTRY glTexCoord3f( GLfloat s, GLfloat t, GLfloat r ); +GLAPI void GLAPIENTRY glTexCoord3i( GLint s, GLint t, GLint r ); +GLAPI void GLAPIENTRY glTexCoord3s( GLshort s, GLshort t, GLshort r ); + +GLAPI void GLAPIENTRY glTexCoord4d( GLdouble s, GLdouble t, GLdouble r, GLdouble q ); +GLAPI void GLAPIENTRY glTexCoord4f( GLfloat s, GLfloat t, GLfloat r, GLfloat q ); +GLAPI void GLAPIENTRY glTexCoord4i( GLint s, GLint t, GLint r, GLint q ); +GLAPI void GLAPIENTRY glTexCoord4s( GLshort s, GLshort t, GLshort r, GLshort q ); + +GLAPI void GLAPIENTRY glTexCoord1dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord1fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord1iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord1sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glTexCoord2dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord2fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord2iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord2sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glTexCoord3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord3iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord3sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glTexCoord4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glTexCoord4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glTexCoord4iv( const GLint *v ); +GLAPI void GLAPIENTRY glTexCoord4sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glRasterPos2d( GLdouble x, GLdouble y ); +GLAPI void GLAPIENTRY glRasterPos2f( GLfloat x, GLfloat y ); +GLAPI void GLAPIENTRY glRasterPos2i( GLint x, GLint y ); +GLAPI void GLAPIENTRY glRasterPos2s( GLshort x, GLshort y ); + +GLAPI void GLAPIENTRY glRasterPos3d( GLdouble x, GLdouble y, GLdouble z ); +GLAPI void GLAPIENTRY glRasterPos3f( GLfloat x, GLfloat y, GLfloat z ); +GLAPI void GLAPIENTRY glRasterPos3i( GLint x, GLint y, GLint z ); +GLAPI void GLAPIENTRY glRasterPos3s( GLshort x, GLshort y, GLshort z ); + +GLAPI void GLAPIENTRY glRasterPos4d( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +GLAPI void GLAPIENTRY glRasterPos4f( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +GLAPI void GLAPIENTRY glRasterPos4i( GLint x, GLint y, GLint z, GLint w ); +GLAPI void GLAPIENTRY glRasterPos4s( GLshort x, GLshort y, GLshort z, GLshort w ); + +GLAPI void GLAPIENTRY glRasterPos2dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glRasterPos2fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glRasterPos2iv( const GLint *v ); +GLAPI void GLAPIENTRY glRasterPos2sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glRasterPos3dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glRasterPos3fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glRasterPos3iv( const GLint *v ); +GLAPI void GLAPIENTRY glRasterPos3sv( const GLshort *v ); + +GLAPI void GLAPIENTRY glRasterPos4dv( const GLdouble *v ); +GLAPI void GLAPIENTRY glRasterPos4fv( const GLfloat *v ); +GLAPI void GLAPIENTRY glRasterPos4iv( const GLint *v ); +GLAPI void GLAPIENTRY glRasterPos4sv( const GLshort *v ); + + +GLAPI void GLAPIENTRY glRectd( GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2 ); +GLAPI void GLAPIENTRY glRectf( GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2 ); +GLAPI void GLAPIENTRY glRecti( GLint x1, GLint y1, GLint x2, GLint y2 ); +GLAPI void GLAPIENTRY glRects( GLshort x1, GLshort y1, GLshort x2, GLshort y2 ); + + +GLAPI void GLAPIENTRY glRectdv( const GLdouble *v1, const GLdouble *v2 ); +GLAPI void GLAPIENTRY glRectfv( const GLfloat *v1, const GLfloat *v2 ); +GLAPI void GLAPIENTRY glRectiv( const GLint *v1, const GLint *v2 ); +GLAPI void GLAPIENTRY glRectsv( const GLshort *v1, const GLshort *v2 ); + + +/* + * Vertex Arrays (1.1) + */ + +GLAPI void GLAPIENTRY glVertexPointer( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glNormalPointer( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glColorPointer( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glIndexPointer( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glTexCoordPointer( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glEdgeFlagPointer( GLsizei stride, const GLvoid *ptr ); + +GLAPI void GLAPIENTRY glGetPointerv( GLenum pname, GLvoid **params ); + +GLAPI void GLAPIENTRY glArrayElement( GLint i ); + +GLAPI void GLAPIENTRY glDrawArrays( GLenum mode, GLint first, GLsizei count ); + +GLAPI void GLAPIENTRY glDrawElements( GLenum mode, GLsizei count, + GLenum type, const GLvoid *indices ); + +GLAPI void GLAPIENTRY glInterleavedArrays( GLenum format, GLsizei stride, + const GLvoid *pointer ); + +/* + * Lighting + */ + +GLAPI void GLAPIENTRY glShadeModel( GLenum mode ); + +GLAPI void GLAPIENTRY glLightf( GLenum light, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glLighti( GLenum light, GLenum pname, GLint param ); +GLAPI void GLAPIENTRY glLightfv( GLenum light, GLenum pname, + const GLfloat *params ); +GLAPI void GLAPIENTRY glLightiv( GLenum light, GLenum pname, + const GLint *params ); + +GLAPI void GLAPIENTRY glGetLightfv( GLenum light, GLenum pname, + GLfloat *params ); +GLAPI void GLAPIENTRY glGetLightiv( GLenum light, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glLightModelf( GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glLightModeli( GLenum pname, GLint param ); +GLAPI void GLAPIENTRY glLightModelfv( GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glLightModeliv( GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glMaterialf( GLenum face, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glMateriali( GLenum face, GLenum pname, GLint param ); +GLAPI void GLAPIENTRY glMaterialfv( GLenum face, GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glMaterialiv( GLenum face, GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glGetMaterialfv( GLenum face, GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetMaterialiv( GLenum face, GLenum pname, GLint *params ); + +GLAPI void GLAPIENTRY glColorMaterial( GLenum face, GLenum mode ); + + +/* + * Raster functions + */ + +GLAPI void GLAPIENTRY glPixelZoom( GLfloat xfactor, GLfloat yfactor ); + +GLAPI void GLAPIENTRY glPixelStoref( GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glPixelStorei( GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glPixelTransferf( GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glPixelTransferi( GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glPixelMapfv( GLenum map, GLsizei mapsize, + const GLfloat *values ); +GLAPI void GLAPIENTRY glPixelMapuiv( GLenum map, GLsizei mapsize, + const GLuint *values ); +GLAPI void GLAPIENTRY glPixelMapusv( GLenum map, GLsizei mapsize, + const GLushort *values ); + +GLAPI void GLAPIENTRY glGetPixelMapfv( GLenum map, GLfloat *values ); +GLAPI void GLAPIENTRY glGetPixelMapuiv( GLenum map, GLuint *values ); +GLAPI void GLAPIENTRY glGetPixelMapusv( GLenum map, GLushort *values ); + +GLAPI void GLAPIENTRY glBitmap( GLsizei width, GLsizei height, + GLfloat xorig, GLfloat yorig, + GLfloat xmove, GLfloat ymove, + const GLubyte *bitmap ); + +GLAPI void GLAPIENTRY glReadPixels( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + GLvoid *pixels ); + +GLAPI void GLAPIENTRY glDrawPixels( GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glCopyPixels( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum type ); + +/* + * Stenciling + */ + +GLAPI void GLAPIENTRY glStencilFunc( GLenum func, GLint ref, GLuint mask ); + +GLAPI void GLAPIENTRY glStencilMask( GLuint mask ); + +GLAPI void GLAPIENTRY glStencilOp( GLenum fail, GLenum zfail, GLenum zpass ); + +GLAPI void GLAPIENTRY glClearStencil( GLint s ); + + + +/* + * Texture mapping + */ + +GLAPI void GLAPIENTRY glTexGend( GLenum coord, GLenum pname, GLdouble param ); +GLAPI void GLAPIENTRY glTexGenf( GLenum coord, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glTexGeni( GLenum coord, GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glTexGendv( GLenum coord, GLenum pname, const GLdouble *params ); +GLAPI void GLAPIENTRY glTexGenfv( GLenum coord, GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glTexGeniv( GLenum coord, GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glGetTexGendv( GLenum coord, GLenum pname, GLdouble *params ); +GLAPI void GLAPIENTRY glGetTexGenfv( GLenum coord, GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetTexGeniv( GLenum coord, GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glTexEnvf( GLenum target, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glTexEnvi( GLenum target, GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glTexEnvfv( GLenum target, GLenum pname, const GLfloat *params ); +GLAPI void GLAPIENTRY glTexEnviv( GLenum target, GLenum pname, const GLint *params ); + +GLAPI void GLAPIENTRY glGetTexEnvfv( GLenum target, GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetTexEnviv( GLenum target, GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glTexParameterf( GLenum target, GLenum pname, GLfloat param ); +GLAPI void GLAPIENTRY glTexParameteri( GLenum target, GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glTexParameterfv( GLenum target, GLenum pname, + const GLfloat *params ); +GLAPI void GLAPIENTRY glTexParameteriv( GLenum target, GLenum pname, + const GLint *params ); + +GLAPI void GLAPIENTRY glGetTexParameterfv( GLenum target, + GLenum pname, GLfloat *params); +GLAPI void GLAPIENTRY glGetTexParameteriv( GLenum target, + GLenum pname, GLint *params ); + +GLAPI void GLAPIENTRY glGetTexLevelParameterfv( GLenum target, GLint level, + GLenum pname, GLfloat *params ); +GLAPI void GLAPIENTRY glGetTexLevelParameteriv( GLenum target, GLint level, + GLenum pname, GLint *params ); + + +GLAPI void GLAPIENTRY glTexImage1D( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glTexImage2D( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLint border, GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glGetTexImage( GLenum target, GLint level, + GLenum format, GLenum type, + GLvoid *pixels ); + + +/* 1.1 functions */ + +GLAPI void GLAPIENTRY glGenTextures( GLsizei n, GLuint *textures ); + +GLAPI void GLAPIENTRY glDeleteTextures( GLsizei n, const GLuint *textures); + +GLAPI void GLAPIENTRY glBindTexture( GLenum target, GLuint texture ); + +GLAPI void GLAPIENTRY glPrioritizeTextures( GLsizei n, + const GLuint *textures, + const GLclampf *priorities ); + +GLAPI GLboolean GLAPIENTRY glAreTexturesResident( GLsizei n, + const GLuint *textures, + GLboolean *residences ); + +GLAPI GLboolean GLAPIENTRY glIsTexture( GLuint texture ); + + +GLAPI void GLAPIENTRY glTexSubImage1D( GLenum target, GLint level, + GLint xoffset, + GLsizei width, GLenum format, + GLenum type, const GLvoid *pixels ); + + +GLAPI void GLAPIENTRY glTexSubImage2D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + + +GLAPI void GLAPIENTRY glCopyTexImage1D( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLint border ); + + +GLAPI void GLAPIENTRY glCopyTexImage2D( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLsizei height, + GLint border ); + + +GLAPI void GLAPIENTRY glCopyTexSubImage1D( GLenum target, GLint level, + GLint xoffset, GLint x, GLint y, + GLsizei width ); + + +GLAPI void GLAPIENTRY glCopyTexSubImage2D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint x, GLint y, + GLsizei width, GLsizei height ); + + +/* + * Evaluators + */ + +GLAPI void GLAPIENTRY glMap1d( GLenum target, GLdouble u1, GLdouble u2, + GLint stride, + GLint order, const GLdouble *points ); +GLAPI void GLAPIENTRY glMap1f( GLenum target, GLfloat u1, GLfloat u2, + GLint stride, + GLint order, const GLfloat *points ); + +GLAPI void GLAPIENTRY glMap2d( GLenum target, + GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, + GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, + const GLdouble *points ); +GLAPI void GLAPIENTRY glMap2f( GLenum target, + GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, + GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, + const GLfloat *points ); + +GLAPI void GLAPIENTRY glGetMapdv( GLenum target, GLenum query, GLdouble *v ); +GLAPI void GLAPIENTRY glGetMapfv( GLenum target, GLenum query, GLfloat *v ); +GLAPI void GLAPIENTRY glGetMapiv( GLenum target, GLenum query, GLint *v ); + +GLAPI void GLAPIENTRY glEvalCoord1d( GLdouble u ); +GLAPI void GLAPIENTRY glEvalCoord1f( GLfloat u ); + +GLAPI void GLAPIENTRY glEvalCoord1dv( const GLdouble *u ); +GLAPI void GLAPIENTRY glEvalCoord1fv( const GLfloat *u ); + +GLAPI void GLAPIENTRY glEvalCoord2d( GLdouble u, GLdouble v ); +GLAPI void GLAPIENTRY glEvalCoord2f( GLfloat u, GLfloat v ); + +GLAPI void GLAPIENTRY glEvalCoord2dv( const GLdouble *u ); +GLAPI void GLAPIENTRY glEvalCoord2fv( const GLfloat *u ); + +GLAPI void GLAPIENTRY glMapGrid1d( GLint un, GLdouble u1, GLdouble u2 ); +GLAPI void GLAPIENTRY glMapGrid1f( GLint un, GLfloat u1, GLfloat u2 ); + +GLAPI void GLAPIENTRY glMapGrid2d( GLint un, GLdouble u1, GLdouble u2, + GLint vn, GLdouble v1, GLdouble v2 ); +GLAPI void GLAPIENTRY glMapGrid2f( GLint un, GLfloat u1, GLfloat u2, + GLint vn, GLfloat v1, GLfloat v2 ); + +GLAPI void GLAPIENTRY glEvalPoint1( GLint i ); + +GLAPI void GLAPIENTRY glEvalPoint2( GLint i, GLint j ); + +GLAPI void GLAPIENTRY glEvalMesh1( GLenum mode, GLint i1, GLint i2 ); + +GLAPI void GLAPIENTRY glEvalMesh2( GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 ); + + +/* + * Fog + */ + +GLAPI void GLAPIENTRY glFogf( GLenum pname, GLfloat param ); + +GLAPI void GLAPIENTRY glFogi( GLenum pname, GLint param ); + +GLAPI void GLAPIENTRY glFogfv( GLenum pname, const GLfloat *params ); + +GLAPI void GLAPIENTRY glFogiv( GLenum pname, const GLint *params ); + + +/* + * Selection and Feedback + */ + +GLAPI void GLAPIENTRY glFeedbackBuffer( GLsizei size, GLenum type, GLfloat *buffer ); + +GLAPI void GLAPIENTRY glPassThrough( GLfloat token ); + +GLAPI void GLAPIENTRY glSelectBuffer( GLsizei size, GLuint *buffer ); + +GLAPI void GLAPIENTRY glInitNames( void ); + +GLAPI void GLAPIENTRY glLoadName( GLuint name ); + +GLAPI void GLAPIENTRY glPushName( GLuint name ); + +GLAPI void GLAPIENTRY glPopName( void ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLCLEARINDEXPROC) ( GLfloat c ); + +typedef void (APIENTRYP PFNGLCLEARCOLORPROC) ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ); + +typedef void (APIENTRYP PFNGLCLEARPROC) ( GLbitfield mask ); + +typedef void (APIENTRYP PFNGLINDEXMASKPROC) ( GLuint mask ); + +typedef void (APIENTRYP PFNGLCOLORMASKPROC) ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ); + +typedef void (APIENTRYP PFNGLALPHAFUNCPROC) ( GLenum func, GLclampf ref ); + +typedef void (APIENTRYP PFNGLBLENDFUNCPROC) ( GLenum sfactor, GLenum dfactor ); + +typedef void (APIENTRYP PFNGLLOGICOPPROC) ( GLenum opcode ); + +typedef void (APIENTRYP PFNGLCULLFACEPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLFRONTFACEPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLPOINTSIZEPROC) ( GLfloat size ); + +typedef void (APIENTRYP PFNGLLINEWIDTHPROC) ( GLfloat width ); + +typedef void (APIENTRYP PFNGLLINESTIPPLEPROC) ( GLint factor, GLushort pattern ); + +typedef void (APIENTRYP PFNGLPOLYGONMODEPROC) ( GLenum face, GLenum mode ); + +typedef void (APIENTRYP PFNGLPOLYGONOFFSETPROC) ( GLfloat factor, GLfloat units ); + +typedef void (APIENTRYP PFNGLPOLYGONSTIPPLEPROC) ( const GLubyte *mask ); + +typedef void (APIENTRYP PFNGLGETPOLYGONSTIPPLEPROC) ( GLubyte *mask ); + +typedef void (APIENTRYP PFNGLEDGEFLAGPROC) ( GLboolean flag ); + +typedef void (APIENTRYP PFNGLEDGEFLAGVPROC) ( const GLboolean *flag ); + +typedef void (APIENTRYP PFNGLSCISSORPROC) ( GLint x, GLint y, GLsizei width, GLsizei height); + +typedef void (APIENTRYP PFNGLCLIPPLANEPROC) ( GLenum plane, const GLdouble *equation ); + +typedef void (APIENTRYP PFNGLGETCLIPPLANEPROC) ( GLenum plane, GLdouble *equation ); + +typedef void (APIENTRYP PFNGLDRAWBUFFERPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLREADBUFFERPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLENABLEPROC) ( GLenum cap ); + +typedef void (APIENTRYP PFNGLDISABLEPROC) ( GLenum cap ); + +typedef GLboolean (APIENTRYP PFNGLISENABLEDPROC) ( GLenum cap ); + + +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEPROC) ( GLenum cap ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEPROC) ( GLenum cap ); /* 1.1 */ + + +typedef void (APIENTRYP PFNGLGETBOOLEANVPROC) ( GLenum pname, GLboolean *params ); + +typedef void (APIENTRYP PFNGLGETDOUBLEVPROC) ( GLenum pname, GLdouble *params ); + +typedef void (APIENTRYP PFNGLGETFLOATVPROC) ( GLenum pname, GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETINTEGERVPROC) ( GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLPUSHATTRIBPROC) ( GLbitfield mask ); + +typedef void (APIENTRYP PFNGLPOPATTRIBPROC) ( void ); + + +typedef void (APIENTRYP PFNGLPUSHCLIENTATTRIBPROC) ( GLbitfield mask ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLPOPCLIENTATTRIBPROC) ( void ); /* 1.1 */ + + +typedef GLint (APIENTRYP PFNGLRENDERMODEPROC) ( GLenum mode ); + +typedef GLenum (APIENTRYP PFNGLGETERRORPROC) ( void ); + +typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGPROC) ( GLenum name ); + +typedef void (APIENTRYP PFNGLFINISHPROC) ( void ); + +typedef void (APIENTRYP PFNGLFLUSHPROC) ( void ); + +typedef void (APIENTRYP PFNGLHINTPROC) ( GLenum target, GLenum mode ); + + +/* + * Depth Buffer + */ + +typedef void (APIENTRYP PFNGLCLEARDEPTHPROC) ( GLclampd depth ); + +typedef void (APIENTRYP PFNGLDEPTHFUNCPROC) ( GLenum func ); + +typedef void (APIENTRYP PFNGLDEPTHMASKPROC) ( GLboolean flag ); + +typedef void (APIENTRYP PFNGLDEPTHRANGEPROC) ( GLclampd near_val, GLclampd far_val ); + + +/* + * Accumulation Buffer + */ + +typedef void (APIENTRYP PFNGLCLEARACCUMPROC) ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ); + +typedef void (APIENTRYP PFNGLACCUMPROC) ( GLenum op, GLfloat value ); + + +/* + * Transformation + */ + +typedef void (APIENTRYP PFNGLMATRIXMODEPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLORTHOPROC) ( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +typedef void (APIENTRYP PFNGLFRUSTUMPROC) ( GLdouble left, GLdouble right, + GLdouble bottom, GLdouble top, + GLdouble near_val, GLdouble far_val ); + +typedef void (APIENTRYP PFNGLVIEWPORTPROC) ( GLint x, GLint y, + GLsizei width, GLsizei height ); + +typedef void (APIENTRYP PFNGLPUSHMATRIXPROC) ( void ); + +typedef void (APIENTRYP PFNGLPOPMATRIXPROC) ( void ); + +typedef void (APIENTRYP PFNGLLOADIDENTITYPROC) ( void ); + +typedef void (APIENTRYP PFNGLLOADMATRIXDPROC) ( const GLdouble *m ); +typedef void (APIENTRYP PFNGLLOADMATRIXFPROC) ( const GLfloat *m ); + +typedef void (APIENTRYP PFNGLMULTMATRIXDPROC) ( const GLdouble *m ); +typedef void (APIENTRYP PFNGLMULTMATRIXFPROC) ( const GLfloat *m ); + +typedef void (APIENTRYP PFNGLROTATEDPROC) ( GLdouble angle, + GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLROTATEFPROC) ( GLfloat angle, + GLfloat x, GLfloat y, GLfloat z ); + +typedef void (APIENTRYP PFNGLSCALEDPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLSCALEFPROC) ( GLfloat x, GLfloat y, GLfloat z ); + +typedef void (APIENTRYP PFNGLTRANSLATEDPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLTRANSLATEFPROC) ( GLfloat x, GLfloat y, GLfloat z ); + + +/* + * Display Lists + */ + +typedef GLboolean (APIENTRYP PFNGLISLISTPROC) ( GLuint list ); + +typedef void (APIENTRYP PFNGLDELETELISTSPROC) ( GLuint list, GLsizei range ); + +typedef GLuint (APIENTRYP PFNGLGENLISTSPROC) ( GLsizei range ); + +typedef void (APIENTRYP PFNGLNEWLISTPROC) ( GLuint list, GLenum mode ); + +typedef void (APIENTRYP PFNGLENDLISTPROC) ( void ); + +typedef void (APIENTRYP PFNGLCALLLISTPROC) ( GLuint list ); + +typedef void (APIENTRYP PFNGLCALLLISTSPROC) ( GLsizei n, GLenum type, + const GLvoid *lists ); + +typedef void (APIENTRYP PFNGLLISTBASEPROC) ( GLuint base ); + + +/* + * Drawing Functions + */ + +typedef void (APIENTRYP PFNGLBEGINPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLENDPROC) ( void ); + + +typedef void (APIENTRYP PFNGLVERTEX2DPROC) ( GLdouble x, GLdouble y ); +typedef void (APIENTRYP PFNGLVERTEX2FPROC) ( GLfloat x, GLfloat y ); +typedef void (APIENTRYP PFNGLVERTEX2IPROC) ( GLint x, GLint y ); +typedef void (APIENTRYP PFNGLVERTEX2SPROC) ( GLshort x, GLshort y ); + +typedef void (APIENTRYP PFNGLVERTEX3DPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLVERTEX3FPROC) ( GLfloat x, GLfloat y, GLfloat z ); +typedef void (APIENTRYP PFNGLVERTEX3IPROC) ( GLint x, GLint y, GLint z ); +typedef void (APIENTRYP PFNGLVERTEX3SPROC) ( GLshort x, GLshort y, GLshort z ); + +typedef void (APIENTRYP PFNGLVERTEX4DPROC) ( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +typedef void (APIENTRYP PFNGLVERTEX4FPROC) ( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +typedef void (APIENTRYP PFNGLVERTEX4IPROC) ( GLint x, GLint y, GLint z, GLint w ); +typedef void (APIENTRYP PFNGLVERTEX4SPROC) ( GLshort x, GLshort y, GLshort z, GLshort w ); + +typedef void (APIENTRYP PFNGLVERTEX2DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLVERTEX2FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLVERTEX2IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLVERTEX2SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLVERTEX3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLVERTEX3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLVERTEX3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLVERTEX3SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLVERTEX4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLVERTEX4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLVERTEX4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLVERTEX4SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLNORMAL3BPROC) ( GLbyte nx, GLbyte ny, GLbyte nz ); +typedef void (APIENTRYP PFNGLNORMAL3DPROC) ( GLdouble nx, GLdouble ny, GLdouble nz ); +typedef void (APIENTRYP PFNGLNORMAL3FPROC) ( GLfloat nx, GLfloat ny, GLfloat nz ); +typedef void (APIENTRYP PFNGLNORMAL3IPROC) ( GLint nx, GLint ny, GLint nz ); +typedef void (APIENTRYP PFNGLNORMAL3SPROC) ( GLshort nx, GLshort ny, GLshort nz ); + +typedef void (APIENTRYP PFNGLNORMAL3BVPROC) ( const GLbyte *v ); +typedef void (APIENTRYP PFNGLNORMAL3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLNORMAL3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLNORMAL3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLNORMAL3SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLINDEXDPROC) ( GLdouble c ); +typedef void (APIENTRYP PFNGLINDEXFPROC) ( GLfloat c ); +typedef void (APIENTRYP PFNGLINDEXIPROC) ( GLint c ); +typedef void (APIENTRYP PFNGLINDEXSPROC) ( GLshort c ); +typedef void (APIENTRYP PFNGLINDEXUBPROC) ( GLubyte c ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLINDEXDVPROC) ( const GLdouble *c ); +typedef void (APIENTRYP PFNGLINDEXFVPROC) ( const GLfloat *c ); +typedef void (APIENTRYP PFNGLINDEXIVPROC) ( const GLint *c ); +typedef void (APIENTRYP PFNGLINDEXSVPROC) ( const GLshort *c ); +typedef void (APIENTRYP PFNGLINDEXUBVPROC) ( const GLubyte *c ); /* 1.1 */ + +typedef void (APIENTRYP PFNGLCOLOR3BPROC) ( GLbyte red, GLbyte green, GLbyte blue ); +typedef void (APIENTRYP PFNGLCOLOR3DPROC) ( GLdouble red, GLdouble green, GLdouble blue ); +typedef void (APIENTRYP PFNGLCOLOR3FPROC) ( GLfloat red, GLfloat green, GLfloat blue ); +typedef void (APIENTRYP PFNGLCOLOR3IPROC) ( GLint red, GLint green, GLint blue ); +typedef void (APIENTRYP PFNGLCOLOR3SPROC) ( GLshort red, GLshort green, GLshort blue ); +typedef void (APIENTRYP PFNGLCOLOR3UBPROC) ( GLubyte red, GLubyte green, GLubyte blue ); +typedef void (APIENTRYP PFNGLCOLOR3UIPROC) ( GLuint red, GLuint green, GLuint blue ); +typedef void (APIENTRYP PFNGLCOLOR3USPROC) ( GLushort red, GLushort green, GLushort blue ); + +typedef void (APIENTRYP PFNGLCOLOR4BPROC) ( GLbyte red, GLbyte green, + GLbyte blue, GLbyte alpha ); +typedef void (APIENTRYP PFNGLCOLOR4DPROC) ( GLdouble red, GLdouble green, + GLdouble blue, GLdouble alpha ); +typedef void (APIENTRYP PFNGLCOLOR4FPROC) ( GLfloat red, GLfloat green, + GLfloat blue, GLfloat alpha ); +typedef void (APIENTRYP PFNGLCOLOR4IPROC) ( GLint red, GLint green, + GLint blue, GLint alpha ); +typedef void (APIENTRYP PFNGLCOLOR4SPROC) ( GLshort red, GLshort green, + GLshort blue, GLshort alpha ); +typedef void (APIENTRYP PFNGLCOLOR4UBPROC) ( GLubyte red, GLubyte green, + GLubyte blue, GLubyte alpha ); +typedef void (APIENTRYP PFNGLCOLOR4UIPROC) ( GLuint red, GLuint green, + GLuint blue, GLuint alpha ); +typedef void (APIENTRYP PFNGLCOLOR4USPROC) ( GLushort red, GLushort green, + GLushort blue, GLushort alpha ); + + +typedef void (APIENTRYP PFNGLCOLOR3BVPROC) ( const GLbyte *v ); +typedef void (APIENTRYP PFNGLCOLOR3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLCOLOR3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLCOLOR3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLCOLOR3SVPROC) ( const GLshort *v ); +typedef void (APIENTRYP PFNGLCOLOR3UBVPROC) ( const GLubyte *v ); +typedef void (APIENTRYP PFNGLCOLOR3UIVPROC) ( const GLuint *v ); +typedef void (APIENTRYP PFNGLCOLOR3USVPROC) ( const GLushort *v ); + +typedef void (APIENTRYP PFNGLCOLOR4BVPROC) ( const GLbyte *v ); +typedef void (APIENTRYP PFNGLCOLOR4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLCOLOR4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLCOLOR4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLCOLOR4SVPROC) ( const GLshort *v ); +typedef void (APIENTRYP PFNGLCOLOR4UBVPROC) ( const GLubyte *v ); +typedef void (APIENTRYP PFNGLCOLOR4UIVPROC) ( const GLuint *v ); +typedef void (APIENTRYP PFNGLCOLOR4USVPROC) ( const GLushort *v ); + + +typedef void (APIENTRYP PFNGLTEXCOORD1DPROC) ( GLdouble s ); +typedef void (APIENTRYP PFNGLTEXCOORD1FPROC) ( GLfloat s ); +typedef void (APIENTRYP PFNGLTEXCOORD1IPROC) ( GLint s ); +typedef void (APIENTRYP PFNGLTEXCOORD1SPROC) ( GLshort s ); + +typedef void (APIENTRYP PFNGLTEXCOORD2DPROC) ( GLdouble s, GLdouble t ); +typedef void (APIENTRYP PFNGLTEXCOORD2FPROC) ( GLfloat s, GLfloat t ); +typedef void (APIENTRYP PFNGLTEXCOORD2IPROC) ( GLint s, GLint t ); +typedef void (APIENTRYP PFNGLTEXCOORD2SPROC) ( GLshort s, GLshort t ); + +typedef void (APIENTRYP PFNGLTEXCOORD3DPROC) ( GLdouble s, GLdouble t, GLdouble r ); +typedef void (APIENTRYP PFNGLTEXCOORD3FPROC) ( GLfloat s, GLfloat t, GLfloat r ); +typedef void (APIENTRYP PFNGLTEXCOORD3IPROC) ( GLint s, GLint t, GLint r ); +typedef void (APIENTRYP PFNGLTEXCOORD3SPROC) ( GLshort s, GLshort t, GLshort r ); + +typedef void (APIENTRYP PFNGLTEXCOORD4DPROC) ( GLdouble s, GLdouble t, GLdouble r, GLdouble q ); +typedef void (APIENTRYP PFNGLTEXCOORD4FPROC) ( GLfloat s, GLfloat t, GLfloat r, GLfloat q ); +typedef void (APIENTRYP PFNGLTEXCOORD4IPROC) ( GLint s, GLint t, GLint r, GLint q ); +typedef void (APIENTRYP PFNGLTEXCOORD4SPROC) ( GLshort s, GLshort t, GLshort r, GLshort q ); + +typedef void (APIENTRYP PFNGLTEXCOORD1DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD1FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD1IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD1SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLTEXCOORD2DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD2FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD2IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD2SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLTEXCOORD3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD3SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLTEXCOORD4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLTEXCOORD4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLTEXCOORD4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLTEXCOORD4SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLRASTERPOS2DPROC) ( GLdouble x, GLdouble y ); +typedef void (APIENTRYP PFNGLRASTERPOS2FPROC) ( GLfloat x, GLfloat y ); +typedef void (APIENTRYP PFNGLRASTERPOS2IPROC) ( GLint x, GLint y ); +typedef void (APIENTRYP PFNGLRASTERPOS2SPROC) ( GLshort x, GLshort y ); + +typedef void (APIENTRYP PFNGLRASTERPOS3DPROC) ( GLdouble x, GLdouble y, GLdouble z ); +typedef void (APIENTRYP PFNGLRASTERPOS3FPROC) ( GLfloat x, GLfloat y, GLfloat z ); +typedef void (APIENTRYP PFNGLRASTERPOS3IPROC) ( GLint x, GLint y, GLint z ); +typedef void (APIENTRYP PFNGLRASTERPOS3SPROC) ( GLshort x, GLshort y, GLshort z ); + +typedef void (APIENTRYP PFNGLRASTERPOS4DPROC) ( GLdouble x, GLdouble y, GLdouble z, GLdouble w ); +typedef void (APIENTRYP PFNGLRASTERPOS4FPROC) ( GLfloat x, GLfloat y, GLfloat z, GLfloat w ); +typedef void (APIENTRYP PFNGLRASTERPOS4IPROC) ( GLint x, GLint y, GLint z, GLint w ); +typedef void (APIENTRYP PFNGLRASTERPOS4SPROC) ( GLshort x, GLshort y, GLshort z, GLshort w ); + +typedef void (APIENTRYP PFNGLRASTERPOS2DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLRASTERPOS2FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLRASTERPOS2IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLRASTERPOS2SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLRASTERPOS3DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLRASTERPOS3FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLRASTERPOS3IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLRASTERPOS3SVPROC) ( const GLshort *v ); + +typedef void (APIENTRYP PFNGLRASTERPOS4DVPROC) ( const GLdouble *v ); +typedef void (APIENTRYP PFNGLRASTERPOS4FVPROC) ( const GLfloat *v ); +typedef void (APIENTRYP PFNGLRASTERPOS4IVPROC) ( const GLint *v ); +typedef void (APIENTRYP PFNGLRASTERPOS4SVPROC) ( const GLshort *v ); + + +typedef void (APIENTRYP PFNGLRECTDPROC) ( GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2 ); +typedef void (APIENTRYP PFNGLRECTFPROC) ( GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2 ); +typedef void (APIENTRYP PFNGLRECTIPROC) ( GLint x1, GLint y1, GLint x2, GLint y2 ); +typedef void (APIENTRYP PFNGLRECTSPROC) ( GLshort x1, GLshort y1, GLshort x2, GLshort y2 ); + + +typedef void (APIENTRYP PFNGLRECTDVPROC) ( const GLdouble *v1, const GLdouble *v2 ); +typedef void (APIENTRYP PFNGLRECTFVPROC) ( const GLfloat *v1, const GLfloat *v2 ); +typedef void (APIENTRYP PFNGLRECTIVPROC) ( const GLint *v1, const GLint *v2 ); +typedef void (APIENTRYP PFNGLRECTSVPROC) ( const GLshort *v1, const GLshort *v2 ); + + +/* + * Vertex Arrays (1.1) + */ + +typedef void (APIENTRYP PFNGLVERTEXPOINTERPROC) ( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLNORMALPOINTERPROC) ( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLCOLORPOINTERPROC) ( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLINDEXPOINTERPROC) ( GLenum type, GLsizei stride, + const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERPROC) ( GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTERPROC) ( GLsizei stride, const GLvoid *ptr ); + +typedef void (APIENTRYP PFNGLGETPOINTERVPROC) ( GLenum pname, GLvoid **params ); + +typedef void (APIENTRYP PFNGLARRAYELEMENTPROC) ( GLint i ); + +typedef void (APIENTRYP PFNGLDRAWARRAYSPROC) ( GLenum mode, GLint first, GLsizei count ); + +typedef void (APIENTRYP PFNGLDRAWELEMENTSPROC) ( GLenum mode, GLsizei count, + GLenum type, const GLvoid *indices ); + +typedef void (APIENTRYP PFNGLINTERLEAVEDARRAYSPROC) ( GLenum format, GLsizei stride, + const GLvoid *pointer ); + +/* + * Lighting + */ + +typedef void (APIENTRYP PFNGLSHADEMODELPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLLIGHTFPROC) ( GLenum light, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLLIGHTIPROC) ( GLenum light, GLenum pname, GLint param ); +typedef void (APIENTRYP PFNGLLIGHTFVPROC) ( GLenum light, GLenum pname, + const GLfloat *params ); +typedef void (APIENTRYP PFNGLLIGHTIVPROC) ( GLenum light, GLenum pname, + const GLint *params ); + +typedef void (APIENTRYP PFNGLGETLIGHTFVPROC) ( GLenum light, GLenum pname, + GLfloat *params ); +typedef void (APIENTRYP PFNGLGETLIGHTIVPROC) ( GLenum light, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLLIGHTMODELFPROC) ( GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLLIGHTMODELIPROC) ( GLenum pname, GLint param ); +typedef void (APIENTRYP PFNGLLIGHTMODELFVPROC) ( GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLLIGHTMODELIVPROC) ( GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLMATERIALFPROC) ( GLenum face, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLMATERIALIPROC) ( GLenum face, GLenum pname, GLint param ); +typedef void (APIENTRYP PFNGLMATERIALFVPROC) ( GLenum face, GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLMATERIALIVPROC) ( GLenum face, GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLGETMATERIALFVPROC) ( GLenum face, GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETMATERIALIVPROC) ( GLenum face, GLenum pname, GLint *params ); + +typedef void (APIENTRYP PFNGLCOLORMATERIALPROC) ( GLenum face, GLenum mode ); + + +/* + * Raster functions + */ + +typedef void (APIENTRYP PFNGLPIXELZOOMPROC) ( GLfloat xfactor, GLfloat yfactor ); + +typedef void (APIENTRYP PFNGLPIXELSTOREFPROC) ( GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLPIXELSTOREIPROC) ( GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLPIXELTRANSFERFPROC) ( GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLPIXELTRANSFERIPROC) ( GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLPIXELMAPFVPROC) ( GLenum map, GLsizei mapsize, + const GLfloat *values ); +typedef void (APIENTRYP PFNGLPIXELMAPUIVPROC) ( GLenum map, GLsizei mapsize, + const GLuint *values ); +typedef void (APIENTRYP PFNGLPIXELMAPUSVPROC) ( GLenum map, GLsizei mapsize, + const GLushort *values ); + +typedef void (APIENTRYP PFNGLGETPIXELMAPFVPROC) ( GLenum map, GLfloat *values ); +typedef void (APIENTRYP PFNGLGETPIXELMAPUIVPROC) ( GLenum map, GLuint *values ); +typedef void (APIENTRYP PFNGLGETPIXELMAPUSVPROC) ( GLenum map, GLushort *values ); + +typedef void (APIENTRYP PFNGLBITMAPPROC) ( GLsizei width, GLsizei height, + GLfloat xorig, GLfloat yorig, + GLfloat xmove, GLfloat ymove, + const GLubyte *bitmap ); + +typedef void (APIENTRYP PFNGLREADPIXELSPROC) ( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLDRAWPIXELSPROC) ( GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLCOPYPIXELSPROC) ( GLint x, GLint y, + GLsizei width, GLsizei height, + GLenum type ); + +/* + * Stenciling + */ + +typedef void (APIENTRYP PFNGLSTENCILFUNCPROC) ( GLenum func, GLint ref, GLuint mask ); + +typedef void (APIENTRYP PFNGLSTENCILMASKPROC) ( GLuint mask ); + +typedef void (APIENTRYP PFNGLSTENCILOPPROC) ( GLenum fail, GLenum zfail, GLenum zpass ); + +typedef void (APIENTRYP PFNGLCLEARSTENCILPROC) ( GLint s ); + + + +/* + * Texture mapping + */ + +typedef void (APIENTRYP PFNGLTEXGENDPROC) ( GLenum coord, GLenum pname, GLdouble param ); +typedef void (APIENTRYP PFNGLTEXGENFPROC) ( GLenum coord, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLTEXGENIPROC) ( GLenum coord, GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLTEXGENDVPROC) ( GLenum coord, GLenum pname, const GLdouble *params ); +typedef void (APIENTRYP PFNGLTEXGENFVPROC) ( GLenum coord, GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLTEXGENIVPROC) ( GLenum coord, GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXGENDVPROC) ( GLenum coord, GLenum pname, GLdouble *params ); +typedef void (APIENTRYP PFNGLGETTEXGENFVPROC) ( GLenum coord, GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETTEXGENIVPROC) ( GLenum coord, GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLTEXENVFPROC) ( GLenum target, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLTEXENVIPROC) ( GLenum target, GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLTEXENVFVPROC) ( GLenum target, GLenum pname, const GLfloat *params ); +typedef void (APIENTRYP PFNGLTEXENVIVPROC) ( GLenum target, GLenum pname, const GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXENVFVPROC) ( GLenum target, GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETTEXENVIVPROC) ( GLenum target, GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLTEXPARAMETERFPROC) ( GLenum target, GLenum pname, GLfloat param ); +typedef void (APIENTRYP PFNGLTEXPARAMETERIPROC) ( GLenum target, GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLTEXPARAMETERFVPROC) ( GLenum target, GLenum pname, + const GLfloat *params ); +typedef void (APIENTRYP PFNGLTEXPARAMETERIVPROC) ( GLenum target, GLenum pname, + const GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXPARAMETERFVPROC) ( GLenum target, + GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIVPROC) ( GLenum target, + GLenum pname, GLint *params ); + +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERFVPROC) ( GLenum target, GLint level, + GLenum pname, GLfloat *params ); +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERIVPROC) ( GLenum target, GLint level, + GLenum pname, GLint *params ); + + +typedef void (APIENTRYP PFNGLTEXIMAGE1DPROC) ( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLTEXIMAGE2DPROC) ( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLint border, GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLGETTEXIMAGEPROC) ( GLenum target, GLint level, + GLenum format, GLenum type, + GLvoid *pixels ); + + +/* 1.1 functions */ + +typedef void (APIENTRYP PFNGLGENTEXTURESPROC) ( GLsizei n, GLuint *textures ); + +typedef void (APIENTRYP PFNGLDELETETEXTURESPROC) ( GLsizei n, const GLuint *textures); + +typedef void (APIENTRYP PFNGLBINDTEXTUREPROC) ( GLenum target, GLuint texture ); + +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESPROC) ( GLsizei n, + const GLuint *textures, + const GLclampf *priorities ); + +typedef GLboolean (APIENTRYP PFNGLARETEXTURESRESIDENTPROC) ( GLsizei n, + const GLuint *textures, + GLboolean *residences ); + +typedef GLboolean (APIENTRYP PFNGLISTEXTUREPROC) ( GLuint texture ); + + +typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DPROC) ( GLenum target, GLint level, + GLint xoffset, + GLsizei width, GLenum format, + GLenum type, const GLvoid *pixels ); + + +typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLsizei width, GLsizei height, + GLenum format, GLenum type, + const GLvoid *pixels ); + + +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DPROC) ( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLint border ); + + +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DPROC) ( GLenum target, GLint level, + GLenum internalformat, + GLint x, GLint y, + GLsizei width, GLsizei height, + GLint border ); + + +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint x, GLint y, + GLsizei width ); + + +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint x, GLint y, + GLsizei width, GLsizei height ); + + +/* + * Evaluators + */ + +typedef void (APIENTRYP PFNGLMAP1DPROC) ( GLenum target, GLdouble u1, GLdouble u2, + GLint stride, + GLint order, const GLdouble *points ); +typedef void (APIENTRYP PFNGLMAP1FPROC) ( GLenum target, GLfloat u1, GLfloat u2, + GLint stride, + GLint order, const GLfloat *points ); + +typedef void (APIENTRYP PFNGLMAP2DPROC) ( GLenum target, + GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, + GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, + const GLdouble *points ); +typedef void (APIENTRYP PFNGLMAP2FPROC) ( GLenum target, + GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, + GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, + const GLfloat *points ); + +typedef void (APIENTRYP PFNGLGETMAPDVPROC) ( GLenum target, GLenum query, GLdouble *v ); +typedef void (APIENTRYP PFNGLGETMAPFVPROC) ( GLenum target, GLenum query, GLfloat *v ); +typedef void (APIENTRYP PFNGLGETMAPIVPROC) ( GLenum target, GLenum query, GLint *v ); + +typedef void (APIENTRYP PFNGLEVALCOORD1DPROC) ( GLdouble u ); +typedef void (APIENTRYP PFNGLEVALCOORD1FPROC) ( GLfloat u ); + +typedef void (APIENTRYP PFNGLEVALCOORD1DVPROC) ( const GLdouble *u ); +typedef void (APIENTRYP PFNGLEVALCOORD1FVPROC) ( const GLfloat *u ); + +typedef void (APIENTRYP PFNGLEVALCOORD2DPROC) ( GLdouble u, GLdouble v ); +typedef void (APIENTRYP PFNGLEVALCOORD2FPROC) ( GLfloat u, GLfloat v ); + +typedef void (APIENTRYP PFNGLEVALCOORD2DVPROC) ( const GLdouble *u ); +typedef void (APIENTRYP PFNGLEVALCOORD2FVPROC) ( const GLfloat *u ); + +typedef void (APIENTRYP PFNGLMAPGRID1DPROC) ( GLint un, GLdouble u1, GLdouble u2 ); +typedef void (APIENTRYP PFNGLMAPGRID1FPROC) ( GLint un, GLfloat u1, GLfloat u2 ); + +typedef void (APIENTRYP PFNGLMAPGRID2DPROC) ( GLint un, GLdouble u1, GLdouble u2, + GLint vn, GLdouble v1, GLdouble v2 ); +typedef void (APIENTRYP PFNGLMAPGRID2FPROC) ( GLint un, GLfloat u1, GLfloat u2, + GLint vn, GLfloat v1, GLfloat v2 ); + +typedef void (APIENTRYP PFNGLEVALPOINT1PROC) ( GLint i ); + +typedef void (APIENTRYP PFNGLEVALPOINT2PROC) ( GLint i, GLint j ); + +typedef void (APIENTRYP PFNGLEVALMESH1PROC) ( GLenum mode, GLint i1, GLint i2 ); + +typedef void (APIENTRYP PFNGLEVALMESH2PROC) ( GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 ); + + +/* + * Fog + */ + +typedef void (APIENTRYP PFNGLFOGFPROC) ( GLenum pname, GLfloat param ); + +typedef void (APIENTRYP PFNGLFOGIPROC) ( GLenum pname, GLint param ); + +typedef void (APIENTRYP PFNGLFOGFVPROC) ( GLenum pname, const GLfloat *params ); + +typedef void (APIENTRYP PFNGLFOGIVPROC) ( GLenum pname, const GLint *params ); + + +/* + * Selection and Feedback + */ + +typedef void (APIENTRYP PFNGLFEEDBACKBUFFERPROC) ( GLsizei size, GLenum type, GLfloat *buffer ); + +typedef void (APIENTRYP PFNGLPASSTHROUGHPROC) ( GLfloat token ); + +typedef void (APIENTRYP PFNGLSELECTBUFFERPROC) ( GLsizei size, GLuint *buffer ); + +typedef void (APIENTRYP PFNGLINITNAMESPROC) ( void ); + +typedef void (APIENTRYP PFNGLLOADNAMEPROC) ( GLuint name ); + +typedef void (APIENTRYP PFNGLPUSHNAMEPROC) ( GLuint name ); + +typedef void (APIENTRYP PFNGLPOPNAMEPROC) ( void ); +#endif + + +/* + * OpenGL 1.2 + */ + +#define GL_RESCALE_NORMAL 0x803A +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_MAX_ELEMENTS_VERTICES 0x80E8 +#define GL_MAX_ELEMENTS_INDICES 0x80E9 +#define GL_BGR 0x80E0 +#define GL_BGRA 0x80E1 +#define GL_UNSIGNED_BYTE_3_3_2 0x8032 +#define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 +#define GL_UNSIGNED_INT_8_8_8_8 0x8035 +#define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 +#define GL_UNSIGNED_INT_10_10_10_2 0x8036 +#define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 +#define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8 +#define GL_SINGLE_COLOR 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR 0x81FA +#define GL_TEXTURE_MIN_LOD 0x813A +#define GL_TEXTURE_MAX_LOD 0x813B +#define GL_TEXTURE_BASE_LEVEL 0x813C +#define GL_TEXTURE_MAX_LEVEL 0x813D +#define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 +#define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 +#define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_PACK_SKIP_IMAGES 0x806B +#define GL_PACK_IMAGE_HEIGHT 0x806C +#define GL_UNPACK_SKIP_IMAGES 0x806D +#define GL_UNPACK_IMAGE_HEIGHT 0x806E +#define GL_TEXTURE_3D 0x806F +#define GL_PROXY_TEXTURE_3D 0x8070 +#define GL_TEXTURE_DEPTH 0x8071 +#define GL_TEXTURE_WRAP_R 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE 0x8073 +#define GL_TEXTURE_BINDING_3D 0x806A + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glDrawRangeElements( GLenum mode, GLuint start, + GLuint end, GLsizei count, GLenum type, const GLvoid *indices ); + +GLAPI void GLAPIENTRY glTexImage3D( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLsizei depth, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +GLAPI void GLAPIENTRY glTexSubImage3D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLsizei width, + GLsizei height, GLsizei depth, + GLenum format, + GLenum type, const GLvoid *pixels); + +GLAPI void GLAPIENTRY glCopyTexSubImage3D( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLint x, + GLint y, GLsizei width, + GLsizei height ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) ( GLenum mode, GLuint start, + GLuint end, GLsizei count, GLenum type, const GLvoid *indices ); + +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) ( GLenum target, GLint level, + GLint internalFormat, + GLsizei width, GLsizei height, + GLsizei depth, GLint border, + GLenum format, GLenum type, + const GLvoid *pixels ); + +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLsizei width, + GLsizei height, GLsizei depth, + GLenum format, + GLenum type, const GLvoid *pixels); + +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) ( GLenum target, GLint level, + GLint xoffset, GLint yoffset, + GLint zoffset, GLint x, + GLint y, GLsizei width, + GLsizei height ); + +#endif + +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices); +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); + + +/* + * GL_ARB_imaging + */ + +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_COLOR_TABLE 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2 +#define GL_PROXY_COLOR_TABLE 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5 +#define GL_COLOR_TABLE_SCALE 0x80D6 +#define GL_COLOR_TABLE_BIAS 0x80D7 +#define GL_COLOR_TABLE_FORMAT 0x80D8 +#define GL_COLOR_TABLE_WIDTH 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF +#define GL_CONVOLUTION_1D 0x8010 +#define GL_CONVOLUTION_2D 0x8011 +#define GL_SEPARABLE_2D 0x8012 +#define GL_CONVOLUTION_BORDER_MODE 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS 0x8015 +#define GL_REDUCE 0x8016 +#define GL_CONVOLUTION_FORMAT 0x8017 +#define GL_CONVOLUTION_WIDTH 0x8018 +#define GL_CONVOLUTION_HEIGHT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023 +#define GL_CONSTANT_BORDER 0x8151 +#define GL_REPLICATE_BORDER 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR 0x8154 +#define GL_COLOR_MATRIX 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB +#define GL_HISTOGRAM 0x8024 +#define GL_PROXY_HISTOGRAM 0x8025 +#define GL_HISTOGRAM_WIDTH 0x8026 +#define GL_HISTOGRAM_FORMAT 0x8027 +#define GL_HISTOGRAM_RED_SIZE 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C +#define GL_HISTOGRAM_SINK 0x802D +#define GL_MINMAX 0x802E +#define GL_MINMAX_FORMAT 0x802F +#define GL_MINMAX_SINK 0x8030 +#define GL_TABLE_TOO_LARGE 0x8031 +#define GL_BLEND_EQUATION 0x8009 +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +#define GL_FUNC_ADD 0x8006 +#define GL_FUNC_SUBTRACT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_BLEND_COLOR 0x8005 + + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glColorTable( GLenum target, GLenum internalformat, + GLsizei width, GLenum format, + GLenum type, const GLvoid *table ); + +GLAPI void GLAPIENTRY glColorSubTable( GLenum target, + GLsizei start, GLsizei count, + GLenum format, GLenum type, + const GLvoid *data ); + +GLAPI void GLAPIENTRY glColorTableParameteriv(GLenum target, GLenum pname, + const GLint *params); + +GLAPI void GLAPIENTRY glColorTableParameterfv(GLenum target, GLenum pname, + const GLfloat *params); + +GLAPI void GLAPIENTRY glCopyColorSubTable( GLenum target, GLsizei start, + GLint x, GLint y, GLsizei width ); + +GLAPI void GLAPIENTRY glCopyColorTable( GLenum target, GLenum internalformat, + GLint x, GLint y, GLsizei width ); + +GLAPI void GLAPIENTRY glGetColorTable( GLenum target, GLenum format, + GLenum type, GLvoid *table ); + +GLAPI void GLAPIENTRY glGetColorTableParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetColorTableParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glBlendEquation( GLenum mode ); + +GLAPI void GLAPIENTRY glBlendColor( GLclampf red, GLclampf green, + GLclampf blue, GLclampf alpha ); + +GLAPI void GLAPIENTRY glHistogram( GLenum target, GLsizei width, + GLenum internalformat, GLboolean sink ); + +GLAPI void GLAPIENTRY glResetHistogram( GLenum target ); + +GLAPI void GLAPIENTRY glGetHistogram( GLenum target, GLboolean reset, + GLenum format, GLenum type, + GLvoid *values ); + +GLAPI void GLAPIENTRY glGetHistogramParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetHistogramParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glMinmax( GLenum target, GLenum internalformat, + GLboolean sink ); + +GLAPI void GLAPIENTRY glResetMinmax( GLenum target ); + +GLAPI void GLAPIENTRY glGetMinmax( GLenum target, GLboolean reset, + GLenum format, GLenum types, + GLvoid *values ); + +GLAPI void GLAPIENTRY glGetMinmaxParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetMinmaxParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glConvolutionFilter1D( GLenum target, + GLenum internalformat, GLsizei width, GLenum format, GLenum type, + const GLvoid *image ); + +GLAPI void GLAPIENTRY glConvolutionFilter2D( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *image ); + +GLAPI void GLAPIENTRY glConvolutionParameterf( GLenum target, GLenum pname, + GLfloat params ); + +GLAPI void GLAPIENTRY glConvolutionParameterfv( GLenum target, GLenum pname, + const GLfloat *params ); + +GLAPI void GLAPIENTRY glConvolutionParameteri( GLenum target, GLenum pname, + GLint params ); + +GLAPI void GLAPIENTRY glConvolutionParameteriv( GLenum target, GLenum pname, + const GLint *params ); + +GLAPI void GLAPIENTRY glCopyConvolutionFilter1D( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width ); + +GLAPI void GLAPIENTRY glCopyConvolutionFilter2D( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width, + GLsizei height); + +GLAPI void GLAPIENTRY glGetConvolutionFilter( GLenum target, GLenum format, + GLenum type, GLvoid *image ); + +GLAPI void GLAPIENTRY glGetConvolutionParameterfv( GLenum target, GLenum pname, + GLfloat *params ); + +GLAPI void GLAPIENTRY glGetConvolutionParameteriv( GLenum target, GLenum pname, + GLint *params ); + +GLAPI void GLAPIENTRY glSeparableFilter2D( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *row, const GLvoid *column ); + +GLAPI void GLAPIENTRY glGetSeparableFilter( GLenum target, GLenum format, + GLenum type, GLvoid *row, GLvoid *column, GLvoid *span ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLCOLORTABLEPROC) ( GLenum target, GLenum internalformat, + GLsizei width, GLenum format, + GLenum type, const GLvoid *table ); + +typedef void (APIENTRYP PFNGLCOLORSUBTABLEPROC) ( GLenum target, + GLsizei start, GLsizei count, + GLenum format, GLenum type, + const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, + const GLint *params); + +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, + const GLfloat *params); + +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEPROC) ( GLenum target, GLsizei start, + GLint x, GLint y, GLsizei width ); + +typedef void (APIENTRYP PFNGLCOPYCOLORTABLEPROC) ( GLenum target, GLenum internalformat, + GLint x, GLint y, GLsizei width ); + +typedef void (APIENTRYP PFNGLGETCOLORTABLEPROC) ( GLenum target, GLenum format, + GLenum type, GLvoid *table ); + +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) ( GLenum mode ); + +typedef void (APIENTRYP PFNGLBLENDCOLORPROC) ( GLclampf red, GLclampf green, + GLclampf blue, GLclampf alpha ); + +typedef void (APIENTRYP PFNGLHISTOGRAMPROC) ( GLenum target, GLsizei width, + GLenum internalformat, GLboolean sink ); + +typedef void (APIENTRYP PFNGLRESETHISTOGRAMPROC) ( GLenum target ); + +typedef void (APIENTRYP PFNGLGETHISTOGRAMPROC) ( GLenum target, GLboolean reset, + GLenum format, GLenum type, + GLvoid *values ); + +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLMINMAXPROC) ( GLenum target, GLenum internalformat, + GLboolean sink ); + +typedef void (APIENTRYP PFNGLRESETMINMAXPROC) ( GLenum target ); + +typedef void (APIENTRYP PFNGLGETMINMAXPROC) ( GLenum target, GLboolean reset, + GLenum format, GLenum types, + GLvoid *values ); + +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DPROC) ( GLenum target, + GLenum internalformat, GLsizei width, GLenum format, GLenum type, + const GLvoid *image ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DPROC) ( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *image ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFPROC) ( GLenum target, GLenum pname, + GLfloat params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVPROC) ( GLenum target, GLenum pname, + const GLfloat *params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIPROC) ( GLenum target, GLenum pname, + GLint params ); + +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVPROC) ( GLenum target, GLenum pname, + const GLint *params ); + +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DPROC) ( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width ); + +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DPROC) ( GLenum target, + GLenum internalformat, GLint x, GLint y, GLsizei width, + GLsizei height); + +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTERPROC) ( GLenum target, GLenum format, + GLenum type, GLvoid *image ); + +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVPROC) ( GLenum target, GLenum pname, + GLfloat *params ); + +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVPROC) ( GLenum target, GLenum pname, + GLint *params ); + +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DPROC) ( GLenum target, + GLenum internalformat, GLsizei width, GLsizei height, GLenum format, + GLenum type, const GLvoid *row, const GLvoid *column ); + +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTERPROC) ( GLenum target, GLenum format, + GLenum type, GLvoid *row, GLvoid *column, GLvoid *span ); + +#endif + + + + +/* + * OpenGL 1.3 + */ + +/* multitexture */ +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE 0x84E1 +#define GL_MAX_TEXTURE_UNITS 0x84E2 +/* texture_cube_map */ +#define GL_NORMAL_MAP 0x8511 +#define GL_REFLECTION_MAP 0x8512 +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +/* texture_compression */ +#define GL_COMPRESSED_ALPHA 0x84E9 +#define GL_COMPRESSED_LUMINANCE 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB +#define GL_COMPRESSED_INTENSITY 0x84EC +#define GL_COMPRESSED_RGB 0x84ED +#define GL_COMPRESSED_RGBA 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 +#define GL_TEXTURE_COMPRESSED 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +/* multisample */ +#define GL_MULTISAMPLE 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE 0x809F +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_MULTISAMPLE_BIT 0x20000000 +/* transpose_matrix */ +#define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX 0x84E6 +/* texture_env_combine */ +#define GL_COMBINE 0x8570 +#define GL_COMBINE_RGB 0x8571 +#define GL_COMBINE_ALPHA 0x8572 +#define GL_SOURCE0_RGB 0x8580 +#define GL_SOURCE1_RGB 0x8581 +#define GL_SOURCE2_RGB 0x8582 +#define GL_SOURCE0_ALPHA 0x8588 +#define GL_SOURCE1_ALPHA 0x8589 +#define GL_SOURCE2_ALPHA 0x858A +#define GL_OPERAND0_RGB 0x8590 +#define GL_OPERAND1_RGB 0x8591 +#define GL_OPERAND2_RGB 0x8592 +#define GL_OPERAND0_ALPHA 0x8598 +#define GL_OPERAND1_ALPHA 0x8599 +#define GL_OPERAND2_ALPHA 0x859A +#define GL_RGB_SCALE 0x8573 +#define GL_ADD_SIGNED 0x8574 +#define GL_INTERPOLATE 0x8575 +#define GL_SUBTRACT 0x84E7 +#define GL_CONSTANT 0x8576 +#define GL_PRIMARY_COLOR 0x8577 +#define GL_PREVIOUS 0x8578 +/* texture_env_dot3 */ +#define GL_DOT3_RGB 0x86AE +#define GL_DOT3_RGBA 0x86AF +/* texture_border_clamp */ +#define GL_CLAMP_TO_BORDER 0x812D + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glActiveTexture( GLenum texture ); + +GLAPI void GLAPIENTRY glClientActiveTexture( GLenum texture ); + +GLAPI void GLAPIENTRY glCompressedTexImage1D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexImage2D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexImage3D( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexSubImage1D( GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexSubImage2D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glCompressedTexSubImage3D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data ); + +GLAPI void GLAPIENTRY glGetCompressedTexImage( GLenum target, GLint lod, GLvoid *img ); + +GLAPI void GLAPIENTRY glMultiTexCoord1d( GLenum target, GLdouble s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord1f( GLenum target, GLfloat s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord1i( GLenum target, GLint s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord1s( GLenum target, GLshort s ); + +GLAPI void GLAPIENTRY glMultiTexCoord1sv( GLenum target, const GLshort *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2d( GLenum target, GLdouble s, GLdouble t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2f( GLenum target, GLfloat s, GLfloat t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2i( GLenum target, GLint s, GLint t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord2s( GLenum target, GLshort s, GLshort t ); + +GLAPI void GLAPIENTRY glMultiTexCoord2sv( GLenum target, const GLshort *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3d( GLenum target, GLdouble s, GLdouble t, GLdouble r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3f( GLenum target, GLfloat s, GLfloat t, GLfloat r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3i( GLenum target, GLint s, GLint t, GLint r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord3s( GLenum target, GLshort s, GLshort t, GLshort r ); + +GLAPI void GLAPIENTRY glMultiTexCoord3sv( GLenum target, const GLshort *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4d( GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4dv( GLenum target, const GLdouble *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4f( GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4fv( GLenum target, const GLfloat *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4i( GLenum target, GLint s, GLint t, GLint r, GLint q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4iv( GLenum target, const GLint *v ); + +GLAPI void GLAPIENTRY glMultiTexCoord4s( GLenum target, GLshort s, GLshort t, GLshort r, GLshort q ); + +GLAPI void GLAPIENTRY glMultiTexCoord4sv( GLenum target, const GLshort *v ); + + +GLAPI void GLAPIENTRY glLoadTransposeMatrixd( const GLdouble m[16] ); + +GLAPI void GLAPIENTRY glLoadTransposeMatrixf( const GLfloat m[16] ); + +GLAPI void GLAPIENTRY glMultTransposeMatrixd( const GLdouble m[16] ); + +GLAPI void GLAPIENTRY glMultTransposeMatrixf( const GLfloat m[16] ); + +GLAPI void GLAPIENTRY glSampleCoverage( GLclampf value, GLboolean invert ); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) ( GLenum texture ); + +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREPROC) ( GLenum texture ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) ( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) ( GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) ( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data ); + +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) ( GLenum target, GLint lod, GLvoid *img ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DPROC) ( GLenum target, GLdouble s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FPROC) ( GLenum target, GLfloat s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IPROC) ( GLenum target, GLint s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SPROC) ( GLenum target, GLshort s ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVPROC) ( GLenum target, const GLshort *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DPROC) ( GLenum target, GLdouble s, GLdouble t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FPROC) ( GLenum target, GLfloat s, GLfloat t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IPROC) ( GLenum target, GLint s, GLint t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SPROC) ( GLenum target, GLshort s, GLshort t ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVPROC) ( GLenum target, const GLshort *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DPROC) ( GLenum target, GLdouble s, GLdouble t, GLdouble r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FPROC) ( GLenum target, GLfloat s, GLfloat t, GLfloat r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IPROC) ( GLenum target, GLint s, GLint t, GLint r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SPROC) ( GLenum target, GLshort s, GLshort t, GLshort r ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVPROC) ( GLenum target, const GLshort *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DPROC) ( GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVPROC) ( GLenum target, const GLdouble *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FPROC) ( GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVPROC) ( GLenum target, const GLfloat *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IPROC) ( GLenum target, GLint s, GLint t, GLint r, GLint q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVPROC) ( GLenum target, const GLint *v ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SPROC) ( GLenum target, GLshort s, GLshort t, GLshort r, GLshort q ); + +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVPROC) ( GLenum target, const GLshort *v ); + + +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDPROC) ( const GLdouble m[16] ); + +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFPROC) ( const GLfloat m[16] ); + +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDPROC) ( const GLdouble m[16] ); + +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFPROC) ( const GLfloat m[16] ); + +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) ( GLclampf value, GLboolean invert ); + +#endif + + +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, GLvoid *img); + + + +/* + * GL_ARB_multitexture (ARB extension 1 and OpenGL 1.2.1) + */ +#ifndef GL_ARB_multitexture +#define GL_ARB_multitexture 1 + +#define GL_TEXTURE0_ARB 0x84C0 +#define GL_TEXTURE1_ARB 0x84C1 +#define GL_TEXTURE2_ARB 0x84C2 +#define GL_TEXTURE3_ARB 0x84C3 +#define GL_TEXTURE4_ARB 0x84C4 +#define GL_TEXTURE5_ARB 0x84C5 +#define GL_TEXTURE6_ARB 0x84C6 +#define GL_TEXTURE7_ARB 0x84C7 +#define GL_TEXTURE8_ARB 0x84C8 +#define GL_TEXTURE9_ARB 0x84C9 +#define GL_TEXTURE10_ARB 0x84CA +#define GL_TEXTURE11_ARB 0x84CB +#define GL_TEXTURE12_ARB 0x84CC +#define GL_TEXTURE13_ARB 0x84CD +#define GL_TEXTURE14_ARB 0x84CE +#define GL_TEXTURE15_ARB 0x84CF +#define GL_TEXTURE16_ARB 0x84D0 +#define GL_TEXTURE17_ARB 0x84D1 +#define GL_TEXTURE18_ARB 0x84D2 +#define GL_TEXTURE19_ARB 0x84D3 +#define GL_TEXTURE20_ARB 0x84D4 +#define GL_TEXTURE21_ARB 0x84D5 +#define GL_TEXTURE22_ARB 0x84D6 +#define GL_TEXTURE23_ARB 0x84D7 +#define GL_TEXTURE24_ARB 0x84D8 +#define GL_TEXTURE25_ARB 0x84D9 +#define GL_TEXTURE26_ARB 0x84DA +#define GL_TEXTURE27_ARB 0x84DB +#define GL_TEXTURE28_ARB 0x84DC +#define GL_TEXTURE29_ARB 0x84DD +#define GL_TEXTURE30_ARB 0x84DE +#define GL_TEXTURE31_ARB 0x84DF +#define GL_ACTIVE_TEXTURE_ARB 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1 +#define GL_MAX_TEXTURE_UNITS_ARB 0x84E2 + +#ifndef SDL_OPENGL_1_NO_PROTOTYPES + +GLAPI void GLAPIENTRY glActiveTextureARB(GLenum texture); +GLAPI void GLAPIENTRY glClientActiveTextureARB(GLenum texture); +GLAPI void GLAPIENTRY glMultiTexCoord1dARB(GLenum target, GLdouble s); +GLAPI void GLAPIENTRY glMultiTexCoord1dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord1fARB(GLenum target, GLfloat s); +GLAPI void GLAPIENTRY glMultiTexCoord1fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord1iARB(GLenum target, GLint s); +GLAPI void GLAPIENTRY glMultiTexCoord1ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord1sARB(GLenum target, GLshort s); +GLAPI void GLAPIENTRY glMultiTexCoord1svARB(GLenum target, const GLshort *v); +GLAPI void GLAPIENTRY glMultiTexCoord2dARB(GLenum target, GLdouble s, GLdouble t); +GLAPI void GLAPIENTRY glMultiTexCoord2dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord2fARB(GLenum target, GLfloat s, GLfloat t); +GLAPI void GLAPIENTRY glMultiTexCoord2fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord2iARB(GLenum target, GLint s, GLint t); +GLAPI void GLAPIENTRY glMultiTexCoord2ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord2sARB(GLenum target, GLshort s, GLshort t); +GLAPI void GLAPIENTRY glMultiTexCoord2svARB(GLenum target, const GLshort *v); +GLAPI void GLAPIENTRY glMultiTexCoord3dARB(GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void GLAPIENTRY glMultiTexCoord3dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord3fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void GLAPIENTRY glMultiTexCoord3fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord3iARB(GLenum target, GLint s, GLint t, GLint r); +GLAPI void GLAPIENTRY glMultiTexCoord3ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord3sARB(GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void GLAPIENTRY glMultiTexCoord3svARB(GLenum target, const GLshort *v); +GLAPI void GLAPIENTRY glMultiTexCoord4dARB(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void GLAPIENTRY glMultiTexCoord4dvARB(GLenum target, const GLdouble *v); +GLAPI void GLAPIENTRY glMultiTexCoord4fARB(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void GLAPIENTRY glMultiTexCoord4fvARB(GLenum target, const GLfloat *v); +GLAPI void GLAPIENTRY glMultiTexCoord4iARB(GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void GLAPIENTRY glMultiTexCoord4ivARB(GLenum target, const GLint *v); +GLAPI void GLAPIENTRY glMultiTexCoord4sARB(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void GLAPIENTRY glMultiTexCoord4svARB(GLenum target, const GLshort *v); + +#endif +#ifdef SDL_OPENGL_1_FUNCTION_TYPEDEFS + +typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); + +#endif + +typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); + +#endif /* GL_ARB_multitexture */ + + + +/* + * Define this token if you want "old-style" header file behaviour (extensions + * defined in gl.h). Otherwise, extensions will be included from glext.h. + */ +#if !defined(NO_SDL_GLEXT) && !defined(GL_GLEXT_LEGACY) +#include +#endif /* GL_GLEXT_LEGACY */ + + + +/********************************************************************** + * Begin system-specific stuff + */ +#if defined(PRAGMA_EXPORT_SUPPORTED) +#pragma export off +#endif + +/* + * End system-specific stuff + **********************************************************************/ + + +#ifdef __cplusplus +} +#endif + +#endif /* __gl_h_ */ + +#endif /* !SDL_PLATFORM_IOS */ + +#endif /* SDL_opengl_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengl_glext.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengl_glext.h new file mode 100644 index 0000000..fa0f6c2 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengl_glext.h @@ -0,0 +1,13213 @@ +/* SDL modified the include guard to be compatible with Mesa and Apple include guards: + * - Mesa uses: __gl_glext_h_ + * - Apple uses: __glext_h_ */ +#if !defined(__glext_h_) && !defined(__gl_glext_h_) +#define __glext_h_ 1 +#define __gl_glext_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN 1 +#endif +#include +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif +#ifndef APIENTRYP +#define APIENTRYP APIENTRY * +#endif +#ifndef GLAPI +#define GLAPI extern +#endif + +#define GL_GLEXT_VERSION 20220530 + +/*#include */ +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ + +/* Generated C header for: + * API: gl + * Profile: compatibility + * Versions considered: .* + * Versions emitted: 1\.[2-9]|[234]\.[0-9] + * Default extensions included: gl + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_VERSION_1_2 +#define GL_VERSION_1_2 1 +#define GL_UNSIGNED_BYTE_3_3_2 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2 0x8036 +#define GL_TEXTURE_BINDING_3D 0x806A +#define GL_PACK_SKIP_IMAGES 0x806B +#define GL_PACK_IMAGE_HEIGHT 0x806C +#define GL_UNPACK_SKIP_IMAGES 0x806D +#define GL_UNPACK_IMAGE_HEIGHT 0x806E +#define GL_TEXTURE_3D 0x806F +#define GL_PROXY_TEXTURE_3D 0x8070 +#define GL_TEXTURE_DEPTH 0x8071 +#define GL_TEXTURE_WRAP_R 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE 0x8073 +#define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 +#define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 +#define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 +#define GL_BGR 0x80E0 +#define GL_BGRA 0x80E1 +#define GL_MAX_ELEMENTS_VERTICES 0x80E8 +#define GL_MAX_ELEMENTS_INDICES 0x80E9 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_TEXTURE_MIN_LOD 0x813A +#define GL_TEXTURE_MAX_LOD 0x813B +#define GL_TEXTURE_BASE_LEVEL 0x813C +#define GL_TEXTURE_MAX_LEVEL 0x813D +#define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 +#define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 +#define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_RESCALE_NORMAL 0x803A +#define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8 +#define GL_SINGLE_COLOR 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR 0x81FA +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawRangeElements (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +GLAPI void APIENTRY glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#endif +#endif /* GL_VERSION_1_2 */ + +#ifndef GL_VERSION_1_3 +#define GL_VERSION_1_3 1 +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_MULTISAMPLE 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE 0x809F +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +#define GL_COMPRESSED_RGB 0x84ED +#define GL_COMPRESSED_RGBA 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 +#define GL_TEXTURE_COMPRESSED 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +#define GL_CLAMP_TO_BORDER 0x812D +#define GL_CLIENT_ACTIVE_TEXTURE 0x84E1 +#define GL_MAX_TEXTURE_UNITS 0x84E2 +#define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX 0x84E6 +#define GL_MULTISAMPLE_BIT 0x20000000 +#define GL_NORMAL_MAP 0x8511 +#define GL_REFLECTION_MAP 0x8512 +#define GL_COMPRESSED_ALPHA 0x84E9 +#define GL_COMPRESSED_LUMINANCE 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB +#define GL_COMPRESSED_INTENSITY 0x84EC +#define GL_COMBINE 0x8570 +#define GL_COMBINE_RGB 0x8571 +#define GL_COMBINE_ALPHA 0x8572 +#define GL_SOURCE0_RGB 0x8580 +#define GL_SOURCE1_RGB 0x8581 +#define GL_SOURCE2_RGB 0x8582 +#define GL_SOURCE0_ALPHA 0x8588 +#define GL_SOURCE1_ALPHA 0x8589 +#define GL_SOURCE2_ALPHA 0x858A +#define GL_OPERAND0_RGB 0x8590 +#define GL_OPERAND1_RGB 0x8591 +#define GL_OPERAND2_RGB 0x8592 +#define GL_OPERAND0_ALPHA 0x8598 +#define GL_OPERAND1_ALPHA 0x8599 +#define GL_OPERAND2_ALPHA 0x859A +#define GL_RGB_SCALE 0x8573 +#define GL_ADD_SIGNED 0x8574 +#define GL_INTERPOLATE 0x8575 +#define GL_SUBTRACT 0x84E7 +#define GL_CONSTANT 0x8576 +#define GL_PRIMARY_COLOR 0x8577 +#define GL_PREVIOUS 0x8578 +#define GL_DOT3_RGB 0x86AE +#define GL_DOT3_RGBA 0x86AF +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLfloat value, GLboolean invert); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, void *img); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDPROC) (const GLdouble *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDPROC) (const GLdouble *m); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveTexture (GLenum texture); +GLAPI void APIENTRY glSampleCoverage (GLfloat value, GLboolean invert); +GLAPI void APIENTRY glCompressedTexImage3D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage1D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage1D (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glGetCompressedTexImage (GLenum target, GLint level, void *img); +GLAPI void APIENTRY glClientActiveTexture (GLenum texture); +GLAPI void APIENTRY glMultiTexCoord1d (GLenum target, GLdouble s); +GLAPI void APIENTRY glMultiTexCoord1dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord1f (GLenum target, GLfloat s); +GLAPI void APIENTRY glMultiTexCoord1fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord1i (GLenum target, GLint s); +GLAPI void APIENTRY glMultiTexCoord1iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord1s (GLenum target, GLshort s); +GLAPI void APIENTRY glMultiTexCoord1sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord2d (GLenum target, GLdouble s, GLdouble t); +GLAPI void APIENTRY glMultiTexCoord2dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord2f (GLenum target, GLfloat s, GLfloat t); +GLAPI void APIENTRY glMultiTexCoord2fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord2i (GLenum target, GLint s, GLint t); +GLAPI void APIENTRY glMultiTexCoord2iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord2s (GLenum target, GLshort s, GLshort t); +GLAPI void APIENTRY glMultiTexCoord2sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord3d (GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void APIENTRY glMultiTexCoord3dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord3f (GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void APIENTRY glMultiTexCoord3fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord3i (GLenum target, GLint s, GLint t, GLint r); +GLAPI void APIENTRY glMultiTexCoord3iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord3s (GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void APIENTRY glMultiTexCoord3sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord4d (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void APIENTRY glMultiTexCoord4dv (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord4f (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void APIENTRY glMultiTexCoord4fv (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord4i (GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void APIENTRY glMultiTexCoord4iv (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord4s (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void APIENTRY glMultiTexCoord4sv (GLenum target, const GLshort *v); +GLAPI void APIENTRY glLoadTransposeMatrixf (const GLfloat *m); +GLAPI void APIENTRY glLoadTransposeMatrixd (const GLdouble *m); +GLAPI void APIENTRY glMultTransposeMatrixf (const GLfloat *m); +GLAPI void APIENTRY glMultTransposeMatrixd (const GLdouble *m); +#endif +#endif /* GL_VERSION_1_3 */ + +#ifndef GL_VERSION_1_4 +#define GL_VERSION_1_4 1 +#define GL_BLEND_DST_RGB 0x80C8 +#define GL_BLEND_SRC_RGB 0x80C9 +#define GL_BLEND_DST_ALPHA 0x80CA +#define GL_BLEND_SRC_ALPHA 0x80CB +#define GL_POINT_FADE_THRESHOLD_SIZE 0x8128 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_DEPTH_COMPONENT24 0x81A6 +#define GL_DEPTH_COMPONENT32 0x81A7 +#define GL_MIRRORED_REPEAT 0x8370 +#define GL_MAX_TEXTURE_LOD_BIAS 0x84FD +#define GL_TEXTURE_LOD_BIAS 0x8501 +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 +#define GL_TEXTURE_DEPTH_SIZE 0x884A +#define GL_TEXTURE_COMPARE_MODE 0x884C +#define GL_TEXTURE_COMPARE_FUNC 0x884D +#define GL_POINT_SIZE_MIN 0x8126 +#define GL_POINT_SIZE_MAX 0x8127 +#define GL_POINT_DISTANCE_ATTENUATION 0x8129 +#define GL_GENERATE_MIPMAP 0x8191 +#define GL_GENERATE_MIPMAP_HINT 0x8192 +#define GL_FOG_COORDINATE_SOURCE 0x8450 +#define GL_FOG_COORDINATE 0x8451 +#define GL_FRAGMENT_DEPTH 0x8452 +#define GL_CURRENT_FOG_COORDINATE 0x8453 +#define GL_FOG_COORDINATE_ARRAY_TYPE 0x8454 +#define GL_FOG_COORDINATE_ARRAY_STRIDE 0x8455 +#define GL_FOG_COORDINATE_ARRAY_POINTER 0x8456 +#define GL_FOG_COORDINATE_ARRAY 0x8457 +#define GL_COLOR_SUM 0x8458 +#define GL_CURRENT_SECONDARY_COLOR 0x8459 +#define GL_SECONDARY_COLOR_ARRAY_SIZE 0x845A +#define GL_SECONDARY_COLOR_ARRAY_TYPE 0x845B +#define GL_SECONDARY_COLOR_ARRAY_STRIDE 0x845C +#define GL_SECONDARY_COLOR_ARRAY_POINTER 0x845D +#define GL_SECONDARY_COLOR_ARRAY 0x845E +#define GL_TEXTURE_FILTER_CONTROL 0x8500 +#define GL_DEPTH_TEXTURE_MODE 0x884B +#define GL_COMPARE_R_TO_TEXTURE 0x884E +#define GL_BLEND_COLOR 0x8005 +#define GL_BLEND_EQUATION 0x8009 +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_FUNC_ADD 0x8006 +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_FUNC_SUBTRACT 0x800A +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIVPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFOGCOORDFPROC) (GLfloat coord); +typedef void (APIENTRYP PFNGLFOGCOORDFVPROC) (const GLfloat *coord); +typedef void (APIENTRYP PFNGLFOGCOORDDPROC) (GLdouble coord); +typedef void (APIENTRYP PFNGLFOGCOORDDVPROC) (const GLdouble *coord); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTERPROC) (GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BPROC) (GLbyte red, GLbyte green, GLbyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DPROC) (GLdouble red, GLdouble green, GLdouble blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FPROC) (GLfloat red, GLfloat green, GLfloat blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IPROC) (GLint red, GLint green, GLint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SPROC) (GLshort red, GLshort green, GLshort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBPROC) (GLubyte red, GLubyte green, GLubyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVPROC) (const GLubyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIPROC) (GLuint red, GLuint green, GLuint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVPROC) (const GLuint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USPROC) (GLushort red, GLushort green, GLushort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVPROC) (const GLushort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLWINDOWPOS2DPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLBLENDCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +GLAPI void APIENTRY glMultiDrawArrays (GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); +GLAPI void APIENTRY glMultiDrawElements (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount); +GLAPI void APIENTRY glPointParameterf (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfv (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glPointParameteri (GLenum pname, GLint param); +GLAPI void APIENTRY glPointParameteriv (GLenum pname, const GLint *params); +GLAPI void APIENTRY glFogCoordf (GLfloat coord); +GLAPI void APIENTRY glFogCoordfv (const GLfloat *coord); +GLAPI void APIENTRY glFogCoordd (GLdouble coord); +GLAPI void APIENTRY glFogCoorddv (const GLdouble *coord); +GLAPI void APIENTRY glFogCoordPointer (GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glSecondaryColor3b (GLbyte red, GLbyte green, GLbyte blue); +GLAPI void APIENTRY glSecondaryColor3bv (const GLbyte *v); +GLAPI void APIENTRY glSecondaryColor3d (GLdouble red, GLdouble green, GLdouble blue); +GLAPI void APIENTRY glSecondaryColor3dv (const GLdouble *v); +GLAPI void APIENTRY glSecondaryColor3f (GLfloat red, GLfloat green, GLfloat blue); +GLAPI void APIENTRY glSecondaryColor3fv (const GLfloat *v); +GLAPI void APIENTRY glSecondaryColor3i (GLint red, GLint green, GLint blue); +GLAPI void APIENTRY glSecondaryColor3iv (const GLint *v); +GLAPI void APIENTRY glSecondaryColor3s (GLshort red, GLshort green, GLshort blue); +GLAPI void APIENTRY glSecondaryColor3sv (const GLshort *v); +GLAPI void APIENTRY glSecondaryColor3ub (GLubyte red, GLubyte green, GLubyte blue); +GLAPI void APIENTRY glSecondaryColor3ubv (const GLubyte *v); +GLAPI void APIENTRY glSecondaryColor3ui (GLuint red, GLuint green, GLuint blue); +GLAPI void APIENTRY glSecondaryColor3uiv (const GLuint *v); +GLAPI void APIENTRY glSecondaryColor3us (GLushort red, GLushort green, GLushort blue); +GLAPI void APIENTRY glSecondaryColor3usv (const GLushort *v); +GLAPI void APIENTRY glSecondaryColorPointer (GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glWindowPos2d (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dv (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2f (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fv (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2i (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2iv (const GLint *v); +GLAPI void APIENTRY glWindowPos2s (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2sv (const GLshort *v); +GLAPI void APIENTRY glWindowPos3d (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dv (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3f (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fv (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3i (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3iv (const GLint *v); +GLAPI void APIENTRY glWindowPos3s (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3sv (const GLshort *v); +GLAPI void APIENTRY glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI void APIENTRY glBlendEquation (GLenum mode); +#endif +#endif /* GL_VERSION_1_4 */ + +#ifndef GL_VERSION_1_5 +#define GL_VERSION_1_5 1 +typedef khronos_ssize_t GLsizeiptr; +typedef khronos_intptr_t GLintptr; +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 +#define GL_QUERY_COUNTER_BITS 0x8864 +#define GL_CURRENT_QUERY 0x8865 +#define GL_QUERY_RESULT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE 0x8867 +#define GL_ARRAY_BUFFER 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER 0x8893 +#define GL_ARRAY_BUFFER_BINDING 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F +#define GL_READ_ONLY 0x88B8 +#define GL_WRITE_ONLY 0x88B9 +#define GL_READ_WRITE 0x88BA +#define GL_BUFFER_ACCESS 0x88BB +#define GL_BUFFER_MAPPED 0x88BC +#define GL_BUFFER_MAP_POINTER 0x88BD +#define GL_STREAM_DRAW 0x88E0 +#define GL_STREAM_READ 0x88E1 +#define GL_STREAM_COPY 0x88E2 +#define GL_STATIC_DRAW 0x88E4 +#define GL_STATIC_READ 0x88E5 +#define GL_STATIC_COPY 0x88E6 +#define GL_DYNAMIC_DRAW 0x88E8 +#define GL_DYNAMIC_READ 0x88E9 +#define GL_DYNAMIC_COPY 0x88EA +#define GL_SAMPLES_PASSED 0x8914 +#define GL_SRC1_ALPHA 0x8589 +#define GL_VERTEX_ARRAY_BUFFER_BINDING 0x8896 +#define GL_NORMAL_ARRAY_BUFFER_BINDING 0x8897 +#define GL_COLOR_ARRAY_BUFFER_BINDING 0x8898 +#define GL_INDEX_ARRAY_BUFFER_BINDING 0x8899 +#define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING 0x889A +#define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING 0x889B +#define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING 0x889C +#define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING 0x889D +#define GL_WEIGHT_ARRAY_BUFFER_BINDING 0x889E +#define GL_FOG_COORD_SRC 0x8450 +#define GL_FOG_COORD 0x8451 +#define GL_CURRENT_FOG_COORD 0x8453 +#define GL_FOG_COORD_ARRAY_TYPE 0x8454 +#define GL_FOG_COORD_ARRAY_STRIDE 0x8455 +#define GL_FOG_COORD_ARRAY_POINTER 0x8456 +#define GL_FOG_COORD_ARRAY 0x8457 +#define GL_FOG_COORD_ARRAY_BUFFER_BINDING 0x889D +#define GL_SRC0_RGB 0x8580 +#define GL_SRC1_RGB 0x8581 +#define GL_SRC2_RGB 0x8582 +#define GL_SRC0_ALPHA 0x8588 +#define GL_SRC2_ALPHA 0x858A +typedef void (APIENTRYP PFNGLGENQUERIESPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEQUERIESPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISQUERYPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINQUERYPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVPROC) (GLuint id, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer); +typedef void (APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers); +typedef void (APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef GLboolean (APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, void *data); +typedef void *(APIENTRYP PFNGLMAPBUFFERPROC) (GLenum target, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueries (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteQueries (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsQuery (GLuint id); +GLAPI void APIENTRY glBeginQuery (GLenum target, GLuint id); +GLAPI void APIENTRY glEndQuery (GLenum target); +GLAPI void APIENTRY glGetQueryiv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectiv (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectuiv (GLuint id, GLenum pname, GLuint *params); +GLAPI void APIENTRY glBindBuffer (GLenum target, GLuint buffer); +GLAPI void APIENTRY glDeleteBuffers (GLsizei n, const GLuint *buffers); +GLAPI void APIENTRY glGenBuffers (GLsizei n, GLuint *buffers); +GLAPI GLboolean APIENTRY glIsBuffer (GLuint buffer); +GLAPI void APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +GLAPI void APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glGetBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, void *data); +GLAPI void *APIENTRY glMapBuffer (GLenum target, GLenum access); +GLAPI GLboolean APIENTRY glUnmapBuffer (GLenum target); +GLAPI void APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetBufferPointerv (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_VERSION_1_5 */ + +#ifndef GL_VERSION_2_0 +#define GL_VERSION_2_0 1 +typedef char GLchar; +#define GL_BLEND_EQUATION_RGB 0x8009 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 +#define GL_VERTEX_PROGRAM_POINT_SIZE 0x8642 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_STENCIL_BACK_FUNC 0x8800 +#define GL_STENCIL_BACK_FAIL 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 +#define GL_MAX_DRAW_BUFFERS 0x8824 +#define GL_DRAW_BUFFER0 0x8825 +#define GL_DRAW_BUFFER1 0x8826 +#define GL_DRAW_BUFFER2 0x8827 +#define GL_DRAW_BUFFER3 0x8828 +#define GL_DRAW_BUFFER4 0x8829 +#define GL_DRAW_BUFFER5 0x882A +#define GL_DRAW_BUFFER6 0x882B +#define GL_DRAW_BUFFER7 0x882C +#define GL_DRAW_BUFFER8 0x882D +#define GL_DRAW_BUFFER9 0x882E +#define GL_DRAW_BUFFER10 0x882F +#define GL_DRAW_BUFFER11 0x8830 +#define GL_DRAW_BUFFER12 0x8831 +#define GL_DRAW_BUFFER13 0x8832 +#define GL_DRAW_BUFFER14 0x8833 +#define GL_DRAW_BUFFER15 0x8834 +#define GL_BLEND_EQUATION_ALPHA 0x883D +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS 0x8B49 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS 0x8B4A +#define GL_MAX_VARYING_FLOATS 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_SHADER_TYPE 0x8B4F +#define GL_FLOAT_VEC2 0x8B50 +#define GL_FLOAT_VEC3 0x8B51 +#define GL_FLOAT_VEC4 0x8B52 +#define GL_INT_VEC2 0x8B53 +#define GL_INT_VEC3 0x8B54 +#define GL_INT_VEC4 0x8B55 +#define GL_BOOL 0x8B56 +#define GL_BOOL_VEC2 0x8B57 +#define GL_BOOL_VEC3 0x8B58 +#define GL_BOOL_VEC4 0x8B59 +#define GL_FLOAT_MAT2 0x8B5A +#define GL_FLOAT_MAT3 0x8B5B +#define GL_FLOAT_MAT4 0x8B5C +#define GL_SAMPLER_1D 0x8B5D +#define GL_SAMPLER_2D 0x8B5E +#define GL_SAMPLER_3D 0x8B5F +#define GL_SAMPLER_CUBE 0x8B60 +#define GL_SAMPLER_1D_SHADOW 0x8B61 +#define GL_SAMPLER_2D_SHADOW 0x8B62 +#define GL_DELETE_STATUS 0x8B80 +#define GL_COMPILE_STATUS 0x8B81 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT 0x8B8B +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D +#define GL_POINT_SPRITE_COORD_ORIGIN 0x8CA0 +#define GL_LOWER_LEFT 0x8CA1 +#define GL_UPPER_LEFT 0x8CA2 +#define GL_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 +#define GL_VERTEX_PROGRAM_TWO_SIDE 0x8643 +#define GL_POINT_SPRITE 0x8861 +#define GL_COORD_REPLACE 0x8862 +#define GL_MAX_TEXTURE_COORDS 0x8871 +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLDRAWBUFFERSPROC) (GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum face, GLenum func, GLint ref, GLuint mask); +typedef void (APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask); +typedef void (APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name); +typedef void (APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader); +typedef GLuint (APIENTRYP PFNGLCREATEPROGRAMPROC) (void); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROC) (GLenum type); +typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader); +typedef void (APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params); +typedef void (APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMPROC) (GLuint program); +typedef GLboolean (APIENTRYP PFNGLISSHADERPROC) (GLuint shader); +typedef void (APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +typedef void (APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0); +typedef void (APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glDrawBuffers (GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GLAPI void APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask); +GLAPI void APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask); +GLAPI void APIENTRY glAttachShader (GLuint program, GLuint shader); +GLAPI void APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar *name); +GLAPI void APIENTRY glCompileShader (GLuint shader); +GLAPI GLuint APIENTRY glCreateProgram (void); +GLAPI GLuint APIENTRY glCreateShader (GLenum type); +GLAPI void APIENTRY glDeleteProgram (GLuint program); +GLAPI void APIENTRY glDeleteShader (GLuint shader); +GLAPI void APIENTRY glDetachShader (GLuint program, GLuint shader); +GLAPI void APIENTRY glDisableVertexAttribArray (GLuint index); +GLAPI void APIENTRY glEnableVertexAttribArray (GLuint index); +GLAPI void APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +GLAPI GLint APIENTRY glGetAttribLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +GLAPI GLint APIENTRY glGetUniformLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat *params); +GLAPI void APIENTRY glGetUniformiv (GLuint program, GLint location, GLint *params); +GLAPI void APIENTRY glGetVertexAttribdv (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer); +GLAPI GLboolean APIENTRY glIsProgram (GLuint program); +GLAPI GLboolean APIENTRY glIsShader (GLuint shader); +GLAPI void APIENTRY glLinkProgram (GLuint program); +GLAPI void APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +GLAPI void APIENTRY glUseProgram (GLuint program); +GLAPI void APIENTRY glUniform1f (GLint location, GLfloat v0); +GLAPI void APIENTRY glUniform2f (GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glUniform1i (GLint location, GLint v0); +GLAPI void APIENTRY glUniform2i (GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glUniform3i (GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glValidateProgram (GLuint program); +GLAPI void APIENTRY glVertexAttrib1d (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1f (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1s (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2d (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2s (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3d (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3s (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4Nbv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4Niv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4Nsv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4Nub (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4Nubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4Nuiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4Nusv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttrib4bv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4d (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4s (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4usv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +#endif +#endif /* GL_VERSION_2_0 */ + +#ifndef GL_VERSION_2_1 +#define GL_VERSION_2_1 1 +#define GL_PIXEL_PACK_BUFFER 0x88EB +#define GL_PIXEL_UNPACK_BUFFER 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING 0x88EF +#define GL_FLOAT_MAT2x3 0x8B65 +#define GL_FLOAT_MAT2x4 0x8B66 +#define GL_FLOAT_MAT3x2 0x8B67 +#define GL_FLOAT_MAT3x4 0x8B68 +#define GL_FLOAT_MAT4x2 0x8B69 +#define GL_FLOAT_MAT4x3 0x8B6A +#define GL_SRGB 0x8C40 +#define GL_SRGB8 0x8C41 +#define GL_SRGB_ALPHA 0x8C42 +#define GL_SRGB8_ALPHA8 0x8C43 +#define GL_COMPRESSED_SRGB 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA 0x8C49 +#define GL_CURRENT_RASTER_SECONDARY_COLOR 0x845F +#define GL_SLUMINANCE_ALPHA 0x8C44 +#define GL_SLUMINANCE8_ALPHA8 0x8C45 +#define GL_SLUMINANCE 0x8C46 +#define GL_SLUMINANCE8 0x8C47 +#define GL_COMPRESSED_SLUMINANCE 0x8C4A +#define GL_COMPRESSED_SLUMINANCE_ALPHA 0x8C4B +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniformMatrix2x3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3x2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix2x4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4x2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3x4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4x3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_VERSION_2_1 */ + +#ifndef GL_VERSION_3_0 +#define GL_VERSION_3_0 1 +typedef khronos_uint16_t GLhalf; +#define GL_COMPARE_REF_TO_TEXTURE 0x884E +#define GL_CLIP_DISTANCE0 0x3000 +#define GL_CLIP_DISTANCE1 0x3001 +#define GL_CLIP_DISTANCE2 0x3002 +#define GL_CLIP_DISTANCE3 0x3003 +#define GL_CLIP_DISTANCE4 0x3004 +#define GL_CLIP_DISTANCE5 0x3005 +#define GL_CLIP_DISTANCE6 0x3006 +#define GL_CLIP_DISTANCE7 0x3007 +#define GL_MAX_CLIP_DISTANCES 0x0D32 +#define GL_MAJOR_VERSION 0x821B +#define GL_MINOR_VERSION 0x821C +#define GL_NUM_EXTENSIONS 0x821D +#define GL_CONTEXT_FLAGS 0x821E +#define GL_COMPRESSED_RED 0x8225 +#define GL_COMPRESSED_RG 0x8226 +#define GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT 0x00000001 +#define GL_RGBA32F 0x8814 +#define GL_RGB32F 0x8815 +#define GL_RGBA16F 0x881A +#define GL_RGB16F 0x881B +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER 0x88FD +#define GL_MAX_ARRAY_TEXTURE_LAYERS 0x88FF +#define GL_MIN_PROGRAM_TEXEL_OFFSET 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET 0x8905 +#define GL_CLAMP_READ_COLOR 0x891C +#define GL_FIXED_ONLY 0x891D +#define GL_MAX_VARYING_COMPONENTS 0x8B4B +#define GL_TEXTURE_1D_ARRAY 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY 0x8C19 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY 0x8C1D +#define GL_R11F_G11F_B10F 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV 0x8C3B +#define GL_RGB9_E5 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV 0x8C3E +#define GL_TEXTURE_SHARED_SIZE 0x8C3F +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH 0x8C76 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE 0x8C85 +#define GL_PRIMITIVES_GENERATED 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN 0x8C88 +#define GL_RASTERIZER_DISCARD 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS 0x8C8B +#define GL_INTERLEAVED_ATTRIBS 0x8C8C +#define GL_SEPARATE_ATTRIBS 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING 0x8C8F +#define GL_RGBA32UI 0x8D70 +#define GL_RGB32UI 0x8D71 +#define GL_RGBA16UI 0x8D76 +#define GL_RGB16UI 0x8D77 +#define GL_RGBA8UI 0x8D7C +#define GL_RGB8UI 0x8D7D +#define GL_RGBA32I 0x8D82 +#define GL_RGB32I 0x8D83 +#define GL_RGBA16I 0x8D88 +#define GL_RGB16I 0x8D89 +#define GL_RGBA8I 0x8D8E +#define GL_RGB8I 0x8D8F +#define GL_RED_INTEGER 0x8D94 +#define GL_GREEN_INTEGER 0x8D95 +#define GL_BLUE_INTEGER 0x8D96 +#define GL_RGB_INTEGER 0x8D98 +#define GL_RGBA_INTEGER 0x8D99 +#define GL_BGR_INTEGER 0x8D9A +#define GL_BGRA_INTEGER 0x8D9B +#define GL_SAMPLER_1D_ARRAY 0x8DC0 +#define GL_SAMPLER_2D_ARRAY 0x8DC1 +#define GL_SAMPLER_1D_ARRAY_SHADOW 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW 0x8DC5 +#define GL_UNSIGNED_INT_VEC2 0x8DC6 +#define GL_UNSIGNED_INT_VEC3 0x8DC7 +#define GL_UNSIGNED_INT_VEC4 0x8DC8 +#define GL_INT_SAMPLER_1D 0x8DC9 +#define GL_INT_SAMPLER_2D 0x8DCA +#define GL_INT_SAMPLER_3D 0x8DCB +#define GL_INT_SAMPLER_CUBE 0x8DCC +#define GL_INT_SAMPLER_1D_ARRAY 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY 0x8DCF +#define GL_UNSIGNED_INT_SAMPLER_1D 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY 0x8DD7 +#define GL_QUERY_WAIT 0x8E13 +#define GL_QUERY_NO_WAIT 0x8E14 +#define GL_QUERY_BY_REGION_WAIT 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT 0x8E16 +#define GL_BUFFER_ACCESS_FLAGS 0x911F +#define GL_BUFFER_MAP_LENGTH 0x9120 +#define GL_BUFFER_MAP_OFFSET 0x9121 +#define GL_DEPTH_COMPONENT32F 0x8CAC +#define GL_DEPTH32F_STENCIL8 0x8CAD +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV 0x8DAD +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING 0x8210 +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE 0x8211 +#define GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE 0x8212 +#define GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE 0x8213 +#define GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE 0x8214 +#define GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE 0x8215 +#define GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE 0x8216 +#define GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE 0x8217 +#define GL_FRAMEBUFFER_DEFAULT 0x8218 +#define GL_FRAMEBUFFER_UNDEFINED 0x8219 +#define GL_DEPTH_STENCIL_ATTACHMENT 0x821A +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 +#define GL_DEPTH_STENCIL 0x84F9 +#define GL_UNSIGNED_INT_24_8 0x84FA +#define GL_DEPTH24_STENCIL8 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE 0x88F1 +#define GL_TEXTURE_RED_TYPE 0x8C10 +#define GL_TEXTURE_GREEN_TYPE 0x8C11 +#define GL_TEXTURE_BLUE_TYPE 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE 0x8C13 +#define GL_TEXTURE_DEPTH_TYPE 0x8C16 +#define GL_UNSIGNED_NORMALIZED 0x8C17 +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_DRAW_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_READ_FRAMEBUFFER 0x8CA8 +#define GL_DRAW_FRAMEBUFFER 0x8CA9 +#define GL_READ_FRAMEBUFFER_BINDING 0x8CAA +#define GL_RENDERBUFFER_SAMPLES 0x8CAB +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS 0x8CDF +#define GL_COLOR_ATTACHMENT0 0x8CE0 +#define GL_COLOR_ATTACHMENT1 0x8CE1 +#define GL_COLOR_ATTACHMENT2 0x8CE2 +#define GL_COLOR_ATTACHMENT3 0x8CE3 +#define GL_COLOR_ATTACHMENT4 0x8CE4 +#define GL_COLOR_ATTACHMENT5 0x8CE5 +#define GL_COLOR_ATTACHMENT6 0x8CE6 +#define GL_COLOR_ATTACHMENT7 0x8CE7 +#define GL_COLOR_ATTACHMENT8 0x8CE8 +#define GL_COLOR_ATTACHMENT9 0x8CE9 +#define GL_COLOR_ATTACHMENT10 0x8CEA +#define GL_COLOR_ATTACHMENT11 0x8CEB +#define GL_COLOR_ATTACHMENT12 0x8CEC +#define GL_COLOR_ATTACHMENT13 0x8CED +#define GL_COLOR_ATTACHMENT14 0x8CEE +#define GL_COLOR_ATTACHMENT15 0x8CEF +#define GL_COLOR_ATTACHMENT16 0x8CF0 +#define GL_COLOR_ATTACHMENT17 0x8CF1 +#define GL_COLOR_ATTACHMENT18 0x8CF2 +#define GL_COLOR_ATTACHMENT19 0x8CF3 +#define GL_COLOR_ATTACHMENT20 0x8CF4 +#define GL_COLOR_ATTACHMENT21 0x8CF5 +#define GL_COLOR_ATTACHMENT22 0x8CF6 +#define GL_COLOR_ATTACHMENT23 0x8CF7 +#define GL_COLOR_ATTACHMENT24 0x8CF8 +#define GL_COLOR_ATTACHMENT25 0x8CF9 +#define GL_COLOR_ATTACHMENT26 0x8CFA +#define GL_COLOR_ATTACHMENT27 0x8CFB +#define GL_COLOR_ATTACHMENT28 0x8CFC +#define GL_COLOR_ATTACHMENT29 0x8CFD +#define GL_COLOR_ATTACHMENT30 0x8CFE +#define GL_COLOR_ATTACHMENT31 0x8CFF +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#define GL_STENCIL_INDEX1 0x8D46 +#define GL_STENCIL_INDEX4 0x8D47 +#define GL_STENCIL_INDEX8 0x8D48 +#define GL_STENCIL_INDEX16 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE 0x8D56 +#define GL_MAX_SAMPLES 0x8D57 +#define GL_INDEX 0x8222 +#define GL_TEXTURE_LUMINANCE_TYPE 0x8C14 +#define GL_TEXTURE_INTENSITY_TYPE 0x8C15 +#define GL_FRAMEBUFFER_SRGB 0x8DB9 +#define GL_HALF_FLOAT 0x140B +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT 0x0020 +#define GL_COMPRESSED_RED_RGTC1 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1 0x8DBC +#define GL_COMPRESSED_RG_RGTC2 0x8DBD +#define GL_COMPRESSED_SIGNED_RG_RGTC2 0x8DBE +#define GL_RG 0x8227 +#define GL_RG_INTEGER 0x8228 +#define GL_R8 0x8229 +#define GL_R16 0x822A +#define GL_RG8 0x822B +#define GL_RG16 0x822C +#define GL_R16F 0x822D +#define GL_R32F 0x822E +#define GL_RG16F 0x822F +#define GL_RG32F 0x8230 +#define GL_R8I 0x8231 +#define GL_R8UI 0x8232 +#define GL_R16I 0x8233 +#define GL_R16UI 0x8234 +#define GL_R32I 0x8235 +#define GL_R32UI 0x8236 +#define GL_RG8I 0x8237 +#define GL_RG8UI 0x8238 +#define GL_RG16I 0x8239 +#define GL_RG16UI 0x823A +#define GL_RG32I 0x823B +#define GL_RG32UI 0x823C +#define GL_VERTEX_ARRAY_BINDING 0x85B5 +#define GL_CLAMP_VERTEX_COLOR 0x891A +#define GL_CLAMP_FRAGMENT_COLOR 0x891B +#define GL_ALPHA_INTEGER 0x8D97 +typedef void (APIENTRYP PFNGLCOLORMASKIPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef void (APIENTRYP PFNGLGETBOOLEANI_VPROC) (GLenum target, GLuint index, GLboolean *data); +typedef void (APIENTRYP PFNGLGETINTEGERI_VPROC) (GLenum target, GLuint index, GLint *data); +typedef void (APIENTRYP PFNGLENABLEIPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEIPROC) (GLenum target, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISENABLEDIPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGEPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFERBASEPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSPROC) (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLCLAMPCOLORPROC) (GLenum target, GLenum clamp); +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERPROC) (GLuint id, GLenum mode); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERPROC) (void); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVPROC) (GLuint index, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IPROC) (GLuint index, GLint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IPROC) (GLuint index, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IPROC) (GLuint index, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIPROC) (GLuint index, GLuint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIPROC) (GLuint index, GLuint x, GLuint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLGETUNIFORMUIVPROC) (GLuint program, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORM1UIPROC) (GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLUNIFORM2UIPROC) (GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLUNIFORM3UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLUNIFORM4UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLUNIFORM1UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM2UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM3UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM4UIVPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLCLEARBUFFERIVPROC) (GLenum buffer, GLint drawbuffer, const GLint *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERUIVPROC) (GLenum buffer, GLint drawbuffer, const GLuint *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERFVPROC) (GLenum buffer, GLint drawbuffer, const GLfloat *value); +typedef void (APIENTRYP PFNGLCLEARBUFFERFIPROC) (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +typedef const GLubyte *(APIENTRYP PFNGLGETSTRINGIPROC) (GLenum name, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFERPROC) (GLuint renderbuffer); +typedef void (APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLGENRENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFERPROC) (GLuint framebuffer); +typedef void (APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer); +typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATEMIPMAPPROC) (GLenum target); +typedef void (APIENTRYP PFNGLBLITFRAMEBUFFERPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void *(APIENTRYP PFNGLMAPBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLBINDVERTEXARRAYPROC) (GLuint array); +typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSPROC) (GLsizei n, const GLuint *arrays); +typedef void (APIENTRYP PFNGLGENVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYPROC) (GLuint array); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorMaski (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GLAPI void APIENTRY glGetBooleani_v (GLenum target, GLuint index, GLboolean *data); +GLAPI void APIENTRY glGetIntegeri_v (GLenum target, GLuint index, GLint *data); +GLAPI void APIENTRY glEnablei (GLenum target, GLuint index); +GLAPI void APIENTRY glDisablei (GLenum target, GLuint index); +GLAPI GLboolean APIENTRY glIsEnabledi (GLenum target, GLuint index); +GLAPI void APIENTRY glBeginTransformFeedback (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedback (void); +GLAPI void APIENTRY glBindBufferRange (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferBase (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryings (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +GLAPI void APIENTRY glGetTransformFeedbackVarying (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glClampColor (GLenum target, GLenum clamp); +GLAPI void APIENTRY glBeginConditionalRender (GLuint id, GLenum mode); +GLAPI void APIENTRY glEndConditionalRender (void); +GLAPI void APIENTRY glVertexAttribIPointer (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribIiv (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribIuiv (GLuint index, GLenum pname, GLuint *params); +GLAPI void APIENTRY glVertexAttribI1i (GLuint index, GLint x); +GLAPI void APIENTRY glVertexAttribI2i (GLuint index, GLint x, GLint y); +GLAPI void APIENTRY glVertexAttribI3i (GLuint index, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexAttribI4i (GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexAttribI1ui (GLuint index, GLuint x); +GLAPI void APIENTRY glVertexAttribI2ui (GLuint index, GLuint x, GLuint y); +GLAPI void APIENTRY glVertexAttribI3ui (GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI void APIENTRY glVertexAttribI4ui (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glVertexAttribI1iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI2iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI3iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI4iv (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI1uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI2uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI3uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4uiv (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4bv (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttribI4sv (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttribI4ubv (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribI4usv (GLuint index, const GLushort *v); +GLAPI void APIENTRY glGetUniformuiv (GLuint program, GLint location, GLuint *params); +GLAPI void APIENTRY glBindFragDataLocation (GLuint program, GLuint color, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataLocation (GLuint program, const GLchar *name); +GLAPI void APIENTRY glUniform1ui (GLint location, GLuint v0); +GLAPI void APIENTRY glUniform2ui (GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glUniform3ui (GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glUniform4ui (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glUniform1uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform2uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform3uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform4uiv (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glTexParameterIiv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTexParameterIuiv (GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTexParameterIiv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTexParameterIuiv (GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glClearBufferiv (GLenum buffer, GLint drawbuffer, const GLint *value); +GLAPI void APIENTRY glClearBufferuiv (GLenum buffer, GLint drawbuffer, const GLuint *value); +GLAPI void APIENTRY glClearBufferfv (GLenum buffer, GLint drawbuffer, const GLfloat *value); +GLAPI void APIENTRY glClearBufferfi (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +GLAPI const GLubyte *APIENTRY glGetStringi (GLenum name, GLuint index); +GLAPI GLboolean APIENTRY glIsRenderbuffer (GLuint renderbuffer); +GLAPI void APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint *renderbuffers); +GLAPI void APIENTRY glGenRenderbuffers (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI GLboolean APIENTRY glIsFramebuffer (GLuint framebuffer); +GLAPI void APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer); +GLAPI void APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); +GLAPI void APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers); +GLAPI GLenum APIENTRY glCheckFramebufferStatus (GLenum target); +GLAPI void APIENTRY glFramebufferTexture1D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture3D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateMipmap (GLenum target); +GLAPI void APIENTRY glBlitFramebuffer (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI void APIENTRY glRenderbufferStorageMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void *APIENTRY glMapBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI void APIENTRY glFlushMappedBufferRange (GLenum target, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glBindVertexArray (GLuint array); +GLAPI void APIENTRY glDeleteVertexArrays (GLsizei n, const GLuint *arrays); +GLAPI void APIENTRY glGenVertexArrays (GLsizei n, GLuint *arrays); +GLAPI GLboolean APIENTRY glIsVertexArray (GLuint array); +#endif +#endif /* GL_VERSION_3_0 */ + +#ifndef GL_VERSION_3_1 +#define GL_VERSION_3_1 1 +#define GL_SAMPLER_2D_RECT 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW 0x8B64 +#define GL_SAMPLER_BUFFER 0x8DC2 +#define GL_INT_SAMPLER_2D_RECT 0x8DCD +#define GL_INT_SAMPLER_BUFFER 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER 0x8DD8 +#define GL_TEXTURE_BUFFER 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING 0x8C2D +#define GL_TEXTURE_RECTANGLE 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE 0x84F8 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGB8_SNORM 0x8F96 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM 0x8F98 +#define GL_RG16_SNORM 0x8F99 +#define GL_RGB16_SNORM 0x8F9A +#define GL_RGBA16_SNORM 0x8F9B +#define GL_SIGNED_NORMALIZED 0x8F9C +#define GL_PRIMITIVE_RESTART 0x8F9D +#define GL_PRIMITIVE_RESTART_INDEX 0x8F9E +#define GL_COPY_READ_BUFFER 0x8F36 +#define GL_COPY_WRITE_BUFFER 0x8F37 +#define GL_UNIFORM_BUFFER 0x8A11 +#define GL_UNIFORM_BUFFER_BINDING 0x8A28 +#define GL_UNIFORM_BUFFER_START 0x8A29 +#define GL_UNIFORM_BUFFER_SIZE 0x8A2A +#define GL_MAX_VERTEX_UNIFORM_BLOCKS 0x8A2B +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS 0x8A2C +#define GL_MAX_FRAGMENT_UNIFORM_BLOCKS 0x8A2D +#define GL_MAX_COMBINED_UNIFORM_BLOCKS 0x8A2E +#define GL_MAX_UNIFORM_BUFFER_BINDINGS 0x8A2F +#define GL_MAX_UNIFORM_BLOCK_SIZE 0x8A30 +#define GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS 0x8A31 +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS 0x8A32 +#define GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS 0x8A33 +#define GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT 0x8A34 +#define GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH 0x8A35 +#define GL_ACTIVE_UNIFORM_BLOCKS 0x8A36 +#define GL_UNIFORM_TYPE 0x8A37 +#define GL_UNIFORM_SIZE 0x8A38 +#define GL_UNIFORM_NAME_LENGTH 0x8A39 +#define GL_UNIFORM_BLOCK_INDEX 0x8A3A +#define GL_UNIFORM_OFFSET 0x8A3B +#define GL_UNIFORM_ARRAY_STRIDE 0x8A3C +#define GL_UNIFORM_MATRIX_STRIDE 0x8A3D +#define GL_UNIFORM_IS_ROW_MAJOR 0x8A3E +#define GL_UNIFORM_BLOCK_BINDING 0x8A3F +#define GL_UNIFORM_BLOCK_DATA_SIZE 0x8A40 +#define GL_UNIFORM_BLOCK_NAME_LENGTH 0x8A41 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS 0x8A42 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES 0x8A43 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER 0x8A44 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER 0x8A45 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER 0x8A46 +#define GL_INVALID_INDEX 0xFFFFFFFFu +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount); +typedef void (APIENTRYP PFNGLTEXBUFFERPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXPROC) (GLuint index); +typedef void (APIENTRYP PFNGLCOPYBUFFERSUBDATAPROC) (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLGETUNIFORMINDICESPROC) (GLuint program, GLsizei uniformCount, const GLchar *const*uniformNames, GLuint *uniformIndices); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMSIVPROC) (GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMNAMEPROC) (GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); +typedef GLuint (APIENTRYP PFNGLGETUNIFORMBLOCKINDEXPROC) (GLuint program, const GLchar *uniformBlockName); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKIVPROC) (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC) (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); +typedef void (APIENTRYP PFNGLUNIFORMBLOCKBINDINGPROC) (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstanced (GLenum mode, GLint first, GLsizei count, GLsizei instancecount); +GLAPI void APIENTRY glDrawElementsInstanced (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount); +GLAPI void APIENTRY glTexBuffer (GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glPrimitiveRestartIndex (GLuint index); +GLAPI void APIENTRY glCopyBufferSubData (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glGetUniformIndices (GLuint program, GLsizei uniformCount, const GLchar *const*uniformNames, GLuint *uniformIndices); +GLAPI void APIENTRY glGetActiveUniformsiv (GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetActiveUniformName (GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); +GLAPI GLuint APIENTRY glGetUniformBlockIndex (GLuint program, const GLchar *uniformBlockName); +GLAPI void APIENTRY glGetActiveUniformBlockiv (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetActiveUniformBlockName (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); +GLAPI void APIENTRY glUniformBlockBinding (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); +#endif +#endif /* GL_VERSION_3_1 */ + +#ifndef GL_VERSION_3_2 +#define GL_VERSION_3_2 1 +typedef struct __GLsync *GLsync; +typedef khronos_uint64_t GLuint64; +typedef khronos_int64_t GLint64; +#define GL_CONTEXT_CORE_PROFILE_BIT 0x00000001 +#define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x00000002 +#define GL_LINES_ADJACENCY 0x000A +#define GL_LINE_STRIP_ADJACENCY 0x000B +#define GL_TRIANGLES_ADJACENCY 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY 0x000D +#define GL_PROGRAM_POINT_SIZE 0x8642 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS 0x8DA8 +#define GL_GEOMETRY_SHADER 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT 0x8916 +#define GL_GEOMETRY_INPUT_TYPE 0x8917 +#define GL_GEOMETRY_OUTPUT_TYPE 0x8918 +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS 0x8DE1 +#define GL_MAX_VERTEX_OUTPUT_COMPONENTS 0x9122 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS 0x9124 +#define GL_MAX_FRAGMENT_INPUT_COMPONENTS 0x9125 +#define GL_CONTEXT_PROFILE_MASK 0x9126 +#define GL_DEPTH_CLAMP 0x864F +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION 0x8E4D +#define GL_LAST_VERTEX_CONVENTION 0x8E4E +#define GL_PROVOKING_VERTEX 0x8E4F +#define GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F +#define GL_MAX_SERVER_WAIT_TIMEOUT 0x9111 +#define GL_OBJECT_TYPE 0x9112 +#define GL_SYNC_CONDITION 0x9113 +#define GL_SYNC_STATUS 0x9114 +#define GL_SYNC_FLAGS 0x9115 +#define GL_SYNC_FENCE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE 0x9117 +#define GL_UNSIGNALED 0x9118 +#define GL_SIGNALED 0x9119 +#define GL_ALREADY_SIGNALED 0x911A +#define GL_TIMEOUT_EXPIRED 0x911B +#define GL_CONDITION_SATISFIED 0x911C +#define GL_WAIT_FAILED 0x911D +#define GL_TIMEOUT_IGNORED 0xFFFFFFFFFFFFFFFFull +#define GL_SYNC_FLUSH_COMMANDS_BIT 0x00000001 +#define GL_SAMPLE_POSITION 0x8E50 +#define GL_SAMPLE_MASK 0x8E51 +#define GL_SAMPLE_MASK_VALUE 0x8E52 +#define GL_MAX_SAMPLE_MASK_WORDS 0x8E59 +#define GL_TEXTURE_2D_MULTISAMPLE 0x9100 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE 0x9101 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9103 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE 0x9104 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY 0x9105 +#define GL_TEXTURE_SAMPLES 0x9106 +#define GL_TEXTURE_FIXED_SAMPLE_LOCATIONS 0x9107 +#define GL_SAMPLER_2D_MULTISAMPLE 0x9108 +#define GL_INT_SAMPLER_2D_MULTISAMPLE 0x9109 +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE 0x910A +#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910B +#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910C +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910D +#define GL_MAX_COLOR_TEXTURE_SAMPLES 0x910E +#define GL_MAX_DEPTH_TEXTURE_SAMPLES 0x910F +#define GL_MAX_INTEGER_SAMPLES 0x9110 +typedef void (APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +typedef void (APIENTRYP PFNGLPROVOKINGVERTEXPROC) (GLenum mode); +typedef GLsync (APIENTRYP PFNGLFENCESYNCPROC) (GLenum condition, GLbitfield flags); +typedef GLboolean (APIENTRYP PFNGLISSYNCPROC) (GLsync sync); +typedef void (APIENTRYP PFNGLDELETESYNCPROC) (GLsync sync); +typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (APIENTRYP PFNGLWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (APIENTRYP PFNGLGETINTEGER64VPROC) (GLenum pname, GLint64 *data); +typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC) (GLenum target, GLuint index, GLint64 *data); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC) (GLenum target, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVPROC) (GLenum pname, GLuint index, GLfloat *val); +typedef void (APIENTRYP PFNGLSAMPLEMASKIPROC) (GLuint maskNumber, GLbitfield mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawElementsBaseVertex (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GLAPI void APIENTRY glDrawRangeElementsBaseVertex (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GLAPI void APIENTRY glDrawElementsInstancedBaseVertex (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +GLAPI void APIENTRY glMultiDrawElementsBaseVertex (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +GLAPI void APIENTRY glProvokingVertex (GLenum mode); +GLAPI GLsync APIENTRY glFenceSync (GLenum condition, GLbitfield flags); +GLAPI GLboolean APIENTRY glIsSync (GLsync sync); +GLAPI void APIENTRY glDeleteSync (GLsync sync); +GLAPI GLenum APIENTRY glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI void APIENTRY glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI void APIENTRY glGetInteger64v (GLenum pname, GLint64 *data); +GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +GLAPI void APIENTRY glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data); +GLAPI void APIENTRY glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glFramebufferTexture (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glTexImage2DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTexImage3DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glGetMultisamplefv (GLenum pname, GLuint index, GLfloat *val); +GLAPI void APIENTRY glSampleMaski (GLuint maskNumber, GLbitfield mask); +#endif +#endif /* GL_VERSION_3_2 */ + +#ifndef GL_VERSION_3_3 +#define GL_VERSION_3_3 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR 0x88FE +#define GL_SRC1_COLOR 0x88F9 +#define GL_ONE_MINUS_SRC1_COLOR 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA 0x88FB +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS 0x88FC +#define GL_ANY_SAMPLES_PASSED 0x8C2F +#define GL_SAMPLER_BINDING 0x8919 +#define GL_RGB10_A2UI 0x906F +#define GL_TEXTURE_SWIZZLE_R 0x8E42 +#define GL_TEXTURE_SWIZZLE_G 0x8E43 +#define GL_TEXTURE_SWIZZLE_B 0x8E44 +#define GL_TEXTURE_SWIZZLE_A 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA 0x8E46 +#define GL_TIME_ELAPSED 0x88BF +#define GL_TIMESTAMP 0x8E28 +#define GL_INT_2_10_10_10_REV 0x8D9F +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDPROC) (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATAINDEXPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGENSAMPLERSPROC) (GLsizei count, GLuint *samplers); +typedef void (APIENTRYP PFNGLDELETESAMPLERSPROC) (GLsizei count, const GLuint *samplers); +typedef GLboolean (APIENTRYP PFNGLISSAMPLERPROC) (GLuint sampler); +typedef void (APIENTRYP PFNGLBINDSAMPLERPROC) (GLuint unit, GLuint sampler); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIPROC) (GLuint sampler, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFPROC) (GLuint sampler, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLQUERYCOUNTERPROC) (GLuint id, GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VPROC) (GLuint id, GLenum pname, GLuint64 *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORPROC) (GLuint index, GLuint divisor); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP2UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP2UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP3UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP3UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXP4UIPROC) (GLenum type, GLuint value); +typedef void (APIENTRYP PFNGLVERTEXP4UIVPROC) (GLenum type, const GLuint *value); +typedef void (APIENTRYP PFNGLTEXCOORDP1UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP1UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP2UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP2UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP3UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP3UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLTEXCOORDP4UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLTEXCOORDP4UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIVPROC) (GLenum texture, GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLNORMALP3UIPROC) (GLenum type, GLuint coords); +typedef void (APIENTRYP PFNGLNORMALP3UIVPROC) (GLenum type, const GLuint *coords); +typedef void (APIENTRYP PFNGLCOLORP3UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLCOLORP3UIVPROC) (GLenum type, const GLuint *color); +typedef void (APIENTRYP PFNGLCOLORP4UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLCOLORP4UIVPROC) (GLenum type, const GLuint *color); +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIPROC) (GLenum type, GLuint color); +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIVPROC) (GLenum type, const GLuint *color); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindFragDataLocationIndexed (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataIndex (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGenSamplers (GLsizei count, GLuint *samplers); +GLAPI void APIENTRY glDeleteSamplers (GLsizei count, const GLuint *samplers); +GLAPI GLboolean APIENTRY glIsSampler (GLuint sampler); +GLAPI void APIENTRY glBindSampler (GLuint unit, GLuint sampler); +GLAPI void APIENTRY glSamplerParameteri (GLuint sampler, GLenum pname, GLint param); +GLAPI void APIENTRY glSamplerParameteriv (GLuint sampler, GLenum pname, const GLint *param); +GLAPI void APIENTRY glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param); +GLAPI void APIENTRY glSamplerParameterfv (GLuint sampler, GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glSamplerParameterIiv (GLuint sampler, GLenum pname, const GLint *param); +GLAPI void APIENTRY glSamplerParameterIuiv (GLuint sampler, GLenum pname, const GLuint *param); +GLAPI void APIENTRY glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSamplerParameterIiv (GLuint sampler, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetSamplerParameterIuiv (GLuint sampler, GLenum pname, GLuint *params); +GLAPI void APIENTRY glQueryCounter (GLuint id, GLenum target); +GLAPI void APIENTRY glGetQueryObjecti64v (GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetQueryObjectui64v (GLuint id, GLenum pname, GLuint64 *params); +GLAPI void APIENTRY glVertexAttribDivisor (GLuint index, GLuint divisor); +GLAPI void APIENTRY glVertexAttribP1ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP1uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP2ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP2uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP3ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP3uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexAttribP4ui (GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI void APIENTRY glVertexAttribP4uiv (GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI void APIENTRY glVertexP2ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP2uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glVertexP3ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP3uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glVertexP4ui (GLenum type, GLuint value); +GLAPI void APIENTRY glVertexP4uiv (GLenum type, const GLuint *value); +GLAPI void APIENTRY glTexCoordP1ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP1uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP2ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP2uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP3ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP3uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glTexCoordP4ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glTexCoordP4uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP1ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP1uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP2ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP2uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP3ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP3uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glMultiTexCoordP4ui (GLenum texture, GLenum type, GLuint coords); +GLAPI void APIENTRY glMultiTexCoordP4uiv (GLenum texture, GLenum type, const GLuint *coords); +GLAPI void APIENTRY glNormalP3ui (GLenum type, GLuint coords); +GLAPI void APIENTRY glNormalP3uiv (GLenum type, const GLuint *coords); +GLAPI void APIENTRY glColorP3ui (GLenum type, GLuint color); +GLAPI void APIENTRY glColorP3uiv (GLenum type, const GLuint *color); +GLAPI void APIENTRY glColorP4ui (GLenum type, GLuint color); +GLAPI void APIENTRY glColorP4uiv (GLenum type, const GLuint *color); +GLAPI void APIENTRY glSecondaryColorP3ui (GLenum type, GLuint color); +GLAPI void APIENTRY glSecondaryColorP3uiv (GLenum type, const GLuint *color); +#endif +#endif /* GL_VERSION_3_3 */ + +#ifndef GL_VERSION_4_0 +#define GL_VERSION_4_0 1 +#define GL_SAMPLE_SHADING 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE 0x8C37 +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5F +#define GL_TEXTURE_CUBE_MAP_ARRAY 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY 0x900A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY 0x900B +#define GL_SAMPLER_CUBE_MAP_ARRAY 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY 0x900F +#define GL_DRAW_INDIRECT_BUFFER 0x8F3F +#define GL_DRAW_INDIRECT_BUFFER_BINDING 0x8F43 +#define GL_GEOMETRY_SHADER_INVOCATIONS 0x887F +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS 0x8E5A +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET 0x8E5C +#define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS 0x8E5D +#define GL_MAX_VERTEX_STREAMS 0x8E71 +#define GL_DOUBLE_VEC2 0x8FFC +#define GL_DOUBLE_VEC3 0x8FFD +#define GL_DOUBLE_VEC4 0x8FFE +#define GL_DOUBLE_MAT2 0x8F46 +#define GL_DOUBLE_MAT3 0x8F47 +#define GL_DOUBLE_MAT4 0x8F48 +#define GL_DOUBLE_MAT2x3 0x8F49 +#define GL_DOUBLE_MAT2x4 0x8F4A +#define GL_DOUBLE_MAT3x2 0x8F4B +#define GL_DOUBLE_MAT3x4 0x8F4C +#define GL_DOUBLE_MAT4x2 0x8F4D +#define GL_DOUBLE_MAT4x3 0x8F4E +#define GL_ACTIVE_SUBROUTINES 0x8DE5 +#define GL_ACTIVE_SUBROUTINE_UNIFORMS 0x8DE6 +#define GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS 0x8E47 +#define GL_ACTIVE_SUBROUTINE_MAX_LENGTH 0x8E48 +#define GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH 0x8E49 +#define GL_MAX_SUBROUTINES 0x8DE7 +#define GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS 0x8DE8 +#define GL_NUM_COMPATIBLE_SUBROUTINES 0x8E4A +#define GL_COMPATIBLE_SUBROUTINES 0x8E4B +#define GL_PATCHES 0x000E +#define GL_PATCH_VERTICES 0x8E72 +#define GL_PATCH_DEFAULT_INNER_LEVEL 0x8E73 +#define GL_PATCH_DEFAULT_OUTER_LEVEL 0x8E74 +#define GL_TESS_CONTROL_OUTPUT_VERTICES 0x8E75 +#define GL_TESS_GEN_MODE 0x8E76 +#define GL_TESS_GEN_SPACING 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER 0x8E78 +#define GL_TESS_GEN_POINT_MODE 0x8E79 +#define GL_ISOLINES 0x8E7A +#define GL_FRACTIONAL_ODD 0x8E7B +#define GL_FRACTIONAL_EVEN 0x8E7C +#define GL_MAX_PATCH_VERTICES 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E1F +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER 0x84F0 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER 0x84F1 +#define GL_TESS_EVALUATION_SHADER 0x8E87 +#define GL_TESS_CONTROL_SHADER 0x8E88 +#define GL_TRANSFORM_FEEDBACK 0x8E22 +#define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED 0x8E23 +#define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE 0x8E24 +#define GL_TRANSFORM_FEEDBACK_BINDING 0x8E25 +#define GL_MAX_TRANSFORM_FEEDBACK_BUFFERS 0x8E70 +typedef void (APIENTRYP PFNGLMINSAMPLESHADINGPROC) (GLfloat value); +typedef void (APIENTRYP PFNGLBLENDEQUATIONIPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLBLENDFUNCIPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (APIENTRYP PFNGLDRAWARRAYSINDIRECTPROC) (GLenum mode, const void *indirect); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const void *indirect); +typedef void (APIENTRYP PFNGLUNIFORM1DPROC) (GLint location, GLdouble x); +typedef void (APIENTRYP PFNGLUNIFORM2DPROC) (GLint location, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLUNIFORM3DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLUNIFORM4DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLUNIFORM1DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM2DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM3DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORM4DVPROC) (GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLGETUNIFORMDVPROC) (GLuint program, GLint location, GLdouble *params); +typedef GLint (APIENTRYP PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC) (GLuint program, GLenum shadertype, const GLchar *name); +typedef GLuint (APIENTRYP PFNGLGETSUBROUTINEINDEXPROC) (GLuint program, GLenum shadertype, const GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC) (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINENAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORMSUBROUTINESUIVPROC) (GLenum shadertype, GLsizei count, const GLuint *indices); +typedef void (APIENTRYP PFNGLGETUNIFORMSUBROUTINEUIVPROC) (GLenum shadertype, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTAGEIVPROC) (GLuint program, GLenum shadertype, GLenum pname, GLint *values); +typedef void (APIENTRYP PFNGLPATCHPARAMETERIPROC) (GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLPATCHPARAMETERFVPROC) (GLenum pname, const GLfloat *values); +typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSPROC) (GLsizei n, const GLuint *ids); +typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKPROC) (GLuint id); +typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKPROC) (void); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKPROC) (GLenum mode, GLuint id); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC) (GLenum mode, GLuint id, GLuint stream); +typedef void (APIENTRYP PFNGLBEGINQUERYINDEXEDPROC) (GLenum target, GLuint index, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYINDEXEDPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLGETQUERYINDEXEDIVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMinSampleShading (GLfloat value); +GLAPI void APIENTRY glBlendEquationi (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparatei (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glBlendFunci (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparatei (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GLAPI void APIENTRY glDrawArraysIndirect (GLenum mode, const void *indirect); +GLAPI void APIENTRY glDrawElementsIndirect (GLenum mode, GLenum type, const void *indirect); +GLAPI void APIENTRY glUniform1d (GLint location, GLdouble x); +GLAPI void APIENTRY glUniform2d (GLint location, GLdouble x, GLdouble y); +GLAPI void APIENTRY glUniform3d (GLint location, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glUniform4d (GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glUniform1dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform2dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform3dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniform4dv (GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2x3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix2x4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3x2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix3x4dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4x2dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glUniformMatrix4x3dv (GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glGetUniformdv (GLuint program, GLint location, GLdouble *params); +GLAPI GLint APIENTRY glGetSubroutineUniformLocation (GLuint program, GLenum shadertype, const GLchar *name); +GLAPI GLuint APIENTRY glGetSubroutineIndex (GLuint program, GLenum shadertype, const GLchar *name); +GLAPI void APIENTRY glGetActiveSubroutineUniformiv (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values); +GLAPI void APIENTRY glGetActiveSubroutineUniformName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glGetActiveSubroutineName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glUniformSubroutinesuiv (GLenum shadertype, GLsizei count, const GLuint *indices); +GLAPI void APIENTRY glGetUniformSubroutineuiv (GLenum shadertype, GLint location, GLuint *params); +GLAPI void APIENTRY glGetProgramStageiv (GLuint program, GLenum shadertype, GLenum pname, GLint *values); +GLAPI void APIENTRY glPatchParameteri (GLenum pname, GLint value); +GLAPI void APIENTRY glPatchParameterfv (GLenum pname, const GLfloat *values); +GLAPI void APIENTRY glBindTransformFeedback (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteTransformFeedbacks (GLsizei n, const GLuint *ids); +GLAPI void APIENTRY glGenTransformFeedbacks (GLsizei n, GLuint *ids); +GLAPI GLboolean APIENTRY glIsTransformFeedback (GLuint id); +GLAPI void APIENTRY glPauseTransformFeedback (void); +GLAPI void APIENTRY glResumeTransformFeedback (void); +GLAPI void APIENTRY glDrawTransformFeedback (GLenum mode, GLuint id); +GLAPI void APIENTRY glDrawTransformFeedbackStream (GLenum mode, GLuint id, GLuint stream); +GLAPI void APIENTRY glBeginQueryIndexed (GLenum target, GLuint index, GLuint id); +GLAPI void APIENTRY glEndQueryIndexed (GLenum target, GLuint index); +GLAPI void APIENTRY glGetQueryIndexediv (GLenum target, GLuint index, GLenum pname, GLint *params); +#endif +#endif /* GL_VERSION_4_0 */ + +#ifndef GL_VERSION_4_1 +#define GL_VERSION_4_1 1 +#define GL_FIXED 0x140C +#define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B +#define GL_LOW_FLOAT 0x8DF0 +#define GL_MEDIUM_FLOAT 0x8DF1 +#define GL_HIGH_FLOAT 0x8DF2 +#define GL_LOW_INT 0x8DF3 +#define GL_MEDIUM_INT 0x8DF4 +#define GL_HIGH_INT 0x8DF5 +#define GL_SHADER_COMPILER 0x8DFA +#define GL_SHADER_BINARY_FORMATS 0x8DF8 +#define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 +#define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB +#define GL_MAX_VARYING_VECTORS 0x8DFC +#define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD +#define GL_RGB565 0x8D62 +#define GL_PROGRAM_BINARY_RETRIEVABLE_HINT 0x8257 +#define GL_PROGRAM_BINARY_LENGTH 0x8741 +#define GL_NUM_PROGRAM_BINARY_FORMATS 0x87FE +#define GL_PROGRAM_BINARY_FORMATS 0x87FF +#define GL_VERTEX_SHADER_BIT 0x00000001 +#define GL_FRAGMENT_SHADER_BIT 0x00000002 +#define GL_GEOMETRY_SHADER_BIT 0x00000004 +#define GL_TESS_CONTROL_SHADER_BIT 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT 0x00000010 +#define GL_ALL_SHADER_BITS 0xFFFFFFFF +#define GL_PROGRAM_SEPARABLE 0x8258 +#define GL_ACTIVE_PROGRAM 0x8259 +#define GL_PROGRAM_PIPELINE_BINDING 0x825A +#define GL_MAX_VIEWPORTS 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE 0x825D +#define GL_LAYER_PROVOKING_VERTEX 0x825E +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX 0x825F +#define GL_UNDEFINED_VERTEX 0x8260 +typedef void (APIENTRYP PFNGLRELEASESHADERCOMPILERPROC) (void); +typedef void (APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +typedef void (APIENTRYP PFNGLDEPTHRANGEFPROC) (GLfloat n, GLfloat f); +typedef void (APIENTRYP PFNGLCLEARDEPTHFPROC) (GLfloat d); +typedef void (APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +typedef void (APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIPROC) (GLuint program, GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLUSEPROGRAMSTAGESPROC) (GLuint pipeline, GLbitfield stages, GLuint program); +typedef void (APIENTRYP PFNGLACTIVESHADERPROGRAMPROC) (GLuint pipeline, GLuint program); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMVPROC) (GLenum type, GLsizei count, const GLchar *const*strings); +typedef void (APIENTRYP PFNGLBINDPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLDELETEPROGRAMPIPELINESPROC) (GLsizei n, const GLuint *pipelines); +typedef void (APIENTRYP PFNGLGENPROGRAMPIPELINESPROC) (GLsizei n, GLuint *pipelines); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEIVPROC) (GLuint pipeline, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IPROC) (GLuint program, GLint location, GLint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DPROC) (GLuint program, GLint location, GLdouble v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIPROC) (GLuint program, GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DPROC) (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLVIEWPORTARRAYVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLSCISSORARRAYVPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (APIENTRYP PFNGLSCISSORINDEXEDPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLSCISSORINDEXEDVPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEARRAYVPROC) (GLuint first, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEINDEXEDPROC) (GLuint index, GLdouble n, GLdouble f); +typedef void (APIENTRYP PFNGLGETFLOATI_VPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (APIENTRYP PFNGLGETDOUBLEI_VPROC) (GLenum target, GLuint index, GLdouble *data); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReleaseShaderCompiler (void); +GLAPI void APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +GLAPI void APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +GLAPI void APIENTRY glDepthRangef (GLfloat n, GLfloat f); +GLAPI void APIENTRY glClearDepthf (GLfloat d); +GLAPI void APIENTRY glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +GLAPI void APIENTRY glProgramBinary (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); +GLAPI void APIENTRY glProgramParameteri (GLuint program, GLenum pname, GLint value); +GLAPI void APIENTRY glUseProgramStages (GLuint pipeline, GLbitfield stages, GLuint program); +GLAPI void APIENTRY glActiveShaderProgram (GLuint pipeline, GLuint program); +GLAPI GLuint APIENTRY glCreateShaderProgramv (GLenum type, GLsizei count, const GLchar *const*strings); +GLAPI void APIENTRY glBindProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glDeleteProgramPipelines (GLsizei n, const GLuint *pipelines); +GLAPI void APIENTRY glGenProgramPipelines (GLsizei n, GLuint *pipelines); +GLAPI GLboolean APIENTRY glIsProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glGetProgramPipelineiv (GLuint pipeline, GLenum pname, GLint *params); +GLAPI void APIENTRY glProgramUniform1i (GLuint program, GLint location, GLint v0); +GLAPI void APIENTRY glProgramUniform1iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform1f (GLuint program, GLint location, GLfloat v0); +GLAPI void APIENTRY glProgramUniform1fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform1d (GLuint program, GLint location, GLdouble v0); +GLAPI void APIENTRY glProgramUniform1dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform1ui (GLuint program, GLint location, GLuint v0); +GLAPI void APIENTRY glProgramUniform1uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform2i (GLuint program, GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glProgramUniform2iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform2f (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glProgramUniform2fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform2d (GLuint program, GLint location, GLdouble v0, GLdouble v1); +GLAPI void APIENTRY glProgramUniform2dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform2ui (GLuint program, GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glProgramUniform2uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform3i (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glProgramUniform3iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform3f (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glProgramUniform3fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform3d (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2); +GLAPI void APIENTRY glProgramUniform3dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform3ui (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glProgramUniform3uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform4i (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glProgramUniform4iv (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform4f (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glProgramUniform4fv (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform4d (GLuint program, GLint location, GLdouble v0, GLdouble v1, GLdouble v2, GLdouble v3); +GLAPI void APIENTRY glProgramUniform4dv (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform4ui (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glProgramUniform4uiv (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniformMatrix2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3fv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3dv (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glValidateProgramPipeline (GLuint pipeline); +GLAPI void APIENTRY glGetProgramPipelineInfoLog (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI void APIENTRY glVertexAttribL1d (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttribL2d (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttribL3d (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttribL4d (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttribL1dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL2dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL3dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL4dv (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribLPointer (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribLdv (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glViewportArrayv (GLuint first, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glViewportIndexedf (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GLAPI void APIENTRY glViewportIndexedfv (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glScissorArrayv (GLuint first, GLsizei count, const GLint *v); +GLAPI void APIENTRY glScissorIndexed (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GLAPI void APIENTRY glScissorIndexedv (GLuint index, const GLint *v); +GLAPI void APIENTRY glDepthRangeArrayv (GLuint first, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glDepthRangeIndexed (GLuint index, GLdouble n, GLdouble f); +GLAPI void APIENTRY glGetFloati_v (GLenum target, GLuint index, GLfloat *data); +GLAPI void APIENTRY glGetDoublei_v (GLenum target, GLuint index, GLdouble *data); +#endif +#endif /* GL_VERSION_4_1 */ + +#ifndef GL_VERSION_4_2 +#define GL_VERSION_4_2 1 +#define GL_COPY_READ_BUFFER_BINDING 0x8F36 +#define GL_COPY_WRITE_BUFFER_BINDING 0x8F37 +#define GL_TRANSFORM_FEEDBACK_ACTIVE 0x8E24 +#define GL_TRANSFORM_FEEDBACK_PAUSED 0x8E23 +#define GL_UNPACK_COMPRESSED_BLOCK_WIDTH 0x9127 +#define GL_UNPACK_COMPRESSED_BLOCK_HEIGHT 0x9128 +#define GL_UNPACK_COMPRESSED_BLOCK_DEPTH 0x9129 +#define GL_UNPACK_COMPRESSED_BLOCK_SIZE 0x912A +#define GL_PACK_COMPRESSED_BLOCK_WIDTH 0x912B +#define GL_PACK_COMPRESSED_BLOCK_HEIGHT 0x912C +#define GL_PACK_COMPRESSED_BLOCK_DEPTH 0x912D +#define GL_PACK_COMPRESSED_BLOCK_SIZE 0x912E +#define GL_NUM_SAMPLE_COUNTS 0x9380 +#define GL_MIN_MAP_BUFFER_ALIGNMENT 0x90BC +#define GL_ATOMIC_COUNTER_BUFFER 0x92C0 +#define GL_ATOMIC_COUNTER_BUFFER_BINDING 0x92C1 +#define GL_ATOMIC_COUNTER_BUFFER_START 0x92C2 +#define GL_ATOMIC_COUNTER_BUFFER_SIZE 0x92C3 +#define GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE 0x92C4 +#define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS 0x92C5 +#define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES 0x92C6 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER 0x92C7 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER 0x92C8 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER 0x92C9 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER 0x92CA +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER 0x92CB +#define GL_MAX_VERTEX_ATOMIC_COUNTER_BUFFERS 0x92CC +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS 0x92CE +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS 0x92CF +#define GL_MAX_FRAGMENT_ATOMIC_COUNTER_BUFFERS 0x92D0 +#define GL_MAX_COMBINED_ATOMIC_COUNTER_BUFFERS 0x92D1 +#define GL_MAX_VERTEX_ATOMIC_COUNTERS 0x92D2 +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS 0x92D4 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS 0x92D5 +#define GL_MAX_FRAGMENT_ATOMIC_COUNTERS 0x92D6 +#define GL_MAX_COMBINED_ATOMIC_COUNTERS 0x92D7 +#define GL_MAX_ATOMIC_COUNTER_BUFFER_SIZE 0x92D8 +#define GL_MAX_ATOMIC_COUNTER_BUFFER_BINDINGS 0x92DC +#define GL_ACTIVE_ATOMIC_COUNTER_BUFFERS 0x92D9 +#define GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX 0x92DA +#define GL_UNSIGNED_INT_ATOMIC_COUNTER 0x92DB +#define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT 0x00000001 +#define GL_ELEMENT_ARRAY_BARRIER_BIT 0x00000002 +#define GL_UNIFORM_BARRIER_BIT 0x00000004 +#define GL_TEXTURE_FETCH_BARRIER_BIT 0x00000008 +#define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT 0x00000020 +#define GL_COMMAND_BARRIER_BIT 0x00000040 +#define GL_PIXEL_BUFFER_BARRIER_BIT 0x00000080 +#define GL_TEXTURE_UPDATE_BARRIER_BIT 0x00000100 +#define GL_BUFFER_UPDATE_BARRIER_BIT 0x00000200 +#define GL_FRAMEBUFFER_BARRIER_BIT 0x00000400 +#define GL_TRANSFORM_FEEDBACK_BARRIER_BIT 0x00000800 +#define GL_ATOMIC_COUNTER_BARRIER_BIT 0x00001000 +#define GL_ALL_BARRIER_BITS 0xFFFFFFFF +#define GL_MAX_IMAGE_UNITS 0x8F38 +#define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS 0x8F39 +#define GL_IMAGE_BINDING_NAME 0x8F3A +#define GL_IMAGE_BINDING_LEVEL 0x8F3B +#define GL_IMAGE_BINDING_LAYERED 0x8F3C +#define GL_IMAGE_BINDING_LAYER 0x8F3D +#define GL_IMAGE_BINDING_ACCESS 0x8F3E +#define GL_IMAGE_1D 0x904C +#define GL_IMAGE_2D 0x904D +#define GL_IMAGE_3D 0x904E +#define GL_IMAGE_2D_RECT 0x904F +#define GL_IMAGE_CUBE 0x9050 +#define GL_IMAGE_BUFFER 0x9051 +#define GL_IMAGE_1D_ARRAY 0x9052 +#define GL_IMAGE_2D_ARRAY 0x9053 +#define GL_IMAGE_CUBE_MAP_ARRAY 0x9054 +#define GL_IMAGE_2D_MULTISAMPLE 0x9055 +#define GL_IMAGE_2D_MULTISAMPLE_ARRAY 0x9056 +#define GL_INT_IMAGE_1D 0x9057 +#define GL_INT_IMAGE_2D 0x9058 +#define GL_INT_IMAGE_3D 0x9059 +#define GL_INT_IMAGE_2D_RECT 0x905A +#define GL_INT_IMAGE_CUBE 0x905B +#define GL_INT_IMAGE_BUFFER 0x905C +#define GL_INT_IMAGE_1D_ARRAY 0x905D +#define GL_INT_IMAGE_2D_ARRAY 0x905E +#define GL_INT_IMAGE_CUBE_MAP_ARRAY 0x905F +#define GL_INT_IMAGE_2D_MULTISAMPLE 0x9060 +#define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY 0x9061 +#define GL_UNSIGNED_INT_IMAGE_1D 0x9062 +#define GL_UNSIGNED_INT_IMAGE_2D 0x9063 +#define GL_UNSIGNED_INT_IMAGE_3D 0x9064 +#define GL_UNSIGNED_INT_IMAGE_2D_RECT 0x9065 +#define GL_UNSIGNED_INT_IMAGE_CUBE 0x9066 +#define GL_UNSIGNED_INT_IMAGE_BUFFER 0x9067 +#define GL_UNSIGNED_INT_IMAGE_1D_ARRAY 0x9068 +#define GL_UNSIGNED_INT_IMAGE_2D_ARRAY 0x9069 +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY 0x906A +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE 0x906B +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY 0x906C +#define GL_MAX_IMAGE_SAMPLES 0x906D +#define GL_IMAGE_BINDING_FORMAT 0x906E +#define GL_IMAGE_FORMAT_COMPATIBILITY_TYPE 0x90C7 +#define GL_IMAGE_FORMAT_COMPATIBILITY_BY_SIZE 0x90C8 +#define GL_IMAGE_FORMAT_COMPATIBILITY_BY_CLASS 0x90C9 +#define GL_MAX_VERTEX_IMAGE_UNIFORMS 0x90CA +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS 0x90CC +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS 0x90CD +#define GL_MAX_FRAGMENT_IMAGE_UNIFORMS 0x90CE +#define GL_MAX_COMBINED_IMAGE_UNIFORMS 0x90CF +#define GL_COMPRESSED_RGBA_BPTC_UNORM 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT 0x8E8F +#define GL_TEXTURE_IMMUTABLE_FORMAT 0x912F +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +typedef void (APIENTRYP PFNGLGETINTERNALFORMATIVPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params); +typedef void (APIENTRYP PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC) (GLuint program, GLuint bufferIndex, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLBINDIMAGETEXTUREPROC) (GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format); +typedef void (APIENTRYP PFNGLMEMORYBARRIERPROC) (GLbitfield barriers); +typedef void (APIENTRYP PFNGLTEXSTORAGE1DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXSTORAGE2DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXSTORAGE3DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC) (GLenum mode, GLuint id, GLsizei instancecount); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC) (GLenum mode, GLuint id, GLuint stream, GLsizei instancecount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedBaseInstance (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +GLAPI void APIENTRY glDrawElementsInstancedBaseInstance (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +GLAPI void APIENTRY glDrawElementsInstancedBaseVertexBaseInstance (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +GLAPI void APIENTRY glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params); +GLAPI void APIENTRY glGetActiveAtomicCounterBufferiv (GLuint program, GLuint bufferIndex, GLenum pname, GLint *params); +GLAPI void APIENTRY glBindImageTexture (GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format); +GLAPI void APIENTRY glMemoryBarrier (GLbitfield barriers); +GLAPI void APIENTRY glTexStorage1D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTexStorage2D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTexStorage3D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glDrawTransformFeedbackInstanced (GLenum mode, GLuint id, GLsizei instancecount); +GLAPI void APIENTRY glDrawTransformFeedbackStreamInstanced (GLenum mode, GLuint id, GLuint stream, GLsizei instancecount); +#endif +#endif /* GL_VERSION_4_2 */ + +#ifndef GL_VERSION_4_3 +#define GL_VERSION_4_3 1 +typedef void (APIENTRY *GLDEBUGPROC)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +#define GL_NUM_SHADING_LANGUAGE_VERSIONS 0x82E9 +#define GL_VERTEX_ATTRIB_ARRAY_LONG 0x874E +#define GL_COMPRESSED_RGB8_ETC2 0x9274 +#define GL_COMPRESSED_SRGB8_ETC2 0x9275 +#define GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 0x9276 +#define GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 0x9277 +#define GL_COMPRESSED_RGBA8_ETC2_EAC 0x9278 +#define GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC 0x9279 +#define GL_COMPRESSED_R11_EAC 0x9270 +#define GL_COMPRESSED_SIGNED_R11_EAC 0x9271 +#define GL_COMPRESSED_RG11_EAC 0x9272 +#define GL_COMPRESSED_SIGNED_RG11_EAC 0x9273 +#define GL_PRIMITIVE_RESTART_FIXED_INDEX 0x8D69 +#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE 0x8D6A +#define GL_MAX_ELEMENT_INDEX 0x8D6B +#define GL_COMPUTE_SHADER 0x91B9 +#define GL_MAX_COMPUTE_UNIFORM_BLOCKS 0x91BB +#define GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS 0x91BC +#define GL_MAX_COMPUTE_IMAGE_UNIFORMS 0x91BD +#define GL_MAX_COMPUTE_SHARED_MEMORY_SIZE 0x8262 +#define GL_MAX_COMPUTE_UNIFORM_COMPONENTS 0x8263 +#define GL_MAX_COMPUTE_ATOMIC_COUNTER_BUFFERS 0x8264 +#define GL_MAX_COMPUTE_ATOMIC_COUNTERS 0x8265 +#define GL_MAX_COMBINED_COMPUTE_UNIFORM_COMPONENTS 0x8266 +#define GL_MAX_COMPUTE_WORK_GROUP_INVOCATIONS 0x90EB +#define GL_MAX_COMPUTE_WORK_GROUP_COUNT 0x91BE +#define GL_MAX_COMPUTE_WORK_GROUP_SIZE 0x91BF +#define GL_COMPUTE_WORK_GROUP_SIZE 0x8267 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER 0x90EC +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER 0x90ED +#define GL_DISPATCH_INDIRECT_BUFFER 0x90EE +#define GL_DISPATCH_INDIRECT_BUFFER_BINDING 0x90EF +#define GL_COMPUTE_SHADER_BIT 0x00000020 +#define GL_DEBUG_OUTPUT_SYNCHRONOUS 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM 0x8245 +#define GL_DEBUG_SOURCE_API 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION 0x824A +#define GL_DEBUG_SOURCE_OTHER 0x824B +#define GL_DEBUG_TYPE_ERROR 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR 0x824E +#define GL_DEBUG_TYPE_PORTABILITY 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE 0x8250 +#define GL_DEBUG_TYPE_OTHER 0x8251 +#define GL_MAX_DEBUG_MESSAGE_LENGTH 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES 0x9145 +#define GL_DEBUG_SEVERITY_HIGH 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM 0x9147 +#define GL_DEBUG_SEVERITY_LOW 0x9148 +#define GL_DEBUG_TYPE_MARKER 0x8268 +#define GL_DEBUG_TYPE_PUSH_GROUP 0x8269 +#define GL_DEBUG_TYPE_POP_GROUP 0x826A +#define GL_DEBUG_SEVERITY_NOTIFICATION 0x826B +#define GL_MAX_DEBUG_GROUP_STACK_DEPTH 0x826C +#define GL_DEBUG_GROUP_STACK_DEPTH 0x826D +#define GL_BUFFER 0x82E0 +#define GL_SHADER 0x82E1 +#define GL_PROGRAM 0x82E2 +#define GL_QUERY 0x82E3 +#define GL_PROGRAM_PIPELINE 0x82E4 +#define GL_SAMPLER 0x82E6 +#define GL_MAX_LABEL_LENGTH 0x82E8 +#define GL_DEBUG_OUTPUT 0x92E0 +#define GL_CONTEXT_FLAG_DEBUG_BIT 0x00000002 +#define GL_MAX_UNIFORM_LOCATIONS 0x826E +#define GL_FRAMEBUFFER_DEFAULT_WIDTH 0x9310 +#define GL_FRAMEBUFFER_DEFAULT_HEIGHT 0x9311 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS 0x9312 +#define GL_FRAMEBUFFER_DEFAULT_SAMPLES 0x9313 +#define GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS 0x9314 +#define GL_MAX_FRAMEBUFFER_WIDTH 0x9315 +#define GL_MAX_FRAMEBUFFER_HEIGHT 0x9316 +#define GL_MAX_FRAMEBUFFER_LAYERS 0x9317 +#define GL_MAX_FRAMEBUFFER_SAMPLES 0x9318 +#define GL_INTERNALFORMAT_SUPPORTED 0x826F +#define GL_INTERNALFORMAT_PREFERRED 0x8270 +#define GL_INTERNALFORMAT_RED_SIZE 0x8271 +#define GL_INTERNALFORMAT_GREEN_SIZE 0x8272 +#define GL_INTERNALFORMAT_BLUE_SIZE 0x8273 +#define GL_INTERNALFORMAT_ALPHA_SIZE 0x8274 +#define GL_INTERNALFORMAT_DEPTH_SIZE 0x8275 +#define GL_INTERNALFORMAT_STENCIL_SIZE 0x8276 +#define GL_INTERNALFORMAT_SHARED_SIZE 0x8277 +#define GL_INTERNALFORMAT_RED_TYPE 0x8278 +#define GL_INTERNALFORMAT_GREEN_TYPE 0x8279 +#define GL_INTERNALFORMAT_BLUE_TYPE 0x827A +#define GL_INTERNALFORMAT_ALPHA_TYPE 0x827B +#define GL_INTERNALFORMAT_DEPTH_TYPE 0x827C +#define GL_INTERNALFORMAT_STENCIL_TYPE 0x827D +#define GL_MAX_WIDTH 0x827E +#define GL_MAX_HEIGHT 0x827F +#define GL_MAX_DEPTH 0x8280 +#define GL_MAX_LAYERS 0x8281 +#define GL_MAX_COMBINED_DIMENSIONS 0x8282 +#define GL_COLOR_COMPONENTS 0x8283 +#define GL_DEPTH_COMPONENTS 0x8284 +#define GL_STENCIL_COMPONENTS 0x8285 +#define GL_COLOR_RENDERABLE 0x8286 +#define GL_DEPTH_RENDERABLE 0x8287 +#define GL_STENCIL_RENDERABLE 0x8288 +#define GL_FRAMEBUFFER_RENDERABLE 0x8289 +#define GL_FRAMEBUFFER_RENDERABLE_LAYERED 0x828A +#define GL_FRAMEBUFFER_BLEND 0x828B +#define GL_READ_PIXELS 0x828C +#define GL_READ_PIXELS_FORMAT 0x828D +#define GL_READ_PIXELS_TYPE 0x828E +#define GL_TEXTURE_IMAGE_FORMAT 0x828F +#define GL_TEXTURE_IMAGE_TYPE 0x8290 +#define GL_GET_TEXTURE_IMAGE_FORMAT 0x8291 +#define GL_GET_TEXTURE_IMAGE_TYPE 0x8292 +#define GL_MIPMAP 0x8293 +#define GL_MANUAL_GENERATE_MIPMAP 0x8294 +#define GL_AUTO_GENERATE_MIPMAP 0x8295 +#define GL_COLOR_ENCODING 0x8296 +#define GL_SRGB_READ 0x8297 +#define GL_SRGB_WRITE 0x8298 +#define GL_FILTER 0x829A +#define GL_VERTEX_TEXTURE 0x829B +#define GL_TESS_CONTROL_TEXTURE 0x829C +#define GL_TESS_EVALUATION_TEXTURE 0x829D +#define GL_GEOMETRY_TEXTURE 0x829E +#define GL_FRAGMENT_TEXTURE 0x829F +#define GL_COMPUTE_TEXTURE 0x82A0 +#define GL_TEXTURE_SHADOW 0x82A1 +#define GL_TEXTURE_GATHER 0x82A2 +#define GL_TEXTURE_GATHER_SHADOW 0x82A3 +#define GL_SHADER_IMAGE_LOAD 0x82A4 +#define GL_SHADER_IMAGE_STORE 0x82A5 +#define GL_SHADER_IMAGE_ATOMIC 0x82A6 +#define GL_IMAGE_TEXEL_SIZE 0x82A7 +#define GL_IMAGE_COMPATIBILITY_CLASS 0x82A8 +#define GL_IMAGE_PIXEL_FORMAT 0x82A9 +#define GL_IMAGE_PIXEL_TYPE 0x82AA +#define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST 0x82AC +#define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST 0x82AD +#define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE 0x82AE +#define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE 0x82AF +#define GL_TEXTURE_COMPRESSED_BLOCK_WIDTH 0x82B1 +#define GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT 0x82B2 +#define GL_TEXTURE_COMPRESSED_BLOCK_SIZE 0x82B3 +#define GL_CLEAR_BUFFER 0x82B4 +#define GL_TEXTURE_VIEW 0x82B5 +#define GL_VIEW_COMPATIBILITY_CLASS 0x82B6 +#define GL_FULL_SUPPORT 0x82B7 +#define GL_CAVEAT_SUPPORT 0x82B8 +#define GL_IMAGE_CLASS_4_X_32 0x82B9 +#define GL_IMAGE_CLASS_2_X_32 0x82BA +#define GL_IMAGE_CLASS_1_X_32 0x82BB +#define GL_IMAGE_CLASS_4_X_16 0x82BC +#define GL_IMAGE_CLASS_2_X_16 0x82BD +#define GL_IMAGE_CLASS_1_X_16 0x82BE +#define GL_IMAGE_CLASS_4_X_8 0x82BF +#define GL_IMAGE_CLASS_2_X_8 0x82C0 +#define GL_IMAGE_CLASS_1_X_8 0x82C1 +#define GL_IMAGE_CLASS_11_11_10 0x82C2 +#define GL_IMAGE_CLASS_10_10_10_2 0x82C3 +#define GL_VIEW_CLASS_128_BITS 0x82C4 +#define GL_VIEW_CLASS_96_BITS 0x82C5 +#define GL_VIEW_CLASS_64_BITS 0x82C6 +#define GL_VIEW_CLASS_48_BITS 0x82C7 +#define GL_VIEW_CLASS_32_BITS 0x82C8 +#define GL_VIEW_CLASS_24_BITS 0x82C9 +#define GL_VIEW_CLASS_16_BITS 0x82CA +#define GL_VIEW_CLASS_8_BITS 0x82CB +#define GL_VIEW_CLASS_S3TC_DXT1_RGB 0x82CC +#define GL_VIEW_CLASS_S3TC_DXT1_RGBA 0x82CD +#define GL_VIEW_CLASS_S3TC_DXT3_RGBA 0x82CE +#define GL_VIEW_CLASS_S3TC_DXT5_RGBA 0x82CF +#define GL_VIEW_CLASS_RGTC1_RED 0x82D0 +#define GL_VIEW_CLASS_RGTC2_RG 0x82D1 +#define GL_VIEW_CLASS_BPTC_UNORM 0x82D2 +#define GL_VIEW_CLASS_BPTC_FLOAT 0x82D3 +#define GL_UNIFORM 0x92E1 +#define GL_UNIFORM_BLOCK 0x92E2 +#define GL_PROGRAM_INPUT 0x92E3 +#define GL_PROGRAM_OUTPUT 0x92E4 +#define GL_BUFFER_VARIABLE 0x92E5 +#define GL_SHADER_STORAGE_BLOCK 0x92E6 +#define GL_VERTEX_SUBROUTINE 0x92E8 +#define GL_TESS_CONTROL_SUBROUTINE 0x92E9 +#define GL_TESS_EVALUATION_SUBROUTINE 0x92EA +#define GL_GEOMETRY_SUBROUTINE 0x92EB +#define GL_FRAGMENT_SUBROUTINE 0x92EC +#define GL_COMPUTE_SUBROUTINE 0x92ED +#define GL_VERTEX_SUBROUTINE_UNIFORM 0x92EE +#define GL_TESS_CONTROL_SUBROUTINE_UNIFORM 0x92EF +#define GL_TESS_EVALUATION_SUBROUTINE_UNIFORM 0x92F0 +#define GL_GEOMETRY_SUBROUTINE_UNIFORM 0x92F1 +#define GL_FRAGMENT_SUBROUTINE_UNIFORM 0x92F2 +#define GL_COMPUTE_SUBROUTINE_UNIFORM 0x92F3 +#define GL_TRANSFORM_FEEDBACK_VARYING 0x92F4 +#define GL_ACTIVE_RESOURCES 0x92F5 +#define GL_MAX_NAME_LENGTH 0x92F6 +#define GL_MAX_NUM_ACTIVE_VARIABLES 0x92F7 +#define GL_MAX_NUM_COMPATIBLE_SUBROUTINES 0x92F8 +#define GL_NAME_LENGTH 0x92F9 +#define GL_TYPE 0x92FA +#define GL_ARRAY_SIZE 0x92FB +#define GL_OFFSET 0x92FC +#define GL_BLOCK_INDEX 0x92FD +#define GL_ARRAY_STRIDE 0x92FE +#define GL_MATRIX_STRIDE 0x92FF +#define GL_IS_ROW_MAJOR 0x9300 +#define GL_ATOMIC_COUNTER_BUFFER_INDEX 0x9301 +#define GL_BUFFER_BINDING 0x9302 +#define GL_BUFFER_DATA_SIZE 0x9303 +#define GL_NUM_ACTIVE_VARIABLES 0x9304 +#define GL_ACTIVE_VARIABLES 0x9305 +#define GL_REFERENCED_BY_VERTEX_SHADER 0x9306 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER 0x9308 +#define GL_REFERENCED_BY_GEOMETRY_SHADER 0x9309 +#define GL_REFERENCED_BY_FRAGMENT_SHADER 0x930A +#define GL_REFERENCED_BY_COMPUTE_SHADER 0x930B +#define GL_TOP_LEVEL_ARRAY_SIZE 0x930C +#define GL_TOP_LEVEL_ARRAY_STRIDE 0x930D +#define GL_LOCATION 0x930E +#define GL_LOCATION_INDEX 0x930F +#define GL_IS_PER_PATCH 0x92E7 +#define GL_SHADER_STORAGE_BUFFER 0x90D2 +#define GL_SHADER_STORAGE_BUFFER_BINDING 0x90D3 +#define GL_SHADER_STORAGE_BUFFER_START 0x90D4 +#define GL_SHADER_STORAGE_BUFFER_SIZE 0x90D5 +#define GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS 0x90D6 +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS 0x90D7 +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS 0x90D9 +#define GL_MAX_FRAGMENT_SHADER_STORAGE_BLOCKS 0x90DA +#define GL_MAX_COMPUTE_SHADER_STORAGE_BLOCKS 0x90DB +#define GL_MAX_COMBINED_SHADER_STORAGE_BLOCKS 0x90DC +#define GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS 0x90DD +#define GL_MAX_SHADER_STORAGE_BLOCK_SIZE 0x90DE +#define GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT 0x90DF +#define GL_SHADER_STORAGE_BARRIER_BIT 0x00002000 +#define GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES 0x8F39 +#define GL_DEPTH_STENCIL_TEXTURE_MODE 0x90EA +#define GL_TEXTURE_BUFFER_OFFSET 0x919D +#define GL_TEXTURE_BUFFER_SIZE 0x919E +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT 0x919F +#define GL_TEXTURE_VIEW_MIN_LEVEL 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS 0x82DE +#define GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF +#define GL_VERTEX_ATTRIB_BINDING 0x82D4 +#define GL_VERTEX_ATTRIB_RELATIVE_OFFSET 0x82D5 +#define GL_VERTEX_BINDING_DIVISOR 0x82D6 +#define GL_VERTEX_BINDING_OFFSET 0x82D7 +#define GL_VERTEX_BINDING_STRIDE 0x82D8 +#define GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET 0x82D9 +#define GL_MAX_VERTEX_ATTRIB_BINDINGS 0x82DA +#define GL_VERTEX_BINDING_BUFFER 0x8F4F +#define GL_DISPLAY_LIST 0x82E7 +typedef void (APIENTRYP PFNGLCLEARBUFFERDATAPROC) (GLenum target, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARBUFFERSUBDATAPROC) (GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEPROC) (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z); +typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEINDIRECTPROC) (GLintptr indirect); +typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATAPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +typedef void (APIENTRYP PFNGLFRAMEBUFFERPARAMETERIPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETINTERNALFORMATI64VPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint64 *params); +typedef void (APIENTRYP PFNGLINVALIDATETEXSUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLINVALIDATETEXIMAGEPROC) (GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLINVALIDATEBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLINVALIDATEBUFFERDATAPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLINVALIDATEFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments); +typedef void (APIENTRYP PFNGLINVALIDATESUBFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTPROC) (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLGETPROGRAMINTERFACEIVPROC) (GLuint program, GLenum programInterface, GLenum pname, GLint *params); +typedef GLuint (APIENTRYP PFNGLGETPROGRAMRESOURCEINDEXPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCENAMEPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCEIVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLint *params); +typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef void (APIENTRYP PFNGLSHADERSTORAGEBLOCKBINDINGPROC) (GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding); +typedef void (APIENTRYP PFNGLTEXBUFFERRANGEPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLTEXSTORAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXSTORAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTUREVIEWPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +typedef void (APIENTRYP PFNGLBINDVERTEXBUFFERPROC) (GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXATTRIBBINDINGPROC) (GLuint attribindex, GLuint bindingindex); +typedef void (APIENTRYP PFNGLVERTEXBINDINGDIVISORPROC) (GLuint bindingindex, GLuint divisor); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECONTROLPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKPROC) (GLDEBUGPROC callback, const void *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +typedef void (APIENTRYP PFNGLPUSHDEBUGGROUPPROC) (GLenum source, GLuint id, GLsizei length, const GLchar *message); +typedef void (APIENTRYP PFNGLPOPDEBUGGROUPPROC) (void); +typedef void (APIENTRYP PFNGLOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +typedef void (APIENTRYP PFNGLGETOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (APIENTRYP PFNGLOBJECTPTRLABELPROC) (const void *ptr, GLsizei length, const GLchar *label); +typedef void (APIENTRYP PFNGLGETOBJECTPTRLABELPROC) (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClearBufferData (GLenum target, GLenum internalformat, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearBufferSubData (GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glDispatchCompute (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z); +GLAPI void APIENTRY glDispatchComputeIndirect (GLintptr indirect); +GLAPI void APIENTRY glCopyImageSubData (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +GLAPI void APIENTRY glFramebufferParameteri (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glGetFramebufferParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetInternalformati64v (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint64 *params); +GLAPI void APIENTRY glInvalidateTexSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glInvalidateTexImage (GLuint texture, GLint level); +GLAPI void APIENTRY glInvalidateBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glInvalidateBufferData (GLuint buffer); +GLAPI void APIENTRY glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments); +GLAPI void APIENTRY glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glMultiDrawArraysIndirect (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirect (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +GLAPI void APIENTRY glGetProgramInterfaceiv (GLuint program, GLenum programInterface, GLenum pname, GLint *params); +GLAPI GLuint APIENTRY glGetProgramResourceIndex (GLuint program, GLenum programInterface, const GLchar *name); +GLAPI void APIENTRY glGetProgramResourceName (GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glGetProgramResourceiv (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLint *params); +GLAPI GLint APIENTRY glGetProgramResourceLocation (GLuint program, GLenum programInterface, const GLchar *name); +GLAPI GLint APIENTRY glGetProgramResourceLocationIndex (GLuint program, GLenum programInterface, const GLchar *name); +GLAPI void APIENTRY glShaderStorageBlockBinding (GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding); +GLAPI void APIENTRY glTexBufferRange (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glTexStorage2DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTexStorage3DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureView (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +GLAPI void APIENTRY glBindVertexBuffer (GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +GLAPI void APIENTRY glVertexAttribFormat (GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +GLAPI void APIENTRY glVertexAttribIFormat (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexAttribLFormat (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexAttribBinding (GLuint attribindex, GLuint bindingindex); +GLAPI void APIENTRY glVertexBindingDivisor (GLuint bindingindex, GLuint divisor); +GLAPI void APIENTRY glDebugMessageControl (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsert (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallback (GLDEBUGPROC callback, const void *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLog (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +GLAPI void APIENTRY glPushDebugGroup (GLenum source, GLuint id, GLsizei length, const GLchar *message); +GLAPI void APIENTRY glPopDebugGroup (void); +GLAPI void APIENTRY glObjectLabel (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +GLAPI void APIENTRY glGetObjectLabel (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +GLAPI void APIENTRY glObjectPtrLabel (const void *ptr, GLsizei length, const GLchar *label); +GLAPI void APIENTRY glGetObjectPtrLabel (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +#endif /* GL_VERSION_4_3 */ + +#ifndef GL_VERSION_4_4 +#define GL_VERSION_4_4 1 +#define GL_MAX_VERTEX_ATTRIB_STRIDE 0x82E5 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED 0x8221 +#define GL_TEXTURE_BUFFER_BINDING 0x8C2A +#define GL_MAP_PERSISTENT_BIT 0x0040 +#define GL_MAP_COHERENT_BIT 0x0080 +#define GL_DYNAMIC_STORAGE_BIT 0x0100 +#define GL_CLIENT_STORAGE_BIT 0x0200 +#define GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT 0x00004000 +#define GL_BUFFER_IMMUTABLE_STORAGE 0x821F +#define GL_BUFFER_STORAGE_FLAGS 0x8220 +#define GL_CLEAR_TEXTURE 0x9365 +#define GL_LOCATION_COMPONENT 0x934A +#define GL_TRANSFORM_FEEDBACK_BUFFER_INDEX 0x934B +#define GL_TRANSFORM_FEEDBACK_BUFFER_STRIDE 0x934C +#define GL_QUERY_BUFFER 0x9192 +#define GL_QUERY_BUFFER_BARRIER_BIT 0x00008000 +#define GL_QUERY_BUFFER_BINDING 0x9193 +#define GL_QUERY_RESULT_NO_WAIT 0x9194 +#define GL_MIRROR_CLAMP_TO_EDGE 0x8743 +typedef void (APIENTRYP PFNGLBUFFERSTORAGEPROC) (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (APIENTRYP PFNGLCLEARTEXIMAGEPROC) (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARTEXSUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLBINDBUFFERSBASEPROC) (GLenum target, GLuint first, GLsizei count, const GLuint *buffers); +typedef void (APIENTRYP PFNGLBINDBUFFERSRANGEPROC) (GLenum target, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizeiptr *sizes); +typedef void (APIENTRYP PFNGLBINDTEXTURESPROC) (GLuint first, GLsizei count, const GLuint *textures); +typedef void (APIENTRYP PFNGLBINDSAMPLERSPROC) (GLuint first, GLsizei count, const GLuint *samplers); +typedef void (APIENTRYP PFNGLBINDIMAGETEXTURESPROC) (GLuint first, GLsizei count, const GLuint *textures); +typedef void (APIENTRYP PFNGLBINDVERTEXBUFFERSPROC) (GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferStorage (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +GLAPI void APIENTRY glClearTexImage (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearTexSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glBindBuffersBase (GLenum target, GLuint first, GLsizei count, const GLuint *buffers); +GLAPI void APIENTRY glBindBuffersRange (GLenum target, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizeiptr *sizes); +GLAPI void APIENTRY glBindTextures (GLuint first, GLsizei count, const GLuint *textures); +GLAPI void APIENTRY glBindSamplers (GLuint first, GLsizei count, const GLuint *samplers); +GLAPI void APIENTRY glBindImageTextures (GLuint first, GLsizei count, const GLuint *textures); +GLAPI void APIENTRY glBindVertexBuffers (GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +#endif +#endif /* GL_VERSION_4_4 */ + +#ifndef GL_VERSION_4_5 +#define GL_VERSION_4_5 1 +#define GL_CONTEXT_LOST 0x0507 +#define GL_NEGATIVE_ONE_TO_ONE 0x935E +#define GL_ZERO_TO_ONE 0x935F +#define GL_CLIP_ORIGIN 0x935C +#define GL_CLIP_DEPTH_MODE 0x935D +#define GL_QUERY_WAIT_INVERTED 0x8E17 +#define GL_QUERY_NO_WAIT_INVERTED 0x8E18 +#define GL_QUERY_BY_REGION_WAIT_INVERTED 0x8E19 +#define GL_QUERY_BY_REGION_NO_WAIT_INVERTED 0x8E1A +#define GL_MAX_CULL_DISTANCES 0x82F9 +#define GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES 0x82FA +#define GL_TEXTURE_TARGET 0x1006 +#define GL_QUERY_TARGET 0x82EA +#define GL_GUILTY_CONTEXT_RESET 0x8253 +#define GL_INNOCENT_CONTEXT_RESET 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY 0x8256 +#define GL_LOSE_CONTEXT_ON_RESET 0x8252 +#define GL_NO_RESET_NOTIFICATION 0x8261 +#define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT 0x00000004 +#define GL_COLOR_TABLE 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2 +#define GL_PROXY_COLOR_TABLE 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5 +#define GL_CONVOLUTION_1D 0x8010 +#define GL_CONVOLUTION_2D 0x8011 +#define GL_SEPARABLE_2D 0x8012 +#define GL_HISTOGRAM 0x8024 +#define GL_PROXY_HISTOGRAM 0x8025 +#define GL_MINMAX 0x802E +#define GL_CONTEXT_RELEASE_BEHAVIOR 0x82FB +#define GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH 0x82FC +typedef void (APIENTRYP PFNGLCLIPCONTROLPROC) (GLenum origin, GLenum depth); +typedef void (APIENTRYP PFNGLCREATETRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKBUFFERBASEPROC) (GLuint xfb, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKBUFFERRANGEPROC) (GLuint xfb, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKIVPROC) (GLuint xfb, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint *param); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI64_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint64 *param); +typedef void (APIENTRYP PFNGLCREATEBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (APIENTRYP PFNGLNAMEDBUFFERDATAPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLCOPYNAMEDBUFFERSUBDATAPROC) (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERDATAPROC) (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERPROC) (GLuint buffer, GLenum access); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERRANGEPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef GLboolean (APIENTRYP PFNGLUNMAPNAMEDBUFFERPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERIVPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERI64VPROC) (GLuint buffer, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPOINTERVPROC) (GLuint buffer, GLenum pname, void **params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +typedef void (APIENTRYP PFNGLCREATEFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERRENDERBUFFERPROC) (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERPARAMETERIPROC) (GLuint framebuffer, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURELAYERPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERDRAWBUFFERPROC) (GLuint framebuffer, GLenum buf); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERDRAWBUFFERSPROC) (GLuint framebuffer, GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERREADBUFFERPROC) (GLuint framebuffer, GLenum src); +typedef void (APIENTRYP PFNGLINVALIDATENAMEDFRAMEBUFFERDATAPROC) (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments); +typedef void (APIENTRYP PFNGLINVALIDATENAMEDFRAMEBUFFERSUBDATAPROC) (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERIVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLint *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERUIVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERFVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLfloat *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERFIPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +typedef void (APIENTRYP PFNGLBLITNAMEDFRAMEBUFFERPROC) (GLuint readFramebuffer, GLuint drawFramebuffer, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef GLenum (APIENTRYP PFNGLCHECKNAMEDFRAMEBUFFERSTATUSPROC) (GLuint framebuffer, GLenum target); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVPROC) (GLuint framebuffer, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATERENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEPROC) (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETNAMEDRENDERBUFFERPARAMETERIVPROC) (GLuint renderbuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATETEXTURESPROC) (GLenum target, GLsizei n, GLuint *textures); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERPROC) (GLuint texture, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERRANGEPROC) (GLuint texture, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE1DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DMULTISAMPLEPROC) (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DMULTISAMPLEPROC) (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFPROC) (GLuint texture, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFVPROC) (GLuint texture, GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIPROC) (GLuint texture, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIIVPROC) (GLuint texture, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIUIVPROC) (GLuint texture, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIVPROC) (GLuint texture, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLGENERATETEXTUREMIPMAPPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLBINDTEXTUREUNITPROC) (GLuint unit, GLuint texture); +typedef void (APIENTRYP PFNGLGETTEXTUREIMAGEPROC) (GLuint texture, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTUREIMAGEPROC) (GLuint texture, GLint level, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERFVPROC) (GLuint texture, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERIVPROC) (GLuint texture, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERFVPROC) (GLuint texture, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIIVPROC) (GLuint texture, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIUIVPROC) (GLuint texture, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIVPROC) (GLuint texture, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATEVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays); +typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYATTRIBPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYATTRIBPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLVERTEXARRAYELEMENTBUFFERPROC) (GLuint vaobj, GLuint buffer); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBUFFERPROC) (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBUFFERSPROC) (GLuint vaobj, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBBINDINGPROC) (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBIFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBLFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYBINDINGDIVISORPROC) (GLuint vaobj, GLuint bindingindex, GLuint divisor); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYIVPROC) (GLuint vaobj, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINDEXEDIVPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINDEXED64IVPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint64 *param); +typedef void (APIENTRYP PFNGLCREATESAMPLERSPROC) (GLsizei n, GLuint *samplers); +typedef void (APIENTRYP PFNGLCREATEPROGRAMPIPELINESPROC) (GLsizei n, GLuint *pipelines); +typedef void (APIENTRYP PFNGLCREATEQUERIESPROC) (GLenum target, GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTI64VPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTIVPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTUI64VPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTUIVPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLMEMORYBARRIERBYREGIONPROC) (GLbitfield barriers); +typedef void (APIENTRYP PFNGLGETTEXTURESUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTURESUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei bufSize, void *pixels); +typedef GLenum (APIENTRYP PFNGLGETGRAPHICSRESETSTATUSPROC) (void); +typedef void (APIENTRYP PFNGLGETNCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint lod, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETNTEXIMAGEPROC) (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETNUNIFORMDVPROC) (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMFVPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMIVPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUIVPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +typedef void (APIENTRYP PFNGLREADNPIXELSPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (APIENTRYP PFNGLGETNMAPDVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +typedef void (APIENTRYP PFNGLGETNMAPFVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLGETNMAPIVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +typedef void (APIENTRYP PFNGLGETNPIXELMAPFVPROC) (GLenum map, GLsizei bufSize, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVPROC) (GLenum map, GLsizei bufSize, GLuint *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUSVPROC) (GLenum map, GLsizei bufSize, GLushort *values); +typedef void (APIENTRYP PFNGLGETNPOLYGONSTIPPLEPROC) (GLsizei bufSize, GLubyte *pattern); +typedef void (APIENTRYP PFNGLGETNCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +typedef void (APIENTRYP PFNGLGETNCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +typedef void (APIENTRYP PFNGLGETNSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +typedef void (APIENTRYP PFNGLGETNHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLGETNMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLTEXTUREBARRIERPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClipControl (GLenum origin, GLenum depth); +GLAPI void APIENTRY glCreateTransformFeedbacks (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glTransformFeedbackBufferBase (GLuint xfb, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackBufferRange (GLuint xfb, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glGetTransformFeedbackiv (GLuint xfb, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetTransformFeedbacki_v (GLuint xfb, GLenum pname, GLuint index, GLint *param); +GLAPI void APIENTRY glGetTransformFeedbacki64_v (GLuint xfb, GLenum pname, GLuint index, GLint64 *param); +GLAPI void APIENTRY glCreateBuffers (GLsizei n, GLuint *buffers); +GLAPI void APIENTRY glNamedBufferStorage (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +GLAPI void APIENTRY glNamedBufferData (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +GLAPI void APIENTRY glNamedBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glCopyNamedBufferSubData (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glClearNamedBufferData (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearNamedBufferSubData (GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +GLAPI void *APIENTRY glMapNamedBuffer (GLuint buffer, GLenum access); +GLAPI void *APIENTRY glMapNamedBufferRange (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI GLboolean APIENTRY glUnmapNamedBuffer (GLuint buffer); +GLAPI void APIENTRY glFlushMappedNamedBufferRange (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glGetNamedBufferParameteriv (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedBufferParameteri64v (GLuint buffer, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetNamedBufferPointerv (GLuint buffer, GLenum pname, void **params); +GLAPI void APIENTRY glGetNamedBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +GLAPI void APIENTRY glCreateFramebuffers (GLsizei n, GLuint *framebuffers); +GLAPI void APIENTRY glNamedFramebufferRenderbuffer (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glNamedFramebufferParameteri (GLuint framebuffer, GLenum pname, GLint param); +GLAPI void APIENTRY glNamedFramebufferTexture (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTextureLayer (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glNamedFramebufferDrawBuffer (GLuint framebuffer, GLenum buf); +GLAPI void APIENTRY glNamedFramebufferDrawBuffers (GLuint framebuffer, GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glNamedFramebufferReadBuffer (GLuint framebuffer, GLenum src); +GLAPI void APIENTRY glInvalidateNamedFramebufferData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments); +GLAPI void APIENTRY glInvalidateNamedFramebufferSubData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glClearNamedFramebufferiv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLint *value); +GLAPI void APIENTRY glClearNamedFramebufferuiv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value); +GLAPI void APIENTRY glClearNamedFramebufferfv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLfloat *value); +GLAPI void APIENTRY glClearNamedFramebufferfi (GLuint framebuffer, GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +GLAPI void APIENTRY glBlitNamedFramebuffer (GLuint readFramebuffer, GLuint drawFramebuffer, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI GLenum APIENTRY glCheckNamedFramebufferStatus (GLuint framebuffer, GLenum target); +GLAPI void APIENTRY glGetNamedFramebufferParameteriv (GLuint framebuffer, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetNamedFramebufferAttachmentParameteriv (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateRenderbuffers (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glNamedRenderbufferStorage (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisample (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetNamedRenderbufferParameteriv (GLuint renderbuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateTextures (GLenum target, GLsizei n, GLuint *textures); +GLAPI void APIENTRY glTextureBuffer (GLuint texture, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glTextureBufferRange (GLuint texture, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glTextureStorage1D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTextureStorage2D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureStorage3D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glTextureStorage2DMultisample (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureStorage3DMultisample (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCompressedTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCopyTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glCopyTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureParameterf (GLuint texture, GLenum pname, GLfloat param); +GLAPI void APIENTRY glTextureParameterfv (GLuint texture, GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glTextureParameteri (GLuint texture, GLenum pname, GLint param); +GLAPI void APIENTRY glTextureParameterIiv (GLuint texture, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureParameterIuiv (GLuint texture, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glTextureParameteriv (GLuint texture, GLenum pname, const GLint *param); +GLAPI void APIENTRY glGenerateTextureMipmap (GLuint texture); +GLAPI void APIENTRY glBindTextureUnit (GLuint unit, GLuint texture); +GLAPI void APIENTRY glGetTextureImage (GLuint texture, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetCompressedTextureImage (GLuint texture, GLint level, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetTextureLevelParameterfv (GLuint texture, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureLevelParameteriv (GLuint texture, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterfv (GLuint texture, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureParameterIiv (GLuint texture, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterIuiv (GLuint texture, GLenum pname, GLuint *params); +GLAPI void APIENTRY glGetTextureParameteriv (GLuint texture, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateVertexArrays (GLsizei n, GLuint *arrays); +GLAPI void APIENTRY glDisableVertexArrayAttrib (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glEnableVertexArrayAttrib (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glVertexArrayElementBuffer (GLuint vaobj, GLuint buffer); +GLAPI void APIENTRY glVertexArrayVertexBuffer (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +GLAPI void APIENTRY glVertexArrayVertexBuffers (GLuint vaobj, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +GLAPI void APIENTRY glVertexArrayAttribBinding (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +GLAPI void APIENTRY glVertexArrayAttribFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayAttribIFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayAttribLFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayBindingDivisor (GLuint vaobj, GLuint bindingindex, GLuint divisor); +GLAPI void APIENTRY glGetVertexArrayiv (GLuint vaobj, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayIndexediv (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayIndexed64iv (GLuint vaobj, GLuint index, GLenum pname, GLint64 *param); +GLAPI void APIENTRY glCreateSamplers (GLsizei n, GLuint *samplers); +GLAPI void APIENTRY glCreateProgramPipelines (GLsizei n, GLuint *pipelines); +GLAPI void APIENTRY glCreateQueries (GLenum target, GLsizei n, GLuint *ids); +GLAPI void APIENTRY glGetQueryBufferObjecti64v (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectiv (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectui64v (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectuiv (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glMemoryBarrierByRegion (GLbitfield barriers); +GLAPI void APIENTRY glGetTextureSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetCompressedTextureSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei bufSize, void *pixels); +GLAPI GLenum APIENTRY glGetGraphicsResetStatus (void); +GLAPI void APIENTRY glGetnCompressedTexImage (GLenum target, GLint lod, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetnTexImage (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetnUniformdv (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +GLAPI void APIENTRY glGetnUniformfv (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GLAPI void APIENTRY glGetnUniformiv (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GLAPI void APIENTRY glGetnUniformuiv (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +GLAPI void APIENTRY glReadnPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GLAPI void APIENTRY glGetnMapdv (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +GLAPI void APIENTRY glGetnMapfv (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glGetnMapiv (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +GLAPI void APIENTRY glGetnPixelMapfv (GLenum map, GLsizei bufSize, GLfloat *values); +GLAPI void APIENTRY glGetnPixelMapuiv (GLenum map, GLsizei bufSize, GLuint *values); +GLAPI void APIENTRY glGetnPixelMapusv (GLenum map, GLsizei bufSize, GLushort *values); +GLAPI void APIENTRY glGetnPolygonStipple (GLsizei bufSize, GLubyte *pattern); +GLAPI void APIENTRY glGetnColorTable (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +GLAPI void APIENTRY glGetnConvolutionFilter (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +GLAPI void APIENTRY glGetnSeparableFilter (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +GLAPI void APIENTRY glGetnHistogram (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glGetnMinmax (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glTextureBarrier (void); +#endif +#endif /* GL_VERSION_4_5 */ + +#ifndef GL_VERSION_4_6 +#define GL_VERSION_4_6 1 +#define GL_SHADER_BINARY_FORMAT_SPIR_V 0x9551 +#define GL_SPIR_V_BINARY 0x9552 +#define GL_PARAMETER_BUFFER 0x80EE +#define GL_PARAMETER_BUFFER_BINDING 0x80EF +#define GL_CONTEXT_FLAG_NO_ERROR_BIT 0x00000008 +#define GL_VERTICES_SUBMITTED 0x82EE +#define GL_PRIMITIVES_SUBMITTED 0x82EF +#define GL_VERTEX_SHADER_INVOCATIONS 0x82F0 +#define GL_TESS_CONTROL_SHADER_PATCHES 0x82F1 +#define GL_TESS_EVALUATION_SHADER_INVOCATIONS 0x82F2 +#define GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED 0x82F3 +#define GL_FRAGMENT_SHADER_INVOCATIONS 0x82F4 +#define GL_COMPUTE_SHADER_INVOCATIONS 0x82F5 +#define GL_CLIPPING_INPUT_PRIMITIVES 0x82F6 +#define GL_CLIPPING_OUTPUT_PRIMITIVES 0x82F7 +#define GL_POLYGON_OFFSET_CLAMP 0x8E1B +#define GL_SPIR_V_EXTENSIONS 0x9553 +#define GL_NUM_SPIR_V_EXTENSIONS 0x9554 +#define GL_TEXTURE_MAX_ANISOTROPY 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY 0x84FF +#define GL_TRANSFORM_FEEDBACK_OVERFLOW 0x82EC +#define GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW 0x82ED +typedef void (APIENTRYP PFNGLSPECIALIZESHADERPROC) (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTCOUNTPROC) (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTPROC) (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLPOLYGONOFFSETCLAMPPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpecializeShader (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +GLAPI void APIENTRY glMultiDrawArraysIndirectCount (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectCount (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glPolygonOffsetClamp (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_VERSION_4_6 */ + +#ifndef GL_ARB_ES2_compatibility +#define GL_ARB_ES2_compatibility 1 +#endif /* GL_ARB_ES2_compatibility */ + +#ifndef GL_ARB_ES3_1_compatibility +#define GL_ARB_ES3_1_compatibility 1 +#endif /* GL_ARB_ES3_1_compatibility */ + +#ifndef GL_ARB_ES3_2_compatibility +#define GL_ARB_ES3_2_compatibility 1 +#define GL_PRIMITIVE_BOUNDING_BOX_ARB 0x92BE +#define GL_MULTISAMPLE_LINE_WIDTH_RANGE_ARB 0x9381 +#define GL_MULTISAMPLE_LINE_WIDTH_GRANULARITY_ARB 0x9382 +typedef void (APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXARBPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPrimitiveBoundingBoxARB (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_ARB_ES3_2_compatibility */ + +#ifndef GL_ARB_ES3_compatibility +#define GL_ARB_ES3_compatibility 1 +#endif /* GL_ARB_ES3_compatibility */ + +#ifndef GL_ARB_arrays_of_arrays +#define GL_ARB_arrays_of_arrays 1 +#endif /* GL_ARB_arrays_of_arrays */ + +#ifndef GL_ARB_base_instance +#define GL_ARB_base_instance 1 +#endif /* GL_ARB_base_instance */ + +#ifndef GL_ARB_bindless_texture +#define GL_ARB_bindless_texture 1 +typedef khronos_uint64_t GLuint64EXT; +#define GL_UNSIGNED_INT64_ARB 0x140F +typedef GLuint64 (APIENTRYP PFNGLGETTEXTUREHANDLEARBPROC) (GLuint texture); +typedef GLuint64 (APIENTRYP PFNGLGETTEXTURESAMPLERHANDLEARBPROC) (GLuint texture, GLuint sampler); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLENONRESIDENTARBPROC) (GLuint64 handle); +typedef GLuint64 (APIENTRYP PFNGLGETIMAGEHANDLEARBPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLERESIDENTARBPROC) (GLuint64 handle, GLenum access); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLENONRESIDENTARBPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64ARBPROC) (GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64ARBPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +typedef GLboolean (APIENTRYP PFNGLISTEXTUREHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef GLboolean (APIENTRYP PFNGLISIMAGEHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64ARBPROC) (GLuint index, GLuint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64VARBPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLUI64VARBPROC) (GLuint index, GLenum pname, GLuint64EXT *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint64 APIENTRY glGetTextureHandleARB (GLuint texture); +GLAPI GLuint64 APIENTRY glGetTextureSamplerHandleARB (GLuint texture, GLuint sampler); +GLAPI void APIENTRY glMakeTextureHandleResidentARB (GLuint64 handle); +GLAPI void APIENTRY glMakeTextureHandleNonResidentARB (GLuint64 handle); +GLAPI GLuint64 APIENTRY glGetImageHandleARB (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +GLAPI void APIENTRY glMakeImageHandleResidentARB (GLuint64 handle, GLenum access); +GLAPI void APIENTRY glMakeImageHandleNonResidentARB (GLuint64 handle); +GLAPI void APIENTRY glUniformHandleui64ARB (GLint location, GLuint64 value); +GLAPI void APIENTRY glUniformHandleui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniformHandleui64ARB (GLuint program, GLint location, GLuint64 value); +GLAPI void APIENTRY glProgramUniformHandleui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +GLAPI GLboolean APIENTRY glIsTextureHandleResidentARB (GLuint64 handle); +GLAPI GLboolean APIENTRY glIsImageHandleResidentARB (GLuint64 handle); +GLAPI void APIENTRY glVertexAttribL1ui64ARB (GLuint index, GLuint64EXT x); +GLAPI void APIENTRY glVertexAttribL1ui64vARB (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glGetVertexAttribLui64vARB (GLuint index, GLenum pname, GLuint64EXT *params); +#endif +#endif /* GL_ARB_bindless_texture */ + +#ifndef GL_ARB_blend_func_extended +#define GL_ARB_blend_func_extended 1 +#endif /* GL_ARB_blend_func_extended */ + +#ifndef GL_ARB_buffer_storage +#define GL_ARB_buffer_storage 1 +#endif /* GL_ARB_buffer_storage */ + +#ifndef GL_ARB_cl_event +#define GL_ARB_cl_event 1 +struct _cl_context; +struct _cl_event; +#define GL_SYNC_CL_EVENT_ARB 0x8240 +#define GL_SYNC_CL_EVENT_COMPLETE_ARB 0x8241 +typedef GLsync (APIENTRYP PFNGLCREATESYNCFROMCLEVENTARBPROC) (struct _cl_context *context, struct _cl_event *event, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLsync APIENTRY glCreateSyncFromCLeventARB (struct _cl_context *context, struct _cl_event *event, GLbitfield flags); +#endif +#endif /* GL_ARB_cl_event */ + +#ifndef GL_ARB_clear_buffer_object +#define GL_ARB_clear_buffer_object 1 +#endif /* GL_ARB_clear_buffer_object */ + +#ifndef GL_ARB_clear_texture +#define GL_ARB_clear_texture 1 +#endif /* GL_ARB_clear_texture */ + +#ifndef GL_ARB_clip_control +#define GL_ARB_clip_control 1 +#endif /* GL_ARB_clip_control */ + +#ifndef GL_ARB_color_buffer_float +#define GL_ARB_color_buffer_float 1 +#define GL_RGBA_FLOAT_MODE_ARB 0x8820 +#define GL_CLAMP_VERTEX_COLOR_ARB 0x891A +#define GL_CLAMP_FRAGMENT_COLOR_ARB 0x891B +#define GL_CLAMP_READ_COLOR_ARB 0x891C +#define GL_FIXED_ONLY_ARB 0x891D +typedef void (APIENTRYP PFNGLCLAMPCOLORARBPROC) (GLenum target, GLenum clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClampColorARB (GLenum target, GLenum clamp); +#endif +#endif /* GL_ARB_color_buffer_float */ + +#ifndef GL_ARB_compatibility +#define GL_ARB_compatibility 1 +#endif /* GL_ARB_compatibility */ + +#ifndef GL_ARB_compressed_texture_pixel_storage +#define GL_ARB_compressed_texture_pixel_storage 1 +#endif /* GL_ARB_compressed_texture_pixel_storage */ + +#ifndef GL_ARB_compute_shader +#define GL_ARB_compute_shader 1 +#endif /* GL_ARB_compute_shader */ + +#ifndef GL_ARB_compute_variable_group_size +#define GL_ARB_compute_variable_group_size 1 +#define GL_MAX_COMPUTE_VARIABLE_GROUP_INVOCATIONS_ARB 0x9344 +#define GL_MAX_COMPUTE_FIXED_GROUP_INVOCATIONS_ARB 0x90EB +#define GL_MAX_COMPUTE_VARIABLE_GROUP_SIZE_ARB 0x9345 +#define GL_MAX_COMPUTE_FIXED_GROUP_SIZE_ARB 0x91BF +typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEGROUPSIZEARBPROC) (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z, GLuint group_size_x, GLuint group_size_y, GLuint group_size_z); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDispatchComputeGroupSizeARB (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z, GLuint group_size_x, GLuint group_size_y, GLuint group_size_z); +#endif +#endif /* GL_ARB_compute_variable_group_size */ + +#ifndef GL_ARB_conditional_render_inverted +#define GL_ARB_conditional_render_inverted 1 +#endif /* GL_ARB_conditional_render_inverted */ + +#ifndef GL_ARB_conservative_depth +#define GL_ARB_conservative_depth 1 +#endif /* GL_ARB_conservative_depth */ + +#ifndef GL_ARB_copy_buffer +#define GL_ARB_copy_buffer 1 +#endif /* GL_ARB_copy_buffer */ + +#ifndef GL_ARB_copy_image +#define GL_ARB_copy_image 1 +#endif /* GL_ARB_copy_image */ + +#ifndef GL_ARB_cull_distance +#define GL_ARB_cull_distance 1 +#endif /* GL_ARB_cull_distance */ + +#ifndef GL_ARB_debug_output +#define GL_ARB_debug_output 1 +typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +#define GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_ARB 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION_ARB 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM_ARB 0x8245 +#define GL_DEBUG_SOURCE_API_ARB 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_ARB 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER_ARB 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY_ARB 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION_ARB 0x824A +#define GL_DEBUG_SOURCE_OTHER_ARB 0x824B +#define GL_DEBUG_TYPE_ERROR_ARB 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB 0x824E +#define GL_DEBUG_TYPE_PORTABILITY_ARB 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE_ARB 0x8250 +#define GL_DEBUG_TYPE_OTHER_ARB 0x8251 +#define GL_MAX_DEBUG_MESSAGE_LENGTH_ARB 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_ARB 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_ARB 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_ARB 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_ARB 0x9147 +#define GL_DEBUG_SEVERITY_LOW_ARB 0x9148 +typedef void (APIENTRYP PFNGLDEBUGMESSAGECONTROLARBPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTARBPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKARBPROC) (GLDEBUGPROCARB callback, const void *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGARBPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDebugMessageControlARB (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsertARB (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallbackARB (GLDEBUGPROCARB callback, const void *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLogARB (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +#endif +#endif /* GL_ARB_debug_output */ + +#ifndef GL_ARB_depth_buffer_float +#define GL_ARB_depth_buffer_float 1 +#endif /* GL_ARB_depth_buffer_float */ + +#ifndef GL_ARB_depth_clamp +#define GL_ARB_depth_clamp 1 +#endif /* GL_ARB_depth_clamp */ + +#ifndef GL_ARB_depth_texture +#define GL_ARB_depth_texture 1 +#define GL_DEPTH_COMPONENT16_ARB 0x81A5 +#define GL_DEPTH_COMPONENT24_ARB 0x81A6 +#define GL_DEPTH_COMPONENT32_ARB 0x81A7 +#define GL_TEXTURE_DEPTH_SIZE_ARB 0x884A +#define GL_DEPTH_TEXTURE_MODE_ARB 0x884B +#endif /* GL_ARB_depth_texture */ + +#ifndef GL_ARB_derivative_control +#define GL_ARB_derivative_control 1 +#endif /* GL_ARB_derivative_control */ + +#ifndef GL_ARB_direct_state_access +#define GL_ARB_direct_state_access 1 +#endif /* GL_ARB_direct_state_access */ + +#ifndef GL_ARB_draw_buffers +#define GL_ARB_draw_buffers 1 +#define GL_MAX_DRAW_BUFFERS_ARB 0x8824 +#define GL_DRAW_BUFFER0_ARB 0x8825 +#define GL_DRAW_BUFFER1_ARB 0x8826 +#define GL_DRAW_BUFFER2_ARB 0x8827 +#define GL_DRAW_BUFFER3_ARB 0x8828 +#define GL_DRAW_BUFFER4_ARB 0x8829 +#define GL_DRAW_BUFFER5_ARB 0x882A +#define GL_DRAW_BUFFER6_ARB 0x882B +#define GL_DRAW_BUFFER7_ARB 0x882C +#define GL_DRAW_BUFFER8_ARB 0x882D +#define GL_DRAW_BUFFER9_ARB 0x882E +#define GL_DRAW_BUFFER10_ARB 0x882F +#define GL_DRAW_BUFFER11_ARB 0x8830 +#define GL_DRAW_BUFFER12_ARB 0x8831 +#define GL_DRAW_BUFFER13_ARB 0x8832 +#define GL_DRAW_BUFFER14_ARB 0x8833 +#define GL_DRAW_BUFFER15_ARB 0x8834 +typedef void (APIENTRYP PFNGLDRAWBUFFERSARBPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawBuffersARB (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_ARB_draw_buffers */ + +#ifndef GL_ARB_draw_buffers_blend +#define GL_ARB_draw_buffers_blend 1 +typedef void (APIENTRYP PFNGLBLENDEQUATIONIARBPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIARBPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (APIENTRYP PFNGLBLENDFUNCIARBPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIARBPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationiARB (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparateiARB (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GLAPI void APIENTRY glBlendFunciARB (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparateiARB (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +#endif +#endif /* GL_ARB_draw_buffers_blend */ + +#ifndef GL_ARB_draw_elements_base_vertex +#define GL_ARB_draw_elements_base_vertex 1 +#endif /* GL_ARB_draw_elements_base_vertex */ + +#ifndef GL_ARB_draw_indirect +#define GL_ARB_draw_indirect 1 +#endif /* GL_ARB_draw_indirect */ + +#ifndef GL_ARB_draw_instanced +#define GL_ARB_draw_instanced 1 +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDARBPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDARBPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedARB (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GLAPI void APIENTRY glDrawElementsInstancedARB (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_ARB_draw_instanced */ + +#ifndef GL_ARB_enhanced_layouts +#define GL_ARB_enhanced_layouts 1 +#endif /* GL_ARB_enhanced_layouts */ + +#ifndef GL_ARB_explicit_attrib_location +#define GL_ARB_explicit_attrib_location 1 +#endif /* GL_ARB_explicit_attrib_location */ + +#ifndef GL_ARB_explicit_uniform_location +#define GL_ARB_explicit_uniform_location 1 +#endif /* GL_ARB_explicit_uniform_location */ + +#ifndef GL_ARB_fragment_coord_conventions +#define GL_ARB_fragment_coord_conventions 1 +#endif /* GL_ARB_fragment_coord_conventions */ + +#ifndef GL_ARB_fragment_layer_viewport +#define GL_ARB_fragment_layer_viewport 1 +#endif /* GL_ARB_fragment_layer_viewport */ + +#ifndef GL_ARB_fragment_program +#define GL_ARB_fragment_program 1 +#define GL_FRAGMENT_PROGRAM_ARB 0x8804 +#define GL_PROGRAM_FORMAT_ASCII_ARB 0x8875 +#define GL_PROGRAM_LENGTH_ARB 0x8627 +#define GL_PROGRAM_FORMAT_ARB 0x8876 +#define GL_PROGRAM_BINDING_ARB 0x8677 +#define GL_PROGRAM_INSTRUCTIONS_ARB 0x88A0 +#define GL_MAX_PROGRAM_INSTRUCTIONS_ARB 0x88A1 +#define GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A2 +#define GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A3 +#define GL_PROGRAM_TEMPORARIES_ARB 0x88A4 +#define GL_MAX_PROGRAM_TEMPORARIES_ARB 0x88A5 +#define GL_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A6 +#define GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A7 +#define GL_PROGRAM_PARAMETERS_ARB 0x88A8 +#define GL_MAX_PROGRAM_PARAMETERS_ARB 0x88A9 +#define GL_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AA +#define GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AB +#define GL_PROGRAM_ATTRIBS_ARB 0x88AC +#define GL_MAX_PROGRAM_ATTRIBS_ARB 0x88AD +#define GL_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AE +#define GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AF +#define GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB 0x88B4 +#define GL_MAX_PROGRAM_ENV_PARAMETERS_ARB 0x88B5 +#define GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB 0x88B6 +#define GL_PROGRAM_ALU_INSTRUCTIONS_ARB 0x8805 +#define GL_PROGRAM_TEX_INSTRUCTIONS_ARB 0x8806 +#define GL_PROGRAM_TEX_INDIRECTIONS_ARB 0x8807 +#define GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x8808 +#define GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x8809 +#define GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x880A +#define GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB 0x880B +#define GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB 0x880C +#define GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB 0x880D +#define GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x880E +#define GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x880F +#define GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x8810 +#define GL_PROGRAM_STRING_ARB 0x8628 +#define GL_PROGRAM_ERROR_POSITION_ARB 0x864B +#define GL_CURRENT_MATRIX_ARB 0x8641 +#define GL_TRANSPOSE_CURRENT_MATRIX_ARB 0x88B7 +#define GL_CURRENT_MATRIX_STACK_DEPTH_ARB 0x8640 +#define GL_MAX_PROGRAM_MATRICES_ARB 0x862F +#define GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB 0x862E +#define GL_MAX_TEXTURE_COORDS_ARB 0x8871 +#define GL_MAX_TEXTURE_IMAGE_UNITS_ARB 0x8872 +#define GL_PROGRAM_ERROR_STRING_ARB 0x8874 +#define GL_MATRIX0_ARB 0x88C0 +#define GL_MATRIX1_ARB 0x88C1 +#define GL_MATRIX2_ARB 0x88C2 +#define GL_MATRIX3_ARB 0x88C3 +#define GL_MATRIX4_ARB 0x88C4 +#define GL_MATRIX5_ARB 0x88C5 +#define GL_MATRIX6_ARB 0x88C6 +#define GL_MATRIX7_ARB 0x88C7 +#define GL_MATRIX8_ARB 0x88C8 +#define GL_MATRIX9_ARB 0x88C9 +#define GL_MATRIX10_ARB 0x88CA +#define GL_MATRIX11_ARB 0x88CB +#define GL_MATRIX12_ARB 0x88CC +#define GL_MATRIX13_ARB 0x88CD +#define GL_MATRIX14_ARB 0x88CE +#define GL_MATRIX15_ARB 0x88CF +#define GL_MATRIX16_ARB 0x88D0 +#define GL_MATRIX17_ARB 0x88D1 +#define GL_MATRIX18_ARB 0x88D2 +#define GL_MATRIX19_ARB 0x88D3 +#define GL_MATRIX20_ARB 0x88D4 +#define GL_MATRIX21_ARB 0x88D5 +#define GL_MATRIX22_ARB 0x88D6 +#define GL_MATRIX23_ARB 0x88D7 +#define GL_MATRIX24_ARB 0x88D8 +#define GL_MATRIX25_ARB 0x88D9 +#define GL_MATRIX26_ARB 0x88DA +#define GL_MATRIX27_ARB 0x88DB +#define GL_MATRIX28_ARB 0x88DC +#define GL_MATRIX29_ARB 0x88DD +#define GL_MATRIX30_ARB 0x88DE +#define GL_MATRIX31_ARB 0x88DF +typedef void (APIENTRYP PFNGLPROGRAMSTRINGARBPROC) (GLenum target, GLenum format, GLsizei len, const void *string); +typedef void (APIENTRYP PFNGLBINDPROGRAMARBPROC) (GLenum target, GLuint program); +typedef void (APIENTRYP PFNGLDELETEPROGRAMSARBPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLGENPROGRAMSARBPROC) (GLsizei n, GLuint *programs); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGARBPROC) (GLenum target, GLenum pname, void *string); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMARBPROC) (GLuint program); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramStringARB (GLenum target, GLenum format, GLsizei len, const void *string); +GLAPI void APIENTRY glBindProgramARB (GLenum target, GLuint program); +GLAPI void APIENTRY glDeleteProgramsARB (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glGenProgramsARB (GLsizei n, GLuint *programs); +GLAPI void APIENTRY glProgramEnvParameter4dARB (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramEnvParameter4dvARB (GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glProgramEnvParameter4fARB (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramEnvParameter4fvARB (GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glProgramLocalParameter4dARB (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramLocalParameter4dvARB (GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glProgramLocalParameter4fARB (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramLocalParameter4fvARB (GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glGetProgramEnvParameterdvARB (GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetProgramEnvParameterfvARB (GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetProgramLocalParameterdvARB (GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetProgramLocalParameterfvARB (GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetProgramivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramStringARB (GLenum target, GLenum pname, void *string); +GLAPI GLboolean APIENTRY glIsProgramARB (GLuint program); +#endif +#endif /* GL_ARB_fragment_program */ + +#ifndef GL_ARB_fragment_program_shadow +#define GL_ARB_fragment_program_shadow 1 +#endif /* GL_ARB_fragment_program_shadow */ + +#ifndef GL_ARB_fragment_shader +#define GL_ARB_fragment_shader 1 +#define GL_FRAGMENT_SHADER_ARB 0x8B30 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB 0x8B49 +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB 0x8B8B +#endif /* GL_ARB_fragment_shader */ + +#ifndef GL_ARB_fragment_shader_interlock +#define GL_ARB_fragment_shader_interlock 1 +#endif /* GL_ARB_fragment_shader_interlock */ + +#ifndef GL_ARB_framebuffer_no_attachments +#define GL_ARB_framebuffer_no_attachments 1 +#endif /* GL_ARB_framebuffer_no_attachments */ + +#ifndef GL_ARB_framebuffer_object +#define GL_ARB_framebuffer_object 1 +#endif /* GL_ARB_framebuffer_object */ + +#ifndef GL_ARB_framebuffer_sRGB +#define GL_ARB_framebuffer_sRGB 1 +#endif /* GL_ARB_framebuffer_sRGB */ + +#ifndef GL_ARB_geometry_shader4 +#define GL_ARB_geometry_shader4 1 +#define GL_LINES_ADJACENCY_ARB 0x000A +#define GL_LINE_STRIP_ADJACENCY_ARB 0x000B +#define GL_TRIANGLES_ADJACENCY_ARB 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_ARB 0x000D +#define GL_PROGRAM_POINT_SIZE_ARB 0x8642 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_ARB 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB 0x8DA8 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB 0x8DA9 +#define GL_GEOMETRY_SHADER_ARB 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT_ARB 0x8DDA +#define GL_GEOMETRY_INPUT_TYPE_ARB 0x8DDB +#define GL_GEOMETRY_OUTPUT_TYPE_ARB 0x8DDC +#define GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB 0x8DDD +#define GL_MAX_VERTEX_VARYING_COMPONENTS_ARB 0x8DDE +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB 0x8DE1 +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIARBPROC) (GLuint program, GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREFACEARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramParameteriARB (GLuint program, GLenum pname, GLint value); +GLAPI void APIENTRY glFramebufferTextureARB (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTextureLayerARB (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glFramebufferTextureFaceARB (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#endif +#endif /* GL_ARB_geometry_shader4 */ + +#ifndef GL_ARB_get_program_binary +#define GL_ARB_get_program_binary 1 +#endif /* GL_ARB_get_program_binary */ + +#ifndef GL_ARB_get_texture_sub_image +#define GL_ARB_get_texture_sub_image 1 +#endif /* GL_ARB_get_texture_sub_image */ + +#ifndef GL_ARB_gl_spirv +#define GL_ARB_gl_spirv 1 +#define GL_SHADER_BINARY_FORMAT_SPIR_V_ARB 0x9551 +#define GL_SPIR_V_BINARY_ARB 0x9552 +typedef void (APIENTRYP PFNGLSPECIALIZESHADERARBPROC) (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpecializeShaderARB (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +#endif +#endif /* GL_ARB_gl_spirv */ + +#ifndef GL_ARB_gpu_shader5 +#define GL_ARB_gpu_shader5 1 +#endif /* GL_ARB_gpu_shader5 */ + +#ifndef GL_ARB_gpu_shader_fp64 +#define GL_ARB_gpu_shader_fp64 1 +#endif /* GL_ARB_gpu_shader_fp64 */ + +#ifndef GL_ARB_gpu_shader_int64 +#define GL_ARB_gpu_shader_int64 1 +#define GL_INT64_ARB 0x140E +#define GL_INT64_VEC2_ARB 0x8FE9 +#define GL_INT64_VEC3_ARB 0x8FEA +#define GL_INT64_VEC4_ARB 0x8FEB +#define GL_UNSIGNED_INT64_VEC2_ARB 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_ARB 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_ARB 0x8FF7 +typedef void (APIENTRYP PFNGLUNIFORM1I64ARBPROC) (GLint location, GLint64 x); +typedef void (APIENTRYP PFNGLUNIFORM2I64ARBPROC) (GLint location, GLint64 x, GLint64 y); +typedef void (APIENTRYP PFNGLUNIFORM3I64ARBPROC) (GLint location, GLint64 x, GLint64 y, GLint64 z); +typedef void (APIENTRYP PFNGLUNIFORM4I64ARBPROC) (GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +typedef void (APIENTRYP PFNGLUNIFORM1I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM2I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM3I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM4I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM1UI64ARBPROC) (GLint location, GLuint64 x); +typedef void (APIENTRYP PFNGLUNIFORM2UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y); +typedef void (APIENTRYP PFNGLUNIFORM3UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +typedef void (APIENTRYP PFNGLUNIFORM4UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +typedef void (APIENTRYP PFNGLUNIFORM1UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM2UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM3UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM4UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLGETUNIFORMI64VARBPROC) (GLuint program, GLint location, GLint64 *params); +typedef void (APIENTRYP PFNGLGETUNIFORMUI64VARBPROC) (GLuint program, GLint location, GLuint64 *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMI64VARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLint64 *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUI64VARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint64 *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64ARBPROC) (GLuint program, GLint location, GLint64 x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64ARBPROC) (GLuint program, GLint location, GLuint64 x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniform1i64ARB (GLint location, GLint64 x); +GLAPI void APIENTRY glUniform2i64ARB (GLint location, GLint64 x, GLint64 y); +GLAPI void APIENTRY glUniform3i64ARB (GLint location, GLint64 x, GLint64 y, GLint64 z); +GLAPI void APIENTRY glUniform4i64ARB (GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +GLAPI void APIENTRY glUniform1i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform2i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform3i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform4i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform1ui64ARB (GLint location, GLuint64 x); +GLAPI void APIENTRY glUniform2ui64ARB (GLint location, GLuint64 x, GLuint64 y); +GLAPI void APIENTRY glUniform3ui64ARB (GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +GLAPI void APIENTRY glUniform4ui64ARB (GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +GLAPI void APIENTRY glUniform1ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform2ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform3ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform4ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glGetUniformi64vARB (GLuint program, GLint location, GLint64 *params); +GLAPI void APIENTRY glGetUniformui64vARB (GLuint program, GLint location, GLuint64 *params); +GLAPI void APIENTRY glGetnUniformi64vARB (GLuint program, GLint location, GLsizei bufSize, GLint64 *params); +GLAPI void APIENTRY glGetnUniformui64vARB (GLuint program, GLint location, GLsizei bufSize, GLuint64 *params); +GLAPI void APIENTRY glProgramUniform1i64ARB (GLuint program, GLint location, GLint64 x); +GLAPI void APIENTRY glProgramUniform2i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y); +GLAPI void APIENTRY glProgramUniform3i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z); +GLAPI void APIENTRY glProgramUniform4i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +GLAPI void APIENTRY glProgramUniform1i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform2i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform3i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform4i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform1ui64ARB (GLuint program, GLint location, GLuint64 x); +GLAPI void APIENTRY glProgramUniform2ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y); +GLAPI void APIENTRY glProgramUniform3ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +GLAPI void APIENTRY glProgramUniform4ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +GLAPI void APIENTRY glProgramUniform1ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform2ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform3ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform4ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +#endif +#endif /* GL_ARB_gpu_shader_int64 */ + +#ifndef GL_ARB_half_float_pixel +#define GL_ARB_half_float_pixel 1 +typedef khronos_uint16_t GLhalfARB; +#define GL_HALF_FLOAT_ARB 0x140B +#endif /* GL_ARB_half_float_pixel */ + +#ifndef GL_ARB_half_float_vertex +#define GL_ARB_half_float_vertex 1 +#endif /* GL_ARB_half_float_vertex */ + +#ifndef GL_ARB_imaging +#define GL_ARB_imaging 1 +#define GL_CONVOLUTION_BORDER_MODE 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS 0x8015 +#define GL_REDUCE 0x8016 +#define GL_CONVOLUTION_FORMAT 0x8017 +#define GL_CONVOLUTION_WIDTH 0x8018 +#define GL_CONVOLUTION_HEIGHT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023 +#define GL_HISTOGRAM_WIDTH 0x8026 +#define GL_HISTOGRAM_FORMAT 0x8027 +#define GL_HISTOGRAM_RED_SIZE 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C +#define GL_HISTOGRAM_SINK 0x802D +#define GL_MINMAX_FORMAT 0x802F +#define GL_MINMAX_SINK 0x8030 +#define GL_TABLE_TOO_LARGE 0x8031 +#define GL_COLOR_MATRIX 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB +#define GL_COLOR_TABLE_SCALE 0x80D6 +#define GL_COLOR_TABLE_BIAS 0x80D7 +#define GL_COLOR_TABLE_FORMAT 0x80D8 +#define GL_COLOR_TABLE_WIDTH 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF +#define GL_CONSTANT_BORDER 0x8151 +#define GL_REPLICATE_BORDER 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR 0x8154 +typedef void (APIENTRYP PFNGLCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, void *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIPROC) (GLenum target, GLenum pname, GLint params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, void *image); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLHISTOGRAMPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLMINMAXPROC) (GLenum target, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLRESETHISTOGRAMPROC) (GLenum target); +typedef void (APIENTRYP PFNGLRESETMINMAXPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTable (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +GLAPI void APIENTRY glColorTableParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glColorTableParameteriv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyColorTable (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glGetColorTable (GLenum target, GLenum format, GLenum type, void *table); +GLAPI void APIENTRY glGetColorTableParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetColorTableParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glColorSubTable (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glCopyColorSubTable (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glConvolutionFilter1D (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionFilter2D (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionParameterf (GLenum target, GLenum pname, GLfloat params); +GLAPI void APIENTRY glConvolutionParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glConvolutionParameteri (GLenum target, GLenum pname, GLint params); +GLAPI void APIENTRY glConvolutionParameteriv (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyConvolutionFilter1D (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyConvolutionFilter2D (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetConvolutionFilter (GLenum target, GLenum format, GLenum type, void *image); +GLAPI void APIENTRY glGetConvolutionParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetConvolutionParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSeparableFilter (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +GLAPI void APIENTRY glSeparableFilter2D (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +GLAPI void APIENTRY glGetHistogram (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetHistogramParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetHistogramParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMinmax (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetMinmaxParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMinmaxParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glHistogram (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glMinmax (GLenum target, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glResetHistogram (GLenum target); +GLAPI void APIENTRY glResetMinmax (GLenum target); +#endif +#endif /* GL_ARB_imaging */ + +#ifndef GL_ARB_indirect_parameters +#define GL_ARB_indirect_parameters 1 +#define GL_PARAMETER_BUFFER_ARB 0x80EE +#define GL_PARAMETER_BUFFER_BINDING_ARB 0x80EF +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTCOUNTARBPROC) (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTARBPROC) (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectCountARB (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectCountARB (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_ARB_indirect_parameters */ + +#ifndef GL_ARB_instanced_arrays +#define GL_ARB_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB 0x88FE +typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORARBPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribDivisorARB (GLuint index, GLuint divisor); +#endif +#endif /* GL_ARB_instanced_arrays */ + +#ifndef GL_ARB_internalformat_query +#define GL_ARB_internalformat_query 1 +#endif /* GL_ARB_internalformat_query */ + +#ifndef GL_ARB_internalformat_query2 +#define GL_ARB_internalformat_query2 1 +#define GL_SRGB_DECODE_ARB 0x8299 +#define GL_VIEW_CLASS_EAC_R11 0x9383 +#define GL_VIEW_CLASS_EAC_RG11 0x9384 +#define GL_VIEW_CLASS_ETC2_RGB 0x9385 +#define GL_VIEW_CLASS_ETC2_RGBA 0x9386 +#define GL_VIEW_CLASS_ETC2_EAC_RGBA 0x9387 +#define GL_VIEW_CLASS_ASTC_4x4_RGBA 0x9388 +#define GL_VIEW_CLASS_ASTC_5x4_RGBA 0x9389 +#define GL_VIEW_CLASS_ASTC_5x5_RGBA 0x938A +#define GL_VIEW_CLASS_ASTC_6x5_RGBA 0x938B +#define GL_VIEW_CLASS_ASTC_6x6_RGBA 0x938C +#define GL_VIEW_CLASS_ASTC_8x5_RGBA 0x938D +#define GL_VIEW_CLASS_ASTC_8x6_RGBA 0x938E +#define GL_VIEW_CLASS_ASTC_8x8_RGBA 0x938F +#define GL_VIEW_CLASS_ASTC_10x5_RGBA 0x9390 +#define GL_VIEW_CLASS_ASTC_10x6_RGBA 0x9391 +#define GL_VIEW_CLASS_ASTC_10x8_RGBA 0x9392 +#define GL_VIEW_CLASS_ASTC_10x10_RGBA 0x9393 +#define GL_VIEW_CLASS_ASTC_12x10_RGBA 0x9394 +#define GL_VIEW_CLASS_ASTC_12x12_RGBA 0x9395 +#endif /* GL_ARB_internalformat_query2 */ + +#ifndef GL_ARB_invalidate_subdata +#define GL_ARB_invalidate_subdata 1 +#endif /* GL_ARB_invalidate_subdata */ + +#ifndef GL_ARB_map_buffer_alignment +#define GL_ARB_map_buffer_alignment 1 +#endif /* GL_ARB_map_buffer_alignment */ + +#ifndef GL_ARB_map_buffer_range +#define GL_ARB_map_buffer_range 1 +#endif /* GL_ARB_map_buffer_range */ + +#ifndef GL_ARB_matrix_palette +#define GL_ARB_matrix_palette 1 +#define GL_MATRIX_PALETTE_ARB 0x8840 +#define GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB 0x8841 +#define GL_MAX_PALETTE_MATRICES_ARB 0x8842 +#define GL_CURRENT_PALETTE_MATRIX_ARB 0x8843 +#define GL_MATRIX_INDEX_ARRAY_ARB 0x8844 +#define GL_CURRENT_MATRIX_INDEX_ARB 0x8845 +#define GL_MATRIX_INDEX_ARRAY_SIZE_ARB 0x8846 +#define GL_MATRIX_INDEX_ARRAY_TYPE_ARB 0x8847 +#define GL_MATRIX_INDEX_ARRAY_STRIDE_ARB 0x8848 +#define GL_MATRIX_INDEX_ARRAY_POINTER_ARB 0x8849 +typedef void (APIENTRYP PFNGLCURRENTPALETTEMATRIXARBPROC) (GLint index); +typedef void (APIENTRYP PFNGLMATRIXINDEXUBVARBPROC) (GLint size, const GLubyte *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXUSVARBPROC) (GLint size, const GLushort *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXUIVARBPROC) (GLint size, const GLuint *indices); +typedef void (APIENTRYP PFNGLMATRIXINDEXPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCurrentPaletteMatrixARB (GLint index); +GLAPI void APIENTRY glMatrixIndexubvARB (GLint size, const GLubyte *indices); +GLAPI void APIENTRY glMatrixIndexusvARB (GLint size, const GLushort *indices); +GLAPI void APIENTRY glMatrixIndexuivARB (GLint size, const GLuint *indices); +GLAPI void APIENTRY glMatrixIndexPointerARB (GLint size, GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_ARB_matrix_palette */ + +#ifndef GL_ARB_multi_bind +#define GL_ARB_multi_bind 1 +#endif /* GL_ARB_multi_bind */ + +#ifndef GL_ARB_multi_draw_indirect +#define GL_ARB_multi_draw_indirect 1 +#endif /* GL_ARB_multi_draw_indirect */ + +#ifndef GL_ARB_multisample +#define GL_ARB_multisample 1 +#define GL_MULTISAMPLE_ARB 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE_ARB 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_ARB 0x809F +#define GL_SAMPLE_COVERAGE_ARB 0x80A0 +#define GL_SAMPLE_BUFFERS_ARB 0x80A8 +#define GL_SAMPLES_ARB 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE_ARB 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT_ARB 0x80AB +#define GL_MULTISAMPLE_BIT_ARB 0x20000000 +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEARBPROC) (GLfloat value, GLboolean invert); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleCoverageARB (GLfloat value, GLboolean invert); +#endif +#endif /* GL_ARB_multisample */ + +#ifndef GL_ARB_multitexture +#define GL_ARB_multitexture 1 +#define GL_TEXTURE0_ARB 0x84C0 +#define GL_TEXTURE1_ARB 0x84C1 +#define GL_TEXTURE2_ARB 0x84C2 +#define GL_TEXTURE3_ARB 0x84C3 +#define GL_TEXTURE4_ARB 0x84C4 +#define GL_TEXTURE5_ARB 0x84C5 +#define GL_TEXTURE6_ARB 0x84C6 +#define GL_TEXTURE7_ARB 0x84C7 +#define GL_TEXTURE8_ARB 0x84C8 +#define GL_TEXTURE9_ARB 0x84C9 +#define GL_TEXTURE10_ARB 0x84CA +#define GL_TEXTURE11_ARB 0x84CB +#define GL_TEXTURE12_ARB 0x84CC +#define GL_TEXTURE13_ARB 0x84CD +#define GL_TEXTURE14_ARB 0x84CE +#define GL_TEXTURE15_ARB 0x84CF +#define GL_TEXTURE16_ARB 0x84D0 +#define GL_TEXTURE17_ARB 0x84D1 +#define GL_TEXTURE18_ARB 0x84D2 +#define GL_TEXTURE19_ARB 0x84D3 +#define GL_TEXTURE20_ARB 0x84D4 +#define GL_TEXTURE21_ARB 0x84D5 +#define GL_TEXTURE22_ARB 0x84D6 +#define GL_TEXTURE23_ARB 0x84D7 +#define GL_TEXTURE24_ARB 0x84D8 +#define GL_TEXTURE25_ARB 0x84D9 +#define GL_TEXTURE26_ARB 0x84DA +#define GL_TEXTURE27_ARB 0x84DB +#define GL_TEXTURE28_ARB 0x84DC +#define GL_TEXTURE29_ARB 0x84DD +#define GL_TEXTURE30_ARB 0x84DE +#define GL_TEXTURE31_ARB 0x84DF +#define GL_ACTIVE_TEXTURE_ARB 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1 +#define GL_MAX_TEXTURE_UNITS_ARB 0x84E2 +typedef void (APIENTRYP PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveTextureARB (GLenum texture); +GLAPI void APIENTRY glClientActiveTextureARB (GLenum texture); +GLAPI void APIENTRY glMultiTexCoord1dARB (GLenum target, GLdouble s); +GLAPI void APIENTRY glMultiTexCoord1dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord1fARB (GLenum target, GLfloat s); +GLAPI void APIENTRY glMultiTexCoord1fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord1iARB (GLenum target, GLint s); +GLAPI void APIENTRY glMultiTexCoord1ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord1sARB (GLenum target, GLshort s); +GLAPI void APIENTRY glMultiTexCoord1svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord2dARB (GLenum target, GLdouble s, GLdouble t); +GLAPI void APIENTRY glMultiTexCoord2dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord2fARB (GLenum target, GLfloat s, GLfloat t); +GLAPI void APIENTRY glMultiTexCoord2fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord2iARB (GLenum target, GLint s, GLint t); +GLAPI void APIENTRY glMultiTexCoord2ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord2sARB (GLenum target, GLshort s, GLshort t); +GLAPI void APIENTRY glMultiTexCoord2svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord3dARB (GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI void APIENTRY glMultiTexCoord3dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord3fARB (GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI void APIENTRY glMultiTexCoord3fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord3iARB (GLenum target, GLint s, GLint t, GLint r); +GLAPI void APIENTRY glMultiTexCoord3ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord3sARB (GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI void APIENTRY glMultiTexCoord3svARB (GLenum target, const GLshort *v); +GLAPI void APIENTRY glMultiTexCoord4dARB (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void APIENTRY glMultiTexCoord4dvARB (GLenum target, const GLdouble *v); +GLAPI void APIENTRY glMultiTexCoord4fARB (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void APIENTRY glMultiTexCoord4fvARB (GLenum target, const GLfloat *v); +GLAPI void APIENTRY glMultiTexCoord4iARB (GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI void APIENTRY glMultiTexCoord4ivARB (GLenum target, const GLint *v); +GLAPI void APIENTRY glMultiTexCoord4sARB (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void APIENTRY glMultiTexCoord4svARB (GLenum target, const GLshort *v); +#endif +#endif /* GL_ARB_multitexture */ + +#ifndef GL_ARB_occlusion_query +#define GL_ARB_occlusion_query 1 +#define GL_QUERY_COUNTER_BITS_ARB 0x8864 +#define GL_CURRENT_QUERY_ARB 0x8865 +#define GL_QUERY_RESULT_ARB 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_ARB 0x8867 +#define GL_SAMPLES_PASSED_ARB 0x8914 +typedef void (APIENTRYP PFNGLGENQUERIESARBPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEQUERIESARBPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISQUERYARBPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINQUERYARBPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLENDQUERYARBPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETQUERYIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVARBPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVARBPROC) (GLuint id, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueriesARB (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteQueriesARB (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsQueryARB (GLuint id); +GLAPI void APIENTRY glBeginQueryARB (GLenum target, GLuint id); +GLAPI void APIENTRY glEndQueryARB (GLenum target); +GLAPI void APIENTRY glGetQueryivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectivARB (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetQueryObjectuivARB (GLuint id, GLenum pname, GLuint *params); +#endif +#endif /* GL_ARB_occlusion_query */ + +#ifndef GL_ARB_occlusion_query2 +#define GL_ARB_occlusion_query2 1 +#endif /* GL_ARB_occlusion_query2 */ + +#ifndef GL_ARB_parallel_shader_compile +#define GL_ARB_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_ARB 0x91B0 +#define GL_COMPLETION_STATUS_ARB 0x91B1 +typedef void (APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSARBPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMaxShaderCompilerThreadsARB (GLuint count); +#endif +#endif /* GL_ARB_parallel_shader_compile */ + +#ifndef GL_ARB_pipeline_statistics_query +#define GL_ARB_pipeline_statistics_query 1 +#define GL_VERTICES_SUBMITTED_ARB 0x82EE +#define GL_PRIMITIVES_SUBMITTED_ARB 0x82EF +#define GL_VERTEX_SHADER_INVOCATIONS_ARB 0x82F0 +#define GL_TESS_CONTROL_SHADER_PATCHES_ARB 0x82F1 +#define GL_TESS_EVALUATION_SHADER_INVOCATIONS_ARB 0x82F2 +#define GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED_ARB 0x82F3 +#define GL_FRAGMENT_SHADER_INVOCATIONS_ARB 0x82F4 +#define GL_COMPUTE_SHADER_INVOCATIONS_ARB 0x82F5 +#define GL_CLIPPING_INPUT_PRIMITIVES_ARB 0x82F6 +#define GL_CLIPPING_OUTPUT_PRIMITIVES_ARB 0x82F7 +#endif /* GL_ARB_pipeline_statistics_query */ + +#ifndef GL_ARB_pixel_buffer_object +#define GL_ARB_pixel_buffer_object 1 +#define GL_PIXEL_PACK_BUFFER_ARB 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_ARB 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_ARB 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_ARB 0x88EF +#endif /* GL_ARB_pixel_buffer_object */ + +#ifndef GL_ARB_point_parameters +#define GL_ARB_point_parameters 1 +#define GL_POINT_SIZE_MIN_ARB 0x8126 +#define GL_POINT_SIZE_MAX_ARB 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_ARB 0x8128 +#define GL_POINT_DISTANCE_ATTENUATION_ARB 0x8129 +typedef void (APIENTRYP PFNGLPOINTPARAMETERFARBPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVARBPROC) (GLenum pname, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfARB (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvARB (GLenum pname, const GLfloat *params); +#endif +#endif /* GL_ARB_point_parameters */ + +#ifndef GL_ARB_point_sprite +#define GL_ARB_point_sprite 1 +#define GL_POINT_SPRITE_ARB 0x8861 +#define GL_COORD_REPLACE_ARB 0x8862 +#endif /* GL_ARB_point_sprite */ + +#ifndef GL_ARB_polygon_offset_clamp +#define GL_ARB_polygon_offset_clamp 1 +#endif /* GL_ARB_polygon_offset_clamp */ + +#ifndef GL_ARB_post_depth_coverage +#define GL_ARB_post_depth_coverage 1 +#endif /* GL_ARB_post_depth_coverage */ + +#ifndef GL_ARB_program_interface_query +#define GL_ARB_program_interface_query 1 +#endif /* GL_ARB_program_interface_query */ + +#ifndef GL_ARB_provoking_vertex +#define GL_ARB_provoking_vertex 1 +#endif /* GL_ARB_provoking_vertex */ + +#ifndef GL_ARB_query_buffer_object +#define GL_ARB_query_buffer_object 1 +#endif /* GL_ARB_query_buffer_object */ + +#ifndef GL_ARB_robust_buffer_access_behavior +#define GL_ARB_robust_buffer_access_behavior 1 +#endif /* GL_ARB_robust_buffer_access_behavior */ + +#ifndef GL_ARB_robustness +#define GL_ARB_robustness 1 +#define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB 0x00000004 +#define GL_LOSE_CONTEXT_ON_RESET_ARB 0x8252 +#define GL_GUILTY_CONTEXT_RESET_ARB 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_ARB 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_ARB 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 +#define GL_NO_RESET_NOTIFICATION_ARB 0x8261 +typedef GLenum (APIENTRYP PFNGLGETGRAPHICSRESETSTATUSARBPROC) (void); +typedef void (APIENTRYP PFNGLGETNTEXIMAGEARBPROC) (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *img); +typedef void (APIENTRYP PFNGLREADNPIXELSARBPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (APIENTRYP PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint lod, GLsizei bufSize, void *img); +typedef void (APIENTRYP PFNGLGETNUNIFORMFVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMDVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNMAPDVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +typedef void (APIENTRYP PFNGLGETNMAPFVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLGETNMAPIVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +typedef void (APIENTRYP PFNGLGETNPIXELMAPFVARBPROC) (GLenum map, GLsizei bufSize, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVARBPROC) (GLenum map, GLsizei bufSize, GLuint *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUSVARBPROC) (GLenum map, GLsizei bufSize, GLushort *values); +typedef void (APIENTRYP PFNGLGETNPOLYGONSTIPPLEARBPROC) (GLsizei bufSize, GLubyte *pattern); +typedef void (APIENTRYP PFNGLGETNCOLORTABLEARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +typedef void (APIENTRYP PFNGLGETNCONVOLUTIONFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +typedef void (APIENTRYP PFNGLGETNSEPARABLEFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +typedef void (APIENTRYP PFNGLGETNHISTOGRAMARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLGETNMINMAXARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLenum APIENTRY glGetGraphicsResetStatusARB (void); +GLAPI void APIENTRY glGetnTexImageARB (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *img); +GLAPI void APIENTRY glReadnPixelsARB (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GLAPI void APIENTRY glGetnCompressedTexImageARB (GLenum target, GLint lod, GLsizei bufSize, void *img); +GLAPI void APIENTRY glGetnUniformfvARB (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GLAPI void APIENTRY glGetnUniformivARB (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GLAPI void APIENTRY glGetnUniformuivARB (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +GLAPI void APIENTRY glGetnUniformdvARB (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +GLAPI void APIENTRY glGetnMapdvARB (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +GLAPI void APIENTRY glGetnMapfvARB (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glGetnMapivARB (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +GLAPI void APIENTRY glGetnPixelMapfvARB (GLenum map, GLsizei bufSize, GLfloat *values); +GLAPI void APIENTRY glGetnPixelMapuivARB (GLenum map, GLsizei bufSize, GLuint *values); +GLAPI void APIENTRY glGetnPixelMapusvARB (GLenum map, GLsizei bufSize, GLushort *values); +GLAPI void APIENTRY glGetnPolygonStippleARB (GLsizei bufSize, GLubyte *pattern); +GLAPI void APIENTRY glGetnColorTableARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +GLAPI void APIENTRY glGetnConvolutionFilterARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +GLAPI void APIENTRY glGetnSeparableFilterARB (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +GLAPI void APIENTRY glGetnHistogramARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glGetnMinmaxARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +#endif +#endif /* GL_ARB_robustness */ + +#ifndef GL_ARB_robustness_isolation +#define GL_ARB_robustness_isolation 1 +#endif /* GL_ARB_robustness_isolation */ + +#ifndef GL_ARB_sample_locations +#define GL_ARB_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_ARB 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_ARB 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_ARB 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_ARB 0x9340 +#define GL_SAMPLE_LOCATION_ARB 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_ARB 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_ARB 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_ARB 0x9343 +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVARBPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVARBPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLEVALUATEDEPTHVALUESARBPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSampleLocationsfvARB (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glNamedFramebufferSampleLocationsfvARB (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glEvaluateDepthValuesARB (void); +#endif +#endif /* GL_ARB_sample_locations */ + +#ifndef GL_ARB_sample_shading +#define GL_ARB_sample_shading 1 +#define GL_SAMPLE_SHADING_ARB 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE_ARB 0x8C37 +typedef void (APIENTRYP PFNGLMINSAMPLESHADINGARBPROC) (GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMinSampleShadingARB (GLfloat value); +#endif +#endif /* GL_ARB_sample_shading */ + +#ifndef GL_ARB_sampler_objects +#define GL_ARB_sampler_objects 1 +#endif /* GL_ARB_sampler_objects */ + +#ifndef GL_ARB_seamless_cube_map +#define GL_ARB_seamless_cube_map 1 +#endif /* GL_ARB_seamless_cube_map */ + +#ifndef GL_ARB_seamless_cubemap_per_texture +#define GL_ARB_seamless_cubemap_per_texture 1 +#endif /* GL_ARB_seamless_cubemap_per_texture */ + +#ifndef GL_ARB_separate_shader_objects +#define GL_ARB_separate_shader_objects 1 +#endif /* GL_ARB_separate_shader_objects */ + +#ifndef GL_ARB_shader_atomic_counter_ops +#define GL_ARB_shader_atomic_counter_ops 1 +#endif /* GL_ARB_shader_atomic_counter_ops */ + +#ifndef GL_ARB_shader_atomic_counters +#define GL_ARB_shader_atomic_counters 1 +#endif /* GL_ARB_shader_atomic_counters */ + +#ifndef GL_ARB_shader_ballot +#define GL_ARB_shader_ballot 1 +#endif /* GL_ARB_shader_ballot */ + +#ifndef GL_ARB_shader_bit_encoding +#define GL_ARB_shader_bit_encoding 1 +#endif /* GL_ARB_shader_bit_encoding */ + +#ifndef GL_ARB_shader_clock +#define GL_ARB_shader_clock 1 +#endif /* GL_ARB_shader_clock */ + +#ifndef GL_ARB_shader_draw_parameters +#define GL_ARB_shader_draw_parameters 1 +#endif /* GL_ARB_shader_draw_parameters */ + +#ifndef GL_ARB_shader_group_vote +#define GL_ARB_shader_group_vote 1 +#endif /* GL_ARB_shader_group_vote */ + +#ifndef GL_ARB_shader_image_load_store +#define GL_ARB_shader_image_load_store 1 +#endif /* GL_ARB_shader_image_load_store */ + +#ifndef GL_ARB_shader_image_size +#define GL_ARB_shader_image_size 1 +#endif /* GL_ARB_shader_image_size */ + +#ifndef GL_ARB_shader_objects +#define GL_ARB_shader_objects 1 +#ifdef __APPLE__ +typedef void *GLhandleARB; +#else +typedef unsigned int GLhandleARB; +#endif +typedef char GLcharARB; +#define GL_PROGRAM_OBJECT_ARB 0x8B40 +#define GL_SHADER_OBJECT_ARB 0x8B48 +#define GL_OBJECT_TYPE_ARB 0x8B4E +#define GL_OBJECT_SUBTYPE_ARB 0x8B4F +#define GL_FLOAT_VEC2_ARB 0x8B50 +#define GL_FLOAT_VEC3_ARB 0x8B51 +#define GL_FLOAT_VEC4_ARB 0x8B52 +#define GL_INT_VEC2_ARB 0x8B53 +#define GL_INT_VEC3_ARB 0x8B54 +#define GL_INT_VEC4_ARB 0x8B55 +#define GL_BOOL_ARB 0x8B56 +#define GL_BOOL_VEC2_ARB 0x8B57 +#define GL_BOOL_VEC3_ARB 0x8B58 +#define GL_BOOL_VEC4_ARB 0x8B59 +#define GL_FLOAT_MAT2_ARB 0x8B5A +#define GL_FLOAT_MAT3_ARB 0x8B5B +#define GL_FLOAT_MAT4_ARB 0x8B5C +#define GL_SAMPLER_1D_ARB 0x8B5D +#define GL_SAMPLER_2D_ARB 0x8B5E +#define GL_SAMPLER_3D_ARB 0x8B5F +#define GL_SAMPLER_CUBE_ARB 0x8B60 +#define GL_SAMPLER_1D_SHADOW_ARB 0x8B61 +#define GL_SAMPLER_2D_SHADOW_ARB 0x8B62 +#define GL_SAMPLER_2D_RECT_ARB 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW_ARB 0x8B64 +#define GL_OBJECT_DELETE_STATUS_ARB 0x8B80 +#define GL_OBJECT_COMPILE_STATUS_ARB 0x8B81 +#define GL_OBJECT_LINK_STATUS_ARB 0x8B82 +#define GL_OBJECT_VALIDATE_STATUS_ARB 0x8B83 +#define GL_OBJECT_INFO_LOG_LENGTH_ARB 0x8B84 +#define GL_OBJECT_ATTACHED_OBJECTS_ARB 0x8B85 +#define GL_OBJECT_ACTIVE_UNIFORMS_ARB 0x8B86 +#define GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB 0x8B87 +#define GL_OBJECT_SHADER_SOURCE_LENGTH_ARB 0x8B88 +typedef void (APIENTRYP PFNGLDELETEOBJECTARBPROC) (GLhandleARB obj); +typedef GLhandleARB (APIENTRYP PFNGLGETHANDLEARBPROC) (GLenum pname); +typedef void (APIENTRYP PFNGLDETACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB attachedObj); +typedef GLhandleARB (APIENTRYP PFNGLCREATESHADEROBJECTARBPROC) (GLenum shaderType); +typedef void (APIENTRYP PFNGLSHADERSOURCEARBPROC) (GLhandleARB shaderObj, GLsizei count, const GLcharARB **string, const GLint *length); +typedef void (APIENTRYP PFNGLCOMPILESHADERARBPROC) (GLhandleARB shaderObj); +typedef GLhandleARB (APIENTRYP PFNGLCREATEPROGRAMOBJECTARBPROC) (void); +typedef void (APIENTRYP PFNGLATTACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB obj); +typedef void (APIENTRYP PFNGLLINKPROGRAMARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLUSEPROGRAMOBJECTARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMARBPROC) (GLhandleARB programObj); +typedef void (APIENTRYP PFNGLUNIFORM1FARBPROC) (GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLUNIFORM2FARBPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLUNIFORM3FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLUNIFORM4FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLUNIFORM1IARBPROC) (GLint location, GLint v0); +typedef void (APIENTRYP PFNGLUNIFORM2IARBPROC) (GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLUNIFORM3IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLUNIFORM4IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLUNIFORM1FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM2FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM3FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM4FVARBPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORM1IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM2IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM3IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORM4IVARBPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERFVARBPROC) (GLhandleARB obj, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVARBPROC) (GLhandleARB obj, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETINFOLOGARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog); +typedef void (APIENTRYP PFNGLGETATTACHEDOBJECTSARBPROC) (GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj); +typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name); +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +typedef void (APIENTRYP PFNGLGETUNIFORMFVARBPROC) (GLhandleARB programObj, GLint location, GLfloat *params); +typedef void (APIENTRYP PFNGLGETUNIFORMIVARBPROC) (GLhandleARB programObj, GLint location, GLint *params); +typedef void (APIENTRYP PFNGLGETSHADERSOURCEARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeleteObjectARB (GLhandleARB obj); +GLAPI GLhandleARB APIENTRY glGetHandleARB (GLenum pname); +GLAPI void APIENTRY glDetachObjectARB (GLhandleARB containerObj, GLhandleARB attachedObj); +GLAPI GLhandleARB APIENTRY glCreateShaderObjectARB (GLenum shaderType); +GLAPI void APIENTRY glShaderSourceARB (GLhandleARB shaderObj, GLsizei count, const GLcharARB **string, const GLint *length); +GLAPI void APIENTRY glCompileShaderARB (GLhandleARB shaderObj); +GLAPI GLhandleARB APIENTRY glCreateProgramObjectARB (void); +GLAPI void APIENTRY glAttachObjectARB (GLhandleARB containerObj, GLhandleARB obj); +GLAPI void APIENTRY glLinkProgramARB (GLhandleARB programObj); +GLAPI void APIENTRY glUseProgramObjectARB (GLhandleARB programObj); +GLAPI void APIENTRY glValidateProgramARB (GLhandleARB programObj); +GLAPI void APIENTRY glUniform1fARB (GLint location, GLfloat v0); +GLAPI void APIENTRY glUniform2fARB (GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glUniform3fARB (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glUniform4fARB (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glUniform1iARB (GLint location, GLint v0); +GLAPI void APIENTRY glUniform2iARB (GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glUniform3iARB (GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glUniform4iARB (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glUniform1fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform2fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform3fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform4fvARB (GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glUniform1ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform2ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform3ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniform4ivARB (GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glUniformMatrix2fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix3fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glUniformMatrix4fvARB (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glGetObjectParameterfvARB (GLhandleARB obj, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetObjectParameterivARB (GLhandleARB obj, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetInfoLogARB (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *infoLog); +GLAPI void APIENTRY glGetAttachedObjectsARB (GLhandleARB containerObj, GLsizei maxCount, GLsizei *count, GLhandleARB *obj); +GLAPI GLint APIENTRY glGetUniformLocationARB (GLhandleARB programObj, const GLcharARB *name); +GLAPI void APIENTRY glGetActiveUniformARB (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +GLAPI void APIENTRY glGetUniformfvARB (GLhandleARB programObj, GLint location, GLfloat *params); +GLAPI void APIENTRY glGetUniformivARB (GLhandleARB programObj, GLint location, GLint *params); +GLAPI void APIENTRY glGetShaderSourceARB (GLhandleARB obj, GLsizei maxLength, GLsizei *length, GLcharARB *source); +#endif +#endif /* GL_ARB_shader_objects */ + +#ifndef GL_ARB_shader_precision +#define GL_ARB_shader_precision 1 +#endif /* GL_ARB_shader_precision */ + +#ifndef GL_ARB_shader_stencil_export +#define GL_ARB_shader_stencil_export 1 +#endif /* GL_ARB_shader_stencil_export */ + +#ifndef GL_ARB_shader_storage_buffer_object +#define GL_ARB_shader_storage_buffer_object 1 +#endif /* GL_ARB_shader_storage_buffer_object */ + +#ifndef GL_ARB_shader_subroutine +#define GL_ARB_shader_subroutine 1 +#endif /* GL_ARB_shader_subroutine */ + +#ifndef GL_ARB_shader_texture_image_samples +#define GL_ARB_shader_texture_image_samples 1 +#endif /* GL_ARB_shader_texture_image_samples */ + +#ifndef GL_ARB_shader_texture_lod +#define GL_ARB_shader_texture_lod 1 +#endif /* GL_ARB_shader_texture_lod */ + +#ifndef GL_ARB_shader_viewport_layer_array +#define GL_ARB_shader_viewport_layer_array 1 +#endif /* GL_ARB_shader_viewport_layer_array */ + +#ifndef GL_ARB_shading_language_100 +#define GL_ARB_shading_language_100 1 +#define GL_SHADING_LANGUAGE_VERSION_ARB 0x8B8C +#endif /* GL_ARB_shading_language_100 */ + +#ifndef GL_ARB_shading_language_420pack +#define GL_ARB_shading_language_420pack 1 +#endif /* GL_ARB_shading_language_420pack */ + +#ifndef GL_ARB_shading_language_include +#define GL_ARB_shading_language_include 1 +#define GL_SHADER_INCLUDE_ARB 0x8DAE +#define GL_NAMED_STRING_LENGTH_ARB 0x8DE9 +#define GL_NAMED_STRING_TYPE_ARB 0x8DEA +typedef void (APIENTRYP PFNGLNAMEDSTRINGARBPROC) (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string); +typedef void (APIENTRYP PFNGLDELETENAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name); +typedef void (APIENTRYP PFNGLCOMPILESHADERINCLUDEARBPROC) (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); +typedef GLboolean (APIENTRYP PFNGLISNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name); +typedef void (APIENTRYP PFNGLGETNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string); +typedef void (APIENTRYP PFNGLGETNAMEDSTRINGIVARBPROC) (GLint namelen, const GLchar *name, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glNamedStringARB (GLenum type, GLint namelen, const GLchar *name, GLint stringlen, const GLchar *string); +GLAPI void APIENTRY glDeleteNamedStringARB (GLint namelen, const GLchar *name); +GLAPI void APIENTRY glCompileShaderIncludeARB (GLuint shader, GLsizei count, const GLchar *const*path, const GLint *length); +GLAPI GLboolean APIENTRY glIsNamedStringARB (GLint namelen, const GLchar *name); +GLAPI void APIENTRY glGetNamedStringARB (GLint namelen, const GLchar *name, GLsizei bufSize, GLint *stringlen, GLchar *string); +GLAPI void APIENTRY glGetNamedStringivARB (GLint namelen, const GLchar *name, GLenum pname, GLint *params); +#endif +#endif /* GL_ARB_shading_language_include */ + +#ifndef GL_ARB_shading_language_packing +#define GL_ARB_shading_language_packing 1 +#endif /* GL_ARB_shading_language_packing */ + +#ifndef GL_ARB_shadow +#define GL_ARB_shadow 1 +#define GL_TEXTURE_COMPARE_MODE_ARB 0x884C +#define GL_TEXTURE_COMPARE_FUNC_ARB 0x884D +#define GL_COMPARE_R_TO_TEXTURE_ARB 0x884E +#endif /* GL_ARB_shadow */ + +#ifndef GL_ARB_shadow_ambient +#define GL_ARB_shadow_ambient 1 +#define GL_TEXTURE_COMPARE_FAIL_VALUE_ARB 0x80BF +#endif /* GL_ARB_shadow_ambient */ + +#ifndef GL_ARB_sparse_buffer +#define GL_ARB_sparse_buffer 1 +#define GL_SPARSE_STORAGE_BIT_ARB 0x0400 +#define GL_SPARSE_BUFFER_PAGE_SIZE_ARB 0x82F8 +typedef void (APIENTRYP PFNGLBUFFERPAGECOMMITMENTARBPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTARBPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferPageCommitmentARB (GLenum target, GLintptr offset, GLsizeiptr size, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentARB (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +#endif +#endif /* GL_ARB_sparse_buffer */ + +#ifndef GL_ARB_sparse_texture +#define GL_ARB_sparse_texture 1 +#define GL_TEXTURE_SPARSE_ARB 0x91A6 +#define GL_VIRTUAL_PAGE_SIZE_INDEX_ARB 0x91A7 +#define GL_NUM_SPARSE_LEVELS_ARB 0x91AA +#define GL_NUM_VIRTUAL_PAGE_SIZES_ARB 0x91A8 +#define GL_VIRTUAL_PAGE_SIZE_X_ARB 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_ARB 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_ARB 0x9197 +#define GL_MAX_SPARSE_TEXTURE_SIZE_ARB 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_ARB 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_ARB 0x919A +#define GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_ARB 0x91A9 +typedef void (APIENTRYP PFNGLTEXPAGECOMMITMENTARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexPageCommitmentARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#endif +#endif /* GL_ARB_sparse_texture */ + +#ifndef GL_ARB_sparse_texture2 +#define GL_ARB_sparse_texture2 1 +#endif /* GL_ARB_sparse_texture2 */ + +#ifndef GL_ARB_sparse_texture_clamp +#define GL_ARB_sparse_texture_clamp 1 +#endif /* GL_ARB_sparse_texture_clamp */ + +#ifndef GL_ARB_spirv_extensions +#define GL_ARB_spirv_extensions 1 +#endif /* GL_ARB_spirv_extensions */ + +#ifndef GL_ARB_stencil_texturing +#define GL_ARB_stencil_texturing 1 +#endif /* GL_ARB_stencil_texturing */ + +#ifndef GL_ARB_sync +#define GL_ARB_sync 1 +#endif /* GL_ARB_sync */ + +#ifndef GL_ARB_tessellation_shader +#define GL_ARB_tessellation_shader 1 +#endif /* GL_ARB_tessellation_shader */ + +#ifndef GL_ARB_texture_barrier +#define GL_ARB_texture_barrier 1 +#endif /* GL_ARB_texture_barrier */ + +#ifndef GL_ARB_texture_border_clamp +#define GL_ARB_texture_border_clamp 1 +#define GL_CLAMP_TO_BORDER_ARB 0x812D +#endif /* GL_ARB_texture_border_clamp */ + +#ifndef GL_ARB_texture_buffer_object +#define GL_ARB_texture_buffer_object 1 +#define GL_TEXTURE_BUFFER_ARB 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_ARB 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_ARB 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT_ARB 0x8C2E +typedef void (APIENTRYP PFNGLTEXBUFFERARBPROC) (GLenum target, GLenum internalformat, GLuint buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBufferARB (GLenum target, GLenum internalformat, GLuint buffer); +#endif +#endif /* GL_ARB_texture_buffer_object */ + +#ifndef GL_ARB_texture_buffer_object_rgb32 +#define GL_ARB_texture_buffer_object_rgb32 1 +#endif /* GL_ARB_texture_buffer_object_rgb32 */ + +#ifndef GL_ARB_texture_buffer_range +#define GL_ARB_texture_buffer_range 1 +#endif /* GL_ARB_texture_buffer_range */ + +#ifndef GL_ARB_texture_compression +#define GL_ARB_texture_compression 1 +#define GL_COMPRESSED_ALPHA_ARB 0x84E9 +#define GL_COMPRESSED_LUMINANCE_ARB 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA_ARB 0x84EB +#define GL_COMPRESSED_INTENSITY_ARB 0x84EC +#define GL_COMPRESSED_RGB_ARB 0x84ED +#define GL_COMPRESSED_RGBA_ARB 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT_ARB 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB 0x86A0 +#define GL_TEXTURE_COMPRESSED_ARB 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A3 +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DARBPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint level, void *img); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCompressedTexImage3DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage2DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexImage1DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage3DARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage2DARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTexSubImage1DARB (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glGetCompressedTexImageARB (GLenum target, GLint level, void *img); +#endif +#endif /* GL_ARB_texture_compression */ + +#ifndef GL_ARB_texture_compression_bptc +#define GL_ARB_texture_compression_bptc 1 +#define GL_COMPRESSED_RGBA_BPTC_UNORM_ARB 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB 0x8E8F +#endif /* GL_ARB_texture_compression_bptc */ + +#ifndef GL_ARB_texture_compression_rgtc +#define GL_ARB_texture_compression_rgtc 1 +#endif /* GL_ARB_texture_compression_rgtc */ + +#ifndef GL_ARB_texture_cube_map +#define GL_ARB_texture_cube_map 1 +#define GL_NORMAL_MAP_ARB 0x8511 +#define GL_REFLECTION_MAP_ARB 0x8512 +#define GL_TEXTURE_CUBE_MAP_ARB 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARB 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARB 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB 0x851C +#endif /* GL_ARB_texture_cube_map */ + +#ifndef GL_ARB_texture_cube_map_array +#define GL_ARB_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_ARB 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB 0x900A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB 0x900B +#define GL_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900F +#endif /* GL_ARB_texture_cube_map_array */ + +#ifndef GL_ARB_texture_env_add +#define GL_ARB_texture_env_add 1 +#endif /* GL_ARB_texture_env_add */ + +#ifndef GL_ARB_texture_env_combine +#define GL_ARB_texture_env_combine 1 +#define GL_COMBINE_ARB 0x8570 +#define GL_COMBINE_RGB_ARB 0x8571 +#define GL_COMBINE_ALPHA_ARB 0x8572 +#define GL_SOURCE0_RGB_ARB 0x8580 +#define GL_SOURCE1_RGB_ARB 0x8581 +#define GL_SOURCE2_RGB_ARB 0x8582 +#define GL_SOURCE0_ALPHA_ARB 0x8588 +#define GL_SOURCE1_ALPHA_ARB 0x8589 +#define GL_SOURCE2_ALPHA_ARB 0x858A +#define GL_OPERAND0_RGB_ARB 0x8590 +#define GL_OPERAND1_RGB_ARB 0x8591 +#define GL_OPERAND2_RGB_ARB 0x8592 +#define GL_OPERAND0_ALPHA_ARB 0x8598 +#define GL_OPERAND1_ALPHA_ARB 0x8599 +#define GL_OPERAND2_ALPHA_ARB 0x859A +#define GL_RGB_SCALE_ARB 0x8573 +#define GL_ADD_SIGNED_ARB 0x8574 +#define GL_INTERPOLATE_ARB 0x8575 +#define GL_SUBTRACT_ARB 0x84E7 +#define GL_CONSTANT_ARB 0x8576 +#define GL_PRIMARY_COLOR_ARB 0x8577 +#define GL_PREVIOUS_ARB 0x8578 +#endif /* GL_ARB_texture_env_combine */ + +#ifndef GL_ARB_texture_env_crossbar +#define GL_ARB_texture_env_crossbar 1 +#endif /* GL_ARB_texture_env_crossbar */ + +#ifndef GL_ARB_texture_env_dot3 +#define GL_ARB_texture_env_dot3 1 +#define GL_DOT3_RGB_ARB 0x86AE +#define GL_DOT3_RGBA_ARB 0x86AF +#endif /* GL_ARB_texture_env_dot3 */ + +#ifndef GL_ARB_texture_filter_anisotropic +#define GL_ARB_texture_filter_anisotropic 1 +#endif /* GL_ARB_texture_filter_anisotropic */ + +#ifndef GL_ARB_texture_filter_minmax +#define GL_ARB_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_ARB 0x9366 +#define GL_WEIGHTED_AVERAGE_ARB 0x9367 +#endif /* GL_ARB_texture_filter_minmax */ + +#ifndef GL_ARB_texture_float +#define GL_ARB_texture_float 1 +#define GL_TEXTURE_RED_TYPE_ARB 0x8C10 +#define GL_TEXTURE_GREEN_TYPE_ARB 0x8C11 +#define GL_TEXTURE_BLUE_TYPE_ARB 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE_ARB 0x8C13 +#define GL_TEXTURE_LUMINANCE_TYPE_ARB 0x8C14 +#define GL_TEXTURE_INTENSITY_TYPE_ARB 0x8C15 +#define GL_TEXTURE_DEPTH_TYPE_ARB 0x8C16 +#define GL_UNSIGNED_NORMALIZED_ARB 0x8C17 +#define GL_RGBA32F_ARB 0x8814 +#define GL_RGB32F_ARB 0x8815 +#define GL_ALPHA32F_ARB 0x8816 +#define GL_INTENSITY32F_ARB 0x8817 +#define GL_LUMINANCE32F_ARB 0x8818 +#define GL_LUMINANCE_ALPHA32F_ARB 0x8819 +#define GL_RGBA16F_ARB 0x881A +#define GL_RGB16F_ARB 0x881B +#define GL_ALPHA16F_ARB 0x881C +#define GL_INTENSITY16F_ARB 0x881D +#define GL_LUMINANCE16F_ARB 0x881E +#define GL_LUMINANCE_ALPHA16F_ARB 0x881F +#endif /* GL_ARB_texture_float */ + +#ifndef GL_ARB_texture_gather +#define GL_ARB_texture_gather 1 +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5F +#define GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS_ARB 0x8F9F +#endif /* GL_ARB_texture_gather */ + +#ifndef GL_ARB_texture_mirror_clamp_to_edge +#define GL_ARB_texture_mirror_clamp_to_edge 1 +#endif /* GL_ARB_texture_mirror_clamp_to_edge */ + +#ifndef GL_ARB_texture_mirrored_repeat +#define GL_ARB_texture_mirrored_repeat 1 +#define GL_MIRRORED_REPEAT_ARB 0x8370 +#endif /* GL_ARB_texture_mirrored_repeat */ + +#ifndef GL_ARB_texture_multisample +#define GL_ARB_texture_multisample 1 +#endif /* GL_ARB_texture_multisample */ + +#ifndef GL_ARB_texture_non_power_of_two +#define GL_ARB_texture_non_power_of_two 1 +#endif /* GL_ARB_texture_non_power_of_two */ + +#ifndef GL_ARB_texture_query_levels +#define GL_ARB_texture_query_levels 1 +#endif /* GL_ARB_texture_query_levels */ + +#ifndef GL_ARB_texture_query_lod +#define GL_ARB_texture_query_lod 1 +#endif /* GL_ARB_texture_query_lod */ + +#ifndef GL_ARB_texture_rectangle +#define GL_ARB_texture_rectangle 1 +#define GL_TEXTURE_RECTANGLE_ARB 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE_ARB 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE_ARB 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB 0x84F8 +#endif /* GL_ARB_texture_rectangle */ + +#ifndef GL_ARB_texture_rg +#define GL_ARB_texture_rg 1 +#endif /* GL_ARB_texture_rg */ + +#ifndef GL_ARB_texture_rgb10_a2ui +#define GL_ARB_texture_rgb10_a2ui 1 +#endif /* GL_ARB_texture_rgb10_a2ui */ + +#ifndef GL_ARB_texture_stencil8 +#define GL_ARB_texture_stencil8 1 +#endif /* GL_ARB_texture_stencil8 */ + +#ifndef GL_ARB_texture_storage +#define GL_ARB_texture_storage 1 +#endif /* GL_ARB_texture_storage */ + +#ifndef GL_ARB_texture_storage_multisample +#define GL_ARB_texture_storage_multisample 1 +#endif /* GL_ARB_texture_storage_multisample */ + +#ifndef GL_ARB_texture_swizzle +#define GL_ARB_texture_swizzle 1 +#endif /* GL_ARB_texture_swizzle */ + +#ifndef GL_ARB_texture_view +#define GL_ARB_texture_view 1 +#endif /* GL_ARB_texture_view */ + +#ifndef GL_ARB_timer_query +#define GL_ARB_timer_query 1 +#endif /* GL_ARB_timer_query */ + +#ifndef GL_ARB_transform_feedback2 +#define GL_ARB_transform_feedback2 1 +#endif /* GL_ARB_transform_feedback2 */ + +#ifndef GL_ARB_transform_feedback3 +#define GL_ARB_transform_feedback3 1 +#endif /* GL_ARB_transform_feedback3 */ + +#ifndef GL_ARB_transform_feedback_instanced +#define GL_ARB_transform_feedback_instanced 1 +#endif /* GL_ARB_transform_feedback_instanced */ + +#ifndef GL_ARB_transform_feedback_overflow_query +#define GL_ARB_transform_feedback_overflow_query 1 +#define GL_TRANSFORM_FEEDBACK_OVERFLOW_ARB 0x82EC +#define GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW_ARB 0x82ED +#endif /* GL_ARB_transform_feedback_overflow_query */ + +#ifndef GL_ARB_transpose_matrix +#define GL_ARB_transpose_matrix 1 +#define GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX_ARB 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX_ARB 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX_ARB 0x84E6 +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFARBPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDARBPROC) (const GLdouble *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFARBPROC) (const GLfloat *m); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDARBPROC) (const GLdouble *m); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLoadTransposeMatrixfARB (const GLfloat *m); +GLAPI void APIENTRY glLoadTransposeMatrixdARB (const GLdouble *m); +GLAPI void APIENTRY glMultTransposeMatrixfARB (const GLfloat *m); +GLAPI void APIENTRY glMultTransposeMatrixdARB (const GLdouble *m); +#endif +#endif /* GL_ARB_transpose_matrix */ + +#ifndef GL_ARB_uniform_buffer_object +#define GL_ARB_uniform_buffer_object 1 +#endif /* GL_ARB_uniform_buffer_object */ + +#ifndef GL_ARB_vertex_array_bgra +#define GL_ARB_vertex_array_bgra 1 +#endif /* GL_ARB_vertex_array_bgra */ + +#ifndef GL_ARB_vertex_array_object +#define GL_ARB_vertex_array_object 1 +#endif /* GL_ARB_vertex_array_object */ + +#ifndef GL_ARB_vertex_attrib_64bit +#define GL_ARB_vertex_attrib_64bit 1 +#endif /* GL_ARB_vertex_attrib_64bit */ + +#ifndef GL_ARB_vertex_attrib_binding +#define GL_ARB_vertex_attrib_binding 1 +#endif /* GL_ARB_vertex_attrib_binding */ + +#ifndef GL_ARB_vertex_blend +#define GL_ARB_vertex_blend 1 +#define GL_MAX_VERTEX_UNITS_ARB 0x86A4 +#define GL_ACTIVE_VERTEX_UNITS_ARB 0x86A5 +#define GL_WEIGHT_SUM_UNITY_ARB 0x86A6 +#define GL_VERTEX_BLEND_ARB 0x86A7 +#define GL_CURRENT_WEIGHT_ARB 0x86A8 +#define GL_WEIGHT_ARRAY_TYPE_ARB 0x86A9 +#define GL_WEIGHT_ARRAY_STRIDE_ARB 0x86AA +#define GL_WEIGHT_ARRAY_SIZE_ARB 0x86AB +#define GL_WEIGHT_ARRAY_POINTER_ARB 0x86AC +#define GL_WEIGHT_ARRAY_ARB 0x86AD +#define GL_MODELVIEW0_ARB 0x1700 +#define GL_MODELVIEW1_ARB 0x850A +#define GL_MODELVIEW2_ARB 0x8722 +#define GL_MODELVIEW3_ARB 0x8723 +#define GL_MODELVIEW4_ARB 0x8724 +#define GL_MODELVIEW5_ARB 0x8725 +#define GL_MODELVIEW6_ARB 0x8726 +#define GL_MODELVIEW7_ARB 0x8727 +#define GL_MODELVIEW8_ARB 0x8728 +#define GL_MODELVIEW9_ARB 0x8729 +#define GL_MODELVIEW10_ARB 0x872A +#define GL_MODELVIEW11_ARB 0x872B +#define GL_MODELVIEW12_ARB 0x872C +#define GL_MODELVIEW13_ARB 0x872D +#define GL_MODELVIEW14_ARB 0x872E +#define GL_MODELVIEW15_ARB 0x872F +#define GL_MODELVIEW16_ARB 0x8730 +#define GL_MODELVIEW17_ARB 0x8731 +#define GL_MODELVIEW18_ARB 0x8732 +#define GL_MODELVIEW19_ARB 0x8733 +#define GL_MODELVIEW20_ARB 0x8734 +#define GL_MODELVIEW21_ARB 0x8735 +#define GL_MODELVIEW22_ARB 0x8736 +#define GL_MODELVIEW23_ARB 0x8737 +#define GL_MODELVIEW24_ARB 0x8738 +#define GL_MODELVIEW25_ARB 0x8739 +#define GL_MODELVIEW26_ARB 0x873A +#define GL_MODELVIEW27_ARB 0x873B +#define GL_MODELVIEW28_ARB 0x873C +#define GL_MODELVIEW29_ARB 0x873D +#define GL_MODELVIEW30_ARB 0x873E +#define GL_MODELVIEW31_ARB 0x873F +typedef void (APIENTRYP PFNGLWEIGHTBVARBPROC) (GLint size, const GLbyte *weights); +typedef void (APIENTRYP PFNGLWEIGHTSVARBPROC) (GLint size, const GLshort *weights); +typedef void (APIENTRYP PFNGLWEIGHTIVARBPROC) (GLint size, const GLint *weights); +typedef void (APIENTRYP PFNGLWEIGHTFVARBPROC) (GLint size, const GLfloat *weights); +typedef void (APIENTRYP PFNGLWEIGHTDVARBPROC) (GLint size, const GLdouble *weights); +typedef void (APIENTRYP PFNGLWEIGHTUBVARBPROC) (GLint size, const GLubyte *weights); +typedef void (APIENTRYP PFNGLWEIGHTUSVARBPROC) (GLint size, const GLushort *weights); +typedef void (APIENTRYP PFNGLWEIGHTUIVARBPROC) (GLint size, const GLuint *weights); +typedef void (APIENTRYP PFNGLWEIGHTPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLVERTEXBLENDARBPROC) (GLint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWeightbvARB (GLint size, const GLbyte *weights); +GLAPI void APIENTRY glWeightsvARB (GLint size, const GLshort *weights); +GLAPI void APIENTRY glWeightivARB (GLint size, const GLint *weights); +GLAPI void APIENTRY glWeightfvARB (GLint size, const GLfloat *weights); +GLAPI void APIENTRY glWeightdvARB (GLint size, const GLdouble *weights); +GLAPI void APIENTRY glWeightubvARB (GLint size, const GLubyte *weights); +GLAPI void APIENTRY glWeightusvARB (GLint size, const GLushort *weights); +GLAPI void APIENTRY glWeightuivARB (GLint size, const GLuint *weights); +GLAPI void APIENTRY glWeightPointerARB (GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glVertexBlendARB (GLint count); +#endif +#endif /* GL_ARB_vertex_blend */ + +#ifndef GL_ARB_vertex_buffer_object +#define GL_ARB_vertex_buffer_object 1 +typedef khronos_ssize_t GLsizeiptrARB; +typedef khronos_intptr_t GLintptrARB; +#define GL_BUFFER_SIZE_ARB 0x8764 +#define GL_BUFFER_USAGE_ARB 0x8765 +#define GL_ARRAY_BUFFER_ARB 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER_ARB 0x8893 +#define GL_ARRAY_BUFFER_BINDING_ARB 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB 0x8895 +#define GL_VERTEX_ARRAY_BUFFER_BINDING_ARB 0x8896 +#define GL_NORMAL_ARRAY_BUFFER_BINDING_ARB 0x8897 +#define GL_COLOR_ARRAY_BUFFER_BINDING_ARB 0x8898 +#define GL_INDEX_ARRAY_BUFFER_BINDING_ARB 0x8899 +#define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB 0x889A +#define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB 0x889B +#define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB 0x889C +#define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB 0x889D +#define GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB 0x889E +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB 0x889F +#define GL_READ_ONLY_ARB 0x88B8 +#define GL_WRITE_ONLY_ARB 0x88B9 +#define GL_READ_WRITE_ARB 0x88BA +#define GL_BUFFER_ACCESS_ARB 0x88BB +#define GL_BUFFER_MAPPED_ARB 0x88BC +#define GL_BUFFER_MAP_POINTER_ARB 0x88BD +#define GL_STREAM_DRAW_ARB 0x88E0 +#define GL_STREAM_READ_ARB 0x88E1 +#define GL_STREAM_COPY_ARB 0x88E2 +#define GL_STATIC_DRAW_ARB 0x88E4 +#define GL_STATIC_READ_ARB 0x88E5 +#define GL_STATIC_COPY_ARB 0x88E6 +#define GL_DYNAMIC_DRAW_ARB 0x88E8 +#define GL_DYNAMIC_READ_ARB 0x88E9 +#define GL_DYNAMIC_COPY_ARB 0x88EA +typedef void (APIENTRYP PFNGLBINDBUFFERARBPROC) (GLenum target, GLuint buffer); +typedef void (APIENTRYP PFNGLDELETEBUFFERSARBPROC) (GLsizei n, const GLuint *buffers); +typedef void (APIENTRYP PFNGLGENBUFFERSARBPROC) (GLsizei n, GLuint *buffers); +typedef GLboolean (APIENTRYP PFNGLISBUFFERARBPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLBUFFERDATAARBPROC) (GLenum target, GLsizeiptrARB size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const void *data); +typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, void *data); +typedef void *(APIENTRYP PFNGLMAPBUFFERARBPROC) (GLenum target, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERARBPROC) (GLenum target); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVARBPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVARBPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindBufferARB (GLenum target, GLuint buffer); +GLAPI void APIENTRY glDeleteBuffersARB (GLsizei n, const GLuint *buffers); +GLAPI void APIENTRY glGenBuffersARB (GLsizei n, GLuint *buffers); +GLAPI GLboolean APIENTRY glIsBufferARB (GLuint buffer); +GLAPI void APIENTRY glBufferDataARB (GLenum target, GLsizeiptrARB size, const void *data, GLenum usage); +GLAPI void APIENTRY glBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const void *data); +GLAPI void APIENTRY glGetBufferSubDataARB (GLenum target, GLintptrARB offset, GLsizeiptrARB size, void *data); +GLAPI void *APIENTRY glMapBufferARB (GLenum target, GLenum access); +GLAPI GLboolean APIENTRY glUnmapBufferARB (GLenum target); +GLAPI void APIENTRY glGetBufferParameterivARB (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetBufferPointervARB (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_ARB_vertex_buffer_object */ + +#ifndef GL_ARB_vertex_program +#define GL_ARB_vertex_program 1 +#define GL_COLOR_SUM_ARB 0x8458 +#define GL_VERTEX_PROGRAM_ARB 0x8620 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB_ARB 0x8626 +#define GL_VERTEX_PROGRAM_POINT_SIZE_ARB 0x8642 +#define GL_VERTEX_PROGRAM_TWO_SIDE_ARB 0x8643 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB 0x8645 +#define GL_MAX_VERTEX_ATTRIBS_ARB 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB 0x886A +#define GL_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B0 +#define GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B1 +#define GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B2 +#define GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B3 +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DARBPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FARBPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SARBPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DARBPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FARBPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SARBPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVARBPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVARBPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBARBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVARBPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVARBPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVARBPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVARBPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVARBPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVARBPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVARBPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVARBPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVARBPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVARBPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVARBPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERARBPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVARBPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVARBPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVARBPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVARBPROC) (GLuint index, GLenum pname, void **pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttrib1dARB (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1fARB (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1sARB (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2dARB (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2fARB (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2sARB (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3dARB (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3fARB (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3sARB (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4NbvARB (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4NivARB (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4NsvARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4NubARB (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4NubvARB (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4NuivARB (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4NusvARB (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttrib4bvARB (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttrib4dARB (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dvARB (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4fARB (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fvARB (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4ivARB (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttrib4sARB (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4svARB (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubvARB (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttrib4uivARB (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttrib4usvARB (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribPointerARB (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glEnableVertexAttribArrayARB (GLuint index); +GLAPI void APIENTRY glDisableVertexAttribArrayARB (GLuint index); +GLAPI void APIENTRY glGetVertexAttribdvARB (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfvARB (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribivARB (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointervARB (GLuint index, GLenum pname, void **pointer); +#endif +#endif /* GL_ARB_vertex_program */ + +#ifndef GL_ARB_vertex_shader +#define GL_ARB_vertex_shader 1 +#define GL_VERTEX_SHADER_ARB 0x8B31 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB 0x8B4A +#define GL_MAX_VARYING_FLOATS_ARB 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB 0x8B4D +#define GL_OBJECT_ACTIVE_ATTRIBUTES_ARB 0x8B89 +#define GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB 0x8B8A +typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONARBPROC) (GLhandleARB programObj, GLuint index, const GLcharARB *name); +typedef void (APIENTRYP PFNGLGETACTIVEATTRIBARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindAttribLocationARB (GLhandleARB programObj, GLuint index, const GLcharARB *name); +GLAPI void APIENTRY glGetActiveAttribARB (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei *length, GLint *size, GLenum *type, GLcharARB *name); +GLAPI GLint APIENTRY glGetAttribLocationARB (GLhandleARB programObj, const GLcharARB *name); +#endif +#endif /* GL_ARB_vertex_shader */ + +#ifndef GL_ARB_vertex_type_10f_11f_11f_rev +#define GL_ARB_vertex_type_10f_11f_11f_rev 1 +#endif /* GL_ARB_vertex_type_10f_11f_11f_rev */ + +#ifndef GL_ARB_vertex_type_2_10_10_10_rev +#define GL_ARB_vertex_type_2_10_10_10_rev 1 +#endif /* GL_ARB_vertex_type_2_10_10_10_rev */ + +#ifndef GL_ARB_viewport_array +#define GL_ARB_viewport_array 1 +typedef void (APIENTRYP PFNGLDEPTHRANGEARRAYDVNVPROC) (GLuint first, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEINDEXEDDNVPROC) (GLuint index, GLdouble n, GLdouble f); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthRangeArraydvNV (GLuint first, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glDepthRangeIndexeddNV (GLuint index, GLdouble n, GLdouble f); +#endif +#endif /* GL_ARB_viewport_array */ + +#ifndef GL_ARB_window_pos +#define GL_ARB_window_pos 1 +typedef void (APIENTRYP PFNGLWINDOWPOS2DARBPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVARBPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FARBPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVARBPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IARBPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVARBPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SARBPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVARBPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DARBPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVARBPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FARBPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVARBPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IARBPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVARBPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SARBPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVARBPROC) (const GLshort *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowPos2dARB (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dvARB (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2fARB (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fvARB (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2iARB (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2ivARB (const GLint *v); +GLAPI void APIENTRY glWindowPos2sARB (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2svARB (const GLshort *v); +GLAPI void APIENTRY glWindowPos3dARB (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dvARB (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3fARB (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fvARB (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3iARB (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3ivARB (const GLint *v); +GLAPI void APIENTRY glWindowPos3sARB (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3svARB (const GLshort *v); +#endif +#endif /* GL_ARB_window_pos */ + +#ifndef GL_KHR_blend_equation_advanced +#define GL_KHR_blend_equation_advanced 1 +#define GL_MULTIPLY_KHR 0x9294 +#define GL_SCREEN_KHR 0x9295 +#define GL_OVERLAY_KHR 0x9296 +#define GL_DARKEN_KHR 0x9297 +#define GL_LIGHTEN_KHR 0x9298 +#define GL_COLORDODGE_KHR 0x9299 +#define GL_COLORBURN_KHR 0x929A +#define GL_HARDLIGHT_KHR 0x929B +#define GL_SOFTLIGHT_KHR 0x929C +#define GL_DIFFERENCE_KHR 0x929E +#define GL_EXCLUSION_KHR 0x92A0 +#define GL_HSL_HUE_KHR 0x92AD +#define GL_HSL_SATURATION_KHR 0x92AE +#define GL_HSL_COLOR_KHR 0x92AF +#define GL_HSL_LUMINOSITY_KHR 0x92B0 +typedef void (APIENTRYP PFNGLBLENDBARRIERKHRPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendBarrierKHR (void); +#endif +#endif /* GL_KHR_blend_equation_advanced */ + +#ifndef GL_KHR_blend_equation_advanced_coherent +#define GL_KHR_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_KHR 0x9285 +#endif /* GL_KHR_blend_equation_advanced_coherent */ + +#ifndef GL_KHR_context_flush_control +#define GL_KHR_context_flush_control 1 +#endif /* GL_KHR_context_flush_control */ + +#ifndef GL_KHR_debug +#define GL_KHR_debug 1 +#endif /* GL_KHR_debug */ + +#ifndef GL_KHR_no_error +#define GL_KHR_no_error 1 +#define GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 +#endif /* GL_KHR_no_error */ + +#ifndef GL_KHR_parallel_shader_compile +#define GL_KHR_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_KHR 0x91B0 +#define GL_COMPLETION_STATUS_KHR 0x91B1 +typedef void (APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSKHRPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMaxShaderCompilerThreadsKHR (GLuint count); +#endif +#endif /* GL_KHR_parallel_shader_compile */ + +#ifndef GL_KHR_robust_buffer_access_behavior +#define GL_KHR_robust_buffer_access_behavior 1 +#endif /* GL_KHR_robust_buffer_access_behavior */ + +#ifndef GL_KHR_robustness +#define GL_KHR_robustness 1 +#define GL_CONTEXT_ROBUST_ACCESS 0x90F3 +#endif /* GL_KHR_robustness */ + +#ifndef GL_KHR_shader_subgroup +#define GL_KHR_shader_subgroup 1 +#define GL_SUBGROUP_SIZE_KHR 0x9532 +#define GL_SUBGROUP_SUPPORTED_STAGES_KHR 0x9533 +#define GL_SUBGROUP_SUPPORTED_FEATURES_KHR 0x9534 +#define GL_SUBGROUP_QUAD_ALL_STAGES_KHR 0x9535 +#define GL_SUBGROUP_FEATURE_BASIC_BIT_KHR 0x00000001 +#define GL_SUBGROUP_FEATURE_VOTE_BIT_KHR 0x00000002 +#define GL_SUBGROUP_FEATURE_ARITHMETIC_BIT_KHR 0x00000004 +#define GL_SUBGROUP_FEATURE_BALLOT_BIT_KHR 0x00000008 +#define GL_SUBGROUP_FEATURE_SHUFFLE_BIT_KHR 0x00000010 +#define GL_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT_KHR 0x00000020 +#define GL_SUBGROUP_FEATURE_CLUSTERED_BIT_KHR 0x00000040 +#define GL_SUBGROUP_FEATURE_QUAD_BIT_KHR 0x00000080 +#endif /* GL_KHR_shader_subgroup */ + +#ifndef GL_KHR_texture_compression_astc_hdr +#define GL_KHR_texture_compression_astc_hdr 1 +#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 +#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1 +#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2 +#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3 +#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4 +#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5 +#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6 +#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7 +#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8 +#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 +#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA +#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB +#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC +#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD +#endif /* GL_KHR_texture_compression_astc_hdr */ + +#ifndef GL_KHR_texture_compression_astc_ldr +#define GL_KHR_texture_compression_astc_ldr 1 +#endif /* GL_KHR_texture_compression_astc_ldr */ + +#ifndef GL_KHR_texture_compression_astc_sliced_3d +#define GL_KHR_texture_compression_astc_sliced_3d 1 +#endif /* GL_KHR_texture_compression_astc_sliced_3d */ + +#ifndef GL_OES_byte_coordinates +#define GL_OES_byte_coordinates 1 +typedef void (APIENTRYP PFNGLMULTITEXCOORD1BOESPROC) (GLenum texture, GLbyte s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2BOESPROC) (GLenum texture, GLbyte s, GLbyte t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3BOESPROC) (GLenum texture, GLbyte s, GLbyte t, GLbyte r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4BOESPROC) (GLenum texture, GLbyte s, GLbyte t, GLbyte r, GLbyte q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4BVOESPROC) (GLenum texture, const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD1BOESPROC) (GLbyte s); +typedef void (APIENTRYP PFNGLTEXCOORD1BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD2BOESPROC) (GLbyte s, GLbyte t); +typedef void (APIENTRYP PFNGLTEXCOORD2BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD3BOESPROC) (GLbyte s, GLbyte t, GLbyte r); +typedef void (APIENTRYP PFNGLTEXCOORD3BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLTEXCOORD4BOESPROC) (GLbyte s, GLbyte t, GLbyte r, GLbyte q); +typedef void (APIENTRYP PFNGLTEXCOORD4BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLVERTEX2BOESPROC) (GLbyte x, GLbyte y); +typedef void (APIENTRYP PFNGLVERTEX2BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLVERTEX3BOESPROC) (GLbyte x, GLbyte y, GLbyte z); +typedef void (APIENTRYP PFNGLVERTEX3BVOESPROC) (const GLbyte *coords); +typedef void (APIENTRYP PFNGLVERTEX4BOESPROC) (GLbyte x, GLbyte y, GLbyte z, GLbyte w); +typedef void (APIENTRYP PFNGLVERTEX4BVOESPROC) (const GLbyte *coords); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiTexCoord1bOES (GLenum texture, GLbyte s); +GLAPI void APIENTRY glMultiTexCoord1bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glMultiTexCoord2bOES (GLenum texture, GLbyte s, GLbyte t); +GLAPI void APIENTRY glMultiTexCoord2bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glMultiTexCoord3bOES (GLenum texture, GLbyte s, GLbyte t, GLbyte r); +GLAPI void APIENTRY glMultiTexCoord3bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glMultiTexCoord4bOES (GLenum texture, GLbyte s, GLbyte t, GLbyte r, GLbyte q); +GLAPI void APIENTRY glMultiTexCoord4bvOES (GLenum texture, const GLbyte *coords); +GLAPI void APIENTRY glTexCoord1bOES (GLbyte s); +GLAPI void APIENTRY glTexCoord1bvOES (const GLbyte *coords); +GLAPI void APIENTRY glTexCoord2bOES (GLbyte s, GLbyte t); +GLAPI void APIENTRY glTexCoord2bvOES (const GLbyte *coords); +GLAPI void APIENTRY glTexCoord3bOES (GLbyte s, GLbyte t, GLbyte r); +GLAPI void APIENTRY glTexCoord3bvOES (const GLbyte *coords); +GLAPI void APIENTRY glTexCoord4bOES (GLbyte s, GLbyte t, GLbyte r, GLbyte q); +GLAPI void APIENTRY glTexCoord4bvOES (const GLbyte *coords); +GLAPI void APIENTRY glVertex2bOES (GLbyte x, GLbyte y); +GLAPI void APIENTRY glVertex2bvOES (const GLbyte *coords); +GLAPI void APIENTRY glVertex3bOES (GLbyte x, GLbyte y, GLbyte z); +GLAPI void APIENTRY glVertex3bvOES (const GLbyte *coords); +GLAPI void APIENTRY glVertex4bOES (GLbyte x, GLbyte y, GLbyte z, GLbyte w); +GLAPI void APIENTRY glVertex4bvOES (const GLbyte *coords); +#endif +#endif /* GL_OES_byte_coordinates */ + +#ifndef GL_OES_compressed_paletted_texture +#define GL_OES_compressed_paletted_texture 1 +#define GL_PALETTE4_RGB8_OES 0x8B90 +#define GL_PALETTE4_RGBA8_OES 0x8B91 +#define GL_PALETTE4_R5_G6_B5_OES 0x8B92 +#define GL_PALETTE4_RGBA4_OES 0x8B93 +#define GL_PALETTE4_RGB5_A1_OES 0x8B94 +#define GL_PALETTE8_RGB8_OES 0x8B95 +#define GL_PALETTE8_RGBA8_OES 0x8B96 +#define GL_PALETTE8_R5_G6_B5_OES 0x8B97 +#define GL_PALETTE8_RGBA4_OES 0x8B98 +#define GL_PALETTE8_RGB5_A1_OES 0x8B99 +#endif /* GL_OES_compressed_paletted_texture */ + +#ifndef GL_OES_fixed_point +#define GL_OES_fixed_point 1 +typedef khronos_int32_t GLfixed; +#define GL_FIXED_OES 0x140C +typedef void (APIENTRYP PFNGLALPHAFUNCXOESPROC) (GLenum func, GLfixed ref); +typedef void (APIENTRYP PFNGLCLEARCOLORXOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLCLEARDEPTHXOESPROC) (GLfixed depth); +typedef void (APIENTRYP PFNGLCLIPPLANEXOESPROC) (GLenum plane, const GLfixed *equation); +typedef void (APIENTRYP PFNGLCOLOR4XOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLDEPTHRANGEXOESPROC) (GLfixed n, GLfixed f); +typedef void (APIENTRYP PFNGLFOGXOESPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLFOGXVOESPROC) (GLenum pname, const GLfixed *param); +typedef void (APIENTRYP PFNGLFRUSTUMXOESPROC) (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +typedef void (APIENTRYP PFNGLGETCLIPPLANEXOESPROC) (GLenum plane, GLfixed *equation); +typedef void (APIENTRYP PFNGLGETFIXEDVOESPROC) (GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETTEXENVXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLLIGHTMODELXOESPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLLIGHTMODELXVOESPROC) (GLenum pname, const GLfixed *param); +typedef void (APIENTRYP PFNGLLIGHTXOESPROC) (GLenum light, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLLIGHTXVOESPROC) (GLenum light, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLLINEWIDTHXOESPROC) (GLfixed width); +typedef void (APIENTRYP PFNGLLOADMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMATERIALXOESPROC) (GLenum face, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLMATERIALXVOESPROC) (GLenum face, GLenum pname, const GLfixed *param); +typedef void (APIENTRYP PFNGLMULTMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4XOESPROC) (GLenum texture, GLfixed s, GLfixed t, GLfixed r, GLfixed q); +typedef void (APIENTRYP PFNGLNORMAL3XOESPROC) (GLfixed nx, GLfixed ny, GLfixed nz); +typedef void (APIENTRYP PFNGLORTHOXOESPROC) (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +typedef void (APIENTRYP PFNGLPOINTPARAMETERXVOESPROC) (GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLPOINTSIZEXOESPROC) (GLfixed size); +typedef void (APIENTRYP PFNGLPOLYGONOFFSETXOESPROC) (GLfixed factor, GLfixed units); +typedef void (APIENTRYP PFNGLROTATEXOESPROC) (GLfixed angle, GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLSCALEXOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLTEXENVXOESPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLTEXENVXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERXOESPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLTEXPARAMETERXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLTRANSLATEXOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLACCUMXOESPROC) (GLenum op, GLfixed value); +typedef void (APIENTRYP PFNGLBITMAPXOESPROC) (GLsizei width, GLsizei height, GLfixed xorig, GLfixed yorig, GLfixed xmove, GLfixed ymove, const GLubyte *bitmap); +typedef void (APIENTRYP PFNGLBLENDCOLORXOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLCLEARACCUMXOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (APIENTRYP PFNGLCOLOR3XOESPROC) (GLfixed red, GLfixed green, GLfixed blue); +typedef void (APIENTRYP PFNGLCOLOR3XVOESPROC) (const GLfixed *components); +typedef void (APIENTRYP PFNGLCOLOR4XVOESPROC) (const GLfixed *components); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERXOESPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLEVALCOORD1XOESPROC) (GLfixed u); +typedef void (APIENTRYP PFNGLEVALCOORD1XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLEVALCOORD2XOESPROC) (GLfixed u, GLfixed v); +typedef void (APIENTRYP PFNGLEVALCOORD2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLFEEDBACKBUFFERXOESPROC) (GLsizei n, GLenum type, const GLfixed *buffer); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERXVOESPROC) (GLenum target, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETLIGHTXOESPROC) (GLenum light, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETMAPXVOESPROC) (GLenum target, GLenum query, GLfixed *v); +typedef void (APIENTRYP PFNGLGETMATERIALXOESPROC) (GLenum face, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLGETPIXELMAPXVPROC) (GLenum map, GLint size, GLfixed *values); +typedef void (APIENTRYP PFNGLGETTEXGENXVOESPROC) (GLenum coord, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERXVOESPROC) (GLenum target, GLint level, GLenum pname, GLfixed *params); +typedef void (APIENTRYP PFNGLINDEXXOESPROC) (GLfixed component); +typedef void (APIENTRYP PFNGLINDEXXVOESPROC) (const GLfixed *component); +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMAP1XOESPROC) (GLenum target, GLfixed u1, GLfixed u2, GLint stride, GLint order, GLfixed points); +typedef void (APIENTRYP PFNGLMAP2XOESPROC) (GLenum target, GLfixed u1, GLfixed u2, GLint ustride, GLint uorder, GLfixed v1, GLfixed v2, GLint vstride, GLint vorder, GLfixed points); +typedef void (APIENTRYP PFNGLMAPGRID1XOESPROC) (GLint n, GLfixed u1, GLfixed u2); +typedef void (APIENTRYP PFNGLMAPGRID2XOESPROC) (GLint n, GLfixed u1, GLfixed u2, GLfixed v1, GLfixed v2); +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXXOESPROC) (const GLfixed *m); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1XOESPROC) (GLenum texture, GLfixed s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2XOESPROC) (GLenum texture, GLfixed s, GLfixed t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3XOESPROC) (GLenum texture, GLfixed s, GLfixed t, GLfixed r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4XVOESPROC) (GLenum texture, const GLfixed *coords); +typedef void (APIENTRYP PFNGLNORMAL3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLPASSTHROUGHXOESPROC) (GLfixed token); +typedef void (APIENTRYP PFNGLPIXELMAPXPROC) (GLenum map, GLint size, const GLfixed *values); +typedef void (APIENTRYP PFNGLPIXELSTOREXPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLPIXELTRANSFERXOESPROC) (GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLPIXELZOOMXOESPROC) (GLfixed xfactor, GLfixed yfactor); +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESXOESPROC) (GLsizei n, const GLuint *textures, const GLfixed *priorities); +typedef void (APIENTRYP PFNGLRASTERPOS2XOESPROC) (GLfixed x, GLfixed y); +typedef void (APIENTRYP PFNGLRASTERPOS2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLRASTERPOS3XOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLRASTERPOS3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLRASTERPOS4XOESPROC) (GLfixed x, GLfixed y, GLfixed z, GLfixed w); +typedef void (APIENTRYP PFNGLRASTERPOS4XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLRECTXOESPROC) (GLfixed x1, GLfixed y1, GLfixed x2, GLfixed y2); +typedef void (APIENTRYP PFNGLRECTXVOESPROC) (const GLfixed *v1, const GLfixed *v2); +typedef void (APIENTRYP PFNGLTEXCOORD1XOESPROC) (GLfixed s); +typedef void (APIENTRYP PFNGLTEXCOORD1XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXCOORD2XOESPROC) (GLfixed s, GLfixed t); +typedef void (APIENTRYP PFNGLTEXCOORD2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXCOORD3XOESPROC) (GLfixed s, GLfixed t, GLfixed r); +typedef void (APIENTRYP PFNGLTEXCOORD3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXCOORD4XOESPROC) (GLfixed s, GLfixed t, GLfixed r, GLfixed q); +typedef void (APIENTRYP PFNGLTEXCOORD4XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLTEXGENXOESPROC) (GLenum coord, GLenum pname, GLfixed param); +typedef void (APIENTRYP PFNGLTEXGENXVOESPROC) (GLenum coord, GLenum pname, const GLfixed *params); +typedef void (APIENTRYP PFNGLVERTEX2XOESPROC) (GLfixed x); +typedef void (APIENTRYP PFNGLVERTEX2XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLVERTEX3XOESPROC) (GLfixed x, GLfixed y); +typedef void (APIENTRYP PFNGLVERTEX3XVOESPROC) (const GLfixed *coords); +typedef void (APIENTRYP PFNGLVERTEX4XOESPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (APIENTRYP PFNGLVERTEX4XVOESPROC) (const GLfixed *coords); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAlphaFuncxOES (GLenum func, GLfixed ref); +GLAPI void APIENTRY glClearColorxOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glClearDepthxOES (GLfixed depth); +GLAPI void APIENTRY glClipPlanexOES (GLenum plane, const GLfixed *equation); +GLAPI void APIENTRY glColor4xOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glDepthRangexOES (GLfixed n, GLfixed f); +GLAPI void APIENTRY glFogxOES (GLenum pname, GLfixed param); +GLAPI void APIENTRY glFogxvOES (GLenum pname, const GLfixed *param); +GLAPI void APIENTRY glFrustumxOES (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +GLAPI void APIENTRY glGetClipPlanexOES (GLenum plane, GLfixed *equation); +GLAPI void APIENTRY glGetFixedvOES (GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetTexEnvxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetTexParameterxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glLightModelxOES (GLenum pname, GLfixed param); +GLAPI void APIENTRY glLightModelxvOES (GLenum pname, const GLfixed *param); +GLAPI void APIENTRY glLightxOES (GLenum light, GLenum pname, GLfixed param); +GLAPI void APIENTRY glLightxvOES (GLenum light, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glLineWidthxOES (GLfixed width); +GLAPI void APIENTRY glLoadMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMaterialxOES (GLenum face, GLenum pname, GLfixed param); +GLAPI void APIENTRY glMaterialxvOES (GLenum face, GLenum pname, const GLfixed *param); +GLAPI void APIENTRY glMultMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMultiTexCoord4xOES (GLenum texture, GLfixed s, GLfixed t, GLfixed r, GLfixed q); +GLAPI void APIENTRY glNormal3xOES (GLfixed nx, GLfixed ny, GLfixed nz); +GLAPI void APIENTRY glOrthoxOES (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f); +GLAPI void APIENTRY glPointParameterxvOES (GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glPointSizexOES (GLfixed size); +GLAPI void APIENTRY glPolygonOffsetxOES (GLfixed factor, GLfixed units); +GLAPI void APIENTRY glRotatexOES (GLfixed angle, GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glScalexOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glTexEnvxOES (GLenum target, GLenum pname, GLfixed param); +GLAPI void APIENTRY glTexEnvxvOES (GLenum target, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glTexParameterxOES (GLenum target, GLenum pname, GLfixed param); +GLAPI void APIENTRY glTexParameterxvOES (GLenum target, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glTranslatexOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glAccumxOES (GLenum op, GLfixed value); +GLAPI void APIENTRY glBitmapxOES (GLsizei width, GLsizei height, GLfixed xorig, GLfixed yorig, GLfixed xmove, GLfixed ymove, const GLubyte *bitmap); +GLAPI void APIENTRY glBlendColorxOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glClearAccumxOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +GLAPI void APIENTRY glColor3xOES (GLfixed red, GLfixed green, GLfixed blue); +GLAPI void APIENTRY glColor3xvOES (const GLfixed *components); +GLAPI void APIENTRY glColor4xvOES (const GLfixed *components); +GLAPI void APIENTRY glConvolutionParameterxOES (GLenum target, GLenum pname, GLfixed param); +GLAPI void APIENTRY glConvolutionParameterxvOES (GLenum target, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glEvalCoord1xOES (GLfixed u); +GLAPI void APIENTRY glEvalCoord1xvOES (const GLfixed *coords); +GLAPI void APIENTRY glEvalCoord2xOES (GLfixed u, GLfixed v); +GLAPI void APIENTRY glEvalCoord2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glFeedbackBufferxOES (GLsizei n, GLenum type, const GLfixed *buffer); +GLAPI void APIENTRY glGetConvolutionParameterxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetHistogramParameterxvOES (GLenum target, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetLightxOES (GLenum light, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetMapxvOES (GLenum target, GLenum query, GLfixed *v); +GLAPI void APIENTRY glGetMaterialxOES (GLenum face, GLenum pname, GLfixed param); +GLAPI void APIENTRY glGetPixelMapxv (GLenum map, GLint size, GLfixed *values); +GLAPI void APIENTRY glGetTexGenxvOES (GLenum coord, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glGetTexLevelParameterxvOES (GLenum target, GLint level, GLenum pname, GLfixed *params); +GLAPI void APIENTRY glIndexxOES (GLfixed component); +GLAPI void APIENTRY glIndexxvOES (const GLfixed *component); +GLAPI void APIENTRY glLoadTransposeMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMap1xOES (GLenum target, GLfixed u1, GLfixed u2, GLint stride, GLint order, GLfixed points); +GLAPI void APIENTRY glMap2xOES (GLenum target, GLfixed u1, GLfixed u2, GLint ustride, GLint uorder, GLfixed v1, GLfixed v2, GLint vstride, GLint vorder, GLfixed points); +GLAPI void APIENTRY glMapGrid1xOES (GLint n, GLfixed u1, GLfixed u2); +GLAPI void APIENTRY glMapGrid2xOES (GLint n, GLfixed u1, GLfixed u2, GLfixed v1, GLfixed v2); +GLAPI void APIENTRY glMultTransposeMatrixxOES (const GLfixed *m); +GLAPI void APIENTRY glMultiTexCoord1xOES (GLenum texture, GLfixed s); +GLAPI void APIENTRY glMultiTexCoord1xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glMultiTexCoord2xOES (GLenum texture, GLfixed s, GLfixed t); +GLAPI void APIENTRY glMultiTexCoord2xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glMultiTexCoord3xOES (GLenum texture, GLfixed s, GLfixed t, GLfixed r); +GLAPI void APIENTRY glMultiTexCoord3xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glMultiTexCoord4xvOES (GLenum texture, const GLfixed *coords); +GLAPI void APIENTRY glNormal3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glPassThroughxOES (GLfixed token); +GLAPI void APIENTRY glPixelMapx (GLenum map, GLint size, const GLfixed *values); +GLAPI void APIENTRY glPixelStorex (GLenum pname, GLfixed param); +GLAPI void APIENTRY glPixelTransferxOES (GLenum pname, GLfixed param); +GLAPI void APIENTRY glPixelZoomxOES (GLfixed xfactor, GLfixed yfactor); +GLAPI void APIENTRY glPrioritizeTexturesxOES (GLsizei n, const GLuint *textures, const GLfixed *priorities); +GLAPI void APIENTRY glRasterPos2xOES (GLfixed x, GLfixed y); +GLAPI void APIENTRY glRasterPos2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glRasterPos3xOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glRasterPos3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glRasterPos4xOES (GLfixed x, GLfixed y, GLfixed z, GLfixed w); +GLAPI void APIENTRY glRasterPos4xvOES (const GLfixed *coords); +GLAPI void APIENTRY glRectxOES (GLfixed x1, GLfixed y1, GLfixed x2, GLfixed y2); +GLAPI void APIENTRY glRectxvOES (const GLfixed *v1, const GLfixed *v2); +GLAPI void APIENTRY glTexCoord1xOES (GLfixed s); +GLAPI void APIENTRY glTexCoord1xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexCoord2xOES (GLfixed s, GLfixed t); +GLAPI void APIENTRY glTexCoord2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexCoord3xOES (GLfixed s, GLfixed t, GLfixed r); +GLAPI void APIENTRY glTexCoord3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexCoord4xOES (GLfixed s, GLfixed t, GLfixed r, GLfixed q); +GLAPI void APIENTRY glTexCoord4xvOES (const GLfixed *coords); +GLAPI void APIENTRY glTexGenxOES (GLenum coord, GLenum pname, GLfixed param); +GLAPI void APIENTRY glTexGenxvOES (GLenum coord, GLenum pname, const GLfixed *params); +GLAPI void APIENTRY glVertex2xOES (GLfixed x); +GLAPI void APIENTRY glVertex2xvOES (const GLfixed *coords); +GLAPI void APIENTRY glVertex3xOES (GLfixed x, GLfixed y); +GLAPI void APIENTRY glVertex3xvOES (const GLfixed *coords); +GLAPI void APIENTRY glVertex4xOES (GLfixed x, GLfixed y, GLfixed z); +GLAPI void APIENTRY glVertex4xvOES (const GLfixed *coords); +#endif +#endif /* GL_OES_fixed_point */ + +#ifndef GL_OES_query_matrix +#define GL_OES_query_matrix 1 +typedef GLbitfield (APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed *mantissa, GLint *exponent); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLbitfield APIENTRY glQueryMatrixxOES (GLfixed *mantissa, GLint *exponent); +#endif +#endif /* GL_OES_query_matrix */ + +#ifndef GL_OES_read_format +#define GL_OES_read_format 1 +#define GL_IMPLEMENTATION_COLOR_READ_TYPE_OES 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES 0x8B9B +#endif /* GL_OES_read_format */ + +#ifndef GL_OES_single_precision +#define GL_OES_single_precision 1 +typedef void (APIENTRYP PFNGLCLEARDEPTHFOESPROC) (GLclampf depth); +typedef void (APIENTRYP PFNGLCLIPPLANEFOESPROC) (GLenum plane, const GLfloat *equation); +typedef void (APIENTRYP PFNGLDEPTHRANGEFOESPROC) (GLclampf n, GLclampf f); +typedef void (APIENTRYP PFNGLFRUSTUMFOESPROC) (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +typedef void (APIENTRYP PFNGLGETCLIPPLANEFOESPROC) (GLenum plane, GLfloat *equation); +typedef void (APIENTRYP PFNGLORTHOFOESPROC) (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClearDepthfOES (GLclampf depth); +GLAPI void APIENTRY glClipPlanefOES (GLenum plane, const GLfloat *equation); +GLAPI void APIENTRY glDepthRangefOES (GLclampf n, GLclampf f); +GLAPI void APIENTRY glFrustumfOES (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +GLAPI void APIENTRY glGetClipPlanefOES (GLenum plane, GLfloat *equation); +GLAPI void APIENTRY glOrthofOES (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f); +#endif +#endif /* GL_OES_single_precision */ + +#ifndef GL_3DFX_multisample +#define GL_3DFX_multisample 1 +#define GL_MULTISAMPLE_3DFX 0x86B2 +#define GL_SAMPLE_BUFFERS_3DFX 0x86B3 +#define GL_SAMPLES_3DFX 0x86B4 +#define GL_MULTISAMPLE_BIT_3DFX 0x20000000 +#endif /* GL_3DFX_multisample */ + +#ifndef GL_3DFX_tbuffer +#define GL_3DFX_tbuffer 1 +typedef void (APIENTRYP PFNGLTBUFFERMASK3DFXPROC) (GLuint mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTbufferMask3DFX (GLuint mask); +#endif +#endif /* GL_3DFX_tbuffer */ + +#ifndef GL_3DFX_texture_compression_FXT1 +#define GL_3DFX_texture_compression_FXT1 1 +#define GL_COMPRESSED_RGB_FXT1_3DFX 0x86B0 +#define GL_COMPRESSED_RGBA_FXT1_3DFX 0x86B1 +#endif /* GL_3DFX_texture_compression_FXT1 */ + +#ifndef GL_AMD_blend_minmax_factor +#define GL_AMD_blend_minmax_factor 1 +#define GL_FACTOR_MIN_AMD 0x901C +#define GL_FACTOR_MAX_AMD 0x901D +#endif /* GL_AMD_blend_minmax_factor */ + +#ifndef GL_AMD_conservative_depth +#define GL_AMD_conservative_depth 1 +#endif /* GL_AMD_conservative_depth */ + +#ifndef GL_AMD_debug_output +#define GL_AMD_debug_output 1 +typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,GLenum category,GLenum severity,GLsizei length,const GLchar *message,void *userParam); +#define GL_MAX_DEBUG_MESSAGE_LENGTH_AMD 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_AMD 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_AMD 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_AMD 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_AMD 0x9147 +#define GL_DEBUG_SEVERITY_LOW_AMD 0x9148 +#define GL_DEBUG_CATEGORY_API_ERROR_AMD 0x9149 +#define GL_DEBUG_CATEGORY_WINDOW_SYSTEM_AMD 0x914A +#define GL_DEBUG_CATEGORY_DEPRECATION_AMD 0x914B +#define GL_DEBUG_CATEGORY_UNDEFINED_BEHAVIOR_AMD 0x914C +#define GL_DEBUG_CATEGORY_PERFORMANCE_AMD 0x914D +#define GL_DEBUG_CATEGORY_SHADER_COMPILER_AMD 0x914E +#define GL_DEBUG_CATEGORY_APPLICATION_AMD 0x914F +#define GL_DEBUG_CATEGORY_OTHER_AMD 0x9150 +typedef void (APIENTRYP PFNGLDEBUGMESSAGEENABLEAMDPROC) (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTAMDPROC) (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf); +typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKAMDPROC) (GLDEBUGPROCAMD callback, void *userParam); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGAMDPROC) (GLuint count, GLsizei bufSize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDebugMessageEnableAMD (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GLAPI void APIENTRY glDebugMessageInsertAMD (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf); +GLAPI void APIENTRY glDebugMessageCallbackAMD (GLDEBUGPROCAMD callback, void *userParam); +GLAPI GLuint APIENTRY glGetDebugMessageLogAMD (GLuint count, GLsizei bufSize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); +#endif +#endif /* GL_AMD_debug_output */ + +#ifndef GL_AMD_depth_clamp_separate +#define GL_AMD_depth_clamp_separate 1 +#define GL_DEPTH_CLAMP_NEAR_AMD 0x901E +#define GL_DEPTH_CLAMP_FAR_AMD 0x901F +#endif /* GL_AMD_depth_clamp_separate */ + +#ifndef GL_AMD_draw_buffers_blend +#define GL_AMD_draw_buffers_blend 1 +typedef void (APIENTRYP PFNGLBLENDFUNCINDEXEDAMDPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (APIENTRYP PFNGLBLENDEQUATIONINDEXEDAMDPROC) (GLuint buf, GLenum mode); +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncIndexedAMD (GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY glBlendFuncSeparateIndexedAMD (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GLAPI void APIENTRY glBlendEquationIndexedAMD (GLuint buf, GLenum mode); +GLAPI void APIENTRY glBlendEquationSeparateIndexedAMD (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +#endif +#endif /* GL_AMD_draw_buffers_blend */ + +#ifndef GL_AMD_framebuffer_multisample_advanced +#define GL_AMD_framebuffer_multisample_advanced 1 +#define GL_RENDERBUFFER_STORAGE_SAMPLES_AMD 0x91B2 +#define GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD 0x91B3 +#define GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD 0x91B4 +#define GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD 0x91B5 +#define GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B6 +#define GL_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B7 +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleAdvancedAMD (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleAdvancedAMD (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_AMD_framebuffer_multisample_advanced */ + +#ifndef GL_AMD_framebuffer_sample_positions +#define GL_AMD_framebuffer_sample_positions 1 +#define GL_SUBSAMPLE_DISTANCE_AMD 0x883F +#define GL_PIXELS_PER_SAMPLE_PATTERN_X_AMD 0x91AE +#define GL_PIXELS_PER_SAMPLE_PATTERN_Y_AMD 0x91AF +#define GL_ALL_PIXELS_AMD 0xFFFFFFFF +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC) (GLenum target, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC) (GLuint framebuffer, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERFVAMDPROC) (GLenum target, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERFVAMDPROC) (GLuint framebuffer, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSamplePositionsfvAMD (GLenum target, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +GLAPI void APIENTRY glNamedFramebufferSamplePositionsfvAMD (GLuint framebuffer, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +GLAPI void APIENTRY glGetFramebufferParameterfvAMD (GLenum target, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +GLAPI void APIENTRY glGetNamedFramebufferParameterfvAMD (GLuint framebuffer, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +#endif +#endif /* GL_AMD_framebuffer_sample_positions */ + +#ifndef GL_AMD_gcn_shader +#define GL_AMD_gcn_shader 1 +#endif /* GL_AMD_gcn_shader */ + +#ifndef GL_AMD_gpu_shader_half_float +#define GL_AMD_gpu_shader_half_float 1 +#define GL_FLOAT16_NV 0x8FF8 +#define GL_FLOAT16_VEC2_NV 0x8FF9 +#define GL_FLOAT16_VEC3_NV 0x8FFA +#define GL_FLOAT16_VEC4_NV 0x8FFB +#define GL_FLOAT16_MAT2_AMD 0x91C5 +#define GL_FLOAT16_MAT3_AMD 0x91C6 +#define GL_FLOAT16_MAT4_AMD 0x91C7 +#define GL_FLOAT16_MAT2x3_AMD 0x91C8 +#define GL_FLOAT16_MAT2x4_AMD 0x91C9 +#define GL_FLOAT16_MAT3x2_AMD 0x91CA +#define GL_FLOAT16_MAT3x4_AMD 0x91CB +#define GL_FLOAT16_MAT4x2_AMD 0x91CC +#define GL_FLOAT16_MAT4x3_AMD 0x91CD +#endif /* GL_AMD_gpu_shader_half_float */ + +#ifndef GL_AMD_gpu_shader_int16 +#define GL_AMD_gpu_shader_int16 1 +#endif /* GL_AMD_gpu_shader_int16 */ + +#ifndef GL_AMD_gpu_shader_int64 +#define GL_AMD_gpu_shader_int64 1 +typedef khronos_int64_t GLint64EXT; +#define GL_INT64_NV 0x140E +#define GL_UNSIGNED_INT64_NV 0x140F +#define GL_INT8_NV 0x8FE0 +#define GL_INT8_VEC2_NV 0x8FE1 +#define GL_INT8_VEC3_NV 0x8FE2 +#define GL_INT8_VEC4_NV 0x8FE3 +#define GL_INT16_NV 0x8FE4 +#define GL_INT16_VEC2_NV 0x8FE5 +#define GL_INT16_VEC3_NV 0x8FE6 +#define GL_INT16_VEC4_NV 0x8FE7 +#define GL_INT64_VEC2_NV 0x8FE9 +#define GL_INT64_VEC3_NV 0x8FEA +#define GL_INT64_VEC4_NV 0x8FEB +#define GL_UNSIGNED_INT8_NV 0x8FEC +#define GL_UNSIGNED_INT8_VEC2_NV 0x8FED +#define GL_UNSIGNED_INT8_VEC3_NV 0x8FEE +#define GL_UNSIGNED_INT8_VEC4_NV 0x8FEF +#define GL_UNSIGNED_INT16_NV 0x8FF0 +#define GL_UNSIGNED_INT16_VEC2_NV 0x8FF1 +#define GL_UNSIGNED_INT16_VEC3_NV 0x8FF2 +#define GL_UNSIGNED_INT16_VEC4_NV 0x8FF3 +#define GL_UNSIGNED_INT64_VEC2_NV 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_NV 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_NV 0x8FF7 +typedef void (APIENTRYP PFNGLUNIFORM1I64NVPROC) (GLint location, GLint64EXT x); +typedef void (APIENTRYP PFNGLUNIFORM2I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLUNIFORM3I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLUNIFORM4I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLUNIFORM1I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM2I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM3I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM4I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM1UI64NVPROC) (GLint location, GLuint64EXT x); +typedef void (APIENTRYP PFNGLUNIFORM2UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLUNIFORM3UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLUNIFORM4UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLUNIFORM1UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM2UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM3UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLUNIFORM4UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLGETUNIFORMI64VNVPROC) (GLuint program, GLint location, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64NVPROC) (GLuint program, GLint location, GLint64EXT x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniform1i64NV (GLint location, GLint64EXT x); +GLAPI void APIENTRY glUniform2i64NV (GLint location, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glUniform3i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glUniform4i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glUniform1i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform2i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform3i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform4i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glUniform1ui64NV (GLint location, GLuint64EXT x); +GLAPI void APIENTRY glUniform2ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glUniform3ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glUniform4ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glUniform1ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform2ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform3ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glUniform4ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glGetUniformi64vNV (GLuint program, GLint location, GLint64EXT *params); +GLAPI void APIENTRY glGetUniformui64vNV (GLuint program, GLint location, GLuint64EXT *params); +GLAPI void APIENTRY glProgramUniform1i64NV (GLuint program, GLint location, GLint64EXT x); +GLAPI void APIENTRY glProgramUniform2i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glProgramUniform3i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glProgramUniform4i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glProgramUniform1i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform2i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform3i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform4i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GLAPI void APIENTRY glProgramUniform1ui64NV (GLuint program, GLint location, GLuint64EXT x); +GLAPI void APIENTRY glProgramUniform2ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glProgramUniform3ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glProgramUniform4ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glProgramUniform1ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform2ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform3ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniform4ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif +#endif /* GL_AMD_gpu_shader_int64 */ + +#ifndef GL_AMD_interleaved_elements +#define GL_AMD_interleaved_elements 1 +#define GL_VERTEX_ELEMENT_SWIZZLE_AMD 0x91A4 +#define GL_VERTEX_ID_SWIZZLE_AMD 0x91A5 +typedef void (APIENTRYP PFNGLVERTEXATTRIBPARAMETERIAMDPROC) (GLuint index, GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribParameteriAMD (GLuint index, GLenum pname, GLint param); +#endif +#endif /* GL_AMD_interleaved_elements */ + +#ifndef GL_AMD_multi_draw_indirect +#define GL_AMD_multi_draw_indirect 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTAMDPROC) (GLenum mode, const void *indirect, GLsizei primcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTAMDPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei primcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectAMD (GLenum mode, const void *indirect, GLsizei primcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectAMD (GLenum mode, GLenum type, const void *indirect, GLsizei primcount, GLsizei stride); +#endif +#endif /* GL_AMD_multi_draw_indirect */ + +#ifndef GL_AMD_name_gen_delete +#define GL_AMD_name_gen_delete 1 +#define GL_DATA_BUFFER_AMD 0x9151 +#define GL_PERFORMANCE_MONITOR_AMD 0x9152 +#define GL_QUERY_OBJECT_AMD 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_AMD 0x9154 +#define GL_SAMPLER_OBJECT_AMD 0x9155 +typedef void (APIENTRYP PFNGLGENNAMESAMDPROC) (GLenum identifier, GLuint num, GLuint *names); +typedef void (APIENTRYP PFNGLDELETENAMESAMDPROC) (GLenum identifier, GLuint num, const GLuint *names); +typedef GLboolean (APIENTRYP PFNGLISNAMEAMDPROC) (GLenum identifier, GLuint name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenNamesAMD (GLenum identifier, GLuint num, GLuint *names); +GLAPI void APIENTRY glDeleteNamesAMD (GLenum identifier, GLuint num, const GLuint *names); +GLAPI GLboolean APIENTRY glIsNameAMD (GLenum identifier, GLuint name); +#endif +#endif /* GL_AMD_name_gen_delete */ + +#ifndef GL_AMD_occlusion_query_event +#define GL_AMD_occlusion_query_event 1 +#define GL_OCCLUSION_QUERY_EVENT_MASK_AMD 0x874F +#define GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD 0x00000001 +#define GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD 0x00000002 +#define GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD 0x00000004 +#define GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD 0x00000008 +#define GL_QUERY_ALL_EVENT_BITS_AMD 0xFFFFFFFF +typedef void (APIENTRYP PFNGLQUERYOBJECTPARAMETERUIAMDPROC) (GLenum target, GLuint id, GLenum pname, GLuint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glQueryObjectParameteruiAMD (GLenum target, GLuint id, GLenum pname, GLuint param); +#endif +#endif /* GL_AMD_occlusion_query_event */ + +#ifndef GL_AMD_performance_monitor +#define GL_AMD_performance_monitor 1 +#define GL_COUNTER_TYPE_AMD 0x8BC0 +#define GL_COUNTER_RANGE_AMD 0x8BC1 +#define GL_UNSIGNED_INT64_AMD 0x8BC2 +#define GL_PERCENTAGE_AMD 0x8BC3 +#define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4 +#define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5 +#define GL_PERFMON_RESULT_AMD 0x8BC6 +typedef void (APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +typedef void (APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, void *data); +typedef void (APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +typedef void (APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor); +typedef void (APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor); +typedef void (APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +GLAPI void APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +GLAPI void APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +GLAPI void APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +GLAPI void APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, void *data); +GLAPI void APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors); +GLAPI void APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors); +GLAPI void APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +GLAPI void APIENTRY glBeginPerfMonitorAMD (GLuint monitor); +GLAPI void APIENTRY glEndPerfMonitorAMD (GLuint monitor); +GLAPI void APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#endif +#endif /* GL_AMD_performance_monitor */ + +#ifndef GL_AMD_pinned_memory +#define GL_AMD_pinned_memory 1 +#define GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD 0x9160 +#endif /* GL_AMD_pinned_memory */ + +#ifndef GL_AMD_query_buffer_object +#define GL_AMD_query_buffer_object 1 +#define GL_QUERY_BUFFER_AMD 0x9192 +#define GL_QUERY_BUFFER_BINDING_AMD 0x9193 +#define GL_QUERY_RESULT_NO_WAIT_AMD 0x9194 +#endif /* GL_AMD_query_buffer_object */ + +#ifndef GL_AMD_sample_positions +#define GL_AMD_sample_positions 1 +typedef void (APIENTRYP PFNGLSETMULTISAMPLEFVAMDPROC) (GLenum pname, GLuint index, const GLfloat *val); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSetMultisamplefvAMD (GLenum pname, GLuint index, const GLfloat *val); +#endif +#endif /* GL_AMD_sample_positions */ + +#ifndef GL_AMD_seamless_cubemap_per_texture +#define GL_AMD_seamless_cubemap_per_texture 1 +#endif /* GL_AMD_seamless_cubemap_per_texture */ + +#ifndef GL_AMD_shader_atomic_counter_ops +#define GL_AMD_shader_atomic_counter_ops 1 +#endif /* GL_AMD_shader_atomic_counter_ops */ + +#ifndef GL_AMD_shader_ballot +#define GL_AMD_shader_ballot 1 +#endif /* GL_AMD_shader_ballot */ + +#ifndef GL_AMD_shader_explicit_vertex_parameter +#define GL_AMD_shader_explicit_vertex_parameter 1 +#endif /* GL_AMD_shader_explicit_vertex_parameter */ + +#ifndef GL_AMD_shader_gpu_shader_half_float_fetch +#define GL_AMD_shader_gpu_shader_half_float_fetch 1 +#endif /* GL_AMD_shader_gpu_shader_half_float_fetch */ + +#ifndef GL_AMD_shader_image_load_store_lod +#define GL_AMD_shader_image_load_store_lod 1 +#endif /* GL_AMD_shader_image_load_store_lod */ + +#ifndef GL_AMD_shader_stencil_export +#define GL_AMD_shader_stencil_export 1 +#endif /* GL_AMD_shader_stencil_export */ + +#ifndef GL_AMD_shader_trinary_minmax +#define GL_AMD_shader_trinary_minmax 1 +#endif /* GL_AMD_shader_trinary_minmax */ + +#ifndef GL_AMD_sparse_texture +#define GL_AMD_sparse_texture 1 +#define GL_VIRTUAL_PAGE_SIZE_X_AMD 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_AMD 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_AMD 0x9197 +#define GL_MAX_SPARSE_TEXTURE_SIZE_AMD 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_AMD 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS 0x919A +#define GL_MIN_SPARSE_LEVEL_AMD 0x919B +#define GL_MIN_LOD_WARNING_AMD 0x919C +#define GL_TEXTURE_STORAGE_SPARSE_BIT_AMD 0x00000001 +typedef void (APIENTRYP PFNGLTEXSTORAGESPARSEAMDPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +typedef void (APIENTRYP PFNGLTEXTURESTORAGESPARSEAMDPROC) (GLuint texture, GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexStorageSparseAMD (GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +GLAPI void APIENTRY glTextureStorageSparseAMD (GLuint texture, GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +#endif +#endif /* GL_AMD_sparse_texture */ + +#ifndef GL_AMD_stencil_operation_extended +#define GL_AMD_stencil_operation_extended 1 +#define GL_SET_AMD 0x874A +#define GL_REPLACE_VALUE_AMD 0x874B +#define GL_STENCIL_OP_VALUE_AMD 0x874C +#define GL_STENCIL_BACK_OP_VALUE_AMD 0x874D +typedef void (APIENTRYP PFNGLSTENCILOPVALUEAMDPROC) (GLenum face, GLuint value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilOpValueAMD (GLenum face, GLuint value); +#endif +#endif /* GL_AMD_stencil_operation_extended */ + +#ifndef GL_AMD_texture_gather_bias_lod +#define GL_AMD_texture_gather_bias_lod 1 +#endif /* GL_AMD_texture_gather_bias_lod */ + +#ifndef GL_AMD_texture_texture4 +#define GL_AMD_texture_texture4 1 +#endif /* GL_AMD_texture_texture4 */ + +#ifndef GL_AMD_transform_feedback3_lines_triangles +#define GL_AMD_transform_feedback3_lines_triangles 1 +#endif /* GL_AMD_transform_feedback3_lines_triangles */ + +#ifndef GL_AMD_transform_feedback4 +#define GL_AMD_transform_feedback4 1 +#define GL_STREAM_RASTERIZATION_AMD 0x91A0 +#endif /* GL_AMD_transform_feedback4 */ + +#ifndef GL_AMD_vertex_shader_layer +#define GL_AMD_vertex_shader_layer 1 +#endif /* GL_AMD_vertex_shader_layer */ + +#ifndef GL_AMD_vertex_shader_tessellator +#define GL_AMD_vertex_shader_tessellator 1 +#define GL_SAMPLER_BUFFER_AMD 0x9001 +#define GL_INT_SAMPLER_BUFFER_AMD 0x9002 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_AMD 0x9003 +#define GL_TESSELLATION_MODE_AMD 0x9004 +#define GL_TESSELLATION_FACTOR_AMD 0x9005 +#define GL_DISCRETE_AMD 0x9006 +#define GL_CONTINUOUS_AMD 0x9007 +typedef void (APIENTRYP PFNGLTESSELLATIONFACTORAMDPROC) (GLfloat factor); +typedef void (APIENTRYP PFNGLTESSELLATIONMODEAMDPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTessellationFactorAMD (GLfloat factor); +GLAPI void APIENTRY glTessellationModeAMD (GLenum mode); +#endif +#endif /* GL_AMD_vertex_shader_tessellator */ + +#ifndef GL_AMD_vertex_shader_viewport_index +#define GL_AMD_vertex_shader_viewport_index 1 +#endif /* GL_AMD_vertex_shader_viewport_index */ + +#ifndef GL_APPLE_aux_depth_stencil +#define GL_APPLE_aux_depth_stencil 1 +#define GL_AUX_DEPTH_STENCIL_APPLE 0x8A14 +#endif /* GL_APPLE_aux_depth_stencil */ + +#ifndef GL_APPLE_client_storage +#define GL_APPLE_client_storage 1 +#define GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2 +#endif /* GL_APPLE_client_storage */ + +#ifndef GL_APPLE_element_array +#define GL_APPLE_element_array 1 +#define GL_ELEMENT_ARRAY_APPLE 0x8A0C +#define GL_ELEMENT_ARRAY_TYPE_APPLE 0x8A0D +#define GL_ELEMENT_ARRAY_POINTER_APPLE 0x8A0E +typedef void (APIENTRYP PFNGLELEMENTPOINTERAPPLEPROC) (GLenum type, const void *pointer); +typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (APIENTRYP PFNGLMULTIDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glElementPointerAPPLE (GLenum type, const void *pointer); +GLAPI void APIENTRY glDrawElementArrayAPPLE (GLenum mode, GLint first, GLsizei count); +GLAPI void APIENTRY glDrawRangeElementArrayAPPLE (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count); +GLAPI void APIENTRY glMultiDrawElementArrayAPPLE (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GLAPI void APIENTRY glMultiDrawRangeElementArrayAPPLE (GLenum mode, GLuint start, GLuint end, const GLint *first, const GLsizei *count, GLsizei primcount); +#endif +#endif /* GL_APPLE_element_array */ + +#ifndef GL_APPLE_fence +#define GL_APPLE_fence 1 +#define GL_DRAW_PIXELS_APPLE 0x8A0A +#define GL_FENCE_APPLE 0x8A0B +typedef void (APIENTRYP PFNGLGENFENCESAPPLEPROC) (GLsizei n, GLuint *fences); +typedef void (APIENTRYP PFNGLDELETEFENCESAPPLEPROC) (GLsizei n, const GLuint *fences); +typedef void (APIENTRYP PFNGLSETFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLISFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTFENCEAPPLEPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLFINISHFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTOBJECTAPPLEPROC) (GLenum object, GLuint name); +typedef void (APIENTRYP PFNGLFINISHOBJECTAPPLEPROC) (GLenum object, GLint name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenFencesAPPLE (GLsizei n, GLuint *fences); +GLAPI void APIENTRY glDeleteFencesAPPLE (GLsizei n, const GLuint *fences); +GLAPI void APIENTRY glSetFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glIsFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glTestFenceAPPLE (GLuint fence); +GLAPI void APIENTRY glFinishFenceAPPLE (GLuint fence); +GLAPI GLboolean APIENTRY glTestObjectAPPLE (GLenum object, GLuint name); +GLAPI void APIENTRY glFinishObjectAPPLE (GLenum object, GLint name); +#endif +#endif /* GL_APPLE_fence */ + +#ifndef GL_APPLE_float_pixels +#define GL_APPLE_float_pixels 1 +#define GL_HALF_APPLE 0x140B +#define GL_RGBA_FLOAT32_APPLE 0x8814 +#define GL_RGB_FLOAT32_APPLE 0x8815 +#define GL_ALPHA_FLOAT32_APPLE 0x8816 +#define GL_INTENSITY_FLOAT32_APPLE 0x8817 +#define GL_LUMINANCE_FLOAT32_APPLE 0x8818 +#define GL_LUMINANCE_ALPHA_FLOAT32_APPLE 0x8819 +#define GL_RGBA_FLOAT16_APPLE 0x881A +#define GL_RGB_FLOAT16_APPLE 0x881B +#define GL_ALPHA_FLOAT16_APPLE 0x881C +#define GL_INTENSITY_FLOAT16_APPLE 0x881D +#define GL_LUMINANCE_FLOAT16_APPLE 0x881E +#define GL_LUMINANCE_ALPHA_FLOAT16_APPLE 0x881F +#define GL_COLOR_FLOAT_APPLE 0x8A0F +#endif /* GL_APPLE_float_pixels */ + +#ifndef GL_APPLE_flush_buffer_range +#define GL_APPLE_flush_buffer_range 1 +#define GL_BUFFER_SERIALIZED_MODIFY_APPLE 0x8A12 +#define GL_BUFFER_FLUSHING_UNMAP_APPLE 0x8A13 +typedef void (APIENTRYP PFNGLBUFFERPARAMETERIAPPLEPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEAPPLEPROC) (GLenum target, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferParameteriAPPLE (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glFlushMappedBufferRangeAPPLE (GLenum target, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_APPLE_flush_buffer_range */ + +#ifndef GL_APPLE_object_purgeable +#define GL_APPLE_object_purgeable 1 +#define GL_BUFFER_OBJECT_APPLE 0x85B3 +#define GL_RELEASED_APPLE 0x8A19 +#define GL_VOLATILE_APPLE 0x8A1A +#define GL_RETAINED_APPLE 0x8A1B +#define GL_UNDEFINED_APPLE 0x8A1C +#define GL_PURGEABLE_APPLE 0x8A1D +typedef GLenum (APIENTRYP PFNGLOBJECTPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option); +typedef GLenum (APIENTRYP PFNGLOBJECTUNPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option); +typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVAPPLEPROC) (GLenum objectType, GLuint name, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLenum APIENTRY glObjectPurgeableAPPLE (GLenum objectType, GLuint name, GLenum option); +GLAPI GLenum APIENTRY glObjectUnpurgeableAPPLE (GLenum objectType, GLuint name, GLenum option); +GLAPI void APIENTRY glGetObjectParameterivAPPLE (GLenum objectType, GLuint name, GLenum pname, GLint *params); +#endif +#endif /* GL_APPLE_object_purgeable */ + +#ifndef GL_APPLE_rgb_422 +#define GL_APPLE_rgb_422 1 +#define GL_RGB_422_APPLE 0x8A1F +#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB +#define GL_RGB_RAW_422_APPLE 0x8A51 +#endif /* GL_APPLE_rgb_422 */ + +#ifndef GL_APPLE_row_bytes +#define GL_APPLE_row_bytes 1 +#define GL_PACK_ROW_BYTES_APPLE 0x8A15 +#define GL_UNPACK_ROW_BYTES_APPLE 0x8A16 +#endif /* GL_APPLE_row_bytes */ + +#ifndef GL_APPLE_specular_vector +#define GL_APPLE_specular_vector 1 +#define GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE 0x85B0 +#endif /* GL_APPLE_specular_vector */ + +#ifndef GL_APPLE_texture_range +#define GL_APPLE_texture_range 1 +#define GL_TEXTURE_RANGE_LENGTH_APPLE 0x85B7 +#define GL_TEXTURE_RANGE_POINTER_APPLE 0x85B8 +#define GL_TEXTURE_STORAGE_HINT_APPLE 0x85BC +#define GL_STORAGE_PRIVATE_APPLE 0x85BD +#define GL_STORAGE_CACHED_APPLE 0x85BE +#define GL_STORAGE_SHARED_APPLE 0x85BF +typedef void (APIENTRYP PFNGLTEXTURERANGEAPPLEPROC) (GLenum target, GLsizei length, const void *pointer); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERPOINTERVAPPLEPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureRangeAPPLE (GLenum target, GLsizei length, const void *pointer); +GLAPI void APIENTRY glGetTexParameterPointervAPPLE (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_APPLE_texture_range */ + +#ifndef GL_APPLE_transform_hint +#define GL_APPLE_transform_hint 1 +#define GL_TRANSFORM_HINT_APPLE 0x85B1 +#endif /* GL_APPLE_transform_hint */ + +#ifndef GL_APPLE_vertex_array_object +#define GL_APPLE_vertex_array_object 1 +#define GL_VERTEX_ARRAY_BINDING_APPLE 0x85B5 +typedef void (APIENTRYP PFNGLBINDVERTEXARRAYAPPLEPROC) (GLuint array); +typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint *arrays); +typedef void (APIENTRYP PFNGLGENVERTEXARRAYSAPPLEPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYAPPLEPROC) (GLuint array); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindVertexArrayAPPLE (GLuint array); +GLAPI void APIENTRY glDeleteVertexArraysAPPLE (GLsizei n, const GLuint *arrays); +GLAPI void APIENTRY glGenVertexArraysAPPLE (GLsizei n, GLuint *arrays); +GLAPI GLboolean APIENTRY glIsVertexArrayAPPLE (GLuint array); +#endif +#endif /* GL_APPLE_vertex_array_object */ + +#ifndef GL_APPLE_vertex_array_range +#define GL_APPLE_vertex_array_range 1 +#define GL_VERTEX_ARRAY_RANGE_APPLE 0x851D +#define GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE 0x851E +#define GL_VERTEX_ARRAY_STORAGE_HINT_APPLE 0x851F +#define GL_VERTEX_ARRAY_RANGE_POINTER_APPLE 0x8521 +#define GL_STORAGE_CLIENT_APPLE 0x85B4 +typedef void (APIENTRYP PFNGLVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, void *pointer); +typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, void *pointer); +typedef void (APIENTRYP PFNGLVERTEXARRAYPARAMETERIAPPLEPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexArrayRangeAPPLE (GLsizei length, void *pointer); +GLAPI void APIENTRY glFlushVertexArrayRangeAPPLE (GLsizei length, void *pointer); +GLAPI void APIENTRY glVertexArrayParameteriAPPLE (GLenum pname, GLint param); +#endif +#endif /* GL_APPLE_vertex_array_range */ + +#ifndef GL_APPLE_vertex_program_evaluators +#define GL_APPLE_vertex_program_evaluators 1 +#define GL_VERTEX_ATTRIB_MAP1_APPLE 0x8A00 +#define GL_VERTEX_ATTRIB_MAP2_APPLE 0x8A01 +#define GL_VERTEX_ATTRIB_MAP1_SIZE_APPLE 0x8A02 +#define GL_VERTEX_ATTRIB_MAP1_COEFF_APPLE 0x8A03 +#define GL_VERTEX_ATTRIB_MAP1_ORDER_APPLE 0x8A04 +#define GL_VERTEX_ATTRIB_MAP1_DOMAIN_APPLE 0x8A05 +#define GL_VERTEX_ATTRIB_MAP2_SIZE_APPLE 0x8A06 +#define GL_VERTEX_ATTRIB_MAP2_COEFF_APPLE 0x8A07 +#define GL_VERTEX_ATTRIB_MAP2_ORDER_APPLE 0x8A08 +#define GL_VERTEX_ATTRIB_MAP2_DOMAIN_APPLE 0x8A09 +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname); +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname); +typedef GLboolean (APIENTRYP PFNGLISVERTEXATTRIBENABLEDAPPLEPROC) (GLuint index, GLenum pname); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB1DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB1FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB2DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points); +typedef void (APIENTRYP PFNGLMAPVERTEXATTRIB2FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glEnableVertexAttribAPPLE (GLuint index, GLenum pname); +GLAPI void APIENTRY glDisableVertexAttribAPPLE (GLuint index, GLenum pname); +GLAPI GLboolean APIENTRY glIsVertexAttribEnabledAPPLE (GLuint index, GLenum pname); +GLAPI void APIENTRY glMapVertexAttrib1dAPPLE (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points); +GLAPI void APIENTRY glMapVertexAttrib1fAPPLE (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points); +GLAPI void APIENTRY glMapVertexAttrib2dAPPLE (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points); +GLAPI void APIENTRY glMapVertexAttrib2fAPPLE (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points); +#endif +#endif /* GL_APPLE_vertex_program_evaluators */ + +#ifndef GL_APPLE_ycbcr_422 +#define GL_APPLE_ycbcr_422 1 +#define GL_YCBCR_422_APPLE 0x85B9 +#endif /* GL_APPLE_ycbcr_422 */ + +#ifndef GL_ATI_draw_buffers +#define GL_ATI_draw_buffers 1 +#define GL_MAX_DRAW_BUFFERS_ATI 0x8824 +#define GL_DRAW_BUFFER0_ATI 0x8825 +#define GL_DRAW_BUFFER1_ATI 0x8826 +#define GL_DRAW_BUFFER2_ATI 0x8827 +#define GL_DRAW_BUFFER3_ATI 0x8828 +#define GL_DRAW_BUFFER4_ATI 0x8829 +#define GL_DRAW_BUFFER5_ATI 0x882A +#define GL_DRAW_BUFFER6_ATI 0x882B +#define GL_DRAW_BUFFER7_ATI 0x882C +#define GL_DRAW_BUFFER8_ATI 0x882D +#define GL_DRAW_BUFFER9_ATI 0x882E +#define GL_DRAW_BUFFER10_ATI 0x882F +#define GL_DRAW_BUFFER11_ATI 0x8830 +#define GL_DRAW_BUFFER12_ATI 0x8831 +#define GL_DRAW_BUFFER13_ATI 0x8832 +#define GL_DRAW_BUFFER14_ATI 0x8833 +#define GL_DRAW_BUFFER15_ATI 0x8834 +typedef void (APIENTRYP PFNGLDRAWBUFFERSATIPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawBuffersATI (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_ATI_draw_buffers */ + +#ifndef GL_ATI_element_array +#define GL_ATI_element_array 1 +#define GL_ELEMENT_ARRAY_ATI 0x8768 +#define GL_ELEMENT_ARRAY_TYPE_ATI 0x8769 +#define GL_ELEMENT_ARRAY_POINTER_ATI 0x876A +typedef void (APIENTRYP PFNGLELEMENTPOINTERATIPROC) (GLenum type, const void *pointer); +typedef void (APIENTRYP PFNGLDRAWELEMENTARRAYATIPROC) (GLenum mode, GLsizei count); +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTARRAYATIPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glElementPointerATI (GLenum type, const void *pointer); +GLAPI void APIENTRY glDrawElementArrayATI (GLenum mode, GLsizei count); +GLAPI void APIENTRY glDrawRangeElementArrayATI (GLenum mode, GLuint start, GLuint end, GLsizei count); +#endif +#endif /* GL_ATI_element_array */ + +#ifndef GL_ATI_envmap_bumpmap +#define GL_ATI_envmap_bumpmap 1 +#define GL_BUMP_ROT_MATRIX_ATI 0x8775 +#define GL_BUMP_ROT_MATRIX_SIZE_ATI 0x8776 +#define GL_BUMP_NUM_TEX_UNITS_ATI 0x8777 +#define GL_BUMP_TEX_UNITS_ATI 0x8778 +#define GL_DUDV_ATI 0x8779 +#define GL_DU8DV8_ATI 0x877A +#define GL_BUMP_ENVMAP_ATI 0x877B +#define GL_BUMP_TARGET_ATI 0x877C +typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERIVATIPROC) (GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLTEXBUMPPARAMETERFVATIPROC) (GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERIVATIPROC) (GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETTEXBUMPPARAMETERFVATIPROC) (GLenum pname, GLfloat *param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBumpParameterivATI (GLenum pname, const GLint *param); +GLAPI void APIENTRY glTexBumpParameterfvATI (GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glGetTexBumpParameterivATI (GLenum pname, GLint *param); +GLAPI void APIENTRY glGetTexBumpParameterfvATI (GLenum pname, GLfloat *param); +#endif +#endif /* GL_ATI_envmap_bumpmap */ + +#ifndef GL_ATI_fragment_shader +#define GL_ATI_fragment_shader 1 +#define GL_FRAGMENT_SHADER_ATI 0x8920 +#define GL_REG_0_ATI 0x8921 +#define GL_REG_1_ATI 0x8922 +#define GL_REG_2_ATI 0x8923 +#define GL_REG_3_ATI 0x8924 +#define GL_REG_4_ATI 0x8925 +#define GL_REG_5_ATI 0x8926 +#define GL_REG_6_ATI 0x8927 +#define GL_REG_7_ATI 0x8928 +#define GL_REG_8_ATI 0x8929 +#define GL_REG_9_ATI 0x892A +#define GL_REG_10_ATI 0x892B +#define GL_REG_11_ATI 0x892C +#define GL_REG_12_ATI 0x892D +#define GL_REG_13_ATI 0x892E +#define GL_REG_14_ATI 0x892F +#define GL_REG_15_ATI 0x8930 +#define GL_REG_16_ATI 0x8931 +#define GL_REG_17_ATI 0x8932 +#define GL_REG_18_ATI 0x8933 +#define GL_REG_19_ATI 0x8934 +#define GL_REG_20_ATI 0x8935 +#define GL_REG_21_ATI 0x8936 +#define GL_REG_22_ATI 0x8937 +#define GL_REG_23_ATI 0x8938 +#define GL_REG_24_ATI 0x8939 +#define GL_REG_25_ATI 0x893A +#define GL_REG_26_ATI 0x893B +#define GL_REG_27_ATI 0x893C +#define GL_REG_28_ATI 0x893D +#define GL_REG_29_ATI 0x893E +#define GL_REG_30_ATI 0x893F +#define GL_REG_31_ATI 0x8940 +#define GL_CON_0_ATI 0x8941 +#define GL_CON_1_ATI 0x8942 +#define GL_CON_2_ATI 0x8943 +#define GL_CON_3_ATI 0x8944 +#define GL_CON_4_ATI 0x8945 +#define GL_CON_5_ATI 0x8946 +#define GL_CON_6_ATI 0x8947 +#define GL_CON_7_ATI 0x8948 +#define GL_CON_8_ATI 0x8949 +#define GL_CON_9_ATI 0x894A +#define GL_CON_10_ATI 0x894B +#define GL_CON_11_ATI 0x894C +#define GL_CON_12_ATI 0x894D +#define GL_CON_13_ATI 0x894E +#define GL_CON_14_ATI 0x894F +#define GL_CON_15_ATI 0x8950 +#define GL_CON_16_ATI 0x8951 +#define GL_CON_17_ATI 0x8952 +#define GL_CON_18_ATI 0x8953 +#define GL_CON_19_ATI 0x8954 +#define GL_CON_20_ATI 0x8955 +#define GL_CON_21_ATI 0x8956 +#define GL_CON_22_ATI 0x8957 +#define GL_CON_23_ATI 0x8958 +#define GL_CON_24_ATI 0x8959 +#define GL_CON_25_ATI 0x895A +#define GL_CON_26_ATI 0x895B +#define GL_CON_27_ATI 0x895C +#define GL_CON_28_ATI 0x895D +#define GL_CON_29_ATI 0x895E +#define GL_CON_30_ATI 0x895F +#define GL_CON_31_ATI 0x8960 +#define GL_MOV_ATI 0x8961 +#define GL_ADD_ATI 0x8963 +#define GL_MUL_ATI 0x8964 +#define GL_SUB_ATI 0x8965 +#define GL_DOT3_ATI 0x8966 +#define GL_DOT4_ATI 0x8967 +#define GL_MAD_ATI 0x8968 +#define GL_LERP_ATI 0x8969 +#define GL_CND_ATI 0x896A +#define GL_CND0_ATI 0x896B +#define GL_DOT2_ADD_ATI 0x896C +#define GL_SECONDARY_INTERPOLATOR_ATI 0x896D +#define GL_NUM_FRAGMENT_REGISTERS_ATI 0x896E +#define GL_NUM_FRAGMENT_CONSTANTS_ATI 0x896F +#define GL_NUM_PASSES_ATI 0x8970 +#define GL_NUM_INSTRUCTIONS_PER_PASS_ATI 0x8971 +#define GL_NUM_INSTRUCTIONS_TOTAL_ATI 0x8972 +#define GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI 0x8973 +#define GL_NUM_LOOPBACK_COMPONENTS_ATI 0x8974 +#define GL_COLOR_ALPHA_PAIRING_ATI 0x8975 +#define GL_SWIZZLE_STR_ATI 0x8976 +#define GL_SWIZZLE_STQ_ATI 0x8977 +#define GL_SWIZZLE_STR_DR_ATI 0x8978 +#define GL_SWIZZLE_STQ_DQ_ATI 0x8979 +#define GL_SWIZZLE_STRQ_ATI 0x897A +#define GL_SWIZZLE_STRQ_DQ_ATI 0x897B +#define GL_RED_BIT_ATI 0x00000001 +#define GL_GREEN_BIT_ATI 0x00000002 +#define GL_BLUE_BIT_ATI 0x00000004 +#define GL_2X_BIT_ATI 0x00000001 +#define GL_4X_BIT_ATI 0x00000002 +#define GL_8X_BIT_ATI 0x00000004 +#define GL_HALF_BIT_ATI 0x00000008 +#define GL_QUARTER_BIT_ATI 0x00000010 +#define GL_EIGHTH_BIT_ATI 0x00000020 +#define GL_SATURATE_BIT_ATI 0x00000040 +#define GL_COMP_BIT_ATI 0x00000002 +#define GL_NEGATE_BIT_ATI 0x00000004 +#define GL_BIAS_BIT_ATI 0x00000008 +typedef GLuint (APIENTRYP PFNGLGENFRAGMENTSHADERSATIPROC) (GLuint range); +typedef void (APIENTRYP PFNGLBINDFRAGMENTSHADERATIPROC) (GLuint id); +typedef void (APIENTRYP PFNGLDELETEFRAGMENTSHADERATIPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINFRAGMENTSHADERATIPROC) (void); +typedef void (APIENTRYP PFNGLENDFRAGMENTSHADERATIPROC) (void); +typedef void (APIENTRYP PFNGLPASSTEXCOORDATIPROC) (GLuint dst, GLuint coord, GLenum swizzle); +typedef void (APIENTRYP PFNGLSAMPLEMAPATIPROC) (GLuint dst, GLuint interp, GLenum swizzle); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +typedef void (APIENTRYP PFNGLCOLORFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +typedef void (APIENTRYP PFNGLALPHAFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +typedef void (APIENTRYP PFNGLSETFRAGMENTSHADERCONSTANTATIPROC) (GLuint dst, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glGenFragmentShadersATI (GLuint range); +GLAPI void APIENTRY glBindFragmentShaderATI (GLuint id); +GLAPI void APIENTRY glDeleteFragmentShaderATI (GLuint id); +GLAPI void APIENTRY glBeginFragmentShaderATI (void); +GLAPI void APIENTRY glEndFragmentShaderATI (void); +GLAPI void APIENTRY glPassTexCoordATI (GLuint dst, GLuint coord, GLenum swizzle); +GLAPI void APIENTRY glSampleMapATI (GLuint dst, GLuint interp, GLenum swizzle); +GLAPI void APIENTRY glColorFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +GLAPI void APIENTRY glColorFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +GLAPI void APIENTRY glColorFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +GLAPI void APIENTRY glAlphaFragmentOp1ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +GLAPI void APIENTRY glAlphaFragmentOp2ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +GLAPI void APIENTRY glAlphaFragmentOp3ATI (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +GLAPI void APIENTRY glSetFragmentShaderConstantATI (GLuint dst, const GLfloat *value); +#endif +#endif /* GL_ATI_fragment_shader */ + +#ifndef GL_ATI_map_object_buffer +#define GL_ATI_map_object_buffer 1 +typedef void *(APIENTRYP PFNGLMAPOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLUNMAPOBJECTBUFFERATIPROC) (GLuint buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void *APIENTRY glMapObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glUnmapObjectBufferATI (GLuint buffer); +#endif +#endif /* GL_ATI_map_object_buffer */ + +#ifndef GL_ATI_meminfo +#define GL_ATI_meminfo 1 +#define GL_VBO_FREE_MEMORY_ATI 0x87FB +#define GL_TEXTURE_FREE_MEMORY_ATI 0x87FC +#define GL_RENDERBUFFER_FREE_MEMORY_ATI 0x87FD +#endif /* GL_ATI_meminfo */ + +#ifndef GL_ATI_pixel_format_float +#define GL_ATI_pixel_format_float 1 +#define GL_RGBA_FLOAT_MODE_ATI 0x8820 +#define GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI 0x8835 +#endif /* GL_ATI_pixel_format_float */ + +#ifndef GL_ATI_pn_triangles +#define GL_ATI_pn_triangles 1 +#define GL_PN_TRIANGLES_ATI 0x87F0 +#define GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F1 +#define GL_PN_TRIANGLES_POINT_MODE_ATI 0x87F2 +#define GL_PN_TRIANGLES_NORMAL_MODE_ATI 0x87F3 +#define GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F4 +#define GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI 0x87F5 +#define GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI 0x87F6 +#define GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI 0x87F7 +#define GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI 0x87F8 +typedef void (APIENTRYP PFNGLPNTRIANGLESIATIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPNTRIANGLESFATIPROC) (GLenum pname, GLfloat param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPNTrianglesiATI (GLenum pname, GLint param); +GLAPI void APIENTRY glPNTrianglesfATI (GLenum pname, GLfloat param); +#endif +#endif /* GL_ATI_pn_triangles */ + +#ifndef GL_ATI_separate_stencil +#define GL_ATI_separate_stencil 1 +#define GL_STENCIL_BACK_FUNC_ATI 0x8800 +#define GL_STENCIL_BACK_FAIL_ATI 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI 0x8803 +typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEATIPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEATIPROC) (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilOpSeparateATI (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GLAPI void APIENTRY glStencilFuncSeparateATI (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +#endif +#endif /* GL_ATI_separate_stencil */ + +#ifndef GL_ATI_text_fragment_shader +#define GL_ATI_text_fragment_shader 1 +#define GL_TEXT_FRAGMENT_SHADER_ATI 0x8200 +#endif /* GL_ATI_text_fragment_shader */ + +#ifndef GL_ATI_texture_env_combine3 +#define GL_ATI_texture_env_combine3 1 +#define GL_MODULATE_ADD_ATI 0x8744 +#define GL_MODULATE_SIGNED_ADD_ATI 0x8745 +#define GL_MODULATE_SUBTRACT_ATI 0x8746 +#endif /* GL_ATI_texture_env_combine3 */ + +#ifndef GL_ATI_texture_float +#define GL_ATI_texture_float 1 +#define GL_RGBA_FLOAT32_ATI 0x8814 +#define GL_RGB_FLOAT32_ATI 0x8815 +#define GL_ALPHA_FLOAT32_ATI 0x8816 +#define GL_INTENSITY_FLOAT32_ATI 0x8817 +#define GL_LUMINANCE_FLOAT32_ATI 0x8818 +#define GL_LUMINANCE_ALPHA_FLOAT32_ATI 0x8819 +#define GL_RGBA_FLOAT16_ATI 0x881A +#define GL_RGB_FLOAT16_ATI 0x881B +#define GL_ALPHA_FLOAT16_ATI 0x881C +#define GL_INTENSITY_FLOAT16_ATI 0x881D +#define GL_LUMINANCE_FLOAT16_ATI 0x881E +#define GL_LUMINANCE_ALPHA_FLOAT16_ATI 0x881F +#endif /* GL_ATI_texture_float */ + +#ifndef GL_ATI_texture_mirror_once +#define GL_ATI_texture_mirror_once 1 +#define GL_MIRROR_CLAMP_ATI 0x8742 +#define GL_MIRROR_CLAMP_TO_EDGE_ATI 0x8743 +#endif /* GL_ATI_texture_mirror_once */ + +#ifndef GL_ATI_vertex_array_object +#define GL_ATI_vertex_array_object 1 +#define GL_STATIC_ATI 0x8760 +#define GL_DYNAMIC_ATI 0x8761 +#define GL_PRESERVE_ATI 0x8762 +#define GL_DISCARD_ATI 0x8763 +#define GL_OBJECT_BUFFER_SIZE_ATI 0x8764 +#define GL_OBJECT_BUFFER_USAGE_ATI 0x8765 +#define GL_ARRAY_OBJECT_BUFFER_ATI 0x8766 +#define GL_ARRAY_OBJECT_OFFSET_ATI 0x8767 +typedef GLuint (APIENTRYP PFNGLNEWOBJECTBUFFERATIPROC) (GLsizei size, const void *pointer, GLenum usage); +typedef GLboolean (APIENTRYP PFNGLISOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLUPDATEOBJECTBUFFERATIPROC) (GLuint buffer, GLuint offset, GLsizei size, const void *pointer, GLenum preserve); +typedef void (APIENTRYP PFNGLGETOBJECTBUFFERFVATIPROC) (GLuint buffer, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETOBJECTBUFFERIVATIPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLFREEOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLARRAYOBJECTATIPROC) (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETARRAYOBJECTFVATIPROC) (GLenum array, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETARRAYOBJECTIVATIPROC) (GLenum array, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLVARIANTARRAYOBJECTATIPROC) (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTFVATIPROC) (GLuint id, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVARIANTARRAYOBJECTIVATIPROC) (GLuint id, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glNewObjectBufferATI (GLsizei size, const void *pointer, GLenum usage); +GLAPI GLboolean APIENTRY glIsObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glUpdateObjectBufferATI (GLuint buffer, GLuint offset, GLsizei size, const void *pointer, GLenum preserve); +GLAPI void APIENTRY glGetObjectBufferfvATI (GLuint buffer, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetObjectBufferivATI (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glFreeObjectBufferATI (GLuint buffer); +GLAPI void APIENTRY glArrayObjectATI (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetArrayObjectfvATI (GLenum array, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetArrayObjectivATI (GLenum array, GLenum pname, GLint *params); +GLAPI void APIENTRY glVariantArrayObjectATI (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetVariantArrayObjectfvATI (GLuint id, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVariantArrayObjectivATI (GLuint id, GLenum pname, GLint *params); +#endif +#endif /* GL_ATI_vertex_array_object */ + +#ifndef GL_ATI_vertex_attrib_array_object +#define GL_ATI_vertex_attrib_array_object 1 +typedef void (APIENTRYP PFNGLVERTEXATTRIBARRAYOBJECTATIPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTFVATIPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBARRAYOBJECTIVATIPROC) (GLuint index, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribArrayObjectATI (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset); +GLAPI void APIENTRY glGetVertexAttribArrayObjectfvATI (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribArrayObjectivATI (GLuint index, GLenum pname, GLint *params); +#endif +#endif /* GL_ATI_vertex_attrib_array_object */ + +#ifndef GL_ATI_vertex_streams +#define GL_ATI_vertex_streams 1 +#define GL_MAX_VERTEX_STREAMS_ATI 0x876B +#define GL_VERTEX_STREAM0_ATI 0x876C +#define GL_VERTEX_STREAM1_ATI 0x876D +#define GL_VERTEX_STREAM2_ATI 0x876E +#define GL_VERTEX_STREAM3_ATI 0x876F +#define GL_VERTEX_STREAM4_ATI 0x8770 +#define GL_VERTEX_STREAM5_ATI 0x8771 +#define GL_VERTEX_STREAM6_ATI 0x8772 +#define GL_VERTEX_STREAM7_ATI 0x8773 +#define GL_VERTEX_SOURCE_ATI 0x8774 +typedef void (APIENTRYP PFNGLVERTEXSTREAM1SATIPROC) (GLenum stream, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1IATIPROC) (GLenum stream, GLint x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1FATIPROC) (GLenum stream, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1DATIPROC) (GLenum stream, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXSTREAM1DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2SATIPROC) (GLenum stream, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2IATIPROC) (GLenum stream, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2FATIPROC) (GLenum stream, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2DATIPROC) (GLenum stream, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXSTREAM2DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3IATIPROC) (GLenum stream, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4IATIPROC) (GLenum stream, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXSTREAM4DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3BATIPROC) (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3BVATIPROC) (GLenum stream, const GLbyte *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3SATIPROC) (GLenum stream, GLshort nx, GLshort ny, GLshort nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3IATIPROC) (GLenum stream, GLint nx, GLint ny, GLint nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3FATIPROC) (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (APIENTRYP PFNGLNORMALSTREAM3DATIPROC) (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz); +typedef void (APIENTRYP PFNGLNORMALSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (APIENTRYP PFNGLCLIENTACTIVEVERTEXSTREAMATIPROC) (GLenum stream); +typedef void (APIENTRYP PFNGLVERTEXBLENDENVIATIPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLVERTEXBLENDENVFATIPROC) (GLenum pname, GLfloat param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexStream1sATI (GLenum stream, GLshort x); +GLAPI void APIENTRY glVertexStream1svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream1iATI (GLenum stream, GLint x); +GLAPI void APIENTRY glVertexStream1ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream1fATI (GLenum stream, GLfloat x); +GLAPI void APIENTRY glVertexStream1fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream1dATI (GLenum stream, GLdouble x); +GLAPI void APIENTRY glVertexStream1dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream2sATI (GLenum stream, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexStream2svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream2iATI (GLenum stream, GLint x, GLint y); +GLAPI void APIENTRY glVertexStream2ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream2fATI (GLenum stream, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexStream2fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream2dATI (GLenum stream, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexStream2dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream3sATI (GLenum stream, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexStream3svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream3iATI (GLenum stream, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexStream3ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream3fATI (GLenum stream, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexStream3fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream3dATI (GLenum stream, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexStream3dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glVertexStream4sATI (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexStream4svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glVertexStream4iATI (GLenum stream, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexStream4ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glVertexStream4fATI (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexStream4fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glVertexStream4dATI (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexStream4dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glNormalStream3bATI (GLenum stream, GLbyte nx, GLbyte ny, GLbyte nz); +GLAPI void APIENTRY glNormalStream3bvATI (GLenum stream, const GLbyte *coords); +GLAPI void APIENTRY glNormalStream3sATI (GLenum stream, GLshort nx, GLshort ny, GLshort nz); +GLAPI void APIENTRY glNormalStream3svATI (GLenum stream, const GLshort *coords); +GLAPI void APIENTRY glNormalStream3iATI (GLenum stream, GLint nx, GLint ny, GLint nz); +GLAPI void APIENTRY glNormalStream3ivATI (GLenum stream, const GLint *coords); +GLAPI void APIENTRY glNormalStream3fATI (GLenum stream, GLfloat nx, GLfloat ny, GLfloat nz); +GLAPI void APIENTRY glNormalStream3fvATI (GLenum stream, const GLfloat *coords); +GLAPI void APIENTRY glNormalStream3dATI (GLenum stream, GLdouble nx, GLdouble ny, GLdouble nz); +GLAPI void APIENTRY glNormalStream3dvATI (GLenum stream, const GLdouble *coords); +GLAPI void APIENTRY glClientActiveVertexStreamATI (GLenum stream); +GLAPI void APIENTRY glVertexBlendEnviATI (GLenum pname, GLint param); +GLAPI void APIENTRY glVertexBlendEnvfATI (GLenum pname, GLfloat param); +#endif +#endif /* GL_ATI_vertex_streams */ + +#ifndef GL_EXT_422_pixels +#define GL_EXT_422_pixels 1 +#define GL_422_EXT 0x80CC +#define GL_422_REV_EXT 0x80CD +#define GL_422_AVERAGE_EXT 0x80CE +#define GL_422_REV_AVERAGE_EXT 0x80CF +#endif /* GL_EXT_422_pixels */ + +#ifndef GL_EXT_EGL_image_storage +#define GL_EXT_EGL_image_storage 1 +typedef void *GLeglImageOES; +typedef void (APIENTRYP PFNGLEGLIMAGETARGETTEXSTORAGEEXTPROC) (GLenum target, GLeglImageOES image, const GLint* attrib_list); +typedef void (APIENTRYP PFNGLEGLIMAGETARGETTEXTURESTORAGEEXTPROC) (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glEGLImageTargetTexStorageEXT (GLenum target, GLeglImageOES image, const GLint* attrib_list); +GLAPI void APIENTRY glEGLImageTargetTextureStorageEXT (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#endif +#endif /* GL_EXT_EGL_image_storage */ + +#ifndef GL_EXT_EGL_sync +#define GL_EXT_EGL_sync 1 +#endif /* GL_EXT_EGL_sync */ + +#ifndef GL_EXT_abgr +#define GL_EXT_abgr 1 +#define GL_ABGR_EXT 0x8000 +#endif /* GL_EXT_abgr */ + +#ifndef GL_EXT_bgra +#define GL_EXT_bgra 1 +#define GL_BGR_EXT 0x80E0 +#define GL_BGRA_EXT 0x80E1 +#endif /* GL_EXT_bgra */ + +#ifndef GL_EXT_bindable_uniform +#define GL_EXT_bindable_uniform 1 +#define GL_MAX_VERTEX_BINDABLE_UNIFORMS_EXT 0x8DE2 +#define GL_MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT 0x8DE3 +#define GL_MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT 0x8DE4 +#define GL_MAX_BINDABLE_UNIFORM_SIZE_EXT 0x8DED +#define GL_UNIFORM_BUFFER_EXT 0x8DEE +#define GL_UNIFORM_BUFFER_BINDING_EXT 0x8DEF +typedef void (APIENTRYP PFNGLUNIFORMBUFFEREXTPROC) (GLuint program, GLint location, GLuint buffer); +typedef GLint (APIENTRYP PFNGLGETUNIFORMBUFFERSIZEEXTPROC) (GLuint program, GLint location); +typedef GLintptr (APIENTRYP PFNGLGETUNIFORMOFFSETEXTPROC) (GLuint program, GLint location); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniformBufferEXT (GLuint program, GLint location, GLuint buffer); +GLAPI GLint APIENTRY glGetUniformBufferSizeEXT (GLuint program, GLint location); +GLAPI GLintptr APIENTRY glGetUniformOffsetEXT (GLuint program, GLint location); +#endif +#endif /* GL_EXT_bindable_uniform */ + +#ifndef GL_EXT_blend_color +#define GL_EXT_blend_color 1 +#define GL_CONSTANT_COLOR_EXT 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR_EXT 0x8002 +#define GL_CONSTANT_ALPHA_EXT 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA_EXT 0x8004 +#define GL_BLEND_COLOR_EXT 0x8005 +typedef void (APIENTRYP PFNGLBLENDCOLOREXTPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendColorEXT (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +#endif +#endif /* GL_EXT_blend_color */ + +#ifndef GL_EXT_blend_equation_separate +#define GL_EXT_blend_equation_separate 1 +#define GL_BLEND_EQUATION_RGB_EXT 0x8009 +#define GL_BLEND_EQUATION_ALPHA_EXT 0x883D +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEEXTPROC) (GLenum modeRGB, GLenum modeAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationSeparateEXT (GLenum modeRGB, GLenum modeAlpha); +#endif +#endif /* GL_EXT_blend_equation_separate */ + +#ifndef GL_EXT_blend_func_separate +#define GL_EXT_blend_func_separate 1 +#define GL_BLEND_DST_RGB_EXT 0x80C8 +#define GL_BLEND_SRC_RGB_EXT 0x80C9 +#define GL_BLEND_DST_ALPHA_EXT 0x80CA +#define GL_BLEND_SRC_ALPHA_EXT 0x80CB +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEEXTPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparateEXT (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#endif +#endif /* GL_EXT_blend_func_separate */ + +#ifndef GL_EXT_blend_logic_op +#define GL_EXT_blend_logic_op 1 +#endif /* GL_EXT_blend_logic_op */ + +#ifndef GL_EXT_blend_minmax +#define GL_EXT_blend_minmax 1 +#define GL_MIN_EXT 0x8007 +#define GL_MAX_EXT 0x8008 +#define GL_FUNC_ADD_EXT 0x8006 +#define GL_BLEND_EQUATION_EXT 0x8009 +typedef void (APIENTRYP PFNGLBLENDEQUATIONEXTPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendEquationEXT (GLenum mode); +#endif +#endif /* GL_EXT_blend_minmax */ + +#ifndef GL_EXT_blend_subtract +#define GL_EXT_blend_subtract 1 +#define GL_FUNC_SUBTRACT_EXT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT_EXT 0x800B +#endif /* GL_EXT_blend_subtract */ + +#ifndef GL_EXT_clip_volume_hint +#define GL_EXT_clip_volume_hint 1 +#define GL_CLIP_VOLUME_CLIPPING_HINT_EXT 0x80F0 +#endif /* GL_EXT_clip_volume_hint */ + +#ifndef GL_EXT_cmyka +#define GL_EXT_cmyka 1 +#define GL_CMYK_EXT 0x800C +#define GL_CMYKA_EXT 0x800D +#define GL_PACK_CMYK_HINT_EXT 0x800E +#define GL_UNPACK_CMYK_HINT_EXT 0x800F +#endif /* GL_EXT_cmyka */ + +#ifndef GL_EXT_color_subtable +#define GL_EXT_color_subtable 1 +typedef void (APIENTRYP PFNGLCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCOPYCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorSubTableEXT (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glCopyColorSubTableEXT (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +#endif +#endif /* GL_EXT_color_subtable */ + +#ifndef GL_EXT_compiled_vertex_array +#define GL_EXT_compiled_vertex_array 1 +#define GL_ARRAY_ELEMENT_LOCK_FIRST_EXT 0x81A8 +#define GL_ARRAY_ELEMENT_LOCK_COUNT_EXT 0x81A9 +typedef void (APIENTRYP PFNGLLOCKARRAYSEXTPROC) (GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLUNLOCKARRAYSEXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLockArraysEXT (GLint first, GLsizei count); +GLAPI void APIENTRY glUnlockArraysEXT (void); +#endif +#endif /* GL_EXT_compiled_vertex_array */ + +#ifndef GL_EXT_convolution +#define GL_EXT_convolution 1 +#define GL_CONVOLUTION_1D_EXT 0x8010 +#define GL_CONVOLUTION_2D_EXT 0x8011 +#define GL_SEPARABLE_2D_EXT 0x8012 +#define GL_CONVOLUTION_BORDER_MODE_EXT 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE_EXT 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS_EXT 0x8015 +#define GL_REDUCE_EXT 0x8016 +#define GL_CONVOLUTION_FORMAT_EXT 0x8017 +#define GL_CONVOLUTION_WIDTH_EXT 0x8018 +#define GL_CONVOLUTION_HEIGHT_EXT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH_EXT 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT_EXT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE_EXT 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE_EXT 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE_EXT 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE_EXT 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS_EXT 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS_EXT 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS_EXT 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS_EXT 0x8023 +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint params); +typedef void (APIENTRYP PFNGLCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, void *image); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETSEPARABLEFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +typedef void (APIENTRYP PFNGLSEPARABLEFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConvolutionFilter1DEXT (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionFilter2DEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +GLAPI void APIENTRY glConvolutionParameterfEXT (GLenum target, GLenum pname, GLfloat params); +GLAPI void APIENTRY glConvolutionParameterfvEXT (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glConvolutionParameteriEXT (GLenum target, GLenum pname, GLint params); +GLAPI void APIENTRY glConvolutionParameterivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyConvolutionFilter1DEXT (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyConvolutionFilter2DEXT (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetConvolutionFilterEXT (GLenum target, GLenum format, GLenum type, void *image); +GLAPI void APIENTRY glGetConvolutionParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetConvolutionParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetSeparableFilterEXT (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +GLAPI void APIENTRY glSeparableFilter2DEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); +#endif +#endif /* GL_EXT_convolution */ + +#ifndef GL_EXT_coordinate_frame +#define GL_EXT_coordinate_frame 1 +#define GL_TANGENT_ARRAY_EXT 0x8439 +#define GL_BINORMAL_ARRAY_EXT 0x843A +#define GL_CURRENT_TANGENT_EXT 0x843B +#define GL_CURRENT_BINORMAL_EXT 0x843C +#define GL_TANGENT_ARRAY_TYPE_EXT 0x843E +#define GL_TANGENT_ARRAY_STRIDE_EXT 0x843F +#define GL_BINORMAL_ARRAY_TYPE_EXT 0x8440 +#define GL_BINORMAL_ARRAY_STRIDE_EXT 0x8441 +#define GL_TANGENT_ARRAY_POINTER_EXT 0x8442 +#define GL_BINORMAL_ARRAY_POINTER_EXT 0x8443 +#define GL_MAP1_TANGENT_EXT 0x8444 +#define GL_MAP2_TANGENT_EXT 0x8445 +#define GL_MAP1_BINORMAL_EXT 0x8446 +#define GL_MAP2_BINORMAL_EXT 0x8447 +typedef void (APIENTRYP PFNGLTANGENT3BEXTPROC) (GLbyte tx, GLbyte ty, GLbyte tz); +typedef void (APIENTRYP PFNGLTANGENT3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLTANGENT3DEXTPROC) (GLdouble tx, GLdouble ty, GLdouble tz); +typedef void (APIENTRYP PFNGLTANGENT3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLTANGENT3FEXTPROC) (GLfloat tx, GLfloat ty, GLfloat tz); +typedef void (APIENTRYP PFNGLTANGENT3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLTANGENT3IEXTPROC) (GLint tx, GLint ty, GLint tz); +typedef void (APIENTRYP PFNGLTANGENT3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLTANGENT3SEXTPROC) (GLshort tx, GLshort ty, GLshort tz); +typedef void (APIENTRYP PFNGLTANGENT3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLBINORMAL3BEXTPROC) (GLbyte bx, GLbyte by, GLbyte bz); +typedef void (APIENTRYP PFNGLBINORMAL3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLBINORMAL3DEXTPROC) (GLdouble bx, GLdouble by, GLdouble bz); +typedef void (APIENTRYP PFNGLBINORMAL3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLBINORMAL3FEXTPROC) (GLfloat bx, GLfloat by, GLfloat bz); +typedef void (APIENTRYP PFNGLBINORMAL3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLBINORMAL3IEXTPROC) (GLint bx, GLint by, GLint bz); +typedef void (APIENTRYP PFNGLBINORMAL3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLBINORMAL3SEXTPROC) (GLshort bx, GLshort by, GLshort bz); +typedef void (APIENTRYP PFNGLBINORMAL3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLTANGENTPOINTEREXTPROC) (GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLBINORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTangent3bEXT (GLbyte tx, GLbyte ty, GLbyte tz); +GLAPI void APIENTRY glTangent3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glTangent3dEXT (GLdouble tx, GLdouble ty, GLdouble tz); +GLAPI void APIENTRY glTangent3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glTangent3fEXT (GLfloat tx, GLfloat ty, GLfloat tz); +GLAPI void APIENTRY glTangent3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glTangent3iEXT (GLint tx, GLint ty, GLint tz); +GLAPI void APIENTRY glTangent3ivEXT (const GLint *v); +GLAPI void APIENTRY glTangent3sEXT (GLshort tx, GLshort ty, GLshort tz); +GLAPI void APIENTRY glTangent3svEXT (const GLshort *v); +GLAPI void APIENTRY glBinormal3bEXT (GLbyte bx, GLbyte by, GLbyte bz); +GLAPI void APIENTRY glBinormal3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glBinormal3dEXT (GLdouble bx, GLdouble by, GLdouble bz); +GLAPI void APIENTRY glBinormal3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glBinormal3fEXT (GLfloat bx, GLfloat by, GLfloat bz); +GLAPI void APIENTRY glBinormal3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glBinormal3iEXT (GLint bx, GLint by, GLint bz); +GLAPI void APIENTRY glBinormal3ivEXT (const GLint *v); +GLAPI void APIENTRY glBinormal3sEXT (GLshort bx, GLshort by, GLshort bz); +GLAPI void APIENTRY glBinormal3svEXT (const GLshort *v); +GLAPI void APIENTRY glTangentPointerEXT (GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glBinormalPointerEXT (GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_coordinate_frame */ + +#ifndef GL_EXT_copy_texture +#define GL_EXT_copy_texture 1 +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCopyTexImage1DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyTexImage2DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTexSubImage2DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glCopyTexSubImage3DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +#endif +#endif /* GL_EXT_copy_texture */ + +#ifndef GL_EXT_cull_vertex +#define GL_EXT_cull_vertex 1 +#define GL_CULL_VERTEX_EXT 0x81AA +#define GL_CULL_VERTEX_EYE_POSITION_EXT 0x81AB +#define GL_CULL_VERTEX_OBJECT_POSITION_EXT 0x81AC +typedef void (APIENTRYP PFNGLCULLPARAMETERDVEXTPROC) (GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLCULLPARAMETERFVEXTPROC) (GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCullParameterdvEXT (GLenum pname, GLdouble *params); +GLAPI void APIENTRY glCullParameterfvEXT (GLenum pname, GLfloat *params); +#endif +#endif /* GL_EXT_cull_vertex */ + +#ifndef GL_EXT_debug_label +#define GL_EXT_debug_label 1 +#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F +#define GL_PROGRAM_OBJECT_EXT 0x8B40 +#define GL_SHADER_OBJECT_EXT 0x8B48 +#define GL_BUFFER_OBJECT_EXT 0x9151 +#define GL_QUERY_OBJECT_EXT 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154 +typedef void (APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label); +typedef void (APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label); +GLAPI void APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +#endif /* GL_EXT_debug_label */ + +#ifndef GL_EXT_debug_marker +#define GL_EXT_debug_marker 1 +typedef void (APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker); +GLAPI void APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker); +GLAPI void APIENTRY glPopGroupMarkerEXT (void); +#endif +#endif /* GL_EXT_debug_marker */ + +#ifndef GL_EXT_depth_bounds_test +#define GL_EXT_depth_bounds_test 1 +#define GL_DEPTH_BOUNDS_TEST_EXT 0x8890 +#define GL_DEPTH_BOUNDS_EXT 0x8891 +typedef void (APIENTRYP PFNGLDEPTHBOUNDSEXTPROC) (GLclampd zmin, GLclampd zmax); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthBoundsEXT (GLclampd zmin, GLclampd zmax); +#endif +#endif /* GL_EXT_depth_bounds_test */ + +#ifndef GL_EXT_direct_state_access +#define GL_EXT_direct_state_access 1 +#define GL_PROGRAM_MATRIX_EXT 0x8E2D +#define GL_TRANSPOSE_PROGRAM_MATRIX_EXT 0x8E2E +#define GL_PROGRAM_MATRIX_STACK_DEPTH_EXT 0x8E2F +typedef void (APIENTRYP PFNGLMATRIXLOADFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXMULTFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXLOADIDENTITYEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLMATRIXROTATEFEXTPROC) (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXROTATEDEXTPROC) (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXSCALEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXSCALEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXTRANSLATEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLMATRIXTRANSLATEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLMATRIXFRUSTUMEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLMATRIXORTHOEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLMATRIXPOPEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLMATRIXPUSHEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLPUSHCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLBINDMULTITEXTUREEXTPROC) (GLenum texunit, GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLMULTITEXCOORDPOINTEREXTPROC) (GLenum texunit, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLMULTITEXENVFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXENVIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXGENDEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble param); +typedef void (APIENTRYP PFNGLMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params); +typedef void (APIENTRYP PFNGLMULTITEXGENFEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXGENIEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (APIENTRYP PFNGLCOPYMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXLEVELPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMULTITEXLEVELPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOPYMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLGETFLOATINDEXEDVEXTPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (APIENTRYP PFNGLGETDOUBLEINDEXEDVEXTPROC) (GLenum target, GLuint index, GLdouble *data); +typedef void (APIENTRYP PFNGLGETPOINTERINDEXEDVEXTPROC) (GLenum target, GLuint index, void **data); +typedef void (APIENTRYP PFNGLENABLEINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef GLboolean (APIENTRYP PFNGLISENABLEDINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef void (APIENTRYP PFNGLGETINTEGERINDEXEDVEXTPROC) (GLenum target, GLuint index, GLint *data); +typedef void (APIENTRYP PFNGLGETBOOLEANINDEXEDVEXTPROC) (GLenum target, GLuint index, GLboolean *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint lod, void *img); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLCOMPRESSEDMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint lod, void *img); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (APIENTRYP PFNGLNAMEDBUFFERDATAEXTPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFEREXTPROC) (GLuint buffer, GLenum access); +typedef GLboolean (APIENTRYP PFNGLUNMAPNAMEDBUFFEREXTPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERIVEXTPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPOINTERVEXTPROC) (GLuint buffer, GLenum pname, void **params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (APIENTRYP PFNGLTEXTUREBUFFEREXTPROC) (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLMULTITEXBUFFEREXTPROC) (GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIEXTPROC) (GLuint program, GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4IEXTPROC) (GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERSI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETERSI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERIIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERIUIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint *params); +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEIEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEIEXTPROC) (GLenum array, GLuint index); +typedef void (APIENTRYP PFNGLGETFLOATI_VEXTPROC) (GLenum pname, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETDOUBLEI_VEXTPROC) (GLenum pname, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPOINTERI_VEXTPROC) (GLenum pname, GLuint index, void **params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum format, GLsizei len, const void *string); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4DEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4DVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLdouble *params); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4FEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLNAMEDPROGRAMLOCALPARAMETER4FVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERDVEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMLOCALPARAMETERFVEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMIVEXTPROC) (GLuint program, GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum pname, void *string); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEEXTPROC) (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETNAMEDRENDERBUFFERPARAMETERIVEXTPROC) (GLuint renderbuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLECOVERAGEEXTPROC) (GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef GLenum (APIENTRYP PFNGLCHECKNAMEDFRAMEBUFFERSTATUSEXTPROC) (GLuint framebuffer, GLenum target); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE1DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE2DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURE3DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERRENDERBUFFEREXTPROC) (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATETEXTUREMIPMAPEXTPROC) (GLuint texture, GLenum target); +typedef void (APIENTRYP PFNGLGENERATEMULTITEXMIPMAPEXTPROC) (GLenum texunit, GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERDRAWBUFFEREXTPROC) (GLuint framebuffer, GLenum mode); +typedef void (APIENTRYP PFNGLFRAMEBUFFERDRAWBUFFERSEXTPROC) (GLuint framebuffer, GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLFRAMEBUFFERREADBUFFEREXTPROC) (GLuint framebuffer, GLenum mode); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLNAMEDCOPYBUFFERSUBDATAEXTPROC) (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURELAYEREXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREFACEEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face); +typedef void (APIENTRYP PFNGLTEXTURERENDERBUFFEREXTPROC) (GLuint texture, GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLMULTITEXRENDERBUFFEREXTPROC) (GLenum texunit, GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYCOLOROFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYEDGEFLAGOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYINDEXOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYNORMALOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYTEXCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYMULTITEXCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum texunit, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYFOGCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYSECONDARYCOLOROFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBIOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYEXTPROC) (GLuint vaobj, GLenum array); +typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYEXTPROC) (GLuint vaobj, GLenum array); +typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYATTRIBEXTPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYATTRIBEXTPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINTEGERVEXTPROC) (GLuint vaobj, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYPOINTERVEXTPROC) (GLuint vaobj, GLenum pname, void **param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINTEGERI_VEXTPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYPOINTERI_VEXTPROC) (GLuint vaobj, GLuint index, GLenum pname, void **param); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERDATAEXTPROC) (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLenum internalformat, GLsizeiptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERPARAMETERIEXTPROC) (GLuint framebuffer, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DEXTPROC) (GLuint program, GLint location, GLdouble x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DEXTPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERRANGEEXTPROC) (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DMULTISAMPLEEXTPROC) (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DMULTISAMPLEEXTPROC) (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLVERTEXARRAYBINDVERTEXBUFFEREXTPROC) (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBIFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBLFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBBINDINGEXTPROC) (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBINDINGDIVISOREXTPROC) (GLuint vaobj, GLuint bindingindex, GLuint divisor); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBLOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (APIENTRYP PFNGLTEXTUREPAGECOMMITMENTEXTPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBDIVISOREXTPROC) (GLuint vaobj, GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMatrixLoadfEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoaddEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixMultfEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultdEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixLoadIdentityEXT (GLenum mode); +GLAPI void APIENTRY glMatrixRotatefEXT (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixRotatedEXT (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixScalefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixScaledEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixTranslatefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glMatrixTranslatedEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glMatrixFrustumEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glMatrixOrthoEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glMatrixPopEXT (GLenum mode); +GLAPI void APIENTRY glMatrixPushEXT (GLenum mode); +GLAPI void APIENTRY glClientAttribDefaultEXT (GLbitfield mask); +GLAPI void APIENTRY glPushClientAttribDefaultEXT (GLbitfield mask); +GLAPI void APIENTRY glTextureParameterfEXT (GLuint texture, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glTextureParameterfvEXT (GLuint texture, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glTextureParameteriEXT (GLuint texture, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glTextureParameterivEXT (GLuint texture, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetTextureImageEXT (GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +GLAPI void APIENTRY glGetTextureParameterfvEXT (GLuint texture, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureParameterivEXT (GLuint texture, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureLevelParameterfvEXT (GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureLevelParameterivEXT (GLuint texture, GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glTextureImage3DEXT (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glBindMultiTextureEXT (GLenum texunit, GLenum target, GLuint texture); +GLAPI void APIENTRY glMultiTexCoordPointerEXT (GLenum texunit, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glMultiTexEnvfEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexEnvfvEXT (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexEnviEXT (GLenum texunit, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexEnvivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexGendEXT (GLenum texunit, GLenum coord, GLenum pname, GLdouble param); +GLAPI void APIENTRY glMultiTexGendvEXT (GLenum texunit, GLenum coord, GLenum pname, const GLdouble *params); +GLAPI void APIENTRY glMultiTexGenfEXT (GLenum texunit, GLenum coord, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexGenfvEXT (GLenum texunit, GLenum coord, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexGeniEXT (GLenum texunit, GLenum coord, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexGenivEXT (GLenum texunit, GLenum coord, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetMultiTexEnvfvEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexEnvivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexGendvEXT (GLenum texunit, GLenum coord, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetMultiTexGenfvEXT (GLenum texunit, GLenum coord, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexGenivEXT (GLenum texunit, GLenum coord, GLenum pname, GLint *params); +GLAPI void APIENTRY glMultiTexParameteriEXT (GLenum texunit, GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glMultiTexParameterivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexParameterfEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glMultiTexParameterfvEXT (GLenum texunit, GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void APIENTRY glCopyMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void APIENTRY glCopyMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetMultiTexImageEXT (GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +GLAPI void APIENTRY glGetMultiTexParameterfvEXT (GLenum texunit, GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexParameterivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexLevelParameterfvEXT (GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMultiTexLevelParameterivEXT (GLenum texunit, GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glMultiTexImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCopyMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glEnableClientStateIndexedEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glDisableClientStateIndexedEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glGetFloatIndexedvEXT (GLenum target, GLuint index, GLfloat *data); +GLAPI void APIENTRY glGetDoubleIndexedvEXT (GLenum target, GLuint index, GLdouble *data); +GLAPI void APIENTRY glGetPointerIndexedvEXT (GLenum target, GLuint index, void **data); +GLAPI void APIENTRY glEnableIndexedEXT (GLenum target, GLuint index); +GLAPI void APIENTRY glDisableIndexedEXT (GLenum target, GLuint index); +GLAPI GLboolean APIENTRY glIsEnabledIndexedEXT (GLenum target, GLuint index); +GLAPI void APIENTRY glGetIntegerIndexedvEXT (GLenum target, GLuint index, GLint *data); +GLAPI void APIENTRY glGetBooleanIndexedvEXT (GLenum target, GLuint index, GLboolean *data); +GLAPI void APIENTRY glCompressedTextureImage3DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureImage2DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureSubImage2DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedTextureSubImage1DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glGetCompressedTextureImageEXT (GLuint texture, GLenum target, GLint lod, void *img); +GLAPI void APIENTRY glCompressedMultiTexImage3DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexImage2DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage3DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage2DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glCompressedMultiTexSubImage1DEXT (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *bits); +GLAPI void APIENTRY glGetCompressedMultiTexImageEXT (GLenum texunit, GLenum target, GLint lod, void *img); +GLAPI void APIENTRY glMatrixLoadTransposefEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoadTransposedEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glMatrixMultTransposefEXT (GLenum mode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultTransposedEXT (GLenum mode, const GLdouble *m); +GLAPI void APIENTRY glNamedBufferDataEXT (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +GLAPI void APIENTRY glNamedBufferSubDataEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void *APIENTRY glMapNamedBufferEXT (GLuint buffer, GLenum access); +GLAPI GLboolean APIENTRY glUnmapNamedBufferEXT (GLuint buffer); +GLAPI void APIENTRY glGetNamedBufferParameterivEXT (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedBufferPointervEXT (GLuint buffer, GLenum pname, void **params); +GLAPI void APIENTRY glGetNamedBufferSubDataEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +GLAPI void APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat v0); +GLAPI void APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GLAPI void APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI void APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI void APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint v0); +GLAPI void APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint v0, GLint v1); +GLAPI void APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GLAPI void APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI void APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GLAPI void APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GLAPI void APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI void APIENTRY glTextureBufferEXT (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glMultiTexBufferEXT (GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glTextureParameterIivEXT (GLuint texture, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureParameterIuivEXT (GLuint texture, GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTextureParameterIivEXT (GLuint texture, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterIuivEXT (GLuint texture, GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glMultiTexParameterIivEXT (GLenum texunit, GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMultiTexParameterIuivEXT (GLenum texunit, GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetMultiTexParameterIivEXT (GLenum texunit, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMultiTexParameterIuivEXT (GLenum texunit, GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glProgramUniform1uiEXT (GLuint program, GLint location, GLuint v0); +GLAPI void APIENTRY glProgramUniform2uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glProgramUniform3uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glProgramUniform4uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glProgramUniform1uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform2uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform3uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glProgramUniform4uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glNamedProgramLocalParameters4fvEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glNamedProgramLocalParameterI4iEXT (GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glNamedProgramLocalParameterI4ivEXT (GLuint program, GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glNamedProgramLocalParametersI4ivEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glNamedProgramLocalParameterI4uiEXT (GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glNamedProgramLocalParameterI4uivEXT (GLuint program, GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glNamedProgramLocalParametersI4uivEXT (GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterIivEXT (GLuint program, GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterIuivEXT (GLuint program, GLenum target, GLuint index, GLuint *params); +GLAPI void APIENTRY glEnableClientStateiEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glDisableClientStateiEXT (GLenum array, GLuint index); +GLAPI void APIENTRY glGetFloati_vEXT (GLenum pname, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetDoublei_vEXT (GLenum pname, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetPointeri_vEXT (GLenum pname, GLuint index, void **params); +GLAPI void APIENTRY glNamedProgramStringEXT (GLuint program, GLenum target, GLenum format, GLsizei len, const void *string); +GLAPI void APIENTRY glNamedProgramLocalParameter4dEXT (GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glNamedProgramLocalParameter4dvEXT (GLuint program, GLenum target, GLuint index, const GLdouble *params); +GLAPI void APIENTRY glNamedProgramLocalParameter4fEXT (GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glNamedProgramLocalParameter4fvEXT (GLuint program, GLenum target, GLuint index, const GLfloat *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterdvEXT (GLuint program, GLenum target, GLuint index, GLdouble *params); +GLAPI void APIENTRY glGetNamedProgramLocalParameterfvEXT (GLuint program, GLenum target, GLuint index, GLfloat *params); +GLAPI void APIENTRY glGetNamedProgramivEXT (GLuint program, GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedProgramStringEXT (GLuint program, GLenum target, GLenum pname, void *string); +GLAPI void APIENTRY glNamedRenderbufferStorageEXT (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetNamedRenderbufferParameterivEXT (GLuint renderbuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleEXT (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleCoverageEXT (GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI GLenum APIENTRY glCheckNamedFramebufferStatusEXT (GLuint framebuffer, GLenum target); +GLAPI void APIENTRY glNamedFramebufferTexture1DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTexture2DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTexture3DEXT (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glNamedFramebufferRenderbufferEXT (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetNamedFramebufferAttachmentParameterivEXT (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateTextureMipmapEXT (GLuint texture, GLenum target); +GLAPI void APIENTRY glGenerateMultiTexMipmapEXT (GLenum texunit, GLenum target); +GLAPI void APIENTRY glFramebufferDrawBufferEXT (GLuint framebuffer, GLenum mode); +GLAPI void APIENTRY glFramebufferDrawBuffersEXT (GLuint framebuffer, GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glFramebufferReadBufferEXT (GLuint framebuffer, GLenum mode); +GLAPI void APIENTRY glGetFramebufferParameterivEXT (GLuint framebuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glNamedCopyBufferSubDataEXT (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glNamedFramebufferTextureEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTextureLayerEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glNamedFramebufferTextureFaceEXT (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face); +GLAPI void APIENTRY glTextureRenderbufferEXT (GLuint texture, GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glMultiTexRenderbufferEXT (GLenum texunit, GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glVertexArrayVertexOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayColorOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayEdgeFlagOffsetEXT (GLuint vaobj, GLuint buffer, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayIndexOffsetEXT (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayNormalOffsetEXT (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayTexCoordOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayMultiTexCoordOffsetEXT (GLuint vaobj, GLuint buffer, GLenum texunit, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayFogCoordOffsetEXT (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArraySecondaryColorOffsetEXT (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayVertexAttribOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glVertexArrayVertexAttribIOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glEnableVertexArrayEXT (GLuint vaobj, GLenum array); +GLAPI void APIENTRY glDisableVertexArrayEXT (GLuint vaobj, GLenum array); +GLAPI void APIENTRY glEnableVertexArrayAttribEXT (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glDisableVertexArrayAttribEXT (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glGetVertexArrayIntegervEXT (GLuint vaobj, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayPointervEXT (GLuint vaobj, GLenum pname, void **param); +GLAPI void APIENTRY glGetVertexArrayIntegeri_vEXT (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayPointeri_vEXT (GLuint vaobj, GLuint index, GLenum pname, void **param); +GLAPI void *APIENTRY glMapNamedBufferRangeEXT (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI void APIENTRY glFlushMappedNamedBufferRangeEXT (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glNamedBufferStorageEXT (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +GLAPI void APIENTRY glClearNamedBufferDataEXT (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearNamedBufferSubDataEXT (GLuint buffer, GLenum internalformat, GLsizeiptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glNamedFramebufferParameteriEXT (GLuint framebuffer, GLenum pname, GLint param); +GLAPI void APIENTRY glGetNamedFramebufferParameterivEXT (GLuint framebuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glProgramUniform1dEXT (GLuint program, GLint location, GLdouble x); +GLAPI void APIENTRY glProgramUniform2dEXT (GLuint program, GLint location, GLdouble x, GLdouble y); +GLAPI void APIENTRY glProgramUniform3dEXT (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glProgramUniform4dEXT (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramUniform1dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform2dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform3dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniform4dvEXT (GLuint program, GLint location, GLsizei count, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix2x4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix3x4dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x2dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glProgramUniformMatrix4x3dvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble *value); +GLAPI void APIENTRY glTextureBufferRangeEXT (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glTextureStorage1DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTextureStorage2DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureStorage3DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glTextureStorage2DMultisampleEXT (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureStorage3DMultisampleEXT (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glVertexArrayBindVertexBufferEXT (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +GLAPI void APIENTRY glVertexArrayVertexAttribFormatEXT (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayVertexAttribIFormatEXT (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayVertexAttribLFormatEXT (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayVertexAttribBindingEXT (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +GLAPI void APIENTRY glVertexArrayVertexBindingDivisorEXT (GLuint vaobj, GLuint bindingindex, GLuint divisor); +GLAPI void APIENTRY glVertexArrayVertexAttribLOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +GLAPI void APIENTRY glTexturePageCommitmentEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +GLAPI void APIENTRY glVertexArrayVertexAttribDivisorEXT (GLuint vaobj, GLuint index, GLuint divisor); +#endif +#endif /* GL_EXT_direct_state_access */ + +#ifndef GL_EXT_draw_buffers2 +#define GL_EXT_draw_buffers2 1 +typedef void (APIENTRYP PFNGLCOLORMASKINDEXEDEXTPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorMaskIndexedEXT (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +#endif +#endif /* GL_EXT_draw_buffers2 */ + +#ifndef GL_EXT_draw_instanced +#define GL_EXT_draw_instanced 1 +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +GLAPI void APIENTRY glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_EXT_draw_instanced */ + +#ifndef GL_EXT_draw_range_elements +#define GL_EXT_draw_range_elements 1 +#define GL_MAX_ELEMENTS_VERTICES_EXT 0x80E8 +#define GL_MAX_ELEMENTS_INDICES_EXT 0x80E9 +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawRangeElementsEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +#endif +#endif /* GL_EXT_draw_range_elements */ + +#ifndef GL_EXT_external_buffer +#define GL_EXT_external_buffer 1 +typedef void *GLeglClientBufferEXT; +typedef void (APIENTRYP PFNGLBUFFERSTORAGEEXTERNALEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTERNALEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferStorageExternalEXT (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +GLAPI void APIENTRY glNamedBufferStorageExternalEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#endif +#endif /* GL_EXT_external_buffer */ + +#ifndef GL_EXT_fog_coord +#define GL_EXT_fog_coord 1 +#define GL_FOG_COORDINATE_SOURCE_EXT 0x8450 +#define GL_FOG_COORDINATE_EXT 0x8451 +#define GL_FRAGMENT_DEPTH_EXT 0x8452 +#define GL_CURRENT_FOG_COORDINATE_EXT 0x8453 +#define GL_FOG_COORDINATE_ARRAY_TYPE_EXT 0x8454 +#define GL_FOG_COORDINATE_ARRAY_STRIDE_EXT 0x8455 +#define GL_FOG_COORDINATE_ARRAY_POINTER_EXT 0x8456 +#define GL_FOG_COORDINATE_ARRAY_EXT 0x8457 +typedef void (APIENTRYP PFNGLFOGCOORDFEXTPROC) (GLfloat coord); +typedef void (APIENTRYP PFNGLFOGCOORDFVEXTPROC) (const GLfloat *coord); +typedef void (APIENTRYP PFNGLFOGCOORDDEXTPROC) (GLdouble coord); +typedef void (APIENTRYP PFNGLFOGCOORDDVEXTPROC) (const GLdouble *coord); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTEREXTPROC) (GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFogCoordfEXT (GLfloat coord); +GLAPI void APIENTRY glFogCoordfvEXT (const GLfloat *coord); +GLAPI void APIENTRY glFogCoorddEXT (GLdouble coord); +GLAPI void APIENTRY glFogCoorddvEXT (const GLdouble *coord); +GLAPI void APIENTRY glFogCoordPointerEXT (GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_fog_coord */ + +#ifndef GL_EXT_framebuffer_blit +#define GL_EXT_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_EXT 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_EXT 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_EXT 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_EXT 0x8CAA +typedef void (APIENTRYP PFNGLBLITFRAMEBUFFEREXTPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlitFramebufferEXT (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_EXT_framebuffer_blit */ + +#ifndef GL_EXT_framebuffer_multisample +#define GL_EXT_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 +#define GL_MAX_SAMPLES_EXT 0x8D57 +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_EXT_framebuffer_multisample */ + +#ifndef GL_EXT_framebuffer_multisample_blit_scaled +#define GL_EXT_framebuffer_multisample_blit_scaled 1 +#define GL_SCALED_RESOLVE_FASTEST_EXT 0x90BA +#define GL_SCALED_RESOLVE_NICEST_EXT 0x90BB +#endif /* GL_EXT_framebuffer_multisample_blit_scaled */ + +#ifndef GL_EXT_framebuffer_object +#define GL_EXT_framebuffer_object 1 +#define GL_INVALID_FRAMEBUFFER_OPERATION_EXT 0x0506 +#define GL_MAX_RENDERBUFFER_SIZE_EXT 0x84E8 +#define GL_FRAMEBUFFER_BINDING_EXT 0x8CA6 +#define GL_RENDERBUFFER_BINDING_EXT 0x8CA7 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE_EXT 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT 0x8CD9 +#define GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT 0x8CDA +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED_EXT 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF +#define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 +#define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 +#define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 +#define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 +#define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 +#define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 +#define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 +#define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 +#define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 +#define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 +#define GL_COLOR_ATTACHMENT10_EXT 0x8CEA +#define GL_COLOR_ATTACHMENT11_EXT 0x8CEB +#define GL_COLOR_ATTACHMENT12_EXT 0x8CEC +#define GL_COLOR_ATTACHMENT13_EXT 0x8CED +#define GL_COLOR_ATTACHMENT14_EXT 0x8CEE +#define GL_COLOR_ATTACHMENT15_EXT 0x8CEF +#define GL_DEPTH_ATTACHMENT_EXT 0x8D00 +#define GL_STENCIL_ATTACHMENT_EXT 0x8D20 +#define GL_FRAMEBUFFER_EXT 0x8D40 +#define GL_RENDERBUFFER_EXT 0x8D41 +#define GL_RENDERBUFFER_WIDTH_EXT 0x8D42 +#define GL_RENDERBUFFER_HEIGHT_EXT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT_EXT 0x8D44 +#define GL_STENCIL_INDEX1_EXT 0x8D46 +#define GL_STENCIL_INDEX4_EXT 0x8D47 +#define GL_STENCIL_INDEX8_EXT 0x8D48 +#define GL_STENCIL_INDEX16_EXT 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE_EXT 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE_EXT 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE_EXT 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE_EXT 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE_EXT 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE_EXT 0x8D55 +typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFEREXTPROC) (GLuint renderbuffer); +typedef void (APIENTRYP PFNGLBINDRENDERBUFFEREXTPROC) (GLenum target, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSEXTPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLGENRENDERBUFFERSEXTPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFEREXTPROC) (GLuint framebuffer); +typedef void (APIENTRYP PFNGLBINDFRAMEBUFFEREXTPROC) (GLenum target, GLuint framebuffer); +typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSEXTPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSEXTPROC) (GLsizei n, GLuint *framebuffers); +typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC) (GLenum target); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFEREXTPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGENERATEMIPMAPEXTPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glIsRenderbufferEXT (GLuint renderbuffer); +GLAPI void APIENTRY glBindRenderbufferEXT (GLenum target, GLuint renderbuffer); +GLAPI void APIENTRY glDeleteRenderbuffersEXT (GLsizei n, const GLuint *renderbuffers); +GLAPI void APIENTRY glGenRenderbuffersEXT (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glRenderbufferStorageEXT (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetRenderbufferParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI GLboolean APIENTRY glIsFramebufferEXT (GLuint framebuffer); +GLAPI void APIENTRY glBindFramebufferEXT (GLenum target, GLuint framebuffer); +GLAPI void APIENTRY glDeleteFramebuffersEXT (GLsizei n, const GLuint *framebuffers); +GLAPI void APIENTRY glGenFramebuffersEXT (GLsizei n, GLuint *framebuffers); +GLAPI GLenum APIENTRY glCheckFramebufferStatusEXT (GLenum target); +GLAPI void APIENTRY glFramebufferTexture1DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture2DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTexture3DEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI void APIENTRY glFramebufferRenderbufferEXT (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glGetFramebufferAttachmentParameterivEXT (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glGenerateMipmapEXT (GLenum target); +#endif +#endif /* GL_EXT_framebuffer_object */ + +#ifndef GL_EXT_framebuffer_sRGB +#define GL_EXT_framebuffer_sRGB 1 +#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 +#define GL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x8DBA +#endif /* GL_EXT_framebuffer_sRGB */ + +#ifndef GL_EXT_geometry_shader4 +#define GL_EXT_geometry_shader4 1 +#define GL_GEOMETRY_SHADER_EXT 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT_EXT 0x8DDA +#define GL_GEOMETRY_INPUT_TYPE_EXT 0x8DDB +#define GL_GEOMETRY_OUTPUT_TYPE_EXT 0x8DDC +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29 +#define GL_MAX_GEOMETRY_VARYING_COMPONENTS_EXT 0x8DDD +#define GL_MAX_VERTEX_VARYING_COMPONENTS_EXT 0x8DDE +#define GL_MAX_VARYING_COMPONENTS_EXT 0x8B4B +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1 +#define GL_LINES_ADJACENCY_EXT 0x000A +#define GL_LINE_STRIP_ADJACENCY_EXT 0x000B +#define GL_TRIANGLES_ADJACENCY_EXT 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0x000D +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT 0x8DA9 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT 0x8CD4 +#define GL_PROGRAM_POINT_SIZE_EXT 0x8642 +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value); +#endif +#endif /* GL_EXT_geometry_shader4 */ + +#ifndef GL_EXT_gpu_program_parameters +#define GL_EXT_gpu_program_parameters 1 +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramEnvParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glProgramLocalParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat *params); +#endif +#endif /* GL_EXT_gpu_program_parameters */ + +#ifndef GL_EXT_gpu_shader4 +#define GL_EXT_gpu_shader4 1 +#define GL_SAMPLER_1D_ARRAY_EXT 0x8DC0 +#define GL_SAMPLER_2D_ARRAY_EXT 0x8DC1 +#define GL_SAMPLER_BUFFER_EXT 0x8DC2 +#define GL_SAMPLER_1D_ARRAY_SHADOW_EXT 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW_EXT 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW_EXT 0x8DC5 +#define GL_UNSIGNED_INT_VEC2_EXT 0x8DC6 +#define GL_UNSIGNED_INT_VEC3_EXT 0x8DC7 +#define GL_UNSIGNED_INT_VEC4_EXT 0x8DC8 +#define GL_INT_SAMPLER_1D_EXT 0x8DC9 +#define GL_INT_SAMPLER_2D_EXT 0x8DCA +#define GL_INT_SAMPLER_3D_EXT 0x8DCB +#define GL_INT_SAMPLER_CUBE_EXT 0x8DCC +#define GL_INT_SAMPLER_2D_RECT_EXT 0x8DCD +#define GL_INT_SAMPLER_1D_ARRAY_EXT 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY_EXT 0x8DCF +#define GL_INT_SAMPLER_BUFFER_EXT 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_1D_EXT 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D_EXT 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D_EXT 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE_EXT 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT_EXT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT 0x8DD7 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT 0x8DD8 +#define GL_MIN_PROGRAM_TEXEL_OFFSET_EXT 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET_EXT 0x8905 +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT 0x88FD +typedef void (APIENTRYP PFNGLGETUNIFORMUIVEXTPROC) (GLuint program, GLint location, GLuint *params); +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONEXTPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONEXTPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLUNIFORM1UIEXTPROC) (GLint location, GLuint v0); +typedef void (APIENTRYP PFNGLUNIFORM2UIEXTPROC) (GLint location, GLuint v0, GLuint v1); +typedef void (APIENTRYP PFNGLUNIFORM3UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (APIENTRYP PFNGLUNIFORM4UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (APIENTRYP PFNGLUNIFORM1UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM2UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM3UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLUNIFORM4UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IEXTPROC) (GLuint index, GLint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IEXTPROC) (GLuint index, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IEXTPROC) (GLuint index, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IEXTPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIEXTPROC) (GLuint index, GLuint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIEXTPROC) (GLuint index, GLuint x, GLuint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVEXTPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVEXTPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVEXTPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVEXTPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVEXTPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVEXTPROC) (GLuint index, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetUniformuivEXT (GLuint program, GLint location, GLuint *params); +GLAPI void APIENTRY glBindFragDataLocationEXT (GLuint program, GLuint color, const GLchar *name); +GLAPI GLint APIENTRY glGetFragDataLocationEXT (GLuint program, const GLchar *name); +GLAPI void APIENTRY glUniform1uiEXT (GLint location, GLuint v0); +GLAPI void APIENTRY glUniform2uiEXT (GLint location, GLuint v0, GLuint v1); +GLAPI void APIENTRY glUniform3uiEXT (GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI void APIENTRY glUniform4uiEXT (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI void APIENTRY glUniform1uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform2uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform3uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glUniform4uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glVertexAttribI1iEXT (GLuint index, GLint x); +GLAPI void APIENTRY glVertexAttribI2iEXT (GLuint index, GLint x, GLint y); +GLAPI void APIENTRY glVertexAttribI3iEXT (GLuint index, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexAttribI4iEXT (GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexAttribI1uiEXT (GLuint index, GLuint x); +GLAPI void APIENTRY glVertexAttribI2uiEXT (GLuint index, GLuint x, GLuint y); +GLAPI void APIENTRY glVertexAttribI3uiEXT (GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI void APIENTRY glVertexAttribI4uiEXT (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glVertexAttribI1ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI2ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI3ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI4ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI1uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI2uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI3uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4bvEXT (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttribI4svEXT (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttribI4ubvEXT (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribI4usvEXT (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribIPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribIivEXT (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribIuivEXT (GLuint index, GLenum pname, GLuint *params); +#endif +#endif /* GL_EXT_gpu_shader4 */ + +#ifndef GL_EXT_histogram +#define GL_EXT_histogram 1 +#define GL_HISTOGRAM_EXT 0x8024 +#define GL_PROXY_HISTOGRAM_EXT 0x8025 +#define GL_HISTOGRAM_WIDTH_EXT 0x8026 +#define GL_HISTOGRAM_FORMAT_EXT 0x8027 +#define GL_HISTOGRAM_RED_SIZE_EXT 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE_EXT 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE_EXT 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE_EXT 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE_EXT 0x802C +#define GL_HISTOGRAM_SINK_EXT 0x802D +#define GL_MINMAX_EXT 0x802E +#define GL_MINMAX_FORMAT_EXT 0x802F +#define GL_MINMAX_SINK_EXT 0x8030 +#define GL_TABLE_TOO_LARGE_EXT 0x8031 +typedef void (APIENTRYP PFNGLGETHISTOGRAMEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETHISTOGRAMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMINMAXEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMINMAXPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLHISTOGRAMEXTPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLMINMAXEXTPROC) (GLenum target, GLenum internalformat, GLboolean sink); +typedef void (APIENTRYP PFNGLRESETHISTOGRAMEXTPROC) (GLenum target); +typedef void (APIENTRYP PFNGLRESETMINMAXEXTPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetHistogramEXT (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetHistogramParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetHistogramParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMinmaxEXT (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +GLAPI void APIENTRY glGetMinmaxParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMinmaxParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glHistogramEXT (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glMinmaxEXT (GLenum target, GLenum internalformat, GLboolean sink); +GLAPI void APIENTRY glResetHistogramEXT (GLenum target); +GLAPI void APIENTRY glResetMinmaxEXT (GLenum target); +#endif +#endif /* GL_EXT_histogram */ + +#ifndef GL_EXT_index_array_formats +#define GL_EXT_index_array_formats 1 +#define GL_IUI_V2F_EXT 0x81AD +#define GL_IUI_V3F_EXT 0x81AE +#define GL_IUI_N3F_V2F_EXT 0x81AF +#define GL_IUI_N3F_V3F_EXT 0x81B0 +#define GL_T2F_IUI_V2F_EXT 0x81B1 +#define GL_T2F_IUI_V3F_EXT 0x81B2 +#define GL_T2F_IUI_N3F_V2F_EXT 0x81B3 +#define GL_T2F_IUI_N3F_V3F_EXT 0x81B4 +#endif /* GL_EXT_index_array_formats */ + +#ifndef GL_EXT_index_func +#define GL_EXT_index_func 1 +#define GL_INDEX_TEST_EXT 0x81B5 +#define GL_INDEX_TEST_FUNC_EXT 0x81B6 +#define GL_INDEX_TEST_REF_EXT 0x81B7 +typedef void (APIENTRYP PFNGLINDEXFUNCEXTPROC) (GLenum func, GLclampf ref); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIndexFuncEXT (GLenum func, GLclampf ref); +#endif +#endif /* GL_EXT_index_func */ + +#ifndef GL_EXT_index_material +#define GL_EXT_index_material 1 +#define GL_INDEX_MATERIAL_EXT 0x81B8 +#define GL_INDEX_MATERIAL_PARAMETER_EXT 0x81B9 +#define GL_INDEX_MATERIAL_FACE_EXT 0x81BA +typedef void (APIENTRYP PFNGLINDEXMATERIALEXTPROC) (GLenum face, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIndexMaterialEXT (GLenum face, GLenum mode); +#endif +#endif /* GL_EXT_index_material */ + +#ifndef GL_EXT_index_texture +#define GL_EXT_index_texture 1 +#endif /* GL_EXT_index_texture */ + +#ifndef GL_EXT_light_texture +#define GL_EXT_light_texture 1 +#define GL_FRAGMENT_MATERIAL_EXT 0x8349 +#define GL_FRAGMENT_NORMAL_EXT 0x834A +#define GL_FRAGMENT_COLOR_EXT 0x834C +#define GL_ATTENUATION_EXT 0x834D +#define GL_SHADOW_ATTENUATION_EXT 0x834E +#define GL_TEXTURE_APPLICATION_MODE_EXT 0x834F +#define GL_TEXTURE_LIGHT_EXT 0x8350 +#define GL_TEXTURE_MATERIAL_FACE_EXT 0x8351 +#define GL_TEXTURE_MATERIAL_PARAMETER_EXT 0x8352 +typedef void (APIENTRYP PFNGLAPPLYTEXTUREEXTPROC) (GLenum mode); +typedef void (APIENTRYP PFNGLTEXTURELIGHTEXTPROC) (GLenum pname); +typedef void (APIENTRYP PFNGLTEXTUREMATERIALEXTPROC) (GLenum face, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glApplyTextureEXT (GLenum mode); +GLAPI void APIENTRY glTextureLightEXT (GLenum pname); +GLAPI void APIENTRY glTextureMaterialEXT (GLenum face, GLenum mode); +#endif +#endif /* GL_EXT_light_texture */ + +#ifndef GL_EXT_memory_object +#define GL_EXT_memory_object 1 +#define GL_TEXTURE_TILING_EXT 0x9580 +#define GL_DEDICATED_MEMORY_OBJECT_EXT 0x9581 +#define GL_PROTECTED_MEMORY_OBJECT_EXT 0x959B +#define GL_NUM_TILING_TYPES_EXT 0x9582 +#define GL_TILING_TYPES_EXT 0x9583 +#define GL_OPTIMAL_TILING_EXT 0x9584 +#define GL_LINEAR_TILING_EXT 0x9585 +#define GL_NUM_DEVICE_UUIDS_EXT 0x9596 +#define GL_DEVICE_UUID_EXT 0x9597 +#define GL_DRIVER_UUID_EXT 0x9598 +#define GL_UUID_SIZE_EXT 16 +typedef void (APIENTRYP PFNGLGETUNSIGNEDBYTEVEXTPROC) (GLenum pname, GLubyte *data); +typedef void (APIENTRYP PFNGLGETUNSIGNEDBYTEI_VEXTPROC) (GLenum target, GLuint index, GLubyte *data); +typedef void (APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); +typedef GLboolean (APIENTRYP PFNGLISMEMORYOBJECTEXTPROC) (GLuint memoryObject); +typedef void (APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); +typedef void (APIENTRYP PFNGLMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM2DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM3DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLBUFFERSTORAGEMEMEXTPROC) (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM2DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM2DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM3DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM3DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEMEMEXTPROC) (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM1DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetUnsignedBytevEXT (GLenum pname, GLubyte *data); +GLAPI void APIENTRY glGetUnsignedBytei_vEXT (GLenum target, GLuint index, GLubyte *data); +GLAPI void APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); +GLAPI GLboolean APIENTRY glIsMemoryObjectEXT (GLuint memoryObject); +GLAPI void APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects); +GLAPI void APIENTRY glMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, GLint *params); +GLAPI void APIENTRY glTexStorageMem2DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem2DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem3DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem3DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glBufferStorageMemEXT (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem2DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem2DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem3DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem3DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glNamedBufferStorageMemEXT (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem1DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem1DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_EXT_memory_object */ + +#ifndef GL_EXT_memory_object_fd +#define GL_EXT_memory_object_fd 1 +#define GL_HANDLE_TYPE_OPAQUE_FD_EXT 0x9586 +typedef void (APIENTRYP PFNGLIMPORTMEMORYFDEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportMemoryFdEXT (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_memory_object_fd */ + +#ifndef GL_EXT_memory_object_win32 +#define GL_EXT_memory_object_win32 1 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_EXT 0x9587 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_KMT_EXT 0x9588 +#define GL_DEVICE_LUID_EXT 0x9599 +#define GL_DEVICE_NODE_MASK_EXT 0x959A +#define GL_LUID_SIZE_EXT 8 +#define GL_HANDLE_TYPE_D3D12_TILEPOOL_EXT 0x9589 +#define GL_HANDLE_TYPE_D3D12_RESOURCE_EXT 0x958A +#define GL_HANDLE_TYPE_D3D11_IMAGE_EXT 0x958B +#define GL_HANDLE_TYPE_D3D11_IMAGE_KMT_EXT 0x958C +typedef void (APIENTRYP PFNGLIMPORTMEMORYWIN32HANDLEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +typedef void (APIENTRYP PFNGLIMPORTMEMORYWIN32NAMEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportMemoryWin32HandleEXT (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +GLAPI void APIENTRY glImportMemoryWin32NameEXT (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_memory_object_win32 */ + +#ifndef GL_EXT_misc_attribute +#define GL_EXT_misc_attribute 1 +#endif /* GL_EXT_misc_attribute */ + +#ifndef GL_EXT_multi_draw_arrays +#define GL_EXT_multi_draw_arrays 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysEXT (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GLAPI void APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#endif +#endif /* GL_EXT_multi_draw_arrays */ + +#ifndef GL_EXT_multisample +#define GL_EXT_multisample 1 +#define GL_MULTISAMPLE_EXT 0x809D +#define GL_SAMPLE_ALPHA_TO_MASK_EXT 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F +#define GL_SAMPLE_MASK_EXT 0x80A0 +#define GL_1PASS_EXT 0x80A1 +#define GL_2PASS_0_EXT 0x80A2 +#define GL_2PASS_1_EXT 0x80A3 +#define GL_4PASS_0_EXT 0x80A4 +#define GL_4PASS_1_EXT 0x80A5 +#define GL_4PASS_2_EXT 0x80A6 +#define GL_4PASS_3_EXT 0x80A7 +#define GL_SAMPLE_BUFFERS_EXT 0x80A8 +#define GL_SAMPLES_EXT 0x80A9 +#define GL_SAMPLE_MASK_VALUE_EXT 0x80AA +#define GL_SAMPLE_MASK_INVERT_EXT 0x80AB +#define GL_SAMPLE_PATTERN_EXT 0x80AC +#define GL_MULTISAMPLE_BIT_EXT 0x20000000 +typedef void (APIENTRYP PFNGLSAMPLEMASKEXTPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLSAMPLEPATTERNEXTPROC) (GLenum pattern); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleMaskEXT (GLclampf value, GLboolean invert); +GLAPI void APIENTRY glSamplePatternEXT (GLenum pattern); +#endif +#endif /* GL_EXT_multisample */ + +#ifndef GL_EXT_multiview_tessellation_geometry_shader +#define GL_EXT_multiview_tessellation_geometry_shader 1 +#endif /* GL_EXT_multiview_tessellation_geometry_shader */ + +#ifndef GL_EXT_multiview_texture_multisample +#define GL_EXT_multiview_texture_multisample 1 +#endif /* GL_EXT_multiview_texture_multisample */ + +#ifndef GL_EXT_multiview_timer_query +#define GL_EXT_multiview_timer_query 1 +#endif /* GL_EXT_multiview_timer_query */ + +#ifndef GL_EXT_packed_depth_stencil +#define GL_EXT_packed_depth_stencil 1 +#define GL_DEPTH_STENCIL_EXT 0x84F9 +#define GL_UNSIGNED_INT_24_8_EXT 0x84FA +#define GL_DEPTH24_STENCIL8_EXT 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE_EXT 0x88F1 +#endif /* GL_EXT_packed_depth_stencil */ + +#ifndef GL_EXT_packed_float +#define GL_EXT_packed_float 1 +#define GL_R11F_G11F_B10F_EXT 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV_EXT 0x8C3B +#define GL_RGBA_SIGNED_COMPONENTS_EXT 0x8C3C +#endif /* GL_EXT_packed_float */ + +#ifndef GL_EXT_packed_pixels +#define GL_EXT_packed_pixels 1 +#define GL_UNSIGNED_BYTE_3_3_2_EXT 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4_EXT 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1_EXT 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8_EXT 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2_EXT 0x8036 +#endif /* GL_EXT_packed_pixels */ + +#ifndef GL_EXT_paletted_texture +#define GL_EXT_paletted_texture 1 +#define GL_COLOR_INDEX1_EXT 0x80E2 +#define GL_COLOR_INDEX2_EXT 0x80E3 +#define GL_COLOR_INDEX4_EXT 0x80E4 +#define GL_COLOR_INDEX8_EXT 0x80E5 +#define GL_COLOR_INDEX12_EXT 0x80E6 +#define GL_COLOR_INDEX16_EXT 0x80E7 +#define GL_TEXTURE_INDEX_SIZE_EXT 0x80ED +typedef void (APIENTRYP PFNGLCOLORTABLEEXTPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEEXTPROC) (GLenum target, GLenum format, GLenum type, void *data); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTableEXT (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const void *table); +GLAPI void APIENTRY glGetColorTableEXT (GLenum target, GLenum format, GLenum type, void *data); +GLAPI void APIENTRY glGetColorTableParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetColorTableParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +#endif +#endif /* GL_EXT_paletted_texture */ + +#ifndef GL_EXT_pixel_buffer_object +#define GL_EXT_pixel_buffer_object 1 +#define GL_PIXEL_PACK_BUFFER_EXT 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_EXT 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_EXT 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_EXT 0x88EF +#endif /* GL_EXT_pixel_buffer_object */ + +#ifndef GL_EXT_pixel_transform +#define GL_EXT_pixel_transform 1 +#define GL_PIXEL_TRANSFORM_2D_EXT 0x8330 +#define GL_PIXEL_MAG_FILTER_EXT 0x8331 +#define GL_PIXEL_MIN_FILTER_EXT 0x8332 +#define GL_PIXEL_CUBIC_WEIGHT_EXT 0x8333 +#define GL_CUBIC_EXT 0x8334 +#define GL_AVERAGE_EXT 0x8335 +#define GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8336 +#define GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8337 +#define GL_PIXEL_TRANSFORM_2D_MATRIX_EXT 0x8338 +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTransformParameteriEXT (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glPixelTransformParameterfEXT (GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glPixelTransformParameterivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glPixelTransformParameterfvEXT (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetPixelTransformParameterivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetPixelTransformParameterfvEXT (GLenum target, GLenum pname, GLfloat *params); +#endif +#endif /* GL_EXT_pixel_transform */ + +#ifndef GL_EXT_pixel_transform_color_table +#define GL_EXT_pixel_transform_color_table 1 +#endif /* GL_EXT_pixel_transform_color_table */ + +#ifndef GL_EXT_point_parameters +#define GL_EXT_point_parameters 1 +#define GL_POINT_SIZE_MIN_EXT 0x8126 +#define GL_POINT_SIZE_MAX_EXT 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_EXT 0x8128 +#define GL_DISTANCE_ATTENUATION_EXT 0x8129 +typedef void (APIENTRYP PFNGLPOINTPARAMETERFEXTPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVEXTPROC) (GLenum pname, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfEXT (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvEXT (GLenum pname, const GLfloat *params); +#endif +#endif /* GL_EXT_point_parameters */ + +#ifndef GL_EXT_polygon_offset +#define GL_EXT_polygon_offset 1 +#define GL_POLYGON_OFFSET_EXT 0x8037 +#define GL_POLYGON_OFFSET_FACTOR_EXT 0x8038 +#define GL_POLYGON_OFFSET_BIAS_EXT 0x8039 +typedef void (APIENTRYP PFNGLPOLYGONOFFSETEXTPROC) (GLfloat factor, GLfloat bias); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPolygonOffsetEXT (GLfloat factor, GLfloat bias); +#endif +#endif /* GL_EXT_polygon_offset */ + +#ifndef GL_EXT_polygon_offset_clamp +#define GL_EXT_polygon_offset_clamp 1 +#define GL_POLYGON_OFFSET_CLAMP_EXT 0x8E1B +typedef void (APIENTRYP PFNGLPOLYGONOFFSETCLAMPEXTPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPolygonOffsetClampEXT (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_EXT_polygon_offset_clamp */ + +#ifndef GL_EXT_post_depth_coverage +#define GL_EXT_post_depth_coverage 1 +#endif /* GL_EXT_post_depth_coverage */ + +#ifndef GL_EXT_provoking_vertex +#define GL_EXT_provoking_vertex 1 +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E +#define GL_PROVOKING_VERTEX_EXT 0x8E4F +typedef void (APIENTRYP PFNGLPROVOKINGVERTEXEXTPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProvokingVertexEXT (GLenum mode); +#endif +#endif /* GL_EXT_provoking_vertex */ + +#ifndef GL_EXT_raster_multisample +#define GL_EXT_raster_multisample 1 +#define GL_RASTER_MULTISAMPLE_EXT 0x9327 +#define GL_RASTER_SAMPLES_EXT 0x9328 +#define GL_MAX_RASTER_SAMPLES_EXT 0x9329 +#define GL_RASTER_FIXED_SAMPLE_LOCATIONS_EXT 0x932A +#define GL_MULTISAMPLE_RASTERIZATION_ALLOWED_EXT 0x932B +#define GL_EFFECTIVE_RASTER_SAMPLES_EXT 0x932C +typedef void (APIENTRYP PFNGLRASTERSAMPLESEXTPROC) (GLuint samples, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRasterSamplesEXT (GLuint samples, GLboolean fixedsamplelocations); +#endif +#endif /* GL_EXT_raster_multisample */ + +#ifndef GL_EXT_rescale_normal +#define GL_EXT_rescale_normal 1 +#define GL_RESCALE_NORMAL_EXT 0x803A +#endif /* GL_EXT_rescale_normal */ + +#ifndef GL_EXT_secondary_color +#define GL_EXT_secondary_color 1 +#define GL_COLOR_SUM_EXT 0x8458 +#define GL_CURRENT_SECONDARY_COLOR_EXT 0x8459 +#define GL_SECONDARY_COLOR_ARRAY_SIZE_EXT 0x845A +#define GL_SECONDARY_COLOR_ARRAY_TYPE_EXT 0x845B +#define GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT 0x845C +#define GL_SECONDARY_COLOR_ARRAY_POINTER_EXT 0x845D +#define GL_SECONDARY_COLOR_ARRAY_EXT 0x845E +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BEXTPROC) (GLbyte red, GLbyte green, GLbyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVEXTPROC) (const GLbyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DEXTPROC) (GLdouble red, GLdouble green, GLdouble blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVEXTPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FEXTPROC) (GLfloat red, GLfloat green, GLfloat blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVEXTPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IEXTPROC) (GLint red, GLint green, GLint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVEXTPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SEXTPROC) (GLshort red, GLshort green, GLshort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVEXTPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBEXTPROC) (GLubyte red, GLubyte green, GLubyte blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVEXTPROC) (const GLubyte *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIEXTPROC) (GLuint red, GLuint green, GLuint blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVEXTPROC) (const GLuint *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USEXTPROC) (GLushort red, GLushort green, GLushort blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVEXTPROC) (const GLushort *v); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSecondaryColor3bEXT (GLbyte red, GLbyte green, GLbyte blue); +GLAPI void APIENTRY glSecondaryColor3bvEXT (const GLbyte *v); +GLAPI void APIENTRY glSecondaryColor3dEXT (GLdouble red, GLdouble green, GLdouble blue); +GLAPI void APIENTRY glSecondaryColor3dvEXT (const GLdouble *v); +GLAPI void APIENTRY glSecondaryColor3fEXT (GLfloat red, GLfloat green, GLfloat blue); +GLAPI void APIENTRY glSecondaryColor3fvEXT (const GLfloat *v); +GLAPI void APIENTRY glSecondaryColor3iEXT (GLint red, GLint green, GLint blue); +GLAPI void APIENTRY glSecondaryColor3ivEXT (const GLint *v); +GLAPI void APIENTRY glSecondaryColor3sEXT (GLshort red, GLshort green, GLshort blue); +GLAPI void APIENTRY glSecondaryColor3svEXT (const GLshort *v); +GLAPI void APIENTRY glSecondaryColor3ubEXT (GLubyte red, GLubyte green, GLubyte blue); +GLAPI void APIENTRY glSecondaryColor3ubvEXT (const GLubyte *v); +GLAPI void APIENTRY glSecondaryColor3uiEXT (GLuint red, GLuint green, GLuint blue); +GLAPI void APIENTRY glSecondaryColor3uivEXT (const GLuint *v); +GLAPI void APIENTRY glSecondaryColor3usEXT (GLushort red, GLushort green, GLushort blue); +GLAPI void APIENTRY glSecondaryColor3usvEXT (const GLushort *v); +GLAPI void APIENTRY glSecondaryColorPointerEXT (GLint size, GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_secondary_color */ + +#ifndef GL_EXT_semaphore +#define GL_EXT_semaphore 1 +#define GL_LAYOUT_GENERAL_EXT 0x958D +#define GL_LAYOUT_COLOR_ATTACHMENT_EXT 0x958E +#define GL_LAYOUT_DEPTH_STENCIL_ATTACHMENT_EXT 0x958F +#define GL_LAYOUT_DEPTH_STENCIL_READ_ONLY_EXT 0x9590 +#define GL_LAYOUT_SHADER_READ_ONLY_EXT 0x9591 +#define GL_LAYOUT_TRANSFER_SRC_EXT 0x9592 +#define GL_LAYOUT_TRANSFER_DST_EXT 0x9593 +#define GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT 0x9530 +#define GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT 0x9531 +typedef void (APIENTRYP PFNGLGENSEMAPHORESEXTPROC) (GLsizei n, GLuint *semaphores); +typedef void (APIENTRYP PFNGLDELETESEMAPHORESEXTPROC) (GLsizei n, const GLuint *semaphores); +typedef GLboolean (APIENTRYP PFNGLISSEMAPHOREEXTPROC) (GLuint semaphore); +typedef void (APIENTRYP PFNGLSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, const GLuint64 *params); +typedef void (APIENTRYP PFNGLGETSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, GLuint64 *params); +typedef void (APIENTRYP PFNGLWAITSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +typedef void (APIENTRYP PFNGLSIGNALSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenSemaphoresEXT (GLsizei n, GLuint *semaphores); +GLAPI void APIENTRY glDeleteSemaphoresEXT (GLsizei n, const GLuint *semaphores); +GLAPI GLboolean APIENTRY glIsSemaphoreEXT (GLuint semaphore); +GLAPI void APIENTRY glSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, const GLuint64 *params); +GLAPI void APIENTRY glGetSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, GLuint64 *params); +GLAPI void APIENTRY glWaitSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +GLAPI void APIENTRY glSignalSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#endif +#endif /* GL_EXT_semaphore */ + +#ifndef GL_EXT_semaphore_fd +#define GL_EXT_semaphore_fd 1 +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREFDEXTPROC) (GLuint semaphore, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportSemaphoreFdEXT (GLuint semaphore, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_semaphore_fd */ + +#ifndef GL_EXT_semaphore_win32 +#define GL_EXT_semaphore_win32 1 +#define GL_HANDLE_TYPE_D3D12_FENCE_EXT 0x9594 +#define GL_D3D12_FENCE_VALUE_EXT 0x9595 +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREWIN32HANDLEEXTPROC) (GLuint semaphore, GLenum handleType, void *handle); +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREWIN32NAMEEXTPROC) (GLuint semaphore, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportSemaphoreWin32HandleEXT (GLuint semaphore, GLenum handleType, void *handle); +GLAPI void APIENTRY glImportSemaphoreWin32NameEXT (GLuint semaphore, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_semaphore_win32 */ + +#ifndef GL_EXT_separate_shader_objects +#define GL_EXT_separate_shader_objects 1 +#define GL_ACTIVE_PROGRAM_EXT 0x8B8D +typedef void (APIENTRYP PFNGLUSESHADERPROGRAMEXTPROC) (GLenum type, GLuint program); +typedef void (APIENTRYP PFNGLACTIVEPROGRAMEXTPROC) (GLuint program); +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMEXTPROC) (GLenum type, const GLchar *string); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUseShaderProgramEXT (GLenum type, GLuint program); +GLAPI void APIENTRY glActiveProgramEXT (GLuint program); +GLAPI GLuint APIENTRY glCreateShaderProgramEXT (GLenum type, const GLchar *string); +#endif +#endif /* GL_EXT_separate_shader_objects */ + +#ifndef GL_EXT_separate_specular_color +#define GL_EXT_separate_specular_color 1 +#define GL_LIGHT_MODEL_COLOR_CONTROL_EXT 0x81F8 +#define GL_SINGLE_COLOR_EXT 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR_EXT 0x81FA +#endif /* GL_EXT_separate_specular_color */ + +#ifndef GL_EXT_shader_framebuffer_fetch +#define GL_EXT_shader_framebuffer_fetch 1 +#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT 0x8A52 +#endif /* GL_EXT_shader_framebuffer_fetch */ + +#ifndef GL_EXT_shader_framebuffer_fetch_non_coherent +#define GL_EXT_shader_framebuffer_fetch_non_coherent 1 +typedef void (APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferFetchBarrierEXT (void); +#endif +#endif /* GL_EXT_shader_framebuffer_fetch_non_coherent */ + +#ifndef GL_EXT_shader_image_load_formatted +#define GL_EXT_shader_image_load_formatted 1 +#endif /* GL_EXT_shader_image_load_formatted */ + +#ifndef GL_EXT_shader_image_load_store +#define GL_EXT_shader_image_load_store 1 +#define GL_MAX_IMAGE_UNITS_EXT 0x8F38 +#define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS_EXT 0x8F39 +#define GL_IMAGE_BINDING_NAME_EXT 0x8F3A +#define GL_IMAGE_BINDING_LEVEL_EXT 0x8F3B +#define GL_IMAGE_BINDING_LAYERED_EXT 0x8F3C +#define GL_IMAGE_BINDING_LAYER_EXT 0x8F3D +#define GL_IMAGE_BINDING_ACCESS_EXT 0x8F3E +#define GL_IMAGE_1D_EXT 0x904C +#define GL_IMAGE_2D_EXT 0x904D +#define GL_IMAGE_3D_EXT 0x904E +#define GL_IMAGE_2D_RECT_EXT 0x904F +#define GL_IMAGE_CUBE_EXT 0x9050 +#define GL_IMAGE_BUFFER_EXT 0x9051 +#define GL_IMAGE_1D_ARRAY_EXT 0x9052 +#define GL_IMAGE_2D_ARRAY_EXT 0x9053 +#define GL_IMAGE_CUBE_MAP_ARRAY_EXT 0x9054 +#define GL_IMAGE_2D_MULTISAMPLE_EXT 0x9055 +#define GL_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9056 +#define GL_INT_IMAGE_1D_EXT 0x9057 +#define GL_INT_IMAGE_2D_EXT 0x9058 +#define GL_INT_IMAGE_3D_EXT 0x9059 +#define GL_INT_IMAGE_2D_RECT_EXT 0x905A +#define GL_INT_IMAGE_CUBE_EXT 0x905B +#define GL_INT_IMAGE_BUFFER_EXT 0x905C +#define GL_INT_IMAGE_1D_ARRAY_EXT 0x905D +#define GL_INT_IMAGE_2D_ARRAY_EXT 0x905E +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x905F +#define GL_INT_IMAGE_2D_MULTISAMPLE_EXT 0x9060 +#define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9061 +#define GL_UNSIGNED_INT_IMAGE_1D_EXT 0x9062 +#define GL_UNSIGNED_INT_IMAGE_2D_EXT 0x9063 +#define GL_UNSIGNED_INT_IMAGE_3D_EXT 0x9064 +#define GL_UNSIGNED_INT_IMAGE_2D_RECT_EXT 0x9065 +#define GL_UNSIGNED_INT_IMAGE_CUBE_EXT 0x9066 +#define GL_UNSIGNED_INT_IMAGE_BUFFER_EXT 0x9067 +#define GL_UNSIGNED_INT_IMAGE_1D_ARRAY_EXT 0x9068 +#define GL_UNSIGNED_INT_IMAGE_2D_ARRAY_EXT 0x9069 +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x906A +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_EXT 0x906B +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x906C +#define GL_MAX_IMAGE_SAMPLES_EXT 0x906D +#define GL_IMAGE_BINDING_FORMAT_EXT 0x906E +#define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT_EXT 0x00000001 +#define GL_ELEMENT_ARRAY_BARRIER_BIT_EXT 0x00000002 +#define GL_UNIFORM_BARRIER_BIT_EXT 0x00000004 +#define GL_TEXTURE_FETCH_BARRIER_BIT_EXT 0x00000008 +#define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT_EXT 0x00000020 +#define GL_COMMAND_BARRIER_BIT_EXT 0x00000040 +#define GL_PIXEL_BUFFER_BARRIER_BIT_EXT 0x00000080 +#define GL_TEXTURE_UPDATE_BARRIER_BIT_EXT 0x00000100 +#define GL_BUFFER_UPDATE_BARRIER_BIT_EXT 0x00000200 +#define GL_FRAMEBUFFER_BARRIER_BIT_EXT 0x00000400 +#define GL_TRANSFORM_FEEDBACK_BARRIER_BIT_EXT 0x00000800 +#define GL_ATOMIC_COUNTER_BARRIER_BIT_EXT 0x00001000 +#define GL_ALL_BARRIER_BITS_EXT 0xFFFFFFFF +typedef void (APIENTRYP PFNGLBINDIMAGETEXTUREEXTPROC) (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format); +typedef void (APIENTRYP PFNGLMEMORYBARRIEREXTPROC) (GLbitfield barriers); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindImageTextureEXT (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format); +GLAPI void APIENTRY glMemoryBarrierEXT (GLbitfield barriers); +#endif +#endif /* GL_EXT_shader_image_load_store */ + +#ifndef GL_EXT_shader_integer_mix +#define GL_EXT_shader_integer_mix 1 +#endif /* GL_EXT_shader_integer_mix */ + +#ifndef GL_EXT_shader_samples_identical +#define GL_EXT_shader_samples_identical 1 +#endif /* GL_EXT_shader_samples_identical */ + +#ifndef GL_EXT_shadow_funcs +#define GL_EXT_shadow_funcs 1 +#endif /* GL_EXT_shadow_funcs */ + +#ifndef GL_EXT_shared_texture_palette +#define GL_EXT_shared_texture_palette 1 +#define GL_SHARED_TEXTURE_PALETTE_EXT 0x81FB +#endif /* GL_EXT_shared_texture_palette */ + +#ifndef GL_EXT_sparse_texture2 +#define GL_EXT_sparse_texture2 1 +#endif /* GL_EXT_sparse_texture2 */ + +#ifndef GL_EXT_stencil_clear_tag +#define GL_EXT_stencil_clear_tag 1 +#define GL_STENCIL_TAG_BITS_EXT 0x88F2 +#define GL_STENCIL_CLEAR_TAG_VALUE_EXT 0x88F3 +typedef void (APIENTRYP PFNGLSTENCILCLEARTAGEXTPROC) (GLsizei stencilTagBits, GLuint stencilClearTag); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStencilClearTagEXT (GLsizei stencilTagBits, GLuint stencilClearTag); +#endif +#endif /* GL_EXT_stencil_clear_tag */ + +#ifndef GL_EXT_stencil_two_side +#define GL_EXT_stencil_two_side 1 +#define GL_STENCIL_TEST_TWO_SIDE_EXT 0x8910 +#define GL_ACTIVE_STENCIL_FACE_EXT 0x8911 +typedef void (APIENTRYP PFNGLACTIVESTENCILFACEEXTPROC) (GLenum face); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glActiveStencilFaceEXT (GLenum face); +#endif +#endif /* GL_EXT_stencil_two_side */ + +#ifndef GL_EXT_stencil_wrap +#define GL_EXT_stencil_wrap 1 +#define GL_INCR_WRAP_EXT 0x8507 +#define GL_DECR_WRAP_EXT 0x8508 +#endif /* GL_EXT_stencil_wrap */ + +#ifndef GL_EXT_subtexture +#define GL_EXT_subtexture 1 +typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage2DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +#endif +#endif /* GL_EXT_subtexture */ + +#ifndef GL_EXT_texture +#define GL_EXT_texture 1 +#define GL_ALPHA4_EXT 0x803B +#define GL_ALPHA8_EXT 0x803C +#define GL_ALPHA12_EXT 0x803D +#define GL_ALPHA16_EXT 0x803E +#define GL_LUMINANCE4_EXT 0x803F +#define GL_LUMINANCE8_EXT 0x8040 +#define GL_LUMINANCE12_EXT 0x8041 +#define GL_LUMINANCE16_EXT 0x8042 +#define GL_LUMINANCE4_ALPHA4_EXT 0x8043 +#define GL_LUMINANCE6_ALPHA2_EXT 0x8044 +#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 +#define GL_LUMINANCE12_ALPHA4_EXT 0x8046 +#define GL_LUMINANCE12_ALPHA12_EXT 0x8047 +#define GL_LUMINANCE16_ALPHA16_EXT 0x8048 +#define GL_INTENSITY_EXT 0x8049 +#define GL_INTENSITY4_EXT 0x804A +#define GL_INTENSITY8_EXT 0x804B +#define GL_INTENSITY12_EXT 0x804C +#define GL_INTENSITY16_EXT 0x804D +#define GL_RGB2_EXT 0x804E +#define GL_RGB4_EXT 0x804F +#define GL_RGB5_EXT 0x8050 +#define GL_RGB8_EXT 0x8051 +#define GL_RGB10_EXT 0x8052 +#define GL_RGB12_EXT 0x8053 +#define GL_RGB16_EXT 0x8054 +#define GL_RGBA2_EXT 0x8055 +#define GL_RGBA4_EXT 0x8056 +#define GL_RGB5_A1_EXT 0x8057 +#define GL_RGBA8_EXT 0x8058 +#define GL_RGB10_A2_EXT 0x8059 +#define GL_RGBA12_EXT 0x805A +#define GL_RGBA16_EXT 0x805B +#define GL_TEXTURE_RED_SIZE_EXT 0x805C +#define GL_TEXTURE_GREEN_SIZE_EXT 0x805D +#define GL_TEXTURE_BLUE_SIZE_EXT 0x805E +#define GL_TEXTURE_ALPHA_SIZE_EXT 0x805F +#define GL_TEXTURE_LUMINANCE_SIZE_EXT 0x8060 +#define GL_TEXTURE_INTENSITY_SIZE_EXT 0x8061 +#define GL_REPLACE_EXT 0x8062 +#define GL_PROXY_TEXTURE_1D_EXT 0x8063 +#define GL_PROXY_TEXTURE_2D_EXT 0x8064 +#define GL_TEXTURE_TOO_LARGE_EXT 0x8065 +#endif /* GL_EXT_texture */ + +#ifndef GL_EXT_texture3D +#define GL_EXT_texture3D 1 +#define GL_PACK_SKIP_IMAGES_EXT 0x806B +#define GL_PACK_IMAGE_HEIGHT_EXT 0x806C +#define GL_UNPACK_SKIP_IMAGES_EXT 0x806D +#define GL_UNPACK_IMAGE_HEIGHT_EXT 0x806E +#define GL_TEXTURE_3D_EXT 0x806F +#define GL_PROXY_TEXTURE_3D_EXT 0x8070 +#define GL_TEXTURE_DEPTH_EXT 0x8071 +#define GL_TEXTURE_WRAP_R_EXT 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE_EXT 0x8073 +typedef void (APIENTRYP PFNGLTEXIMAGE3DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage3DEXT (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage3DEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +#endif +#endif /* GL_EXT_texture3D */ + +#ifndef GL_EXT_texture_array +#define GL_EXT_texture_array 1 +#define GL_TEXTURE_1D_ARRAY_EXT 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY_EXT 0x8C19 +#define GL_TEXTURE_2D_ARRAY_EXT 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY_EXT 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY_EXT 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY_EXT 0x8C1D +#define GL_MAX_ARRAY_TEXTURE_LAYERS_EXT 0x88FF +#define GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT 0x884E +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYEREXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferTextureLayerEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +#endif +#endif /* GL_EXT_texture_array */ + +#ifndef GL_EXT_texture_buffer_object +#define GL_EXT_texture_buffer_object 1 +#define GL_TEXTURE_BUFFER_EXT 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT_EXT 0x8C2E +typedef void (APIENTRYP PFNGLTEXBUFFEREXTPROC) (GLenum target, GLenum internalformat, GLuint buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexBufferEXT (GLenum target, GLenum internalformat, GLuint buffer); +#endif +#endif /* GL_EXT_texture_buffer_object */ + +#ifndef GL_EXT_texture_compression_latc +#define GL_EXT_texture_compression_latc 1 +#define GL_COMPRESSED_LUMINANCE_LATC1_EXT 0x8C70 +#define GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT 0x8C71 +#define GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT 0x8C72 +#define GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT 0x8C73 +#endif /* GL_EXT_texture_compression_latc */ + +#ifndef GL_EXT_texture_compression_rgtc +#define GL_EXT_texture_compression_rgtc 1 +#define GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC +#define GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD +#define GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE +#endif /* GL_EXT_texture_compression_rgtc */ + +#ifndef GL_EXT_texture_compression_s3tc +#define GL_EXT_texture_compression_s3tc 1 +#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 +#endif /* GL_EXT_texture_compression_s3tc */ + +#ifndef GL_EXT_texture_cube_map +#define GL_EXT_texture_cube_map 1 +#define GL_NORMAL_MAP_EXT 0x8511 +#define GL_REFLECTION_MAP_EXT 0x8512 +#define GL_TEXTURE_CUBE_MAP_EXT 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP_EXT 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP_EXT 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT 0x851C +#endif /* GL_EXT_texture_cube_map */ + +#ifndef GL_EXT_texture_env_add +#define GL_EXT_texture_env_add 1 +#endif /* GL_EXT_texture_env_add */ + +#ifndef GL_EXT_texture_env_combine +#define GL_EXT_texture_env_combine 1 +#define GL_COMBINE_EXT 0x8570 +#define GL_COMBINE_RGB_EXT 0x8571 +#define GL_COMBINE_ALPHA_EXT 0x8572 +#define GL_RGB_SCALE_EXT 0x8573 +#define GL_ADD_SIGNED_EXT 0x8574 +#define GL_INTERPOLATE_EXT 0x8575 +#define GL_CONSTANT_EXT 0x8576 +#define GL_PRIMARY_COLOR_EXT 0x8577 +#define GL_PREVIOUS_EXT 0x8578 +#define GL_SOURCE0_RGB_EXT 0x8580 +#define GL_SOURCE1_RGB_EXT 0x8581 +#define GL_SOURCE2_RGB_EXT 0x8582 +#define GL_SOURCE0_ALPHA_EXT 0x8588 +#define GL_SOURCE1_ALPHA_EXT 0x8589 +#define GL_SOURCE2_ALPHA_EXT 0x858A +#define GL_OPERAND0_RGB_EXT 0x8590 +#define GL_OPERAND1_RGB_EXT 0x8591 +#define GL_OPERAND2_RGB_EXT 0x8592 +#define GL_OPERAND0_ALPHA_EXT 0x8598 +#define GL_OPERAND1_ALPHA_EXT 0x8599 +#define GL_OPERAND2_ALPHA_EXT 0x859A +#endif /* GL_EXT_texture_env_combine */ + +#ifndef GL_EXT_texture_env_dot3 +#define GL_EXT_texture_env_dot3 1 +#define GL_DOT3_RGB_EXT 0x8740 +#define GL_DOT3_RGBA_EXT 0x8741 +#endif /* GL_EXT_texture_env_dot3 */ + +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_EXT_texture_filter_anisotropic 1 +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF +#endif /* GL_EXT_texture_filter_anisotropic */ + +#ifndef GL_EXT_texture_filter_minmax +#define GL_EXT_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_EXT 0x9366 +#define GL_WEIGHTED_AVERAGE_EXT 0x9367 +#endif /* GL_EXT_texture_filter_minmax */ + +#ifndef GL_EXT_texture_integer +#define GL_EXT_texture_integer 1 +#define GL_RGBA32UI_EXT 0x8D70 +#define GL_RGB32UI_EXT 0x8D71 +#define GL_ALPHA32UI_EXT 0x8D72 +#define GL_INTENSITY32UI_EXT 0x8D73 +#define GL_LUMINANCE32UI_EXT 0x8D74 +#define GL_LUMINANCE_ALPHA32UI_EXT 0x8D75 +#define GL_RGBA16UI_EXT 0x8D76 +#define GL_RGB16UI_EXT 0x8D77 +#define GL_ALPHA16UI_EXT 0x8D78 +#define GL_INTENSITY16UI_EXT 0x8D79 +#define GL_LUMINANCE16UI_EXT 0x8D7A +#define GL_LUMINANCE_ALPHA16UI_EXT 0x8D7B +#define GL_RGBA8UI_EXT 0x8D7C +#define GL_RGB8UI_EXT 0x8D7D +#define GL_ALPHA8UI_EXT 0x8D7E +#define GL_INTENSITY8UI_EXT 0x8D7F +#define GL_LUMINANCE8UI_EXT 0x8D80 +#define GL_LUMINANCE_ALPHA8UI_EXT 0x8D81 +#define GL_RGBA32I_EXT 0x8D82 +#define GL_RGB32I_EXT 0x8D83 +#define GL_ALPHA32I_EXT 0x8D84 +#define GL_INTENSITY32I_EXT 0x8D85 +#define GL_LUMINANCE32I_EXT 0x8D86 +#define GL_LUMINANCE_ALPHA32I_EXT 0x8D87 +#define GL_RGBA16I_EXT 0x8D88 +#define GL_RGB16I_EXT 0x8D89 +#define GL_ALPHA16I_EXT 0x8D8A +#define GL_INTENSITY16I_EXT 0x8D8B +#define GL_LUMINANCE16I_EXT 0x8D8C +#define GL_LUMINANCE_ALPHA16I_EXT 0x8D8D +#define GL_RGBA8I_EXT 0x8D8E +#define GL_RGB8I_EXT 0x8D8F +#define GL_ALPHA8I_EXT 0x8D90 +#define GL_INTENSITY8I_EXT 0x8D91 +#define GL_LUMINANCE8I_EXT 0x8D92 +#define GL_LUMINANCE_ALPHA8I_EXT 0x8D93 +#define GL_RED_INTEGER_EXT 0x8D94 +#define GL_GREEN_INTEGER_EXT 0x8D95 +#define GL_BLUE_INTEGER_EXT 0x8D96 +#define GL_ALPHA_INTEGER_EXT 0x8D97 +#define GL_RGB_INTEGER_EXT 0x8D98 +#define GL_RGBA_INTEGER_EXT 0x8D99 +#define GL_BGR_INTEGER_EXT 0x8D9A +#define GL_BGRA_INTEGER_EXT 0x8D9B +#define GL_LUMINANCE_INTEGER_EXT 0x8D9C +#define GL_LUMINANCE_ALPHA_INTEGER_EXT 0x8D9D +#define GL_RGBA_INTEGER_MODE_EXT 0x8D9E +typedef void (APIENTRYP PFNGLTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLCLEARCOLORIIEXTPROC) (GLint red, GLint green, GLint blue, GLint alpha); +typedef void (APIENTRYP PFNGLCLEARCOLORIUIEXTPROC) (GLuint red, GLuint green, GLuint blue, GLuint alpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexParameterIivEXT (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTexParameterIuivEXT (GLenum target, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glGetTexParameterIivEXT (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTexParameterIuivEXT (GLenum target, GLenum pname, GLuint *params); +GLAPI void APIENTRY glClearColorIiEXT (GLint red, GLint green, GLint blue, GLint alpha); +GLAPI void APIENTRY glClearColorIuiEXT (GLuint red, GLuint green, GLuint blue, GLuint alpha); +#endif +#endif /* GL_EXT_texture_integer */ + +#ifndef GL_EXT_texture_lod_bias +#define GL_EXT_texture_lod_bias 1 +#define GL_MAX_TEXTURE_LOD_BIAS_EXT 0x84FD +#define GL_TEXTURE_FILTER_CONTROL_EXT 0x8500 +#define GL_TEXTURE_LOD_BIAS_EXT 0x8501 +#endif /* GL_EXT_texture_lod_bias */ + +#ifndef GL_EXT_texture_mirror_clamp +#define GL_EXT_texture_mirror_clamp 1 +#define GL_MIRROR_CLAMP_EXT 0x8742 +#define GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 +#define GL_MIRROR_CLAMP_TO_BORDER_EXT 0x8912 +#endif /* GL_EXT_texture_mirror_clamp */ + +#ifndef GL_EXT_texture_object +#define GL_EXT_texture_object 1 +#define GL_TEXTURE_PRIORITY_EXT 0x8066 +#define GL_TEXTURE_RESIDENT_EXT 0x8067 +#define GL_TEXTURE_1D_BINDING_EXT 0x8068 +#define GL_TEXTURE_2D_BINDING_EXT 0x8069 +#define GL_TEXTURE_3D_BINDING_EXT 0x806A +typedef GLboolean (APIENTRYP PFNGLARETEXTURESRESIDENTEXTPROC) (GLsizei n, const GLuint *textures, GLboolean *residences); +typedef void (APIENTRYP PFNGLBINDTEXTUREEXTPROC) (GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLDELETETEXTURESEXTPROC) (GLsizei n, const GLuint *textures); +typedef void (APIENTRYP PFNGLGENTEXTURESEXTPROC) (GLsizei n, GLuint *textures); +typedef GLboolean (APIENTRYP PFNGLISTEXTUREEXTPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESEXTPROC) (GLsizei n, const GLuint *textures, const GLclampf *priorities); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAreTexturesResidentEXT (GLsizei n, const GLuint *textures, GLboolean *residences); +GLAPI void APIENTRY glBindTextureEXT (GLenum target, GLuint texture); +GLAPI void APIENTRY glDeleteTexturesEXT (GLsizei n, const GLuint *textures); +GLAPI void APIENTRY glGenTexturesEXT (GLsizei n, GLuint *textures); +GLAPI GLboolean APIENTRY glIsTextureEXT (GLuint texture); +GLAPI void APIENTRY glPrioritizeTexturesEXT (GLsizei n, const GLuint *textures, const GLclampf *priorities); +#endif +#endif /* GL_EXT_texture_object */ + +#ifndef GL_EXT_texture_perturb_normal +#define GL_EXT_texture_perturb_normal 1 +#define GL_PERTURB_EXT 0x85AE +#define GL_TEXTURE_NORMAL_EXT 0x85AF +typedef void (APIENTRYP PFNGLTEXTURENORMALEXTPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureNormalEXT (GLenum mode); +#endif +#endif /* GL_EXT_texture_perturb_normal */ + +#ifndef GL_EXT_texture_sRGB +#define GL_EXT_texture_sRGB 1 +#define GL_SRGB_EXT 0x8C40 +#define GL_SRGB8_EXT 0x8C41 +#define GL_SRGB_ALPHA_EXT 0x8C42 +#define GL_SRGB8_ALPHA8_EXT 0x8C43 +#define GL_SLUMINANCE_ALPHA_EXT 0x8C44 +#define GL_SLUMINANCE8_ALPHA8_EXT 0x8C45 +#define GL_SLUMINANCE_EXT 0x8C46 +#define GL_SLUMINANCE8_EXT 0x8C47 +#define GL_COMPRESSED_SRGB_EXT 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA_EXT 0x8C49 +#define GL_COMPRESSED_SLUMINANCE_EXT 0x8C4A +#define GL_COMPRESSED_SLUMINANCE_ALPHA_EXT 0x8C4B +#define GL_COMPRESSED_SRGB_S3TC_DXT1_EXT 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT 0x8C4F +#endif /* GL_EXT_texture_sRGB */ + +#ifndef GL_EXT_texture_sRGB_R8 +#define GL_EXT_texture_sRGB_R8 1 +#define GL_SR8_EXT 0x8FBD +#endif /* GL_EXT_texture_sRGB_R8 */ + +#ifndef GL_EXT_texture_sRGB_RG8 +#define GL_EXT_texture_sRGB_RG8 1 +#define GL_SRG8_EXT 0x8FBE +#endif /* GL_EXT_texture_sRGB_RG8 */ + +#ifndef GL_EXT_texture_sRGB_decode +#define GL_EXT_texture_sRGB_decode 1 +#define GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 +#define GL_DECODE_EXT 0x8A49 +#define GL_SKIP_DECODE_EXT 0x8A4A +#endif /* GL_EXT_texture_sRGB_decode */ + +#ifndef GL_EXT_texture_shadow_lod +#define GL_EXT_texture_shadow_lod 1 +#endif /* GL_EXT_texture_shadow_lod */ + +#ifndef GL_EXT_texture_shared_exponent +#define GL_EXT_texture_shared_exponent 1 +#define GL_RGB9_E5_EXT 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV_EXT 0x8C3E +#define GL_TEXTURE_SHARED_SIZE_EXT 0x8C3F +#endif /* GL_EXT_texture_shared_exponent */ + +#ifndef GL_EXT_texture_snorm +#define GL_EXT_texture_snorm 1 +#define GL_ALPHA_SNORM 0x9010 +#define GL_LUMINANCE_SNORM 0x9011 +#define GL_LUMINANCE_ALPHA_SNORM 0x9012 +#define GL_INTENSITY_SNORM 0x9013 +#define GL_ALPHA8_SNORM 0x9014 +#define GL_LUMINANCE8_SNORM 0x9015 +#define GL_LUMINANCE8_ALPHA8_SNORM 0x9016 +#define GL_INTENSITY8_SNORM 0x9017 +#define GL_ALPHA16_SNORM 0x9018 +#define GL_LUMINANCE16_SNORM 0x9019 +#define GL_LUMINANCE16_ALPHA16_SNORM 0x901A +#define GL_INTENSITY16_SNORM 0x901B +#define GL_RED_SNORM 0x8F90 +#define GL_RG_SNORM 0x8F91 +#define GL_RGB_SNORM 0x8F92 +#define GL_RGBA_SNORM 0x8F93 +#endif /* GL_EXT_texture_snorm */ + +#ifndef GL_EXT_texture_storage +#define GL_EXT_texture_storage 1 +#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F +#define GL_RGBA32F_EXT 0x8814 +#define GL_RGB32F_EXT 0x8815 +#define GL_ALPHA32F_EXT 0x8816 +#define GL_LUMINANCE32F_EXT 0x8818 +#define GL_LUMINANCE_ALPHA32F_EXT 0x8819 +#define GL_RGBA16F_EXT 0x881A +#define GL_RGB16F_EXT 0x881B +#define GL_ALPHA16F_EXT 0x881C +#define GL_LUMINANCE16F_EXT 0x881E +#define GL_LUMINANCE_ALPHA16F_EXT 0x881F +#define GL_BGRA8_EXT 0x93A1 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B +#define GL_R32F_EXT 0x822E +#define GL_RG32F_EXT 0x8230 +#define GL_R16F_EXT 0x822D +#define GL_RG16F_EXT 0x822F +typedef void (APIENTRYP PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexStorage1DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTexStorage2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTexStorage3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_EXT_texture_storage */ + +#ifndef GL_EXT_texture_swizzle +#define GL_EXT_texture_swizzle 1 +#define GL_TEXTURE_SWIZZLE_R_EXT 0x8E42 +#define GL_TEXTURE_SWIZZLE_G_EXT 0x8E43 +#define GL_TEXTURE_SWIZZLE_B_EXT 0x8E44 +#define GL_TEXTURE_SWIZZLE_A_EXT 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA_EXT 0x8E46 +#endif /* GL_EXT_texture_swizzle */ + +#ifndef GL_EXT_timer_query +#define GL_EXT_timer_query 1 +#define GL_TIME_ELAPSED_EXT 0x88BF +typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64 *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64 *params); +#endif +#endif /* GL_EXT_timer_query */ + +#ifndef GL_EXT_transform_feedback +#define GL_EXT_transform_feedback 1 +#define GL_TRANSFORM_FEEDBACK_BUFFER_EXT 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT 0x8C85 +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT 0x8C8F +#define GL_INTERLEAVED_ATTRIBS_EXT 0x8C8C +#define GL_SEPARATE_ATTRIBS_EXT 0x8C8D +#define GL_PRIMITIVES_GENERATED_EXT 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT 0x8C88 +#define GL_RASTERIZER_DISCARD_EXT 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT 0x8C8B +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS_EXT 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT 0x8C7F +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT 0x8C76 +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKEXTPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKEXTPROC) (void); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGEEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFEROFFSETEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +typedef void (APIENTRYP PFNGLBINDBUFFERBASEEXTPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSEXTPROC) (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGEXTPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginTransformFeedbackEXT (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedbackEXT (void); +GLAPI void APIENTRY glBindBufferRangeEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferOffsetEXT (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +GLAPI void APIENTRY glBindBufferBaseEXT (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryingsEXT (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +GLAPI void APIENTRY glGetTransformFeedbackVaryingEXT (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +#endif +#endif /* GL_EXT_transform_feedback */ + +#ifndef GL_EXT_vertex_array +#define GL_EXT_vertex_array 1 +#define GL_VERTEX_ARRAY_EXT 0x8074 +#define GL_NORMAL_ARRAY_EXT 0x8075 +#define GL_COLOR_ARRAY_EXT 0x8076 +#define GL_INDEX_ARRAY_EXT 0x8077 +#define GL_TEXTURE_COORD_ARRAY_EXT 0x8078 +#define GL_EDGE_FLAG_ARRAY_EXT 0x8079 +#define GL_VERTEX_ARRAY_SIZE_EXT 0x807A +#define GL_VERTEX_ARRAY_TYPE_EXT 0x807B +#define GL_VERTEX_ARRAY_STRIDE_EXT 0x807C +#define GL_VERTEX_ARRAY_COUNT_EXT 0x807D +#define GL_NORMAL_ARRAY_TYPE_EXT 0x807E +#define GL_NORMAL_ARRAY_STRIDE_EXT 0x807F +#define GL_NORMAL_ARRAY_COUNT_EXT 0x8080 +#define GL_COLOR_ARRAY_SIZE_EXT 0x8081 +#define GL_COLOR_ARRAY_TYPE_EXT 0x8082 +#define GL_COLOR_ARRAY_STRIDE_EXT 0x8083 +#define GL_COLOR_ARRAY_COUNT_EXT 0x8084 +#define GL_INDEX_ARRAY_TYPE_EXT 0x8085 +#define GL_INDEX_ARRAY_STRIDE_EXT 0x8086 +#define GL_INDEX_ARRAY_COUNT_EXT 0x8087 +#define GL_TEXTURE_COORD_ARRAY_SIZE_EXT 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE_EXT 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE_EXT 0x808A +#define GL_TEXTURE_COORD_ARRAY_COUNT_EXT 0x808B +#define GL_EDGE_FLAG_ARRAY_STRIDE_EXT 0x808C +#define GL_EDGE_FLAG_ARRAY_COUNT_EXT 0x808D +#define GL_VERTEX_ARRAY_POINTER_EXT 0x808E +#define GL_NORMAL_ARRAY_POINTER_EXT 0x808F +#define GL_COLOR_ARRAY_POINTER_EXT 0x8090 +#define GL_INDEX_ARRAY_POINTER_EXT 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER_EXT 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER_EXT 0x8093 +typedef void (APIENTRYP PFNGLARRAYELEMENTEXTPROC) (GLint i); +typedef void (APIENTRYP PFNGLCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLDRAWARRAYSEXTPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTEREXTPROC) (GLsizei stride, GLsizei count, const GLboolean *pointer); +typedef void (APIENTRYP PFNGLGETPOINTERVEXTPROC) (GLenum pname, void **params); +typedef void (APIENTRYP PFNGLINDEXPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLNORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (APIENTRYP PFNGLVERTEXPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glArrayElementEXT (GLint i); +GLAPI void APIENTRY glColorPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glDrawArraysEXT (GLenum mode, GLint first, GLsizei count); +GLAPI void APIENTRY glEdgeFlagPointerEXT (GLsizei stride, GLsizei count, const GLboolean *pointer); +GLAPI void APIENTRY glGetPointervEXT (GLenum pname, void **params); +GLAPI void APIENTRY glIndexPointerEXT (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glNormalPointerEXT (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glTexCoordPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +GLAPI void APIENTRY glVertexPointerEXT (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +#endif +#endif /* GL_EXT_vertex_array */ + +#ifndef GL_EXT_vertex_array_bgra +#define GL_EXT_vertex_array_bgra 1 +#endif /* GL_EXT_vertex_array_bgra */ + +#ifndef GL_EXT_vertex_attrib_64bit +#define GL_EXT_vertex_attrib_64bit 1 +#define GL_DOUBLE_VEC2_EXT 0x8FFC +#define GL_DOUBLE_VEC3_EXT 0x8FFD +#define GL_DOUBLE_VEC4_EXT 0x8FFE +#define GL_DOUBLE_MAT2_EXT 0x8F46 +#define GL_DOUBLE_MAT3_EXT 0x8F47 +#define GL_DOUBLE_MAT4_EXT 0x8F48 +#define GL_DOUBLE_MAT2x3_EXT 0x8F49 +#define GL_DOUBLE_MAT2x4_EXT 0x8F4A +#define GL_DOUBLE_MAT3x2_EXT 0x8F4B +#define GL_DOUBLE_MAT3x4_EXT 0x8F4C +#define GL_DOUBLE_MAT4x2_EXT 0x8F4D +#define GL_DOUBLE_MAT4x3_EXT 0x8F4E +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DEXTPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DEXTPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVEXTPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVEXTPROC) (GLuint index, GLenum pname, GLdouble *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribL1dEXT (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttribL2dEXT (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttribL3dEXT (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttribL4dEXT (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttribL1dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL2dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL3dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribL4dvEXT (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribLPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribLdvEXT (GLuint index, GLenum pname, GLdouble *params); +#endif +#endif /* GL_EXT_vertex_attrib_64bit */ + +#ifndef GL_EXT_vertex_shader +#define GL_EXT_vertex_shader 1 +#define GL_VERTEX_SHADER_EXT 0x8780 +#define GL_VERTEX_SHADER_BINDING_EXT 0x8781 +#define GL_OP_INDEX_EXT 0x8782 +#define GL_OP_NEGATE_EXT 0x8783 +#define GL_OP_DOT3_EXT 0x8784 +#define GL_OP_DOT4_EXT 0x8785 +#define GL_OP_MUL_EXT 0x8786 +#define GL_OP_ADD_EXT 0x8787 +#define GL_OP_MADD_EXT 0x8788 +#define GL_OP_FRAC_EXT 0x8789 +#define GL_OP_MAX_EXT 0x878A +#define GL_OP_MIN_EXT 0x878B +#define GL_OP_SET_GE_EXT 0x878C +#define GL_OP_SET_LT_EXT 0x878D +#define GL_OP_CLAMP_EXT 0x878E +#define GL_OP_FLOOR_EXT 0x878F +#define GL_OP_ROUND_EXT 0x8790 +#define GL_OP_EXP_BASE_2_EXT 0x8791 +#define GL_OP_LOG_BASE_2_EXT 0x8792 +#define GL_OP_POWER_EXT 0x8793 +#define GL_OP_RECIP_EXT 0x8794 +#define GL_OP_RECIP_SQRT_EXT 0x8795 +#define GL_OP_SUB_EXT 0x8796 +#define GL_OP_CROSS_PRODUCT_EXT 0x8797 +#define GL_OP_MULTIPLY_MATRIX_EXT 0x8798 +#define GL_OP_MOV_EXT 0x8799 +#define GL_OUTPUT_VERTEX_EXT 0x879A +#define GL_OUTPUT_COLOR0_EXT 0x879B +#define GL_OUTPUT_COLOR1_EXT 0x879C +#define GL_OUTPUT_TEXTURE_COORD0_EXT 0x879D +#define GL_OUTPUT_TEXTURE_COORD1_EXT 0x879E +#define GL_OUTPUT_TEXTURE_COORD2_EXT 0x879F +#define GL_OUTPUT_TEXTURE_COORD3_EXT 0x87A0 +#define GL_OUTPUT_TEXTURE_COORD4_EXT 0x87A1 +#define GL_OUTPUT_TEXTURE_COORD5_EXT 0x87A2 +#define GL_OUTPUT_TEXTURE_COORD6_EXT 0x87A3 +#define GL_OUTPUT_TEXTURE_COORD7_EXT 0x87A4 +#define GL_OUTPUT_TEXTURE_COORD8_EXT 0x87A5 +#define GL_OUTPUT_TEXTURE_COORD9_EXT 0x87A6 +#define GL_OUTPUT_TEXTURE_COORD10_EXT 0x87A7 +#define GL_OUTPUT_TEXTURE_COORD11_EXT 0x87A8 +#define GL_OUTPUT_TEXTURE_COORD12_EXT 0x87A9 +#define GL_OUTPUT_TEXTURE_COORD13_EXT 0x87AA +#define GL_OUTPUT_TEXTURE_COORD14_EXT 0x87AB +#define GL_OUTPUT_TEXTURE_COORD15_EXT 0x87AC +#define GL_OUTPUT_TEXTURE_COORD16_EXT 0x87AD +#define GL_OUTPUT_TEXTURE_COORD17_EXT 0x87AE +#define GL_OUTPUT_TEXTURE_COORD18_EXT 0x87AF +#define GL_OUTPUT_TEXTURE_COORD19_EXT 0x87B0 +#define GL_OUTPUT_TEXTURE_COORD20_EXT 0x87B1 +#define GL_OUTPUT_TEXTURE_COORD21_EXT 0x87B2 +#define GL_OUTPUT_TEXTURE_COORD22_EXT 0x87B3 +#define GL_OUTPUT_TEXTURE_COORD23_EXT 0x87B4 +#define GL_OUTPUT_TEXTURE_COORD24_EXT 0x87B5 +#define GL_OUTPUT_TEXTURE_COORD25_EXT 0x87B6 +#define GL_OUTPUT_TEXTURE_COORD26_EXT 0x87B7 +#define GL_OUTPUT_TEXTURE_COORD27_EXT 0x87B8 +#define GL_OUTPUT_TEXTURE_COORD28_EXT 0x87B9 +#define GL_OUTPUT_TEXTURE_COORD29_EXT 0x87BA +#define GL_OUTPUT_TEXTURE_COORD30_EXT 0x87BB +#define GL_OUTPUT_TEXTURE_COORD31_EXT 0x87BC +#define GL_OUTPUT_FOG_EXT 0x87BD +#define GL_SCALAR_EXT 0x87BE +#define GL_VECTOR_EXT 0x87BF +#define GL_MATRIX_EXT 0x87C0 +#define GL_VARIANT_EXT 0x87C1 +#define GL_INVARIANT_EXT 0x87C2 +#define GL_LOCAL_CONSTANT_EXT 0x87C3 +#define GL_LOCAL_EXT 0x87C4 +#define GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87C5 +#define GL_MAX_VERTEX_SHADER_VARIANTS_EXT 0x87C6 +#define GL_MAX_VERTEX_SHADER_INVARIANTS_EXT 0x87C7 +#define GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87C8 +#define GL_MAX_VERTEX_SHADER_LOCALS_EXT 0x87C9 +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CA +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT 0x87CB +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87CC +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT 0x87CD +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT 0x87CE +#define GL_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CF +#define GL_VERTEX_SHADER_VARIANTS_EXT 0x87D0 +#define GL_VERTEX_SHADER_INVARIANTS_EXT 0x87D1 +#define GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87D2 +#define GL_VERTEX_SHADER_LOCALS_EXT 0x87D3 +#define GL_VERTEX_SHADER_OPTIMIZED_EXT 0x87D4 +#define GL_X_EXT 0x87D5 +#define GL_Y_EXT 0x87D6 +#define GL_Z_EXT 0x87D7 +#define GL_W_EXT 0x87D8 +#define GL_NEGATIVE_X_EXT 0x87D9 +#define GL_NEGATIVE_Y_EXT 0x87DA +#define GL_NEGATIVE_Z_EXT 0x87DB +#define GL_NEGATIVE_W_EXT 0x87DC +#define GL_ZERO_EXT 0x87DD +#define GL_ONE_EXT 0x87DE +#define GL_NEGATIVE_ONE_EXT 0x87DF +#define GL_NORMALIZED_RANGE_EXT 0x87E0 +#define GL_FULL_RANGE_EXT 0x87E1 +#define GL_CURRENT_VERTEX_EXT 0x87E2 +#define GL_MVP_MATRIX_EXT 0x87E3 +#define GL_VARIANT_VALUE_EXT 0x87E4 +#define GL_VARIANT_DATATYPE_EXT 0x87E5 +#define GL_VARIANT_ARRAY_STRIDE_EXT 0x87E6 +#define GL_VARIANT_ARRAY_TYPE_EXT 0x87E7 +#define GL_VARIANT_ARRAY_EXT 0x87E8 +#define GL_VARIANT_ARRAY_POINTER_EXT 0x87E9 +#define GL_INVARIANT_VALUE_EXT 0x87EA +#define GL_INVARIANT_DATATYPE_EXT 0x87EB +#define GL_LOCAL_CONSTANT_VALUE_EXT 0x87EC +#define GL_LOCAL_CONSTANT_DATATYPE_EXT 0x87ED +typedef void (APIENTRYP PFNGLBEGINVERTEXSHADEREXTPROC) (void); +typedef void (APIENTRYP PFNGLENDVERTEXSHADEREXTPROC) (void); +typedef void (APIENTRYP PFNGLBINDVERTEXSHADEREXTPROC) (GLuint id); +typedef GLuint (APIENTRYP PFNGLGENVERTEXSHADERSEXTPROC) (GLuint range); +typedef void (APIENTRYP PFNGLDELETEVERTEXSHADEREXTPROC) (GLuint id); +typedef void (APIENTRYP PFNGLSHADEROP1EXTPROC) (GLenum op, GLuint res, GLuint arg1); +typedef void (APIENTRYP PFNGLSHADEROP2EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2); +typedef void (APIENTRYP PFNGLSHADEROP3EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3); +typedef void (APIENTRYP PFNGLSWIZZLEEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +typedef void (APIENTRYP PFNGLWRITEMASKEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +typedef void (APIENTRYP PFNGLINSERTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); +typedef void (APIENTRYP PFNGLEXTRACTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); +typedef GLuint (APIENTRYP PFNGLGENSYMBOLSEXTPROC) (GLenum datatype, GLenum storagetype, GLenum range, GLuint components); +typedef void (APIENTRYP PFNGLSETINVARIANTEXTPROC) (GLuint id, GLenum type, const void *addr); +typedef void (APIENTRYP PFNGLSETLOCALCONSTANTEXTPROC) (GLuint id, GLenum type, const void *addr); +typedef void (APIENTRYP PFNGLVARIANTBVEXTPROC) (GLuint id, const GLbyte *addr); +typedef void (APIENTRYP PFNGLVARIANTSVEXTPROC) (GLuint id, const GLshort *addr); +typedef void (APIENTRYP PFNGLVARIANTIVEXTPROC) (GLuint id, const GLint *addr); +typedef void (APIENTRYP PFNGLVARIANTFVEXTPROC) (GLuint id, const GLfloat *addr); +typedef void (APIENTRYP PFNGLVARIANTDVEXTPROC) (GLuint id, const GLdouble *addr); +typedef void (APIENTRYP PFNGLVARIANTUBVEXTPROC) (GLuint id, const GLubyte *addr); +typedef void (APIENTRYP PFNGLVARIANTUSVEXTPROC) (GLuint id, const GLushort *addr); +typedef void (APIENTRYP PFNGLVARIANTUIVEXTPROC) (GLuint id, const GLuint *addr); +typedef void (APIENTRYP PFNGLVARIANTPOINTEREXTPROC) (GLuint id, GLenum type, GLuint stride, const void *addr); +typedef void (APIENTRYP PFNGLENABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); +typedef void (APIENTRYP PFNGLDISABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); +typedef GLuint (APIENTRYP PFNGLBINDLIGHTPARAMETEREXTPROC) (GLenum light, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDMATERIALPARAMETEREXTPROC) (GLenum face, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDTEXGENPARAMETEREXTPROC) (GLenum unit, GLenum coord, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDTEXTUREUNITPARAMETEREXTPROC) (GLenum unit, GLenum value); +typedef GLuint (APIENTRYP PFNGLBINDPARAMETEREXTPROC) (GLenum value); +typedef GLboolean (APIENTRYP PFNGLISVARIANTENABLEDEXTPROC) (GLuint id, GLenum cap); +typedef void (APIENTRYP PFNGLGETVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +typedef void (APIENTRYP PFNGLGETVARIANTPOINTERVEXTPROC) (GLuint id, GLenum value, void **data); +typedef void (APIENTRYP PFNGLGETINVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETINVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETINVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (APIENTRYP PFNGLGETLOCALCONSTANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginVertexShaderEXT (void); +GLAPI void APIENTRY glEndVertexShaderEXT (void); +GLAPI void APIENTRY glBindVertexShaderEXT (GLuint id); +GLAPI GLuint APIENTRY glGenVertexShadersEXT (GLuint range); +GLAPI void APIENTRY glDeleteVertexShaderEXT (GLuint id); +GLAPI void APIENTRY glShaderOp1EXT (GLenum op, GLuint res, GLuint arg1); +GLAPI void APIENTRY glShaderOp2EXT (GLenum op, GLuint res, GLuint arg1, GLuint arg2); +GLAPI void APIENTRY glShaderOp3EXT (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3); +GLAPI void APIENTRY glSwizzleEXT (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +GLAPI void APIENTRY glWriteMaskEXT (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +GLAPI void APIENTRY glInsertComponentEXT (GLuint res, GLuint src, GLuint num); +GLAPI void APIENTRY glExtractComponentEXT (GLuint res, GLuint src, GLuint num); +GLAPI GLuint APIENTRY glGenSymbolsEXT (GLenum datatype, GLenum storagetype, GLenum range, GLuint components); +GLAPI void APIENTRY glSetInvariantEXT (GLuint id, GLenum type, const void *addr); +GLAPI void APIENTRY glSetLocalConstantEXT (GLuint id, GLenum type, const void *addr); +GLAPI void APIENTRY glVariantbvEXT (GLuint id, const GLbyte *addr); +GLAPI void APIENTRY glVariantsvEXT (GLuint id, const GLshort *addr); +GLAPI void APIENTRY glVariantivEXT (GLuint id, const GLint *addr); +GLAPI void APIENTRY glVariantfvEXT (GLuint id, const GLfloat *addr); +GLAPI void APIENTRY glVariantdvEXT (GLuint id, const GLdouble *addr); +GLAPI void APIENTRY glVariantubvEXT (GLuint id, const GLubyte *addr); +GLAPI void APIENTRY glVariantusvEXT (GLuint id, const GLushort *addr); +GLAPI void APIENTRY glVariantuivEXT (GLuint id, const GLuint *addr); +GLAPI void APIENTRY glVariantPointerEXT (GLuint id, GLenum type, GLuint stride, const void *addr); +GLAPI void APIENTRY glEnableVariantClientStateEXT (GLuint id); +GLAPI void APIENTRY glDisableVariantClientStateEXT (GLuint id); +GLAPI GLuint APIENTRY glBindLightParameterEXT (GLenum light, GLenum value); +GLAPI GLuint APIENTRY glBindMaterialParameterEXT (GLenum face, GLenum value); +GLAPI GLuint APIENTRY glBindTexGenParameterEXT (GLenum unit, GLenum coord, GLenum value); +GLAPI GLuint APIENTRY glBindTextureUnitParameterEXT (GLenum unit, GLenum value); +GLAPI GLuint APIENTRY glBindParameterEXT (GLenum value); +GLAPI GLboolean APIENTRY glIsVariantEnabledEXT (GLuint id, GLenum cap); +GLAPI void APIENTRY glGetVariantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetVariantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetVariantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +GLAPI void APIENTRY glGetVariantPointervEXT (GLuint id, GLenum value, void **data); +GLAPI void APIENTRY glGetInvariantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetInvariantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetInvariantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +GLAPI void APIENTRY glGetLocalConstantBooleanvEXT (GLuint id, GLenum value, GLboolean *data); +GLAPI void APIENTRY glGetLocalConstantIntegervEXT (GLuint id, GLenum value, GLint *data); +GLAPI void APIENTRY glGetLocalConstantFloatvEXT (GLuint id, GLenum value, GLfloat *data); +#endif +#endif /* GL_EXT_vertex_shader */ + +#ifndef GL_EXT_vertex_weighting +#define GL_EXT_vertex_weighting 1 +#define GL_MODELVIEW0_STACK_DEPTH_EXT 0x0BA3 +#define GL_MODELVIEW1_STACK_DEPTH_EXT 0x8502 +#define GL_MODELVIEW0_MATRIX_EXT 0x0BA6 +#define GL_MODELVIEW1_MATRIX_EXT 0x8506 +#define GL_VERTEX_WEIGHTING_EXT 0x8509 +#define GL_MODELVIEW0_EXT 0x1700 +#define GL_MODELVIEW1_EXT 0x850A +#define GL_CURRENT_VERTEX_WEIGHT_EXT 0x850B +#define GL_VERTEX_WEIGHT_ARRAY_EXT 0x850C +#define GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT 0x850D +#define GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT 0x850E +#define GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT 0x850F +#define GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT 0x8510 +typedef void (APIENTRYP PFNGLVERTEXWEIGHTFEXTPROC) (GLfloat weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTFVEXTPROC) (const GLfloat *weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexWeightfEXT (GLfloat weight); +GLAPI void APIENTRY glVertexWeightfvEXT (const GLfloat *weight); +GLAPI void APIENTRY glVertexWeightPointerEXT (GLint size, GLenum type, GLsizei stride, const void *pointer); +#endif +#endif /* GL_EXT_vertex_weighting */ + +#ifndef GL_EXT_win32_keyed_mutex +#define GL_EXT_win32_keyed_mutex 1 +typedef GLboolean (APIENTRYP PFNGLACQUIREKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key, GLuint timeout); +typedef GLboolean (APIENTRYP PFNGLRELEASEKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAcquireKeyedMutexWin32EXT (GLuint memory, GLuint64 key, GLuint timeout); +GLAPI GLboolean APIENTRY glReleaseKeyedMutexWin32EXT (GLuint memory, GLuint64 key); +#endif +#endif /* GL_EXT_win32_keyed_mutex */ + +#ifndef GL_EXT_window_rectangles +#define GL_EXT_window_rectangles 1 +#define GL_INCLUSIVE_EXT 0x8F10 +#define GL_EXCLUSIVE_EXT 0x8F11 +#define GL_WINDOW_RECTANGLE_EXT 0x8F12 +#define GL_WINDOW_RECTANGLE_MODE_EXT 0x8F13 +#define GL_MAX_WINDOW_RECTANGLES_EXT 0x8F14 +#define GL_NUM_WINDOW_RECTANGLES_EXT 0x8F15 +typedef void (APIENTRYP PFNGLWINDOWRECTANGLESEXTPROC) (GLenum mode, GLsizei count, const GLint *box); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowRectanglesEXT (GLenum mode, GLsizei count, const GLint *box); +#endif +#endif /* GL_EXT_window_rectangles */ + +#ifndef GL_EXT_x11_sync_object +#define GL_EXT_x11_sync_object 1 +#define GL_SYNC_X11_FENCE_EXT 0x90E1 +typedef GLsync (APIENTRYP PFNGLIMPORTSYNCEXTPROC) (GLenum external_sync_type, GLintptr external_sync, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLsync APIENTRY glImportSyncEXT (GLenum external_sync_type, GLintptr external_sync, GLbitfield flags); +#endif +#endif /* GL_EXT_x11_sync_object */ + +#ifndef GL_GREMEDY_frame_terminator +#define GL_GREMEDY_frame_terminator 1 +typedef void (APIENTRYP PFNGLFRAMETERMINATORGREMEDYPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFrameTerminatorGREMEDY (void); +#endif +#endif /* GL_GREMEDY_frame_terminator */ + +#ifndef GL_GREMEDY_string_marker +#define GL_GREMEDY_string_marker 1 +typedef void (APIENTRYP PFNGLSTRINGMARKERGREMEDYPROC) (GLsizei len, const void *string); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glStringMarkerGREMEDY (GLsizei len, const void *string); +#endif +#endif /* GL_GREMEDY_string_marker */ + +#ifndef GL_HP_convolution_border_modes +#define GL_HP_convolution_border_modes 1 +#define GL_IGNORE_BORDER_HP 0x8150 +#define GL_CONSTANT_BORDER_HP 0x8151 +#define GL_REPLICATE_BORDER_HP 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR_HP 0x8154 +#endif /* GL_HP_convolution_border_modes */ + +#ifndef GL_HP_image_transform +#define GL_HP_image_transform 1 +#define GL_IMAGE_SCALE_X_HP 0x8155 +#define GL_IMAGE_SCALE_Y_HP 0x8156 +#define GL_IMAGE_TRANSLATE_X_HP 0x8157 +#define GL_IMAGE_TRANSLATE_Y_HP 0x8158 +#define GL_IMAGE_ROTATE_ANGLE_HP 0x8159 +#define GL_IMAGE_ROTATE_ORIGIN_X_HP 0x815A +#define GL_IMAGE_ROTATE_ORIGIN_Y_HP 0x815B +#define GL_IMAGE_MAG_FILTER_HP 0x815C +#define GL_IMAGE_MIN_FILTER_HP 0x815D +#define GL_IMAGE_CUBIC_WEIGHT_HP 0x815E +#define GL_CUBIC_HP 0x815F +#define GL_AVERAGE_HP 0x8160 +#define GL_IMAGE_TRANSFORM_2D_HP 0x8161 +#define GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8162 +#define GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP 0x8163 +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIHPPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFHPPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImageTransformParameteriHP (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glImageTransformParameterfHP (GLenum target, GLenum pname, GLfloat param); +GLAPI void APIENTRY glImageTransformParameterivHP (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glImageTransformParameterfvHP (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetImageTransformParameterivHP (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetImageTransformParameterfvHP (GLenum target, GLenum pname, GLfloat *params); +#endif +#endif /* GL_HP_image_transform */ + +#ifndef GL_HP_occlusion_test +#define GL_HP_occlusion_test 1 +#define GL_OCCLUSION_TEST_HP 0x8165 +#define GL_OCCLUSION_TEST_RESULT_HP 0x8166 +#endif /* GL_HP_occlusion_test */ + +#ifndef GL_HP_texture_lighting +#define GL_HP_texture_lighting 1 +#define GL_TEXTURE_LIGHTING_MODE_HP 0x8167 +#define GL_TEXTURE_POST_SPECULAR_HP 0x8168 +#define GL_TEXTURE_PRE_SPECULAR_HP 0x8169 +#endif /* GL_HP_texture_lighting */ + +#ifndef GL_IBM_cull_vertex +#define GL_IBM_cull_vertex 1 +#define GL_CULL_VERTEX_IBM 103050 +#endif /* GL_IBM_cull_vertex */ + +#ifndef GL_IBM_multimode_draw_arrays +#define GL_IBM_multimode_draw_arrays 1 +typedef void (APIENTRYP PFNGLMULTIMODEDRAWARRAYSIBMPROC) (const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); +typedef void (APIENTRYP PFNGLMULTIMODEDRAWELEMENTSIBMPROC) (const GLenum *mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount, GLint modestride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiModeDrawArraysIBM (const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); +GLAPI void APIENTRY glMultiModeDrawElementsIBM (const GLenum *mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount, GLint modestride); +#endif +#endif /* GL_IBM_multimode_draw_arrays */ + +#ifndef GL_IBM_rasterpos_clip +#define GL_IBM_rasterpos_clip 1 +#define GL_RASTER_POSITION_UNCLIPPED_IBM 0x19262 +#endif /* GL_IBM_rasterpos_clip */ + +#ifndef GL_IBM_static_data +#define GL_IBM_static_data 1 +#define GL_ALL_STATIC_DATA_IBM 103060 +#define GL_STATIC_VERTEX_ARRAY_IBM 103061 +typedef void (APIENTRYP PFNGLFLUSHSTATICDATAIBMPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushStaticDataIBM (GLenum target); +#endif +#endif /* GL_IBM_static_data */ + +#ifndef GL_IBM_texture_mirrored_repeat +#define GL_IBM_texture_mirrored_repeat 1 +#define GL_MIRRORED_REPEAT_IBM 0x8370 +#endif /* GL_IBM_texture_mirrored_repeat */ + +#ifndef GL_IBM_vertex_array_lists +#define GL_IBM_vertex_array_lists 1 +#define GL_VERTEX_ARRAY_LIST_IBM 103070 +#define GL_NORMAL_ARRAY_LIST_IBM 103071 +#define GL_COLOR_ARRAY_LIST_IBM 103072 +#define GL_INDEX_ARRAY_LIST_IBM 103073 +#define GL_TEXTURE_COORD_ARRAY_LIST_IBM 103074 +#define GL_EDGE_FLAG_ARRAY_LIST_IBM 103075 +#define GL_FOG_COORDINATE_ARRAY_LIST_IBM 103076 +#define GL_SECONDARY_COLOR_ARRAY_LIST_IBM 103077 +#define GL_VERTEX_ARRAY_LIST_STRIDE_IBM 103080 +#define GL_NORMAL_ARRAY_LIST_STRIDE_IBM 103081 +#define GL_COLOR_ARRAY_LIST_STRIDE_IBM 103082 +#define GL_INDEX_ARRAY_LIST_STRIDE_IBM 103083 +#define GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM 103084 +#define GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM 103085 +#define GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM 103086 +#define GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM 103087 +typedef void (APIENTRYP PFNGLCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTERLISTIBMPROC) (GLint stride, const GLboolean **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLFOGCOORDPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLINDEXPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLNORMALPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +typedef void (APIENTRYP PFNGLVERTEXPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glSecondaryColorPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glEdgeFlagPointerListIBM (GLint stride, const GLboolean **pointer, GLint ptrstride); +GLAPI void APIENTRY glFogCoordPointerListIBM (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glIndexPointerListIBM (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glNormalPointerListIBM (GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glTexCoordPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +GLAPI void APIENTRY glVertexPointerListIBM (GLint size, GLenum type, GLint stride, const void **pointer, GLint ptrstride); +#endif +#endif /* GL_IBM_vertex_array_lists */ + +#ifndef GL_INGR_blend_func_separate +#define GL_INGR_blend_func_separate 1 +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEINGRPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendFuncSeparateINGR (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +#endif +#endif /* GL_INGR_blend_func_separate */ + +#ifndef GL_INGR_color_clamp +#define GL_INGR_color_clamp 1 +#define GL_RED_MIN_CLAMP_INGR 0x8560 +#define GL_GREEN_MIN_CLAMP_INGR 0x8561 +#define GL_BLUE_MIN_CLAMP_INGR 0x8562 +#define GL_ALPHA_MIN_CLAMP_INGR 0x8563 +#define GL_RED_MAX_CLAMP_INGR 0x8564 +#define GL_GREEN_MAX_CLAMP_INGR 0x8565 +#define GL_BLUE_MAX_CLAMP_INGR 0x8566 +#define GL_ALPHA_MAX_CLAMP_INGR 0x8567 +#endif /* GL_INGR_color_clamp */ + +#ifndef GL_INGR_interlace_read +#define GL_INGR_interlace_read 1 +#define GL_INTERLACE_READ_INGR 0x8568 +#endif /* GL_INGR_interlace_read */ + +#ifndef GL_INTEL_blackhole_render +#define GL_INTEL_blackhole_render 1 +#define GL_BLACKHOLE_RENDER_INTEL 0x83FC +#endif /* GL_INTEL_blackhole_render */ + +#ifndef GL_INTEL_conservative_rasterization +#define GL_INTEL_conservative_rasterization 1 +#define GL_CONSERVATIVE_RASTERIZATION_INTEL 0x83FE +#endif /* GL_INTEL_conservative_rasterization */ + +#ifndef GL_INTEL_fragment_shader_ordering +#define GL_INTEL_fragment_shader_ordering 1 +#endif /* GL_INTEL_fragment_shader_ordering */ + +#ifndef GL_INTEL_framebuffer_CMAA +#define GL_INTEL_framebuffer_CMAA 1 +typedef void (APIENTRYP PFNGLAPPLYFRAMEBUFFERATTACHMENTCMAAINTELPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glApplyFramebufferAttachmentCMAAINTEL (void); +#endif +#endif /* GL_INTEL_framebuffer_CMAA */ + +#ifndef GL_INTEL_map_texture +#define GL_INTEL_map_texture 1 +#define GL_TEXTURE_MEMORY_LAYOUT_INTEL 0x83FF +#define GL_LAYOUT_DEFAULT_INTEL 0 +#define GL_LAYOUT_LINEAR_INTEL 1 +#define GL_LAYOUT_LINEAR_CPU_CACHED_INTEL 2 +typedef void (APIENTRYP PFNGLSYNCTEXTUREINTELPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLUNMAPTEXTURE2DINTELPROC) (GLuint texture, GLint level); +typedef void *(APIENTRYP PFNGLMAPTEXTURE2DINTELPROC) (GLuint texture, GLint level, GLbitfield access, GLint *stride, GLenum *layout); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSyncTextureINTEL (GLuint texture); +GLAPI void APIENTRY glUnmapTexture2DINTEL (GLuint texture, GLint level); +GLAPI void *APIENTRY glMapTexture2DINTEL (GLuint texture, GLint level, GLbitfield access, GLint *stride, GLenum *layout); +#endif +#endif /* GL_INTEL_map_texture */ + +#ifndef GL_INTEL_parallel_arrays +#define GL_INTEL_parallel_arrays 1 +#define GL_PARALLEL_ARRAYS_INTEL 0x83F4 +#define GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL 0x83F5 +#define GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL 0x83F6 +#define GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL 0x83F7 +#define GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL 0x83F8 +typedef void (APIENTRYP PFNGLVERTEXPOINTERVINTELPROC) (GLint size, GLenum type, const void **pointer); +typedef void (APIENTRYP PFNGLNORMALPOINTERVINTELPROC) (GLenum type, const void **pointer); +typedef void (APIENTRYP PFNGLCOLORPOINTERVINTELPROC) (GLint size, GLenum type, const void **pointer); +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERVINTELPROC) (GLint size, GLenum type, const void **pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexPointervINTEL (GLint size, GLenum type, const void **pointer); +GLAPI void APIENTRY glNormalPointervINTEL (GLenum type, const void **pointer); +GLAPI void APIENTRY glColorPointervINTEL (GLint size, GLenum type, const void **pointer); +GLAPI void APIENTRY glTexCoordPointervINTEL (GLint size, GLenum type, const void **pointer); +#endif +#endif /* GL_INTEL_parallel_arrays */ + +#ifndef GL_INTEL_performance_query +#define GL_INTEL_performance_query 1 +#define GL_PERFQUERY_SINGLE_CONTEXT_INTEL 0x00000000 +#define GL_PERFQUERY_GLOBAL_CONTEXT_INTEL 0x00000001 +#define GL_PERFQUERY_WAIT_INTEL 0x83FB +#define GL_PERFQUERY_FLUSH_INTEL 0x83FA +#define GL_PERFQUERY_DONOT_FLUSH_INTEL 0x83F9 +#define GL_PERFQUERY_COUNTER_EVENT_INTEL 0x94F0 +#define GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL 0x94F1 +#define GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL 0x94F2 +#define GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL 0x94F3 +#define GL_PERFQUERY_COUNTER_RAW_INTEL 0x94F4 +#define GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL 0x94F5 +#define GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL 0x94F8 +#define GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL 0x94F9 +#define GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL 0x94FA +#define GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL 0x94FB +#define GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL 0x94FC +#define GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL 0x94FD +#define GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL 0x94FE +#define GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL 0x94FF +#define GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL 0x9500 +typedef void (APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); +typedef void (APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (APIENTRYP PFNGLGETFIRSTPERFQUERYIDINTELPROC) (GLuint *queryId); +typedef void (APIENTRYP PFNGLGETNEXTPERFQUERYIDINTELPROC) (GLuint queryId, GLuint *nextQueryId); +typedef void (APIENTRYP PFNGLGETPERFCOUNTERINFOINTELPROC) (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +typedef void (APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +typedef void (APIENTRYP PFNGLGETPERFQUERYIDBYNAMEINTELPROC) (GLchar *queryName, GLuint *queryId); +typedef void (APIENTRYP PFNGLGETPERFQUERYINFOINTELPROC) (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); +GLAPI void APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); +GLAPI void APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); +GLAPI void APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); +GLAPI void APIENTRY glGetFirstPerfQueryIdINTEL (GLuint *queryId); +GLAPI void APIENTRY glGetNextPerfQueryIdINTEL (GLuint queryId, GLuint *nextQueryId); +GLAPI void APIENTRY glGetPerfCounterInfoINTEL (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +GLAPI void APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +GLAPI void APIENTRY glGetPerfQueryIdByNameINTEL (GLchar *queryName, GLuint *queryId); +GLAPI void APIENTRY glGetPerfQueryInfoINTEL (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#endif +#endif /* GL_INTEL_performance_query */ + +#ifndef GL_MESAX_texture_stack +#define GL_MESAX_texture_stack 1 +#define GL_TEXTURE_1D_STACK_MESAX 0x8759 +#define GL_TEXTURE_2D_STACK_MESAX 0x875A +#define GL_PROXY_TEXTURE_1D_STACK_MESAX 0x875B +#define GL_PROXY_TEXTURE_2D_STACK_MESAX 0x875C +#define GL_TEXTURE_1D_STACK_BINDING_MESAX 0x875D +#define GL_TEXTURE_2D_STACK_BINDING_MESAX 0x875E +#endif /* GL_MESAX_texture_stack */ + +#ifndef GL_MESA_framebuffer_flip_x +#define GL_MESA_framebuffer_flip_x 1 +#define GL_FRAMEBUFFER_FLIP_X_MESA 0x8BBC +#endif /* GL_MESA_framebuffer_flip_x */ + +#ifndef GL_MESA_framebuffer_flip_y +#define GL_MESA_framebuffer_flip_y 1 +#define GL_FRAMEBUFFER_FLIP_Y_MESA 0x8BBB +typedef void (APIENTRYP PFNGLFRAMEBUFFERPARAMETERIMESAPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVMESAPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferParameteriMESA (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glGetFramebufferParameterivMESA (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_MESA_framebuffer_flip_y */ + +#ifndef GL_MESA_framebuffer_swap_xy +#define GL_MESA_framebuffer_swap_xy 1 +#define GL_FRAMEBUFFER_SWAP_XY_MESA 0x8BBD +#endif /* GL_MESA_framebuffer_swap_xy */ + +#ifndef GL_MESA_pack_invert +#define GL_MESA_pack_invert 1 +#define GL_PACK_INVERT_MESA 0x8758 +#endif /* GL_MESA_pack_invert */ + +#ifndef GL_MESA_program_binary_formats +#define GL_MESA_program_binary_formats 1 +#define GL_PROGRAM_BINARY_FORMAT_MESA 0x875F +#endif /* GL_MESA_program_binary_formats */ + +#ifndef GL_MESA_resize_buffers +#define GL_MESA_resize_buffers 1 +typedef void (APIENTRYP PFNGLRESIZEBUFFERSMESAPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glResizeBuffersMESA (void); +#endif +#endif /* GL_MESA_resize_buffers */ + +#ifndef GL_MESA_shader_integer_functions +#define GL_MESA_shader_integer_functions 1 +#endif /* GL_MESA_shader_integer_functions */ + +#ifndef GL_MESA_tile_raster_order +#define GL_MESA_tile_raster_order 1 +#define GL_TILE_RASTER_ORDER_FIXED_MESA 0x8BB8 +#define GL_TILE_RASTER_ORDER_INCREASING_X_MESA 0x8BB9 +#define GL_TILE_RASTER_ORDER_INCREASING_Y_MESA 0x8BBA +#endif /* GL_MESA_tile_raster_order */ + +#ifndef GL_MESA_window_pos +#define GL_MESA_window_pos 1 +typedef void (APIENTRYP PFNGLWINDOWPOS2DMESAPROC) (GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLWINDOWPOS2DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2FMESAPROC) (GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLWINDOWPOS2FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2IMESAPROC) (GLint x, GLint y); +typedef void (APIENTRYP PFNGLWINDOWPOS2IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS2SMESAPROC) (GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLWINDOWPOS2SVMESAPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3DMESAPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLWINDOWPOS3DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3FMESAPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLWINDOWPOS3FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3IMESAPROC) (GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLWINDOWPOS3IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS3SMESAPROC) (GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLWINDOWPOS3SVMESAPROC) (const GLshort *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4DMESAPROC) (GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLWINDOWPOS4DVMESAPROC) (const GLdouble *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4FMESAPROC) (GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLWINDOWPOS4FVMESAPROC) (const GLfloat *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4IMESAPROC) (GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLWINDOWPOS4IVMESAPROC) (const GLint *v); +typedef void (APIENTRYP PFNGLWINDOWPOS4SMESAPROC) (GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLWINDOWPOS4SVMESAPROC) (const GLshort *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowPos2dMESA (GLdouble x, GLdouble y); +GLAPI void APIENTRY glWindowPos2dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos2fMESA (GLfloat x, GLfloat y); +GLAPI void APIENTRY glWindowPos2fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos2iMESA (GLint x, GLint y); +GLAPI void APIENTRY glWindowPos2ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos2sMESA (GLshort x, GLshort y); +GLAPI void APIENTRY glWindowPos2svMESA (const GLshort *v); +GLAPI void APIENTRY glWindowPos3dMESA (GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glWindowPos3dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos3fMESA (GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glWindowPos3fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos3iMESA (GLint x, GLint y, GLint z); +GLAPI void APIENTRY glWindowPos3ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos3sMESA (GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glWindowPos3svMESA (const GLshort *v); +GLAPI void APIENTRY glWindowPos4dMESA (GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glWindowPos4dvMESA (const GLdouble *v); +GLAPI void APIENTRY glWindowPos4fMESA (GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glWindowPos4fvMESA (const GLfloat *v); +GLAPI void APIENTRY glWindowPos4iMESA (GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glWindowPos4ivMESA (const GLint *v); +GLAPI void APIENTRY glWindowPos4sMESA (GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glWindowPos4svMESA (const GLshort *v); +#endif +#endif /* GL_MESA_window_pos */ + +#ifndef GL_MESA_ycbcr_texture +#define GL_MESA_ycbcr_texture 1 +#define GL_UNSIGNED_SHORT_8_8_MESA 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_MESA 0x85BB +#define GL_YCBCR_MESA 0x8757 +#endif /* GL_MESA_ycbcr_texture */ + +#ifndef GL_NVX_blend_equation_advanced_multi_draw_buffers +#define GL_NVX_blend_equation_advanced_multi_draw_buffers 1 +#endif /* GL_NVX_blend_equation_advanced_multi_draw_buffers */ + +#ifndef GL_NVX_conditional_render +#define GL_NVX_conditional_render 1 +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERNVXPROC) (GLuint id); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERNVXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginConditionalRenderNVX (GLuint id); +GLAPI void APIENTRY glEndConditionalRenderNVX (void); +#endif +#endif /* GL_NVX_conditional_render */ + +#ifndef GL_NVX_gpu_memory_info +#define GL_NVX_gpu_memory_info 1 +#define GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX 0x9047 +#define GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX 0x9048 +#define GL_GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX 0x9049 +#define GL_GPU_MEMORY_INFO_EVICTION_COUNT_NVX 0x904A +#define GL_GPU_MEMORY_INFO_EVICTED_MEMORY_NVX 0x904B +#endif /* GL_NVX_gpu_memory_info */ + +#ifndef GL_NVX_gpu_multicast2 +#define GL_NVX_gpu_multicast2 1 +#define GL_UPLOAD_GPU_MASK_NVX 0x954A +typedef void (APIENTRYP PFNGLUPLOADGPUMASKNVXPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLMULTICASTVIEWPORTARRAYVNVXPROC) (GLuint gpu, GLuint first, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTICASTVIEWPORTPOSITIONWSCALENVXPROC) (GLuint gpu, GLuint index, GLfloat xcoeff, GLfloat ycoeff); +typedef void (APIENTRYP PFNGLMULTICASTSCISSORARRAYVNVXPROC) (GLuint gpu, GLuint first, GLsizei count, const GLint *v); +typedef GLuint (APIENTRYP PFNGLASYNCCOPYBUFFERSUBDATANVXPROC) (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *fenceValueArray, GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +typedef GLuint (APIENTRYP PFNGLASYNCCOPYIMAGESUBDATANVXPROC) (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *waitValueArray, GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUploadGPUMaskNVX (GLbitfield mask); +GLAPI void APIENTRY glMulticastViewportArrayvNVX (GLuint gpu, GLuint first, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glMulticastViewportPositionWScaleNVX (GLuint gpu, GLuint index, GLfloat xcoeff, GLfloat ycoeff); +GLAPI void APIENTRY glMulticastScissorArrayvNVX (GLuint gpu, GLuint first, GLsizei count, const GLint *v); +GLAPI GLuint APIENTRY glAsyncCopyBufferSubDataNVX (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *fenceValueArray, GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +GLAPI GLuint APIENTRY glAsyncCopyImageSubDataNVX (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *waitValueArray, GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +#endif +#endif /* GL_NVX_gpu_multicast2 */ + +#ifndef GL_NVX_linked_gpu_multicast +#define GL_NVX_linked_gpu_multicast 1 +#define GL_LGPU_SEPARATE_STORAGE_BIT_NVX 0x0800 +#define GL_MAX_LGPU_GPUS_NVX 0x92BA +typedef void (APIENTRYP PFNGLLGPUNAMEDBUFFERSUBDATANVXPROC) (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLLGPUCOPYIMAGESUBDATANVXPROC) (GLuint sourceGPU, GLbitfield destinationGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srxY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLLGPUINTERLOCKNVXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLGPUNamedBufferSubDataNVX (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glLGPUCopyImageSubDataNVX (GLuint sourceGPU, GLbitfield destinationGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srxY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glLGPUInterlockNVX (void); +#endif +#endif /* GL_NVX_linked_gpu_multicast */ + +#ifndef GL_NVX_progress_fence +#define GL_NVX_progress_fence 1 +typedef GLuint (APIENTRYP PFNGLCREATEPROGRESSFENCENVXPROC) (void); +typedef void (APIENTRYP PFNGLSIGNALSEMAPHOREUI64NVXPROC) (GLuint signalGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +typedef void (APIENTRYP PFNGLWAITSEMAPHOREUI64NVXPROC) (GLuint waitGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +typedef void (APIENTRYP PFNGLCLIENTWAITSEMAPHOREUI64NVXPROC) (GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glCreateProgressFenceNVX (void); +GLAPI void APIENTRY glSignalSemaphoreui64NVX (GLuint signalGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +GLAPI void APIENTRY glWaitSemaphoreui64NVX (GLuint waitGPU, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +GLAPI void APIENTRY glClientWaitSemaphoreui64NVX (GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +#endif +#endif /* GL_NVX_progress_fence */ + +#ifndef GL_NV_alpha_to_coverage_dither_control +#define GL_NV_alpha_to_coverage_dither_control 1 +#define GL_ALPHA_TO_COVERAGE_DITHER_DEFAULT_NV 0x934D +#define GL_ALPHA_TO_COVERAGE_DITHER_ENABLE_NV 0x934E +#define GL_ALPHA_TO_COVERAGE_DITHER_DISABLE_NV 0x934F +#define GL_ALPHA_TO_COVERAGE_DITHER_MODE_NV 0x92BF +typedef void (APIENTRYP PFNGLALPHATOCOVERAGEDITHERCONTROLNVPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAlphaToCoverageDitherControlNV (GLenum mode); +#endif +#endif /* GL_NV_alpha_to_coverage_dither_control */ + +#ifndef GL_NV_bindless_multi_draw_indirect +#define GL_NV_bindless_multi_draw_indirect 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSNVPROC) (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTBINDLESSNVPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectBindlessNV (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +GLAPI void APIENTRY glMultiDrawElementsIndirectBindlessNV (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +#endif +#endif /* GL_NV_bindless_multi_draw_indirect */ + +#ifndef GL_NV_bindless_multi_draw_indirect_count +#define GL_NV_bindless_multi_draw_indirect_count 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSCOUNTNVPROC) (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTBINDLESSCOUNTNVPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectBindlessCountNV (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +GLAPI void APIENTRY glMultiDrawElementsIndirectBindlessCountNV (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +#endif +#endif /* GL_NV_bindless_multi_draw_indirect_count */ + +#ifndef GL_NV_bindless_texture +#define GL_NV_bindless_texture 1 +typedef GLuint64 (APIENTRYP PFNGLGETTEXTUREHANDLENVPROC) (GLuint texture); +typedef GLuint64 (APIENTRYP PFNGLGETTEXTURESAMPLERHANDLENVPROC) (GLuint texture, GLuint sampler); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLMAKETEXTUREHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef GLuint64 (APIENTRYP PFNGLGETIMAGEHANDLENVPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle, GLenum access); +typedef void (APIENTRYP PFNGLMAKEIMAGEHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64NVPROC) (GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLUNIFORMHANDLEUI64VNVPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64NVPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +typedef GLboolean (APIENTRYP PFNGLISTEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef GLboolean (APIENTRYP PFNGLISIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint64 APIENTRY glGetTextureHandleNV (GLuint texture); +GLAPI GLuint64 APIENTRY glGetTextureSamplerHandleNV (GLuint texture, GLuint sampler); +GLAPI void APIENTRY glMakeTextureHandleResidentNV (GLuint64 handle); +GLAPI void APIENTRY glMakeTextureHandleNonResidentNV (GLuint64 handle); +GLAPI GLuint64 APIENTRY glGetImageHandleNV (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +GLAPI void APIENTRY glMakeImageHandleResidentNV (GLuint64 handle, GLenum access); +GLAPI void APIENTRY glMakeImageHandleNonResidentNV (GLuint64 handle); +GLAPI void APIENTRY glUniformHandleui64NV (GLint location, GLuint64 value); +GLAPI void APIENTRY glUniformHandleui64vNV (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniformHandleui64NV (GLuint program, GLint location, GLuint64 value); +GLAPI void APIENTRY glProgramUniformHandleui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +GLAPI GLboolean APIENTRY glIsTextureHandleResidentNV (GLuint64 handle); +GLAPI GLboolean APIENTRY glIsImageHandleResidentNV (GLuint64 handle); +#endif +#endif /* GL_NV_bindless_texture */ + +#ifndef GL_NV_blend_equation_advanced +#define GL_NV_blend_equation_advanced 1 +#define GL_BLEND_OVERLAP_NV 0x9281 +#define GL_BLEND_PREMULTIPLIED_SRC_NV 0x9280 +#define GL_BLUE_NV 0x1905 +#define GL_COLORBURN_NV 0x929A +#define GL_COLORDODGE_NV 0x9299 +#define GL_CONJOINT_NV 0x9284 +#define GL_CONTRAST_NV 0x92A1 +#define GL_DARKEN_NV 0x9297 +#define GL_DIFFERENCE_NV 0x929E +#define GL_DISJOINT_NV 0x9283 +#define GL_DST_ATOP_NV 0x928F +#define GL_DST_IN_NV 0x928B +#define GL_DST_NV 0x9287 +#define GL_DST_OUT_NV 0x928D +#define GL_DST_OVER_NV 0x9289 +#define GL_EXCLUSION_NV 0x92A0 +#define GL_GREEN_NV 0x1904 +#define GL_HARDLIGHT_NV 0x929B +#define GL_HARDMIX_NV 0x92A9 +#define GL_HSL_COLOR_NV 0x92AF +#define GL_HSL_HUE_NV 0x92AD +#define GL_HSL_LUMINOSITY_NV 0x92B0 +#define GL_HSL_SATURATION_NV 0x92AE +#define GL_INVERT_OVG_NV 0x92B4 +#define GL_INVERT_RGB_NV 0x92A3 +#define GL_LIGHTEN_NV 0x9298 +#define GL_LINEARBURN_NV 0x92A5 +#define GL_LINEARDODGE_NV 0x92A4 +#define GL_LINEARLIGHT_NV 0x92A7 +#define GL_MINUS_CLAMPED_NV 0x92B3 +#define GL_MINUS_NV 0x929F +#define GL_MULTIPLY_NV 0x9294 +#define GL_OVERLAY_NV 0x9296 +#define GL_PINLIGHT_NV 0x92A8 +#define GL_PLUS_CLAMPED_ALPHA_NV 0x92B2 +#define GL_PLUS_CLAMPED_NV 0x92B1 +#define GL_PLUS_DARKER_NV 0x9292 +#define GL_PLUS_NV 0x9291 +#define GL_RED_NV 0x1903 +#define GL_SCREEN_NV 0x9295 +#define GL_SOFTLIGHT_NV 0x929C +#define GL_SRC_ATOP_NV 0x928E +#define GL_SRC_IN_NV 0x928A +#define GL_SRC_NV 0x9286 +#define GL_SRC_OUT_NV 0x928C +#define GL_SRC_OVER_NV 0x9288 +#define GL_UNCORRELATED_NV 0x9282 +#define GL_VIVIDLIGHT_NV 0x92A6 +#define GL_XOR_NV 0x1506 +typedef void (APIENTRYP PFNGLBLENDPARAMETERINVPROC) (GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLBLENDBARRIERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendParameteriNV (GLenum pname, GLint value); +GLAPI void APIENTRY glBlendBarrierNV (void); +#endif +#endif /* GL_NV_blend_equation_advanced */ + +#ifndef GL_NV_blend_equation_advanced_coherent +#define GL_NV_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_NV 0x9285 +#endif /* GL_NV_blend_equation_advanced_coherent */ + +#ifndef GL_NV_blend_minmax_factor +#define GL_NV_blend_minmax_factor 1 +#endif /* GL_NV_blend_minmax_factor */ + +#ifndef GL_NV_blend_square +#define GL_NV_blend_square 1 +#endif /* GL_NV_blend_square */ + +#ifndef GL_NV_clip_space_w_scaling +#define GL_NV_clip_space_w_scaling 1 +#define GL_VIEWPORT_POSITION_W_SCALE_NV 0x937C +#define GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV 0x937D +#define GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV 0x937E +typedef void (APIENTRYP PFNGLVIEWPORTPOSITIONWSCALENVPROC) (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glViewportPositionWScaleNV (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#endif +#endif /* GL_NV_clip_space_w_scaling */ + +#ifndef GL_NV_command_list +#define GL_NV_command_list 1 +#define GL_TERMINATE_SEQUENCE_COMMAND_NV 0x0000 +#define GL_NOP_COMMAND_NV 0x0001 +#define GL_DRAW_ELEMENTS_COMMAND_NV 0x0002 +#define GL_DRAW_ARRAYS_COMMAND_NV 0x0003 +#define GL_DRAW_ELEMENTS_STRIP_COMMAND_NV 0x0004 +#define GL_DRAW_ARRAYS_STRIP_COMMAND_NV 0x0005 +#define GL_DRAW_ELEMENTS_INSTANCED_COMMAND_NV 0x0006 +#define GL_DRAW_ARRAYS_INSTANCED_COMMAND_NV 0x0007 +#define GL_ELEMENT_ADDRESS_COMMAND_NV 0x0008 +#define GL_ATTRIBUTE_ADDRESS_COMMAND_NV 0x0009 +#define GL_UNIFORM_ADDRESS_COMMAND_NV 0x000A +#define GL_BLEND_COLOR_COMMAND_NV 0x000B +#define GL_STENCIL_REF_COMMAND_NV 0x000C +#define GL_LINE_WIDTH_COMMAND_NV 0x000D +#define GL_POLYGON_OFFSET_COMMAND_NV 0x000E +#define GL_ALPHA_REF_COMMAND_NV 0x000F +#define GL_VIEWPORT_COMMAND_NV 0x0010 +#define GL_SCISSOR_COMMAND_NV 0x0011 +#define GL_FRONT_FACE_COMMAND_NV 0x0012 +typedef void (APIENTRYP PFNGLCREATESTATESNVPROC) (GLsizei n, GLuint *states); +typedef void (APIENTRYP PFNGLDELETESTATESNVPROC) (GLsizei n, const GLuint *states); +typedef GLboolean (APIENTRYP PFNGLISSTATENVPROC) (GLuint state); +typedef void (APIENTRYP PFNGLSTATECAPTURENVPROC) (GLuint state, GLenum mode); +typedef GLuint (APIENTRYP PFNGLGETCOMMANDHEADERNVPROC) (GLenum tokenID, GLuint size); +typedef GLushort (APIENTRYP PFNGLGETSTAGEINDEXNVPROC) (GLenum shadertype); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSNVPROC) (GLenum primitiveMode, GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSADDRESSNVPROC) (GLenum primitiveMode, const GLuint64 *indirects, const GLsizei *sizes, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSSTATESNVPROC) (GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSSTATESADDRESSNVPROC) (const GLuint64 *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLCREATECOMMANDLISTSNVPROC) (GLsizei n, GLuint *lists); +typedef void (APIENTRYP PFNGLDELETECOMMANDLISTSNVPROC) (GLsizei n, const GLuint *lists); +typedef GLboolean (APIENTRYP PFNGLISCOMMANDLISTNVPROC) (GLuint list); +typedef void (APIENTRYP PFNGLLISTDRAWCOMMANDSSTATESCLIENTNVPROC) (GLuint list, GLuint segment, const void **indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLCOMMANDLISTSEGMENTSNVPROC) (GLuint list, GLuint segments); +typedef void (APIENTRYP PFNGLCOMPILECOMMANDLISTNVPROC) (GLuint list); +typedef void (APIENTRYP PFNGLCALLCOMMANDLISTNVPROC) (GLuint list); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCreateStatesNV (GLsizei n, GLuint *states); +GLAPI void APIENTRY glDeleteStatesNV (GLsizei n, const GLuint *states); +GLAPI GLboolean APIENTRY glIsStateNV (GLuint state); +GLAPI void APIENTRY glStateCaptureNV (GLuint state, GLenum mode); +GLAPI GLuint APIENTRY glGetCommandHeaderNV (GLenum tokenID, GLuint size); +GLAPI GLushort APIENTRY glGetStageIndexNV (GLenum shadertype); +GLAPI void APIENTRY glDrawCommandsNV (GLenum primitiveMode, GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, GLuint count); +GLAPI void APIENTRY glDrawCommandsAddressNV (GLenum primitiveMode, const GLuint64 *indirects, const GLsizei *sizes, GLuint count); +GLAPI void APIENTRY glDrawCommandsStatesNV (GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glDrawCommandsStatesAddressNV (const GLuint64 *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glCreateCommandListsNV (GLsizei n, GLuint *lists); +GLAPI void APIENTRY glDeleteCommandListsNV (GLsizei n, const GLuint *lists); +GLAPI GLboolean APIENTRY glIsCommandListNV (GLuint list); +GLAPI void APIENTRY glListDrawCommandsStatesClientNV (GLuint list, GLuint segment, const void **indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glCommandListSegmentsNV (GLuint list, GLuint segments); +GLAPI void APIENTRY glCompileCommandListNV (GLuint list); +GLAPI void APIENTRY glCallCommandListNV (GLuint list); +#endif +#endif /* GL_NV_command_list */ + +#ifndef GL_NV_compute_program5 +#define GL_NV_compute_program5 1 +#define GL_COMPUTE_PROGRAM_NV 0x90FB +#define GL_COMPUTE_PROGRAM_PARAMETER_BUFFER_NV 0x90FC +#endif /* GL_NV_compute_program5 */ + +#ifndef GL_NV_compute_shader_derivatives +#define GL_NV_compute_shader_derivatives 1 +#endif /* GL_NV_compute_shader_derivatives */ + +#ifndef GL_NV_conditional_render +#define GL_NV_conditional_render 1 +#define GL_QUERY_WAIT_NV 0x8E13 +#define GL_QUERY_NO_WAIT_NV 0x8E14 +#define GL_QUERY_BY_REGION_WAIT_NV 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16 +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERNVPROC) (GLuint id, GLenum mode); +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginConditionalRenderNV (GLuint id, GLenum mode); +GLAPI void APIENTRY glEndConditionalRenderNV (void); +#endif +#endif /* GL_NV_conditional_render */ + +#ifndef GL_NV_conservative_raster +#define GL_NV_conservative_raster 1 +#define GL_CONSERVATIVE_RASTERIZATION_NV 0x9346 +#define GL_SUBPIXEL_PRECISION_BIAS_X_BITS_NV 0x9347 +#define GL_SUBPIXEL_PRECISION_BIAS_Y_BITS_NV 0x9348 +#define GL_MAX_SUBPIXEL_PRECISION_BIAS_BITS_NV 0x9349 +typedef void (APIENTRYP PFNGLSUBPIXELPRECISIONBIASNVPROC) (GLuint xbits, GLuint ybits); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSubpixelPrecisionBiasNV (GLuint xbits, GLuint ybits); +#endif +#endif /* GL_NV_conservative_raster */ + +#ifndef GL_NV_conservative_raster_dilate +#define GL_NV_conservative_raster_dilate 1 +#define GL_CONSERVATIVE_RASTER_DILATE_NV 0x9379 +#define GL_CONSERVATIVE_RASTER_DILATE_RANGE_NV 0x937A +#define GL_CONSERVATIVE_RASTER_DILATE_GRANULARITY_NV 0x937B +typedef void (APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERFNVPROC) (GLenum pname, GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConservativeRasterParameterfNV (GLenum pname, GLfloat value); +#endif +#endif /* GL_NV_conservative_raster_dilate */ + +#ifndef GL_NV_conservative_raster_pre_snap +#define GL_NV_conservative_raster_pre_snap 1 +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV 0x9550 +#endif /* GL_NV_conservative_raster_pre_snap */ + +#ifndef GL_NV_conservative_raster_pre_snap_triangles +#define GL_NV_conservative_raster_pre_snap_triangles 1 +#define GL_CONSERVATIVE_RASTER_MODE_NV 0x954D +#define GL_CONSERVATIVE_RASTER_MODE_POST_SNAP_NV 0x954E +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_TRIANGLES_NV 0x954F +typedef void (APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERINVPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConservativeRasterParameteriNV (GLenum pname, GLint param); +#endif +#endif /* GL_NV_conservative_raster_pre_snap_triangles */ + +#ifndef GL_NV_conservative_raster_underestimation +#define GL_NV_conservative_raster_underestimation 1 +#endif /* GL_NV_conservative_raster_underestimation */ + +#ifndef GL_NV_copy_depth_to_color +#define GL_NV_copy_depth_to_color 1 +#define GL_DEPTH_STENCIL_TO_RGBA_NV 0x886E +#define GL_DEPTH_STENCIL_TO_BGRA_NV 0x886F +#endif /* GL_NV_copy_depth_to_color */ + +#ifndef GL_NV_copy_image +#define GL_NV_copy_image 1 +typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATANVPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCopyImageSubDataNV (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_NV_copy_image */ + +#ifndef GL_NV_deep_texture3D +#define GL_NV_deep_texture3D 1 +#define GL_MAX_DEEP_3D_TEXTURE_WIDTH_HEIGHT_NV 0x90D0 +#define GL_MAX_DEEP_3D_TEXTURE_DEPTH_NV 0x90D1 +#endif /* GL_NV_deep_texture3D */ + +#ifndef GL_NV_depth_buffer_float +#define GL_NV_depth_buffer_float 1 +#define GL_DEPTH_COMPONENT32F_NV 0x8DAB +#define GL_DEPTH32F_STENCIL8_NV 0x8DAC +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV_NV 0x8DAD +#define GL_DEPTH_BUFFER_FLOAT_MODE_NV 0x8DAF +typedef void (APIENTRYP PFNGLDEPTHRANGEDNVPROC) (GLdouble zNear, GLdouble zFar); +typedef void (APIENTRYP PFNGLCLEARDEPTHDNVPROC) (GLdouble depth); +typedef void (APIENTRYP PFNGLDEPTHBOUNDSDNVPROC) (GLdouble zmin, GLdouble zmax); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthRangedNV (GLdouble zNear, GLdouble zFar); +GLAPI void APIENTRY glClearDepthdNV (GLdouble depth); +GLAPI void APIENTRY glDepthBoundsdNV (GLdouble zmin, GLdouble zmax); +#endif +#endif /* GL_NV_depth_buffer_float */ + +#ifndef GL_NV_depth_clamp +#define GL_NV_depth_clamp 1 +#define GL_DEPTH_CLAMP_NV 0x864F +#endif /* GL_NV_depth_clamp */ + +#ifndef GL_NV_draw_texture +#define GL_NV_draw_texture 1 +typedef void (APIENTRYP PFNGLDRAWTEXTURENVPROC) (GLuint texture, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawTextureNV (GLuint texture, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +#endif +#endif /* GL_NV_draw_texture */ + +#ifndef GL_NV_draw_vulkan_image +#define GL_NV_draw_vulkan_image 1 +typedef void (APIENTRY *GLVULKANPROCNV)(void); +typedef void (APIENTRYP PFNGLDRAWVKIMAGENVPROC) (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +typedef GLVULKANPROCNV (APIENTRYP PFNGLGETVKPROCADDRNVPROC) (const GLchar *name); +typedef void (APIENTRYP PFNGLWAITVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (APIENTRYP PFNGLSIGNALVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (APIENTRYP PFNGLSIGNALVKFENCENVPROC) (GLuint64 vkFence); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawVkImageNV (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +GLAPI GLVULKANPROCNV APIENTRY glGetVkProcAddrNV (const GLchar *name); +GLAPI void APIENTRY glWaitVkSemaphoreNV (GLuint64 vkSemaphore); +GLAPI void APIENTRY glSignalVkSemaphoreNV (GLuint64 vkSemaphore); +GLAPI void APIENTRY glSignalVkFenceNV (GLuint64 vkFence); +#endif +#endif /* GL_NV_draw_vulkan_image */ + +#ifndef GL_NV_evaluators +#define GL_NV_evaluators 1 +#define GL_EVAL_2D_NV 0x86C0 +#define GL_EVAL_TRIANGULAR_2D_NV 0x86C1 +#define GL_MAP_TESSELLATION_NV 0x86C2 +#define GL_MAP_ATTRIB_U_ORDER_NV 0x86C3 +#define GL_MAP_ATTRIB_V_ORDER_NV 0x86C4 +#define GL_EVAL_FRACTIONAL_TESSELLATION_NV 0x86C5 +#define GL_EVAL_VERTEX_ATTRIB0_NV 0x86C6 +#define GL_EVAL_VERTEX_ATTRIB1_NV 0x86C7 +#define GL_EVAL_VERTEX_ATTRIB2_NV 0x86C8 +#define GL_EVAL_VERTEX_ATTRIB3_NV 0x86C9 +#define GL_EVAL_VERTEX_ATTRIB4_NV 0x86CA +#define GL_EVAL_VERTEX_ATTRIB5_NV 0x86CB +#define GL_EVAL_VERTEX_ATTRIB6_NV 0x86CC +#define GL_EVAL_VERTEX_ATTRIB7_NV 0x86CD +#define GL_EVAL_VERTEX_ATTRIB8_NV 0x86CE +#define GL_EVAL_VERTEX_ATTRIB9_NV 0x86CF +#define GL_EVAL_VERTEX_ATTRIB10_NV 0x86D0 +#define GL_EVAL_VERTEX_ATTRIB11_NV 0x86D1 +#define GL_EVAL_VERTEX_ATTRIB12_NV 0x86D2 +#define GL_EVAL_VERTEX_ATTRIB13_NV 0x86D3 +#define GL_EVAL_VERTEX_ATTRIB14_NV 0x86D4 +#define GL_EVAL_VERTEX_ATTRIB15_NV 0x86D5 +#define GL_MAX_MAP_TESSELLATION_NV 0x86D6 +#define GL_MAX_RATIONAL_EVAL_ORDER_NV 0x86D7 +typedef void (APIENTRYP PFNGLMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const void *points); +typedef void (APIENTRYP PFNGLMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, void *points); +typedef void (APIENTRYP PFNGLGETMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERIVNVPROC) (GLenum target, GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETMAPATTRIBPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLEVALMAPSNVPROC) (GLenum target, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMapControlPointsNV (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const void *points); +GLAPI void APIENTRY glMapParameterivNV (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glMapParameterfvNV (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetMapControlPointsNV (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, void *points); +GLAPI void APIENTRY glGetMapParameterivNV (GLenum target, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMapParameterfvNV (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetMapAttribParameterivNV (GLenum target, GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetMapAttribParameterfvNV (GLenum target, GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glEvalMapsNV (GLenum target, GLenum mode); +#endif +#endif /* GL_NV_evaluators */ + +#ifndef GL_NV_explicit_multisample +#define GL_NV_explicit_multisample 1 +#define GL_SAMPLE_POSITION_NV 0x8E50 +#define GL_SAMPLE_MASK_NV 0x8E51 +#define GL_SAMPLE_MASK_VALUE_NV 0x8E52 +#define GL_TEXTURE_BINDING_RENDERBUFFER_NV 0x8E53 +#define GL_TEXTURE_RENDERBUFFER_DATA_STORE_BINDING_NV 0x8E54 +#define GL_TEXTURE_RENDERBUFFER_NV 0x8E55 +#define GL_SAMPLER_RENDERBUFFER_NV 0x8E56 +#define GL_INT_SAMPLER_RENDERBUFFER_NV 0x8E57 +#define GL_UNSIGNED_INT_SAMPLER_RENDERBUFFER_NV 0x8E58 +#define GL_MAX_SAMPLE_MASK_WORDS_NV 0x8E59 +typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVNVPROC) (GLenum pname, GLuint index, GLfloat *val); +typedef void (APIENTRYP PFNGLSAMPLEMASKINDEXEDNVPROC) (GLuint index, GLbitfield mask); +typedef void (APIENTRYP PFNGLTEXRENDERBUFFERNVPROC) (GLenum target, GLuint renderbuffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetMultisamplefvNV (GLenum pname, GLuint index, GLfloat *val); +GLAPI void APIENTRY glSampleMaskIndexedNV (GLuint index, GLbitfield mask); +GLAPI void APIENTRY glTexRenderbufferNV (GLenum target, GLuint renderbuffer); +#endif +#endif /* GL_NV_explicit_multisample */ + +#ifndef GL_NV_fence +#define GL_NV_fence 1 +#define GL_ALL_COMPLETED_NV 0x84F2 +#define GL_FENCE_STATUS_NV 0x84F3 +#define GL_FENCE_CONDITION_NV 0x84F4 +typedef void (APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences); +typedef void (APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences); +typedef GLboolean (APIENTRYP PFNGLISFENCENVPROC) (GLuint fence); +typedef GLboolean (APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence); +typedef void (APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences); +GLAPI void APIENTRY glGenFencesNV (GLsizei n, GLuint *fences); +GLAPI GLboolean APIENTRY glIsFenceNV (GLuint fence); +GLAPI GLboolean APIENTRY glTestFenceNV (GLuint fence); +GLAPI void APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params); +GLAPI void APIENTRY glFinishFenceNV (GLuint fence); +GLAPI void APIENTRY glSetFenceNV (GLuint fence, GLenum condition); +#endif +#endif /* GL_NV_fence */ + +#ifndef GL_NV_fill_rectangle +#define GL_NV_fill_rectangle 1 +#define GL_FILL_RECTANGLE_NV 0x933C +#endif /* GL_NV_fill_rectangle */ + +#ifndef GL_NV_float_buffer +#define GL_NV_float_buffer 1 +#define GL_FLOAT_R_NV 0x8880 +#define GL_FLOAT_RG_NV 0x8881 +#define GL_FLOAT_RGB_NV 0x8882 +#define GL_FLOAT_RGBA_NV 0x8883 +#define GL_FLOAT_R16_NV 0x8884 +#define GL_FLOAT_R32_NV 0x8885 +#define GL_FLOAT_RG16_NV 0x8886 +#define GL_FLOAT_RG32_NV 0x8887 +#define GL_FLOAT_RGB16_NV 0x8888 +#define GL_FLOAT_RGB32_NV 0x8889 +#define GL_FLOAT_RGBA16_NV 0x888A +#define GL_FLOAT_RGBA32_NV 0x888B +#define GL_TEXTURE_FLOAT_COMPONENTS_NV 0x888C +#define GL_FLOAT_CLEAR_COLOR_VALUE_NV 0x888D +#define GL_FLOAT_RGBA_MODE_NV 0x888E +#endif /* GL_NV_float_buffer */ + +#ifndef GL_NV_fog_distance +#define GL_NV_fog_distance 1 +#define GL_FOG_DISTANCE_MODE_NV 0x855A +#define GL_EYE_RADIAL_NV 0x855B +#define GL_EYE_PLANE_ABSOLUTE_NV 0x855C +#endif /* GL_NV_fog_distance */ + +#ifndef GL_NV_fragment_coverage_to_color +#define GL_NV_fragment_coverage_to_color 1 +#define GL_FRAGMENT_COVERAGE_TO_COLOR_NV 0x92DD +#define GL_FRAGMENT_COVERAGE_COLOR_NV 0x92DE +typedef void (APIENTRYP PFNGLFRAGMENTCOVERAGECOLORNVPROC) (GLuint color); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFragmentCoverageColorNV (GLuint color); +#endif +#endif /* GL_NV_fragment_coverage_to_color */ + +#ifndef GL_NV_fragment_program +#define GL_NV_fragment_program 1 +#define GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV 0x8868 +#define GL_FRAGMENT_PROGRAM_NV 0x8870 +#define GL_MAX_TEXTURE_COORDS_NV 0x8871 +#define GL_MAX_TEXTURE_IMAGE_UNITS_NV 0x8872 +#define GL_FRAGMENT_PROGRAM_BINDING_NV 0x8873 +#define GL_PROGRAM_ERROR_STRING_NV 0x8874 +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4FVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMNAMEDPARAMETER4DVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v); +typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERFVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMNAMEDPARAMETERDVNVPROC) (GLuint id, GLsizei len, const GLubyte *name, GLdouble *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramNamedParameter4fNV (GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramNamedParameter4fvNV (GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v); +GLAPI void APIENTRY glProgramNamedParameter4dNV (GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramNamedParameter4dvNV (GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v); +GLAPI void APIENTRY glGetProgramNamedParameterfvNV (GLuint id, GLsizei len, const GLubyte *name, GLfloat *params); +GLAPI void APIENTRY glGetProgramNamedParameterdvNV (GLuint id, GLsizei len, const GLubyte *name, GLdouble *params); +#endif +#endif /* GL_NV_fragment_program */ + +#ifndef GL_NV_fragment_program2 +#define GL_NV_fragment_program2 1 +#define GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 +#define GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 +#define GL_MAX_PROGRAM_IF_DEPTH_NV 0x88F6 +#define GL_MAX_PROGRAM_LOOP_DEPTH_NV 0x88F7 +#define GL_MAX_PROGRAM_LOOP_COUNT_NV 0x88F8 +#endif /* GL_NV_fragment_program2 */ + +#ifndef GL_NV_fragment_program4 +#define GL_NV_fragment_program4 1 +#endif /* GL_NV_fragment_program4 */ + +#ifndef GL_NV_fragment_program_option +#define GL_NV_fragment_program_option 1 +#endif /* GL_NV_fragment_program_option */ + +#ifndef GL_NV_fragment_shader_barycentric +#define GL_NV_fragment_shader_barycentric 1 +#endif /* GL_NV_fragment_shader_barycentric */ + +#ifndef GL_NV_fragment_shader_interlock +#define GL_NV_fragment_shader_interlock 1 +#endif /* GL_NV_fragment_shader_interlock */ + +#ifndef GL_NV_framebuffer_mixed_samples +#define GL_NV_framebuffer_mixed_samples 1 +#define GL_COVERAGE_MODULATION_TABLE_NV 0x9331 +#define GL_COLOR_SAMPLES_NV 0x8E20 +#define GL_DEPTH_SAMPLES_NV 0x932D +#define GL_STENCIL_SAMPLES_NV 0x932E +#define GL_MIXED_DEPTH_SAMPLES_SUPPORTED_NV 0x932F +#define GL_MIXED_STENCIL_SAMPLES_SUPPORTED_NV 0x9330 +#define GL_COVERAGE_MODULATION_NV 0x9332 +#define GL_COVERAGE_MODULATION_TABLE_SIZE_NV 0x9333 +typedef void (APIENTRYP PFNGLCOVERAGEMODULATIONTABLENVPROC) (GLsizei n, const GLfloat *v); +typedef void (APIENTRYP PFNGLGETCOVERAGEMODULATIONTABLENVPROC) (GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLCOVERAGEMODULATIONNVPROC) (GLenum components); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCoverageModulationTableNV (GLsizei n, const GLfloat *v); +GLAPI void APIENTRY glGetCoverageModulationTableNV (GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glCoverageModulationNV (GLenum components); +#endif +#endif /* GL_NV_framebuffer_mixed_samples */ + +#ifndef GL_NV_framebuffer_multisample_coverage +#define GL_NV_framebuffer_multisample_coverage 1 +#define GL_RENDERBUFFER_COVERAGE_SAMPLES_NV 0x8CAB +#define GL_RENDERBUFFER_COLOR_SAMPLES_NV 0x8E10 +#define GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV 0x8E11 +#define GL_MULTISAMPLE_COVERAGE_MODES_NV 0x8E12 +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_NV_framebuffer_multisample_coverage */ + +#ifndef GL_NV_geometry_program4 +#define GL_NV_geometry_program4 1 +#define GL_GEOMETRY_PROGRAM_NV 0x8C26 +#define GL_MAX_PROGRAM_OUTPUT_VERTICES_NV 0x8C27 +#define GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV 0x8C28 +typedef void (APIENTRYP PFNGLPROGRAMVERTEXLIMITNVPROC) (GLenum target, GLint limit); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREFACEEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramVertexLimitNV (GLenum target, GLint limit); +GLAPI void APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glFramebufferTextureFaceEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +#endif +#endif /* GL_NV_geometry_program4 */ + +#ifndef GL_NV_geometry_shader4 +#define GL_NV_geometry_shader4 1 +#endif /* GL_NV_geometry_shader4 */ + +#ifndef GL_NV_geometry_shader_passthrough +#define GL_NV_geometry_shader_passthrough 1 +#endif /* GL_NV_geometry_shader_passthrough */ + +#ifndef GL_NV_gpu_multicast +#define GL_NV_gpu_multicast 1 +#define GL_PER_GPU_STORAGE_BIT_NV 0x0800 +#define GL_MULTICAST_GPUS_NV 0x92BA +#define GL_RENDER_GPU_MASK_NV 0x9558 +#define GL_PER_GPU_STORAGE_NV 0x9548 +#define GL_MULTICAST_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9549 +typedef void (APIENTRYP PFNGLRENDERGPUMASKNVPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLMULTICASTBUFFERSUBDATANVPROC) (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLMULTICASTCOPYBUFFERSUBDATANVPROC) (GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLMULTICASTCOPYIMAGESUBDATANVPROC) (GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +typedef void (APIENTRYP PFNGLMULTICASTBLITFRAMEBUFFERNVPROC) (GLuint srcGPU, GLuint dstGPU, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef void (APIENTRYP PFNGLMULTICASTFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint gpu, GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTICASTBARRIERNVPROC) (void); +typedef void (APIENTRYP PFNGLMULTICASTWAITSYNCNVPROC) (GLuint signalGPU, GLbitfield waitGPUMask); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTIVNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTUIVNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTI64VNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTUI64VNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLuint64 *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderGPUMaskNV (GLbitfield mask); +GLAPI void APIENTRY glMulticastBufferSubDataNV (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glMulticastCopyBufferSubDataNV (GLuint readGPU, GLbitfield writeGPUMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glMulticastCopyImageSubDataNV (GLuint srcGPU, GLbitfield dstGPUMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +GLAPI void APIENTRY glMulticastBlitFramebufferNV (GLuint srcGPU, GLuint dstGPU, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI void APIENTRY glMulticastFramebufferSampleLocationsfvNV (GLuint gpu, GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glMulticastBarrierNV (void); +GLAPI void APIENTRY glMulticastWaitSyncNV (GLuint signalGPU, GLbitfield waitGPUMask); +GLAPI void APIENTRY glMulticastGetQueryObjectivNV (GLuint gpu, GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glMulticastGetQueryObjectuivNV (GLuint gpu, GLuint id, GLenum pname, GLuint *params); +GLAPI void APIENTRY glMulticastGetQueryObjecti64vNV (GLuint gpu, GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glMulticastGetQueryObjectui64vNV (GLuint gpu, GLuint id, GLenum pname, GLuint64 *params); +#endif +#endif /* GL_NV_gpu_multicast */ + +#ifndef GL_NV_gpu_program4 +#define GL_NV_gpu_program4 1 +#define GL_MIN_PROGRAM_TEXEL_OFFSET_NV 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET_NV 0x8905 +#define GL_PROGRAM_ATTRIB_COMPONENTS_NV 0x8906 +#define GL_PROGRAM_RESULT_COMPONENTS_NV 0x8907 +#define GL_MAX_PROGRAM_ATTRIB_COMPONENTS_NV 0x8908 +#define GL_MAX_PROGRAM_RESULT_COMPONENTS_NV 0x8909 +#define GL_MAX_PROGRAM_GENERIC_ATTRIBS_NV 0x8DA5 +#define GL_MAX_PROGRAM_GENERIC_RESULTS_NV 0x8DA6 +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMLOCALPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params); +typedef void (APIENTRYP PFNGLPROGRAMENVPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERIIVNVPROC) (GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMLOCALPARAMETERIUIVNVPROC) (GLenum target, GLuint index, GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERIIVNVPROC) (GLenum target, GLuint index, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMENVPARAMETERIUIVNVPROC) (GLenum target, GLuint index, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramLocalParameterI4iNV (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glProgramLocalParameterI4ivNV (GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glProgramLocalParametersI4ivNV (GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramLocalParameterI4uiNV (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glProgramLocalParameterI4uivNV (GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glProgramLocalParametersI4uivNV (GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glProgramEnvParameterI4iNV (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glProgramEnvParameterI4ivNV (GLenum target, GLuint index, const GLint *params); +GLAPI void APIENTRY glProgramEnvParametersI4ivNV (GLenum target, GLuint index, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramEnvParameterI4uiNV (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glProgramEnvParameterI4uivNV (GLenum target, GLuint index, const GLuint *params); +GLAPI void APIENTRY glProgramEnvParametersI4uivNV (GLenum target, GLuint index, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetProgramLocalParameterIivNV (GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetProgramLocalParameterIuivNV (GLenum target, GLuint index, GLuint *params); +GLAPI void APIENTRY glGetProgramEnvParameterIivNV (GLenum target, GLuint index, GLint *params); +GLAPI void APIENTRY glGetProgramEnvParameterIuivNV (GLenum target, GLuint index, GLuint *params); +#endif +#endif /* GL_NV_gpu_program4 */ + +#ifndef GL_NV_gpu_program5 +#define GL_NV_gpu_program5 1 +#define GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV 0x8E5A +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5C +#define GL_FRAGMENT_PROGRAM_INTERPOLATION_OFFSET_BITS_NV 0x8E5D +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5F +#define GL_MAX_PROGRAM_SUBROUTINE_PARAMETERS_NV 0x8F44 +#define GL_MAX_PROGRAM_SUBROUTINE_NUM_NV 0x8F45 +typedef void (APIENTRYP PFNGLPROGRAMSUBROUTINEPARAMETERSUIVNVPROC) (GLenum target, GLsizei count, const GLuint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSUBROUTINEPARAMETERUIVNVPROC) (GLenum target, GLuint index, GLuint *param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramSubroutineParametersuivNV (GLenum target, GLsizei count, const GLuint *params); +GLAPI void APIENTRY glGetProgramSubroutineParameteruivNV (GLenum target, GLuint index, GLuint *param); +#endif +#endif /* GL_NV_gpu_program5 */ + +#ifndef GL_NV_gpu_program5_mem_extended +#define GL_NV_gpu_program5_mem_extended 1 +#endif /* GL_NV_gpu_program5_mem_extended */ + +#ifndef GL_NV_gpu_shader5 +#define GL_NV_gpu_shader5 1 +#endif /* GL_NV_gpu_shader5 */ + +#ifndef GL_NV_half_float +#define GL_NV_half_float 1 +typedef unsigned short GLhalfNV; +#define GL_HALF_FLOAT_NV 0x140B +typedef void (APIENTRYP PFNGLVERTEX2HNVPROC) (GLhalfNV x, GLhalfNV y); +typedef void (APIENTRYP PFNGLVERTEX2HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEX3HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z); +typedef void (APIENTRYP PFNGLVERTEX3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEX4HNVPROC) (GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +typedef void (APIENTRYP PFNGLVERTEX4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLNORMAL3HNVPROC) (GLhalfNV nx, GLhalfNV ny, GLhalfNV nz); +typedef void (APIENTRYP PFNGLNORMAL3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +typedef void (APIENTRYP PFNGLCOLOR3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLCOLOR4HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue, GLhalfNV alpha); +typedef void (APIENTRYP PFNGLCOLOR4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD1HNVPROC) (GLhalfNV s); +typedef void (APIENTRYP PFNGLTEXCOORD1HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD2HNVPROC) (GLhalfNV s, GLhalfNV t); +typedef void (APIENTRYP PFNGLTEXCOORD2HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD3HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r); +typedef void (APIENTRYP PFNGLTEXCOORD3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLTEXCOORD4HNVPROC) (GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +typedef void (APIENTRYP PFNGLTEXCOORD4HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1HNVPROC) (GLenum target, GLhalfNV s); +typedef void (APIENTRYP PFNGLMULTITEXCOORD1HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t); +typedef void (APIENTRYP PFNGLMULTITEXCOORD2HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r); +typedef void (APIENTRYP PFNGLMULTITEXCOORD3HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4HNVPROC) (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +typedef void (APIENTRYP PFNGLMULTITEXCOORD4HVNVPROC) (GLenum target, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLFOGCOORDHNVPROC) (GLhalfNV fog); +typedef void (APIENTRYP PFNGLFOGCOORDHVNVPROC) (const GLhalfNV *fog); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HNVPROC) (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3HVNVPROC) (const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTHNVPROC) (GLhalfNV weight); +typedef void (APIENTRYP PFNGLVERTEXWEIGHTHVNVPROC) (const GLhalfNV *weight); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1HNVPROC) (GLuint index, GLhalfNV x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4HNVPROC) (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4HVNVPROC) (GLuint index, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4HVNVPROC) (GLuint index, GLsizei n, const GLhalfNV *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertex2hNV (GLhalfNV x, GLhalfNV y); +GLAPI void APIENTRY glVertex2hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertex3hNV (GLhalfNV x, GLhalfNV y, GLhalfNV z); +GLAPI void APIENTRY glVertex3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertex4hNV (GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +GLAPI void APIENTRY glVertex4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glNormal3hNV (GLhalfNV nx, GLhalfNV ny, GLhalfNV nz); +GLAPI void APIENTRY glNormal3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glColor3hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +GLAPI void APIENTRY glColor3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glColor4hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue, GLhalfNV alpha); +GLAPI void APIENTRY glColor4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord1hNV (GLhalfNV s); +GLAPI void APIENTRY glTexCoord1hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord2hNV (GLhalfNV s, GLhalfNV t); +GLAPI void APIENTRY glTexCoord2hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord3hNV (GLhalfNV s, GLhalfNV t, GLhalfNV r); +GLAPI void APIENTRY glTexCoord3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glTexCoord4hNV (GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +GLAPI void APIENTRY glTexCoord4hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord1hNV (GLenum target, GLhalfNV s); +GLAPI void APIENTRY glMultiTexCoord1hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord2hNV (GLenum target, GLhalfNV s, GLhalfNV t); +GLAPI void APIENTRY glMultiTexCoord2hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord3hNV (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r); +GLAPI void APIENTRY glMultiTexCoord3hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glMultiTexCoord4hNV (GLenum target, GLhalfNV s, GLhalfNV t, GLhalfNV r, GLhalfNV q); +GLAPI void APIENTRY glMultiTexCoord4hvNV (GLenum target, const GLhalfNV *v); +GLAPI void APIENTRY glFogCoordhNV (GLhalfNV fog); +GLAPI void APIENTRY glFogCoordhvNV (const GLhalfNV *fog); +GLAPI void APIENTRY glSecondaryColor3hNV (GLhalfNV red, GLhalfNV green, GLhalfNV blue); +GLAPI void APIENTRY glSecondaryColor3hvNV (const GLhalfNV *v); +GLAPI void APIENTRY glVertexWeighthNV (GLhalfNV weight); +GLAPI void APIENTRY glVertexWeighthvNV (const GLhalfNV *weight); +GLAPI void APIENTRY glVertexAttrib1hNV (GLuint index, GLhalfNV x); +GLAPI void APIENTRY glVertexAttrib1hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib2hNV (GLuint index, GLhalfNV x, GLhalfNV y); +GLAPI void APIENTRY glVertexAttrib2hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib3hNV (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z); +GLAPI void APIENTRY glVertexAttrib3hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttrib4hNV (GLuint index, GLhalfNV x, GLhalfNV y, GLhalfNV z, GLhalfNV w); +GLAPI void APIENTRY glVertexAttrib4hvNV (GLuint index, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs1hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs2hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs3hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +GLAPI void APIENTRY glVertexAttribs4hvNV (GLuint index, GLsizei n, const GLhalfNV *v); +#endif +#endif /* GL_NV_half_float */ + +#ifndef GL_NV_internalformat_sample_query +#define GL_NV_internalformat_sample_query 1 +#define GL_MULTISAMPLES_NV 0x9371 +#define GL_SUPERSAMPLE_SCALE_X_NV 0x9372 +#define GL_SUPERSAMPLE_SCALE_Y_NV 0x9373 +#define GL_CONFORMANT_NV 0x9374 +typedef void (APIENTRYP PFNGLGETINTERNALFORMATSAMPLEIVNVPROC) (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetInternalformatSampleivNV (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#endif +#endif /* GL_NV_internalformat_sample_query */ + +#ifndef GL_NV_light_max_exponent +#define GL_NV_light_max_exponent 1 +#define GL_MAX_SHININESS_NV 0x8504 +#define GL_MAX_SPOT_EXPONENT_NV 0x8505 +#endif /* GL_NV_light_max_exponent */ + +#ifndef GL_NV_memory_attachment +#define GL_NV_memory_attachment 1 +#define GL_ATTACHED_MEMORY_OBJECT_NV 0x95A4 +#define GL_ATTACHED_MEMORY_OFFSET_NV 0x95A5 +#define GL_MEMORY_ATTACHABLE_ALIGNMENT_NV 0x95A6 +#define GL_MEMORY_ATTACHABLE_SIZE_NV 0x95A7 +#define GL_MEMORY_ATTACHABLE_NV 0x95A8 +#define GL_DETACHED_MEMORY_INCARNATION_NV 0x95A9 +#define GL_DETACHED_TEXTURES_NV 0x95AA +#define GL_DETACHED_BUFFERS_NV 0x95AB +#define GL_MAX_DETACHED_TEXTURES_NV 0x95AC +#define GL_MAX_DETACHED_BUFFERS_NV 0x95AD +typedef void (APIENTRYP PFNGLGETMEMORYOBJECTDETACHEDRESOURCESUIVNVPROC) (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +typedef void (APIENTRYP PFNGLRESETMEMORYOBJECTPARAMETERNVPROC) (GLuint memory, GLenum pname); +typedef void (APIENTRYP PFNGLTEXATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLBUFFERATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTUREATTACHMEMORYNVPROC) (GLuint texture, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLNAMEDBUFFERATTACHMEMORYNVPROC) (GLuint buffer, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetMemoryObjectDetachedResourcesuivNV (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +GLAPI void APIENTRY glResetMemoryObjectParameterNV (GLuint memory, GLenum pname); +GLAPI void APIENTRY glTexAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glBufferAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureAttachMemoryNV (GLuint texture, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glNamedBufferAttachMemoryNV (GLuint buffer, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_NV_memory_attachment */ + +#ifndef GL_NV_memory_object_sparse +#define GL_NV_memory_object_sparse 1 +typedef void (APIENTRYP PFNGLBUFFERPAGECOMMITMENTMEMNVPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (APIENTRYP PFNGLTEXPAGECOMMITMENTMEMNVPROC) (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTMEMNVPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (APIENTRYP PFNGLTEXTUREPAGECOMMITMENTMEMNVPROC) (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferPageCommitmentMemNV (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GLAPI void APIENTRY glTexPageCommitmentMemNV (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentMemNV (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GLAPI void APIENTRY glTexturePageCommitmentMemNV (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#endif +#endif /* GL_NV_memory_object_sparse */ + +#ifndef GL_NV_mesh_shader +#define GL_NV_mesh_shader 1 +#define GL_MESH_SHADER_NV 0x9559 +#define GL_TASK_SHADER_NV 0x955A +#define GL_MAX_MESH_UNIFORM_BLOCKS_NV 0x8E60 +#define GL_MAX_MESH_TEXTURE_IMAGE_UNITS_NV 0x8E61 +#define GL_MAX_MESH_IMAGE_UNIFORMS_NV 0x8E62 +#define GL_MAX_MESH_UNIFORM_COMPONENTS_NV 0x8E63 +#define GL_MAX_MESH_ATOMIC_COUNTER_BUFFERS_NV 0x8E64 +#define GL_MAX_MESH_ATOMIC_COUNTERS_NV 0x8E65 +#define GL_MAX_MESH_SHADER_STORAGE_BLOCKS_NV 0x8E66 +#define GL_MAX_COMBINED_MESH_UNIFORM_COMPONENTS_NV 0x8E67 +#define GL_MAX_TASK_UNIFORM_BLOCKS_NV 0x8E68 +#define GL_MAX_TASK_TEXTURE_IMAGE_UNITS_NV 0x8E69 +#define GL_MAX_TASK_IMAGE_UNIFORMS_NV 0x8E6A +#define GL_MAX_TASK_UNIFORM_COMPONENTS_NV 0x8E6B +#define GL_MAX_TASK_ATOMIC_COUNTER_BUFFERS_NV 0x8E6C +#define GL_MAX_TASK_ATOMIC_COUNTERS_NV 0x8E6D +#define GL_MAX_TASK_SHADER_STORAGE_BLOCKS_NV 0x8E6E +#define GL_MAX_COMBINED_TASK_UNIFORM_COMPONENTS_NV 0x8E6F +#define GL_MAX_MESH_WORK_GROUP_INVOCATIONS_NV 0x95A2 +#define GL_MAX_TASK_WORK_GROUP_INVOCATIONS_NV 0x95A3 +#define GL_MAX_MESH_TOTAL_MEMORY_SIZE_NV 0x9536 +#define GL_MAX_TASK_TOTAL_MEMORY_SIZE_NV 0x9537 +#define GL_MAX_MESH_OUTPUT_VERTICES_NV 0x9538 +#define GL_MAX_MESH_OUTPUT_PRIMITIVES_NV 0x9539 +#define GL_MAX_TASK_OUTPUT_COUNT_NV 0x953A +#define GL_MAX_DRAW_MESH_TASKS_COUNT_NV 0x953D +#define GL_MAX_MESH_VIEWS_NV 0x9557 +#define GL_MESH_OUTPUT_PER_VERTEX_GRANULARITY_NV 0x92DF +#define GL_MESH_OUTPUT_PER_PRIMITIVE_GRANULARITY_NV 0x9543 +#define GL_MAX_MESH_WORK_GROUP_SIZE_NV 0x953B +#define GL_MAX_TASK_WORK_GROUP_SIZE_NV 0x953C +#define GL_MESH_WORK_GROUP_SIZE_NV 0x953E +#define GL_TASK_WORK_GROUP_SIZE_NV 0x953F +#define GL_MESH_VERTICES_OUT_NV 0x9579 +#define GL_MESH_PRIMITIVES_OUT_NV 0x957A +#define GL_MESH_OUTPUT_TYPE_NV 0x957B +#define GL_UNIFORM_BLOCK_REFERENCED_BY_MESH_SHADER_NV 0x959C +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TASK_SHADER_NV 0x959D +#define GL_REFERENCED_BY_MESH_SHADER_NV 0x95A0 +#define GL_REFERENCED_BY_TASK_SHADER_NV 0x95A1 +#define GL_MESH_SHADER_BIT_NV 0x00000040 +#define GL_TASK_SHADER_BIT_NV 0x00000080 +#define GL_MESH_SUBROUTINE_NV 0x957C +#define GL_TASK_SUBROUTINE_NV 0x957D +#define GL_MESH_SUBROUTINE_UNIFORM_NV 0x957E +#define GL_TASK_SUBROUTINE_UNIFORM_NV 0x957F +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_MESH_SHADER_NV 0x959E +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TASK_SHADER_NV 0x959F +typedef void (APIENTRYP PFNGLDRAWMESHTASKSNVPROC) (GLuint first, GLuint count); +typedef void (APIENTRYP PFNGLDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect); +typedef void (APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect, GLsizei drawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTCOUNTNVPROC) (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawMeshTasksNV (GLuint first, GLuint count); +GLAPI void APIENTRY glDrawMeshTasksIndirectNV (GLintptr indirect); +GLAPI void APIENTRY glMultiDrawMeshTasksIndirectNV (GLintptr indirect, GLsizei drawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawMeshTasksIndirectCountNV (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_NV_mesh_shader */ + +#ifndef GL_NV_multisample_coverage +#define GL_NV_multisample_coverage 1 +#endif /* GL_NV_multisample_coverage */ + +#ifndef GL_NV_multisample_filter_hint +#define GL_NV_multisample_filter_hint 1 +#define GL_MULTISAMPLE_FILTER_HINT_NV 0x8534 +#endif /* GL_NV_multisample_filter_hint */ + +#ifndef GL_NV_occlusion_query +#define GL_NV_occlusion_query 1 +#define GL_PIXEL_COUNTER_BITS_NV 0x8864 +#define GL_CURRENT_OCCLUSION_QUERY_ID_NV 0x8865 +#define GL_PIXEL_COUNT_NV 0x8866 +#define GL_PIXEL_COUNT_AVAILABLE_NV 0x8867 +typedef void (APIENTRYP PFNGLGENOCCLUSIONQUERIESNVPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLDELETEOCCLUSIONQUERIESNVPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISOCCLUSIONQUERYNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLBEGINOCCLUSIONQUERYNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLENDOCCLUSIONQUERYNVPROC) (void); +typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYIVNVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETOCCLUSIONQUERYUIVNVPROC) (GLuint id, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenOcclusionQueriesNV (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glDeleteOcclusionQueriesNV (GLsizei n, const GLuint *ids); +GLAPI GLboolean APIENTRY glIsOcclusionQueryNV (GLuint id); +GLAPI void APIENTRY glBeginOcclusionQueryNV (GLuint id); +GLAPI void APIENTRY glEndOcclusionQueryNV (void); +GLAPI void APIENTRY glGetOcclusionQueryivNV (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetOcclusionQueryuivNV (GLuint id, GLenum pname, GLuint *params); +#endif +#endif /* GL_NV_occlusion_query */ + +#ifndef GL_NV_packed_depth_stencil +#define GL_NV_packed_depth_stencil 1 +#define GL_DEPTH_STENCIL_NV 0x84F9 +#define GL_UNSIGNED_INT_24_8_NV 0x84FA +#endif /* GL_NV_packed_depth_stencil */ + +#ifndef GL_NV_parameter_buffer_object +#define GL_NV_parameter_buffer_object 1 +#define GL_MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV 0x8DA0 +#define GL_MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV 0x8DA1 +#define GL_VERTEX_PROGRAM_PARAMETER_BUFFER_NV 0x8DA2 +#define GL_GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV 0x8DA3 +#define GL_FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV 0x8DA4 +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSFVNVPROC) (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLfloat *params); +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSIIVNVPROC) (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLint *params); +typedef void (APIENTRYP PFNGLPROGRAMBUFFERPARAMETERSIUIVNVPROC) (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glProgramBufferParametersfvNV (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLfloat *params); +GLAPI void APIENTRY glProgramBufferParametersIivNV (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLint *params); +GLAPI void APIENTRY glProgramBufferParametersIuivNV (GLenum target, GLuint bindingIndex, GLuint wordIndex, GLsizei count, const GLuint *params); +#endif +#endif /* GL_NV_parameter_buffer_object */ + +#ifndef GL_NV_parameter_buffer_object2 +#define GL_NV_parameter_buffer_object2 1 +#endif /* GL_NV_parameter_buffer_object2 */ + +#ifndef GL_NV_path_rendering +#define GL_NV_path_rendering 1 +#define GL_PATH_FORMAT_SVG_NV 0x9070 +#define GL_PATH_FORMAT_PS_NV 0x9071 +#define GL_STANDARD_FONT_NAME_NV 0x9072 +#define GL_SYSTEM_FONT_NAME_NV 0x9073 +#define GL_FILE_NAME_NV 0x9074 +#define GL_PATH_STROKE_WIDTH_NV 0x9075 +#define GL_PATH_END_CAPS_NV 0x9076 +#define GL_PATH_INITIAL_END_CAP_NV 0x9077 +#define GL_PATH_TERMINAL_END_CAP_NV 0x9078 +#define GL_PATH_JOIN_STYLE_NV 0x9079 +#define GL_PATH_MITER_LIMIT_NV 0x907A +#define GL_PATH_DASH_CAPS_NV 0x907B +#define GL_PATH_INITIAL_DASH_CAP_NV 0x907C +#define GL_PATH_TERMINAL_DASH_CAP_NV 0x907D +#define GL_PATH_DASH_OFFSET_NV 0x907E +#define GL_PATH_CLIENT_LENGTH_NV 0x907F +#define GL_PATH_FILL_MODE_NV 0x9080 +#define GL_PATH_FILL_MASK_NV 0x9081 +#define GL_PATH_FILL_COVER_MODE_NV 0x9082 +#define GL_PATH_STROKE_COVER_MODE_NV 0x9083 +#define GL_PATH_STROKE_MASK_NV 0x9084 +#define GL_COUNT_UP_NV 0x9088 +#define GL_COUNT_DOWN_NV 0x9089 +#define GL_PATH_OBJECT_BOUNDING_BOX_NV 0x908A +#define GL_CONVEX_HULL_NV 0x908B +#define GL_BOUNDING_BOX_NV 0x908D +#define GL_TRANSLATE_X_NV 0x908E +#define GL_TRANSLATE_Y_NV 0x908F +#define GL_TRANSLATE_2D_NV 0x9090 +#define GL_TRANSLATE_3D_NV 0x9091 +#define GL_AFFINE_2D_NV 0x9092 +#define GL_AFFINE_3D_NV 0x9094 +#define GL_TRANSPOSE_AFFINE_2D_NV 0x9096 +#define GL_TRANSPOSE_AFFINE_3D_NV 0x9098 +#define GL_UTF8_NV 0x909A +#define GL_UTF16_NV 0x909B +#define GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV 0x909C +#define GL_PATH_COMMAND_COUNT_NV 0x909D +#define GL_PATH_COORD_COUNT_NV 0x909E +#define GL_PATH_DASH_ARRAY_COUNT_NV 0x909F +#define GL_PATH_COMPUTED_LENGTH_NV 0x90A0 +#define GL_PATH_FILL_BOUNDING_BOX_NV 0x90A1 +#define GL_PATH_STROKE_BOUNDING_BOX_NV 0x90A2 +#define GL_SQUARE_NV 0x90A3 +#define GL_ROUND_NV 0x90A4 +#define GL_TRIANGULAR_NV 0x90A5 +#define GL_BEVEL_NV 0x90A6 +#define GL_MITER_REVERT_NV 0x90A7 +#define GL_MITER_TRUNCATE_NV 0x90A8 +#define GL_SKIP_MISSING_GLYPH_NV 0x90A9 +#define GL_USE_MISSING_GLYPH_NV 0x90AA +#define GL_PATH_ERROR_POSITION_NV 0x90AB +#define GL_ACCUM_ADJACENT_PAIRS_NV 0x90AD +#define GL_ADJACENT_PAIRS_NV 0x90AE +#define GL_FIRST_TO_REST_NV 0x90AF +#define GL_PATH_GEN_MODE_NV 0x90B0 +#define GL_PATH_GEN_COEFF_NV 0x90B1 +#define GL_PATH_GEN_COMPONENTS_NV 0x90B3 +#define GL_PATH_STENCIL_FUNC_NV 0x90B7 +#define GL_PATH_STENCIL_REF_NV 0x90B8 +#define GL_PATH_STENCIL_VALUE_MASK_NV 0x90B9 +#define GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV 0x90BD +#define GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV 0x90BE +#define GL_PATH_COVER_DEPTH_FUNC_NV 0x90BF +#define GL_PATH_DASH_OFFSET_RESET_NV 0x90B4 +#define GL_MOVE_TO_RESETS_NV 0x90B5 +#define GL_MOVE_TO_CONTINUES_NV 0x90B6 +#define GL_CLOSE_PATH_NV 0x00 +#define GL_MOVE_TO_NV 0x02 +#define GL_RELATIVE_MOVE_TO_NV 0x03 +#define GL_LINE_TO_NV 0x04 +#define GL_RELATIVE_LINE_TO_NV 0x05 +#define GL_HORIZONTAL_LINE_TO_NV 0x06 +#define GL_RELATIVE_HORIZONTAL_LINE_TO_NV 0x07 +#define GL_VERTICAL_LINE_TO_NV 0x08 +#define GL_RELATIVE_VERTICAL_LINE_TO_NV 0x09 +#define GL_QUADRATIC_CURVE_TO_NV 0x0A +#define GL_RELATIVE_QUADRATIC_CURVE_TO_NV 0x0B +#define GL_CUBIC_CURVE_TO_NV 0x0C +#define GL_RELATIVE_CUBIC_CURVE_TO_NV 0x0D +#define GL_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0E +#define GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0F +#define GL_SMOOTH_CUBIC_CURVE_TO_NV 0x10 +#define GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV 0x11 +#define GL_SMALL_CCW_ARC_TO_NV 0x12 +#define GL_RELATIVE_SMALL_CCW_ARC_TO_NV 0x13 +#define GL_SMALL_CW_ARC_TO_NV 0x14 +#define GL_RELATIVE_SMALL_CW_ARC_TO_NV 0x15 +#define GL_LARGE_CCW_ARC_TO_NV 0x16 +#define GL_RELATIVE_LARGE_CCW_ARC_TO_NV 0x17 +#define GL_LARGE_CW_ARC_TO_NV 0x18 +#define GL_RELATIVE_LARGE_CW_ARC_TO_NV 0x19 +#define GL_RESTART_PATH_NV 0xF0 +#define GL_DUP_FIRST_CUBIC_CURVE_TO_NV 0xF2 +#define GL_DUP_LAST_CUBIC_CURVE_TO_NV 0xF4 +#define GL_RECT_NV 0xF6 +#define GL_CIRCULAR_CCW_ARC_TO_NV 0xF8 +#define GL_CIRCULAR_CW_ARC_TO_NV 0xFA +#define GL_CIRCULAR_TANGENT_ARC_TO_NV 0xFC +#define GL_ARC_TO_NV 0xFE +#define GL_RELATIVE_ARC_TO_NV 0xFF +#define GL_BOLD_BIT_NV 0x01 +#define GL_ITALIC_BIT_NV 0x02 +#define GL_GLYPH_WIDTH_BIT_NV 0x01 +#define GL_GLYPH_HEIGHT_BIT_NV 0x02 +#define GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV 0x04 +#define GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV 0x08 +#define GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV 0x10 +#define GL_GLYPH_VERTICAL_BEARING_X_BIT_NV 0x20 +#define GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV 0x40 +#define GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV 0x80 +#define GL_GLYPH_HAS_KERNING_BIT_NV 0x100 +#define GL_FONT_X_MIN_BOUNDS_BIT_NV 0x00010000 +#define GL_FONT_Y_MIN_BOUNDS_BIT_NV 0x00020000 +#define GL_FONT_X_MAX_BOUNDS_BIT_NV 0x00040000 +#define GL_FONT_Y_MAX_BOUNDS_BIT_NV 0x00080000 +#define GL_FONT_UNITS_PER_EM_BIT_NV 0x00100000 +#define GL_FONT_ASCENDER_BIT_NV 0x00200000 +#define GL_FONT_DESCENDER_BIT_NV 0x00400000 +#define GL_FONT_HEIGHT_BIT_NV 0x00800000 +#define GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV 0x01000000 +#define GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV 0x02000000 +#define GL_FONT_UNDERLINE_POSITION_BIT_NV 0x04000000 +#define GL_FONT_UNDERLINE_THICKNESS_BIT_NV 0x08000000 +#define GL_FONT_HAS_KERNING_BIT_NV 0x10000000 +#define GL_ROUNDED_RECT_NV 0xE8 +#define GL_RELATIVE_ROUNDED_RECT_NV 0xE9 +#define GL_ROUNDED_RECT2_NV 0xEA +#define GL_RELATIVE_ROUNDED_RECT2_NV 0xEB +#define GL_ROUNDED_RECT4_NV 0xEC +#define GL_RELATIVE_ROUNDED_RECT4_NV 0xED +#define GL_ROUNDED_RECT8_NV 0xEE +#define GL_RELATIVE_ROUNDED_RECT8_NV 0xEF +#define GL_RELATIVE_RECT_NV 0xF7 +#define GL_FONT_GLYPHS_AVAILABLE_NV 0x9368 +#define GL_FONT_TARGET_UNAVAILABLE_NV 0x9369 +#define GL_FONT_UNAVAILABLE_NV 0x936A +#define GL_FONT_UNINTELLIGIBLE_NV 0x936B +#define GL_CONIC_CURVE_TO_NV 0x1A +#define GL_RELATIVE_CONIC_CURVE_TO_NV 0x1B +#define GL_FONT_NUM_GLYPH_INDICES_BIT_NV 0x20000000 +#define GL_STANDARD_FONT_FORMAT_NV 0x936C +#define GL_2_BYTES_NV 0x1407 +#define GL_3_BYTES_NV 0x1408 +#define GL_4_BYTES_NV 0x1409 +#define GL_EYE_LINEAR_NV 0x2400 +#define GL_OBJECT_LINEAR_NV 0x2401 +#define GL_CONSTANT_NV 0x8576 +#define GL_PATH_FOG_GEN_MODE_NV 0x90AC +#define GL_PRIMARY_COLOR_NV 0x852C +#define GL_SECONDARY_COLOR_NV 0x852D +#define GL_PATH_GEN_COLOR_FORMAT_NV 0x90B2 +#define GL_PATH_PROJECTION_NV 0x1701 +#define GL_PATH_MODELVIEW_NV 0x1700 +#define GL_PATH_MODELVIEW_STACK_DEPTH_NV 0x0BA3 +#define GL_PATH_MODELVIEW_MATRIX_NV 0x0BA6 +#define GL_PATH_MAX_MODELVIEW_STACK_DEPTH_NV 0x0D36 +#define GL_PATH_TRANSPOSE_MODELVIEW_MATRIX_NV 0x84E3 +#define GL_PATH_PROJECTION_STACK_DEPTH_NV 0x0BA4 +#define GL_PATH_PROJECTION_MATRIX_NV 0x0BA7 +#define GL_PATH_MAX_PROJECTION_STACK_DEPTH_NV 0x0D38 +#define GL_PATH_TRANSPOSE_PROJECTION_MATRIX_NV 0x84E4 +#define GL_FRAGMENT_INPUT_NV 0x936D +typedef GLuint (APIENTRYP PFNGLGENPATHSNVPROC) (GLsizei range); +typedef void (APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); +typedef GLboolean (APIENTRYP PFNGLISPATHNVPROC) (GLuint path); +typedef void (APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (APIENTRYP PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); +typedef void (APIENTRYP PFNGLPATHGLYPHSNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (APIENTRYP PFNGLPATHGLYPHRANGENVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (APIENTRYP PFNGLWEIGHTPATHSNVPROC) (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +typedef void (APIENTRYP PFNGLCOPYPATHNVPROC) (GLuint resultPath, GLuint srcPath); +typedef void (APIENTRYP PFNGLINTERPOLATEPATHSNVPROC) (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +typedef void (APIENTRYP PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, const GLint *value); +typedef void (APIENTRYP PFNGLPATHPARAMETERINVPROC) (GLuint path, GLenum pname, GLint value); +typedef void (APIENTRYP PFNGLPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, const GLfloat *value); +typedef void (APIENTRYP PFNGLPATHPARAMETERFNVPROC) (GLuint path, GLenum pname, GLfloat value); +typedef void (APIENTRYP PFNGLPATHDASHARRAYNVPROC) (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +typedef void (APIENTRYP PFNGLPATHSTENCILFUNCNVPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (APIENTRYP PFNGLPATHSTENCILDEPTHOFFSETNVPROC) (GLfloat factor, GLfloat units); +typedef void (APIENTRYP PFNGLSTENCILFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask); +typedef void (APIENTRYP PFNGLSTENCILSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask); +typedef void (APIENTRYP PFNGLSTENCILFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLSTENCILSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLPATHCOVERDEPTHFUNCNVPROC) (GLenum func); +typedef void (APIENTRYP PFNGLCOVERFILLPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (APIENTRYP PFNGLCOVERSTROKEPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (APIENTRYP PFNGLCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLGETPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, GLfloat *value); +typedef void (APIENTRYP PFNGLGETPATHCOMMANDSNVPROC) (GLuint path, GLubyte *commands); +typedef void (APIENTRYP PFNGLGETPATHCOORDSNVPROC) (GLuint path, GLfloat *coords); +typedef void (APIENTRYP PFNGLGETPATHDASHARRAYNVPROC) (GLuint path, GLfloat *dashArray); +typedef void (APIENTRYP PFNGLGETPATHMETRICSNVPROC) (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +typedef void (APIENTRYP PFNGLGETPATHMETRICRANGENVPROC) (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +typedef void (APIENTRYP PFNGLGETPATHSPACINGNVPROC) (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +typedef GLboolean (APIENTRYP PFNGLISPOINTINFILLPATHNVPROC) (GLuint path, GLuint mask, GLfloat x, GLfloat y); +typedef GLboolean (APIENTRYP PFNGLISPOINTINSTROKEPATHNVPROC) (GLuint path, GLfloat x, GLfloat y); +typedef GLfloat (APIENTRYP PFNGLGETPATHLENGTHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments); +typedef GLboolean (APIENTRYP PFNGLPOINTALONGPATHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +typedef void (APIENTRYP PFNGLMATRIXLOAD3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOAD3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULT3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULT3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef GLenum (APIENTRYP PFNGLPATHGLYPHINDEXRANGENVPROC) (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +typedef GLenum (APIENTRYP PFNGLPATHGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef GLenum (APIENTRYP PFNGLPATHMEMORYGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (APIENTRYP PFNGLPROGRAMPATHFRAGMENTINPUTGENNVPROC) (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCEFVNVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +typedef void (APIENTRYP PFNGLPATHCOLORGENNVPROC) (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLPATHTEXGENNVPROC) (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLPATHFOGGENNVPROC) (GLenum genMode); +typedef void (APIENTRYP PFNGLGETPATHCOLORGENIVNVPROC) (GLenum color, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHCOLORGENFVNVPROC) (GLenum color, GLenum pname, GLfloat *value); +typedef void (APIENTRYP PFNGLGETPATHTEXGENIVNVPROC) (GLenum texCoordSet, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHTEXGENFVNVPROC) (GLenum texCoordSet, GLenum pname, GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glGenPathsNV (GLsizei range); +GLAPI void APIENTRY glDeletePathsNV (GLuint path, GLsizei range); +GLAPI GLboolean APIENTRY glIsPathNV (GLuint path); +GLAPI void APIENTRY glPathCommandsNV (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathCoordsNV (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathSubCommandsNV (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathSubCoordsNV (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +GLAPI void APIENTRY glPathStringNV (GLuint path, GLenum format, GLsizei length, const void *pathString); +GLAPI void APIENTRY glPathGlyphsNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI void APIENTRY glPathGlyphRangeNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI void APIENTRY glWeightPathsNV (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +GLAPI void APIENTRY glCopyPathNV (GLuint resultPath, GLuint srcPath); +GLAPI void APIENTRY glInterpolatePathsNV (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +GLAPI void APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glPathParameterivNV (GLuint path, GLenum pname, const GLint *value); +GLAPI void APIENTRY glPathParameteriNV (GLuint path, GLenum pname, GLint value); +GLAPI void APIENTRY glPathParameterfvNV (GLuint path, GLenum pname, const GLfloat *value); +GLAPI void APIENTRY glPathParameterfNV (GLuint path, GLenum pname, GLfloat value); +GLAPI void APIENTRY glPathDashArrayNV (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +GLAPI void APIENTRY glPathStencilFuncNV (GLenum func, GLint ref, GLuint mask); +GLAPI void APIENTRY glPathStencilDepthOffsetNV (GLfloat factor, GLfloat units); +GLAPI void APIENTRY glStencilFillPathNV (GLuint path, GLenum fillMode, GLuint mask); +GLAPI void APIENTRY glStencilStrokePathNV (GLuint path, GLint reference, GLuint mask); +GLAPI void APIENTRY glStencilFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glStencilStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glPathCoverDepthFuncNV (GLenum func); +GLAPI void APIENTRY glCoverFillPathNV (GLuint path, GLenum coverMode); +GLAPI void APIENTRY glCoverStrokePathNV (GLuint path, GLenum coverMode); +GLAPI void APIENTRY glCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glGetPathParameterivNV (GLuint path, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathParameterfvNV (GLuint path, GLenum pname, GLfloat *value); +GLAPI void APIENTRY glGetPathCommandsNV (GLuint path, GLubyte *commands); +GLAPI void APIENTRY glGetPathCoordsNV (GLuint path, GLfloat *coords); +GLAPI void APIENTRY glGetPathDashArrayNV (GLuint path, GLfloat *dashArray); +GLAPI void APIENTRY glGetPathMetricsNV (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +GLAPI void APIENTRY glGetPathMetricRangeNV (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +GLAPI void APIENTRY glGetPathSpacingNV (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +GLAPI GLboolean APIENTRY glIsPointInFillPathNV (GLuint path, GLuint mask, GLfloat x, GLfloat y); +GLAPI GLboolean APIENTRY glIsPointInStrokePathNV (GLuint path, GLfloat x, GLfloat y); +GLAPI GLfloat APIENTRY glGetPathLengthNV (GLuint path, GLsizei startSegment, GLsizei numSegments); +GLAPI GLboolean APIENTRY glPointAlongPathNV (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +GLAPI void APIENTRY glMatrixLoad3x2fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoad3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoadTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMult3x2fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMult3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glStencilThenCoverFillPathNV (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +GLAPI void APIENTRY glStencilThenCoverStrokePathNV (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +GLAPI void APIENTRY glStencilThenCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glStencilThenCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI GLenum APIENTRY glPathGlyphIndexRangeNV (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +GLAPI GLenum APIENTRY glPathGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI GLenum APIENTRY glPathMemoryGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI void APIENTRY glProgramPathFragmentInputGenNV (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +GLAPI void APIENTRY glGetProgramResourcefvNV (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +GLAPI void APIENTRY glPathColorGenNV (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat *coeffs); +GLAPI void APIENTRY glPathTexGenNV (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat *coeffs); +GLAPI void APIENTRY glPathFogGenNV (GLenum genMode); +GLAPI void APIENTRY glGetPathColorGenivNV (GLenum color, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathColorGenfvNV (GLenum color, GLenum pname, GLfloat *value); +GLAPI void APIENTRY glGetPathTexGenivNV (GLenum texCoordSet, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathTexGenfvNV (GLenum texCoordSet, GLenum pname, GLfloat *value); +#endif +#endif /* GL_NV_path_rendering */ + +#ifndef GL_NV_path_rendering_shared_edge +#define GL_NV_path_rendering_shared_edge 1 +#define GL_SHARED_EDGE_NV 0xC0 +#endif /* GL_NV_path_rendering_shared_edge */ + +#ifndef GL_NV_pixel_data_range +#define GL_NV_pixel_data_range 1 +#define GL_WRITE_PIXEL_DATA_RANGE_NV 0x8878 +#define GL_READ_PIXEL_DATA_RANGE_NV 0x8879 +#define GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV 0x887A +#define GL_READ_PIXEL_DATA_RANGE_LENGTH_NV 0x887B +#define GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV 0x887C +#define GL_READ_PIXEL_DATA_RANGE_POINTER_NV 0x887D +typedef void (APIENTRYP PFNGLPIXELDATARANGENVPROC) (GLenum target, GLsizei length, const void *pointer); +typedef void (APIENTRYP PFNGLFLUSHPIXELDATARANGENVPROC) (GLenum target); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelDataRangeNV (GLenum target, GLsizei length, const void *pointer); +GLAPI void APIENTRY glFlushPixelDataRangeNV (GLenum target); +#endif +#endif /* GL_NV_pixel_data_range */ + +#ifndef GL_NV_point_sprite +#define GL_NV_point_sprite 1 +#define GL_POINT_SPRITE_NV 0x8861 +#define GL_COORD_REPLACE_NV 0x8862 +#define GL_POINT_SPRITE_R_MODE_NV 0x8863 +typedef void (APIENTRYP PFNGLPOINTPARAMETERINVPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERIVNVPROC) (GLenum pname, const GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameteriNV (GLenum pname, GLint param); +GLAPI void APIENTRY glPointParameterivNV (GLenum pname, const GLint *params); +#endif +#endif /* GL_NV_point_sprite */ + +#ifndef GL_NV_present_video +#define GL_NV_present_video 1 +#define GL_FRAME_NV 0x8E26 +#define GL_FIELDS_NV 0x8E27 +#define GL_CURRENT_TIME_NV 0x8E28 +#define GL_NUM_FILL_STREAMS_NV 0x8E29 +#define GL_PRESENT_TIME_NV 0x8E2A +#define GL_PRESENT_DURATION_NV 0x8E2B +typedef void (APIENTRYP PFNGLPRESENTFRAMEKEYEDNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1); +typedef void (APIENTRYP PFNGLPRESENTFRAMEDUALFILLNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLenum target1, GLuint fill1, GLenum target2, GLuint fill2, GLenum target3, GLuint fill3); +typedef void (APIENTRYP PFNGLGETVIDEOIVNVPROC) (GLuint video_slot, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOUIVNVPROC) (GLuint video_slot, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLGETVIDEOI64VNVPROC) (GLuint video_slot, GLenum pname, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETVIDEOUI64VNVPROC) (GLuint video_slot, GLenum pname, GLuint64EXT *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPresentFrameKeyedNV (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1); +GLAPI void APIENTRY glPresentFrameDualFillNV (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLenum target1, GLuint fill1, GLenum target2, GLuint fill2, GLenum target3, GLuint fill3); +GLAPI void APIENTRY glGetVideoivNV (GLuint video_slot, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideouivNV (GLuint video_slot, GLenum pname, GLuint *params); +GLAPI void APIENTRY glGetVideoi64vNV (GLuint video_slot, GLenum pname, GLint64EXT *params); +GLAPI void APIENTRY glGetVideoui64vNV (GLuint video_slot, GLenum pname, GLuint64EXT *params); +#endif +#endif /* GL_NV_present_video */ + +#ifndef GL_NV_primitive_restart +#define GL_NV_primitive_restart 1 +#define GL_PRIMITIVE_RESTART_NV 0x8558 +#define GL_PRIMITIVE_RESTART_INDEX_NV 0x8559 +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTNVPROC) (void); +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXNVPROC) (GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPrimitiveRestartNV (void); +GLAPI void APIENTRY glPrimitiveRestartIndexNV (GLuint index); +#endif +#endif /* GL_NV_primitive_restart */ + +#ifndef GL_NV_primitive_shading_rate +#define GL_NV_primitive_shading_rate 1 +#define GL_SHADING_RATE_IMAGE_PER_PRIMITIVE_NV 0x95B1 +#define GL_SHADING_RATE_IMAGE_PALETTE_COUNT_NV 0x95B2 +#endif /* GL_NV_primitive_shading_rate */ + +#ifndef GL_NV_query_resource +#define GL_NV_query_resource 1 +#define GL_QUERY_RESOURCE_TYPE_VIDMEM_ALLOC_NV 0x9540 +#define GL_QUERY_RESOURCE_MEMTYPE_VIDMEM_NV 0x9542 +#define GL_QUERY_RESOURCE_SYS_RESERVED_NV 0x9544 +#define GL_QUERY_RESOURCE_TEXTURE_NV 0x9545 +#define GL_QUERY_RESOURCE_RENDERBUFFER_NV 0x9546 +#define GL_QUERY_RESOURCE_BUFFEROBJECT_NV 0x9547 +typedef GLint (APIENTRYP PFNGLQUERYRESOURCENVPROC) (GLenum queryType, GLint tagId, GLuint count, GLint *buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLint APIENTRY glQueryResourceNV (GLenum queryType, GLint tagId, GLuint count, GLint *buffer); +#endif +#endif /* GL_NV_query_resource */ + +#ifndef GL_NV_query_resource_tag +#define GL_NV_query_resource_tag 1 +typedef void (APIENTRYP PFNGLGENQUERYRESOURCETAGNVPROC) (GLsizei n, GLint *tagIds); +typedef void (APIENTRYP PFNGLDELETEQUERYRESOURCETAGNVPROC) (GLsizei n, const GLint *tagIds); +typedef void (APIENTRYP PFNGLQUERYRESOURCETAGNVPROC) (GLint tagId, const GLchar *tagString); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueryResourceTagNV (GLsizei n, GLint *tagIds); +GLAPI void APIENTRY glDeleteQueryResourceTagNV (GLsizei n, const GLint *tagIds); +GLAPI void APIENTRY glQueryResourceTagNV (GLint tagId, const GLchar *tagString); +#endif +#endif /* GL_NV_query_resource_tag */ + +#ifndef GL_NV_register_combiners +#define GL_NV_register_combiners 1 +#define GL_REGISTER_COMBINERS_NV 0x8522 +#define GL_VARIABLE_A_NV 0x8523 +#define GL_VARIABLE_B_NV 0x8524 +#define GL_VARIABLE_C_NV 0x8525 +#define GL_VARIABLE_D_NV 0x8526 +#define GL_VARIABLE_E_NV 0x8527 +#define GL_VARIABLE_F_NV 0x8528 +#define GL_VARIABLE_G_NV 0x8529 +#define GL_CONSTANT_COLOR0_NV 0x852A +#define GL_CONSTANT_COLOR1_NV 0x852B +#define GL_SPARE0_NV 0x852E +#define GL_SPARE1_NV 0x852F +#define GL_DISCARD_NV 0x8530 +#define GL_E_TIMES_F_NV 0x8531 +#define GL_SPARE0_PLUS_SECONDARY_COLOR_NV 0x8532 +#define GL_UNSIGNED_IDENTITY_NV 0x8536 +#define GL_UNSIGNED_INVERT_NV 0x8537 +#define GL_EXPAND_NORMAL_NV 0x8538 +#define GL_EXPAND_NEGATE_NV 0x8539 +#define GL_HALF_BIAS_NORMAL_NV 0x853A +#define GL_HALF_BIAS_NEGATE_NV 0x853B +#define GL_SIGNED_IDENTITY_NV 0x853C +#define GL_SIGNED_NEGATE_NV 0x853D +#define GL_SCALE_BY_TWO_NV 0x853E +#define GL_SCALE_BY_FOUR_NV 0x853F +#define GL_SCALE_BY_ONE_HALF_NV 0x8540 +#define GL_BIAS_BY_NEGATIVE_ONE_HALF_NV 0x8541 +#define GL_COMBINER_INPUT_NV 0x8542 +#define GL_COMBINER_MAPPING_NV 0x8543 +#define GL_COMBINER_COMPONENT_USAGE_NV 0x8544 +#define GL_COMBINER_AB_DOT_PRODUCT_NV 0x8545 +#define GL_COMBINER_CD_DOT_PRODUCT_NV 0x8546 +#define GL_COMBINER_MUX_SUM_NV 0x8547 +#define GL_COMBINER_SCALE_NV 0x8548 +#define GL_COMBINER_BIAS_NV 0x8549 +#define GL_COMBINER_AB_OUTPUT_NV 0x854A +#define GL_COMBINER_CD_OUTPUT_NV 0x854B +#define GL_COMBINER_SUM_OUTPUT_NV 0x854C +#define GL_MAX_GENERAL_COMBINERS_NV 0x854D +#define GL_NUM_GENERAL_COMBINERS_NV 0x854E +#define GL_COLOR_SUM_CLAMP_NV 0x854F +#define GL_COMBINER0_NV 0x8550 +#define GL_COMBINER1_NV 0x8551 +#define GL_COMBINER2_NV 0x8552 +#define GL_COMBINER3_NV 0x8553 +#define GL_COMBINER4_NV 0x8554 +#define GL_COMBINER5_NV 0x8555 +#define GL_COMBINER6_NV 0x8556 +#define GL_COMBINER7_NV 0x8557 +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFVNVPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERFNVPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERIVNVPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOMBINERPARAMETERINVPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLCOMBINERINPUTNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +typedef void (APIENTRYP PFNGLCOMBINEROUTPUTNVPROC) (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); +typedef void (APIENTRYP PFNGLFINALCOMBINERINPUTNVPROC) (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC) (GLenum variable, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC) (GLenum variable, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCombinerParameterfvNV (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glCombinerParameterfNV (GLenum pname, GLfloat param); +GLAPI void APIENTRY glCombinerParameterivNV (GLenum pname, const GLint *params); +GLAPI void APIENTRY glCombinerParameteriNV (GLenum pname, GLint param); +GLAPI void APIENTRY glCombinerInputNV (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +GLAPI void APIENTRY glCombinerOutputNV (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); +GLAPI void APIENTRY glFinalCombinerInputNV (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +GLAPI void APIENTRY glGetCombinerInputParameterfvNV (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetCombinerInputParameterivNV (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetCombinerOutputParameterfvNV (GLenum stage, GLenum portion, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetCombinerOutputParameterivNV (GLenum stage, GLenum portion, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetFinalCombinerInputParameterfvNV (GLenum variable, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFinalCombinerInputParameterivNV (GLenum variable, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_register_combiners */ + +#ifndef GL_NV_register_combiners2 +#define GL_NV_register_combiners2 1 +#define GL_PER_STAGE_CONSTANTS_NV 0x8535 +typedef void (APIENTRYP PFNGLCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCombinerStageParameterfvNV (GLenum stage, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetCombinerStageParameterfvNV (GLenum stage, GLenum pname, GLfloat *params); +#endif +#endif /* GL_NV_register_combiners2 */ + +#ifndef GL_NV_representative_fragment_test +#define GL_NV_representative_fragment_test 1 +#define GL_REPRESENTATIVE_FRAGMENT_TEST_NV 0x937F +#endif /* GL_NV_representative_fragment_test */ + +#ifndef GL_NV_robustness_video_memory_purge +#define GL_NV_robustness_video_memory_purge 1 +#define GL_PURGED_CONTEXT_RESET_NV 0x92BB +#endif /* GL_NV_robustness_video_memory_purge */ + +#ifndef GL_NV_sample_locations +#define GL_NV_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_NV 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_NV 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_NV 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_NV 0x9340 +#define GL_SAMPLE_LOCATION_NV 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_NV 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_NV 0x9343 +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLRESOLVEDEPTHVALUESNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSampleLocationsfvNV (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glNamedFramebufferSampleLocationsfvNV (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glResolveDepthValuesNV (void); +#endif +#endif /* GL_NV_sample_locations */ + +#ifndef GL_NV_sample_mask_override_coverage +#define GL_NV_sample_mask_override_coverage 1 +#endif /* GL_NV_sample_mask_override_coverage */ + +#ifndef GL_NV_scissor_exclusive +#define GL_NV_scissor_exclusive 1 +#define GL_SCISSOR_TEST_EXCLUSIVE_NV 0x9555 +#define GL_SCISSOR_BOX_EXCLUSIVE_NV 0x9556 +typedef void (APIENTRYP PFNGLSCISSOREXCLUSIVENVPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLSCISSOREXCLUSIVEARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glScissorExclusiveNV (GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glScissorExclusiveArrayvNV (GLuint first, GLsizei count, const GLint *v); +#endif +#endif /* GL_NV_scissor_exclusive */ + +#ifndef GL_NV_shader_atomic_counters +#define GL_NV_shader_atomic_counters 1 +#endif /* GL_NV_shader_atomic_counters */ + +#ifndef GL_NV_shader_atomic_float +#define GL_NV_shader_atomic_float 1 +#endif /* GL_NV_shader_atomic_float */ + +#ifndef GL_NV_shader_atomic_float64 +#define GL_NV_shader_atomic_float64 1 +#endif /* GL_NV_shader_atomic_float64 */ + +#ifndef GL_NV_shader_atomic_fp16_vector +#define GL_NV_shader_atomic_fp16_vector 1 +#endif /* GL_NV_shader_atomic_fp16_vector */ + +#ifndef GL_NV_shader_atomic_int64 +#define GL_NV_shader_atomic_int64 1 +#endif /* GL_NV_shader_atomic_int64 */ + +#ifndef GL_NV_shader_buffer_load +#define GL_NV_shader_buffer_load 1 +#define GL_BUFFER_GPU_ADDRESS_NV 0x8F1D +#define GL_GPU_ADDRESS_NV 0x8F34 +#define GL_MAX_SHADER_BUFFER_ADDRESS_NV 0x8F35 +typedef void (APIENTRYP PFNGLMAKEBUFFERRESIDENTNVPROC) (GLenum target, GLenum access); +typedef void (APIENTRYP PFNGLMAKEBUFFERNONRESIDENTNVPROC) (GLenum target); +typedef GLboolean (APIENTRYP PFNGLISBUFFERRESIDENTNVPROC) (GLenum target); +typedef void (APIENTRYP PFNGLMAKENAMEDBUFFERRESIDENTNVPROC) (GLuint buffer, GLenum access); +typedef void (APIENTRYP PFNGLMAKENAMEDBUFFERNONRESIDENTNVPROC) (GLuint buffer); +typedef GLboolean (APIENTRYP PFNGLISNAMEDBUFFERRESIDENTNVPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERUI64VNVPROC) (GLenum target, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERUI64VNVPROC) (GLuint buffer, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLGETINTEGERUI64VNVPROC) (GLenum value, GLuint64EXT *result); +typedef void (APIENTRYP PFNGLUNIFORMUI64NVPROC) (GLint location, GLuint64EXT value); +typedef void (APIENTRYP PFNGLUNIFORMUI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMUI64NVPROC) (GLuint program, GLint location, GLuint64EXT value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMakeBufferResidentNV (GLenum target, GLenum access); +GLAPI void APIENTRY glMakeBufferNonResidentNV (GLenum target); +GLAPI GLboolean APIENTRY glIsBufferResidentNV (GLenum target); +GLAPI void APIENTRY glMakeNamedBufferResidentNV (GLuint buffer, GLenum access); +GLAPI void APIENTRY glMakeNamedBufferNonResidentNV (GLuint buffer); +GLAPI GLboolean APIENTRY glIsNamedBufferResidentNV (GLuint buffer); +GLAPI void APIENTRY glGetBufferParameterui64vNV (GLenum target, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glGetNamedBufferParameterui64vNV (GLuint buffer, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glGetIntegerui64vNV (GLenum value, GLuint64EXT *result); +GLAPI void APIENTRY glUniformui64NV (GLint location, GLuint64EXT value); +GLAPI void APIENTRY glUniformui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GLAPI void APIENTRY glProgramUniformui64NV (GLuint program, GLint location, GLuint64EXT value); +GLAPI void APIENTRY glProgramUniformui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif +#endif /* GL_NV_shader_buffer_load */ + +#ifndef GL_NV_shader_buffer_store +#define GL_NV_shader_buffer_store 1 +#define GL_SHADER_GLOBAL_ACCESS_BARRIER_BIT_NV 0x00000010 +#endif /* GL_NV_shader_buffer_store */ + +#ifndef GL_NV_shader_storage_buffer_object +#define GL_NV_shader_storage_buffer_object 1 +#endif /* GL_NV_shader_storage_buffer_object */ + +#ifndef GL_NV_shader_subgroup_partitioned +#define GL_NV_shader_subgroup_partitioned 1 +#define GL_SUBGROUP_FEATURE_PARTITIONED_BIT_NV 0x00000100 +#endif /* GL_NV_shader_subgroup_partitioned */ + +#ifndef GL_NV_shader_texture_footprint +#define GL_NV_shader_texture_footprint 1 +#endif /* GL_NV_shader_texture_footprint */ + +#ifndef GL_NV_shader_thread_group +#define GL_NV_shader_thread_group 1 +#define GL_WARP_SIZE_NV 0x9339 +#define GL_WARPS_PER_SM_NV 0x933A +#define GL_SM_COUNT_NV 0x933B +#endif /* GL_NV_shader_thread_group */ + +#ifndef GL_NV_shader_thread_shuffle +#define GL_NV_shader_thread_shuffle 1 +#endif /* GL_NV_shader_thread_shuffle */ + +#ifndef GL_NV_shading_rate_image +#define GL_NV_shading_rate_image 1 +#define GL_SHADING_RATE_IMAGE_NV 0x9563 +#define GL_SHADING_RATE_NO_INVOCATIONS_NV 0x9564 +#define GL_SHADING_RATE_1_INVOCATION_PER_PIXEL_NV 0x9565 +#define GL_SHADING_RATE_1_INVOCATION_PER_1X2_PIXELS_NV 0x9566 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X1_PIXELS_NV 0x9567 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X2_PIXELS_NV 0x9568 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X4_PIXELS_NV 0x9569 +#define GL_SHADING_RATE_1_INVOCATION_PER_4X2_PIXELS_NV 0x956A +#define GL_SHADING_RATE_1_INVOCATION_PER_4X4_PIXELS_NV 0x956B +#define GL_SHADING_RATE_2_INVOCATIONS_PER_PIXEL_NV 0x956C +#define GL_SHADING_RATE_4_INVOCATIONS_PER_PIXEL_NV 0x956D +#define GL_SHADING_RATE_8_INVOCATIONS_PER_PIXEL_NV 0x956E +#define GL_SHADING_RATE_16_INVOCATIONS_PER_PIXEL_NV 0x956F +#define GL_SHADING_RATE_IMAGE_BINDING_NV 0x955B +#define GL_SHADING_RATE_IMAGE_TEXEL_WIDTH_NV 0x955C +#define GL_SHADING_RATE_IMAGE_TEXEL_HEIGHT_NV 0x955D +#define GL_SHADING_RATE_IMAGE_PALETTE_SIZE_NV 0x955E +#define GL_MAX_COARSE_FRAGMENT_SAMPLES_NV 0x955F +#define GL_SHADING_RATE_SAMPLE_ORDER_DEFAULT_NV 0x95AE +#define GL_SHADING_RATE_SAMPLE_ORDER_PIXEL_MAJOR_NV 0x95AF +#define GL_SHADING_RATE_SAMPLE_ORDER_SAMPLE_MAJOR_NV 0x95B0 +typedef void (APIENTRYP PFNGLBINDSHADINGRATEIMAGENVPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLGETSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint entry, GLenum *rate); +typedef void (APIENTRYP PFNGLGETSHADINGRATESAMPLELOCATIONIVNVPROC) (GLenum rate, GLuint samples, GLuint index, GLint *location); +typedef void (APIENTRYP PFNGLSHADINGRATEIMAGEBARRIERNVPROC) (GLboolean synchronize); +typedef void (APIENTRYP PFNGLSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +typedef void (APIENTRYP PFNGLSHADINGRATESAMPLEORDERNVPROC) (GLenum order); +typedef void (APIENTRYP PFNGLSHADINGRATESAMPLEORDERCUSTOMNVPROC) (GLenum rate, GLuint samples, const GLint *locations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindShadingRateImageNV (GLuint texture); +GLAPI void APIENTRY glGetShadingRateImagePaletteNV (GLuint viewport, GLuint entry, GLenum *rate); +GLAPI void APIENTRY glGetShadingRateSampleLocationivNV (GLenum rate, GLuint samples, GLuint index, GLint *location); +GLAPI void APIENTRY glShadingRateImageBarrierNV (GLboolean synchronize); +GLAPI void APIENTRY glShadingRateImagePaletteNV (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +GLAPI void APIENTRY glShadingRateSampleOrderNV (GLenum order); +GLAPI void APIENTRY glShadingRateSampleOrderCustomNV (GLenum rate, GLuint samples, const GLint *locations); +#endif +#endif /* GL_NV_shading_rate_image */ + +#ifndef GL_NV_stereo_view_rendering +#define GL_NV_stereo_view_rendering 1 +#endif /* GL_NV_stereo_view_rendering */ + +#ifndef GL_NV_tessellation_program5 +#define GL_NV_tessellation_program5 1 +#define GL_MAX_PROGRAM_PATCH_ATTRIBS_NV 0x86D8 +#define GL_TESS_CONTROL_PROGRAM_NV 0x891E +#define GL_TESS_EVALUATION_PROGRAM_NV 0x891F +#define GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV 0x8C74 +#define GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV 0x8C75 +#endif /* GL_NV_tessellation_program5 */ + +#ifndef GL_NV_texgen_emboss +#define GL_NV_texgen_emboss 1 +#define GL_EMBOSS_LIGHT_NV 0x855D +#define GL_EMBOSS_CONSTANT_NV 0x855E +#define GL_EMBOSS_MAP_NV 0x855F +#endif /* GL_NV_texgen_emboss */ + +#ifndef GL_NV_texgen_reflection +#define GL_NV_texgen_reflection 1 +#define GL_NORMAL_MAP_NV 0x8511 +#define GL_REFLECTION_MAP_NV 0x8512 +#endif /* GL_NV_texgen_reflection */ + +#ifndef GL_NV_texture_barrier +#define GL_NV_texture_barrier 1 +typedef void (APIENTRYP PFNGLTEXTUREBARRIERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureBarrierNV (void); +#endif +#endif /* GL_NV_texture_barrier */ + +#ifndef GL_NV_texture_compression_vtc +#define GL_NV_texture_compression_vtc 1 +#endif /* GL_NV_texture_compression_vtc */ + +#ifndef GL_NV_texture_env_combine4 +#define GL_NV_texture_env_combine4 1 +#define GL_COMBINE4_NV 0x8503 +#define GL_SOURCE3_RGB_NV 0x8583 +#define GL_SOURCE3_ALPHA_NV 0x858B +#define GL_OPERAND3_RGB_NV 0x8593 +#define GL_OPERAND3_ALPHA_NV 0x859B +#endif /* GL_NV_texture_env_combine4 */ + +#ifndef GL_NV_texture_expand_normal +#define GL_NV_texture_expand_normal 1 +#define GL_TEXTURE_UNSIGNED_REMAP_MODE_NV 0x888F +#endif /* GL_NV_texture_expand_normal */ + +#ifndef GL_NV_texture_multisample +#define GL_NV_texture_multisample 1 +#define GL_TEXTURE_COVERAGE_SAMPLES_NV 0x9045 +#define GL_TEXTURE_COLOR_SAMPLES_NV 0x9046 +typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DMULTISAMPLENVPROC) (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DMULTISAMPLENVPROC) (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE2DMULTISAMPLECOVERAGENVPROC) (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (APIENTRYP PFNGLTEXTUREIMAGE3DMULTISAMPLECOVERAGENVPROC) (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage2DMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTexImage3DMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage2DMultisampleNV (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage3DMultisampleNV (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage2DMultisampleCoverageNV (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +GLAPI void APIENTRY glTextureImage3DMultisampleCoverageNV (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +#endif +#endif /* GL_NV_texture_multisample */ + +#ifndef GL_NV_texture_rectangle +#define GL_NV_texture_rectangle 1 +#define GL_TEXTURE_RECTANGLE_NV 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE_NV 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE_NV 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE_NV 0x84F8 +#endif /* GL_NV_texture_rectangle */ + +#ifndef GL_NV_texture_rectangle_compressed +#define GL_NV_texture_rectangle_compressed 1 +#endif /* GL_NV_texture_rectangle_compressed */ + +#ifndef GL_NV_texture_shader +#define GL_NV_texture_shader 1 +#define GL_OFFSET_TEXTURE_RECTANGLE_NV 0x864C +#define GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV 0x864D +#define GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV 0x864E +#define GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV 0x86D9 +#define GL_UNSIGNED_INT_S8_S8_8_8_NV 0x86DA +#define GL_UNSIGNED_INT_8_8_S8_S8_REV_NV 0x86DB +#define GL_DSDT_MAG_INTENSITY_NV 0x86DC +#define GL_SHADER_CONSISTENT_NV 0x86DD +#define GL_TEXTURE_SHADER_NV 0x86DE +#define GL_SHADER_OPERATION_NV 0x86DF +#define GL_CULL_MODES_NV 0x86E0 +#define GL_OFFSET_TEXTURE_MATRIX_NV 0x86E1 +#define GL_OFFSET_TEXTURE_SCALE_NV 0x86E2 +#define GL_OFFSET_TEXTURE_BIAS_NV 0x86E3 +#define GL_OFFSET_TEXTURE_2D_MATRIX_NV 0x86E1 +#define GL_OFFSET_TEXTURE_2D_SCALE_NV 0x86E2 +#define GL_OFFSET_TEXTURE_2D_BIAS_NV 0x86E3 +#define GL_PREVIOUS_TEXTURE_INPUT_NV 0x86E4 +#define GL_CONST_EYE_NV 0x86E5 +#define GL_PASS_THROUGH_NV 0x86E6 +#define GL_CULL_FRAGMENT_NV 0x86E7 +#define GL_OFFSET_TEXTURE_2D_NV 0x86E8 +#define GL_DEPENDENT_AR_TEXTURE_2D_NV 0x86E9 +#define GL_DEPENDENT_GB_TEXTURE_2D_NV 0x86EA +#define GL_DOT_PRODUCT_NV 0x86EC +#define GL_DOT_PRODUCT_DEPTH_REPLACE_NV 0x86ED +#define GL_DOT_PRODUCT_TEXTURE_2D_NV 0x86EE +#define GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV 0x86F0 +#define GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV 0x86F1 +#define GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV 0x86F2 +#define GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV 0x86F3 +#define GL_HILO_NV 0x86F4 +#define GL_DSDT_NV 0x86F5 +#define GL_DSDT_MAG_NV 0x86F6 +#define GL_DSDT_MAG_VIB_NV 0x86F7 +#define GL_HILO16_NV 0x86F8 +#define GL_SIGNED_HILO_NV 0x86F9 +#define GL_SIGNED_HILO16_NV 0x86FA +#define GL_SIGNED_RGBA_NV 0x86FB +#define GL_SIGNED_RGBA8_NV 0x86FC +#define GL_SIGNED_RGB_NV 0x86FE +#define GL_SIGNED_RGB8_NV 0x86FF +#define GL_SIGNED_LUMINANCE_NV 0x8701 +#define GL_SIGNED_LUMINANCE8_NV 0x8702 +#define GL_SIGNED_LUMINANCE_ALPHA_NV 0x8703 +#define GL_SIGNED_LUMINANCE8_ALPHA8_NV 0x8704 +#define GL_SIGNED_ALPHA_NV 0x8705 +#define GL_SIGNED_ALPHA8_NV 0x8706 +#define GL_SIGNED_INTENSITY_NV 0x8707 +#define GL_SIGNED_INTENSITY8_NV 0x8708 +#define GL_DSDT8_NV 0x8709 +#define GL_DSDT8_MAG8_NV 0x870A +#define GL_DSDT8_MAG8_INTENSITY8_NV 0x870B +#define GL_SIGNED_RGB_UNSIGNED_ALPHA_NV 0x870C +#define GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV 0x870D +#define GL_HI_SCALE_NV 0x870E +#define GL_LO_SCALE_NV 0x870F +#define GL_DS_SCALE_NV 0x8710 +#define GL_DT_SCALE_NV 0x8711 +#define GL_MAGNITUDE_SCALE_NV 0x8712 +#define GL_VIBRANCE_SCALE_NV 0x8713 +#define GL_HI_BIAS_NV 0x8714 +#define GL_LO_BIAS_NV 0x8715 +#define GL_DS_BIAS_NV 0x8716 +#define GL_DT_BIAS_NV 0x8717 +#define GL_MAGNITUDE_BIAS_NV 0x8718 +#define GL_VIBRANCE_BIAS_NV 0x8719 +#define GL_TEXTURE_BORDER_VALUES_NV 0x871A +#define GL_TEXTURE_HI_SIZE_NV 0x871B +#define GL_TEXTURE_LO_SIZE_NV 0x871C +#define GL_TEXTURE_DS_SIZE_NV 0x871D +#define GL_TEXTURE_DT_SIZE_NV 0x871E +#define GL_TEXTURE_MAG_SIZE_NV 0x871F +#endif /* GL_NV_texture_shader */ + +#ifndef GL_NV_texture_shader2 +#define GL_NV_texture_shader2 1 +#define GL_DOT_PRODUCT_TEXTURE_3D_NV 0x86EF +#endif /* GL_NV_texture_shader2 */ + +#ifndef GL_NV_texture_shader3 +#define GL_NV_texture_shader3 1 +#define GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV 0x8850 +#define GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV 0x8851 +#define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8852 +#define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV 0x8853 +#define GL_OFFSET_HILO_TEXTURE_2D_NV 0x8854 +#define GL_OFFSET_HILO_TEXTURE_RECTANGLE_NV 0x8855 +#define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV 0x8856 +#define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8857 +#define GL_DEPENDENT_HILO_TEXTURE_2D_NV 0x8858 +#define GL_DEPENDENT_RGB_TEXTURE_3D_NV 0x8859 +#define GL_DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV 0x885A +#define GL_DOT_PRODUCT_PASS_THROUGH_NV 0x885B +#define GL_DOT_PRODUCT_TEXTURE_1D_NV 0x885C +#define GL_DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV 0x885D +#define GL_HILO8_NV 0x885E +#define GL_SIGNED_HILO8_NV 0x885F +#define GL_FORCE_BLUE_TO_ONE_NV 0x8860 +#endif /* GL_NV_texture_shader3 */ + +#ifndef GL_NV_timeline_semaphore +#define GL_NV_timeline_semaphore 1 +#define GL_TIMELINE_SEMAPHORE_VALUE_NV 0x9595 +#define GL_SEMAPHORE_TYPE_NV 0x95B3 +#define GL_SEMAPHORE_TYPE_BINARY_NV 0x95B4 +#define GL_SEMAPHORE_TYPE_TIMELINE_NV 0x95B5 +#define GL_MAX_TIMELINE_SEMAPHORE_VALUE_DIFFERENCE_NV 0x95B6 +typedef void (APIENTRYP PFNGLCREATESEMAPHORESNVPROC) (GLsizei n, GLuint *semaphores); +typedef void (APIENTRYP PFNGLSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCreateSemaphoresNV (GLsizei n, GLuint *semaphores); +GLAPI void APIENTRY glSemaphoreParameterivNV (GLuint semaphore, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetSemaphoreParameterivNV (GLuint semaphore, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_timeline_semaphore */ + +#ifndef GL_NV_transform_feedback +#define GL_NV_transform_feedback 1 +#define GL_BACK_PRIMARY_COLOR_NV 0x8C77 +#define GL_BACK_SECONDARY_COLOR_NV 0x8C78 +#define GL_TEXTURE_COORD_NV 0x8C79 +#define GL_CLIP_DISTANCE_NV 0x8C7A +#define GL_VERTEX_ID_NV 0x8C7B +#define GL_PRIMITIVE_ID_NV 0x8C7C +#define GL_GENERIC_ATTRIB_NV 0x8C7D +#define GL_TRANSFORM_FEEDBACK_ATTRIBS_NV 0x8C7E +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_NV 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_NV 0x8C80 +#define GL_ACTIVE_VARYINGS_NV 0x8C81 +#define GL_ACTIVE_VARYING_MAX_LENGTH_NV 0x8C82 +#define GL_TRANSFORM_FEEDBACK_VARYINGS_NV 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START_NV 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_NV 0x8C85 +#define GL_TRANSFORM_FEEDBACK_RECORD_NV 0x8C86 +#define GL_PRIMITIVES_GENERATED_NV 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_NV 0x8C88 +#define GL_RASTERIZER_DISCARD_NV 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_NV 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_NV 0x8C8B +#define GL_INTERLEAVED_ATTRIBS_NV 0x8C8C +#define GL_SEPARATE_ATTRIBS_NV 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER_NV 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_NV 0x8C8F +#define GL_LAYER_NV 0x8DAA +#define GL_NEXT_BUFFER_NV -2 +#define GL_SKIP_COMPONENTS4_NV -3 +#define GL_SKIP_COMPONENTS3_NV -4 +#define GL_SKIP_COMPONENTS2_NV -5 +#define GL_SKIP_COMPONENTS1_NV -6 +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKNVPROC) (GLenum primitiveMode); +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKATTRIBSNVPROC) (GLsizei count, const GLint *attribs, GLenum bufferMode); +typedef void (APIENTRYP PFNGLBINDBUFFERRANGENVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLBINDBUFFEROFFSETNVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +typedef void (APIENTRYP PFNGLBINDBUFFERBASENVPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSNVPROC) (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode); +typedef void (APIENTRYP PFNGLACTIVEVARYINGNVPROC) (GLuint program, const GLchar *name); +typedef GLint (APIENTRYP PFNGLGETVARYINGLOCATIONNVPROC) (GLuint program, const GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVEVARYINGNVPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGNVPROC) (GLuint program, GLuint index, GLint *location); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKSTREAMATTRIBSNVPROC) (GLsizei count, const GLint *attribs, GLsizei nbuffers, const GLint *bufstreams, GLenum bufferMode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginTransformFeedbackNV (GLenum primitiveMode); +GLAPI void APIENTRY glEndTransformFeedbackNV (void); +GLAPI void APIENTRY glTransformFeedbackAttribsNV (GLsizei count, const GLint *attribs, GLenum bufferMode); +GLAPI void APIENTRY glBindBufferRangeNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glBindBufferOffsetNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +GLAPI void APIENTRY glBindBufferBaseNV (GLenum target, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackVaryingsNV (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode); +GLAPI void APIENTRY glActiveVaryingNV (GLuint program, const GLchar *name); +GLAPI GLint APIENTRY glGetVaryingLocationNV (GLuint program, const GLchar *name); +GLAPI void APIENTRY glGetActiveVaryingNV (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +GLAPI void APIENTRY glGetTransformFeedbackVaryingNV (GLuint program, GLuint index, GLint *location); +GLAPI void APIENTRY glTransformFeedbackStreamAttribsNV (GLsizei count, const GLint *attribs, GLsizei nbuffers, const GLint *bufstreams, GLenum bufferMode); +#endif +#endif /* GL_NV_transform_feedback */ + +#ifndef GL_NV_transform_feedback2 +#define GL_NV_transform_feedback2 1 +#define GL_TRANSFORM_FEEDBACK_NV 0x8E22 +#define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED_NV 0x8E23 +#define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE_NV 0x8E24 +#define GL_TRANSFORM_FEEDBACK_BINDING_NV 0x8E25 +typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKNVPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSNVPROC) (GLsizei n, const GLuint *ids); +typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSNVPROC) (GLsizei n, GLuint *ids); +typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKNVPROC) (void); +typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKNVPROC) (GLenum mode, GLuint id); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindTransformFeedbackNV (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteTransformFeedbacksNV (GLsizei n, const GLuint *ids); +GLAPI void APIENTRY glGenTransformFeedbacksNV (GLsizei n, GLuint *ids); +GLAPI GLboolean APIENTRY glIsTransformFeedbackNV (GLuint id); +GLAPI void APIENTRY glPauseTransformFeedbackNV (void); +GLAPI void APIENTRY glResumeTransformFeedbackNV (void); +GLAPI void APIENTRY glDrawTransformFeedbackNV (GLenum mode, GLuint id); +#endif +#endif /* GL_NV_transform_feedback2 */ + +#ifndef GL_NV_uniform_buffer_unified_memory +#define GL_NV_uniform_buffer_unified_memory 1 +#define GL_UNIFORM_BUFFER_UNIFIED_NV 0x936E +#define GL_UNIFORM_BUFFER_ADDRESS_NV 0x936F +#define GL_UNIFORM_BUFFER_LENGTH_NV 0x9370 +#endif /* GL_NV_uniform_buffer_unified_memory */ + +#ifndef GL_NV_vdpau_interop +#define GL_NV_vdpau_interop 1 +typedef GLintptr GLvdpauSurfaceNV; +#define GL_SURFACE_STATE_NV 0x86EB +#define GL_SURFACE_REGISTERED_NV 0x86FD +#define GL_SURFACE_MAPPED_NV 0x8700 +#define GL_WRITE_DISCARD_NV 0x88BE +typedef void (APIENTRYP PFNGLVDPAUINITNVPROC) (const void *vdpDevice, const void *getProcAddress); +typedef void (APIENTRYP PFNGLVDPAUFININVPROC) (void); +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTERVIDEOSURFACENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTEROUTPUTSURFACENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +typedef GLboolean (APIENTRYP PFNGLVDPAUISSURFACENVPROC) (GLvdpauSurfaceNV surface); +typedef void (APIENTRYP PFNGLVDPAUUNREGISTERSURFACENVPROC) (GLvdpauSurfaceNV surface); +typedef void (APIENTRYP PFNGLVDPAUGETSURFACEIVNVPROC) (GLvdpauSurfaceNV surface, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +typedef void (APIENTRYP PFNGLVDPAUSURFACEACCESSNVPROC) (GLvdpauSurfaceNV surface, GLenum access); +typedef void (APIENTRYP PFNGLVDPAUMAPSURFACESNVPROC) (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces); +typedef void (APIENTRYP PFNGLVDPAUUNMAPSURFACESNVPROC) (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVDPAUInitNV (const void *vdpDevice, const void *getProcAddress); +GLAPI void APIENTRY glVDPAUFiniNV (void); +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterVideoSurfaceNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterOutputSurfaceNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +GLAPI GLboolean APIENTRY glVDPAUIsSurfaceNV (GLvdpauSurfaceNV surface); +GLAPI void APIENTRY glVDPAUUnregisterSurfaceNV (GLvdpauSurfaceNV surface); +GLAPI void APIENTRY glVDPAUGetSurfaceivNV (GLvdpauSurfaceNV surface, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +GLAPI void APIENTRY glVDPAUSurfaceAccessNV (GLvdpauSurfaceNV surface, GLenum access); +GLAPI void APIENTRY glVDPAUMapSurfacesNV (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces); +GLAPI void APIENTRY glVDPAUUnmapSurfacesNV (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces); +#endif +#endif /* GL_NV_vdpau_interop */ + +#ifndef GL_NV_vdpau_interop2 +#define GL_NV_vdpau_interop2 1 +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTERVIDEOSURFACEWITHPICTURESTRUCTURENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames, GLboolean isFrameStructure); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterVideoSurfaceWithPictureStructureNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames, GLboolean isFrameStructure); +#endif +#endif /* GL_NV_vdpau_interop2 */ + +#ifndef GL_NV_vertex_array_range +#define GL_NV_vertex_array_range 1 +#define GL_VERTEX_ARRAY_RANGE_NV 0x851D +#define GL_VERTEX_ARRAY_RANGE_LENGTH_NV 0x851E +#define GL_VERTEX_ARRAY_RANGE_VALID_NV 0x851F +#define GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV 0x8520 +#define GL_VERTEX_ARRAY_RANGE_POINTER_NV 0x8521 +typedef void (APIENTRYP PFNGLFLUSHVERTEXARRAYRANGENVPROC) (void); +typedef void (APIENTRYP PFNGLVERTEXARRAYRANGENVPROC) (GLsizei length, const void *pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushVertexArrayRangeNV (void); +GLAPI void APIENTRY glVertexArrayRangeNV (GLsizei length, const void *pointer); +#endif +#endif /* GL_NV_vertex_array_range */ + +#ifndef GL_NV_vertex_array_range2 +#define GL_NV_vertex_array_range2 1 +#define GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV 0x8533 +#endif /* GL_NV_vertex_array_range2 */ + +#ifndef GL_NV_vertex_attrib_integer_64bit +#define GL_NV_vertex_attrib_integer_64bit 1 +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1I64NVPROC) (GLuint index, GLint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4I64VNVPROC) (GLuint index, const GLint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64NVPROC) (GLuint index, GLuint64EXT x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL1UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL2UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL3UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBL4UI64VNVPROC) (GLuint index, const GLuint64EXT *v); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLI64VNVPROC) (GLuint index, GLenum pname, GLint64EXT *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLUI64VNVPROC) (GLuint index, GLenum pname, GLuint64EXT *params); +typedef void (APIENTRYP PFNGLVERTEXATTRIBLFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glVertexAttribL1i64NV (GLuint index, GLint64EXT x); +GLAPI void APIENTRY glVertexAttribL2i64NV (GLuint index, GLint64EXT x, GLint64EXT y); +GLAPI void APIENTRY glVertexAttribL3i64NV (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GLAPI void APIENTRY glVertexAttribL4i64NV (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GLAPI void APIENTRY glVertexAttribL1i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL2i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL3i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL4i64vNV (GLuint index, const GLint64EXT *v); +GLAPI void APIENTRY glVertexAttribL1ui64NV (GLuint index, GLuint64EXT x); +GLAPI void APIENTRY glVertexAttribL2ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y); +GLAPI void APIENTRY glVertexAttribL3ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GLAPI void APIENTRY glVertexAttribL4ui64NV (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GLAPI void APIENTRY glVertexAttribL1ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL2ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL3ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glVertexAttribL4ui64vNV (GLuint index, const GLuint64EXT *v); +GLAPI void APIENTRY glGetVertexAttribLi64vNV (GLuint index, GLenum pname, GLint64EXT *params); +GLAPI void APIENTRY glGetVertexAttribLui64vNV (GLuint index, GLenum pname, GLuint64EXT *params); +GLAPI void APIENTRY glVertexAttribLFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride); +#endif +#endif /* GL_NV_vertex_attrib_integer_64bit */ + +#ifndef GL_NV_vertex_buffer_unified_memory +#define GL_NV_vertex_buffer_unified_memory 1 +#define GL_VERTEX_ATTRIB_ARRAY_UNIFIED_NV 0x8F1E +#define GL_ELEMENT_ARRAY_UNIFIED_NV 0x8F1F +#define GL_VERTEX_ATTRIB_ARRAY_ADDRESS_NV 0x8F20 +#define GL_VERTEX_ARRAY_ADDRESS_NV 0x8F21 +#define GL_NORMAL_ARRAY_ADDRESS_NV 0x8F22 +#define GL_COLOR_ARRAY_ADDRESS_NV 0x8F23 +#define GL_INDEX_ARRAY_ADDRESS_NV 0x8F24 +#define GL_TEXTURE_COORD_ARRAY_ADDRESS_NV 0x8F25 +#define GL_EDGE_FLAG_ARRAY_ADDRESS_NV 0x8F26 +#define GL_SECONDARY_COLOR_ARRAY_ADDRESS_NV 0x8F27 +#define GL_FOG_COORD_ARRAY_ADDRESS_NV 0x8F28 +#define GL_ELEMENT_ARRAY_ADDRESS_NV 0x8F29 +#define GL_VERTEX_ATTRIB_ARRAY_LENGTH_NV 0x8F2A +#define GL_VERTEX_ARRAY_LENGTH_NV 0x8F2B +#define GL_NORMAL_ARRAY_LENGTH_NV 0x8F2C +#define GL_COLOR_ARRAY_LENGTH_NV 0x8F2D +#define GL_INDEX_ARRAY_LENGTH_NV 0x8F2E +#define GL_TEXTURE_COORD_ARRAY_LENGTH_NV 0x8F2F +#define GL_EDGE_FLAG_ARRAY_LENGTH_NV 0x8F30 +#define GL_SECONDARY_COLOR_ARRAY_LENGTH_NV 0x8F31 +#define GL_FOG_COORD_ARRAY_LENGTH_NV 0x8F32 +#define GL_ELEMENT_ARRAY_LENGTH_NV 0x8F33 +#define GL_DRAW_INDIRECT_UNIFIED_NV 0x8F40 +#define GL_DRAW_INDIRECT_ADDRESS_NV 0x8F41 +#define GL_DRAW_INDIRECT_LENGTH_NV 0x8F42 +typedef void (APIENTRYP PFNGLBUFFERADDRESSRANGENVPROC) (GLenum pname, GLuint index, GLuint64EXT address, GLsizeiptr length); +typedef void (APIENTRYP PFNGLVERTEXFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLNORMALFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLINDEXFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLTEXCOORDFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLEDGEFLAGFORMATNVPROC) (GLsizei stride); +typedef void (APIENTRYP PFNGLSECONDARYCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLFOGCOORDFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride); +typedef void (APIENTRYP PFNGLGETINTEGERUI64I_VNVPROC) (GLenum value, GLuint index, GLuint64EXT *result); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferAddressRangeNV (GLenum pname, GLuint index, GLuint64EXT address, GLsizeiptr length); +GLAPI void APIENTRY glVertexFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glNormalFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glColorFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glIndexFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glTexCoordFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glEdgeFlagFormatNV (GLsizei stride); +GLAPI void APIENTRY glSecondaryColorFormatNV (GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glFogCoordFormatNV (GLenum type, GLsizei stride); +GLAPI void APIENTRY glVertexAttribFormatNV (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride); +GLAPI void APIENTRY glVertexAttribIFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride); +GLAPI void APIENTRY glGetIntegerui64i_vNV (GLenum value, GLuint index, GLuint64EXT *result); +#endif +#endif /* GL_NV_vertex_buffer_unified_memory */ + +#ifndef GL_NV_vertex_program +#define GL_NV_vertex_program 1 +#define GL_VERTEX_PROGRAM_NV 0x8620 +#define GL_VERTEX_STATE_PROGRAM_NV 0x8621 +#define GL_ATTRIB_ARRAY_SIZE_NV 0x8623 +#define GL_ATTRIB_ARRAY_STRIDE_NV 0x8624 +#define GL_ATTRIB_ARRAY_TYPE_NV 0x8625 +#define GL_CURRENT_ATTRIB_NV 0x8626 +#define GL_PROGRAM_LENGTH_NV 0x8627 +#define GL_PROGRAM_STRING_NV 0x8628 +#define GL_MODELVIEW_PROJECTION_NV 0x8629 +#define GL_IDENTITY_NV 0x862A +#define GL_INVERSE_NV 0x862B +#define GL_TRANSPOSE_NV 0x862C +#define GL_INVERSE_TRANSPOSE_NV 0x862D +#define GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV 0x862E +#define GL_MAX_TRACK_MATRICES_NV 0x862F +#define GL_MATRIX0_NV 0x8630 +#define GL_MATRIX1_NV 0x8631 +#define GL_MATRIX2_NV 0x8632 +#define GL_MATRIX3_NV 0x8633 +#define GL_MATRIX4_NV 0x8634 +#define GL_MATRIX5_NV 0x8635 +#define GL_MATRIX6_NV 0x8636 +#define GL_MATRIX7_NV 0x8637 +#define GL_CURRENT_MATRIX_STACK_DEPTH_NV 0x8640 +#define GL_CURRENT_MATRIX_NV 0x8641 +#define GL_VERTEX_PROGRAM_POINT_SIZE_NV 0x8642 +#define GL_VERTEX_PROGRAM_TWO_SIDE_NV 0x8643 +#define GL_PROGRAM_PARAMETER_NV 0x8644 +#define GL_ATTRIB_ARRAY_POINTER_NV 0x8645 +#define GL_PROGRAM_TARGET_NV 0x8646 +#define GL_PROGRAM_RESIDENT_NV 0x8647 +#define GL_TRACK_MATRIX_NV 0x8648 +#define GL_TRACK_MATRIX_TRANSFORM_NV 0x8649 +#define GL_VERTEX_PROGRAM_BINDING_NV 0x864A +#define GL_PROGRAM_ERROR_POSITION_NV 0x864B +#define GL_VERTEX_ATTRIB_ARRAY0_NV 0x8650 +#define GL_VERTEX_ATTRIB_ARRAY1_NV 0x8651 +#define GL_VERTEX_ATTRIB_ARRAY2_NV 0x8652 +#define GL_VERTEX_ATTRIB_ARRAY3_NV 0x8653 +#define GL_VERTEX_ATTRIB_ARRAY4_NV 0x8654 +#define GL_VERTEX_ATTRIB_ARRAY5_NV 0x8655 +#define GL_VERTEX_ATTRIB_ARRAY6_NV 0x8656 +#define GL_VERTEX_ATTRIB_ARRAY7_NV 0x8657 +#define GL_VERTEX_ATTRIB_ARRAY8_NV 0x8658 +#define GL_VERTEX_ATTRIB_ARRAY9_NV 0x8659 +#define GL_VERTEX_ATTRIB_ARRAY10_NV 0x865A +#define GL_VERTEX_ATTRIB_ARRAY11_NV 0x865B +#define GL_VERTEX_ATTRIB_ARRAY12_NV 0x865C +#define GL_VERTEX_ATTRIB_ARRAY13_NV 0x865D +#define GL_VERTEX_ATTRIB_ARRAY14_NV 0x865E +#define GL_VERTEX_ATTRIB_ARRAY15_NV 0x865F +#define GL_MAP1_VERTEX_ATTRIB0_4_NV 0x8660 +#define GL_MAP1_VERTEX_ATTRIB1_4_NV 0x8661 +#define GL_MAP1_VERTEX_ATTRIB2_4_NV 0x8662 +#define GL_MAP1_VERTEX_ATTRIB3_4_NV 0x8663 +#define GL_MAP1_VERTEX_ATTRIB4_4_NV 0x8664 +#define GL_MAP1_VERTEX_ATTRIB5_4_NV 0x8665 +#define GL_MAP1_VERTEX_ATTRIB6_4_NV 0x8666 +#define GL_MAP1_VERTEX_ATTRIB7_4_NV 0x8667 +#define GL_MAP1_VERTEX_ATTRIB8_4_NV 0x8668 +#define GL_MAP1_VERTEX_ATTRIB9_4_NV 0x8669 +#define GL_MAP1_VERTEX_ATTRIB10_4_NV 0x866A +#define GL_MAP1_VERTEX_ATTRIB11_4_NV 0x866B +#define GL_MAP1_VERTEX_ATTRIB12_4_NV 0x866C +#define GL_MAP1_VERTEX_ATTRIB13_4_NV 0x866D +#define GL_MAP1_VERTEX_ATTRIB14_4_NV 0x866E +#define GL_MAP1_VERTEX_ATTRIB15_4_NV 0x866F +#define GL_MAP2_VERTEX_ATTRIB0_4_NV 0x8670 +#define GL_MAP2_VERTEX_ATTRIB1_4_NV 0x8671 +#define GL_MAP2_VERTEX_ATTRIB2_4_NV 0x8672 +#define GL_MAP2_VERTEX_ATTRIB3_4_NV 0x8673 +#define GL_MAP2_VERTEX_ATTRIB4_4_NV 0x8674 +#define GL_MAP2_VERTEX_ATTRIB5_4_NV 0x8675 +#define GL_MAP2_VERTEX_ATTRIB6_4_NV 0x8676 +#define GL_MAP2_VERTEX_ATTRIB7_4_NV 0x8677 +#define GL_MAP2_VERTEX_ATTRIB8_4_NV 0x8678 +#define GL_MAP2_VERTEX_ATTRIB9_4_NV 0x8679 +#define GL_MAP2_VERTEX_ATTRIB10_4_NV 0x867A +#define GL_MAP2_VERTEX_ATTRIB11_4_NV 0x867B +#define GL_MAP2_VERTEX_ATTRIB12_4_NV 0x867C +#define GL_MAP2_VERTEX_ATTRIB13_4_NV 0x867D +#define GL_MAP2_VERTEX_ATTRIB14_4_NV 0x867E +#define GL_MAP2_VERTEX_ATTRIB15_4_NV 0x867F +typedef GLboolean (APIENTRYP PFNGLAREPROGRAMSRESIDENTNVPROC) (GLsizei n, const GLuint *programs, GLboolean *residences); +typedef void (APIENTRYP PFNGLBINDPROGRAMNVPROC) (GLenum target, GLuint id); +typedef void (APIENTRYP PFNGLDELETEPROGRAMSNVPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLEXECUTEPROGRAMNVPROC) (GLenum target, GLuint id, const GLfloat *params); +typedef void (APIENTRYP PFNGLGENPROGRAMSNVPROC) (GLsizei n, GLuint *programs); +typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERDVNVPROC) (GLenum target, GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETPROGRAMPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETPROGRAMIVNVPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMSTRINGNVPROC) (GLuint id, GLenum pname, GLubyte *program); +typedef void (APIENTRYP PFNGLGETTRACKMATRIXIVNVPROC) (GLenum target, GLuint address, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVNVPROC) (GLuint index, GLenum pname, GLdouble *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVNVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVNVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVNVPROC) (GLuint index, GLenum pname, void **pointer); +typedef GLboolean (APIENTRYP PFNGLISPROGRAMNVPROC) (GLuint id); +typedef void (APIENTRYP PFNGLLOADPROGRAMNVPROC) (GLenum target, GLuint id, GLsizei len, const GLubyte *program); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DNVPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4DVNVPROC) (GLenum target, GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FNVPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETER4FVNVPROC) (GLenum target, GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4DVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLPROGRAMPARAMETERS4FVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLREQUESTRESIDENTPROGRAMSNVPROC) (GLsizei n, const GLuint *programs); +typedef void (APIENTRYP PFNGLTRACKMATRIXNVPROC) (GLenum target, GLuint address, GLenum matrix, GLenum transform); +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERNVPROC) (GLuint index, GLint fsize, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DNVPROC) (GLuint index, GLdouble x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FNVPROC) (GLuint index, GLfloat x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SNVPROC) (GLuint index, GLshort x); +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DNVPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FNVPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SNVPROC) (GLuint index, GLshort x, GLshort y); +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVNVPROC) (GLuint index, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVNVPROC) (GLuint index, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVNVPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBNVPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVNVPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS1SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS2SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS3SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4DVNVPROC) (GLuint index, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4FVNVPROC) (GLuint index, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4SVNVPROC) (GLuint index, GLsizei count, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBS4UBVNVPROC) (GLuint index, GLsizei count, const GLubyte *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAreProgramsResidentNV (GLsizei n, const GLuint *programs, GLboolean *residences); +GLAPI void APIENTRY glBindProgramNV (GLenum target, GLuint id); +GLAPI void APIENTRY glDeleteProgramsNV (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glExecuteProgramNV (GLenum target, GLuint id, const GLfloat *params); +GLAPI void APIENTRY glGenProgramsNV (GLsizei n, GLuint *programs); +GLAPI void APIENTRY glGetProgramParameterdvNV (GLenum target, GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetProgramParameterfvNV (GLenum target, GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetProgramivNV (GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetProgramStringNV (GLuint id, GLenum pname, GLubyte *program); +GLAPI void APIENTRY glGetTrackMatrixivNV (GLenum target, GLuint address, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribdvNV (GLuint index, GLenum pname, GLdouble *params); +GLAPI void APIENTRY glGetVertexAttribfvNV (GLuint index, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVertexAttribivNV (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribPointervNV (GLuint index, GLenum pname, void **pointer); +GLAPI GLboolean APIENTRY glIsProgramNV (GLuint id); +GLAPI void APIENTRY glLoadProgramNV (GLenum target, GLuint id, GLsizei len, const GLubyte *program); +GLAPI void APIENTRY glProgramParameter4dNV (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glProgramParameter4dvNV (GLenum target, GLuint index, const GLdouble *v); +GLAPI void APIENTRY glProgramParameter4fNV (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glProgramParameter4fvNV (GLenum target, GLuint index, const GLfloat *v); +GLAPI void APIENTRY glProgramParameters4dvNV (GLenum target, GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glProgramParameters4fvNV (GLenum target, GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glRequestResidentProgramsNV (GLsizei n, const GLuint *programs); +GLAPI void APIENTRY glTrackMatrixNV (GLenum target, GLuint address, GLenum matrix, GLenum transform); +GLAPI void APIENTRY glVertexAttribPointerNV (GLuint index, GLint fsize, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glVertexAttrib1dNV (GLuint index, GLdouble x); +GLAPI void APIENTRY glVertexAttrib1dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib1fNV (GLuint index, GLfloat x); +GLAPI void APIENTRY glVertexAttrib1fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib1sNV (GLuint index, GLshort x); +GLAPI void APIENTRY glVertexAttrib1svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib2dNV (GLuint index, GLdouble x, GLdouble y); +GLAPI void APIENTRY glVertexAttrib2dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib2fNV (GLuint index, GLfloat x, GLfloat y); +GLAPI void APIENTRY glVertexAttrib2fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib2sNV (GLuint index, GLshort x, GLshort y); +GLAPI void APIENTRY glVertexAttrib2svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib3dNV (GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI void APIENTRY glVertexAttrib3dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib3fNV (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glVertexAttrib3fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib3sNV (GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI void APIENTRY glVertexAttrib3svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4dNV (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void APIENTRY glVertexAttrib4dvNV (GLuint index, const GLdouble *v); +GLAPI void APIENTRY glVertexAttrib4fNV (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glVertexAttrib4fvNV (GLuint index, const GLfloat *v); +GLAPI void APIENTRY glVertexAttrib4sNV (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void APIENTRY glVertexAttrib4svNV (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttrib4ubNV (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI void APIENTRY glVertexAttrib4ubvNV (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribs1dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs1fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs1svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs2dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs2fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs2svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs3dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs3fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs3svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs4dvNV (GLuint index, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glVertexAttribs4fvNV (GLuint index, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glVertexAttribs4svNV (GLuint index, GLsizei count, const GLshort *v); +GLAPI void APIENTRY glVertexAttribs4ubvNV (GLuint index, GLsizei count, const GLubyte *v); +#endif +#endif /* GL_NV_vertex_program */ + +#ifndef GL_NV_vertex_program1_1 +#define GL_NV_vertex_program1_1 1 +#endif /* GL_NV_vertex_program1_1 */ + +#ifndef GL_NV_vertex_program2 +#define GL_NV_vertex_program2 1 +#endif /* GL_NV_vertex_program2 */ + +#ifndef GL_NV_vertex_program2_option +#define GL_NV_vertex_program2_option 1 +#endif /* GL_NV_vertex_program2_option */ + +#ifndef GL_NV_vertex_program3 +#define GL_NV_vertex_program3 1 +#endif /* GL_NV_vertex_program3 */ + +#ifndef GL_NV_vertex_program4 +#define GL_NV_vertex_program4 1 +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD +#endif /* GL_NV_vertex_program4 */ + +#ifndef GL_NV_video_capture +#define GL_NV_video_capture 1 +#define GL_VIDEO_BUFFER_NV 0x9020 +#define GL_VIDEO_BUFFER_BINDING_NV 0x9021 +#define GL_FIELD_UPPER_NV 0x9022 +#define GL_FIELD_LOWER_NV 0x9023 +#define GL_NUM_VIDEO_CAPTURE_STREAMS_NV 0x9024 +#define GL_NEXT_VIDEO_CAPTURE_BUFFER_STATUS_NV 0x9025 +#define GL_VIDEO_CAPTURE_TO_422_SUPPORTED_NV 0x9026 +#define GL_LAST_VIDEO_CAPTURE_STATUS_NV 0x9027 +#define GL_VIDEO_BUFFER_PITCH_NV 0x9028 +#define GL_VIDEO_COLOR_CONVERSION_MATRIX_NV 0x9029 +#define GL_VIDEO_COLOR_CONVERSION_MAX_NV 0x902A +#define GL_VIDEO_COLOR_CONVERSION_MIN_NV 0x902B +#define GL_VIDEO_COLOR_CONVERSION_OFFSET_NV 0x902C +#define GL_VIDEO_BUFFER_INTERNAL_FORMAT_NV 0x902D +#define GL_PARTIAL_SUCCESS_NV 0x902E +#define GL_SUCCESS_NV 0x902F +#define GL_FAILURE_NV 0x9030 +#define GL_YCBYCR8_422_NV 0x9031 +#define GL_YCBAYCR8A_4224_NV 0x9032 +#define GL_Z6Y10Z6CB10Z6Y10Z6CR10_422_NV 0x9033 +#define GL_Z6Y10Z6CB10Z6A10Z6Y10Z6CR10Z6A10_4224_NV 0x9034 +#define GL_Z4Y12Z4CB12Z4Y12Z4CR12_422_NV 0x9035 +#define GL_Z4Y12Z4CB12Z4A12Z4Y12Z4CR12Z4A12_4224_NV 0x9036 +#define GL_Z4Y12Z4CB12Z4CR12_444_NV 0x9037 +#define GL_VIDEO_CAPTURE_FRAME_WIDTH_NV 0x9038 +#define GL_VIDEO_CAPTURE_FRAME_HEIGHT_NV 0x9039 +#define GL_VIDEO_CAPTURE_FIELD_UPPER_HEIGHT_NV 0x903A +#define GL_VIDEO_CAPTURE_FIELD_LOWER_HEIGHT_NV 0x903B +#define GL_VIDEO_CAPTURE_SURFACE_ORIGIN_NV 0x903C +typedef void (APIENTRYP PFNGLBEGINVIDEOCAPTURENVPROC) (GLuint video_capture_slot); +typedef void (APIENTRYP PFNGLBINDVIDEOCAPTURESTREAMBUFFERNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLintptrARB offset); +typedef void (APIENTRYP PFNGLBINDVIDEOCAPTURESTREAMTEXTURENVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLenum target, GLuint texture); +typedef void (APIENTRYP PFNGLENDVIDEOCAPTURENVPROC) (GLuint video_capture_slot); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTUREIVNVPROC) (GLuint video_capture_slot, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETVIDEOCAPTURESTREAMDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLdouble *params); +typedef GLenum (APIENTRYP PFNGLVIDEOCAPTURENVPROC) (GLuint video_capture_slot, GLuint *sequence_num, GLuint64EXT *capture_time); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLVIDEOCAPTURESTREAMPARAMETERDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLdouble *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBeginVideoCaptureNV (GLuint video_capture_slot); +GLAPI void APIENTRY glBindVideoCaptureStreamBufferNV (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLintptrARB offset); +GLAPI void APIENTRY glBindVideoCaptureStreamTextureNV (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLenum target, GLuint texture); +GLAPI void APIENTRY glEndVideoCaptureNV (GLuint video_capture_slot); +GLAPI void APIENTRY glGetVideoCaptureivNV (GLuint video_capture_slot, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideoCaptureStreamivNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVideoCaptureStreamfvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetVideoCaptureStreamdvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, GLdouble *params); +GLAPI GLenum APIENTRY glVideoCaptureNV (GLuint video_capture_slot, GLuint *sequence_num, GLuint64EXT *capture_time); +GLAPI void APIENTRY glVideoCaptureStreamParameterivNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLint *params); +GLAPI void APIENTRY glVideoCaptureStreamParameterfvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glVideoCaptureStreamParameterdvNV (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLdouble *params); +#endif +#endif /* GL_NV_video_capture */ + +#ifndef GL_NV_viewport_array2 +#define GL_NV_viewport_array2 1 +#endif /* GL_NV_viewport_array2 */ + +#ifndef GL_NV_viewport_swizzle +#define GL_NV_viewport_swizzle 1 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_X_NV 0x9350 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_X_NV 0x9351 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Y_NV 0x9352 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Y_NV 0x9353 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Z_NV 0x9354 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Z_NV 0x9355 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_W_NV 0x9356 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_W_NV 0x9357 +#define GL_VIEWPORT_SWIZZLE_X_NV 0x9358 +#define GL_VIEWPORT_SWIZZLE_Y_NV 0x9359 +#define GL_VIEWPORT_SWIZZLE_Z_NV 0x935A +#define GL_VIEWPORT_SWIZZLE_W_NV 0x935B +typedef void (APIENTRYP PFNGLVIEWPORTSWIZZLENVPROC) (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glViewportSwizzleNV (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#endif +#endif /* GL_NV_viewport_swizzle */ + +#ifndef GL_OML_interlace +#define GL_OML_interlace 1 +#define GL_INTERLACE_OML 0x8980 +#define GL_INTERLACE_READ_OML 0x8981 +#endif /* GL_OML_interlace */ + +#ifndef GL_OML_resample +#define GL_OML_resample 1 +#define GL_PACK_RESAMPLE_OML 0x8984 +#define GL_UNPACK_RESAMPLE_OML 0x8985 +#define GL_RESAMPLE_REPLICATE_OML 0x8986 +#define GL_RESAMPLE_ZERO_FILL_OML 0x8987 +#define GL_RESAMPLE_AVERAGE_OML 0x8988 +#define GL_RESAMPLE_DECIMATE_OML 0x8989 +#endif /* GL_OML_resample */ + +#ifndef GL_OML_subsample +#define GL_OML_subsample 1 +#define GL_FORMAT_SUBSAMPLE_24_24_OML 0x8982 +#define GL_FORMAT_SUBSAMPLE_244_244_OML 0x8983 +#endif /* GL_OML_subsample */ + +#ifndef GL_OVR_multiview +#define GL_OVR_multiview 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR 0x9630 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR 0x9632 +#define GL_MAX_VIEWS_OVR 0x9631 +#define GL_FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR 0x9633 +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferTextureMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview */ + +#ifndef GL_OVR_multiview2 +#define GL_OVR_multiview2 1 +#endif /* GL_OVR_multiview2 */ + +#ifndef GL_PGI_misc_hints +#define GL_PGI_misc_hints 1 +#define GL_PREFER_DOUBLEBUFFER_HINT_PGI 0x1A1F8 +#define GL_CONSERVE_MEMORY_HINT_PGI 0x1A1FD +#define GL_RECLAIM_MEMORY_HINT_PGI 0x1A1FE +#define GL_NATIVE_GRAPHICS_HANDLE_PGI 0x1A202 +#define GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI 0x1A203 +#define GL_NATIVE_GRAPHICS_END_HINT_PGI 0x1A204 +#define GL_ALWAYS_FAST_HINT_PGI 0x1A20C +#define GL_ALWAYS_SOFT_HINT_PGI 0x1A20D +#define GL_ALLOW_DRAW_OBJ_HINT_PGI 0x1A20E +#define GL_ALLOW_DRAW_WIN_HINT_PGI 0x1A20F +#define GL_ALLOW_DRAW_FRG_HINT_PGI 0x1A210 +#define GL_ALLOW_DRAW_MEM_HINT_PGI 0x1A211 +#define GL_STRICT_DEPTHFUNC_HINT_PGI 0x1A216 +#define GL_STRICT_LIGHTING_HINT_PGI 0x1A217 +#define GL_STRICT_SCISSOR_HINT_PGI 0x1A218 +#define GL_FULL_STIPPLE_HINT_PGI 0x1A219 +#define GL_CLIP_NEAR_HINT_PGI 0x1A220 +#define GL_CLIP_FAR_HINT_PGI 0x1A221 +#define GL_WIDE_LINE_HINT_PGI 0x1A222 +#define GL_BACK_NORMALS_HINT_PGI 0x1A223 +typedef void (APIENTRYP PFNGLHINTPGIPROC) (GLenum target, GLint mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glHintPGI (GLenum target, GLint mode); +#endif +#endif /* GL_PGI_misc_hints */ + +#ifndef GL_PGI_vertex_hints +#define GL_PGI_vertex_hints 1 +#define GL_VERTEX_DATA_HINT_PGI 0x1A22A +#define GL_VERTEX_CONSISTENT_HINT_PGI 0x1A22B +#define GL_MATERIAL_SIDE_HINT_PGI 0x1A22C +#define GL_MAX_VERTEX_HINT_PGI 0x1A22D +#define GL_COLOR3_BIT_PGI 0x00010000 +#define GL_COLOR4_BIT_PGI 0x00020000 +#define GL_EDGEFLAG_BIT_PGI 0x00040000 +#define GL_INDEX_BIT_PGI 0x00080000 +#define GL_MAT_AMBIENT_BIT_PGI 0x00100000 +#define GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI 0x00200000 +#define GL_MAT_DIFFUSE_BIT_PGI 0x00400000 +#define GL_MAT_EMISSION_BIT_PGI 0x00800000 +#define GL_MAT_COLOR_INDEXES_BIT_PGI 0x01000000 +#define GL_MAT_SHININESS_BIT_PGI 0x02000000 +#define GL_MAT_SPECULAR_BIT_PGI 0x04000000 +#define GL_NORMAL_BIT_PGI 0x08000000 +#define GL_TEXCOORD1_BIT_PGI 0x10000000 +#define GL_TEXCOORD2_BIT_PGI 0x20000000 +#define GL_TEXCOORD3_BIT_PGI 0x40000000 +#define GL_TEXCOORD4_BIT_PGI 0x80000000 +#define GL_VERTEX23_BIT_PGI 0x00000004 +#define GL_VERTEX4_BIT_PGI 0x00000008 +#endif /* GL_PGI_vertex_hints */ + +#ifndef GL_REND_screen_coordinates +#define GL_REND_screen_coordinates 1 +#define GL_SCREEN_COORDINATES_REND 0x8490 +#define GL_INVERTED_SCREEN_W_REND 0x8491 +#endif /* GL_REND_screen_coordinates */ + +#ifndef GL_S3_s3tc +#define GL_S3_s3tc 1 +#define GL_RGB_S3TC 0x83A0 +#define GL_RGB4_S3TC 0x83A1 +#define GL_RGBA_S3TC 0x83A2 +#define GL_RGBA4_S3TC 0x83A3 +#define GL_RGBA_DXT5_S3TC 0x83A4 +#define GL_RGBA4_DXT5_S3TC 0x83A5 +#endif /* GL_S3_s3tc */ + +#ifndef GL_SGIS_detail_texture +#define GL_SGIS_detail_texture 1 +#define GL_DETAIL_TEXTURE_2D_SGIS 0x8095 +#define GL_DETAIL_TEXTURE_2D_BINDING_SGIS 0x8096 +#define GL_LINEAR_DETAIL_SGIS 0x8097 +#define GL_LINEAR_DETAIL_ALPHA_SGIS 0x8098 +#define GL_LINEAR_DETAIL_COLOR_SGIS 0x8099 +#define GL_DETAIL_TEXTURE_LEVEL_SGIS 0x809A +#define GL_DETAIL_TEXTURE_MODE_SGIS 0x809B +#define GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS 0x809C +typedef void (APIENTRYP PFNGLDETAILTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETDETAILTEXFUNCSGISPROC) (GLenum target, GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDetailTexFuncSGIS (GLenum target, GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetDetailTexFuncSGIS (GLenum target, GLfloat *points); +#endif +#endif /* GL_SGIS_detail_texture */ + +#ifndef GL_SGIS_fog_function +#define GL_SGIS_fog_function 1 +#define GL_FOG_FUNC_SGIS 0x812A +#define GL_FOG_FUNC_POINTS_SGIS 0x812B +#define GL_MAX_FOG_FUNC_POINTS_SGIS 0x812C +typedef void (APIENTRYP PFNGLFOGFUNCSGISPROC) (GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETFOGFUNCSGISPROC) (GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFogFuncSGIS (GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetFogFuncSGIS (GLfloat *points); +#endif +#endif /* GL_SGIS_fog_function */ + +#ifndef GL_SGIS_generate_mipmap +#define GL_SGIS_generate_mipmap 1 +#define GL_GENERATE_MIPMAP_SGIS 0x8191 +#define GL_GENERATE_MIPMAP_HINT_SGIS 0x8192 +#endif /* GL_SGIS_generate_mipmap */ + +#ifndef GL_SGIS_multisample +#define GL_SGIS_multisample 1 +#define GL_MULTISAMPLE_SGIS 0x809D +#define GL_SAMPLE_ALPHA_TO_MASK_SGIS 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_SGIS 0x809F +#define GL_SAMPLE_MASK_SGIS 0x80A0 +#define GL_1PASS_SGIS 0x80A1 +#define GL_2PASS_0_SGIS 0x80A2 +#define GL_2PASS_1_SGIS 0x80A3 +#define GL_4PASS_0_SGIS 0x80A4 +#define GL_4PASS_1_SGIS 0x80A5 +#define GL_4PASS_2_SGIS 0x80A6 +#define GL_4PASS_3_SGIS 0x80A7 +#define GL_SAMPLE_BUFFERS_SGIS 0x80A8 +#define GL_SAMPLES_SGIS 0x80A9 +#define GL_SAMPLE_MASK_VALUE_SGIS 0x80AA +#define GL_SAMPLE_MASK_INVERT_SGIS 0x80AB +#define GL_SAMPLE_PATTERN_SGIS 0x80AC +typedef void (APIENTRYP PFNGLSAMPLEMASKSGISPROC) (GLclampf value, GLboolean invert); +typedef void (APIENTRYP PFNGLSAMPLEPATTERNSGISPROC) (GLenum pattern); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSampleMaskSGIS (GLclampf value, GLboolean invert); +GLAPI void APIENTRY glSamplePatternSGIS (GLenum pattern); +#endif +#endif /* GL_SGIS_multisample */ + +#ifndef GL_SGIS_pixel_texture +#define GL_SGIS_pixel_texture 1 +#define GL_PIXEL_TEXTURE_SGIS 0x8353 +#define GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS 0x8354 +#define GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS 0x8355 +#define GL_PIXEL_GROUP_COLOR_SGIS 0x8356 +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERISGISPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFSGISPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERIVSGISPROC) (GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETPIXELTEXGENPARAMETERFVSGISPROC) (GLenum pname, GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTexGenParameteriSGIS (GLenum pname, GLint param); +GLAPI void APIENTRY glPixelTexGenParameterivSGIS (GLenum pname, const GLint *params); +GLAPI void APIENTRY glPixelTexGenParameterfSGIS (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPixelTexGenParameterfvSGIS (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glGetPixelTexGenParameterivSGIS (GLenum pname, GLint *params); +GLAPI void APIENTRY glGetPixelTexGenParameterfvSGIS (GLenum pname, GLfloat *params); +#endif +#endif /* GL_SGIS_pixel_texture */ + +#ifndef GL_SGIS_point_line_texgen +#define GL_SGIS_point_line_texgen 1 +#define GL_EYE_DISTANCE_TO_POINT_SGIS 0x81F0 +#define GL_OBJECT_DISTANCE_TO_POINT_SGIS 0x81F1 +#define GL_EYE_DISTANCE_TO_LINE_SGIS 0x81F2 +#define GL_OBJECT_DISTANCE_TO_LINE_SGIS 0x81F3 +#define GL_EYE_POINT_SGIS 0x81F4 +#define GL_OBJECT_POINT_SGIS 0x81F5 +#define GL_EYE_LINE_SGIS 0x81F6 +#define GL_OBJECT_LINE_SGIS 0x81F7 +#endif /* GL_SGIS_point_line_texgen */ + +#ifndef GL_SGIS_point_parameters +#define GL_SGIS_point_parameters 1 +#define GL_POINT_SIZE_MIN_SGIS 0x8126 +#define GL_POINT_SIZE_MAX_SGIS 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_SGIS 0x8128 +#define GL_DISTANCE_ATTENUATION_SGIS 0x8129 +typedef void (APIENTRYP PFNGLPOINTPARAMETERFSGISPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVSGISPROC) (GLenum pname, const GLfloat *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPointParameterfSGIS (GLenum pname, GLfloat param); +GLAPI void APIENTRY glPointParameterfvSGIS (GLenum pname, const GLfloat *params); +#endif +#endif /* GL_SGIS_point_parameters */ + +#ifndef GL_SGIS_sharpen_texture +#define GL_SGIS_sharpen_texture 1 +#define GL_LINEAR_SHARPEN_SGIS 0x80AD +#define GL_LINEAR_SHARPEN_ALPHA_SGIS 0x80AE +#define GL_LINEAR_SHARPEN_COLOR_SGIS 0x80AF +#define GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS 0x80B0 +typedef void (APIENTRYP PFNGLSHARPENTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat *points); +typedef void (APIENTRYP PFNGLGETSHARPENTEXFUNCSGISPROC) (GLenum target, GLfloat *points); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSharpenTexFuncSGIS (GLenum target, GLsizei n, const GLfloat *points); +GLAPI void APIENTRY glGetSharpenTexFuncSGIS (GLenum target, GLfloat *points); +#endif +#endif /* GL_SGIS_sharpen_texture */ + +#ifndef GL_SGIS_texture4D +#define GL_SGIS_texture4D 1 +#define GL_PACK_SKIP_VOLUMES_SGIS 0x8130 +#define GL_PACK_IMAGE_DEPTH_SGIS 0x8131 +#define GL_UNPACK_SKIP_VOLUMES_SGIS 0x8132 +#define GL_UNPACK_IMAGE_DEPTH_SGIS 0x8133 +#define GL_TEXTURE_4D_SGIS 0x8134 +#define GL_PROXY_TEXTURE_4D_SGIS 0x8135 +#define GL_TEXTURE_4DSIZE_SGIS 0x8136 +#define GL_TEXTURE_WRAP_Q_SGIS 0x8137 +#define GL_MAX_4D_TEXTURE_SIZE_SGIS 0x8138 +#define GL_TEXTURE_4D_BINDING_SGIS 0x814F +typedef void (APIENTRYP PFNGLTEXIMAGE4DSGISPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXSUBIMAGE4DSGISPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const void *pixels); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexImage4DSGIS (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTexSubImage4DSGIS (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei size4d, GLenum format, GLenum type, const void *pixels); +#endif +#endif /* GL_SGIS_texture4D */ + +#ifndef GL_SGIS_texture_border_clamp +#define GL_SGIS_texture_border_clamp 1 +#define GL_CLAMP_TO_BORDER_SGIS 0x812D +#endif /* GL_SGIS_texture_border_clamp */ + +#ifndef GL_SGIS_texture_color_mask +#define GL_SGIS_texture_color_mask 1 +#define GL_TEXTURE_COLOR_WRITEMASK_SGIS 0x81EF +typedef void (APIENTRYP PFNGLTEXTURECOLORMASKSGISPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTextureColorMaskSGIS (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +#endif +#endif /* GL_SGIS_texture_color_mask */ + +#ifndef GL_SGIS_texture_edge_clamp +#define GL_SGIS_texture_edge_clamp 1 +#define GL_CLAMP_TO_EDGE_SGIS 0x812F +#endif /* GL_SGIS_texture_edge_clamp */ + +#ifndef GL_SGIS_texture_filter4 +#define GL_SGIS_texture_filter4 1 +#define GL_FILTER4_SGIS 0x8146 +#define GL_TEXTURE_FILTER4_SIZE_SGIS 0x8147 +typedef void (APIENTRYP PFNGLGETTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLfloat *weights); +typedef void (APIENTRYP PFNGLTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetTexFilterFuncSGIS (GLenum target, GLenum filter, GLfloat *weights); +GLAPI void APIENTRY glTexFilterFuncSGIS (GLenum target, GLenum filter, GLsizei n, const GLfloat *weights); +#endif +#endif /* GL_SGIS_texture_filter4 */ + +#ifndef GL_SGIS_texture_lod +#define GL_SGIS_texture_lod 1 +#define GL_TEXTURE_MIN_LOD_SGIS 0x813A +#define GL_TEXTURE_MAX_LOD_SGIS 0x813B +#define GL_TEXTURE_BASE_LEVEL_SGIS 0x813C +#define GL_TEXTURE_MAX_LEVEL_SGIS 0x813D +#endif /* GL_SGIS_texture_lod */ + +#ifndef GL_SGIS_texture_select +#define GL_SGIS_texture_select 1 +#define GL_DUAL_ALPHA4_SGIS 0x8110 +#define GL_DUAL_ALPHA8_SGIS 0x8111 +#define GL_DUAL_ALPHA12_SGIS 0x8112 +#define GL_DUAL_ALPHA16_SGIS 0x8113 +#define GL_DUAL_LUMINANCE4_SGIS 0x8114 +#define GL_DUAL_LUMINANCE8_SGIS 0x8115 +#define GL_DUAL_LUMINANCE12_SGIS 0x8116 +#define GL_DUAL_LUMINANCE16_SGIS 0x8117 +#define GL_DUAL_INTENSITY4_SGIS 0x8118 +#define GL_DUAL_INTENSITY8_SGIS 0x8119 +#define GL_DUAL_INTENSITY12_SGIS 0x811A +#define GL_DUAL_INTENSITY16_SGIS 0x811B +#define GL_DUAL_LUMINANCE_ALPHA4_SGIS 0x811C +#define GL_DUAL_LUMINANCE_ALPHA8_SGIS 0x811D +#define GL_QUAD_ALPHA4_SGIS 0x811E +#define GL_QUAD_ALPHA8_SGIS 0x811F +#define GL_QUAD_LUMINANCE4_SGIS 0x8120 +#define GL_QUAD_LUMINANCE8_SGIS 0x8121 +#define GL_QUAD_INTENSITY4_SGIS 0x8122 +#define GL_QUAD_INTENSITY8_SGIS 0x8123 +#define GL_DUAL_TEXTURE_SELECT_SGIS 0x8124 +#define GL_QUAD_TEXTURE_SELECT_SGIS 0x8125 +#endif /* GL_SGIS_texture_select */ + +#ifndef GL_SGIX_async +#define GL_SGIX_async 1 +#define GL_ASYNC_MARKER_SGIX 0x8329 +typedef void (APIENTRYP PFNGLASYNCMARKERSGIXPROC) (GLuint marker); +typedef GLint (APIENTRYP PFNGLFINISHASYNCSGIXPROC) (GLuint *markerp); +typedef GLint (APIENTRYP PFNGLPOLLASYNCSGIXPROC) (GLuint *markerp); +typedef GLuint (APIENTRYP PFNGLGENASYNCMARKERSSGIXPROC) (GLsizei range); +typedef void (APIENTRYP PFNGLDELETEASYNCMARKERSSGIXPROC) (GLuint marker, GLsizei range); +typedef GLboolean (APIENTRYP PFNGLISASYNCMARKERSGIXPROC) (GLuint marker); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAsyncMarkerSGIX (GLuint marker); +GLAPI GLint APIENTRY glFinishAsyncSGIX (GLuint *markerp); +GLAPI GLint APIENTRY glPollAsyncSGIX (GLuint *markerp); +GLAPI GLuint APIENTRY glGenAsyncMarkersSGIX (GLsizei range); +GLAPI void APIENTRY glDeleteAsyncMarkersSGIX (GLuint marker, GLsizei range); +GLAPI GLboolean APIENTRY glIsAsyncMarkerSGIX (GLuint marker); +#endif +#endif /* GL_SGIX_async */ + +#ifndef GL_SGIX_async_histogram +#define GL_SGIX_async_histogram 1 +#define GL_ASYNC_HISTOGRAM_SGIX 0x832C +#define GL_MAX_ASYNC_HISTOGRAM_SGIX 0x832D +#endif /* GL_SGIX_async_histogram */ + +#ifndef GL_SGIX_async_pixel +#define GL_SGIX_async_pixel 1 +#define GL_ASYNC_TEX_IMAGE_SGIX 0x835C +#define GL_ASYNC_DRAW_PIXELS_SGIX 0x835D +#define GL_ASYNC_READ_PIXELS_SGIX 0x835E +#define GL_MAX_ASYNC_TEX_IMAGE_SGIX 0x835F +#define GL_MAX_ASYNC_DRAW_PIXELS_SGIX 0x8360 +#define GL_MAX_ASYNC_READ_PIXELS_SGIX 0x8361 +#endif /* GL_SGIX_async_pixel */ + +#ifndef GL_SGIX_blend_alpha_minmax +#define GL_SGIX_blend_alpha_minmax 1 +#define GL_ALPHA_MIN_SGIX 0x8320 +#define GL_ALPHA_MAX_SGIX 0x8321 +#endif /* GL_SGIX_blend_alpha_minmax */ + +#ifndef GL_SGIX_calligraphic_fragment +#define GL_SGIX_calligraphic_fragment 1 +#define GL_CALLIGRAPHIC_FRAGMENT_SGIX 0x8183 +#endif /* GL_SGIX_calligraphic_fragment */ + +#ifndef GL_SGIX_clipmap +#define GL_SGIX_clipmap 1 +#define GL_LINEAR_CLIPMAP_LINEAR_SGIX 0x8170 +#define GL_TEXTURE_CLIPMAP_CENTER_SGIX 0x8171 +#define GL_TEXTURE_CLIPMAP_FRAME_SGIX 0x8172 +#define GL_TEXTURE_CLIPMAP_OFFSET_SGIX 0x8173 +#define GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8174 +#define GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX 0x8175 +#define GL_TEXTURE_CLIPMAP_DEPTH_SGIX 0x8176 +#define GL_MAX_CLIPMAP_DEPTH_SGIX 0x8177 +#define GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX 0x8178 +#define GL_NEAREST_CLIPMAP_NEAREST_SGIX 0x844D +#define GL_NEAREST_CLIPMAP_LINEAR_SGIX 0x844E +#define GL_LINEAR_CLIPMAP_NEAREST_SGIX 0x844F +#endif /* GL_SGIX_clipmap */ + +#ifndef GL_SGIX_convolution_accuracy +#define GL_SGIX_convolution_accuracy 1 +#define GL_CONVOLUTION_HINT_SGIX 0x8316 +#endif /* GL_SGIX_convolution_accuracy */ + +#ifndef GL_SGIX_depth_pass_instrument +#define GL_SGIX_depth_pass_instrument 1 +#endif /* GL_SGIX_depth_pass_instrument */ + +#ifndef GL_SGIX_depth_texture +#define GL_SGIX_depth_texture 1 +#define GL_DEPTH_COMPONENT16_SGIX 0x81A5 +#define GL_DEPTH_COMPONENT24_SGIX 0x81A6 +#define GL_DEPTH_COMPONENT32_SGIX 0x81A7 +#endif /* GL_SGIX_depth_texture */ + +#ifndef GL_SGIX_flush_raster +#define GL_SGIX_flush_raster 1 +typedef void (APIENTRYP PFNGLFLUSHRASTERSGIXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFlushRasterSGIX (void); +#endif +#endif /* GL_SGIX_flush_raster */ + +#ifndef GL_SGIX_fog_offset +#define GL_SGIX_fog_offset 1 +#define GL_FOG_OFFSET_SGIX 0x8198 +#define GL_FOG_OFFSET_VALUE_SGIX 0x8199 +#endif /* GL_SGIX_fog_offset */ + +#ifndef GL_SGIX_fragment_lighting +#define GL_SGIX_fragment_lighting 1 +#define GL_FRAGMENT_LIGHTING_SGIX 0x8400 +#define GL_FRAGMENT_COLOR_MATERIAL_SGIX 0x8401 +#define GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX 0x8402 +#define GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX 0x8403 +#define GL_MAX_FRAGMENT_LIGHTS_SGIX 0x8404 +#define GL_MAX_ACTIVE_LIGHTS_SGIX 0x8405 +#define GL_CURRENT_RASTER_NORMAL_SGIX 0x8406 +#define GL_LIGHT_ENV_MODE_SGIX 0x8407 +#define GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX 0x8408 +#define GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX 0x8409 +#define GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX 0x840A +#define GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX 0x840B +#define GL_FRAGMENT_LIGHT0_SGIX 0x840C +#define GL_FRAGMENT_LIGHT1_SGIX 0x840D +#define GL_FRAGMENT_LIGHT2_SGIX 0x840E +#define GL_FRAGMENT_LIGHT3_SGIX 0x840F +#define GL_FRAGMENT_LIGHT4_SGIX 0x8410 +#define GL_FRAGMENT_LIGHT5_SGIX 0x8411 +#define GL_FRAGMENT_LIGHT6_SGIX 0x8412 +#define GL_FRAGMENT_LIGHT7_SGIX 0x8413 +typedef void (APIENTRYP PFNGLFRAGMENTCOLORMATERIALSGIXPROC) (GLenum face, GLenum mode); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFSGIXPROC) (GLenum light, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTISGIXPROC) (GLenum light, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFSGIXPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELFVSGIXPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELISGIXPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTLIGHTMODELIVSGIXPROC) (GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFSGIXPROC) (GLenum face, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALISGIXPROC) (GLenum face, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLLIGHTENVISGIXPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFragmentColorMaterialSGIX (GLenum face, GLenum mode); +GLAPI void APIENTRY glFragmentLightfSGIX (GLenum light, GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentLightfvSGIX (GLenum light, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentLightiSGIX (GLenum light, GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentLightivSGIX (GLenum light, GLenum pname, const GLint *params); +GLAPI void APIENTRY glFragmentLightModelfSGIX (GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentLightModelfvSGIX (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentLightModeliSGIX (GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentLightModelivSGIX (GLenum pname, const GLint *params); +GLAPI void APIENTRY glFragmentMaterialfSGIX (GLenum face, GLenum pname, GLfloat param); +GLAPI void APIENTRY glFragmentMaterialfvSGIX (GLenum face, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glFragmentMaterialiSGIX (GLenum face, GLenum pname, GLint param); +GLAPI void APIENTRY glFragmentMaterialivSGIX (GLenum face, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetFragmentLightfvSGIX (GLenum light, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFragmentLightivSGIX (GLenum light, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetFragmentMaterialfvSGIX (GLenum face, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetFragmentMaterialivSGIX (GLenum face, GLenum pname, GLint *params); +GLAPI void APIENTRY glLightEnviSGIX (GLenum pname, GLint param); +#endif +#endif /* GL_SGIX_fragment_lighting */ + +#ifndef GL_SGIX_framezoom +#define GL_SGIX_framezoom 1 +#define GL_FRAMEZOOM_SGIX 0x818B +#define GL_FRAMEZOOM_FACTOR_SGIX 0x818C +#define GL_MAX_FRAMEZOOM_FACTOR_SGIX 0x818D +typedef void (APIENTRYP PFNGLFRAMEZOOMSGIXPROC) (GLint factor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFrameZoomSGIX (GLint factor); +#endif +#endif /* GL_SGIX_framezoom */ + +#ifndef GL_SGIX_igloo_interface +#define GL_SGIX_igloo_interface 1 +typedef void (APIENTRYP PFNGLIGLOOINTERFACESGIXPROC) (GLenum pname, const void *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glIglooInterfaceSGIX (GLenum pname, const void *params); +#endif +#endif /* GL_SGIX_igloo_interface */ + +#ifndef GL_SGIX_instruments +#define GL_SGIX_instruments 1 +#define GL_INSTRUMENT_BUFFER_POINTER_SGIX 0x8180 +#define GL_INSTRUMENT_MEASUREMENTS_SGIX 0x8181 +typedef GLint (APIENTRYP PFNGLGETINSTRUMENTSSGIXPROC) (void); +typedef void (APIENTRYP PFNGLINSTRUMENTSBUFFERSGIXPROC) (GLsizei size, GLint *buffer); +typedef GLint (APIENTRYP PFNGLPOLLINSTRUMENTSSGIXPROC) (GLint *marker_p); +typedef void (APIENTRYP PFNGLREADINSTRUMENTSSGIXPROC) (GLint marker); +typedef void (APIENTRYP PFNGLSTARTINSTRUMENTSSGIXPROC) (void); +typedef void (APIENTRYP PFNGLSTOPINSTRUMENTSSGIXPROC) (GLint marker); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLint APIENTRY glGetInstrumentsSGIX (void); +GLAPI void APIENTRY glInstrumentsBufferSGIX (GLsizei size, GLint *buffer); +GLAPI GLint APIENTRY glPollInstrumentsSGIX (GLint *marker_p); +GLAPI void APIENTRY glReadInstrumentsSGIX (GLint marker); +GLAPI void APIENTRY glStartInstrumentsSGIX (void); +GLAPI void APIENTRY glStopInstrumentsSGIX (GLint marker); +#endif +#endif /* GL_SGIX_instruments */ + +#ifndef GL_SGIX_interlace +#define GL_SGIX_interlace 1 +#define GL_INTERLACE_SGIX 0x8094 +#endif /* GL_SGIX_interlace */ + +#ifndef GL_SGIX_ir_instrument1 +#define GL_SGIX_ir_instrument1 1 +#define GL_IR_INSTRUMENT1_SGIX 0x817F +#endif /* GL_SGIX_ir_instrument1 */ + +#ifndef GL_SGIX_list_priority +#define GL_SGIX_list_priority 1 +#define GL_LIST_PRIORITY_SGIX 0x8182 +typedef void (APIENTRYP PFNGLGETLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLLISTPARAMETERFSGIXPROC) (GLuint list, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLLISTPARAMETERFVSGIXPROC) (GLuint list, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLLISTPARAMETERISGIXPROC) (GLuint list, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLLISTPARAMETERIVSGIXPROC) (GLuint list, GLenum pname, const GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetListParameterfvSGIX (GLuint list, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetListParameterivSGIX (GLuint list, GLenum pname, GLint *params); +GLAPI void APIENTRY glListParameterfSGIX (GLuint list, GLenum pname, GLfloat param); +GLAPI void APIENTRY glListParameterfvSGIX (GLuint list, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glListParameteriSGIX (GLuint list, GLenum pname, GLint param); +GLAPI void APIENTRY glListParameterivSGIX (GLuint list, GLenum pname, const GLint *params); +#endif +#endif /* GL_SGIX_list_priority */ + +#ifndef GL_SGIX_pixel_texture +#define GL_SGIX_pixel_texture 1 +#define GL_PIXEL_TEX_GEN_SGIX 0x8139 +#define GL_PIXEL_TEX_GEN_MODE_SGIX 0x832B +typedef void (APIENTRYP PFNGLPIXELTEXGENSGIXPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPixelTexGenSGIX (GLenum mode); +#endif +#endif /* GL_SGIX_pixel_texture */ + +#ifndef GL_SGIX_pixel_tiles +#define GL_SGIX_pixel_tiles 1 +#define GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX 0x813E +#define GL_PIXEL_TILE_CACHE_INCREMENT_SGIX 0x813F +#define GL_PIXEL_TILE_WIDTH_SGIX 0x8140 +#define GL_PIXEL_TILE_HEIGHT_SGIX 0x8141 +#define GL_PIXEL_TILE_GRID_WIDTH_SGIX 0x8142 +#define GL_PIXEL_TILE_GRID_HEIGHT_SGIX 0x8143 +#define GL_PIXEL_TILE_GRID_DEPTH_SGIX 0x8144 +#define GL_PIXEL_TILE_CACHE_SIZE_SGIX 0x8145 +#endif /* GL_SGIX_pixel_tiles */ + +#ifndef GL_SGIX_polynomial_ffd +#define GL_SGIX_polynomial_ffd 1 +#define GL_TEXTURE_DEFORMATION_BIT_SGIX 0x00000001 +#define GL_GEOMETRY_DEFORMATION_BIT_SGIX 0x00000002 +#define GL_GEOMETRY_DEFORMATION_SGIX 0x8194 +#define GL_TEXTURE_DEFORMATION_SGIX 0x8195 +#define GL_DEFORMATIONS_MASK_SGIX 0x8196 +#define GL_MAX_DEFORMATION_ORDER_SGIX 0x8197 +typedef void (APIENTRYP PFNGLDEFORMATIONMAP3DSGIXPROC) (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points); +typedef void (APIENTRYP PFNGLDEFORMATIONMAP3FSGIXPROC) (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points); +typedef void (APIENTRYP PFNGLDEFORMSGIXPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLLOADIDENTITYDEFORMATIONMAPSGIXPROC) (GLbitfield mask); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDeformationMap3dSGIX (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, GLdouble w1, GLdouble w2, GLint wstride, GLint worder, const GLdouble *points); +GLAPI void APIENTRY glDeformationMap3fSGIX (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, GLfloat w1, GLfloat w2, GLint wstride, GLint worder, const GLfloat *points); +GLAPI void APIENTRY glDeformSGIX (GLbitfield mask); +GLAPI void APIENTRY glLoadIdentityDeformationMapSGIX (GLbitfield mask); +#endif +#endif /* GL_SGIX_polynomial_ffd */ + +#ifndef GL_SGIX_reference_plane +#define GL_SGIX_reference_plane 1 +#define GL_REFERENCE_PLANE_SGIX 0x817D +#define GL_REFERENCE_PLANE_EQUATION_SGIX 0x817E +typedef void (APIENTRYP PFNGLREFERENCEPLANESGIXPROC) (const GLdouble *equation); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReferencePlaneSGIX (const GLdouble *equation); +#endif +#endif /* GL_SGIX_reference_plane */ + +#ifndef GL_SGIX_resample +#define GL_SGIX_resample 1 +#define GL_PACK_RESAMPLE_SGIX 0x842E +#define GL_UNPACK_RESAMPLE_SGIX 0x842F +#define GL_RESAMPLE_REPLICATE_SGIX 0x8433 +#define GL_RESAMPLE_ZERO_FILL_SGIX 0x8434 +#define GL_RESAMPLE_DECIMATE_SGIX 0x8430 +#endif /* GL_SGIX_resample */ + +#ifndef GL_SGIX_scalebias_hint +#define GL_SGIX_scalebias_hint 1 +#define GL_SCALEBIAS_HINT_SGIX 0x8322 +#endif /* GL_SGIX_scalebias_hint */ + +#ifndef GL_SGIX_shadow +#define GL_SGIX_shadow 1 +#define GL_TEXTURE_COMPARE_SGIX 0x819A +#define GL_TEXTURE_COMPARE_OPERATOR_SGIX 0x819B +#define GL_TEXTURE_LEQUAL_R_SGIX 0x819C +#define GL_TEXTURE_GEQUAL_R_SGIX 0x819D +#endif /* GL_SGIX_shadow */ + +#ifndef GL_SGIX_shadow_ambient +#define GL_SGIX_shadow_ambient 1 +#define GL_SHADOW_AMBIENT_SGIX 0x80BF +#endif /* GL_SGIX_shadow_ambient */ + +#ifndef GL_SGIX_sprite +#define GL_SGIX_sprite 1 +#define GL_SPRITE_SGIX 0x8148 +#define GL_SPRITE_MODE_SGIX 0x8149 +#define GL_SPRITE_AXIS_SGIX 0x814A +#define GL_SPRITE_TRANSLATION_SGIX 0x814B +#define GL_SPRITE_AXIAL_SGIX 0x814C +#define GL_SPRITE_OBJECT_ALIGNED_SGIX 0x814D +#define GL_SPRITE_EYE_ALIGNED_SGIX 0x814E +typedef void (APIENTRYP PFNGLSPRITEPARAMETERFSGIXPROC) (GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERFVSGIXPROC) (GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERISGIXPROC) (GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLSPRITEPARAMETERIVSGIXPROC) (GLenum pname, const GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpriteParameterfSGIX (GLenum pname, GLfloat param); +GLAPI void APIENTRY glSpriteParameterfvSGIX (GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glSpriteParameteriSGIX (GLenum pname, GLint param); +GLAPI void APIENTRY glSpriteParameterivSGIX (GLenum pname, const GLint *params); +#endif +#endif /* GL_SGIX_sprite */ + +#ifndef GL_SGIX_subsample +#define GL_SGIX_subsample 1 +#define GL_PACK_SUBSAMPLE_RATE_SGIX 0x85A0 +#define GL_UNPACK_SUBSAMPLE_RATE_SGIX 0x85A1 +#define GL_PIXEL_SUBSAMPLE_4444_SGIX 0x85A2 +#define GL_PIXEL_SUBSAMPLE_2424_SGIX 0x85A3 +#define GL_PIXEL_SUBSAMPLE_4242_SGIX 0x85A4 +#endif /* GL_SGIX_subsample */ + +#ifndef GL_SGIX_tag_sample_buffer +#define GL_SGIX_tag_sample_buffer 1 +typedef void (APIENTRYP PFNGLTAGSAMPLEBUFFERSGIXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTagSampleBufferSGIX (void); +#endif +#endif /* GL_SGIX_tag_sample_buffer */ + +#ifndef GL_SGIX_texture_add_env +#define GL_SGIX_texture_add_env 1 +#define GL_TEXTURE_ENV_BIAS_SGIX 0x80BE +#endif /* GL_SGIX_texture_add_env */ + +#ifndef GL_SGIX_texture_coordinate_clamp +#define GL_SGIX_texture_coordinate_clamp 1 +#define GL_TEXTURE_MAX_CLAMP_S_SGIX 0x8369 +#define GL_TEXTURE_MAX_CLAMP_T_SGIX 0x836A +#define GL_TEXTURE_MAX_CLAMP_R_SGIX 0x836B +#endif /* GL_SGIX_texture_coordinate_clamp */ + +#ifndef GL_SGIX_texture_lod_bias +#define GL_SGIX_texture_lod_bias 1 +#define GL_TEXTURE_LOD_BIAS_S_SGIX 0x818E +#define GL_TEXTURE_LOD_BIAS_T_SGIX 0x818F +#define GL_TEXTURE_LOD_BIAS_R_SGIX 0x8190 +#endif /* GL_SGIX_texture_lod_bias */ + +#ifndef GL_SGIX_texture_multi_buffer +#define GL_SGIX_texture_multi_buffer 1 +#define GL_TEXTURE_MULTI_BUFFER_HINT_SGIX 0x812E +#endif /* GL_SGIX_texture_multi_buffer */ + +#ifndef GL_SGIX_texture_scale_bias +#define GL_SGIX_texture_scale_bias 1 +#define GL_POST_TEXTURE_FILTER_BIAS_SGIX 0x8179 +#define GL_POST_TEXTURE_FILTER_SCALE_SGIX 0x817A +#define GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX 0x817B +#define GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX 0x817C +#endif /* GL_SGIX_texture_scale_bias */ + +#ifndef GL_SGIX_vertex_preclip +#define GL_SGIX_vertex_preclip 1 +#define GL_VERTEX_PRECLIP_SGIX 0x83EE +#define GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF +#endif /* GL_SGIX_vertex_preclip */ + +#ifndef GL_SGIX_ycrcb +#define GL_SGIX_ycrcb 1 +#define GL_YCRCB_422_SGIX 0x81BB +#define GL_YCRCB_444_SGIX 0x81BC +#endif /* GL_SGIX_ycrcb */ + +#ifndef GL_SGIX_ycrcb_subsample +#define GL_SGIX_ycrcb_subsample 1 +#endif /* GL_SGIX_ycrcb_subsample */ + +#ifndef GL_SGIX_ycrcba +#define GL_SGIX_ycrcba 1 +#define GL_YCRCB_SGIX 0x8318 +#define GL_YCRCBA_SGIX 0x8319 +#endif /* GL_SGIX_ycrcba */ + +#ifndef GL_SGI_color_matrix +#define GL_SGI_color_matrix 1 +#define GL_COLOR_MATRIX_SGI 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE_SGI 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS_SGI 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI 0x80BB +#endif /* GL_SGI_color_matrix */ + +#ifndef GL_SGI_color_table +#define GL_SGI_color_table 1 +#define GL_COLOR_TABLE_SGI 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D2 +#define GL_PROXY_COLOR_TABLE_SGI 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D5 +#define GL_COLOR_TABLE_SCALE_SGI 0x80D6 +#define GL_COLOR_TABLE_BIAS_SGI 0x80D7 +#define GL_COLOR_TABLE_FORMAT_SGI 0x80D8 +#define GL_COLOR_TABLE_WIDTH_SGI 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE_SGI 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE_SGI 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE_SGI 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE_SGI 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE_SGI 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE_SGI 0x80DF +typedef void (APIENTRYP PFNGLCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (APIENTRYP PFNGLCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLCOPYCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLGETCOLORTABLESGIPROC) (GLenum target, GLenum format, GLenum type, void *table); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColorTableSGI (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +GLAPI void APIENTRY glColorTableParameterfvSGI (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void APIENTRY glColorTableParameterivSGI (GLenum target, GLenum pname, const GLint *params); +GLAPI void APIENTRY glCopyColorTableSGI (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glGetColorTableSGI (GLenum target, GLenum format, GLenum type, void *table); +GLAPI void APIENTRY glGetColorTableParameterfvSGI (GLenum target, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetColorTableParameterivSGI (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_SGI_color_table */ + +#ifndef GL_SGI_texture_color_table +#define GL_SGI_texture_color_table 1 +#define GL_TEXTURE_COLOR_TABLE_SGI 0x80BC +#define GL_PROXY_TEXTURE_COLOR_TABLE_SGI 0x80BD +#endif /* GL_SGI_texture_color_table */ + +#ifndef GL_SUNX_constant_data +#define GL_SUNX_constant_data 1 +#define GL_UNPACK_CONSTANT_DATA_SUNX 0x81D5 +#define GL_TEXTURE_CONSTANT_DATA_SUNX 0x81D6 +typedef void (APIENTRYP PFNGLFINISHTEXTURESUNXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFinishTextureSUNX (void); +#endif +#endif /* GL_SUNX_constant_data */ + +#ifndef GL_SUN_convolution_border_modes +#define GL_SUN_convolution_border_modes 1 +#define GL_WRAP_BORDER_SUN 0x81D4 +#endif /* GL_SUN_convolution_border_modes */ + +#ifndef GL_SUN_global_alpha +#define GL_SUN_global_alpha 1 +#define GL_GLOBAL_ALPHA_SUN 0x81D9 +#define GL_GLOBAL_ALPHA_FACTOR_SUN 0x81DA +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORBSUNPROC) (GLbyte factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORSSUNPROC) (GLshort factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORISUNPROC) (GLint factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORFSUNPROC) (GLfloat factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORDSUNPROC) (GLdouble factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUBSUNPROC) (GLubyte factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUSSUNPROC) (GLushort factor); +typedef void (APIENTRYP PFNGLGLOBALALPHAFACTORUISUNPROC) (GLuint factor); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGlobalAlphaFactorbSUN (GLbyte factor); +GLAPI void APIENTRY glGlobalAlphaFactorsSUN (GLshort factor); +GLAPI void APIENTRY glGlobalAlphaFactoriSUN (GLint factor); +GLAPI void APIENTRY glGlobalAlphaFactorfSUN (GLfloat factor); +GLAPI void APIENTRY glGlobalAlphaFactordSUN (GLdouble factor); +GLAPI void APIENTRY glGlobalAlphaFactorubSUN (GLubyte factor); +GLAPI void APIENTRY glGlobalAlphaFactorusSUN (GLushort factor); +GLAPI void APIENTRY glGlobalAlphaFactoruiSUN (GLuint factor); +#endif +#endif /* GL_SUN_global_alpha */ + +#ifndef GL_SUN_mesh_array +#define GL_SUN_mesh_array 1 +#define GL_QUAD_MESH_SUN 0x8614 +#define GL_TRIANGLE_MESH_SUN 0x8615 +typedef void (APIENTRYP PFNGLDRAWMESHARRAYSSUNPROC) (GLenum mode, GLint first, GLsizei count, GLsizei width); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawMeshArraysSUN (GLenum mode, GLint first, GLsizei count, GLsizei width); +#endif +#endif /* GL_SUN_mesh_array */ + +#ifndef GL_SUN_slice_accum +#define GL_SUN_slice_accum 1 +#define GL_SLICE_ACCUM_SUN 0x85CC +#endif /* GL_SUN_slice_accum */ + +#ifndef GL_SUN_triangle_list +#define GL_SUN_triangle_list 1 +#define GL_RESTART_SUN 0x0001 +#define GL_REPLACE_MIDDLE_SUN 0x0002 +#define GL_REPLACE_OLDEST_SUN 0x0003 +#define GL_TRIANGLE_LIST_SUN 0x81D7 +#define GL_REPLACEMENT_CODE_SUN 0x81D8 +#define GL_REPLACEMENT_CODE_ARRAY_SUN 0x85C0 +#define GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN 0x85C1 +#define GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN 0x85C2 +#define GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN 0x85C3 +#define GL_R1UI_V3F_SUN 0x85C4 +#define GL_R1UI_C4UB_V3F_SUN 0x85C5 +#define GL_R1UI_C3F_V3F_SUN 0x85C6 +#define GL_R1UI_N3F_V3F_SUN 0x85C7 +#define GL_R1UI_C4F_N3F_V3F_SUN 0x85C8 +#define GL_R1UI_T2F_V3F_SUN 0x85C9 +#define GL_R1UI_T2F_N3F_V3F_SUN 0x85CA +#define GL_R1UI_T2F_C4F_N3F_V3F_SUN 0x85CB +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUISUNPROC) (GLuint code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSSUNPROC) (GLushort code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBSUNPROC) (GLubyte code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVSUNPROC) (const GLuint *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUSVSUNPROC) (const GLushort *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUBVSUNPROC) (const GLubyte *code); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEPOINTERSUNPROC) (GLenum type, GLsizei stride, const void **pointer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glReplacementCodeuiSUN (GLuint code); +GLAPI void APIENTRY glReplacementCodeusSUN (GLushort code); +GLAPI void APIENTRY glReplacementCodeubSUN (GLubyte code); +GLAPI void APIENTRY glReplacementCodeuivSUN (const GLuint *code); +GLAPI void APIENTRY glReplacementCodeusvSUN (const GLushort *code); +GLAPI void APIENTRY glReplacementCodeubvSUN (const GLubyte *code); +GLAPI void APIENTRY glReplacementCodePointerSUN (GLenum type, GLsizei stride, const void **pointer); +#endif +#endif /* GL_SUN_triangle_list */ + +#ifndef GL_SUN_vertex +#define GL_SUN_vertex 1 +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX2FVSUNPROC) (const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR4UBVERTEX3FVSUNPROC) (const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FSUNPROC) (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLTEXCOORD4FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4UBVERTEX3FVSUNPROC) (const GLfloat *tc, const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRYP PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FVSUNPROC) (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FSUNPROC) (GLuint rc, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUIVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FSUNPROC) (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FVSUNPROC) (const GLuint *rc, const GLubyte *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (APIENTRYP PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glColor4ubVertex2fSUN (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y); +GLAPI void APIENTRY glColor4ubVertex2fvSUN (const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glColor4ubVertex3fSUN (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor4ubVertex3fvSUN (const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glColor3fVertex3fSUN (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor3fVertex3fvSUN (const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glNormal3fVertex3fSUN (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glNormal3fVertex3fvSUN (const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glColor4fNormal3fVertex3fSUN (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glColor4fNormal3fVertex3fvSUN (const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fVertex3fSUN (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fVertex3fvSUN (const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glTexCoord4fVertex4fSUN (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glTexCoord4fVertex4fvSUN (const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fSUN (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor4ubVertex3fvSUN (const GLfloat *tc, const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fSUN (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glTexCoord2fColor4fNormal3fVertex3fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fSUN (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void APIENTRY glTexCoord4fColor4fNormal3fVertex4fvSUN (const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiVertex3fSUN (GLuint rc, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiVertex3fvSUN (const GLuint *rc, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fSUN (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor4ubVertex3fvSUN (const GLuint *rc, const GLubyte *c, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fSUN (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor3fVertex3fvSUN (const GLuint *rc, const GLfloat *c, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fSUN (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fSUN (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiColor4fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +GLAPI void APIENTRY glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (const GLuint *rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +#endif +#endif /* GL_SUN_vertex */ + +#ifndef GL_WIN_phong_shading +#define GL_WIN_phong_shading 1 +#define GL_PHONG_WIN 0x80EA +#define GL_PHONG_HINT_WIN 0x80EB +#endif /* GL_WIN_phong_shading */ + +#ifndef GL_WIN_specular_fog +#define GL_WIN_specular_fog 1 +#define GL_FOG_SPECULAR_TEXTURE_WIN 0x80EC +#endif /* GL_WIN_specular_fog */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles.h new file mode 100644 index 0000000..4fb9a4b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles.h @@ -0,0 +1,38 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the OpenGL ES 1.X API headers. + */ + +#include + +#ifdef SDL_PLATFORM_IOS +#include +#include +#else +#include +#include +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2.h new file mode 100644 index 0000000..365898a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2.h @@ -0,0 +1,51 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* + * This is a simple file to encapsulate the OpenGL ES 2.0 API headers. + */ + +#include + +#if !defined(_MSC_VER) && !defined(SDL_USE_BUILTIN_OPENGL_DEFINITIONS) + +#ifdef SDL_PLATFORM_IOS +#include +#include +#else +#include +#include +#include +#endif + +#else /* _MSC_VER */ + +/* OpenGL ES2 headers for Visual Studio */ +#include +#include +#include +#include + +#endif /* _MSC_VER */ + +#ifndef APIENTRY +#define APIENTRY GL_APIENTRY +#endif diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_gl2.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_gl2.h new file mode 100644 index 0000000..d13622a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_gl2.h @@ -0,0 +1,656 @@ +#ifndef __gles2_gl2_h_ +#define __gles2_gl2_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +/*#include */ + +#ifndef GL_APIENTRYP +#define GL_APIENTRYP GL_APIENTRY* +#endif + +#ifndef GL_GLES_PROTOTYPES +#define GL_GLES_PROTOTYPES 1 +#endif + +/* Generated on date 20220530 */ + +/* Generated C header for: + * API: gles2 + * Profile: common + * Versions considered: 2\.[0-9] + * Versions emitted: .* + * Default extensions included: None + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_ES_VERSION_2_0 +#define GL_ES_VERSION_2_0 1 +/*#include */ +typedef khronos_int8_t GLbyte; +typedef khronos_float_t GLclampf; +typedef khronos_int32_t GLfixed; +typedef khronos_int16_t GLshort; +typedef khronos_uint16_t GLushort; +typedef void GLvoid; +typedef struct __GLsync *GLsync; +typedef khronos_int64_t GLint64; +typedef khronos_uint64_t GLuint64; +typedef unsigned int GLenum; +typedef unsigned int GLuint; +typedef char GLchar; +typedef khronos_float_t GLfloat; +typedef khronos_ssize_t GLsizeiptr; +typedef khronos_intptr_t GLintptr; +typedef unsigned int GLbitfield; +typedef int GLint; +typedef unsigned char GLboolean; +typedef int GLsizei; +typedef khronos_uint8_t GLubyte; +#define GL_DEPTH_BUFFER_BIT 0x00000100 +#define GL_STENCIL_BUFFER_BIT 0x00000400 +#define GL_COLOR_BUFFER_BIT 0x00004000 +#define GL_FALSE 0 +#define GL_TRUE 1 +#define GL_POINTS 0x0000 +#define GL_LINES 0x0001 +#define GL_LINE_LOOP 0x0002 +#define GL_LINE_STRIP 0x0003 +#define GL_TRIANGLES 0x0004 +#define GL_TRIANGLE_STRIP 0x0005 +#define GL_TRIANGLE_FAN 0x0006 +#define GL_ZERO 0 +#define GL_ONE 1 +#define GL_SRC_COLOR 0x0300 +#define GL_ONE_MINUS_SRC_COLOR 0x0301 +#define GL_SRC_ALPHA 0x0302 +#define GL_ONE_MINUS_SRC_ALPHA 0x0303 +#define GL_DST_ALPHA 0x0304 +#define GL_ONE_MINUS_DST_ALPHA 0x0305 +#define GL_DST_COLOR 0x0306 +#define GL_ONE_MINUS_DST_COLOR 0x0307 +#define GL_SRC_ALPHA_SATURATE 0x0308 +#define GL_FUNC_ADD 0x8006 +#define GL_BLEND_EQUATION 0x8009 +#define GL_BLEND_EQUATION_RGB 0x8009 +#define GL_BLEND_EQUATION_ALPHA 0x883D +#define GL_FUNC_SUBTRACT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_BLEND_DST_RGB 0x80C8 +#define GL_BLEND_SRC_RGB 0x80C9 +#define GL_BLEND_DST_ALPHA 0x80CA +#define GL_BLEND_SRC_ALPHA 0x80CB +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_BLEND_COLOR 0x8005 +#define GL_ARRAY_BUFFER 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER 0x8893 +#define GL_ARRAY_BUFFER_BINDING 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 +#define GL_STREAM_DRAW 0x88E0 +#define GL_STATIC_DRAW 0x88E4 +#define GL_DYNAMIC_DRAW 0x88E8 +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_FRONT_AND_BACK 0x0408 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_CULL_FACE 0x0B44 +#define GL_BLEND 0x0BE2 +#define GL_DITHER 0x0BD0 +#define GL_STENCIL_TEST 0x0B90 +#define GL_DEPTH_TEST 0x0B71 +#define GL_SCISSOR_TEST 0x0C11 +#define GL_POLYGON_OFFSET_FILL 0x8037 +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_NO_ERROR 0 +#define GL_INVALID_ENUM 0x0500 +#define GL_INVALID_VALUE 0x0501 +#define GL_INVALID_OPERATION 0x0502 +#define GL_OUT_OF_MEMORY 0x0505 +#define GL_CW 0x0900 +#define GL_CCW 0x0901 +#define GL_LINE_WIDTH 0x0B21 +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#define GL_STENCIL_FAIL 0x0B94 +#define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 +#define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 +#define GL_STENCIL_REF 0x0B97 +#define GL_STENCIL_VALUE_MASK 0x0B93 +#define GL_STENCIL_WRITEMASK 0x0B98 +#define GL_STENCIL_BACK_FUNC 0x8800 +#define GL_STENCIL_BACK_FAIL 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 +#define GL_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 +#define GL_VIEWPORT 0x0BA2 +#define GL_SCISSOR_BOX 0x0C10 +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_SUBPIXEL_BITS 0x0D50 +#define GL_RED_BITS 0x0D52 +#define GL_GREEN_BITS 0x0D53 +#define GL_BLUE_BITS 0x0D54 +#define GL_ALPHA_BITS 0x0D55 +#define GL_DEPTH_BITS 0x0D56 +#define GL_STENCIL_BITS 0x0D57 +#define GL_POLYGON_OFFSET_UNITS 0x2A00 +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_TEXTURE_BINDING_2D 0x8069 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 +#define GL_GENERATE_MIPMAP_HINT 0x8192 +#define GL_BYTE 0x1400 +#define GL_UNSIGNED_BYTE 0x1401 +#define GL_SHORT 0x1402 +#define GL_UNSIGNED_SHORT 0x1403 +#define GL_INT 0x1404 +#define GL_UNSIGNED_INT 0x1405 +#define GL_FLOAT 0x1406 +#define GL_FIXED 0x140C +#define GL_DEPTH_COMPONENT 0x1902 +#define GL_ALPHA 0x1906 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 +#define GL_LUMINANCE 0x1909 +#define GL_LUMINANCE_ALPHA 0x190A +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB +#define GL_MAX_VARYING_VECTORS 0x8DFC +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD +#define GL_SHADER_TYPE 0x8B4F +#define GL_DELETE_STATUS 0x8B80 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D +#define GL_NEVER 0x0200 +#define GL_LESS 0x0201 +#define GL_EQUAL 0x0202 +#define GL_LEQUAL 0x0203 +#define GL_GREATER 0x0204 +#define GL_NOTEQUAL 0x0205 +#define GL_GEQUAL 0x0206 +#define GL_ALWAYS 0x0207 +#define GL_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 +#define GL_INVERT 0x150A +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 +#define GL_VENDOR 0x1F00 +#define GL_RENDERER 0x1F01 +#define GL_VERSION 0x1F02 +#define GL_EXTENSIONS 0x1F03 +#define GL_NEAREST 0x2600 +#define GL_LINEAR 0x2601 +#define GL_NEAREST_MIPMAP_NEAREST 0x2700 +#define GL_LINEAR_MIPMAP_NEAREST 0x2701 +#define GL_NEAREST_MIPMAP_LINEAR 0x2702 +#define GL_LINEAR_MIPMAP_LINEAR 0x2703 +#define GL_TEXTURE_MAG_FILTER 0x2800 +#define GL_TEXTURE_MIN_FILTER 0x2801 +#define GL_TEXTURE_WRAP_S 0x2802 +#define GL_TEXTURE_WRAP_T 0x2803 +#define GL_TEXTURE 0x1702 +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_REPEAT 0x2901 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_MIRRORED_REPEAT 0x8370 +#define GL_FLOAT_VEC2 0x8B50 +#define GL_FLOAT_VEC3 0x8B51 +#define GL_FLOAT_VEC4 0x8B52 +#define GL_INT_VEC2 0x8B53 +#define GL_INT_VEC3 0x8B54 +#define GL_INT_VEC4 0x8B55 +#define GL_BOOL 0x8B56 +#define GL_BOOL_VEC2 0x8B57 +#define GL_BOOL_VEC3 0x8B58 +#define GL_BOOL_VEC4 0x8B59 +#define GL_FLOAT_MAT2 0x8B5A +#define GL_FLOAT_MAT3 0x8B5B +#define GL_FLOAT_MAT4 0x8B5C +#define GL_SAMPLER_2D 0x8B5E +#define GL_SAMPLER_CUBE 0x8B60 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F +#define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B +#define GL_COMPILE_STATUS 0x8B81 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_SHADER_COMPILER 0x8DFA +#define GL_SHADER_BINARY_FORMATS 0x8DF8 +#define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 +#define GL_LOW_FLOAT 0x8DF0 +#define GL_MEDIUM_FLOAT 0x8DF1 +#define GL_HIGH_FLOAT 0x8DF2 +#define GL_LOW_INT 0x8DF3 +#define GL_MEDIUM_INT 0x8DF4 +#define GL_HIGH_INT 0x8DF5 +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGB565 0x8D62 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_STENCIL_INDEX8 0x8D48 +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#define GL_RENDERBUFFER_RED_SIZE 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 +#define GL_COLOR_ATTACHMENT0 0x8CE0 +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 +#define GL_NONE 0 +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS 0x8CD9 +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 +typedef void (GL_APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (GL_APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (GL_APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer); +typedef void (GL_APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer); +typedef void (GL_APIENTRYP PFNGLBINDTEXTUREPROC) (GLenum target, GLuint texture); +typedef void (GL_APIENTRYP PFNGLBLENDCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCPROC) (GLenum sfactor, GLenum dfactor); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +typedef void (GL_APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +typedef void (GL_APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +typedef GLenum (GL_APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLCLEARPROC) (GLbitfield mask); +typedef void (GL_APIENTRYP PFNGLCLEARCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (GL_APIENTRYP PFNGLCLEARDEPTHFPROC) (GLfloat d); +typedef void (GL_APIENTRYP PFNGLCLEARSTENCILPROC) (GLint s); +typedef void (GL_APIENTRYP PFNGLCOLORMASKPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +typedef void (GL_APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOPYTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (GL_APIENTRYP PFNGLCOPYTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef GLuint (GL_APIENTRYP PFNGLCREATEPROGRAMPROC) (void); +typedef GLuint (GL_APIENTRYP PFNGLCREATESHADERPROC) (GLenum type); +typedef void (GL_APIENTRYP PFNGLCULLFACEPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers); +typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLDELETERENDERBUFFERSPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (GL_APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader); +typedef void (GL_APIENTRYP PFNGLDELETETEXTURESPROC) (GLsizei n, const GLuint *textures); +typedef void (GL_APIENTRYP PFNGLDEPTHFUNCPROC) (GLenum func); +typedef void (GL_APIENTRYP PFNGLDEPTHMASKPROC) (GLboolean flag); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEFPROC) (GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (GL_APIENTRYP PFNGLDISABLEPROC) (GLenum cap); +typedef void (GL_APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices); +typedef void (GL_APIENTRYP PFNGLENABLEPROC) (GLenum cap); +typedef void (GL_APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (GL_APIENTRYP PFNGLFINISHPROC) (void); +typedef void (GL_APIENTRYP PFNGLFLUSHPROC) (void); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (GL_APIENTRYP PFNGLFRONTFACEPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef void (GL_APIENTRYP PFNGLGENERATEMIPMAPPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef void (GL_APIENTRYP PFNGLGENRENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (GL_APIENTRYP PFNGLGENTEXTURESPROC) (GLsizei n, GLuint *textures); +typedef void (GL_APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +typedef GLint (GL_APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETBOOLEANVPROC) (GLenum pname, GLboolean *data); +typedef void (GL_APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLenum (GL_APIENTRYP PFNGLGETERRORPROC) (void); +typedef void (GL_APIENTRYP PFNGLGETFLOATVPROC) (GLenum pname, GLfloat *data); +typedef void (GL_APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETINTEGERVPROC) (GLenum pname, GLint *data); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +typedef void (GL_APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +typedef const GLubyte *(GL_APIENTRYP PFNGLGETSTRINGPROC) (GLenum name); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params); +typedef GLint (GL_APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer); +typedef void (GL_APIENTRYP PFNGLHINTPROC) (GLenum target, GLenum mode); +typedef GLboolean (GL_APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDPROC) (GLenum cap); +typedef GLboolean (GL_APIENTRYP PFNGLISFRAMEBUFFERPROC) (GLuint framebuffer); +typedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPROC) (GLuint program); +typedef GLboolean (GL_APIENTRYP PFNGLISRENDERBUFFERPROC) (GLuint renderbuffer); +typedef GLboolean (GL_APIENTRYP PFNGLISSHADERPROC) (GLuint shader); +typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREPROC) (GLuint texture); +typedef void (GL_APIENTRYP PFNGLLINEWIDTHPROC) (GLfloat width); +typedef void (GL_APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLPIXELSTOREIPROC) (GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLPOLYGONOFFSETPROC) (GLfloat factor, GLfloat units); +typedef void (GL_APIENTRYP PFNGLREADPIXELSPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +typedef void (GL_APIENTRYP PFNGLRELEASESHADERCOMPILERPROC) (void); +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLfloat value, GLboolean invert); +typedef void (GL_APIENTRYP PFNGLSCISSORPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (GL_APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +typedef void (GL_APIENTRYP PFNGLSTENCILFUNCPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum face, GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILMASKPROC) (GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILOPPROC) (GLenum fail, GLenum zfail, GLenum zpass); +typedef void (GL_APIENTRYP PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (GL_APIENTRYP PFNGLTEXIMAGE2DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0); +typedef void (GL_APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0); +typedef void (GL_APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (GL_APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1); +typedef void (GL_APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (GL_APIENTRYP PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (GL_APIENTRYP PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (GL_APIENTRYP PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GL_APIENTRYP PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +typedef void (GL_APIENTRYP PFNGLVIEWPORTPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +#if GL_GLES_PROTOTYPES +GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture); +GL_APICALL void GL_APIENTRY glAttachShader (GLuint program, GLuint shader); +GL_APICALL void GL_APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar *name); +GL_APICALL void GL_APIENTRY glBindBuffer (GLenum target, GLuint buffer); +GL_APICALL void GL_APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer); +GL_APICALL void GL_APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer); +GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture); +GL_APICALL void GL_APIENTRY glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GL_APICALL void GL_APIENTRY glBlendEquation (GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunc (GLenum sfactor, GLenum dfactor); +GL_APICALL void GL_APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +GL_APICALL void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +GL_APICALL void GL_APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +GL_APICALL GLenum GL_APIENTRY glCheckFramebufferStatus (GLenum target); +GL_APICALL void GL_APIENTRY glClear (GLbitfield mask); +GL_APICALL void GL_APIENTRY glClearColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GL_APICALL void GL_APIENTRY glClearDepthf (GLfloat d); +GL_APICALL void GL_APIENTRY glClearStencil (GLint s); +GL_APICALL void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +GL_APICALL void GL_APIENTRY glCompileShader (GLuint shader); +GL_APICALL void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GL_APICALL void GL_APIENTRY glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL GLuint GL_APIENTRY glCreateProgram (void); +GL_APICALL GLuint GL_APIENTRY glCreateShader (GLenum type); +GL_APICALL void GL_APIENTRY glCullFace (GLenum mode); +GL_APICALL void GL_APIENTRY glDeleteBuffers (GLsizei n, const GLuint *buffers); +GL_APICALL void GL_APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); +GL_APICALL void GL_APIENTRY glDeleteProgram (GLuint program); +GL_APICALL void GL_APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint *renderbuffers); +GL_APICALL void GL_APIENTRY glDeleteShader (GLuint shader); +GL_APICALL void GL_APIENTRY glDeleteTextures (GLsizei n, const GLuint *textures); +GL_APICALL void GL_APIENTRY glDepthFunc (GLenum func); +GL_APICALL void GL_APIENTRY glDepthMask (GLboolean flag); +GL_APICALL void GL_APIENTRY glDepthRangef (GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glDetachShader (GLuint program, GLuint shader); +GL_APICALL void GL_APIENTRY glDisable (GLenum cap); +GL_APICALL void GL_APIENTRY glDisableVertexAttribArray (GLuint index); +GL_APICALL void GL_APIENTRY glDrawArrays (GLenum mode, GLint first, GLsizei count); +GL_APICALL void GL_APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const void *indices); +GL_APICALL void GL_APIENTRY glEnable (GLenum cap); +GL_APICALL void GL_APIENTRY glEnableVertexAttribArray (GLuint index); +GL_APICALL void GL_APIENTRY glFinish (void); +GL_APICALL void GL_APIENTRY glFlush (void); +GL_APICALL void GL_APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GL_APICALL void GL_APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GL_APICALL void GL_APIENTRY glFrontFace (GLenum mode); +GL_APICALL void GL_APIENTRY glGenBuffers (GLsizei n, GLuint *buffers); +GL_APICALL void GL_APIENTRY glGenerateMipmap (GLenum target); +GL_APICALL void GL_APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers); +GL_APICALL void GL_APIENTRY glGenRenderbuffers (GLsizei n, GLuint *renderbuffers); +GL_APICALL void GL_APIENTRY glGenTextures (GLsizei n, GLuint *textures); +GL_APICALL void GL_APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GL_APICALL void GL_APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GL_APICALL void GL_APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +GL_APICALL GLint GL_APIENTRY glGetAttribLocation (GLuint program, const GLchar *name); +GL_APICALL void GL_APIENTRY glGetBooleanv (GLenum pname, GLboolean *data); +GL_APICALL void GL_APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL GLenum GL_APIENTRY glGetError (void); +GL_APICALL void GL_APIENTRY glGetFloatv (GLenum pname, GLfloat *data); +GL_APICALL void GL_APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetIntegerv (GLenum pname, GLint *data); +GL_APICALL void GL_APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +GL_APICALL void GL_APIENTRY glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +GL_APICALL const GLubyte *GL_APIENTRY glGetString (GLenum name); +GL_APICALL void GL_APIENTRY glGetTexParameterfv (GLenum target, GLenum pname, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetTexParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetUniformiv (GLuint program, GLint location, GLint *params); +GL_APICALL GLint GL_APIENTRY glGetUniformLocation (GLuint program, const GLchar *name); +GL_APICALL void GL_APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer); +GL_APICALL void GL_APIENTRY glHint (GLenum target, GLenum mode); +GL_APICALL GLboolean GL_APIENTRY glIsBuffer (GLuint buffer); +GL_APICALL GLboolean GL_APIENTRY glIsEnabled (GLenum cap); +GL_APICALL GLboolean GL_APIENTRY glIsFramebuffer (GLuint framebuffer); +GL_APICALL GLboolean GL_APIENTRY glIsProgram (GLuint program); +GL_APICALL GLboolean GL_APIENTRY glIsRenderbuffer (GLuint renderbuffer); +GL_APICALL GLboolean GL_APIENTRY glIsShader (GLuint shader); +GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture); +GL_APICALL void GL_APIENTRY glLineWidth (GLfloat width); +GL_APICALL void GL_APIENTRY glLinkProgram (GLuint program); +GL_APICALL void GL_APIENTRY glPixelStorei (GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glPolygonOffset (GLfloat factor, GLfloat units); +GL_APICALL void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +GL_APICALL void GL_APIENTRY glReleaseShaderCompiler (void); +GL_APICALL void GL_APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glSampleCoverage (GLfloat value, GLboolean invert); +GL_APICALL void GL_APIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +GL_APICALL void GL_APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +GL_APICALL void GL_APIENTRY glStencilFunc (GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilMask (GLuint mask); +GL_APICALL void GL_APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilOp (GLenum fail, GLenum zfail, GLenum zpass); +GL_APICALL void GL_APIENTRY glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GL_APICALL void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glTexParameterf (GLenum target, GLenum pname, GLfloat param); +GL_APICALL void GL_APIENTRY glTexParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GL_APICALL void GL_APIENTRY glTexParameteri (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glTexParameteriv (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glUniform1f (GLint location, GLfloat v0); +GL_APICALL void GL_APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform1i (GLint location, GLint v0); +GL_APICALL void GL_APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform2f (GLint location, GLfloat v0, GLfloat v1); +GL_APICALL void GL_APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform2i (GLint location, GLint v0, GLint v1); +GL_APICALL void GL_APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GL_APICALL void GL_APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform3i (GLint location, GLint v0, GLint v1, GLint v2); +GL_APICALL void GL_APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GL_APICALL void GL_APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GL_APICALL void GL_APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUseProgram (GLuint program); +GL_APICALL void GL_APIENTRY glValidateProgram (GLuint program); +GL_APICALL void GL_APIENTRY glVertexAttrib1f (GLuint index, GLfloat x); +GL_APICALL void GL_APIENTRY glVertexAttrib1fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y); +GL_APICALL void GL_APIENTRY glVertexAttrib2fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glVertexAttrib3fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GL_APICALL void GL_APIENTRY glVertexAttrib4fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +GL_APICALL void GL_APIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height); +#endif +#endif /* GL_ES_VERSION_2_0 */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_gl2ext.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_gl2ext.h new file mode 100644 index 0000000..9448ce0 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_gl2ext.h @@ -0,0 +1,4033 @@ +#ifndef __gles2_gl2ext_h_ +#define __gles2_gl2ext_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +#ifndef GL_APIENTRYP +#define GL_APIENTRYP GL_APIENTRY* +#endif + +/* Generated on date 20220530 */ + +/* Generated C header for: + * API: gles2 + * Profile: common + * Versions considered: 2\.[0-9] + * Versions emitted: _nomatch_^ + * Default extensions included: gles2 + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_KHR_blend_equation_advanced +#define GL_KHR_blend_equation_advanced 1 +#define GL_MULTIPLY_KHR 0x9294 +#define GL_SCREEN_KHR 0x9295 +#define GL_OVERLAY_KHR 0x9296 +#define GL_DARKEN_KHR 0x9297 +#define GL_LIGHTEN_KHR 0x9298 +#define GL_COLORDODGE_KHR 0x9299 +#define GL_COLORBURN_KHR 0x929A +#define GL_HARDLIGHT_KHR 0x929B +#define GL_SOFTLIGHT_KHR 0x929C +#define GL_DIFFERENCE_KHR 0x929E +#define GL_EXCLUSION_KHR 0x92A0 +#define GL_HSL_HUE_KHR 0x92AD +#define GL_HSL_SATURATION_KHR 0x92AE +#define GL_HSL_COLOR_KHR 0x92AF +#define GL_HSL_LUMINOSITY_KHR 0x92B0 +typedef void (GL_APIENTRYP PFNGLBLENDBARRIERKHRPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlendBarrierKHR (void); +#endif +#endif /* GL_KHR_blend_equation_advanced */ + +#ifndef GL_KHR_blend_equation_advanced_coherent +#define GL_KHR_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_KHR 0x9285 +#endif /* GL_KHR_blend_equation_advanced_coherent */ + +#ifndef GL_KHR_context_flush_control +#define GL_KHR_context_flush_control 1 +#define GL_CONTEXT_RELEASE_BEHAVIOR_KHR 0x82FB +#define GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_KHR 0x82FC +#endif /* GL_KHR_context_flush_control */ + +#ifndef GL_KHR_debug +#define GL_KHR_debug 1 +typedef void (GL_APIENTRY *GLDEBUGPROCKHR)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +#define GL_SAMPLER 0x82E6 +#define GL_DEBUG_OUTPUT_SYNCHRONOUS_KHR 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_KHR 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION_KHR 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM_KHR 0x8245 +#define GL_DEBUG_SOURCE_API_KHR 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_KHR 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER_KHR 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY_KHR 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION_KHR 0x824A +#define GL_DEBUG_SOURCE_OTHER_KHR 0x824B +#define GL_DEBUG_TYPE_ERROR_KHR 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_KHR 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_KHR 0x824E +#define GL_DEBUG_TYPE_PORTABILITY_KHR 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE_KHR 0x8250 +#define GL_DEBUG_TYPE_OTHER_KHR 0x8251 +#define GL_DEBUG_TYPE_MARKER_KHR 0x8268 +#define GL_DEBUG_TYPE_PUSH_GROUP_KHR 0x8269 +#define GL_DEBUG_TYPE_POP_GROUP_KHR 0x826A +#define GL_DEBUG_SEVERITY_NOTIFICATION_KHR 0x826B +#define GL_MAX_DEBUG_GROUP_STACK_DEPTH_KHR 0x826C +#define GL_DEBUG_GROUP_STACK_DEPTH_KHR 0x826D +#define GL_BUFFER_KHR 0x82E0 +#define GL_SHADER_KHR 0x82E1 +#define GL_PROGRAM_KHR 0x82E2 +#define GL_VERTEX_ARRAY_KHR 0x8074 +#define GL_QUERY_KHR 0x82E3 +#define GL_PROGRAM_PIPELINE_KHR 0x82E4 +#define GL_SAMPLER_KHR 0x82E6 +#define GL_MAX_LABEL_LENGTH_KHR 0x82E8 +#define GL_MAX_DEBUG_MESSAGE_LENGTH_KHR 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_KHR 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_KHR 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_KHR 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_KHR 0x9147 +#define GL_DEBUG_SEVERITY_LOW_KHR 0x9148 +#define GL_DEBUG_OUTPUT_KHR 0x92E0 +#define GL_CONTEXT_FLAG_DEBUG_BIT_KHR 0x00000002 +#define GL_STACK_OVERFLOW_KHR 0x0503 +#define GL_STACK_UNDERFLOW_KHR 0x0504 +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECONTROLKHRPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGEINSERTKHRPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECALLBACKKHRPROC) (GLDEBUGPROCKHR callback, const void *userParam); +typedef GLuint (GL_APIENTRYP PFNGLGETDEBUGMESSAGELOGKHRPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +typedef void (GL_APIENTRYP PFNGLPUSHDEBUGGROUPKHRPROC) (GLenum source, GLuint id, GLsizei length, const GLchar *message); +typedef void (GL_APIENTRYP PFNGLPOPDEBUGGROUPKHRPROC) (void); +typedef void (GL_APIENTRYP PFNGLOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (GL_APIENTRYP PFNGLOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETPOINTERVKHRPROC) (GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDebugMessageControlKHR (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GL_APICALL void GL_APIENTRY glDebugMessageInsertKHR (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GL_APICALL void GL_APIENTRY glDebugMessageCallbackKHR (GLDEBUGPROCKHR callback, const void *userParam); +GL_APICALL GLuint GL_APIENTRY glGetDebugMessageLogKHR (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +GL_APICALL void GL_APIENTRY glPushDebugGroupKHR (GLenum source, GLuint id, GLsizei length, const GLchar *message); +GL_APICALL void GL_APIENTRY glPopDebugGroupKHR (void); +GL_APICALL void GL_APIENTRY glObjectLabelKHR (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectLabelKHR (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +GL_APICALL void GL_APIENTRY glObjectPtrLabelKHR (const void *ptr, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectPtrLabelKHR (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +GL_APICALL void GL_APIENTRY glGetPointervKHR (GLenum pname, void **params); +#endif +#endif /* GL_KHR_debug */ + +#ifndef GL_KHR_no_error +#define GL_KHR_no_error 1 +#define GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 +#endif /* GL_KHR_no_error */ + +#ifndef GL_KHR_parallel_shader_compile +#define GL_KHR_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_KHR 0x91B0 +#define GL_COMPLETION_STATUS_KHR 0x91B1 +typedef void (GL_APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSKHRPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMaxShaderCompilerThreadsKHR (GLuint count); +#endif +#endif /* GL_KHR_parallel_shader_compile */ + +#ifndef GL_KHR_robust_buffer_access_behavior +#define GL_KHR_robust_buffer_access_behavior 1 +#endif /* GL_KHR_robust_buffer_access_behavior */ + +#ifndef GL_KHR_robustness +#define GL_KHR_robustness 1 +#define GL_CONTEXT_ROBUST_ACCESS_KHR 0x90F3 +#define GL_LOSE_CONTEXT_ON_RESET_KHR 0x8252 +#define GL_GUILTY_CONTEXT_RESET_KHR 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_KHR 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_KHR 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY_KHR 0x8256 +#define GL_NO_RESET_NOTIFICATION_KHR 0x8261 +#define GL_CONTEXT_LOST_KHR 0x0507 +typedef GLenum (GL_APIENTRYP PFNGLGETGRAPHICSRESETSTATUSKHRPROC) (void); +typedef void (GL_APIENTRYP PFNGLREADNPIXELSKHRPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMUIVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusKHR (void); +GL_APICALL void GL_APIENTRY glReadnPixelsKHR (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GL_APICALL void GL_APIENTRY glGetnUniformfvKHR (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetnUniformivKHR (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GL_APICALL void GL_APIENTRY glGetnUniformuivKHR (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +#endif +#endif /* GL_KHR_robustness */ + +#ifndef GL_KHR_shader_subgroup +#define GL_KHR_shader_subgroup 1 +#define GL_SUBGROUP_SIZE_KHR 0x9532 +#define GL_SUBGROUP_SUPPORTED_STAGES_KHR 0x9533 +#define GL_SUBGROUP_SUPPORTED_FEATURES_KHR 0x9534 +#define GL_SUBGROUP_QUAD_ALL_STAGES_KHR 0x9535 +#define GL_SUBGROUP_FEATURE_BASIC_BIT_KHR 0x00000001 +#define GL_SUBGROUP_FEATURE_VOTE_BIT_KHR 0x00000002 +#define GL_SUBGROUP_FEATURE_ARITHMETIC_BIT_KHR 0x00000004 +#define GL_SUBGROUP_FEATURE_BALLOT_BIT_KHR 0x00000008 +#define GL_SUBGROUP_FEATURE_SHUFFLE_BIT_KHR 0x00000010 +#define GL_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT_KHR 0x00000020 +#define GL_SUBGROUP_FEATURE_CLUSTERED_BIT_KHR 0x00000040 +#define GL_SUBGROUP_FEATURE_QUAD_BIT_KHR 0x00000080 +#endif /* GL_KHR_shader_subgroup */ + +#ifndef GL_KHR_texture_compression_astc_hdr +#define GL_KHR_texture_compression_astc_hdr 1 +#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 +#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1 +#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2 +#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3 +#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4 +#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5 +#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6 +#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7 +#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8 +#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 +#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA +#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB +#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC +#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD +#endif /* GL_KHR_texture_compression_astc_hdr */ + +#ifndef GL_KHR_texture_compression_astc_ldr +#define GL_KHR_texture_compression_astc_ldr 1 +#endif /* GL_KHR_texture_compression_astc_ldr */ + +#ifndef GL_KHR_texture_compression_astc_sliced_3d +#define GL_KHR_texture_compression_astc_sliced_3d 1 +#endif /* GL_KHR_texture_compression_astc_sliced_3d */ + +#ifndef GL_OES_EGL_image +#define GL_OES_EGL_image 1 +typedef void *GLeglImageOES; +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image); +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image); +GL_APICALL void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image); +#endif +#endif /* GL_OES_EGL_image */ + +#ifndef GL_OES_EGL_image_external +#define GL_OES_EGL_image_external 1 +#define GL_TEXTURE_EXTERNAL_OES 0x8D65 +#define GL_TEXTURE_BINDING_EXTERNAL_OES 0x8D67 +#define GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES 0x8D68 +#define GL_SAMPLER_EXTERNAL_OES 0x8D66 +#endif /* GL_OES_EGL_image_external */ + +#ifndef GL_OES_EGL_image_external_essl3 +#define GL_OES_EGL_image_external_essl3 1 +#endif /* GL_OES_EGL_image_external_essl3 */ + +#ifndef GL_OES_compressed_ETC1_RGB8_sub_texture +#define GL_OES_compressed_ETC1_RGB8_sub_texture 1 +#endif /* GL_OES_compressed_ETC1_RGB8_sub_texture */ + +#ifndef GL_OES_compressed_ETC1_RGB8_texture +#define GL_OES_compressed_ETC1_RGB8_texture 1 +#define GL_ETC1_RGB8_OES 0x8D64 +#endif /* GL_OES_compressed_ETC1_RGB8_texture */ + +#ifndef GL_OES_compressed_paletted_texture +#define GL_OES_compressed_paletted_texture 1 +#define GL_PALETTE4_RGB8_OES 0x8B90 +#define GL_PALETTE4_RGBA8_OES 0x8B91 +#define GL_PALETTE4_R5_G6_B5_OES 0x8B92 +#define GL_PALETTE4_RGBA4_OES 0x8B93 +#define GL_PALETTE4_RGB5_A1_OES 0x8B94 +#define GL_PALETTE8_RGB8_OES 0x8B95 +#define GL_PALETTE8_RGBA8_OES 0x8B96 +#define GL_PALETTE8_R5_G6_B5_OES 0x8B97 +#define GL_PALETTE8_RGBA4_OES 0x8B98 +#define GL_PALETTE8_RGB5_A1_OES 0x8B99 +#endif /* GL_OES_compressed_paletted_texture */ + +#ifndef GL_OES_copy_image +#define GL_OES_copy_image 1 +typedef void (GL_APIENTRYP PFNGLCOPYIMAGESUBDATAOESPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyImageSubDataOES (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#endif +#endif /* GL_OES_copy_image */ + +#ifndef GL_OES_depth24 +#define GL_OES_depth24 1 +#define GL_DEPTH_COMPONENT24_OES 0x81A6 +#endif /* GL_OES_depth24 */ + +#ifndef GL_OES_depth32 +#define GL_OES_depth32 1 +#define GL_DEPTH_COMPONENT32_OES 0x81A7 +#endif /* GL_OES_depth32 */ + +#ifndef GL_OES_depth_texture +#define GL_OES_depth_texture 1 +#endif /* GL_OES_depth_texture */ + +#ifndef GL_OES_draw_buffers_indexed +#define GL_OES_draw_buffers_indexed 1 +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +typedef void (GL_APIENTRYP PFNGLENABLEIOESPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEIOESPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONIOESPROC) (GLuint buf, GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEIOESPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCIOESPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEIOESPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (GL_APIENTRYP PFNGLCOLORMASKIOESPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDIOESPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEnableiOES (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiOES (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glBlendEquationiOES (GLuint buf, GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparateiOES (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunciOES (GLuint buf, GLenum src, GLenum dst); +GL_APICALL void GL_APIENTRY glBlendFuncSeparateiOES (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GL_APICALL void GL_APIENTRY glColorMaskiOES (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediOES (GLenum target, GLuint index); +#endif +#endif /* GL_OES_draw_buffers_indexed */ + +#ifndef GL_OES_draw_elements_base_vertex +#define GL_OES_draw_elements_base_vertex 1 +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXOESPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXOESPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXOESPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawElementsBaseVertexOES (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawRangeElementsBaseVertexOES (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexOES (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +GL_APICALL void GL_APIENTRY glMultiDrawElementsBaseVertexEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +#endif +#endif /* GL_OES_draw_elements_base_vertex */ + +#ifndef GL_OES_element_index_uint +#define GL_OES_element_index_uint 1 +#endif /* GL_OES_element_index_uint */ + +#ifndef GL_OES_fbo_render_mipmap +#define GL_OES_fbo_render_mipmap 1 +#endif /* GL_OES_fbo_render_mipmap */ + +#ifndef GL_OES_fragment_precision_high +#define GL_OES_fragment_precision_high 1 +#endif /* GL_OES_fragment_precision_high */ + +#ifndef GL_OES_geometry_point_size +#define GL_OES_geometry_point_size 1 +#endif /* GL_OES_geometry_point_size */ + +#ifndef GL_OES_geometry_shader +#define GL_OES_geometry_shader 1 +#define GL_GEOMETRY_SHADER_OES 0x8DD9 +#define GL_GEOMETRY_SHADER_BIT_OES 0x00000004 +#define GL_GEOMETRY_LINKED_VERTICES_OUT_OES 0x8916 +#define GL_GEOMETRY_LINKED_INPUT_TYPE_OES 0x8917 +#define GL_GEOMETRY_LINKED_OUTPUT_TYPE_OES 0x8918 +#define GL_GEOMETRY_SHADER_INVOCATIONS_OES 0x887F +#define GL_LAYER_PROVOKING_VERTEX_OES 0x825E +#define GL_LINES_ADJACENCY_OES 0x000A +#define GL_LINE_STRIP_ADJACENCY_OES 0x000B +#define GL_TRIANGLES_ADJACENCY_OES 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_OES 0x000D +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_OES 0x8DDF +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS_OES 0x8A2C +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_OES 0x8A32 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS_OES 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_OES 0x9124 +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_OES 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_OES 0x8DE1 +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS_OES 0x8E5A +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_OES 0x8C29 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_OES 0x92CF +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS_OES 0x92D5 +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS_OES 0x90CD +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_OES 0x90D7 +#define GL_FIRST_VERTEX_CONVENTION_OES 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_OES 0x8E4E +#define GL_UNDEFINED_VERTEX_OES 0x8260 +#define GL_PRIMITIVES_GENERATED_OES 0x8C87 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS_OES 0x9312 +#define GL_MAX_FRAMEBUFFER_LAYERS_OES 0x9317 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_OES 0x8DA8 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_OES 0x8DA7 +#define GL_REFERENCED_BY_GEOMETRY_SHADER_OES 0x9309 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREOESPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureOES (GLenum target, GLenum attachment, GLuint texture, GLint level); +#endif +#endif /* GL_OES_geometry_shader */ + +#ifndef GL_OES_get_program_binary +#define GL_OES_get_program_binary 1 +#define GL_PROGRAM_BINARY_LENGTH_OES 0x8741 +#define GL_NUM_PROGRAM_BINARY_FORMATS_OES 0x87FE +#define GL_PROGRAM_BINARY_FORMATS_OES 0x87FF +typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLint length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const void *binary, GLint length); +#endif +#endif /* GL_OES_get_program_binary */ + +#ifndef GL_OES_gpu_shader5 +#define GL_OES_gpu_shader5 1 +#endif /* GL_OES_gpu_shader5 */ + +#ifndef GL_OES_mapbuffer +#define GL_OES_mapbuffer 1 +#define GL_WRITE_ONLY_OES 0x88B9 +#define GL_BUFFER_ACCESS_OES 0x88BB +#define GL_BUFFER_MAPPED_OES 0x88BC +#define GL_BUFFER_MAP_POINTER_OES 0x88BD +typedef void *(GL_APIENTRYP PFNGLMAPBUFFEROESPROC) (GLenum target, GLenum access); +typedef GLboolean (GL_APIENTRYP PFNGLUNMAPBUFFEROESPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLGETBUFFERPOINTERVOESPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void *GL_APIENTRY glMapBufferOES (GLenum target, GLenum access); +GL_APICALL GLboolean GL_APIENTRY glUnmapBufferOES (GLenum target); +GL_APICALL void GL_APIENTRY glGetBufferPointervOES (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_OES_mapbuffer */ + +#ifndef GL_OES_packed_depth_stencil +#define GL_OES_packed_depth_stencil 1 +#define GL_DEPTH_STENCIL_OES 0x84F9 +#define GL_UNSIGNED_INT_24_8_OES 0x84FA +#define GL_DEPTH24_STENCIL8_OES 0x88F0 +#endif /* GL_OES_packed_depth_stencil */ + +#ifndef GL_OES_primitive_bounding_box +#define GL_OES_primitive_bounding_box 1 +#define GL_PRIMITIVE_BOUNDING_BOX_OES 0x92BE +typedef void (GL_APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXOESPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPrimitiveBoundingBoxOES (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_OES_primitive_bounding_box */ + +#ifndef GL_OES_required_internalformat +#define GL_OES_required_internalformat 1 +#define GL_ALPHA8_OES 0x803C +#define GL_DEPTH_COMPONENT16_OES 0x81A5 +#define GL_LUMINANCE4_ALPHA4_OES 0x8043 +#define GL_LUMINANCE8_ALPHA8_OES 0x8045 +#define GL_LUMINANCE8_OES 0x8040 +#define GL_RGBA4_OES 0x8056 +#define GL_RGB5_A1_OES 0x8057 +#define GL_RGB565_OES 0x8D62 +#define GL_RGB8_OES 0x8051 +#define GL_RGBA8_OES 0x8058 +#define GL_RGB10_EXT 0x8052 +#define GL_RGB10_A2_EXT 0x8059 +#endif /* GL_OES_required_internalformat */ + +#ifndef GL_OES_rgb8_rgba8 +#define GL_OES_rgb8_rgba8 1 +#endif /* GL_OES_rgb8_rgba8 */ + +#ifndef GL_OES_sample_shading +#define GL_OES_sample_shading 1 +#define GL_SAMPLE_SHADING_OES 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE_OES 0x8C37 +typedef void (GL_APIENTRYP PFNGLMINSAMPLESHADINGOESPROC) (GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMinSampleShadingOES (GLfloat value); +#endif +#endif /* GL_OES_sample_shading */ + +#ifndef GL_OES_sample_variables +#define GL_OES_sample_variables 1 +#endif /* GL_OES_sample_variables */ + +#ifndef GL_OES_shader_image_atomic +#define GL_OES_shader_image_atomic 1 +#endif /* GL_OES_shader_image_atomic */ + +#ifndef GL_OES_shader_io_blocks +#define GL_OES_shader_io_blocks 1 +#endif /* GL_OES_shader_io_blocks */ + +#ifndef GL_OES_shader_multisample_interpolation +#define GL_OES_shader_multisample_interpolation 1 +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_OES 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_OES 0x8E5C +#define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS_OES 0x8E5D +#endif /* GL_OES_shader_multisample_interpolation */ + +#ifndef GL_OES_standard_derivatives +#define GL_OES_standard_derivatives 1 +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES 0x8B8B +#endif /* GL_OES_standard_derivatives */ + +#ifndef GL_OES_stencil1 +#define GL_OES_stencil1 1 +#define GL_STENCIL_INDEX1_OES 0x8D46 +#endif /* GL_OES_stencil1 */ + +#ifndef GL_OES_stencil4 +#define GL_OES_stencil4 1 +#define GL_STENCIL_INDEX4_OES 0x8D47 +#endif /* GL_OES_stencil4 */ + +#ifndef GL_OES_surfaceless_context +#define GL_OES_surfaceless_context 1 +#define GL_FRAMEBUFFER_UNDEFINED_OES 0x8219 +#endif /* GL_OES_surfaceless_context */ + +#ifndef GL_OES_tessellation_point_size +#define GL_OES_tessellation_point_size 1 +#endif /* GL_OES_tessellation_point_size */ + +#ifndef GL_OES_tessellation_shader +#define GL_OES_tessellation_shader 1 +#define GL_PATCHES_OES 0x000E +#define GL_PATCH_VERTICES_OES 0x8E72 +#define GL_TESS_CONTROL_OUTPUT_VERTICES_OES 0x8E75 +#define GL_TESS_GEN_MODE_OES 0x8E76 +#define GL_TESS_GEN_SPACING_OES 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER_OES 0x8E78 +#define GL_TESS_GEN_POINT_MODE_OES 0x8E79 +#define GL_ISOLINES_OES 0x8E7A +#define GL_QUADS_OES 0x0007 +#define GL_FRACTIONAL_ODD_OES 0x8E7B +#define GL_FRACTIONAL_EVEN_OES 0x8E7C +#define GL_MAX_PATCH_VERTICES_OES 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL_OES 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS_OES 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS_OES 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS_OES 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS_OES 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS_OES 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS_OES 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS_OES 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS_OES 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS_OES 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS_OES 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS_OES 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS_OES 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS_OES 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS_OES 0x8E1F +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_OES 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS_OES 0x92CE +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS_OES 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS_OES 0x92D4 +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_OES 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS_OES 0x90CC +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS_OES 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS_OES 0x90D9 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED_OES 0x8221 +#define GL_IS_PER_PATCH_OES 0x92E7 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER_OES 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER_OES 0x9308 +#define GL_TESS_CONTROL_SHADER_OES 0x8E88 +#define GL_TESS_EVALUATION_SHADER_OES 0x8E87 +#define GL_TESS_CONTROL_SHADER_BIT_OES 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT_OES 0x00000010 +typedef void (GL_APIENTRYP PFNGLPATCHPARAMETERIOESPROC) (GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPatchParameteriOES (GLenum pname, GLint value); +#endif +#endif /* GL_OES_tessellation_shader */ + +#ifndef GL_OES_texture_3D +#define GL_OES_texture_3D 1 +#define GL_TEXTURE_WRAP_R_OES 0x8072 +#define GL_TEXTURE_3D_OES 0x806F +#define GL_TEXTURE_BINDING_3D_OES 0x806A +#define GL_MAX_3D_TEXTURE_SIZE_OES 0x8073 +#define GL_SAMPLER_3D_OES 0x8B5F +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_OES 0x8CD4 +typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLCOPYTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DOESPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glCopyTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glFramebufferTexture3DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +#endif +#endif /* GL_OES_texture_3D */ + +#ifndef GL_OES_texture_border_clamp +#define GL_OES_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_OES 0x1004 +#define GL_CLAMP_TO_BORDER_OES 0x812D +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIIVOESPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIUIVOESPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIIVOESPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIUIVOESPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIIVOESPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIUIVOESPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIIVOESPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVOESPROC) (GLuint sampler, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexParameterIivOES (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexParameterIuivOES (GLenum target, GLenum pname, const GLuint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIivOES (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIuivOES (GLenum target, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glSamplerParameterIivOES (GLuint sampler, GLenum pname, const GLint *param); +GL_APICALL void GL_APIENTRY glSamplerParameterIuivOES (GLuint sampler, GLenum pname, const GLuint *param); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIivOES (GLuint sampler, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIuivOES (GLuint sampler, GLenum pname, GLuint *params); +#endif +#endif /* GL_OES_texture_border_clamp */ + +#ifndef GL_OES_texture_buffer +#define GL_OES_texture_buffer 1 +#define GL_TEXTURE_BUFFER_OES 0x8C2A +#define GL_TEXTURE_BUFFER_BINDING_OES 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_OES 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_OES 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_OES 0x8C2D +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT_OES 0x919F +#define GL_SAMPLER_BUFFER_OES 0x8DC2 +#define GL_INT_SAMPLER_BUFFER_OES 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_OES 0x8DD8 +#define GL_IMAGE_BUFFER_OES 0x9051 +#define GL_INT_IMAGE_BUFFER_OES 0x905C +#define GL_UNSIGNED_INT_IMAGE_BUFFER_OES 0x9067 +#define GL_TEXTURE_BUFFER_OFFSET_OES 0x919D +#define GL_TEXTURE_BUFFER_SIZE_OES 0x919E +typedef void (GL_APIENTRYP PFNGLTEXBUFFEROESPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLTEXBUFFERRANGEOESPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexBufferOES (GLenum target, GLenum internalformat, GLuint buffer); +GL_APICALL void GL_APIENTRY glTexBufferRangeOES (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_OES_texture_buffer */ + +#ifndef GL_OES_texture_compression_astc +#define GL_OES_texture_compression_astc 1 +#define GL_COMPRESSED_RGBA_ASTC_3x3x3_OES 0x93C0 +#define GL_COMPRESSED_RGBA_ASTC_4x3x3_OES 0x93C1 +#define GL_COMPRESSED_RGBA_ASTC_4x4x3_OES 0x93C2 +#define GL_COMPRESSED_RGBA_ASTC_4x4x4_OES 0x93C3 +#define GL_COMPRESSED_RGBA_ASTC_5x4x4_OES 0x93C4 +#define GL_COMPRESSED_RGBA_ASTC_5x5x4_OES 0x93C5 +#define GL_COMPRESSED_RGBA_ASTC_5x5x5_OES 0x93C6 +#define GL_COMPRESSED_RGBA_ASTC_6x5x5_OES 0x93C7 +#define GL_COMPRESSED_RGBA_ASTC_6x6x5_OES 0x93C8 +#define GL_COMPRESSED_RGBA_ASTC_6x6x6_OES 0x93C9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_3x3x3_OES 0x93E0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x3x3_OES 0x93E1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x3_OES 0x93E2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x4_OES 0x93E3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4x4_OES 0x93E4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x4_OES 0x93E5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x5_OES 0x93E6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5x5_OES 0x93E7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x5_OES 0x93E8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x6_OES 0x93E9 +#endif /* GL_OES_texture_compression_astc */ + +#ifndef GL_OES_texture_cube_map_array +#define GL_OES_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_OES 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_OES 0x900A +#define GL_SAMPLER_CUBE_MAP_ARRAY_OES 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_OES 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_OES 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_OES 0x900F +#define GL_IMAGE_CUBE_MAP_ARRAY_OES 0x9054 +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_OES 0x905F +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_OES 0x906A +#endif /* GL_OES_texture_cube_map_array */ + +#ifndef GL_OES_texture_float +#define GL_OES_texture_float 1 +#endif /* GL_OES_texture_float */ + +#ifndef GL_OES_texture_float_linear +#define GL_OES_texture_float_linear 1 +#endif /* GL_OES_texture_float_linear */ + +#ifndef GL_OES_texture_half_float +#define GL_OES_texture_half_float 1 +#define GL_HALF_FLOAT_OES 0x8D61 +#endif /* GL_OES_texture_half_float */ + +#ifndef GL_OES_texture_half_float_linear +#define GL_OES_texture_half_float_linear 1 +#endif /* GL_OES_texture_half_float_linear */ + +#ifndef GL_OES_texture_npot +#define GL_OES_texture_npot 1 +#endif /* GL_OES_texture_npot */ + +#ifndef GL_OES_texture_stencil8 +#define GL_OES_texture_stencil8 1 +#define GL_STENCIL_INDEX_OES 0x1901 +#define GL_STENCIL_INDEX8_OES 0x8D48 +#endif /* GL_OES_texture_stencil8 */ + +#ifndef GL_OES_texture_storage_multisample_2d_array +#define GL_OES_texture_storage_multisample_2d_array 1 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY_OES 0x9102 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY_OES 0x9105 +#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910B +#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910C +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910D +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE3DMULTISAMPLEOESPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorage3DMultisampleOES (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +#endif +#endif /* GL_OES_texture_storage_multisample_2d_array */ + +#ifndef GL_OES_texture_view +#define GL_OES_texture_view 1 +#define GL_TEXTURE_VIEW_MIN_LEVEL_OES 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS_OES 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER_OES 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS_OES 0x82DE +#define GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF +typedef void (GL_APIENTRYP PFNGLTEXTUREVIEWOESPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureViewOES (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#endif +#endif /* GL_OES_texture_view */ + +#ifndef GL_OES_vertex_array_object +#define GL_OES_vertex_array_object 1 +#define GL_VERTEX_ARRAY_BINDING_OES 0x85B5 +typedef void (GL_APIENTRYP PFNGLBINDVERTEXARRAYOESPROC) (GLuint array); +typedef void (GL_APIENTRYP PFNGLDELETEVERTEXARRAYSOESPROC) (GLsizei n, const GLuint *arrays); +typedef void (GL_APIENTRYP PFNGLGENVERTEXARRAYSOESPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (GL_APIENTRYP PFNGLISVERTEXARRAYOESPROC) (GLuint array); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindVertexArrayOES (GLuint array); +GL_APICALL void GL_APIENTRY glDeleteVertexArraysOES (GLsizei n, const GLuint *arrays); +GL_APICALL void GL_APIENTRY glGenVertexArraysOES (GLsizei n, GLuint *arrays); +GL_APICALL GLboolean GL_APIENTRY glIsVertexArrayOES (GLuint array); +#endif +#endif /* GL_OES_vertex_array_object */ + +#ifndef GL_OES_vertex_half_float +#define GL_OES_vertex_half_float 1 +#endif /* GL_OES_vertex_half_float */ + +#ifndef GL_OES_vertex_type_10_10_10_2 +#define GL_OES_vertex_type_10_10_10_2 1 +#define GL_UNSIGNED_INT_10_10_10_2_OES 0x8DF6 +#define GL_INT_10_10_10_2_OES 0x8DF7 +#endif /* GL_OES_vertex_type_10_10_10_2 */ + +#ifndef GL_OES_viewport_array +#define GL_OES_viewport_array 1 +#define GL_MAX_VIEWPORTS_OES 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS_OES 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE_OES 0x825D +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX_OES 0x825F +typedef void (GL_APIENTRYP PFNGLVIEWPORTARRAYVOESPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFOESPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFVOESPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLSCISSORARRAYVOESPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDOESPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDVOESPROC) (GLuint index, const GLint *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEARRAYFVOESPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEINDEXEDFOESPROC) (GLuint index, GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLGETFLOATI_VOESPROC) (GLenum target, GLuint index, GLfloat *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportArrayvOES (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glViewportIndexedfOES (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GL_APICALL void GL_APIENTRY glViewportIndexedfvOES (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glScissorArrayvOES (GLuint first, GLsizei count, const GLint *v); +GL_APICALL void GL_APIENTRY glScissorIndexedOES (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorIndexedvOES (GLuint index, const GLint *v); +GL_APICALL void GL_APIENTRY glDepthRangeArrayfvOES (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glDepthRangeIndexedfOES (GLuint index, GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glGetFloati_vOES (GLenum target, GLuint index, GLfloat *data); +#endif +#endif /* GL_OES_viewport_array */ + +#ifndef GL_AMD_compressed_3DC_texture +#define GL_AMD_compressed_3DC_texture 1 +#define GL_3DC_X_AMD 0x87F9 +#define GL_3DC_XY_AMD 0x87FA +#endif /* GL_AMD_compressed_3DC_texture */ + +#ifndef GL_AMD_compressed_ATC_texture +#define GL_AMD_compressed_ATC_texture 1 +#define GL_ATC_RGB_AMD 0x8C92 +#define GL_ATC_RGBA_EXPLICIT_ALPHA_AMD 0x8C93 +#define GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD 0x87EE +#endif /* GL_AMD_compressed_ATC_texture */ + +#ifndef GL_AMD_framebuffer_multisample_advanced +#define GL_AMD_framebuffer_multisample_advanced 1 +#define GL_RENDERBUFFER_STORAGE_SAMPLES_AMD 0x91B2 +#define GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD 0x91B3 +#define GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD 0x91B4 +#define GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD 0x91B5 +#define GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B6 +#define GL_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B7 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleAdvancedAMD (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glNamedRenderbufferStorageMultisampleAdvancedAMD (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_AMD_framebuffer_multisample_advanced */ + +#ifndef GL_AMD_performance_monitor +#define GL_AMD_performance_monitor 1 +#define GL_COUNTER_TYPE_AMD 0x8BC0 +#define GL_COUNTER_RANGE_AMD 0x8BC1 +#define GL_UNSIGNED_INT64_AMD 0x8BC2 +#define GL_PERCENTAGE_AMD 0x8BC3 +#define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4 +#define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5 +#define GL_PERFMON_RESULT_AMD 0x8BC6 +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, void *data); +typedef void (GL_APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (GL_APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (GL_APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +typedef void (GL_APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GL_APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, void *data); +GL_APICALL void GL_APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors); +GL_APICALL void GL_APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors); +GL_APICALL void GL_APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +GL_APICALL void GL_APIENTRY glBeginPerfMonitorAMD (GLuint monitor); +GL_APICALL void GL_APIENTRY glEndPerfMonitorAMD (GLuint monitor); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#endif +#endif /* GL_AMD_performance_monitor */ + +#ifndef GL_AMD_program_binary_Z400 +#define GL_AMD_program_binary_Z400 1 +#define GL_Z400_BINARY_AMD 0x8740 +#endif /* GL_AMD_program_binary_Z400 */ + +#ifndef GL_ANDROID_extension_pack_es31a +#define GL_ANDROID_extension_pack_es31a 1 +#endif /* GL_ANDROID_extension_pack_es31a */ + +#ifndef GL_ANGLE_depth_texture +#define GL_ANGLE_depth_texture 1 +#endif /* GL_ANGLE_depth_texture */ + +#ifndef GL_ANGLE_framebuffer_blit +#define GL_ANGLE_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_ANGLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_ANGLE 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_ANGLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_ANGLE 0x8CAA +typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlitFramebufferANGLE (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_ANGLE_framebuffer_blit */ + +#ifndef GL_ANGLE_framebuffer_multisample +#define GL_ANGLE_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_ANGLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE 0x8D56 +#define GL_MAX_SAMPLES_ANGLE 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEANGLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleANGLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_ANGLE_framebuffer_multisample */ + +#ifndef GL_ANGLE_instanced_arrays +#define GL_ANGLE_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE 0x88FE +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDANGLEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDANGLEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORANGLEPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedANGLE (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedANGLE (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +GL_APICALL void GL_APIENTRY glVertexAttribDivisorANGLE (GLuint index, GLuint divisor); +#endif +#endif /* GL_ANGLE_instanced_arrays */ + +#ifndef GL_ANGLE_pack_reverse_row_order +#define GL_ANGLE_pack_reverse_row_order 1 +#define GL_PACK_REVERSE_ROW_ORDER_ANGLE 0x93A4 +#endif /* GL_ANGLE_pack_reverse_row_order */ + +#ifndef GL_ANGLE_program_binary +#define GL_ANGLE_program_binary 1 +#define GL_PROGRAM_BINARY_ANGLE 0x93A6 +#endif /* GL_ANGLE_program_binary */ + +#ifndef GL_ANGLE_texture_compression_dxt3 +#define GL_ANGLE_texture_compression_dxt3 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE 0x83F2 +#endif /* GL_ANGLE_texture_compression_dxt3 */ + +#ifndef GL_ANGLE_texture_compression_dxt5 +#define GL_ANGLE_texture_compression_dxt5 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE 0x83F3 +#endif /* GL_ANGLE_texture_compression_dxt5 */ + +#ifndef GL_ANGLE_texture_usage +#define GL_ANGLE_texture_usage 1 +#define GL_TEXTURE_USAGE_ANGLE 0x93A2 +#define GL_FRAMEBUFFER_ATTACHMENT_ANGLE 0x93A3 +#endif /* GL_ANGLE_texture_usage */ + +#ifndef GL_ANGLE_translated_shader_source +#define GL_ANGLE_translated_shader_source 1 +#define GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE 0x93A0 +typedef void (GL_APIENTRYP PFNGLGETTRANSLATEDSHADERSOURCEANGLEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetTranslatedShaderSourceANGLE (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +#endif +#endif /* GL_ANGLE_translated_shader_source */ + +#ifndef GL_APPLE_clip_distance +#define GL_APPLE_clip_distance 1 +#define GL_MAX_CLIP_DISTANCES_APPLE 0x0D32 +#define GL_CLIP_DISTANCE0_APPLE 0x3000 +#define GL_CLIP_DISTANCE1_APPLE 0x3001 +#define GL_CLIP_DISTANCE2_APPLE 0x3002 +#define GL_CLIP_DISTANCE3_APPLE 0x3003 +#define GL_CLIP_DISTANCE4_APPLE 0x3004 +#define GL_CLIP_DISTANCE5_APPLE 0x3005 +#define GL_CLIP_DISTANCE6_APPLE 0x3006 +#define GL_CLIP_DISTANCE7_APPLE 0x3007 +#endif /* GL_APPLE_clip_distance */ + +#ifndef GL_APPLE_color_buffer_packed_float +#define GL_APPLE_color_buffer_packed_float 1 +#endif /* GL_APPLE_color_buffer_packed_float */ + +#ifndef GL_APPLE_copy_texture_levels +#define GL_APPLE_copy_texture_levels 1 +typedef void (GL_APIENTRYP PFNGLCOPYTEXTURELEVELSAPPLEPROC) (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyTextureLevelsAPPLE (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); +#endif +#endif /* GL_APPLE_copy_texture_levels */ + +#ifndef GL_APPLE_framebuffer_multisample +#define GL_APPLE_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_APPLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_APPLE 0x8D56 +#define GL_MAX_SAMPLES_APPLE 0x8D57 +#define GL_READ_FRAMEBUFFER_APPLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_APPLE 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_APPLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_APPLE 0x8CAA +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEAPPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLRESOLVEMULTISAMPLEFRAMEBUFFERAPPLEPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleAPPLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glResolveMultisampleFramebufferAPPLE (void); +#endif +#endif /* GL_APPLE_framebuffer_multisample */ + +#ifndef GL_APPLE_rgb_422 +#define GL_APPLE_rgb_422 1 +#define GL_RGB_422_APPLE 0x8A1F +#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB +#define GL_RGB_RAW_422_APPLE 0x8A51 +#endif /* GL_APPLE_rgb_422 */ + +#ifndef GL_APPLE_sync +#define GL_APPLE_sync 1 +#define GL_SYNC_OBJECT_APPLE 0x8A53 +#define GL_MAX_SERVER_WAIT_TIMEOUT_APPLE 0x9111 +#define GL_OBJECT_TYPE_APPLE 0x9112 +#define GL_SYNC_CONDITION_APPLE 0x9113 +#define GL_SYNC_STATUS_APPLE 0x9114 +#define GL_SYNC_FLAGS_APPLE 0x9115 +#define GL_SYNC_FENCE_APPLE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE 0x9117 +#define GL_UNSIGNALED_APPLE 0x9118 +#define GL_SIGNALED_APPLE 0x9119 +#define GL_ALREADY_SIGNALED_APPLE 0x911A +#define GL_TIMEOUT_EXPIRED_APPLE 0x911B +#define GL_CONDITION_SATISFIED_APPLE 0x911C +#define GL_WAIT_FAILED_APPLE 0x911D +#define GL_SYNC_FLUSH_COMMANDS_BIT_APPLE 0x00000001 +#define GL_TIMEOUT_IGNORED_APPLE 0xFFFFFFFFFFFFFFFFull +typedef GLsync (GL_APIENTRYP PFNGLFENCESYNCAPPLEPROC) (GLenum condition, GLbitfield flags); +typedef GLboolean (GL_APIENTRYP PFNGLISSYNCAPPLEPROC) (GLsync sync); +typedef void (GL_APIENTRYP PFNGLDELETESYNCAPPLEPROC) (GLsync sync); +typedef GLenum (GL_APIENTRYP PFNGLCLIENTWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (GL_APIENTRYP PFNGLWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (GL_APIENTRYP PFNGLGETINTEGER64VAPPLEPROC) (GLenum pname, GLint64 *params); +typedef void (GL_APIENTRYP PFNGLGETSYNCIVAPPLEPROC) (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLsync GL_APIENTRY glFenceSyncAPPLE (GLenum condition, GLbitfield flags); +GL_APICALL GLboolean GL_APIENTRY glIsSyncAPPLE (GLsync sync); +GL_APICALL void GL_APIENTRY glDeleteSyncAPPLE (GLsync sync); +GL_APICALL GLenum GL_APIENTRY glClientWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); +GL_APICALL void GL_APIENTRY glWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); +GL_APICALL void GL_APIENTRY glGetInteger64vAPPLE (GLenum pname, GLint64 *params); +GL_APICALL void GL_APIENTRY glGetSyncivAPPLE (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +#endif +#endif /* GL_APPLE_sync */ + +#ifndef GL_APPLE_texture_format_BGRA8888 +#define GL_APPLE_texture_format_BGRA8888 1 +#define GL_BGRA_EXT 0x80E1 +#define GL_BGRA8_EXT 0x93A1 +#endif /* GL_APPLE_texture_format_BGRA8888 */ + +#ifndef GL_APPLE_texture_max_level +#define GL_APPLE_texture_max_level 1 +#define GL_TEXTURE_MAX_LEVEL_APPLE 0x813D +#endif /* GL_APPLE_texture_max_level */ + +#ifndef GL_APPLE_texture_packed_float +#define GL_APPLE_texture_packed_float 1 +#define GL_UNSIGNED_INT_10F_11F_11F_REV_APPLE 0x8C3B +#define GL_UNSIGNED_INT_5_9_9_9_REV_APPLE 0x8C3E +#define GL_R11F_G11F_B10F_APPLE 0x8C3A +#define GL_RGB9_E5_APPLE 0x8C3D +#endif /* GL_APPLE_texture_packed_float */ + +#ifndef GL_ARM_mali_program_binary +#define GL_ARM_mali_program_binary 1 +#define GL_MALI_PROGRAM_BINARY_ARM 0x8F61 +#endif /* GL_ARM_mali_program_binary */ + +#ifndef GL_ARM_mali_shader_binary +#define GL_ARM_mali_shader_binary 1 +#define GL_MALI_SHADER_BINARY_ARM 0x8F60 +#endif /* GL_ARM_mali_shader_binary */ + +#ifndef GL_ARM_rgba8 +#define GL_ARM_rgba8 1 +#endif /* GL_ARM_rgba8 */ + +#ifndef GL_ARM_shader_framebuffer_fetch +#define GL_ARM_shader_framebuffer_fetch 1 +#define GL_FETCH_PER_SAMPLE_ARM 0x8F65 +#define GL_FRAGMENT_SHADER_FRAMEBUFFER_FETCH_MRT_ARM 0x8F66 +#endif /* GL_ARM_shader_framebuffer_fetch */ + +#ifndef GL_ARM_shader_framebuffer_fetch_depth_stencil +#define GL_ARM_shader_framebuffer_fetch_depth_stencil 1 +#endif /* GL_ARM_shader_framebuffer_fetch_depth_stencil */ + +#ifndef GL_ARM_texture_unnormalized_coordinates +#define GL_ARM_texture_unnormalized_coordinates 1 +#define GL_TEXTURE_UNNORMALIZED_COORDINATES_ARM 0x8F6A +#endif /* GL_ARM_texture_unnormalized_coordinates */ + +#ifndef GL_DMP_program_binary +#define GL_DMP_program_binary 1 +#define GL_SMAPHS30_PROGRAM_BINARY_DMP 0x9251 +#define GL_SMAPHS_PROGRAM_BINARY_DMP 0x9252 +#define GL_DMP_PROGRAM_BINARY_DMP 0x9253 +#endif /* GL_DMP_program_binary */ + +#ifndef GL_DMP_shader_binary +#define GL_DMP_shader_binary 1 +#define GL_SHADER_BINARY_DMP 0x9250 +#endif /* GL_DMP_shader_binary */ + +#ifndef GL_EXT_EGL_image_array +#define GL_EXT_EGL_image_array 1 +#endif /* GL_EXT_EGL_image_array */ + +#ifndef GL_EXT_EGL_image_storage +#define GL_EXT_EGL_image_storage 1 +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXSTORAGEEXTPROC) (GLenum target, GLeglImageOES image, const GLint* attrib_list); +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURESTORAGEEXTPROC) (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEGLImageTargetTexStorageEXT (GLenum target, GLeglImageOES image, const GLint* attrib_list); +GL_APICALL void GL_APIENTRY glEGLImageTargetTextureStorageEXT (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#endif +#endif /* GL_EXT_EGL_image_storage */ + +#ifndef GL_EXT_EGL_image_storage_compression +#define GL_EXT_EGL_image_storage_compression 1 +#define GL_SURFACE_COMPRESSION_EXT 0x96C0 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_NONE_EXT 0x96C1 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_DEFAULT_EXT 0x96C2 +#endif /* GL_EXT_EGL_image_storage_compression */ + +#ifndef GL_EXT_YUV_target +#define GL_EXT_YUV_target 1 +#define GL_SAMPLER_EXTERNAL_2D_Y2Y_EXT 0x8BE7 +#endif /* GL_EXT_YUV_target */ + +#ifndef GL_EXT_base_instance +#define GL_EXT_base_instance 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEEXTPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedBaseInstanceEXT (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseInstanceEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexBaseInstanceEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +#endif +#endif /* GL_EXT_base_instance */ + +#ifndef GL_EXT_blend_func_extended +#define GL_EXT_blend_func_extended 1 +#define GL_SRC1_COLOR_EXT 0x88F9 +#define GL_SRC1_ALPHA_EXT 0x8589 +#define GL_ONE_MINUS_SRC1_COLOR_EXT 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA_EXT 0x88FB +#define GL_SRC_ALPHA_SATURATE_EXT 0x0308 +#define GL_LOCATION_INDEX_EXT 0x930F +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS_EXT 0x88FC +typedef void (GL_APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDEXTPROC) (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLBINDFRAGDATALOCATIONEXTPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (GL_APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONINDEXEXTPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef GLint (GL_APIENTRYP PFNGLGETFRAGDATAINDEXEXTPROC) (GLuint program, const GLchar *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindFragDataLocationIndexedEXT (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +GL_APICALL void GL_APIENTRY glBindFragDataLocationEXT (GLuint program, GLuint color, const GLchar *name); +GL_APICALL GLint GL_APIENTRY glGetProgramResourceLocationIndexEXT (GLuint program, GLenum programInterface, const GLchar *name); +GL_APICALL GLint GL_APIENTRY glGetFragDataIndexEXT (GLuint program, const GLchar *name); +#endif +#endif /* GL_EXT_blend_func_extended */ + +#ifndef GL_EXT_blend_minmax +#define GL_EXT_blend_minmax 1 +#define GL_MIN_EXT 0x8007 +#define GL_MAX_EXT 0x8008 +#endif /* GL_EXT_blend_minmax */ + +#ifndef GL_EXT_buffer_storage +#define GL_EXT_buffer_storage 1 +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_PERSISTENT_BIT_EXT 0x0040 +#define GL_MAP_COHERENT_BIT_EXT 0x0080 +#define GL_DYNAMIC_STORAGE_BIT_EXT 0x0100 +#define GL_CLIENT_STORAGE_BIT_EXT 0x0200 +#define GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT 0x00004000 +#define GL_BUFFER_IMMUTABLE_STORAGE_EXT 0x821F +#define GL_BUFFER_STORAGE_FLAGS_EXT 0x8220 +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEEXTPROC) (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferStorageEXT (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +#endif +#endif /* GL_EXT_buffer_storage */ + +#ifndef GL_EXT_clear_texture +#define GL_EXT_clear_texture 1 +typedef void (GL_APIENTRYP PFNGLCLEARTEXIMAGEEXTPROC) (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +typedef void (GL_APIENTRYP PFNGLCLEARTEXSUBIMAGEEXTPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glClearTexImageEXT (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +GL_APICALL void GL_APIENTRY glClearTexSubImageEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +#endif +#endif /* GL_EXT_clear_texture */ + +#ifndef GL_EXT_clip_control +#define GL_EXT_clip_control 1 +#define GL_LOWER_LEFT_EXT 0x8CA1 +#define GL_UPPER_LEFT_EXT 0x8CA2 +#define GL_NEGATIVE_ONE_TO_ONE_EXT 0x935E +#define GL_ZERO_TO_ONE_EXT 0x935F +#define GL_CLIP_ORIGIN_EXT 0x935C +#define GL_CLIP_DEPTH_MODE_EXT 0x935D +typedef void (GL_APIENTRYP PFNGLCLIPCONTROLEXTPROC) (GLenum origin, GLenum depth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glClipControlEXT (GLenum origin, GLenum depth); +#endif +#endif /* GL_EXT_clip_control */ + +#ifndef GL_EXT_clip_cull_distance +#define GL_EXT_clip_cull_distance 1 +#define GL_MAX_CLIP_DISTANCES_EXT 0x0D32 +#define GL_MAX_CULL_DISTANCES_EXT 0x82F9 +#define GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES_EXT 0x82FA +#define GL_CLIP_DISTANCE0_EXT 0x3000 +#define GL_CLIP_DISTANCE1_EXT 0x3001 +#define GL_CLIP_DISTANCE2_EXT 0x3002 +#define GL_CLIP_DISTANCE3_EXT 0x3003 +#define GL_CLIP_DISTANCE4_EXT 0x3004 +#define GL_CLIP_DISTANCE5_EXT 0x3005 +#define GL_CLIP_DISTANCE6_EXT 0x3006 +#define GL_CLIP_DISTANCE7_EXT 0x3007 +#endif /* GL_EXT_clip_cull_distance */ + +#ifndef GL_EXT_color_buffer_float +#define GL_EXT_color_buffer_float 1 +#endif /* GL_EXT_color_buffer_float */ + +#ifndef GL_EXT_color_buffer_half_float +#define GL_EXT_color_buffer_half_float 1 +#define GL_RGBA16F_EXT 0x881A +#define GL_RGB16F_EXT 0x881B +#define GL_RG16F_EXT 0x822F +#define GL_R16F_EXT 0x822D +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT 0x8211 +#define GL_UNSIGNED_NORMALIZED_EXT 0x8C17 +#endif /* GL_EXT_color_buffer_half_float */ + +#ifndef GL_EXT_conservative_depth +#define GL_EXT_conservative_depth 1 +#endif /* GL_EXT_conservative_depth */ + +#ifndef GL_EXT_copy_image +#define GL_EXT_copy_image 1 +typedef void (GL_APIENTRYP PFNGLCOPYIMAGESUBDATAEXTPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyImageSubDataEXT (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#endif +#endif /* GL_EXT_copy_image */ + +#ifndef GL_EXT_debug_label +#define GL_EXT_debug_label 1 +#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F +#define GL_PROGRAM_OBJECT_EXT 0x8B40 +#define GL_SHADER_OBJECT_EXT 0x8B48 +#define GL_BUFFER_OBJECT_EXT 0x9151 +#define GL_QUERY_OBJECT_EXT 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154 +#define GL_TRANSFORM_FEEDBACK 0x8E22 +typedef void (GL_APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +#endif /* GL_EXT_debug_label */ + +#ifndef GL_EXT_debug_marker +#define GL_EXT_debug_marker 1 +typedef void (GL_APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (GL_APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (GL_APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker); +GL_APICALL void GL_APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker); +GL_APICALL void GL_APIENTRY glPopGroupMarkerEXT (void); +#endif +#endif /* GL_EXT_debug_marker */ + +#ifndef GL_EXT_depth_clamp +#define GL_EXT_depth_clamp 1 +#define GL_DEPTH_CLAMP_EXT 0x864F +#endif /* GL_EXT_depth_clamp */ + +#ifndef GL_EXT_discard_framebuffer +#define GL_EXT_discard_framebuffer 1 +#define GL_COLOR_EXT 0x1800 +#define GL_DEPTH_EXT 0x1801 +#define GL_STENCIL_EXT 0x1802 +typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments); +#endif +#endif /* GL_EXT_discard_framebuffer */ + +#ifndef GL_EXT_disjoint_timer_query +#define GL_EXT_disjoint_timer_query 1 +#define GL_QUERY_COUNTER_BITS_EXT 0x8864 +#define GL_CURRENT_QUERY_EXT 0x8865 +#define GL_QUERY_RESULT_EXT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_EXT 0x8867 +#define GL_TIME_ELAPSED_EXT 0x88BF +#define GL_TIMESTAMP_EXT 0x8E28 +#define GL_GPU_DISJOINT_EXT 0x8FBB +typedef void (GL_APIENTRYP PFNGLGENQUERIESEXTPROC) (GLsizei n, GLuint *ids); +typedef void (GL_APIENTRYP PFNGLDELETEQUERIESEXTPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (GL_APIENTRYP PFNGLISQUERYEXTPROC) (GLuint id); +typedef void (GL_APIENTRYP PFNGLBEGINQUERYEXTPROC) (GLenum target, GLuint id); +typedef void (GL_APIENTRYP PFNGLENDQUERYEXTPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLQUERYCOUNTEREXTPROC) (GLuint id, GLenum target); +typedef void (GL_APIENTRYP PFNGLGETQUERYIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTIVEXTPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUIVEXTPROC) (GLuint id, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLGETINTEGER64VEXTPROC) (GLenum pname, GLint64 *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGenQueriesEXT (GLsizei n, GLuint *ids); +GL_APICALL void GL_APIENTRY glDeleteQueriesEXT (GLsizei n, const GLuint *ids); +GL_APICALL GLboolean GL_APIENTRY glIsQueryEXT (GLuint id); +GL_APICALL void GL_APIENTRY glBeginQueryEXT (GLenum target, GLuint id); +GL_APICALL void GL_APIENTRY glEndQueryEXT (GLenum target); +GL_APICALL void GL_APIENTRY glQueryCounterEXT (GLuint id, GLenum target); +GL_APICALL void GL_APIENTRY glGetQueryivEXT (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectivEXT (GLuint id, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectuivEXT (GLuint id, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64 *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64 *params); +GL_APICALL void GL_APIENTRY glGetInteger64vEXT (GLenum pname, GLint64 *data); +#endif +#endif /* GL_EXT_disjoint_timer_query */ + +#ifndef GL_EXT_draw_buffers +#define GL_EXT_draw_buffers 1 +#define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF +#define GL_MAX_DRAW_BUFFERS_EXT 0x8824 +#define GL_DRAW_BUFFER0_EXT 0x8825 +#define GL_DRAW_BUFFER1_EXT 0x8826 +#define GL_DRAW_BUFFER2_EXT 0x8827 +#define GL_DRAW_BUFFER3_EXT 0x8828 +#define GL_DRAW_BUFFER4_EXT 0x8829 +#define GL_DRAW_BUFFER5_EXT 0x882A +#define GL_DRAW_BUFFER6_EXT 0x882B +#define GL_DRAW_BUFFER7_EXT 0x882C +#define GL_DRAW_BUFFER8_EXT 0x882D +#define GL_DRAW_BUFFER9_EXT 0x882E +#define GL_DRAW_BUFFER10_EXT 0x882F +#define GL_DRAW_BUFFER11_EXT 0x8830 +#define GL_DRAW_BUFFER12_EXT 0x8831 +#define GL_DRAW_BUFFER13_EXT 0x8832 +#define GL_DRAW_BUFFER14_EXT 0x8833 +#define GL_DRAW_BUFFER15_EXT 0x8834 +#define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 +#define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 +#define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 +#define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 +#define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 +#define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 +#define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 +#define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 +#define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 +#define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 +#define GL_COLOR_ATTACHMENT10_EXT 0x8CEA +#define GL_COLOR_ATTACHMENT11_EXT 0x8CEB +#define GL_COLOR_ATTACHMENT12_EXT 0x8CEC +#define GL_COLOR_ATTACHMENT13_EXT 0x8CED +#define GL_COLOR_ATTACHMENT14_EXT 0x8CEE +#define GL_COLOR_ATTACHMENT15_EXT 0x8CEF +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSEXTPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawBuffersEXT (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_EXT_draw_buffers */ + +#ifndef GL_EXT_draw_buffers_indexed +#define GL_EXT_draw_buffers_indexed 1 +typedef void (GL_APIENTRYP PFNGLENABLEIEXTPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEIEXTPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONIEXTPROC) (GLuint buf, GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEIEXTPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCIEXTPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEIEXTPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (GL_APIENTRYP PFNGLCOLORMASKIEXTPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDIEXTPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEnableiEXT (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiEXT (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glBlendEquationiEXT (GLuint buf, GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparateiEXT (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunciEXT (GLuint buf, GLenum src, GLenum dst); +GL_APICALL void GL_APIENTRY glBlendFuncSeparateiEXT (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GL_APICALL void GL_APIENTRY glColorMaskiEXT (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediEXT (GLenum target, GLuint index); +#endif +#endif /* GL_EXT_draw_buffers_indexed */ + +#ifndef GL_EXT_draw_elements_base_vertex +#define GL_EXT_draw_elements_base_vertex 1 +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawElementsBaseVertexEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawRangeElementsBaseVertexEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +#endif +#endif /* GL_EXT_draw_elements_base_vertex */ + +#ifndef GL_EXT_draw_instanced +#define GL_EXT_draw_instanced 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_EXT_draw_instanced */ + +#ifndef GL_EXT_draw_transform_feedback +#define GL_EXT_draw_transform_feedback 1 +typedef void (GL_APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKEXTPROC) (GLenum mode, GLuint id); +typedef void (GL_APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDEXTPROC) (GLenum mode, GLuint id, GLsizei instancecount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawTransformFeedbackEXT (GLenum mode, GLuint id); +GL_APICALL void GL_APIENTRY glDrawTransformFeedbackInstancedEXT (GLenum mode, GLuint id, GLsizei instancecount); +#endif +#endif /* GL_EXT_draw_transform_feedback */ + +#ifndef GL_EXT_external_buffer +#define GL_EXT_external_buffer 1 +typedef void *GLeglClientBufferEXT; +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEEXTERNALEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTERNALEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferStorageExternalEXT (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +GL_APICALL void GL_APIENTRY glNamedBufferStorageExternalEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#endif +#endif /* GL_EXT_external_buffer */ + +#ifndef GL_EXT_float_blend +#define GL_EXT_float_blend 1 +#endif /* GL_EXT_float_blend */ + +#ifndef GL_EXT_fragment_shading_rate +#define GL_EXT_fragment_shading_rate 1 +#define GL_SHADING_RATE_1X1_PIXELS_EXT 0x96A6 +#define GL_SHADING_RATE_1X2_PIXELS_EXT 0x96A7 +#define GL_SHADING_RATE_2X1_PIXELS_EXT 0x96A8 +#define GL_SHADING_RATE_2X2_PIXELS_EXT 0x96A9 +#define GL_SHADING_RATE_1X4_PIXELS_EXT 0x96AA +#define GL_SHADING_RATE_4X1_PIXELS_EXT 0x96AB +#define GL_SHADING_RATE_4X2_PIXELS_EXT 0x96AC +#define GL_SHADING_RATE_2X4_PIXELS_EXT 0x96AD +#define GL_SHADING_RATE_4X4_PIXELS_EXT 0x96AE +#define GL_SHADING_RATE_EXT 0x96D0 +#define GL_SHADING_RATE_ATTACHMENT_EXT 0x96D1 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_EXT 0x96D2 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_REPLACE_EXT 0x96D3 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MIN_EXT 0x96D4 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MAX_EXT 0x96D5 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MUL_EXT 0x96D6 +#define GL_MIN_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_WIDTH_EXT 0x96D7 +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_WIDTH_EXT 0x96D8 +#define GL_MIN_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_HEIGHT_EXT 0x96D9 +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_HEIGHT_EXT 0x96DA +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_ASPECT_RATIO_EXT 0x96DB +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_LAYERS_EXT 0x96DC +#define GL_FRAGMENT_SHADING_RATE_WITH_SHADER_DEPTH_STENCIL_WRITES_SUPPORTED_EXT 0x96DD +#define GL_FRAGMENT_SHADING_RATE_WITH_SAMPLE_MASK_SUPPORTED_EXT 0x96DE +#define GL_FRAGMENT_SHADING_RATE_ATTACHMENT_WITH_DEFAULT_FRAMEBUFFER_SUPPORTED_EXT 0x96DF +#define GL_FRAGMENT_SHADING_RATE_NON_TRIVIAL_COMBINERS_SUPPORTED_EXT 0x8F6F +typedef void (GL_APIENTRYP PFNGLGETFRAGMENTSHADINGRATESEXTPROC) (GLsizei samples, GLsizei maxCount, GLsizei *count, GLenum *shadingRates); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEEXTPROC) (GLenum rate); +typedef void (GL_APIENTRYP PFNGLSHADINGRATECOMBINEROPSEXTPROC) (GLenum combinerOp0, GLenum combinerOp1); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERSHADINGRATEEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint baseLayer, GLsizei numLayers, GLsizei texelWidth, GLsizei texelHeight); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetFragmentShadingRatesEXT (GLsizei samples, GLsizei maxCount, GLsizei *count, GLenum *shadingRates); +GL_APICALL void GL_APIENTRY glShadingRateEXT (GLenum rate); +GL_APICALL void GL_APIENTRY glShadingRateCombinerOpsEXT (GLenum combinerOp0, GLenum combinerOp1); +GL_APICALL void GL_APIENTRY glFramebufferShadingRateEXT (GLenum target, GLenum attachment, GLuint texture, GLint baseLayer, GLsizei numLayers, GLsizei texelWidth, GLsizei texelHeight); +#endif +#endif /* GL_EXT_fragment_shading_rate */ + +#ifndef GL_EXT_geometry_point_size +#define GL_EXT_geometry_point_size 1 +#endif /* GL_EXT_geometry_point_size */ + +#ifndef GL_EXT_geometry_shader +#define GL_EXT_geometry_shader 1 +#define GL_GEOMETRY_SHADER_EXT 0x8DD9 +#define GL_GEOMETRY_SHADER_BIT_EXT 0x00000004 +#define GL_GEOMETRY_LINKED_VERTICES_OUT_EXT 0x8916 +#define GL_GEOMETRY_LINKED_INPUT_TYPE_EXT 0x8917 +#define GL_GEOMETRY_LINKED_OUTPUT_TYPE_EXT 0x8918 +#define GL_GEOMETRY_SHADER_INVOCATIONS_EXT 0x887F +#define GL_LAYER_PROVOKING_VERTEX_EXT 0x825E +#define GL_LINES_ADJACENCY_EXT 0x000A +#define GL_LINE_STRIP_ADJACENCY_EXT 0x000B +#define GL_TRIANGLES_ADJACENCY_EXT 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0x000D +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS_EXT 0x8A2C +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8A32 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS_EXT 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_EXT 0x9124 +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1 +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS_EXT 0x8E5A +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_EXT 0x92CF +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS_EXT 0x92D5 +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS_EXT 0x90CD +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_EXT 0x90D7 +#define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E +#define GL_UNDEFINED_VERTEX_EXT 0x8260 +#define GL_PRIMITIVES_GENERATED_EXT 0x8C87 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS_EXT 0x9312 +#define GL_MAX_FRAMEBUFFER_LAYERS_EXT 0x9317 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7 +#define GL_REFERENCED_BY_GEOMETRY_SHADER_EXT 0x9309 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level); +#endif +#endif /* GL_EXT_geometry_shader */ + +#ifndef GL_EXT_gpu_shader5 +#define GL_EXT_gpu_shader5 1 +#endif /* GL_EXT_gpu_shader5 */ + +#ifndef GL_EXT_instanced_arrays +#define GL_EXT_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_EXT 0x88FE +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISOREXTPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glVertexAttribDivisorEXT (GLuint index, GLuint divisor); +#endif +#endif /* GL_EXT_instanced_arrays */ + +#ifndef GL_EXT_map_buffer_range +#define GL_EXT_map_buffer_range 1 +#define GL_MAP_READ_BIT_EXT 0x0001 +#define GL_MAP_WRITE_BIT_EXT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT_EXT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT_EXT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT_EXT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT_EXT 0x0020 +typedef void *(GL_APIENTRYP PFNGLMAPBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (GL_APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void *GL_APIENTRY glMapBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GL_APICALL void GL_APIENTRY glFlushMappedBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length); +#endif +#endif /* GL_EXT_map_buffer_range */ + +#ifndef GL_EXT_memory_object +#define GL_EXT_memory_object 1 +#define GL_TEXTURE_TILING_EXT 0x9580 +#define GL_DEDICATED_MEMORY_OBJECT_EXT 0x9581 +#define GL_PROTECTED_MEMORY_OBJECT_EXT 0x959B +#define GL_NUM_TILING_TYPES_EXT 0x9582 +#define GL_TILING_TYPES_EXT 0x9583 +#define GL_OPTIMAL_TILING_EXT 0x9584 +#define GL_LINEAR_TILING_EXT 0x9585 +#define GL_NUM_DEVICE_UUIDS_EXT 0x9596 +#define GL_DEVICE_UUID_EXT 0x9597 +#define GL_DRIVER_UUID_EXT 0x9598 +#define GL_UUID_SIZE_EXT 16 +typedef void (GL_APIENTRYP PFNGLGETUNSIGNEDBYTEVEXTPROC) (GLenum pname, GLubyte *data); +typedef void (GL_APIENTRYP PFNGLGETUNSIGNEDBYTEI_VEXTPROC) (GLenum target, GLuint index, GLubyte *data); +typedef void (GL_APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); +typedef GLboolean (GL_APIENTRYP PFNGLISMEMORYOBJECTEXTPROC) (GLuint memoryObject); +typedef void (GL_APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); +typedef void (GL_APIENTRYP PFNGLMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLGETMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM2DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM3DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEMEMEXTPROC) (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM2DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM2DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM3DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM3DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERSTORAGEMEMEXTPROC) (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetUnsignedBytevEXT (GLenum pname, GLubyte *data); +GL_APICALL void GL_APIENTRY glGetUnsignedBytei_vEXT (GLenum target, GLuint index, GLubyte *data); +GL_APICALL void GL_APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); +GL_APICALL GLboolean GL_APIENTRY glIsMemoryObjectEXT (GLuint memoryObject); +GL_APICALL void GL_APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects); +GL_APICALL void GL_APIENTRY glMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glGetMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glTexStorageMem2DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem2DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem3DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem3DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glBufferStorageMemEXT (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem2DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem2DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem3DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem3DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glNamedBufferStorageMemEXT (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_EXT_memory_object */ + +#ifndef GL_EXT_memory_object_fd +#define GL_EXT_memory_object_fd 1 +#define GL_HANDLE_TYPE_OPAQUE_FD_EXT 0x9586 +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYFDEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportMemoryFdEXT (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_memory_object_fd */ + +#ifndef GL_EXT_memory_object_win32 +#define GL_EXT_memory_object_win32 1 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_EXT 0x9587 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_KMT_EXT 0x9588 +#define GL_DEVICE_LUID_EXT 0x9599 +#define GL_DEVICE_NODE_MASK_EXT 0x959A +#define GL_LUID_SIZE_EXT 8 +#define GL_HANDLE_TYPE_D3D12_TILEPOOL_EXT 0x9589 +#define GL_HANDLE_TYPE_D3D12_RESOURCE_EXT 0x958A +#define GL_HANDLE_TYPE_D3D11_IMAGE_EXT 0x958B +#define GL_HANDLE_TYPE_D3D11_IMAGE_KMT_EXT 0x958C +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYWIN32HANDLEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYWIN32NAMEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportMemoryWin32HandleEXT (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +GL_APICALL void GL_APIENTRY glImportMemoryWin32NameEXT (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_memory_object_win32 */ + +#ifndef GL_EXT_multi_draw_arrays +#define GL_EXT_multi_draw_arrays 1 +typedef void (GL_APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMultiDrawArraysEXT (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#endif +#endif /* GL_EXT_multi_draw_arrays */ + +#ifndef GL_EXT_multi_draw_indirect +#define GL_EXT_multi_draw_indirect 1 +typedef void (GL_APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTEXTPROC) (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTEXTPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMultiDrawArraysIndirectEXT (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +GL_APICALL void GL_APIENTRY glMultiDrawElementsIndirectEXT (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +#endif +#endif /* GL_EXT_multi_draw_indirect */ + +#ifndef GL_EXT_multisampled_compatibility +#define GL_EXT_multisampled_compatibility 1 +#define GL_MULTISAMPLE_EXT 0x809D +#define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F +#endif /* GL_EXT_multisampled_compatibility */ + +#ifndef GL_EXT_multisampled_render_to_texture +#define GL_EXT_multisampled_render_to_texture 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT 0x8D6C +#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 +#define GL_MAX_SAMPLES_EXT 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#endif +#endif /* GL_EXT_multisampled_render_to_texture */ + +#ifndef GL_EXT_multisampled_render_to_texture2 +#define GL_EXT_multisampled_render_to_texture2 1 +#endif /* GL_EXT_multisampled_render_to_texture2 */ + +#ifndef GL_EXT_multiview_draw_buffers +#define GL_EXT_multiview_draw_buffers 1 +#define GL_COLOR_ATTACHMENT_EXT 0x90F0 +#define GL_MULTIVIEW_EXT 0x90F1 +#define GL_DRAW_BUFFER_EXT 0x0C01 +#define GL_READ_BUFFER_EXT 0x0C02 +#define GL_MAX_MULTIVIEW_BUFFERS_EXT 0x90F2 +typedef void (GL_APIENTRYP PFNGLREADBUFFERINDEXEDEXTPROC) (GLenum src, GLint index); +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSINDEXEDEXTPROC) (GLint n, const GLenum *location, const GLint *indices); +typedef void (GL_APIENTRYP PFNGLGETINTEGERI_VEXTPROC) (GLenum target, GLuint index, GLint *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glReadBufferIndexedEXT (GLenum src, GLint index); +GL_APICALL void GL_APIENTRY glDrawBuffersIndexedEXT (GLint n, const GLenum *location, const GLint *indices); +GL_APICALL void GL_APIENTRY glGetIntegeri_vEXT (GLenum target, GLuint index, GLint *data); +#endif +#endif /* GL_EXT_multiview_draw_buffers */ + +#ifndef GL_EXT_multiview_tessellation_geometry_shader +#define GL_EXT_multiview_tessellation_geometry_shader 1 +#endif /* GL_EXT_multiview_tessellation_geometry_shader */ + +#ifndef GL_EXT_multiview_texture_multisample +#define GL_EXT_multiview_texture_multisample 1 +#endif /* GL_EXT_multiview_texture_multisample */ + +#ifndef GL_EXT_multiview_timer_query +#define GL_EXT_multiview_timer_query 1 +#endif /* GL_EXT_multiview_timer_query */ + +#ifndef GL_EXT_occlusion_query_boolean +#define GL_EXT_occlusion_query_boolean 1 +#define GL_ANY_SAMPLES_PASSED_EXT 0x8C2F +#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT 0x8D6A +#endif /* GL_EXT_occlusion_query_boolean */ + +#ifndef GL_EXT_polygon_offset_clamp +#define GL_EXT_polygon_offset_clamp 1 +#define GL_POLYGON_OFFSET_CLAMP_EXT 0x8E1B +typedef void (GL_APIENTRYP PFNGLPOLYGONOFFSETCLAMPEXTPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPolygonOffsetClampEXT (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_EXT_polygon_offset_clamp */ + +#ifndef GL_EXT_post_depth_coverage +#define GL_EXT_post_depth_coverage 1 +#endif /* GL_EXT_post_depth_coverage */ + +#ifndef GL_EXT_primitive_bounding_box +#define GL_EXT_primitive_bounding_box 1 +#define GL_PRIMITIVE_BOUNDING_BOX_EXT 0x92BE +typedef void (GL_APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXEXTPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPrimitiveBoundingBoxEXT (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_EXT_primitive_bounding_box */ + +#ifndef GL_EXT_protected_textures +#define GL_EXT_protected_textures 1 +#define GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT 0x00000010 +#define GL_TEXTURE_PROTECTED_EXT 0x8BFA +#endif /* GL_EXT_protected_textures */ + +#ifndef GL_EXT_pvrtc_sRGB +#define GL_EXT_pvrtc_sRGB 1 +#define GL_COMPRESSED_SRGB_PVRTC_2BPPV1_EXT 0x8A54 +#define GL_COMPRESSED_SRGB_PVRTC_4BPPV1_EXT 0x8A55 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_2BPPV1_EXT 0x8A56 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_4BPPV1_EXT 0x8A57 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_2BPPV2_IMG 0x93F0 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_4BPPV2_IMG 0x93F1 +#endif /* GL_EXT_pvrtc_sRGB */ + +#ifndef GL_EXT_raster_multisample +#define GL_EXT_raster_multisample 1 +#define GL_RASTER_MULTISAMPLE_EXT 0x9327 +#define GL_RASTER_SAMPLES_EXT 0x9328 +#define GL_MAX_RASTER_SAMPLES_EXT 0x9329 +#define GL_RASTER_FIXED_SAMPLE_LOCATIONS_EXT 0x932A +#define GL_MULTISAMPLE_RASTERIZATION_ALLOWED_EXT 0x932B +#define GL_EFFECTIVE_RASTER_SAMPLES_EXT 0x932C +typedef void (GL_APIENTRYP PFNGLRASTERSAMPLESEXTPROC) (GLuint samples, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRasterSamplesEXT (GLuint samples, GLboolean fixedsamplelocations); +#endif +#endif /* GL_EXT_raster_multisample */ + +#ifndef GL_EXT_read_format_bgra +#define GL_EXT_read_format_bgra 1 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT 0x8366 +#endif /* GL_EXT_read_format_bgra */ + +#ifndef GL_EXT_render_snorm +#define GL_EXT_render_snorm 1 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM_EXT 0x8F98 +#define GL_RG16_SNORM_EXT 0x8F99 +#define GL_RGBA16_SNORM_EXT 0x8F9B +#endif /* GL_EXT_render_snorm */ + +#ifndef GL_EXT_robustness +#define GL_EXT_robustness 1 +#define GL_GUILTY_CONTEXT_RESET_EXT 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_EXT 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_EXT 0x8255 +#define GL_CONTEXT_ROBUST_ACCESS_EXT 0x90F3 +#define GL_RESET_NOTIFICATION_STRATEGY_EXT 0x8256 +#define GL_LOSE_CONTEXT_ON_RESET_EXT 0x8252 +#define GL_NO_RESET_NOTIFICATION_EXT 0x8261 +typedef GLenum (GL_APIENTRYP PFNGLGETGRAPHICSRESETSTATUSEXTPROC) (void); +typedef void (GL_APIENTRYP PFNGLREADNPIXELSEXTPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusEXT (void); +GL_APICALL void GL_APIENTRY glReadnPixelsEXT (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GL_APICALL void GL_APIENTRY glGetnUniformfvEXT (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetnUniformivEXT (GLuint program, GLint location, GLsizei bufSize, GLint *params); +#endif +#endif /* GL_EXT_robustness */ + +#ifndef GL_EXT_sRGB +#define GL_EXT_sRGB 1 +#define GL_SRGB_EXT 0x8C40 +#define GL_SRGB_ALPHA_EXT 0x8C42 +#define GL_SRGB8_ALPHA8_EXT 0x8C43 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT 0x8210 +#endif /* GL_EXT_sRGB */ + +#ifndef GL_EXT_sRGB_write_control +#define GL_EXT_sRGB_write_control 1 +#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 +#endif /* GL_EXT_sRGB_write_control */ + +#ifndef GL_EXT_semaphore +#define GL_EXT_semaphore 1 +#define GL_LAYOUT_GENERAL_EXT 0x958D +#define GL_LAYOUT_COLOR_ATTACHMENT_EXT 0x958E +#define GL_LAYOUT_DEPTH_STENCIL_ATTACHMENT_EXT 0x958F +#define GL_LAYOUT_DEPTH_STENCIL_READ_ONLY_EXT 0x9590 +#define GL_LAYOUT_SHADER_READ_ONLY_EXT 0x9591 +#define GL_LAYOUT_TRANSFER_SRC_EXT 0x9592 +#define GL_LAYOUT_TRANSFER_DST_EXT 0x9593 +#define GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT 0x9530 +#define GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT 0x9531 +typedef void (GL_APIENTRYP PFNGLGENSEMAPHORESEXTPROC) (GLsizei n, GLuint *semaphores); +typedef void (GL_APIENTRYP PFNGLDELETESEMAPHORESEXTPROC) (GLsizei n, const GLuint *semaphores); +typedef GLboolean (GL_APIENTRYP PFNGLISSEMAPHOREEXTPROC) (GLuint semaphore); +typedef void (GL_APIENTRYP PFNGLSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, const GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLGETSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLWAITSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +typedef void (GL_APIENTRYP PFNGLSIGNALSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGenSemaphoresEXT (GLsizei n, GLuint *semaphores); +GL_APICALL void GL_APIENTRY glDeleteSemaphoresEXT (GLsizei n, const GLuint *semaphores); +GL_APICALL GLboolean GL_APIENTRY glIsSemaphoreEXT (GLuint semaphore); +GL_APICALL void GL_APIENTRY glSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, const GLuint64 *params); +GL_APICALL void GL_APIENTRY glGetSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, GLuint64 *params); +GL_APICALL void GL_APIENTRY glWaitSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +GL_APICALL void GL_APIENTRY glSignalSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#endif +#endif /* GL_EXT_semaphore */ + +#ifndef GL_EXT_semaphore_fd +#define GL_EXT_semaphore_fd 1 +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREFDEXTPROC) (GLuint semaphore, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportSemaphoreFdEXT (GLuint semaphore, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_semaphore_fd */ + +#ifndef GL_EXT_semaphore_win32 +#define GL_EXT_semaphore_win32 1 +#define GL_HANDLE_TYPE_D3D12_FENCE_EXT 0x9594 +#define GL_D3D12_FENCE_VALUE_EXT 0x9595 +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREWIN32HANDLEEXTPROC) (GLuint semaphore, GLenum handleType, void *handle); +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREWIN32NAMEEXTPROC) (GLuint semaphore, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportSemaphoreWin32HandleEXT (GLuint semaphore, GLenum handleType, void *handle); +GL_APICALL void GL_APIENTRY glImportSemaphoreWin32NameEXT (GLuint semaphore, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_semaphore_win32 */ + +#ifndef GL_EXT_separate_depth_stencil +#define GL_EXT_separate_depth_stencil 1 +#endif /* GL_EXT_separate_depth_stencil */ + +#ifndef GL_EXT_separate_shader_objects +#define GL_EXT_separate_shader_objects 1 +#define GL_ACTIVE_PROGRAM_EXT 0x8259 +#define GL_VERTEX_SHADER_BIT_EXT 0x00000001 +#define GL_FRAGMENT_SHADER_BIT_EXT 0x00000002 +#define GL_ALL_SHADER_BITS_EXT 0xFFFFFFFF +#define GL_PROGRAM_SEPARABLE_EXT 0x8258 +#define GL_PROGRAM_PIPELINE_BINDING_EXT 0x825A +typedef void (GL_APIENTRYP PFNGLACTIVESHADERPROGRAMEXTPROC) (GLuint pipeline, GLuint program); +typedef void (GL_APIENTRYP PFNGLBINDPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef GLuint (GL_APIENTRYP PFNGLCREATESHADERPROGRAMVEXTPROC) (GLenum type, GLsizei count, const GLchar **strings); +typedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPIPELINESEXTPROC) (GLsizei n, const GLuint *pipelines); +typedef void (GL_APIENTRYP PFNGLGENPROGRAMPIPELINESEXTPROC) (GLsizei n, GLuint *pipelines); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGEXTPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEIVEXTPROC) (GLuint pipeline, GLenum pname, GLint *params); +typedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef void (GL_APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUSEPROGRAMSTAGESEXTPROC) (GLuint pipeline, GLbitfield stages, GLuint program); +typedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UIEXTPROC) (GLuint program, GLint location, GLuint v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glActiveShaderProgramEXT (GLuint pipeline, GLuint program); +GL_APICALL void GL_APIENTRY glBindProgramPipelineEXT (GLuint pipeline); +GL_APICALL GLuint GL_APIENTRY glCreateShaderProgramvEXT (GLenum type, GLsizei count, const GLchar **strings); +GL_APICALL void GL_APIENTRY glDeleteProgramPipelinesEXT (GLsizei n, const GLuint *pipelines); +GL_APICALL void GL_APIENTRY glGenProgramPipelinesEXT (GLsizei n, GLuint *pipelines); +GL_APICALL void GL_APIENTRY glGetProgramPipelineInfoLogEXT (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetProgramPipelineivEXT (GLuint pipeline, GLenum pname, GLint *params); +GL_APICALL GLboolean GL_APIENTRY glIsProgramPipelineEXT (GLuint pipeline); +GL_APICALL void GL_APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat v0); +GL_APICALL void GL_APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint v0); +GL_APICALL void GL_APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GL_APICALL void GL_APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint v0, GLint v1); +GL_APICALL void GL_APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GL_APICALL void GL_APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GL_APICALL void GL_APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GL_APICALL void GL_APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GL_APICALL void GL_APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUseProgramStagesEXT (GLuint pipeline, GLbitfield stages, GLuint program); +GL_APICALL void GL_APIENTRY glValidateProgramPipelineEXT (GLuint pipeline); +GL_APICALL void GL_APIENTRY glProgramUniform1uiEXT (GLuint program, GLint location, GLuint v0); +GL_APICALL void GL_APIENTRY glProgramUniform2uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1); +GL_APICALL void GL_APIENTRY glProgramUniform3uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GL_APICALL void GL_APIENTRY glProgramUniform4uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GL_APICALL void GL_APIENTRY glProgramUniform1uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform2uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform3uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform4uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_EXT_separate_shader_objects */ + +#ifndef GL_EXT_shader_framebuffer_fetch +#define GL_EXT_shader_framebuffer_fetch 1 +#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT 0x8A52 +#endif /* GL_EXT_shader_framebuffer_fetch */ + +#ifndef GL_EXT_shader_framebuffer_fetch_non_coherent +#define GL_EXT_shader_framebuffer_fetch_non_coherent 1 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFetchBarrierEXT (void); +#endif +#endif /* GL_EXT_shader_framebuffer_fetch_non_coherent */ + +#ifndef GL_EXT_shader_group_vote +#define GL_EXT_shader_group_vote 1 +#endif /* GL_EXT_shader_group_vote */ + +#ifndef GL_EXT_shader_implicit_conversions +#define GL_EXT_shader_implicit_conversions 1 +#endif /* GL_EXT_shader_implicit_conversions */ + +#ifndef GL_EXT_shader_integer_mix +#define GL_EXT_shader_integer_mix 1 +#endif /* GL_EXT_shader_integer_mix */ + +#ifndef GL_EXT_shader_io_blocks +#define GL_EXT_shader_io_blocks 1 +#endif /* GL_EXT_shader_io_blocks */ + +#ifndef GL_EXT_shader_non_constant_global_initializers +#define GL_EXT_shader_non_constant_global_initializers 1 +#endif /* GL_EXT_shader_non_constant_global_initializers */ + +#ifndef GL_EXT_shader_pixel_local_storage +#define GL_EXT_shader_pixel_local_storage 1 +#define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63 +#define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_SIZE_EXT 0x8F67 +#define GL_SHADER_PIXEL_LOCAL_STORAGE_EXT 0x8F64 +#endif /* GL_EXT_shader_pixel_local_storage */ + +#ifndef GL_EXT_shader_pixel_local_storage2 +#define GL_EXT_shader_pixel_local_storage2 1 +#define GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_FAST_SIZE_EXT 0x9650 +#define GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_SIZE_EXT 0x9651 +#define GL_FRAMEBUFFER_INCOMPLETE_INSUFFICIENT_SHADER_COMBINED_LOCAL_STORAGE_EXT 0x9652 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC) (GLuint target, GLsizei size); +typedef GLsizei (GL_APIENTRYP PFNGLGETFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC) (GLuint target); +typedef void (GL_APIENTRYP PFNGLCLEARPIXELLOCALSTORAGEUIEXTPROC) (GLsizei offset, GLsizei n, const GLuint *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferPixelLocalStorageSizeEXT (GLuint target, GLsizei size); +GL_APICALL GLsizei GL_APIENTRY glGetFramebufferPixelLocalStorageSizeEXT (GLuint target); +GL_APICALL void GL_APIENTRY glClearPixelLocalStorageuiEXT (GLsizei offset, GLsizei n, const GLuint *values); +#endif +#endif /* GL_EXT_shader_pixel_local_storage2 */ + +#ifndef GL_EXT_shader_samples_identical +#define GL_EXT_shader_samples_identical 1 +#endif /* GL_EXT_shader_samples_identical */ + +#ifndef GL_EXT_shader_texture_lod +#define GL_EXT_shader_texture_lod 1 +#endif /* GL_EXT_shader_texture_lod */ + +#ifndef GL_EXT_shadow_samplers +#define GL_EXT_shadow_samplers 1 +#define GL_TEXTURE_COMPARE_MODE_EXT 0x884C +#define GL_TEXTURE_COMPARE_FUNC_EXT 0x884D +#define GL_COMPARE_REF_TO_TEXTURE_EXT 0x884E +#define GL_SAMPLER_2D_SHADOW_EXT 0x8B62 +#endif /* GL_EXT_shadow_samplers */ + +#ifndef GL_EXT_sparse_texture +#define GL_EXT_sparse_texture 1 +#define GL_TEXTURE_SPARSE_EXT 0x91A6 +#define GL_VIRTUAL_PAGE_SIZE_INDEX_EXT 0x91A7 +#define GL_NUM_SPARSE_LEVELS_EXT 0x91AA +#define GL_NUM_VIRTUAL_PAGE_SIZES_EXT 0x91A8 +#define GL_VIRTUAL_PAGE_SIZE_X_EXT 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_EXT 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_EXT 0x9197 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_TEXTURE_3D 0x806F +#define GL_MAX_SPARSE_TEXTURE_SIZE_EXT 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_EXT 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_EXT 0x919A +#define GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_EXT 0x91A9 +typedef void (GL_APIENTRYP PFNGLTEXPAGECOMMITMENTEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexPageCommitmentEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#endif +#endif /* GL_EXT_sparse_texture */ + +#ifndef GL_EXT_sparse_texture2 +#define GL_EXT_sparse_texture2 1 +#endif /* GL_EXT_sparse_texture2 */ + +#ifndef GL_EXT_tessellation_point_size +#define GL_EXT_tessellation_point_size 1 +#endif /* GL_EXT_tessellation_point_size */ + +#ifndef GL_EXT_tessellation_shader +#define GL_EXT_tessellation_shader 1 +#define GL_PATCHES_EXT 0x000E +#define GL_PATCH_VERTICES_EXT 0x8E72 +#define GL_TESS_CONTROL_OUTPUT_VERTICES_EXT 0x8E75 +#define GL_TESS_GEN_MODE_EXT 0x8E76 +#define GL_TESS_GEN_SPACING_EXT 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER_EXT 0x8E78 +#define GL_TESS_GEN_POINT_MODE_EXT 0x8E79 +#define GL_ISOLINES_EXT 0x8E7A +#define GL_QUADS_EXT 0x0007 +#define GL_FRACTIONAL_ODD_EXT 0x8E7B +#define GL_FRACTIONAL_EVEN_EXT 0x8E7C +#define GL_MAX_PATCH_VERTICES_EXT 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL_EXT 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS_EXT 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS_EXT 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS_EXT 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS_EXT 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS_EXT 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS_EXT 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS_EXT 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS_EXT 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS_EXT 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS_EXT 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS_EXT 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS_EXT 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT 0x8E1F +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_EXT 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS_EXT 0x92CE +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS_EXT 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS_EXT 0x92D4 +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_EXT 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS_EXT 0x90CC +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS_EXT 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS_EXT 0x90D9 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED 0x8221 +#define GL_IS_PER_PATCH_EXT 0x92E7 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER_EXT 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER_EXT 0x9308 +#define GL_TESS_CONTROL_SHADER_EXT 0x8E88 +#define GL_TESS_EVALUATION_SHADER_EXT 0x8E87 +#define GL_TESS_CONTROL_SHADER_BIT_EXT 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT_EXT 0x00000010 +typedef void (GL_APIENTRYP PFNGLPATCHPARAMETERIEXTPROC) (GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPatchParameteriEXT (GLenum pname, GLint value); +#endif +#endif /* GL_EXT_tessellation_shader */ + +#ifndef GL_EXT_texture_border_clamp +#define GL_EXT_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_EXT 0x1004 +#define GL_CLAMP_TO_BORDER_EXT 0x812D +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIIVEXTPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIUIVEXTPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIIVEXTPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVEXTPROC) (GLuint sampler, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexParameterIivEXT (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexParameterIuivEXT (GLenum target, GLenum pname, const GLuint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIivEXT (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIuivEXT (GLenum target, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glSamplerParameterIivEXT (GLuint sampler, GLenum pname, const GLint *param); +GL_APICALL void GL_APIENTRY glSamplerParameterIuivEXT (GLuint sampler, GLenum pname, const GLuint *param); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIivEXT (GLuint sampler, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIuivEXT (GLuint sampler, GLenum pname, GLuint *params); +#endif +#endif /* GL_EXT_texture_border_clamp */ + +#ifndef GL_EXT_texture_buffer +#define GL_EXT_texture_buffer 1 +#define GL_TEXTURE_BUFFER_EXT 0x8C2A +#define GL_TEXTURE_BUFFER_BINDING_EXT 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT_EXT 0x919F +#define GL_SAMPLER_BUFFER_EXT 0x8DC2 +#define GL_INT_SAMPLER_BUFFER_EXT 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT 0x8DD8 +#define GL_IMAGE_BUFFER_EXT 0x9051 +#define GL_INT_IMAGE_BUFFER_EXT 0x905C +#define GL_UNSIGNED_INT_IMAGE_BUFFER_EXT 0x9067 +#define GL_TEXTURE_BUFFER_OFFSET_EXT 0x919D +#define GL_TEXTURE_BUFFER_SIZE_EXT 0x919E +typedef void (GL_APIENTRYP PFNGLTEXBUFFEREXTPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLTEXBUFFERRANGEEXTPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexBufferEXT (GLenum target, GLenum internalformat, GLuint buffer); +GL_APICALL void GL_APIENTRY glTexBufferRangeEXT (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_EXT_texture_buffer */ + +#ifndef GL_EXT_texture_compression_astc_decode_mode +#define GL_EXT_texture_compression_astc_decode_mode 1 +#define GL_TEXTURE_ASTC_DECODE_PRECISION_EXT 0x8F69 +#endif /* GL_EXT_texture_compression_astc_decode_mode */ + +#ifndef GL_EXT_texture_compression_bptc +#define GL_EXT_texture_compression_bptc 1 +#define GL_COMPRESSED_RGBA_BPTC_UNORM_EXT 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT 0x8E8F +#endif /* GL_EXT_texture_compression_bptc */ + +#ifndef GL_EXT_texture_compression_dxt1 +#define GL_EXT_texture_compression_dxt1 1 +#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 +#endif /* GL_EXT_texture_compression_dxt1 */ + +#ifndef GL_EXT_texture_compression_rgtc +#define GL_EXT_texture_compression_rgtc 1 +#define GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC +#define GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD +#define GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE +#endif /* GL_EXT_texture_compression_rgtc */ + +#ifndef GL_EXT_texture_compression_s3tc +#define GL_EXT_texture_compression_s3tc 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 +#endif /* GL_EXT_texture_compression_s3tc */ + +#ifndef GL_EXT_texture_compression_s3tc_srgb +#define GL_EXT_texture_compression_s3tc_srgb 1 +#define GL_COMPRESSED_SRGB_S3TC_DXT1_EXT 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT 0x8C4F +#endif /* GL_EXT_texture_compression_s3tc_srgb */ + +#ifndef GL_EXT_texture_cube_map_array +#define GL_EXT_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_EXT 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_EXT 0x900A +#define GL_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_EXT 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900F +#define GL_IMAGE_CUBE_MAP_ARRAY_EXT 0x9054 +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x905F +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x906A +#endif /* GL_EXT_texture_cube_map_array */ + +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_EXT_texture_filter_anisotropic 1 +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF +#endif /* GL_EXT_texture_filter_anisotropic */ + +#ifndef GL_EXT_texture_filter_minmax +#define GL_EXT_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_EXT 0x9366 +#define GL_WEIGHTED_AVERAGE_EXT 0x9367 +#endif /* GL_EXT_texture_filter_minmax */ + +#ifndef GL_EXT_texture_format_BGRA8888 +#define GL_EXT_texture_format_BGRA8888 1 +#endif /* GL_EXT_texture_format_BGRA8888 */ + +#ifndef GL_EXT_texture_format_sRGB_override +#define GL_EXT_texture_format_sRGB_override 1 +#define GL_TEXTURE_FORMAT_SRGB_OVERRIDE_EXT 0x8FBF +#endif /* GL_EXT_texture_format_sRGB_override */ + +#ifndef GL_EXT_texture_mirror_clamp_to_edge +#define GL_EXT_texture_mirror_clamp_to_edge 1 +#define GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 +#endif /* GL_EXT_texture_mirror_clamp_to_edge */ + +#ifndef GL_EXT_texture_norm16 +#define GL_EXT_texture_norm16 1 +#define GL_R16_EXT 0x822A +#define GL_RG16_EXT 0x822C +#define GL_RGBA16_EXT 0x805B +#define GL_RGB16_EXT 0x8054 +#define GL_RGB16_SNORM_EXT 0x8F9A +#endif /* GL_EXT_texture_norm16 */ + +#ifndef GL_EXT_texture_query_lod +#define GL_EXT_texture_query_lod 1 +#endif /* GL_EXT_texture_query_lod */ + +#ifndef GL_EXT_texture_rg +#define GL_EXT_texture_rg 1 +#define GL_RED_EXT 0x1903 +#define GL_RG_EXT 0x8227 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B +#endif /* GL_EXT_texture_rg */ + +#ifndef GL_EXT_texture_sRGB_R8 +#define GL_EXT_texture_sRGB_R8 1 +#define GL_SR8_EXT 0x8FBD +#endif /* GL_EXT_texture_sRGB_R8 */ + +#ifndef GL_EXT_texture_sRGB_RG8 +#define GL_EXT_texture_sRGB_RG8 1 +#define GL_SRG8_EXT 0x8FBE +#endif /* GL_EXT_texture_sRGB_RG8 */ + +#ifndef GL_EXT_texture_sRGB_decode +#define GL_EXT_texture_sRGB_decode 1 +#define GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 +#define GL_DECODE_EXT 0x8A49 +#define GL_SKIP_DECODE_EXT 0x8A4A +#endif /* GL_EXT_texture_sRGB_decode */ + +#ifndef GL_EXT_texture_shadow_lod +#define GL_EXT_texture_shadow_lod 1 +#endif /* GL_EXT_texture_shadow_lod */ + +#ifndef GL_EXT_texture_storage +#define GL_EXT_texture_storage 1 +#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F +#define GL_ALPHA8_EXT 0x803C +#define GL_LUMINANCE8_EXT 0x8040 +#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 +#define GL_RGBA32F_EXT 0x8814 +#define GL_RGB32F_EXT 0x8815 +#define GL_ALPHA32F_EXT 0x8816 +#define GL_LUMINANCE32F_EXT 0x8818 +#define GL_LUMINANCE_ALPHA32F_EXT 0x8819 +#define GL_ALPHA16F_EXT 0x881C +#define GL_LUMINANCE16F_EXT 0x881E +#define GL_LUMINANCE_ALPHA16F_EXT 0x881F +#define GL_R32F_EXT 0x822E +#define GL_RG32F_EXT 0x8230 +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorage1DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GL_APICALL void GL_APIENTRY glTexStorage2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glTexStorage3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GL_APICALL void GL_APIENTRY glTextureStorage1DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GL_APICALL void GL_APIENTRY glTextureStorage2DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glTextureStorage3DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_EXT_texture_storage */ + +#ifndef GL_EXT_texture_storage_compression +#define GL_EXT_texture_storage_compression 1 +#define GL_NUM_SURFACE_COMPRESSION_FIXED_RATES_EXT 0x8F6E +#define GL_SURFACE_COMPRESSION_FIXED_RATE_1BPC_EXT 0x96C4 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_2BPC_EXT 0x96C5 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_3BPC_EXT 0x96C6 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_4BPC_EXT 0x96C7 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_5BPC_EXT 0x96C8 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_6BPC_EXT 0x96C9 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_7BPC_EXT 0x96CA +#define GL_SURFACE_COMPRESSION_FIXED_RATE_8BPC_EXT 0x96CB +#define GL_SURFACE_COMPRESSION_FIXED_RATE_9BPC_EXT 0x96CC +#define GL_SURFACE_COMPRESSION_FIXED_RATE_10BPC_EXT 0x96CD +#define GL_SURFACE_COMPRESSION_FIXED_RATE_11BPC_EXT 0x96CE +#define GL_SURFACE_COMPRESSION_FIXED_RATE_12BPC_EXT 0x96CF +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEATTRIBS2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, const GLint* attrib_list); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEATTRIBS3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorageAttribs2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, const GLint* attrib_list); +GL_APICALL void GL_APIENTRY glTexStorageAttribs3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, const GLint* attrib_list); +#endif +#endif /* GL_EXT_texture_storage_compression */ + +#ifndef GL_EXT_texture_type_2_10_10_10_REV +#define GL_EXT_texture_type_2_10_10_10_REV 1 +#define GL_UNSIGNED_INT_2_10_10_10_REV_EXT 0x8368 +#endif /* GL_EXT_texture_type_2_10_10_10_REV */ + +#ifndef GL_EXT_texture_view +#define GL_EXT_texture_view 1 +#define GL_TEXTURE_VIEW_MIN_LEVEL_EXT 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS_EXT 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER_EXT 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS_EXT 0x82DE +typedef void (GL_APIENTRYP PFNGLTEXTUREVIEWEXTPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureViewEXT (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#endif +#endif /* GL_EXT_texture_view */ + +#ifndef GL_EXT_unpack_subimage +#define GL_EXT_unpack_subimage 1 +#define GL_UNPACK_ROW_LENGTH_EXT 0x0CF2 +#define GL_UNPACK_SKIP_ROWS_EXT 0x0CF3 +#define GL_UNPACK_SKIP_PIXELS_EXT 0x0CF4 +#endif /* GL_EXT_unpack_subimage */ + +#ifndef GL_EXT_win32_keyed_mutex +#define GL_EXT_win32_keyed_mutex 1 +typedef GLboolean (GL_APIENTRYP PFNGLACQUIREKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key, GLuint timeout); +typedef GLboolean (GL_APIENTRYP PFNGLRELEASEKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLboolean GL_APIENTRY glAcquireKeyedMutexWin32EXT (GLuint memory, GLuint64 key, GLuint timeout); +GL_APICALL GLboolean GL_APIENTRY glReleaseKeyedMutexWin32EXT (GLuint memory, GLuint64 key); +#endif +#endif /* GL_EXT_win32_keyed_mutex */ + +#ifndef GL_EXT_window_rectangles +#define GL_EXT_window_rectangles 1 +#define GL_INCLUSIVE_EXT 0x8F10 +#define GL_EXCLUSIVE_EXT 0x8F11 +#define GL_WINDOW_RECTANGLE_EXT 0x8F12 +#define GL_WINDOW_RECTANGLE_MODE_EXT 0x8F13 +#define GL_MAX_WINDOW_RECTANGLES_EXT 0x8F14 +#define GL_NUM_WINDOW_RECTANGLES_EXT 0x8F15 +typedef void (GL_APIENTRYP PFNGLWINDOWRECTANGLESEXTPROC) (GLenum mode, GLsizei count, const GLint *box); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glWindowRectanglesEXT (GLenum mode, GLsizei count, const GLint *box); +#endif +#endif /* GL_EXT_window_rectangles */ + +#ifndef GL_FJ_shader_binary_GCCSO +#define GL_FJ_shader_binary_GCCSO 1 +#define GL_GCCSO_SHADER_BINARY_FJ 0x9260 +#endif /* GL_FJ_shader_binary_GCCSO */ + +#ifndef GL_IMG_bindless_texture +#define GL_IMG_bindless_texture 1 +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTUREHANDLEIMGPROC) (GLuint texture); +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTURESAMPLERHANDLEIMGPROC) (GLuint texture, GLuint sampler); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64IMGPROC) (GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64VIMGPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64IMGPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VIMGPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint64 GL_APIENTRY glGetTextureHandleIMG (GLuint texture); +GL_APICALL GLuint64 GL_APIENTRY glGetTextureSamplerHandleIMG (GLuint texture, GLuint sampler); +GL_APICALL void GL_APIENTRY glUniformHandleui64IMG (GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glUniformHandleui64vIMG (GLint location, GLsizei count, const GLuint64 *value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64IMG (GLuint program, GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64vIMG (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +#endif +#endif /* GL_IMG_bindless_texture */ + +#ifndef GL_IMG_framebuffer_downsample +#define GL_IMG_framebuffer_downsample 1 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_AND_DOWNSAMPLE_IMG 0x913C +#define GL_NUM_DOWNSAMPLE_SCALES_IMG 0x913D +#define GL_DOWNSAMPLE_SCALES_IMG 0x913E +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SCALE_IMG 0x913F +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DDOWNSAMPLEIMGPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint xscale, GLint yscale); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERDOWNSAMPLEIMGPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, GLint xscale, GLint yscale); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTexture2DDownsampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint xscale, GLint yscale); +GL_APICALL void GL_APIENTRY glFramebufferTextureLayerDownsampleIMG (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, GLint xscale, GLint yscale); +#endif +#endif /* GL_IMG_framebuffer_downsample */ + +#ifndef GL_IMG_multisampled_render_to_texture +#define GL_IMG_multisampled_render_to_texture 1 +#define GL_RENDERBUFFER_SAMPLES_IMG 0x9133 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_IMG 0x9134 +#define GL_MAX_SAMPLES_IMG 0x9135 +#define GL_TEXTURE_SAMPLES_IMG 0x9136 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEIMGPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEIMGPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleIMG (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#endif +#endif /* GL_IMG_multisampled_render_to_texture */ + +#ifndef GL_IMG_program_binary +#define GL_IMG_program_binary 1 +#define GL_SGX_PROGRAM_BINARY_IMG 0x9130 +#endif /* GL_IMG_program_binary */ + +#ifndef GL_IMG_read_format +#define GL_IMG_read_format 1 +#define GL_BGRA_IMG 0x80E1 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV_IMG 0x8365 +#endif /* GL_IMG_read_format */ + +#ifndef GL_IMG_shader_binary +#define GL_IMG_shader_binary 1 +#define GL_SGX_BINARY_IMG 0x8C0A +#endif /* GL_IMG_shader_binary */ + +#ifndef GL_IMG_texture_compression_pvrtc +#define GL_IMG_texture_compression_pvrtc 1 +#define GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG 0x8C00 +#define GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG 0x8C01 +#define GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG 0x8C02 +#define GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG 0x8C03 +#endif /* GL_IMG_texture_compression_pvrtc */ + +#ifndef GL_IMG_texture_compression_pvrtc2 +#define GL_IMG_texture_compression_pvrtc2 1 +#define GL_COMPRESSED_RGBA_PVRTC_2BPPV2_IMG 0x9137 +#define GL_COMPRESSED_RGBA_PVRTC_4BPPV2_IMG 0x9138 +#endif /* GL_IMG_texture_compression_pvrtc2 */ + +#ifndef GL_IMG_texture_filter_cubic +#define GL_IMG_texture_filter_cubic 1 +#define GL_CUBIC_IMG 0x9139 +#define GL_CUBIC_MIPMAP_NEAREST_IMG 0x913A +#define GL_CUBIC_MIPMAP_LINEAR_IMG 0x913B +#endif /* GL_IMG_texture_filter_cubic */ + +#ifndef GL_INTEL_blackhole_render +#define GL_INTEL_blackhole_render 1 +#define GL_BLACKHOLE_RENDER_INTEL 0x83FC +#endif /* GL_INTEL_blackhole_render */ + +#ifndef GL_INTEL_conservative_rasterization +#define GL_INTEL_conservative_rasterization 1 +#define GL_CONSERVATIVE_RASTERIZATION_INTEL 0x83FE +#endif /* GL_INTEL_conservative_rasterization */ + +#ifndef GL_INTEL_framebuffer_CMAA +#define GL_INTEL_framebuffer_CMAA 1 +typedef void (GL_APIENTRYP PFNGLAPPLYFRAMEBUFFERATTACHMENTCMAAINTELPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glApplyFramebufferAttachmentCMAAINTEL (void); +#endif +#endif /* GL_INTEL_framebuffer_CMAA */ + +#ifndef GL_INTEL_performance_query +#define GL_INTEL_performance_query 1 +#define GL_PERFQUERY_SINGLE_CONTEXT_INTEL 0x00000000 +#define GL_PERFQUERY_GLOBAL_CONTEXT_INTEL 0x00000001 +#define GL_PERFQUERY_WAIT_INTEL 0x83FB +#define GL_PERFQUERY_FLUSH_INTEL 0x83FA +#define GL_PERFQUERY_DONOT_FLUSH_INTEL 0x83F9 +#define GL_PERFQUERY_COUNTER_EVENT_INTEL 0x94F0 +#define GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL 0x94F1 +#define GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL 0x94F2 +#define GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL 0x94F3 +#define GL_PERFQUERY_COUNTER_RAW_INTEL 0x94F4 +#define GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL 0x94F5 +#define GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL 0x94F8 +#define GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL 0x94F9 +#define GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL 0x94FA +#define GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL 0x94FB +#define GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL 0x94FC +#define GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL 0x94FD +#define GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL 0x94FE +#define GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL 0x94FF +#define GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL 0x9500 +typedef void (GL_APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); +typedef void (GL_APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLGETFIRSTPERFQUERYIDINTELPROC) (GLuint *queryId); +typedef void (GL_APIENTRYP PFNGLGETNEXTPERFQUERYIDINTELPROC) (GLuint queryId, GLuint *nextQueryId); +typedef void (GL_APIENTRYP PFNGLGETPERFCOUNTERINFOINTELPROC) (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYIDBYNAMEINTELPROC) (GLchar *queryName, GLuint *queryId); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYINFOINTELPROC) (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); +GL_APICALL void GL_APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glGetFirstPerfQueryIdINTEL (GLuint *queryId); +GL_APICALL void GL_APIENTRY glGetNextPerfQueryIdINTEL (GLuint queryId, GLuint *nextQueryId); +GL_APICALL void GL_APIENTRY glGetPerfCounterInfoINTEL (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +GL_APICALL void GL_APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +GL_APICALL void GL_APIENTRY glGetPerfQueryIdByNameINTEL (GLchar *queryName, GLuint *queryId); +GL_APICALL void GL_APIENTRY glGetPerfQueryInfoINTEL (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#endif +#endif /* GL_INTEL_performance_query */ + +#ifndef GL_MESA_bgra +#define GL_MESA_bgra 1 +#define GL_BGR_EXT 0x80E0 +#endif /* GL_MESA_bgra */ + +#ifndef GL_MESA_framebuffer_flip_x +#define GL_MESA_framebuffer_flip_x 1 +#define GL_FRAMEBUFFER_FLIP_X_MESA 0x8BBC +#endif /* GL_MESA_framebuffer_flip_x */ + +#ifndef GL_MESA_framebuffer_flip_y +#define GL_MESA_framebuffer_flip_y 1 +#define GL_FRAMEBUFFER_FLIP_Y_MESA 0x8BBB +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERPARAMETERIMESAPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVMESAPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferParameteriMESA (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glGetFramebufferParameterivMESA (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_MESA_framebuffer_flip_y */ + +#ifndef GL_MESA_framebuffer_swap_xy +#define GL_MESA_framebuffer_swap_xy 1 +#define GL_FRAMEBUFFER_SWAP_XY_MESA 0x8BBD +#endif /* GL_MESA_framebuffer_swap_xy */ + +#ifndef GL_MESA_program_binary_formats +#define GL_MESA_program_binary_formats 1 +#define GL_PROGRAM_BINARY_FORMAT_MESA 0x875F +#endif /* GL_MESA_program_binary_formats */ + +#ifndef GL_MESA_shader_integer_functions +#define GL_MESA_shader_integer_functions 1 +#endif /* GL_MESA_shader_integer_functions */ + +#ifndef GL_NVX_blend_equation_advanced_multi_draw_buffers +#define GL_NVX_blend_equation_advanced_multi_draw_buffers 1 +#endif /* GL_NVX_blend_equation_advanced_multi_draw_buffers */ + +#ifndef GL_NV_bindless_texture +#define GL_NV_bindless_texture 1 +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTUREHANDLENVPROC) (GLuint texture); +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTURESAMPLERHANDLENVPROC) (GLuint texture, GLuint sampler); +typedef void (GL_APIENTRYP PFNGLMAKETEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef void (GL_APIENTRYP PFNGLMAKETEXTUREHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef GLuint64 (GL_APIENTRYP PFNGLGETIMAGEHANDLENVPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef void (GL_APIENTRYP PFNGLMAKEIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle, GLenum access); +typedef void (GL_APIENTRYP PFNGLMAKEIMAGEHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64NVPROC) (GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64VNVPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64NVPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef GLboolean (GL_APIENTRYP PFNGLISIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint64 GL_APIENTRY glGetTextureHandleNV (GLuint texture); +GL_APICALL GLuint64 GL_APIENTRY glGetTextureSamplerHandleNV (GLuint texture, GLuint sampler); +GL_APICALL void GL_APIENTRY glMakeTextureHandleResidentNV (GLuint64 handle); +GL_APICALL void GL_APIENTRY glMakeTextureHandleNonResidentNV (GLuint64 handle); +GL_APICALL GLuint64 GL_APIENTRY glGetImageHandleNV (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +GL_APICALL void GL_APIENTRY glMakeImageHandleResidentNV (GLuint64 handle, GLenum access); +GL_APICALL void GL_APIENTRY glMakeImageHandleNonResidentNV (GLuint64 handle); +GL_APICALL void GL_APIENTRY glUniformHandleui64NV (GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glUniformHandleui64vNV (GLint location, GLsizei count, const GLuint64 *value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64NV (GLuint program, GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +GL_APICALL GLboolean GL_APIENTRY glIsTextureHandleResidentNV (GLuint64 handle); +GL_APICALL GLboolean GL_APIENTRY glIsImageHandleResidentNV (GLuint64 handle); +#endif +#endif /* GL_NV_bindless_texture */ + +#ifndef GL_NV_blend_equation_advanced +#define GL_NV_blend_equation_advanced 1 +#define GL_BLEND_OVERLAP_NV 0x9281 +#define GL_BLEND_PREMULTIPLIED_SRC_NV 0x9280 +#define GL_BLUE_NV 0x1905 +#define GL_COLORBURN_NV 0x929A +#define GL_COLORDODGE_NV 0x9299 +#define GL_CONJOINT_NV 0x9284 +#define GL_CONTRAST_NV 0x92A1 +#define GL_DARKEN_NV 0x9297 +#define GL_DIFFERENCE_NV 0x929E +#define GL_DISJOINT_NV 0x9283 +#define GL_DST_ATOP_NV 0x928F +#define GL_DST_IN_NV 0x928B +#define GL_DST_NV 0x9287 +#define GL_DST_OUT_NV 0x928D +#define GL_DST_OVER_NV 0x9289 +#define GL_EXCLUSION_NV 0x92A0 +#define GL_GREEN_NV 0x1904 +#define GL_HARDLIGHT_NV 0x929B +#define GL_HARDMIX_NV 0x92A9 +#define GL_HSL_COLOR_NV 0x92AF +#define GL_HSL_HUE_NV 0x92AD +#define GL_HSL_LUMINOSITY_NV 0x92B0 +#define GL_HSL_SATURATION_NV 0x92AE +#define GL_INVERT_OVG_NV 0x92B4 +#define GL_INVERT_RGB_NV 0x92A3 +#define GL_LIGHTEN_NV 0x9298 +#define GL_LINEARBURN_NV 0x92A5 +#define GL_LINEARDODGE_NV 0x92A4 +#define GL_LINEARLIGHT_NV 0x92A7 +#define GL_MINUS_CLAMPED_NV 0x92B3 +#define GL_MINUS_NV 0x929F +#define GL_MULTIPLY_NV 0x9294 +#define GL_OVERLAY_NV 0x9296 +#define GL_PINLIGHT_NV 0x92A8 +#define GL_PLUS_CLAMPED_ALPHA_NV 0x92B2 +#define GL_PLUS_CLAMPED_NV 0x92B1 +#define GL_PLUS_DARKER_NV 0x9292 +#define GL_PLUS_NV 0x9291 +#define GL_RED_NV 0x1903 +#define GL_SCREEN_NV 0x9295 +#define GL_SOFTLIGHT_NV 0x929C +#define GL_SRC_ATOP_NV 0x928E +#define GL_SRC_IN_NV 0x928A +#define GL_SRC_NV 0x9286 +#define GL_SRC_OUT_NV 0x928C +#define GL_SRC_OVER_NV 0x9288 +#define GL_UNCORRELATED_NV 0x9282 +#define GL_VIVIDLIGHT_NV 0x92A6 +#define GL_XOR_NV 0x1506 +typedef void (GL_APIENTRYP PFNGLBLENDPARAMETERINVPROC) (GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLBLENDBARRIERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlendParameteriNV (GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glBlendBarrierNV (void); +#endif +#endif /* GL_NV_blend_equation_advanced */ + +#ifndef GL_NV_blend_equation_advanced_coherent +#define GL_NV_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_NV 0x9285 +#endif /* GL_NV_blend_equation_advanced_coherent */ + +#ifndef GL_NV_blend_minmax_factor +#define GL_NV_blend_minmax_factor 1 +#define GL_FACTOR_MIN_AMD 0x901C +#define GL_FACTOR_MAX_AMD 0x901D +#endif /* GL_NV_blend_minmax_factor */ + +#ifndef GL_NV_clip_space_w_scaling +#define GL_NV_clip_space_w_scaling 1 +#define GL_VIEWPORT_POSITION_W_SCALE_NV 0x937C +#define GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV 0x937D +#define GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV 0x937E +typedef void (GL_APIENTRYP PFNGLVIEWPORTPOSITIONWSCALENVPROC) (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportPositionWScaleNV (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#endif +#endif /* GL_NV_clip_space_w_scaling */ + +#ifndef GL_NV_compute_shader_derivatives +#define GL_NV_compute_shader_derivatives 1 +#endif /* GL_NV_compute_shader_derivatives */ + +#ifndef GL_NV_conditional_render +#define GL_NV_conditional_render 1 +#define GL_QUERY_WAIT_NV 0x8E13 +#define GL_QUERY_NO_WAIT_NV 0x8E14 +#define GL_QUERY_BY_REGION_WAIT_NV 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16 +typedef void (GL_APIENTRYP PFNGLBEGINCONDITIONALRENDERNVPROC) (GLuint id, GLenum mode); +typedef void (GL_APIENTRYP PFNGLENDCONDITIONALRENDERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBeginConditionalRenderNV (GLuint id, GLenum mode); +GL_APICALL void GL_APIENTRY glEndConditionalRenderNV (void); +#endif +#endif /* GL_NV_conditional_render */ + +#ifndef GL_NV_conservative_raster +#define GL_NV_conservative_raster 1 +#define GL_CONSERVATIVE_RASTERIZATION_NV 0x9346 +#define GL_SUBPIXEL_PRECISION_BIAS_X_BITS_NV 0x9347 +#define GL_SUBPIXEL_PRECISION_BIAS_Y_BITS_NV 0x9348 +#define GL_MAX_SUBPIXEL_PRECISION_BIAS_BITS_NV 0x9349 +typedef void (GL_APIENTRYP PFNGLSUBPIXELPRECISIONBIASNVPROC) (GLuint xbits, GLuint ybits); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glSubpixelPrecisionBiasNV (GLuint xbits, GLuint ybits); +#endif +#endif /* GL_NV_conservative_raster */ + +#ifndef GL_NV_conservative_raster_pre_snap +#define GL_NV_conservative_raster_pre_snap 1 +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV 0x9550 +#endif /* GL_NV_conservative_raster_pre_snap */ + +#ifndef GL_NV_conservative_raster_pre_snap_triangles +#define GL_NV_conservative_raster_pre_snap_triangles 1 +#define GL_CONSERVATIVE_RASTER_MODE_NV 0x954D +#define GL_CONSERVATIVE_RASTER_MODE_POST_SNAP_NV 0x954E +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_TRIANGLES_NV 0x954F +typedef void (GL_APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERINVPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glConservativeRasterParameteriNV (GLenum pname, GLint param); +#endif +#endif /* GL_NV_conservative_raster_pre_snap_triangles */ + +#ifndef GL_NV_copy_buffer +#define GL_NV_copy_buffer 1 +#define GL_COPY_READ_BUFFER_NV 0x8F36 +#define GL_COPY_WRITE_BUFFER_NV 0x8F37 +typedef void (GL_APIENTRYP PFNGLCOPYBUFFERSUBDATANVPROC) (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyBufferSubDataNV (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +#endif +#endif /* GL_NV_copy_buffer */ + +#ifndef GL_NV_coverage_sample +#define GL_NV_coverage_sample 1 +#define GL_COVERAGE_COMPONENT_NV 0x8ED0 +#define GL_COVERAGE_COMPONENT4_NV 0x8ED1 +#define GL_COVERAGE_ATTACHMENT_NV 0x8ED2 +#define GL_COVERAGE_BUFFERS_NV 0x8ED3 +#define GL_COVERAGE_SAMPLES_NV 0x8ED4 +#define GL_COVERAGE_ALL_FRAGMENTS_NV 0x8ED5 +#define GL_COVERAGE_EDGE_FRAGMENTS_NV 0x8ED6 +#define GL_COVERAGE_AUTOMATIC_NV 0x8ED7 +#define GL_COVERAGE_BUFFER_BIT_NV 0x00008000 +typedef void (GL_APIENTRYP PFNGLCOVERAGEMASKNVPROC) (GLboolean mask); +typedef void (GL_APIENTRYP PFNGLCOVERAGEOPERATIONNVPROC) (GLenum operation); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCoverageMaskNV (GLboolean mask); +GL_APICALL void GL_APIENTRY glCoverageOperationNV (GLenum operation); +#endif +#endif /* GL_NV_coverage_sample */ + +#ifndef GL_NV_depth_nonlinear +#define GL_NV_depth_nonlinear 1 +#define GL_DEPTH_COMPONENT16_NONLINEAR_NV 0x8E2C +#endif /* GL_NV_depth_nonlinear */ + +#ifndef GL_NV_draw_buffers +#define GL_NV_draw_buffers 1 +#define GL_MAX_DRAW_BUFFERS_NV 0x8824 +#define GL_DRAW_BUFFER0_NV 0x8825 +#define GL_DRAW_BUFFER1_NV 0x8826 +#define GL_DRAW_BUFFER2_NV 0x8827 +#define GL_DRAW_BUFFER3_NV 0x8828 +#define GL_DRAW_BUFFER4_NV 0x8829 +#define GL_DRAW_BUFFER5_NV 0x882A +#define GL_DRAW_BUFFER6_NV 0x882B +#define GL_DRAW_BUFFER7_NV 0x882C +#define GL_DRAW_BUFFER8_NV 0x882D +#define GL_DRAW_BUFFER9_NV 0x882E +#define GL_DRAW_BUFFER10_NV 0x882F +#define GL_DRAW_BUFFER11_NV 0x8830 +#define GL_DRAW_BUFFER12_NV 0x8831 +#define GL_DRAW_BUFFER13_NV 0x8832 +#define GL_DRAW_BUFFER14_NV 0x8833 +#define GL_DRAW_BUFFER15_NV 0x8834 +#define GL_COLOR_ATTACHMENT0_NV 0x8CE0 +#define GL_COLOR_ATTACHMENT1_NV 0x8CE1 +#define GL_COLOR_ATTACHMENT2_NV 0x8CE2 +#define GL_COLOR_ATTACHMENT3_NV 0x8CE3 +#define GL_COLOR_ATTACHMENT4_NV 0x8CE4 +#define GL_COLOR_ATTACHMENT5_NV 0x8CE5 +#define GL_COLOR_ATTACHMENT6_NV 0x8CE6 +#define GL_COLOR_ATTACHMENT7_NV 0x8CE7 +#define GL_COLOR_ATTACHMENT8_NV 0x8CE8 +#define GL_COLOR_ATTACHMENT9_NV 0x8CE9 +#define GL_COLOR_ATTACHMENT10_NV 0x8CEA +#define GL_COLOR_ATTACHMENT11_NV 0x8CEB +#define GL_COLOR_ATTACHMENT12_NV 0x8CEC +#define GL_COLOR_ATTACHMENT13_NV 0x8CED +#define GL_COLOR_ATTACHMENT14_NV 0x8CEE +#define GL_COLOR_ATTACHMENT15_NV 0x8CEF +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSNVPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawBuffersNV (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_NV_draw_buffers */ + +#ifndef GL_NV_draw_instanced +#define GL_NV_draw_instanced 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDNVPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDNVPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedNV (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedNV (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_NV_draw_instanced */ + +#ifndef GL_NV_draw_vulkan_image +#define GL_NV_draw_vulkan_image 1 +typedef void (GL_APIENTRY *GLVULKANPROCNV)(void); +typedef void (GL_APIENTRYP PFNGLDRAWVKIMAGENVPROC) (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +typedef GLVULKANPROCNV (GL_APIENTRYP PFNGLGETVKPROCADDRNVPROC) (const GLchar *name); +typedef void (GL_APIENTRYP PFNGLWAITVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (GL_APIENTRYP PFNGLSIGNALVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (GL_APIENTRYP PFNGLSIGNALVKFENCENVPROC) (GLuint64 vkFence); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawVkImageNV (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +GL_APICALL GLVULKANPROCNV GL_APIENTRY glGetVkProcAddrNV (const GLchar *name); +GL_APICALL void GL_APIENTRY glWaitVkSemaphoreNV (GLuint64 vkSemaphore); +GL_APICALL void GL_APIENTRY glSignalVkSemaphoreNV (GLuint64 vkSemaphore); +GL_APICALL void GL_APIENTRY glSignalVkFenceNV (GLuint64 vkFence); +#endif +#endif /* GL_NV_draw_vulkan_image */ + +#ifndef GL_NV_explicit_attrib_location +#define GL_NV_explicit_attrib_location 1 +#endif /* GL_NV_explicit_attrib_location */ + +#ifndef GL_NV_fbo_color_attachments +#define GL_NV_fbo_color_attachments 1 +#define GL_MAX_COLOR_ATTACHMENTS_NV 0x8CDF +#endif /* GL_NV_fbo_color_attachments */ + +#ifndef GL_NV_fence +#define GL_NV_fence 1 +#define GL_ALL_COMPLETED_NV 0x84F2 +#define GL_FENCE_STATUS_NV 0x84F3 +#define GL_FENCE_CONDITION_NV 0x84F4 +typedef void (GL_APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences); +typedef void (GL_APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences); +typedef GLboolean (GL_APIENTRYP PFNGLISFENCENVPROC) (GLuint fence); +typedef GLboolean (GL_APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence); +typedef void (GL_APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence); +typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences); +GL_APICALL void GL_APIENTRY glGenFencesNV (GLsizei n, GLuint *fences); +GL_APICALL GLboolean GL_APIENTRY glIsFenceNV (GLuint fence); +GL_APICALL GLboolean GL_APIENTRY glTestFenceNV (GLuint fence); +GL_APICALL void GL_APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glFinishFenceNV (GLuint fence); +GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition); +#endif +#endif /* GL_NV_fence */ + +#ifndef GL_NV_fill_rectangle +#define GL_NV_fill_rectangle 1 +#define GL_FILL_RECTANGLE_NV 0x933C +#endif /* GL_NV_fill_rectangle */ + +#ifndef GL_NV_fragment_coverage_to_color +#define GL_NV_fragment_coverage_to_color 1 +#define GL_FRAGMENT_COVERAGE_TO_COLOR_NV 0x92DD +#define GL_FRAGMENT_COVERAGE_COLOR_NV 0x92DE +typedef void (GL_APIENTRYP PFNGLFRAGMENTCOVERAGECOLORNVPROC) (GLuint color); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFragmentCoverageColorNV (GLuint color); +#endif +#endif /* GL_NV_fragment_coverage_to_color */ + +#ifndef GL_NV_fragment_shader_barycentric +#define GL_NV_fragment_shader_barycentric 1 +#endif /* GL_NV_fragment_shader_barycentric */ + +#ifndef GL_NV_fragment_shader_interlock +#define GL_NV_fragment_shader_interlock 1 +#endif /* GL_NV_fragment_shader_interlock */ + +#ifndef GL_NV_framebuffer_blit +#define GL_NV_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_NV 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_NV 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_NV 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_NV 0x8CAA +typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERNVPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlitFramebufferNV (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_NV_framebuffer_blit */ + +#ifndef GL_NV_framebuffer_mixed_samples +#define GL_NV_framebuffer_mixed_samples 1 +#define GL_COVERAGE_MODULATION_TABLE_NV 0x9331 +#define GL_COLOR_SAMPLES_NV 0x8E20 +#define GL_DEPTH_SAMPLES_NV 0x932D +#define GL_STENCIL_SAMPLES_NV 0x932E +#define GL_MIXED_DEPTH_SAMPLES_SUPPORTED_NV 0x932F +#define GL_MIXED_STENCIL_SAMPLES_SUPPORTED_NV 0x9330 +#define GL_COVERAGE_MODULATION_NV 0x9332 +#define GL_COVERAGE_MODULATION_TABLE_SIZE_NV 0x9333 +typedef void (GL_APIENTRYP PFNGLCOVERAGEMODULATIONTABLENVPROC) (GLsizei n, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLGETCOVERAGEMODULATIONTABLENVPROC) (GLsizei bufSize, GLfloat *v); +typedef void (GL_APIENTRYP PFNGLCOVERAGEMODULATIONNVPROC) (GLenum components); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCoverageModulationTableNV (GLsizei n, const GLfloat *v); +GL_APICALL void GL_APIENTRY glGetCoverageModulationTableNV (GLsizei bufSize, GLfloat *v); +GL_APICALL void GL_APIENTRY glCoverageModulationNV (GLenum components); +#endif +#endif /* GL_NV_framebuffer_mixed_samples */ + +#ifndef GL_NV_framebuffer_multisample +#define GL_NV_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_NV 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_NV 0x8D56 +#define GL_MAX_SAMPLES_NV 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLENVPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleNV (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_NV_framebuffer_multisample */ + +#ifndef GL_NV_generate_mipmap_sRGB +#define GL_NV_generate_mipmap_sRGB 1 +#endif /* GL_NV_generate_mipmap_sRGB */ + +#ifndef GL_NV_geometry_shader_passthrough +#define GL_NV_geometry_shader_passthrough 1 +#endif /* GL_NV_geometry_shader_passthrough */ + +#ifndef GL_NV_gpu_shader5 +#define GL_NV_gpu_shader5 1 +typedef khronos_int64_t GLint64EXT; +typedef khronos_uint64_t GLuint64EXT; +#define GL_INT64_NV 0x140E +#define GL_UNSIGNED_INT64_NV 0x140F +#define GL_INT8_NV 0x8FE0 +#define GL_INT8_VEC2_NV 0x8FE1 +#define GL_INT8_VEC3_NV 0x8FE2 +#define GL_INT8_VEC4_NV 0x8FE3 +#define GL_INT16_NV 0x8FE4 +#define GL_INT16_VEC2_NV 0x8FE5 +#define GL_INT16_VEC3_NV 0x8FE6 +#define GL_INT16_VEC4_NV 0x8FE7 +#define GL_INT64_VEC2_NV 0x8FE9 +#define GL_INT64_VEC3_NV 0x8FEA +#define GL_INT64_VEC4_NV 0x8FEB +#define GL_UNSIGNED_INT8_NV 0x8FEC +#define GL_UNSIGNED_INT8_VEC2_NV 0x8FED +#define GL_UNSIGNED_INT8_VEC3_NV 0x8FEE +#define GL_UNSIGNED_INT8_VEC4_NV 0x8FEF +#define GL_UNSIGNED_INT16_NV 0x8FF0 +#define GL_UNSIGNED_INT16_VEC2_NV 0x8FF1 +#define GL_UNSIGNED_INT16_VEC3_NV 0x8FF2 +#define GL_UNSIGNED_INT16_VEC4_NV 0x8FF3 +#define GL_UNSIGNED_INT64_VEC2_NV 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_NV 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_NV 0x8FF7 +#define GL_FLOAT16_NV 0x8FF8 +#define GL_FLOAT16_VEC2_NV 0x8FF9 +#define GL_FLOAT16_VEC3_NV 0x8FFA +#define GL_FLOAT16_VEC4_NV 0x8FFB +#define GL_PATCHES 0x000E +typedef void (GL_APIENTRYP PFNGLUNIFORM1I64NVPROC) (GLint location, GLint64EXT x); +typedef void (GL_APIENTRYP PFNGLUNIFORM2I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y); +typedef void (GL_APIENTRYP PFNGLUNIFORM3I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (GL_APIENTRYP PFNGLUNIFORM4I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (GL_APIENTRYP PFNGLUNIFORM1I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM1UI64NVPROC) (GLint location, GLuint64EXT x); +typedef void (GL_APIENTRYP PFNGLUNIFORM2UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (GL_APIENTRYP PFNGLUNIFORM3UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (GL_APIENTRYP PFNGLUNIFORM4UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (GL_APIENTRYP PFNGLUNIFORM1UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMI64VNVPROC) (GLuint program, GLint location, GLint64EXT *params); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1I64NVPROC) (GLuint program, GLint location, GLint64EXT x); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glUniform1i64NV (GLint location, GLint64EXT x); +GL_APICALL void GL_APIENTRY glUniform2i64NV (GLint location, GLint64EXT x, GLint64EXT y); +GL_APICALL void GL_APIENTRY glUniform3i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GL_APICALL void GL_APIENTRY glUniform4i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GL_APICALL void GL_APIENTRY glUniform1i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform2i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform3i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform4i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform1ui64NV (GLint location, GLuint64EXT x); +GL_APICALL void GL_APIENTRY glUniform2ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y); +GL_APICALL void GL_APIENTRY glUniform3ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GL_APICALL void GL_APIENTRY glUniform4ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GL_APICALL void GL_APIENTRY glUniform1ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform2ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform3ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform4ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glGetUniformi64vNV (GLuint program, GLint location, GLint64EXT *params); +GL_APICALL void GL_APIENTRY glProgramUniform1i64NV (GLuint program, GLint location, GLint64EXT x); +GL_APICALL void GL_APIENTRY glProgramUniform2i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +GL_APICALL void GL_APIENTRY glProgramUniform3i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GL_APICALL void GL_APIENTRY glProgramUniform4i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GL_APICALL void GL_APIENTRY glProgramUniform1i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform2i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform3i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform4i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform1ui64NV (GLuint program, GLint location, GLuint64EXT x); +GL_APICALL void GL_APIENTRY glProgramUniform2ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +GL_APICALL void GL_APIENTRY glProgramUniform3ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GL_APICALL void GL_APIENTRY glProgramUniform4ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GL_APICALL void GL_APIENTRY glProgramUniform1ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform2ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform3ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform4ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif +#endif /* GL_NV_gpu_shader5 */ + +#ifndef GL_NV_image_formats +#define GL_NV_image_formats 1 +#endif /* GL_NV_image_formats */ + +#ifndef GL_NV_instanced_arrays +#define GL_NV_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_NV 0x88FE +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORNVPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glVertexAttribDivisorNV (GLuint index, GLuint divisor); +#endif +#endif /* GL_NV_instanced_arrays */ + +#ifndef GL_NV_internalformat_sample_query +#define GL_NV_internalformat_sample_query 1 +#define GL_TEXTURE_2D_MULTISAMPLE 0x9100 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 +#define GL_MULTISAMPLES_NV 0x9371 +#define GL_SUPERSAMPLE_SCALE_X_NV 0x9372 +#define GL_SUPERSAMPLE_SCALE_Y_NV 0x9373 +#define GL_CONFORMANT_NV 0x9374 +typedef void (GL_APIENTRYP PFNGLGETINTERNALFORMATSAMPLEIVNVPROC) (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetInternalformatSampleivNV (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#endif +#endif /* GL_NV_internalformat_sample_query */ + +#ifndef GL_NV_memory_attachment +#define GL_NV_memory_attachment 1 +#define GL_ATTACHED_MEMORY_OBJECT_NV 0x95A4 +#define GL_ATTACHED_MEMORY_OFFSET_NV 0x95A5 +#define GL_MEMORY_ATTACHABLE_ALIGNMENT_NV 0x95A6 +#define GL_MEMORY_ATTACHABLE_SIZE_NV 0x95A7 +#define GL_MEMORY_ATTACHABLE_NV 0x95A8 +#define GL_DETACHED_MEMORY_INCARNATION_NV 0x95A9 +#define GL_DETACHED_TEXTURES_NV 0x95AA +#define GL_DETACHED_BUFFERS_NV 0x95AB +#define GL_MAX_DETACHED_TEXTURES_NV 0x95AC +#define GL_MAX_DETACHED_BUFFERS_NV 0x95AD +typedef void (GL_APIENTRYP PFNGLGETMEMORYOBJECTDETACHEDRESOURCESUIVNVPROC) (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +typedef void (GL_APIENTRYP PFNGLRESETMEMORYOBJECTPARAMETERNVPROC) (GLuint memory, GLenum pname); +typedef void (GL_APIENTRYP PFNGLTEXATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLBUFFERATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTUREATTACHMEMORYNVPROC) (GLuint texture, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERATTACHMEMORYNVPROC) (GLuint buffer, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetMemoryObjectDetachedResourcesuivNV (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +GL_APICALL void GL_APIENTRY glResetMemoryObjectParameterNV (GLuint memory, GLenum pname); +GL_APICALL void GL_APIENTRY glTexAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glBufferAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureAttachMemoryNV (GLuint texture, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glNamedBufferAttachMemoryNV (GLuint buffer, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_NV_memory_attachment */ + +#ifndef GL_NV_memory_object_sparse +#define GL_NV_memory_object_sparse 1 +typedef void (GL_APIENTRYP PFNGLBUFFERPAGECOMMITMENTMEMNVPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLTEXPAGECOMMITMENTMEMNVPROC) (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTMEMNVPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLTEXTUREPAGECOMMITMENTMEMNVPROC) (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferPageCommitmentMemNV (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GL_APICALL void GL_APIENTRY glTexPageCommitmentMemNV (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +GL_APICALL void GL_APIENTRY glNamedBufferPageCommitmentMemNV (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GL_APICALL void GL_APIENTRY glTexturePageCommitmentMemNV (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#endif +#endif /* GL_NV_memory_object_sparse */ + +#ifndef GL_NV_mesh_shader +#define GL_NV_mesh_shader 1 +#define GL_MESH_SHADER_NV 0x9559 +#define GL_TASK_SHADER_NV 0x955A +#define GL_MAX_MESH_UNIFORM_BLOCKS_NV 0x8E60 +#define GL_MAX_MESH_TEXTURE_IMAGE_UNITS_NV 0x8E61 +#define GL_MAX_MESH_IMAGE_UNIFORMS_NV 0x8E62 +#define GL_MAX_MESH_UNIFORM_COMPONENTS_NV 0x8E63 +#define GL_MAX_MESH_ATOMIC_COUNTER_BUFFERS_NV 0x8E64 +#define GL_MAX_MESH_ATOMIC_COUNTERS_NV 0x8E65 +#define GL_MAX_MESH_SHADER_STORAGE_BLOCKS_NV 0x8E66 +#define GL_MAX_COMBINED_MESH_UNIFORM_COMPONENTS_NV 0x8E67 +#define GL_MAX_TASK_UNIFORM_BLOCKS_NV 0x8E68 +#define GL_MAX_TASK_TEXTURE_IMAGE_UNITS_NV 0x8E69 +#define GL_MAX_TASK_IMAGE_UNIFORMS_NV 0x8E6A +#define GL_MAX_TASK_UNIFORM_COMPONENTS_NV 0x8E6B +#define GL_MAX_TASK_ATOMIC_COUNTER_BUFFERS_NV 0x8E6C +#define GL_MAX_TASK_ATOMIC_COUNTERS_NV 0x8E6D +#define GL_MAX_TASK_SHADER_STORAGE_BLOCKS_NV 0x8E6E +#define GL_MAX_COMBINED_TASK_UNIFORM_COMPONENTS_NV 0x8E6F +#define GL_MAX_MESH_WORK_GROUP_INVOCATIONS_NV 0x95A2 +#define GL_MAX_TASK_WORK_GROUP_INVOCATIONS_NV 0x95A3 +#define GL_MAX_MESH_TOTAL_MEMORY_SIZE_NV 0x9536 +#define GL_MAX_TASK_TOTAL_MEMORY_SIZE_NV 0x9537 +#define GL_MAX_MESH_OUTPUT_VERTICES_NV 0x9538 +#define GL_MAX_MESH_OUTPUT_PRIMITIVES_NV 0x9539 +#define GL_MAX_TASK_OUTPUT_COUNT_NV 0x953A +#define GL_MAX_DRAW_MESH_TASKS_COUNT_NV 0x953D +#define GL_MAX_MESH_VIEWS_NV 0x9557 +#define GL_MESH_OUTPUT_PER_VERTEX_GRANULARITY_NV 0x92DF +#define GL_MESH_OUTPUT_PER_PRIMITIVE_GRANULARITY_NV 0x9543 +#define GL_MAX_MESH_WORK_GROUP_SIZE_NV 0x953B +#define GL_MAX_TASK_WORK_GROUP_SIZE_NV 0x953C +#define GL_MESH_WORK_GROUP_SIZE_NV 0x953E +#define GL_TASK_WORK_GROUP_SIZE_NV 0x953F +#define GL_MESH_VERTICES_OUT_NV 0x9579 +#define GL_MESH_PRIMITIVES_OUT_NV 0x957A +#define GL_MESH_OUTPUT_TYPE_NV 0x957B +#define GL_UNIFORM_BLOCK_REFERENCED_BY_MESH_SHADER_NV 0x959C +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TASK_SHADER_NV 0x959D +#define GL_REFERENCED_BY_MESH_SHADER_NV 0x95A0 +#define GL_REFERENCED_BY_TASK_SHADER_NV 0x95A1 +#define GL_MESH_SHADER_BIT_NV 0x00000040 +#define GL_TASK_SHADER_BIT_NV 0x00000080 +#define GL_MESH_SUBROUTINE_NV 0x957C +#define GL_TASK_SUBROUTINE_NV 0x957D +#define GL_MESH_SUBROUTINE_UNIFORM_NV 0x957E +#define GL_TASK_SUBROUTINE_UNIFORM_NV 0x957F +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_MESH_SHADER_NV 0x959E +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TASK_SHADER_NV 0x959F +typedef void (GL_APIENTRYP PFNGLDRAWMESHTASKSNVPROC) (GLuint first, GLuint count); +typedef void (GL_APIENTRYP PFNGLDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect, GLsizei drawcount, GLsizei stride); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTCOUNTNVPROC) (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawMeshTasksNV (GLuint first, GLuint count); +GL_APICALL void GL_APIENTRY glDrawMeshTasksIndirectNV (GLintptr indirect); +GL_APICALL void GL_APIENTRY glMultiDrawMeshTasksIndirectNV (GLintptr indirect, GLsizei drawcount, GLsizei stride); +GL_APICALL void GL_APIENTRY glMultiDrawMeshTasksIndirectCountNV (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_NV_mesh_shader */ + +#ifndef GL_NV_non_square_matrices +#define GL_NV_non_square_matrices 1 +#define GL_FLOAT_MAT2x3_NV 0x8B65 +#define GL_FLOAT_MAT2x4_NV 0x8B66 +#define GL_FLOAT_MAT3x2_NV 0x8B67 +#define GL_FLOAT_MAT3x4_NV 0x8B68 +#define GL_FLOAT_MAT4x2_NV 0x8B69 +#define GL_FLOAT_MAT4x3_NV 0x8B6A +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2X3FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3X2FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2X4FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4X2FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3X4FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4X3FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glUniformMatrix2x3fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3x2fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix2x4fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4x2fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3x4fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4x3fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_NV_non_square_matrices */ + +#ifndef GL_NV_path_rendering +#define GL_NV_path_rendering 1 +typedef double GLdouble; +#define GL_PATH_FORMAT_SVG_NV 0x9070 +#define GL_PATH_FORMAT_PS_NV 0x9071 +#define GL_STANDARD_FONT_NAME_NV 0x9072 +#define GL_SYSTEM_FONT_NAME_NV 0x9073 +#define GL_FILE_NAME_NV 0x9074 +#define GL_PATH_STROKE_WIDTH_NV 0x9075 +#define GL_PATH_END_CAPS_NV 0x9076 +#define GL_PATH_INITIAL_END_CAP_NV 0x9077 +#define GL_PATH_TERMINAL_END_CAP_NV 0x9078 +#define GL_PATH_JOIN_STYLE_NV 0x9079 +#define GL_PATH_MITER_LIMIT_NV 0x907A +#define GL_PATH_DASH_CAPS_NV 0x907B +#define GL_PATH_INITIAL_DASH_CAP_NV 0x907C +#define GL_PATH_TERMINAL_DASH_CAP_NV 0x907D +#define GL_PATH_DASH_OFFSET_NV 0x907E +#define GL_PATH_CLIENT_LENGTH_NV 0x907F +#define GL_PATH_FILL_MODE_NV 0x9080 +#define GL_PATH_FILL_MASK_NV 0x9081 +#define GL_PATH_FILL_COVER_MODE_NV 0x9082 +#define GL_PATH_STROKE_COVER_MODE_NV 0x9083 +#define GL_PATH_STROKE_MASK_NV 0x9084 +#define GL_COUNT_UP_NV 0x9088 +#define GL_COUNT_DOWN_NV 0x9089 +#define GL_PATH_OBJECT_BOUNDING_BOX_NV 0x908A +#define GL_CONVEX_HULL_NV 0x908B +#define GL_BOUNDING_BOX_NV 0x908D +#define GL_TRANSLATE_X_NV 0x908E +#define GL_TRANSLATE_Y_NV 0x908F +#define GL_TRANSLATE_2D_NV 0x9090 +#define GL_TRANSLATE_3D_NV 0x9091 +#define GL_AFFINE_2D_NV 0x9092 +#define GL_AFFINE_3D_NV 0x9094 +#define GL_TRANSPOSE_AFFINE_2D_NV 0x9096 +#define GL_TRANSPOSE_AFFINE_3D_NV 0x9098 +#define GL_UTF8_NV 0x909A +#define GL_UTF16_NV 0x909B +#define GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV 0x909C +#define GL_PATH_COMMAND_COUNT_NV 0x909D +#define GL_PATH_COORD_COUNT_NV 0x909E +#define GL_PATH_DASH_ARRAY_COUNT_NV 0x909F +#define GL_PATH_COMPUTED_LENGTH_NV 0x90A0 +#define GL_PATH_FILL_BOUNDING_BOX_NV 0x90A1 +#define GL_PATH_STROKE_BOUNDING_BOX_NV 0x90A2 +#define GL_SQUARE_NV 0x90A3 +#define GL_ROUND_NV 0x90A4 +#define GL_TRIANGULAR_NV 0x90A5 +#define GL_BEVEL_NV 0x90A6 +#define GL_MITER_REVERT_NV 0x90A7 +#define GL_MITER_TRUNCATE_NV 0x90A8 +#define GL_SKIP_MISSING_GLYPH_NV 0x90A9 +#define GL_USE_MISSING_GLYPH_NV 0x90AA +#define GL_PATH_ERROR_POSITION_NV 0x90AB +#define GL_ACCUM_ADJACENT_PAIRS_NV 0x90AD +#define GL_ADJACENT_PAIRS_NV 0x90AE +#define GL_FIRST_TO_REST_NV 0x90AF +#define GL_PATH_GEN_MODE_NV 0x90B0 +#define GL_PATH_GEN_COEFF_NV 0x90B1 +#define GL_PATH_GEN_COMPONENTS_NV 0x90B3 +#define GL_PATH_STENCIL_FUNC_NV 0x90B7 +#define GL_PATH_STENCIL_REF_NV 0x90B8 +#define GL_PATH_STENCIL_VALUE_MASK_NV 0x90B9 +#define GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV 0x90BD +#define GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV 0x90BE +#define GL_PATH_COVER_DEPTH_FUNC_NV 0x90BF +#define GL_PATH_DASH_OFFSET_RESET_NV 0x90B4 +#define GL_MOVE_TO_RESETS_NV 0x90B5 +#define GL_MOVE_TO_CONTINUES_NV 0x90B6 +#define GL_CLOSE_PATH_NV 0x00 +#define GL_MOVE_TO_NV 0x02 +#define GL_RELATIVE_MOVE_TO_NV 0x03 +#define GL_LINE_TO_NV 0x04 +#define GL_RELATIVE_LINE_TO_NV 0x05 +#define GL_HORIZONTAL_LINE_TO_NV 0x06 +#define GL_RELATIVE_HORIZONTAL_LINE_TO_NV 0x07 +#define GL_VERTICAL_LINE_TO_NV 0x08 +#define GL_RELATIVE_VERTICAL_LINE_TO_NV 0x09 +#define GL_QUADRATIC_CURVE_TO_NV 0x0A +#define GL_RELATIVE_QUADRATIC_CURVE_TO_NV 0x0B +#define GL_CUBIC_CURVE_TO_NV 0x0C +#define GL_RELATIVE_CUBIC_CURVE_TO_NV 0x0D +#define GL_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0E +#define GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0F +#define GL_SMOOTH_CUBIC_CURVE_TO_NV 0x10 +#define GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV 0x11 +#define GL_SMALL_CCW_ARC_TO_NV 0x12 +#define GL_RELATIVE_SMALL_CCW_ARC_TO_NV 0x13 +#define GL_SMALL_CW_ARC_TO_NV 0x14 +#define GL_RELATIVE_SMALL_CW_ARC_TO_NV 0x15 +#define GL_LARGE_CCW_ARC_TO_NV 0x16 +#define GL_RELATIVE_LARGE_CCW_ARC_TO_NV 0x17 +#define GL_LARGE_CW_ARC_TO_NV 0x18 +#define GL_RELATIVE_LARGE_CW_ARC_TO_NV 0x19 +#define GL_RESTART_PATH_NV 0xF0 +#define GL_DUP_FIRST_CUBIC_CURVE_TO_NV 0xF2 +#define GL_DUP_LAST_CUBIC_CURVE_TO_NV 0xF4 +#define GL_RECT_NV 0xF6 +#define GL_CIRCULAR_CCW_ARC_TO_NV 0xF8 +#define GL_CIRCULAR_CW_ARC_TO_NV 0xFA +#define GL_CIRCULAR_TANGENT_ARC_TO_NV 0xFC +#define GL_ARC_TO_NV 0xFE +#define GL_RELATIVE_ARC_TO_NV 0xFF +#define GL_BOLD_BIT_NV 0x01 +#define GL_ITALIC_BIT_NV 0x02 +#define GL_GLYPH_WIDTH_BIT_NV 0x01 +#define GL_GLYPH_HEIGHT_BIT_NV 0x02 +#define GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV 0x04 +#define GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV 0x08 +#define GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV 0x10 +#define GL_GLYPH_VERTICAL_BEARING_X_BIT_NV 0x20 +#define GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV 0x40 +#define GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV 0x80 +#define GL_GLYPH_HAS_KERNING_BIT_NV 0x100 +#define GL_FONT_X_MIN_BOUNDS_BIT_NV 0x00010000 +#define GL_FONT_Y_MIN_BOUNDS_BIT_NV 0x00020000 +#define GL_FONT_X_MAX_BOUNDS_BIT_NV 0x00040000 +#define GL_FONT_Y_MAX_BOUNDS_BIT_NV 0x00080000 +#define GL_FONT_UNITS_PER_EM_BIT_NV 0x00100000 +#define GL_FONT_ASCENDER_BIT_NV 0x00200000 +#define GL_FONT_DESCENDER_BIT_NV 0x00400000 +#define GL_FONT_HEIGHT_BIT_NV 0x00800000 +#define GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV 0x01000000 +#define GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV 0x02000000 +#define GL_FONT_UNDERLINE_POSITION_BIT_NV 0x04000000 +#define GL_FONT_UNDERLINE_THICKNESS_BIT_NV 0x08000000 +#define GL_FONT_HAS_KERNING_BIT_NV 0x10000000 +#define GL_ROUNDED_RECT_NV 0xE8 +#define GL_RELATIVE_ROUNDED_RECT_NV 0xE9 +#define GL_ROUNDED_RECT2_NV 0xEA +#define GL_RELATIVE_ROUNDED_RECT2_NV 0xEB +#define GL_ROUNDED_RECT4_NV 0xEC +#define GL_RELATIVE_ROUNDED_RECT4_NV 0xED +#define GL_ROUNDED_RECT8_NV 0xEE +#define GL_RELATIVE_ROUNDED_RECT8_NV 0xEF +#define GL_RELATIVE_RECT_NV 0xF7 +#define GL_FONT_GLYPHS_AVAILABLE_NV 0x9368 +#define GL_FONT_TARGET_UNAVAILABLE_NV 0x9369 +#define GL_FONT_UNAVAILABLE_NV 0x936A +#define GL_FONT_UNINTELLIGIBLE_NV 0x936B +#define GL_CONIC_CURVE_TO_NV 0x1A +#define GL_RELATIVE_CONIC_CURVE_TO_NV 0x1B +#define GL_FONT_NUM_GLYPH_INDICES_BIT_NV 0x20000000 +#define GL_STANDARD_FONT_FORMAT_NV 0x936C +#define GL_PATH_PROJECTION_NV 0x1701 +#define GL_PATH_MODELVIEW_NV 0x1700 +#define GL_PATH_MODELVIEW_STACK_DEPTH_NV 0x0BA3 +#define GL_PATH_MODELVIEW_MATRIX_NV 0x0BA6 +#define GL_PATH_MAX_MODELVIEW_STACK_DEPTH_NV 0x0D36 +#define GL_PATH_TRANSPOSE_MODELVIEW_MATRIX_NV 0x84E3 +#define GL_PATH_PROJECTION_STACK_DEPTH_NV 0x0BA4 +#define GL_PATH_PROJECTION_MATRIX_NV 0x0BA7 +#define GL_PATH_MAX_PROJECTION_STACK_DEPTH_NV 0x0D38 +#define GL_PATH_TRANSPOSE_PROJECTION_MATRIX_NV 0x84E4 +#define GL_FRAGMENT_INPUT_NV 0x936D +typedef GLuint (GL_APIENTRYP PFNGLGENPATHSNVPROC) (GLsizei range); +typedef void (GL_APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); +typedef GLboolean (GL_APIENTRYP PFNGLISPATHNVPROC) (GLuint path); +typedef void (GL_APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); +typedef void (GL_APIENTRYP PFNGLPATHGLYPHSNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLPATHGLYPHRANGENVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLWEIGHTPATHSNVPROC) (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +typedef void (GL_APIENTRYP PFNGLCOPYPATHNVPROC) (GLuint resultPath, GLuint srcPath); +typedef void (GL_APIENTRYP PFNGLINTERPOLATEPATHSNVPROC) (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +typedef void (GL_APIENTRYP PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERINVPROC) (GLuint path, GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERFNVPROC) (GLuint path, GLenum pname, GLfloat value); +typedef void (GL_APIENTRYP PFNGLPATHDASHARRAYNVPROC) (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +typedef void (GL_APIENTRYP PFNGLPATHSTENCILFUNCNVPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLPATHSTENCILDEPTHOFFSETNVPROC) (GLfloat factor, GLfloat units); +typedef void (GL_APIENTRYP PFNGLSTENCILFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLSTENCILSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLPATHCOVERDEPTHFUNCNVPROC) (GLenum func); +typedef void (GL_APIENTRYP PFNGLCOVERFILLPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLCOVERSTROKEPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLGETPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, GLint *value); +typedef void (GL_APIENTRYP PFNGLGETPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, GLfloat *value); +typedef void (GL_APIENTRYP PFNGLGETPATHCOMMANDSNVPROC) (GLuint path, GLubyte *commands); +typedef void (GL_APIENTRYP PFNGLGETPATHCOORDSNVPROC) (GLuint path, GLfloat *coords); +typedef void (GL_APIENTRYP PFNGLGETPATHDASHARRAYNVPROC) (GLuint path, GLfloat *dashArray); +typedef void (GL_APIENTRYP PFNGLGETPATHMETRICSNVPROC) (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +typedef void (GL_APIENTRYP PFNGLGETPATHMETRICRANGENVPROC) (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +typedef void (GL_APIENTRYP PFNGLGETPATHSPACINGNVPROC) (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +typedef GLboolean (GL_APIENTRYP PFNGLISPOINTINFILLPATHNVPROC) (GLuint path, GLuint mask, GLfloat x, GLfloat y); +typedef GLboolean (GL_APIENTRYP PFNGLISPOINTINSTROKEPATHNVPROC) (GLuint path, GLfloat x, GLfloat y); +typedef GLfloat (GL_APIENTRYP PFNGLGETPATHLENGTHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments); +typedef GLboolean (GL_APIENTRYP PFNGLPOINTALONGPATHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +typedef void (GL_APIENTRYP PFNGLMATRIXLOAD3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOAD3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULT3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULT3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef GLenum (GL_APIENTRYP PFNGLPATHGLYPHINDEXRANGENVPROC) (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +typedef GLenum (GL_APIENTRYP PFNGLPATHGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef GLenum (GL_APIENTRYP PFNGLPATHMEMORYGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLPROGRAMPATHFRAGMENTINPUTGENNVPROC) (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMRESOURCEFVNVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLMATRIXFRUSTUMEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADIDENTITYEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXORTHOEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (GL_APIENTRYP PFNGLMATRIXPOPEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXPUSHEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXROTATEFEXTPROC) (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXROTATEDEXTPROC) (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +typedef void (GL_APIENTRYP PFNGLMATRIXSCALEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXSCALEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (GL_APIENTRYP PFNGLMATRIXTRANSLATEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXTRANSLATEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint GL_APIENTRY glGenPathsNV (GLsizei range); +GL_APICALL void GL_APIENTRY glDeletePathsNV (GLuint path, GLsizei range); +GL_APICALL GLboolean GL_APIENTRY glIsPathNV (GLuint path); +GL_APICALL void GL_APIENTRY glPathCommandsNV (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathCoordsNV (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathSubCommandsNV (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathSubCoordsNV (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathStringNV (GLuint path, GLenum format, GLsizei length, const void *pathString); +GL_APICALL void GL_APIENTRY glPathGlyphsNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glPathGlyphRangeNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glWeightPathsNV (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +GL_APICALL void GL_APIENTRY glCopyPathNV (GLuint resultPath, GLuint srcPath); +GL_APICALL void GL_APIENTRY glInterpolatePathsNV (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +GL_APICALL void GL_APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glPathParameterivNV (GLuint path, GLenum pname, const GLint *value); +GL_APICALL void GL_APIENTRY glPathParameteriNV (GLuint path, GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glPathParameterfvNV (GLuint path, GLenum pname, const GLfloat *value); +GL_APICALL void GL_APIENTRY glPathParameterfNV (GLuint path, GLenum pname, GLfloat value); +GL_APICALL void GL_APIENTRY glPathDashArrayNV (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +GL_APICALL void GL_APIENTRY glPathStencilFuncNV (GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glPathStencilDepthOffsetNV (GLfloat factor, GLfloat units); +GL_APICALL void GL_APIENTRY glStencilFillPathNV (GLuint path, GLenum fillMode, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilStrokePathNV (GLuint path, GLint reference, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glStencilStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glPathCoverDepthFuncNV (GLenum func); +GL_APICALL void GL_APIENTRY glCoverFillPathNV (GLuint path, GLenum coverMode); +GL_APICALL void GL_APIENTRY glCoverStrokePathNV (GLuint path, GLenum coverMode); +GL_APICALL void GL_APIENTRY glCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glGetPathParameterivNV (GLuint path, GLenum pname, GLint *value); +GL_APICALL void GL_APIENTRY glGetPathParameterfvNV (GLuint path, GLenum pname, GLfloat *value); +GL_APICALL void GL_APIENTRY glGetPathCommandsNV (GLuint path, GLubyte *commands); +GL_APICALL void GL_APIENTRY glGetPathCoordsNV (GLuint path, GLfloat *coords); +GL_APICALL void GL_APIENTRY glGetPathDashArrayNV (GLuint path, GLfloat *dashArray); +GL_APICALL void GL_APIENTRY glGetPathMetricsNV (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +GL_APICALL void GL_APIENTRY glGetPathMetricRangeNV (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +GL_APICALL void GL_APIENTRY glGetPathSpacingNV (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +GL_APICALL GLboolean GL_APIENTRY glIsPointInFillPathNV (GLuint path, GLuint mask, GLfloat x, GLfloat y); +GL_APICALL GLboolean GL_APIENTRY glIsPointInStrokePathNV (GLuint path, GLfloat x, GLfloat y); +GL_APICALL GLfloat GL_APIENTRY glGetPathLengthNV (GLuint path, GLsizei startSegment, GLsizei numSegments); +GL_APICALL GLboolean GL_APIENTRY glPointAlongPathNV (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +GL_APICALL void GL_APIENTRY glMatrixLoad3x2fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoad3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoadTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMult3x2fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMult3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathNV (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathNV (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL GLenum GL_APIENTRY glPathGlyphIndexRangeNV (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +GL_APICALL GLenum GL_APIENTRY glPathGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL GLenum GL_APIENTRY glPathMemoryGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glProgramPathFragmentInputGenNV (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +GL_APICALL void GL_APIENTRY glGetProgramResourcefvNV (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +GL_APICALL void GL_APIENTRY glMatrixFrustumEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GL_APICALL void GL_APIENTRY glMatrixLoadIdentityEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixLoadTransposefEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoadTransposedEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixLoadfEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoaddEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixMultTransposefEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultTransposedEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixMultfEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultdEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixOrthoEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GL_APICALL void GL_APIENTRY glMatrixPopEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixPushEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixRotatefEXT (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixRotatedEXT (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +GL_APICALL void GL_APIENTRY glMatrixScalefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixScaledEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GL_APICALL void GL_APIENTRY glMatrixTranslatefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixTranslatedEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +#endif +#endif /* GL_NV_path_rendering */ + +#ifndef GL_NV_path_rendering_shared_edge +#define GL_NV_path_rendering_shared_edge 1 +#define GL_SHARED_EDGE_NV 0xC0 +#endif /* GL_NV_path_rendering_shared_edge */ + +#ifndef GL_NV_pixel_buffer_object +#define GL_NV_pixel_buffer_object 1 +#define GL_PIXEL_PACK_BUFFER_NV 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_NV 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_NV 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_NV 0x88EF +#endif /* GL_NV_pixel_buffer_object */ + +#ifndef GL_NV_polygon_mode +#define GL_NV_polygon_mode 1 +#define GL_POLYGON_MODE_NV 0x0B40 +#define GL_POLYGON_OFFSET_POINT_NV 0x2A01 +#define GL_POLYGON_OFFSET_LINE_NV 0x2A02 +#define GL_POINT_NV 0x1B00 +#define GL_LINE_NV 0x1B01 +#define GL_FILL_NV 0x1B02 +typedef void (GL_APIENTRYP PFNGLPOLYGONMODENVPROC) (GLenum face, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPolygonModeNV (GLenum face, GLenum mode); +#endif +#endif /* GL_NV_polygon_mode */ + +#ifndef GL_NV_primitive_shading_rate +#define GL_NV_primitive_shading_rate 1 +#define GL_SHADING_RATE_IMAGE_PER_PRIMITIVE_NV 0x95B1 +#define GL_SHADING_RATE_IMAGE_PALETTE_COUNT_NV 0x95B2 +#endif /* GL_NV_primitive_shading_rate */ + +#ifndef GL_NV_read_buffer +#define GL_NV_read_buffer 1 +#define GL_READ_BUFFER_NV 0x0C02 +typedef void (GL_APIENTRYP PFNGLREADBUFFERNVPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glReadBufferNV (GLenum mode); +#endif +#endif /* GL_NV_read_buffer */ + +#ifndef GL_NV_read_buffer_front +#define GL_NV_read_buffer_front 1 +#endif /* GL_NV_read_buffer_front */ + +#ifndef GL_NV_read_depth +#define GL_NV_read_depth 1 +#endif /* GL_NV_read_depth */ + +#ifndef GL_NV_read_depth_stencil +#define GL_NV_read_depth_stencil 1 +#endif /* GL_NV_read_depth_stencil */ + +#ifndef GL_NV_read_stencil +#define GL_NV_read_stencil 1 +#endif /* GL_NV_read_stencil */ + +#ifndef GL_NV_representative_fragment_test +#define GL_NV_representative_fragment_test 1 +#define GL_REPRESENTATIVE_FRAGMENT_TEST_NV 0x937F +#endif /* GL_NV_representative_fragment_test */ + +#ifndef GL_NV_sRGB_formats +#define GL_NV_sRGB_formats 1 +#define GL_SLUMINANCE_NV 0x8C46 +#define GL_SLUMINANCE_ALPHA_NV 0x8C44 +#define GL_SRGB8_NV 0x8C41 +#define GL_SLUMINANCE8_NV 0x8C47 +#define GL_SLUMINANCE8_ALPHA8_NV 0x8C45 +#define GL_COMPRESSED_SRGB_S3TC_DXT1_NV 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV 0x8C4F +#define GL_ETC1_SRGB8_NV 0x88EE +#endif /* GL_NV_sRGB_formats */ + +#ifndef GL_NV_sample_locations +#define GL_NV_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_NV 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_NV 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_NV 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_NV 0x9340 +#define GL_SAMPLE_LOCATION_NV 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_NV 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_NV 0x9343 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLRESOLVEDEPTHVALUESNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferSampleLocationsfvNV (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glNamedFramebufferSampleLocationsfvNV (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glResolveDepthValuesNV (void); +#endif +#endif /* GL_NV_sample_locations */ + +#ifndef GL_NV_sample_mask_override_coverage +#define GL_NV_sample_mask_override_coverage 1 +#endif /* GL_NV_sample_mask_override_coverage */ + +#ifndef GL_NV_scissor_exclusive +#define GL_NV_scissor_exclusive 1 +#define GL_SCISSOR_TEST_EXCLUSIVE_NV 0x9555 +#define GL_SCISSOR_BOX_EXCLUSIVE_NV 0x9556 +typedef void (GL_APIENTRYP PFNGLSCISSOREXCLUSIVENVPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSOREXCLUSIVEARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glScissorExclusiveNV (GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorExclusiveArrayvNV (GLuint first, GLsizei count, const GLint *v); +#endif +#endif /* GL_NV_scissor_exclusive */ + +#ifndef GL_NV_shader_atomic_fp16_vector +#define GL_NV_shader_atomic_fp16_vector 1 +#endif /* GL_NV_shader_atomic_fp16_vector */ + +#ifndef GL_NV_shader_noperspective_interpolation +#define GL_NV_shader_noperspective_interpolation 1 +#endif /* GL_NV_shader_noperspective_interpolation */ + +#ifndef GL_NV_shader_subgroup_partitioned +#define GL_NV_shader_subgroup_partitioned 1 +#define GL_SUBGROUP_FEATURE_PARTITIONED_BIT_NV 0x00000100 +#endif /* GL_NV_shader_subgroup_partitioned */ + +#ifndef GL_NV_shader_texture_footprint +#define GL_NV_shader_texture_footprint 1 +#endif /* GL_NV_shader_texture_footprint */ + +#ifndef GL_NV_shading_rate_image +#define GL_NV_shading_rate_image 1 +#define GL_SHADING_RATE_IMAGE_NV 0x9563 +#define GL_SHADING_RATE_NO_INVOCATIONS_NV 0x9564 +#define GL_SHADING_RATE_1_INVOCATION_PER_PIXEL_NV 0x9565 +#define GL_SHADING_RATE_1_INVOCATION_PER_1X2_PIXELS_NV 0x9566 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X1_PIXELS_NV 0x9567 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X2_PIXELS_NV 0x9568 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X4_PIXELS_NV 0x9569 +#define GL_SHADING_RATE_1_INVOCATION_PER_4X2_PIXELS_NV 0x956A +#define GL_SHADING_RATE_1_INVOCATION_PER_4X4_PIXELS_NV 0x956B +#define GL_SHADING_RATE_2_INVOCATIONS_PER_PIXEL_NV 0x956C +#define GL_SHADING_RATE_4_INVOCATIONS_PER_PIXEL_NV 0x956D +#define GL_SHADING_RATE_8_INVOCATIONS_PER_PIXEL_NV 0x956E +#define GL_SHADING_RATE_16_INVOCATIONS_PER_PIXEL_NV 0x956F +#define GL_SHADING_RATE_IMAGE_BINDING_NV 0x955B +#define GL_SHADING_RATE_IMAGE_TEXEL_WIDTH_NV 0x955C +#define GL_SHADING_RATE_IMAGE_TEXEL_HEIGHT_NV 0x955D +#define GL_SHADING_RATE_IMAGE_PALETTE_SIZE_NV 0x955E +#define GL_MAX_COARSE_FRAGMENT_SAMPLES_NV 0x955F +#define GL_SHADING_RATE_SAMPLE_ORDER_DEFAULT_NV 0x95AE +#define GL_SHADING_RATE_SAMPLE_ORDER_PIXEL_MAJOR_NV 0x95AF +#define GL_SHADING_RATE_SAMPLE_ORDER_SAMPLE_MAJOR_NV 0x95B0 +typedef void (GL_APIENTRYP PFNGLBINDSHADINGRATEIMAGENVPROC) (GLuint texture); +typedef void (GL_APIENTRYP PFNGLGETSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint entry, GLenum *rate); +typedef void (GL_APIENTRYP PFNGLGETSHADINGRATESAMPLELOCATIONIVNVPROC) (GLenum rate, GLuint samples, GLuint index, GLint *location); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEIMAGEBARRIERNVPROC) (GLboolean synchronize); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +typedef void (GL_APIENTRYP PFNGLSHADINGRATESAMPLEORDERNVPROC) (GLenum order); +typedef void (GL_APIENTRYP PFNGLSHADINGRATESAMPLEORDERCUSTOMNVPROC) (GLenum rate, GLuint samples, const GLint *locations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindShadingRateImageNV (GLuint texture); +GL_APICALL void GL_APIENTRY glGetShadingRateImagePaletteNV (GLuint viewport, GLuint entry, GLenum *rate); +GL_APICALL void GL_APIENTRY glGetShadingRateSampleLocationivNV (GLenum rate, GLuint samples, GLuint index, GLint *location); +GL_APICALL void GL_APIENTRY glShadingRateImageBarrierNV (GLboolean synchronize); +GL_APICALL void GL_APIENTRY glShadingRateImagePaletteNV (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +GL_APICALL void GL_APIENTRY glShadingRateSampleOrderNV (GLenum order); +GL_APICALL void GL_APIENTRY glShadingRateSampleOrderCustomNV (GLenum rate, GLuint samples, const GLint *locations); +#endif +#endif /* GL_NV_shading_rate_image */ + +#ifndef GL_NV_shadow_samplers_array +#define GL_NV_shadow_samplers_array 1 +#define GL_SAMPLER_2D_ARRAY_SHADOW_NV 0x8DC4 +#endif /* GL_NV_shadow_samplers_array */ + +#ifndef GL_NV_shadow_samplers_cube +#define GL_NV_shadow_samplers_cube 1 +#define GL_SAMPLER_CUBE_SHADOW_NV 0x8DC5 +#endif /* GL_NV_shadow_samplers_cube */ + +#ifndef GL_NV_stereo_view_rendering +#define GL_NV_stereo_view_rendering 1 +#endif /* GL_NV_stereo_view_rendering */ + +#ifndef GL_NV_texture_border_clamp +#define GL_NV_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_NV 0x1004 +#define GL_CLAMP_TO_BORDER_NV 0x812D +#endif /* GL_NV_texture_border_clamp */ + +#ifndef GL_NV_texture_compression_s3tc_update +#define GL_NV_texture_compression_s3tc_update 1 +#endif /* GL_NV_texture_compression_s3tc_update */ + +#ifndef GL_NV_texture_npot_2D_mipmap +#define GL_NV_texture_npot_2D_mipmap 1 +#endif /* GL_NV_texture_npot_2D_mipmap */ + +#ifndef GL_NV_timeline_semaphore +#define GL_NV_timeline_semaphore 1 +#define GL_TIMELINE_SEMAPHORE_VALUE_NV 0x9595 +#define GL_SEMAPHORE_TYPE_NV 0x95B3 +#define GL_SEMAPHORE_TYPE_BINARY_NV 0x95B4 +#define GL_SEMAPHORE_TYPE_TIMELINE_NV 0x95B5 +#define GL_MAX_TIMELINE_SEMAPHORE_VALUE_DIFFERENCE_NV 0x95B6 +typedef void (GL_APIENTRYP PFNGLCREATESEMAPHORESNVPROC) (GLsizei n, GLuint *semaphores); +typedef void (GL_APIENTRYP PFNGLSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCreateSemaphoresNV (GLsizei n, GLuint *semaphores); +GL_APICALL void GL_APIENTRY glSemaphoreParameterivNV (GLuint semaphore, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glGetSemaphoreParameterivNV (GLuint semaphore, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_timeline_semaphore */ + +#ifndef GL_NV_viewport_array +#define GL_NV_viewport_array 1 +#define GL_MAX_VIEWPORTS_NV 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS_NV 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE_NV 0x825D +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX_NV 0x825F +typedef void (GL_APIENTRYP PFNGLVIEWPORTARRAYVNVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFVNVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLSCISSORARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDNVPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDVNVPROC) (GLuint index, const GLint *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEARRAYFVNVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEINDEXEDFNVPROC) (GLuint index, GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLGETFLOATI_VNVPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (GL_APIENTRYP PFNGLENABLEINVPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEINVPROC) (GLenum target, GLuint index); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDINVPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportArrayvNV (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glViewportIndexedfNV (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GL_APICALL void GL_APIENTRY glViewportIndexedfvNV (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glScissorArrayvNV (GLuint first, GLsizei count, const GLint *v); +GL_APICALL void GL_APIENTRY glScissorIndexedNV (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorIndexedvNV (GLuint index, const GLint *v); +GL_APICALL void GL_APIENTRY glDepthRangeArrayfvNV (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glDepthRangeIndexedfNV (GLuint index, GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glGetFloati_vNV (GLenum target, GLuint index, GLfloat *data); +GL_APICALL void GL_APIENTRY glEnableiNV (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiNV (GLenum target, GLuint index); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediNV (GLenum target, GLuint index); +#endif +#endif /* GL_NV_viewport_array */ + +#ifndef GL_NV_viewport_array2 +#define GL_NV_viewport_array2 1 +#endif /* GL_NV_viewport_array2 */ + +#ifndef GL_NV_viewport_swizzle +#define GL_NV_viewport_swizzle 1 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_X_NV 0x9350 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_X_NV 0x9351 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Y_NV 0x9352 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Y_NV 0x9353 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Z_NV 0x9354 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Z_NV 0x9355 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_W_NV 0x9356 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_W_NV 0x9357 +#define GL_VIEWPORT_SWIZZLE_X_NV 0x9358 +#define GL_VIEWPORT_SWIZZLE_Y_NV 0x9359 +#define GL_VIEWPORT_SWIZZLE_Z_NV 0x935A +#define GL_VIEWPORT_SWIZZLE_W_NV 0x935B +typedef void (GL_APIENTRYP PFNGLVIEWPORTSWIZZLENVPROC) (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportSwizzleNV (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#endif +#endif /* GL_NV_viewport_swizzle */ + +#ifndef GL_OVR_multiview +#define GL_OVR_multiview 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR 0x9630 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR 0x9632 +#define GL_MAX_VIEWS_OVR 0x9631 +#define GL_FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR 0x9633 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview */ + +#ifndef GL_OVR_multiview2 +#define GL_OVR_multiview2 1 +#endif /* GL_OVR_multiview2 */ + +#ifndef GL_OVR_multiview_multisampled_render_to_texture +#define GL_OVR_multiview_multisampled_render_to_texture 1 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTISAMPLEMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLsizei samples, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureMultisampleMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLsizei samples, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview_multisampled_render_to_texture */ + +#ifndef GL_QCOM_YUV_texture_gather +#define GL_QCOM_YUV_texture_gather 1 +#endif /* GL_QCOM_YUV_texture_gather */ + +#ifndef GL_QCOM_alpha_test +#define GL_QCOM_alpha_test 1 +#define GL_ALPHA_TEST_QCOM 0x0BC0 +#define GL_ALPHA_TEST_FUNC_QCOM 0x0BC1 +#define GL_ALPHA_TEST_REF_QCOM 0x0BC2 +typedef void (GL_APIENTRYP PFNGLALPHAFUNCQCOMPROC) (GLenum func, GLclampf ref); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glAlphaFuncQCOM (GLenum func, GLclampf ref); +#endif +#endif /* GL_QCOM_alpha_test */ + +#ifndef GL_QCOM_binning_control +#define GL_QCOM_binning_control 1 +#define GL_BINNING_CONTROL_HINT_QCOM 0x8FB0 +#define GL_CPU_OPTIMIZED_QCOM 0x8FB1 +#define GL_GPU_OPTIMIZED_QCOM 0x8FB2 +#define GL_RENDER_DIRECT_TO_FRAMEBUFFER_QCOM 0x8FB3 +#endif /* GL_QCOM_binning_control */ + +#ifndef GL_QCOM_driver_control +#define GL_QCOM_driver_control 1 +typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSQCOMPROC) (GLint *num, GLsizei size, GLuint *driverControls); +typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSTRINGQCOMPROC) (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); +typedef void (GL_APIENTRYP PFNGLENABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +typedef void (GL_APIENTRYP PFNGLDISABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetDriverControlsQCOM (GLint *num, GLsizei size, GLuint *driverControls); +GL_APICALL void GL_APIENTRY glGetDriverControlStringQCOM (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); +GL_APICALL void GL_APIENTRY glEnableDriverControlQCOM (GLuint driverControl); +GL_APICALL void GL_APIENTRY glDisableDriverControlQCOM (GLuint driverControl); +#endif +#endif /* GL_QCOM_driver_control */ + +#ifndef GL_QCOM_extended_get +#define GL_QCOM_extended_get 1 +#define GL_TEXTURE_WIDTH_QCOM 0x8BD2 +#define GL_TEXTURE_HEIGHT_QCOM 0x8BD3 +#define GL_TEXTURE_DEPTH_QCOM 0x8BD4 +#define GL_TEXTURE_INTERNAL_FORMAT_QCOM 0x8BD5 +#define GL_TEXTURE_FORMAT_QCOM 0x8BD6 +#define GL_TEXTURE_TYPE_QCOM 0x8BD7 +#define GL_TEXTURE_IMAGE_VALID_QCOM 0x8BD8 +#define GL_TEXTURE_NUM_LEVELS_QCOM 0x8BD9 +#define GL_TEXTURE_TARGET_QCOM 0x8BDA +#define GL_TEXTURE_OBJECT_VALID_QCOM 0x8BDB +#define GL_STATE_RESTORE 0x8BDC +typedef void (GL_APIENTRYP PFNGLEXTGETTEXTURESQCOMPROC) (GLuint *textures, GLint maxTextures, GLint *numTextures); +typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERSQCOMPROC) (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETRENDERBUFFERSQCOMPROC) (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETFRAMEBUFFERSQCOMPROC) (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETTEXLEVELPARAMETERIVQCOMPROC) (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLEXTTEXOBJECTSTATEOVERRIDEIQCOMPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLEXTGETTEXSUBIMAGEQCOMPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void *texels); +typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERPOINTERVQCOMPROC) (GLenum target, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtGetTexturesQCOM (GLuint *textures, GLint maxTextures, GLint *numTextures); +GL_APICALL void GL_APIENTRY glExtGetBuffersQCOM (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); +GL_APICALL void GL_APIENTRY glExtGetRenderbuffersQCOM (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); +GL_APICALL void GL_APIENTRY glExtGetFramebuffersQCOM (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); +GL_APICALL void GL_APIENTRY glExtGetTexLevelParameterivQCOM (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glExtTexObjectStateOverrideiQCOM (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glExtGetTexSubImageQCOM (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void *texels); +GL_APICALL void GL_APIENTRY glExtGetBufferPointervQCOM (GLenum target, void **params); +#endif +#endif /* GL_QCOM_extended_get */ + +#ifndef GL_QCOM_extended_get2 +#define GL_QCOM_extended_get2 1 +typedef void (GL_APIENTRYP PFNGLEXTGETSHADERSQCOMPROC) (GLuint *shaders, GLint maxShaders, GLint *numShaders); +typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMSQCOMPROC) (GLuint *programs, GLint maxPrograms, GLint *numPrograms); +typedef GLboolean (GL_APIENTRYP PFNGLEXTISPROGRAMBINARYQCOMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMBINARYSOURCEQCOMPROC) (GLuint program, GLenum shadertype, GLchar *source, GLint *length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtGetShadersQCOM (GLuint *shaders, GLint maxShaders, GLint *numShaders); +GL_APICALL void GL_APIENTRY glExtGetProgramsQCOM (GLuint *programs, GLint maxPrograms, GLint *numPrograms); +GL_APICALL GLboolean GL_APIENTRY glExtIsProgramBinaryQCOM (GLuint program); +GL_APICALL void GL_APIENTRY glExtGetProgramBinarySourceQCOM (GLuint program, GLenum shadertype, GLchar *source, GLint *length); +#endif +#endif /* GL_QCOM_extended_get2 */ + +#ifndef GL_QCOM_frame_extrapolation +#define GL_QCOM_frame_extrapolation 1 +typedef void (GL_APIENTRYP PFNGLEXTRAPOLATETEX2DQCOMPROC) (GLuint src1, GLuint src2, GLuint output, GLfloat scaleFactor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtrapolateTex2DQCOM (GLuint src1, GLuint src2, GLuint output, GLfloat scaleFactor); +#endif +#endif /* GL_QCOM_frame_extrapolation */ + +#ifndef GL_QCOM_framebuffer_foveated +#define GL_QCOM_framebuffer_foveated 1 +#define GL_FOVEATION_ENABLE_BIT_QCOM 0x00000001 +#define GL_FOVEATION_SCALED_BIN_METHOD_BIT_QCOM 0x00000002 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFOVEATIONCONFIGQCOMPROC) (GLuint framebuffer, GLuint numLayers, GLuint focalPointsPerLayer, GLuint requestedFeatures, GLuint *providedFeatures); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFOVEATIONPARAMETERSQCOMPROC) (GLuint framebuffer, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFoveationConfigQCOM (GLuint framebuffer, GLuint numLayers, GLuint focalPointsPerLayer, GLuint requestedFeatures, GLuint *providedFeatures); +GL_APICALL void GL_APIENTRY glFramebufferFoveationParametersQCOM (GLuint framebuffer, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#endif +#endif /* GL_QCOM_framebuffer_foveated */ + +#ifndef GL_QCOM_motion_estimation +#define GL_QCOM_motion_estimation 1 +#define GL_MOTION_ESTIMATION_SEARCH_BLOCK_X_QCOM 0x8C90 +#define GL_MOTION_ESTIMATION_SEARCH_BLOCK_Y_QCOM 0x8C91 +typedef void (GL_APIENTRYP PFNGLTEXESTIMATEMOTIONQCOMPROC) (GLuint ref, GLuint target, GLuint output); +typedef void (GL_APIENTRYP PFNGLTEXESTIMATEMOTIONREGIONSQCOMPROC) (GLuint ref, GLuint target, GLuint output, GLuint mask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexEstimateMotionQCOM (GLuint ref, GLuint target, GLuint output); +GL_APICALL void GL_APIENTRY glTexEstimateMotionRegionsQCOM (GLuint ref, GLuint target, GLuint output, GLuint mask); +#endif +#endif /* GL_QCOM_motion_estimation */ + +#ifndef GL_QCOM_perfmon_global_mode +#define GL_QCOM_perfmon_global_mode 1 +#define GL_PERFMON_GLOBAL_MODE_QCOM 0x8FA0 +#endif /* GL_QCOM_perfmon_global_mode */ + +#ifndef GL_QCOM_render_shared_exponent +#define GL_QCOM_render_shared_exponent 1 +#endif /* GL_QCOM_render_shared_exponent */ + +#ifndef GL_QCOM_shader_framebuffer_fetch_noncoherent +#define GL_QCOM_shader_framebuffer_fetch_noncoherent 1 +#define GL_FRAMEBUFFER_FETCH_NONCOHERENT_QCOM 0x96A2 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIERQCOMPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFetchBarrierQCOM (void); +#endif +#endif /* GL_QCOM_shader_framebuffer_fetch_noncoherent */ + +#ifndef GL_QCOM_shader_framebuffer_fetch_rate +#define GL_QCOM_shader_framebuffer_fetch_rate 1 +#endif /* GL_QCOM_shader_framebuffer_fetch_rate */ + +#ifndef GL_QCOM_shading_rate +#define GL_QCOM_shading_rate 1 +#define GL_SHADING_RATE_QCOM 0x96A4 +#define GL_SHADING_RATE_PRESERVE_ASPECT_RATIO_QCOM 0x96A5 +#define GL_SHADING_RATE_1X1_PIXELS_QCOM 0x96A6 +#define GL_SHADING_RATE_1X2_PIXELS_QCOM 0x96A7 +#define GL_SHADING_RATE_2X1_PIXELS_QCOM 0x96A8 +#define GL_SHADING_RATE_2X2_PIXELS_QCOM 0x96A9 +#define GL_SHADING_RATE_4X2_PIXELS_QCOM 0x96AC +#define GL_SHADING_RATE_4X4_PIXELS_QCOM 0x96AE +typedef void (GL_APIENTRYP PFNGLSHADINGRATEQCOMPROC) (GLenum rate); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glShadingRateQCOM (GLenum rate); +#endif +#endif /* GL_QCOM_shading_rate */ + +#ifndef GL_QCOM_texture_foveated +#define GL_QCOM_texture_foveated 1 +#define GL_TEXTURE_FOVEATED_FEATURE_BITS_QCOM 0x8BFB +#define GL_TEXTURE_FOVEATED_MIN_PIXEL_DENSITY_QCOM 0x8BFC +#define GL_TEXTURE_FOVEATED_FEATURE_QUERY_QCOM 0x8BFD +#define GL_TEXTURE_FOVEATED_NUM_FOCAL_POINTS_QUERY_QCOM 0x8BFE +#define GL_FRAMEBUFFER_INCOMPLETE_FOVEATION_QCOM 0x8BFF +typedef void (GL_APIENTRYP PFNGLTEXTUREFOVEATIONPARAMETERSQCOMPROC) (GLuint texture, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureFoveationParametersQCOM (GLuint texture, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#endif +#endif /* GL_QCOM_texture_foveated */ + +#ifndef GL_QCOM_texture_foveated2 +#define GL_QCOM_texture_foveated2 1 +#define GL_TEXTURE_FOVEATED_CUTOFF_DENSITY_QCOM 0x96A0 +#endif /* GL_QCOM_texture_foveated2 */ + +#ifndef GL_QCOM_texture_foveated_subsampled_layout +#define GL_QCOM_texture_foveated_subsampled_layout 1 +#define GL_FOVEATION_SUBSAMPLED_LAYOUT_METHOD_BIT_QCOM 0x00000004 +#define GL_MAX_SHADER_SUBSAMPLED_IMAGE_UNITS_QCOM 0x8FA1 +#endif /* GL_QCOM_texture_foveated_subsampled_layout */ + +#ifndef GL_QCOM_tiled_rendering +#define GL_QCOM_tiled_rendering 1 +#define GL_COLOR_BUFFER_BIT0_QCOM 0x00000001 +#define GL_COLOR_BUFFER_BIT1_QCOM 0x00000002 +#define GL_COLOR_BUFFER_BIT2_QCOM 0x00000004 +#define GL_COLOR_BUFFER_BIT3_QCOM 0x00000008 +#define GL_COLOR_BUFFER_BIT4_QCOM 0x00000010 +#define GL_COLOR_BUFFER_BIT5_QCOM 0x00000020 +#define GL_COLOR_BUFFER_BIT6_QCOM 0x00000040 +#define GL_COLOR_BUFFER_BIT7_QCOM 0x00000080 +#define GL_DEPTH_BUFFER_BIT0_QCOM 0x00000100 +#define GL_DEPTH_BUFFER_BIT1_QCOM 0x00000200 +#define GL_DEPTH_BUFFER_BIT2_QCOM 0x00000400 +#define GL_DEPTH_BUFFER_BIT3_QCOM 0x00000800 +#define GL_DEPTH_BUFFER_BIT4_QCOM 0x00001000 +#define GL_DEPTH_BUFFER_BIT5_QCOM 0x00002000 +#define GL_DEPTH_BUFFER_BIT6_QCOM 0x00004000 +#define GL_DEPTH_BUFFER_BIT7_QCOM 0x00008000 +#define GL_STENCIL_BUFFER_BIT0_QCOM 0x00010000 +#define GL_STENCIL_BUFFER_BIT1_QCOM 0x00020000 +#define GL_STENCIL_BUFFER_BIT2_QCOM 0x00040000 +#define GL_STENCIL_BUFFER_BIT3_QCOM 0x00080000 +#define GL_STENCIL_BUFFER_BIT4_QCOM 0x00100000 +#define GL_STENCIL_BUFFER_BIT5_QCOM 0x00200000 +#define GL_STENCIL_BUFFER_BIT6_QCOM 0x00400000 +#define GL_STENCIL_BUFFER_BIT7_QCOM 0x00800000 +#define GL_MULTISAMPLE_BUFFER_BIT0_QCOM 0x01000000 +#define GL_MULTISAMPLE_BUFFER_BIT1_QCOM 0x02000000 +#define GL_MULTISAMPLE_BUFFER_BIT2_QCOM 0x04000000 +#define GL_MULTISAMPLE_BUFFER_BIT3_QCOM 0x08000000 +#define GL_MULTISAMPLE_BUFFER_BIT4_QCOM 0x10000000 +#define GL_MULTISAMPLE_BUFFER_BIT5_QCOM 0x20000000 +#define GL_MULTISAMPLE_BUFFER_BIT6_QCOM 0x40000000 +#define GL_MULTISAMPLE_BUFFER_BIT7_QCOM 0x80000000 +typedef void (GL_APIENTRYP PFNGLSTARTTILINGQCOMPROC) (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); +typedef void (GL_APIENTRYP PFNGLENDTILINGQCOMPROC) (GLbitfield preserveMask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glStartTilingQCOM (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); +GL_APICALL void GL_APIENTRY glEndTilingQCOM (GLbitfield preserveMask); +#endif +#endif /* GL_QCOM_tiled_rendering */ + +#ifndef GL_QCOM_writeonly_rendering +#define GL_QCOM_writeonly_rendering 1 +#define GL_WRITEONLY_RENDERING_QCOM 0x8823 +#endif /* GL_QCOM_writeonly_rendering */ + +#ifndef GL_VIV_shader_binary +#define GL_VIV_shader_binary 1 +#define GL_SHADER_BINARY_VIV 0x8FC4 +#endif /* GL_VIV_shader_binary */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_gl2platform.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_gl2platform.h new file mode 100644 index 0000000..426796e --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_gl2platform.h @@ -0,0 +1,27 @@ +#ifndef __gl2platform_h_ +#define __gl2platform_h_ + +/* +** Copyright 2017-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +*/ + +/* Platform-specific types and definitions for OpenGL ES 2.X gl2.h + * + * Adopters may modify khrplatform.h and this file to suit their platform. + * Please contribute modifications back to Khronos as pull requests on the + * public github repository: + * https://github.com/KhronosGroup/OpenGL-Registry + */ + +/*#include */ + +#ifndef GL_APICALL +#define GL_APICALL KHRONOS_APICALL +#endif + +#ifndef GL_APIENTRY +#define GL_APIENTRY KHRONOS_APIENTRY +#endif + +#endif /* __gl2platform_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_khrplatform.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_khrplatform.h new file mode 100644 index 0000000..0164644 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_opengles2_khrplatform.h @@ -0,0 +1,311 @@ +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_pen.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_pen.h new file mode 100644 index 0000000..5182eeb --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_pen.h @@ -0,0 +1,127 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryPen + * + * SDL pen event handling. + * + * SDL provides an API for pressure-sensitive pen (stylus and/or eraser) + * handling, e.g., for input and drawing tablets or suitably equipped mobile / + * tablet devices. + * + * To get started with pens, simply handle SDL_EVENT_PEN_* events. When a pen + * starts providing input, SDL will assign it a unique SDL_PenID, which will + * remain for the life of the process, as long as the pen stays connected. + * + * Pens may provide more than simple touch input; they might have other axes, + * such as pressure, tilt, rotation, etc. + */ + +#ifndef SDL_pen_h_ +#define SDL_pen_h_ + +#include +#include +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SDL pen instance IDs. + * + * Zero is used to signify an invalid/null device. + * + * These show up in pen events when SDL sees input from them. They remain + * consistent as long as SDL can recognize a tool to be the same pen; but if a + * pen physically leaves the area and returns, it might get a new ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_PenID; + +/** + * The SDL_MouseID for mouse events simulated with pen input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PEN_MOUSEID ((SDL_MouseID)-2) + +/** + * The SDL_TouchID for touch events simulated with pen input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PEN_TOUCHID ((SDL_TouchID)-2) + + +/** + * Pen input flags, as reported by various pen events' `pen_state` field. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_PenInputFlags; + +#define SDL_PEN_INPUT_DOWN (1u << 0) /**< pen is pressed down */ +#define SDL_PEN_INPUT_BUTTON_1 (1u << 1) /**< button 1 is pressed */ +#define SDL_PEN_INPUT_BUTTON_2 (1u << 2) /**< button 2 is pressed */ +#define SDL_PEN_INPUT_BUTTON_3 (1u << 3) /**< button 3 is pressed */ +#define SDL_PEN_INPUT_BUTTON_4 (1u << 4) /**< button 4 is pressed */ +#define SDL_PEN_INPUT_BUTTON_5 (1u << 5) /**< button 5 is pressed */ +#define SDL_PEN_INPUT_ERASER_TIP (1u << 30) /**< eraser tip is used */ + +/** + * Pen axis indices. + * + * These are the valid values for the `axis` field in SDL_PenAxisEvent. All + * axes are either normalised to 0..1 or report a (positive or negative) angle + * in degrees, with 0.0 representing the centre. Not all pens/backends support + * all axes: unsupported axes are always zero. + * + * To convert angles for tilt and rotation into vector representation, use + * SDL_sinf on the XTILT, YTILT, or ROTATION component, for example: + * + * `SDL_sinf(xtilt * SDL_PI_F / 180.0)`. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PenAxis +{ + SDL_PEN_AXIS_PRESSURE, /**< Pen pressure. Unidirectional: 0 to 1.0 */ + SDL_PEN_AXIS_XTILT, /**< Pen horizontal tilt angle. Bidirectional: -90.0 to 90.0 (left-to-right). */ + SDL_PEN_AXIS_YTILT, /**< Pen vertical tilt angle. Bidirectional: -90.0 to 90.0 (top-to-down). */ + SDL_PEN_AXIS_DISTANCE, /**< Pen distance to drawing surface. Unidirectional: 0.0 to 1.0 */ + SDL_PEN_AXIS_ROTATION, /**< Pen barrel rotation. Bidirectional: -180 to 179.9 (clockwise, 0 is facing up, -180.0 is facing down). */ + SDL_PEN_AXIS_SLIDER, /**< Pen finger wheel or slider (e.g., Airbrush Pen). Unidirectional: 0 to 1.0 */ + SDL_PEN_AXIS_TANGENTIAL_PRESSURE, /**< Pressure from squeezing the pen ("barrel pressure"). */ + SDL_PEN_AXIS_COUNT /**< Total known pen axis types in this version of SDL. This number may grow in future releases! */ +} SDL_PenAxis; + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif + +#endif /* SDL_pen_h_ */ + diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_pixels.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_pixels.h new file mode 100644 index 0000000..39596c1 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_pixels.h @@ -0,0 +1,1441 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryPixels + * + * SDL offers facilities for pixel management. + * + * Largely these facilities deal with pixel _format_: what does this set of + * bits represent? + * + * If you mostly want to think of a pixel as some combination of red, green, + * blue, and maybe alpha intensities, this is all pretty straightforward, and + * in many cases, is enough information to build a perfectly fine game. + * + * However, the actual definition of a pixel is more complex than that: + * + * Pixels are a representation of a color in a particular color space. + * + * The first characteristic of a color space is the color type. SDL + * understands two different color types, RGB and YCbCr, or in SDL also + * referred to as YUV. + * + * RGB colors consist of red, green, and blue channels of color that are added + * together to represent the colors we see on the screen. + * + * https://en.wikipedia.org/wiki/RGB_color_model + * + * YCbCr colors represent colors as a Y luma brightness component and red and + * blue chroma color offsets. This color representation takes advantage of the + * fact that the human eye is more sensitive to brightness than the color in + * an image. The Cb and Cr components are often compressed and have lower + * resolution than the luma component. + * + * https://en.wikipedia.org/wiki/YCbCr + * + * When the color information in YCbCr is compressed, the Y pixels are left at + * full resolution and each Cr and Cb pixel represents an average of the color + * information in a block of Y pixels. The chroma location determines where in + * that block of pixels the color information is coming from. + * + * The color range defines how much of the pixel to use when converting a + * pixel into a color on the display. When the full color range is used, the + * entire numeric range of the pixel bits is significant. When narrow color + * range is used, for historical reasons, the pixel uses only a portion of the + * numeric range to represent colors. + * + * The color primaries and white point are a definition of the colors in the + * color space relative to the standard XYZ color space. + * + * https://en.wikipedia.org/wiki/CIE_1931_color_space + * + * The transfer characteristic, or opto-electrical transfer function (OETF), + * is the way a color is converted from mathematically linear space into a + * non-linear output signals. + * + * https://en.wikipedia.org/wiki/Rec._709#Transfer_characteristics + * + * The matrix coefficients are used to convert between YCbCr and RGB colors. + */ + +#ifndef SDL_pixels_h_ +#define SDL_pixels_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A fully opaque 8-bit alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_TRANSPARENT + */ +#define SDL_ALPHA_OPAQUE 255 + +/** + * A fully opaque floating point alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_TRANSPARENT_FLOAT + */ +#define SDL_ALPHA_OPAQUE_FLOAT 1.0f + +/** + * A fully transparent 8-bit alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_OPAQUE + */ +#define SDL_ALPHA_TRANSPARENT 0 + +/** + * A fully transparent floating point alpha value. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_ALPHA_OPAQUE_FLOAT + */ +#define SDL_ALPHA_TRANSPARENT_FLOAT 0.0f + +/** + * Pixel type. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PixelType +{ + SDL_PIXELTYPE_UNKNOWN, + SDL_PIXELTYPE_INDEX1, + SDL_PIXELTYPE_INDEX4, + SDL_PIXELTYPE_INDEX8, + SDL_PIXELTYPE_PACKED8, + SDL_PIXELTYPE_PACKED16, + SDL_PIXELTYPE_PACKED32, + SDL_PIXELTYPE_ARRAYU8, + SDL_PIXELTYPE_ARRAYU16, + SDL_PIXELTYPE_ARRAYU32, + SDL_PIXELTYPE_ARRAYF16, + SDL_PIXELTYPE_ARRAYF32, + /* appended at the end for compatibility with sdl2-compat: */ + SDL_PIXELTYPE_INDEX2 +} SDL_PixelType; + +/** + * Bitmap pixel order, high bit -> low bit. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_BitmapOrder +{ + SDL_BITMAPORDER_NONE, + SDL_BITMAPORDER_4321, + SDL_BITMAPORDER_1234 +} SDL_BitmapOrder; + +/** + * Packed component order, high bit -> low bit. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PackedOrder +{ + SDL_PACKEDORDER_NONE, + SDL_PACKEDORDER_XRGB, + SDL_PACKEDORDER_RGBX, + SDL_PACKEDORDER_ARGB, + SDL_PACKEDORDER_RGBA, + SDL_PACKEDORDER_XBGR, + SDL_PACKEDORDER_BGRX, + SDL_PACKEDORDER_ABGR, + SDL_PACKEDORDER_BGRA +} SDL_PackedOrder; + +/** + * Array component order, low byte -> high byte. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ArrayOrder +{ + SDL_ARRAYORDER_NONE, + SDL_ARRAYORDER_RGB, + SDL_ARRAYORDER_RGBA, + SDL_ARRAYORDER_ARGB, + SDL_ARRAYORDER_BGR, + SDL_ARRAYORDER_BGRA, + SDL_ARRAYORDER_ABGR +} SDL_ArrayOrder; + +/** + * Packed component layout. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PackedLayout +{ + SDL_PACKEDLAYOUT_NONE, + SDL_PACKEDLAYOUT_332, + SDL_PACKEDLAYOUT_4444, + SDL_PACKEDLAYOUT_1555, + SDL_PACKEDLAYOUT_5551, + SDL_PACKEDLAYOUT_565, + SDL_PACKEDLAYOUT_8888, + SDL_PACKEDLAYOUT_2101010, + SDL_PACKEDLAYOUT_1010102 +} SDL_PackedLayout; + +/** + * A macro for defining custom FourCC pixel formats. + * + * For example, defining SDL_PIXELFORMAT_YV12 looks like this: + * + * ```c + * SDL_DEFINE_PIXELFOURCC('Y', 'V', '1', '2') + * ``` + * + * \param A the first character of the FourCC code. + * \param B the second character of the FourCC code. + * \param C the third character of the FourCC code. + * \param D the fourth character of the FourCC code. + * \returns a format value in the style of SDL_PixelFormat. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_PIXELFOURCC(A, B, C, D) SDL_FOURCC(A, B, C, D) + +/** + * A macro for defining custom non-FourCC pixel formats. + * + * For example, defining SDL_PIXELFORMAT_RGBA8888 looks like this: + * + * ```c + * SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_8888, 32, 4) + * ``` + * + * \param type the type of the new format, probably a SDL_PixelType value. + * \param order the order of the new format, probably a SDL_BitmapOrder, + * SDL_PackedOrder, or SDL_ArrayOrder value. + * \param layout the layout of the new format, probably an SDL_PackedLayout + * value or zero. + * \param bits the number of bits per pixel of the new format. + * \param bytes the number of bytes per pixel of the new format. + * \returns a format value in the style of SDL_PixelFormat. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_PIXELFORMAT(type, order, layout, bits, bytes) \ + ((1 << 28) | ((type) << 24) | ((order) << 20) | ((layout) << 16) | \ + ((bits) << 8) | ((bytes) << 0)) + +/** + * A macro to retrieve the flags of an SDL_PixelFormat. + * + * This macro is generally not needed directly by an app, which should use + * specific tests, like SDL_ISPIXELFORMAT_FOURCC, instead. + * + * \param format an SDL_PixelFormat to check. + * \returns the flags of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELFLAG(format) (((format) >> 28) & 0x0F) + +/** + * A macro to retrieve the type of an SDL_PixelFormat. + * + * This is usually a value from the SDL_PixelType enumeration. + * + * \param format an SDL_PixelFormat to check. + * \returns the type of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELTYPE(format) (((format) >> 24) & 0x0F) + +/** + * A macro to retrieve the order of an SDL_PixelFormat. + * + * This is usually a value from the SDL_BitmapOrder, SDL_PackedOrder, or + * SDL_ArrayOrder enumerations, depending on the format type. + * + * \param format an SDL_PixelFormat to check. + * \returns the order of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELORDER(format) (((format) >> 20) & 0x0F) + +/** + * A macro to retrieve the layout of an SDL_PixelFormat. + * + * This is usually a value from the SDL_PackedLayout enumeration, or zero if a + * layout doesn't make sense for the format type. + * + * \param format an SDL_PixelFormat to check. + * \returns the layout of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PIXELLAYOUT(format) (((format) >> 16) & 0x0F) + +/** + * A macro to determine an SDL_PixelFormat's bits per pixel. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * FourCC formats will report zero here, as it rarely makes sense to measure + * them per-pixel. + * + * \param format an SDL_PixelFormat to check. + * \returns the bits-per-pixel of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BYTESPERPIXEL + */ +#define SDL_BITSPERPIXEL(format) \ + (SDL_ISPIXELFORMAT_FOURCC(format) ? 0 : (((format) >> 8) & 0xFF)) + +/** + * A macro to determine an SDL_PixelFormat's bytes per pixel. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * FourCC formats do their best here, but many of them don't have a meaningful + * measurement of bytes per pixel. + * + * \param format an SDL_PixelFormat to check. + * \returns the bytes-per-pixel of `format`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_BITSPERPIXEL + */ +#define SDL_BYTESPERPIXEL(format) \ + (SDL_ISPIXELFORMAT_FOURCC(format) ? \ + ((((format) == SDL_PIXELFORMAT_YUY2) || \ + ((format) == SDL_PIXELFORMAT_UYVY) || \ + ((format) == SDL_PIXELFORMAT_YVYU) || \ + ((format) == SDL_PIXELFORMAT_P010)) ? 2 : 1) : (((format) >> 0) & 0xFF)) + + +/** + * A macro to determine if an SDL_PixelFormat is an indexed format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is indexed, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_INDEXED(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX1) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX2) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX4) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_INDEX8))) + +/** + * A macro to determine if an SDL_PixelFormat is a packed format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is packed, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_PACKED(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED8) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED32))) + +/** + * A macro to determine if an SDL_PixelFormat is an array format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is an array, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_ARRAY(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU8) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYU32) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF32))) + +/** + * A macro to determine if an SDL_PixelFormat is a 10-bit format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is 10-bit, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_10BIT(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_PACKED32) && \ + (SDL_PIXELLAYOUT(format) == SDL_PACKEDLAYOUT_2101010))) + +/** + * A macro to determine if an SDL_PixelFormat is a floating point format. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format is 10-bit, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_FLOAT(format) \ + (!SDL_ISPIXELFORMAT_FOURCC(format) && \ + ((SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF16) || \ + (SDL_PIXELTYPE(format) == SDL_PIXELTYPE_ARRAYF32))) + +/** + * A macro to determine if an SDL_PixelFormat has an alpha channel. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format has alpha, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_ALPHA(format) \ + ((SDL_ISPIXELFORMAT_PACKED(format) && \ + ((SDL_PIXELORDER(format) == SDL_PACKEDORDER_ARGB) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_RGBA) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_ABGR) || \ + (SDL_PIXELORDER(format) == SDL_PACKEDORDER_BGRA))) || \ + (SDL_ISPIXELFORMAT_ARRAY(format) && \ + ((SDL_PIXELORDER(format) == SDL_ARRAYORDER_ARGB) || \ + (SDL_PIXELORDER(format) == SDL_ARRAYORDER_RGBA) || \ + (SDL_PIXELORDER(format) == SDL_ARRAYORDER_ABGR) || \ + (SDL_PIXELORDER(format) == SDL_ARRAYORDER_BGRA)))) + + +/** + * A macro to determine if an SDL_PixelFormat is a "FourCC" format. + * + * This covers custom and other unusual formats. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param format an SDL_PixelFormat to check. + * \returns true if the format has alpha, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISPIXELFORMAT_FOURCC(format) /* The flag is set to 1 because 0x1? is not in the printable ASCII range */ \ + ((format) && (SDL_PIXELFLAG(format) != 1)) + +/* Note: If you modify this enum, update SDL_GetPixelFormatName() */ + +/** + * Pixel format. + * + * SDL's pixel formats have the following naming convention: + * + * - Names with a list of components and a single bit count, such as RGB24 and + * ABGR32, define a platform-independent encoding into bytes in the order + * specified. For example, in RGB24 data, each pixel is encoded in 3 bytes + * (red, green, blue) in that order, and in ABGR32 data, each pixel is + * encoded in 4 bytes (alpha, blue, green, red) in that order. Use these + * names if the property of a format that is important to you is the order + * of the bytes in memory or on disk. + * - Names with a bit count per component, such as ARGB8888 and XRGB1555, are + * "packed" into an appropriately-sized integer in the platform's native + * endianness. For example, ARGB8888 is a sequence of 32-bit integers; in + * each integer, the most significant bits are alpha, and the least + * significant bits are blue. On a little-endian CPU such as x86, the least + * significant bits of each integer are arranged first in memory, but on a + * big-endian CPU such as s390x, the most significant bits are arranged + * first. Use these names if the property of a format that is important to + * you is the meaning of each bit position within a native-endianness + * integer. + * - In indexed formats such as INDEX4LSB, each pixel is represented by + * encoding an index into the palette into the indicated number of bits, + * with multiple pixels packed into each byte if appropriate. In LSB + * formats, the first (leftmost) pixel is stored in the least-significant + * bits of the byte; in MSB formats, it's stored in the most-significant + * bits. INDEX8 does not need LSB/MSB variants, because each pixel exactly + * fills one byte. + * + * The 32-bit byte-array encodings such as RGBA32 are aliases for the + * appropriate 8888 encoding for the current platform. For example, RGBA32 is + * an alias for ABGR8888 on little-endian CPUs like x86, or an alias for + * RGBA8888 on big-endian CPUs. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PixelFormat +{ + SDL_PIXELFORMAT_UNKNOWN = 0, + SDL_PIXELFORMAT_INDEX1LSB = 0x11100100u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX1, SDL_BITMAPORDER_4321, 0, 1, 0), */ + SDL_PIXELFORMAT_INDEX1MSB = 0x11200100u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX1, SDL_BITMAPORDER_1234, 0, 1, 0), */ + SDL_PIXELFORMAT_INDEX2LSB = 0x1c100200u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX2, SDL_BITMAPORDER_4321, 0, 2, 0), */ + SDL_PIXELFORMAT_INDEX2MSB = 0x1c200200u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX2, SDL_BITMAPORDER_1234, 0, 2, 0), */ + SDL_PIXELFORMAT_INDEX4LSB = 0x12100400u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX4, SDL_BITMAPORDER_4321, 0, 4, 0), */ + SDL_PIXELFORMAT_INDEX4MSB = 0x12200400u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX4, SDL_BITMAPORDER_1234, 0, 4, 0), */ + SDL_PIXELFORMAT_INDEX8 = 0x13000801u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_INDEX8, 0, 0, 8, 1), */ + SDL_PIXELFORMAT_RGB332 = 0x14110801u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED8, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_332, 8, 1), */ + SDL_PIXELFORMAT_XRGB4444 = 0x15120c02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_4444, 12, 2), */ + SDL_PIXELFORMAT_XBGR4444 = 0x15520c02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_4444, 12, 2), */ + SDL_PIXELFORMAT_XRGB1555 = 0x15130f02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_1555, 15, 2), */ + SDL_PIXELFORMAT_XBGR1555 = 0x15530f02u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_1555, 15, 2), */ + SDL_PIXELFORMAT_ARGB4444 = 0x15321002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_RGBA4444 = 0x15421002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_ABGR4444 = 0x15721002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_BGRA4444 = 0x15821002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_BGRA, SDL_PACKEDLAYOUT_4444, 16, 2), */ + SDL_PIXELFORMAT_ARGB1555 = 0x15331002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_1555, 16, 2), */ + SDL_PIXELFORMAT_RGBA5551 = 0x15441002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_5551, 16, 2), */ + SDL_PIXELFORMAT_ABGR1555 = 0x15731002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_1555, 16, 2), */ + SDL_PIXELFORMAT_BGRA5551 = 0x15841002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_BGRA, SDL_PACKEDLAYOUT_5551, 16, 2), */ + SDL_PIXELFORMAT_RGB565 = 0x15151002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_565, 16, 2), */ + SDL_PIXELFORMAT_BGR565 = 0x15551002u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED16, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_565, 16, 2), */ + SDL_PIXELFORMAT_RGB24 = 0x17101803u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU8, SDL_ARRAYORDER_RGB, 0, 24, 3), */ + SDL_PIXELFORMAT_BGR24 = 0x17401803u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU8, SDL_ARRAYORDER_BGR, 0, 24, 3), */ + SDL_PIXELFORMAT_XRGB8888 = 0x16161804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_RGBX8888 = 0x16261804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBX, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_XBGR8888 = 0x16561804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_BGRX8888 = 0x16661804u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_BGRX, SDL_PACKEDLAYOUT_8888, 24, 4), */ + SDL_PIXELFORMAT_ARGB8888 = 0x16362004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_RGBA8888 = 0x16462004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_RGBA, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_ABGR8888 = 0x16762004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_BGRA8888 = 0x16862004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_BGRA, SDL_PACKEDLAYOUT_8888, 32, 4), */ + SDL_PIXELFORMAT_XRGB2101010 = 0x16172004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XRGB, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_XBGR2101010 = 0x16572004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_XBGR, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_ARGB2101010 = 0x16372004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ARGB, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_ABGR2101010 = 0x16772004u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_PACKED32, SDL_PACKEDORDER_ABGR, SDL_PACKEDLAYOUT_2101010, 32, 4), */ + SDL_PIXELFORMAT_RGB48 = 0x18103006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_RGB, 0, 48, 6), */ + SDL_PIXELFORMAT_BGR48 = 0x18403006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_BGR, 0, 48, 6), */ + SDL_PIXELFORMAT_RGBA64 = 0x18204008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_RGBA, 0, 64, 8), */ + SDL_PIXELFORMAT_ARGB64 = 0x18304008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_ARGB, 0, 64, 8), */ + SDL_PIXELFORMAT_BGRA64 = 0x18504008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_BGRA, 0, 64, 8), */ + SDL_PIXELFORMAT_ABGR64 = 0x18604008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYU16, SDL_ARRAYORDER_ABGR, 0, 64, 8), */ + SDL_PIXELFORMAT_RGB48_FLOAT = 0x1a103006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_RGB, 0, 48, 6), */ + SDL_PIXELFORMAT_BGR48_FLOAT = 0x1a403006u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_BGR, 0, 48, 6), */ + SDL_PIXELFORMAT_RGBA64_FLOAT = 0x1a204008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_RGBA, 0, 64, 8), */ + SDL_PIXELFORMAT_ARGB64_FLOAT = 0x1a304008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_ARGB, 0, 64, 8), */ + SDL_PIXELFORMAT_BGRA64_FLOAT = 0x1a504008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_BGRA, 0, 64, 8), */ + SDL_PIXELFORMAT_ABGR64_FLOAT = 0x1a604008u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF16, SDL_ARRAYORDER_ABGR, 0, 64, 8), */ + SDL_PIXELFORMAT_RGB96_FLOAT = 0x1b10600cu, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_RGB, 0, 96, 12), */ + SDL_PIXELFORMAT_BGR96_FLOAT = 0x1b40600cu, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_BGR, 0, 96, 12), */ + SDL_PIXELFORMAT_RGBA128_FLOAT = 0x1b208010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_RGBA, 0, 128, 16), */ + SDL_PIXELFORMAT_ARGB128_FLOAT = 0x1b308010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_ARGB, 0, 128, 16), */ + SDL_PIXELFORMAT_BGRA128_FLOAT = 0x1b508010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_BGRA, 0, 128, 16), */ + SDL_PIXELFORMAT_ABGR128_FLOAT = 0x1b608010u, + /* SDL_DEFINE_PIXELFORMAT(SDL_PIXELTYPE_ARRAYF32, SDL_ARRAYORDER_ABGR, 0, 128, 16), */ + + SDL_PIXELFORMAT_YV12 = 0x32315659u, /**< Planar mode: Y + V + U (3 planes) */ + /* SDL_DEFINE_PIXELFOURCC('Y', 'V', '1', '2'), */ + SDL_PIXELFORMAT_IYUV = 0x56555949u, /**< Planar mode: Y + U + V (3 planes) */ + /* SDL_DEFINE_PIXELFOURCC('I', 'Y', 'U', 'V'), */ + SDL_PIXELFORMAT_YUY2 = 0x32595559u, /**< Packed mode: Y0+U0+Y1+V0 (1 plane) */ + /* SDL_DEFINE_PIXELFOURCC('Y', 'U', 'Y', '2'), */ + SDL_PIXELFORMAT_UYVY = 0x59565955u, /**< Packed mode: U0+Y0+V0+Y1 (1 plane) */ + /* SDL_DEFINE_PIXELFOURCC('U', 'Y', 'V', 'Y'), */ + SDL_PIXELFORMAT_YVYU = 0x55595659u, /**< Packed mode: Y0+V0+Y1+U0 (1 plane) */ + /* SDL_DEFINE_PIXELFOURCC('Y', 'V', 'Y', 'U'), */ + SDL_PIXELFORMAT_NV12 = 0x3231564eu, /**< Planar mode: Y + U/V interleaved (2 planes) */ + /* SDL_DEFINE_PIXELFOURCC('N', 'V', '1', '2'), */ + SDL_PIXELFORMAT_NV21 = 0x3132564eu, /**< Planar mode: Y + V/U interleaved (2 planes) */ + /* SDL_DEFINE_PIXELFOURCC('N', 'V', '2', '1'), */ + SDL_PIXELFORMAT_P010 = 0x30313050u, /**< Planar mode: Y + U/V interleaved (2 planes) */ + /* SDL_DEFINE_PIXELFOURCC('P', '0', '1', '0'), */ + SDL_PIXELFORMAT_EXTERNAL_OES = 0x2053454fu, /**< Android video texture format */ + /* SDL_DEFINE_PIXELFOURCC('O', 'E', 'S', ' ') */ + + SDL_PIXELFORMAT_MJPG = 0x47504a4du, /**< Motion JPEG */ + /* SDL_DEFINE_PIXELFOURCC('M', 'J', 'P', 'G') */ + + /* Aliases for RGBA byte arrays of color data, for the current platform */ + #if SDL_BYTEORDER == SDL_BIG_ENDIAN + SDL_PIXELFORMAT_RGBA32 = SDL_PIXELFORMAT_RGBA8888, + SDL_PIXELFORMAT_ARGB32 = SDL_PIXELFORMAT_ARGB8888, + SDL_PIXELFORMAT_BGRA32 = SDL_PIXELFORMAT_BGRA8888, + SDL_PIXELFORMAT_ABGR32 = SDL_PIXELFORMAT_ABGR8888, + SDL_PIXELFORMAT_RGBX32 = SDL_PIXELFORMAT_RGBX8888, + SDL_PIXELFORMAT_XRGB32 = SDL_PIXELFORMAT_XRGB8888, + SDL_PIXELFORMAT_BGRX32 = SDL_PIXELFORMAT_BGRX8888, + SDL_PIXELFORMAT_XBGR32 = SDL_PIXELFORMAT_XBGR8888 + #else + SDL_PIXELFORMAT_RGBA32 = SDL_PIXELFORMAT_ABGR8888, + SDL_PIXELFORMAT_ARGB32 = SDL_PIXELFORMAT_BGRA8888, + SDL_PIXELFORMAT_BGRA32 = SDL_PIXELFORMAT_ARGB8888, + SDL_PIXELFORMAT_ABGR32 = SDL_PIXELFORMAT_RGBA8888, + SDL_PIXELFORMAT_RGBX32 = SDL_PIXELFORMAT_XBGR8888, + SDL_PIXELFORMAT_XRGB32 = SDL_PIXELFORMAT_BGRX8888, + SDL_PIXELFORMAT_BGRX32 = SDL_PIXELFORMAT_XRGB8888, + SDL_PIXELFORMAT_XBGR32 = SDL_PIXELFORMAT_RGBX8888 + #endif +} SDL_PixelFormat; + +/** + * Colorspace color type. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ColorType +{ + SDL_COLOR_TYPE_UNKNOWN = 0, + SDL_COLOR_TYPE_RGB = 1, + SDL_COLOR_TYPE_YCBCR = 2 +} SDL_ColorType; + +/** + * Colorspace color range, as described by + * https://www.itu.int/rec/R-REC-BT.2100-2-201807-I/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ColorRange +{ + SDL_COLOR_RANGE_UNKNOWN = 0, + SDL_COLOR_RANGE_LIMITED = 1, /**< Narrow range, e.g. 16-235 for 8-bit RGB and luma, and 16-240 for 8-bit chroma */ + SDL_COLOR_RANGE_FULL = 2 /**< Full range, e.g. 0-255 for 8-bit RGB and luma, and 1-255 for 8-bit chroma */ +} SDL_ColorRange; + +/** + * Colorspace color primaries, as described by + * https://www.itu.int/rec/T-REC-H.273-201612-S/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ColorPrimaries +{ + SDL_COLOR_PRIMARIES_UNKNOWN = 0, + SDL_COLOR_PRIMARIES_BT709 = 1, /**< ITU-R BT.709-6 */ + SDL_COLOR_PRIMARIES_UNSPECIFIED = 2, + SDL_COLOR_PRIMARIES_BT470M = 4, /**< ITU-R BT.470-6 System M */ + SDL_COLOR_PRIMARIES_BT470BG = 5, /**< ITU-R BT.470-6 System B, G / ITU-R BT.601-7 625 */ + SDL_COLOR_PRIMARIES_BT601 = 6, /**< ITU-R BT.601-7 525, SMPTE 170M */ + SDL_COLOR_PRIMARIES_SMPTE240 = 7, /**< SMPTE 240M, functionally the same as SDL_COLOR_PRIMARIES_BT601 */ + SDL_COLOR_PRIMARIES_GENERIC_FILM = 8, /**< Generic film (color filters using Illuminant C) */ + SDL_COLOR_PRIMARIES_BT2020 = 9, /**< ITU-R BT.2020-2 / ITU-R BT.2100-0 */ + SDL_COLOR_PRIMARIES_XYZ = 10, /**< SMPTE ST 428-1 */ + SDL_COLOR_PRIMARIES_SMPTE431 = 11, /**< SMPTE RP 431-2 */ + SDL_COLOR_PRIMARIES_SMPTE432 = 12, /**< SMPTE EG 432-1 / DCI P3 */ + SDL_COLOR_PRIMARIES_EBU3213 = 22, /**< EBU Tech. 3213-E */ + SDL_COLOR_PRIMARIES_CUSTOM = 31 +} SDL_ColorPrimaries; + +/** + * Colorspace transfer characteristics. + * + * These are as described by https://www.itu.int/rec/T-REC-H.273-201612-S/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_TransferCharacteristics +{ + SDL_TRANSFER_CHARACTERISTICS_UNKNOWN = 0, + SDL_TRANSFER_CHARACTERISTICS_BT709 = 1, /**< Rec. ITU-R BT.709-6 / ITU-R BT1361 */ + SDL_TRANSFER_CHARACTERISTICS_UNSPECIFIED = 2, + SDL_TRANSFER_CHARACTERISTICS_GAMMA22 = 4, /**< ITU-R BT.470-6 System M / ITU-R BT1700 625 PAL & SECAM */ + SDL_TRANSFER_CHARACTERISTICS_GAMMA28 = 5, /**< ITU-R BT.470-6 System B, G */ + SDL_TRANSFER_CHARACTERISTICS_BT601 = 6, /**< SMPTE ST 170M / ITU-R BT.601-7 525 or 625 */ + SDL_TRANSFER_CHARACTERISTICS_SMPTE240 = 7, /**< SMPTE ST 240M */ + SDL_TRANSFER_CHARACTERISTICS_LINEAR = 8, + SDL_TRANSFER_CHARACTERISTICS_LOG100 = 9, + SDL_TRANSFER_CHARACTERISTICS_LOG100_SQRT10 = 10, + SDL_TRANSFER_CHARACTERISTICS_IEC61966 = 11, /**< IEC 61966-2-4 */ + SDL_TRANSFER_CHARACTERISTICS_BT1361 = 12, /**< ITU-R BT1361 Extended Colour Gamut */ + SDL_TRANSFER_CHARACTERISTICS_SRGB = 13, /**< IEC 61966-2-1 (sRGB or sYCC) */ + SDL_TRANSFER_CHARACTERISTICS_BT2020_10BIT = 14, /**< ITU-R BT2020 for 10-bit system */ + SDL_TRANSFER_CHARACTERISTICS_BT2020_12BIT = 15, /**< ITU-R BT2020 for 12-bit system */ + SDL_TRANSFER_CHARACTERISTICS_PQ = 16, /**< SMPTE ST 2084 for 10-, 12-, 14- and 16-bit systems */ + SDL_TRANSFER_CHARACTERISTICS_SMPTE428 = 17, /**< SMPTE ST 428-1 */ + SDL_TRANSFER_CHARACTERISTICS_HLG = 18, /**< ARIB STD-B67, known as "hybrid log-gamma" (HLG) */ + SDL_TRANSFER_CHARACTERISTICS_CUSTOM = 31 +} SDL_TransferCharacteristics; + +/** + * Colorspace matrix coefficients. + * + * These are as described by https://www.itu.int/rec/T-REC-H.273-201612-S/en + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_MatrixCoefficients +{ + SDL_MATRIX_COEFFICIENTS_IDENTITY = 0, + SDL_MATRIX_COEFFICIENTS_BT709 = 1, /**< ITU-R BT.709-6 */ + SDL_MATRIX_COEFFICIENTS_UNSPECIFIED = 2, + SDL_MATRIX_COEFFICIENTS_FCC = 4, /**< US FCC Title 47 */ + SDL_MATRIX_COEFFICIENTS_BT470BG = 5, /**< ITU-R BT.470-6 System B, G / ITU-R BT.601-7 625, functionally the same as SDL_MATRIX_COEFFICIENTS_BT601 */ + SDL_MATRIX_COEFFICIENTS_BT601 = 6, /**< ITU-R BT.601-7 525 */ + SDL_MATRIX_COEFFICIENTS_SMPTE240 = 7, /**< SMPTE 240M */ + SDL_MATRIX_COEFFICIENTS_YCGCO = 8, + SDL_MATRIX_COEFFICIENTS_BT2020_NCL = 9, /**< ITU-R BT.2020-2 non-constant luminance */ + SDL_MATRIX_COEFFICIENTS_BT2020_CL = 10, /**< ITU-R BT.2020-2 constant luminance */ + SDL_MATRIX_COEFFICIENTS_SMPTE2085 = 11, /**< SMPTE ST 2085 */ + SDL_MATRIX_COEFFICIENTS_CHROMA_DERIVED_NCL = 12, + SDL_MATRIX_COEFFICIENTS_CHROMA_DERIVED_CL = 13, + SDL_MATRIX_COEFFICIENTS_ICTCP = 14, /**< ITU-R BT.2100-0 ICTCP */ + SDL_MATRIX_COEFFICIENTS_CUSTOM = 31 +} SDL_MatrixCoefficients; + +/** + * Colorspace chroma sample location. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ChromaLocation +{ + SDL_CHROMA_LOCATION_NONE = 0, /**< RGB, no chroma sampling */ + SDL_CHROMA_LOCATION_LEFT = 1, /**< In MPEG-2, MPEG-4, and AVC, Cb and Cr are taken on midpoint of the left-edge of the 2x2 square. In other words, they have the same horizontal location as the top-left pixel, but is shifted one-half pixel down vertically. */ + SDL_CHROMA_LOCATION_CENTER = 2, /**< In JPEG/JFIF, H.261, and MPEG-1, Cb and Cr are taken at the center of the 2x2 square. In other words, they are offset one-half pixel to the right and one-half pixel down compared to the top-left pixel. */ + SDL_CHROMA_LOCATION_TOPLEFT = 3 /**< In HEVC for BT.2020 and BT.2100 content (in particular on Blu-rays), Cb and Cr are sampled at the same location as the group's top-left Y pixel ("co-sited", "co-located"). */ +} SDL_ChromaLocation; + + +/* Colorspace definition */ + +/** + * A macro for defining custom SDL_Colorspace formats. + * + * For example, defining SDL_COLORSPACE_SRGB looks like this: + * + * ```c + * SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + * SDL_COLOR_RANGE_FULL, + * SDL_COLOR_PRIMARIES_BT709, + * SDL_TRANSFER_CHARACTERISTICS_SRGB, + * SDL_MATRIX_COEFFICIENTS_IDENTITY, + * SDL_CHROMA_LOCATION_NONE) + * ``` + * + * \param type the type of the new format, probably an SDL_ColorType value. + * \param range the range of the new format, probably a SDL_ColorRange value. + * \param primaries the primaries of the new format, probably an + * SDL_ColorPrimaries value. + * \param transfer the transfer characteristics of the new format, probably an + * SDL_TransferCharacteristics value. + * \param matrix the matrix coefficients of the new format, probably an + * SDL_MatrixCoefficients value. + * \param chroma the chroma sample location of the new format, probably an + * SDL_ChromaLocation value. + * \returns a format value in the style of SDL_Colorspace. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_DEFINE_COLORSPACE(type, range, primaries, transfer, matrix, chroma) \ + (((Uint32)(type) << 28) | ((Uint32)(range) << 24) | ((Uint32)(chroma) << 20) | \ + ((Uint32)(primaries) << 10) | ((Uint32)(transfer) << 5) | ((Uint32)(matrix) << 0)) + +/** + * A macro to retrieve the type of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ColorType for `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACETYPE(cspace) (SDL_ColorType)(((cspace) >> 28) & 0x0F) + +/** + * A macro to retrieve the range of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ColorRange of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACERANGE(cspace) (SDL_ColorRange)(((cspace) >> 24) & 0x0F) + +/** + * A macro to retrieve the chroma sample location of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ChromaLocation of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACECHROMA(cspace) (SDL_ChromaLocation)(((cspace) >> 20) & 0x0F) + +/** + * A macro to retrieve the primaries of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_ColorPrimaries of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACEPRIMARIES(cspace) (SDL_ColorPrimaries)(((cspace) >> 10) & 0x1F) + +/** + * A macro to retrieve the transfer characteristics of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_TransferCharacteristics of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACETRANSFER(cspace) (SDL_TransferCharacteristics)(((cspace) >> 5) & 0x1F) + +/** + * A macro to retrieve the matrix coefficients of an SDL_Colorspace. + * + * \param cspace an SDL_Colorspace to check. + * \returns the SDL_MatrixCoefficients of `cspace`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_COLORSPACEMATRIX(cspace) (SDL_MatrixCoefficients)((cspace) & 0x1F) + +/** + * A macro to determine if an SDL_Colorspace uses BT601 (or BT470BG) matrix + * coefficients. + * + * Note that this macro double-evaluates its parameter, so do not use + * expressions with side-effects here. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if BT601 or BT470BG, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_MATRIX_BT601(cspace) (SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT601 || SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT470BG) + +/** + * A macro to determine if an SDL_Colorspace uses BT709 matrix coefficients. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if BT709, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_MATRIX_BT709(cspace) (SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT709) + +/** + * A macro to determine if an SDL_Colorspace uses BT2020_NCL matrix + * coefficients. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if BT2020_NCL, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_MATRIX_BT2020_NCL(cspace) (SDL_COLORSPACEMATRIX(cspace) == SDL_MATRIX_COEFFICIENTS_BT2020_NCL) + +/** + * A macro to determine if an SDL_Colorspace has a limited range. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if limited range, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_LIMITED_RANGE(cspace) (SDL_COLORSPACERANGE(cspace) != SDL_COLOR_RANGE_FULL) + +/** + * A macro to determine if an SDL_Colorspace has a full range. + * + * \param cspace an SDL_Colorspace to check. + * \returns true if full range, false otherwise. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ISCOLORSPACE_FULL_RANGE(cspace) (SDL_COLORSPACERANGE(cspace) == SDL_COLOR_RANGE_FULL) + +/** + * Colorspace definitions. + * + * Since similar colorspaces may vary in their details (matrix, transfer + * function, etc.), this is not an exhaustive list, but rather a + * representative sample of the kinds of colorspaces supported in SDL. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_ColorPrimaries + * \sa SDL_ColorRange + * \sa SDL_ColorType + * \sa SDL_MatrixCoefficients + * \sa SDL_TransferCharacteristics + */ +typedef enum SDL_Colorspace +{ + SDL_COLORSPACE_UNKNOWN = 0, + + /* sRGB is a gamma corrected colorspace, and the default colorspace for SDL rendering and 8-bit RGB surfaces */ + SDL_COLORSPACE_SRGB = 0x120005a0u, /**< Equivalent to DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_SRGB, + SDL_MATRIX_COEFFICIENTS_IDENTITY, + SDL_CHROMA_LOCATION_NONE), */ + + /* This is a linear colorspace and the default colorspace for floating point surfaces. On Windows this is the scRGB colorspace, and on Apple platforms this is kCGColorSpaceExtendedLinearSRGB for EDR content */ + SDL_COLORSPACE_SRGB_LINEAR = 0x12000500u, /**< Equivalent to DXGI_COLOR_SPACE_RGB_FULL_G10_NONE_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_LINEAR, + SDL_MATRIX_COEFFICIENTS_IDENTITY, + SDL_CHROMA_LOCATION_NONE), */ + + /* HDR10 is a non-linear HDR colorspace and the default colorspace for 10-bit surfaces */ + SDL_COLORSPACE_HDR10 = 0x12002600u, /**< Equivalent to DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_RGB, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT2020, + SDL_TRANSFER_CHARACTERISTICS_PQ, + SDL_MATRIX_COEFFICIENTS_IDENTITY, + SDL_CHROMA_LOCATION_NONE), */ + + SDL_COLORSPACE_JPEG = 0x220004c6u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_FULL_G22_NONE_P709_X601 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_BT601, + SDL_MATRIX_COEFFICIENTS_BT601, + SDL_CHROMA_LOCATION_NONE), */ + + SDL_COLORSPACE_BT601_LIMITED = 0x211018c6u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_LIMITED, + SDL_COLOR_PRIMARIES_BT601, + SDL_TRANSFER_CHARACTERISTICS_BT601, + SDL_MATRIX_COEFFICIENTS_BT601, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT601_FULL = 0x221018c6u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT601, + SDL_TRANSFER_CHARACTERISTICS_BT601, + SDL_MATRIX_COEFFICIENTS_BT601, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT709_LIMITED = 0x21100421u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_LIMITED, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_BT709, + SDL_MATRIX_COEFFICIENTS_BT709, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT709_FULL = 0x22100421u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT709, + SDL_TRANSFER_CHARACTERISTICS_BT709, + SDL_MATRIX_COEFFICIENTS_BT709, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT2020_LIMITED = 0x21102609u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P2020 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_LIMITED, + SDL_COLOR_PRIMARIES_BT2020, + SDL_TRANSFER_CHARACTERISTICS_PQ, + SDL_MATRIX_COEFFICIENTS_BT2020_NCL, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_BT2020_FULL = 0x22102609u, /**< Equivalent to DXGI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P2020 */ + /* SDL_DEFINE_COLORSPACE(SDL_COLOR_TYPE_YCBCR, + SDL_COLOR_RANGE_FULL, + SDL_COLOR_PRIMARIES_BT2020, + SDL_TRANSFER_CHARACTERISTICS_PQ, + SDL_MATRIX_COEFFICIENTS_BT2020_NCL, + SDL_CHROMA_LOCATION_LEFT), */ + + SDL_COLORSPACE_RGB_DEFAULT = SDL_COLORSPACE_SRGB, /**< The default colorspace for RGB surfaces if no colorspace is specified */ + SDL_COLORSPACE_YUV_DEFAULT = SDL_COLORSPACE_JPEG /**< The default colorspace for YUV surfaces if no colorspace is specified */ +} SDL_Colorspace; + +/** + * A structure that represents a color as RGBA components. + * + * The bits of this structure can be directly reinterpreted as an + * integer-packed color which uses the SDL_PIXELFORMAT_RGBA32 format + * (SDL_PIXELFORMAT_ABGR8888 on little-endian systems and + * SDL_PIXELFORMAT_RGBA8888 on big-endian systems). + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Color +{ + Uint8 r; + Uint8 g; + Uint8 b; + Uint8 a; +} SDL_Color; + +/** + * The bits of this structure can be directly reinterpreted as a float-packed + * color which uses the SDL_PIXELFORMAT_RGBA128_FLOAT format + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_FColor +{ + float r; + float g; + float b; + float a; +} SDL_FColor; + +/** + * A set of indexed colors representing a palette. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_SetPaletteColors + */ +typedef struct SDL_Palette +{ + int ncolors; /**< number of elements in `colors`. */ + SDL_Color *colors; /**< an array of colors, `ncolors` long. */ + Uint32 version; /**< internal use only, do not touch. */ + int refcount; /**< internal use only, do not touch. */ +} SDL_Palette; + +/** + * Details about the format of a pixel. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_PixelFormatDetails +{ + SDL_PixelFormat format; + Uint8 bits_per_pixel; + Uint8 bytes_per_pixel; + Uint8 padding[2]; + Uint32 Rmask; + Uint32 Gmask; + Uint32 Bmask; + Uint32 Amask; + Uint8 Rbits; + Uint8 Gbits; + Uint8 Bbits; + Uint8 Abits; + Uint8 Rshift; + Uint8 Gshift; + Uint8 Bshift; + Uint8 Ashift; +} SDL_PixelFormatDetails; + +/** + * Get the human readable name of a pixel format. + * + * \param format the pixel format to query. + * \returns the human readable name of the specified pixel format or + * "SDL_PIXELFORMAT_UNKNOWN" if the format isn't recognized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetPixelFormatName(SDL_PixelFormat format); + +/** + * Convert one of the enumerated pixel formats to a bpp value and RGBA masks. + * + * \param format one of the SDL_PixelFormat values. + * \param bpp a bits per pixel value; usually 15, 16, or 32. + * \param Rmask a pointer filled in with the red mask for the format. + * \param Gmask a pointer filled in with the green mask for the format. + * \param Bmask a pointer filled in with the blue mask for the format. + * \param Amask a pointer filled in with the alpha mask for the format. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatForMasks + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetMasksForPixelFormat(SDL_PixelFormat format, int *bpp, Uint32 *Rmask, Uint32 *Gmask, Uint32 *Bmask, Uint32 *Amask); + +/** + * Convert a bpp value and RGBA masks to an enumerated pixel format. + * + * This will return `SDL_PIXELFORMAT_UNKNOWN` if the conversion wasn't + * possible. + * + * \param bpp a bits per pixel value; usually 15, 16, or 32. + * \param Rmask the red mask for the format. + * \param Gmask the green mask for the format. + * \param Bmask the blue mask for the format. + * \param Amask the alpha mask for the format. + * \returns the SDL_PixelFormat value corresponding to the format masks, or + * SDL_PIXELFORMAT_UNKNOWN if there isn't a match. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMasksForPixelFormat + */ +extern SDL_DECLSPEC SDL_PixelFormat SDLCALL SDL_GetPixelFormatForMasks(int bpp, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask); + +/** + * Create an SDL_PixelFormatDetails structure corresponding to a pixel format. + * + * Returned structure may come from a shared global cache (i.e. not newly + * allocated), and hence should not be modified, especially the palette. Weird + * errors such as `Blit combination not supported` may occur. + * + * \param format one of the SDL_PixelFormat values. + * \returns a pointer to a SDL_PixelFormatDetails structure or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const SDL_PixelFormatDetails * SDLCALL SDL_GetPixelFormatDetails(SDL_PixelFormat format); + +/** + * Create a palette structure with the specified number of color entries. + * + * The palette entries are initialized to white. + * + * \param ncolors represents the number of color entries in the color palette. + * \returns a new SDL_Palette structure on success or NULL on failure (e.g. if + * there wasn't enough memory); call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyPalette + * \sa SDL_SetPaletteColors + * \sa SDL_SetSurfacePalette + */ +extern SDL_DECLSPEC SDL_Palette * SDLCALL SDL_CreatePalette(int ncolors); + +/** + * Set a range of colors in a palette. + * + * \param palette the SDL_Palette structure to modify. + * \param colors an array of SDL_Color structures to copy into the palette. + * \param firstcolor the index of the first palette entry to modify. + * \param ncolors the number of entries to modify. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified or destroyed in another thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPaletteColors(SDL_Palette *palette, const SDL_Color *colors, int firstcolor, int ncolors); + +/** + * Free a palette created with SDL_CreatePalette(). + * + * \param palette the SDL_Palette structure to be freed. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified or destroyed in another thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePalette + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyPalette(SDL_Palette *palette); + +/** + * Map an RGB triple to an opaque pixel value for a given pixel format. + * + * This function maps the RGB color value to the specified pixel format and + * returns the pixel value best approximating the given RGB color value for + * the given pixel format. + * + * If the format has a palette (8-bit) the index of the closest matching color + * in the palette will be returned. + * + * If the specified pixel format has an alpha component it will be returned as + * all 1 bits (fully opaque). + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGB + * \sa SDL_MapRGBA + * \sa SDL_MapSurfaceRGB + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapRGB(const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 r, Uint8 g, Uint8 b); + +/** + * Map an RGBA quadruple to a pixel value for a given pixel format. + * + * This function maps the RGBA color value to the specified pixel format and + * returns the pixel value best approximating the given RGBA color value for + * the given pixel format. + * + * If the specified pixel format has no alpha component the alpha value will + * be ignored (as it will be in formats with a palette). + * + * If the format has a palette (8-bit) the index of the closest matching color + * in the palette will be returned. + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \param a the alpha component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGBA + * \sa SDL_MapRGB + * \sa SDL_MapSurfaceRGBA + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapRGBA(const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Get RGB values from a pixel in the specified format. + * + * This function uses the entire 8-bit [0..255] range when converting color + * components from pixel formats with less than 8-bits per RGB component + * (e.g., a completely white pixel in 16-bit RGB565 format would return [0xff, + * 0xff, 0xff] not [0xf8, 0xfc, 0xf8]). + * + * \param pixel a pixel value. + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r a pointer filled in with the red component, may be NULL. + * \param g a pointer filled in with the green component, may be NULL. + * \param b a pointer filled in with the blue component, may be NULL. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGBA + * \sa SDL_MapRGB + * \sa SDL_MapRGBA + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetRGB(Uint32 pixel, const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 *r, Uint8 *g, Uint8 *b); + +/** + * Get RGBA values from a pixel in the specified format. + * + * This function uses the entire 8-bit [0..255] range when converting color + * components from pixel formats with less than 8-bits per RGB component + * (e.g., a completely white pixel in 16-bit RGB565 format would return [0xff, + * 0xff, 0xff] not [0xf8, 0xfc, 0xf8]). + * + * If the surface has no alpha component, the alpha will be returned as 0xff + * (100% opaque). + * + * \param pixel a pixel value. + * \param format a pointer to SDL_PixelFormatDetails describing the pixel + * format. + * \param palette an optional palette for indexed formats, may be NULL. + * \param r a pointer filled in with the red component, may be NULL. + * \param g a pointer filled in with the green component, may be NULL. + * \param b a pointer filled in with the blue component, may be NULL. + * \param a a pointer filled in with the alpha component, may be NULL. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the palette is not modified. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPixelFormatDetails + * \sa SDL_GetRGB + * \sa SDL_MapRGB + * \sa SDL_MapRGBA + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel, const SDL_PixelFormatDetails *format, const SDL_Palette *palette, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_pixels_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_platform.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_platform.h new file mode 100644 index 0000000..e40f009 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_platform.h @@ -0,0 +1,64 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryPlatform + * + * SDL provides a means to identify the app's platform, both at compile time + * and runtime. + */ + +#ifndef SDL_platform_h_ +#define SDL_platform_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Get the name of the platform. + * + * Here are the names returned for some (but not all) supported platforms: + * + * - "Windows" + * - "macOS" + * - "Linux" + * - "iOS" + * - "Android" + * + * \returns the name of the platform. If the correct platform name is not + * available, returns a string beginning with the text "Unknown". + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetPlatform(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_platform_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_platform_defines.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_platform_defines.h new file mode 100644 index 0000000..6b240a8 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_platform_defines.h @@ -0,0 +1,476 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Platform */ + +/* + * SDL_platform_defines.h tries to get a standard set of platform defines. + */ + +#ifndef SDL_platform_defines_h_ +#define SDL_platform_defines_h_ + +#ifdef _AIX + +/** + * A preprocessor macro that is only defined if compiling for AIX. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_AIX 1 +#endif + +#ifdef __HAIKU__ + +/** + * A preprocessor macro that is only defined if compiling for Haiku OS. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_HAIKU 1 +#endif + +#if defined(bsdi) || defined(__bsdi) || defined(__bsdi__) + +/** + * A preprocessor macro that is only defined if compiling for BSDi + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_BSDI 1 +#endif + +#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) + +/** + * A preprocessor macro that is only defined if compiling for FreeBSD. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_FREEBSD 1 +#endif + +#if defined(hpux) || defined(__hpux) || defined(__hpux__) + +/** + * A preprocessor macro that is only defined if compiling for HP-UX. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_HPUX 1 +#endif + +#if defined(sgi) || defined(__sgi) || defined(__sgi__) || defined(_SGI_SOURCE) + +/** + * A preprocessor macro that is only defined if compiling for IRIX. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_IRIX 1 +#endif + +#if (defined(linux) || defined(__linux) || defined(__linux__)) + +/** + * A preprocessor macro that is only defined if compiling for Linux. + * + * Note that Android, although ostensibly a Linux-based system, will not + * define this. It defines SDL_PLATFORM_ANDROID instead. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_LINUX 1 +#endif + +#if defined(ANDROID) || defined(__ANDROID__) + +/** + * A preprocessor macro that is only defined if compiling for Android. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_ANDROID 1 +#undef SDL_PLATFORM_LINUX +#endif + +#if defined(__unix__) || defined(__unix) || defined(unix) + +/** + * A preprocessor macro that is only defined if compiling for a Unix-like + * system. + * + * Other platforms, like Linux, might define this in addition to their primary + * define. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_UNIX 1 +#endif + +#ifdef __APPLE__ + +/** + * A preprocessor macro that is only defined if compiling for Apple platforms. + * + * iOS, macOS, etc will additionally define a more specific platform macro. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_MACOS + * \sa SDL_PLATFORM_IOS + * \sa SDL_PLATFORM_TVOS + * \sa SDL_PLATFORM_VISIONOS + */ +#define SDL_PLATFORM_APPLE 1 + +/* lets us know what version of macOS we're compiling on */ +#include +#ifndef __has_extension /* Older compilers don't support this */ + #define __has_extension(x) 0 + #include + #undef __has_extension +#else + #include +#endif + +/* Fix building with older SDKs that don't define these + See this for more information: + https://stackoverflow.com/questions/12132933/preprocessor-macro-for-os-x-targets +*/ +#ifndef TARGET_OS_MACCATALYST + #define TARGET_OS_MACCATALYST 0 +#endif +#ifndef TARGET_OS_IOS + #define TARGET_OS_IOS 0 +#endif +#ifndef TARGET_OS_IPHONE + #define TARGET_OS_IPHONE 0 +#endif +#ifndef TARGET_OS_TV + #define TARGET_OS_TV 0 +#endif +#ifndef TARGET_OS_SIMULATOR + #define TARGET_OS_SIMULATOR 0 +#endif +#ifndef TARGET_OS_VISION + #define TARGET_OS_VISION 0 +#endif + +#if TARGET_OS_TV + +/** + * A preprocessor macro that is only defined if compiling for tvOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_TVOS 1 +#endif + +#if TARGET_OS_VISION + +/** + * A preprocessor macro that is only defined if compiling for VisionOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_VISIONOS 1 +#endif + +#if TARGET_OS_IPHONE + +/** + * A preprocessor macro that is only defined if compiling for iOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_IOS 1 + +#else + +/** + * A preprocessor macro that is only defined if compiling for macOS. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_APPLE + */ +#define SDL_PLATFORM_MACOS 1 + +#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070 + #error SDL for macOS only supports deploying on 10.7 and above. +#endif /* MAC_OS_X_VERSION_MIN_REQUIRED < 1070 */ +#endif /* TARGET_OS_IPHONE */ +#endif /* defined(__APPLE__) */ + +#ifdef __EMSCRIPTEN__ + +/** + * A preprocessor macro that is only defined if compiling for Emscripten. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_EMSCRIPTEN 1 +#endif + +#ifdef __NetBSD__ + +/** + * A preprocessor macro that is only defined if compiling for NetBSD. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_NETBSD 1 +#endif + +#ifdef __OpenBSD__ + +/** + * A preprocessor macro that is only defined if compiling for OpenBSD. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_OPENBSD 1 +#endif + +#if defined(__OS2__) || defined(__EMX__) + +/** + * A preprocessor macro that is only defined if compiling for OS/2. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_OS2 1 +#endif + +#if defined(osf) || defined(__osf) || defined(__osf__) || defined(_OSF_SOURCE) + +/** + * A preprocessor macro that is only defined if compiling for Tru64 (OSF/1). + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_OSF 1 +#endif + +#ifdef __QNXNTO__ + +/** + * A preprocessor macro that is only defined if compiling for QNX Neutrino. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_QNXNTO 1 +#endif + +#if defined(riscos) || defined(__riscos) || defined(__riscos__) + +/** + * A preprocessor macro that is only defined if compiling for RISC OS. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_RISCOS 1 +#endif + +#if defined(__sun) && defined(__SVR4) + +/** + * A preprocessor macro that is only defined if compiling for SunOS/Solaris. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_SOLARIS 1 +#endif + +#if defined(__CYGWIN__) + +/** + * A preprocessor macro that is only defined if compiling for Cygwin. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_CYGWIN 1 +#endif + +#if defined(_WIN32) || defined(SDL_PLATFORM_CYGWIN) + +/** + * A preprocessor macro that is only defined if compiling for Windows. + * + * This also covers several other platforms, like Microsoft GDK, Xbox, WinRT, + * etc. Each will have their own more-specific platform macros, too. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PLATFORM_WIN32 + * \sa SDL_PLATFORM_XBOXONE + * \sa SDL_PLATFORM_XBOXSERIES + * \sa SDL_PLATFORM_WINGDK + * \sa SDL_PLATFORM_GDK + */ +#define SDL_PLATFORM_WINDOWS 1 + +/* Try to find out if we're compiling for WinRT, GDK or non-WinRT/GDK */ +#if defined(_MSC_VER) && defined(__has_include) + #if __has_include() + #define HAVE_WINAPIFAMILY_H 1 + #else + #define HAVE_WINAPIFAMILY_H 0 + #endif + + /* If _USING_V110_SDK71_ is defined it means we are using the Windows XP toolset. */ +#elif defined(_MSC_VER) && (_MSC_VER >= 1700 && !_USING_V110_SDK71_) /* _MSC_VER == 1700 for Visual Studio 2012 */ + #define HAVE_WINAPIFAMILY_H 1 +#else + #define HAVE_WINAPIFAMILY_H 0 +#endif + +#if HAVE_WINAPIFAMILY_H + #include + #define WINAPI_FAMILY_WINRT (!WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) && WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP)) +#else + #define WINAPI_FAMILY_WINRT 0 +#endif /* HAVE_WINAPIFAMILY_H */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A preprocessor macro that defined to 1 if compiling for Windows Phone. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINAPI_FAMILY_PHONE (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP) + +#elif defined(HAVE_WINAPIFAMILY_H) && HAVE_WINAPIFAMILY_H + #define SDL_WINAPI_FAMILY_PHONE (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP) +#else + #define SDL_WINAPI_FAMILY_PHONE 0 +#endif + +#if WINAPI_FAMILY_WINRT +#error Windows RT/UWP is no longer supported in SDL + +#elif defined(_GAMING_DESKTOP) /* GDK project configuration always defines _GAMING_XXX */ + +/** + * A preprocessor macro that is only defined if compiling for Microsoft GDK + * for Windows. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_WINGDK 1 + +#elif defined(_GAMING_XBOX_XBOXONE) + +/** + * A preprocessor macro that is only defined if compiling for Xbox One. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_XBOXONE 1 + +#elif defined(_GAMING_XBOX_SCARLETT) + +/** + * A preprocessor macro that is only defined if compiling for Xbox Series. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_XBOXSERIES 1 + +#else + +/** + * A preprocessor macro that is only defined if compiling for desktop Windows. + * + * Despite the "32", this also covers 64-bit Windows; as an informal + * convention, its system layer tends to still be referred to as "the Win32 + * API." + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_WIN32 1 + +#endif +#endif /* defined(_WIN32) || defined(SDL_PLATFORM_CYGWIN) */ + + +/* This is to support generic "any GDK" separate from a platform-specific GDK */ +#if defined(SDL_PLATFORM_WINGDK) || defined(SDL_PLATFORM_XBOXONE) || defined(SDL_PLATFORM_XBOXSERIES) + +/** + * A preprocessor macro that is only defined if compiling for Microsoft GDK on + * any platform. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_GDK 1 +#endif + +#if defined(__PSP__) || defined(__psp__) + +/** + * A preprocessor macro that is only defined if compiling for Sony PSP. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_PSP 1 +#endif + +#if defined(__PS2__) || defined(PS2) + +/** + * A preprocessor macro that is only defined if compiling for Sony PlayStation + * 2. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_PS2 1 +#endif + +#if defined(__vita__) || defined(__psp2__) + +/** + * A preprocessor macro that is only defined if compiling for Sony Vita. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_VITA 1 +#endif + +#ifdef __3DS__ + +/** + * A preprocessor macro that is only defined if compiling for Nintendo 3DS. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PLATFORM_3DS 1 +#endif + +#endif /* SDL_platform_defines_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_power.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_power.h new file mode 100644 index 0000000..694fb09 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_power.h @@ -0,0 +1,106 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_power_h_ +#define SDL_power_h_ + +/** + * # CategoryPower + * + * SDL power management routines. + * + * There is a single function in this category: SDL_GetPowerInfo(). + * + * This function is useful for games on the go. This allows an app to know if + * it's running on a draining battery, which can be useful if the app wants to + * reduce processing, or perhaps framerate, to extend the duration of the + * battery's charge. Perhaps the app just wants to show a battery meter when + * fullscreen, or alert the user when the power is getting extremely low, so + * they can save their game. + */ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The basic state for the system's power supply. + * + * These are results returned by SDL_GetPowerInfo(). + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PowerState +{ + SDL_POWERSTATE_ERROR = -1, /**< error determining power status */ + SDL_POWERSTATE_UNKNOWN, /**< cannot determine power status */ + SDL_POWERSTATE_ON_BATTERY, /**< Not plugged in, running on the battery */ + SDL_POWERSTATE_NO_BATTERY, /**< Plugged in, no battery available */ + SDL_POWERSTATE_CHARGING, /**< Plugged in, charging battery */ + SDL_POWERSTATE_CHARGED /**< Plugged in, battery charged */ +} SDL_PowerState; + +/** + * Get the current power supply details. + * + * You should never take a battery status as absolute truth. Batteries + * (especially failing batteries) are delicate hardware, and the values + * reported here are best estimates based on what that hardware reports. It's + * not uncommon for older batteries to lose stored power much faster than it + * reports, or completely drain when reporting it has 20 percent left, etc. + * + * Battery status can change at any time; if you are concerned with power + * state, you should call this function frequently, and perhaps ignore changes + * until they seem to be stable for a few seconds. + * + * It's possible a platform can only report battery percentage or time left + * but not both. + * + * On some platforms, retrieving power supply details might be expensive. If + * you want to display continuous status you could call this function every + * minute or so. + * + * \param seconds a pointer filled in with the seconds of battery life left, + * or NULL to ignore. This will be filled in with -1 if we + * can't determine a value or there is no battery. + * \param percent a pointer filled in with the percentage of battery life + * left, between 0 and 100, or NULL to ignore. This will be + * filled in with -1 we can't determine a value or there is no + * battery. + * \returns the current battery state or `SDL_POWERSTATE_ERROR` on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PowerState SDLCALL SDL_GetPowerInfo(int *seconds, int *percent); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_power_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_process.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_process.h new file mode 100644 index 0000000..511b2f9 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_process.h @@ -0,0 +1,430 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryProcess + * + * Process control support. + * + * These functions provide a cross-platform way to spawn and manage OS-level + * processes. + * + * You can create a new subprocess with SDL_CreateProcess() and optionally + * read and write to it using SDL_ReadProcess() or SDL_GetProcessInput() and + * SDL_GetProcessOutput(). If more advanced functionality like chaining input + * between processes is necessary, you can use + * SDL_CreateProcessWithProperties(). + * + * You can get the status of a created process with SDL_WaitProcess(), or + * terminate the process with SDL_KillProcess(). + * + * Don't forget to call SDL_DestroyProcess() to clean up, whether the process + * process was killed, terminated on its own, or is still running! + */ + +#ifndef SDL_process_h_ +#define SDL_process_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque handle representing a system process. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + */ +typedef struct SDL_Process SDL_Process; + +/** + * Create a new process. + * + * The path to the executable is supplied in args[0]. args[1..N] are + * additional arguments passed on the command line of the new process, and the + * argument list should be terminated with a NULL, e.g.: + * + * ```c + * const char *args[] = { "myprogram", "argument", NULL }; + * ``` + * + * Setting pipe_stdio to true is equivalent to setting + * `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` and + * `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` to `SDL_PROCESS_STDIO_APP`, and + * will allow the use of SDL_ReadProcess() or SDL_GetProcessInput() and + * SDL_GetProcessOutput(). + * + * See SDL_CreateProcessWithProperties() for more details. + * + * \param args the path and arguments for the new process. + * \param pipe_stdio true to create pipes to the process's standard input and + * from the process's standard output, false for the process + * to have no input and inherit the application's standard + * output. + * \returns the newly created and running process, or NULL if the process + * couldn't be created. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessProperties + * \sa SDL_ReadProcess + * \sa SDL_GetProcessInput + * \sa SDL_GetProcessOutput + * \sa SDL_KillProcess + * \sa SDL_WaitProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC SDL_Process * SDLCALL SDL_CreateProcess(const char * const *args, bool pipe_stdio); + +/** + * Description of where standard I/O should be directed when creating a + * process. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_INHERITED, it will go + * to the same place as the application's I/O stream. This is the default for + * standard output and standard error. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_NULL, it is connected + * to `NUL:` on Windows and `/dev/null` on POSIX systems. This is the default + * for standard input. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_APP, it is connected + * to a new SDL_IOStream that is available to the application. Standard input + * will be available as `SDL_PROP_PROCESS_STDIN_POINTER` and allows + * SDL_GetProcessInput(), standard output will be available as + * `SDL_PROP_PROCESS_STDOUT_POINTER` and allows SDL_ReadProcess() and + * SDL_GetProcessOutput(), and standard error will be available as + * `SDL_PROP_PROCESS_STDERR_POINTER` in the properties for the created + * process. + * + * If a standard I/O stream is set to SDL_PROCESS_STDIO_REDIRECT, it is + * connected to an existing SDL_IOStream provided by the application. Standard + * input is provided using `SDL_PROP_PROCESS_CREATE_STDIN_POINTER`, standard + * output is provided using `SDL_PROP_PROCESS_CREATE_STDOUT_POINTER`, and + * standard error is provided using `SDL_PROP_PROCESS_CREATE_STDERR_POINTER` + * in the creation properties. These existing streams should be closed by the + * application once the new process is created. + * + * In order to use an SDL_IOStream with SDL_PROCESS_STDIO_REDIRECT, it must + * have `SDL_PROP_IOSTREAM_WINDOWS_HANDLE_POINTER` or + * `SDL_PROP_IOSTREAM_FILE_DESCRIPTOR_NUMBER` set. This is true for streams + * representing files and process I/O. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessProperties + * \sa SDL_ReadProcess + * \sa SDL_GetProcessInput + * \sa SDL_GetProcessOutput + */ +typedef enum SDL_ProcessIO +{ + SDL_PROCESS_STDIO_INHERITED, /**< The I/O stream is inherited from the application. */ + SDL_PROCESS_STDIO_NULL, /**< The I/O stream is ignored. */ + SDL_PROCESS_STDIO_APP, /**< The I/O stream is connected to a new SDL_IOStream that the application can read or write */ + SDL_PROCESS_STDIO_REDIRECT /**< The I/O stream is redirected to an existing SDL_IOStream. */ +} SDL_ProcessIO; + +/** + * Create a new process with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_PROCESS_CREATE_ARGS_POINTER`: an array of strings containing + * the program to run, any arguments, and a NULL pointer, e.g. const char + * *args[] = { "myprogram", "argument", NULL }. This is a required property. + * - `SDL_PROP_PROCESS_CREATE_ENVIRONMENT_POINTER`: an SDL_Environment + * pointer. If this property is set, it will be the entire environment for + * the process, otherwise the current environment is used. + * - `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER`: an SDL_ProcessIO value describing + * where standard input for the process comes from, defaults to + * `SDL_PROCESS_STDIO_NULL`. + * - `SDL_PROP_PROCESS_CREATE_STDIN_POINTER`: an SDL_IOStream pointer used for + * standard input when `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` is set to + * `SDL_PROCESS_STDIO_REDIRECT`. + * - `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER`: an SDL_ProcessIO value + * describing where standard output for the process goes to, defaults to + * `SDL_PROCESS_STDIO_INHERITED`. + * - `SDL_PROP_PROCESS_CREATE_STDOUT_POINTER`: an SDL_IOStream pointer used + * for standard output when `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` is set + * to `SDL_PROCESS_STDIO_REDIRECT`. + * - `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER`: an SDL_ProcessIO value + * describing where standard error for the process goes to, defaults to + * `SDL_PROCESS_STDIO_INHERITED`. + * - `SDL_PROP_PROCESS_CREATE_STDERR_POINTER`: an SDL_IOStream pointer used + * for standard error when `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER` is set to + * `SDL_PROCESS_STDIO_REDIRECT`. + * - `SDL_PROP_PROCESS_CREATE_STDERR_TO_STDOUT_BOOLEAN`: true if the error + * output of the process should be redirected into the standard output of + * the process. This property has no effect if + * `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER` is set. + * - `SDL_PROP_PROCESS_CREATE_BACKGROUND_BOOLEAN`: true if the process should + * run in the background. In this case the default input and output is + * `SDL_PROCESS_STDIO_NULL` and the exitcode of the process is not + * available, and will always be 0. + * + * On POSIX platforms, wait() and waitpid(-1, ...) should not be called, and + * SIGCHLD should not be ignored or handled because those would prevent SDL + * from properly tracking the lifetime of the underlying process. You should + * use SDL_WaitProcess() instead. + * + * \param props the properties to use. + * \returns the newly created and running process, or NULL if the process + * couldn't be created. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_GetProcessProperties + * \sa SDL_ReadProcess + * \sa SDL_GetProcessInput + * \sa SDL_GetProcessOutput + * \sa SDL_KillProcess + * \sa SDL_WaitProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC SDL_Process * SDLCALL SDL_CreateProcessWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_PROCESS_CREATE_ARGS_POINTER "SDL.process.create.args" +#define SDL_PROP_PROCESS_CREATE_ENVIRONMENT_POINTER "SDL.process.create.environment" +#define SDL_PROP_PROCESS_CREATE_STDIN_NUMBER "SDL.process.create.stdin_option" +#define SDL_PROP_PROCESS_CREATE_STDIN_POINTER "SDL.process.create.stdin_source" +#define SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER "SDL.process.create.stdout_option" +#define SDL_PROP_PROCESS_CREATE_STDOUT_POINTER "SDL.process.create.stdout_source" +#define SDL_PROP_PROCESS_CREATE_STDERR_NUMBER "SDL.process.create.stderr_option" +#define SDL_PROP_PROCESS_CREATE_STDERR_POINTER "SDL.process.create.stderr_source" +#define SDL_PROP_PROCESS_CREATE_STDERR_TO_STDOUT_BOOLEAN "SDL.process.create.stderr_to_stdout" +#define SDL_PROP_PROCESS_CREATE_BACKGROUND_BOOLEAN "SDL.process.create.background" + +/** + * Get the properties associated with a process. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_PROCESS_PID_NUMBER`: the process ID of the process. + * - `SDL_PROP_PROCESS_STDIN_POINTER`: an SDL_IOStream that can be used to + * write input to the process, if it was created with + * `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * - `SDL_PROP_PROCESS_STDOUT_POINTER`: a non-blocking SDL_IOStream that can + * be used to read output from the process, if it was created with + * `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * - `SDL_PROP_PROCESS_STDERR_POINTER`: a non-blocking SDL_IOStream that can + * be used to read error output from the process, if it was created with + * `SDL_PROP_PROCESS_CREATE_STDERR_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * - `SDL_PROP_PROCESS_BACKGROUND_BOOLEAN`: true if the process is running in + * the background. + * + * \param process the process to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetProcessProperties(SDL_Process *process); + +#define SDL_PROP_PROCESS_PID_NUMBER "SDL.process.pid" +#define SDL_PROP_PROCESS_STDIN_POINTER "SDL.process.stdin" +#define SDL_PROP_PROCESS_STDOUT_POINTER "SDL.process.stdout" +#define SDL_PROP_PROCESS_STDERR_POINTER "SDL.process.stderr" +#define SDL_PROP_PROCESS_BACKGROUND_BOOLEAN "SDL.process.background" + +/** + * Read all the output from a process. + * + * If a process was created with I/O enabled, you can use this function to + * read the output. This function blocks until the process is complete, + * capturing all output, and providing the process exit code. + * + * The data is allocated with a zero byte at the end (null terminated) for + * convenience. This extra byte is not included in the value reported via + * `datasize`. + * + * The data should be freed with SDL_free(). + * + * \param process The process to read. + * \param datasize a pointer filled in with the number of bytes read, may be + * NULL. + * \param exitcode a pointer filled in with the process exit code if the + * process has exited, may be NULL. + * \returns the data or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC void * SDLCALL SDL_ReadProcess(SDL_Process *process, size_t *datasize, int *exitcode); + +/** + * Get the SDL_IOStream associated with process standard input. + * + * The process must have been created with SDL_CreateProcess() and pipe_stdio + * set to true, or with SDL_CreateProcessWithProperties() and + * `SDL_PROP_PROCESS_CREATE_STDIN_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * + * Writing to this stream can return less data than expected if the process + * hasn't read its input. It may be blocked waiting for its output to be read, + * if so you may need to call SDL_GetProcessOutput() and read the output in + * parallel with writing input. + * + * \param process The process to get the input stream for. + * \returns the input stream or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessOutput + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_GetProcessInput(SDL_Process *process); + +/** + * Get the SDL_IOStream associated with process standard output. + * + * The process must have been created with SDL_CreateProcess() and pipe_stdio + * set to true, or with SDL_CreateProcessWithProperties() and + * `SDL_PROP_PROCESS_CREATE_STDOUT_NUMBER` set to `SDL_PROCESS_STDIO_APP`. + * + * Reading from this stream can return 0 with SDL_GetIOStatus() returning + * SDL_IO_STATUS_NOT_READY if no output is available yet. + * + * \param process The process to get the output stream for. + * \returns the output stream or NULL on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_GetProcessInput + */ +extern SDL_DECLSPEC SDL_IOStream * SDLCALL SDL_GetProcessOutput(SDL_Process *process); + +/** + * Stop a process. + * + * \param process The process to stop. + * \param force true to terminate the process immediately, false to try to + * stop the process gracefully. In general you should try to stop + * the process gracefully first as terminating a process may + * leave it with half-written data or in some other unstable + * state. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_WaitProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC bool SDLCALL SDL_KillProcess(SDL_Process *process, bool force); + +/** + * Wait for a process to finish. + * + * This can be called multiple times to get the status of a process. + * + * The exit code will be the exit code of the process if it terminates + * normally, a negative signal if it terminated due to a signal, or -255 + * otherwise. It will not be changed if the process is still running. + * + * If you create a process with standard output piped to the application + * (`pipe_stdio` being true) then you should read all of the process output + * before calling SDL_WaitProcess(). If you don't do this the process might be + * blocked indefinitely waiting for output to be read and SDL_WaitProcess() + * will never return true; + * + * \param process The process to wait for. + * \param block If true, block until the process finishes; otherwise, report + * on the process' status. + * \param exitcode a pointer filled in with the process exit code if the + * process has exited, may be NULL. + * \returns true if the process exited, false otherwise. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_KillProcess + * \sa SDL_DestroyProcess + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WaitProcess(SDL_Process *process, bool block, int *exitcode); + +/** + * Destroy a previously created process object. + * + * Note that this does not stop the process, just destroys the SDL object used + * to track it. If you want to stop the process you should use + * SDL_KillProcess(). + * + * \param process The process object to destroy. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProcess + * \sa SDL_CreateProcessWithProperties + * \sa SDL_KillProcess + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyProcess(SDL_Process *process); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_process_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_properties.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_properties.h new file mode 100644 index 0000000..1f47d5f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_properties.h @@ -0,0 +1,543 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryProperties + * + * A property is a variable that can be created and retrieved by name at + * runtime. + * + * All properties are part of a property group (SDL_PropertiesID). A property + * group can be created with the SDL_CreateProperties function and destroyed + * with the SDL_DestroyProperties function. + * + * Properties can be added to and retrieved from a property group through the + * following functions: + * + * - SDL_SetPointerProperty and SDL_GetPointerProperty operate on `void*` + * pointer types. + * - SDL_SetStringProperty and SDL_GetStringProperty operate on string types. + * - SDL_SetNumberProperty and SDL_GetNumberProperty operate on signed 64-bit + * integer types. + * - SDL_SetFloatProperty and SDL_GetFloatProperty operate on floating point + * types. + * - SDL_SetBooleanProperty and SDL_GetBooleanProperty operate on boolean + * types. + * + * Properties can be removed from a group by using SDL_ClearProperty. + */ + + +#ifndef SDL_properties_h_ +#define SDL_properties_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * SDL properties ID + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_PropertiesID; + +/** + * SDL property type + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_PropertyType +{ + SDL_PROPERTY_TYPE_INVALID, + SDL_PROPERTY_TYPE_POINTER, + SDL_PROPERTY_TYPE_STRING, + SDL_PROPERTY_TYPE_NUMBER, + SDL_PROPERTY_TYPE_FLOAT, + SDL_PROPERTY_TYPE_BOOLEAN +} SDL_PropertyType; + +/** + * Get the global SDL properties. + * + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetGlobalProperties(void); + +/** + * Create a group of properties. + * + * All properties are automatically destroyed when SDL_Quit() is called. + * + * \returns an ID for a new group of properties, or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyProperties + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_CreateProperties(void); + +/** + * Copy a group of properties. + * + * Copy all the properties from one group of properties to another, with the + * exception of properties requiring cleanup (set using + * SDL_SetPointerPropertyWithCleanup()), which will not be copied. Any + * property that already exists on `dst` will be overwritten. + * + * \param src the properties to copy. + * \param dst the destination properties. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CopyProperties(SDL_PropertiesID src, SDL_PropertiesID dst); + +/** + * Lock a group of properties. + * + * Obtain a multi-threaded lock for these properties. Other threads will wait + * while trying to lock these properties until they are unlocked. Properties + * must be unlocked before they are destroyed. + * + * The lock is automatically taken when setting individual properties, this + * function is only needed when you want to set several properties atomically + * or want to guarantee that properties being queried aren't freed in another + * thread. + * + * \param props the properties to lock. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UnlockProperties + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockProperties(SDL_PropertiesID props); + +/** + * Unlock a group of properties. + * + * \param props the properties to unlock. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockProperties(SDL_PropertiesID props); + +/** + * A callback used to free resources when a property is deleted. + * + * This should release any resources associated with `value` that are no + * longer needed. + * + * This callback is set per-property. Different properties in the same group + * can have different cleanup callbacks. + * + * This callback will be called _during_ SDL_SetPointerPropertyWithCleanup if + * the function fails for any reason. + * + * \param userdata an app-defined pointer passed to the callback. + * \param value the pointer assigned to the property to clean up. + * + * \threadsafety This callback may fire without any locks held; if this is a + * concern, the app should provide its own locking. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetPointerPropertyWithCleanup + */ +typedef void (SDLCALL *SDL_CleanupPropertyCallback)(void *userdata, void *value); + +/** + * Set a pointer property in a group of properties with a cleanup function + * that is called when the property is deleted. + * + * The cleanup function is also called if setting the property fails for any + * reason. + * + * For simply setting basic data types, like numbers, bools, or strings, use + * SDL_SetNumberProperty, SDL_SetBooleanProperty, or SDL_SetStringProperty + * instead, as those functions will handle cleanup on your behalf. This + * function is only for more complex, custom data. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property, or NULL to delete the property. + * \param cleanup the function to call when this property is deleted, or NULL + * if no cleanup is necessary. + * \param userdata a pointer that is passed to the cleanup function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPointerProperty + * \sa SDL_SetPointerProperty + * \sa SDL_CleanupPropertyCallback + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPointerPropertyWithCleanup(SDL_PropertiesID props, const char *name, void *value, SDL_CleanupPropertyCallback cleanup, void *userdata); + +/** + * Set a pointer property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property, or NULL to delete the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPointerProperty + * \sa SDL_HasProperty + * \sa SDL_SetBooleanProperty + * \sa SDL_SetFloatProperty + * \sa SDL_SetNumberProperty + * \sa SDL_SetPointerPropertyWithCleanup + * \sa SDL_SetStringProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetPointerProperty(SDL_PropertiesID props, const char *name, void *value); + +/** + * Set a string property in a group of properties. + * + * This function makes a copy of the string; the caller does not have to + * preserve the data after this call completes. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property, or NULL to delete the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetStringProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetStringProperty(SDL_PropertiesID props, const char *name, const char *value); + +/** + * Set an integer property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumberProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetNumberProperty(SDL_PropertiesID props, const char *name, Sint64 value); + +/** + * Set a floating point property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetFloatProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetFloatProperty(SDL_PropertiesID props, const char *name, float value); + +/** + * Set a boolean property in a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to modify. + * \param value the new value of the property. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetBooleanProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetBooleanProperty(SDL_PropertiesID props, const char *name, bool value); + +/** + * Return whether a property exists in a group of properties. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \returns true if the property exists, or false if it doesn't. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasProperty(SDL_PropertiesID props, const char *name); + +/** + * Get the type of a property in a group of properties. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \returns the type of the property, or SDL_PROPERTY_TYPE_INVALID if it is + * not set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasProperty + */ +extern SDL_DECLSPEC SDL_PropertyType SDLCALL SDL_GetPropertyType(SDL_PropertiesID props, const char *name); + +/** + * Get a pointer property from a group of properties. + * + * By convention, the names of properties that SDL exposes on objects will + * start with "SDL.", and properties that SDL uses internally will start with + * "SDL.internal.". These should be considered read-only and should not be + * modified by applications. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a pointer property. + * + * \threadsafety It is safe to call this function from any thread, although + * the data returned is not protected and could potentially be + * freed if you call SDL_SetPointerProperty() or + * SDL_ClearProperty() on these properties from another thread. + * If you need to avoid this, use SDL_LockProperties() and + * SDL_UnlockProperties(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetBooleanProperty + * \sa SDL_GetFloatProperty + * \sa SDL_GetNumberProperty + * \sa SDL_GetPropertyType + * \sa SDL_GetStringProperty + * \sa SDL_HasProperty + * \sa SDL_SetPointerProperty + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetPointerProperty(SDL_PropertiesID props, const char *name, void *default_value); + +/** + * Get a string property from a group of properties. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a string property. + * + * \threadsafety It is safe to call this function from any thread, although + * the data returned is not protected and could potentially be + * freed if you call SDL_SetStringProperty() or + * SDL_ClearProperty() on these properties from another thread. + * If you need to avoid this, use SDL_LockProperties() and + * SDL_UnlockProperties(). + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetStringProperty + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetStringProperty(SDL_PropertiesID props, const char *name, const char *default_value); + +/** + * Get a number property from a group of properties. + * + * You can use SDL_GetPropertyType() to query whether the property exists and + * is a number property. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a number property. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetNumberProperty + */ +extern SDL_DECLSPEC Sint64 SDLCALL SDL_GetNumberProperty(SDL_PropertiesID props, const char *name, Sint64 default_value); + +/** + * Get a floating point property from a group of properties. + * + * You can use SDL_GetPropertyType() to query whether the property exists and + * is a floating point property. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a float property. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetFloatProperty + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetFloatProperty(SDL_PropertiesID props, const char *name, float default_value); + +/** + * Get a boolean property from a group of properties. + * + * You can use SDL_GetPropertyType() to query whether the property exists and + * is a boolean property. + * + * \param props the properties to query. + * \param name the name of the property to query. + * \param default_value the default value of the property. + * \returns the value of the property, or `default_value` if it is not set or + * not a boolean property. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPropertyType + * \sa SDL_HasProperty + * \sa SDL_SetBooleanProperty + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetBooleanProperty(SDL_PropertiesID props, const char *name, bool default_value); + +/** + * Clear a property from a group of properties. + * + * \param props the properties to modify. + * \param name the name of the property to clear. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearProperty(SDL_PropertiesID props, const char *name); + +/** + * A callback used to enumerate all the properties in a group of properties. + * + * This callback is called from SDL_EnumerateProperties(), and is called once + * per property in the set. + * + * \param userdata an app-defined pointer passed to the callback. + * \param props the SDL_PropertiesID that is being enumerated. + * \param name the next property name in the enumeration. + * + * \threadsafety SDL_EnumerateProperties holds a lock on `props` during this + * callback. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EnumerateProperties + */ +typedef void (SDLCALL *SDL_EnumeratePropertiesCallback)(void *userdata, SDL_PropertiesID props, const char *name); + +/** + * Enumerate the properties contained in a group of properties. + * + * The callback function is called for each property in the group of + * properties. The properties are locked during enumeration. + * + * \param props the properties to query. + * \param callback the function to call for each property. + * \param userdata a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnumerateProperties(SDL_PropertiesID props, SDL_EnumeratePropertiesCallback callback, void *userdata); + +/** + * Destroy a group of properties. + * + * All properties are deleted and their cleanup functions will be called, if + * any. + * + * \param props the properties to destroy. + * + * \threadsafety This function should not be called while these properties are + * locked or other threads might be setting or getting values + * from these properties. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyProperties(SDL_PropertiesID props); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_properties_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_rect.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_rect.h new file mode 100644 index 0000000..eb2d34a --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_rect.h @@ -0,0 +1,507 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryRect + * + * Some helper functions for managing rectangles and 2D points, in both + * integer and floating point versions. + */ + +#ifndef SDL_rect_h_ +#define SDL_rect_h_ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The structure that defines a point (using integers). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetRectEnclosingPoints + * \sa SDL_PointInRect + */ +typedef struct SDL_Point +{ + int x; + int y; +} SDL_Point; + +/** + * The structure that defines a point (using floating point values). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetRectEnclosingPointsFloat + * \sa SDL_PointInRectFloat + */ +typedef struct SDL_FPoint +{ + float x; + float y; +} SDL_FPoint; + + +/** + * A rectangle, with the origin at the upper left (using integers). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_RectEmpty + * \sa SDL_RectsEqual + * \sa SDL_HasRectIntersection + * \sa SDL_GetRectIntersection + * \sa SDL_GetRectAndLineIntersection + * \sa SDL_GetRectUnion + * \sa SDL_GetRectEnclosingPoints + */ +typedef struct SDL_Rect +{ + int x, y; + int w, h; +} SDL_Rect; + + +/** + * A rectangle, with the origin at the upper left (using floating point + * values). + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_RectEmptyFloat + * \sa SDL_RectsEqualFloat + * \sa SDL_RectsEqualEpsilon + * \sa SDL_HasRectIntersectionFloat + * \sa SDL_GetRectIntersectionFloat + * \sa SDL_GetRectAndLineIntersectionFloat + * \sa SDL_GetRectUnionFloat + * \sa SDL_GetRectEnclosingPointsFloat + * \sa SDL_PointInRectFloat + */ +typedef struct SDL_FRect +{ + float x; + float y; + float w; + float h; +} SDL_FRect; + + +/** + * Convert an SDL_Rect to SDL_FRect + * + * \param rect a pointer to an SDL_Rect. + * \param frect a pointer filled in with the floating point representation of + * `rect`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE void SDL_RectToFRect(const SDL_Rect *rect, SDL_FRect *frect) +{ + frect->x = (float)rect->x; + frect->y = (float)rect->y; + frect->w = (float)rect->w; + frect->h = (float)rect->h; +} + +/** + * Determine whether a point resides inside a rectangle. + * + * A point is considered part of a rectangle if both `p` and `r` are not NULL, + * and `p`'s x and y coordinates are >= to the rectangle's top left corner, + * and < the rectangle's x+w and y+h. So a 1x1 rectangle considers point (0,0) + * as "inside" and (0,1) as not. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param p the point to test. + * \param r the rectangle to test. + * \returns true if `p` is contained by `r`, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_PointInRect(const SDL_Point *p, const SDL_Rect *r) +{ + return ( p && r && (p->x >= r->x) && (p->x < (r->x + r->w)) && + (p->y >= r->y) && (p->y < (r->y + r->h)) ) ? true : false; +} + +/** + * Determine whether a rectangle has no area. + * + * A rectangle is considered "empty" for this function if `r` is NULL, or if + * `r`'s width and/or height are <= 0. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param r the rectangle to test. + * \returns true if the rectangle is "empty", false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_RectEmpty(const SDL_Rect *r) +{ + return ((!r) || (r->w <= 0) || (r->h <= 0)) ? true : false; +} + +/** + * Determine whether two rectangles are equal. + * + * Rectangles are considered equal if both are not NULL and each of their x, + * y, width and height match. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param a the first rectangle to test. + * \param b the second rectangle to test. + * \returns true if the rectangles are equal, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_RectsEqual(const SDL_Rect *a, const SDL_Rect *b) +{ + return (a && b && (a->x == b->x) && (a->y == b->y) && + (a->w == b->w) && (a->h == b->h)) ? true : false; +} + +/** + * Determine whether two rectangles intersect. + * + * If either pointer is NULL the function will return false. + * + * \param A an SDL_Rect structure representing the first rectangle. + * \param B an SDL_Rect structure representing the second rectangle. + * \returns true if there is an intersection, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRectIntersection + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasRectIntersection(const SDL_Rect *A, const SDL_Rect *B); + +/** + * Calculate the intersection of two rectangles. + * + * If `result` is NULL then this function will return false. + * + * \param A an SDL_Rect structure representing the first rectangle. + * \param B an SDL_Rect structure representing the second rectangle. + * \param result an SDL_Rect structure filled in with the intersection of + * rectangles `A` and `B`. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasRectIntersection + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectIntersection(const SDL_Rect *A, const SDL_Rect *B, SDL_Rect *result); + +/** + * Calculate the union of two rectangles. + * + * \param A an SDL_Rect structure representing the first rectangle. + * \param B an SDL_Rect structure representing the second rectangle. + * \param result an SDL_Rect structure filled in with the union of rectangles + * `A` and `B`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectUnion(const SDL_Rect *A, const SDL_Rect *B, SDL_Rect *result); + +/** + * Calculate a minimal rectangle enclosing a set of points. + * + * If `clip` is not NULL then only points inside of the clipping rectangle are + * considered. + * + * \param points an array of SDL_Point structures representing points to be + * enclosed. + * \param count the number of structures in the `points` array. + * \param clip an SDL_Rect used for clipping or NULL to enclose all points. + * \param result an SDL_Rect structure filled in with the minimal enclosing + * rectangle. + * \returns true if any points were enclosed or false if all the points were + * outside of the clipping rectangle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectEnclosingPoints(const SDL_Point *points, int count, const SDL_Rect *clip, SDL_Rect *result); + +/** + * Calculate the intersection of a rectangle and line segment. + * + * This function is used to clip a line segment to a rectangle. A line segment + * contained entirely within the rectangle or that does not intersect will + * remain unchanged. A line segment that crosses the rectangle at either or + * both ends will be clipped to the boundary of the rectangle and the new + * coordinates saved in `X1`, `Y1`, `X2`, and/or `Y2` as necessary. + * + * \param rect an SDL_Rect structure representing the rectangle to intersect. + * \param X1 a pointer to the starting X-coordinate of the line. + * \param Y1 a pointer to the starting Y-coordinate of the line. + * \param X2 a pointer to the ending X-coordinate of the line. + * \param Y2 a pointer to the ending Y-coordinate of the line. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectAndLineIntersection(const SDL_Rect *rect, int *X1, int *Y1, int *X2, int *Y2); + + +/* SDL_FRect versions... */ + +/** + * Determine whether a point resides inside a floating point rectangle. + * + * A point is considered part of a rectangle if both `p` and `r` are not NULL, + * and `p`'s x and y coordinates are >= to the rectangle's top left corner, + * and <= the rectangle's x+w and y+h. So a 1x1 rectangle considers point + * (0,0) and (0,1) as "inside" and (0,2) as not. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param p the point to test. + * \param r the rectangle to test. + * \returns true if `p` is contained by `r`, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_PointInRectFloat(const SDL_FPoint *p, const SDL_FRect *r) +{ + return ( p && r && (p->x >= r->x) && (p->x <= (r->x + r->w)) && + (p->y >= r->y) && (p->y <= (r->y + r->h)) ) ? true : false; +} + +/** + * Determine whether a floating point rectangle can contain any point. + * + * A rectangle is considered "empty" for this function if `r` is NULL, or if + * `r`'s width and/or height are < 0.0f. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param r the rectangle to test. + * \returns true if the rectangle is "empty", false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_RectEmptyFloat(const SDL_FRect *r) +{ + return ((!r) || (r->w < 0.0f) || (r->h < 0.0f)) ? true : false; +} + +/** + * Determine whether two floating point rectangles are equal, within some + * given epsilon. + * + * Rectangles are considered equal if both are not NULL and each of their x, + * y, width and height are within `epsilon` of each other. If you don't know + * what value to use for `epsilon`, you should call the SDL_RectsEqualFloat + * function instead. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param a the first rectangle to test. + * \param b the second rectangle to test. + * \param epsilon the epsilon value for comparison. + * \returns true if the rectangles are equal, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RectsEqualFloat + */ +SDL_FORCE_INLINE bool SDL_RectsEqualEpsilon(const SDL_FRect *a, const SDL_FRect *b, float epsilon) +{ + return (a && b && ((a == b) || + ((SDL_fabsf(a->x - b->x) <= epsilon) && + (SDL_fabsf(a->y - b->y) <= epsilon) && + (SDL_fabsf(a->w - b->w) <= epsilon) && + (SDL_fabsf(a->h - b->h) <= epsilon)))) + ? true : false; +} + +/** + * Determine whether two floating point rectangles are equal, within a default + * epsilon. + * + * Rectangles are considered equal if both are not NULL and each of their x, + * y, width and height are within SDL_FLT_EPSILON of each other. This is often + * a reasonable way to compare two floating point rectangles and deal with the + * slight precision variations in floating point calculations that tend to pop + * up. + * + * Note that this is a forced-inline function in a header, and not a public + * API function available in the SDL library (which is to say, the code is + * embedded in the calling program and the linker and dynamic loader will not + * be able to find this function inside SDL itself). + * + * \param a the first rectangle to test. + * \param b the second rectangle to test. + * \returns true if the rectangles are equal, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RectsEqualEpsilon + */ +SDL_FORCE_INLINE bool SDL_RectsEqualFloat(const SDL_FRect *a, const SDL_FRect *b) +{ + return SDL_RectsEqualEpsilon(a, b, SDL_FLT_EPSILON); +} + +/** + * Determine whether two rectangles intersect with float precision. + * + * If either pointer is NULL the function will return false. + * + * \param A an SDL_FRect structure representing the first rectangle. + * \param B an SDL_FRect structure representing the second rectangle. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRectIntersection + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HasRectIntersectionFloat(const SDL_FRect *A, const SDL_FRect *B); + +/** + * Calculate the intersection of two rectangles with float precision. + * + * If `result` is NULL then this function will return false. + * + * \param A an SDL_FRect structure representing the first rectangle. + * \param B an SDL_FRect structure representing the second rectangle. + * \param result an SDL_FRect structure filled in with the intersection of + * rectangles `A` and `B`. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HasRectIntersectionFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectIntersectionFloat(const SDL_FRect *A, const SDL_FRect *B, SDL_FRect *result); + +/** + * Calculate the union of two rectangles with float precision. + * + * \param A an SDL_FRect structure representing the first rectangle. + * \param B an SDL_FRect structure representing the second rectangle. + * \param result an SDL_FRect structure filled in with the union of rectangles + * `A` and `B`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectUnionFloat(const SDL_FRect *A, const SDL_FRect *B, SDL_FRect *result); + +/** + * Calculate a minimal rectangle enclosing a set of points with float + * precision. + * + * If `clip` is not NULL then only points inside of the clipping rectangle are + * considered. + * + * \param points an array of SDL_FPoint structures representing points to be + * enclosed. + * \param count the number of structures in the `points` array. + * \param clip an SDL_FRect used for clipping or NULL to enclose all points. + * \param result an SDL_FRect structure filled in with the minimal enclosing + * rectangle. + * \returns true if any points were enclosed or false if all the points were + * outside of the clipping rectangle. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectEnclosingPointsFloat(const SDL_FPoint *points, int count, const SDL_FRect *clip, SDL_FRect *result); + +/** + * Calculate the intersection of a rectangle and line segment with float + * precision. + * + * This function is used to clip a line segment to a rectangle. A line segment + * contained entirely within the rectangle or that does not intersect will + * remain unchanged. A line segment that crosses the rectangle at either or + * both ends will be clipped to the boundary of the rectangle and the new + * coordinates saved in `X1`, `Y1`, `X2`, and/or `Y2` as necessary. + * + * \param rect an SDL_FRect structure representing the rectangle to intersect. + * \param X1 a pointer to the starting X-coordinate of the line. + * \param Y1 a pointer to the starting Y-coordinate of the line. + * \param X2 a pointer to the ending X-coordinate of the line. + * \param Y2 a pointer to the ending Y-coordinate of the line. + * \returns true if there is an intersection, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRectAndLineIntersectionFloat(const SDL_FRect *rect, float *X1, float *Y1, float *X2, float *Y2); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_rect_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_render.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_render.h new file mode 100644 index 0000000..c9d184c --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_render.h @@ -0,0 +1,2645 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryRender + * + * Header file for SDL 2D rendering functions. + * + * This API supports the following features: + * + * - single pixel points + * - single pixel lines + * - filled rectangles + * - texture images + * - 2D polygons + * + * The primitives may be drawn in opaque, blended, or additive modes. + * + * The texture images may be drawn in opaque, blended, or additive modes. They + * can have an additional color tint or alpha modulation applied to them, and + * may also be stretched with linear interpolation. + * + * This API is designed to accelerate simple 2D operations. You may want more + * functionality such as polygons and particle effects and in that case you + * should use SDL's OpenGL/Direct3D support, the SDL3 GPU API, or one of the + * many good 3D engines. + * + * These functions must be called from the main thread. See this bug for + * details: https://github.com/libsdl-org/SDL/issues/986 + */ + +#ifndef SDL_render_h_ +#define SDL_render_h_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The name of the software renderer. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SOFTWARE_RENDERER "software" + +/** + * Vertex structure. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Vertex +{ + SDL_FPoint position; /**< Vertex position, in SDL_Renderer coordinates */ + SDL_FColor color; /**< Vertex color */ + SDL_FPoint tex_coord; /**< Normalized texture coordinates, if needed */ +} SDL_Vertex; + +/** + * The access pattern allowed for a texture. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_TextureAccess +{ + SDL_TEXTUREACCESS_STATIC, /**< Changes rarely, not lockable */ + SDL_TEXTUREACCESS_STREAMING, /**< Changes frequently, lockable */ + SDL_TEXTUREACCESS_TARGET /**< Texture can be used as a render target */ +} SDL_TextureAccess; + +/** + * How the logical size is mapped to the output. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_RendererLogicalPresentation +{ + SDL_LOGICAL_PRESENTATION_DISABLED, /**< There is no logical size in effect */ + SDL_LOGICAL_PRESENTATION_STRETCH, /**< The rendered content is stretched to the output resolution */ + SDL_LOGICAL_PRESENTATION_LETTERBOX, /**< The rendered content is fit to the largest dimension and the other dimension is letterboxed with black bars */ + SDL_LOGICAL_PRESENTATION_OVERSCAN, /**< The rendered content is fit to the smallest dimension and the other dimension extends beyond the output bounds */ + SDL_LOGICAL_PRESENTATION_INTEGER_SCALE /**< The rendered content is scaled up by integer multiples to fit the output resolution */ +} SDL_RendererLogicalPresentation; + +/** + * A structure representing rendering state + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Renderer SDL_Renderer; + +#ifndef SDL_INTERNAL + +/** + * An efficient driver-specific representation of pixel data + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureFromSurface + * \sa SDL_CreateTextureWithProperties + * \sa SDL_DestroyTexture + */ +struct SDL_Texture +{ + SDL_PixelFormat format; /**< The format of the texture, read-only */ + int w; /**< The width of the texture, read-only. */ + int h; /**< The height of the texture, read-only. */ + + int refcount; /**< Application reference count, used when freeing texture */ +}; +#endif /* !SDL_INTERNAL */ + +typedef struct SDL_Texture SDL_Texture; + +/* Function prototypes */ + +/** + * Get the number of 2D rendering drivers available for the current display. + * + * A render driver is a set of code that handles rendering and texture + * management on a particular display. Normally there is only one, but some + * drivers may have several available with different capabilities. + * + * There may be none if SDL was compiled without render support. + * + * \returns the number of built in render drivers. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_GetRenderDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumRenderDrivers(void); + +/** + * Use this function to get the name of a built in 2D rendering driver. + * + * The list of rendering drivers is given in the order that they are normally + * initialized by default; the drivers that seem more reasonable to choose + * first (as far as the SDL developers believe) are earlier in the list. + * + * The names of drivers are all simple, low-ASCII identifiers, like "opengl", + * "direct3d12" or "metal". These never have Unicode characters, and are not + * meant to be proper names. + * + * \param index the index of the rendering driver; the value ranges from 0 to + * SDL_GetNumRenderDrivers() - 1. + * \returns the name of the rendering driver at the requested index, or NULL + * if an invalid index was specified. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumRenderDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetRenderDriver(int index); + +/** + * Create a window and default renderer. + * + * \param title the title of the window, in UTF-8 encoding. + * \param width the width of the window. + * \param height the height of the window. + * \param window_flags the flags used to create the window (see + * SDL_CreateWindow()). + * \param window a pointer filled with the window, or NULL on error. + * \param renderer a pointer filled with the renderer, or NULL on error. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_CreateWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CreateWindowAndRenderer(const char *title, int width, int height, SDL_WindowFlags window_flags, SDL_Window **window, SDL_Renderer **renderer); + +/** + * Create a 2D rendering context for a window. + * + * If you want a specific renderer, you can specify its name here. A list of + * available renderers can be obtained by calling SDL_GetRenderDriver() + * multiple times, with indices from 0 to SDL_GetNumRenderDrivers()-1. If you + * don't need a specific renderer, specify NULL and SDL will attempt to choose + * the best option for you, based on what is available on the user's system. + * + * If `name` is a comma-separated list, SDL will try each name, in the order + * listed, until one succeeds or all of them fail. + * + * By default the rendering size matches the window size in pixels, but you + * can call SDL_SetRenderLogicalPresentation() to change the content size and + * scaling options. + * + * \param window the window where rendering is displayed. + * \param name the name of the rendering driver to initialize, or NULL to let + * SDL choose one. + * \returns a valid rendering context or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRendererWithProperties + * \sa SDL_CreateSoftwareRenderer + * \sa SDL_DestroyRenderer + * \sa SDL_GetNumRenderDrivers + * \sa SDL_GetRenderDriver + * \sa SDL_GetRendererName + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_CreateRenderer(SDL_Window *window, const char *name); + +/** + * Create a 2D rendering context for a window, with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_RENDERER_CREATE_NAME_STRING`: the name of the rendering driver + * to use, if a specific one is desired + * - `SDL_PROP_RENDERER_CREATE_WINDOW_POINTER`: the window where rendering is + * displayed, required if this isn't a software renderer using a surface + * - `SDL_PROP_RENDERER_CREATE_SURFACE_POINTER`: the surface where rendering + * is displayed, if you want a software renderer without a window + * - `SDL_PROP_RENDERER_CREATE_OUTPUT_COLORSPACE_NUMBER`: an SDL_Colorspace + * value describing the colorspace for output to the display, defaults to + * SDL_COLORSPACE_SRGB. The direct3d11, direct3d12, and metal renderers + * support SDL_COLORSPACE_SRGB_LINEAR, which is a linear color space and + * supports HDR output. If you select SDL_COLORSPACE_SRGB_LINEAR, drawing + * still uses the sRGB colorspace, but values can go beyond 1.0 and float + * (linear) format textures can be used for HDR content. + * - `SDL_PROP_RENDERER_CREATE_PRESENT_VSYNC_NUMBER`: non-zero if you want + * present synchronized with the refresh rate. This property can take any + * value that is supported by SDL_SetRenderVSync() for the renderer. + * + * With the vulkan renderer: + * + * - `SDL_PROP_RENDERER_CREATE_VULKAN_INSTANCE_POINTER`: the VkInstance to use + * with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_SURFACE_NUMBER`: the VkSurfaceKHR to use + * with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_PHYSICAL_DEVICE_POINTER`: the + * VkPhysicalDevice to use with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_DEVICE_POINTER`: the VkDevice to use + * with the renderer, optional. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER`: the + * queue family index used for rendering. + * - `SDL_PROP_RENDERER_CREATE_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER`: the + * queue family index used for presentation. + * + * \param props the properties to use. + * \returns a valid rendering context or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + * \sa SDL_CreateRenderer + * \sa SDL_CreateSoftwareRenderer + * \sa SDL_DestroyRenderer + * \sa SDL_GetRendererName + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_CreateRendererWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_RENDERER_CREATE_NAME_STRING "SDL.renderer.create.name" +#define SDL_PROP_RENDERER_CREATE_WINDOW_POINTER "SDL.renderer.create.window" +#define SDL_PROP_RENDERER_CREATE_SURFACE_POINTER "SDL.renderer.create.surface" +#define SDL_PROP_RENDERER_CREATE_OUTPUT_COLORSPACE_NUMBER "SDL.renderer.create.output_colorspace" +#define SDL_PROP_RENDERER_CREATE_PRESENT_VSYNC_NUMBER "SDL.renderer.create.present_vsync" +#define SDL_PROP_RENDERER_CREATE_VULKAN_INSTANCE_POINTER "SDL.renderer.create.vulkan.instance" +#define SDL_PROP_RENDERER_CREATE_VULKAN_SURFACE_NUMBER "SDL.renderer.create.vulkan.surface" +#define SDL_PROP_RENDERER_CREATE_VULKAN_PHYSICAL_DEVICE_POINTER "SDL.renderer.create.vulkan.physical_device" +#define SDL_PROP_RENDERER_CREATE_VULKAN_DEVICE_POINTER "SDL.renderer.create.vulkan.device" +#define SDL_PROP_RENDERER_CREATE_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.create.vulkan.graphics_queue_family_index" +#define SDL_PROP_RENDERER_CREATE_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.create.vulkan.present_queue_family_index" + +/** + * Create a 2D software rendering context for a surface. + * + * Two other API which can be used to create SDL_Renderer: + * SDL_CreateRenderer() and SDL_CreateWindowAndRenderer(). These can _also_ + * create a software renderer, but they are intended to be used with an + * SDL_Window as the final destination and not an SDL_Surface. + * + * \param surface the SDL_Surface structure representing the surface where + * rendering is done. + * \returns a valid rendering context or NULL if there was an error; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyRenderer + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_CreateSoftwareRenderer(SDL_Surface *surface); + +/** + * Get the renderer associated with a window. + * + * \param window the window to query. + * \returns the rendering context on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_GetRenderer(SDL_Window *window); + +/** + * Get the window associated with a renderer. + * + * \param renderer the renderer to query. + * \returns the window on success or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetRenderWindow(SDL_Renderer *renderer); + +/** + * Get the name of a renderer. + * + * \param renderer the rendering context. + * \returns the name of the selected renderer, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_CreateRendererWithProperties + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetRendererName(SDL_Renderer *renderer); + +/** + * Get the properties associated with a renderer. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_RENDERER_NAME_STRING`: the name of the rendering driver + * - `SDL_PROP_RENDERER_WINDOW_POINTER`: the window where rendering is + * displayed, if any + * - `SDL_PROP_RENDERER_SURFACE_POINTER`: the surface where rendering is + * displayed, if this is a software renderer without a window + * - `SDL_PROP_RENDERER_VSYNC_NUMBER`: the current vsync setting + * - `SDL_PROP_RENDERER_MAX_TEXTURE_SIZE_NUMBER`: the maximum texture width + * and height + * - `SDL_PROP_RENDERER_TEXTURE_FORMATS_POINTER`: a (const SDL_PixelFormat *) + * array of pixel formats, terminated with SDL_PIXELFORMAT_UNKNOWN, + * representing the available texture formats for this renderer. + * - `SDL_PROP_RENDERER_OUTPUT_COLORSPACE_NUMBER`: an SDL_Colorspace value + * describing the colorspace for output to the display, defaults to + * SDL_COLORSPACE_SRGB. + * - `SDL_PROP_RENDERER_HDR_ENABLED_BOOLEAN`: true if the output colorspace is + * SDL_COLORSPACE_SRGB_LINEAR and the renderer is showing on a display with + * HDR enabled. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_RENDERER_SDR_WHITE_POINT_FLOAT`: the value of SDR white in the + * SDL_COLORSPACE_SRGB_LINEAR colorspace. When HDR is enabled, this value is + * automatically multiplied into the color scale. This property can change + * dynamically when SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_RENDERER_HDR_HEADROOM_FLOAT`: the additional high dynamic range + * that can be displayed, in terms of the SDR white point. When HDR is not + * enabled, this will be 1.0. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * + * With the direct3d renderer: + * + * - `SDL_PROP_RENDERER_D3D9_DEVICE_POINTER`: the IDirect3DDevice9 associated + * with the renderer + * + * With the direct3d11 renderer: + * + * - `SDL_PROP_RENDERER_D3D11_DEVICE_POINTER`: the ID3D11Device associated + * with the renderer + * - `SDL_PROP_RENDERER_D3D11_SWAPCHAIN_POINTER`: the IDXGISwapChain1 + * associated with the renderer. This may change when the window is resized. + * + * With the direct3d12 renderer: + * + * - `SDL_PROP_RENDERER_D3D12_DEVICE_POINTER`: the ID3D12Device associated + * with the renderer + * - `SDL_PROP_RENDERER_D3D12_SWAPCHAIN_POINTER`: the IDXGISwapChain4 + * associated with the renderer. + * - `SDL_PROP_RENDERER_D3D12_COMMAND_QUEUE_POINTER`: the ID3D12CommandQueue + * associated with the renderer + * + * With the vulkan renderer: + * + * - `SDL_PROP_RENDERER_VULKAN_INSTANCE_POINTER`: the VkInstance associated + * with the renderer + * - `SDL_PROP_RENDERER_VULKAN_SURFACE_NUMBER`: the VkSurfaceKHR associated + * with the renderer + * - `SDL_PROP_RENDERER_VULKAN_PHYSICAL_DEVICE_POINTER`: the VkPhysicalDevice + * associated with the renderer + * - `SDL_PROP_RENDERER_VULKAN_DEVICE_POINTER`: the VkDevice associated with + * the renderer + * - `SDL_PROP_RENDERER_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER`: the queue + * family index used for rendering + * - `SDL_PROP_RENDERER_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER`: the queue + * family index used for presentation + * - `SDL_PROP_RENDERER_VULKAN_SWAPCHAIN_IMAGE_COUNT_NUMBER`: the number of + * swapchain images, or potential frames in flight, used by the Vulkan + * renderer + * + * With the gpu renderer: + * + * - `SDL_PROP_RENDERER_GPU_DEVICE_POINTER`: the SDL_GPUDevice associated with + * the renderer + * + * \param renderer the rendering context. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetRendererProperties(SDL_Renderer *renderer); + +#define SDL_PROP_RENDERER_NAME_STRING "SDL.renderer.name" +#define SDL_PROP_RENDERER_WINDOW_POINTER "SDL.renderer.window" +#define SDL_PROP_RENDERER_SURFACE_POINTER "SDL.renderer.surface" +#define SDL_PROP_RENDERER_VSYNC_NUMBER "SDL.renderer.vsync" +#define SDL_PROP_RENDERER_MAX_TEXTURE_SIZE_NUMBER "SDL.renderer.max_texture_size" +#define SDL_PROP_RENDERER_TEXTURE_FORMATS_POINTER "SDL.renderer.texture_formats" +#define SDL_PROP_RENDERER_OUTPUT_COLORSPACE_NUMBER "SDL.renderer.output_colorspace" +#define SDL_PROP_RENDERER_HDR_ENABLED_BOOLEAN "SDL.renderer.HDR_enabled" +#define SDL_PROP_RENDERER_SDR_WHITE_POINT_FLOAT "SDL.renderer.SDR_white_point" +#define SDL_PROP_RENDERER_HDR_HEADROOM_FLOAT "SDL.renderer.HDR_headroom" +#define SDL_PROP_RENDERER_D3D9_DEVICE_POINTER "SDL.renderer.d3d9.device" +#define SDL_PROP_RENDERER_D3D11_DEVICE_POINTER "SDL.renderer.d3d11.device" +#define SDL_PROP_RENDERER_D3D11_SWAPCHAIN_POINTER "SDL.renderer.d3d11.swap_chain" +#define SDL_PROP_RENDERER_D3D12_DEVICE_POINTER "SDL.renderer.d3d12.device" +#define SDL_PROP_RENDERER_D3D12_SWAPCHAIN_POINTER "SDL.renderer.d3d12.swap_chain" +#define SDL_PROP_RENDERER_D3D12_COMMAND_QUEUE_POINTER "SDL.renderer.d3d12.command_queue" +#define SDL_PROP_RENDERER_VULKAN_INSTANCE_POINTER "SDL.renderer.vulkan.instance" +#define SDL_PROP_RENDERER_VULKAN_SURFACE_NUMBER "SDL.renderer.vulkan.surface" +#define SDL_PROP_RENDERER_VULKAN_PHYSICAL_DEVICE_POINTER "SDL.renderer.vulkan.physical_device" +#define SDL_PROP_RENDERER_VULKAN_DEVICE_POINTER "SDL.renderer.vulkan.device" +#define SDL_PROP_RENDERER_VULKAN_GRAPHICS_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.vulkan.graphics_queue_family_index" +#define SDL_PROP_RENDERER_VULKAN_PRESENT_QUEUE_FAMILY_INDEX_NUMBER "SDL.renderer.vulkan.present_queue_family_index" +#define SDL_PROP_RENDERER_VULKAN_SWAPCHAIN_IMAGE_COUNT_NUMBER "SDL.renderer.vulkan.swapchain_image_count" +#define SDL_PROP_RENDERER_GPU_DEVICE_POINTER "SDL.renderer.gpu.device" + +/** + * Get the output size in pixels of a rendering context. + * + * This returns the true output size in pixels, ignoring any render targets or + * logical size and presentation. + * + * For the output size of the current rendering target, with logical size + * adjustments, use SDL_GetCurrentRenderOutputSize() instead. + * + * \param renderer the rendering context. + * \param w a pointer filled in with the width in pixels. + * \param h a pointer filled in with the height in pixels. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentRenderOutputSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderOutputSize(SDL_Renderer *renderer, int *w, int *h); + +/** + * Get the current output size in pixels of a rendering context. + * + * If a rendering target is active, this will return the size of the rendering + * target in pixels, otherwise return the value of SDL_GetRenderOutputSize(). + * + * Rendering target or not, the output will be adjusted by the current logical + * presentation state, dictated by SDL_SetRenderLogicalPresentation(). + * + * \param renderer the rendering context. + * \param w a pointer filled in with the current width. + * \param h a pointer filled in with the current height. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderOutputSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetCurrentRenderOutputSize(SDL_Renderer *renderer, int *w, int *h); + +/** + * Create a texture for a rendering context. + * + * The contents of a texture when first created are not defined. + * + * \param renderer the rendering context. + * \param format one of the enumerated values in SDL_PixelFormat. + * \param access one of the enumerated values in SDL_TextureAccess. + * \param w the width of the texture in pixels. + * \param h the height of the texture in pixels. + * \returns the created texture or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTextureFromSurface + * \sa SDL_CreateTextureWithProperties + * \sa SDL_DestroyTexture + * \sa SDL_GetTextureSize + * \sa SDL_UpdateTexture + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_CreateTexture(SDL_Renderer *renderer, SDL_PixelFormat format, SDL_TextureAccess access, int w, int h); + +/** + * Create a texture from an existing surface. + * + * The surface is not modified or freed by this function. + * + * The SDL_TextureAccess hint for the created texture is + * `SDL_TEXTUREACCESS_STATIC`. + * + * The pixel format of the created texture may be different from the pixel + * format of the surface, and can be queried using the + * SDL_PROP_TEXTURE_FORMAT_NUMBER property. + * + * \param renderer the rendering context. + * \param surface the SDL_Surface structure containing pixel data used to fill + * the texture. + * \returns the created texture or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureWithProperties + * \sa SDL_DestroyTexture + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_CreateTextureFromSurface(SDL_Renderer *renderer, SDL_Surface *surface); + +/** + * Create a texture for a rendering context with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_TEXTURE_CREATE_COLORSPACE_NUMBER`: an SDL_Colorspace value + * describing the texture colorspace, defaults to SDL_COLORSPACE_SRGB_LINEAR + * for floating point textures, SDL_COLORSPACE_HDR10 for 10-bit textures, + * SDL_COLORSPACE_SRGB for other RGB textures and SDL_COLORSPACE_JPEG for + * YUV textures. + * - `SDL_PROP_TEXTURE_CREATE_FORMAT_NUMBER`: one of the enumerated values in + * SDL_PixelFormat, defaults to the best RGBA format for the renderer + * - `SDL_PROP_TEXTURE_CREATE_ACCESS_NUMBER`: one of the enumerated values in + * SDL_TextureAccess, defaults to SDL_TEXTUREACCESS_STATIC + * - `SDL_PROP_TEXTURE_CREATE_WIDTH_NUMBER`: the width of the texture in + * pixels, required + * - `SDL_PROP_TEXTURE_CREATE_HEIGHT_NUMBER`: the height of the texture in + * pixels, required + * - `SDL_PROP_TEXTURE_CREATE_SDR_WHITE_POINT_FLOAT`: for HDR10 and floating + * point textures, this defines the value of 100% diffuse white, with higher + * values being displayed in the High Dynamic Range headroom. This defaults + * to 100 for HDR10 textures and 1.0 for floating point textures. + * - `SDL_PROP_TEXTURE_CREATE_HDR_HEADROOM_FLOAT`: for HDR10 and floating + * point textures, this defines the maximum dynamic range used by the + * content, in terms of the SDR white point. This would be equivalent to + * maxCLL / SDL_PROP_TEXTURE_CREATE_SDR_WHITE_POINT_FLOAT for HDR10 content. + * If this is defined, any values outside the range supported by the display + * will be scaled into the available HDR headroom, otherwise they are + * clipped. + * + * With the direct3d11 renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_POINTER`: the ID3D11Texture2D + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_U_POINTER`: the ID3D11Texture2D + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_V_POINTER`: the ID3D11Texture2D + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the direct3d12 renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_POINTER`: the ID3D12Resource + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_U_POINTER`: the ID3D12Resource + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_V_POINTER`: the ID3D12Resource + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the metal renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_METAL_PIXELBUFFER_POINTER`: the CVPixelBufferRef + * associated with the texture, if you want to create a texture from an + * existing pixel buffer. + * + * With the opengl renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_U_NUMBER`: the GLuint texture + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_V_NUMBER`: the GLuint texture + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the opengles2 renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture, if you want to wrap an existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_U_NUMBER`: the GLuint texture + * associated with the U plane of a YUV texture, if you want to wrap an + * existing texture. + * - `SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_V_NUMBER`: the GLuint texture + * associated with the V plane of a YUV texture, if you want to wrap an + * existing texture. + * + * With the vulkan renderer: + * + * - `SDL_PROP_TEXTURE_CREATE_VULKAN_TEXTURE_NUMBER`: the VkImage with layout + * VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL associated with the texture, if + * you want to wrap an existing texture. + * + * \param renderer the rendering context. + * \param props the properties to use. + * \returns the created texture or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureFromSurface + * \sa SDL_DestroyTexture + * \sa SDL_GetTextureSize + * \sa SDL_UpdateTexture + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_CreateTextureWithProperties(SDL_Renderer *renderer, SDL_PropertiesID props); + +#define SDL_PROP_TEXTURE_CREATE_COLORSPACE_NUMBER "SDL.texture.create.colorspace" +#define SDL_PROP_TEXTURE_CREATE_FORMAT_NUMBER "SDL.texture.create.format" +#define SDL_PROP_TEXTURE_CREATE_ACCESS_NUMBER "SDL.texture.create.access" +#define SDL_PROP_TEXTURE_CREATE_WIDTH_NUMBER "SDL.texture.create.width" +#define SDL_PROP_TEXTURE_CREATE_HEIGHT_NUMBER "SDL.texture.create.height" +#define SDL_PROP_TEXTURE_CREATE_SDR_WHITE_POINT_FLOAT "SDL.texture.create.SDR_white_point" +#define SDL_PROP_TEXTURE_CREATE_HDR_HEADROOM_FLOAT "SDL.texture.create.HDR_headroom" +#define SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_POINTER "SDL.texture.create.d3d11.texture" +#define SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_U_POINTER "SDL.texture.create.d3d11.texture_u" +#define SDL_PROP_TEXTURE_CREATE_D3D11_TEXTURE_V_POINTER "SDL.texture.create.d3d11.texture_v" +#define SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_POINTER "SDL.texture.create.d3d12.texture" +#define SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_U_POINTER "SDL.texture.create.d3d12.texture_u" +#define SDL_PROP_TEXTURE_CREATE_D3D12_TEXTURE_V_POINTER "SDL.texture.create.d3d12.texture_v" +#define SDL_PROP_TEXTURE_CREATE_METAL_PIXELBUFFER_POINTER "SDL.texture.create.metal.pixelbuffer" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_NUMBER "SDL.texture.create.opengl.texture" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_UV_NUMBER "SDL.texture.create.opengl.texture_uv" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_U_NUMBER "SDL.texture.create.opengl.texture_u" +#define SDL_PROP_TEXTURE_CREATE_OPENGL_TEXTURE_V_NUMBER "SDL.texture.create.opengl.texture_v" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_NUMBER "SDL.texture.create.opengles2.texture" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_UV_NUMBER "SDL.texture.create.opengles2.texture_uv" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_U_NUMBER "SDL.texture.create.opengles2.texture_u" +#define SDL_PROP_TEXTURE_CREATE_OPENGLES2_TEXTURE_V_NUMBER "SDL.texture.create.opengles2.texture_v" +#define SDL_PROP_TEXTURE_CREATE_VULKAN_TEXTURE_NUMBER "SDL.texture.create.vulkan.texture" + +/** + * Get the properties associated with a texture. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_TEXTURE_COLORSPACE_NUMBER`: an SDL_Colorspace value describing + * the texture colorspace. + * - `SDL_PROP_TEXTURE_FORMAT_NUMBER`: one of the enumerated values in + * SDL_PixelFormat. + * - `SDL_PROP_TEXTURE_ACCESS_NUMBER`: one of the enumerated values in + * SDL_TextureAccess. + * - `SDL_PROP_TEXTURE_WIDTH_NUMBER`: the width of the texture in pixels. + * - `SDL_PROP_TEXTURE_HEIGHT_NUMBER`: the height of the texture in pixels. + * - `SDL_PROP_TEXTURE_SDR_WHITE_POINT_FLOAT`: for HDR10 and floating point + * textures, this defines the value of 100% diffuse white, with higher + * values being displayed in the High Dynamic Range headroom. This defaults + * to 100 for HDR10 textures and 1.0 for other textures. + * - `SDL_PROP_TEXTURE_HDR_HEADROOM_FLOAT`: for HDR10 and floating point + * textures, this defines the maximum dynamic range used by the content, in + * terms of the SDR white point. If this is defined, any values outside the + * range supported by the display will be scaled into the available HDR + * headroom, otherwise they are clipped. This defaults to 1.0 for SDR + * textures, 4.0 for HDR10 textures, and no default for floating point + * textures. + * + * With the direct3d11 renderer: + * + * - `SDL_PROP_TEXTURE_D3D11_TEXTURE_POINTER`: the ID3D11Texture2D associated + * with the texture + * - `SDL_PROP_TEXTURE_D3D11_TEXTURE_U_POINTER`: the ID3D11Texture2D + * associated with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_D3D11_TEXTURE_V_POINTER`: the ID3D11Texture2D + * associated with the V plane of a YUV texture + * + * With the direct3d12 renderer: + * + * - `SDL_PROP_TEXTURE_D3D12_TEXTURE_POINTER`: the ID3D12Resource associated + * with the texture + * - `SDL_PROP_TEXTURE_D3D12_TEXTURE_U_POINTER`: the ID3D12Resource associated + * with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_D3D12_TEXTURE_V_POINTER`: the ID3D12Resource associated + * with the V plane of a YUV texture + * + * With the vulkan renderer: + * + * - `SDL_PROP_TEXTURE_VULKAN_TEXTURE_NUMBER`: the VkImage associated with the + * texture + * + * With the opengl renderer: + * + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_NUMBER`: the GLuint texture associated + * with the texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_U_NUMBER`: the GLuint texture associated + * with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_V_NUMBER`: the GLuint texture associated + * with the V plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGL_TEXTURE_TARGET_NUMBER`: the GLenum for the + * texture target (`GL_TEXTURE_2D`, `GL_TEXTURE_RECTANGLE_ARB`, etc) + * - `SDL_PROP_TEXTURE_OPENGL_TEX_W_FLOAT`: the texture coordinate width of + * the texture (0.0 - 1.0) + * - `SDL_PROP_TEXTURE_OPENGL_TEX_H_FLOAT`: the texture coordinate height of + * the texture (0.0 - 1.0) + * + * With the opengles2 renderer: + * + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_NUMBER`: the GLuint texture + * associated with the texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_UV_NUMBER`: the GLuint texture + * associated with the UV plane of an NV12 texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_U_NUMBER`: the GLuint texture + * associated with the U plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_V_NUMBER`: the GLuint texture + * associated with the V plane of a YUV texture + * - `SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_TARGET_NUMBER`: the GLenum for the + * texture target (`GL_TEXTURE_2D`, `GL_TEXTURE_EXTERNAL_OES`, etc) + * + * \param texture the texture to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetTextureProperties(SDL_Texture *texture); + +#define SDL_PROP_TEXTURE_COLORSPACE_NUMBER "SDL.texture.colorspace" +#define SDL_PROP_TEXTURE_FORMAT_NUMBER "SDL.texture.format" +#define SDL_PROP_TEXTURE_ACCESS_NUMBER "SDL.texture.access" +#define SDL_PROP_TEXTURE_WIDTH_NUMBER "SDL.texture.width" +#define SDL_PROP_TEXTURE_HEIGHT_NUMBER "SDL.texture.height" +#define SDL_PROP_TEXTURE_SDR_WHITE_POINT_FLOAT "SDL.texture.SDR_white_point" +#define SDL_PROP_TEXTURE_HDR_HEADROOM_FLOAT "SDL.texture.HDR_headroom" +#define SDL_PROP_TEXTURE_D3D11_TEXTURE_POINTER "SDL.texture.d3d11.texture" +#define SDL_PROP_TEXTURE_D3D11_TEXTURE_U_POINTER "SDL.texture.d3d11.texture_u" +#define SDL_PROP_TEXTURE_D3D11_TEXTURE_V_POINTER "SDL.texture.d3d11.texture_v" +#define SDL_PROP_TEXTURE_D3D12_TEXTURE_POINTER "SDL.texture.d3d12.texture" +#define SDL_PROP_TEXTURE_D3D12_TEXTURE_U_POINTER "SDL.texture.d3d12.texture_u" +#define SDL_PROP_TEXTURE_D3D12_TEXTURE_V_POINTER "SDL.texture.d3d12.texture_v" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_NUMBER "SDL.texture.opengl.texture" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_UV_NUMBER "SDL.texture.opengl.texture_uv" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_U_NUMBER "SDL.texture.opengl.texture_u" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_V_NUMBER "SDL.texture.opengl.texture_v" +#define SDL_PROP_TEXTURE_OPENGL_TEXTURE_TARGET_NUMBER "SDL.texture.opengl.target" +#define SDL_PROP_TEXTURE_OPENGL_TEX_W_FLOAT "SDL.texture.opengl.tex_w" +#define SDL_PROP_TEXTURE_OPENGL_TEX_H_FLOAT "SDL.texture.opengl.tex_h" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_NUMBER "SDL.texture.opengles2.texture" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_UV_NUMBER "SDL.texture.opengles2.texture_uv" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_U_NUMBER "SDL.texture.opengles2.texture_u" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_V_NUMBER "SDL.texture.opengles2.texture_v" +#define SDL_PROP_TEXTURE_OPENGLES2_TEXTURE_TARGET_NUMBER "SDL.texture.opengles2.target" +#define SDL_PROP_TEXTURE_VULKAN_TEXTURE_NUMBER "SDL.texture.vulkan.texture" + +/** + * Get the renderer that created an SDL_Texture. + * + * \param texture the texture to query. + * \returns a pointer to the SDL_Renderer that created the texture, or NULL on + * failure; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Renderer * SDLCALL SDL_GetRendererFromTexture(SDL_Texture *texture); + +/** + * Get the size of a texture, as floating point values. + * + * \param texture the texture to query. + * \param w a pointer filled in with the width of the texture in pixels. This + * argument can be NULL if you don't need this information. + * \param h a pointer filled in with the height of the texture in pixels. This + * argument can be NULL if you don't need this information. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureSize(SDL_Texture *texture, float *w, float *h); + +/** + * Set an additional color value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation each source color + * channel is modulated by the appropriate color value according to the + * following formula: + * + * `srcC = srcC * (color / 255)` + * + * Color modulation is not always supported by the renderer; it will return + * false if color modulation is not supported. + * + * \param texture the texture to update. + * \param r the red color value multiplied into copy operations. + * \param g the green color value multiplied into copy operations. + * \param b the blue color value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureColorMod + * \sa SDL_SetTextureAlphaMod + * \sa SDL_SetTextureColorModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureColorMod(SDL_Texture *texture, Uint8 r, Uint8 g, Uint8 b); + + +/** + * Set an additional color value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation each source color + * channel is modulated by the appropriate color value according to the + * following formula: + * + * `srcC = srcC * color` + * + * Color modulation is not always supported by the renderer; it will return + * false if color modulation is not supported. + * + * \param texture the texture to update. + * \param r the red color value multiplied into copy operations. + * \param g the green color value multiplied into copy operations. + * \param b the blue color value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureColorModFloat + * \sa SDL_SetTextureAlphaModFloat + * \sa SDL_SetTextureColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureColorModFloat(SDL_Texture *texture, float r, float g, float b); + + +/** + * Get the additional color value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param r a pointer filled in with the current red color value. + * \param g a pointer filled in with the current green color value. + * \param b a pointer filled in with the current blue color value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaMod + * \sa SDL_GetTextureColorModFloat + * \sa SDL_SetTextureColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureColorMod(SDL_Texture *texture, Uint8 *r, Uint8 *g, Uint8 *b); + +/** + * Get the additional color value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param r a pointer filled in with the current red color value. + * \param g a pointer filled in with the current green color value. + * \param b a pointer filled in with the current blue color value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaModFloat + * \sa SDL_GetTextureColorMod + * \sa SDL_SetTextureColorModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureColorModFloat(SDL_Texture *texture, float *r, float *g, float *b); + +/** + * Set an additional alpha value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation the source alpha + * value is modulated by this alpha value according to the following formula: + * + * `srcA = srcA * (alpha / 255)` + * + * Alpha modulation is not always supported by the renderer; it will return + * false if alpha modulation is not supported. + * + * \param texture the texture to update. + * \param alpha the source alpha value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaMod + * \sa SDL_SetTextureAlphaModFloat + * \sa SDL_SetTextureColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureAlphaMod(SDL_Texture *texture, Uint8 alpha); + +/** + * Set an additional alpha value multiplied into render copy operations. + * + * When this texture is rendered, during the copy operation the source alpha + * value is modulated by this alpha value according to the following formula: + * + * `srcA = srcA * alpha` + * + * Alpha modulation is not always supported by the renderer; it will return + * false if alpha modulation is not supported. + * + * \param texture the texture to update. + * \param alpha the source alpha value multiplied into copy operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaModFloat + * \sa SDL_SetTextureAlphaMod + * \sa SDL_SetTextureColorModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureAlphaModFloat(SDL_Texture *texture, float alpha); + +/** + * Get the additional alpha value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param alpha a pointer filled in with the current alpha value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaModFloat + * \sa SDL_GetTextureColorMod + * \sa SDL_SetTextureAlphaMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureAlphaMod(SDL_Texture *texture, Uint8 *alpha); + +/** + * Get the additional alpha value multiplied into render copy operations. + * + * \param texture the texture to query. + * \param alpha a pointer filled in with the current alpha value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureAlphaMod + * \sa SDL_GetTextureColorModFloat + * \sa SDL_SetTextureAlphaModFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureAlphaModFloat(SDL_Texture *texture, float *alpha); + +/** + * Set the blend mode for a texture, used by SDL_RenderTexture(). + * + * If the blend mode is not supported, the closest supported mode is chosen + * and this function returns false. + * + * \param texture the texture to update. + * \param blendMode the SDL_BlendMode to use for texture blending. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureBlendMode(SDL_Texture *texture, SDL_BlendMode blendMode); + +/** + * Get the blend mode used for texture copy operations. + * + * \param texture the texture to query. + * \param blendMode a pointer filled in with the current SDL_BlendMode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextureBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureBlendMode(SDL_Texture *texture, SDL_BlendMode *blendMode); + +/** + * Set the scale mode used for texture scale operations. + * + * The default texture scale mode is SDL_SCALEMODE_LINEAR. + * + * If the scale mode is not supported, the closest supported mode is chosen. + * + * \param texture the texture to update. + * \param scaleMode the SDL_ScaleMode to use for texture scaling. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTextureScaleMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTextureScaleMode(SDL_Texture *texture, SDL_ScaleMode scaleMode); + +/** + * Get the scale mode used for texture scale operations. + * + * \param texture the texture to query. + * \param scaleMode a pointer filled in with the current scale mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTextureScaleMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTextureScaleMode(SDL_Texture *texture, SDL_ScaleMode *scaleMode); + +/** + * Update the given texture rectangle with new pixel data. + * + * The pixel data must be in the pixel format of the texture, which can be + * queried using the SDL_PROP_TEXTURE_FORMAT_NUMBER property. + * + * This is a fairly slow function, intended for use with static textures that + * do not change often. + * + * If the texture is intended to be updated often, it is preferred to create + * the texture as streaming and use the locking functions referenced below. + * While this function will work with streaming textures, for optimization + * reasons you may not get the pixels back if you lock the texture afterward. + * + * \param texture the texture to update. + * \param rect an SDL_Rect structure representing the area to update, or NULL + * to update the entire texture. + * \param pixels the raw pixel data in the format of the texture. + * \param pitch the number of bytes in a row of pixel data, including padding + * between lines. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTexture + * \sa SDL_UnlockTexture + * \sa SDL_UpdateNVTexture + * \sa SDL_UpdateYUVTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateTexture(SDL_Texture *texture, const SDL_Rect *rect, const void *pixels, int pitch); + +/** + * Update a rectangle within a planar YV12 or IYUV texture with new pixel + * data. + * + * You can use SDL_UpdateTexture() as long as your pixel data is a contiguous + * block of Y and U/V planes in the proper order, but this function is + * available if your pixel data is not contiguous. + * + * \param texture the texture to update. + * \param rect a pointer to the rectangle of pixels to update, or NULL to + * update the entire texture. + * \param Yplane the raw pixel data for the Y plane. + * \param Ypitch the number of bytes between rows of pixel data for the Y + * plane. + * \param Uplane the raw pixel data for the U plane. + * \param Upitch the number of bytes between rows of pixel data for the U + * plane. + * \param Vplane the raw pixel data for the V plane. + * \param Vpitch the number of bytes between rows of pixel data for the V + * plane. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UpdateNVTexture + * \sa SDL_UpdateTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateYUVTexture(SDL_Texture *texture, + const SDL_Rect *rect, + const Uint8 *Yplane, int Ypitch, + const Uint8 *Uplane, int Upitch, + const Uint8 *Vplane, int Vpitch); + +/** + * Update a rectangle within a planar NV12 or NV21 texture with new pixels. + * + * You can use SDL_UpdateTexture() as long as your pixel data is a contiguous + * block of NV12/21 planes in the proper order, but this function is available + * if your pixel data is not contiguous. + * + * \param texture the texture to update. + * \param rect a pointer to the rectangle of pixels to update, or NULL to + * update the entire texture. + * \param Yplane the raw pixel data for the Y plane. + * \param Ypitch the number of bytes between rows of pixel data for the Y + * plane. + * \param UVplane the raw pixel data for the UV plane. + * \param UVpitch the number of bytes between rows of pixel data for the UV + * plane. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UpdateTexture + * \sa SDL_UpdateYUVTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateNVTexture(SDL_Texture *texture, + const SDL_Rect *rect, + const Uint8 *Yplane, int Ypitch, + const Uint8 *UVplane, int UVpitch); + +/** + * Lock a portion of the texture for **write-only** pixel access. + * + * As an optimization, the pixels made available for editing don't necessarily + * contain the old texture data. This is a write-only operation, and if you + * need to keep a copy of the texture data you should do that at the + * application level. + * + * You must use SDL_UnlockTexture() to unlock the pixels and apply any + * changes. + * + * \param texture the texture to lock for access, which was created with + * `SDL_TEXTUREACCESS_STREAMING`. + * \param rect an SDL_Rect structure representing the area to lock for access; + * NULL to lock the entire texture. + * \param pixels this is filled in with a pointer to the locked pixels, + * appropriately offset by the locked area. + * \param pitch this is filled in with the pitch of the locked pixels; the + * pitch is the length of one row in bytes. + * \returns true on success or false if the texture is not valid or was not + * created with `SDL_TEXTUREACCESS_STREAMING`; call SDL_GetError() + * for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTextureToSurface + * \sa SDL_UnlockTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockTexture(SDL_Texture *texture, + const SDL_Rect *rect, + void **pixels, int *pitch); + +/** + * Lock a portion of the texture for **write-only** pixel access, and expose + * it as a SDL surface. + * + * Besides providing an SDL_Surface instead of raw pixel data, this function + * operates like SDL_LockTexture. + * + * As an optimization, the pixels made available for editing don't necessarily + * contain the old texture data. This is a write-only operation, and if you + * need to keep a copy of the texture data you should do that at the + * application level. + * + * You must use SDL_UnlockTexture() to unlock the pixels and apply any + * changes. + * + * The returned surface is freed internally after calling SDL_UnlockTexture() + * or SDL_DestroyTexture(). The caller should not free it. + * + * \param texture the texture to lock for access, which must be created with + * `SDL_TEXTUREACCESS_STREAMING`. + * \param rect a pointer to the rectangle to lock for access. If the rect is + * NULL, the entire texture will be locked. + * \param surface a pointer to an SDL surface of size **rect**. Don't assume + * any specific pixel content. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTexture + * \sa SDL_UnlockTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockTextureToSurface(SDL_Texture *texture, const SDL_Rect *rect, SDL_Surface **surface); + +/** + * Unlock a texture, uploading the changes to video memory, if needed. + * + * **Warning**: Please note that SDL_LockTexture() is intended to be + * write-only; it will not guarantee the previous contents of the texture will + * be provided. You must fully initialize any area of a texture that you lock + * before unlocking it, as the pixels might otherwise be uninitialized memory. + * + * Which is to say: locking and immediately unlocking a texture can result in + * corrupted textures, depending on the renderer in use. + * + * \param texture a texture locked by SDL_LockTexture(). + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockTexture + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockTexture(SDL_Texture *texture); + +/** + * Set a texture as the current rendering target. + * + * The default render target is the window for which the renderer was created. + * To stop rendering to a texture and render to the window again, call this + * function with a NULL `texture`. + * + * Viewport, cliprect, scale, and logical presentation are unique to each + * render target. Get and set functions for these states apply to the current + * render target set by this function, and those states persist on each target + * when the current render target changes. + * + * \param renderer the rendering context. + * \param texture the targeted texture, which must be created with the + * `SDL_TEXTUREACCESS_TARGET` flag, or NULL to render to the + * window instead of a texture. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderTarget + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderTarget(SDL_Renderer *renderer, SDL_Texture *texture); + +/** + * Get the current render target. + * + * The default render target is the window for which the renderer was created, + * and is reported a NULL here. + * + * \param renderer the rendering context. + * \returns the current render target or NULL for the default render target. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderTarget + */ +extern SDL_DECLSPEC SDL_Texture * SDLCALL SDL_GetRenderTarget(SDL_Renderer *renderer); + +/** + * Set a device-independent resolution and presentation mode for rendering. + * + * This function sets the width and height of the logical rendering output. + * The renderer will act as if the current render target is always the + * requested dimensions, scaling to the actual resolution as necessary. + * + * This can be useful for games that expect a fixed size, but would like to + * scale the output to whatever is available, regardless of how a user resizes + * a window, or if the display is high DPI. + * + * Logical presentation can be used with both render target textures and the + * renderer's window; the state is unique to each render target, and this + * function sets the state for the current render target. It might be useful + * to draw to a texture that matches the window dimensions with logical + * presentation enabled, and then draw that texture across the entire window + * with logical presentation disabled. Be careful not to render both with + * logical presentation enabled, however, as this could produce + * double-letterboxing, etc. + * + * You can disable logical coordinates by setting the mode to + * SDL_LOGICAL_PRESENTATION_DISABLED, and in that case you get the full pixel + * resolution of the render target; it is safe to toggle logical presentation + * during the rendering of a frame: perhaps most of the rendering is done to + * specific dimensions but to make fonts look sharp, the app turns off logical + * presentation while drawing text, for example. + * + * For the renderer's window, letterboxing is drawn into the framebuffer if + * logical presentation is enabled during SDL_RenderPresent; be sure to + * reenable it before presenting if you were toggling it, otherwise the + * letterbox areas might have artifacts from previous frames (or artifacts + * from external overlays, etc). Letterboxing is never drawn into texture + * render targets; be sure to call SDL_RenderClear() before drawing into the + * texture so the letterboxing areas are cleared, if appropriate. + * + * You can convert coordinates in an event into rendering coordinates using + * SDL_ConvertEventToRenderCoordinates(). + * + * \param renderer the rendering context. + * \param w the width of the logical resolution. + * \param h the height of the logical resolution. + * \param mode the presentation mode used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertEventToRenderCoordinates + * \sa SDL_GetRenderLogicalPresentation + * \sa SDL_GetRenderLogicalPresentationRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderLogicalPresentation(SDL_Renderer *renderer, int w, int h, SDL_RendererLogicalPresentation mode); + +/** + * Get device independent resolution and presentation mode for rendering. + * + * This function gets the width and height of the logical rendering output, or + * the output size in pixels if a logical resolution is not enabled. + * + * Each render target has its own logical presentation state. This function + * gets the state for the current render target. + * + * \param renderer the rendering context. + * \param w an int to be filled with the width. + * \param h an int to be filled with the height. + * \param mode the presentation mode used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderLogicalPresentation(SDL_Renderer *renderer, int *w, int *h, SDL_RendererLogicalPresentation *mode); + +/** + * Get the final presentation rectangle for rendering. + * + * This function returns the calculated rectangle used for logical + * presentation, based on the presentation mode and output size. If logical + * presentation is disabled, it will fill the rectangle with the output size, + * in pixels. + * + * Each render target has its own logical presentation state. This function + * gets the rectangle for the current render target. + * + * \param renderer the rendering context. + * \param rect a pointer filled in with the final presentation rectangle, may + * be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderLogicalPresentationRect(SDL_Renderer *renderer, SDL_FRect *rect); + +/** + * Get a point in render coordinates when given a point in window coordinates. + * + * This takes into account several states: + * + * - The window dimensions. + * - The logical presentation settings (SDL_SetRenderLogicalPresentation) + * - The scale (SDL_SetRenderScale) + * - The viewport (SDL_SetRenderViewport) + * + * \param renderer the rendering context. + * \param window_x the x coordinate in window coordinates. + * \param window_y the y coordinate in window coordinates. + * \param x a pointer filled with the x coordinate in render coordinates. + * \param y a pointer filled with the y coordinate in render coordinates. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + * \sa SDL_SetRenderScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderCoordinatesFromWindow(SDL_Renderer *renderer, float window_x, float window_y, float *x, float *y); + +/** + * Get a point in window coordinates when given a point in render coordinates. + * + * This takes into account several states: + * + * - The window dimensions. + * - The logical presentation settings (SDL_SetRenderLogicalPresentation) + * - The scale (SDL_SetRenderScale) + * - The viewport (SDL_SetRenderViewport) + * + * \param renderer the rendering context. + * \param x the x coordinate in render coordinates. + * \param y the y coordinate in render coordinates. + * \param window_x a pointer filled with the x coordinate in window + * coordinates. + * \param window_y a pointer filled with the y coordinate in window + * coordinates. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderLogicalPresentation + * \sa SDL_SetRenderScale + * \sa SDL_SetRenderViewport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderCoordinatesToWindow(SDL_Renderer *renderer, float x, float y, float *window_x, float *window_y); + +/** + * Convert the coordinates in an event to render coordinates. + * + * This takes into account several states: + * + * - The window dimensions. + * - The logical presentation settings (SDL_SetRenderLogicalPresentation) + * - The scale (SDL_SetRenderScale) + * - The viewport (SDL_SetRenderViewport) + * + * Various event types are converted with this function: mouse, touch, pen, + * etc. + * + * Touch coordinates are converted from normalized coordinates in the window + * to non-normalized rendering coordinates. + * + * Relative mouse coordinates (xrel and yrel event fields) are _also_ + * converted. Applications that do not want these fields converted should use + * SDL_RenderCoordinatesFromWindow() on the specific event fields instead of + * converting the entire event structure. + * + * Once converted, coordinates may be outside the rendering area. + * + * \param renderer the rendering context. + * \param event the event to modify. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderCoordinatesFromWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertEventToRenderCoordinates(SDL_Renderer *renderer, SDL_Event *event); + +/** + * Set the drawing area for rendering on the current target. + * + * Drawing will clip to this area (separately from any clipping done with + * SDL_SetRenderClipRect), and the top left of the area will become coordinate + * (0, 0) for future drawing commands. + * + * The area's width and height must be >= 0. + * + * Each render target has its own viewport. This function sets the viewport + * for the current render target. + * + * \param renderer the rendering context. + * \param rect the SDL_Rect structure representing the drawing area, or NULL + * to set the viewport to the entire target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderViewport + * \sa SDL_RenderViewportSet + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderViewport(SDL_Renderer *renderer, const SDL_Rect *rect); + +/** + * Get the drawing area for the current target. + * + * Each render target has its own viewport. This function gets the viewport + * for the current render target. + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure filled in with the current drawing area. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderViewportSet + * \sa SDL_SetRenderViewport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderViewport(SDL_Renderer *renderer, SDL_Rect *rect); + +/** + * Return whether an explicit rectangle was set as the viewport. + * + * This is useful if you're saving and restoring the viewport and want to know + * whether you should restore a specific rectangle or NULL. + * + * Each render target has its own viewport. This function checks the viewport + * for the current render target. + * + * \param renderer the rendering context. + * \returns true if the viewport was set to a specific rectangle, or false if + * it was set to NULL (the entire target). + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderViewport + * \sa SDL_SetRenderViewport + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderViewportSet(SDL_Renderer *renderer); + +/** + * Get the safe area for rendering within the current viewport. + * + * Some devices have portions of the screen which are partially obscured or + * not interactive, possibly due to on-screen controls, curved edges, camera + * notches, TV overscan, etc. This function provides the area of the current + * viewport which is safe to have interactible content. You should continue + * rendering into the rest of the render target, but it should not contain + * visually important or interactible content. + * + * \param renderer the rendering context. + * \param rect a pointer filled in with the area that is safe for interactive + * content. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderSafeArea(SDL_Renderer *renderer, SDL_Rect *rect); + +/** + * Set the clip rectangle for rendering on the specified target. + * + * Each render target has its own clip rectangle. This function sets the + * cliprect for the current render target. + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure representing the clip area, relative to + * the viewport, or NULL to disable clipping. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderClipRect + * \sa SDL_RenderClipEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderClipRect(SDL_Renderer *renderer, const SDL_Rect *rect); + +/** + * Get the clip rectangle for the current target. + * + * Each render target has its own clip rectangle. This function gets the + * cliprect for the current render target. + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure filled in with the current clipping area + * or an empty rectangle if clipping is disabled. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderClipEnabled + * \sa SDL_SetRenderClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderClipRect(SDL_Renderer *renderer, SDL_Rect *rect); + +/** + * Get whether clipping is enabled on the given render target. + * + * Each render target has its own clip rectangle. This function checks the + * cliprect for the current render target. + * + * \param renderer the rendering context. + * \returns true if clipping is enabled or false if not; call SDL_GetError() + * for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderClipRect + * \sa SDL_SetRenderClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderClipEnabled(SDL_Renderer *renderer); + +/** + * Set the drawing scale for rendering on the current target. + * + * The drawing coordinates are scaled by the x/y scaling factors before they + * are used by the renderer. This allows resolution independent drawing with a + * single coordinate system. + * + * If this results in scaling or subpixel drawing by the rendering backend, it + * will be handled using the appropriate quality hints. For best results use + * integer scaling factors. + * + * Each render target has its own scale. This function sets the scale for the + * current render target. + * + * \param renderer the rendering context. + * \param scaleX the horizontal scaling factor. + * \param scaleY the vertical scaling factor. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderScale(SDL_Renderer *renderer, float scaleX, float scaleY); + +/** + * Get the drawing scale for the current target. + * + * Each render target has its own scale. This function gets the scale for the + * current render target. + * + * \param renderer the rendering context. + * \param scaleX a pointer filled in with the horizontal scaling factor. + * \param scaleY a pointer filled in with the vertical scaling factor. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderScale(SDL_Renderer *renderer, float *scaleX, float *scaleY); + +/** + * Set the color used for drawing operations. + * + * Set the color for drawing or filling rectangles, lines, and points, and for + * SDL_RenderClear(). + * + * \param renderer the rendering context. + * \param r the red value used to draw on the rendering target. + * \param g the green value used to draw on the rendering target. + * \param b the blue value used to draw on the rendering target. + * \param a the alpha value used to draw on the rendering target; usually + * `SDL_ALPHA_OPAQUE` (255). Use SDL_SetRenderDrawBlendMode to + * specify how the alpha channel is used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawColor + * \sa SDL_SetRenderDrawColorFloat + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderDrawColor(SDL_Renderer *renderer, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Set the color used for drawing operations (Rect, Line and Clear). + * + * Set the color for drawing or filling rectangles, lines, and points, and for + * SDL_RenderClear(). + * + * \param renderer the rendering context. + * \param r the red value used to draw on the rendering target. + * \param g the green value used to draw on the rendering target. + * \param b the blue value used to draw on the rendering target. + * \param a the alpha value used to draw on the rendering target. Use + * SDL_SetRenderDrawBlendMode to specify how the alpha channel is + * used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawColorFloat + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderDrawColorFloat(SDL_Renderer *renderer, float r, float g, float b, float a); + +/** + * Get the color used for drawing operations (Rect, Line and Clear). + * + * \param renderer the rendering context. + * \param r a pointer filled in with the red value used to draw on the + * rendering target. + * \param g a pointer filled in with the green value used to draw on the + * rendering target. + * \param b a pointer filled in with the blue value used to draw on the + * rendering target. + * \param a a pointer filled in with the alpha value used to draw on the + * rendering target; usually `SDL_ALPHA_OPAQUE` (255). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawColorFloat + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderDrawColor(SDL_Renderer *renderer, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); + +/** + * Get the color used for drawing operations (Rect, Line and Clear). + * + * \param renderer the rendering context. + * \param r a pointer filled in with the red value used to draw on the + * rendering target. + * \param g a pointer filled in with the green value used to draw on the + * rendering target. + * \param b a pointer filled in with the blue value used to draw on the + * rendering target. + * \param a a pointer filled in with the alpha value used to draw on the + * rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawColorFloat + * \sa SDL_GetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderDrawColorFloat(SDL_Renderer *renderer, float *r, float *g, float *b, float *a); + +/** + * Set the color scale used for render operations. + * + * The color scale is an additional scale multiplied into the pixel color + * value while rendering. This can be used to adjust the brightness of colors + * during HDR rendering, or changing HDR video brightness when playing on an + * SDR display. + * + * The color scale does not affect the alpha channel, only the color + * brightness. + * + * \param renderer the rendering context. + * \param scale the color scale value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderColorScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderColorScale(SDL_Renderer *renderer, float scale); + +/** + * Get the color scale used for render operations. + * + * \param renderer the rendering context. + * \param scale a pointer filled in with the current color scale value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderColorScale + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderColorScale(SDL_Renderer *renderer, float *scale); + +/** + * Set the blend mode used for drawing operations (Fill and Line). + * + * If the blend mode is not supported, the closest supported mode is chosen. + * + * \param renderer the rendering context. + * \param blendMode the SDL_BlendMode to use for blending. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderDrawBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderDrawBlendMode(SDL_Renderer *renderer, SDL_BlendMode blendMode); + +/** + * Get the blend mode used for drawing operations. + * + * \param renderer the rendering context. + * \param blendMode a pointer filled in with the current SDL_BlendMode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderDrawBlendMode(SDL_Renderer *renderer, SDL_BlendMode *blendMode); + +/** + * Clear the current rendering target with the drawing color. + * + * This function clears the entire rendering target, ignoring the viewport and + * the clip rectangle. Note, that clearing will also set/fill all pixels of + * the rendering target to current renderer draw color, so make sure to invoke + * SDL_SetRenderDrawColor() when needed. + * + * \param renderer the rendering context. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderClear(SDL_Renderer *renderer); + +/** + * Draw a point on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw a point. + * \param x the x coordinate of the point. + * \param y the y coordinate of the point. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderPoints + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderPoint(SDL_Renderer *renderer, float x, float y); + +/** + * Draw multiple points on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw multiple points. + * \param points the points to draw. + * \param count the number of points to draw. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderPoint + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderPoints(SDL_Renderer *renderer, const SDL_FPoint *points, int count); + +/** + * Draw a line on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw a line. + * \param x1 the x coordinate of the start point. + * \param y1 the y coordinate of the start point. + * \param x2 the x coordinate of the end point. + * \param y2 the y coordinate of the end point. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderLines + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderLine(SDL_Renderer *renderer, float x1, float y1, float x2, float y2); + +/** + * Draw a series of connected lines on the current rendering target at + * subpixel precision. + * + * \param renderer the renderer which should draw multiple lines. + * \param points the points along the lines. + * \param count the number of points, drawing count-1 lines. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderLine + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderLines(SDL_Renderer *renderer, const SDL_FPoint *points, int count); + +/** + * Draw a rectangle on the current rendering target at subpixel precision. + * + * \param renderer the renderer which should draw a rectangle. + * \param rect a pointer to the destination rectangle, or NULL to outline the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderRect(SDL_Renderer *renderer, const SDL_FRect *rect); + +/** + * Draw some number of rectangles on the current rendering target at subpixel + * precision. + * + * \param renderer the renderer which should draw multiple rectangles. + * \param rects a pointer to an array of destination rectangles. + * \param count the number of rectangles. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderRects(SDL_Renderer *renderer, const SDL_FRect *rects, int count); + +/** + * Fill a rectangle on the current rendering target with the drawing color at + * subpixel precision. + * + * \param renderer the renderer which should fill a rectangle. + * \param rect a pointer to the destination rectangle, or NULL for the entire + * rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderFillRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderFillRect(SDL_Renderer *renderer, const SDL_FRect *rect); + +/** + * Fill some number of rectangles on the current rendering target with the + * drawing color at subpixel precision. + * + * \param renderer the renderer which should fill multiple rectangles. + * \param rects a pointer to an array of destination rectangles. + * \param count the number of rectangles. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderFillRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderFillRects(SDL_Renderer *renderer, const SDL_FRect *rects, int count); + +/** + * Copy a portion of the texture to the current rendering target at subpixel + * precision. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTextureRotated + * \sa SDL_RenderTextureTiled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTexture(SDL_Renderer *renderer, SDL_Texture *texture, const SDL_FRect *srcrect, const SDL_FRect *dstrect); + +/** + * Copy a portion of the source texture to the current rendering target, with + * rotation and flipping, at subpixel precision. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \param angle an angle in degrees that indicates the rotation that will be + * applied to dstrect, rotating it in a clockwise direction. + * \param center a pointer to a point indicating the point around which + * dstrect will be rotated (if NULL, rotation will be done + * around dstrect.w/2, dstrect.h/2). + * \param flip an SDL_FlipMode value stating which flipping actions should be + * performed on the texture. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTextureRotated(SDL_Renderer *renderer, SDL_Texture *texture, + const SDL_FRect *srcrect, const SDL_FRect *dstrect, + double angle, const SDL_FPoint *center, + SDL_FlipMode flip); + +/** + * Copy a portion of the source texture to the current rendering target, with + * affine transform, at subpixel precision. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param origin a pointer to a point indicating where the top-left corner of + * srcrect should be mapped to, or NULL for the rendering + * target's origin. + * \param right a pointer to a point indicating where the top-right corner of + * srcrect should be mapped to, or NULL for the rendering + * target's top-right corner. + * \param down a pointer to a point indicating where the bottom-left corner of + * srcrect should be mapped to, or NULL for the rendering target's + * bottom-left corner. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety You may only call this function from the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTextureAffine(SDL_Renderer *renderer, SDL_Texture *texture, + const SDL_FRect *srcrect, const SDL_FPoint *origin, + const SDL_FPoint *right, const SDL_FPoint *down); + +/** + * Tile a portion of the texture to the current rendering target at subpixel + * precision. + * + * The pixels in `srcrect` will be repeated as many times as needed to + * completely fill `dstrect`. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect a pointer to the source rectangle, or NULL for the entire + * texture. + * \param scale the scale used to transform srcrect into the destination + * rectangle, e.g. a 32x32 texture with a scale of 2 would fill + * 64x64 tiles. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTextureTiled(SDL_Renderer *renderer, SDL_Texture *texture, const SDL_FRect *srcrect, float scale, const SDL_FRect *dstrect); + +/** + * Perform a scaled copy using the 9-grid algorithm to the current rendering + * target at subpixel precision. + * + * The pixels in the texture are split into a 3x3 grid, using the different + * corner sizes for each corner, and the sides and center making up the + * remaining pixels. The corners are then scaled using `scale` and fit into + * the corners of the destination rectangle. The sides and center are then + * stretched into place to cover the remaining destination rectangle. + * + * \param renderer the renderer which should copy parts of a texture. + * \param texture the source texture. + * \param srcrect the SDL_Rect structure representing the rectangle to be used + * for the 9-grid, or NULL to use the entire texture. + * \param left_width the width, in pixels, of the left corners in `srcrect`. + * \param right_width the width, in pixels, of the right corners in `srcrect`. + * \param top_height the height, in pixels, of the top corners in `srcrect`. + * \param bottom_height the height, in pixels, of the bottom corners in + * `srcrect`. + * \param scale the scale used to transform the corner of `srcrect` into the + * corner of `dstrect`, or 0.0f for an unscaled copy. + * \param dstrect a pointer to the destination rectangle, or NULL for the + * entire rendering target. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderTexture + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderTexture9Grid(SDL_Renderer *renderer, SDL_Texture *texture, const SDL_FRect *srcrect, float left_width, float right_width, float top_height, float bottom_height, float scale, const SDL_FRect *dstrect); + +/** + * Render a list of triangles, optionally using a texture and indices into the + * vertex array Color and alpha modulation is done per vertex + * (SDL_SetTextureColorMod and SDL_SetTextureAlphaMod are ignored). + * + * \param renderer the rendering context. + * \param texture (optional) The SDL texture to use. + * \param vertices vertices. + * \param num_vertices number of vertices. + * \param indices (optional) An array of integer indices into the 'vertices' + * array, if NULL all vertices will be rendered in sequential + * order. + * \param num_indices number of indices. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderGeometryRaw + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderGeometry(SDL_Renderer *renderer, + SDL_Texture *texture, + const SDL_Vertex *vertices, int num_vertices, + const int *indices, int num_indices); + +/** + * Render a list of triangles, optionally using a texture and indices into the + * vertex arrays Color and alpha modulation is done per vertex + * (SDL_SetTextureColorMod and SDL_SetTextureAlphaMod are ignored). + * + * \param renderer the rendering context. + * \param texture (optional) The SDL texture to use. + * \param xy vertex positions. + * \param xy_stride byte size to move from one element to the next element. + * \param color vertex colors (as SDL_FColor). + * \param color_stride byte size to move from one element to the next element. + * \param uv vertex normalized texture coordinates. + * \param uv_stride byte size to move from one element to the next element. + * \param num_vertices number of vertices. + * \param indices (optional) An array of indices into the 'vertices' arrays, + * if NULL all vertices will be rendered in sequential order. + * \param num_indices number of indices. + * \param size_indices index size: 1 (byte), 2 (short), 4 (int). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderGeometry + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderGeometryRaw(SDL_Renderer *renderer, + SDL_Texture *texture, + const float *xy, int xy_stride, + const SDL_FColor *color, int color_stride, + const float *uv, int uv_stride, + int num_vertices, + const void *indices, int num_indices, int size_indices); + +/** + * Read pixels from the current rendering target. + * + * The returned surface contains pixels inside the desired area clipped to the + * current viewport, and should be freed with SDL_DestroySurface(). + * + * Note that this returns the actual pixels on the screen, so if you are using + * logical presentation you should use SDL_GetRenderLogicalPresentationRect() + * to get the area containing your content. + * + * **WARNING**: This is a very slow operation, and should not be used + * frequently. If you're using this on the main rendering target, it should be + * called after rendering and before SDL_RenderPresent(). + * + * \param renderer the rendering context. + * \param rect an SDL_Rect structure representing the area to read, which will + * be clipped to the current viewport, or NULL for the entire + * viewport. + * \returns a new SDL_Surface on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_RenderReadPixels(SDL_Renderer *renderer, const SDL_Rect *rect); + +/** + * Update the screen with any rendering performed since the previous call. + * + * SDL's rendering functions operate on a backbuffer; that is, calling a + * rendering function such as SDL_RenderLine() does not directly put a line on + * the screen, but rather updates the backbuffer. As such, you compose your + * entire scene and *present* the composed backbuffer to the screen as a + * complete picture. + * + * Therefore, when using SDL's rendering API, one does all drawing intended + * for the frame, and then calls this function once per frame to present the + * final drawing to the user. + * + * The backbuffer should be considered invalidated after each present; do not + * assume that previous contents will exist between frames. You are strongly + * encouraged to call SDL_RenderClear() to initialize the backbuffer before + * starting each new frame's drawing, even if you plan to overwrite every + * pixel. + * + * Please note, that in case of rendering to a texture - there is **no need** + * to call `SDL_RenderPresent` after drawing needed objects to a texture, and + * should not be done; you are only required to change back the rendering + * target to default via `SDL_SetRenderTarget(renderer, NULL)` afterwards, as + * textures by themselves do not have a concept of backbuffers. Calling + * SDL_RenderPresent while rendering to a texture will still update the screen + * with any current drawing that has been done _to the window itself_. + * + * \param renderer the rendering context. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + * \sa SDL_RenderClear + * \sa SDL_RenderFillRect + * \sa SDL_RenderFillRects + * \sa SDL_RenderLine + * \sa SDL_RenderLines + * \sa SDL_RenderPoint + * \sa SDL_RenderPoints + * \sa SDL_RenderRect + * \sa SDL_RenderRects + * \sa SDL_SetRenderDrawBlendMode + * \sa SDL_SetRenderDrawColor + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderPresent(SDL_Renderer *renderer); + +/** + * Destroy the specified texture. + * + * Passing NULL or an otherwise invalid texture will set the SDL error message + * to "Invalid texture". + * + * \param texture the texture to destroy. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTexture + * \sa SDL_CreateTextureFromSurface + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyTexture(SDL_Texture *texture); + +/** + * Destroy the rendering context for a window and free all associated + * textures. + * + * This should be called before destroying the associated window. + * + * \param renderer the rendering context. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateRenderer + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyRenderer(SDL_Renderer *renderer); + +/** + * Force the rendering context to flush any pending commands and state. + * + * You do not need to (and in fact, shouldn't) call this function unless you + * are planning to call into OpenGL/Direct3D/Metal/whatever directly, in + * addition to using an SDL_Renderer. + * + * This is for a very-specific case: if you are using SDL's render API, and + * you plan to make OpenGL/D3D/whatever calls in addition to SDL render API + * calls. If this applies, you should call this function between calls to + * SDL's render API and the low-level API you're using in cooperation. + * + * In all other cases, you can ignore this function. + * + * This call makes SDL flush any pending rendering work it was queueing up to + * do later in a single batch, and marks any internal cached state as invalid, + * so it'll prepare all its state again later, from scratch. + * + * This means you do not need to save state in your rendering code to protect + * the SDL renderer. However, there lots of arbitrary pieces of Direct3D and + * OpenGL state that can confuse things; you should use your best judgment and + * be prepared to make changes if specific state needs to be protected. + * + * \param renderer the rendering context. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlushRenderer(SDL_Renderer *renderer); + +/** + * Get the CAMetalLayer associated with the given Metal renderer. + * + * This function returns `void *`, so SDL doesn't have to include Metal's + * headers, but it can be safely cast to a `CAMetalLayer *`. + * + * \param renderer the renderer to query. + * \returns a `CAMetalLayer *` on success, or NULL if the renderer isn't a + * Metal renderer. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderMetalCommandEncoder + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetRenderMetalLayer(SDL_Renderer *renderer); + +/** + * Get the Metal command encoder for the current frame. + * + * This function returns `void *`, so SDL doesn't have to include Metal's + * headers, but it can be safely cast to an `id`. + * + * This will return NULL if Metal refuses to give SDL a drawable to render to, + * which might happen if the window is hidden/minimized/offscreen. This + * doesn't apply to command encoders for render targets, just the window's + * backbuffer. Check your return values! + * + * \param renderer the renderer to query. + * \returns an `id` on success, or NULL if the + * renderer isn't a Metal renderer or there was an error. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderMetalLayer + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetRenderMetalCommandEncoder(SDL_Renderer *renderer); + + +/** + * Add a set of synchronization semaphores for the current frame. + * + * The Vulkan renderer will wait for `wait_semaphore` before submitting + * rendering commands and signal `signal_semaphore` after rendering commands + * are complete for this frame. + * + * This should be called each frame that you want semaphore synchronization. + * The Vulkan renderer may have multiple frames in flight on the GPU, so you + * should have multiple semaphores that are used for synchronization. Querying + * SDL_PROP_RENDERER_VULKAN_SWAPCHAIN_IMAGE_COUNT_NUMBER will give you the + * maximum number of semaphores you'll need. + * + * \param renderer the rendering context. + * \param wait_stage_mask the VkPipelineStageFlags for the wait. + * \param wait_semaphore a VkSempahore to wait on before rendering the current + * frame, or 0 if not needed. + * \param signal_semaphore a VkSempahore that SDL will signal when rendering + * for the current frame is complete, or 0 if not + * needed. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is **NOT** safe to call this function from two threads at + * once. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddVulkanRenderSemaphores(SDL_Renderer *renderer, Uint32 wait_stage_mask, Sint64 wait_semaphore, Sint64 signal_semaphore); + +/** + * Toggle VSync of the given renderer. + * + * When a renderer is created, vsync defaults to SDL_RENDERER_VSYNC_DISABLED. + * + * The `vsync` parameter can be 1 to synchronize present with every vertical + * refresh, 2 to synchronize present with every second vertical refresh, etc., + * SDL_RENDERER_VSYNC_ADAPTIVE for late swap tearing (adaptive vsync), or + * SDL_RENDERER_VSYNC_DISABLED to disable. Not every value is supported by + * every driver, so you should check the return value to see whether the + * requested setting is supported. + * + * \param renderer the renderer to toggle. + * \param vsync the vertical refresh sync interval. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetRenderVSync(SDL_Renderer *renderer, int vsync); + +#define SDL_RENDERER_VSYNC_DISABLED 0 +#define SDL_RENDERER_VSYNC_ADAPTIVE (-1) + +/** + * Get VSync of the given renderer. + * + * \param renderer the renderer to toggle. + * \param vsync an int filled with the current vertical refresh sync interval. + * See SDL_SetRenderVSync() for the meaning of the value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetRenderVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetRenderVSync(SDL_Renderer *renderer, int *vsync); + +/** + * The size, in pixels, of a single SDL_RenderDebugText() character. + * + * The font is monospaced and square, so this applies to all characters. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_RenderDebugText + */ +#define SDL_DEBUG_TEXT_FONT_CHARACTER_SIZE 8 + +/** + * Draw debug text to an SDL_Renderer. + * + * This function will render a string of text to an SDL_Renderer. Note that + * this is a convenience function for debugging, with severe limitations, and + * not intended to be used for production apps and games. + * + * Among these limitations: + * + * - It accepts UTF-8 strings, but will only renders ASCII characters. + * - It has a single, tiny size (8x8 pixels). One can use logical presentation + * or scaling to adjust it, but it will be blurry. + * - It uses a simple, hardcoded bitmap font. It does not allow different font + * selections and it does not support truetype, for proper scaling. + * - It does no word-wrapping and does not treat newline characters as a line + * break. If the text goes out of the window, it's gone. + * + * For serious text rendering, there are several good options, such as + * SDL_ttf, stb_truetype, or other external libraries. + * + * On first use, this will create an internal texture for rendering glyphs. + * This texture will live until the renderer is destroyed. + * + * The text is drawn in the color specified by SDL_SetRenderDrawColor(). + * + * \param renderer the renderer which should draw a line of text. + * \param x the x coordinate where the top-left corner of the text will draw. + * \param y the y coordinate where the top-left corner of the text will draw. + * \param str the string to render. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderDebugTextFormat + * \sa SDL_DEBUG_TEXT_FONT_CHARACTER_SIZE + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderDebugText(SDL_Renderer *renderer, float x, float y, const char *str); + +/** + * Draw debug text to an SDL_Renderer. + * + * This function will render a printf()-style format string to a renderer. + * Note that this is a convinence function for debugging, with severe + * limitations, and is not intended to be used for production apps and games. + * + * For the full list of limitations and other useful information, see + * SDL_RenderDebugText. + * + * \param renderer the renderer which should draw the text. + * \param x the x coordinate where the top-left corner of the text will draw. + * \param y the y coordinate where the top-left corner of the text will draw. + * \param fmt the format string to draw. + * \param ... additional parameters matching % tokens in the `fmt` string, if + * any. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RenderDebugText + * \sa SDL_DEBUG_TEXT_FONT_CHARACTER_SIZE + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenderDebugTextFormat(SDL_Renderer *renderer, float x, float y, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(4); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_render_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_revision.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_revision.h new file mode 100644 index 0000000..bcccca1 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_revision.h @@ -0,0 +1,56 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/* WIKI CATEGORY: Version */ + +/* + * SDL_revision.h contains the SDL revision, which might be defined on the + * compiler command line, or generated right into the header itself by the + * build system. + */ + +#ifndef SDL_revision_h_ +#define SDL_revision_h_ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * This macro is a string describing the source at a particular point in + * development. + * + * This string is often generated from revision control's state at build time. + * + * This string can be quite complex and does not follow any standard. For + * example, it might be something like "SDL-prerelease-3.1.1-47-gf687e0732". + * It might also be user-defined at build time, so it's best to treat it as a + * clue in debugging forensics and not something the app will parse in any + * way. + * + * \since This macro is available since SDL 3.0.0. + */ +#define SDL_REVISION "Some arbitrary string decided at SDL build time" +#elif defined(SDL_VENDOR_INFO) +#define SDL_REVISION "release-3.2.20-0-g96292a5b4 (" SDL_VENDOR_INFO ")" +#else +#define SDL_REVISION "release-3.2.20-0-g96292a5b4" +#endif + +#endif /* SDL_revision_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_scancode.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_scancode.h new file mode 100644 index 0000000..6e9be47 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_scancode.h @@ -0,0 +1,429 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryScancode + * + * Defines keyboard scancodes. + * + * Please refer to the Best Keyboard Practices document for details on what + * this information means and how best to use it. + * + * https://wiki.libsdl.org/SDL3/BestKeyboardPractices + */ + +#ifndef SDL_scancode_h_ +#define SDL_scancode_h_ + +#include + +/** + * The SDL keyboard scancode representation. + * + * An SDL scancode is the physical representation of a key on the keyboard, + * independent of language and keyboard mapping. + * + * Values of this type are used to represent keyboard keys, among other places + * in the `scancode` field of the SDL_KeyboardEvent structure. + * + * The values in this enumeration are based on the USB usage page standard: + * https://usb.org/sites/default/files/hut1_5.pdf + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_Scancode +{ + SDL_SCANCODE_UNKNOWN = 0, + + /** + * \name Usage page 0x07 + * + * These values are from usage page 0x07 (USB keyboard page). + */ + /* @{ */ + + SDL_SCANCODE_A = 4, + SDL_SCANCODE_B = 5, + SDL_SCANCODE_C = 6, + SDL_SCANCODE_D = 7, + SDL_SCANCODE_E = 8, + SDL_SCANCODE_F = 9, + SDL_SCANCODE_G = 10, + SDL_SCANCODE_H = 11, + SDL_SCANCODE_I = 12, + SDL_SCANCODE_J = 13, + SDL_SCANCODE_K = 14, + SDL_SCANCODE_L = 15, + SDL_SCANCODE_M = 16, + SDL_SCANCODE_N = 17, + SDL_SCANCODE_O = 18, + SDL_SCANCODE_P = 19, + SDL_SCANCODE_Q = 20, + SDL_SCANCODE_R = 21, + SDL_SCANCODE_S = 22, + SDL_SCANCODE_T = 23, + SDL_SCANCODE_U = 24, + SDL_SCANCODE_V = 25, + SDL_SCANCODE_W = 26, + SDL_SCANCODE_X = 27, + SDL_SCANCODE_Y = 28, + SDL_SCANCODE_Z = 29, + + SDL_SCANCODE_1 = 30, + SDL_SCANCODE_2 = 31, + SDL_SCANCODE_3 = 32, + SDL_SCANCODE_4 = 33, + SDL_SCANCODE_5 = 34, + SDL_SCANCODE_6 = 35, + SDL_SCANCODE_7 = 36, + SDL_SCANCODE_8 = 37, + SDL_SCANCODE_9 = 38, + SDL_SCANCODE_0 = 39, + + SDL_SCANCODE_RETURN = 40, + SDL_SCANCODE_ESCAPE = 41, + SDL_SCANCODE_BACKSPACE = 42, + SDL_SCANCODE_TAB = 43, + SDL_SCANCODE_SPACE = 44, + + SDL_SCANCODE_MINUS = 45, + SDL_SCANCODE_EQUALS = 46, + SDL_SCANCODE_LEFTBRACKET = 47, + SDL_SCANCODE_RIGHTBRACKET = 48, + SDL_SCANCODE_BACKSLASH = 49, /**< Located at the lower left of the return + * key on ISO keyboards and at the right end + * of the QWERTY row on ANSI keyboards. + * Produces REVERSE SOLIDUS (backslash) and + * VERTICAL LINE in a US layout, REVERSE + * SOLIDUS and VERTICAL LINE in a UK Mac + * layout, NUMBER SIGN and TILDE in a UK + * Windows layout, DOLLAR SIGN and POUND SIGN + * in a Swiss German layout, NUMBER SIGN and + * APOSTROPHE in a German layout, GRAVE + * ACCENT and POUND SIGN in a French Mac + * layout, and ASTERISK and MICRO SIGN in a + * French Windows layout. + */ + SDL_SCANCODE_NONUSHASH = 50, /**< ISO USB keyboards actually use this code + * instead of 49 for the same key, but all + * OSes I've seen treat the two codes + * identically. So, as an implementor, unless + * your keyboard generates both of those + * codes and your OS treats them differently, + * you should generate SDL_SCANCODE_BACKSLASH + * instead of this code. As a user, you + * should not rely on this code because SDL + * will never generate it with most (all?) + * keyboards. + */ + SDL_SCANCODE_SEMICOLON = 51, + SDL_SCANCODE_APOSTROPHE = 52, + SDL_SCANCODE_GRAVE = 53, /**< Located in the top left corner (on both ANSI + * and ISO keyboards). Produces GRAVE ACCENT and + * TILDE in a US Windows layout and in US and UK + * Mac layouts on ANSI keyboards, GRAVE ACCENT + * and NOT SIGN in a UK Windows layout, SECTION + * SIGN and PLUS-MINUS SIGN in US and UK Mac + * layouts on ISO keyboards, SECTION SIGN and + * DEGREE SIGN in a Swiss German layout (Mac: + * only on ISO keyboards), CIRCUMFLEX ACCENT and + * DEGREE SIGN in a German layout (Mac: only on + * ISO keyboards), SUPERSCRIPT TWO and TILDE in a + * French Windows layout, COMMERCIAL AT and + * NUMBER SIGN in a French Mac layout on ISO + * keyboards, and LESS-THAN SIGN and GREATER-THAN + * SIGN in a Swiss German, German, or French Mac + * layout on ANSI keyboards. + */ + SDL_SCANCODE_COMMA = 54, + SDL_SCANCODE_PERIOD = 55, + SDL_SCANCODE_SLASH = 56, + + SDL_SCANCODE_CAPSLOCK = 57, + + SDL_SCANCODE_F1 = 58, + SDL_SCANCODE_F2 = 59, + SDL_SCANCODE_F3 = 60, + SDL_SCANCODE_F4 = 61, + SDL_SCANCODE_F5 = 62, + SDL_SCANCODE_F6 = 63, + SDL_SCANCODE_F7 = 64, + SDL_SCANCODE_F8 = 65, + SDL_SCANCODE_F9 = 66, + SDL_SCANCODE_F10 = 67, + SDL_SCANCODE_F11 = 68, + SDL_SCANCODE_F12 = 69, + + SDL_SCANCODE_PRINTSCREEN = 70, + SDL_SCANCODE_SCROLLLOCK = 71, + SDL_SCANCODE_PAUSE = 72, + SDL_SCANCODE_INSERT = 73, /**< insert on PC, help on some Mac keyboards (but + does send code 73, not 117) */ + SDL_SCANCODE_HOME = 74, + SDL_SCANCODE_PAGEUP = 75, + SDL_SCANCODE_DELETE = 76, + SDL_SCANCODE_END = 77, + SDL_SCANCODE_PAGEDOWN = 78, + SDL_SCANCODE_RIGHT = 79, + SDL_SCANCODE_LEFT = 80, + SDL_SCANCODE_DOWN = 81, + SDL_SCANCODE_UP = 82, + + SDL_SCANCODE_NUMLOCKCLEAR = 83, /**< num lock on PC, clear on Mac keyboards + */ + SDL_SCANCODE_KP_DIVIDE = 84, + SDL_SCANCODE_KP_MULTIPLY = 85, + SDL_SCANCODE_KP_MINUS = 86, + SDL_SCANCODE_KP_PLUS = 87, + SDL_SCANCODE_KP_ENTER = 88, + SDL_SCANCODE_KP_1 = 89, + SDL_SCANCODE_KP_2 = 90, + SDL_SCANCODE_KP_3 = 91, + SDL_SCANCODE_KP_4 = 92, + SDL_SCANCODE_KP_5 = 93, + SDL_SCANCODE_KP_6 = 94, + SDL_SCANCODE_KP_7 = 95, + SDL_SCANCODE_KP_8 = 96, + SDL_SCANCODE_KP_9 = 97, + SDL_SCANCODE_KP_0 = 98, + SDL_SCANCODE_KP_PERIOD = 99, + + SDL_SCANCODE_NONUSBACKSLASH = 100, /**< This is the additional key that ISO + * keyboards have over ANSI ones, + * located between left shift and Z. + * Produces GRAVE ACCENT and TILDE in a + * US or UK Mac layout, REVERSE SOLIDUS + * (backslash) and VERTICAL LINE in a + * US or UK Windows layout, and + * LESS-THAN SIGN and GREATER-THAN SIGN + * in a Swiss German, German, or French + * layout. */ + SDL_SCANCODE_APPLICATION = 101, /**< windows contextual menu, compose */ + SDL_SCANCODE_POWER = 102, /**< The USB document says this is a status flag, + * not a physical key - but some Mac keyboards + * do have a power key. */ + SDL_SCANCODE_KP_EQUALS = 103, + SDL_SCANCODE_F13 = 104, + SDL_SCANCODE_F14 = 105, + SDL_SCANCODE_F15 = 106, + SDL_SCANCODE_F16 = 107, + SDL_SCANCODE_F17 = 108, + SDL_SCANCODE_F18 = 109, + SDL_SCANCODE_F19 = 110, + SDL_SCANCODE_F20 = 111, + SDL_SCANCODE_F21 = 112, + SDL_SCANCODE_F22 = 113, + SDL_SCANCODE_F23 = 114, + SDL_SCANCODE_F24 = 115, + SDL_SCANCODE_EXECUTE = 116, + SDL_SCANCODE_HELP = 117, /**< AL Integrated Help Center */ + SDL_SCANCODE_MENU = 118, /**< Menu (show menu) */ + SDL_SCANCODE_SELECT = 119, + SDL_SCANCODE_STOP = 120, /**< AC Stop */ + SDL_SCANCODE_AGAIN = 121, /**< AC Redo/Repeat */ + SDL_SCANCODE_UNDO = 122, /**< AC Undo */ + SDL_SCANCODE_CUT = 123, /**< AC Cut */ + SDL_SCANCODE_COPY = 124, /**< AC Copy */ + SDL_SCANCODE_PASTE = 125, /**< AC Paste */ + SDL_SCANCODE_FIND = 126, /**< AC Find */ + SDL_SCANCODE_MUTE = 127, + SDL_SCANCODE_VOLUMEUP = 128, + SDL_SCANCODE_VOLUMEDOWN = 129, +/* not sure whether there's a reason to enable these */ +/* SDL_SCANCODE_LOCKINGCAPSLOCK = 130, */ +/* SDL_SCANCODE_LOCKINGNUMLOCK = 131, */ +/* SDL_SCANCODE_LOCKINGSCROLLLOCK = 132, */ + SDL_SCANCODE_KP_COMMA = 133, + SDL_SCANCODE_KP_EQUALSAS400 = 134, + + SDL_SCANCODE_INTERNATIONAL1 = 135, /**< used on Asian keyboards, see + footnotes in USB doc */ + SDL_SCANCODE_INTERNATIONAL2 = 136, + SDL_SCANCODE_INTERNATIONAL3 = 137, /**< Yen */ + SDL_SCANCODE_INTERNATIONAL4 = 138, + SDL_SCANCODE_INTERNATIONAL5 = 139, + SDL_SCANCODE_INTERNATIONAL6 = 140, + SDL_SCANCODE_INTERNATIONAL7 = 141, + SDL_SCANCODE_INTERNATIONAL8 = 142, + SDL_SCANCODE_INTERNATIONAL9 = 143, + SDL_SCANCODE_LANG1 = 144, /**< Hangul/English toggle */ + SDL_SCANCODE_LANG2 = 145, /**< Hanja conversion */ + SDL_SCANCODE_LANG3 = 146, /**< Katakana */ + SDL_SCANCODE_LANG4 = 147, /**< Hiragana */ + SDL_SCANCODE_LANG5 = 148, /**< Zenkaku/Hankaku */ + SDL_SCANCODE_LANG6 = 149, /**< reserved */ + SDL_SCANCODE_LANG7 = 150, /**< reserved */ + SDL_SCANCODE_LANG8 = 151, /**< reserved */ + SDL_SCANCODE_LANG9 = 152, /**< reserved */ + + SDL_SCANCODE_ALTERASE = 153, /**< Erase-Eaze */ + SDL_SCANCODE_SYSREQ = 154, + SDL_SCANCODE_CANCEL = 155, /**< AC Cancel */ + SDL_SCANCODE_CLEAR = 156, + SDL_SCANCODE_PRIOR = 157, + SDL_SCANCODE_RETURN2 = 158, + SDL_SCANCODE_SEPARATOR = 159, + SDL_SCANCODE_OUT = 160, + SDL_SCANCODE_OPER = 161, + SDL_SCANCODE_CLEARAGAIN = 162, + SDL_SCANCODE_CRSEL = 163, + SDL_SCANCODE_EXSEL = 164, + + SDL_SCANCODE_KP_00 = 176, + SDL_SCANCODE_KP_000 = 177, + SDL_SCANCODE_THOUSANDSSEPARATOR = 178, + SDL_SCANCODE_DECIMALSEPARATOR = 179, + SDL_SCANCODE_CURRENCYUNIT = 180, + SDL_SCANCODE_CURRENCYSUBUNIT = 181, + SDL_SCANCODE_KP_LEFTPAREN = 182, + SDL_SCANCODE_KP_RIGHTPAREN = 183, + SDL_SCANCODE_KP_LEFTBRACE = 184, + SDL_SCANCODE_KP_RIGHTBRACE = 185, + SDL_SCANCODE_KP_TAB = 186, + SDL_SCANCODE_KP_BACKSPACE = 187, + SDL_SCANCODE_KP_A = 188, + SDL_SCANCODE_KP_B = 189, + SDL_SCANCODE_KP_C = 190, + SDL_SCANCODE_KP_D = 191, + SDL_SCANCODE_KP_E = 192, + SDL_SCANCODE_KP_F = 193, + SDL_SCANCODE_KP_XOR = 194, + SDL_SCANCODE_KP_POWER = 195, + SDL_SCANCODE_KP_PERCENT = 196, + SDL_SCANCODE_KP_LESS = 197, + SDL_SCANCODE_KP_GREATER = 198, + SDL_SCANCODE_KP_AMPERSAND = 199, + SDL_SCANCODE_KP_DBLAMPERSAND = 200, + SDL_SCANCODE_KP_VERTICALBAR = 201, + SDL_SCANCODE_KP_DBLVERTICALBAR = 202, + SDL_SCANCODE_KP_COLON = 203, + SDL_SCANCODE_KP_HASH = 204, + SDL_SCANCODE_KP_SPACE = 205, + SDL_SCANCODE_KP_AT = 206, + SDL_SCANCODE_KP_EXCLAM = 207, + SDL_SCANCODE_KP_MEMSTORE = 208, + SDL_SCANCODE_KP_MEMRECALL = 209, + SDL_SCANCODE_KP_MEMCLEAR = 210, + SDL_SCANCODE_KP_MEMADD = 211, + SDL_SCANCODE_KP_MEMSUBTRACT = 212, + SDL_SCANCODE_KP_MEMMULTIPLY = 213, + SDL_SCANCODE_KP_MEMDIVIDE = 214, + SDL_SCANCODE_KP_PLUSMINUS = 215, + SDL_SCANCODE_KP_CLEAR = 216, + SDL_SCANCODE_KP_CLEARENTRY = 217, + SDL_SCANCODE_KP_BINARY = 218, + SDL_SCANCODE_KP_OCTAL = 219, + SDL_SCANCODE_KP_DECIMAL = 220, + SDL_SCANCODE_KP_HEXADECIMAL = 221, + + SDL_SCANCODE_LCTRL = 224, + SDL_SCANCODE_LSHIFT = 225, + SDL_SCANCODE_LALT = 226, /**< alt, option */ + SDL_SCANCODE_LGUI = 227, /**< windows, command (apple), meta */ + SDL_SCANCODE_RCTRL = 228, + SDL_SCANCODE_RSHIFT = 229, + SDL_SCANCODE_RALT = 230, /**< alt gr, option */ + SDL_SCANCODE_RGUI = 231, /**< windows, command (apple), meta */ + + SDL_SCANCODE_MODE = 257, /**< I'm not sure if this is really not covered + * by any of the above, but since there's a + * special SDL_KMOD_MODE for it I'm adding it here + */ + + /* @} *//* Usage page 0x07 */ + + /** + * \name Usage page 0x0C + * + * These values are mapped from usage page 0x0C (USB consumer page). + * + * There are way more keys in the spec than we can represent in the + * current scancode range, so pick the ones that commonly come up in + * real world usage. + */ + /* @{ */ + + SDL_SCANCODE_SLEEP = 258, /**< Sleep */ + SDL_SCANCODE_WAKE = 259, /**< Wake */ + + SDL_SCANCODE_CHANNEL_INCREMENT = 260, /**< Channel Increment */ + SDL_SCANCODE_CHANNEL_DECREMENT = 261, /**< Channel Decrement */ + + SDL_SCANCODE_MEDIA_PLAY = 262, /**< Play */ + SDL_SCANCODE_MEDIA_PAUSE = 263, /**< Pause */ + SDL_SCANCODE_MEDIA_RECORD = 264, /**< Record */ + SDL_SCANCODE_MEDIA_FAST_FORWARD = 265, /**< Fast Forward */ + SDL_SCANCODE_MEDIA_REWIND = 266, /**< Rewind */ + SDL_SCANCODE_MEDIA_NEXT_TRACK = 267, /**< Next Track */ + SDL_SCANCODE_MEDIA_PREVIOUS_TRACK = 268, /**< Previous Track */ + SDL_SCANCODE_MEDIA_STOP = 269, /**< Stop */ + SDL_SCANCODE_MEDIA_EJECT = 270, /**< Eject */ + SDL_SCANCODE_MEDIA_PLAY_PAUSE = 271, /**< Play / Pause */ + SDL_SCANCODE_MEDIA_SELECT = 272, /* Media Select */ + + SDL_SCANCODE_AC_NEW = 273, /**< AC New */ + SDL_SCANCODE_AC_OPEN = 274, /**< AC Open */ + SDL_SCANCODE_AC_CLOSE = 275, /**< AC Close */ + SDL_SCANCODE_AC_EXIT = 276, /**< AC Exit */ + SDL_SCANCODE_AC_SAVE = 277, /**< AC Save */ + SDL_SCANCODE_AC_PRINT = 278, /**< AC Print */ + SDL_SCANCODE_AC_PROPERTIES = 279, /**< AC Properties */ + + SDL_SCANCODE_AC_SEARCH = 280, /**< AC Search */ + SDL_SCANCODE_AC_HOME = 281, /**< AC Home */ + SDL_SCANCODE_AC_BACK = 282, /**< AC Back */ + SDL_SCANCODE_AC_FORWARD = 283, /**< AC Forward */ + SDL_SCANCODE_AC_STOP = 284, /**< AC Stop */ + SDL_SCANCODE_AC_REFRESH = 285, /**< AC Refresh */ + SDL_SCANCODE_AC_BOOKMARKS = 286, /**< AC Bookmarks */ + + /* @} *//* Usage page 0x0C */ + + + /** + * \name Mobile keys + * + * These are values that are often used on mobile phones. + */ + /* @{ */ + + SDL_SCANCODE_SOFTLEFT = 287, /**< Usually situated below the display on phones and + used as a multi-function feature key for selecting + a software defined function shown on the bottom left + of the display. */ + SDL_SCANCODE_SOFTRIGHT = 288, /**< Usually situated below the display on phones and + used as a multi-function feature key for selecting + a software defined function shown on the bottom right + of the display. */ + SDL_SCANCODE_CALL = 289, /**< Used for accepting phone calls. */ + SDL_SCANCODE_ENDCALL = 290, /**< Used for rejecting phone calls. */ + + /* @} *//* Mobile keys */ + + /* Add any other keys here. */ + + SDL_SCANCODE_RESERVED = 400, /**< 400-500 reserved for dynamic keycodes */ + + SDL_SCANCODE_COUNT = 512 /**< not a key, just marks the number of scancodes for array bounds */ + +} SDL_Scancode; + +#endif /* SDL_scancode_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_sensor.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_sensor.h new file mode 100644 index 0000000..b220f05 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_sensor.h @@ -0,0 +1,320 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategorySensor + * + * SDL sensor management. + * + * These APIs grant access to gyros and accelerometers on various platforms. + * + * In order to use these functions, SDL_Init() must have been called with the + * SDL_INIT_SENSOR flag. This causes SDL to scan the system for sensors, and + * load appropriate drivers. + */ + +#ifndef SDL_sensor_h_ +#define SDL_sensor_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +extern "C" { +/* *INDENT-ON* */ +#endif + +/** + * The opaque structure used to identify an opened SDL sensor. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Sensor SDL_Sensor; + +/** + * This is a unique ID for a sensor for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_SensorID; + +/** + * A constant to represent standard gravity for accelerometer sensors. + * + * The accelerometer returns the current acceleration in SI meters per second + * squared. This measurement includes the force of gravity, so a device at + * rest will have an value of SDL_STANDARD_GRAVITY away from the center of the + * earth, which is a positive Y value. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_STANDARD_GRAVITY 9.80665f + +/** + * The different sensors defined by SDL. + * + * Additional sensors may be available, using platform dependent semantics. + * + * Here are the additional Android sensors: + * + * https://developer.android.com/reference/android/hardware/SensorEvent.html#values + * + * Accelerometer sensor notes: + * + * The accelerometer returns the current acceleration in SI meters per second + * squared. This measurement includes the force of gravity, so a device at + * rest will have an value of SDL_STANDARD_GRAVITY away from the center of the + * earth, which is a positive Y value. + * + * - `values[0]`: Acceleration on the x axis + * - `values[1]`: Acceleration on the y axis + * - `values[2]`: Acceleration on the z axis + * + * For phones and tablets held in natural orientation and game controllers + * held in front of you, the axes are defined as follows: + * + * - -X ... +X : left ... right + * - -Y ... +Y : bottom ... top + * - -Z ... +Z : farther ... closer + * + * The accelerometer axis data is not changed when the device is rotated. + * + * Gyroscope sensor notes: + * + * The gyroscope returns the current rate of rotation in radians per second. + * The rotation is positive in the counter-clockwise direction. That is, an + * observer looking from a positive location on one of the axes would see + * positive rotation on that axis when it appeared to be rotating + * counter-clockwise. + * + * - `values[0]`: Angular speed around the x axis (pitch) + * - `values[1]`: Angular speed around the y axis (yaw) + * - `values[2]`: Angular speed around the z axis (roll) + * + * For phones and tablets held in natural orientation and game controllers + * held in front of you, the axes are defined as follows: + * + * - -X ... +X : left ... right + * - -Y ... +Y : bottom ... top + * - -Z ... +Z : farther ... closer + * + * The gyroscope axis data is not changed when the device is rotated. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentDisplayOrientation + */ +typedef enum SDL_SensorType +{ + SDL_SENSOR_INVALID = -1, /**< Returned for an invalid sensor */ + SDL_SENSOR_UNKNOWN, /**< Unknown sensor type */ + SDL_SENSOR_ACCEL, /**< Accelerometer */ + SDL_SENSOR_GYRO, /**< Gyroscope */ + SDL_SENSOR_ACCEL_L, /**< Accelerometer for left Joy-Con controller and Wii nunchuk */ + SDL_SENSOR_GYRO_L, /**< Gyroscope for left Joy-Con controller */ + SDL_SENSOR_ACCEL_R, /**< Accelerometer for right Joy-Con controller */ + SDL_SENSOR_GYRO_R /**< Gyroscope for right Joy-Con controller */ +} SDL_SensorType; + + +/* Function prototypes */ + +/** + * Get a list of currently connected sensors. + * + * \param count a pointer filled in with the number of sensors returned, may + * be NULL. + * \returns a 0 terminated array of sensor instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorID * SDLCALL SDL_GetSensors(int *count); + +/** + * Get the implementation dependent name of a sensor. + * + * This can be called before any sensors are opened. + * + * \param instance_id the sensor instance ID. + * \returns the sensor name, or NULL if `instance_id` is not valid. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetSensorNameForID(SDL_SensorID instance_id); + +/** + * Get the type of a sensor. + * + * This can be called before any sensors are opened. + * + * \param instance_id the sensor instance ID. + * \returns the SDL_SensorType, or `SDL_SENSOR_INVALID` if `instance_id` is + * not valid. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorType SDLCALL SDL_GetSensorTypeForID(SDL_SensorID instance_id); + +/** + * Get the platform dependent type of a sensor. + * + * This can be called before any sensors are opened. + * + * \param instance_id the sensor instance ID. + * \returns the sensor platform dependent type, or -1 if `instance_id` is not + * valid. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSensorNonPortableTypeForID(SDL_SensorID instance_id); + +/** + * Open a sensor for use. + * + * \param instance_id the sensor instance ID. + * \returns an SDL_Sensor object or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Sensor * SDLCALL SDL_OpenSensor(SDL_SensorID instance_id); + +/** + * Return the SDL_Sensor associated with an instance ID. + * + * \param instance_id the sensor instance ID. + * \returns an SDL_Sensor object or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Sensor * SDLCALL SDL_GetSensorFromID(SDL_SensorID instance_id); + +/** + * Get the properties associated with a sensor. + * + * \param sensor the SDL_Sensor object. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetSensorProperties(SDL_Sensor *sensor); + +/** + * Get the implementation dependent name of a sensor. + * + * \param sensor the SDL_Sensor object. + * \returns the sensor name or NULL on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetSensorName(SDL_Sensor *sensor); + +/** + * Get the type of a sensor. + * + * \param sensor the SDL_Sensor object to inspect. + * \returns the SDL_SensorType type, or `SDL_SENSOR_INVALID` if `sensor` is + * NULL. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorType SDLCALL SDL_GetSensorType(SDL_Sensor *sensor); + +/** + * Get the platform dependent type of a sensor. + * + * \param sensor the SDL_Sensor object to inspect. + * \returns the sensor platform dependent type, or -1 if `sensor` is NULL. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetSensorNonPortableType(SDL_Sensor *sensor); + +/** + * Get the instance ID of a sensor. + * + * \param sensor the SDL_Sensor object to inspect. + * \returns the sensor instance ID, or 0 on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SensorID SDLCALL SDL_GetSensorID(SDL_Sensor *sensor); + +/** + * Get the current state of an opened sensor. + * + * The number of values and interpretation of the data is sensor dependent. + * + * \param sensor the SDL_Sensor object to query. + * \param data a pointer filled with the current sensor state. + * \param num_values the number of values to write to data. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSensorData(SDL_Sensor *sensor, float *data, int num_values); + +/** + * Close a sensor previously opened with SDL_OpenSensor(). + * + * \param sensor the SDL_Sensor object to close. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CloseSensor(SDL_Sensor *sensor); + +/** + * Update the current state of the open sensors. + * + * This is called automatically by the event loop if sensor events are + * enabled. + * + * This needs to be called from the thread that initialized the sensor + * subsystem. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateSensors(void); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +/* *INDENT-OFF* */ +} +/* *INDENT-ON* */ +#endif +#include + +#endif /* SDL_sensor_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_stdinc.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_stdinc.h new file mode 100644 index 0000000..7df253f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_stdinc.h @@ -0,0 +1,6137 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryStdinc + * + * SDL provides its own implementation of some of the most important C runtime + * functions. + * + * Using these functions allows an app to have access to common C + * functionality without depending on a specific C runtime (or a C runtime at + * all). More importantly, the SDL implementations work identically across + * platforms, so apps can avoid surprises like snprintf() behaving differently + * between Windows and Linux builds, or itoa() only existing on some + * platforms. + * + * For many of the most common functions, like SDL_memcpy, SDL might just call + * through to the usual C runtime behind the scenes, if it makes sense to do + * so (if it's faster and always available/reliable on a given platform), + * reducing library size and offering the most optimized option. + * + * SDL also offers other C-runtime-adjacent functionality in this header that + * either isn't, strictly speaking, part of any C runtime standards, like + * SDL_crc32() and SDL_reinterpret_cast, etc. It also offers a few better + * options, like SDL_strlcpy(), which functions as a safer form of strcpy(). + */ + +#ifndef SDL_stdinc_h_ +#define SDL_stdinc_h_ + +#include + +#include +#include +#include +#include + +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ + defined(SDL_INCLUDE_INTTYPES_H) +#include +#endif + +#ifndef __cplusplus +#if defined(__has_include) && !defined(SDL_INCLUDE_STDBOOL_H) +#if __has_include() +#define SDL_INCLUDE_STDBOOL_H +#endif +#endif +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ + (defined(_MSC_VER) && (_MSC_VER >= 1910 /* Visual Studio 2017 */)) || \ + defined(SDL_INCLUDE_STDBOOL_H) +#include +#elif !defined(__bool_true_false_are_defined) && !defined(bool) +#define bool unsigned char +#define false 0 +#define true 1 +#define __bool_true_false_are_defined 1 +#endif +#endif /* !__cplusplus */ + +#ifndef SDL_DISABLE_ALLOCA +# ifndef alloca +# ifdef HAVE_ALLOCA_H +# include +# elif defined(SDL_PLATFORM_NETBSD) +# if defined(__STRICT_ANSI__) +# define SDL_DISABLE_ALLOCA +# else +# include +# endif +# elif defined(__GNUC__) +# define alloca __builtin_alloca +# elif defined(_MSC_VER) +# include +# define alloca _alloca +# elif defined(__WATCOMC__) +# include +# elif defined(__BORLANDC__) +# include +# elif defined(__DMC__) +# include +# elif defined(SDL_PLATFORM_AIX) +# pragma alloca +# elif defined(__MRC__) +void *alloca(unsigned); +# else +void *alloca(size_t); +# endif +# endif +#endif + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Don't let SDL use "long long" C types. + * + * SDL will define this if it believes the compiler doesn't understand the + * "long long" syntax for C datatypes. This can happen on older compilers. + * + * If _your_ compiler doesn't support "long long" but SDL doesn't know it, it + * is safe to define this yourself to build against the SDL headers. + * + * If this is defined, it will remove access to some C runtime support + * functions, like SDL_ulltoa and SDL_strtoll that refer to this datatype + * explicitly. The rest of SDL will still be available. + * + * SDL's own source code cannot be built with a compiler that has this + * defined, for various technical reasons. + */ +#define SDL_NOLONGLONG 1 + +#elif defined(_MSC_VER) && (_MSC_VER < 1310) /* long long introduced in Visual Studio.NET 2003 */ +# define SDL_NOLONGLONG 1 +#endif + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * The largest value that a `size_t` can hold for the target platform. + * + * `size_t` is generally the same size as a pointer in modern times, but this + * can get weird on very old and very esoteric machines. For example, on a + * 16-bit Intel 286, you might have a 32-bit "far" pointer (16-bit segment + * plus 16-bit offset), but `size_t` is 16 bits, because it can only deal with + * the offset into an individual segment. + * + * In modern times, it's generally expected to cover an entire linear address + * space. But be careful! + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SIZE_MAX SIZE_MAX + +#elif defined(SIZE_MAX) +# define SDL_SIZE_MAX SIZE_MAX +#else +# define SDL_SIZE_MAX ((size_t) -1) +#endif + +#ifndef SDL_COMPILE_TIME_ASSERT +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A compile-time assertion. + * + * This can check constant values _known to the compiler at build time_ for + * correctness, and end the compile with the error if they fail. + * + * Often times these are used to verify basic truths, like the size of a + * datatype is what is expected: + * + * ```c + * SDL_COMPILE_TIME_ASSERT(uint32_size, sizeof(Uint32) == 4); + * ``` + * + * The `name` parameter must be a valid C symbol, and must be unique across + * all compile-time asserts in the same compilation unit (one run of the + * compiler), or the build might fail with cryptic errors on some targets. + * This is used with a C language trick that works on older compilers that + * don't support better assertion techniques. + * + * If you need an assertion that operates at runtime, on variable data, you + * should try SDL_assert instead. + * + * \param name a unique identifier for this assertion. + * \param x the value to test. Must be a boolean value. + * + * \threadsafety This macro doesn't generate any code to run. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_assert + */ +#define SDL_COMPILE_TIME_ASSERT(name, x) FailToCompileIf_x_IsFalse(x) +#elif defined(__cplusplus) +/* Keep C++ case alone: Some versions of gcc will define __STDC_VERSION__ even when compiling in C++ mode. */ +#if (__cplusplus >= 201103L) +#define SDL_COMPILE_TIME_ASSERT(name, x) static_assert(x, #x) +#endif +#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 202311L) +#define SDL_COMPILE_TIME_ASSERT(name, x) static_assert(x, #x) +#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) +#define SDL_COMPILE_TIME_ASSERT(name, x) _Static_assert(x, #x) +#endif +#endif /* !SDL_COMPILE_TIME_ASSERT */ + +#ifndef SDL_COMPILE_TIME_ASSERT +/* universal, but may trigger -Wunused-local-typedefs */ +#define SDL_COMPILE_TIME_ASSERT(name, x) \ + typedef int SDL_compile_time_assert_ ## name[(x) * 2 - 1] +#endif + +/** + * The number of elements in a static array. + * + * This will compile but return incorrect results for a pointer to an array; + * it has to be an array the compiler knows the size of. + * + * This macro looks like it double-evaluates the argument, but it does so + * inside of `sizeof`, so there are no side-effects here, as expressions do + * not actually run any code in these cases. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_arraysize(array) (sizeof(array)/sizeof(array[0])) + +/** + * Macro useful for building other macros with strings in them. + * + * For example: + * + * ```c + * #define LOG_ERROR(X) OutputDebugString(SDL_STRINGIFY_ARG(__FUNCTION__) ": " X "\n")` + * ``` + * + * \param arg the text to turn into a string literal. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_STRINGIFY_ARG(arg) #arg + +/** + * \name Cast operators + * + * Use proper C++ casts when compiled as C++ to be compatible with the option + * -Wold-style-cast of GCC (and -Werror=old-style-cast in GCC 4.2 and above). + */ +/* @{ */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Handle a Reinterpret Cast properly whether using C or C++. + * + * If compiled as C++, this macro offers a proper C++ reinterpret_cast<>. + * + * If compiled as C, this macro does a normal C-style cast. + * + * This is helpful to avoid compiler warnings in C++. + * + * \param type the type to cast the expression to. + * \param expression the expression to cast to a different type. + * \returns `expression`, cast to `type`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_static_cast + * \sa SDL_const_cast + */ +#define SDL_reinterpret_cast(type, expression) reinterpret_cast(expression) /* or `((type)(expression))` in C */ + +/** + * Handle a Static Cast properly whether using C or C++. + * + * If compiled as C++, this macro offers a proper C++ static_cast<>. + * + * If compiled as C, this macro does a normal C-style cast. + * + * This is helpful to avoid compiler warnings in C++. + * + * \param type the type to cast the expression to. + * \param expression the expression to cast to a different type. + * \returns `expression`, cast to `type`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_reinterpret_cast + * \sa SDL_const_cast + */ +#define SDL_static_cast(type, expression) static_cast(expression) /* or `((type)(expression))` in C */ + +/** + * Handle a Const Cast properly whether using C or C++. + * + * If compiled as C++, this macro offers a proper C++ const_cast<>. + * + * If compiled as C, this macro does a normal C-style cast. + * + * This is helpful to avoid compiler warnings in C++. + * + * \param type the type to cast the expression to. + * \param expression the expression to cast to a different type. + * \returns `expression`, cast to `type`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_reinterpret_cast + * \sa SDL_static_cast + */ +#define SDL_const_cast(type, expression) const_cast(expression) /* or `((type)(expression))` in C */ + +#elif defined(__cplusplus) +#define SDL_reinterpret_cast(type, expression) reinterpret_cast(expression) +#define SDL_static_cast(type, expression) static_cast(expression) +#define SDL_const_cast(type, expression) const_cast(expression) +#else +#define SDL_reinterpret_cast(type, expression) ((type)(expression)) +#define SDL_static_cast(type, expression) ((type)(expression)) +#define SDL_const_cast(type, expression) ((type)(expression)) +#endif + +/* @} *//* Cast operators */ + +/** + * Define a four character code as a Uint32. + * + * \param A the first ASCII character. + * \param B the second ASCII character. + * \param C the third ASCII character. + * \param D the fourth ASCII character. + * \returns the four characters converted into a Uint32, one character + * per-byte. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FOURCC(A, B, C, D) \ + ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \ + (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24)) + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Append the 64 bit integer suffix to a signed integer literal. + * + * This helps compilers that might believe a integer literal larger than + * 0xFFFFFFFF is overflowing a 32-bit value. Use `SDL_SINT64_C(0xFFFFFFFF1)` + * instead of `0xFFFFFFFF1` by itself. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_UINT64_C + */ +#define SDL_SINT64_C(c) c ## LL /* or whatever the current compiler uses. */ + +/** + * Append the 64 bit integer suffix to an unsigned integer literal. + * + * This helps compilers that might believe a integer literal larger than + * 0xFFFFFFFF is overflowing a 32-bit value. Use `SDL_UINT64_C(0xFFFFFFFF1)` + * instead of `0xFFFFFFFF1` by itself. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SINT64_C + */ +#define SDL_UINT64_C(c) c ## ULL /* or whatever the current compiler uses. */ + +#else /* !SDL_WIKI_DOCUMENTATION_SECTION */ + +#ifndef SDL_SINT64_C +#if defined(INT64_C) +#define SDL_SINT64_C(c) INT64_C(c) +#elif defined(_MSC_VER) +#define SDL_SINT64_C(c) c ## i64 +#elif defined(__LP64__) || defined(_LP64) +#define SDL_SINT64_C(c) c ## L +#else +#define SDL_SINT64_C(c) c ## LL +#endif +#endif /* !SDL_SINT64_C */ + +#ifndef SDL_UINT64_C +#if defined(UINT64_C) +#define SDL_UINT64_C(c) UINT64_C(c) +#elif defined(_MSC_VER) +#define SDL_UINT64_C(c) c ## ui64 +#elif defined(__LP64__) || defined(_LP64) +#define SDL_UINT64_C(c) c ## UL +#else +#define SDL_UINT64_C(c) c ## ULL +#endif +#endif /* !SDL_UINT64_C */ + +#endif /* !SDL_WIKI_DOCUMENTATION_SECTION */ + +/** + * \name Basic data types + */ +/* @{ */ + +/** + * A signed 8-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef int8_t Sint8; +#define SDL_MAX_SINT8 ((Sint8)0x7F) /* 127 */ +#define SDL_MIN_SINT8 ((Sint8)(~0x7F)) /* -128 */ + +/** + * An unsigned 8-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef uint8_t Uint8; +#define SDL_MAX_UINT8 ((Uint8)0xFF) /* 255 */ +#define SDL_MIN_UINT8 ((Uint8)0x00) /* 0 */ + +/** + * A signed 16-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef int16_t Sint16; +#define SDL_MAX_SINT16 ((Sint16)0x7FFF) /* 32767 */ +#define SDL_MIN_SINT16 ((Sint16)(~0x7FFF)) /* -32768 */ + +/** + * An unsigned 16-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef uint16_t Uint16; +#define SDL_MAX_UINT16 ((Uint16)0xFFFF) /* 65535 */ +#define SDL_MIN_UINT16 ((Uint16)0x0000) /* 0 */ + +/** + * A signed 32-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef int32_t Sint32; +#define SDL_MAX_SINT32 ((Sint32)0x7FFFFFFF) /* 2147483647 */ +#define SDL_MIN_SINT32 ((Sint32)(~0x7FFFFFFF)) /* -2147483648 */ + +/** + * An unsigned 32-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + */ +typedef uint32_t Uint32; +#define SDL_MAX_UINT32 ((Uint32)0xFFFFFFFFu) /* 4294967295 */ +#define SDL_MIN_UINT32 ((Uint32)0x00000000) /* 0 */ + +/** + * A signed 64-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_SINT64_C + */ +typedef int64_t Sint64; +#define SDL_MAX_SINT64 SDL_SINT64_C(0x7FFFFFFFFFFFFFFF) /* 9223372036854775807 */ +#define SDL_MIN_SINT64 ~SDL_SINT64_C(0x7FFFFFFFFFFFFFFF) /* -9223372036854775808 */ + +/** + * An unsigned 64-bit integer type. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_UINT64_C + */ +typedef uint64_t Uint64; +#define SDL_MAX_UINT64 SDL_UINT64_C(0xFFFFFFFFFFFFFFFF) /* 18446744073709551615 */ +#define SDL_MIN_UINT64 SDL_UINT64_C(0x0000000000000000) /* 0 */ + +/** + * SDL times are signed, 64-bit integers representing nanoseconds since the + * Unix epoch (Jan 1, 1970). + * + * They can be converted between POSIX time_t values with SDL_NS_TO_SECONDS() + * and SDL_SECONDS_TO_NS(), and between Windows FILETIME values with + * SDL_TimeToWindows() and SDL_TimeFromWindows(). + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_MAX_SINT64 + * \sa SDL_MIN_SINT64 + */ +typedef Sint64 SDL_Time; +#define SDL_MAX_TIME SDL_MAX_SINT64 +#define SDL_MIN_TIME SDL_MIN_SINT64 + +/* @} *//* Basic data types */ + +/** + * \name Floating-point constants + */ +/* @{ */ + +#ifdef FLT_EPSILON +#define SDL_FLT_EPSILON FLT_EPSILON +#else + +/** + * Epsilon constant, used for comparing floating-point numbers. + * + * Equals by default to platform-defined `FLT_EPSILON`, or + * `1.1920928955078125e-07F` if that's not available. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_FLT_EPSILON 1.1920928955078125e-07F /* 0x0.000002p0 */ +#endif + +/* @} *//* Floating-point constants */ + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A printf-formatting string for an Sint64 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIs64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIs64 "lld" + +/** + * A printf-formatting string for a Uint64 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIu64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIu64 "llu" + +/** + * A printf-formatting string for a Uint64 value as lower-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIx64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIx64 "llx" + +/** + * A printf-formatting string for a Uint64 value as upper-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIX64 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIX64 "llX" + +/** + * A printf-formatting string for an Sint32 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIs32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIs32 "d" + +/** + * A printf-formatting string for a Uint32 value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIu32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIu32 "u" + +/** + * A printf-formatting string for a Uint32 value as lower-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIx32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIx32 "x" + +/** + * A printf-formatting string for a Uint32 value as upper-case hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRIX32 " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRIX32 "X" + +/** + * A printf-formatting string prefix for a `long long` value. + * + * This is just the prefix! You probably actually want SDL_PRILLd, SDL_PRILLu, + * SDL_PRILLx, or SDL_PRILLX instead. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILL_PREFIX "d bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILL_PREFIX "ll" + +/** + * A printf-formatting string for a `long long` value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLd " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLd SDL_PRILL_PREFIX "d" + +/** + * A printf-formatting string for a `unsigned long long` value. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLu " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLu SDL_PRILL_PREFIX "u" + +/** + * A printf-formatting string for an `unsigned long long` value as lower-case + * hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLx " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLx SDL_PRILL_PREFIX "x" + +/** + * A printf-formatting string for an `unsigned long long` value as upper-case + * hexadecimal. + * + * Use it like this: + * + * ```c + * SDL_Log("There are %" SDL_PRILLX " bottles of beer on the wall.", bottles); + * ``` + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRILLX SDL_PRILL_PREFIX "X" +#endif /* SDL_WIKI_DOCUMENTATION_SECTION */ + +/* Make sure we have macros for printing width-based integers. + * should define these but this is not true all platforms. + * (for example win32) */ +#ifndef SDL_PRIs64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIs64 "I64d" +#elif defined(PRId64) +#define SDL_PRIs64 PRId64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) && !defined(__EMSCRIPTEN__) +#define SDL_PRIs64 "ld" +#else +#define SDL_PRIs64 "lld" +#endif +#endif +#ifndef SDL_PRIu64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIu64 "I64u" +#elif defined(PRIu64) +#define SDL_PRIu64 PRIu64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) && !defined(__EMSCRIPTEN__) +#define SDL_PRIu64 "lu" +#else +#define SDL_PRIu64 "llu" +#endif +#endif +#ifndef SDL_PRIx64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIx64 "I64x" +#elif defined(PRIx64) +#define SDL_PRIx64 PRIx64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) +#define SDL_PRIx64 "lx" +#else +#define SDL_PRIx64 "llx" +#endif +#endif +#ifndef SDL_PRIX64 +#if defined(SDL_PLATFORM_WINDOWS) +#define SDL_PRIX64 "I64X" +#elif defined(PRIX64) +#define SDL_PRIX64 PRIX64 +#elif defined(__LP64__) && !defined(SDL_PLATFORM_APPLE) +#define SDL_PRIX64 "lX" +#else +#define SDL_PRIX64 "llX" +#endif +#endif +#ifndef SDL_PRIs32 +#ifdef PRId32 +#define SDL_PRIs32 PRId32 +#else +#define SDL_PRIs32 "d" +#endif +#endif +#ifndef SDL_PRIu32 +#ifdef PRIu32 +#define SDL_PRIu32 PRIu32 +#else +#define SDL_PRIu32 "u" +#endif +#endif +#ifndef SDL_PRIx32 +#ifdef PRIx32 +#define SDL_PRIx32 PRIx32 +#else +#define SDL_PRIx32 "x" +#endif +#endif +#ifndef SDL_PRIX32 +#ifdef PRIX32 +#define SDL_PRIX32 PRIX32 +#else +#define SDL_PRIX32 "X" +#endif +#endif +/* Specifically for the `long long` -- SDL-specific. */ +#ifdef SDL_PLATFORM_WINDOWS +#ifndef SDL_NOLONGLONG +SDL_COMPILE_TIME_ASSERT(longlong_size64, sizeof(long long) == 8); /* using I64 for windows - make sure `long long` is 64 bits. */ +#endif +#define SDL_PRILL_PREFIX "I64" +#else +#define SDL_PRILL_PREFIX "ll" +#endif +#ifndef SDL_PRILLd +#define SDL_PRILLd SDL_PRILL_PREFIX "d" +#endif +#ifndef SDL_PRILLu +#define SDL_PRILLu SDL_PRILL_PREFIX "u" +#endif +#ifndef SDL_PRILLx +#define SDL_PRILLx SDL_PRILL_PREFIX "x" +#endif +#ifndef SDL_PRILLX +#define SDL_PRILLX SDL_PRILL_PREFIX "X" +#endif + +/* Annotations to help code analysis tools */ +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Macro that annotates function params with input buffer size. + * + * If we were to annotate `memcpy`: + * + * ```c + * void *memcpy(void *dst, SDL_IN_BYTECAP(len) const void *src, size_t len); + * ``` + * + * This notes that `src` should be `len` bytes in size and is only read by the + * function. The compiler or other analysis tools can warn when this doesn't + * appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_IN_BYTECAP(x) _In_bytecount_(x) + +/** + * Macro that annotates function params with input/output string buffer size. + * + * If we were to annotate `strlcat`: + * + * ```c + * size_t strlcat(SDL_INOUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen); + * ``` + * + * This notes that `dst` is a null-terminated C string, should be `maxlen` + * bytes in size, and is both read from and written to by the function. The + * compiler or other analysis tools can warn when this doesn't appear to be + * the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_INOUT_Z_CAP(x) _Inout_z_cap_(x) + +/** + * Macro that annotates function params with output string buffer size. + * + * If we were to annotate `snprintf`: + * + * ```c + * int snprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, const char *fmt, ...); + * ``` + * + * This notes that `text` is a null-terminated C string, should be `maxlen` + * bytes in size, and is only written to by the function. The compiler or + * other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_Z_CAP(x) _Out_z_cap_(x) + +/** + * Macro that annotates function params with output buffer size. + * + * If we were to annotate `wcsncpy`: + * + * ```c + * char *wcscpy(SDL_OUT_CAP(bufsize) wchar_t *dst, const wchar_t *src, size_t bufsize); + * ``` + * + * This notes that `dst` should have a capacity of `bufsize` wchar_t in size, + * and is only written to by the function. The compiler or other analysis + * tools can warn when this doesn't appear to be the case. + * + * This operates on counts of objects, not bytes. Use SDL_OUT_BYTECAP for + * bytes. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_CAP(x) _Out_cap_(x) + +/** + * Macro that annotates function params with output buffer size. + * + * If we were to annotate `memcpy`: + * + * ```c + * void *memcpy(SDL_OUT_BYTECAP(bufsize) void *dst, const void *src, size_t bufsize); + * ``` + * + * This notes that `dst` should have a capacity of `bufsize` bytes in size, + * and is only written to by the function. The compiler or other analysis + * tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_BYTECAP(x) _Out_bytecap_(x) + +/** + * Macro that annotates function params with output buffer string size. + * + * If we were to annotate `strcpy`: + * + * ```c + * char *strcpy(SDL_OUT_Z_BYTECAP(bufsize) char *dst, const char *src, size_t bufsize); + * ``` + * + * This notes that `dst` should have a capacity of `bufsize` bytes in size, + * and a zero-terminated string is written to it by the function. The compiler + * or other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_OUT_Z_BYTECAP(x) _Out_z_bytecap_(x) + +/** + * Macro that annotates function params as printf-style format strings. + * + * If we were to annotate `fprintf`: + * + * ```c + * int fprintf(FILE *f, SDL_PRINTF_FORMAT_STRING const char *fmt, ...); + * ``` + * + * This notes that `fmt` should be a printf-style format string. The compiler + * or other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRINTF_FORMAT_STRING _Printf_format_string_ + +/** + * Macro that annotates function params as scanf-style format strings. + * + * If we were to annotate `fscanf`: + * + * ```c + * int fscanf(FILE *f, SDL_SCANF_FORMAT_STRING const char *fmt, ...); + * ``` + * + * This notes that `fmt` should be a scanf-style format string. The compiler + * or other analysis tools can warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCANF_FORMAT_STRING _Scanf_format_string_impl_ + +/** + * Macro that annotates a vararg function that operates like printf. + * + * If we were to annotate `fprintf`: + * + * ```c + * int fprintf(FILE *f, const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + * ``` + * + * This notes that the second parameter should be a printf-style format + * string, followed by `...`. The compiler or other analysis tools can warn + * when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __printf__, fmtargnumber, fmtargnumber+1 ))) + +/** + * Macro that annotates a va_list function that operates like printf. + * + * If we were to annotate `vfprintf`: + * + * ```c + * int vfprintf(FILE *f, const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + * ``` + * + * This notes that the second parameter should be a printf-style format + * string, followed by a va_list. The compiler or other analysis tools can + * warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __printf__, fmtargnumber, 0 ))) + +/** + * Macro that annotates a vararg function that operates like scanf. + * + * If we were to annotate `fscanf`: + * + * ```c + * int fscanf(FILE *f, const char *fmt, ...) SDL_PRINTF_VARARG_FUNCV(2); + * ``` + * + * This notes that the second parameter should be a scanf-style format string, + * followed by `...`. The compiler or other analysis tools can warn when this + * doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_SCANF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __scanf__, fmtargnumber, fmtargnumber+1 ))) + +/** + * Macro that annotates a va_list function that operates like scanf. + * + * If we were to annotate `vfscanf`: + * + * ```c + * int vfscanf(FILE *f, const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + * ``` + * + * This notes that the second parameter should be a scanf-style format string, + * followed by a va_list. The compiler or other analysis tools can warn when + * this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_SCANF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __scanf__, fmtargnumber, 0 ))) + +/** + * Macro that annotates a vararg function that operates like wprintf. + * + * If we were to annotate `fwprintf`: + * + * ```c + * int fwprintf(FILE *f, const wchar_t *fmt, ...) SDL_WPRINTF_VARARG_FUNC(2); + * ``` + * + * This notes that the second parameter should be a wprintf-style format wide + * string, followed by `...`. The compiler or other analysis tools can warn + * when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, fmtargnumber+1 ))) */ + +/** + * Macro that annotates a va_list function that operates like wprintf. + * + * If we were to annotate `vfwprintf`: + * + * ```c + * int vfwprintf(FILE *f, const wchar_t *fmt, va_list ap) SDL_WPRINTF_VARARG_FUNC(2); + * ``` + * + * This notes that the second parameter should be a wprintf-style format wide + * string, followed by a va_list. The compiler or other analysis tools can + * warn when this doesn't appear to be the case. + * + * On compilers without this annotation mechanism, this is defined to nothing. + * + * This can (and should) be used with SDL_PRINTF_FORMAT_STRING as well, which + * between them will cover at least Visual Studio, GCC, and Clang. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, 0 ))) */ + +#elif defined(SDL_DISABLE_ANALYZE_MACROS) +#define SDL_IN_BYTECAP(x) +#define SDL_INOUT_Z_CAP(x) +#define SDL_OUT_Z_CAP(x) +#define SDL_OUT_CAP(x) +#define SDL_OUT_BYTECAP(x) +#define SDL_OUT_Z_BYTECAP(x) +#define SDL_PRINTF_FORMAT_STRING +#define SDL_SCANF_FORMAT_STRING +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) +#else +#if defined(_MSC_VER) && (_MSC_VER >= 1600) /* VS 2010 and above */ +#include + +#define SDL_IN_BYTECAP(x) _In_bytecount_(x) +#define SDL_INOUT_Z_CAP(x) _Inout_z_cap_(x) +#define SDL_OUT_Z_CAP(x) _Out_z_cap_(x) +#define SDL_OUT_CAP(x) _Out_cap_(x) +#define SDL_OUT_BYTECAP(x) _Out_bytecap_(x) +#define SDL_OUT_Z_BYTECAP(x) _Out_z_bytecap_(x) + +#define SDL_PRINTF_FORMAT_STRING _Printf_format_string_ +#define SDL_SCANF_FORMAT_STRING _Scanf_format_string_impl_ +#else +#define SDL_IN_BYTECAP(x) +#define SDL_INOUT_Z_CAP(x) +#define SDL_OUT_Z_CAP(x) +#define SDL_OUT_CAP(x) +#define SDL_OUT_BYTECAP(x) +#define SDL_OUT_Z_BYTECAP(x) +#define SDL_PRINTF_FORMAT_STRING +#define SDL_SCANF_FORMAT_STRING +#endif +#if defined(__GNUC__) || defined(__clang__) +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __printf__, fmtargnumber, fmtargnumber+1 ))) +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __printf__, fmtargnumber, 0 ))) +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) __attribute__ (( format( __scanf__, fmtargnumber, fmtargnumber+1 ))) +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) __attribute__(( format( __scanf__, fmtargnumber, 0 ))) +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, fmtargnumber+1 ))) */ +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) /* __attribute__ (( format( __wprintf__, fmtargnumber, 0 ))) */ +#else +#define SDL_PRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_PRINTF_VARARG_FUNCV( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNC( fmtargnumber ) +#define SDL_SCANF_VARARG_FUNCV( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNC( fmtargnumber ) +#define SDL_WPRINTF_VARARG_FUNCV( fmtargnumber ) +#endif +#endif /* SDL_DISABLE_ANALYZE_MACROS */ + +/** \cond */ +#ifndef DOXYGEN_SHOULD_IGNORE_THIS +SDL_COMPILE_TIME_ASSERT(bool_size, sizeof(bool) == 1); +SDL_COMPILE_TIME_ASSERT(uint8_size, sizeof(Uint8) == 1); +SDL_COMPILE_TIME_ASSERT(sint8_size, sizeof(Sint8) == 1); +SDL_COMPILE_TIME_ASSERT(uint16_size, sizeof(Uint16) == 2); +SDL_COMPILE_TIME_ASSERT(sint16_size, sizeof(Sint16) == 2); +SDL_COMPILE_TIME_ASSERT(uint32_size, sizeof(Uint32) == 4); +SDL_COMPILE_TIME_ASSERT(sint32_size, sizeof(Sint32) == 4); +SDL_COMPILE_TIME_ASSERT(uint64_size, sizeof(Uint64) == 8); +SDL_COMPILE_TIME_ASSERT(sint64_size, sizeof(Sint64) == 8); +#ifndef SDL_NOLONGLONG +SDL_COMPILE_TIME_ASSERT(uint64_longlong, sizeof(Uint64) <= sizeof(unsigned long long)); +SDL_COMPILE_TIME_ASSERT(size_t_longlong, sizeof(size_t) <= sizeof(unsigned long long)); +#endif +typedef struct SDL_alignment_test +{ + Uint8 a; + void *b; +} SDL_alignment_test; +SDL_COMPILE_TIME_ASSERT(struct_alignment, sizeof(SDL_alignment_test) == (2 * sizeof(void *))); +SDL_COMPILE_TIME_ASSERT(two_s_complement, (int)~(int)0 == (int)(-1)); +#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ +/** \endcond */ + +/* Check to make sure enums are the size of ints, for structure packing. + For both Watcom C/C++ and Borland C/C++ the compiler option that makes + enums having the size of an int must be enabled. + This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11). +*/ + +/** \cond */ +#ifndef DOXYGEN_SHOULD_IGNORE_THIS +#if !defined(SDL_PLATFORM_VITA) && !defined(SDL_PLATFORM_3DS) +/* TODO: include/SDL_stdinc.h:390: error: size of array 'SDL_dummy_enum' is negative */ +typedef enum SDL_DUMMY_ENUM +{ + DUMMY_ENUM_VALUE +} SDL_DUMMY_ENUM; + +SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int)); +#endif +#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ +/** \endcond */ + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A macro to initialize an SDL interface. + * + * This macro will initialize an SDL interface structure and should be called + * before you fill out the fields with your implementation. + * + * You can use it like this: + * + * ```c + * SDL_IOStreamInterface iface; + * + * SDL_INIT_INTERFACE(&iface); + * + * // Fill in the interface function pointers with your implementation + * iface.seek = ... + * + * stream = SDL_OpenIO(&iface, NULL); + * ``` + * + * If you are using designated initializers, you can use the size of the + * interface as the version, e.g. + * + * ```c + * SDL_IOStreamInterface iface = { + * .version = sizeof(iface), + * .seek = ... + * }; + * stream = SDL_OpenIO(&iface, NULL); + * ``` + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_IOStreamInterface + * \sa SDL_StorageInterface + * \sa SDL_VirtualJoystickDesc + */ +#define SDL_INIT_INTERFACE(iface) \ + do { \ + SDL_zerop(iface); \ + (iface)->version = sizeof(*(iface)); \ + } while (0) + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * Allocate memory on the stack (maybe). + * + * If SDL knows how to access alloca() on the current platform, it will use it + * to stack-allocate memory here. If it doesn't, it will use SDL_malloc() to + * heap-allocate memory. + * + * Since this might not be stack memory at all, it's important that you check + * the returned pointer for NULL, and that you call SDL_stack_free on the + * memory when done with it. Since this might be stack memory, it's important + * that you don't allocate large amounts of it, or allocate in a loop without + * returning from the function, so the stack doesn't overflow. + * + * \param type the datatype of the memory to allocate. + * \param count the number of `type` objects to allocate. + * \returns newly-allocated memory, or NULL on failure. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_stack_free + */ +#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count)) + +/** + * Free memory previously allocated with SDL_stack_alloc. + * + * If SDL used alloca() to allocate this memory, this macro does nothing and + * the allocated memory will be automatically released when the function that + * called SDL_stack_alloc() returns. If SDL used SDL_malloc(), it will + * SDL_free the memory immediately. + * + * \param data the pointer, from SDL_stack_alloc(), to free. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_stack_alloc + */ +#define SDL_stack_free(data) +#elif !defined(SDL_DISABLE_ALLOCA) +#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count)) +#define SDL_stack_free(data) +#else +#define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count)) +#define SDL_stack_free(data) SDL_free(data) +#endif + +/** + * Allocate uninitialized memory. + * + * The allocated memory returned by this function must be freed with + * SDL_free(). + * + * If `size` is 0, it will be set to 1. + * + * If the allocation is successful, the returned pointer is guaranteed to be + * aligned to either the *fundamental alignment* (`alignof(max_align_t)` in + * C11 and later) or `2 * sizeof(void *)`, whichever is smaller. Use + * SDL_aligned_alloc() if you need to allocate memory aligned to an alignment + * greater than this guarantee. + * + * \param size the size to allocate. + * \returns a pointer to the allocated memory, or NULL if allocation failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_calloc + * \sa SDL_realloc + * \sa SDL_aligned_alloc + */ +extern SDL_DECLSPEC SDL_MALLOC void * SDLCALL SDL_malloc(size_t size); + +/** + * Allocate a zero-initialized array. + * + * The memory returned by this function must be freed with SDL_free(). + * + * If either of `nmemb` or `size` is 0, they will both be set to 1. + * + * If the allocation is successful, the returned pointer is guaranteed to be + * aligned to either the *fundamental alignment* (`alignof(max_align_t)` in + * C11 and later) or `2 * sizeof(void *)`, whichever is smaller. + * + * \param nmemb the number of elements in the array. + * \param size the size of each element of the array. + * \returns a pointer to the allocated array, or NULL if allocation failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_malloc + * \sa SDL_realloc + */ +extern SDL_DECLSPEC SDL_MALLOC SDL_ALLOC_SIZE2(1, 2) void * SDLCALL SDL_calloc(size_t nmemb, size_t size); + +/** + * Change the size of allocated memory. + * + * The memory returned by this function must be freed with SDL_free(). + * + * If `size` is 0, it will be set to 1. Note that this is unlike some other C + * runtime `realloc` implementations, which may treat `realloc(mem, 0)` the + * same way as `free(mem)`. + * + * If `mem` is NULL, the behavior of this function is equivalent to + * SDL_malloc(). Otherwise, the function can have one of three possible + * outcomes: + * + * - If it returns the same pointer as `mem`, it means that `mem` was resized + * in place without freeing. + * - If it returns a different non-NULL pointer, it means that `mem` was freed + * and cannot be dereferenced anymore. + * - If it returns NULL (indicating failure), then `mem` will remain valid and + * must still be freed with SDL_free(). + * + * If the allocation is successfully resized, the returned pointer is + * guaranteed to be aligned to either the *fundamental alignment* + * (`alignof(max_align_t)` in C11 and later) or `2 * sizeof(void *)`, + * whichever is smaller. + * + * \param mem a pointer to allocated memory to reallocate, or NULL. + * \param size the new size of the memory. + * \returns a pointer to the newly allocated memory, or NULL if allocation + * failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_malloc + * \sa SDL_calloc + */ +extern SDL_DECLSPEC SDL_ALLOC_SIZE(2) void * SDLCALL SDL_realloc(void *mem, size_t size); + +/** + * Free allocated memory. + * + * The pointer is no longer valid after this call and cannot be dereferenced + * anymore. + * + * If `mem` is NULL, this function does nothing. + * + * \param mem a pointer to allocated memory, or NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_malloc + * \sa SDL_calloc + * \sa SDL_realloc + */ +extern SDL_DECLSPEC void SDLCALL SDL_free(void *mem); + +/** + * A callback used to implement SDL_malloc(). + * + * SDL will always ensure that the passed `size` is greater than 0. + * + * \param size the size to allocate. + * \returns a pointer to the allocated memory, or NULL if allocation failed. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_malloc + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void *(SDLCALL *SDL_malloc_func)(size_t size); + +/** + * A callback used to implement SDL_calloc(). + * + * SDL will always ensure that the passed `nmemb` and `size` are both greater + * than 0. + * + * \param nmemb the number of elements in the array. + * \param size the size of each element of the array. + * \returns a pointer to the allocated array, or NULL if allocation failed. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_calloc + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void *(SDLCALL *SDL_calloc_func)(size_t nmemb, size_t size); + +/** + * A callback used to implement SDL_realloc(). + * + * SDL will always ensure that the passed `size` is greater than 0. + * + * \param mem a pointer to allocated memory to reallocate, or NULL. + * \param size the new size of the memory. + * \returns a pointer to the newly allocated memory, or NULL if allocation + * failed. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_realloc + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void *(SDLCALL *SDL_realloc_func)(void *mem, size_t size); + +/** + * A callback used to implement SDL_free(). + * + * SDL will always ensure that the passed `mem` is a non-NULL pointer. + * + * \param mem a pointer to allocated memory. + * + * \threadsafety It should be safe to call this callback from any thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_free + * \sa SDL_GetOriginalMemoryFunctions + * \sa SDL_GetMemoryFunctions + * \sa SDL_SetMemoryFunctions + */ +typedef void (SDLCALL *SDL_free_func)(void *mem); + +/** + * Get the original set of SDL memory functions. + * + * This is what SDL_malloc and friends will use by default, if there has been + * no call to SDL_SetMemoryFunctions. This is not necessarily using the C + * runtime's `malloc` functions behind the scenes! Different platforms and + * build configurations might do any number of unexpected things. + * + * \param malloc_func filled with malloc function. + * \param calloc_func filled with calloc function. + * \param realloc_func filled with realloc function. + * \param free_func filled with free function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetOriginalMemoryFunctions(SDL_malloc_func *malloc_func, + SDL_calloc_func *calloc_func, + SDL_realloc_func *realloc_func, + SDL_free_func *free_func); + +/** + * Get the current set of SDL memory functions. + * + * \param malloc_func filled with malloc function. + * \param calloc_func filled with calloc function. + * \param realloc_func filled with realloc function. + * \param free_func filled with free function. + * + * \threadsafety This does not hold a lock, so do not call this in the + * unlikely event of a background thread calling + * SDL_SetMemoryFunctions simultaneously. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetMemoryFunctions + * \sa SDL_GetOriginalMemoryFunctions + */ +extern SDL_DECLSPEC void SDLCALL SDL_GetMemoryFunctions(SDL_malloc_func *malloc_func, + SDL_calloc_func *calloc_func, + SDL_realloc_func *realloc_func, + SDL_free_func *free_func); + +/** + * Replace SDL's memory allocation functions with a custom set. + * + * It is not safe to call this function once any allocations have been made, + * as future calls to SDL_free will use the new allocator, even if they came + * from an SDL_malloc made with the old one! + * + * If used, usually this needs to be the first call made into the SDL library, + * if not the very first thing done at program startup time. + * + * \param malloc_func custom malloc function. + * \param calloc_func custom calloc function. + * \param realloc_func custom realloc function. + * \param free_func custom free function. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread, but one + * should not replace the memory functions once any allocations + * are made! + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetMemoryFunctions + * \sa SDL_GetOriginalMemoryFunctions + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetMemoryFunctions(SDL_malloc_func malloc_func, + SDL_calloc_func calloc_func, + SDL_realloc_func realloc_func, + SDL_free_func free_func); + +/** + * Allocate memory aligned to a specific alignment. + * + * The memory returned by this function must be freed with SDL_aligned_free(), + * _not_ SDL_free(). + * + * If `alignment` is less than the size of `void *`, it will be increased to + * match that. + * + * The returned memory address will be a multiple of the alignment value, and + * the size of the memory allocated will be a multiple of the alignment value. + * + * \param alignment the alignment of the memory. + * \param size the size to allocate. + * \returns a pointer to the aligned memory, or NULL if allocation failed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_aligned_free + */ +extern SDL_DECLSPEC SDL_MALLOC void * SDLCALL SDL_aligned_alloc(size_t alignment, size_t size); + +/** + * Free memory allocated by SDL_aligned_alloc(). + * + * The pointer is no longer valid after this call and cannot be dereferenced + * anymore. + * + * If `mem` is NULL, this function does nothing. + * + * \param mem a pointer previously returned by SDL_aligned_alloc(), or NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_aligned_alloc + */ +extern SDL_DECLSPEC void SDLCALL SDL_aligned_free(void *mem); + +/** + * Get the number of outstanding (unfreed) allocations. + * + * \returns the number of allocations or -1 if allocation counting is + * disabled. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumAllocations(void); + +/** + * A thread-safe set of environment variables + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + * \sa SDL_DestroyEnvironment + */ +typedef struct SDL_Environment SDL_Environment; + +/** + * Get the process environment. + * + * This is initialized at application start and is not affected by setenv() + * and unsetenv() calls after that point. Use SDL_SetEnvironmentVariable() and + * SDL_UnsetEnvironmentVariable() if you want to modify this environment, or + * SDL_setenv_unsafe() or SDL_unsetenv_unsafe() if you want changes to persist + * in the C runtime environment after SDL_Quit(). + * + * \returns a pointer to the environment for the process or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC SDL_Environment * SDLCALL SDL_GetEnvironment(void); + +/** + * Create a set of environment variables + * + * \param populated true to initialize it from the C runtime environment, + * false to create an empty environment. + * \returns a pointer to the new environment or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety If `populated` is false, it is safe to call this function + * from any thread, otherwise it is safe if no other threads are + * calling setenv() or unsetenv() + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + * \sa SDL_DestroyEnvironment + */ +extern SDL_DECLSPEC SDL_Environment * SDLCALL SDL_CreateEnvironment(bool populated); + +/** + * Get the value of a variable in the environment. + * + * \param env the environment to query. + * \param name the name of the variable to get. + * \returns a pointer to the value of the variable or NULL if it can't be + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetEnvironmentVariable(SDL_Environment *env, const char *name); + +/** + * Get all variables in the environment. + * + * \param env the environment to query. + * \returns a NULL terminated array of pointers to environment variables in + * the form "variable=value" or NULL on failure; call SDL_GetError() + * for more information. This is a single allocation that should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GetEnvironmentVariables(SDL_Environment *env); + +/** + * Set the value of a variable in the environment. + * + * \param env the environment to modify. + * \param name the name of the variable to set. + * \param value the value of the variable to set. + * \param overwrite true to overwrite the variable if it exists, false to + * return success without setting the variable if it already + * exists. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetEnvironmentVariable(SDL_Environment *env, const char *name, const char *value, bool overwrite); + +/** + * Clear a variable from the environment. + * + * \param env the environment to modify. + * \param name the name of the variable to unset. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetEnvironment + * \sa SDL_CreateEnvironment + * \sa SDL_GetEnvironmentVariable + * \sa SDL_GetEnvironmentVariables + * \sa SDL_SetEnvironmentVariable + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UnsetEnvironmentVariable(SDL_Environment *env, const char *name); + +/** + * Destroy a set of environment variables. + * + * \param env the environment to destroy. + * + * \threadsafety It is safe to call this function from any thread, as long as + * the environment is no longer in use. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateEnvironment + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyEnvironment(SDL_Environment *env); + +/** + * Get the value of a variable in the environment. + * + * This function uses SDL's cached copy of the environment and is thread-safe. + * + * \param name the name of the variable to get. + * \returns a pointer to the value of the variable or NULL if it can't be + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_getenv(const char *name); + +/** + * Get the value of a variable in the environment. + * + * This function bypasses SDL's cached copy of the environment and is not + * thread-safe. + * + * \param name the name of the variable to get. + * \returns a pointer to the value of the variable or NULL if it can't be + * found. + * + * \threadsafety This function is not thread safe, consider using SDL_getenv() + * instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_getenv + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_getenv_unsafe(const char *name); + +/** + * Set the value of a variable in the environment. + * + * \param name the name of the variable to set. + * \param value the value of the variable to set. + * \param overwrite 1 to overwrite the variable if it exists, 0 to return + * success without setting the variable if it already exists. + * \returns 0 on success, -1 on error. + * + * \threadsafety This function is not thread safe, consider using + * SDL_SetEnvironmentVariable() instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetEnvironmentVariable + */ +extern SDL_DECLSPEC int SDLCALL SDL_setenv_unsafe(const char *name, const char *value, int overwrite); + +/** + * Clear a variable from the environment. + * + * \param name the name of the variable to unset. + * \returns 0 on success, -1 on error. + * + * \threadsafety This function is not thread safe, consider using + * SDL_UnsetEnvironmentVariable() instead. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_UnsetEnvironmentVariable + */ +extern SDL_DECLSPEC int SDLCALL SDL_unsetenv_unsafe(const char *name); + +/** + * A callback used with SDL sorting and binary search functions. + * + * \param a a pointer to the first element being compared. + * \param b a pointer to the second element being compared. + * \returns -1 if `a` should be sorted before `b`, 1 if `b` should be sorted + * before `a`, 0 if they are equal. If two elements are equal, their + * order in the sorted array is undefined. + * + * \since This callback is available since SDL 3.2.0. + * + * \sa SDL_bsearch + * \sa SDL_qsort + */ +typedef int (SDLCALL *SDL_CompareCallback)(const void *a, const void *b); + +/** + * Sort an array. + * + * For example: + * + * ```c + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *a, const void *b) + * { + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->n < B->n) { + * return -1; + * } else if (B->n < A->n) { + * return 1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 3, "third" }, { 1, "first" }, { 2, "second" } + * }; + * + * SDL_qsort(values, SDL_arraysize(values), sizeof(values[0]), compare); + * ``` + * + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch + * \sa SDL_qsort_r + */ +extern SDL_DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size, SDL_CompareCallback compare); + +/** + * Perform a binary search on a previously sorted array. + * + * For example: + * + * ```c + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *a, const void *b) + * { + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->n < B->n) { + * return -1; + * } else if (B->n < A->n) { + * return 1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 1, "first" }, { 2, "second" }, { 3, "third" } + * }; + * data key = { 2, NULL }; + * + * data *result = SDL_bsearch(&key, values, SDL_arraysize(values), sizeof(values[0]), compare); + * ``` + * + * \param key a pointer to a key equal to the element being searched for. + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * \returns a pointer to the matching element in the array, or NULL if not + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch_r + * \sa SDL_qsort + */ +extern SDL_DECLSPEC void * SDLCALL SDL_bsearch(const void *key, const void *base, size_t nmemb, size_t size, SDL_CompareCallback compare); + +/** + * A callback used with SDL sorting and binary search functions. + * + * \param userdata the `userdata` pointer passed to the sort function. + * \param a a pointer to the first element being compared. + * \param b a pointer to the second element being compared. + * \returns -1 if `a` should be sorted before `b`, 1 if `b` should be sorted + * before `a`, 0 if they are equal. If two elements are equal, their + * order in the sorted array is undefined. + * + * \since This callback is available since SDL 3.2.0. + * + * \sa SDL_qsort_r + * \sa SDL_bsearch_r + */ +typedef int (SDLCALL *SDL_CompareCallback_r)(void *userdata, const void *a, const void *b); + +/** + * Sort an array, passing a userdata pointer to the compare function. + * + * For example: + * + * ```c + * typedef enum { + * sort_increasing, + * sort_decreasing, + * } sort_method; + * + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *userdata, const void *a, const void *b) + * { + * sort_method method = (sort_method)(uintptr_t)userdata; + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->key < B->key) { + * return (method == sort_increasing) ? -1 : 1; + * } else if (B->key < A->key) { + * return (method == sort_increasing) ? 1 : -1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 3, "third" }, { 1, "first" }, { 2, "second" } + * }; + * + * SDL_qsort_r(values, SDL_arraysize(values), sizeof(values[0]), compare, (const void *)(uintptr_t)sort_increasing); + * ``` + * + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * \param userdata a pointer to pass to the compare function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch_r + * \sa SDL_qsort + */ +extern SDL_DECLSPEC void SDLCALL SDL_qsort_r(void *base, size_t nmemb, size_t size, SDL_CompareCallback_r compare, void *userdata); + +/** + * Perform a binary search on a previously sorted array, passing a userdata + * pointer to the compare function. + * + * For example: + * + * ```c + * typedef enum { + * sort_increasing, + * sort_decreasing, + * } sort_method; + * + * typedef struct { + * int key; + * const char *string; + * } data; + * + * int SDLCALL compare(const void *userdata, const void *a, const void *b) + * { + * sort_method method = (sort_method)(uintptr_t)userdata; + * const data *A = (const data *)a; + * const data *B = (const data *)b; + * + * if (A->key < B->key) { + * return (method == sort_increasing) ? -1 : 1; + * } else if (B->key < A->key) { + * return (method == sort_increasing) ? 1 : -1; + * } else { + * return 0; + * } + * } + * + * data values[] = { + * { 1, "first" }, { 2, "second" }, { 3, "third" } + * }; + * data key = { 2, NULL }; + * + * data *result = SDL_bsearch_r(&key, values, SDL_arraysize(values), sizeof(values[0]), compare, (const void *)(uintptr_t)sort_increasing); + * ``` + * + * \param key a pointer to a key equal to the element being searched for. + * \param base a pointer to the start of the array. + * \param nmemb the number of elements in the array. + * \param size the size of the elements in the array. + * \param compare a function used to compare elements in the array. + * \param userdata a pointer to pass to the compare function. + * \returns a pointer to the matching element in the array, or NULL if not + * found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_bsearch + * \sa SDL_qsort_r + */ +extern SDL_DECLSPEC void * SDLCALL SDL_bsearch_r(const void *key, const void *base, size_t nmemb, size_t size, SDL_CompareCallback_r compare, void *userdata); + +/** + * Compute the absolute value of `x`. + * + * \param x an integer value. + * \returns the absolute value of x. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_abs(int x); + +/** + * Return the lesser of two values. + * + * This is a helper macro that might be more clear than writing out the + * comparisons directly, and works with any type that can be compared with the + * `<` operator. However, it double-evaluates both its parameters, so do not + * use expressions with side-effects here. + * + * \param x the first value to compare. + * \param y the second value to compare. + * \returns the lesser of `x` and `y`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_min(x, y) (((x) < (y)) ? (x) : (y)) + +/** + * Return the greater of two values. + * + * This is a helper macro that might be more clear than writing out the + * comparisons directly, and works with any type that can be compared with the + * `>` operator. However, it double-evaluates both its parameters, so do not + * use expressions with side-effects here. + * + * \param x the first value to compare. + * \param y the second value to compare. + * \returns the lesser of `x` and `y`. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_max(x, y) (((x) > (y)) ? (x) : (y)) + +/** + * Return a value clamped to a range. + * + * If `x` is outside the range a values between `a` and `b`, the returned + * value will be `a` or `b` as appropriate. Otherwise, `x` is returned. + * + * This macro will produce incorrect results if `b` is less than `a`. + * + * This is a helper macro that might be more clear than writing out the + * comparisons directly, and works with any type that can be compared with the + * `<` and `>` operators. However, it double-evaluates all its parameters, so + * do not use expressions with side-effects here. + * + * \param x the value to compare. + * \param a the low end value. + * \param b the high end value. + * \returns x, clamped between a and b. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_clamp(x, a, b) (((x) < (a)) ? (a) : (((x) > (b)) ? (b) : (x))) + +/** + * Query if a character is alphabetic (a letter). + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * for English 'a-z' and 'A-Z' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isalpha(int x); + +/** + * Query if a character is alphabetic (a letter) or a number. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * for English 'a-z', 'A-Z', and '0-9' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isalnum(int x); + +/** + * Report if a character is blank (a space or tab). + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 0x20 (space) or 0x9 (tab) as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isblank(int x); + +/** + * Report if a character is a control character. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 0 through 0x1F, and 0x7F, as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_iscntrl(int x); + +/** + * Report if a character is a numeric digit. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * '0' (0x30) through '9' (0x39), as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isdigit(int x); + +/** + * Report if a character is a hexadecimal digit. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 'A' through 'F', 'a' through 'f', and '0' through '9', as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isxdigit(int x); + +/** + * Report if a character is a punctuation mark. + * + * **WARNING**: Regardless of system locale, this is equivalent to + * `((SDL_isgraph(x)) && (!SDL_isalnum(x)))`. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isgraph + * \sa SDL_isalnum + */ +extern SDL_DECLSPEC int SDLCALL SDL_ispunct(int x); + +/** + * Report if a character is whitespace. + * + * **WARNING**: Regardless of system locale, this will only treat the + * following ASCII values as true: + * + * - space (0x20) + * - tab (0x09) + * - newline (0x0A) + * - vertical tab (0x0B) + * - form feed (0x0C) + * - return (0x0D) + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isspace(int x); + +/** + * Report if a character is upper case. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 'A' through 'Z' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isupper(int x); + +/** + * Report if a character is lower case. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * 'a' through 'z' as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_islower(int x); + +/** + * Report if a character is "printable". + * + * Be advised that "printable" has a definition that goes back to text + * terminals from the dawn of computing, making this a sort of special case + * function that is not suitable for Unicode (or most any) text management. + * + * **WARNING**: Regardless of system locale, this will only treat ASCII values + * ' ' (0x20) through '~' (0x7E) as true. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_isprint(int x); + +/** + * Report if a character is any "printable" except space. + * + * Be advised that "printable" has a definition that goes back to text + * terminals from the dawn of computing, making this a sort of special case + * function that is not suitable for Unicode (or most any) text management. + * + * **WARNING**: Regardless of system locale, this is equivalent to + * `(SDL_isprint(x)) && ((x) != ' ')`. + * + * \param x character value to check. + * \returns non-zero if x falls within the character class, zero otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isprint + */ +extern SDL_DECLSPEC int SDLCALL SDL_isgraph(int x); + +/** + * Convert low-ASCII English letters to uppercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'a' through 'z' to uppercase. + * + * This function returns the uppercase equivalent of `x`. If a character + * cannot be converted, or is already uppercase, this function returns `x`. + * + * \param x character value to check. + * \returns capitalized version of x, or x if no conversion available. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_toupper(int x); + +/** + * Convert low-ASCII English letters to lowercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'A' through 'Z' to lowercase. + * + * This function returns the lowercase equivalent of `x`. If a character + * cannot be converted, or is already lowercase, this function returns `x`. + * + * \param x character value to check. + * \returns lowercase version of x, or x if no conversion available. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_tolower(int x); + +/** + * Calculate a CRC-16 value. + * + * https://en.wikipedia.org/wiki/Cyclic_redundancy_check + * + * This function can be called multiple times, to stream data to be + * checksummed in blocks. Each call must provide the previous CRC-16 return + * value to be updated with the next block. The first call to this function + * for a set of blocks should pass in a zero CRC value. + * + * \param crc the current checksum for this data set, or 0 for a new data set. + * \param data a new block of data to add to the checksum. + * \param len the size, in bytes, of the new block of data. + * \returns a CRC-16 checksum value of all blocks in the data set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint16 SDLCALL SDL_crc16(Uint16 crc, const void *data, size_t len); + +/** + * Calculate a CRC-32 value. + * + * https://en.wikipedia.org/wiki/Cyclic_redundancy_check + * + * This function can be called multiple times, to stream data to be + * checksummed in blocks. Each call must provide the previous CRC-32 return + * value to be updated with the next block. The first call to this function + * for a set of blocks should pass in a zero CRC value. + * + * \param crc the current checksum for this data set, or 0 for a new data set. + * \param data a new block of data to add to the checksum. + * \param len the size, in bytes, of the new block of data. + * \returns a CRC-32 checksum value of all blocks in the data set. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_crc32(Uint32 crc, const void *data, size_t len); + +/** + * Calculate a 32-bit MurmurHash3 value for a block of data. + * + * https://en.wikipedia.org/wiki/MurmurHash + * + * A seed may be specified, which changes the final results consistently, but + * this does not work like SDL_crc16 and SDL_crc32: you can't feed a previous + * result from this function back into itself as the next seed value to + * calculate a hash in chunks; it won't produce the same hash as it would if + * the same data was provided in a single call. + * + * If you aren't sure what to provide for a seed, zero is fine. Murmur3 is not + * cryptographically secure, so it shouldn't be used for hashing top-secret + * data. + * + * \param data the data to be hashed. + * \param len the size of data, in bytes. + * \param seed a value that alters the final hash value. + * \returns a Murmur3 32-bit hash value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_murmur3_32(const void *data, size_t len, Uint32 seed); + +/** + * Copy non-overlapping memory. + * + * The memory regions must not overlap. If they do, use SDL_memmove() instead. + * + * \param dst The destination memory region. Must not be NULL, and must not + * overlap with `src`. + * \param src The source memory region. Must not be NULL, and must not overlap + * with `dst`. + * \param len The length in bytes of both `dst` and `src`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_memmove + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memcpy(SDL_OUT_BYTECAP(len) void *dst, SDL_IN_BYTECAP(len) const void *src, size_t len); + +/* Take advantage of compiler optimizations for memcpy */ +#ifndef SDL_SLOW_MEMCPY +#ifdef SDL_memcpy +#undef SDL_memcpy +#endif +#define SDL_memcpy memcpy +#endif + + +/** + * A macro to copy memory between objects, with basic type checking. + * + * SDL_memcpy and SDL_memmove do not care where you copy memory to and from, + * which can lead to bugs. This macro aims to avoid most of those bugs by + * making sure that the source and destination are both pointers to objects + * that are the same size. It does not check that the objects are the same + * _type_, just that the copy will not overflow either object. + * + * The size check happens at compile time, and the compiler will throw an + * error if the objects are different sizes. + * + * Generally this is intended to copy a single object, not an array. + * + * This macro looks like it double-evaluates its parameters, but the extras + * them are in `sizeof` sections, which generate no code nor side-effects. + * + * \param dst a pointer to the destination object. Must not be NULL. + * \param src a pointer to the source object. Must not be NULL. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +#define SDL_copyp(dst, src) \ + { SDL_COMPILE_TIME_ASSERT(SDL_copyp, sizeof (*(dst)) == sizeof (*(src))); } \ + SDL_memcpy((dst), (src), sizeof(*(src))) + +/** + * Copy memory ranges that might overlap. + * + * It is okay for the memory regions to overlap. If you are confident that the + * regions never overlap, using SDL_memcpy() may improve performance. + * + * \param dst The destination memory region. Must not be NULL. + * \param src The source memory region. Must not be NULL. + * \param len The length in bytes of both `dst` and `src`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_memcpy + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memmove(SDL_OUT_BYTECAP(len) void *dst, SDL_IN_BYTECAP(len) const void *src, size_t len); + +/* Take advantage of compiler optimizations for memmove */ +#ifndef SDL_SLOW_MEMMOVE +#ifdef SDL_memmove +#undef SDL_memmove +#endif +#define SDL_memmove memmove +#endif + +/** + * Initialize all bytes of buffer of memory to a specific value. + * + * This function will set `len` bytes, pointed to by `dst`, to the value + * specified in `c`. + * + * Despite `c` being an `int` instead of a `char`, this only operates on + * bytes; `c` must be a value between 0 and 255, inclusive. + * + * \param dst the destination memory region. Must not be NULL. + * \param c the byte value to set. + * \param len the length, in bytes, to set in `dst`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memset(SDL_OUT_BYTECAP(len) void *dst, int c, size_t len); + +/** + * Initialize all 32-bit words of buffer of memory to a specific value. + * + * This function will set a buffer of `dwords` Uint32 values, pointed to by + * `dst`, to the value specified in `val`. + * + * Unlike SDL_memset, this sets 32-bit values, not bytes, so it's not limited + * to a range of 0-255. + * + * \param dst the destination memory region. Must not be NULL. + * \param val the Uint32 value to set. + * \param dwords the number of Uint32 values to set in `dst`. + * \returns `dst`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_memset4(void *dst, Uint32 val, size_t dwords); + +/* Take advantage of compiler optimizations for memset */ +#ifndef SDL_SLOW_MEMSET +#ifdef SDL_memset +#undef SDL_memset +#endif +#define SDL_memset memset +#endif + +/** + * Clear an object's memory to zero. + * + * This is wrapper over SDL_memset that handles calculating the object size, + * so there's no chance of copy/paste errors, and the code is cleaner. + * + * This requires an object, not a pointer to an object, nor an array. + * + * \param x the object to clear. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_zerop + * \sa SDL_zeroa + */ +#define SDL_zero(x) SDL_memset(&(x), 0, sizeof((x))) + +/** + * Clear an object's memory to zero, using a pointer. + * + * This is wrapper over SDL_memset that handles calculating the object size, + * so there's no chance of copy/paste errors, and the code is cleaner. + * + * This requires a pointer to an object, not an object itself, nor an array. + * + * \param x a pointer to the object to clear. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_zero + * \sa SDL_zeroa + */ +#define SDL_zerop(x) SDL_memset((x), 0, sizeof(*(x))) + +/** + * Clear an array's memory to zero. + * + * This is wrapper over SDL_memset that handles calculating the array size, so + * there's no chance of copy/paste errors, and the code is cleaner. + * + * This requires an array, not an object, nor a pointer to an object. + * + * \param x an array to clear. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_zero + * \sa SDL_zeroa + */ +#define SDL_zeroa(x) SDL_memset((x), 0, sizeof((x))) + + +/** + * Compare two buffers of memory. + * + * \param s1 the first buffer to compare. NULL is not permitted! + * \param s2 the second buffer to compare. NULL is not permitted! + * \param len the number of bytes to compare between the buffers. + * \returns less than zero if s1 is "less than" s2, greater than zero if s1 is + * "greater than" s2, and zero if the buffers match exactly for `len` + * bytes. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_memcmp(const void *s1, const void *s2, size_t len); + +/** + * This works exactly like wcslen() but doesn't require access to a C runtime. + * + * Counts the number of wchar_t values in `wstr`, excluding the null + * terminator. + * + * Like SDL_strlen only counts bytes and not codepoints in a UTF-8 string, + * this counts wchar_t values in a string, even if the string's encoding is of + * variable width, like UTF-16. + * + * Also be aware that wchar_t is different sizes on different platforms (4 + * bytes on Linux, 2 on Windows, etc). + * + * \param wstr The null-terminated wide string to read. Must not be NULL. + * \returns the length (in wchar_t values, excluding the null terminator) of + * `wstr`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcsnlen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t *wstr); + +/** + * This works exactly like wcsnlen() but doesn't require access to a C + * runtime. + * + * Counts up to a maximum of `maxlen` wchar_t values in `wstr`, excluding the + * null terminator. + * + * Like SDL_strnlen only counts bytes and not codepoints in a UTF-8 string, + * this counts wchar_t values in a string, even if the string's encoding is of + * variable width, like UTF-16. + * + * Also be aware that wchar_t is different sizes on different platforms (4 + * bytes on Linux, 2 on Windows, etc). + * + * Also, `maxlen` is a count of wide characters, not bytes! + * + * \param wstr The null-terminated wide string to read. Must not be NULL. + * \param maxlen The maximum amount of wide characters to count. + * \returns the length (in wide characters, excluding the null terminator) of + * `wstr` but never more than `maxlen`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcslen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcsnlen(const wchar_t *wstr, size_t maxlen); + +/** + * Copy a wide string. + * + * This function copies `maxlen` - 1 wide characters from `src` to `dst`, then + * appends a null terminator. + * + * `src` and `dst` must not overlap. + * + * If `maxlen` is 0, no wide characters are copied and no null terminator is + * written. + * + * \param dst The destination buffer. Must not be NULL, and must not overlap + * with `src`. + * \param src The null-terminated wide string to copy. Must not be NULL, and + * must not overlap with `dst`. + * \param maxlen The length (in wide characters) of the destination buffer. + * \returns the length (in wide characters, excluding the null terminator) of + * `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcslcat + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcslcpy(SDL_OUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src, size_t maxlen); + +/** + * Concatenate wide strings. + * + * This function appends up to `maxlen` - SDL_wcslen(dst) - 1 wide characters + * from `src` to the end of the wide string in `dst`, then appends a null + * terminator. + * + * `src` and `dst` must not overlap. + * + * If `maxlen` - SDL_wcslen(dst) - 1 is less than or equal to 0, then `dst` is + * unmodified. + * + * \param dst The destination buffer already containing the first + * null-terminated wide string. Must not be NULL and must not + * overlap with `src`. + * \param src The second null-terminated wide string. Must not be NULL, and + * must not overlap with `dst`. + * \param maxlen The length (in wide characters) of the destination buffer. + * \returns the length (in wide characters, excluding the null terminator) of + * the string in `dst` plus the length of `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_wcslcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_wcslcat(SDL_INOUT_Z_CAP(maxlen) wchar_t *dst, const wchar_t *src, size_t maxlen); + +/** + * Allocate a copy of a wide string. + * + * This allocates enough space for a null-terminated copy of `wstr`, using + * SDL_malloc, and then makes a copy of the string into this space. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param wstr the string to copy. + * \returns a pointer to the newly-allocated wide string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC wchar_t * SDLCALL SDL_wcsdup(const wchar_t *wstr); + +/** + * Search a wide string for the first instance of a specific substring. + * + * The search ends once it finds the requested substring, or a null terminator + * byte to end the string. + * + * Note that this looks for strings of _wide characters_, not _codepoints_, so + * it's legal to search for malformed and incomplete UTF-16 sequences. + * + * \param haystack the wide string to search. Must not be NULL. + * \param needle the wide string to search for. Must not be NULL. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC wchar_t * SDLCALL SDL_wcsstr(const wchar_t *haystack, const wchar_t *needle); + +/** + * Search a wide string, up to n wide chars, for the first instance of a + * specific substring. + * + * The search ends once it finds the requested substring, or a null terminator + * value to end the string, or `maxlen` wide character have been examined. It + * is possible to use this function on a wide string without a null + * terminator. + * + * Note that this looks for strings of _wide characters_, not _codepoints_, so + * it's legal to search for malformed and incomplete UTF-16 sequences. + * + * \param haystack the wide string to search. Must not be NULL. + * \param needle the wide string to search for. Must not be NULL. + * \param maxlen the maximum number of wide characters to search in + * `haystack`. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC wchar_t * SDLCALL SDL_wcsnstr(const wchar_t *haystack, const wchar_t *needle, size_t maxlen); + +/** + * Compare two null-terminated wide strings. + * + * This only compares wchar_t values until it hits a null-terminating + * character; it does not care if the string is well-formed UTF-16 (or UTF-32, + * depending on your platform's wchar_t size), or uses valid Unicode values. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcscmp(const wchar_t *str1, const wchar_t *str2); + +/** + * Compare two wide strings up to a number of wchar_t values. + * + * This only compares wchar_t values; it does not care if the string is + * well-formed UTF-16 (or UTF-32, depending on your platform's wchar_t size), + * or uses valid Unicode values. + * + * Note that while this function is intended to be used with UTF-16 (or + * UTF-32, depending on your platform's definition of wchar_t), it is + * comparing raw wchar_t values and not Unicode codepoints: `maxlen` specifies + * a wchar_t limit! If the limit lands in the middle of a multi-wchar UTF-16 + * sequence, it will only compare a portion of the final character. + * + * `maxlen` specifies a maximum number of wchar_t to compare; if the strings + * match to this number of wide chars (or both have matched to a + * null-terminator character before this count), they will be considered + * equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of wchar_t to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcsncmp(const wchar_t *str1, const wchar_t *str2, size_t maxlen); + +/** + * Compare two null-terminated wide strings, case-insensitively. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Depending on your platform, "wchar_t" might be 2 bytes, and expected to be + * UTF-16 encoded (like Windows), or 4 bytes in UTF-32 format. Since this + * handles Unicode, it expects the string to be well-formed and not a + * null-terminated string of arbitrary bytes. Characters that are not valid + * UTF-16 (or UTF-32) are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcscasecmp(const wchar_t *str1, const wchar_t *str2); + +/** + * Compare two wide strings, case-insensitively, up to a number of wchar_t. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Depending on your platform, "wchar_t" might be 2 bytes, and expected to be + * UTF-16 encoded (like Windows), or 4 bytes in UTF-32 format. Since this + * handles Unicode, it expects the string to be well-formed and not a + * null-terminated string of arbitrary bytes. Characters that are not valid + * UTF-16 (or UTF-32) are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * Note that while this function might deal with variable-sized characters, + * `maxlen` specifies a _wchar_ limit! If the limit lands in the middle of a + * multi-byte UTF-16 sequence, it may convert a portion of the final character + * to one or more Unicode character U+FFFD (REPLACEMENT CHARACTER) so as not + * to overflow a buffer. + * + * `maxlen` specifies a maximum number of wchar_t values to compare; if the + * strings match to this number of wchar_t (or both have matched to a + * null-terminator character before this number of bytes), they will be + * considered equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of wchar_t values to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_wcsncasecmp(const wchar_t *str1, const wchar_t *str2, size_t maxlen); + +/** + * Parse a `long` from a wide string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside a `long`, the result is clamped to + * the minimum and maximum representable `long` values. + * + * \param str The null-terminated wide string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid wide character + * (i.e. the next character after the parsed number) will be + * written to this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strtol + */ +extern SDL_DECLSPEC long SDLCALL SDL_wcstol(const wchar_t *str, wchar_t **endp, int base); + +/** + * This works exactly like strlen() but doesn't require access to a C runtime. + * + * Counts the bytes in `str`, excluding the null terminator. + * + * If you need the length of a UTF-8 string, consider using SDL_utf8strlen(). + * + * \param str The null-terminated string to read. Must not be NULL. + * \returns the length (in bytes, excluding the null terminator) of `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strnlen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strlen(const char *str); + +/** + * This works exactly like strnlen() but doesn't require access to a C + * runtime. + * + * Counts up to a maximum of `maxlen` bytes in `str`, excluding the null + * terminator. + * + * If you need the length of a UTF-8 string, consider using SDL_utf8strnlen(). + * + * \param str The null-terminated string to read. Must not be NULL. + * \param maxlen The maximum amount of bytes to count. + * \returns the length (in bytes, excluding the null terminator) of `src` but + * never more than `maxlen`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlen + * \sa SDL_utf8strlen + * \sa SDL_utf8strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strnlen(const char *str, size_t maxlen); + +/** + * Copy a string. + * + * This function copies up to `maxlen` - 1 characters from `src` to `dst`, + * then appends a null terminator. + * + * If `maxlen` is 0, no characters are copied and no null terminator is + * written. + * + * If you want to copy an UTF-8 string but need to ensure that multi-byte + * sequences are not truncated, consider using SDL_utf8strlcpy(). + * + * \param dst The destination buffer. Must not be NULL, and must not overlap + * with `src`. + * \param src The null-terminated string to copy. Must not be NULL, and must + * not overlap with `dst`. + * \param maxlen The length (in characters) of the destination buffer. + * \returns the length (in characters, excluding the null terminator) of + * `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlcat + * \sa SDL_utf8strlcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strlcpy(SDL_OUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen); + +/** + * Copy an UTF-8 string. + * + * This function copies up to `dst_bytes` - 1 bytes from `src` to `dst` while + * also ensuring that the string written to `dst` does not end in a truncated + * multi-byte sequence. Finally, it appends a null terminator. + * + * `src` and `dst` must not overlap. + * + * Note that unlike SDL_strlcpy(), this function returns the number of bytes + * written, not the length of `src`. + * + * \param dst The destination buffer. Must not be NULL, and must not overlap + * with `src`. + * \param src The null-terminated UTF-8 string to copy. Must not be NULL, and + * must not overlap with `dst`. + * \param dst_bytes The length (in bytes) of the destination buffer. Must not + * be 0. + * \returns the number of bytes written, excluding the null terminator. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_utf8strlcpy(SDL_OUT_Z_CAP(dst_bytes) char *dst, const char *src, size_t dst_bytes); + +/** + * Concatenate strings. + * + * This function appends up to `maxlen` - SDL_strlen(dst) - 1 characters from + * `src` to the end of the string in `dst`, then appends a null terminator. + * + * `src` and `dst` must not overlap. + * + * If `maxlen` - SDL_strlen(dst) - 1 is less than or equal to 0, then `dst` is + * unmodified. + * + * \param dst The destination buffer already containing the first + * null-terminated string. Must not be NULL and must not overlap + * with `src`. + * \param src The second null-terminated string. Must not be NULL, and must + * not overlap with `dst`. + * \param maxlen The length (in characters) of the destination buffer. + * \returns the length (in characters, excluding the null terminator) of the + * string in `dst` plus the length of `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlcpy + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_strlcat(SDL_INOUT_Z_CAP(maxlen) char *dst, const char *src, size_t maxlen); + +/** + * Allocate a copy of a string. + * + * This allocates enough space for a null-terminated copy of `str`, using + * SDL_malloc, and then makes a copy of the string into this space. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param str the string to copy. + * \returns a pointer to the newly-allocated string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_MALLOC char * SDLCALL SDL_strdup(const char *str); + +/** + * Allocate a copy of a string, up to n characters. + * + * This allocates enough space for a null-terminated copy of `str`, up to + * `maxlen` bytes, using SDL_malloc, and then makes a copy of the string into + * this space. + * + * If the string is longer than `maxlen` bytes, the returned string will be + * `maxlen` bytes long, plus a null-terminator character that isn't included + * in the count. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param str the string to copy. + * \param maxlen the maximum length of the copied string, not counting the + * null-terminator character. + * \returns a pointer to the newly-allocated string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_MALLOC char * SDLCALL SDL_strndup(const char *str, size_t maxlen); + +/** + * Reverse a string's contents. + * + * This reverses a null-terminated string in-place. Only the content of the + * string is reversed; the null-terminator character remains at the end of the + * reversed string. + * + * **WARNING**: This function reverses the _bytes_ of the string, not the + * codepoints. If `str` is a UTF-8 string with Unicode codepoints > 127, this + * will ruin the string data. You should only use this function on strings + * that are completely comprised of low ASCII characters. + * + * \param str the string to reverse. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strrev(char *str); + +/** + * Convert a string to uppercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'A' through 'Z' to uppercase. + * + * This function operates on a null-terminated string of bytes--even if it is + * malformed UTF-8!--and converts ASCII characters 'a' through 'z' to their + * uppercase equivalents in-place, returning the original `str` pointer. + * + * \param str the string to convert in-place. Can not be NULL. + * \returns the `str` pointer passed into this function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strlwr + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strupr(char *str); + +/** + * Convert a string to lowercase. + * + * **WARNING**: Regardless of system locale, this will only convert ASCII + * values 'A' through 'Z' to lowercase. + * + * This function operates on a null-terminated string of bytes--even if it is + * malformed UTF-8!--and converts ASCII characters 'A' through 'Z' to their + * lowercase equivalents in-place, returning the original `str` pointer. + * + * \param str the string to convert in-place. Can not be NULL. + * \returns the `str` pointer passed into this function. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_strupr + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strlwr(char *str); + +/** + * Search a string for the first instance of a specific byte. + * + * The search ends once it finds the requested byte value, or a null + * terminator byte to end the string. + * + * Note that this looks for _bytes_, not _characters_, so you cannot match + * against a Unicode codepoint > 255, regardless of character encoding. + * + * \param str the string to search. Must not be NULL. + * \param c the byte value to search for. + * \returns a pointer to the first instance of `c` in the string, or NULL if + * not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strchr(const char *str, int c); + +/** + * Search a string for the last instance of a specific byte. + * + * The search must go until it finds a null terminator byte to end the string. + * + * Note that this looks for _bytes_, not _characters_, so you cannot match + * against a Unicode codepoint > 255, regardless of character encoding. + * + * \param str the string to search. Must not be NULL. + * \param c the byte value to search for. + * \returns a pointer to the last instance of `c` in the string, or NULL if + * not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strrchr(const char *str, int c); + +/** + * Search a string for the first instance of a specific substring. + * + * The search ends once it finds the requested substring, or a null terminator + * byte to end the string. + * + * Note that this looks for strings of _bytes_, not _characters_, so it's + * legal to search for malformed and incomplete UTF-8 sequences. + * + * \param haystack the string to search. Must not be NULL. + * \param needle the string to search for. Must not be NULL. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strstr(const char *haystack, const char *needle); + +/** + * Search a string, up to n bytes, for the first instance of a specific + * substring. + * + * The search ends once it finds the requested substring, or a null terminator + * byte to end the string, or `maxlen` bytes have been examined. It is + * possible to use this function on a string without a null terminator. + * + * Note that this looks for strings of _bytes_, not _characters_, so it's + * legal to search for malformed and incomplete UTF-8 sequences. + * + * \param haystack the string to search. Must not be NULL. + * \param needle the string to search for. Must not be NULL. + * \param maxlen the maximum number of bytes to search in `haystack`. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strnstr(const char *haystack, const char *needle, size_t maxlen); + +/** + * Search a UTF-8 string for the first instance of a specific substring, + * case-insensitively. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Since this handles Unicode, it expects the strings to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * \param haystack the string to search. Must not be NULL. + * \param needle the string to search for. Must not be NULL. + * \returns a pointer to the first instance of `needle` in the string, or NULL + * if not found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strcasestr(const char *haystack, const char *needle); + +/** + * This works exactly like strtok_r() but doesn't require access to a C + * runtime. + * + * Break a string up into a series of tokens. + * + * To start tokenizing a new string, `str` should be the non-NULL address of + * the string to start tokenizing. Future calls to get the next token from the + * same string should specify a NULL. + * + * Note that this function will overwrite pieces of `str` with null chars to + * split it into tokens. This function cannot be used with const/read-only + * strings! + * + * `saveptr` just needs to point to a `char *` that can be overwritten; SDL + * will use this to save tokenizing state between calls. It is initialized if + * `str` is non-NULL, and used to resume tokenizing when `str` is NULL. + * + * \param str the string to tokenize, or NULL to continue tokenizing. + * \param delim the delimiter string that separates tokens. + * \param saveptr pointer to a char *, used for ongoing state. + * \returns A pointer to the next token, or NULL if no tokens remain. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strtok_r(char *str, const char *delim, char **saveptr); + +/** + * Count the number of codepoints in a UTF-8 string. + * + * Counts the _codepoints_, not _bytes_, in `str`, excluding the null + * terminator. + * + * If you need to count the bytes in a string instead, consider using + * SDL_strlen(). + * + * Since this handles Unicode, it expects the strings to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), so a malformed or incomplete UTF-8 sequence might increase the + * count by several replacement characters. + * + * \param str The null-terminated UTF-8 string to read. Must not be NULL. + * \returns The length (in codepoints, excluding the null terminator) of + * `src`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_utf8strnlen + * \sa SDL_strlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_utf8strlen(const char *str); + +/** + * Count the number of codepoints in a UTF-8 string, up to n bytes. + * + * Counts the _codepoints_, not _bytes_, in `str`, excluding the null + * terminator. + * + * If you need to count the bytes in a string instead, consider using + * SDL_strnlen(). + * + * The counting stops at `bytes` bytes (not codepoints!). This seems + * counterintuitive, but makes it easy to express the total size of the + * string's buffer. + * + * Since this handles Unicode, it expects the strings to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), so a malformed or incomplete UTF-8 sequence might increase the + * count by several replacement characters. + * + * \param str The null-terminated UTF-8 string to read. Must not be NULL. + * \param bytes The maximum amount of bytes to count. + * \returns The length (in codepoints, excluding the null terminator) of `src` + * but never more than `maxlen`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_utf8strlen + * \sa SDL_strnlen + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_utf8strnlen(const char *str, size_t bytes); + +/** + * Convert an integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget possible negative + * signs, null terminator bytes, etc). + * + * \param value the integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_uitoa + * \sa SDL_ltoa + * \sa SDL_lltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_itoa(int value, char *str, int radix); + +/** + * Convert an unsigned integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget null terminator + * bytes, etc). + * + * \param value the unsigned integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_itoa + * \sa SDL_ultoa + * \sa SDL_ulltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_uitoa(unsigned int value, char *str, int radix); + +/** + * Convert a long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget possible negative + * signs, null terminator bytes, etc). + * + * \param value the long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ultoa + * \sa SDL_itoa + * \sa SDL_lltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_ltoa(long value, char *str, int radix); + +/** + * Convert an unsigned long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget null terminator + * bytes, etc). + * + * \param value the unsigned long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ltoa + * \sa SDL_uitoa + * \sa SDL_ulltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_ultoa(unsigned long value, char *str, int radix); + +#ifndef SDL_NOLONGLONG + +/** + * Convert a long long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget possible negative + * signs, null terminator bytes, etc). + * + * \param value the long long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ulltoa + * \sa SDL_itoa + * \sa SDL_ltoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_lltoa(long long value, char *str, int radix); + +/** + * Convert an unsigned long long integer into a string. + * + * This requires a radix to specified for string format. Specifying 10 + * produces a decimal number, 16 hexidecimal, etc. Must be in the range of 2 + * to 36. + * + * Note that this function will overflow a buffer if `str` is not large enough + * to hold the output! It may be safer to use SDL_snprintf to clamp output, or + * SDL_asprintf to allocate a buffer. Otherwise, it doesn't hurt to allocate + * much more space than you expect to use (and don't forget null terminator + * bytes, etc). + * + * \param value the unsigned long long integer to convert. + * \param str the buffer to write the string into. + * \param radix the radix to use for string generation. + * \returns `str`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_lltoa + * \sa SDL_uitoa + * \sa SDL_ultoa + */ +extern SDL_DECLSPEC char * SDLCALL SDL_ulltoa(unsigned long long value, char *str, int radix); +#endif + +/** + * Parse an `int` from a string. + * + * The result of calling `SDL_atoi(str)` is equivalent to + * `(int)SDL_strtol(str, NULL, 10)`. + * + * \param str The null-terminated string to read. Must not be NULL. + * \returns the parsed `int`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoul + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_itoa + */ +extern SDL_DECLSPEC int SDLCALL SDL_atoi(const char *str); + +/** + * Parse a `double` from a string. + * + * The result of calling `SDL_atof(str)` is equivalent to `SDL_strtod(str, + * NULL)`. + * + * \param str The null-terminated string to read. Must not be NULL. + * \returns the parsed `double`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_strtol + * \sa SDL_strtoul + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + */ +extern SDL_DECLSPEC double SDLCALL SDL_atof(const char *str); + +/** + * Parse a `long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside a `long`, the result is clamped to + * the minimum and maximum representable `long` values. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtoul + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_ltoa + * \sa SDL_wcstol + */ +extern SDL_DECLSPEC long SDLCALL SDL_strtol(const char *str, char **endp, int base); + +/** + * Parse an `unsigned long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside an `unsigned long`, the result is + * clamped to the maximum representable `unsigned long` value. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `unsigned long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoll + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_ultoa + */ +extern SDL_DECLSPEC unsigned long SDLCALL SDL_strtoul(const char *str, char **endp, int base); + +#ifndef SDL_NOLONGLONG + +/** + * Parse a `long long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside a `long long`, the result is + * clamped to the minimum and maximum representable `long long` values. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `long long`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoul + * \sa SDL_strtoull + * \sa SDL_strtod + * \sa SDL_lltoa + */ +extern SDL_DECLSPEC long long SDLCALL SDL_strtoll(const char *str, char **endp, int base); + +/** + * Parse an `unsigned long long` from a string. + * + * If `str` starts with whitespace, then those whitespace characters are + * skipped before attempting to parse the number. + * + * If the parsed number does not fit inside an `unsigned long long`, the + * result is clamped to the maximum representable `unsigned long long` value. + * + * \param str The null-terminated string to read. Must not be NULL. + * \param endp If not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \param base The base of the integer to read. Supported values are 0 and 2 + * to 36 inclusive. If 0, the base will be inferred from the + * number's prefix (0x for hexadecimal, 0 for octal, decimal + * otherwise). + * \returns the parsed `unsigned long long`, or 0 if no number could be + * parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoll + * \sa SDL_strtoul + * \sa SDL_strtod + * \sa SDL_ulltoa + */ +extern SDL_DECLSPEC unsigned long long SDLCALL SDL_strtoull(const char *str, char **endp, int base); +#endif + +/** + * Parse a `double` from a string. + * + * This function makes fewer guarantees than the C runtime `strtod`: + * + * - Only decimal notation is guaranteed to be supported. The handling of + * scientific and hexadecimal notation is unspecified. + * - Whether or not INF and NAN can be parsed is unspecified. + * - The precision of the result is unspecified. + * + * \param str the null-terminated string to read. Must not be NULL. + * \param endp if not NULL, the address of the first invalid character (i.e. + * the next character after the parsed number) will be written to + * this pointer. + * \returns the parsed `double`, or 0 if no number could be parsed. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atoi + * \sa SDL_atof + * \sa SDL_strtol + * \sa SDL_strtoll + * \sa SDL_strtoul + * \sa SDL_strtoull + */ +extern SDL_DECLSPEC double SDLCALL SDL_strtod(const char *str, char **endp); + +/** + * Compare two null-terminated UTF-8 strings. + * + * Due to the nature of UTF-8 encoding, this will work with Unicode strings, + * since effectively this function just compares bytes until it hits a + * null-terminating character. Also due to the nature of UTF-8, this can be + * used with SDL_qsort() to put strings in (roughly) alphabetical order. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2); + +/** + * Compare two UTF-8 strings up to a number of bytes. + * + * Due to the nature of UTF-8 encoding, this will work with Unicode strings, + * since effectively this function just compares bytes until it hits a + * null-terminating character. Also due to the nature of UTF-8, this can be + * used with SDL_qsort() to put strings in (roughly) alphabetical order. + * + * Note that while this function is intended to be used with UTF-8, it is + * doing a bytewise comparison, and `maxlen` specifies a _byte_ limit! If the + * limit lands in the middle of a multi-byte UTF-8 sequence, it will only + * compare a portion of the final character. + * + * `maxlen` specifies a maximum number of bytes to compare; if the strings + * match to this number of bytes (or both have matched to a null-terminator + * character before this number of bytes), they will be considered equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of _bytes_ to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen); + +/** + * Compare two null-terminated UTF-8 strings, case-insensitively. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Since this handles Unicode, it expects the string to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2); + + +/** + * Compare two UTF-8 strings, case-insensitively, up to a number of bytes. + * + * This will work with Unicode strings, using a technique called + * "case-folding" to handle the vast majority of case-sensitive human + * languages regardless of system locale. It can deal with expanding values: a + * German Eszett character can compare against two ASCII 's' chars and be + * considered a match, for example. A notable exception: it does not handle + * the Turkish 'i' character; human language is complicated! + * + * Since this handles Unicode, it expects the string to be well-formed UTF-8 + * and not a null-terminated string of arbitrary bytes. Bytes that are not + * valid UTF-8 are treated as Unicode character U+FFFD (REPLACEMENT + * CHARACTER), which is to say two strings of random bits may turn out to + * match if they convert to the same amount of replacement characters. + * + * Note that while this function is intended to be used with UTF-8, `maxlen` + * specifies a _byte_ limit! If the limit lands in the middle of a multi-byte + * UTF-8 sequence, it may convert a portion of the final character to one or + * more Unicode character U+FFFD (REPLACEMENT CHARACTER) so as not to overflow + * a buffer. + * + * `maxlen` specifies a maximum number of bytes to compare; if the strings + * match to this number of bytes (or both have matched to a null-terminator + * character before this number of bytes), they will be considered equal. + * + * \param str1 the first string to compare. NULL is not permitted! + * \param str2 the second string to compare. NULL is not permitted! + * \param maxlen the maximum number of bytes to compare. + * \returns less than zero if str1 is "less than" str2, greater than zero if + * str1 is "greater than" str2, and zero if the strings match + * exactly. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t maxlen); + +/** + * Searches a string for the first occurence of any character contained in a + * breakset, and returns a pointer from the string to that character. + * + * \param str The null-terminated string to be searched. Must not be NULL, and + * must not overlap with `breakset`. + * \param breakset A null-terminated string containing the list of characters + * to look for. Must not be NULL, and must not overlap with + * `str`. + * \returns A pointer to the location, in str, of the first occurence of a + * character present in the breakset, or NULL if none is found. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_strpbrk(const char *str, const char *breakset); + +/** + * The Unicode REPLACEMENT CHARACTER codepoint. + * + * SDL_StepUTF8() and SDL_StepBackUTF8() report this codepoint when they + * encounter a UTF-8 string with encoding errors. + * + * This tends to render as something like a question mark in most places. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_StepBackUTF8 + * \sa SDL_StepUTF8 + */ +#define SDL_INVALID_UNICODE_CODEPOINT 0xFFFD + +/** + * Decode a UTF-8 string, one Unicode codepoint at a time. + * + * This will return the first Unicode codepoint in the UTF-8 encoded string in + * `*pstr`, and then advance `*pstr` past any consumed bytes before returning. + * + * It will not access more than `*pslen` bytes from the string. `*pslen` will + * be adjusted, as well, subtracting the number of bytes consumed. + * + * `pslen` is allowed to be NULL, in which case the string _must_ be + * NULL-terminated, as the function will blindly read until it sees the NULL + * char. + * + * if `*pslen` is zero, it assumes the end of string is reached and returns a + * zero codepoint regardless of the contents of the string buffer. + * + * If the resulting codepoint is zero (a NULL terminator), or `*pslen` is + * zero, it will not advance `*pstr` or `*pslen` at all. + * + * Generally this function is called in a loop until it returns zero, + * adjusting its parameters each iteration. + * + * If an invalid UTF-8 sequence is encountered, this function returns + * SDL_INVALID_UNICODE_CODEPOINT and advances the string/length by one byte + * (which is to say, a multibyte sequence might produce several + * SDL_INVALID_UNICODE_CODEPOINT returns before it syncs to the next valid + * UTF-8 sequence). + * + * Several things can generate invalid UTF-8 sequences, including overlong + * encodings, the use of UTF-16 surrogate values, and truncated data. Please + * refer to + * [RFC3629](https://www.ietf.org/rfc/rfc3629.txt) + * for details. + * + * \param pstr a pointer to a UTF-8 string pointer to be read and adjusted. + * \param pslen a pointer to the number of bytes in the string, to be read and + * adjusted. NULL is allowed. + * \returns the first Unicode codepoint in the string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_StepUTF8(const char **pstr, size_t *pslen); + +/** + * Decode a UTF-8 string in reverse, one Unicode codepoint at a time. + * + * This will go to the start of the previous Unicode codepoint in the string, + * move `*pstr` to that location and return that codepoint. + * + * If `*pstr` is already at the start of the string), it will not advance + * `*pstr` at all. + * + * Generally this function is called in a loop until it returns zero, + * adjusting its parameter each iteration. + * + * If an invalid UTF-8 sequence is encountered, this function returns + * SDL_INVALID_UNICODE_CODEPOINT. + * + * Several things can generate invalid UTF-8 sequences, including overlong + * encodings, the use of UTF-16 surrogate values, and truncated data. Please + * refer to + * [RFC3629](https://www.ietf.org/rfc/rfc3629.txt) + * for details. + * + * \param start a pointer to the beginning of the UTF-8 string. + * \param pstr a pointer to a UTF-8 string pointer to be read and adjusted. + * \returns the previous Unicode codepoint in the string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_StepBackUTF8(const char *start, const char **pstr); + +/** + * Convert a single Unicode codepoint to UTF-8. + * + * The buffer pointed to by `dst` must be at least 4 bytes long, as this + * function may generate between 1 and 4 bytes of output. + * + * This function returns the first byte _after_ the newly-written UTF-8 + * sequence, which is useful for encoding multiple codepoints in a loop, or + * knowing where to write a NULL-terminator character to end the string (in + * either case, plan to have a buffer of _more_ than 4 bytes!). + * + * If `codepoint` is an invalid value (outside the Unicode range, or a UTF-16 + * surrogate value, etc), this will use U+FFFD (REPLACEMENT CHARACTER) for the + * codepoint instead, and not set an error. + * + * If `dst` is NULL, this returns NULL immediately without writing to the + * pointer and without setting an error. + * + * \param codepoint a Unicode codepoint to convert to UTF-8. + * \param dst the location to write the encoded UTF-8. Must point to at least + * 4 bytes! + * \returns the first byte past the newly-written UTF-8 sequence. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char * SDLCALL SDL_UCS4ToUTF8(Uint32 codepoint, char *dst); + +/** + * This works exactly like sscanf() but doesn't require access to a C runtime. + * + * Scan a string, matching a format string, converting each '%' item and + * storing it to pointers provided through variable arguments. + * + * \param text the string to scan. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of pointers to values to be filled in with scanned items. + * \returns the number of items that matched the format string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_sscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, ...) SDL_SCANF_VARARG_FUNC(2); + +/** + * This works exactly like vsscanf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_sscanf(), except it takes a `va_list` instead + * of using `...` variable arguments. + * + * \param text the string to scan. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ap a `va_list` of pointers to values to be filled in with scanned + * items. + * \returns the number of items that matched the format string. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vsscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, va_list ap) SDL_SCANF_VARARG_FUNCV(2); + +/** + * This works exactly like snprintf() but doesn't require access to a C + * runtime. + * + * Format a string of up to `maxlen`-1 bytes, converting each '%' item with + * values provided through variable arguments. + * + * While some C runtimes differ on how to deal with too-large strings, this + * function null-terminates the output, by treating the null-terminator as + * part of the `maxlen` count. Note that if `maxlen` is zero, however, no + * bytes will be written at all. + * + * This function returns the number of _bytes_ (not _characters_) that should + * be written, excluding the null-terminator character. If this returns a + * number >= `maxlen`, it means the output string was truncated. A negative + * return value means an error occurred. + * + * Referencing the output string's pointer with a format item is undefined + * behavior. + * + * \param text the buffer to write the string into. Must not be NULL. + * \param maxlen the maximum bytes to write, including the null-terminator. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of values to be used with the format string. + * \returns the number of bytes that should be written, not counting the + * null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_snprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(3); + +/** + * This works exactly like swprintf() but doesn't require access to a C + * runtime. + * + * Format a wide string of up to `maxlen`-1 wchar_t values, converting each + * '%' item with values provided through variable arguments. + * + * While some C runtimes differ on how to deal with too-large strings, this + * function null-terminates the output, by treating the null-terminator as + * part of the `maxlen` count. Note that if `maxlen` is zero, however, no wide + * characters will be written at all. + * + * This function returns the number of _wide characters_ (not _codepoints_) + * that should be written, excluding the null-terminator character. If this + * returns a number >= `maxlen`, it means the output string was truncated. A + * negative return value means an error occurred. + * + * Referencing the output string's pointer with a format item is undefined + * behavior. + * + * \param text the buffer to write the wide string into. Must not be NULL. + * \param maxlen the maximum wchar_t values to write, including the + * null-terminator. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of values to be used with the format string. + * \returns the number of wide characters that should be written, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_swprintf(SDL_OUT_Z_CAP(maxlen) wchar_t *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const wchar_t *fmt, ...) SDL_WPRINTF_VARARG_FUNC(3); + +/** + * This works exactly like vsnprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_snprintf(), except it takes a `va_list` + * instead of using `...` variable arguments. + * + * \param text the buffer to write the string into. Must not be NULL. + * \param maxlen the maximum bytes to write, including the null-terminator. + * \param fmt a printf-style format string. Must not be NULL. + * \param ap a `va_list` values to be used with the format string. + * \returns the number of bytes that should be written, not counting the + * null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vsnprintf(SDL_OUT_Z_CAP(maxlen) char *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(3); + +/** + * This works exactly like vswprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_swprintf(), except it takes a `va_list` + * instead of using `...` variable arguments. + * + * \param text the buffer to write the string into. Must not be NULL. + * \param maxlen the maximum wide characters to write, including the + * null-terminator. + * \param fmt a printf-style format wide string. Must not be NULL. + * \param ap a `va_list` values to be used with the format string. + * \returns the number of wide characters that should be written, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vswprintf(SDL_OUT_Z_CAP(maxlen) wchar_t *text, size_t maxlen, SDL_PRINTF_FORMAT_STRING const wchar_t *fmt, va_list ap) SDL_WPRINTF_VARARG_FUNCV(3); + +/** + * This works exactly like asprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_snprintf(), except it allocates a buffer large + * enough to hold the output string on behalf of the caller. + * + * On success, this function returns the number of bytes (not characters) + * comprising the output string, not counting the null-terminator character, + * and sets `*strp` to the newly-allocated string. + * + * On error, this function returns a negative number, and the value of `*strp` + * is undefined. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param strp on output, is set to the new string. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ... a list of values to be used with the format string. + * \returns the number of bytes in the newly-allocated string, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_asprintf(char **strp, SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(2); + +/** + * This works exactly like vasprintf() but doesn't require access to a C + * runtime. + * + * Functions identically to SDL_asprintf(), except it takes a `va_list` + * instead of using `...` variable arguments. + * + * \param strp on output, is set to the new string. Must not be NULL. + * \param fmt a printf-style format string. Must not be NULL. + * \param ap a `va_list` values to be used with the format string. + * \returns the number of bytes in the newly-allocated string, not counting + * the null-terminator char, or a negative value on error. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_vasprintf(char **strp, SDL_PRINTF_FORMAT_STRING const char *fmt, va_list ap) SDL_PRINTF_VARARG_FUNCV(2); + +/** + * Seeds the pseudo-random number generator. + * + * Reusing the seed number will cause SDL_rand() to repeat the same stream of + * 'random' numbers. + * + * \param seed the value to use as a random number seed, or 0 to use + * SDL_GetPerformanceCounter(). + * + * \threadsafety This should be called on the same thread that calls + * SDL_rand() + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand + * \sa SDL_rand_bits + * \sa SDL_randf + */ +extern SDL_DECLSPEC void SDLCALL SDL_srand(Uint64 seed); + +/** + * Generate a pseudo-random number less than n for positive n + * + * The method used is faster and of better quality than `rand() % n`. Odds are + * roughly 99.9% even for n = 1 million. Evenness is better for smaller n, and + * much worse as n gets bigger. + * + * Example: to simulate a d6 use `SDL_rand(6) + 1` The +1 converts 0..5 to + * 1..6 + * + * If you want to generate a pseudo-random number in the full range of Sint32, + * you should use: (Sint32)SDL_rand_bits() + * + * If you want reproducible output, be sure to initialize with SDL_srand() + * first. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param n the number of possible outcomes. n must be positive. + * \returns a random value in the range of [0 .. n-1]. + * + * \threadsafety All calls should be made from a single thread + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_srand + * \sa SDL_randf + */ +extern SDL_DECLSPEC Sint32 SDLCALL SDL_rand(Sint32 n); + +/** + * Generate a uniform pseudo-random floating point number less than 1.0 + * + * If you want reproducible output, be sure to initialize with SDL_srand() + * first. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \returns a random value in the range of [0.0, 1.0). + * + * \threadsafety All calls should be made from a single thread + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_srand + * \sa SDL_rand + */ +extern SDL_DECLSPEC float SDLCALL SDL_randf(void); + +/** + * Generate 32 pseudo-random bits. + * + * You likely want to use SDL_rand() to get a psuedo-random number instead. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \returns a random value in the range of [0-SDL_MAX_UINT32]. + * + * \threadsafety All calls should be made from a single thread + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand + * \sa SDL_randf + * \sa SDL_srand + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_rand_bits(void); + +/** + * Generate a pseudo-random number less than n for positive n + * + * The method used is faster and of better quality than `rand() % n`. Odds are + * roughly 99.9% even for n = 1 million. Evenness is better for smaller n, and + * much worse as n gets bigger. + * + * Example: to simulate a d6 use `SDL_rand_r(state, 6) + 1` The +1 converts + * 0..5 to 1..6 + * + * If you want to generate a pseudo-random number in the full range of Sint32, + * you should use: (Sint32)SDL_rand_bits_r(state) + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param state a pointer to the current random number state, this may not be + * NULL. + * \param n the number of possible outcomes. n must be positive. + * \returns a random value in the range of [0 .. n-1]. + * + * \threadsafety This function is thread-safe, as long as the state pointer + * isn't shared between threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand + * \sa SDL_rand_bits_r + * \sa SDL_randf_r + */ +extern SDL_DECLSPEC Sint32 SDLCALL SDL_rand_r(Uint64 *state, Sint32 n); + +/** + * Generate a uniform pseudo-random floating point number less than 1.0 + * + * If you want reproducible output, be sure to initialize with SDL_srand() + * first. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param state a pointer to the current random number state, this may not be + * NULL. + * \returns a random value in the range of [0.0, 1.0). + * + * \threadsafety This function is thread-safe, as long as the state pointer + * isn't shared between threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand_bits_r + * \sa SDL_rand_r + * \sa SDL_randf + */ +extern SDL_DECLSPEC float SDLCALL SDL_randf_r(Uint64 *state); + +/** + * Generate 32 pseudo-random bits. + * + * You likely want to use SDL_rand_r() to get a psuedo-random number instead. + * + * There are no guarantees as to the quality of the random sequence produced, + * and this should not be used for security (cryptography, passwords) or where + * money is on the line (loot-boxes, casinos). There are many random number + * libraries available with different characteristics and you should pick one + * of those to meet any serious needs. + * + * \param state a pointer to the current random number state, this may not be + * NULL. + * \returns a random value in the range of [0-SDL_MAX_UINT32]. + * + * \threadsafety This function is thread-safe, as long as the state pointer + * isn't shared between threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_rand_r + * \sa SDL_randf_r + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_rand_bits_r(Uint64 *state); + +#ifndef SDL_PI_D + +/** + * The value of Pi, as a double-precision floating point literal. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PI_F + */ +#define SDL_PI_D 3.141592653589793238462643383279502884 /**< pi (double) */ +#endif + +#ifndef SDL_PI_F + +/** + * The value of Pi, as a single-precision floating point literal. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_PI_D + */ +#define SDL_PI_F 3.141592653589793238462643383279502884F /**< pi (float) */ +#endif + +/** + * Compute the arc cosine of `x`. + * + * The definition of `y = acos(x)` is `x = cos(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `0 <= y <= Pi` + * + * This function operates on double-precision floating point values, use + * SDL_acosf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc cosine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_acosf + * \sa SDL_asin + * \sa SDL_cos + */ +extern SDL_DECLSPEC double SDLCALL SDL_acos(double x); + +/** + * Compute the arc cosine of `x`. + * + * The definition of `y = acos(x)` is `x = cos(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `0 <= y <= Pi` + * + * This function operates on single-precision floating point values, use + * SDL_acos for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc cosine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_acos + * \sa SDL_asinf + * \sa SDL_cosf + */ +extern SDL_DECLSPEC float SDLCALL SDL_acosf(float x); + +/** + * Compute the arc sine of `x`. + * + * The definition of `y = asin(x)` is `x = sin(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on double-precision floating point values, use + * SDL_asinf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc sine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_asinf + * \sa SDL_acos + * \sa SDL_sin + */ +extern SDL_DECLSPEC double SDLCALL SDL_asin(double x); + +/** + * Compute the arc sine of `x`. + * + * The definition of `y = asin(x)` is `x = sin(y)`. + * + * Domain: `-1 <= x <= 1` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on single-precision floating point values, use + * SDL_asin for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc sine of `x`, in radians. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_asin + * \sa SDL_acosf + * \sa SDL_sinf + */ +extern SDL_DECLSPEC float SDLCALL SDL_asinf(float x); + +/** + * Compute the arc tangent of `x`. + * + * The definition of `y = atan(x)` is `x = tan(y)`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on double-precision floating point values, use + * SDL_atanf for single-precision floats. + * + * To calculate the arc tangent of y / x, use SDL_atan2. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc tangent of of `x` in radians, or 0 if `x = 0`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atanf + * \sa SDL_atan2 + * \sa SDL_tan + */ +extern SDL_DECLSPEC double SDLCALL SDL_atan(double x); + +/** + * Compute the arc tangent of `x`. + * + * The definition of `y = atan(x)` is `x = tan(y)`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-Pi/2 <= y <= Pi/2` + * + * This function operates on single-precision floating point values, use + * SDL_atan for dboule-precision floats. + * + * To calculate the arc tangent of y / x, use SDL_atan2f. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns arc tangent of of `x` in radians, or 0 if `x = 0`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atan + * \sa SDL_atan2f + * \sa SDL_tanf + */ +extern SDL_DECLSPEC float SDLCALL SDL_atanf(float x); + +/** + * Compute the arc tangent of `y / x`, using the signs of x and y to adjust + * the result's quadrant. + * + * The definition of `z = atan2(x, y)` is `y = x tan(z)`, where the quadrant + * of z is determined based on the signs of x and y. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-Pi <= y <= Pi` + * + * This function operates on double-precision floating point values, use + * SDL_atan2f for single-precision floats. + * + * To calculate the arc tangent of a single value, use SDL_atan. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param y floating point value of the numerator (y coordinate). + * \param x floating point value of the denominator (x coordinate). + * \returns arc tangent of of `y / x` in radians, or, if `x = 0`, either + * `-Pi/2`, `0`, or `Pi/2`, depending on the value of `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atan2f + * \sa SDL_atan + * \sa SDL_tan + */ +extern SDL_DECLSPEC double SDLCALL SDL_atan2(double y, double x); + +/** + * Compute the arc tangent of `y / x`, using the signs of x and y to adjust + * the result's quadrant. + * + * The definition of `z = atan2(x, y)` is `y = x tan(z)`, where the quadrant + * of z is determined based on the signs of x and y. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-Pi <= y <= Pi` + * + * This function operates on single-precision floating point values, use + * SDL_atan2 for double-precision floats. + * + * To calculate the arc tangent of a single value, use SDL_atanf. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param y floating point value of the numerator (y coordinate). + * \param x floating point value of the denominator (x coordinate). + * \returns arc tangent of of `y / x` in radians, or, if `x = 0`, either + * `-Pi/2`, `0`, or `Pi/2`, depending on the value of `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_atan2 + * \sa SDL_atan + * \sa SDL_tan + */ +extern SDL_DECLSPEC float SDLCALL SDL_atan2f(float y, float x); + +/** + * Compute the ceiling of `x`. + * + * The ceiling of `x` is the smallest integer `y` such that `y > x`, i.e `x` + * rounded up to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_ceilf for single-precision floats. + * + * \param x floating point value. + * \returns the ceiling of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ceilf + * \sa SDL_floor + * \sa SDL_trunc + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_ceil(double x); + +/** + * Compute the ceiling of `x`. + * + * The ceiling of `x` is the smallest integer `y` such that `y > x`, i.e `x` + * rounded up to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_ceil for double-precision floats. + * + * \param x floating point value. + * \returns the ceiling of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ceil + * \sa SDL_floorf + * \sa SDL_truncf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_ceilf(float x); + +/** + * Copy the sign of one floating-point value to another. + * + * The definition of copysign is that ``copysign(x, y) = abs(x) * sign(y)``. + * + * Domain: `-INF <= x <= INF`, ``-INF <= y <= f`` + * + * Range: `-INF <= z <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_copysignf for single-precision floats. + * + * \param x floating point value to use as the magnitude. + * \param y floating point value to use as the sign. + * \returns the floating point value with the sign of y and the magnitude of + * x. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_copysignf + * \sa SDL_fabs + */ +extern SDL_DECLSPEC double SDLCALL SDL_copysign(double x, double y); + +/** + * Copy the sign of one floating-point value to another. + * + * The definition of copysign is that ``copysign(x, y) = abs(x) * sign(y)``. + * + * Domain: `-INF <= x <= INF`, ``-INF <= y <= f`` + * + * Range: `-INF <= z <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_copysign for double-precision floats. + * + * \param x floating point value to use as the magnitude. + * \param y floating point value to use as the sign. + * \returns the floating point value with the sign of y and the magnitude of + * x. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_copysign + * \sa SDL_fabsf + */ +extern SDL_DECLSPEC float SDLCALL SDL_copysignf(float x, float y); + +/** + * Compute the cosine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on double-precision floating point values, use + * SDL_cosf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns cosine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_cosf + * \sa SDL_acos + * \sa SDL_sin + */ +extern SDL_DECLSPEC double SDLCALL SDL_cos(double x); + +/** + * Compute the cosine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on single-precision floating point values, use + * SDL_cos for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns cosine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_cos + * \sa SDL_acosf + * \sa SDL_sinf + */ +extern SDL_DECLSPEC float SDLCALL SDL_cosf(float x); + +/** + * Compute the exponential of `x`. + * + * The definition of `y = exp(x)` is `y = e^x`, where `e` is the base of the + * natural logarithm. The inverse is the natural logarithm, SDL_log. + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * The output will overflow if `exp(x)` is too large to be represented. + * + * This function operates on double-precision floating point values, use + * SDL_expf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns value of `e^x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_expf + * \sa SDL_log + */ +extern SDL_DECLSPEC double SDLCALL SDL_exp(double x); + +/** + * Compute the exponential of `x`. + * + * The definition of `y = exp(x)` is `y = e^x`, where `e` is the base of the + * natural logarithm. The inverse is the natural logarithm, SDL_logf. + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * The output will overflow if `exp(x)` is too large to be represented. + * + * This function operates on single-precision floating point values, use + * SDL_exp for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. + * \returns value of `e^x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_exp + * \sa SDL_logf + */ +extern SDL_DECLSPEC float SDLCALL SDL_expf(float x); + +/** + * Compute the absolute value of `x` + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_fabsf for single-precision floats. + * + * \param x floating point value to use as the magnitude. + * \returns the absolute value of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fabsf + */ +extern SDL_DECLSPEC double SDLCALL SDL_fabs(double x); + +/** + * Compute the absolute value of `x` + * + * Domain: `-INF <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_fabs for double-precision floats. + * + * \param x floating point value to use as the magnitude. + * \returns the absolute value of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fabs + */ +extern SDL_DECLSPEC float SDLCALL SDL_fabsf(float x); + +/** + * Compute the floor of `x`. + * + * The floor of `x` is the largest integer `y` such that `y > x`, i.e `x` + * rounded down to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_floorf for single-precision floats. + * + * \param x floating point value. + * \returns the floor of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_floorf + * \sa SDL_ceil + * \sa SDL_trunc + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_floor(double x); + +/** + * Compute the floor of `x`. + * + * The floor of `x` is the largest integer `y` such that `y > x`, i.e `x` + * rounded down to the nearest integer. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_floor for double-precision floats. + * + * \param x floating point value. + * \returns the floor of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_floor + * \sa SDL_ceilf + * \sa SDL_truncf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_floorf(float x); + +/** + * Truncate `x` to an integer. + * + * Rounds `x` to the next closest integer to 0. This is equivalent to removing + * the fractional part of `x`, leaving only the integer part. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_truncf for single-precision floats. + * + * \param x floating point value. + * \returns `x` truncated to an integer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_truncf + * \sa SDL_fmod + * \sa SDL_ceil + * \sa SDL_floor + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_trunc(double x); + +/** + * Truncate `x` to an integer. + * + * Rounds `x` to the next closest integer to 0. This is equivalent to removing + * the fractional part of `x`, leaving only the integer part. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_trunc for double-precision floats. + * + * \param x floating point value. + * \returns `x` truncated to an integer. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_trunc + * \sa SDL_fmodf + * \sa SDL_ceilf + * \sa SDL_floorf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_truncf(float x); + +/** + * Return the floating-point remainder of `x / y` + * + * Divides `x` by `y`, and returns the remainder. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF`, `y != 0` + * + * Range: `-y <= z <= y` + * + * This function operates on double-precision floating point values, use + * SDL_fmodf for single-precision floats. + * + * \param x the numerator. + * \param y the denominator. Must not be 0. + * \returns the remainder of `x / y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fmodf + * \sa SDL_modf + * \sa SDL_trunc + * \sa SDL_ceil + * \sa SDL_floor + * \sa SDL_round + * \sa SDL_lround + */ +extern SDL_DECLSPEC double SDLCALL SDL_fmod(double x, double y); + +/** + * Return the floating-point remainder of `x / y` + * + * Divides `x` by `y`, and returns the remainder. + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF`, `y != 0` + * + * Range: `-y <= z <= y` + * + * This function operates on single-precision floating point values, use + * SDL_fmod for double-precision floats. + * + * \param x the numerator. + * \param y the denominator. Must not be 0. + * \returns the remainder of `x / y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_fmod + * \sa SDL_truncf + * \sa SDL_modff + * \sa SDL_ceilf + * \sa SDL_floorf + * \sa SDL_roundf + * \sa SDL_lroundf + */ +extern SDL_DECLSPEC float SDLCALL SDL_fmodf(float x, float y); + +/** + * Return whether the value is infinity. + * + * \param x double-precision floating point value. + * \returns non-zero if the value is infinity, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isinff + */ +extern SDL_DECLSPEC int SDLCALL SDL_isinf(double x); + +/** + * Return whether the value is infinity. + * + * \param x floating point value. + * \returns non-zero if the value is infinity, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isinf + */ +extern SDL_DECLSPEC int SDLCALL SDL_isinff(float x); + +/** + * Return whether the value is NaN. + * + * \param x double-precision floating point value. + * \returns non-zero if the value is NaN, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isnanf + */ +extern SDL_DECLSPEC int SDLCALL SDL_isnan(double x); + +/** + * Return whether the value is NaN. + * + * \param x floating point value. + * \returns non-zero if the value is NaN, 0 otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_isnan + */ +extern SDL_DECLSPEC int SDLCALL SDL_isnanf(float x); + +/** + * Compute the natural logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on double-precision floating point values, use + * SDL_logf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the natural logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_logf + * \sa SDL_log10 + * \sa SDL_exp + */ +extern SDL_DECLSPEC double SDLCALL SDL_log(double x); + +/** + * Compute the natural logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on single-precision floating point values, use + * SDL_log for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the natural logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_log + * \sa SDL_expf + */ +extern SDL_DECLSPEC float SDLCALL SDL_logf(float x); + +/** + * Compute the base-10 logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on double-precision floating point values, use + * SDL_log10f for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_log10f + * \sa SDL_log + * \sa SDL_pow + */ +extern SDL_DECLSPEC double SDLCALL SDL_log10(double x); + +/** + * Compute the base-10 logarithm of `x`. + * + * Domain: `0 < x <= INF` + * + * Range: `-INF <= y <= INF` + * + * It is an error for `x` to be less than or equal to 0. + * + * This function operates on single-precision floating point values, use + * SDL_log10 for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than 0. + * \returns the logarithm of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_log10 + * \sa SDL_logf + * \sa SDL_powf + */ +extern SDL_DECLSPEC float SDLCALL SDL_log10f(float x); + +/** + * Split `x` into integer and fractional parts + * + * This function operates on double-precision floating point values, use + * SDL_modff for single-precision floats. + * + * \param x floating point value. + * \param y output pointer to store the integer part of `x`. + * \returns the fractional part of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_modff + * \sa SDL_trunc + * \sa SDL_fmod + */ +extern SDL_DECLSPEC double SDLCALL SDL_modf(double x, double *y); + +/** + * Split `x` into integer and fractional parts + * + * This function operates on single-precision floating point values, use + * SDL_modf for double-precision floats. + * + * \param x floating point value. + * \param y output pointer to store the integer part of `x`. + * \returns the fractional part of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_modf + * \sa SDL_truncf + * \sa SDL_fmodf + */ +extern SDL_DECLSPEC float SDLCALL SDL_modff(float x, float *y); + +/** + * Raise `x` to the power `y` + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-INF <= z <= INF` + * + * If `y` is the base of the natural logarithm (e), consider using SDL_exp + * instead. + * + * This function operates on double-precision floating point values, use + * SDL_powf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x the base. + * \param y the exponent. + * \returns `x` raised to the power `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_powf + * \sa SDL_exp + * \sa SDL_log + */ +extern SDL_DECLSPEC double SDLCALL SDL_pow(double x, double y); + +/** + * Raise `x` to the power `y` + * + * Domain: `-INF <= x <= INF`, `-INF <= y <= INF` + * + * Range: `-INF <= z <= INF` + * + * If `y` is the base of the natural logarithm (e), consider using SDL_exp + * instead. + * + * This function operates on single-precision floating point values, use + * SDL_pow for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x the base. + * \param y the exponent. + * \returns `x` raised to the power `y`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_pow + * \sa SDL_expf + * \sa SDL_logf + */ +extern SDL_DECLSPEC float SDLCALL SDL_powf(float x, float y); + +/** + * Round `x` to the nearest integer. + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on double-precision floating point values, use + * SDL_roundf for single-precision floats. To get the result as an integer + * type, use SDL_lround. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_roundf + * \sa SDL_lround + * \sa SDL_floor + * \sa SDL_ceil + * \sa SDL_trunc + */ +extern SDL_DECLSPEC double SDLCALL SDL_round(double x); + +/** + * Round `x` to the nearest integer. + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF`, y integer + * + * This function operates on single-precision floating point values, use + * SDL_round for double-precision floats. To get the result as an integer + * type, use SDL_lroundf. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_round + * \sa SDL_lroundf + * \sa SDL_floorf + * \sa SDL_ceilf + * \sa SDL_truncf + */ +extern SDL_DECLSPEC float SDLCALL SDL_roundf(float x); + +/** + * Round `x` to the nearest integer representable as a long + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `MIN_LONG <= y <= MAX_LONG` + * + * This function operates on double-precision floating point values, use + * SDL_lroundf for single-precision floats. To get the result as a + * floating-point type, use SDL_round. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_lroundf + * \sa SDL_round + * \sa SDL_floor + * \sa SDL_ceil + * \sa SDL_trunc + */ +extern SDL_DECLSPEC long SDLCALL SDL_lround(double x); + +/** + * Round `x` to the nearest integer representable as a long + * + * Rounds `x` to the nearest integer. Values halfway between integers will be + * rounded away from zero. + * + * Domain: `-INF <= x <= INF` + * + * Range: `MIN_LONG <= y <= MAX_LONG` + * + * This function operates on single-precision floating point values, use + * SDL_lround for double-precision floats. To get the result as a + * floating-point type, use SDL_roundf. + * + * \param x floating point value. + * \returns the nearest integer to `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_lround + * \sa SDL_roundf + * \sa SDL_floorf + * \sa SDL_ceilf + * \sa SDL_truncf + */ +extern SDL_DECLSPEC long SDLCALL SDL_lroundf(float x); + +/** + * Scale `x` by an integer power of two. + * + * Multiplies `x` by the `n`th power of the floating point radix (always 2). + * + * Domain: `-INF <= x <= INF`, `n` integer + * + * Range: `-INF <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_scalbnf for single-precision floats. + * + * \param x floating point value to be scaled. + * \param n integer exponent. + * \returns `x * 2^n`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_scalbnf + * \sa SDL_pow + */ +extern SDL_DECLSPEC double SDLCALL SDL_scalbn(double x, int n); + +/** + * Scale `x` by an integer power of two. + * + * Multiplies `x` by the `n`th power of the floating point radix (always 2). + * + * Domain: `-INF <= x <= INF`, `n` integer + * + * Range: `-INF <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_scalbn for double-precision floats. + * + * \param x floating point value to be scaled. + * \param n integer exponent. + * \returns `x * 2^n`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_scalbn + * \sa SDL_powf + */ +extern SDL_DECLSPEC float SDLCALL SDL_scalbnf(float x, int n); + +/** + * Compute the sine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on double-precision floating point values, use + * SDL_sinf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns sine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sinf + * \sa SDL_asin + * \sa SDL_cos + */ +extern SDL_DECLSPEC double SDLCALL SDL_sin(double x); + +/** + * Compute the sine of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-1 <= y <= 1` + * + * This function operates on single-precision floating point values, use + * SDL_sin for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns sine of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sin + * \sa SDL_asinf + * \sa SDL_cosf + */ +extern SDL_DECLSPEC float SDLCALL SDL_sinf(float x); + +/** + * Compute the square root of `x`. + * + * Domain: `0 <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_sqrtf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than or equal to 0. + * \returns square root of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sqrtf + */ +extern SDL_DECLSPEC double SDLCALL SDL_sqrt(double x); + +/** + * Compute the square root of `x`. + * + * Domain: `0 <= x <= INF` + * + * Range: `0 <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_sqrt for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value. Must be greater than or equal to 0. + * \returns square root of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_sqrt + */ +extern SDL_DECLSPEC float SDLCALL SDL_sqrtf(float x); + +/** + * Compute the tangent of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF` + * + * This function operates on double-precision floating point values, use + * SDL_tanf for single-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns tangent of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_tanf + * \sa SDL_sin + * \sa SDL_cos + * \sa SDL_atan + * \sa SDL_atan2 + */ +extern SDL_DECLSPEC double SDLCALL SDL_tan(double x); + +/** + * Compute the tangent of `x`. + * + * Domain: `-INF <= x <= INF` + * + * Range: `-INF <= y <= INF` + * + * This function operates on single-precision floating point values, use + * SDL_tan for double-precision floats. + * + * This function may use a different approximation across different versions, + * platforms and configurations. i.e, it can return a different value given + * the same input on different machines or operating systems, or if SDL is + * updated. + * + * \param x floating point value, in radians. + * \returns tangent of `x`. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_tan + * \sa SDL_sinf + * \sa SDL_cosf + * \sa SDL_atanf + * \sa SDL_atan2f + */ +extern SDL_DECLSPEC float SDLCALL SDL_tanf(float x); + +/** + * An opaque handle representing string encoding conversion state. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_iconv_open + */ +typedef struct SDL_iconv_data_t *SDL_iconv_t; + +/** + * This function allocates a context for the specified character set + * conversion. + * + * \param tocode The target character encoding, must not be NULL. + * \param fromcode The source character encoding, must not be NULL. + * \returns a handle that must be freed with SDL_iconv_close, or + * SDL_ICONV_ERROR on failure. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv + * \sa SDL_iconv_close + * \sa SDL_iconv_string + */ +extern SDL_DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode, + const char *fromcode); + +/** + * This function frees a context used for character set conversion. + * + * \param cd The character set conversion handle. + * \returns 0 on success, or -1 on failure. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv + * \sa SDL_iconv_open + * \sa SDL_iconv_string + */ +extern SDL_DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd); + +/** + * This function converts text between encodings, reading from and writing to + * a buffer. + * + * It returns the number of succesful conversions on success. On error, + * SDL_ICONV_E2BIG is returned when the output buffer is too small, or + * SDL_ICONV_EILSEQ is returned when an invalid input sequence is encountered, + * or SDL_ICONV_EINVAL is returned when an incomplete input sequence is + * encountered. + * + * On exit: + * + * - inbuf will point to the beginning of the next multibyte sequence. On + * error, this is the location of the problematic input sequence. On + * success, this is the end of the input sequence. + * - inbytesleft will be set to the number of bytes left to convert, which + * will be 0 on success. + * - outbuf will point to the location where to store the next output byte. + * - outbytesleft will be set to the number of bytes left in the output + * buffer. + * + * \param cd The character set conversion context, created in + * SDL_iconv_open(). + * \param inbuf Address of variable that points to the first character of the + * input sequence. + * \param inbytesleft The number of bytes in the input buffer. + * \param outbuf Address of variable that points to the output buffer. + * \param outbytesleft The number of bytes in the output buffer. + * \returns the number of conversions on success, or a negative error code. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv_open + * \sa SDL_iconv_close + * \sa SDL_iconv_string + */ +extern SDL_DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, const char **inbuf, + size_t *inbytesleft, char **outbuf, + size_t *outbytesleft); + +#define SDL_ICONV_ERROR (size_t)-1 /**< Generic error. Check SDL_GetError()? */ +#define SDL_ICONV_E2BIG (size_t)-2 /**< Output buffer was too small. */ +#define SDL_ICONV_EILSEQ (size_t)-3 /**< Invalid input sequence was encountered. */ +#define SDL_ICONV_EINVAL (size_t)-4 /**< Incomplete input sequence was encountered. */ + + +/** + * Helper function to convert a string's encoding in one call. + * + * This function converts a buffer or string between encodings in one pass. + * + * The string does not need to be NULL-terminated; this function operates on + * the number of bytes specified in `inbytesleft` whether there is a NULL + * character anywhere in the buffer. + * + * The returned string is owned by the caller, and should be passed to + * SDL_free when no longer needed. + * + * \param tocode the character encoding of the output string. Examples are + * "UTF-8", "UCS-4", etc. + * \param fromcode the character encoding of data in `inbuf`. + * \param inbuf the string to convert to a different encoding. + * \param inbytesleft the size of the input string _in bytes_. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_iconv_open + * \sa SDL_iconv_close + * \sa SDL_iconv + */ +extern SDL_DECLSPEC char * SDLCALL SDL_iconv_string(const char *tocode, + const char *fromcode, + const char *inbuf, + size_t inbytesleft); + +/* Some helper macros for common SDL_iconv_string cases... */ + +/** + * Convert a UTF-8 string to the current locale's character encoding. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_utf8_locale(S) SDL_iconv_string("", "UTF-8", S, SDL_strlen(S)+1) + +/** + * Convert a UTF-8 string to UCS-2. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2", "UTF-8", S, SDL_strlen(S)+1) + +/** + * Convert a UTF-8 string to UCS-4. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_utf8_ucs4(S) (Uint32 *)SDL_iconv_string("UCS-4", "UTF-8", S, SDL_strlen(S)+1) + +/** + * Convert a wchar_t string to UTF-8. + * + * This is a helper macro that might be more clear than calling + * SDL_iconv_string directly. However, it double-evaluates its parameter, so + * do not use an expression with side-effects here. + * + * \param S the string to convert. + * \returns a new string, converted to the new encoding, or NULL on error. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_iconv_wchar_utf8(S) SDL_iconv_string("UTF-8", "WCHAR_T", (char *)S, (SDL_wcslen(S)+1)*sizeof(wchar_t)) + + +/* force builds using Clang's static analysis tools to use literal C runtime + here, since there are possibly tests that are ineffective otherwise. */ +#if defined(__clang_analyzer__) && !defined(SDL_DISABLE_ANALYZE_MACROS) + +/* The analyzer knows about strlcpy even when the system doesn't provide it */ +#if !defined(HAVE_STRLCPY) && !defined(strlcpy) +size_t strlcpy(char *dst, const char *src, size_t size); +#endif + +/* The analyzer knows about strlcat even when the system doesn't provide it */ +#if !defined(HAVE_STRLCAT) && !defined(strlcat) +size_t strlcat(char *dst, const char *src, size_t size); +#endif + +#if !defined(HAVE_WCSLCPY) && !defined(wcslcpy) +size_t wcslcpy(wchar_t *dst, const wchar_t *src, size_t size); +#endif + +#if !defined(HAVE_WCSLCAT) && !defined(wcslcat) +size_t wcslcat(wchar_t *dst, const wchar_t *src, size_t size); +#endif + +#ifndef _WIN32 +/* strdup is not ANSI but POSIX, and its prototype might be hidden... */ +/* not for windows: might conflict with string.h where strdup may have + * dllimport attribute: https://github.com/libsdl-org/SDL/issues/12948 */ +char *strdup(const char *str); +#endif + +/* Starting LLVM 16, the analyser errors out if these functions do not have + their prototype defined (clang-diagnostic-implicit-function-declaration) */ +#include +#include + +#define SDL_malloc malloc +#define SDL_calloc calloc +#define SDL_realloc realloc +#define SDL_free free +#ifndef SDL_memcpy +#define SDL_memcpy memcpy +#endif +#ifndef SDL_memmove +#define SDL_memmove memmove +#endif +#ifndef SDL_memset +#define SDL_memset memset +#endif +#define SDL_memcmp memcmp +#define SDL_strlcpy strlcpy +#define SDL_strlcat strlcat +#define SDL_strlen strlen +#define SDL_wcslen wcslen +#define SDL_wcslcpy wcslcpy +#define SDL_wcslcat wcslcat +#define SDL_strdup strdup +#define SDL_wcsdup wcsdup +#define SDL_strchr strchr +#define SDL_strrchr strrchr +#define SDL_strstr strstr +#define SDL_wcsstr wcsstr +#define SDL_strtok_r strtok_r +#define SDL_strcmp strcmp +#define SDL_wcscmp wcscmp +#define SDL_strncmp strncmp +#define SDL_wcsncmp wcsncmp +#define SDL_strcasecmp strcasecmp +#define SDL_strncasecmp strncasecmp +#define SDL_strpbrk strpbrk +#define SDL_sscanf sscanf +#define SDL_vsscanf vsscanf +#define SDL_snprintf snprintf +#define SDL_vsnprintf vsnprintf +#endif + +/** + * Multiply two integers, checking for overflow. + * + * If `a * b` would overflow, return false. + * + * Otherwise store `a * b` via ret and return true. + * + * \param a the multiplicand. + * \param b the multiplier. + * \param ret on non-overflow output, stores the multiplication result, may + * not be NULL. + * \returns false on overflow, true if result is multiplied without overflow. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_size_mul_check_overflow(size_t a, size_t b, size_t *ret) +{ + if (a != 0 && b > SDL_SIZE_MAX / a) { + return false; + } + *ret = a * b; + return true; +} + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if SDL_HAS_BUILTIN(__builtin_mul_overflow) +/* This needs to be wrapped in an inline rather than being a direct #define, + * because __builtin_mul_overflow() is type-generic, but we want to be + * consistent about interpreting a and b as size_t. */ +SDL_FORCE_INLINE bool SDL_size_mul_check_overflow_builtin(size_t a, size_t b, size_t *ret) +{ + return (__builtin_mul_overflow(a, b, ret) == 0); +} +#define SDL_size_mul_check_overflow(a, b, ret) SDL_size_mul_check_overflow_builtin(a, b, ret) +#endif +#endif + +/** + * Add two integers, checking for overflow. + * + * If `a + b` would overflow, return false. + * + * Otherwise store `a + b` via ret and return true. + * + * \param a the first addend. + * \param b the second addend. + * \param ret on non-overflow output, stores the addition result, may not be + * NULL. + * \returns false on overflow, true if result is added without overflow. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +SDL_FORCE_INLINE bool SDL_size_add_check_overflow(size_t a, size_t b, size_t *ret) +{ + if (b > SDL_SIZE_MAX - a) { + return false; + } + *ret = a + b; + return true; +} + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +#if SDL_HAS_BUILTIN(__builtin_add_overflow) +/* This needs to be wrapped in an inline rather than being a direct #define, + * the same as the call to __builtin_mul_overflow() above. */ +SDL_FORCE_INLINE bool SDL_size_add_check_overflow_builtin(size_t a, size_t b, size_t *ret) +{ + return (__builtin_add_overflow(a, b, ret) == 0); +} +#define SDL_size_add_check_overflow(a, b, ret) SDL_size_add_check_overflow_builtin(a, b, ret) +#endif +#endif + +/* This is a generic function pointer which should be cast to the type you expect */ +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/** + * A generic function pointer. + * + * In theory, generic function pointers should use this, instead of `void *`, + * since some platforms could treat code addresses differently than data + * addresses. Although in current times no popular platforms make this + * distinction, it is more correct and portable to use the correct type for a + * generic pointer. + * + * If for some reason you need to force this typedef to be an actual `void *`, + * perhaps to work around a compiler or existing code, you can define + * `SDL_FUNCTION_POINTER_IS_VOID_POINTER` before including any SDL headers. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void (*SDL_FunctionPointer)(void); +#elif defined(SDL_FUNCTION_POINTER_IS_VOID_POINTER) +typedef void *SDL_FunctionPointer; +#else +typedef void (*SDL_FunctionPointer)(void); +#endif + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_stdinc_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_storage.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_storage.h new file mode 100644 index 0000000..6837eba --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_storage.h @@ -0,0 +1,682 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryStorage + * + * The storage API is a high-level API designed to abstract away the + * portability issues that come up when using something lower-level (in SDL's + * case, this sits on top of the [Filesystem](CategoryFilesystem) and + * [IOStream](CategoryIOStream) subsystems). It is significantly more + * restrictive than a typical filesystem API, for a number of reasons: + * + * 1. **What to Access:** A common pitfall with existing filesystem APIs is + * the assumption that all storage is monolithic. However, many other + * platforms (game consoles in particular) are more strict about what _type_ + * of filesystem is being accessed; for example, game content and user data + * are usually two separate storage devices with entirely different + * characteristics (and possibly different low-level APIs altogether!). + * + * 2. **How to Access:** Another common mistake is applications assuming that + * all storage is universally writeable - again, many platforms treat game + * content and user data as two separate storage devices, and only user data + * is writeable while game content is read-only. + * + * 3. **When to Access:** The most common portability issue with filesystem + * access is _timing_ - you cannot always assume that the storage device is + * always accessible all of the time, nor can you assume that there are no + * limits to how long you have access to a particular device. + * + * Consider the following example: + * + * ```c + * void ReadGameData(void) + * { + * extern char** fileNames; + * extern size_t numFiles; + * for (size_t i = 0; i < numFiles; i += 1) { + * FILE *data = fopen(fileNames[i], "rwb"); + * if (data == NULL) { + * // Something bad happened! + * } else { + * // A bunch of stuff happens here + * fclose(data); + * } + * } + * } + * + * void ReadSave(void) + * { + * FILE *save = fopen("saves/save0.sav", "rb"); + * if (save == NULL) { + * // Something bad happened! + * } else { + * // A bunch of stuff happens here + * fclose(save); + * } + * } + * + * void WriteSave(void) + * { + * FILE *save = fopen("saves/save0.sav", "wb"); + * if (save == NULL) { + * // Something bad happened! + * } else { + * // A bunch of stuff happens here + * fclose(save); + * } + * } + * ``` + * + * Going over the bullet points again: + * + * 1. **What to Access:** This code accesses a global filesystem; game data + * and saves are all presumed to be in the current working directory (which + * may or may not be the game's installation folder!). + * + * 2. **How to Access:** This code assumes that content paths are writeable, + * and that save data is also writeable despite being in the same location as + * the game data. + * + * 3. **When to Access:** This code assumes that they can be called at any + * time, since the filesystem is always accessible and has no limits on how + * long the filesystem is being accessed. + * + * Due to these assumptions, the filesystem code is not portable and will fail + * under these common scenarios: + * + * - The game is installed on a device that is read-only, both content loading + * and game saves will fail or crash outright + * - Game/User storage is not implicitly mounted, so no files will be found + * for either scenario when a platform requires explicitly mounting + * filesystems + * - Save data may not be safe since the I/O is not being flushed or + * validated, so an error occurring elsewhere in the program may result in + * missing/corrupted save data + * + * When using SDL_Storage, these types of problems are virtually impossible to + * trip over: + * + * ```c + * void ReadGameData(void) + * { + * extern char** fileNames; + * extern size_t numFiles; + * + * SDL_Storage *title = SDL_OpenTitleStorage(NULL, 0); + * if (title == NULL) { + * // Something bad happened! + * } + * while (!SDL_StorageReady(title)) { + * SDL_Delay(1); + * } + * + * for (size_t i = 0; i < numFiles; i += 1) { + * void* dst; + * Uint64 dstLen = 0; + * + * if (SDL_GetStorageFileSize(title, fileNames[i], &dstLen) && dstLen > 0) { + * dst = SDL_malloc(dstLen); + * if (SDL_ReadStorageFile(title, fileNames[i], dst, dstLen)) { + * // A bunch of stuff happens here + * } else { + * // Something bad happened! + * } + * SDL_free(dst); + * } else { + * // Something bad happened! + * } + * } + * + * SDL_CloseStorage(title); + * } + * + * void ReadSave(void) + * { + * SDL_Storage *user = SDL_OpenUserStorage("libsdl", "Storage Example", 0); + * if (user == NULL) { + * // Something bad happened! + * } + * while (!SDL_StorageReady(user)) { + * SDL_Delay(1); + * } + * + * Uint64 saveLen = 0; + * if (SDL_GetStorageFileSize(user, "save0.sav", &saveLen) && saveLen > 0) { + * void* dst = SDL_malloc(saveLen); + * if (SDL_ReadStorageFile(user, "save0.sav", dst, saveLen)) { + * // A bunch of stuff happens here + * } else { + * // Something bad happened! + * } + * SDL_free(dst); + * } else { + * // Something bad happened! + * } + * + * SDL_CloseStorage(user); + * } + * + * void WriteSave(void) + * { + * SDL_Storage *user = SDL_OpenUserStorage("libsdl", "Storage Example", 0); + * if (user == NULL) { + * // Something bad happened! + * } + * while (!SDL_StorageReady(user)) { + * SDL_Delay(1); + * } + * + * extern void *saveData; // A bunch of stuff happened here... + * extern Uint64 saveLen; + * if (!SDL_WriteStorageFile(user, "save0.sav", saveData, saveLen)) { + * // Something bad happened! + * } + * + * SDL_CloseStorage(user); + * } + * ``` + * + * Note the improvements that SDL_Storage makes: + * + * 1. **What to Access:** This code explicitly reads from a title or user + * storage device based on the context of the function. + * + * 2. **How to Access:** This code explicitly uses either a read or write + * function based on the context of the function. + * + * 3. **When to Access:** This code explicitly opens the device when it needs + * to, and closes it when it is finished working with the filesystem. + * + * The result is an application that is significantly more robust against the + * increasing demands of platforms and their filesystems! + * + * A publicly available example of an SDL_Storage backend is the + * [Steam Cloud](https://partner.steamgames.com/doc/features/cloud) + * backend - you can initialize Steamworks when starting the program, and then + * SDL will recognize that Steamworks is initialized and automatically use + * ISteamRemoteStorage when the application opens user storage. More + * importantly, when you _open_ storage it knows to begin a "batch" of + * filesystem operations, and when you _close_ storage it knows to end and + * flush the batch. This is used by Steam to support + * [Dynamic Cloud Sync](https://steamcommunity.com/groups/steamworks/announcements/detail/3142949576401813670) + * ; users can save data on one PC, put the device to sleep, and then continue + * playing on another PC (and vice versa) with the save data fully + * synchronized across all devices, allowing for a seamless experience without + * having to do full restarts of the program. + * + * ## Notes on valid paths + * + * All paths in the Storage API use Unix-style path separators ('/'). Using a + * different path separator will not work, even if the underlying platform + * would otherwise accept it. This is to keep code using the Storage API + * portable between platforms and Storage implementations and simplify app + * code. + * + * Paths with relative directories ("." and "..") are forbidden by the Storage + * API. + * + * All valid UTF-8 strings (discounting the NULL terminator character and the + * '/' path separator) are usable for filenames, however, an underlying + * Storage implementation may not support particularly strange sequences and + * refuse to create files with those names, etc. + */ + +#ifndef SDL_storage_h_ +#define SDL_storage_h_ + +#include +#include +#include +#include + +#include + +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Function interface for SDL_Storage. + * + * Apps that want to supply a custom implementation of SDL_Storage will fill + * in all the functions in this struct, and then pass it to SDL_OpenStorage to + * create a custom SDL_Storage object. + * + * It is not usually necessary to do this; SDL provides standard + * implementations for many things you might expect to do with an SDL_Storage. + * + * This structure should be initialized using SDL_INIT_INTERFACE() + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_INIT_INTERFACE + */ +typedef struct SDL_StorageInterface +{ + /* The version of this interface */ + Uint32 version; + + /* Called when the storage is closed */ + bool (SDLCALL *close)(void *userdata); + + /* Optional, returns whether the storage is currently ready for access */ + bool (SDLCALL *ready)(void *userdata); + + /* Enumerate a directory, optional for write-only storage */ + bool (SDLCALL *enumerate)(void *userdata, const char *path, SDL_EnumerateDirectoryCallback callback, void *callback_userdata); + + /* Get path information, optional for write-only storage */ + bool (SDLCALL *info)(void *userdata, const char *path, SDL_PathInfo *info); + + /* Read a file from storage, optional for write-only storage */ + bool (SDLCALL *read_file)(void *userdata, const char *path, void *destination, Uint64 length); + + /* Write a file to storage, optional for read-only storage */ + bool (SDLCALL *write_file)(void *userdata, const char *path, const void *source, Uint64 length); + + /* Create a directory, optional for read-only storage */ + bool (SDLCALL *mkdir)(void *userdata, const char *path); + + /* Remove a file or empty directory, optional for read-only storage */ + bool (SDLCALL *remove)(void *userdata, const char *path); + + /* Rename a path, optional for read-only storage */ + bool (SDLCALL *rename)(void *userdata, const char *oldpath, const char *newpath); + + /* Copy a file, optional for read-only storage */ + bool (SDLCALL *copy)(void *userdata, const char *oldpath, const char *newpath); + + /* Get the space remaining, optional for read-only storage */ + Uint64 (SDLCALL *space_remaining)(void *userdata); +} SDL_StorageInterface; + +/* Check the size of SDL_StorageInterface + * + * If this assert fails, either the compiler is padding to an unexpected size, + * or the interface has been updated and this should be updated to match and + * the code using this interface should be updated to handle the old version. + */ +SDL_COMPILE_TIME_ASSERT(SDL_StorageInterface_SIZE, + (sizeof(void *) == 4 && sizeof(SDL_StorageInterface) == 48) || + (sizeof(void *) == 8 && sizeof(SDL_StorageInterface) == 96)); + +/** + * An abstract interface for filesystem access. + * + * This is an opaque datatype. One can create this object using standard SDL + * functions like SDL_OpenTitleStorage or SDL_OpenUserStorage, etc, or create + * an object with a custom implementation using SDL_OpenStorage. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Storage SDL_Storage; + +/** + * Opens up a read-only container for the application's filesystem. + * + * \param override a path to override the backend's default title root. + * \param props a property list that may contain backend-specific information. + * \returns a title storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_OpenUserStorage + * \sa SDL_ReadStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenTitleStorage(const char *override, SDL_PropertiesID props); + +/** + * Opens up a container for a user's unique read/write filesystem. + * + * While title storage can generally be kept open throughout runtime, user + * storage should only be opened when the client is ready to read/write files. + * This allows the backend to properly batch file operations and flush them + * when the container has been closed; ensuring safe and optimal save I/O. + * + * \param org the name of your organization. + * \param app the name of your application. + * \param props a property list that may contain backend-specific information. + * \returns a user storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_OpenTitleStorage + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenUserStorage(const char *org, const char *app, SDL_PropertiesID props); + +/** + * Opens up a container for local filesystem storage. + * + * This is provided for development and tools. Portable applications should + * use SDL_OpenTitleStorage() for access to game data and + * SDL_OpenUserStorage() for access to user data. + * + * \param path the base path prepended to all storage paths, or NULL for no + * base path. + * \returns a filesystem storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_OpenTitleStorage + * \sa SDL_OpenUserStorage + * \sa SDL_ReadStorageFile + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenFileStorage(const char *path); + +/** + * Opens up a container using a client-provided storage interface. + * + * Applications do not need to use this function unless they are providing + * their own SDL_Storage implementation. If you just need an SDL_Storage, you + * should use the built-in implementations in SDL, like SDL_OpenTitleStorage() + * or SDL_OpenUserStorage(). + * + * This function makes a copy of `iface` and the caller does not need to keep + * it around after this call. + * + * \param iface the interface that implements this storage, initialized using + * SDL_INIT_INTERFACE(). + * \param userdata the pointer that will be passed to the interface functions. + * \returns a storage container on success or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CloseStorage + * \sa SDL_GetStorageFileSize + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_INIT_INTERFACE + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC SDL_Storage * SDLCALL SDL_OpenStorage(const SDL_StorageInterface *iface, void *userdata); + +/** + * Closes and frees a storage container. + * + * \param storage a storage container to close. + * \returns true if the container was freed with no errors, false otherwise; + * call SDL_GetError() for more information. Even if the function + * returns an error, the container data will be freed; the error is + * only for informational purposes. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_OpenFileStorage + * \sa SDL_OpenStorage + * \sa SDL_OpenTitleStorage + * \sa SDL_OpenUserStorage + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CloseStorage(SDL_Storage *storage); + +/** + * Checks if the storage container is ready to use. + * + * This function should be called in regular intervals until it returns true - + * however, it is not recommended to spinwait on this call, as the backend may + * depend on a synchronous message loop. You might instead poll this in your + * game's main loop while processing events and drawing a loading screen. + * + * \param storage a storage container to query. + * \returns true if the container is ready, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StorageReady(SDL_Storage *storage); + +/** + * Query the size of a file within a storage container. + * + * \param storage a storage container to query. + * \param path the relative path of the file to query. + * \param length a pointer to be filled with the file's length. + * \returns true if the file could be queried or false on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetStorageFileSize(SDL_Storage *storage, const char *path, Uint64 *length); + +/** + * Synchronously read a file from a storage container into a client-provided + * buffer. + * + * The value of `length` must match the length of the file exactly; call + * SDL_GetStorageFileSize() to get this value. This behavior may be relaxed in + * a future release. + * + * \param storage a storage container to read from. + * \param path the relative path of the file to read. + * \param destination a client-provided buffer to read the file into. + * \param length the length of the destination buffer. + * \returns true if the file was read or false on failure; call SDL_GetError() + * for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetStorageFileSize + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadStorageFile(SDL_Storage *storage, const char *path, void *destination, Uint64 length); + +/** + * Synchronously write a file from client memory into a storage container. + * + * \param storage a storage container to write to. + * \param path the relative path of the file to write. + * \param source a client-provided buffer to write from. + * \param length the length of the source buffer. + * \returns true if the file was written or false on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetStorageSpaceRemaining + * \sa SDL_ReadStorageFile + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteStorageFile(SDL_Storage *storage, const char *path, const void *source, Uint64 length); + +/** + * Create a directory in a writable storage container. + * + * \param storage a storage container. + * \param path the path of the directory to create. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CreateStorageDirectory(SDL_Storage *storage, const char *path); + +/** + * Enumerate a directory in a storage container through a callback function. + * + * This function provides every directory entry through an app-provided + * callback, called once for each directory entry, until all results have been + * provided or the callback returns either SDL_ENUM_SUCCESS or + * SDL_ENUM_FAILURE. + * + * This will return false if there was a system problem in general, or if a + * callback returns SDL_ENUM_FAILURE. A successful return means a callback + * returned SDL_ENUM_SUCCESS to halt enumeration, or all directory entries + * were enumerated. + * + * If `path` is NULL, this is treated as a request to enumerate the root of + * the storage container's tree. An empty string also works for this. + * + * \param storage a storage container. + * \param path the path of the directory to enumerate, or NULL for the root. + * \param callback a function that is called for each entry in the directory. + * \param userdata a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnumerateStorageDirectory(SDL_Storage *storage, const char *path, SDL_EnumerateDirectoryCallback callback, void *userdata); + +/** + * Remove a file or an empty directory in a writable storage container. + * + * \param storage a storage container. + * \param path the path of the directory to enumerate. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RemoveStoragePath(SDL_Storage *storage, const char *path); + +/** + * Rename a file or directory in a writable storage container. + * + * \param storage a storage container. + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RenameStoragePath(SDL_Storage *storage, const char *oldpath, const char *newpath); + +/** + * Copy a file in a writable storage container. + * + * \param storage a storage container. + * \param oldpath the old path. + * \param newpath the new path. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_CopyStorageFile(SDL_Storage *storage, const char *oldpath, const char *newpath); + +/** + * Get information about a filesystem path in a storage container. + * + * \param storage a storage container. + * \param path the path to query. + * \param info a pointer filled in with information about the path, or NULL to + * check for the existence of a file. + * \returns true on success or false if the file doesn't exist, or another + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetStoragePathInfo(SDL_Storage *storage, const char *path, SDL_PathInfo *info); + +/** + * Queries the remaining space in a storage container. + * + * \param storage a storage container to query. + * \returns the amount of remaining space, in bytes. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_StorageReady + * \sa SDL_WriteStorageFile + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetStorageSpaceRemaining(SDL_Storage *storage); + +/** + * Enumerate a directory tree, filtered by pattern, and return a list. + * + * Files are filtered out if they don't match the string in `pattern`, which + * may contain wildcard characters `*` (match everything) and `?` (match one + * character). If pattern is NULL, no filtering is done and all results are + * returned. Subdirectories are permitted, and are specified with a path + * separator of '/'. Wildcard characters `*` and `?` never match a path + * separator. + * + * `flags` may be set to SDL_GLOB_CASEINSENSITIVE to make the pattern matching + * case-insensitive. + * + * The returned array is always NULL-terminated, for your iterating + * convenience, but if `count` is non-NULL, on return it will contain the + * number of items in the array, not counting the NULL terminator. + * + * If `path` is NULL, this is treated as a request to enumerate the root of + * the storage container's tree. An empty string also works for this. + * + * \param storage a storage container. + * \param path the path of the directory to enumerate, or NULL for the root. + * \param pattern the pattern that files in the directory must match. Can be + * NULL. + * \param flags `SDL_GLOB_*` bitflags that affect this search. + * \param count on return, will be set to the number of items in the returned + * array. Can be NULL. + * \returns an array of strings on success or NULL on failure; call + * SDL_GetError() for more information. The caller should pass the + * returned pointer to SDL_free when done with it. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \threadsafety It is safe to call this function from any thread, assuming + * the `storage` object is thread-safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC char ** SDLCALL SDL_GlobStorageDirectory(SDL_Storage *storage, const char *path, const char *pattern, SDL_GlobFlags flags, int *count); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_storage_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_surface.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_surface.h new file mode 100644 index 0000000..15fce04 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_surface.h @@ -0,0 +1,1563 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategorySurface + * + * SDL surfaces are buffers of pixels in system RAM. These are useful for + * passing around and manipulating images that are not stored in GPU memory. + * + * SDL_Surface makes serious efforts to manage images in various formats, and + * provides a reasonable toolbox for transforming the data, including copying + * between surfaces, filling rectangles in the image data, etc. + * + * There is also a simple .bmp loader, SDL_LoadBMP(). SDL itself does not + * provide loaders for various other file formats, but there are several + * excellent external libraries that do, including its own satellite library, + * SDL_image: + * + * https://github.com/libsdl-org/SDL_image + */ + +#ifndef SDL_surface_h_ +#define SDL_surface_h_ + +#include +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The flags on an SDL_Surface. + * + * These are generally considered read-only. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_SurfaceFlags; + +#define SDL_SURFACE_PREALLOCATED 0x00000001u /**< Surface uses preallocated pixel memory */ +#define SDL_SURFACE_LOCK_NEEDED 0x00000002u /**< Surface needs to be locked to access pixels */ +#define SDL_SURFACE_LOCKED 0x00000004u /**< Surface is currently locked */ +#define SDL_SURFACE_SIMD_ALIGNED 0x00000008u /**< Surface uses pixel memory allocated with SDL_aligned_alloc() */ + +/** + * Evaluates to true if the surface needs to be locked before access. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MUSTLOCK(S) (((S)->flags & SDL_SURFACE_LOCK_NEEDED) == SDL_SURFACE_LOCK_NEEDED) + +/** + * The scaling mode. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ScaleMode +{ + SDL_SCALEMODE_INVALID = -1, + SDL_SCALEMODE_NEAREST, /**< nearest pixel sampling */ + SDL_SCALEMODE_LINEAR /**< linear filtering */ +} SDL_ScaleMode; + +/** + * The flip mode. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_FlipMode +{ + SDL_FLIP_NONE, /**< Do not flip */ + SDL_FLIP_HORIZONTAL, /**< flip horizontally */ + SDL_FLIP_VERTICAL /**< flip vertically */ +} SDL_FlipMode; + +#ifndef SDL_INTERNAL + +/** + * A collection of pixels used in software blitting. + * + * Pixels are arranged in memory in rows, with the top row first. Each row + * occupies an amount of memory given by the pitch (sometimes known as the row + * stride in non-SDL APIs). + * + * Within each row, pixels are arranged from left to right until the width is + * reached. Each pixel occupies a number of bits appropriate for its format, + * with most formats representing each pixel as one or more whole bytes (in + * some indexed formats, instead multiple pixels are packed into each byte), + * and a byte order given by the format. After encoding all pixels, any + * remaining bytes to reach the pitch are used as padding to reach a desired + * alignment, and have undefined contents. + * + * When a surface holds YUV format data, the planes are assumed to be + * contiguous without padding between them, e.g. a 32x32 surface in NV12 + * format with a pitch of 32 would consist of 32x32 bytes of Y plane followed + * by 32x16 bytes of UV plane. + * + * When a surface holds MJPG format data, pixels points at the compressed JPEG + * image and pitch is the length of that data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateSurface + * \sa SDL_DestroySurface + */ +struct SDL_Surface +{ + SDL_SurfaceFlags flags; /**< The flags of the surface, read-only */ + SDL_PixelFormat format; /**< The format of the surface, read-only */ + int w; /**< The width of the surface, read-only. */ + int h; /**< The height of the surface, read-only. */ + int pitch; /**< The distance in bytes between rows of pixels, read-only */ + void *pixels; /**< A pointer to the pixels of the surface, the pixels are writeable if non-NULL */ + + int refcount; /**< Application reference count, used when freeing surface */ + + void *reserved; /**< Reserved for internal use */ +}; +#endif /* !SDL_INTERNAL */ + +typedef struct SDL_Surface SDL_Surface; + +/** + * Allocate a new surface with a specific pixel format. + * + * The pixels of the new surface are initialized to zero. + * + * \param width the width of the surface. + * \param height the height of the surface. + * \param format the SDL_PixelFormat for the new surface's pixel format. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSurfaceFrom + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_CreateSurface(int width, int height, SDL_PixelFormat format); + +/** + * Allocate a new surface with a specific pixel format and existing pixel + * data. + * + * No copy is made of the pixel data. Pixel data is not managed automatically; + * you must free the surface before you free the pixel data. + * + * Pitch is the offset in bytes from one row of pixels to the next, e.g. + * `width*4` for `SDL_PIXELFORMAT_RGBA8888`. + * + * You may pass NULL for pixels and 0 for pitch to create a surface that you + * will fill in with valid values later. + * + * \param width the width of the surface. + * \param height the height of the surface. + * \param format the SDL_PixelFormat for the new surface's pixel format. + * \param pixels a pointer to existing pixel data. + * \param pitch the number of bytes between each row, including padding. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSurface + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_CreateSurfaceFrom(int width, int height, SDL_PixelFormat format, void *pixels, int pitch); + +/** + * Free a surface. + * + * It is safe to pass NULL to this function. + * + * \param surface the SDL_Surface to free. + * + * \threadsafety No other thread should be using the surface when it is freed. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateSurface + * \sa SDL_CreateSurfaceFrom + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroySurface(SDL_Surface *surface); + +/** + * Get the properties associated with a surface. + * + * The following properties are understood by SDL: + * + * - `SDL_PROP_SURFACE_SDR_WHITE_POINT_FLOAT`: for HDR10 and floating point + * surfaces, this defines the value of 100% diffuse white, with higher + * values being displayed in the High Dynamic Range headroom. This defaults + * to 203 for HDR10 surfaces and 1.0 for floating point surfaces. + * - `SDL_PROP_SURFACE_HDR_HEADROOM_FLOAT`: for HDR10 and floating point + * surfaces, this defines the maximum dynamic range used by the content, in + * terms of the SDR white point. This defaults to 0.0, which disables tone + * mapping. + * - `SDL_PROP_SURFACE_TONEMAP_OPERATOR_STRING`: the tone mapping operator + * used when compressing from a surface with high dynamic range to another + * with lower dynamic range. Currently this supports "chrome", which uses + * the same tone mapping that Chrome uses for HDR content, the form "*=N", + * where N is a floating point scale factor applied in linear space, and + * "none", which disables tone mapping. This defaults to "chrome". + * - `SDL_PROP_SURFACE_HOTSPOT_X_NUMBER`: the hotspot pixel offset from the + * left edge of the image, if this surface is being used as a cursor. + * - `SDL_PROP_SURFACE_HOTSPOT_Y_NUMBER`: the hotspot pixel offset from the + * top edge of the image, if this surface is being used as a cursor. + * + * \param surface the SDL_Surface structure to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetSurfaceProperties(SDL_Surface *surface); + +#define SDL_PROP_SURFACE_SDR_WHITE_POINT_FLOAT "SDL.surface.SDR_white_point" +#define SDL_PROP_SURFACE_HDR_HEADROOM_FLOAT "SDL.surface.HDR_headroom" +#define SDL_PROP_SURFACE_TONEMAP_OPERATOR_STRING "SDL.surface.tonemap" +#define SDL_PROP_SURFACE_HOTSPOT_X_NUMBER "SDL.surface.hotspot.x" +#define SDL_PROP_SURFACE_HOTSPOT_Y_NUMBER "SDL.surface.hotspot.y" + +/** + * Set the colorspace used by a surface. + * + * Setting the colorspace doesn't change the pixels, only how they are + * interpreted in color operations. + * + * \param surface the SDL_Surface structure to update. + * \param colorspace an SDL_Colorspace value describing the surface + * colorspace. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorspace + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceColorspace(SDL_Surface *surface, SDL_Colorspace colorspace); + +/** + * Get the colorspace used by a surface. + * + * The colorspace defaults to SDL_COLORSPACE_SRGB_LINEAR for floating point + * formats, SDL_COLORSPACE_HDR10 for 10-bit formats, SDL_COLORSPACE_SRGB for + * other RGB surfaces and SDL_COLORSPACE_BT709_FULL for YUV textures. + * + * \param surface the SDL_Surface structure to query. + * \returns the colorspace used by the surface, or SDL_COLORSPACE_UNKNOWN if + * the surface is NULL. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceColorspace + */ +extern SDL_DECLSPEC SDL_Colorspace SDLCALL SDL_GetSurfaceColorspace(SDL_Surface *surface); + +/** + * Create a palette and associate it with a surface. + * + * This function creates a palette compatible with the provided surface. The + * palette is then returned for you to modify, and the surface will + * automatically use the new palette in future operations. You do not need to + * destroy the returned palette, it will be freed when the reference count + * reaches 0, usually when the surface is destroyed. + * + * Bitmap surfaces (with format SDL_PIXELFORMAT_INDEX1LSB or + * SDL_PIXELFORMAT_INDEX1MSB) will have the palette initialized with 0 as + * white and 1 as black. Other surfaces will get a palette initialized with + * white in every entry. + * + * If this function is called for a surface that already has a palette, a new + * palette will be created to replace it. + * + * \param surface the SDL_Surface structure to update. + * \returns a new SDL_Palette structure on success or NULL on failure (e.g. if + * the surface didn't have an index format); call SDL_GetError() for + * more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetPaletteColors + */ +extern SDL_DECLSPEC SDL_Palette * SDLCALL SDL_CreateSurfacePalette(SDL_Surface *surface); + +/** + * Set the palette used by a surface. + * + * A single palette can be shared with many surfaces. + * + * \param surface the SDL_Surface structure to update. + * \param palette the SDL_Palette structure to use. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePalette + * \sa SDL_GetSurfacePalette + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfacePalette(SDL_Surface *surface, SDL_Palette *palette); + +/** + * Get the palette used by a surface. + * + * \param surface the SDL_Surface structure to query. + * \returns a pointer to the palette used by the surface, or NULL if there is + * no palette used. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfacePalette + */ +extern SDL_DECLSPEC SDL_Palette * SDLCALL SDL_GetSurfacePalette(SDL_Surface *surface); + +/** + * Add an alternate version of a surface. + * + * This function adds an alternate version of this surface, usually used for + * content with high DPI representations like cursors or icons. The size, + * format, and content do not need to match the original surface, and these + * alternate versions will not be updated when the original surface changes. + * + * This function adds a reference to the alternate version, so you should call + * SDL_DestroySurface() on the image after this call. + * + * \param surface the SDL_Surface structure to update. + * \param image a pointer to an alternate SDL_Surface to associate with this + * surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveSurfaceAlternateImages + * \sa SDL_GetSurfaceImages + * \sa SDL_SurfaceHasAlternateImages + */ +extern SDL_DECLSPEC bool SDLCALL SDL_AddSurfaceAlternateImage(SDL_Surface *surface, SDL_Surface *image); + +/** + * Return whether a surface has alternate versions available. + * + * \param surface the SDL_Surface structure to query. + * \returns true if alternate versions are available or false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddSurfaceAlternateImage + * \sa SDL_RemoveSurfaceAlternateImages + * \sa SDL_GetSurfaceImages + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SurfaceHasAlternateImages(SDL_Surface *surface); + +/** + * Get an array including all versions of a surface. + * + * This returns all versions of a surface, with the surface being queried as + * the first element in the returned array. + * + * Freeing the array of surfaces does not affect the surfaces in the array. + * They are still referenced by the surface being queried and will be cleaned + * up normally. + * + * \param surface the SDL_Surface structure to query. + * \param count a pointer filled in with the number of surface pointers + * returned, may be NULL. + * \returns a NULL terminated array of SDL_Surface pointers or NULL on + * failure; call SDL_GetError() for more information. This should be + * freed with SDL_free() when it is no longer needed. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddSurfaceAlternateImage + * \sa SDL_RemoveSurfaceAlternateImages + * \sa SDL_SurfaceHasAlternateImages + */ +extern SDL_DECLSPEC SDL_Surface ** SDLCALL SDL_GetSurfaceImages(SDL_Surface *surface, int *count); + +/** + * Remove all alternate versions of a surface. + * + * This function removes a reference from all the alternative versions, + * destroying them if this is the last reference to them. + * + * \param surface the SDL_Surface structure to update. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddSurfaceAlternateImage + * \sa SDL_GetSurfaceImages + * \sa SDL_SurfaceHasAlternateImages + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveSurfaceAlternateImages(SDL_Surface *surface); + +/** + * Set up a surface for directly accessing the pixels. + * + * Between calls to SDL_LockSurface() / SDL_UnlockSurface(), you can write to + * and read from `surface->pixels`, using the pixel format stored in + * `surface->format`. Once you are done accessing the surface, you should use + * SDL_UnlockSurface() to release it. + * + * Not all surfaces require locking. If `SDL_MUSTLOCK(surface)` evaluates to + * 0, then you can read and write to the surface at any time, and the pixel + * format of the surface will not change. + * + * \param surface the SDL_Surface structure to be locked. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. The locking referred to by + * this function is making the pixels available for direct + * access, not thread-safe locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MUSTLOCK + * \sa SDL_UnlockSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_LockSurface(SDL_Surface *surface); + +/** + * Release a surface after directly accessing the pixels. + * + * \param surface the SDL_Surface structure to be unlocked. + * + * \threadsafety This function is not thread safe. The locking referred to by + * this function is making the pixels available for direct + * access, not thread-safe locking. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LockSurface + */ +extern SDL_DECLSPEC void SDLCALL SDL_UnlockSurface(SDL_Surface *surface); + +/** + * Load a BMP image from a seekable SDL data stream. + * + * The new surface should be freed with SDL_DestroySurface(). Not doing so + * will result in a memory leak. + * + * \param src the data stream for the surface. + * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even + * in the case of an error. + * \returns a pointer to a new SDL_Surface structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + * \sa SDL_LoadBMP + * \sa SDL_SaveBMP_IO + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_LoadBMP_IO(SDL_IOStream *src, bool closeio); + +/** + * Load a BMP image from a file. + * + * The new surface should be freed with SDL_DestroySurface(). Not doing so + * will result in a memory leak. + * + * \param file the BMP file to load. + * \returns a pointer to a new SDL_Surface structure or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + * \sa SDL_LoadBMP_IO + * \sa SDL_SaveBMP + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_LoadBMP(const char *file); + +/** + * Save a surface to a seekable SDL data stream in BMP format. + * + * Surfaces with a 24-bit, 32-bit and paletted 8-bit format get saved in the + * BMP directly. Other RGB formats with 8-bit or higher get converted to a + * 24-bit surface or, if they have an alpha mask or a colorkey, to a 32-bit + * surface before they are saved. YUV and paletted 1-bit and 4-bit formats are + * not supported. + * + * \param surface the SDL_Surface structure containing the image to be saved. + * \param dst a data stream to save to. + * \param closeio if true, calls SDL_CloseIO() on `dst` before returning, even + * in the case of an error. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadBMP_IO + * \sa SDL_SaveBMP + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveBMP_IO(SDL_Surface *surface, SDL_IOStream *dst, bool closeio); + +/** + * Save a surface to a file. + * + * Surfaces with a 24-bit, 32-bit and paletted 8-bit format get saved in the + * BMP directly. Other RGB formats with 8-bit or higher get converted to a + * 24-bit surface or, if they have an alpha mask or a colorkey, to a 32-bit + * surface before they are saved. YUV and paletted 1-bit and 4-bit formats are + * not supported. + * + * \param surface the SDL_Surface structure containing the image to be saved. + * \param file a file to save to. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_LoadBMP + * \sa SDL_SaveBMP_IO + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SaveBMP(SDL_Surface *surface, const char *file); + +/** + * Set the RLE acceleration hint for a surface. + * + * If RLE is enabled, color key and alpha blending blits are much faster, but + * the surface must be locked before directly accessing the pixels. + * + * \param surface the SDL_Surface structure to optimize. + * \param enabled true to enable RLE acceleration, false to disable it. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + * \sa SDL_LockSurface + * \sa SDL_UnlockSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceRLE(SDL_Surface *surface, bool enabled); + +/** + * Returns whether the surface is RLE enabled. + * + * It is safe to pass a NULL `surface` here; it will return false. + * + * \param surface the SDL_Surface structure to query. + * \returns true if the surface is RLE enabled, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceRLE + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SurfaceHasRLE(SDL_Surface *surface); + +/** + * Set the color key (transparent pixel) in a surface. + * + * The color key defines a pixel value that will be treated as transparent in + * a blit. For example, one can use this to specify that cyan pixels should be + * considered transparent, and therefore not rendered. + * + * It is a pixel of the format used by the surface, as generated by + * SDL_MapRGB(). + * + * \param surface the SDL_Surface structure to update. + * \param enabled true to enable color key, false to disable color key. + * \param key the transparent pixel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorKey + * \sa SDL_SetSurfaceRLE + * \sa SDL_SurfaceHasColorKey + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceColorKey(SDL_Surface *surface, bool enabled, Uint32 key); + +/** + * Returns whether the surface has a color key. + * + * It is safe to pass a NULL `surface` here; it will return false. + * + * \param surface the SDL_Surface structure to query. + * \returns true if the surface has a color key, false otherwise. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceColorKey + * \sa SDL_GetSurfaceColorKey + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SurfaceHasColorKey(SDL_Surface *surface); + +/** + * Get the color key (transparent pixel) for a surface. + * + * The color key is a pixel of the format used by the surface, as generated by + * SDL_MapRGB(). + * + * If the surface doesn't have color key enabled this function returns false. + * + * \param surface the SDL_Surface structure to query. + * \param key a pointer filled in with the transparent pixel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceColorKey + * \sa SDL_SurfaceHasColorKey + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceColorKey(SDL_Surface *surface, Uint32 *key); + +/** + * Set an additional color value multiplied into blit operations. + * + * When this surface is blitted, during the blit operation each source color + * channel is modulated by the appropriate color value according to the + * following formula: + * + * `srcC = srcC * (color / 255)` + * + * \param surface the SDL_Surface structure to update. + * \param r the red color value multiplied into blit operations. + * \param g the green color value multiplied into blit operations. + * \param b the blue color value multiplied into blit operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorMod + * \sa SDL_SetSurfaceAlphaMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceColorMod(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b); + + +/** + * Get the additional color value multiplied into blit operations. + * + * \param surface the SDL_Surface structure to query. + * \param r a pointer filled in with the current red color value. + * \param g a pointer filled in with the current green color value. + * \param b a pointer filled in with the current blue color value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceAlphaMod + * \sa SDL_SetSurfaceColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceColorMod(SDL_Surface *surface, Uint8 *r, Uint8 *g, Uint8 *b); + +/** + * Set an additional alpha value used in blit operations. + * + * When this surface is blitted, during the blit operation the source alpha + * value is modulated by this alpha value according to the following formula: + * + * `srcA = srcA * (alpha / 255)` + * + * \param surface the SDL_Surface structure to update. + * \param alpha the alpha value multiplied into blit operations. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceAlphaMod + * \sa SDL_SetSurfaceColorMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceAlphaMod(SDL_Surface *surface, Uint8 alpha); + +/** + * Get the additional alpha value used in blit operations. + * + * \param surface the SDL_Surface structure to query. + * \param alpha a pointer filled in with the current alpha value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceColorMod + * \sa SDL_SetSurfaceAlphaMod + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceAlphaMod(SDL_Surface *surface, Uint8 *alpha); + +/** + * Set the blend mode used for blit operations. + * + * To copy a surface to another surface (or texture) without blending with the + * existing data, the blendmode of the SOURCE surface should be set to + * `SDL_BLENDMODE_NONE`. + * + * \param surface the SDL_Surface structure to update. + * \param blendMode the SDL_BlendMode to use for blit blending. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode blendMode); + +/** + * Get the blend mode used for blit operations. + * + * \param surface the SDL_Surface structure to query. + * \param blendMode a pointer filled in with the current SDL_BlendMode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceBlendMode + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode *blendMode); + +/** + * Set the clipping rectangle for a surface. + * + * When `surface` is the destination of a blit, only the area within the clip + * rectangle is drawn into. + * + * Note that blits are automatically clipped to the edges of the source and + * destination surfaces. + * + * \param surface the SDL_Surface structure to be clipped. + * \param rect the SDL_Rect structure representing the clipping rectangle, or + * NULL to disable clipping. + * \returns true if the rectangle intersects the surface, otherwise false and + * blits will be completely clipped. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetSurfaceClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetSurfaceClipRect(SDL_Surface *surface, const SDL_Rect *rect); + +/** + * Get the clipping rectangle for a surface. + * + * When `surface` is the destination of a blit, only the area within the clip + * rectangle is drawn into. + * + * \param surface the SDL_Surface structure representing the surface to be + * clipped. + * \param rect an SDL_Rect structure filled in with the clipping rectangle for + * the surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetSurfaceClipRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetSurfaceClipRect(SDL_Surface *surface, SDL_Rect *rect); + +/** + * Flip a surface vertically or horizontally. + * + * \param surface the surface to flip. + * \param flip the direction to flip. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlipSurface(SDL_Surface *surface, SDL_FlipMode flip); + +/** + * Creates a new surface identical to the existing surface. + * + * If the original surface has alternate images, the new surface will have a + * reference to them as well. + * + * The returned surface should be freed with SDL_DestroySurface(). + * + * \param surface the surface to duplicate. + * \returns a copy of the surface or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_DuplicateSurface(SDL_Surface *surface); + +/** + * Creates a new surface identical to the existing surface, scaled to the + * desired size. + * + * The returned surface should be freed with SDL_DestroySurface(). + * + * \param surface the surface to duplicate and scale. + * \param width the width of the new surface. + * \param height the height of the new surface. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns a copy of the surface or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_ScaleSurface(SDL_Surface *surface, int width, int height, SDL_ScaleMode scaleMode); + +/** + * Copy an existing surface to a new surface of the specified format. + * + * This function is used to optimize images for faster *repeat* blitting. This + * is accomplished by converting the original and storing the result as a new + * surface. The new, optimized surface can then be used as the source for + * future blits, making them faster. + * + * If you are converting to an indexed surface and want to map colors to a + * palette, you can use SDL_ConvertSurfaceAndColorspace() instead. + * + * If the original surface has alternate images, the new surface will have a + * reference to them as well. + * + * \param surface the existing SDL_Surface structure to convert. + * \param format the new pixel format. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertSurfaceAndColorspace + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_ConvertSurface(SDL_Surface *surface, SDL_PixelFormat format); + +/** + * Copy an existing surface to a new surface of the specified format and + * colorspace. + * + * This function converts an existing surface to a new format and colorspace + * and returns the new surface. This will perform any pixel format and + * colorspace conversion needed. + * + * If the original surface has alternate images, the new surface will have a + * reference to them as well. + * + * \param surface the existing SDL_Surface structure to convert. + * \param format the new pixel format. + * \param palette an optional palette to use for indexed formats, may be NULL. + * \param colorspace the new colorspace. + * \param props an SDL_PropertiesID with additional color properties, or 0. + * \returns the new SDL_Surface structure that is created or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertSurface + * \sa SDL_DestroySurface + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_ConvertSurfaceAndColorspace(SDL_Surface *surface, SDL_PixelFormat format, SDL_Palette *palette, SDL_Colorspace colorspace, SDL_PropertiesID props); + +/** + * Copy a block of pixels of one format to another format. + * + * \param width the width of the block to copy, in pixels. + * \param height the height of the block to copy, in pixels. + * \param src_format an SDL_PixelFormat value of the `src` pixels format. + * \param src a pointer to the source pixels. + * \param src_pitch the pitch of the source pixels, in bytes. + * \param dst_format an SDL_PixelFormat value of the `dst` pixels format. + * \param dst a pointer to be filled in with new pixel data. + * \param dst_pitch the pitch of the destination pixels, in bytes. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety The same destination pixels should not be used from two + * threads at once. It is safe to use the same source pixels + * from multiple threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertPixelsAndColorspace + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertPixels(int width, int height, SDL_PixelFormat src_format, const void *src, int src_pitch, SDL_PixelFormat dst_format, void *dst, int dst_pitch); + +/** + * Copy a block of pixels of one format and colorspace to another format and + * colorspace. + * + * \param width the width of the block to copy, in pixels. + * \param height the height of the block to copy, in pixels. + * \param src_format an SDL_PixelFormat value of the `src` pixels format. + * \param src_colorspace an SDL_Colorspace value describing the colorspace of + * the `src` pixels. + * \param src_properties an SDL_PropertiesID with additional source color + * properties, or 0. + * \param src a pointer to the source pixels. + * \param src_pitch the pitch of the source pixels, in bytes. + * \param dst_format an SDL_PixelFormat value of the `dst` pixels format. + * \param dst_colorspace an SDL_Colorspace value describing the colorspace of + * the `dst` pixels. + * \param dst_properties an SDL_PropertiesID with additional destination color + * properties, or 0. + * \param dst a pointer to be filled in with new pixel data. + * \param dst_pitch the pitch of the destination pixels, in bytes. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety The same destination pixels should not be used from two + * threads at once. It is safe to use the same source pixels + * from multiple threads. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ConvertPixels + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ConvertPixelsAndColorspace(int width, int height, SDL_PixelFormat src_format, SDL_Colorspace src_colorspace, SDL_PropertiesID src_properties, const void *src, int src_pitch, SDL_PixelFormat dst_format, SDL_Colorspace dst_colorspace, SDL_PropertiesID dst_properties, void *dst, int dst_pitch); + +/** + * Premultiply the alpha on a block of pixels. + * + * This is safe to use with src == dst, but not for other overlapping areas. + * + * \param width the width of the block to convert, in pixels. + * \param height the height of the block to convert, in pixels. + * \param src_format an SDL_PixelFormat value of the `src` pixels format. + * \param src a pointer to the source pixels. + * \param src_pitch the pitch of the source pixels, in bytes. + * \param dst_format an SDL_PixelFormat value of the `dst` pixels format. + * \param dst a pointer to be filled in with premultiplied pixel data. + * \param dst_pitch the pitch of the destination pixels, in bytes. + * \param linear true to convert from sRGB to linear space for the alpha + * multiplication, false to do multiplication in sRGB space. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety The same destination pixels should not be used from two + * threads at once. It is safe to use the same source pixels + * from multiple threads. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PremultiplyAlpha(int width, int height, SDL_PixelFormat src_format, const void *src, int src_pitch, SDL_PixelFormat dst_format, void *dst, int dst_pitch, bool linear); + +/** + * Premultiply the alpha in a surface. + * + * This is safe to use with src == dst, but not for other overlapping areas. + * + * \param surface the surface to modify. + * \param linear true to convert from sRGB to linear space for the alpha + * multiplication, false to do multiplication in sRGB space. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_PremultiplySurfaceAlpha(SDL_Surface *surface, bool linear); + +/** + * Clear a surface with a specific color, with floating point precision. + * + * This function handles all surface formats, and ignores any clip rectangle. + * + * If the surface is YUV, the color is assumed to be in the sRGB colorspace, + * otherwise the color is assumed to be in the colorspace of the suface. + * + * \param surface the SDL_Surface to clear. + * \param r the red component of the pixel, normally in the range 0-1. + * \param g the green component of the pixel, normally in the range 0-1. + * \param b the blue component of the pixel, normally in the range 0-1. + * \param a the alpha component of the pixel, normally in the range 0-1. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ClearSurface(SDL_Surface *surface, float r, float g, float b, float a); + +/** + * Perform a fast fill of a rectangle with a specific color. + * + * `color` should be a pixel of the format used by the surface, and can be + * generated by SDL_MapRGB() or SDL_MapRGBA(). If the color value contains an + * alpha component then the destination is simply filled with that alpha + * information, no blending takes place. + * + * If there is a clip rectangle set on the destination (set via + * SDL_SetSurfaceClipRect()), then this function will fill based on the + * intersection of the clip rectangle and `rect`. + * + * \param dst the SDL_Surface structure that is the drawing target. + * \param rect the SDL_Rect structure representing the rectangle to fill, or + * NULL to fill the entire surface. + * \param color the color to fill with. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FillSurfaceRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FillSurfaceRect(SDL_Surface *dst, const SDL_Rect *rect, Uint32 color); + +/** + * Perform a fast fill of a set of rectangles with a specific color. + * + * `color` should be a pixel of the format used by the surface, and can be + * generated by SDL_MapRGB() or SDL_MapRGBA(). If the color value contains an + * alpha component then the destination is simply filled with that alpha + * information, no blending takes place. + * + * If there is a clip rectangle set on the destination (set via + * SDL_SetSurfaceClipRect()), then this function will fill based on the + * intersection of the clip rectangle and `rect`. + * + * \param dst the SDL_Surface structure that is the drawing target. + * \param rects an array of SDL_Rects representing the rectangles to fill. + * \param count the number of rectangles in the array. + * \param color the color to fill with. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_FillSurfaceRect + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FillSurfaceRects(SDL_Surface *dst, const SDL_Rect *rects, int count, Uint32 color); + +/** + * Performs a fast blit from the source surface to the destination surface + * with clipping. + * + * If either `srcrect` or `dstrect` are NULL, the entire surface (`src` or + * `dst`) is copied while ensuring clipping to `dst->clip_rect`. + * + * The blit function should not be called on a locked surface. + * + * The blit semantics for surfaces with and without blending and colorkey are + * defined as follows: + * + * ``` + * RGBA->RGB: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source alpha-channel and per-surface alpha) + * SDL_SRCCOLORKEY ignored. + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy RGB. + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * RGB values of the source color key, ignoring alpha in the + * comparison. + * + * RGB->RGBA: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source per-surface alpha) + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy RGB, set destination alpha to source per-surface alpha value. + * both: + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * source color key. + * + * RGBA->RGBA: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source alpha-channel and per-surface alpha) + * SDL_SRCCOLORKEY ignored. + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy all of RGBA to the destination. + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * RGB values of the source color key, ignoring alpha in the + * comparison. + * + * RGB->RGB: + * Source surface blend mode set to SDL_BLENDMODE_BLEND: + * alpha-blend (using the source per-surface alpha) + * Source surface blend mode set to SDL_BLENDMODE_NONE: + * copy RGB. + * both: + * if SDL_SRCCOLORKEY set, only copy the pixels that do not match the + * source color key. + * ``` + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the x and y position in + * the destination surface, or NULL for (0,0). The width and + * height are ignored, and are copied from `srcrect`. If you + * want a specific width and height, you should use + * SDL_BlitSurfaceScaled(). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurfaceScaled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurface(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform low-level surface blitting only. + * + * This is a semi-private blit function and it performs low-level surface + * blitting, assuming the input rectangles have already been clipped. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, may not be NULL. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, may not be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceUnchecked(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform a scaled blit to a destination surface, which may be of a different + * format. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire + * destination surface. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceScaled(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect, SDL_ScaleMode scaleMode); + +/** + * Perform low-level surface scaled blitting only. + * + * This is a semi-private function and it performs low-level surface blitting, + * assuming the input rectangles have already been clipped. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, may not be NULL. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, may not be NULL. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurfaceScaled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceUncheckedScaled(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect, SDL_ScaleMode scaleMode); + +/** + * Perform a stretched pixel copy from one surface to another. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire + * destination surface. + * \param scaleMode the SDL_ScaleMode to be used. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.4.0. + * + * \sa SDL_BlitSurfaceScaled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_StretchSurface(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect, SDL_ScaleMode scaleMode); + +/** + * Perform a tiled blit to a destination surface, which may be of a different + * format. + * + * The pixels in `srcrect` will be repeated as many times as needed to + * completely fill `dstrect`. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceTiled(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform a scaled and tiled blit to a destination surface, which may be of a + * different format. + * + * The pixels in `srcrect` will be scaled and repeated as many times as needed + * to completely fill `dstrect`. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be + * copied, or NULL to copy the entire surface. + * \param scale the scale used to transform srcrect into the destination + * rectangle, e.g. a 32x32 texture with a scale of 2 would fill + * 64x64 tiles. + * \param scaleMode scale algorithm to be used. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurfaceTiledWithScale(SDL_Surface *src, const SDL_Rect *srcrect, float scale, SDL_ScaleMode scaleMode, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Perform a scaled blit using the 9-grid algorithm to a destination surface, + * which may be of a different format. + * + * The pixels in the source surface are split into a 3x3 grid, using the + * different corner sizes for each corner, and the sides and center making up + * the remaining pixels. The corners are then scaled using `scale` and fit + * into the corners of the destination rectangle. The sides and center are + * then stretched into place to cover the remaining destination rectangle. + * + * \param src the SDL_Surface structure to be copied from. + * \param srcrect the SDL_Rect structure representing the rectangle to be used + * for the 9-grid, or NULL to use the entire surface. + * \param left_width the width, in pixels, of the left corners in `srcrect`. + * \param right_width the width, in pixels, of the right corners in `srcrect`. + * \param top_height the height, in pixels, of the top corners in `srcrect`. + * \param bottom_height the height, in pixels, of the bottom corners in + * `srcrect`. + * \param scale the scale used to transform the corner of `srcrect` into the + * corner of `dstrect`, or 0.0f for an unscaled blit. + * \param scaleMode scale algorithm to be used. + * \param dst the SDL_Surface structure that is the blit target. + * \param dstrect the SDL_Rect structure representing the target rectangle in + * the destination surface, or NULL to fill the entire surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety Only one thread should be using the `src` and `dst` surfaces + * at any given time. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_BlitSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_BlitSurface9Grid(SDL_Surface *src, const SDL_Rect *srcrect, int left_width, int right_width, int top_height, int bottom_height, float scale, SDL_ScaleMode scaleMode, SDL_Surface *dst, const SDL_Rect *dstrect); + +/** + * Map an RGB triple to an opaque pixel value for a surface. + * + * This function maps the RGB color value to the specified pixel format and + * returns the pixel value best approximating the given RGB color value for + * the given pixel format. + * + * If the surface has a palette, the index of the closest matching color in + * the palette will be returned. + * + * If the surface pixel format has an alpha component it will be returned as + * all 1 bits (fully opaque). + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param surface the surface to use for the pixel format and palette. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MapSurfaceRGBA + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapSurfaceRGB(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b); + +/** + * Map an RGBA quadruple to a pixel value for a surface. + * + * This function maps the RGBA color value to the specified pixel format and + * returns the pixel value best approximating the given RGBA color value for + * the given pixel format. + * + * If the surface pixel format has no alpha component the alpha value will be + * ignored (as it will be in formats with a palette). + * + * If the surface has a palette, the index of the closest matching color in + * the palette will be returned. + * + * If the pixel format bpp (color depth) is less than 32-bpp then the unused + * upper bits of the return value can safely be ignored (e.g., with a 16-bpp + * format the return value can be assigned to a Uint16, and similarly a Uint8 + * for an 8-bpp format). + * + * \param surface the surface to use for the pixel format and palette. + * \param r the red component of the pixel in the range 0-255. + * \param g the green component of the pixel in the range 0-255. + * \param b the blue component of the pixel in the range 0-255. + * \param a the alpha component of the pixel in the range 0-255. + * \returns a pixel value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MapSurfaceRGB + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_MapSurfaceRGBA(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Retrieves a single pixel from a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * Like SDL_GetRGBA, this uses the entire 0..255 range when converting color + * components from pixel formats with less than 8 bits per RGB component. + * + * \param surface the surface to read. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r a pointer filled in with the red channel, 0-255, or NULL to ignore + * this channel. + * \param g a pointer filled in with the green channel, 0-255, or NULL to + * ignore this channel. + * \param b a pointer filled in with the blue channel, 0-255, or NULL to + * ignore this channel. + * \param a a pointer filled in with the alpha channel, 0-255, or NULL to + * ignore this channel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadSurfacePixel(SDL_Surface *surface, int x, int y, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); + +/** + * Retrieves a single pixel from a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * \param surface the surface to read. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r a pointer filled in with the red channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \param g a pointer filled in with the green channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \param b a pointer filled in with the blue channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \param a a pointer filled in with the alpha channel, normally in the range + * 0-1, or NULL to ignore this channel. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ReadSurfacePixelFloat(SDL_Surface *surface, int x, int y, float *r, float *g, float *b, float *a); + +/** + * Writes a single pixel to a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * Like SDL_MapRGBA, this uses the entire 0..255 range when converting color + * components from pixel formats with less than 8 bits per RGB component. + * + * \param surface the surface to write. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r the red channel value, 0-255. + * \param g the green channel value, 0-255. + * \param b the blue channel value, 0-255. + * \param a the alpha channel value, 0-255. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteSurfacePixel(SDL_Surface *surface, int x, int y, Uint8 r, Uint8 g, Uint8 b, Uint8 a); + +/** + * Writes a single pixel to a surface. + * + * This function prioritizes correctness over speed: it is suitable for unit + * tests, but is not intended for use in a game engine. + * + * \param surface the surface to write. + * \param x the horizontal coordinate, 0 <= x < width. + * \param y the vertical coordinate, 0 <= y < height. + * \param r the red channel value, normally in the range 0-1. + * \param g the green channel value, normally in the range 0-1. + * \param b the blue channel value, normally in the range 0-1. + * \param a the alpha channel value, normally in the range 0-1. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WriteSurfacePixelFloat(SDL_Surface *surface, int x, int y, float r, float g, float b, float a); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_surface_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_system.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_system.h new file mode 100644 index 0000000..294089f --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_system.h @@ -0,0 +1,818 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategorySystem + * + * Platform-specific SDL API functions. These are functions that deal with + * needs of specific operating systems, that didn't make sense to offer as + * platform-independent, generic APIs. + * + * Most apps can make do without these functions, but they can be useful for + * integrating with other parts of a specific system, adding platform-specific + * polish to an app, or solving problems that only affect one target. + */ + +#ifndef SDL_system_h_ +#define SDL_system_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + + +/* + * Platform specific functions for Windows + */ +#if defined(SDL_PLATFORM_WINDOWS) + +typedef struct tagMSG MSG; + +/** + * A callback to be used with SDL_SetWindowsMessageHook. + * + * This callback may modify the message, and should return true if the message + * should continue to be processed, or false to prevent further processing. + * + * As this is processing a message directly from the Windows event loop, this + * callback should do the minimum required work and return quickly. + * + * \param userdata the app-defined pointer provided to + * SDL_SetWindowsMessageHook. + * \param msg a pointer to a Win32 event structure to process. + * \returns true to let event continue on, false to drop it. + * + * \threadsafety This may only be called (by SDL) from the thread handling the + * Windows event loop. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetWindowsMessageHook + * \sa SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP + */ +typedef bool (SDLCALL *SDL_WindowsMessageHook)(void *userdata, MSG *msg); + +/** + * Set a callback for every Windows message, run before TranslateMessage(). + * + * The callback may modify the message, and should return true if the message + * should continue to be processed, or false to prevent further processing. + * + * \param callback the SDL_WindowsMessageHook function to call. + * \param userdata a pointer to pass to every iteration of `callback`. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_WindowsMessageHook + * \sa SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetWindowsMessageHook(SDL_WindowsMessageHook callback, void *userdata); + +#endif /* defined(SDL_PLATFORM_WINDOWS) */ + +#if defined(SDL_PLATFORM_WIN32) || defined(SDL_PLATFORM_WINGDK) + +/** + * Get the D3D9 adapter index that matches the specified display. + * + * The returned adapter index can be passed to `IDirect3D9::CreateDevice` and + * controls on which monitor a full screen application will appear. + * + * \param displayID the instance of the display to query. + * \returns the D3D9 adapter index on success or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDirect3D9AdapterIndex(SDL_DisplayID displayID); + +/** + * Get the DXGI Adapter and Output indices for the specified display. + * + * The DXGI Adapter and Output indices can be passed to `EnumAdapters` and + * `EnumOutputs` respectively to get the objects required to create a DX10 or + * DX11 device and swap chain. + * + * \param displayID the instance of the display to query. + * \param adapterIndex a pointer to be filled in with the adapter index. + * \param outputIndex a pointer to be filled in with the output index. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDXGIOutputInfo(SDL_DisplayID displayID, int *adapterIndex, int *outputIndex); + +#endif /* defined(SDL_PLATFORM_WIN32) || defined(SDL_PLATFORM_WINGDK) */ + + +/* + * Platform specific functions for UNIX + */ + +/* this is defined in Xlib's headers, just need a simple declaration here. */ +typedef union _XEvent XEvent; + +/** + * A callback to be used with SDL_SetX11EventHook. + * + * This callback may modify the event, and should return true if the event + * should continue to be processed, or false to prevent further processing. + * + * As this is processing an event directly from the X11 event loop, this + * callback should do the minimum required work and return quickly. + * + * \param userdata the app-defined pointer provided to SDL_SetX11EventHook. + * \param xevent a pointer to an Xlib XEvent union to process. + * \returns true to let event continue on, false to drop it. + * + * \threadsafety This may only be called (by SDL) from the thread handling the + * X11 event loop. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetX11EventHook + */ +typedef bool (SDLCALL *SDL_X11EventHook)(void *userdata, XEvent *xevent); + +/** + * Set a callback for every X11 event. + * + * The callback may modify the event, and should return true if the event + * should continue to be processed, or false to prevent further processing. + * + * \param callback the SDL_X11EventHook function to call. + * \param userdata a pointer to pass to every iteration of `callback`. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetX11EventHook(SDL_X11EventHook callback, void *userdata); + +/* Platform specific functions for Linux*/ +#ifdef SDL_PLATFORM_LINUX + +/** + * Sets the UNIX nice value for a thread. + * + * This uses setpriority() if possible, and RealtimeKit if available. + * + * \param threadID the Unix thread ID to change priority of. + * \param priority the new, Unix-specific, priority value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetLinuxThreadPriority(Sint64 threadID, int priority); + +/** + * Sets the priority (not nice level) and scheduling policy for a thread. + * + * This uses setpriority() if possible, and RealtimeKit if available. + * + * \param threadID the Unix thread ID to change priority of. + * \param sdlPriority the new SDL_ThreadPriority value. + * \param schedPolicy the new scheduling policy (SCHED_FIFO, SCHED_RR, + * SCHED_OTHER, etc...). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetLinuxThreadPriorityAndPolicy(Sint64 threadID, int sdlPriority, int schedPolicy); + +#endif /* SDL_PLATFORM_LINUX */ + +/* + * Platform specific functions for iOS + */ +#ifdef SDL_PLATFORM_IOS + +/** + * The prototype for an Apple iOS animation callback. + * + * This datatype is only useful on Apple iOS. + * + * After passing a function pointer of this type to + * SDL_SetiOSAnimationCallback, the system will call that function pointer at + * a regular interval. + * + * \param userdata what was passed as `callbackParam` to + * SDL_SetiOSAnimationCallback as `callbackParam`. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetiOSAnimationCallback + */ +typedef void (SDLCALL *SDL_iOSAnimationCallback)(void *userdata); + +/** + * Use this function to set the animation callback on Apple iOS. + * + * The function prototype for `callback` is: + * + * ```c + * void callback(void *callbackParam); + * ``` + * + * Where its parameter, `callbackParam`, is what was passed as `callbackParam` + * to SDL_SetiOSAnimationCallback(). + * + * This function is only available on Apple iOS. + * + * For more information see: + * + * https://wiki.libsdl.org/SDL3/README/ios + * + * Note that if you use the "main callbacks" instead of a standard C `main` + * function, you don't have to use this API, as SDL will manage this for you. + * + * Details on main callbacks are here: + * + * https://wiki.libsdl.org/SDL3/README/main-functions + * + * \param window the window for which the animation callback should be set. + * \param interval the number of frames after which **callback** will be + * called. + * \param callback the function to call for every frame. + * \param callbackParam a pointer that is passed to `callback`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetiOSEventPump + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetiOSAnimationCallback(SDL_Window *window, int interval, SDL_iOSAnimationCallback callback, void *callbackParam); + +/** + * Use this function to enable or disable the SDL event pump on Apple iOS. + * + * This function is only available on Apple iOS. + * + * \param enabled true to enable the event pump, false to disable it. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetiOSAnimationCallback + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetiOSEventPump(bool enabled); + +#endif /* SDL_PLATFORM_IOS */ + + +/* + * Platform specific functions for Android + */ +#ifdef SDL_PLATFORM_ANDROID + +/** + * Get the Android Java Native Interface Environment of the current thread. + * + * This is the JNIEnv one needs to access the Java virtual machine from native + * code, and is needed for many Android APIs to be usable from C. + * + * The prototype of the function in SDL's code actually declare a void* return + * type, even if the implementation returns a pointer to a JNIEnv. The + * rationale being that the SDL headers can avoid including jni.h. + * + * \returns a pointer to Java native interface object (JNIEnv) to which the + * current thread is attached, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidActivity + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetAndroidJNIEnv(void); + +/** + * Retrieve the Java instance of the Android activity class. + * + * The prototype of the function in SDL's code actually declares a void* + * return type, even if the implementation returns a jobject. The rationale + * being that the SDL headers can avoid including jni.h. + * + * The jobject returned by the function is a local reference and must be + * released by the caller. See the PushLocalFrame() and PopLocalFrame() or + * DeleteLocalRef() functions of the Java native interface: + * + * https://docs.oracle.com/javase/1.5.0/docs/guide/jni/spec/functions.html + * + * \returns the jobject representing the instance of the Activity class of the + * Android application, or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidJNIEnv + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetAndroidActivity(void); + +/** + * Query Android API level of the current device. + * + * - API level 35: Android 15 (VANILLA_ICE_CREAM) + * - API level 34: Android 14 (UPSIDE_DOWN_CAKE) + * - API level 33: Android 13 (TIRAMISU) + * - API level 32: Android 12L (S_V2) + * - API level 31: Android 12 (S) + * - API level 30: Android 11 (R) + * - API level 29: Android 10 (Q) + * - API level 28: Android 9 (P) + * - API level 27: Android 8.1 (O_MR1) + * - API level 26: Android 8.0 (O) + * - API level 25: Android 7.1 (N_MR1) + * - API level 24: Android 7.0 (N) + * - API level 23: Android 6.0 (M) + * - API level 22: Android 5.1 (LOLLIPOP_MR1) + * - API level 21: Android 5.0 (LOLLIPOP, L) + * - API level 20: Android 4.4W (KITKAT_WATCH) + * - API level 19: Android 4.4 (KITKAT) + * - API level 18: Android 4.3 (JELLY_BEAN_MR2) + * - API level 17: Android 4.2 (JELLY_BEAN_MR1) + * - API level 16: Android 4.1 (JELLY_BEAN) + * - API level 15: Android 4.0.3 (ICE_CREAM_SANDWICH_MR1) + * - API level 14: Android 4.0 (ICE_CREAM_SANDWICH) + * - API level 13: Android 3.2 (HONEYCOMB_MR2) + * - API level 12: Android 3.1 (HONEYCOMB_MR1) + * - API level 11: Android 3.0 (HONEYCOMB) + * - API level 10: Android 2.3.3 (GINGERBREAD_MR1) + * + * \returns the Android API level. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetAndroidSDKVersion(void); + +/** + * Query if the application is running on a Chromebook. + * + * \returns true if this is a Chromebook, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsChromebook(void); + +/** + * Query if the application is running on a Samsung DeX docking station. + * + * \returns true if this is a DeX docking station, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsDeXMode(void); + +/** + * Trigger the Android system back button behavior. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_SendAndroidBackButton(void); + +/** + * See the official Android developer guide for more information: + * http://developer.android.com/guide/topics/data/data-storage.html + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ANDROID_EXTERNAL_STORAGE_READ 0x01 + +/** + * See the official Android developer guide for more information: + * http://developer.android.com/guide/topics/data/data-storage.html + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_ANDROID_EXTERNAL_STORAGE_WRITE 0x02 + +/** + * Get the path used for internal storage for this Android application. + * + * This path is unique to your application and cannot be written to by other + * applications. + * + * Your internal storage path is typically: + * `/data/data/your.app.package/files`. + * + * This is a C wrapper over `android.content.Context.getFilesDir()`: + * + * https://developer.android.com/reference/android/content/Context#getFilesDir() + * + * \returns the path used for internal storage or NULL on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidExternalStoragePath + * \sa SDL_GetAndroidCachePath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAndroidInternalStoragePath(void); + +/** + * Get the current state of external storage for this Android application. + * + * The current state of external storage, a bitmask of these values: + * `SDL_ANDROID_EXTERNAL_STORAGE_READ`, `SDL_ANDROID_EXTERNAL_STORAGE_WRITE`. + * + * If external storage is currently unavailable, this will return 0. + * + * \returns the current state of external storage, or 0 if external storage is + * currently unavailable. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidExternalStoragePath + */ +extern SDL_DECLSPEC Uint32 SDLCALL SDL_GetAndroidExternalStorageState(void); + +/** + * Get the path used for external storage for this Android application. + * + * This path is unique to your application, but is public and can be written + * to by other applications. + * + * Your external storage path is typically: + * `/storage/sdcard0/Android/data/your.app.package/files`. + * + * This is a C wrapper over `android.content.Context.getExternalFilesDir()`: + * + * https://developer.android.com/reference/android/content/Context#getExternalFilesDir() + * + * \returns the path used for external storage for this application on success + * or NULL on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidExternalStorageState + * \sa SDL_GetAndroidInternalStoragePath + * \sa SDL_GetAndroidCachePath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAndroidExternalStoragePath(void); + +/** + * Get the path used for caching data for this Android application. + * + * This path is unique to your application, but is public and can be written + * to by other applications. + * + * Your cache path is typically: `/data/data/your.app.package/cache/`. + * + * This is a C wrapper over `android.content.Context.getCacheDir()`: + * + * https://developer.android.com/reference/android/content/Context#getCacheDir() + * + * \returns the path used for caches for this application on success or NULL + * on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetAndroidInternalStoragePath + * \sa SDL_GetAndroidExternalStoragePath + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetAndroidCachePath(void); + +/** + * Callback that presents a response from a SDL_RequestAndroidPermission call. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \param permission the Android-specific permission name that was requested. + * \param granted true if permission is granted, false if denied. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_RequestAndroidPermission + */ +typedef void (SDLCALL *SDL_RequestAndroidPermissionCallback)(void *userdata, const char *permission, bool granted); + +/** + * Request permissions at runtime, asynchronously. + * + * You do not need to call this for built-in functionality of SDL; recording + * from a microphone or reading images from a camera, using standard SDL APIs, + * will manage permission requests for you. + * + * This function never blocks. Instead, the app-supplied callback will be + * called when a decision has been made. This callback may happen on a + * different thread, and possibly much later, as it might wait on a user to + * respond to a system dialog. If permission has already been granted for a + * specific entitlement, the callback will still fire, probably on the current + * thread and before this function returns. + * + * If the request submission fails, this function returns -1 and the callback + * will NOT be called, but this should only happen in catastrophic conditions, + * like memory running out. Normally there will be a yes or no to the request + * through the callback. + * + * For the `permission` parameter, choose a value from here: + * + * https://developer.android.com/reference/android/Manifest.permission + * + * \param permission the permission to request. + * \param cb the callback to trigger when the request has a response. + * \param userdata an app-controlled pointer that is passed to the callback. + * \returns true if the request was submitted, false if there was an error + * submitting. The result of the request is only ever reported + * through the callback, not this return value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RequestAndroidPermission(const char *permission, SDL_RequestAndroidPermissionCallback cb, void *userdata); + +/** + * Shows an Android toast notification. + * + * Toasts are a sort of lightweight notification that are unique to Android. + * + * https://developer.android.com/guide/topics/ui/notifiers/toasts + * + * Shows toast in UI thread. + * + * For the `gravity` parameter, choose a value from here, or -1 if you don't + * have a preference: + * + * https://developer.android.com/reference/android/view/Gravity + * + * \param message text message to be shown. + * \param duration 0=short, 1=long. + * \param gravity where the notification should appear on the screen. + * \param xoffset set this parameter only when gravity >=0. + * \param yoffset set this parameter only when gravity >=0. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowAndroidToast(const char *message, int duration, int gravity, int xoffset, int yoffset); + +/** + * Send a user command to SDLActivity. + * + * Override "boolean onUnhandledMessage(Message msg)" to handle the message. + * + * \param command user command that must be greater or equal to 0x8000. + * \param param user parameter. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SendAndroidMessage(Uint32 command, int param); + +#endif /* SDL_PLATFORM_ANDROID */ + +/** + * Query if the current device is a tablet. + * + * If SDL can't determine this, it will return false. + * + * \returns true if the device is a tablet, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsTablet(void); + +/** + * Query if the current device is a TV. + * + * If SDL can't determine this, it will return false. + * + * \returns true if the device is a TV, false otherwise. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_IsTV(void); + +/** + * Application sandbox environment. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_Sandbox +{ + SDL_SANDBOX_NONE = 0, + SDL_SANDBOX_UNKNOWN_CONTAINER, + SDL_SANDBOX_FLATPAK, + SDL_SANDBOX_SNAP, + SDL_SANDBOX_MACOS +} SDL_Sandbox; + +/** + * Get the application sandbox environment, if any. + * + * \returns the application sandbox environment or SDL_SANDBOX_NONE if the + * application is not running in a sandbox environment. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Sandbox SDLCALL SDL_GetSandbox(void); + + +/* Functions used by iOS app delegates to notify SDL about state changes. */ + +/** + * Let iOS apps with external event handling report + * onApplicationWillTerminate. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationWillTerminate(void); + +/** + * Let iOS apps with external event handling report + * onApplicationDidReceiveMemoryWarning. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidReceiveMemoryWarning(void); + +/** + * Let iOS apps with external event handling report + * onApplicationWillResignActive. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationWillEnterBackground(void); + +/** + * Let iOS apps with external event handling report + * onApplicationDidEnterBackground. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidEnterBackground(void); + +/** + * Let iOS apps with external event handling report + * onApplicationWillEnterForeground. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationWillEnterForeground(void); + +/** + * Let iOS apps with external event handling report + * onApplicationDidBecomeActive. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidEnterForeground(void); + +#ifdef SDL_PLATFORM_IOS + +/** + * Let iOS apps with external event handling report + * onApplicationDidChangeStatusBarOrientation. + * + * This functions allows iOS apps that have their own event handling to hook + * into SDL to generate SDL events. This maps directly to an iOS-specific + * event, but since it doesn't do anything iOS-specific internally, it is + * available on all platforms, in case it might be useful for some specific + * paradigm. Most apps do not need to use this directly; SDL's internal event + * code will handle all this for windows created by SDL_CreateWindow! + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_OnApplicationDidChangeStatusBarOrientation(void); +#endif + +/* + * Functions used only by GDK + */ +#ifdef SDL_PLATFORM_GDK +typedef struct XTaskQueueObject *XTaskQueueHandle; +typedef struct XUser *XUserHandle; + +/** + * Gets a reference to the global async task queue handle for GDK, + * initializing if needed. + * + * Once you are done with the task queue, you should call + * XTaskQueueCloseHandle to reduce the reference count to avoid a resource + * leak. + * + * \param outTaskQueue a pointer to be filled in with task queue handle. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGDKTaskQueue(XTaskQueueHandle *outTaskQueue); + +/** + * Gets a reference to the default user handle for GDK. + * + * This is effectively a synchronous version of XUserAddAsync, which always + * prefers the default user and allows a sign-in UI. + * + * \param outUserHandle a pointer to be filled in with the default user + * handle. + * \returns true if success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetGDKDefaultUser(XUserHandle *outUserHandle); + +#endif + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_system_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_thread.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_thread.h new file mode 100644 index 0000000..e981b54 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_thread.h @@ -0,0 +1,578 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_thread_h_ +#define SDL_thread_h_ + +/** + * # CategoryThread + * + * SDL offers cross-platform thread management functions. These are mostly + * concerned with starting threads, setting their priority, and dealing with + * their termination. + * + * In addition, there is support for Thread Local Storage (data that is unique + * to each thread, but accessed from a single key). + * + * On platforms without thread support (such as Emscripten when built without + * pthreads), these functions still exist, but things like SDL_CreateThread() + * will report failure without doing anything. + * + * If you're going to work with threads, you almost certainly need to have a + * good understanding of [CategoryMutex](CategoryMutex) as well. + */ + +#include +#include +#include + +/* Thread synchronization primitives */ +#include + +#if defined(SDL_PLATFORM_WINDOWS) +#include /* _beginthreadex() and _endthreadex() */ +#endif + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The SDL thread object. + * + * These are opaque data. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_WaitThread + */ +typedef struct SDL_Thread SDL_Thread; + +/** + * A unique numeric ID that identifies a thread. + * + * These are different from SDL_Thread objects, which are generally what an + * application will operate on, but having a way to uniquely identify a thread + * can be useful at times. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetThreadID + * \sa SDL_GetCurrentThreadID + */ +typedef Uint64 SDL_ThreadID; + +/** + * Thread local storage ID. + * + * 0 is the invalid ID. An app can create these and then set data for these + * IDs that is unique to each thread. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetTLS + * \sa SDL_SetTLS + */ +typedef SDL_AtomicInt SDL_TLSID; + +/** + * The SDL thread priority. + * + * SDL will make system changes as necessary in order to apply the thread + * priority. Code which attempts to control thread state related to priority + * should be aware that calling SDL_SetCurrentThreadPriority may alter such + * state. SDL_HINT_THREAD_PRIORITY_POLICY can be used to control aspects of + * this behavior. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_ThreadPriority { + SDL_THREAD_PRIORITY_LOW, + SDL_THREAD_PRIORITY_NORMAL, + SDL_THREAD_PRIORITY_HIGH, + SDL_THREAD_PRIORITY_TIME_CRITICAL +} SDL_ThreadPriority; + +/** + * The SDL thread state. + * + * The current state of a thread can be checked by calling SDL_GetThreadState. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetThreadState + */ +typedef enum SDL_ThreadState +{ + SDL_THREAD_UNKNOWN, /**< The thread is not valid */ + SDL_THREAD_ALIVE, /**< The thread is currently running */ + SDL_THREAD_DETACHED, /**< The thread is detached and can't be waited on */ + SDL_THREAD_COMPLETE /**< The thread has finished and should be cleaned up with SDL_WaitThread() */ +} SDL_ThreadState; + +/** + * The function passed to SDL_CreateThread() as the new thread's entry point. + * + * \param data what was passed as `data` to SDL_CreateThread(). + * \returns a value that can be reported through SDL_WaitThread(). + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef int (SDLCALL *SDL_ThreadFunction) (void *data); + + +#ifdef SDL_WIKI_DOCUMENTATION_SECTION + +/* + * Note that these aren't the correct function signatures in this block, but + * this is what the API reference manual should look like for all intents and + * purposes. + * + * Technical details, not for the wiki (hello, header readers!)... + * + * On Windows (and maybe other platforms), a program might use a different + * C runtime than its libraries. Or, in SDL's case, it might use a C runtime + * while SDL uses none at all. + * + * C runtimes expect to initialize thread-specific details when a new thread + * is created, but to do this in SDL_CreateThread would require SDL to know + * intimate details about the caller's C runtime, which is not possible. + * + * So SDL_CreateThread has two extra parameters, which are + * hidden at compile time by macros: the C runtime's `_beginthreadex` and + * `_endthreadex` entry points. If these are not NULL, they are used to spin + * and terminate the new thread; otherwise the standard Win32 `CreateThread` + * function is used. When `SDL_CreateThread` is called from a compiler that + * needs this C runtime thread init function, macros insert the appropriate + * function pointers for SDL_CreateThread's caller (which might be a different + * compiler with a different runtime in different calls to SDL_CreateThread!). + * + * SDL_BeginThreadFunction defaults to `_beginthreadex` on Windows (and NULL + * everywhere else), but apps that have extremely specific special needs can + * define this to something else and the SDL headers will use it, passing the + * app-defined value to SDL_CreateThread calls. Redefine this with caution! + * + * Platforms that don't need _beginthread stuff (most everything) will fail + * SDL_CreateThread with an error if these pointers _aren't_ NULL. + * + * Unless you are doing something extremely complicated, like perhaps a + * language binding, **you should never deal with this directly**. Let SDL's + * macros handle this platform-specific detail transparently! + */ + +/** + * Create a new thread with a default stack size. + * + * This is a convenience function, equivalent to calling + * SDL_CreateThreadWithProperties with the following properties set: + * + * - `SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER`: `fn` + * - `SDL_PROP_THREAD_CREATE_NAME_STRING`: `name` + * - `SDL_PROP_THREAD_CREATE_USERDATA_POINTER`: `data` + * + * Note that this "function" is actually a macro that calls an internal + * function with two extra parameters not listed here; they are hidden through + * preprocessor macros and are needed to support various C runtimes at the + * point of the function call. Language bindings that aren't using the C + * headers will need to deal with this. + * + * Usually, apps should just call this function the same way on every platform + * and let the macros hide the details. + * + * \param fn the SDL_ThreadFunction function to call in the new thread. + * \param name the name of the thread. + * \param data a pointer that is passed to `fn`. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThreadWithProperties + * \sa SDL_WaitThread + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data); + +/** + * Create a new thread with with the specified properties. + * + * These are the supported properties: + * + * - `SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER`: an SDL_ThreadFunction + * value that will be called at the start of the new thread's life. + * Required. + * - `SDL_PROP_THREAD_CREATE_NAME_STRING`: the name of the new thread, which + * might be available to debuggers. Optional, defaults to NULL. + * - `SDL_PROP_THREAD_CREATE_USERDATA_POINTER`: an arbitrary app-defined + * pointer, which is passed to the entry function on the new thread, as its + * only parameter. Optional, defaults to NULL. + * - `SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER`: the size, in bytes, of the new + * thread's stack. Optional, defaults to 0 (system-defined default). + * + * SDL makes an attempt to report `SDL_PROP_THREAD_CREATE_NAME_STRING` to the + * system, so that debuggers can display it. Not all platforms support this. + * + * Thread naming is a little complicated: Most systems have very small limits + * for the string length (Haiku has 32 bytes, Linux currently has 16, Visual + * C++ 6.0 has _nine_!), and possibly other arbitrary rules. You'll have to + * see what happens with your system's debugger. The name should be UTF-8 (but + * using the naming limits of C identifiers is a better bet). There are no + * requirements for thread naming conventions, so long as the string is + * null-terminated UTF-8, but these guidelines are helpful in choosing a name: + * + * https://stackoverflow.com/questions/149932/naming-conventions-for-threads + * + * If a system imposes requirements, SDL will try to munge the string for it + * (truncate, etc), but the original string contents will be available from + * SDL_GetThreadName(). + * + * The size (in bytes) of the new stack can be specified with + * `SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER`. Zero means "use the system + * default" which might be wildly different between platforms. x86 Linux + * generally defaults to eight megabytes, an embedded device might be a few + * kilobytes instead. You generally need to specify a stack that is a multiple + * of the system's page size (in many cases, this is 4 kilobytes, but check + * your system documentation). + * + * Note that this "function" is actually a macro that calls an internal + * function with two extra parameters not listed here; they are hidden through + * preprocessor macros and are needed to support various C runtimes at the + * point of the function call. Language bindings that aren't using the C + * headers will need to deal with this. + * + * The actual symbol in SDL is `SDL_CreateThreadWithPropertiesRuntime`, so + * there is no symbol clash, but trying to load an SDL shared library and look + * for "SDL_CreateThreadWithProperties" will fail. + * + * Usually, apps should just call this function the same way on every platform + * and let the macros hide the details. + * + * \param props the properties to use. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_WaitThread + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThreadWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER "SDL.thread.create.entry_function" +#define SDL_PROP_THREAD_CREATE_NAME_STRING "SDL.thread.create.name" +#define SDL_PROP_THREAD_CREATE_USERDATA_POINTER "SDL.thread.create.userdata" +#define SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER "SDL.thread.create.stacksize" + +/* end wiki documentation for macros that are meant to look like functions. */ +#endif + + +/* The real implementation, hidden from the wiki, so it can show this as real functions that don't have macro magic. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +# if defined(SDL_PLATFORM_WINDOWS) +# ifndef SDL_BeginThreadFunction +# define SDL_BeginThreadFunction _beginthreadex +# endif +# ifndef SDL_EndThreadFunction +# define SDL_EndThreadFunction _endthreadex +# endif +# endif +#endif + +/* currently no other platforms than Windows use _beginthreadex/_endthreadex things. */ +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +# ifndef SDL_BeginThreadFunction +# define SDL_BeginThreadFunction NULL +# endif +#endif + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +# ifndef SDL_EndThreadFunction +# define SDL_EndThreadFunction NULL +# endif +#endif + +#ifndef SDL_WIKI_DOCUMENTATION_SECTION +/* These are the actual functions exported from SDL! Don't use them directly! Use the SDL_CreateThread and SDL_CreateThreadWithProperties macros! */ +/** + * The actual entry point for SDL_CreateThread. + * + * \param fn the SDL_ThreadFunction function to call in the new thread + * \param name the name of the thread + * \param data a pointer that is passed to `fn` + * \param pfnBeginThread the C runtime's _beginthreadex (or whatnot). Can be NULL. + * \param pfnEndThread the C runtime's _endthreadex (or whatnot). Can be NULL. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThreadRuntime(SDL_ThreadFunction fn, const char *name, void *data, SDL_FunctionPointer pfnBeginThread, SDL_FunctionPointer pfnEndThread); + +/** + * The actual entry point for SDL_CreateThreadWithProperties. + * + * \param props the properties to use + * \param pfnBeginThread the C runtime's _beginthreadex (or whatnot). Can be NULL. + * \param pfnEndThread the C runtime's _endthreadex (or whatnot). Can be NULL. + * \returns an opaque pointer to the new thread object on success, NULL if the + * new thread could not be created; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Thread * SDLCALL SDL_CreateThreadWithPropertiesRuntime(SDL_PropertiesID props, SDL_FunctionPointer pfnBeginThread, SDL_FunctionPointer pfnEndThread); + +#define SDL_CreateThread(fn, name, data) SDL_CreateThreadRuntime((fn), (name), (data), (SDL_FunctionPointer) (SDL_BeginThreadFunction), (SDL_FunctionPointer) (SDL_EndThreadFunction)) +#define SDL_CreateThreadWithProperties(props) SDL_CreateThreadWithPropertiesRuntime((props), (SDL_FunctionPointer) (SDL_BeginThreadFunction), (SDL_FunctionPointer) (SDL_EndThreadFunction)) +#define SDL_PROP_THREAD_CREATE_ENTRY_FUNCTION_POINTER "SDL.thread.create.entry_function" +#define SDL_PROP_THREAD_CREATE_NAME_STRING "SDL.thread.create.name" +#define SDL_PROP_THREAD_CREATE_USERDATA_POINTER "SDL.thread.create.userdata" +#define SDL_PROP_THREAD_CREATE_STACKSIZE_NUMBER "SDL.thread.create.stacksize" +#endif + + +/** + * Get the thread name as it was specified in SDL_CreateThread(). + * + * \param thread the thread to query. + * \returns a pointer to a UTF-8 string that names the specified thread, or + * NULL if it doesn't have a name. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetThreadName(SDL_Thread *thread); + +/** + * Get the thread identifier for the current thread. + * + * This thread identifier is as reported by the underlying operating system. + * If SDL is running on a platform that does not support threads the return + * value will always be zero. + * + * This function also returns a valid thread ID when called from the main + * thread. + * + * \returns the ID of the current thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetThreadID + */ +extern SDL_DECLSPEC SDL_ThreadID SDLCALL SDL_GetCurrentThreadID(void); + +/** + * Get the thread identifier for the specified thread. + * + * This thread identifier is as reported by the underlying operating system. + * If SDL is running on a platform that does not support threads the return + * value will always be zero. + * + * \param thread the thread to query. + * \returns the ID of the specified thread, or the ID of the current thread if + * `thread` is NULL. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentThreadID + */ +extern SDL_DECLSPEC SDL_ThreadID SDLCALL SDL_GetThreadID(SDL_Thread *thread); + +/** + * Set the priority for the current thread. + * + * Note that some platforms will not let you alter the priority (or at least, + * promote the thread to a higher priority) at all, and some require you to be + * an administrator account. Be prepared for this to fail. + * + * \param priority the SDL_ThreadPriority to set. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetCurrentThreadPriority(SDL_ThreadPriority priority); + +/** + * Wait for a thread to finish. + * + * Threads that haven't been detached will remain until this function cleans + * them up. Not doing so is a resource leak. + * + * Once a thread has been cleaned up through this function, the SDL_Thread + * that references it becomes invalid and should not be referenced again. As + * such, only one thread may call SDL_WaitThread() on another. + * + * The return code from the thread function is placed in the area pointed to + * by `status`, if `status` is not NULL. + * + * You may not wait on a thread that has been used in a call to + * SDL_DetachThread(). Use either that function or this one, but not both, or + * behavior is undefined. + * + * It is safe to pass a NULL thread to this function; it is a no-op. + * + * Note that the thread pointer is freed by this function and is not valid + * afterward. + * + * \param thread the SDL_Thread pointer that was returned from the + * SDL_CreateThread() call that started this thread. + * \param status a pointer filled in with the value returned from the thread + * function by its 'return', or -1 if the thread has been + * detached or isn't valid, may be NULL. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_DetachThread + */ +extern SDL_DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread *thread, int *status); + +/** + * Get the current state of a thread. + * + * \param thread the thread to query. + * \returns the current state of a thread, or SDL_THREAD_UNKNOWN if the thread + * isn't valid. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ThreadState + */ +extern SDL_DECLSPEC SDL_ThreadState SDLCALL SDL_GetThreadState(SDL_Thread *thread); + +/** + * Let a thread clean up on exit without intervention. + * + * A thread may be "detached" to signify that it should not remain until + * another thread has called SDL_WaitThread() on it. Detaching a thread is + * useful for long-running threads that nothing needs to synchronize with or + * further manage. When a detached thread is done, it simply goes away. + * + * There is no way to recover the return code of a detached thread. If you + * need this, don't detach the thread and instead use SDL_WaitThread(). + * + * Once a thread is detached, you should usually assume the SDL_Thread isn't + * safe to reference again, as it will become invalid immediately upon the + * detached thread's exit, instead of remaining until someone has called + * SDL_WaitThread() to finally clean it up. As such, don't detach the same + * thread more than once. + * + * If a thread has already exited when passed to SDL_DetachThread(), it will + * stop waiting for a call to SDL_WaitThread() and clean up immediately. It is + * not safe to detach a thread that might be used with SDL_WaitThread(). + * + * You may not call SDL_WaitThread() on a thread that has been detached. Use + * either that function or this one, but not both, or behavior is undefined. + * + * It is safe to pass NULL to this function; it is a no-op. + * + * \param thread the SDL_Thread pointer that was returned from the + * SDL_CreateThread() call that started this thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateThread + * \sa SDL_WaitThread + */ +extern SDL_DECLSPEC void SDLCALL SDL_DetachThread(SDL_Thread *thread); + +/** + * Get the current thread's value associated with a thread local storage ID. + * + * \param id a pointer to the thread local storage ID, may not be NULL. + * \returns the value associated with the ID for the current thread or NULL if + * no value has been set; call SDL_GetError() for more information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetTLS + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetTLS(SDL_TLSID *id); + +/** + * The callback used to cleanup data passed to SDL_SetTLS. + * + * This is called when a thread exits, to allow an app to free any resources. + * + * \param value a pointer previously handed to SDL_SetTLS. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetTLS + */ +typedef void (SDLCALL *SDL_TLSDestructorCallback)(void *value); + +/** + * Set the current thread's value associated with a thread local storage ID. + * + * If the thread local storage ID is not initialized (the value is 0), a new + * ID will be created in a thread-safe way, so all calls using a pointer to + * the same ID will refer to the same local storage. + * + * Note that replacing a value from a previous call to this function on the + * same thread does _not_ call the previous value's destructor! + * + * `destructor` can be NULL; it is assumed that `value` does not need to be + * cleaned up if so. + * + * \param id a pointer to the thread local storage ID, may not be NULL. + * \param value the value to associate with the ID for the current thread. + * \param destructor a function called when the thread exits, to free the + * value, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTLS + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetTLS(SDL_TLSID *id, const void *value, SDL_TLSDestructorCallback destructor); + +/** + * Cleanup all TLS data for this thread. + * + * If you are creating your threads outside of SDL and then calling SDL + * functions, you should call this function before your thread exits, to + * properly clean up SDL memory. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_CleanupTLS(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_thread_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_time.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_time.h new file mode 100644 index 0000000..b6d3f6d --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_time.h @@ -0,0 +1,231 @@ +/* +Simple DirectMedia Layer +Copyright (C) 1997-2025 Sam Lantinga + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_time_h_ +#define SDL_time_h_ + +/** + * # CategoryTime + * + * SDL realtime clock and date/time routines. + * + * There are two data types that are used in this category: SDL_Time, which + * represents the nanoseconds since a specific moment (an "epoch"), and + * SDL_DateTime, which breaks time down into human-understandable components: + * years, months, days, hours, etc. + * + * Much of the functionality is involved in converting those two types to + * other useful forms. + */ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A structure holding a calendar date and time broken down into its + * components. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_DateTime +{ + int year; /**< Year */ + int month; /**< Month [01-12] */ + int day; /**< Day of the month [01-31] */ + int hour; /**< Hour [0-23] */ + int minute; /**< Minute [0-59] */ + int second; /**< Seconds [0-60] */ + int nanosecond; /**< Nanoseconds [0-999999999] */ + int day_of_week; /**< Day of the week [0-6] (0 being Sunday) */ + int utc_offset; /**< Seconds east of UTC */ +} SDL_DateTime; + +/** + * The preferred date format of the current system locale. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetDateTimeLocalePreferences + */ +typedef enum SDL_DateFormat +{ + SDL_DATE_FORMAT_YYYYMMDD = 0, /**< Year/Month/Day */ + SDL_DATE_FORMAT_DDMMYYYY = 1, /**< Day/Month/Year */ + SDL_DATE_FORMAT_MMDDYYYY = 2 /**< Month/Day/Year */ +} SDL_DateFormat; + +/** + * The preferred time format of the current system locale. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_GetDateTimeLocalePreferences + */ +typedef enum SDL_TimeFormat +{ + SDL_TIME_FORMAT_24HR = 0, /**< 24 hour time */ + SDL_TIME_FORMAT_12HR = 1 /**< 12 hour time */ +} SDL_TimeFormat; + +/** + * Gets the current preferred date and time format for the system locale. + * + * This might be a "slow" call that has to query the operating system. It's + * best to ask for this once and save the results. However, the preferred + * formats can change, usually because the user has changed a system + * preference outside of your program. + * + * \param dateFormat a pointer to the SDL_DateFormat to hold the returned date + * format, may be NULL. + * \param timeFormat a pointer to the SDL_TimeFormat to hold the returned time + * format, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDateTimeLocalePreferences(SDL_DateFormat *dateFormat, SDL_TimeFormat *timeFormat); + +/** + * Gets the current value of the system realtime clock in nanoseconds since + * Jan 1, 1970 in Universal Coordinated Time (UTC). + * + * \param ticks the SDL_Time to hold the returned tick count. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetCurrentTime(SDL_Time *ticks); + +/** + * Converts an SDL_Time in nanoseconds since the epoch to a calendar time in + * the SDL_DateTime format. + * + * \param ticks the SDL_Time to be converted. + * \param dt the resulting SDL_DateTime. + * \param localTime the resulting SDL_DateTime will be expressed in local time + * if true, otherwise it will be in Universal Coordinated + * Time (UTC). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_TimeToDateTime(SDL_Time ticks, SDL_DateTime *dt, bool localTime); + +/** + * Converts a calendar time to an SDL_Time in nanoseconds since the epoch. + * + * This function ignores the day_of_week member of the SDL_DateTime struct, so + * it may remain unset. + * + * \param dt the source SDL_DateTime. + * \param ticks the resulting SDL_Time. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DateTimeToTime(const SDL_DateTime *dt, SDL_Time *ticks); + +/** + * Converts an SDL time into a Windows FILETIME (100-nanosecond intervals + * since January 1, 1601). + * + * This function fills in the two 32-bit values of the FILETIME structure. + * + * \param ticks the time to convert. + * \param dwLowDateTime a pointer filled in with the low portion of the + * Windows FILETIME value. + * \param dwHighDateTime a pointer filled in with the high portion of the + * Windows FILETIME value. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_TimeToWindows(SDL_Time ticks, Uint32 *dwLowDateTime, Uint32 *dwHighDateTime); + +/** + * Converts a Windows FILETIME (100-nanosecond intervals since January 1, + * 1601) to an SDL time. + * + * This function takes the two 32-bit values of the FILETIME structure as + * parameters. + * + * \param dwLowDateTime the low portion of the Windows FILETIME value. + * \param dwHighDateTime the high portion of the Windows FILETIME value. + * \returns the converted SDL time. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Time SDLCALL SDL_TimeFromWindows(Uint32 dwLowDateTime, Uint32 dwHighDateTime); + +/** + * Get the number of days in a month for a given year. + * + * \param year the year. + * \param month the month [1-12]. + * \returns the number of days in the requested month or -1 on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDaysInMonth(int year, int month); + +/** + * Get the day of year for a calendar date. + * + * \param year the year component of the date. + * \param month the month component of the date. + * \param day the day component of the date. + * \returns the day of year [0-365] if the date is valid or -1 on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDayOfYear(int year, int month, int day); + +/** + * Get the day of week for a calendar date. + * + * \param year the year component of the date. + * \param month the month component of the date. + * \param day the day component of the date. + * \returns a value between 0 and 6 (0 being Sunday) if the date is valid or + * -1 on failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetDayOfWeek(int year, int month, int day); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_time_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_timer.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_timer.h new file mode 100644 index 0000000..cf94881 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_timer.h @@ -0,0 +1,450 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +#ifndef SDL_timer_h_ +#define SDL_timer_h_ + +/** + * # CategoryTimer + * + * SDL provides time management functionality. It is useful for dealing with + * (usually) small durations of time. + * + * This is not to be confused with _calendar time_ management, which is + * provided by [CategoryTime](CategoryTime). + * + * This category covers measuring time elapsed (SDL_GetTicks(), + * SDL_GetPerformanceCounter()), putting a thread to sleep for a certain + * amount of time (SDL_Delay(), SDL_DelayNS(), SDL_DelayPrecise()), and firing + * a callback function after a certain amount of time has elasped + * (SDL_AddTimer(), etc). + * + * There are also useful macros to convert between time units, like + * SDL_SECONDS_TO_NS() and such. + */ + +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* SDL time constants */ + +/** + * Number of milliseconds in a second. + * + * This is always 1000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MS_PER_SECOND 1000 + +/** + * Number of microseconds in a second. + * + * This is always 1000000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_US_PER_SECOND 1000000 + +/** + * Number of nanoseconds in a second. + * + * This is always 1000000000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_PER_SECOND 1000000000LL + +/** + * Number of nanoseconds in a millisecond. + * + * This is always 1000000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_PER_MS 1000000 + +/** + * Number of nanoseconds in a microsecond. + * + * This is always 1000. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_PER_US 1000 + +/** + * Convert seconds to nanoseconds. + * + * This only converts whole numbers, not fractional seconds. + * + * \param S the number of seconds to convert. + * \returns S, expressed in nanoseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_SECONDS_TO_NS(S) (((Uint64)(S)) * SDL_NS_PER_SECOND) + +/** + * Convert nanoseconds to seconds. + * + * This performs a division, so the results can be dramatically different if + * `NS` is an integer or floating point value. + * + * \param NS the number of nanoseconds to convert. + * \returns NS, expressed in seconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_TO_SECONDS(NS) ((NS) / SDL_NS_PER_SECOND) + +/** + * Convert milliseconds to nanoseconds. + * + * This only converts whole numbers, not fractional milliseconds. + * + * \param MS the number of milliseconds to convert. + * \returns MS, expressed in nanoseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MS_TO_NS(MS) (((Uint64)(MS)) * SDL_NS_PER_MS) + +/** + * Convert nanoseconds to milliseconds. + * + * This performs a division, so the results can be dramatically different if + * `NS` is an integer or floating point value. + * + * \param NS the number of nanoseconds to convert. + * \returns NS, expressed in milliseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_TO_MS(NS) ((NS) / SDL_NS_PER_MS) + +/** + * Convert microseconds to nanoseconds. + * + * This only converts whole numbers, not fractional microseconds. + * + * \param US the number of microseconds to convert. + * \returns US, expressed in nanoseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_US_TO_NS(US) (((Uint64)(US)) * SDL_NS_PER_US) + +/** + * Convert nanoseconds to microseconds. + * + * This performs a division, so the results can be dramatically different if + * `NS` is an integer or floating point value. + * + * \param NS the number of nanoseconds to convert. + * \returns NS, expressed in microseconds. + * + * \threadsafety It is safe to call this macro from any thread. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_NS_TO_US(NS) ((NS) / SDL_NS_PER_US) + +/** + * Get the number of milliseconds since SDL library initialization. + * + * \returns an unsigned 64-bit value representing the number of milliseconds + * since the SDL library initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetTicks(void); + +/** + * Get the number of nanoseconds since SDL library initialization. + * + * \returns an unsigned 64-bit value representing the number of nanoseconds + * since the SDL library initialized. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetTicksNS(void); + +/** + * Get the current value of the high resolution counter. + * + * This function is typically used for profiling. + * + * The counter values are only meaningful relative to each other. Differences + * between values can be converted to times by using + * SDL_GetPerformanceFrequency(). + * + * \returns the current counter value. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPerformanceFrequency + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetPerformanceCounter(void); + +/** + * Get the count per second of the high resolution counter. + * + * \returns a platform-specific count per second. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetPerformanceCounter + */ +extern SDL_DECLSPEC Uint64 SDLCALL SDL_GetPerformanceFrequency(void); + +/** + * Wait a specified number of milliseconds before returning. + * + * This function waits a specified number of milliseconds before returning. It + * waits at least the specified time, but possibly longer due to OS + * scheduling. + * + * \param ms the number of milliseconds to delay. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DelayNS + * \sa SDL_DelayPrecise + */ +extern SDL_DECLSPEC void SDLCALL SDL_Delay(Uint32 ms); + +/** + * Wait a specified number of nanoseconds before returning. + * + * This function waits a specified number of nanoseconds before returning. It + * waits at least the specified time, but possibly longer due to OS + * scheduling. + * + * \param ns the number of nanoseconds to delay. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Delay + * \sa SDL_DelayPrecise + */ +extern SDL_DECLSPEC void SDLCALL SDL_DelayNS(Uint64 ns); + +/** + * Wait a specified number of nanoseconds before returning. + * + * This function waits a specified number of nanoseconds before returning. It + * will attempt to wait as close to the requested time as possible, busy + * waiting if necessary, but could return later due to OS scheduling. + * + * \param ns the number of nanoseconds to delay. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Delay + * \sa SDL_DelayNS + */ +extern SDL_DECLSPEC void SDLCALL SDL_DelayPrecise(Uint64 ns); + +/** + * Definition of the timer ID type. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_TimerID; + +/** + * Function prototype for the millisecond timer callback function. + * + * The callback function is passed the current timer interval and returns the + * next timer interval, in milliseconds. If the returned value is the same as + * the one passed in, the periodic alarm continues, otherwise a new alarm is + * scheduled. If the callback returns 0, the periodic alarm is canceled and + * will be removed. + * + * \param userdata an arbitrary pointer provided by the app through + * SDL_AddTimer, for its own use. + * \param timerID the current timer being processed. + * \param interval the current callback time interval. + * \returns the new callback time interval, or 0 to disable further runs of + * the callback. + * + * \threadsafety SDL may call this callback at any time from a background + * thread; the application is responsible for locking resources + * the callback touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_AddTimer + */ +typedef Uint32 (SDLCALL *SDL_TimerCallback)(void *userdata, SDL_TimerID timerID, Uint32 interval); + +/** + * Call a callback function at a future time. + * + * The callback function is passed the current timer interval and the user + * supplied parameter from the SDL_AddTimer() call and should return the next + * timer interval. If the value returned from the callback is 0, the timer is + * canceled and will be removed. + * + * The callback is run on a separate thread, and for short timeouts can + * potentially be called before this function returns. + * + * Timers take into account the amount of time it took to execute the + * callback. For example, if the callback took 250 ms to execute and returned + * 1000 (ms), the timer would only wait another 750 ms before its next + * iteration. + * + * Timing may be inexact due to OS scheduling. Be sure to note the current + * time with SDL_GetTicksNS() or SDL_GetPerformanceCounter() in case your + * callback needs to adjust for variances. + * + * \param interval the timer delay, in milliseconds, passed to `callback`. + * \param callback the SDL_TimerCallback function to call when the specified + * `interval` elapses. + * \param userdata a pointer that is passed to `callback`. + * \returns a timer ID or 0 on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddTimerNS + * \sa SDL_RemoveTimer + */ +extern SDL_DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_TimerCallback callback, void *userdata); + +/** + * Function prototype for the nanosecond timer callback function. + * + * The callback function is passed the current timer interval and returns the + * next timer interval, in nanoseconds. If the returned value is the same as + * the one passed in, the periodic alarm continues, otherwise a new alarm is + * scheduled. If the callback returns 0, the periodic alarm is canceled and + * will be removed. + * + * \param userdata an arbitrary pointer provided by the app through + * SDL_AddTimer, for its own use. + * \param timerID the current timer being processed. + * \param interval the current callback time interval. + * \returns the new callback time interval, or 0 to disable further runs of + * the callback. + * + * \threadsafety SDL may call this callback at any time from a background + * thread; the application is responsible for locking resources + * the callback touches that need to be protected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_AddTimerNS + */ +typedef Uint64 (SDLCALL *SDL_NSTimerCallback)(void *userdata, SDL_TimerID timerID, Uint64 interval); + +/** + * Call a callback function at a future time. + * + * The callback function is passed the current timer interval and the user + * supplied parameter from the SDL_AddTimerNS() call and should return the + * next timer interval. If the value returned from the callback is 0, the + * timer is canceled and will be removed. + * + * The callback is run on a separate thread, and for short timeouts can + * potentially be called before this function returns. + * + * Timers take into account the amount of time it took to execute the + * callback. For example, if the callback took 250 ns to execute and returned + * 1000 (ns), the timer would only wait another 750 ns before its next + * iteration. + * + * Timing may be inexact due to OS scheduling. Be sure to note the current + * time with SDL_GetTicksNS() or SDL_GetPerformanceCounter() in case your + * callback needs to adjust for variances. + * + * \param interval the timer delay, in nanoseconds, passed to `callback`. + * \param callback the SDL_TimerCallback function to call when the specified + * `interval` elapses. + * \param userdata a pointer that is passed to `callback`. + * \returns a timer ID or 0 on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddTimer + * \sa SDL_RemoveTimer + */ +extern SDL_DECLSPEC SDL_TimerID SDLCALL SDL_AddTimerNS(Uint64 interval, SDL_NSTimerCallback callback, void *userdata); + +/** + * Remove a timer created with SDL_AddTimer(). + * + * \param id the ID of the timer to remove. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety It is safe to call this function from any thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_AddTimer + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RemoveTimer(SDL_TimerID id); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_timer_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_touch.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_touch.h new file mode 100644 index 0000000..64845a1 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_touch.h @@ -0,0 +1,184 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryTouch + * + * SDL offers touch input, on platforms that support it. It can manage + * multiple touch devices and track multiple fingers on those devices. + * + * Touches are mostly dealt with through the event system, in the + * SDL_EVENT_FINGER_DOWN, SDL_EVENT_FINGER_MOTION, and SDL_EVENT_FINGER_UP + * events, but there are also functions to query for hardware details, etc. + * + * The touch system, by default, will also send virtual mouse events; this can + * be useful for making a some desktop apps work on a phone without + * significant changes. For apps that care about mouse and touch input + * separately, they should ignore mouse events that have a `which` field of + * SDL_TOUCH_MOUSEID. + */ + +#ifndef SDL_touch_h_ +#define SDL_touch_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * A unique ID for a touch device. + * + * This ID is valid for the time the device is connected to the system, and is + * never reused for the lifetime of the application. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint64 SDL_TouchID; + +/** + * A unique ID for a single finger on a touch device. + * + * This ID is valid for the time the finger (stylus, etc) is touching and will + * be unique for all fingers currently in contact, so this ID tracks the + * lifetime of a single continuous touch. This value may represent an index, a + * pointer, or some other unique ID, depending on the platform. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint64 SDL_FingerID; + +/** + * An enum that describes the type of a touch device. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_TouchDeviceType +{ + SDL_TOUCH_DEVICE_INVALID = -1, + SDL_TOUCH_DEVICE_DIRECT, /**< touch screen with window-relative coordinates */ + SDL_TOUCH_DEVICE_INDIRECT_ABSOLUTE, /**< trackpad with absolute device coordinates */ + SDL_TOUCH_DEVICE_INDIRECT_RELATIVE /**< trackpad with screen cursor-relative coordinates */ +} SDL_TouchDeviceType; + +/** + * Data about a single finger in a multitouch event. + * + * Each touch event is a collection of fingers that are simultaneously in + * contact with the touch device (so a "touch" can be a "multitouch," in + * reality), and this struct reports details of the specific fingers. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetTouchFingers + */ +typedef struct SDL_Finger +{ + SDL_FingerID id; /**< the finger ID */ + float x; /**< the x-axis location of the touch event, normalized (0...1) */ + float y; /**< the y-axis location of the touch event, normalized (0...1) */ + float pressure; /**< the quantity of pressure applied, normalized (0...1) */ +} SDL_Finger; + +/** + * The SDL_MouseID for mouse events simulated with touch input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_TOUCH_MOUSEID ((SDL_MouseID)-1) + +/** + * The SDL_TouchID for touch events simulated with mouse input. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MOUSE_TOUCHID ((SDL_TouchID)-1) + + +/** + * Get a list of registered touch devices. + * + * On some platforms SDL first sees the touch device if it was actually used. + * Therefore the returned list might be empty, although devices are available. + * After using all devices at least once the number will be correct. + * + * \param count a pointer filled in with the number of devices returned, may + * be NULL. + * \returns a 0 terminated array of touch device IDs or NULL on failure; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_TouchID * SDLCALL SDL_GetTouchDevices(int *count); + +/** + * Get the touch device name as reported from the driver. + * + * \param touchID the touch device instance ID. + * \returns touch device name, or NULL on failure; call SDL_GetError() for + * more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetTouchDeviceName(SDL_TouchID touchID); + +/** + * Get the type of the given touch device. + * + * \param touchID the ID of a touch device. + * \returns touch device type. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_TouchDeviceType SDLCALL SDL_GetTouchDeviceType(SDL_TouchID touchID); + +/** + * Get a list of active fingers for a given touch device. + * + * \param touchID the ID of a touch device. + * \param count a pointer filled in with the number of fingers returned, can + * be NULL. + * \returns a NULL terminated array of SDL_Finger pointers or NULL on failure; + * call SDL_GetError() for more information. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Finger ** SDLCALL SDL_GetTouchFingers(SDL_TouchID touchID, int *count); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_touch_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_tray.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_tray.h new file mode 100644 index 0000000..1780b0b --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_tray.h @@ -0,0 +1,544 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryTray + * + * SDL offers a way to add items to the "system tray" (more correctly called + * the "notification area" on Windows). On platforms that offer this concept, + * an SDL app can add a tray icon, submenus, checkboxes, and clickable + * entries, and register a callback that is fired when the user clicks on + * these pieces. + */ + +#ifndef SDL_tray_h_ +#define SDL_tray_h_ + +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * An opaque handle representing a toplevel system tray object. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_Tray SDL_Tray; + +/** + * An opaque handle representing a menu/submenu on a system tray object. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TrayMenu SDL_TrayMenu; + +/** + * An opaque handle representing an entry on a system tray object. + * + * \since This struct is available since SDL 3.2.0. + */ +typedef struct SDL_TrayEntry SDL_TrayEntry; + +/** + * Flags that control the creation of system tray entries. + * + * Some of these flags are required; exactly one of them must be specified at + * the time a tray entry is created. Other flags are optional; zero or more of + * those can be OR'ed together with the required flag. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + */ +typedef Uint32 SDL_TrayEntryFlags; + +#define SDL_TRAYENTRY_BUTTON 0x00000001u /**< Make the entry a simple button. Required. */ +#define SDL_TRAYENTRY_CHECKBOX 0x00000002u /**< Make the entry a checkbox. Required. */ +#define SDL_TRAYENTRY_SUBMENU 0x00000004u /**< Prepare the entry to have a submenu. Required */ +#define SDL_TRAYENTRY_DISABLED 0x80000000u /**< Make the entry disabled. Optional. */ +#define SDL_TRAYENTRY_CHECKED 0x40000000u /**< Make the entry checked. This is valid only for checkboxes. Optional. */ + +/** + * A callback that is invoked when a tray entry is selected. + * + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * \param entry the tray entry that was selected. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_SetTrayEntryCallback + */ +typedef void (SDLCALL *SDL_TrayCallback)(void *userdata, SDL_TrayEntry *entry); + +/** + * Create an icon to be placed in the operating system's tray, or equivalent. + * + * Many platforms advise not using a system tray unless persistence is a + * necessary feature. Avoid needlessly creating a tray icon, as the user may + * feel like it clutters their interface. + * + * Using tray icons require the video subsystem. + * + * \param icon a surface to be used as icon. May be NULL. + * \param tooltip a tooltip to be displayed when the mouse hovers the icon in + * UTF-8 encoding. Not supported on all platforms. May be NULL. + * \returns The newly created system tray icon. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTrayMenu + * \sa SDL_GetTrayMenu + * \sa SDL_DestroyTray + */ +extern SDL_DECLSPEC SDL_Tray * SDLCALL SDL_CreateTray(SDL_Surface *icon, const char *tooltip); + +/** + * Updates the system tray icon's icon. + * + * \param tray the tray icon to be updated. + * \param icon the new icon. May be NULL. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayIcon(SDL_Tray *tray, SDL_Surface *icon); + +/** + * Updates the system tray icon's tooltip. + * + * \param tray the tray icon to be updated. + * \param tooltip the new tooltip in UTF-8 encoding. May be NULL. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayTooltip(SDL_Tray *tray, const char *tooltip); + +/** + * Create a menu for a system tray. + * + * This should be called at most once per tray icon. + * + * This function does the same thing as SDL_CreateTraySubmenu(), except that + * it takes a SDL_Tray instead of a SDL_TrayEntry. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param tray the tray to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + * \sa SDL_GetTrayMenu + * \sa SDL_GetTrayMenuParentTray + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_CreateTrayMenu(SDL_Tray *tray); + +/** + * Create a submenu for a system tray entry. + * + * This should be called at most once per tray entry. + * + * This function does the same thing as SDL_CreateTrayMenu, except that it + * takes a SDL_TrayEntry instead of a SDL_Tray. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param entry the tray entry to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTraySubmenu + * \sa SDL_GetTrayMenuParentEntry + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_CreateTraySubmenu(SDL_TrayEntry *entry); + +/** + * Gets a previously created tray menu. + * + * You should have called SDL_CreateTrayMenu() on the tray object. This + * function allows you to fetch it again later. + * + * This function does the same thing as SDL_GetTraySubmenu(), except that it + * takes a SDL_Tray instead of a SDL_TrayEntry. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param tray the tray entry to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + * \sa SDL_CreateTrayMenu + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_GetTrayMenu(SDL_Tray *tray); + +/** + * Gets a previously created tray entry submenu. + * + * You should have called SDL_CreateTraySubmenu() on the entry object. This + * function allows you to fetch it again later. + * + * This function does the same thing as SDL_GetTrayMenu(), except that it + * takes a SDL_TrayEntry instead of a SDL_Tray. + * + * A menu does not need to be destroyed; it will be destroyed with the tray. + * + * \param entry the tray entry to bind the menu to. + * \returns the newly created menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + * \sa SDL_CreateTraySubmenu + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_GetTraySubmenu(SDL_TrayEntry *entry); + +/** + * Returns a list of entries in the menu, in order. + * + * \param menu The menu to get entries from. + * \param count An optional pointer to obtain the number of entries in the + * menu. + * \returns a NULL-terminated list of entries within the given menu. The + * pointer becomes invalid when any function that inserts or deletes + * entries in the menu is called. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_RemoveTrayEntry + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC const SDL_TrayEntry ** SDLCALL SDL_GetTrayEntries(SDL_TrayMenu *menu, int *count); + +/** + * Removes a tray entry. + * + * \param entry The entry to be deleted. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC void SDLCALL SDL_RemoveTrayEntry(SDL_TrayEntry *entry); + +/** + * Insert a tray entry at a given position. + * + * If label is NULL, the entry will be a separator. Many functions won't work + * for an entry that is a separator. + * + * An entry does not need to be destroyed; it will be destroyed with the tray. + * + * \param menu the menu to append the entry to. + * \param pos the desired position for the new entry. Entries at or following + * this place will be moved. If pos is -1, the entry is appended. + * \param label the text to be displayed on the entry, in UTF-8 encoding, or + * NULL for a separator. + * \param flags a combination of flags, some of which are mandatory. + * \returns the newly created entry, or NULL if pos is out of bounds. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_TrayEntryFlags + * \sa SDL_GetTrayEntries + * \sa SDL_RemoveTrayEntry + * \sa SDL_GetTrayEntryParent + */ +extern SDL_DECLSPEC SDL_TrayEntry * SDLCALL SDL_InsertTrayEntryAt(SDL_TrayMenu *menu, int pos, const char *label, SDL_TrayEntryFlags flags); + +/** + * Sets the label of an entry. + * + * An entry cannot change between a separator and an ordinary entry; that is, + * it is not possible to set a non-NULL label on an entry that has a NULL + * label (separators), or to set a NULL label to an entry that has a non-NULL + * label. The function will silently fail if that happens. + * + * \param entry the entry to be updated. + * \param label the new label for the entry in UTF-8 encoding. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTrayEntryLabel + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryLabel(SDL_TrayEntry *entry, const char *label); + +/** + * Gets the label of an entry. + * + * If the returned value is NULL, the entry is a separator. + * + * \param entry the entry to be read. + * \returns the label of the entry in UTF-8 encoding. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_SetTrayEntryLabel + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetTrayEntryLabel(SDL_TrayEntry *entry); + +/** + * Sets whether or not an entry is checked. + * + * The entry must have been created with the SDL_TRAYENTRY_CHECKBOX flag. + * + * \param entry the entry to be updated. + * \param checked true if the entry should be checked; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTrayEntryChecked + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryChecked(SDL_TrayEntry *entry, bool checked); + +/** + * Gets whether or not an entry is checked. + * + * The entry must have been created with the SDL_TRAYENTRY_CHECKBOX flag. + * + * \param entry the entry to be read. + * \returns true if the entry is checked; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_SetTrayEntryChecked + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTrayEntryChecked(SDL_TrayEntry *entry); + +/** + * Sets whether or not an entry is enabled. + * + * \param entry the entry to be updated. + * \param enabled true if the entry should be enabled; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_GetTrayEntryEnabled + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryEnabled(SDL_TrayEntry *entry, bool enabled); + +/** + * Gets whether or not an entry is enabled. + * + * \param entry the entry to be read. + * \returns true if the entry is enabled; false otherwise. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + * \sa SDL_SetTrayEntryEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetTrayEntryEnabled(SDL_TrayEntry *entry); + +/** + * Sets a callback to be invoked when the entry is selected. + * + * \param entry the entry to be updated. + * \param callback a callback to be invoked when the entry is selected. + * \param userdata an optional pointer to pass extra data to the callback when + * it will be invoked. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetTrayEntries + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC void SDLCALL SDL_SetTrayEntryCallback(SDL_TrayEntry *entry, SDL_TrayCallback callback, void *userdata); + +/** + * Simulate a click on a tray entry. + * + * \param entry The entry to activate. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_ClickTrayEntry(SDL_TrayEntry *entry); + +/** + * Destroys a tray object. + * + * This also destroys all associated menus and entries. + * + * \param tray the tray icon to be destroyed. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTray + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyTray(SDL_Tray *tray); + +/** + * Gets the menu containing a certain tray entry. + * + * \param entry the entry for which to get the parent menu. + * \returns the parent menu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_InsertTrayEntryAt + */ +extern SDL_DECLSPEC SDL_TrayMenu * SDLCALL SDL_GetTrayEntryParent(SDL_TrayEntry *entry); + +/** + * Gets the entry for which the menu is a submenu, if the current menu is a + * submenu. + * + * Either this function or SDL_GetTrayMenuParentTray() will return non-NULL + * for any given menu. + * + * \param menu the menu for which to get the parent entry. + * \returns the parent entry, or NULL if this menu is not a submenu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTraySubmenu + * \sa SDL_GetTrayMenuParentTray + */ +extern SDL_DECLSPEC SDL_TrayEntry * SDLCALL SDL_GetTrayMenuParentEntry(SDL_TrayMenu *menu); + +/** + * Gets the tray for which this menu is the first-level menu, if the current + * menu isn't a submenu. + * + * Either this function or SDL_GetTrayMenuParentEntry() will return non-NULL + * for any given menu. + * + * \param menu the menu for which to get the parent enttrayry. + * \returns the parent tray, or NULL if this menu is a submenu. + * + * \threadsafety This function should be called on the thread that created the + * tray. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateTrayMenu + * \sa SDL_GetTrayMenuParentEntry + */ +extern SDL_DECLSPEC SDL_Tray * SDLCALL SDL_GetTrayMenuParentTray(SDL_TrayMenu *menu); + +/** + * Update the trays. + * + * This is called automatically by the event loop and is only needed if you're + * using trays but aren't handling SDL events. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_UpdateTrays(void); + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_tray_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_version.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_version.h new file mode 100644 index 0000000..7443d52 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_version.h @@ -0,0 +1,183 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryVersion + * + * Functionality to query the current SDL version, both as headers the app was + * compiled against, and a library the app is linked to. + */ + +#ifndef SDL_version_h_ +#define SDL_version_h_ + +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * The current major version of SDL headers. + * + * If this were SDL version 3.2.1, this value would be 3. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MAJOR_VERSION 3 + +/** + * The current minor version of the SDL headers. + * + * If this were SDL version 3.2.1, this value would be 2. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MINOR_VERSION 2 + +/** + * The current micro (or patchlevel) version of the SDL headers. + * + * If this were SDL version 3.2.1, this value would be 1. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_MICRO_VERSION 20 + +/** + * This macro turns the version numbers into a numeric value. + * + * (1,2,3) becomes 1002003. + * + * \param major the major version number. + * \param minor the minorversion number. + * \param patch the patch version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM(major, minor, patch) \ + ((major) * 1000000 + (minor) * 1000 + (patch)) + +/** + * This macro extracts the major version from a version number + * + * 1002003 becomes 1. + * + * \param version the version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM_MAJOR(version) ((version) / 1000000) + +/** + * This macro extracts the minor version from a version number + * + * 1002003 becomes 2. + * + * \param version the version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM_MINOR(version) (((version) / 1000) % 1000) + +/** + * This macro extracts the micro version from a version number + * + * 1002003 becomes 3. + * + * \param version the version number. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSIONNUM_MICRO(version) ((version) % 1000) + +/** + * This is the version number macro for the current SDL version. + * + * \since This macro is available since SDL 3.2.0. + * + * \sa SDL_GetVersion + */ +#define SDL_VERSION \ + SDL_VERSIONNUM(SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_MICRO_VERSION) + +/** + * This macro will evaluate to true if compiled with SDL at least X.Y.Z. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_VERSION_ATLEAST(X, Y, Z) \ + (SDL_VERSION >= SDL_VERSIONNUM(X, Y, Z)) + +/** + * Get the version of SDL that is linked against your program. + * + * If you are linking to SDL dynamically, then it is possible that the current + * version will be different than the version you compiled against. This + * function returns the current version, while SDL_VERSION is the version you + * compiled with. + * + * This function may be called safely at any time, even before SDL_Init(). + * + * \returns the version of the linked library. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRevision + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetVersion(void); + +/** + * Get the code revision of SDL that is linked against your program. + * + * This value is the revision of the code you are linked with and may be + * different from the code you are compiling with, which is found in the + * constant SDL_REVISION. + * + * The revision is arbitrary string (a hash value) uniquely identifying the + * exact revision of the SDL library in use, and is only useful in comparing + * against other revisions. It is NOT an incrementing number. + * + * If SDL wasn't built from a git repository with the appropriate tools, this + * will return an empty string. + * + * You shouldn't use this function for anything but logging it for debugging + * purposes. The string is not intended to be reliable in any way. + * + * \returns an arbitrary string, uniquely identifying the exact revision of + * the SDL library in use. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetVersion + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetRevision(void); + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_version_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_video.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_video.h new file mode 100644 index 0000000..3b3676d --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_video.h @@ -0,0 +1,3311 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2025 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryVideo + * + * SDL's video subsystem is largely interested in abstracting window + * management from the underlying operating system. You can create windows, + * manage them in various ways, set them fullscreen, and get events when + * interesting things happen with them, such as the mouse or keyboard + * interacting with a window. + * + * The video subsystem is also interested in abstracting away some + * platform-specific differences in OpenGL: context creation, swapping + * buffers, etc. This may be crucial to your app, but also you are not + * required to use OpenGL at all. In fact, SDL can provide rendering to those + * windows as well, either with an easy-to-use + * [2D API](https://wiki.libsdl.org/SDL3/CategoryRender) + * or with a more-powerful + * [GPU API](https://wiki.libsdl.org/SDL3/CategoryGPU) + * . Of course, it can simply get out of your way and give you the window + * handles you need to use Vulkan, Direct3D, Metal, or whatever else you like + * directly, too. + * + * The video subsystem covers a lot of functionality, out of necessity, so it + * is worth perusing the list of functions just to see what's available, but + * most apps can get by with simply creating a window and listening for + * events, so start with SDL_CreateWindow() and SDL_PollEvent(). + */ + +#ifndef SDL_video_h_ +#define SDL_video_h_ + +#include +#include +#include +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/** + * This is a unique ID for a display for the time it is connected to the + * system, and is never reused for the lifetime of the application. + * + * If the display is disconnected and reconnected, it will get a new ID. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_DisplayID; + +/** + * This is a unique ID for a window. + * + * The value 0 is an invalid ID. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_WindowID; + +/* Global video properties... */ + +/** + * The pointer to the global `wl_display` object used by the Wayland video + * backend. + * + * Can be set before the video subsystem is initialized to import an external + * `wl_display` object from an application or toolkit for use in SDL, or read + * after initialization to export the `wl_display` used by the Wayland video + * backend. Setting this property after the video subsystem has been + * initialized has no effect, and reading it when the video subsystem is + * uninitialized will either return the user provided value, if one was set + * prior to initialization, or NULL. See docs/README-wayland.md for more + * information. + */ +#define SDL_PROP_GLOBAL_VIDEO_WAYLAND_WL_DISPLAY_POINTER "SDL.video.wayland.wl_display" + +/** + * System theme. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_SystemTheme +{ + SDL_SYSTEM_THEME_UNKNOWN, /**< Unknown system theme */ + SDL_SYSTEM_THEME_LIGHT, /**< Light colored system theme */ + SDL_SYSTEM_THEME_DARK /**< Dark colored system theme */ +} SDL_SystemTheme; + +/** + * Internal display mode data. + * + * This lives as a field in SDL_DisplayMode, as opaque data. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_DisplayMode + */ +typedef struct SDL_DisplayModeData SDL_DisplayModeData; + +/** + * The structure that defines a display mode. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_GetFullscreenDisplayModes + * \sa SDL_GetDesktopDisplayMode + * \sa SDL_GetCurrentDisplayMode + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_GetWindowFullscreenMode + */ +typedef struct SDL_DisplayMode +{ + SDL_DisplayID displayID; /**< the display this mode is associated with */ + SDL_PixelFormat format; /**< pixel format */ + int w; /**< width */ + int h; /**< height */ + float pixel_density; /**< scale converting size to pixels (e.g. a 1920x1080 mode with 2.0 scale would have 3840x2160 pixels) */ + float refresh_rate; /**< refresh rate (or 0.0f for unspecified) */ + int refresh_rate_numerator; /**< precise refresh rate numerator (or 0 for unspecified) */ + int refresh_rate_denominator; /**< precise refresh rate denominator */ + + SDL_DisplayModeData *internal; /**< Private */ + +} SDL_DisplayMode; + +/** + * Display orientation values; the way a display is rotated. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_DisplayOrientation +{ + SDL_ORIENTATION_UNKNOWN, /**< The display orientation can't be determined */ + SDL_ORIENTATION_LANDSCAPE, /**< The display is in landscape mode, with the right side up, relative to portrait mode */ + SDL_ORIENTATION_LANDSCAPE_FLIPPED, /**< The display is in landscape mode, with the left side up, relative to portrait mode */ + SDL_ORIENTATION_PORTRAIT, /**< The display is in portrait mode */ + SDL_ORIENTATION_PORTRAIT_FLIPPED /**< The display is in portrait mode, upside down */ +} SDL_DisplayOrientation; + +/** + * The struct used as an opaque handle to a window. + * + * \since This struct is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + */ +typedef struct SDL_Window SDL_Window; + +/** + * The flags on a window. + * + * These cover a lot of true/false, or on/off, window state. Some of it is + * immutable after being set through SDL_CreateWindow(), some of it can be + * changed on existing windows by the app, and some of it might be altered by + * the user or system outside of the app's control. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +typedef Uint64 SDL_WindowFlags; + +#define SDL_WINDOW_FULLSCREEN SDL_UINT64_C(0x0000000000000001) /**< window is in fullscreen mode */ +#define SDL_WINDOW_OPENGL SDL_UINT64_C(0x0000000000000002) /**< window usable with OpenGL context */ +#define SDL_WINDOW_OCCLUDED SDL_UINT64_C(0x0000000000000004) /**< window is occluded */ +#define SDL_WINDOW_HIDDEN SDL_UINT64_C(0x0000000000000008) /**< window is neither mapped onto the desktop nor shown in the taskbar/dock/window list; SDL_ShowWindow() is required for it to become visible */ +#define SDL_WINDOW_BORDERLESS SDL_UINT64_C(0x0000000000000010) /**< no window decoration */ +#define SDL_WINDOW_RESIZABLE SDL_UINT64_C(0x0000000000000020) /**< window can be resized */ +#define SDL_WINDOW_MINIMIZED SDL_UINT64_C(0x0000000000000040) /**< window is minimized */ +#define SDL_WINDOW_MAXIMIZED SDL_UINT64_C(0x0000000000000080) /**< window is maximized */ +#define SDL_WINDOW_MOUSE_GRABBED SDL_UINT64_C(0x0000000000000100) /**< window has grabbed mouse input */ +#define SDL_WINDOW_INPUT_FOCUS SDL_UINT64_C(0x0000000000000200) /**< window has input focus */ +#define SDL_WINDOW_MOUSE_FOCUS SDL_UINT64_C(0x0000000000000400) /**< window has mouse focus */ +#define SDL_WINDOW_EXTERNAL SDL_UINT64_C(0x0000000000000800) /**< window not created by SDL */ +#define SDL_WINDOW_MODAL SDL_UINT64_C(0x0000000000001000) /**< window is modal */ +#define SDL_WINDOW_HIGH_PIXEL_DENSITY SDL_UINT64_C(0x0000000000002000) /**< window uses high pixel density back buffer if possible */ +#define SDL_WINDOW_MOUSE_CAPTURE SDL_UINT64_C(0x0000000000004000) /**< window has mouse captured (unrelated to MOUSE_GRABBED) */ +#define SDL_WINDOW_MOUSE_RELATIVE_MODE SDL_UINT64_C(0x0000000000008000) /**< window has relative mode enabled */ +#define SDL_WINDOW_ALWAYS_ON_TOP SDL_UINT64_C(0x0000000000010000) /**< window should always be above others */ +#define SDL_WINDOW_UTILITY SDL_UINT64_C(0x0000000000020000) /**< window should be treated as a utility window, not showing in the task bar and window list */ +#define SDL_WINDOW_TOOLTIP SDL_UINT64_C(0x0000000000040000) /**< window should be treated as a tooltip and does not get mouse or keyboard focus, requires a parent window */ +#define SDL_WINDOW_POPUP_MENU SDL_UINT64_C(0x0000000000080000) /**< window should be treated as a popup menu, requires a parent window */ +#define SDL_WINDOW_KEYBOARD_GRABBED SDL_UINT64_C(0x0000000000100000) /**< window has grabbed keyboard input */ +#define SDL_WINDOW_VULKAN SDL_UINT64_C(0x0000000010000000) /**< window usable for Vulkan surface */ +#define SDL_WINDOW_METAL SDL_UINT64_C(0x0000000020000000) /**< window usable for Metal view */ +#define SDL_WINDOW_TRANSPARENT SDL_UINT64_C(0x0000000040000000) /**< window with transparent buffer */ +#define SDL_WINDOW_NOT_FOCUSABLE SDL_UINT64_C(0x0000000080000000) /**< window should not be focusable */ + + +/** + * A magic value used with SDL_WINDOWPOS_UNDEFINED. + * + * Generally this macro isn't used directly, but rather through + * SDL_WINDOWPOS_UNDEFINED or SDL_WINDOWPOS_UNDEFINED_DISPLAY. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_UNDEFINED_MASK 0x1FFF0000u + +/** + * Used to indicate that you don't care what the window position is. + * + * If you _really_ don't care, SDL_WINDOWPOS_UNDEFINED is the same, but always + * uses the primary display instead of specifying one. + * + * \param X the SDL_DisplayID of the display to use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_UNDEFINED_DISPLAY(X) (SDL_WINDOWPOS_UNDEFINED_MASK|(X)) + +/** + * Used to indicate that you don't care what the window position/display is. + * + * This always uses the primary display. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_UNDEFINED SDL_WINDOWPOS_UNDEFINED_DISPLAY(0) + +/** + * A macro to test if the window position is marked as "undefined." + * + * \param X the window position value. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_ISUNDEFINED(X) (((X)&0xFFFF0000) == SDL_WINDOWPOS_UNDEFINED_MASK) + +/** + * A magic value used with SDL_WINDOWPOS_CENTERED. + * + * Generally this macro isn't used directly, but rather through + * SDL_WINDOWPOS_CENTERED or SDL_WINDOWPOS_CENTERED_DISPLAY. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_CENTERED_MASK 0x2FFF0000u + +/** + * Used to indicate that the window position should be centered. + * + * SDL_WINDOWPOS_CENTERED is the same, but always uses the primary display + * instead of specifying one. + * + * \param X the SDL_DisplayID of the display to use. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_CENTERED_DISPLAY(X) (SDL_WINDOWPOS_CENTERED_MASK|(X)) + +/** + * Used to indicate that the window position should be centered. + * + * This always uses the primary display. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_CENTERED SDL_WINDOWPOS_CENTERED_DISPLAY(0) + +/** + * A macro to test if the window position is marked as "centered." + * + * \param X the window position value. + * + * \since This macro is available since SDL 3.2.0. + */ +#define SDL_WINDOWPOS_ISCENTERED(X) \ + (((X)&0xFFFF0000) == SDL_WINDOWPOS_CENTERED_MASK) + + +/** + * Window flash operation. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_FlashOperation +{ + SDL_FLASH_CANCEL, /**< Cancel any window flash state */ + SDL_FLASH_BRIEFLY, /**< Flash the window briefly to get attention */ + SDL_FLASH_UNTIL_FOCUSED /**< Flash the window until it gets focus */ +} SDL_FlashOperation; + +/** + * An opaque handle to an OpenGL context. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_GL_CreateContext + */ +typedef struct SDL_GLContextState *SDL_GLContext; + +/** + * Opaque type for an EGL display. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_EGLDisplay; + +/** + * Opaque type for an EGL config. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_EGLConfig; + +/** + * Opaque type for an EGL surface. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef void *SDL_EGLSurface; + +/** + * An EGL attribute, used when creating an EGL context. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef intptr_t SDL_EGLAttrib; + +/** + * An EGL integer attribute, used when creating an EGL surface. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef int SDL_EGLint; + +/** + * EGL platform attribute initialization callback. + * + * This is called when SDL is attempting to create an EGL context, to let the + * app add extra attributes to its eglGetPlatformDisplay() call. + * + * The callback should return a pointer to an EGL attribute array terminated + * with `EGL_NONE`. If this function returns NULL, the SDL_CreateWindow + * process will fail gracefully. + * + * The returned pointer should be allocated with SDL_malloc() and will be + * passed to SDL_free(). + * + * The arrays returned by each callback will be appended to the existing + * attribute arrays defined by SDL. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \returns a newly-allocated array of attributes, terminated with `EGL_NONE`. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EGL_SetAttributeCallbacks + */ +typedef SDL_EGLAttrib *(SDLCALL *SDL_EGLAttribArrayCallback)(void *userdata); + +/** + * EGL surface/context attribute initialization callback types. + * + * This is called when SDL is attempting to create an EGL surface, to let the + * app add extra attributes to its eglCreateWindowSurface() or + * eglCreateContext calls. + * + * For convenience, the EGLDisplay and EGLConfig to use are provided to the + * callback. + * + * The callback should return a pointer to an EGL attribute array terminated + * with `EGL_NONE`. If this function returns NULL, the SDL_CreateWindow + * process will fail gracefully. + * + * The returned pointer should be allocated with SDL_malloc() and will be + * passed to SDL_free(). + * + * The arrays returned by each callback will be appended to the existing + * attribute arrays defined by SDL. + * + * \param userdata an app-controlled pointer that is passed to the callback. + * \param display the EGL display to be used. + * \param config the EGL config to be used. + * \returns a newly-allocated array of attributes, terminated with `EGL_NONE`. + * + * \since This datatype is available since SDL 3.2.0. + * + * \sa SDL_EGL_SetAttributeCallbacks + */ +typedef SDL_EGLint *(SDLCALL *SDL_EGLIntArrayCallback)(void *userdata, SDL_EGLDisplay display, SDL_EGLConfig config); + +/** + * An enumeration of OpenGL configuration attributes. + * + * While you can set most OpenGL attributes normally, the attributes listed + * above must be known before SDL creates the window that will be used with + * the OpenGL context. These attributes are set and read with + * SDL_GL_SetAttribute() and SDL_GL_GetAttribute(). + * + * In some cases, these attributes are minimum requests; the GL does not + * promise to give you exactly what you asked for. It's possible to ask for a + * 16-bit depth buffer and get a 24-bit one instead, for example, or to ask + * for no stencil buffer and still have one available. Context creation should + * fail if the GL can't provide your requested attributes at a minimum, but + * you should check to see exactly what you got. + * + * \since This enum is available since SDL 3.2.0. + */ +typedef enum SDL_GLAttr +{ + SDL_GL_RED_SIZE, /**< the minimum number of bits for the red channel of the color buffer; defaults to 8. */ + SDL_GL_GREEN_SIZE, /**< the minimum number of bits for the green channel of the color buffer; defaults to 8. */ + SDL_GL_BLUE_SIZE, /**< the minimum number of bits for the blue channel of the color buffer; defaults to 8. */ + SDL_GL_ALPHA_SIZE, /**< the minimum number of bits for the alpha channel of the color buffer; defaults to 8. */ + SDL_GL_BUFFER_SIZE, /**< the minimum number of bits for frame buffer size; defaults to 0. */ + SDL_GL_DOUBLEBUFFER, /**< whether the output is single or double buffered; defaults to double buffering on. */ + SDL_GL_DEPTH_SIZE, /**< the minimum number of bits in the depth buffer; defaults to 16. */ + SDL_GL_STENCIL_SIZE, /**< the minimum number of bits in the stencil buffer; defaults to 0. */ + SDL_GL_ACCUM_RED_SIZE, /**< the minimum number of bits for the red channel of the accumulation buffer; defaults to 0. */ + SDL_GL_ACCUM_GREEN_SIZE, /**< the minimum number of bits for the green channel of the accumulation buffer; defaults to 0. */ + SDL_GL_ACCUM_BLUE_SIZE, /**< the minimum number of bits for the blue channel of the accumulation buffer; defaults to 0. */ + SDL_GL_ACCUM_ALPHA_SIZE, /**< the minimum number of bits for the alpha channel of the accumulation buffer; defaults to 0. */ + SDL_GL_STEREO, /**< whether the output is stereo 3D; defaults to off. */ + SDL_GL_MULTISAMPLEBUFFERS, /**< the number of buffers used for multisample anti-aliasing; defaults to 0. */ + SDL_GL_MULTISAMPLESAMPLES, /**< the number of samples used around the current pixel used for multisample anti-aliasing. */ + SDL_GL_ACCELERATED_VISUAL, /**< set to 1 to require hardware acceleration, set to 0 to force software rendering; defaults to allow either. */ + SDL_GL_RETAINED_BACKING, /**< not used (deprecated). */ + SDL_GL_CONTEXT_MAJOR_VERSION, /**< OpenGL context major version. */ + SDL_GL_CONTEXT_MINOR_VERSION, /**< OpenGL context minor version. */ + SDL_GL_CONTEXT_FLAGS, /**< some combination of 0 or more of elements of the SDL_GLContextFlag enumeration; defaults to 0. */ + SDL_GL_CONTEXT_PROFILE_MASK, /**< type of GL context (Core, Compatibility, ES). See SDL_GLProfile; default value depends on platform. */ + SDL_GL_SHARE_WITH_CURRENT_CONTEXT, /**< OpenGL context sharing; defaults to 0. */ + SDL_GL_FRAMEBUFFER_SRGB_CAPABLE, /**< requests sRGB capable visual; defaults to 0. */ + SDL_GL_CONTEXT_RELEASE_BEHAVIOR, /**< sets context the release behavior. See SDL_GLContextReleaseFlag; defaults to FLUSH. */ + SDL_GL_CONTEXT_RESET_NOTIFICATION, /**< set context reset notification. See SDL_GLContextResetNotification; defaults to NO_NOTIFICATION. */ + SDL_GL_CONTEXT_NO_ERROR, + SDL_GL_FLOATBUFFERS, + SDL_GL_EGL_PLATFORM +} SDL_GLAttr; + +/** + * Possible values to be set for the SDL_GL_CONTEXT_PROFILE_MASK attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLProfile; + +#define SDL_GL_CONTEXT_PROFILE_CORE 0x0001 /**< OpenGL Core Profile context */ +#define SDL_GL_CONTEXT_PROFILE_COMPATIBILITY 0x0002 /**< OpenGL Compatibility Profile context */ +#define SDL_GL_CONTEXT_PROFILE_ES 0x0004 /**< GLX_CONTEXT_ES2_PROFILE_BIT_EXT */ + + +/** + * Possible flags to be set for the SDL_GL_CONTEXT_FLAGS attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLContextFlag; + +#define SDL_GL_CONTEXT_DEBUG_FLAG 0x0001 +#define SDL_GL_CONTEXT_FORWARD_COMPATIBLE_FLAG 0x0002 +#define SDL_GL_CONTEXT_ROBUST_ACCESS_FLAG 0x0004 +#define SDL_GL_CONTEXT_RESET_ISOLATION_FLAG 0x0008 + + +/** + * Possible values to be set for the SDL_GL_CONTEXT_RELEASE_BEHAVIOR + * attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLContextReleaseFlag; + +#define SDL_GL_CONTEXT_RELEASE_BEHAVIOR_NONE 0x0000 +#define SDL_GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH 0x0001 + + +/** + * Possible values to be set SDL_GL_CONTEXT_RESET_NOTIFICATION attribute. + * + * \since This datatype is available since SDL 3.2.0. + */ +typedef Uint32 SDL_GLContextResetNotification; + +#define SDL_GL_CONTEXT_RESET_NO_NOTIFICATION 0x0000 +#define SDL_GL_CONTEXT_RESET_LOSE_CONTEXT 0x0001 + + +/* Function prototypes */ + +/** + * Get the number of video drivers compiled into SDL. + * + * \returns the number of built in video drivers. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetVideoDriver + */ +extern SDL_DECLSPEC int SDLCALL SDL_GetNumVideoDrivers(void); + +/** + * Get the name of a built in video driver. + * + * The video drivers are presented in the order in which they are normally + * checked during initialization. + * + * The names of drivers are all simple, low-ASCII identifiers, like "cocoa", + * "x11" or "windows". These never have Unicode characters, and are not meant + * to be proper names. + * + * \param index the index of a video driver. + * \returns the name of the video driver with the given **index**. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumVideoDrivers + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetVideoDriver(int index); + +/** + * Get the name of the currently initialized video driver. + * + * The names of drivers are all simple, low-ASCII identifiers, like "cocoa", + * "x11" or "windows". These never have Unicode characters, and are not meant + * to be proper names. + * + * \returns the name of the current video driver or NULL if no driver has been + * initialized. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetNumVideoDrivers + * \sa SDL_GetVideoDriver + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetCurrentVideoDriver(void); + +/** + * Get the current system theme. + * + * \returns the current system theme, light, dark, or unknown. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_SystemTheme SDLCALL SDL_GetSystemTheme(void); + +/** + * Get a list of currently connected displays. + * + * \param count a pointer filled in with the number of displays returned, may + * be NULL. + * \returns a 0 terminated array of display instance IDs or NULL on failure; + * call SDL_GetError() for more information. This should be freed + * with SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_DisplayID * SDLCALL SDL_GetDisplays(int *count); + +/** + * Return the primary display. + * + * \returns the instance ID of the primary display on success or 0 on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetPrimaryDisplay(void); + +/** + * Get the properties associated with a display. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_DISPLAY_HDR_ENABLED_BOOLEAN`: true if the display has HDR + * headroom above the SDR white point. This is for informational and + * diagnostic purposes only, as not all platforms provide this information + * at the display level. + * + * On KMS/DRM: + * + * - `SDL_PROP_DISPLAY_KMSDRM_PANEL_ORIENTATION_NUMBER`: the "panel + * orientation" property for the display in degrees of clockwise rotation. + * Note that this is provided only as a hint, and the application is + * responsible for any coordinate transformations needed to conform to the + * requested display orientation. + * + * \param displayID the instance ID of the display to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetDisplayProperties(SDL_DisplayID displayID); + +#define SDL_PROP_DISPLAY_HDR_ENABLED_BOOLEAN "SDL.display.HDR_enabled" +#define SDL_PROP_DISPLAY_KMSDRM_PANEL_ORIENTATION_NUMBER "SDL.display.KMSDRM.panel_orientation" + +/** + * Get the name of a display in UTF-8 encoding. + * + * \param displayID the instance ID of the display to query. + * \returns the name of a display or NULL on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetDisplayName(SDL_DisplayID displayID); + +/** + * Get the desktop area represented by a display. + * + * The primary display is often located at (0,0), but may be placed at a + * different location depending on monitor layout. + * + * \param displayID the instance ID of the display to query. + * \param rect the SDL_Rect structure filled in with the display bounds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayUsableBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDisplayBounds(SDL_DisplayID displayID, SDL_Rect *rect); + +/** + * Get the usable desktop area represented by a display, in screen + * coordinates. + * + * This is the same area as SDL_GetDisplayBounds() reports, but with portions + * reserved by the system removed. For example, on Apple's macOS, this + * subtracts the area occupied by the menu bar and dock. + * + * Setting a window to be fullscreen generally bypasses these unusable areas, + * so these are good guidelines for the maximum space available to a + * non-fullscreen window. + * + * \param displayID the instance ID of the display to query. + * \param rect the SDL_Rect structure filled in with the display bounds. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetDisplayUsableBounds(SDL_DisplayID displayID, SDL_Rect *rect); + +/** + * Get the orientation of a display when it is unrotated. + * + * \param displayID the instance ID of the display to query. + * \returns the SDL_DisplayOrientation enum value of the display, or + * `SDL_ORIENTATION_UNKNOWN` if it isn't available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayOrientation SDLCALL SDL_GetNaturalDisplayOrientation(SDL_DisplayID displayID); + +/** + * Get the orientation of a display. + * + * \param displayID the instance ID of the display to query. + * \returns the SDL_DisplayOrientation enum value of the display, or + * `SDL_ORIENTATION_UNKNOWN` if it isn't available. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayOrientation SDLCALL SDL_GetCurrentDisplayOrientation(SDL_DisplayID displayID); + +/** + * Get the content scale of a display. + * + * The content scale is the expected scale for content based on the DPI + * settings of the display. For example, a 4K display might have a 2.0 (200%) + * display scale, which means that the user expects UI elements to be twice as + * big on this display, to aid in readability. + * + * After window creation, SDL_GetWindowDisplayScale() should be used to query + * the content scale factor for individual windows instead of querying the + * display for a window and calling this function, as the per-window content + * scale factor may differ from the base value of the display it is on, + * particularly on high-DPI and/or multi-monitor desktop configurations. + * + * \param displayID the instance ID of the display to query. + * \returns the content scale of the display, or 0.0f on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowDisplayScale + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetDisplayContentScale(SDL_DisplayID displayID); + +/** + * Get a list of fullscreen display modes available on a display. + * + * The display modes are sorted in this priority: + * + * - w -> largest to smallest + * - h -> largest to smallest + * - bits per pixel -> more colors to fewer colors + * - packed pixel layout -> largest to smallest + * - refresh rate -> highest to lowest + * - pixel density -> lowest to highest + * + * \param displayID the instance ID of the display to query. + * \param count a pointer filled in with the number of display modes returned, + * may be NULL. + * \returns a NULL terminated array of display mode pointers or NULL on + * failure; call SDL_GetError() for more information. This is a + * single allocation that should be freed with SDL_free() when it is + * no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayMode ** SDLCALL SDL_GetFullscreenDisplayModes(SDL_DisplayID displayID, int *count); + +/** + * Get the closest match to the requested display mode. + * + * The available display modes are scanned and `closest` is filled in with the + * closest mode matching the requested mode and returned. The mode format and + * refresh rate default to the desktop mode if they are set to 0. The modes + * are scanned with size being first priority, format being second priority, + * and finally checking the refresh rate. If all the available modes are too + * small, then false is returned. + * + * \param displayID the instance ID of the display to query. + * \param w the width in pixels of the desired display mode. + * \param h the height in pixels of the desired display mode. + * \param refresh_rate the refresh rate of the desired display mode, or 0.0f + * for the desktop refresh rate. + * \param include_high_density_modes boolean to include high density modes in + * the search. + * \param closest a pointer filled in with the closest display mode equal to + * or larger than the desired mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplays + * \sa SDL_GetFullscreenDisplayModes + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetClosestFullscreenDisplayMode(SDL_DisplayID displayID, int w, int h, float refresh_rate, bool include_high_density_modes, SDL_DisplayMode *closest); + +/** + * Get information about the desktop's display mode. + * + * There's a difference between this function and SDL_GetCurrentDisplayMode() + * when SDL runs fullscreen and has changed the resolution. In that case this + * function will return the previous native display mode, and not the current + * display mode. + * + * \param displayID the instance ID of the display to query. + * \returns a pointer to the desktop display mode or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetCurrentDisplayMode + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC const SDL_DisplayMode * SDLCALL SDL_GetDesktopDisplayMode(SDL_DisplayID displayID); + +/** + * Get information about the current display mode. + * + * There's a difference between this function and SDL_GetDesktopDisplayMode() + * when SDL runs fullscreen and has changed the resolution. In that case this + * function will return the current display mode, and not the previous native + * display mode. + * + * \param displayID the instance ID of the display to query. + * \returns a pointer to the desktop display mode or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDesktopDisplayMode + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC const SDL_DisplayMode * SDLCALL SDL_GetCurrentDisplayMode(SDL_DisplayID displayID); + +/** + * Get the display containing a point. + * + * \param point the point to query. + * \returns the instance ID of the display containing the point or 0 on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetDisplayForPoint(const SDL_Point *point); + +/** + * Get the display primarily containing a rect. + * + * \param rect the rect to query. + * \returns the instance ID of the display entirely containing the rect or + * closest to the center of the rect on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetDisplayForRect(const SDL_Rect *rect); + +/** + * Get the display associated with a window. + * + * \param window the window to query. + * \returns the instance ID of the display containing the center of the window + * on success or 0 on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetDisplayBounds + * \sa SDL_GetDisplays + */ +extern SDL_DECLSPEC SDL_DisplayID SDLCALL SDL_GetDisplayForWindow(SDL_Window *window); + +/** + * Get the pixel density of a window. + * + * This is a ratio of pixel size to window size. For example, if the window is + * 1920x1080 and it has a high density back buffer of 3840x2160 pixels, it + * would have a pixel density of 2.0. + * + * \param window the window to query. + * \returns the pixel density or 0.0f on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowDisplayScale + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetWindowPixelDensity(SDL_Window *window); + +/** + * Get the content display scale relative to a window's pixel size. + * + * This is a combination of the window pixel density and the display content + * scale, and is the expected scale for displaying content in this window. For + * example, if a 3840x2160 window had a display scale of 2.0, the user expects + * the content to take twice as many pixels and be the same physical size as + * if it were being displayed in a 1920x1080 window with a display scale of + * 1.0. + * + * Conceptually this value corresponds to the scale display setting, and is + * updated when that setting is changed, or the window moves to a display with + * a different scale setting. + * + * \param window the window to query. + * \returns the display scale, or 0.0f on failure; call SDL_GetError() for + * more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetWindowDisplayScale(SDL_Window *window); + +/** + * Set the display mode to use when a window is visible and fullscreen. + * + * This only affects the display mode used when the window is fullscreen. To + * change the window size when the window is not fullscreen, use + * SDL_SetWindowSize(). + * + * If the window is currently in the fullscreen state, this request is + * asynchronous on some windowing systems and the new mode dimensions may not + * be applied immediately upon the return of this function. If an immediate + * change is required, call SDL_SyncWindow() to block until the changes have + * taken effect. + * + * When the new mode takes effect, an SDL_EVENT_WINDOW_RESIZED and/or an + * SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED event will be emitted with the new mode + * dimensions. + * + * \param window the window to affect. + * \param mode a pointer to the display mode to use, which can be NULL for + * borderless fullscreen desktop mode, or one of the fullscreen + * modes returned by SDL_GetFullscreenDisplayModes() to set an + * exclusive fullscreen mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFullscreenMode + * \sa SDL_SetWindowFullscreen + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowFullscreenMode(SDL_Window *window, const SDL_DisplayMode *mode); + +/** + * Query the display mode to use when a window is visible at fullscreen. + * + * \param window the window to query. + * \returns a pointer to the exclusive fullscreen mode to use or NULL for + * borderless fullscreen desktop mode. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_SetWindowFullscreen + */ +extern SDL_DECLSPEC const SDL_DisplayMode * SDLCALL SDL_GetWindowFullscreenMode(SDL_Window *window); + +/** + * Get the raw ICC profile data for the screen the window is currently on. + * + * \param window the window to query. + * \param size the size of the ICC profile. + * \returns the raw ICC profile data on success or NULL on failure; call + * SDL_GetError() for more information. This should be freed with + * SDL_free() when it is no longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void * SDLCALL SDL_GetWindowICCProfile(SDL_Window *window, size_t *size); + +/** + * Get the pixel format associated with the window. + * + * \param window the window to query. + * \returns the pixel format of the window on success or + * SDL_PIXELFORMAT_UNKNOWN on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PixelFormat SDLCALL SDL_GetWindowPixelFormat(SDL_Window *window); + +/** + * Get a list of valid windows. + * + * \param count a pointer filled in with the number of windows returned, may + * be NULL. + * \returns a NULL terminated array of SDL_Window pointers or NULL on failure; + * call SDL_GetError() for more information. This is a single + * allocation that should be freed with SDL_free() when it is no + * longer needed. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window ** SDLCALL SDL_GetWindows(int *count); + +/** + * Create a window with the specified dimensions and flags. + * + * The window size is a request and may be different than expected based on + * the desktop layout and window manager policies. Your application should be + * prepared to handle a window of any size. + * + * `flags` may be any of the following OR'd together: + * + * - `SDL_WINDOW_FULLSCREEN`: fullscreen window at desktop resolution + * - `SDL_WINDOW_OPENGL`: window usable with an OpenGL context + * - `SDL_WINDOW_OCCLUDED`: window partially or completely obscured by another + * window + * - `SDL_WINDOW_HIDDEN`: window is not visible + * - `SDL_WINDOW_BORDERLESS`: no window decoration + * - `SDL_WINDOW_RESIZABLE`: window can be resized + * - `SDL_WINDOW_MINIMIZED`: window is minimized + * - `SDL_WINDOW_MAXIMIZED`: window is maximized + * - `SDL_WINDOW_MOUSE_GRABBED`: window has grabbed mouse focus + * - `SDL_WINDOW_INPUT_FOCUS`: window has input focus + * - `SDL_WINDOW_MOUSE_FOCUS`: window has mouse focus + * - `SDL_WINDOW_EXTERNAL`: window not created by SDL + * - `SDL_WINDOW_MODAL`: window is modal + * - `SDL_WINDOW_HIGH_PIXEL_DENSITY`: window uses high pixel density back + * buffer if possible + * - `SDL_WINDOW_MOUSE_CAPTURE`: window has mouse captured (unrelated to + * MOUSE_GRABBED) + * - `SDL_WINDOW_ALWAYS_ON_TOP`: window should always be above others + * - `SDL_WINDOW_UTILITY`: window should be treated as a utility window, not + * showing in the task bar and window list + * - `SDL_WINDOW_TOOLTIP`: window should be treated as a tooltip and does not + * get mouse or keyboard focus, requires a parent window + * - `SDL_WINDOW_POPUP_MENU`: window should be treated as a popup menu, + * requires a parent window + * - `SDL_WINDOW_KEYBOARD_GRABBED`: window has grabbed keyboard input + * - `SDL_WINDOW_VULKAN`: window usable with a Vulkan instance + * - `SDL_WINDOW_METAL`: window usable with a Metal instance + * - `SDL_WINDOW_TRANSPARENT`: window with transparent buffer + * - `SDL_WINDOW_NOT_FOCUSABLE`: window should not be focusable + * + * The SDL_Window is implicitly shown if SDL_WINDOW_HIDDEN is not set. + * + * On Apple's macOS, you **must** set the NSHighResolutionCapable Info.plist + * property to YES, otherwise you will not receive a High-DPI OpenGL canvas. + * + * The window pixel size may differ from its window coordinate size if the + * window is on a high pixel density display. Use SDL_GetWindowSize() to query + * the client area's size in window coordinates, and + * SDL_GetWindowSizeInPixels() or SDL_GetRenderOutputSize() to query the + * drawable size in pixels. Note that the drawable size can vary after the + * window is created and should be queried again if you get an + * SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED event. + * + * If the window is created with any of the SDL_WINDOW_OPENGL or + * SDL_WINDOW_VULKAN flags, then the corresponding LoadLibrary function + * (SDL_GL_LoadLibrary or SDL_Vulkan_LoadLibrary) is called and the + * corresponding UnloadLibrary function is called by SDL_DestroyWindow(). + * + * If SDL_WINDOW_VULKAN is specified and there isn't a working Vulkan driver, + * SDL_CreateWindow() will fail, because SDL_Vulkan_LoadLibrary() will fail. + * + * If SDL_WINDOW_METAL is specified on an OS that does not support Metal, + * SDL_CreateWindow() will fail. + * + * If you intend to use this window with an SDL_Renderer, you should use + * SDL_CreateWindowAndRenderer() instead of this function, to avoid window + * flicker. + * + * On non-Apple devices, SDL requires you to either not link to the Vulkan + * loader or link to a dynamic library version. This limitation may be removed + * in a future version of SDL. + * + * \param title the title of the window, in UTF-8 encoding. + * \param w the width of the window. + * \param h the height of the window. + * \param flags 0, or one or more SDL_WindowFlags OR'd together. + * \returns the window that was created or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindowAndRenderer + * \sa SDL_CreatePopupWindow + * \sa SDL_CreateWindowWithProperties + * \sa SDL_DestroyWindow + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_CreateWindow(const char *title, int w, int h, SDL_WindowFlags flags); + +/** + * Create a child popup window of the specified parent window. + * + * The window size is a request and may be different than expected based on + * the desktop layout and window manager policies. Your application should be + * prepared to handle a window of any size. + * + * The flags parameter **must** contain at least one of the following: + * + * - `SDL_WINDOW_TOOLTIP`: The popup window is a tooltip and will not pass any + * input events. + * - `SDL_WINDOW_POPUP_MENU`: The popup window is a popup menu. The topmost + * popup menu will implicitly gain the keyboard focus. + * + * The following flags are not relevant to popup window creation and will be + * ignored: + * + * - `SDL_WINDOW_MINIMIZED` + * - `SDL_WINDOW_MAXIMIZED` + * - `SDL_WINDOW_FULLSCREEN` + * - `SDL_WINDOW_BORDERLESS` + * + * The following flags are incompatible with popup window creation and will + * cause it to fail: + * + * - `SDL_WINDOW_UTILITY` + * - `SDL_WINDOW_MODAL` + * + * The parent parameter **must** be non-null and a valid window. The parent of + * a popup window can be either a regular, toplevel window, or another popup + * window. + * + * Popup windows cannot be minimized, maximized, made fullscreen, raised, + * flash, be made a modal window, be the parent of a toplevel window, or grab + * the mouse and/or keyboard. Attempts to do so will fail. + * + * Popup windows implicitly do not have a border/decorations and do not appear + * on the taskbar/dock or in lists of windows such as alt-tab menus. + * + * By default, popup window positions will automatically be constrained to keep + * the entire window within display bounds. This can be overridden with the + * `SDL_PROP_WINDOW_CREATE_CONSTRAIN_POPUP_BOOLEAN` property. + * + * By default, popup menus will automatically grab keyboard focus from the parent + * when shown. This behavior can be overridden by setting the `SDL_WINDOW_NOT_FOCUSABLE` + * flag, setting the `SDL_PROP_WINDOW_CREATE_FOCUSABLE_BOOLEAN` property to false, or + * toggling it after creation via the `SDL_SetWindowFocusable()` function. + * + * If a parent window is hidden or destroyed, any child popup windows will be + * recursively hidden or destroyed as well. Child popup windows not explicitly + * hidden will be restored when the parent is shown. + * + * \param parent the parent of the window, must not be NULL. + * \param offset_x the x position of the popup window relative to the origin + * of the parent. + * \param offset_y the y position of the popup window relative to the origin + * of the parent window. + * \param w the width of the window. + * \param h the height of the window. + * \param flags SDL_WINDOW_TOOLTIP or SDL_WINDOW_POPUP_MENU, and zero or more + * additional SDL_WindowFlags OR'd together. + * \returns the window that was created or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + * \sa SDL_CreateWindowWithProperties + * \sa SDL_DestroyWindow + * \sa SDL_GetWindowParent + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_CreatePopupWindow(SDL_Window *parent, int offset_x, int offset_y, int w, int h, SDL_WindowFlags flags); + +/** + * Create a window with the specified properties. + * + * The window size is a request and may be different than expected based on + * the desktop layout and window manager policies. Your application should be + * prepared to handle a window of any size. + * + * These are the supported properties: + * + * - `SDL_PROP_WINDOW_CREATE_ALWAYS_ON_TOP_BOOLEAN`: true if the window should + * be always on top + * - `SDL_PROP_WINDOW_CREATE_BORDERLESS_BOOLEAN`: true if the window has no + * window decoration + * - `SDL_PROP_WINDOW_CREATE_CONSTRAIN_POPUP_BOOLEAN`: true if the "tooltip" and + * "menu" window types should be automatically constrained to be entirely within + * display bounds (default), false if no constraints on the position are desired. + * - `SDL_PROP_WINDOW_CREATE_EXTERNAL_GRAPHICS_CONTEXT_BOOLEAN`: true if the + * window will be used with an externally managed graphics context. + * - `SDL_PROP_WINDOW_CREATE_FOCUSABLE_BOOLEAN`: true if the window should + * accept keyboard input (defaults true) + * - `SDL_PROP_WINDOW_CREATE_FULLSCREEN_BOOLEAN`: true if the window should + * start in fullscreen mode at desktop resolution + * - `SDL_PROP_WINDOW_CREATE_HEIGHT_NUMBER`: the height of the window + * - `SDL_PROP_WINDOW_CREATE_HIDDEN_BOOLEAN`: true if the window should start + * hidden + * - `SDL_PROP_WINDOW_CREATE_HIGH_PIXEL_DENSITY_BOOLEAN`: true if the window + * uses a high pixel density buffer if possible + * - `SDL_PROP_WINDOW_CREATE_MAXIMIZED_BOOLEAN`: true if the window should + * start maximized + * - `SDL_PROP_WINDOW_CREATE_MENU_BOOLEAN`: true if the window is a popup menu + * - `SDL_PROP_WINDOW_CREATE_METAL_BOOLEAN`: true if the window will be used + * with Metal rendering + * - `SDL_PROP_WINDOW_CREATE_MINIMIZED_BOOLEAN`: true if the window should + * start minimized + * - `SDL_PROP_WINDOW_CREATE_MODAL_BOOLEAN`: true if the window is modal to + * its parent + * - `SDL_PROP_WINDOW_CREATE_MOUSE_GRABBED_BOOLEAN`: true if the window starts + * with grabbed mouse focus + * - `SDL_PROP_WINDOW_CREATE_OPENGL_BOOLEAN`: true if the window will be used + * with OpenGL rendering + * - `SDL_PROP_WINDOW_CREATE_PARENT_POINTER`: an SDL_Window that will be the + * parent of this window, required for windows with the "tooltip", "menu", + * and "modal" properties + * - `SDL_PROP_WINDOW_CREATE_RESIZABLE_BOOLEAN`: true if the window should be + * resizable + * - `SDL_PROP_WINDOW_CREATE_TITLE_STRING`: the title of the window, in UTF-8 + * encoding + * - `SDL_PROP_WINDOW_CREATE_TRANSPARENT_BOOLEAN`: true if the window show + * transparent in the areas with alpha of 0 + * - `SDL_PROP_WINDOW_CREATE_TOOLTIP_BOOLEAN`: true if the window is a tooltip + * - `SDL_PROP_WINDOW_CREATE_UTILITY_BOOLEAN`: true if the window is a utility + * window, not showing in the task bar and window list + * - `SDL_PROP_WINDOW_CREATE_VULKAN_BOOLEAN`: true if the window will be used + * with Vulkan rendering + * - `SDL_PROP_WINDOW_CREATE_WIDTH_NUMBER`: the width of the window + * - `SDL_PROP_WINDOW_CREATE_X_NUMBER`: the x position of the window, or + * `SDL_WINDOWPOS_CENTERED`, defaults to `SDL_WINDOWPOS_UNDEFINED`. This is + * relative to the parent for windows with the "tooltip" or "menu" property + * set. + * - `SDL_PROP_WINDOW_CREATE_Y_NUMBER`: the y position of the window, or + * `SDL_WINDOWPOS_CENTERED`, defaults to `SDL_WINDOWPOS_UNDEFINED`. This is + * relative to the parent for windows with the "tooltip" or "menu" property + * set. + * + * These are additional supported properties on macOS: + * + * - `SDL_PROP_WINDOW_CREATE_COCOA_WINDOW_POINTER`: the + * `(__unsafe_unretained)` NSWindow associated with the window, if you want + * to wrap an existing window. + * - `SDL_PROP_WINDOW_CREATE_COCOA_VIEW_POINTER`: the `(__unsafe_unretained)` + * NSView associated with the window, defaults to `[window contentView]` + * + * These are additional supported properties on Wayland: + * + * - `SDL_PROP_WINDOW_CREATE_WAYLAND_SURFACE_ROLE_CUSTOM_BOOLEAN` - true if + * the application wants to use the Wayland surface for a custom role and + * does not want it attached to an XDG toplevel window. See + * [README/wayland](README/wayland) for more information on using custom + * surfaces. + * - `SDL_PROP_WINDOW_CREATE_WAYLAND_CREATE_EGL_WINDOW_BOOLEAN` - true if the + * application wants an associated `wl_egl_window` object to be created and + * attached to the window, even if the window does not have the OpenGL + * property or `SDL_WINDOW_OPENGL` flag set. + * - `SDL_PROP_WINDOW_CREATE_WAYLAND_WL_SURFACE_POINTER` - the wl_surface + * associated with the window, if you want to wrap an existing window. See + * [README/wayland](README/wayland) for more information. + * + * These are additional supported properties on Windows: + * + * - `SDL_PROP_WINDOW_CREATE_WIN32_HWND_POINTER`: the HWND associated with the + * window, if you want to wrap an existing window. + * - `SDL_PROP_WINDOW_CREATE_WIN32_PIXEL_FORMAT_HWND_POINTER`: optional, + * another window to share pixel format with, useful for OpenGL windows + * + * These are additional supported properties with X11: + * + * - `SDL_PROP_WINDOW_CREATE_X11_WINDOW_NUMBER`: the X11 Window associated + * with the window, if you want to wrap an existing window. + * + * The window is implicitly shown if the "hidden" property is not set. + * + * Windows with the "tooltip" and "menu" properties are popup windows and have + * the behaviors and guidelines outlined in SDL_CreatePopupWindow(). + * + * If this window is being created to be used with an SDL_Renderer, you should + * not add a graphics API specific property + * (`SDL_PROP_WINDOW_CREATE_OPENGL_BOOLEAN`, etc), as SDL will handle that + * internally when it chooses a renderer. However, SDL might need to recreate + * your window at that point, which may cause the window to appear briefly, + * and then flicker as it is recreated. The correct approach to this is to + * create the window with the `SDL_PROP_WINDOW_CREATE_HIDDEN_BOOLEAN` property + * set to true, then create the renderer, then show the window with + * SDL_ShowWindow(). + * + * \param props the properties to use. + * \returns the window that was created or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateProperties + * \sa SDL_CreateWindow + * \sa SDL_DestroyWindow + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_CreateWindowWithProperties(SDL_PropertiesID props); + +#define SDL_PROP_WINDOW_CREATE_ALWAYS_ON_TOP_BOOLEAN "SDL.window.create.always_on_top" +#define SDL_PROP_WINDOW_CREATE_BORDERLESS_BOOLEAN "SDL.window.create.borderless" +#define SDL_PROP_WINDOW_CREATE_CONSTRAIN_POPUP_BOOLEAN "SDL.window.create.constrain_popup" +#define SDL_PROP_WINDOW_CREATE_FOCUSABLE_BOOLEAN "SDL.window.create.focusable" +#define SDL_PROP_WINDOW_CREATE_EXTERNAL_GRAPHICS_CONTEXT_BOOLEAN "SDL.window.create.external_graphics_context" +#define SDL_PROP_WINDOW_CREATE_FLAGS_NUMBER "SDL.window.create.flags" +#define SDL_PROP_WINDOW_CREATE_FULLSCREEN_BOOLEAN "SDL.window.create.fullscreen" +#define SDL_PROP_WINDOW_CREATE_HEIGHT_NUMBER "SDL.window.create.height" +#define SDL_PROP_WINDOW_CREATE_HIDDEN_BOOLEAN "SDL.window.create.hidden" +#define SDL_PROP_WINDOW_CREATE_HIGH_PIXEL_DENSITY_BOOLEAN "SDL.window.create.high_pixel_density" +#define SDL_PROP_WINDOW_CREATE_MAXIMIZED_BOOLEAN "SDL.window.create.maximized" +#define SDL_PROP_WINDOW_CREATE_MENU_BOOLEAN "SDL.window.create.menu" +#define SDL_PROP_WINDOW_CREATE_METAL_BOOLEAN "SDL.window.create.metal" +#define SDL_PROP_WINDOW_CREATE_MINIMIZED_BOOLEAN "SDL.window.create.minimized" +#define SDL_PROP_WINDOW_CREATE_MODAL_BOOLEAN "SDL.window.create.modal" +#define SDL_PROP_WINDOW_CREATE_MOUSE_GRABBED_BOOLEAN "SDL.window.create.mouse_grabbed" +#define SDL_PROP_WINDOW_CREATE_OPENGL_BOOLEAN "SDL.window.create.opengl" +#define SDL_PROP_WINDOW_CREATE_PARENT_POINTER "SDL.window.create.parent" +#define SDL_PROP_WINDOW_CREATE_RESIZABLE_BOOLEAN "SDL.window.create.resizable" +#define SDL_PROP_WINDOW_CREATE_TITLE_STRING "SDL.window.create.title" +#define SDL_PROP_WINDOW_CREATE_TRANSPARENT_BOOLEAN "SDL.window.create.transparent" +#define SDL_PROP_WINDOW_CREATE_TOOLTIP_BOOLEAN "SDL.window.create.tooltip" +#define SDL_PROP_WINDOW_CREATE_UTILITY_BOOLEAN "SDL.window.create.utility" +#define SDL_PROP_WINDOW_CREATE_VULKAN_BOOLEAN "SDL.window.create.vulkan" +#define SDL_PROP_WINDOW_CREATE_WIDTH_NUMBER "SDL.window.create.width" +#define SDL_PROP_WINDOW_CREATE_X_NUMBER "SDL.window.create.x" +#define SDL_PROP_WINDOW_CREATE_Y_NUMBER "SDL.window.create.y" +#define SDL_PROP_WINDOW_CREATE_COCOA_WINDOW_POINTER "SDL.window.create.cocoa.window" +#define SDL_PROP_WINDOW_CREATE_COCOA_VIEW_POINTER "SDL.window.create.cocoa.view" +#define SDL_PROP_WINDOW_CREATE_WAYLAND_SURFACE_ROLE_CUSTOM_BOOLEAN "SDL.window.create.wayland.surface_role_custom" +#define SDL_PROP_WINDOW_CREATE_WAYLAND_CREATE_EGL_WINDOW_BOOLEAN "SDL.window.create.wayland.create_egl_window" +#define SDL_PROP_WINDOW_CREATE_WAYLAND_WL_SURFACE_POINTER "SDL.window.create.wayland.wl_surface" +#define SDL_PROP_WINDOW_CREATE_WIN32_HWND_POINTER "SDL.window.create.win32.hwnd" +#define SDL_PROP_WINDOW_CREATE_WIN32_PIXEL_FORMAT_HWND_POINTER "SDL.window.create.win32.pixel_format_hwnd" +#define SDL_PROP_WINDOW_CREATE_X11_WINDOW_NUMBER "SDL.window.create.x11.window" + +/** + * Get the numeric ID of a window. + * + * The numeric ID is what SDL_WindowEvent references, and is necessary to map + * these events to specific SDL_Window objects. + * + * \param window the window to query. + * \returns the ID of the window on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFromID + */ +extern SDL_DECLSPEC SDL_WindowID SDLCALL SDL_GetWindowID(SDL_Window *window); + +/** + * Get a window from a stored ID. + * + * The numeric ID is what SDL_WindowEvent references, and is necessary to map + * these events to specific SDL_Window objects. + * + * \param id the ID of the window. + * \returns the window associated with `id` or NULL if it doesn't exist; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowID + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetWindowFromID(SDL_WindowID id); + +/** + * Get parent of a window. + * + * \param window the window to query. + * \returns the parent of the window on success or NULL if the window has no + * parent. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePopupWindow + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetWindowParent(SDL_Window *window); + +/** + * Get the properties associated with a window. + * + * The following read-only properties are provided by SDL: + * + * - `SDL_PROP_WINDOW_SHAPE_POINTER`: the surface associated with a shaped + * window + * - `SDL_PROP_WINDOW_HDR_ENABLED_BOOLEAN`: true if the window has HDR + * headroom above the SDR white point. This property can change dynamically + * when SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_WINDOW_SDR_WHITE_LEVEL_FLOAT`: the value of SDR white in the + * SDL_COLORSPACE_SRGB_LINEAR colorspace. On Windows this corresponds to the + * SDR white level in scRGB colorspace, and on Apple platforms this is + * always 1.0 for EDR content. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * - `SDL_PROP_WINDOW_HDR_HEADROOM_FLOAT`: the additional high dynamic range + * that can be displayed, in terms of the SDR white point. When HDR is not + * enabled, this will be 1.0. This property can change dynamically when + * SDL_EVENT_WINDOW_HDR_STATE_CHANGED is sent. + * + * On Android: + * + * - `SDL_PROP_WINDOW_ANDROID_WINDOW_POINTER`: the ANativeWindow associated + * with the window + * - `SDL_PROP_WINDOW_ANDROID_SURFACE_POINTER`: the EGLSurface associated with + * the window + * + * On iOS: + * + * - `SDL_PROP_WINDOW_UIKIT_WINDOW_POINTER`: the `(__unsafe_unretained)` + * UIWindow associated with the window + * - `SDL_PROP_WINDOW_UIKIT_METAL_VIEW_TAG_NUMBER`: the NSInteger tag + * associated with metal views on the window + * - `SDL_PROP_WINDOW_UIKIT_OPENGL_FRAMEBUFFER_NUMBER`: the OpenGL view's + * framebuffer object. It must be bound when rendering to the screen using + * OpenGL. + * - `SDL_PROP_WINDOW_UIKIT_OPENGL_RENDERBUFFER_NUMBER`: the OpenGL view's + * renderbuffer object. It must be bound when SDL_GL_SwapWindow is called. + * - `SDL_PROP_WINDOW_UIKIT_OPENGL_RESOLVE_FRAMEBUFFER_NUMBER`: the OpenGL + * view's resolve framebuffer, when MSAA is used. + * + * On KMS/DRM: + * + * - `SDL_PROP_WINDOW_KMSDRM_DEVICE_INDEX_NUMBER`: the device index associated + * with the window (e.g. the X in /dev/dri/cardX) + * - `SDL_PROP_WINDOW_KMSDRM_DRM_FD_NUMBER`: the DRM FD associated with the + * window + * - `SDL_PROP_WINDOW_KMSDRM_GBM_DEVICE_POINTER`: the GBM device associated + * with the window + * + * On macOS: + * + * - `SDL_PROP_WINDOW_COCOA_WINDOW_POINTER`: the `(__unsafe_unretained)` + * NSWindow associated with the window + * - `SDL_PROP_WINDOW_COCOA_METAL_VIEW_TAG_NUMBER`: the NSInteger tag + * assocated with metal views on the window + * + * On OpenVR: + * + * - `SDL_PROP_WINDOW_OPENVR_OVERLAY_ID`: the OpenVR Overlay Handle ID for the + * associated overlay window. + * + * On Vivante: + * + * - `SDL_PROP_WINDOW_VIVANTE_DISPLAY_POINTER`: the EGLNativeDisplayType + * associated with the window + * - `SDL_PROP_WINDOW_VIVANTE_WINDOW_POINTER`: the EGLNativeWindowType + * associated with the window + * - `SDL_PROP_WINDOW_VIVANTE_SURFACE_POINTER`: the EGLSurface associated with + * the window + * + * On Windows: + * + * - `SDL_PROP_WINDOW_WIN32_HWND_POINTER`: the HWND associated with the window + * - `SDL_PROP_WINDOW_WIN32_HDC_POINTER`: the HDC associated with the window + * - `SDL_PROP_WINDOW_WIN32_INSTANCE_POINTER`: the HINSTANCE associated with + * the window + * + * On Wayland: + * + * Note: The `xdg_*` window objects do not internally persist across window + * show/hide calls. They will be null if the window is hidden and must be + * queried each time it is shown. + * + * - `SDL_PROP_WINDOW_WAYLAND_DISPLAY_POINTER`: the wl_display associated with + * the window + * - `SDL_PROP_WINDOW_WAYLAND_SURFACE_POINTER`: the wl_surface associated with + * the window + * - `SDL_PROP_WINDOW_WAYLAND_VIEWPORT_POINTER`: the wp_viewport associated + * with the window + * - `SDL_PROP_WINDOW_WAYLAND_EGL_WINDOW_POINTER`: the wl_egl_window + * associated with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_SURFACE_POINTER`: the xdg_surface associated + * with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_POINTER`: the xdg_toplevel role + * associated with the window + * - 'SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_EXPORT_HANDLE_STRING': the export + * handle associated with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_POPUP_POINTER`: the xdg_popup role + * associated with the window + * - `SDL_PROP_WINDOW_WAYLAND_XDG_POSITIONER_POINTER`: the xdg_positioner + * associated with the window, in popup mode + * + * On X11: + * + * - `SDL_PROP_WINDOW_X11_DISPLAY_POINTER`: the X11 Display associated with + * the window + * - `SDL_PROP_WINDOW_X11_SCREEN_NUMBER`: the screen number associated with + * the window + * - `SDL_PROP_WINDOW_X11_WINDOW_NUMBER`: the X11 Window associated with the + * window + * + * \param window the window to query. + * \returns a valid property ID on success or 0 on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetWindowProperties(SDL_Window *window); + +#define SDL_PROP_WINDOW_SHAPE_POINTER "SDL.window.shape" +#define SDL_PROP_WINDOW_HDR_ENABLED_BOOLEAN "SDL.window.HDR_enabled" +#define SDL_PROP_WINDOW_SDR_WHITE_LEVEL_FLOAT "SDL.window.SDR_white_level" +#define SDL_PROP_WINDOW_HDR_HEADROOM_FLOAT "SDL.window.HDR_headroom" +#define SDL_PROP_WINDOW_ANDROID_WINDOW_POINTER "SDL.window.android.window" +#define SDL_PROP_WINDOW_ANDROID_SURFACE_POINTER "SDL.window.android.surface" +#define SDL_PROP_WINDOW_UIKIT_WINDOW_POINTER "SDL.window.uikit.window" +#define SDL_PROP_WINDOW_UIKIT_METAL_VIEW_TAG_NUMBER "SDL.window.uikit.metal_view_tag" +#define SDL_PROP_WINDOW_UIKIT_OPENGL_FRAMEBUFFER_NUMBER "SDL.window.uikit.opengl.framebuffer" +#define SDL_PROP_WINDOW_UIKIT_OPENGL_RENDERBUFFER_NUMBER "SDL.window.uikit.opengl.renderbuffer" +#define SDL_PROP_WINDOW_UIKIT_OPENGL_RESOLVE_FRAMEBUFFER_NUMBER "SDL.window.uikit.opengl.resolve_framebuffer" +#define SDL_PROP_WINDOW_KMSDRM_DEVICE_INDEX_NUMBER "SDL.window.kmsdrm.dev_index" +#define SDL_PROP_WINDOW_KMSDRM_DRM_FD_NUMBER "SDL.window.kmsdrm.drm_fd" +#define SDL_PROP_WINDOW_KMSDRM_GBM_DEVICE_POINTER "SDL.window.kmsdrm.gbm_dev" +#define SDL_PROP_WINDOW_COCOA_WINDOW_POINTER "SDL.window.cocoa.window" +#define SDL_PROP_WINDOW_COCOA_METAL_VIEW_TAG_NUMBER "SDL.window.cocoa.metal_view_tag" +#define SDL_PROP_WINDOW_OPENVR_OVERLAY_ID "SDL.window.openvr.overlay_id" +#define SDL_PROP_WINDOW_VIVANTE_DISPLAY_POINTER "SDL.window.vivante.display" +#define SDL_PROP_WINDOW_VIVANTE_WINDOW_POINTER "SDL.window.vivante.window" +#define SDL_PROP_WINDOW_VIVANTE_SURFACE_POINTER "SDL.window.vivante.surface" +#define SDL_PROP_WINDOW_WIN32_HWND_POINTER "SDL.window.win32.hwnd" +#define SDL_PROP_WINDOW_WIN32_HDC_POINTER "SDL.window.win32.hdc" +#define SDL_PROP_WINDOW_WIN32_INSTANCE_POINTER "SDL.window.win32.instance" +#define SDL_PROP_WINDOW_WAYLAND_DISPLAY_POINTER "SDL.window.wayland.display" +#define SDL_PROP_WINDOW_WAYLAND_SURFACE_POINTER "SDL.window.wayland.surface" +#define SDL_PROP_WINDOW_WAYLAND_VIEWPORT_POINTER "SDL.window.wayland.viewport" +#define SDL_PROP_WINDOW_WAYLAND_EGL_WINDOW_POINTER "SDL.window.wayland.egl_window" +#define SDL_PROP_WINDOW_WAYLAND_XDG_SURFACE_POINTER "SDL.window.wayland.xdg_surface" +#define SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_POINTER "SDL.window.wayland.xdg_toplevel" +#define SDL_PROP_WINDOW_WAYLAND_XDG_TOPLEVEL_EXPORT_HANDLE_STRING "SDL.window.wayland.xdg_toplevel_export_handle" +#define SDL_PROP_WINDOW_WAYLAND_XDG_POPUP_POINTER "SDL.window.wayland.xdg_popup" +#define SDL_PROP_WINDOW_WAYLAND_XDG_POSITIONER_POINTER "SDL.window.wayland.xdg_positioner" +#define SDL_PROP_WINDOW_X11_DISPLAY_POINTER "SDL.window.x11.display" +#define SDL_PROP_WINDOW_X11_SCREEN_NUMBER "SDL.window.x11.screen" +#define SDL_PROP_WINDOW_X11_WINDOW_NUMBER "SDL.window.x11.window" + +/** + * Get the window flags. + * + * \param window the window to query. + * \returns a mask of the SDL_WindowFlags associated with `window`. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + * \sa SDL_HideWindow + * \sa SDL_MaximizeWindow + * \sa SDL_MinimizeWindow + * \sa SDL_SetWindowFullscreen + * \sa SDL_SetWindowMouseGrab + * \sa SDL_ShowWindow + */ +extern SDL_DECLSPEC SDL_WindowFlags SDLCALL SDL_GetWindowFlags(SDL_Window *window); + +/** + * Set the title of a window. + * + * This string is expected to be in UTF-8 encoding. + * + * \param window the window to change. + * \param title the desired window title in UTF-8 format. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowTitle + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowTitle(SDL_Window *window, const char *title); + +/** + * Get the title of a window. + * + * \param window the window to query. + * \returns the title of the window in UTF-8 format or "" if there is no + * title. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowTitle + */ +extern SDL_DECLSPEC const char * SDLCALL SDL_GetWindowTitle(SDL_Window *window); + +/** + * Set the icon for a window. + * + * If this function is passed a surface with alternate representations, the + * surface will be interpreted as the content to be used for 100% display + * scale, and the alternate representations will be used for high DPI + * situations. For example, if the original surface is 32x32, then on a 2x + * macOS display or 200% display scale on Windows, a 64x64 version of the + * image will be used, if available. If a matching version of the image isn't + * available, the closest larger size image will be downscaled to the + * appropriate size and be used instead, if available. Otherwise, the closest + * smaller image will be upscaled and be used instead. + * + * \param window the window to change. + * \param icon an SDL_Surface structure containing the icon for the window. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowIcon(SDL_Window *window, SDL_Surface *icon); + +/** + * Request that the window's position be set. + * + * If the window is in an exclusive fullscreen or maximized state, this + * request has no effect. + * + * This can be used to reposition fullscreen-desktop windows onto a different + * display, however, as exclusive fullscreen windows are locked to a specific + * display, they can only be repositioned programmatically via + * SDL_SetWindowFullscreenMode(). + * + * On some windowing systems this request is asynchronous and the new + * coordinates may not have have been applied immediately upon the return of + * this function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window position changes, an SDL_EVENT_WINDOW_MOVED event will be + * emitted with the window's new coordinates. Note that the new coordinates + * may not match the exact coordinates requested, as some windowing systems + * can restrict the position of the window in certain scenarios (e.g. + * constraining the position so the window is always within desktop bounds). + * Additionally, as this is just a request, it can be denied by the windowing + * system. + * + * \param window the window to reposition. + * \param x the x coordinate of the window, or `SDL_WINDOWPOS_CENTERED` or + * `SDL_WINDOWPOS_UNDEFINED`. + * \param y the y coordinate of the window, or `SDL_WINDOWPOS_CENTERED` or + * `SDL_WINDOWPOS_UNDEFINED`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowPosition + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowPosition(SDL_Window *window, int x, int y); + +/** + * Get the position of a window. + * + * This is the current position of the window as last reported by the + * windowing system. + * + * If you do not need the value for one of the positions a NULL may be passed + * in the `x` or `y` parameter. + * + * \param window the window to query. + * \param x a pointer filled in with the x position of the window, may be + * NULL. + * \param y a pointer filled in with the y position of the window, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowPosition + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowPosition(SDL_Window *window, int *x, int *y); + +/** + * Request that the size of a window's client area be set. + * + * If the window is in a fullscreen or maximized state, this request has no + * effect. + * + * To change the exclusive fullscreen mode of a window, use + * SDL_SetWindowFullscreenMode(). + * + * On some windowing systems, this request is asynchronous and the new window + * size may not have have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window size changes, an SDL_EVENT_WINDOW_RESIZED event will be + * emitted with the new window dimensions. Note that the new dimensions may + * not match the exact size requested, as some windowing systems can restrict + * the window size in certain scenarios (e.g. constraining the size of the + * content area to remain within the usable desktop bounds). Additionally, as + * this is just a request, it can be denied by the windowing system. + * + * \param window the window to change. + * \param w the width of the window, must be > 0. + * \param h the height of the window, must be > 0. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSize + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowSize(SDL_Window *window, int w, int h); + +/** + * Get the size of a window's client area. + * + * The window pixel size may differ from its window coordinate size if the + * window is on a high pixel density display. Use SDL_GetWindowSizeInPixels() + * or SDL_GetRenderOutputSize() to get the real client area size in pixels. + * + * \param window the window to query the width and height from. + * \param w a pointer filled in with the width of the window, may be NULL. + * \param h a pointer filled in with the height of the window, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetRenderOutputSize + * \sa SDL_GetWindowSizeInPixels + * \sa SDL_SetWindowSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSize(SDL_Window *window, int *w, int *h); + +/** + * Get the safe area for this window. + * + * Some devices have portions of the screen which are partially obscured or + * not interactive, possibly due to on-screen controls, curved edges, camera + * notches, TV overscan, etc. This function provides the area of the window + * which is safe to have interactable content. You should continue rendering + * into the rest of the window, but it should not contain visually important + * or interactible content. + * + * \param window the window to query. + * \param rect a pointer filled in with the client area that is safe for + * interactive content. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSafeArea(SDL_Window *window, SDL_Rect *rect); + +/** + * Request that the aspect ratio of a window's client area be set. + * + * The aspect ratio is the ratio of width divided by height, e.g. 2560x1600 + * would be 1.6. Larger aspect ratios are wider and smaller aspect ratios are + * narrower. + * + * If, at the time of this request, the window in a fixed-size state, such as + * maximized or fullscreen, the request will be deferred until the window + * exits this state and becomes resizable again. + * + * On some windowing systems, this request is asynchronous and the new window + * aspect ratio may not have have been applied immediately upon the return of + * this function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window size changes, an SDL_EVENT_WINDOW_RESIZED event will be + * emitted with the new window dimensions. Note that the new dimensions may + * not match the exact aspect ratio requested, as some windowing systems can + * restrict the window size in certain scenarios (e.g. constraining the size + * of the content area to remain within the usable desktop bounds). + * Additionally, as this is just a request, it can be denied by the windowing + * system. + * + * \param window the window to change. + * \param min_aspect the minimum aspect ratio of the window, or 0.0f for no + * limit. + * \param max_aspect the maximum aspect ratio of the window, or 0.0f for no + * limit. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowAspectRatio + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowAspectRatio(SDL_Window *window, float min_aspect, float max_aspect); + +/** + * Get the size of a window's client area. + * + * \param window the window to query the width and height from. + * \param min_aspect a pointer filled in with the minimum aspect ratio of the + * window, may be NULL. + * \param max_aspect a pointer filled in with the maximum aspect ratio of the + * window, may be NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowAspectRatio + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowAspectRatio(SDL_Window *window, float *min_aspect, float *max_aspect); + +/** + * Get the size of a window's borders (decorations) around the client area. + * + * Note: If this function fails (returns false), the size values will be + * initialized to 0, 0, 0, 0 (if a non-NULL pointer is provided), as if the + * window in question was borderless. + * + * Note: This function may fail on systems where the window has not yet been + * decorated by the display server (for example, immediately after calling + * SDL_CreateWindow). It is recommended that you wait at least until the + * window has been presented and composited, so that the window system has a + * chance to decorate the window and provide the border dimensions to SDL. + * + * This function also returns false if getting the information is not + * supported. + * + * \param window the window to query the size values of the border + * (decorations) from. + * \param top pointer to variable for storing the size of the top border; NULL + * is permitted. + * \param left pointer to variable for storing the size of the left border; + * NULL is permitted. + * \param bottom pointer to variable for storing the size of the bottom + * border; NULL is permitted. + * \param right pointer to variable for storing the size of the right border; + * NULL is permitted. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowBordersSize(SDL_Window *window, int *top, int *left, int *bottom, int *right); + +/** + * Get the size of a window's client area, in pixels. + * + * \param window the window from which the drawable size should be queried. + * \param w a pointer to variable for storing the width in pixels, may be + * NULL. + * \param h a pointer to variable for storing the height in pixels, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreateWindow + * \sa SDL_GetWindowSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSizeInPixels(SDL_Window *window, int *w, int *h); + +/** + * Set the minimum size of a window's client area. + * + * \param window the window to change. + * \param min_w the minimum width of the window, or 0 for no limit. + * \param min_h the minimum height of the window, or 0 for no limit. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMinimumSize + * \sa SDL_SetWindowMaximumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMinimumSize(SDL_Window *window, int min_w, int min_h); + +/** + * Get the minimum size of a window's client area. + * + * \param window the window to query. + * \param w a pointer filled in with the minimum width of the window, may be + * NULL. + * \param h a pointer filled in with the minimum height of the window, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMaximumSize + * \sa SDL_SetWindowMinimumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowMinimumSize(SDL_Window *window, int *w, int *h); + +/** + * Set the maximum size of a window's client area. + * + * \param window the window to change. + * \param max_w the maximum width of the window, or 0 for no limit. + * \param max_h the maximum height of the window, or 0 for no limit. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMaximumSize + * \sa SDL_SetWindowMinimumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMaximumSize(SDL_Window *window, int max_w, int max_h); + +/** + * Get the maximum size of a window's client area. + * + * \param window the window to query. + * \param w a pointer filled in with the maximum width of the window, may be + * NULL. + * \param h a pointer filled in with the maximum height of the window, may be + * NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMinimumSize + * \sa SDL_SetWindowMaximumSize + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowMaximumSize(SDL_Window *window, int *w, int *h); + +/** + * Set the border state of a window. + * + * This will add or remove the window's `SDL_WINDOW_BORDERLESS` flag and add + * or remove the border from the actual window. This is a no-op if the + * window's border already matches the requested state. + * + * You can't change the border state of a fullscreen window. + * + * \param window the window of which to change the border state. + * \param bordered false to remove border, true to add border. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowBordered(SDL_Window *window, bool bordered); + +/** + * Set the user-resizable state of a window. + * + * This will add or remove the window's `SDL_WINDOW_RESIZABLE` flag and + * allow/disallow user resizing of the window. This is a no-op if the window's + * resizable state already matches the requested state. + * + * You can't change the resizable state of a fullscreen window. + * + * \param window the window of which to change the resizable state. + * \param resizable true to allow resizing, false to disallow. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowResizable(SDL_Window *window, bool resizable); + +/** + * Set the window to always be above the others. + * + * This will add or remove the window's `SDL_WINDOW_ALWAYS_ON_TOP` flag. This + * will bring the window to the front and keep the window above the rest. + * + * \param window the window of which to change the always on top state. + * \param on_top true to set the window always on top, false to disable. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFlags + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowAlwaysOnTop(SDL_Window *window, bool on_top); + +/** + * Show a window. + * + * \param window the window to show. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_HideWindow + * \sa SDL_RaiseWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowWindow(SDL_Window *window); + +/** + * Hide a window. + * + * \param window the window to hide. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_ShowWindow + * \sa SDL_WINDOW_HIDDEN + */ +extern SDL_DECLSPEC bool SDLCALL SDL_HideWindow(SDL_Window *window); + +/** + * Request that a window be raised above other windows and gain the input + * focus. + * + * The result of this request is subject to desktop window manager policy, + * particularly if raising the requested window would result in stealing focus + * from another application. If the window is successfully raised and gains + * input focus, an SDL_EVENT_WINDOW_FOCUS_GAINED event will be emitted, and + * the window will have the SDL_WINDOW_INPUT_FOCUS flag set. + * + * \param window the window to raise. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RaiseWindow(SDL_Window *window); + +/** + * Request that the window be made as large as possible. + * + * Non-resizable windows can't be maximized. The window must have the + * SDL_WINDOW_RESIZABLE flag set, or this will have no effect. + * + * On some windowing systems this request is asynchronous and the new window + * state may not have have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_MAXIMIZED event will be + * emitted. Note that, as this is just a request, the windowing system can + * deny the state change. + * + * When maximizing a window, whether the constraints set via + * SDL_SetWindowMaximumSize() are honored depends on the policy of the window + * manager. Win32 and macOS enforce the constraints when maximizing, while X11 + * and Wayland window managers may vary. + * + * \param window the window to maximize. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MinimizeWindow + * \sa SDL_RestoreWindow + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_MaximizeWindow(SDL_Window *window); + +/** + * Request that the window be minimized to an iconic representation. + * + * If the window is in a fullscreen state, this request has no direct effect. + * It may alter the state the window is returned to when leaving fullscreen. + * + * On some windowing systems this request is asynchronous and the new window + * state may not have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_MINIMIZED event will be + * emitted. Note that, as this is just a request, the windowing system can + * deny the state change. + * + * \param window the window to minimize. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MaximizeWindow + * \sa SDL_RestoreWindow + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_MinimizeWindow(SDL_Window *window); + +/** + * Request that the size and position of a minimized or maximized window be + * restored. + * + * If the window is in a fullscreen state, this request has no direct effect. + * It may alter the state the window is returned to when leaving fullscreen. + * + * On some windowing systems this request is asynchronous and the new window + * state may not have have been applied immediately upon the return of this + * function. If an immediate change is required, call SDL_SyncWindow() to + * block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_RESTORED event will be + * emitted. Note that, as this is just a request, the windowing system can + * deny the state change. + * + * \param window the window to restore. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_MaximizeWindow + * \sa SDL_MinimizeWindow + * \sa SDL_SyncWindow + */ +extern SDL_DECLSPEC bool SDLCALL SDL_RestoreWindow(SDL_Window *window); + +/** + * Request that the window's fullscreen state be changed. + * + * By default a window in fullscreen state uses borderless fullscreen desktop + * mode, but a specific exclusive display mode can be set using + * SDL_SetWindowFullscreenMode(). + * + * On some windowing systems this request is asynchronous and the new + * fullscreen state may not have have been applied immediately upon the return + * of this function. If an immediate change is required, call SDL_SyncWindow() + * to block until the changes have taken effect. + * + * When the window state changes, an SDL_EVENT_WINDOW_ENTER_FULLSCREEN or + * SDL_EVENT_WINDOW_LEAVE_FULLSCREEN event will be emitted. Note that, as this + * is just a request, it can be denied by the windowing system. + * + * \param window the window to change. + * \param fullscreen true for fullscreen mode, false for windowed mode. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowFullscreenMode + * \sa SDL_SetWindowFullscreenMode + * \sa SDL_SyncWindow + * \sa SDL_WINDOW_FULLSCREEN + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowFullscreen(SDL_Window *window, bool fullscreen); + +/** + * Block until any pending window state is finalized. + * + * On asynchronous windowing systems, this acts as a synchronization barrier + * for pending window state. It will attempt to wait until any pending window + * state has been applied and is guaranteed to return within finite time. Note + * that for how long it can potentially block depends on the underlying window + * system, as window state changes may involve somewhat lengthy animations + * that must complete before the window is in its final requested state. + * + * On windowing systems where changes are immediate, this does nothing. + * + * \param window the window for which to wait for the pending state to be + * applied. + * \returns true on success or false if the operation timed out before the + * window was in the requested state. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowSize + * \sa SDL_SetWindowPosition + * \sa SDL_SetWindowFullscreen + * \sa SDL_MinimizeWindow + * \sa SDL_MaximizeWindow + * \sa SDL_RestoreWindow + * \sa SDL_HINT_VIDEO_SYNC_WINDOW_OPERATIONS + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SyncWindow(SDL_Window *window); + +/** + * Return whether the window has a surface associated with it. + * + * \param window the window to query. + * \returns true if there is a surface associated with the window, or false + * otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_WindowHasSurface(SDL_Window *window); + +/** + * Get the SDL surface associated with the window. + * + * A new surface will be created with the optimal format for the window, if + * necessary. This surface will be freed when the window is destroyed. Do not + * free this surface. + * + * This surface will be invalidated if the window is resized. After resizing a + * window this function must be called again to return a valid surface. + * + * You may not combine this with 3D or the rendering API on this window. + * + * This function is affected by `SDL_HINT_FRAMEBUFFER_ACCELERATION`. + * + * \param window the window to query. + * \returns the surface associated with the window, or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DestroyWindowSurface + * \sa SDL_WindowHasSurface + * \sa SDL_UpdateWindowSurface + * \sa SDL_UpdateWindowSurfaceRects + */ +extern SDL_DECLSPEC SDL_Surface * SDLCALL SDL_GetWindowSurface(SDL_Window *window); + +/** + * Toggle VSync for the window surface. + * + * When a window surface is created, vsync defaults to + * SDL_WINDOW_SURFACE_VSYNC_DISABLED. + * + * The `vsync` parameter can be 1 to synchronize present with every vertical + * refresh, 2 to synchronize present with every second vertical refresh, etc., + * SDL_WINDOW_SURFACE_VSYNC_ADAPTIVE for late swap tearing (adaptive vsync), + * or SDL_WINDOW_SURFACE_VSYNC_DISABLED to disable. Not every value is + * supported by every driver, so you should check the return value to see + * whether the requested setting is supported. + * + * \param window the window. + * \param vsync the vertical refresh sync interval. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurfaceVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowSurfaceVSync(SDL_Window *window, int vsync); + +#define SDL_WINDOW_SURFACE_VSYNC_DISABLED 0 +#define SDL_WINDOW_SURFACE_VSYNC_ADAPTIVE (-1) + +/** + * Get VSync for the window surface. + * + * \param window the window to query. + * \param vsync an int filled with the current vertical refresh sync interval. + * See SDL_SetWindowSurfaceVSync() for the meaning of the value. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowSurfaceVSync + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowSurfaceVSync(SDL_Window *window, int *vsync); + +/** + * Copy the window surface to the screen. + * + * This is the function you use to reflect any changes to the surface on the + * screen. + * + * This function is equivalent to the SDL 1.2 API SDL_Flip(). + * + * \param window the window to update. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + * \sa SDL_UpdateWindowSurfaceRects + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateWindowSurface(SDL_Window *window); + +/** + * Copy areas of the window surface to the screen. + * + * This is the function you use to reflect changes to portions of the surface + * on the screen. + * + * This function is equivalent to the SDL 1.2 API SDL_UpdateRects(). + * + * Note that this function will update _at least_ the rectangles specified, + * but this is only intended as an optimization; in practice, this might + * update more of the screen (or all of the screen!), depending on what method + * SDL uses to send pixels to the system. + * + * \param window the window to update. + * \param rects an array of SDL_Rect structures representing areas of the + * surface to copy, in pixels. + * \param numrects the number of rectangles. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + * \sa SDL_UpdateWindowSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_UpdateWindowSurfaceRects(SDL_Window *window, const SDL_Rect *rects, int numrects); + +/** + * Destroy the surface associated with the window. + * + * \param window the window to update. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowSurface + * \sa SDL_WindowHasSurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DestroyWindowSurface(SDL_Window *window); + +/** + * Set a window's keyboard grab mode. + * + * Keyboard grab enables capture of system keyboard shortcuts like Alt+Tab or + * the Meta/Super key. Note that not all system keyboard shortcuts can be + * captured by applications (one example is Ctrl+Alt+Del on Windows). + * + * This is primarily intended for specialized applications such as VNC clients + * or VM frontends. Normal games should not use keyboard grab. + * + * When keyboard grab is enabled, SDL will continue to handle Alt+Tab when the + * window is full-screen to ensure the user is not trapped in your + * application. If you have a custom keyboard shortcut to exit fullscreen + * mode, you may suppress this behavior with + * `SDL_HINT_ALLOW_ALT_TAB_WHILE_GRABBED`. + * + * If the caller enables a grab while another window is currently grabbed, the + * other window loses its grab in favor of the caller's window. + * + * \param window the window for which the keyboard grab mode should be set. + * \param grabbed this is true to grab keyboard, and false to release. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowKeyboardGrab + * \sa SDL_SetWindowMouseGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowKeyboardGrab(SDL_Window *window, bool grabbed); + +/** + * Set a window's mouse grab mode. + * + * Mouse grab confines the mouse cursor to the window. + * + * \param window the window for which the mouse grab mode should be set. + * \param grabbed this is true to grab mouse, and false to release. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMouseRect + * \sa SDL_SetWindowMouseRect + * \sa SDL_SetWindowMouseGrab + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMouseGrab(SDL_Window *window, bool grabbed); + +/** + * Get a window's keyboard grab mode. + * + * \param window the window to query. + * \returns true if keyboard is grabbed, and false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowKeyboardGrab(SDL_Window *window); + +/** + * Get a window's mouse grab mode. + * + * \param window the window to query. + * \returns true if mouse is grabbed, and false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMouseRect + * \sa SDL_SetWindowMouseRect + * \sa SDL_SetWindowMouseGrab + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GetWindowMouseGrab(SDL_Window *window); + +/** + * Get the window that currently has an input grab enabled. + * + * \returns the window if input is grabbed or NULL otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowMouseGrab + * \sa SDL_SetWindowKeyboardGrab + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GetGrabbedWindow(void); + +/** + * Confines the cursor to the specified area of a window. + * + * Note that this does NOT grab the cursor, it only defines the area a cursor + * is restricted to when the window has mouse focus. + * + * \param window the window that will be associated with the barrier. + * \param rect a rectangle area in window-relative coordinates. If NULL the + * barrier for the specified window will be destroyed. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowMouseRect + * \sa SDL_GetWindowMouseGrab + * \sa SDL_SetWindowMouseGrab + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowMouseRect(SDL_Window *window, const SDL_Rect *rect); + +/** + * Get the mouse confinement rectangle of a window. + * + * \param window the window to query. + * \returns a pointer to the mouse confinement rectangle of a window, or NULL + * if there isn't one. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowMouseRect + * \sa SDL_GetWindowMouseGrab + * \sa SDL_SetWindowMouseGrab + */ +extern SDL_DECLSPEC const SDL_Rect * SDLCALL SDL_GetWindowMouseRect(SDL_Window *window); + +/** + * Set the opacity for a window. + * + * The parameter `opacity` will be clamped internally between 0.0f + * (transparent) and 1.0f (opaque). + * + * This function also returns false if setting the opacity isn't supported. + * + * \param window the window which will be made transparent or opaque. + * \param opacity the opacity value (0.0f - transparent, 1.0f - opaque). + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GetWindowOpacity + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowOpacity(SDL_Window *window, float opacity); + +/** + * Get the opacity of a window. + * + * If transparency isn't supported on this platform, opacity will be returned + * as 1.0f without error. + * + * \param window the window to get the current opacity value from. + * \returns the opacity, (0.0f - transparent, 1.0f - opaque), or -1.0f on + * failure; call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowOpacity + */ +extern SDL_DECLSPEC float SDLCALL SDL_GetWindowOpacity(SDL_Window *window); + +/** + * Set the window as a child of a parent window. + * + * If the window is already the child of an existing window, it will be + * reparented to the new owner. Setting the parent window to NULL unparents + * the window and removes child window status. + * + * If a parent window is hidden or destroyed, the operation will be + * recursively applied to child windows. Child windows hidden with the parent + * that did not have their hidden status explicitly set will be restored when + * the parent is shown. + * + * Attempting to set the parent of a window that is currently in the modal + * state will fail. Use SDL_SetWindowModal() to cancel the modal status before + * attempting to change the parent. + * + * Popup windows cannot change parents and attempts to do so will fail. + * + * Setting a parent window that is currently the sibling or descendent of the + * child window results in undefined behavior. + * + * \param window the window that should become the child of a parent. + * \param parent the new parent window for the child window. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowModal + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowParent(SDL_Window *window, SDL_Window *parent); + +/** + * Toggle the state of the window as modal. + * + * To enable modal status on a window, the window must currently be the child + * window of a parent, or toggling modal status on will fail. + * + * \param window the window on which to set the modal state. + * \param modal true to toggle modal status on, false to toggle it off. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_SetWindowParent + * \sa SDL_WINDOW_MODAL + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowModal(SDL_Window *window, bool modal); + +/** + * Set whether the window may have input focus. + * + * \param window the window to set focusable state. + * \param focusable true to allow input focus, false to not allow input focus. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowFocusable(SDL_Window *window, bool focusable); + + +/** + * Display the system-level window menu. + * + * This default window menu is provided by the system and on some platforms + * provides functionality for setting or changing privileged state on the + * window, such as moving it between workspaces or displays, or toggling the + * always-on-top property. + * + * On platforms or desktops where this is unsupported, this function does + * nothing. + * + * \param window the window for which the menu will be displayed. + * \param x the x coordinate of the menu, relative to the origin (top-left) of + * the client area. + * \param y the y coordinate of the menu, relative to the origin (top-left) of + * the client area. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ShowWindowSystemMenu(SDL_Window *window, int x, int y); + +/** + * Possible return values from the SDL_HitTest callback. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This enum is available since SDL 3.2.0. + * + * \sa SDL_HitTest + */ +typedef enum SDL_HitTestResult +{ + SDL_HITTEST_NORMAL, /**< Region is normal. No special properties. */ + SDL_HITTEST_DRAGGABLE, /**< Region can drag entire window. */ + SDL_HITTEST_RESIZE_TOPLEFT, /**< Region is the resizable top-left corner border. */ + SDL_HITTEST_RESIZE_TOP, /**< Region is the resizable top border. */ + SDL_HITTEST_RESIZE_TOPRIGHT, /**< Region is the resizable top-right corner border. */ + SDL_HITTEST_RESIZE_RIGHT, /**< Region is the resizable right border. */ + SDL_HITTEST_RESIZE_BOTTOMRIGHT, /**< Region is the resizable bottom-right corner border. */ + SDL_HITTEST_RESIZE_BOTTOM, /**< Region is the resizable bottom border. */ + SDL_HITTEST_RESIZE_BOTTOMLEFT, /**< Region is the resizable bottom-left corner border. */ + SDL_HITTEST_RESIZE_LEFT /**< Region is the resizable left border. */ +} SDL_HitTestResult; + +/** + * Callback used for hit-testing. + * + * \param win the SDL_Window where hit-testing was set on. + * \param area an SDL_Point which should be hit-tested. + * \param data what was passed as `callback_data` to SDL_SetWindowHitTest(). + * \returns an SDL_HitTestResult value. + * + * \sa SDL_SetWindowHitTest + */ +typedef SDL_HitTestResult (SDLCALL *SDL_HitTest)(SDL_Window *win, + const SDL_Point *area, + void *data); + +/** + * Provide a callback that decides if a window region has special properties. + * + * Normally windows are dragged and resized by decorations provided by the + * system window manager (a title bar, borders, etc), but for some apps, it + * makes sense to drag them from somewhere else inside the window itself; for + * example, one might have a borderless window that wants to be draggable from + * any part, or simulate its own title bar, etc. + * + * This function lets the app provide a callback that designates pieces of a + * given window as special. This callback is run during event processing if we + * need to tell the OS to treat a region of the window specially; the use of + * this callback is known as "hit testing." + * + * Mouse input may not be delivered to your application if it is within a + * special area; the OS will often apply that input to moving the window or + * resizing the window and not deliver it to the application. + * + * Specifying NULL for a callback disables hit-testing. Hit-testing is + * disabled by default. + * + * Platforms that don't support this functionality will return false + * unconditionally, even if you're attempting to disable hit-testing. + * + * Your callback may fire at any time, and its firing does not indicate any + * specific behavior (for example, on Windows, this certainly might fire when + * the OS is deciding whether to drag your window, but it fires for lots of + * other reasons, too, some unrelated to anything you probably care about _and + * when the mouse isn't actually at the location it is testing_). Since this + * can fire at any time, you should try to keep your callback efficient, + * devoid of allocations, etc. + * + * \param window the window to set hit-testing on. + * \param callback the function to call when doing a hit-test. + * \param callback_data an app-defined void pointer passed to **callback**. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowHitTest(SDL_Window *window, SDL_HitTest callback, void *callback_data); + +/** + * Set the shape of a transparent window. + * + * This sets the alpha channel of a transparent window and any fully + * transparent areas are also transparent to mouse clicks. If you are using + * something besides the SDL render API, then you are responsible for drawing + * the alpha channel of the window to match the shape alpha channel to get + * consistent cross-platform results. + * + * The shape is copied inside this function, so you can free it afterwards. If + * your shape surface changes, you should call SDL_SetWindowShape() again to + * update the window. This is an expensive operation, so should be done + * sparingly. + * + * The window must have been created with the SDL_WINDOW_TRANSPARENT flag. + * + * \param window the window. + * \param shape the surface representing the shape of the window, or NULL to + * remove any current shape. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_SetWindowShape(SDL_Window *window, SDL_Surface *shape); + +/** + * Request a window to demand attention from the user. + * + * \param window the window to be flashed. + * \param operation the operation to perform. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_FlashWindow(SDL_Window *window, SDL_FlashOperation operation); + +/** + * Destroy a window. + * + * Any child windows owned by the window will be recursively destroyed as + * well. + * + * Note that on some platforms, the visible window may not actually be removed + * from the screen until the SDL event loop is pumped again, even though the + * SDL_Window is no longer valid after this call. + * + * \param window the window to destroy. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_CreatePopupWindow + * \sa SDL_CreateWindow + * \sa SDL_CreateWindowWithProperties + */ +extern SDL_DECLSPEC void SDLCALL SDL_DestroyWindow(SDL_Window *window); + + +/** + * Check whether the screensaver is currently enabled. + * + * The screensaver is disabled by default. + * + * The default can also be changed using `SDL_HINT_VIDEO_ALLOW_SCREENSAVER`. + * + * \returns true if the screensaver is enabled, false if it is disabled. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DisableScreenSaver + * \sa SDL_EnableScreenSaver + */ +extern SDL_DECLSPEC bool SDLCALL SDL_ScreenSaverEnabled(void); + +/** + * Allow the screen to be blanked by a screen saver. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_DisableScreenSaver + * \sa SDL_ScreenSaverEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_EnableScreenSaver(void); + +/** + * Prevent the screen from being blanked by a screen saver. + * + * If you disable the screensaver, it is automatically re-enabled when SDL + * quits. + * + * The screensaver is disabled by default, but this may by changed by + * SDL_HINT_VIDEO_ALLOW_SCREENSAVER. + * + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EnableScreenSaver + * \sa SDL_ScreenSaverEnabled + */ +extern SDL_DECLSPEC bool SDLCALL SDL_DisableScreenSaver(void); + + +/** + * \name OpenGL support functions + */ +/* @{ */ + +/** + * Dynamically load an OpenGL library. + * + * This should be done after initializing the video driver, but before + * creating any OpenGL windows. If no OpenGL library is loaded, the default + * library will be loaded upon creation of the first OpenGL window. + * + * If you do this, you need to retrieve all of the GL functions used in your + * program from the dynamic library using SDL_GL_GetProcAddress(). + * + * \param path the platform dependent OpenGL library name, or NULL to open the + * default OpenGL library. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetProcAddress + * \sa SDL_GL_UnloadLibrary + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_LoadLibrary(const char *path); + +/** + * Get an OpenGL function by name. + * + * If the GL library is loaded at runtime with SDL_GL_LoadLibrary(), then all + * GL functions must be retrieved this way. Usually this is used to retrieve + * function pointers to OpenGL extensions. + * + * There are some quirks to looking up OpenGL functions that require some + * extra care from the application. If you code carefully, you can handle + * these quirks without any platform-specific code, though: + * + * - On Windows, function pointers are specific to the current GL context; + * this means you need to have created a GL context and made it current + * before calling SDL_GL_GetProcAddress(). If you recreate your context or + * create a second context, you should assume that any existing function + * pointers aren't valid to use with it. This is (currently) a + * Windows-specific limitation, and in practice lots of drivers don't suffer + * this limitation, but it is still the way the wgl API is documented to + * work and you should expect crashes if you don't respect it. Store a copy + * of the function pointers that comes and goes with context lifespan. + * - On X11, function pointers returned by this function are valid for any + * context, and can even be looked up before a context is created at all. + * This means that, for at least some common OpenGL implementations, if you + * look up a function that doesn't exist, you'll get a non-NULL result that + * is _NOT_ safe to call. You must always make sure the function is actually + * available for a given GL context before calling it, by checking for the + * existence of the appropriate extension with SDL_GL_ExtensionSupported(), + * or verifying that the version of OpenGL you're using offers the function + * as core functionality. + * - Some OpenGL drivers, on all platforms, *will* return NULL if a function + * isn't supported, but you can't count on this behavior. Check for + * extensions you use, and if you get a NULL anyway, act as if that + * extension wasn't available. This is probably a bug in the driver, but you + * can code defensively for this scenario anyhow. + * - Just because you're on Linux/Unix, don't assume you'll be using X11. + * Next-gen display servers are waiting to replace it, and may or may not + * make the same promises about function pointers. + * - OpenGL function pointers must be declared `APIENTRY` as in the example + * code. This will ensure the proper calling convention is followed on + * platforms where this matters (Win32) thereby avoiding stack corruption. + * + * \param proc the name of an OpenGL function. + * \returns a pointer to the named OpenGL function. The returned pointer + * should be cast to the appropriate function signature. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_ExtensionSupported + * \sa SDL_GL_LoadLibrary + * \sa SDL_GL_UnloadLibrary + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_GL_GetProcAddress(const char *proc); + +/** + * Get an EGL library function by name. + * + * If an EGL library is loaded, this function allows applications to get entry + * points for EGL functions. This is useful to provide to an EGL API and + * extension loader. + * + * \param proc the name of an EGL function. + * \returns a pointer to the named EGL function. The returned pointer should + * be cast to the appropriate function signature. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_EGL_GetCurrentDisplay + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_EGL_GetProcAddress(const char *proc); + +/** + * Unload the OpenGL library previously loaded by SDL_GL_LoadLibrary(). + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_LoadLibrary + */ +extern SDL_DECLSPEC void SDLCALL SDL_GL_UnloadLibrary(void); + +/** + * Check if an OpenGL extension is supported for the current context. + * + * This function operates on the current GL context; you must have created a + * context and it must be current before calling this function. Do not assume + * that all contexts you create will have the same set of extensions + * available, or that recreating an existing context will offer the same + * extensions again. + * + * While it's probably not a massive overhead, this function is not an O(1) + * operation. Check the extensions you care about after creating the GL + * context and save that information somewhere instead of calling the function + * every time you need to know. + * + * \param extension the name of the extension to check. + * \returns true if the extension is supported, false otherwise. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_ExtensionSupported(const char *extension); + +/** + * Reset all previously set OpenGL context attributes to their default values. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetAttribute + * \sa SDL_GL_SetAttribute + */ +extern SDL_DECLSPEC void SDLCALL SDL_GL_ResetAttributes(void); + +/** + * Set an OpenGL window attribute before window creation. + * + * This function sets the OpenGL attribute `attr` to `value`. The requested + * attributes should be set before creating an OpenGL window. You should use + * SDL_GL_GetAttribute() to check the values after creating the OpenGL + * context, since the values obtained can differ from the requested ones. + * + * \param attr an SDL_GLAttr enum value specifying the OpenGL attribute to + * set. + * \param value the desired value for the attribute. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetAttribute + * \sa SDL_GL_ResetAttributes + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_SetAttribute(SDL_GLAttr attr, int value); + +/** + * Get the actual value for an attribute from the current context. + * + * \param attr an SDL_GLAttr enum value specifying the OpenGL attribute to + * get. + * \param value a pointer filled in with the current value of `attr`. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_ResetAttributes + * \sa SDL_GL_SetAttribute + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_GetAttribute(SDL_GLAttr attr, int *value); + +/** + * Create an OpenGL context for an OpenGL window, and make it current. + * + * Windows users new to OpenGL should note that, for historical reasons, GL + * functions added after OpenGL version 1.1 are not available by default. + * Those functions must be loaded at run-time, either with an OpenGL + * extension-handling library or with SDL_GL_GetProcAddress() and its related + * functions. + * + * SDL_GLContext is opaque to the application. + * + * \param window the window to associate with the context. + * \returns the OpenGL context associated with `window` or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_DestroyContext + * \sa SDL_GL_MakeCurrent + */ +extern SDL_DECLSPEC SDL_GLContext SDLCALL SDL_GL_CreateContext(SDL_Window *window); + +/** + * Set up an OpenGL context for rendering into an OpenGL window. + * + * The context must have been created with a compatible window. + * + * \param window the window to associate with the context. + * \param context the OpenGL context to associate with the window. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_CreateContext + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_MakeCurrent(SDL_Window *window, SDL_GLContext context); + +/** + * Get the currently active OpenGL window. + * + * \returns the currently active OpenGL window on success or NULL on failure; + * call SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_Window * SDLCALL SDL_GL_GetCurrentWindow(void); + +/** + * Get the currently active OpenGL context. + * + * \returns the currently active OpenGL context or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_MakeCurrent + */ +extern SDL_DECLSPEC SDL_GLContext SDLCALL SDL_GL_GetCurrentContext(void); + +/** + * Get the currently active EGL display. + * + * \returns the currently active EGL display or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_EGLDisplay SDLCALL SDL_EGL_GetCurrentDisplay(void); + +/** + * Get the currently active EGL config. + * + * \returns the currently active EGL config or NULL on failure; call + * SDL_GetError() for more information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_EGLConfig SDLCALL SDL_EGL_GetCurrentConfig(void); + +/** + * Get the EGL surface associated with the window. + * + * \param window the window to query. + * \returns the EGLSurface pointer associated with the window, or NULL on + * failure. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_EGLSurface SDLCALL SDL_EGL_GetWindowSurface(SDL_Window *window); + +/** + * Sets the callbacks for defining custom EGLAttrib arrays for EGL + * initialization. + * + * Callbacks that aren't needed can be set to NULL. + * + * NOTE: These callback pointers will be reset after SDL_GL_ResetAttributes. + * + * \param platformAttribCallback callback for attributes to pass to + * eglGetPlatformDisplay. May be NULL. + * \param surfaceAttribCallback callback for attributes to pass to + * eglCreateSurface. May be NULL. + * \param contextAttribCallback callback for attributes to pass to + * eglCreateContext. May be NULL. + * \param userdata a pointer that is passed to the callbacks. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC void SDLCALL SDL_EGL_SetAttributeCallbacks(SDL_EGLAttribArrayCallback platformAttribCallback, + SDL_EGLIntArrayCallback surfaceAttribCallback, + SDL_EGLIntArrayCallback contextAttribCallback, void *userdata); + +/** + * Set the swap interval for the current OpenGL context. + * + * Some systems allow specifying -1 for the interval, to enable adaptive + * vsync. Adaptive vsync works the same as vsync, but if you've already missed + * the vertical retrace for a given frame, it swaps buffers immediately, which + * might be less jarring for the user during occasional framerate drops. If an + * application requests adaptive vsync and the system does not support it, + * this function will fail and return false. In such a case, you should + * probably retry the call with 1 for the interval. + * + * Adaptive vsync is implemented for some glX drivers with + * GLX_EXT_swap_control_tear, and for some Windows drivers with + * WGL_EXT_swap_control_tear. + * + * Read more on the Khronos wiki: + * https://www.khronos.org/opengl/wiki/Swap_Interval#Adaptive_Vsync + * + * \param interval 0 for immediate updates, 1 for updates synchronized with + * the vertical retrace, -1 for adaptive vsync. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_GetSwapInterval + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_SetSwapInterval(int interval); + +/** + * Get the swap interval for the current OpenGL context. + * + * If the system can't determine the swap interval, or there isn't a valid + * current context, this function will set *interval to 0 as a safe default. + * + * \param interval output interval value. 0 if there is no vertical retrace + * synchronization, 1 if the buffer swap is synchronized with + * the vertical retrace, and -1 if late swaps happen + * immediately instead of waiting for the next retrace. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_SetSwapInterval + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_GetSwapInterval(int *interval); + +/** + * Update a window with OpenGL rendering. + * + * This is used with double-buffered OpenGL contexts, which are the default. + * + * On macOS, make sure you bind 0 to the draw framebuffer before swapping the + * window, otherwise nothing will happen. If you aren't using + * glBindFramebuffer(), this is the default and you won't have to do anything + * extra. + * + * \param window the window to change. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_SwapWindow(SDL_Window *window); + +/** + * Delete an OpenGL context. + * + * \param context the OpenGL context to be deleted. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function should only be called on the main thread. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_GL_CreateContext + */ +extern SDL_DECLSPEC bool SDLCALL SDL_GL_DestroyContext(SDL_GLContext context); + +/* @} *//* OpenGL support functions */ + + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_video_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_vulkan.h b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_vulkan.h new file mode 100644 index 0000000..e91e148 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Headers/SDL_vulkan.h @@ -0,0 +1,287 @@ +/* + Simple DirectMedia Layer + Copyright (C) 2017, Mark Callow + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ + +/** + * # CategoryVulkan + * + * Functions for creating Vulkan surfaces on SDL windows. + * + * For the most part, Vulkan operates independent of SDL, but it benefits from + * a little support during setup. + * + * Use SDL_Vulkan_GetInstanceExtensions() to get platform-specific bits for + * creating a VkInstance, then SDL_Vulkan_GetVkGetInstanceProcAddr() to get + * the appropriate function for querying Vulkan entry points. Then + * SDL_Vulkan_CreateSurface() will get you the final pieces you need to + * prepare for rendering into an SDL_Window with Vulkan. + * + * Unlike OpenGL, most of the details of "context" creation and window buffer + * swapping are handled by the Vulkan API directly, so SDL doesn't provide + * Vulkan equivalents of SDL_GL_SwapWindow(), etc; they aren't necessary. + */ + +#ifndef SDL_vulkan_h_ +#define SDL_vulkan_h_ + +#include +#include +#include + +#include +/* Set up for C function definitions, even when using C++ */ +#ifdef __cplusplus +extern "C" { +#endif + +/* Avoid including vulkan_core.h, don't define VkInstance if it's already included */ +#ifdef VULKAN_CORE_H_ +#define NO_SDL_VULKAN_TYPEDEFS +#endif +#ifndef NO_SDL_VULKAN_TYPEDEFS +#define VK_DEFINE_HANDLE(object) typedef struct object##_T* object; + +#if defined(__LP64__) || defined(_WIN64) || (defined(__x86_64__) && !defined(__ILP32__)) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__) || (defined(__riscv) && __riscv_xlen == 64) +#define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef struct object##_T *object; +#else +#define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef uint64_t object; +#endif + +VK_DEFINE_HANDLE(VkInstance) +VK_DEFINE_HANDLE(VkPhysicalDevice) +VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkSurfaceKHR) +struct VkAllocationCallbacks; + +/* Make sure to undef to avoid issues in case of later vulkan include */ +#undef VK_DEFINE_HANDLE +#undef VK_DEFINE_NON_DISPATCHABLE_HANDLE + +#endif /* !NO_SDL_VULKAN_TYPEDEFS */ + +/** + * \name Vulkan support functions + */ +/* @{ */ + +/** + * Dynamically load the Vulkan loader library. + * + * This should be called after initializing the video driver, but before + * creating any Vulkan windows. If no Vulkan loader library is loaded, the + * default library will be loaded upon creation of the first Vulkan window. + * + * SDL keeps a counter of how many times this function has been successfully + * called, so it is safe to call this function multiple times, so long as it + * is eventually paired with an equivalent number of calls to + * SDL_Vulkan_UnloadLibrary. The `path` argument is ignored unless there is no + * library currently loaded, and and the library isn't actually unloaded until + * there have been an equivalent number of calls to SDL_Vulkan_UnloadLibrary. + * + * It is fairly common for Vulkan applications to link with libvulkan instead + * of explicitly loading it at run time. This will work with SDL provided the + * application links to a dynamic library and both it and SDL use the same + * search path. + * + * If you specify a non-NULL `path`, an application should retrieve all of the + * Vulkan functions it uses from the dynamic library using + * SDL_Vulkan_GetVkGetInstanceProcAddr unless you can guarantee `path` points + * to the same vulkan loader library the application linked to. + * + * On Apple devices, if `path` is NULL, SDL will attempt to find the + * `vkGetInstanceProcAddr` address within all the Mach-O images of the current + * process. This is because it is fairly common for Vulkan applications to + * link with libvulkan (and historically MoltenVK was provided as a static + * library). If it is not found, on macOS, SDL will attempt to load + * `vulkan.framework/vulkan`, `libvulkan.1.dylib`, + * `MoltenVK.framework/MoltenVK`, and `libMoltenVK.dylib`, in that order. On + * iOS, SDL will attempt to load `libMoltenVK.dylib`. Applications using a + * dynamic framework or .dylib must ensure it is included in its application + * bundle. + * + * On non-Apple devices, application linking with a static libvulkan is not + * supported. Either do not link to the Vulkan loader or link to a dynamic + * library version. + * + * \param path the platform dependent Vulkan loader library name or NULL. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetVkGetInstanceProcAddr + * \sa SDL_Vulkan_UnloadLibrary + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Vulkan_LoadLibrary(const char *path); + +/** + * Get the address of the `vkGetInstanceProcAddr` function. + * + * This should be called after either calling SDL_Vulkan_LoadLibrary() or + * creating an SDL_Window with the `SDL_WINDOW_VULKAN` flag. + * + * The actual type of the returned function pointer is + * PFN_vkGetInstanceProcAddr, but that isn't available because the Vulkan + * headers are not included here. You should cast the return value of this + * function to that type, e.g. + * + * `vkGetInstanceProcAddr = + * (PFN_vkGetInstanceProcAddr)SDL_Vulkan_GetVkGetInstanceProcAddr();` + * + * \returns the function pointer for `vkGetInstanceProcAddr` or NULL on + * failure; call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + */ +extern SDL_DECLSPEC SDL_FunctionPointer SDLCALL SDL_Vulkan_GetVkGetInstanceProcAddr(void); + +/** + * Unload the Vulkan library previously loaded by SDL_Vulkan_LoadLibrary(). + * + * SDL keeps a counter of how many times this function has been called, so it + * is safe to call this function multiple times, so long as it is paired with + * an equivalent number of calls to SDL_Vulkan_LoadLibrary. The library isn't + * actually unloaded until there have been an equivalent number of calls to + * SDL_Vulkan_UnloadLibrary. + * + * Once the library has actually been unloaded, if any Vulkan instances + * remain, they will likely crash the program. Clean up any existing Vulkan + * resources, and destroy appropriate windows, renderers and GPU devices + * before calling this function. + * + * \threadsafety This function is not thread safe. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_LoadLibrary + */ +extern SDL_DECLSPEC void SDLCALL SDL_Vulkan_UnloadLibrary(void); + +/** + * Get the Vulkan instance extensions needed for vkCreateInstance. + * + * This should be called after either calling SDL_Vulkan_LoadLibrary() or + * creating an SDL_Window with the `SDL_WINDOW_VULKAN` flag. + * + * On return, the variable pointed to by `count` will be set to the number of + * elements returned, suitable for using with + * VkInstanceCreateInfo::enabledExtensionCount, and the returned array can be + * used with VkInstanceCreateInfo::ppEnabledExtensionNames, for calling + * Vulkan's vkCreateInstance API. + * + * You should not free the returned array; it is owned by SDL. + * + * \param count a pointer filled in with the number of extensions returned. + * \returns an array of extension name strings on success, NULL on failure; + * call SDL_GetError() for more information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_CreateSurface + */ +extern SDL_DECLSPEC char const * const * SDLCALL SDL_Vulkan_GetInstanceExtensions(Uint32 *count); + +/** + * Create a Vulkan rendering surface for a window. + * + * The `window` must have been created with the `SDL_WINDOW_VULKAN` flag and + * `instance` must have been created with extensions returned by + * SDL_Vulkan_GetInstanceExtensions() enabled. + * + * If `allocator` is NULL, Vulkan will use the system default allocator. This + * argument is passed directly to Vulkan and isn't used by SDL itself. + * + * \param window the window to which to attach the Vulkan surface. + * \param instance the Vulkan instance handle. + * \param allocator a VkAllocationCallbacks struct, which lets the app set the + * allocator that creates the surface. Can be NULL. + * \param surface a pointer to a VkSurfaceKHR handle to output the newly + * created surface. + * \returns true on success or false on failure; call SDL_GetError() for more + * information. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetInstanceExtensions + * \sa SDL_Vulkan_DestroySurface + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Vulkan_CreateSurface(SDL_Window *window, + VkInstance instance, + const struct VkAllocationCallbacks *allocator, + VkSurfaceKHR *surface); + +/** + * Destroy the Vulkan rendering surface of a window. + * + * This should be called before SDL_DestroyWindow, if SDL_Vulkan_CreateSurface + * was called after SDL_CreateWindow. + * + * The `instance` must have been created with extensions returned by + * SDL_Vulkan_GetInstanceExtensions() enabled and `surface` must have been + * created successfully by an SDL_Vulkan_CreateSurface() call. + * + * If `allocator` is NULL, Vulkan will use the system default allocator. This + * argument is passed directly to Vulkan and isn't used by SDL itself. + * + * \param instance the Vulkan instance handle. + * \param surface vkSurfaceKHR handle to destroy. + * \param allocator a VkAllocationCallbacks struct, which lets the app set the + * allocator that destroys the surface. Can be NULL. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetInstanceExtensions + * \sa SDL_Vulkan_CreateSurface + */ +extern SDL_DECLSPEC void SDLCALL SDL_Vulkan_DestroySurface(VkInstance instance, + VkSurfaceKHR surface, + const struct VkAllocationCallbacks *allocator); + +/** + * Query support for presentation via a given physical device and queue + * family. + * + * The `instance` must have been created with extensions returned by + * SDL_Vulkan_GetInstanceExtensions() enabled. + * + * \param instance the Vulkan instance handle. + * \param physicalDevice a valid Vulkan physical device handle. + * \param queueFamilyIndex a valid queue family index for the given physical + * device. + * \returns true if supported, false if unsupported or an error occurred. + * + * \since This function is available since SDL 3.2.0. + * + * \sa SDL_Vulkan_GetInstanceExtensions + */ +extern SDL_DECLSPEC bool SDLCALL SDL_Vulkan_GetPresentationSupport(VkInstance instance, + VkPhysicalDevice physicalDevice, + Uint32 queueFamilyIndex); + +/* @} *//* Vulkan support functions */ + +/* Ends C function definitions when using C++ */ +#ifdef __cplusplus +} +#endif +#include + +#endif /* SDL_vulkan_h_ */ diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/INSTALL.md b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/INSTALL.md new file mode 100644 index 0000000..97e4ab6 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/INSTALL.md @@ -0,0 +1,41 @@ + +# Using this package + +This package contains SDL built for Xcode. + +To use this package in Xcode, drag `SDL3.framework` into your project. + +# Documentation + +An API reference, tutorials, and additional documentation is available at: + +https://wiki.libsdl.org/SDL3 + +# Example code + +There are simple example programs available at: + +https://examples.libsdl.org/SDL3 + +# Discussions + +## Discord + +You can join the official Discord server at: + +https://discord.com/invite/BwpFGBWsv8 + +## Forums/mailing lists + +You can join SDL development discussions at: + +https://discourse.libsdl.org/ + +Once you sign up, you can use the forum through the website or as a mailing list from your email client. + +## Announcement list + +You can sign up for the low traffic announcement list at: + +https://www.libsdl.org/mailing-list.php + diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Info.plist b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/Info.plist new file mode 100644 index 0000000000000000000000000000000000000000..578beed8690a54c6590487d889b1984e608c1f94 GIT binary patch literal 812 zcmY*WO-~a+7~UBaQPgfhupkH`e(SQ^+BPvOvAOkSRvzA|-n_S*H?8#iy=zGH~P3r#|;A~Ng5!6mJW z3~?-%UuZfO#VT%L>UuVI*b`hMu49Np(QfetHk%A>QEZ4K(eM#w1!vpUm`|MAKjebN zEyy;(z9CLVcqr(WE0vcCsRwAWTvv{)c6zE zx!X#L=Ur#adoVZGZnq^$wi*_dT%YG1-l13xtx-cQc@0_*LP>C4?RxR%O%YaXH3_YP=F=gb@OOQl(uZiq{yjBiXoSi%1Szu zsdibc53xByLZJtVL-?VMS%#fg!jUpa3K5;4#6Op z0`p)MRKX5-3EqMa;4|0*```fl1i!%_a0vTh0#3jzoQFBM1Rp~kcHnFH2EKzI;V1Y7 TeudwJ?t$Q_3irYq7Wn-yi5&a? literal 0 HcmV?d00001 diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/LICENSE.txt b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/LICENSE.txt new file mode 100644 index 0000000..23abb73 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/LICENSE.txt @@ -0,0 +1,18 @@ +Copyright (C) 1997-2025 Sam Lantinga + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/README.md b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/README.md new file mode 100644 index 0000000..68b0923 --- /dev/null +++ b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/README.md @@ -0,0 +1,17 @@ + +Simple DirectMedia Layer (SDL for short) is a cross-platform library +designed to make it easy to write multi-media software, such as games +and emulators. + +You can find the latest release and additional information at: +https://www.libsdl.org/ + +Installation instructions and a quick introduction is available in +[INSTALL.md](INSTALL.md) + +This library is distributed under the terms of the zlib license, +available in [LICENSE.txt](LICENSE.txt). + +Enjoy! + +Sam Lantinga (slouken@libsdl.org) diff --git a/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/SDL3 b/release/frameworks/SDL3.xcframework/tvos-arm64/SDL3.framework/SDL3 new file mode 100644 index 0000000000000000000000000000000000000000..74f5d2210de65c30f49a8989226eeadfe8542f53 GIT binary patch literal 1631208 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

  • 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%0AOGybwN9aMzKsuj;xI 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
  • llQg1n(&F&%g)q3Yu}o5zo3ck?=t8fJ{(B* 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ˆl{4M9W5$}!|XJzadMf|8? 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¿Ww&jsLJte0hmXY%~+we|x>e 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�!YoC0;~qyTpr$?U#57ampoLMx1|%mlKy> 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